blob: 0ae857855ec3b801328f2f8aa0a30e8dfbf1c63c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Bin Meng721e9922015-10-12 05:23:41 -07002/*
3 * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
4 *
5 * Adapted from coreboot src/arch/x86/smbios.c
Bin Meng721e9922015-10-12 05:23:41 -07006 */
7
Simon Glass78227d42020-11-05 06:32:07 -07008#include <dm.h>
Simon Glass7b51b572019-08-01 09:46:52 -06009#include <env.h>
Pali Rohár11275e42021-04-22 18:09:57 +020010#include <linux/stringify.h>
Ilias Apalodimas738b3462023-12-07 11:18:50 +020011#include <linux/string.h>
Simon Glassa2505fc2018-11-22 13:46:37 -070012#include <mapmem.h>
Alexander Graf4b6dddc2016-08-19 01:23:23 +020013#include <smbios.h>
Simon Glass07c9e682021-02-04 21:17:23 -070014#include <sysinfo.h>
Alexander Graf4b6dddc2016-08-19 01:23:23 +020015#include <tables_csum.h>
Bin Meng721e9922015-10-12 05:23:41 -070016#include <version.h>
Ilias Apalodimas738b3462023-12-07 11:18:50 +020017#include <malloc.h>
18#include <dm/ofnode.h>
Alexander Graf96476202016-08-19 01:23:28 +020019#ifdef CONFIG_CPU
20#include <cpu.h>
Alexander Graf96476202016-08-19 01:23:28 +020021#include <dm/uclass-internal.h>
22#endif
Bin Meng721e9922015-10-12 05:23:41 -070023
Pali Rohár11275e42021-04-22 18:09:57 +020024/* Safeguard for checking that U_BOOT_VERSION_NUM macros are compatible with U_BOOT_DMI */
25#if U_BOOT_VERSION_NUM < 2000 || U_BOOT_VERSION_NUM > 2099 || \
26 U_BOOT_VERSION_NUM_PATCH < 1 || U_BOOT_VERSION_NUM_PATCH > 12
27#error U_BOOT_VERSION_NUM macros are not compatible with DMI, fix U_BOOT_DMI macros
28#endif
29
30/*
31 * U_BOOT_DMI_DATE contains BIOS Release Date in format mm/dd/yyyy.
32 * BIOS Release Date is calculated from U-Boot version and fixed day 01.
33 * So for U-Boot version 2021.04 it is calculated as "04/01/2021".
34 * BIOS Release Date should contain date when code was released
35 * and not when it was built or compiled.
36 */
37#if U_BOOT_VERSION_NUM_PATCH < 10
38#define U_BOOT_DMI_MONTH "0" __stringify(U_BOOT_VERSION_NUM_PATCH)
39#else
40#define U_BOOT_DMI_MONTH __stringify(U_BOOT_VERSION_NUM_PATCH)
41#endif
42#define U_BOOT_DMI_DAY "01"
43#define U_BOOT_DMI_YEAR __stringify(U_BOOT_VERSION_NUM)
44#define U_BOOT_DMI_DATE U_BOOT_DMI_MONTH "/" U_BOOT_DMI_DAY "/" U_BOOT_DMI_YEAR
45
Simon Glasse9adaa72021-02-04 21:17:20 -070046DECLARE_GLOBAL_DATA_PTR;
47
Bin Meng721e9922015-10-12 05:23:41 -070048/**
Ilias Apalodimas738b3462023-12-07 11:18:50 +020049 * struct map_sysinfo - Mapping of sysinfo strings to DT
50 *
Ilias Apalodimas5e2b4722024-01-11 16:39:35 +020051 * @si_str: sysinfo string
Ilias Apalodimas738b3462023-12-07 11:18:50 +020052 * @dt_str: DT string
53 * @max: Max index of the tokenized string to pick. Counting starts from 0
54 *
55 */
56struct map_sysinfo {
Ilias Apalodimasb6488ca2024-01-11 16:39:36 +020057 const char *si_node;
Ilias Apalodimas5e2b4722024-01-11 16:39:35 +020058 const char *si_str;
Ilias Apalodimas738b3462023-12-07 11:18:50 +020059 const char *dt_str;
60 int max;
61};
62
63static const struct map_sysinfo sysinfo_to_dt[] = {
Ilias Apalodimasb6488ca2024-01-11 16:39:36 +020064 { .si_node = "system", .si_str = "product", .dt_str = "model", 2 },
65 { .si_node = "system", .si_str = "manufacturer", .dt_str = "compatible", 1 },
66 { .si_node = "baseboard", .si_str = "product", .dt_str = "model", 2 },
67 { .si_node = "baseboard", .si_str = "manufacturer", .dt_str = "compatible", 1 },
Ilias Apalodimas738b3462023-12-07 11:18:50 +020068};
69
70/**
Simon Glass1e8989a2021-02-04 21:17:17 -070071 * struct smbios_ctx - context for writing SMBIOS tables
72 *
Ilias Apalodimasb6488ca2024-01-11 16:39:36 +020073 * @node: node containing the information to write (ofnode_null()
74 * if none)
75 * @dev: sysinfo device to use (NULL if none)
76 * @subnode_name: sysinfo subnode_name. Used for DT fallback
77 * @eos: end-of-string pointer for the table being processed.
78 * This is set up when we start processing a table
79 * @next_ptr: pointer to the start of the next string to be added.
80 * When the table is not empty, this points to the byte
81 * after the \0 of the previous string.
82 * @last_str: points to the last string that was written to the table,
83 * or NULL if none
Simon Glass1e8989a2021-02-04 21:17:17 -070084 */
85struct smbios_ctx {
86 ofnode node;
87 struct udevice *dev;
Ilias Apalodimasb6488ca2024-01-11 16:39:36 +020088 const char *subnode_name;
Simon Glass0c95fff2021-02-04 21:17:18 -070089 char *eos;
Simon Glassfd3b8262021-02-04 21:17:19 -070090 char *next_ptr;
Simon Glasse9adaa72021-02-04 21:17:20 -070091 char *last_str;
Simon Glass1e8989a2021-02-04 21:17:17 -070092};
93
94/**
Simon Glass0e89b852021-02-04 21:17:14 -070095 * Function prototype to write a specific type of SMBIOS structure
96 *
97 * @addr: start address to write the structure
98 * @handle: the structure's handle, a unique 16-bit number
Simon Glass1e8989a2021-02-04 21:17:17 -070099 * @ctx: context for writing the tables
Heinrich Schuchardt8c6532d2021-06-10 12:13:52 +0200100 * Return: size of the structure
Simon Glass0e89b852021-02-04 21:17:14 -0700101 */
Simon Glass1e8989a2021-02-04 21:17:17 -0700102typedef int (*smbios_write_type)(ulong *addr, int handle,
103 struct smbios_ctx *ctx);
Simon Glass0e89b852021-02-04 21:17:14 -0700104
105/**
Simon Glass44ffb6f2020-11-05 06:32:08 -0700106 * struct smbios_write_method - Information about a table-writing function
107 *
108 * @write: Function to call
109 * @subnode_name: Name of subnode which has the information for this function,
110 * NULL if none
111 */
112struct smbios_write_method {
113 smbios_write_type write;
114 const char *subnode_name;
115};
116
Ilias Apalodimasb6488ca2024-01-11 16:39:36 +0200117static const struct map_sysinfo *convert_sysinfo_to_dt(const char *node, const char *si)
Ilias Apalodimas738b3462023-12-07 11:18:50 +0200118{
119 int i;
120
121 for (i = 0; i < ARRAY_SIZE(sysinfo_to_dt); i++) {
Ilias Apalodimasb6488ca2024-01-11 16:39:36 +0200122 if (node && !strcmp(node, sysinfo_to_dt[i].si_node) &&
123 !strcmp(si, sysinfo_to_dt[i].si_str))
Ilias Apalodimas738b3462023-12-07 11:18:50 +0200124 return &sysinfo_to_dt[i];
125 }
126
127 return NULL;
128}
129
Simon Glass44ffb6f2020-11-05 06:32:08 -0700130/**
Bin Meng721e9922015-10-12 05:23:41 -0700131 * smbios_add_string() - add a string to the string area
132 *
133 * This adds a string to the string area which is appended directly after
134 * the formatted portion of an SMBIOS structure.
135 *
Simon Glass0c95fff2021-02-04 21:17:18 -0700136 * @ctx: SMBIOS context
Bin Meng721e9922015-10-12 05:23:41 -0700137 * @str: string to add
Heinrich Schuchardt8c6532d2021-06-10 12:13:52 +0200138 * Return: string number in the string area (1 or more)
Bin Meng721e9922015-10-12 05:23:41 -0700139 */
Simon Glass0c95fff2021-02-04 21:17:18 -0700140static int smbios_add_string(struct smbios_ctx *ctx, const char *str)
Bin Meng721e9922015-10-12 05:23:41 -0700141{
142 int i = 1;
Simon Glass0c95fff2021-02-04 21:17:18 -0700143 char *p = ctx->eos;
144
Bin Meng721e9922015-10-12 05:23:41 -0700145 for (;;) {
146 if (!*p) {
Simon Glasse9adaa72021-02-04 21:17:20 -0700147 ctx->last_str = p;
Bin Meng721e9922015-10-12 05:23:41 -0700148 strcpy(p, str);
149 p += strlen(str);
150 *p++ = '\0';
Simon Glassfd3b8262021-02-04 21:17:19 -0700151 ctx->next_ptr = p;
Bin Meng721e9922015-10-12 05:23:41 -0700152 *p++ = '\0';
153
154 return i;
155 }
156
Simon Glasse9adaa72021-02-04 21:17:20 -0700157 if (!strcmp(p, str)) {
158 ctx->last_str = p;
Bin Meng721e9922015-10-12 05:23:41 -0700159 return i;
Simon Glasse9adaa72021-02-04 21:17:20 -0700160 }
Bin Meng721e9922015-10-12 05:23:41 -0700161
162 p += strlen(p) + 1;
163 i++;
164 }
165}
166
167/**
Ilias Apalodimas738b3462023-12-07 11:18:50 +0200168 * get_str_from_dt - Get a substring from a DT property.
169 * After finding the property in the DT, the function
170 * will parse comma-separated values and return the value.
171 * If nprop->max exceeds the number of comma-separated
172 * elements, the last non NULL value will be returned.
173 * Counting starts from zero.
174 *
175 * @nprop: sysinfo property to use
176 * @str: pointer to fill with data
177 * @size: str buffer length
178 */
179static
180void get_str_from_dt(const struct map_sysinfo *nprop, char *str, size_t size)
181{
182 const char *dt_str;
183 int cnt = 0;
184 char *token;
185
186 memset(str, 0, size);
187 if (!nprop || !nprop->max)
188 return;
189
190 dt_str = ofnode_read_string(ofnode_root(), nprop->dt_str);
191 if (!dt_str)
192 return;
193
194 memcpy(str, dt_str, size);
195 token = strtok(str, ",");
196 while (token && cnt < nprop->max) {
197 strlcpy(str, token, strlen(token) + 1);
198 token = strtok(NULL, ",");
199 cnt++;
200 }
201}
202
203/**
Simon Glass07c9e682021-02-04 21:17:23 -0700204 * smbios_add_prop_si() - Add a property from the devicetree or sysinfo
205 *
206 * Sysinfo is used if available, with a fallback to devicetree
Simon Glass44ffb6f2020-11-05 06:32:08 -0700207 *
Simon Glass1e8989a2021-02-04 21:17:17 -0700208 * @ctx: context for writing the tables
Simon Glass44ffb6f2020-11-05 06:32:08 -0700209 * @prop: property to write
Heinrich Schuchardtb327e642024-01-29 13:58:18 +0100210 * @sysinfo_id: unique identifier for the string value to be read
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200211 * @dval: Default value to use if the string is not found or is empty
Heinrich Schuchardt8c6532d2021-06-10 12:13:52 +0200212 * Return: 0 if not found, else SMBIOS string number (1 or more)
Simon Glass44ffb6f2020-11-05 06:32:08 -0700213 */
Simon Glass07c9e682021-02-04 21:17:23 -0700214static int smbios_add_prop_si(struct smbios_ctx *ctx, const char *prop,
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200215 int sysinfo_id, const char *dval)
Simon Glass44ffb6f2020-11-05 06:32:08 -0700216{
Ilias Apalodimas738b3462023-12-07 11:18:50 +0200217 int ret;
218
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200219 if (!dval || !*dval)
220 dval = "Unknown";
221
222 if (!prop)
223 return smbios_add_string(ctx, dval);
224
Simon Glass07c9e682021-02-04 21:17:23 -0700225 if (sysinfo_id && ctx->dev) {
226 char val[SMBIOS_STR_MAX];
Simon Glass07c9e682021-02-04 21:17:23 -0700227
228 ret = sysinfo_get_str(ctx->dev, sysinfo_id, sizeof(val), val);
229 if (!ret)
230 return smbios_add_string(ctx, val);
231 }
Simon Glasse4f8e542020-11-05 06:32:18 -0700232 if (IS_ENABLED(CONFIG_OF_CONTROL)) {
Ilias Apalodimas738b3462023-12-07 11:18:50 +0200233 const char *str = NULL;
234 char str_dt[128] = { 0 };
235 /*
236 * If the node is not valid fallback and try the entire DT
237 * so we can at least fill in manufacturer and board type
238 */
239 if (ofnode_valid(ctx->node)) {
240 str = ofnode_read_string(ctx->node, prop);
241 } else {
242 const struct map_sysinfo *nprop;
Simon Glasse4f8e542020-11-05 06:32:18 -0700243
Ilias Apalodimasb6488ca2024-01-11 16:39:36 +0200244 nprop = convert_sysinfo_to_dt(ctx->subnode_name, prop);
Ilias Apalodimas738b3462023-12-07 11:18:50 +0200245 get_str_from_dt(nprop, str_dt, sizeof(str_dt));
246 str = (const char *)str_dt;
247 }
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200248
Ilias Apalodimas738b3462023-12-07 11:18:50 +0200249 ret = smbios_add_string(ctx, str && *str ? str : dval);
250 return ret;
Simon Glasse4f8e542020-11-05 06:32:18 -0700251 }
252
253 return 0;
Simon Glass44ffb6f2020-11-05 06:32:08 -0700254}
255
Simon Glass07c9e682021-02-04 21:17:23 -0700256/**
257 * smbios_add_prop() - Add a property from the devicetree
258 *
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200259 * @prop: property to write. The default string will be written if
260 * prop is NULL
261 * @dval: Default value to use if the string is not found or is empty
Heinrich Schuchardt8c6532d2021-06-10 12:13:52 +0200262 * Return: 0 if not found, else SMBIOS string number (1 or more)
Simon Glass07c9e682021-02-04 21:17:23 -0700263 */
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200264static int smbios_add_prop(struct smbios_ctx *ctx, const char *prop,
265 const char *dval)
Simon Glass07c9e682021-02-04 21:17:23 -0700266{
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200267 return smbios_add_prop_si(ctx, prop, SYSINFO_ID_NONE, dval);
Simon Glass07c9e682021-02-04 21:17:23 -0700268}
269
Simon Glass0c95fff2021-02-04 21:17:18 -0700270static void smbios_set_eos(struct smbios_ctx *ctx, char *eos)
271{
272 ctx->eos = eos;
Simon Glassfd3b8262021-02-04 21:17:19 -0700273 ctx->next_ptr = eos;
Simon Glasse9adaa72021-02-04 21:17:20 -0700274 ctx->last_str = NULL;
275}
276
277int smbios_update_version(const char *version)
278{
279 char *ptr = gd->smbios_version;
280 uint old_len, len;
281
282 if (!ptr)
283 return log_ret(-ENOENT);
284
285 /*
286 * This string is supposed to have at least enough bytes and is
287 * padded with spaces. Update it, taking care not to move the
288 * \0 terminator, so that other strings in the string table
289 * are not disturbed. See smbios_add_string()
290 */
291 old_len = strnlen(ptr, SMBIOS_STR_MAX);
292 len = strnlen(version, SMBIOS_STR_MAX);
293 if (len > old_len)
294 return log_ret(-ENOSPC);
295
296 log_debug("Replacing SMBIOS type 0 version string '%s'\n", ptr);
297 memcpy(ptr, version, len);
298#ifdef LOG_DEBUG
299 print_buffer((ulong)ptr, ptr, 1, old_len + 1, 0);
300#endif
301
302 return 0;
Simon Glass0c95fff2021-02-04 21:17:18 -0700303}
304
Simon Glass44ffb6f2020-11-05 06:32:08 -0700305/**
Bin Meng721e9922015-10-12 05:23:41 -0700306 * smbios_string_table_len() - compute the string area size
307 *
308 * This computes the size of the string area including the string terminator.
309 *
Simon Glassfd3b8262021-02-04 21:17:19 -0700310 * @ctx: SMBIOS context
Heinrich Schuchardt8c6532d2021-06-10 12:13:52 +0200311 * Return: string area size
Bin Meng721e9922015-10-12 05:23:41 -0700312 */
Simon Glassfd3b8262021-02-04 21:17:19 -0700313static int smbios_string_table_len(const struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700314{
Matthias Bruggere31efe52021-04-06 11:04:35 +0200315 /* In case no string is defined we have to return two \0 */
316 if (ctx->next_ptr == ctx->eos)
317 return 2;
318
Simon Glassfd3b8262021-02-04 21:17:19 -0700319 /* Allow for the final \0 after all strings */
320 return (ctx->next_ptr + 1) - ctx->eos;
Bin Meng721e9922015-10-12 05:23:41 -0700321}
322
Simon Glass1e8989a2021-02-04 21:17:17 -0700323static int smbios_write_type0(ulong *current, int handle,
324 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700325{
Simon Glassa2505fc2018-11-22 13:46:37 -0700326 struct smbios_type0 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700327 int len = sizeof(struct smbios_type0);
328
Simon Glassa2505fc2018-11-22 13:46:37 -0700329 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700330 memset(t, 0, sizeof(struct smbios_type0));
331 fill_smbios_header(t, SMBIOS_BIOS_INFORMATION, len, handle);
Simon Glass0c95fff2021-02-04 21:17:18 -0700332 smbios_set_eos(ctx, t->eos);
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200333 t->vendor = smbios_add_prop(ctx, NULL, "U-Boot");
Simon Glasse9adaa72021-02-04 21:17:20 -0700334
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200335 t->bios_ver = smbios_add_prop(ctx, "version", PLAIN_VERSION);
Simon Glasse9adaa72021-02-04 21:17:20 -0700336 if (t->bios_ver)
337 gd->smbios_version = ctx->last_str;
338 log_debug("smbios_version = %p: '%s'\n", gd->smbios_version,
339 gd->smbios_version);
340#ifdef LOG_DEBUG
341 print_buffer((ulong)gd->smbios_version, gd->smbios_version,
342 1, strlen(gd->smbios_version) + 1, 0);
343#endif
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200344 t->bios_release_date = smbios_add_prop(ctx, NULL, U_BOOT_DMI_DATE);
Alexander Grafe663b352016-08-19 01:23:29 +0200345#ifdef CONFIG_ROM_SIZE
Bin Meng721e9922015-10-12 05:23:41 -0700346 t->bios_rom_size = (CONFIG_ROM_SIZE / 65536) - 1;
Alexander Grafe663b352016-08-19 01:23:29 +0200347#endif
Bin Meng721e9922015-10-12 05:23:41 -0700348 t->bios_characteristics = BIOS_CHARACTERISTICS_PCI_SUPPORTED |
349 BIOS_CHARACTERISTICS_SELECTABLE_BOOT |
350 BIOS_CHARACTERISTICS_UPGRADEABLE;
351#ifdef CONFIG_GENERATE_ACPI_TABLE
352 t->bios_characteristics_ext1 = BIOS_CHARACTERISTICS_EXT1_ACPI;
353#endif
Alexander Grafe663b352016-08-19 01:23:29 +0200354#ifdef CONFIG_EFI_LOADER
Ilias Apalodimasff192302021-06-09 18:14:47 +0300355 t->bios_characteristics_ext2 |= BIOS_CHARACTERISTICS_EXT2_UEFI;
Alexander Grafe663b352016-08-19 01:23:29 +0200356#endif
Ilias Apalodimasff192302021-06-09 18:14:47 +0300357 t->bios_characteristics_ext2 |= BIOS_CHARACTERISTICS_EXT2_TARGET;
Alexander Grafe663b352016-08-19 01:23:29 +0200358
Simon Glass7617f992021-02-04 21:17:16 -0700359 /* bios_major_release has only one byte, so drop century */
360 t->bios_major_release = U_BOOT_VERSION_NUM % 100;
361 t->bios_minor_release = U_BOOT_VERSION_NUM_PATCH;
Bin Meng721e9922015-10-12 05:23:41 -0700362 t->ec_major_release = 0xff;
363 t->ec_minor_release = 0xff;
364
Simon Glassfd3b8262021-02-04 21:17:19 -0700365 len = t->length + smbios_string_table_len(ctx);
Bin Meng721e9922015-10-12 05:23:41 -0700366 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700367 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700368
369 return len;
370}
371
Simon Glass1e8989a2021-02-04 21:17:17 -0700372static int smbios_write_type1(ulong *current, int handle,
373 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700374{
Simon Glassa2505fc2018-11-22 13:46:37 -0700375 struct smbios_type1 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700376 int len = sizeof(struct smbios_type1);
Simon Glass00caae62017-08-03 12:22:12 -0600377 char *serial_str = env_get("serial#");
Bin Meng721e9922015-10-12 05:23:41 -0700378
Simon Glassa2505fc2018-11-22 13:46:37 -0700379 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700380 memset(t, 0, sizeof(struct smbios_type1));
381 fill_smbios_header(t, SMBIOS_SYSTEM_INFORMATION, len, handle);
Simon Glass0c95fff2021-02-04 21:17:18 -0700382 smbios_set_eos(ctx, t->eos);
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200383 t->manufacturer = smbios_add_prop(ctx, "manufacturer", "Unknown");
384 t->product_name = smbios_add_prop(ctx, "product", "Unknown");
Simon Glass07c9e682021-02-04 21:17:23 -0700385 t->version = smbios_add_prop_si(ctx, "version",
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200386 SYSINFO_ID_SMBIOS_SYSTEM_VERSION,
387 "Unknown");
Alexander Graf6fb580d2016-08-19 01:23:31 +0200388 if (serial_str) {
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200389 t->serial_number = smbios_add_prop(ctx, NULL, serial_str);
Simon Glass44ffb6f2020-11-05 06:32:08 -0700390 strncpy((char *)t->uuid, serial_str, sizeof(t->uuid));
391 } else {
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200392 t->serial_number = smbios_add_prop(ctx, "serial", "Unknown");
Alexander Graf6fb580d2016-08-19 01:23:31 +0200393 }
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200394 t->sku_number = smbios_add_prop(ctx, "sku", "Unknown");
395 t->family = smbios_add_prop(ctx, "family", "Unknown");
Bin Meng721e9922015-10-12 05:23:41 -0700396
Simon Glassfd3b8262021-02-04 21:17:19 -0700397 len = t->length + smbios_string_table_len(ctx);
Bin Meng721e9922015-10-12 05:23:41 -0700398 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700399 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700400
401 return len;
402}
403
Simon Glass1e8989a2021-02-04 21:17:17 -0700404static int smbios_write_type2(ulong *current, int handle,
405 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700406{
Simon Glassa2505fc2018-11-22 13:46:37 -0700407 struct smbios_type2 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700408 int len = sizeof(struct smbios_type2);
409
Simon Glassa2505fc2018-11-22 13:46:37 -0700410 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700411 memset(t, 0, sizeof(struct smbios_type2));
412 fill_smbios_header(t, SMBIOS_BOARD_INFORMATION, len, handle);
Simon Glass0c95fff2021-02-04 21:17:18 -0700413 smbios_set_eos(ctx, t->eos);
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200414 t->manufacturer = smbios_add_prop(ctx, "manufacturer", "Unknown");
415 t->product_name = smbios_add_prop(ctx, "product", "Unknown");
Simon Glass07c9e682021-02-04 21:17:23 -0700416 t->version = smbios_add_prop_si(ctx, "version",
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200417 SYSINFO_ID_SMBIOS_BASEBOARD_VERSION,
418 "Unknown");
419 t->asset_tag_number = smbios_add_prop(ctx, "asset-tag", "Unknown");
Bin Meng721e9922015-10-12 05:23:41 -0700420 t->feature_flags = SMBIOS_BOARD_FEATURE_HOSTING;
421 t->board_type = SMBIOS_BOARD_MOTHERBOARD;
422
Simon Glassfd3b8262021-02-04 21:17:19 -0700423 len = t->length + smbios_string_table_len(ctx);
Bin Meng721e9922015-10-12 05:23:41 -0700424 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700425 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700426
427 return len;
428}
429
Simon Glass1e8989a2021-02-04 21:17:17 -0700430static int smbios_write_type3(ulong *current, int handle,
431 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700432{
Simon Glassa2505fc2018-11-22 13:46:37 -0700433 struct smbios_type3 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700434 int len = sizeof(struct smbios_type3);
435
Simon Glassa2505fc2018-11-22 13:46:37 -0700436 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700437 memset(t, 0, sizeof(struct smbios_type3));
438 fill_smbios_header(t, SMBIOS_SYSTEM_ENCLOSURE, len, handle);
Simon Glass0c95fff2021-02-04 21:17:18 -0700439 smbios_set_eos(ctx, t->eos);
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200440 t->manufacturer = smbios_add_prop(ctx, "manufacturer", "Unknown");
Bin Meng721e9922015-10-12 05:23:41 -0700441 t->chassis_type = SMBIOS_ENCLOSURE_DESKTOP;
442 t->bootup_state = SMBIOS_STATE_SAFE;
443 t->power_supply_state = SMBIOS_STATE_SAFE;
444 t->thermal_state = SMBIOS_STATE_SAFE;
445 t->security_status = SMBIOS_SECURITY_NONE;
446
Simon Glassfd3b8262021-02-04 21:17:19 -0700447 len = t->length + smbios_string_table_len(ctx);
Bin Meng721e9922015-10-12 05:23:41 -0700448 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700449 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700450
451 return len;
452}
453
Simon Glass1e8989a2021-02-04 21:17:17 -0700454static void smbios_write_type4_dm(struct smbios_type4 *t,
455 struct smbios_ctx *ctx)
Alexander Graf96476202016-08-19 01:23:28 +0200456{
457 u16 processor_family = SMBIOS_PROCESSOR_FAMILY_UNKNOWN;
458 const char *vendor = "Unknown";
459 const char *name = "Unknown";
460
461#ifdef CONFIG_CPU
462 char processor_name[49];
463 char vendor_name[49];
Simon Glass78227d42020-11-05 06:32:07 -0700464 struct udevice *cpu = NULL;
Alexander Graf96476202016-08-19 01:23:28 +0200465
Simon Glass78227d42020-11-05 06:32:07 -0700466 uclass_find_first_device(UCLASS_CPU, &cpu);
467 if (cpu) {
Simon Glass8a8d24b2020-12-03 16:55:23 -0700468 struct cpu_plat *plat = dev_get_parent_plat(cpu);
Alexander Graf96476202016-08-19 01:23:28 +0200469
470 if (plat->family)
471 processor_family = plat->family;
472 t->processor_id[0] = plat->id[0];
473 t->processor_id[1] = plat->id[1];
474
Simon Glass78227d42020-11-05 06:32:07 -0700475 if (!cpu_get_vendor(cpu, vendor_name, sizeof(vendor_name)))
Alexander Graf96476202016-08-19 01:23:28 +0200476 vendor = vendor_name;
Simon Glass78227d42020-11-05 06:32:07 -0700477 if (!cpu_get_desc(cpu, processor_name, sizeof(processor_name)))
Alexander Graf96476202016-08-19 01:23:28 +0200478 name = processor_name;
479 }
480#endif
481
Heinrich Schuchardt0920bd52023-12-28 08:30:23 +0100482 t->processor_family = 0xfe;
483 t->processor_family2 = processor_family;
Ilias Apalodimasa986cce2023-12-07 11:18:49 +0200484 t->processor_manufacturer = smbios_add_prop(ctx, NULL, vendor);
485 t->processor_version = smbios_add_prop(ctx, NULL, name);
Alexander Graf96476202016-08-19 01:23:28 +0200486}
487
Simon Glass1e8989a2021-02-04 21:17:17 -0700488static int smbios_write_type4(ulong *current, int handle,
489 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700490{
Simon Glassa2505fc2018-11-22 13:46:37 -0700491 struct smbios_type4 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700492 int len = sizeof(struct smbios_type4);
Bin Meng721e9922015-10-12 05:23:41 -0700493
Simon Glassa2505fc2018-11-22 13:46:37 -0700494 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700495 memset(t, 0, sizeof(struct smbios_type4));
496 fill_smbios_header(t, SMBIOS_PROCESSOR_INFORMATION, len, handle);
Simon Glass0c95fff2021-02-04 21:17:18 -0700497 smbios_set_eos(ctx, t->eos);
Bin Meng721e9922015-10-12 05:23:41 -0700498 t->processor_type = SMBIOS_PROCESSOR_TYPE_CENTRAL;
Simon Glass1e8989a2021-02-04 21:17:17 -0700499 smbios_write_type4_dm(t, ctx);
Bin Meng721e9922015-10-12 05:23:41 -0700500 t->status = SMBIOS_PROCESSOR_STATUS_ENABLED;
501 t->processor_upgrade = SMBIOS_PROCESSOR_UPGRADE_NONE;
502 t->l1_cache_handle = 0xffff;
503 t->l2_cache_handle = 0xffff;
504 t->l3_cache_handle = 0xffff;
Bin Meng721e9922015-10-12 05:23:41 -0700505
Simon Glassfd3b8262021-02-04 21:17:19 -0700506 len = t->length + smbios_string_table_len(ctx);
Bin Meng721e9922015-10-12 05:23:41 -0700507 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700508 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700509
510 return len;
511}
512
Simon Glass1e8989a2021-02-04 21:17:17 -0700513static int smbios_write_type32(ulong *current, int handle,
514 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700515{
Simon Glassa2505fc2018-11-22 13:46:37 -0700516 struct smbios_type32 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700517 int len = sizeof(struct smbios_type32);
518
Simon Glassa2505fc2018-11-22 13:46:37 -0700519 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700520 memset(t, 0, sizeof(struct smbios_type32));
521 fill_smbios_header(t, SMBIOS_SYSTEM_BOOT_INFORMATION, len, handle);
Simon Glass0c95fff2021-02-04 21:17:18 -0700522 smbios_set_eos(ctx, t->eos);
Bin Meng721e9922015-10-12 05:23:41 -0700523
524 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700525 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700526
527 return len;
528}
529
Simon Glass1e8989a2021-02-04 21:17:17 -0700530static int smbios_write_type127(ulong *current, int handle,
531 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700532{
Simon Glassa2505fc2018-11-22 13:46:37 -0700533 struct smbios_type127 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700534 int len = sizeof(struct smbios_type127);
535
Simon Glassa2505fc2018-11-22 13:46:37 -0700536 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700537 memset(t, 0, sizeof(struct smbios_type127));
538 fill_smbios_header(t, SMBIOS_END_OF_TABLE, len, handle);
539
540 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700541 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700542
543 return len;
544}
545
Simon Glass44ffb6f2020-11-05 06:32:08 -0700546static struct smbios_write_method smbios_write_funcs[] = {
Simon Glasse9adaa72021-02-04 21:17:20 -0700547 { smbios_write_type0, "bios", },
Simon Glass44ffb6f2020-11-05 06:32:08 -0700548 { smbios_write_type1, "system", },
549 { smbios_write_type2, "baseboard", },
550 { smbios_write_type3, "chassis", },
551 { smbios_write_type4, },
552 { smbios_write_type32, },
553 { smbios_write_type127 },
Bin Meng721e9922015-10-12 05:23:41 -0700554};
555
Simon Glass42fd8c12017-01-16 07:03:35 -0700556ulong write_smbios_table(ulong addr)
Bin Meng721e9922015-10-12 05:23:41 -0700557{
Simon Glass44ffb6f2020-11-05 06:32:08 -0700558 ofnode parent_node = ofnode_null();
Simon Glassf19cf8d2023-12-31 08:25:45 -0700559 ulong table_addr, start_addr;
Simon Glass1c5f6fa2023-12-31 08:25:51 -0700560 struct smbios3_entry *se;
Simon Glass1e8989a2021-02-04 21:17:17 -0700561 struct smbios_ctx ctx;
Simon Glass42fd8c12017-01-16 07:03:35 -0700562 ulong tables;
Bin Meng721e9922015-10-12 05:23:41 -0700563 int len = 0;
564 int max_struct_size = 0;
565 int handle = 0;
Bin Meng721e9922015-10-12 05:23:41 -0700566 int i;
567
Simon Glass1e8989a2021-02-04 21:17:17 -0700568 ctx.node = ofnode_null();
Simon Glass78227d42020-11-05 06:32:07 -0700569 if (IS_ENABLED(CONFIG_OF_CONTROL)) {
Simon Glass1e8989a2021-02-04 21:17:17 -0700570 uclass_first_device(UCLASS_SYSINFO, &ctx.dev);
571 if (ctx.dev)
572 parent_node = dev_read_subnode(ctx.dev, "smbios");
573 } else {
574 ctx.dev = NULL;
Simon Glass78227d42020-11-05 06:32:07 -0700575 }
576
Simon Glassf19cf8d2023-12-31 08:25:45 -0700577 start_addr = addr;
Bin Meng721e9922015-10-12 05:23:41 -0700578
Simon Glass1c5f6fa2023-12-31 08:25:51 -0700579 /* move past the (so-far-unwritten) header to start writing structs */
580 addr = ALIGN(addr + sizeof(struct smbios3_entry), 16);
Bin Meng721e9922015-10-12 05:23:41 -0700581 tables = addr;
582
583 /* populate minimum required tables */
584 for (i = 0; i < ARRAY_SIZE(smbios_write_funcs); i++) {
Simon Glass44ffb6f2020-11-05 06:32:08 -0700585 const struct smbios_write_method *method;
Simon Glass44ffb6f2020-11-05 06:32:08 -0700586 int tmp;
587
588 method = &smbios_write_funcs[i];
Ilias Apalodimasb6488ca2024-01-11 16:39:36 +0200589 ctx.subnode_name = NULL;
590 if (method->subnode_name) {
591 ctx.subnode_name = method->subnode_name;
592 if (IS_ENABLED(CONFIG_OF_CONTROL))
593 ctx.node = ofnode_find_subnode(parent_node,
594 method->subnode_name);
595 }
Simon Glass1e8989a2021-02-04 21:17:17 -0700596 tmp = method->write((ulong *)&addr, handle++, &ctx);
Christian Gmeiner60a4df32018-07-30 13:22:07 +0200597
Bin Meng721e9922015-10-12 05:23:41 -0700598 max_struct_size = max(max_struct_size, tmp);
599 len += tmp;
600 }
601
Simon Glassa2505fc2018-11-22 13:46:37 -0700602 /*
603 * We must use a pointer here so things work correctly on sandbox. The
604 * user of this table is not aware of the mapping of addresses to
605 * sandbox's DRAM buffer.
606 */
607 table_addr = (ulong)map_sysmem(tables, 0);
Simon Glassf19cf8d2023-12-31 08:25:45 -0700608
Simon Glass1c5f6fa2023-12-31 08:25:51 -0700609 /* now go back and write the SMBIOS3 header */
Heinrich Schuchardtccefbf32024-01-11 07:34:08 +0100610 se = map_sysmem(start_addr, sizeof(struct smbios3_entry));
611 memset(se, '\0', sizeof(struct smbios3_entry));
Simon Glass1c5f6fa2023-12-31 08:25:51 -0700612 memcpy(se->anchor, "_SM3_", 5);
613 se->length = sizeof(struct smbios3_entry);
614 se->major_ver = SMBIOS_MAJOR_VER;
615 se->minor_ver = SMBIOS_MINOR_VER;
616 se->doc_rev = 0;
617 se->entry_point_rev = 1;
618 se->max_struct_size = len;
619 se->struct_table_address = table_addr;
620 se->checksum = table_compute_checksum(se, sizeof(struct smbios3_entry));
621 unmap_sysmem(se);
Bin Meng721e9922015-10-12 05:23:41 -0700622
623 return addr;
624}