1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
5 * Adapted from coreboot src/arch/x86/smbios.c
11 #include <linux/stringify.h>
15 #include <tables_csum.h>
19 #include <dm/uclass-internal.h>
22 /* Safeguard for checking that U_BOOT_VERSION_NUM macros are compatible with U_BOOT_DMI */
23 #if U_BOOT_VERSION_NUM < 2000 || U_BOOT_VERSION_NUM > 2099 || \
24 U_BOOT_VERSION_NUM_PATCH < 1 || U_BOOT_VERSION_NUM_PATCH > 12
25 #error U_BOOT_VERSION_NUM macros are not compatible with DMI, fix U_BOOT_DMI macros
29 * U_BOOT_DMI_DATE contains BIOS Release Date in format mm/dd/yyyy.
30 * BIOS Release Date is calculated from U-Boot version and fixed day 01.
31 * So for U-Boot version 2021.04 it is calculated as "04/01/2021".
32 * BIOS Release Date should contain date when code was released
33 * and not when it was built or compiled.
35 #if U_BOOT_VERSION_NUM_PATCH < 10
36 #define U_BOOT_DMI_MONTH "0" __stringify(U_BOOT_VERSION_NUM_PATCH)
38 #define U_BOOT_DMI_MONTH __stringify(U_BOOT_VERSION_NUM_PATCH)
40 #define U_BOOT_DMI_DAY "01"
41 #define U_BOOT_DMI_YEAR __stringify(U_BOOT_VERSION_NUM)
42 #define U_BOOT_DMI_DATE U_BOOT_DMI_MONTH "/" U_BOOT_DMI_DAY "/" U_BOOT_DMI_YEAR
44 DECLARE_GLOBAL_DATA_PTR;
47 * struct smbios_ctx - context for writing SMBIOS tables
49 * @node: node containing the information to write (ofnode_null() if none)
50 * @dev: sysinfo device to use (NULL if none)
51 * @eos: end-of-string pointer for the table being processed. This is set
52 * up when we start processing a table
53 * @next_ptr: pointer to the start of the next string to be added. When the
54 * table is nopt empty, this points to the byte after the \0 of the
56 * @last_str: points to the last string that was written to the table, or NULL
68 * Function prototype to write a specific type of SMBIOS structure
70 * @addr: start address to write the structure
71 * @handle: the structure's handle, a unique 16-bit number
72 * @ctx: context for writing the tables
73 * Return: size of the structure
75 typedef int (*smbios_write_type)(ulong *addr, int handle,
76 struct smbios_ctx *ctx);
79 * struct smbios_write_method - Information about a table-writing function
81 * @write: Function to call
82 * @subnode_name: Name of subnode which has the information for this function,
85 struct smbios_write_method {
86 smbios_write_type write;
87 const char *subnode_name;
91 * smbios_add_string() - add a string to the string area
93 * This adds a string to the string area which is appended directly after
94 * the formatted portion of an SMBIOS structure.
96 * @ctx: SMBIOS context
98 * Return: string number in the string area (1 or more)
100 static int smbios_add_string(struct smbios_ctx *ctx, const char *str)
120 if (!strcmp(p, str)) {
131 * smbios_add_prop_si() - Add a property from the devicetree or sysinfo
133 * Sysinfo is used if available, with a fallback to devicetree
135 * @ctx: context for writing the tables
136 * @prop: property to write
137 * Return: 0 if not found, else SMBIOS string number (1 or more)
139 static int smbios_add_prop_si(struct smbios_ctx *ctx, const char *prop,
142 if (sysinfo_id && ctx->dev) {
143 char val[SMBIOS_STR_MAX];
146 ret = sysinfo_get_str(ctx->dev, sysinfo_id, sizeof(val), val);
148 return smbios_add_string(ctx, val);
150 if (IS_ENABLED(CONFIG_OF_CONTROL)) {
153 str = ofnode_read_string(ctx->node, prop);
155 return smbios_add_string(ctx, str);
162 * smbios_add_prop() - Add a property from the devicetree
164 * @prop: property to write
165 * Return: 0 if not found, else SMBIOS string number (1 or more)
167 static int smbios_add_prop(struct smbios_ctx *ctx, const char *prop)
169 return smbios_add_prop_si(ctx, prop, SYSINFO_ID_NONE);
172 static void smbios_set_eos(struct smbios_ctx *ctx, char *eos)
176 ctx->last_str = NULL;
179 int smbios_update_version(const char *version)
181 char *ptr = gd->smbios_version;
185 return log_ret(-ENOENT);
188 * This string is supposed to have at least enough bytes and is
189 * padded with spaces. Update it, taking care not to move the
190 * \0 terminator, so that other strings in the string table
191 * are not disturbed. See smbios_add_string()
193 old_len = strnlen(ptr, SMBIOS_STR_MAX);
194 len = strnlen(version, SMBIOS_STR_MAX);
196 return log_ret(-ENOSPC);
198 log_debug("Replacing SMBIOS type 0 version string '%s'\n", ptr);
199 memcpy(ptr, version, len);
201 print_buffer((ulong)ptr, ptr, 1, old_len + 1, 0);
208 * smbios_string_table_len() - compute the string area size
210 * This computes the size of the string area including the string terminator.
212 * @ctx: SMBIOS context
213 * Return: string area size
215 static int smbios_string_table_len(const struct smbios_ctx *ctx)
217 /* Allow for the final \0 after all strings */
218 return (ctx->next_ptr + 1) - ctx->eos;
221 static int smbios_write_type0(ulong *current, int handle,
222 struct smbios_ctx *ctx)
224 struct smbios_type0 *t;
225 int len = sizeof(struct smbios_type0);
227 t = map_sysmem(*current, len);
228 memset(t, 0, sizeof(struct smbios_type0));
229 fill_smbios_header(t, SMBIOS_BIOS_INFORMATION, len, handle);
230 smbios_set_eos(ctx, t->eos);
231 t->vendor = smbios_add_string(ctx, "U-Boot");
233 t->bios_ver = smbios_add_prop(ctx, "version");
235 t->bios_ver = smbios_add_string(ctx, PLAIN_VERSION);
237 gd->smbios_version = ctx->last_str;
238 log_debug("smbios_version = %p: '%s'\n", gd->smbios_version,
241 print_buffer((ulong)gd->smbios_version, gd->smbios_version,
242 1, strlen(gd->smbios_version) + 1, 0);
244 t->bios_release_date = smbios_add_string(ctx, U_BOOT_DMI_DATE);
245 #ifdef CONFIG_ROM_SIZE
246 t->bios_rom_size = (CONFIG_ROM_SIZE / 65536) - 1;
248 t->bios_characteristics = BIOS_CHARACTERISTICS_PCI_SUPPORTED |
249 BIOS_CHARACTERISTICS_SELECTABLE_BOOT |
250 BIOS_CHARACTERISTICS_UPGRADEABLE;
251 #ifdef CONFIG_GENERATE_ACPI_TABLE
252 t->bios_characteristics_ext1 = BIOS_CHARACTERISTICS_EXT1_ACPI;
254 #ifdef CONFIG_EFI_LOADER
255 t->bios_characteristics_ext2 |= BIOS_CHARACTERISTICS_EXT2_UEFI;
257 t->bios_characteristics_ext2 |= BIOS_CHARACTERISTICS_EXT2_TARGET;
259 /* bios_major_release has only one byte, so drop century */
260 t->bios_major_release = U_BOOT_VERSION_NUM % 100;
261 t->bios_minor_release = U_BOOT_VERSION_NUM_PATCH;
262 t->ec_major_release = 0xff;
263 t->ec_minor_release = 0xff;
265 len = t->length + smbios_string_table_len(ctx);
272 static int smbios_write_type1(ulong *current, int handle,
273 struct smbios_ctx *ctx)
275 struct smbios_type1 *t;
276 int len = sizeof(struct smbios_type1);
277 char *serial_str = env_get("serial#");
279 t = map_sysmem(*current, len);
280 memset(t, 0, sizeof(struct smbios_type1));
281 fill_smbios_header(t, SMBIOS_SYSTEM_INFORMATION, len, handle);
282 smbios_set_eos(ctx, t->eos);
283 t->manufacturer = smbios_add_prop(ctx, "manufacturer");
284 if (!t->manufacturer)
285 t->manufacturer = smbios_add_string(ctx, "Unknown");
286 t->product_name = smbios_add_prop(ctx, "product");
287 if (!t->product_name)
288 t->product_name = smbios_add_string(ctx, "Unknown Product");
289 t->version = smbios_add_prop_si(ctx, "version",
290 SYSINFO_ID_SMBIOS_SYSTEM_VERSION);
292 t->serial_number = smbios_add_string(ctx, serial_str);
293 strncpy((char *)t->uuid, serial_str, sizeof(t->uuid));
295 t->serial_number = smbios_add_prop(ctx, "serial");
297 t->sku_number = smbios_add_prop(ctx, "sku");
298 t->family = smbios_add_prop(ctx, "family");
300 len = t->length + smbios_string_table_len(ctx);
307 static int smbios_write_type2(ulong *current, int handle,
308 struct smbios_ctx *ctx)
310 struct smbios_type2 *t;
311 int len = sizeof(struct smbios_type2);
313 t = map_sysmem(*current, len);
314 memset(t, 0, sizeof(struct smbios_type2));
315 fill_smbios_header(t, SMBIOS_BOARD_INFORMATION, len, handle);
316 smbios_set_eos(ctx, t->eos);
317 t->manufacturer = smbios_add_prop(ctx, "manufacturer");
318 if (!t->manufacturer)
319 t->manufacturer = smbios_add_string(ctx, "Unknown");
320 t->product_name = smbios_add_prop(ctx, "product");
321 if (!t->product_name)
322 t->product_name = smbios_add_string(ctx, "Unknown Product");
323 t->version = smbios_add_prop_si(ctx, "version",
324 SYSINFO_ID_SMBIOS_BASEBOARD_VERSION);
325 t->asset_tag_number = smbios_add_prop(ctx, "asset-tag");
326 t->feature_flags = SMBIOS_BOARD_FEATURE_HOSTING;
327 t->board_type = SMBIOS_BOARD_MOTHERBOARD;
329 len = t->length + smbios_string_table_len(ctx);
336 static int smbios_write_type3(ulong *current, int handle,
337 struct smbios_ctx *ctx)
339 struct smbios_type3 *t;
340 int len = sizeof(struct smbios_type3);
342 t = map_sysmem(*current, len);
343 memset(t, 0, sizeof(struct smbios_type3));
344 fill_smbios_header(t, SMBIOS_SYSTEM_ENCLOSURE, len, handle);
345 smbios_set_eos(ctx, t->eos);
346 t->manufacturer = smbios_add_prop(ctx, "manufacturer");
347 if (!t->manufacturer)
348 t->manufacturer = smbios_add_string(ctx, "Unknown");
349 t->chassis_type = SMBIOS_ENCLOSURE_DESKTOP;
350 t->bootup_state = SMBIOS_STATE_SAFE;
351 t->power_supply_state = SMBIOS_STATE_SAFE;
352 t->thermal_state = SMBIOS_STATE_SAFE;
353 t->security_status = SMBIOS_SECURITY_NONE;
355 len = t->length + smbios_string_table_len(ctx);
362 static void smbios_write_type4_dm(struct smbios_type4 *t,
363 struct smbios_ctx *ctx)
365 u16 processor_family = SMBIOS_PROCESSOR_FAMILY_UNKNOWN;
366 const char *vendor = "Unknown";
367 const char *name = "Unknown";
370 char processor_name[49];
371 char vendor_name[49];
372 struct udevice *cpu = NULL;
374 uclass_find_first_device(UCLASS_CPU, &cpu);
376 struct cpu_plat *plat = dev_get_parent_plat(cpu);
379 processor_family = plat->family;
380 t->processor_id[0] = plat->id[0];
381 t->processor_id[1] = plat->id[1];
383 if (!cpu_get_vendor(cpu, vendor_name, sizeof(vendor_name)))
384 vendor = vendor_name;
385 if (!cpu_get_desc(cpu, processor_name, sizeof(processor_name)))
386 name = processor_name;
390 t->processor_family = processor_family;
391 t->processor_manufacturer = smbios_add_string(ctx, vendor);
392 t->processor_version = smbios_add_string(ctx, name);
395 static int smbios_write_type4(ulong *current, int handle,
396 struct smbios_ctx *ctx)
398 struct smbios_type4 *t;
399 int len = sizeof(struct smbios_type4);
401 t = map_sysmem(*current, len);
402 memset(t, 0, sizeof(struct smbios_type4));
403 fill_smbios_header(t, SMBIOS_PROCESSOR_INFORMATION, len, handle);
404 smbios_set_eos(ctx, t->eos);
405 t->processor_type = SMBIOS_PROCESSOR_TYPE_CENTRAL;
406 smbios_write_type4_dm(t, ctx);
407 t->status = SMBIOS_PROCESSOR_STATUS_ENABLED;
408 t->processor_upgrade = SMBIOS_PROCESSOR_UPGRADE_NONE;
409 t->l1_cache_handle = 0xffff;
410 t->l2_cache_handle = 0xffff;
411 t->l3_cache_handle = 0xffff;
412 t->processor_family2 = t->processor_family;
414 len = t->length + smbios_string_table_len(ctx);
421 static int smbios_write_type32(ulong *current, int handle,
422 struct smbios_ctx *ctx)
424 struct smbios_type32 *t;
425 int len = sizeof(struct smbios_type32);
427 t = map_sysmem(*current, len);
428 memset(t, 0, sizeof(struct smbios_type32));
429 fill_smbios_header(t, SMBIOS_SYSTEM_BOOT_INFORMATION, len, handle);
430 smbios_set_eos(ctx, t->eos);
438 static int smbios_write_type127(ulong *current, int handle,
439 struct smbios_ctx *ctx)
441 struct smbios_type127 *t;
442 int len = sizeof(struct smbios_type127);
444 t = map_sysmem(*current, len);
445 memset(t, 0, sizeof(struct smbios_type127));
446 fill_smbios_header(t, SMBIOS_END_OF_TABLE, len, handle);
454 static struct smbios_write_method smbios_write_funcs[] = {
455 { smbios_write_type0, "bios", },
456 { smbios_write_type1, "system", },
457 { smbios_write_type2, "baseboard", },
458 { smbios_write_type3, "chassis", },
459 { smbios_write_type4, },
460 { smbios_write_type32, },
461 { smbios_write_type127 },
464 ulong write_smbios_table(ulong addr)
466 ofnode parent_node = ofnode_null();
467 struct smbios_entry *se;
468 struct smbios_ctx ctx;
472 int max_struct_size = 0;
478 ctx.node = ofnode_null();
479 if (IS_ENABLED(CONFIG_OF_CONTROL)) {
480 uclass_first_device(UCLASS_SYSINFO, &ctx.dev);
482 parent_node = dev_read_subnode(ctx.dev, "smbios");
487 /* 16 byte align the table address */
488 addr = ALIGN(addr, 16);
490 se = map_sysmem(addr, sizeof(struct smbios_entry));
491 memset(se, 0, sizeof(struct smbios_entry));
493 addr += sizeof(struct smbios_entry);
494 addr = ALIGN(addr, 16);
497 /* populate minimum required tables */
498 for (i = 0; i < ARRAY_SIZE(smbios_write_funcs); i++) {
499 const struct smbios_write_method *method;
502 method = &smbios_write_funcs[i];
503 if (IS_ENABLED(CONFIG_OF_CONTROL) && method->subnode_name)
504 ctx.node = ofnode_find_subnode(parent_node,
505 method->subnode_name);
506 tmp = method->write((ulong *)&addr, handle++, &ctx);
508 max_struct_size = max(max_struct_size, tmp);
512 memcpy(se->anchor, "_SM_", 4);
513 se->length = sizeof(struct smbios_entry);
514 se->major_ver = SMBIOS_MAJOR_VER;
515 se->minor_ver = SMBIOS_MINOR_VER;
516 se->max_struct_size = max_struct_size;
517 memcpy(se->intermediate_anchor, "_DMI_", 5);
518 se->struct_table_length = len;
521 * We must use a pointer here so things work correctly on sandbox. The
522 * user of this table is not aware of the mapping of addresses to
523 * sandbox's DRAM buffer.
525 table_addr = (ulong)map_sysmem(tables, 0);
526 if (sizeof(table_addr) > sizeof(u32) && table_addr > (ulong)UINT_MAX) {
528 * We need to put this >32-bit pointer into the table but the
529 * field is only 32 bits wide.
531 printf("WARNING: SMBIOS table_address overflow %llx\n",
532 (unsigned long long)table_addr);
536 se->struct_table_address = table_addr;
538 se->struct_count = handle;
540 /* calculate checksums */
541 istart = (char *)se + SMBIOS_INTERMEDIATE_OFFSET;
542 isize = sizeof(struct smbios_entry) - SMBIOS_INTERMEDIATE_OFFSET;
543 se->intermediate_checksum = table_compute_checksum(istart, isize);
544 se->checksum = table_compute_checksum(se, sizeof(struct smbios_entry));