blob: 7d463c84a93453bcb6d9f661128358c74c7c37a2 [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
8#include <common.h>
Simon Glass78227d42020-11-05 06:32:07 -07009#include <dm.h>
Simon Glass7b51b572019-08-01 09:46:52 -060010#include <env.h>
Simon Glassa2505fc2018-11-22 13:46:37 -070011#include <mapmem.h>
Alexander Graf4b6dddc2016-08-19 01:23:23 +020012#include <smbios.h>
Simon Glass07c9e682021-02-04 21:17:23 -070013#include <sysinfo.h>
Alexander Graf4b6dddc2016-08-19 01:23:23 +020014#include <tables_csum.h>
Bin Meng721e9922015-10-12 05:23:41 -070015#include <version.h>
Alexander Graf96476202016-08-19 01:23:28 +020016#ifdef CONFIG_CPU
17#include <cpu.h>
Alexander Graf96476202016-08-19 01:23:28 +020018#include <dm/uclass-internal.h>
19#endif
Bin Meng721e9922015-10-12 05:23:41 -070020
Simon Glasse9adaa72021-02-04 21:17:20 -070021DECLARE_GLOBAL_DATA_PTR;
22
23enum {
24 SMBIOS_STR_MAX = 64, /* Maximum length allowed for a string */
25};
26
Bin Meng721e9922015-10-12 05:23:41 -070027/**
Simon Glass1e8989a2021-02-04 21:17:17 -070028 * struct smbios_ctx - context for writing SMBIOS tables
29 *
30 * @node: node containing the information to write (ofnode_null() if none)
31 * @dev: sysinfo device to use (NULL if none)
Simon Glass0c95fff2021-02-04 21:17:18 -070032 * @eos: end-of-string pointer for the table being processed. This is set
33 * up when we start processing a table
Simon Glassfd3b8262021-02-04 21:17:19 -070034 * @next_ptr: pointer to the start of the next string to be added. When the
35 * table is nopt empty, this points to the byte after the \0 of the
36 * previous string.
Simon Glasse9adaa72021-02-04 21:17:20 -070037 * @last_str: points to the last string that was written to the table, or NULL
38 * if none
Simon Glass1e8989a2021-02-04 21:17:17 -070039 */
40struct smbios_ctx {
41 ofnode node;
42 struct udevice *dev;
Simon Glass0c95fff2021-02-04 21:17:18 -070043 char *eos;
Simon Glassfd3b8262021-02-04 21:17:19 -070044 char *next_ptr;
Simon Glasse9adaa72021-02-04 21:17:20 -070045 char *last_str;
Simon Glass1e8989a2021-02-04 21:17:17 -070046};
47
48/**
Simon Glass0e89b852021-02-04 21:17:14 -070049 * Function prototype to write a specific type of SMBIOS structure
50 *
51 * @addr: start address to write the structure
52 * @handle: the structure's handle, a unique 16-bit number
Simon Glass1e8989a2021-02-04 21:17:17 -070053 * @ctx: context for writing the tables
Simon Glass0e89b852021-02-04 21:17:14 -070054 * @return: size of the structure
55 */
Simon Glass1e8989a2021-02-04 21:17:17 -070056typedef int (*smbios_write_type)(ulong *addr, int handle,
57 struct smbios_ctx *ctx);
Simon Glass0e89b852021-02-04 21:17:14 -070058
59/**
Simon Glass44ffb6f2020-11-05 06:32:08 -070060 * struct smbios_write_method - Information about a table-writing function
61 *
62 * @write: Function to call
63 * @subnode_name: Name of subnode which has the information for this function,
64 * NULL if none
65 */
66struct smbios_write_method {
67 smbios_write_type write;
68 const char *subnode_name;
69};
70
71/**
Bin Meng721e9922015-10-12 05:23:41 -070072 * smbios_add_string() - add a string to the string area
73 *
74 * This adds a string to the string area which is appended directly after
75 * the formatted portion of an SMBIOS structure.
76 *
Simon Glass0c95fff2021-02-04 21:17:18 -070077 * @ctx: SMBIOS context
Bin Meng721e9922015-10-12 05:23:41 -070078 * @str: string to add
Simon Glass78227d42020-11-05 06:32:07 -070079 * @return: string number in the string area (1 or more)
Bin Meng721e9922015-10-12 05:23:41 -070080 */
Simon Glass0c95fff2021-02-04 21:17:18 -070081static int smbios_add_string(struct smbios_ctx *ctx, const char *str)
Bin Meng721e9922015-10-12 05:23:41 -070082{
83 int i = 1;
Simon Glass0c95fff2021-02-04 21:17:18 -070084 char *p = ctx->eos;
85
Heinrich Schuchardt00a871d2020-06-01 15:44:00 +020086 if (!*str)
87 str = "Unknown";
Bin Meng721e9922015-10-12 05:23:41 -070088
89 for (;;) {
90 if (!*p) {
Simon Glasse9adaa72021-02-04 21:17:20 -070091 ctx->last_str = p;
Bin Meng721e9922015-10-12 05:23:41 -070092 strcpy(p, str);
93 p += strlen(str);
94 *p++ = '\0';
Simon Glassfd3b8262021-02-04 21:17:19 -070095 ctx->next_ptr = p;
Bin Meng721e9922015-10-12 05:23:41 -070096 *p++ = '\0';
97
98 return i;
99 }
100
Simon Glasse9adaa72021-02-04 21:17:20 -0700101 if (!strcmp(p, str)) {
102 ctx->last_str = p;
Bin Meng721e9922015-10-12 05:23:41 -0700103 return i;
Simon Glasse9adaa72021-02-04 21:17:20 -0700104 }
Bin Meng721e9922015-10-12 05:23:41 -0700105
106 p += strlen(p) + 1;
107 i++;
108 }
109}
110
111/**
Simon Glass07c9e682021-02-04 21:17:23 -0700112 * smbios_add_prop_si() - Add a property from the devicetree or sysinfo
113 *
114 * Sysinfo is used if available, with a fallback to devicetree
Simon Glass44ffb6f2020-11-05 06:32:08 -0700115 *
Simon Glass1e8989a2021-02-04 21:17:17 -0700116 * @ctx: context for writing the tables
Simon Glass44ffb6f2020-11-05 06:32:08 -0700117 * @prop: property to write
118 * @return 0 if not found, else SMBIOS string number (1 or more)
119 */
Simon Glass07c9e682021-02-04 21:17:23 -0700120static int smbios_add_prop_si(struct smbios_ctx *ctx, const char *prop,
121 int sysinfo_id)
Simon Glass44ffb6f2020-11-05 06:32:08 -0700122{
Simon Glass07c9e682021-02-04 21:17:23 -0700123 if (sysinfo_id && ctx->dev) {
124 char val[SMBIOS_STR_MAX];
125 int ret;
126
127 ret = sysinfo_get_str(ctx->dev, sysinfo_id, sizeof(val), val);
128 if (!ret)
129 return smbios_add_string(ctx, val);
130 }
Simon Glasse4f8e542020-11-05 06:32:18 -0700131 if (IS_ENABLED(CONFIG_OF_CONTROL)) {
132 const char *str;
133
Simon Glass1e8989a2021-02-04 21:17:17 -0700134 str = ofnode_read_string(ctx->node, prop);
Simon Glasse4f8e542020-11-05 06:32:18 -0700135 if (str)
Simon Glass0c95fff2021-02-04 21:17:18 -0700136 return smbios_add_string(ctx, str);
Simon Glasse4f8e542020-11-05 06:32:18 -0700137 }
138
139 return 0;
Simon Glass44ffb6f2020-11-05 06:32:08 -0700140}
141
Simon Glass07c9e682021-02-04 21:17:23 -0700142/**
143 * smbios_add_prop() - Add a property from the devicetree
144 *
145 * @prop: property to write
146 * @return 0 if not found, else SMBIOS string number (1 or more)
147 */
148static int smbios_add_prop(struct smbios_ctx *ctx, const char *prop)
149{
150 return smbios_add_prop_si(ctx, prop, SYSINFO_ID_NONE);
151}
152
Simon Glass0c95fff2021-02-04 21:17:18 -0700153static void smbios_set_eos(struct smbios_ctx *ctx, char *eos)
154{
155 ctx->eos = eos;
Simon Glassfd3b8262021-02-04 21:17:19 -0700156 ctx->next_ptr = eos;
Simon Glasse9adaa72021-02-04 21:17:20 -0700157 ctx->last_str = NULL;
158}
159
160int smbios_update_version(const char *version)
161{
162 char *ptr = gd->smbios_version;
163 uint old_len, len;
164
165 if (!ptr)
166 return log_ret(-ENOENT);
167
168 /*
169 * This string is supposed to have at least enough bytes and is
170 * padded with spaces. Update it, taking care not to move the
171 * \0 terminator, so that other strings in the string table
172 * are not disturbed. See smbios_add_string()
173 */
174 old_len = strnlen(ptr, SMBIOS_STR_MAX);
175 len = strnlen(version, SMBIOS_STR_MAX);
176 if (len > old_len)
177 return log_ret(-ENOSPC);
178
179 log_debug("Replacing SMBIOS type 0 version string '%s'\n", ptr);
180 memcpy(ptr, version, len);
181#ifdef LOG_DEBUG
182 print_buffer((ulong)ptr, ptr, 1, old_len + 1, 0);
183#endif
184
185 return 0;
Simon Glass0c95fff2021-02-04 21:17:18 -0700186}
187
Simon Glass44ffb6f2020-11-05 06:32:08 -0700188/**
Bin Meng721e9922015-10-12 05:23:41 -0700189 * smbios_string_table_len() - compute the string area size
190 *
191 * This computes the size of the string area including the string terminator.
192 *
Simon Glassfd3b8262021-02-04 21:17:19 -0700193 * @ctx: SMBIOS context
Bin Meng721e9922015-10-12 05:23:41 -0700194 * @return: string area size
195 */
Simon Glassfd3b8262021-02-04 21:17:19 -0700196static int smbios_string_table_len(const struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700197{
Simon Glassfd3b8262021-02-04 21:17:19 -0700198 /* Allow for the final \0 after all strings */
199 return (ctx->next_ptr + 1) - ctx->eos;
Bin Meng721e9922015-10-12 05:23:41 -0700200}
201
Simon Glass1e8989a2021-02-04 21:17:17 -0700202static int smbios_write_type0(ulong *current, int handle,
203 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700204{
Simon Glassa2505fc2018-11-22 13:46:37 -0700205 struct smbios_type0 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700206 int len = sizeof(struct smbios_type0);
207
Simon Glassa2505fc2018-11-22 13:46:37 -0700208 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700209 memset(t, 0, sizeof(struct smbios_type0));
210 fill_smbios_header(t, SMBIOS_BIOS_INFORMATION, len, handle);
Simon Glass0c95fff2021-02-04 21:17:18 -0700211 smbios_set_eos(ctx, t->eos);
212 t->vendor = smbios_add_string(ctx, "U-Boot");
Simon Glasse9adaa72021-02-04 21:17:20 -0700213
214 t->bios_ver = smbios_add_prop(ctx, "version");
215 if (!t->bios_ver)
216 t->bios_ver = smbios_add_string(ctx, PLAIN_VERSION);
217 if (t->bios_ver)
218 gd->smbios_version = ctx->last_str;
219 log_debug("smbios_version = %p: '%s'\n", gd->smbios_version,
220 gd->smbios_version);
221#ifdef LOG_DEBUG
222 print_buffer((ulong)gd->smbios_version, gd->smbios_version,
223 1, strlen(gd->smbios_version) + 1, 0);
224#endif
Simon Glass0c95fff2021-02-04 21:17:18 -0700225 t->bios_release_date = smbios_add_string(ctx, U_BOOT_DMI_DATE);
Alexander Grafe663b352016-08-19 01:23:29 +0200226#ifdef CONFIG_ROM_SIZE
Bin Meng721e9922015-10-12 05:23:41 -0700227 t->bios_rom_size = (CONFIG_ROM_SIZE / 65536) - 1;
Alexander Grafe663b352016-08-19 01:23:29 +0200228#endif
Bin Meng721e9922015-10-12 05:23:41 -0700229 t->bios_characteristics = BIOS_CHARACTERISTICS_PCI_SUPPORTED |
230 BIOS_CHARACTERISTICS_SELECTABLE_BOOT |
231 BIOS_CHARACTERISTICS_UPGRADEABLE;
232#ifdef CONFIG_GENERATE_ACPI_TABLE
233 t->bios_characteristics_ext1 = BIOS_CHARACTERISTICS_EXT1_ACPI;
234#endif
Alexander Grafe663b352016-08-19 01:23:29 +0200235#ifdef CONFIG_EFI_LOADER
236 t->bios_characteristics_ext1 |= BIOS_CHARACTERISTICS_EXT1_UEFI;
237#endif
Bin Meng721e9922015-10-12 05:23:41 -0700238 t->bios_characteristics_ext2 = BIOS_CHARACTERISTICS_EXT2_TARGET;
Alexander Grafe663b352016-08-19 01:23:29 +0200239
Simon Glass7617f992021-02-04 21:17:16 -0700240 /* bios_major_release has only one byte, so drop century */
241 t->bios_major_release = U_BOOT_VERSION_NUM % 100;
242 t->bios_minor_release = U_BOOT_VERSION_NUM_PATCH;
Bin Meng721e9922015-10-12 05:23:41 -0700243 t->ec_major_release = 0xff;
244 t->ec_minor_release = 0xff;
245
Simon Glassfd3b8262021-02-04 21:17:19 -0700246 len = t->length + smbios_string_table_len(ctx);
Bin Meng721e9922015-10-12 05:23:41 -0700247 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700248 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700249
250 return len;
251}
252
Simon Glass1e8989a2021-02-04 21:17:17 -0700253static int smbios_write_type1(ulong *current, int handle,
254 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700255{
Simon Glassa2505fc2018-11-22 13:46:37 -0700256 struct smbios_type1 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700257 int len = sizeof(struct smbios_type1);
Simon Glass00caae62017-08-03 12:22:12 -0600258 char *serial_str = env_get("serial#");
Bin Meng721e9922015-10-12 05:23:41 -0700259
Simon Glassa2505fc2018-11-22 13:46:37 -0700260 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700261 memset(t, 0, sizeof(struct smbios_type1));
262 fill_smbios_header(t, SMBIOS_SYSTEM_INFORMATION, len, handle);
Simon Glass0c95fff2021-02-04 21:17:18 -0700263 smbios_set_eos(ctx, t->eos);
264 t->manufacturer = smbios_add_prop(ctx, "manufacturer");
265 t->product_name = smbios_add_prop(ctx, "product");
Simon Glass07c9e682021-02-04 21:17:23 -0700266 t->version = smbios_add_prop_si(ctx, "version",
267 SYSINFO_ID_SMBIOS_SYSTEM_VERSION);
Alexander Graf6fb580d2016-08-19 01:23:31 +0200268 if (serial_str) {
Simon Glass0c95fff2021-02-04 21:17:18 -0700269 t->serial_number = smbios_add_string(ctx, serial_str);
Simon Glass44ffb6f2020-11-05 06:32:08 -0700270 strncpy((char *)t->uuid, serial_str, sizeof(t->uuid));
271 } else {
Simon Glass0c95fff2021-02-04 21:17:18 -0700272 t->serial_number = smbios_add_prop(ctx, "serial");
Alexander Graf6fb580d2016-08-19 01:23:31 +0200273 }
Simon Glass0c95fff2021-02-04 21:17:18 -0700274 t->sku_number = smbios_add_prop(ctx, "sku");
275 t->family = smbios_add_prop(ctx, "family");
Bin Meng721e9922015-10-12 05:23:41 -0700276
Simon Glassfd3b8262021-02-04 21:17:19 -0700277 len = t->length + smbios_string_table_len(ctx);
Bin Meng721e9922015-10-12 05:23:41 -0700278 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700279 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700280
281 return len;
282}
283
Simon Glass1e8989a2021-02-04 21:17:17 -0700284static int smbios_write_type2(ulong *current, int handle,
285 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700286{
Simon Glassa2505fc2018-11-22 13:46:37 -0700287 struct smbios_type2 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700288 int len = sizeof(struct smbios_type2);
289
Simon Glassa2505fc2018-11-22 13:46:37 -0700290 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700291 memset(t, 0, sizeof(struct smbios_type2));
292 fill_smbios_header(t, SMBIOS_BOARD_INFORMATION, len, handle);
Simon Glass0c95fff2021-02-04 21:17:18 -0700293 smbios_set_eos(ctx, t->eos);
294 t->manufacturer = smbios_add_prop(ctx, "manufacturer");
295 t->product_name = smbios_add_prop(ctx, "product");
Simon Glass07c9e682021-02-04 21:17:23 -0700296 t->version = smbios_add_prop_si(ctx, "version",
297 SYSINFO_ID_SMBIOS_BASEBOARD_VERSION);
Simon Glass0c95fff2021-02-04 21:17:18 -0700298 t->asset_tag_number = smbios_add_prop(ctx, "asset-tag");
Bin Meng721e9922015-10-12 05:23:41 -0700299 t->feature_flags = SMBIOS_BOARD_FEATURE_HOSTING;
300 t->board_type = SMBIOS_BOARD_MOTHERBOARD;
301
Simon Glassfd3b8262021-02-04 21:17:19 -0700302 len = t->length + smbios_string_table_len(ctx);
Bin Meng721e9922015-10-12 05:23:41 -0700303 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700304 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700305
306 return len;
307}
308
Simon Glass1e8989a2021-02-04 21:17:17 -0700309static int smbios_write_type3(ulong *current, int handle,
310 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700311{
Simon Glassa2505fc2018-11-22 13:46:37 -0700312 struct smbios_type3 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700313 int len = sizeof(struct smbios_type3);
314
Simon Glassa2505fc2018-11-22 13:46:37 -0700315 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700316 memset(t, 0, sizeof(struct smbios_type3));
317 fill_smbios_header(t, SMBIOS_SYSTEM_ENCLOSURE, len, handle);
Simon Glass0c95fff2021-02-04 21:17:18 -0700318 smbios_set_eos(ctx, t->eos);
319 t->manufacturer = smbios_add_prop(ctx, "manufacturer");
Bin Meng721e9922015-10-12 05:23:41 -0700320 t->chassis_type = SMBIOS_ENCLOSURE_DESKTOP;
321 t->bootup_state = SMBIOS_STATE_SAFE;
322 t->power_supply_state = SMBIOS_STATE_SAFE;
323 t->thermal_state = SMBIOS_STATE_SAFE;
324 t->security_status = SMBIOS_SECURITY_NONE;
325
Simon Glassfd3b8262021-02-04 21:17:19 -0700326 len = t->length + smbios_string_table_len(ctx);
Bin Meng721e9922015-10-12 05:23:41 -0700327 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700328 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700329
330 return len;
331}
332
Simon Glass1e8989a2021-02-04 21:17:17 -0700333static void smbios_write_type4_dm(struct smbios_type4 *t,
334 struct smbios_ctx *ctx)
Alexander Graf96476202016-08-19 01:23:28 +0200335{
336 u16 processor_family = SMBIOS_PROCESSOR_FAMILY_UNKNOWN;
337 const char *vendor = "Unknown";
338 const char *name = "Unknown";
339
340#ifdef CONFIG_CPU
341 char processor_name[49];
342 char vendor_name[49];
Simon Glass78227d42020-11-05 06:32:07 -0700343 struct udevice *cpu = NULL;
Alexander Graf96476202016-08-19 01:23:28 +0200344
Simon Glass78227d42020-11-05 06:32:07 -0700345 uclass_find_first_device(UCLASS_CPU, &cpu);
346 if (cpu) {
Simon Glass8a8d24b2020-12-03 16:55:23 -0700347 struct cpu_plat *plat = dev_get_parent_plat(cpu);
Alexander Graf96476202016-08-19 01:23:28 +0200348
349 if (plat->family)
350 processor_family = plat->family;
351 t->processor_id[0] = plat->id[0];
352 t->processor_id[1] = plat->id[1];
353
Simon Glass78227d42020-11-05 06:32:07 -0700354 if (!cpu_get_vendor(cpu, vendor_name, sizeof(vendor_name)))
Alexander Graf96476202016-08-19 01:23:28 +0200355 vendor = vendor_name;
Simon Glass78227d42020-11-05 06:32:07 -0700356 if (!cpu_get_desc(cpu, processor_name, sizeof(processor_name)))
Alexander Graf96476202016-08-19 01:23:28 +0200357 name = processor_name;
358 }
359#endif
360
361 t->processor_family = processor_family;
Simon Glass0c95fff2021-02-04 21:17:18 -0700362 t->processor_manufacturer = smbios_add_string(ctx, vendor);
363 t->processor_version = smbios_add_string(ctx, name);
Alexander Graf96476202016-08-19 01:23:28 +0200364}
365
Simon Glass1e8989a2021-02-04 21:17:17 -0700366static int smbios_write_type4(ulong *current, int handle,
367 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700368{
Simon Glassa2505fc2018-11-22 13:46:37 -0700369 struct smbios_type4 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700370 int len = sizeof(struct smbios_type4);
Bin Meng721e9922015-10-12 05:23:41 -0700371
Simon Glassa2505fc2018-11-22 13:46:37 -0700372 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700373 memset(t, 0, sizeof(struct smbios_type4));
374 fill_smbios_header(t, SMBIOS_PROCESSOR_INFORMATION, len, handle);
Simon Glass0c95fff2021-02-04 21:17:18 -0700375 smbios_set_eos(ctx, t->eos);
Bin Meng721e9922015-10-12 05:23:41 -0700376 t->processor_type = SMBIOS_PROCESSOR_TYPE_CENTRAL;
Simon Glass1e8989a2021-02-04 21:17:17 -0700377 smbios_write_type4_dm(t, ctx);
Bin Meng721e9922015-10-12 05:23:41 -0700378 t->status = SMBIOS_PROCESSOR_STATUS_ENABLED;
379 t->processor_upgrade = SMBIOS_PROCESSOR_UPGRADE_NONE;
380 t->l1_cache_handle = 0xffff;
381 t->l2_cache_handle = 0xffff;
382 t->l3_cache_handle = 0xffff;
383 t->processor_family2 = t->processor_family;
384
Simon Glassfd3b8262021-02-04 21:17:19 -0700385 len = t->length + smbios_string_table_len(ctx);
Bin Meng721e9922015-10-12 05:23:41 -0700386 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700387 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700388
389 return len;
390}
391
Simon Glass1e8989a2021-02-04 21:17:17 -0700392static int smbios_write_type32(ulong *current, int handle,
393 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700394{
Simon Glassa2505fc2018-11-22 13:46:37 -0700395 struct smbios_type32 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700396 int len = sizeof(struct smbios_type32);
397
Simon Glassa2505fc2018-11-22 13:46:37 -0700398 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700399 memset(t, 0, sizeof(struct smbios_type32));
400 fill_smbios_header(t, SMBIOS_SYSTEM_BOOT_INFORMATION, len, handle);
Simon Glass0c95fff2021-02-04 21:17:18 -0700401 smbios_set_eos(ctx, t->eos);
Bin Meng721e9922015-10-12 05:23:41 -0700402
403 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700404 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700405
406 return len;
407}
408
Simon Glass1e8989a2021-02-04 21:17:17 -0700409static int smbios_write_type127(ulong *current, int handle,
410 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700411{
Simon Glassa2505fc2018-11-22 13:46:37 -0700412 struct smbios_type127 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700413 int len = sizeof(struct smbios_type127);
414
Simon Glassa2505fc2018-11-22 13:46:37 -0700415 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700416 memset(t, 0, sizeof(struct smbios_type127));
417 fill_smbios_header(t, SMBIOS_END_OF_TABLE, len, handle);
418
419 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700420 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700421
422 return len;
423}
424
Simon Glass44ffb6f2020-11-05 06:32:08 -0700425static struct smbios_write_method smbios_write_funcs[] = {
Simon Glasse9adaa72021-02-04 21:17:20 -0700426 { smbios_write_type0, "bios", },
Simon Glass44ffb6f2020-11-05 06:32:08 -0700427 { smbios_write_type1, "system", },
428 { smbios_write_type2, "baseboard", },
429 { smbios_write_type3, "chassis", },
430 { smbios_write_type4, },
431 { smbios_write_type32, },
432 { smbios_write_type127 },
Bin Meng721e9922015-10-12 05:23:41 -0700433};
434
Simon Glass42fd8c12017-01-16 07:03:35 -0700435ulong write_smbios_table(ulong addr)
Bin Meng721e9922015-10-12 05:23:41 -0700436{
Simon Glass44ffb6f2020-11-05 06:32:08 -0700437 ofnode parent_node = ofnode_null();
Bin Meng721e9922015-10-12 05:23:41 -0700438 struct smbios_entry *se;
Simon Glass1e8989a2021-02-04 21:17:17 -0700439 struct smbios_ctx ctx;
Simon Glassa2505fc2018-11-22 13:46:37 -0700440 ulong table_addr;
Simon Glass42fd8c12017-01-16 07:03:35 -0700441 ulong tables;
Bin Meng721e9922015-10-12 05:23:41 -0700442 int len = 0;
443 int max_struct_size = 0;
444 int handle = 0;
445 char *istart;
446 int isize;
447 int i;
448
Simon Glass1e8989a2021-02-04 21:17:17 -0700449 ctx.node = ofnode_null();
Simon Glass78227d42020-11-05 06:32:07 -0700450 if (IS_ENABLED(CONFIG_OF_CONTROL)) {
Simon Glass1e8989a2021-02-04 21:17:17 -0700451 uclass_first_device(UCLASS_SYSINFO, &ctx.dev);
452 if (ctx.dev)
453 parent_node = dev_read_subnode(ctx.dev, "smbios");
454 } else {
455 ctx.dev = NULL;
Simon Glass78227d42020-11-05 06:32:07 -0700456 }
457
Bin Meng721e9922015-10-12 05:23:41 -0700458 /* 16 byte align the table address */
459 addr = ALIGN(addr, 16);
460
Simon Glassa2505fc2018-11-22 13:46:37 -0700461 se = map_sysmem(addr, sizeof(struct smbios_entry));
Bin Meng721e9922015-10-12 05:23:41 -0700462 memset(se, 0, sizeof(struct smbios_entry));
463
464 addr += sizeof(struct smbios_entry);
465 addr = ALIGN(addr, 16);
466 tables = addr;
467
468 /* populate minimum required tables */
469 for (i = 0; i < ARRAY_SIZE(smbios_write_funcs); i++) {
Simon Glass44ffb6f2020-11-05 06:32:08 -0700470 const struct smbios_write_method *method;
Simon Glass44ffb6f2020-11-05 06:32:08 -0700471 int tmp;
472
473 method = &smbios_write_funcs[i];
474 if (IS_ENABLED(CONFIG_OF_CONTROL) && method->subnode_name)
Simon Glass1e8989a2021-02-04 21:17:17 -0700475 ctx.node = ofnode_find_subnode(parent_node,
476 method->subnode_name);
477 tmp = method->write((ulong *)&addr, handle++, &ctx);
Christian Gmeiner60a4df32018-07-30 13:22:07 +0200478
Bin Meng721e9922015-10-12 05:23:41 -0700479 max_struct_size = max(max_struct_size, tmp);
480 len += tmp;
481 }
482
483 memcpy(se->anchor, "_SM_", 4);
484 se->length = sizeof(struct smbios_entry);
485 se->major_ver = SMBIOS_MAJOR_VER;
486 se->minor_ver = SMBIOS_MINOR_VER;
487 se->max_struct_size = max_struct_size;
488 memcpy(se->intermediate_anchor, "_DMI_", 5);
489 se->struct_table_length = len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700490
491 /*
492 * We must use a pointer here so things work correctly on sandbox. The
493 * user of this table is not aware of the mapping of addresses to
494 * sandbox's DRAM buffer.
495 */
496 table_addr = (ulong)map_sysmem(tables, 0);
497 if (sizeof(table_addr) > sizeof(u32) && table_addr > (ulong)UINT_MAX) {
498 /*
499 * We need to put this >32-bit pointer into the table but the
500 * field is only 32 bits wide.
501 */
502 printf("WARNING: SMBIOS table_address overflow %llx\n",
503 (unsigned long long)table_addr);
504 table_addr = 0;
505 }
506 se->struct_table_address = table_addr;
507
Bin Meng721e9922015-10-12 05:23:41 -0700508 se->struct_count = handle;
509
510 /* calculate checksums */
511 istart = (char *)se + SMBIOS_INTERMEDIATE_OFFSET;
512 isize = sizeof(struct smbios_entry) - SMBIOS_INTERMEDIATE_OFFSET;
513 se->intermediate_checksum = table_compute_checksum(istart, isize);
514 se->checksum = table_compute_checksum(se, sizeof(struct smbios_entry));
Simon Glassa2505fc2018-11-22 13:46:37 -0700515 unmap_sysmem(se);
Bin Meng721e9922015-10-12 05:23:41 -0700516
517 return addr;
518}