blob: 7b74971f68783205c2dfaab9e5a30f24b72139f4 [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 Glass7b51b572019-08-01 09:46:52 -06009#include <env.h>
Simon Glassa2505fc2018-11-22 13:46:37 -070010#include <mapmem.h>
Alexander Graf4b6dddc2016-08-19 01:23:23 +020011#include <smbios.h>
12#include <tables_csum.h>
Bin Meng721e9922015-10-12 05:23:41 -070013#include <version.h>
Alexander Graf96476202016-08-19 01:23:28 +020014#ifdef CONFIG_CPU
15#include <cpu.h>
16#include <dm.h>
17#include <dm/uclass-internal.h>
18#endif
Bin Meng721e9922015-10-12 05:23:41 -070019
Bin Meng721e9922015-10-12 05:23:41 -070020/**
21 * smbios_add_string() - add a string to the string area
22 *
23 * This adds a string to the string area which is appended directly after
24 * the formatted portion of an SMBIOS structure.
25 *
26 * @start: string area start address
27 * @str: string to add
28 * @return: string number in the string area
29 */
30static int smbios_add_string(char *start, const char *str)
31{
32 int i = 1;
33 char *p = start;
34
35 for (;;) {
36 if (!*p) {
37 strcpy(p, str);
38 p += strlen(str);
39 *p++ = '\0';
40 *p++ = '\0';
41
42 return i;
43 }
44
45 if (!strcmp(p, str))
46 return i;
47
48 p += strlen(p) + 1;
49 i++;
50 }
51}
52
53/**
54 * smbios_string_table_len() - compute the string area size
55 *
56 * This computes the size of the string area including the string terminator.
57 *
58 * @start: string area start address
59 * @return: string area size
60 */
61static int smbios_string_table_len(char *start)
62{
63 char *p = start;
64 int i, len = 0;
65
66 while (*p) {
67 i = strlen(p) + 1;
68 p += i;
69 len += i;
70 }
71
72 return len + 1;
73}
74
Simon Glass42fd8c12017-01-16 07:03:35 -070075static int smbios_write_type0(ulong *current, int handle)
Bin Meng721e9922015-10-12 05:23:41 -070076{
Simon Glassa2505fc2018-11-22 13:46:37 -070077 struct smbios_type0 *t;
Bin Meng721e9922015-10-12 05:23:41 -070078 int len = sizeof(struct smbios_type0);
79
Simon Glassa2505fc2018-11-22 13:46:37 -070080 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -070081 memset(t, 0, sizeof(struct smbios_type0));
82 fill_smbios_header(t, SMBIOS_BIOS_INFORMATION, len, handle);
83 t->vendor = smbios_add_string(t->eos, "U-Boot");
84 t->bios_ver = smbios_add_string(t->eos, PLAIN_VERSION);
85 t->bios_release_date = smbios_add_string(t->eos, U_BOOT_DMI_DATE);
Alexander Grafe663b352016-08-19 01:23:29 +020086#ifdef CONFIG_ROM_SIZE
Bin Meng721e9922015-10-12 05:23:41 -070087 t->bios_rom_size = (CONFIG_ROM_SIZE / 65536) - 1;
Alexander Grafe663b352016-08-19 01:23:29 +020088#endif
Bin Meng721e9922015-10-12 05:23:41 -070089 t->bios_characteristics = BIOS_CHARACTERISTICS_PCI_SUPPORTED |
90 BIOS_CHARACTERISTICS_SELECTABLE_BOOT |
91 BIOS_CHARACTERISTICS_UPGRADEABLE;
92#ifdef CONFIG_GENERATE_ACPI_TABLE
93 t->bios_characteristics_ext1 = BIOS_CHARACTERISTICS_EXT1_ACPI;
94#endif
Alexander Grafe663b352016-08-19 01:23:29 +020095#ifdef CONFIG_EFI_LOADER
96 t->bios_characteristics_ext1 |= BIOS_CHARACTERISTICS_EXT1_UEFI;
97#endif
Bin Meng721e9922015-10-12 05:23:41 -070098 t->bios_characteristics_ext2 = BIOS_CHARACTERISTICS_EXT2_TARGET;
Alexander Grafe663b352016-08-19 01:23:29 +020099
Bin Meng721e9922015-10-12 05:23:41 -0700100 t->bios_major_release = 0xff;
101 t->bios_minor_release = 0xff;
102 t->ec_major_release = 0xff;
103 t->ec_minor_release = 0xff;
104
105 len = t->length + smbios_string_table_len(t->eos);
106 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700107 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700108
109 return len;
110}
111
Simon Glass42fd8c12017-01-16 07:03:35 -0700112static int smbios_write_type1(ulong *current, int handle)
Bin Meng721e9922015-10-12 05:23:41 -0700113{
Simon Glassa2505fc2018-11-22 13:46:37 -0700114 struct smbios_type1 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700115 int len = sizeof(struct smbios_type1);
Simon Glass00caae62017-08-03 12:22:12 -0600116 char *serial_str = env_get("serial#");
Bin Meng721e9922015-10-12 05:23:41 -0700117
Simon Glassa2505fc2018-11-22 13:46:37 -0700118 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700119 memset(t, 0, sizeof(struct smbios_type1));
120 fill_smbios_header(t, SMBIOS_SYSTEM_INFORMATION, len, handle);
Bin Meng4cdce9f2016-05-22 01:45:38 -0700121 t->manufacturer = smbios_add_string(t->eos, CONFIG_SMBIOS_MANUFACTURER);
122 t->product_name = smbios_add_string(t->eos, CONFIG_SMBIOS_PRODUCT_NAME);
Alexander Graf6fb580d2016-08-19 01:23:31 +0200123 if (serial_str) {
Christian Gmeiner5113ff82018-07-30 13:22:06 +0200124 strncpy((char *)t->uuid, serial_str, sizeof(t->uuid));
Alexander Graf6fb580d2016-08-19 01:23:31 +0200125 t->serial_number = smbios_add_string(t->eos, serial_str);
126 }
Bin Meng721e9922015-10-12 05:23:41 -0700127
128 len = t->length + smbios_string_table_len(t->eos);
129 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700130 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700131
132 return len;
133}
134
Simon Glass42fd8c12017-01-16 07:03:35 -0700135static int smbios_write_type2(ulong *current, int handle)
Bin Meng721e9922015-10-12 05:23:41 -0700136{
Simon Glassa2505fc2018-11-22 13:46:37 -0700137 struct smbios_type2 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700138 int len = sizeof(struct smbios_type2);
139
Simon Glassa2505fc2018-11-22 13:46:37 -0700140 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700141 memset(t, 0, sizeof(struct smbios_type2));
142 fill_smbios_header(t, SMBIOS_BOARD_INFORMATION, len, handle);
Bin Meng4cdce9f2016-05-22 01:45:38 -0700143 t->manufacturer = smbios_add_string(t->eos, CONFIG_SMBIOS_MANUFACTURER);
144 t->product_name = smbios_add_string(t->eos, CONFIG_SMBIOS_PRODUCT_NAME);
Bin Meng721e9922015-10-12 05:23:41 -0700145 t->feature_flags = SMBIOS_BOARD_FEATURE_HOSTING;
146 t->board_type = SMBIOS_BOARD_MOTHERBOARD;
147
148 len = t->length + smbios_string_table_len(t->eos);
149 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700150 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700151
152 return len;
153}
154
Simon Glass42fd8c12017-01-16 07:03:35 -0700155static int smbios_write_type3(ulong *current, int handle)
Bin Meng721e9922015-10-12 05:23:41 -0700156{
Simon Glassa2505fc2018-11-22 13:46:37 -0700157 struct smbios_type3 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700158 int len = sizeof(struct smbios_type3);
159
Simon Glassa2505fc2018-11-22 13:46:37 -0700160 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700161 memset(t, 0, sizeof(struct smbios_type3));
162 fill_smbios_header(t, SMBIOS_SYSTEM_ENCLOSURE, len, handle);
Bin Meng4cdce9f2016-05-22 01:45:38 -0700163 t->manufacturer = smbios_add_string(t->eos, CONFIG_SMBIOS_MANUFACTURER);
Bin Meng721e9922015-10-12 05:23:41 -0700164 t->chassis_type = SMBIOS_ENCLOSURE_DESKTOP;
165 t->bootup_state = SMBIOS_STATE_SAFE;
166 t->power_supply_state = SMBIOS_STATE_SAFE;
167 t->thermal_state = SMBIOS_STATE_SAFE;
168 t->security_status = SMBIOS_SECURITY_NONE;
169
170 len = t->length + smbios_string_table_len(t->eos);
171 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700172 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700173
174 return len;
175}
176
Alexander Graf96476202016-08-19 01:23:28 +0200177static void smbios_write_type4_dm(struct smbios_type4 *t)
178{
179 u16 processor_family = SMBIOS_PROCESSOR_FAMILY_UNKNOWN;
180 const char *vendor = "Unknown";
181 const char *name = "Unknown";
182
183#ifdef CONFIG_CPU
184 char processor_name[49];
185 char vendor_name[49];
186 struct udevice *dev = NULL;
187
188 uclass_find_first_device(UCLASS_CPU, &dev);
189 if (dev) {
190 struct cpu_platdata *plat = dev_get_parent_platdata(dev);
191
192 if (plat->family)
193 processor_family = plat->family;
194 t->processor_id[0] = plat->id[0];
195 t->processor_id[1] = plat->id[1];
196
197 if (!cpu_get_vendor(dev, vendor_name, sizeof(vendor_name)))
198 vendor = vendor_name;
199 if (!cpu_get_desc(dev, processor_name, sizeof(processor_name)))
200 name = processor_name;
201 }
202#endif
203
204 t->processor_family = processor_family;
205 t->processor_manufacturer = smbios_add_string(t->eos, vendor);
206 t->processor_version = smbios_add_string(t->eos, name);
207}
208
Simon Glass42fd8c12017-01-16 07:03:35 -0700209static int smbios_write_type4(ulong *current, int handle)
Bin Meng721e9922015-10-12 05:23:41 -0700210{
Simon Glassa2505fc2018-11-22 13:46:37 -0700211 struct smbios_type4 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700212 int len = sizeof(struct smbios_type4);
Bin Meng721e9922015-10-12 05:23:41 -0700213
Simon Glassa2505fc2018-11-22 13:46:37 -0700214 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700215 memset(t, 0, sizeof(struct smbios_type4));
216 fill_smbios_header(t, SMBIOS_PROCESSOR_INFORMATION, len, handle);
217 t->processor_type = SMBIOS_PROCESSOR_TYPE_CENTRAL;
Alexander Graf96476202016-08-19 01:23:28 +0200218 smbios_write_type4_dm(t);
Bin Meng721e9922015-10-12 05:23:41 -0700219 t->status = SMBIOS_PROCESSOR_STATUS_ENABLED;
220 t->processor_upgrade = SMBIOS_PROCESSOR_UPGRADE_NONE;
221 t->l1_cache_handle = 0xffff;
222 t->l2_cache_handle = 0xffff;
223 t->l3_cache_handle = 0xffff;
224 t->processor_family2 = t->processor_family;
225
226 len = t->length + smbios_string_table_len(t->eos);
227 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700228 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700229
230 return len;
231}
232
Simon Glass42fd8c12017-01-16 07:03:35 -0700233static int smbios_write_type32(ulong *current, int handle)
Bin Meng721e9922015-10-12 05:23:41 -0700234{
Simon Glassa2505fc2018-11-22 13:46:37 -0700235 struct smbios_type32 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700236 int len = sizeof(struct smbios_type32);
237
Simon Glassa2505fc2018-11-22 13:46:37 -0700238 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700239 memset(t, 0, sizeof(struct smbios_type32));
240 fill_smbios_header(t, SMBIOS_SYSTEM_BOOT_INFORMATION, len, handle);
241
242 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700243 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700244
245 return len;
246}
247
Simon Glass42fd8c12017-01-16 07:03:35 -0700248static int smbios_write_type127(ulong *current, int handle)
Bin Meng721e9922015-10-12 05:23:41 -0700249{
Simon Glassa2505fc2018-11-22 13:46:37 -0700250 struct smbios_type127 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700251 int len = sizeof(struct smbios_type127);
252
Simon Glassa2505fc2018-11-22 13:46:37 -0700253 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700254 memset(t, 0, sizeof(struct smbios_type127));
255 fill_smbios_header(t, SMBIOS_END_OF_TABLE, len, handle);
256
257 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700258 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700259
260 return len;
261}
262
263static smbios_write_type smbios_write_funcs[] = {
264 smbios_write_type0,
265 smbios_write_type1,
266 smbios_write_type2,
267 smbios_write_type3,
268 smbios_write_type4,
269 smbios_write_type32,
270 smbios_write_type127
271};
272
Simon Glass42fd8c12017-01-16 07:03:35 -0700273ulong write_smbios_table(ulong addr)
Bin Meng721e9922015-10-12 05:23:41 -0700274{
275 struct smbios_entry *se;
Simon Glassa2505fc2018-11-22 13:46:37 -0700276 ulong table_addr;
Simon Glass42fd8c12017-01-16 07:03:35 -0700277 ulong tables;
Bin Meng721e9922015-10-12 05:23:41 -0700278 int len = 0;
279 int max_struct_size = 0;
280 int handle = 0;
281 char *istart;
282 int isize;
283 int i;
284
285 /* 16 byte align the table address */
286 addr = ALIGN(addr, 16);
287
Simon Glassa2505fc2018-11-22 13:46:37 -0700288 se = map_sysmem(addr, sizeof(struct smbios_entry));
Bin Meng721e9922015-10-12 05:23:41 -0700289 memset(se, 0, sizeof(struct smbios_entry));
290
291 addr += sizeof(struct smbios_entry);
292 addr = ALIGN(addr, 16);
293 tables = addr;
294
295 /* populate minimum required tables */
296 for (i = 0; i < ARRAY_SIZE(smbios_write_funcs); i++) {
Simon Glass42fd8c12017-01-16 07:03:35 -0700297 int tmp = smbios_write_funcs[i]((ulong *)&addr, handle++);
Christian Gmeiner60a4df32018-07-30 13:22:07 +0200298
Bin Meng721e9922015-10-12 05:23:41 -0700299 max_struct_size = max(max_struct_size, tmp);
300 len += tmp;
301 }
302
303 memcpy(se->anchor, "_SM_", 4);
304 se->length = sizeof(struct smbios_entry);
305 se->major_ver = SMBIOS_MAJOR_VER;
306 se->minor_ver = SMBIOS_MINOR_VER;
307 se->max_struct_size = max_struct_size;
308 memcpy(se->intermediate_anchor, "_DMI_", 5);
309 se->struct_table_length = len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700310
311 /*
312 * We must use a pointer here so things work correctly on sandbox. The
313 * user of this table is not aware of the mapping of addresses to
314 * sandbox's DRAM buffer.
315 */
316 table_addr = (ulong)map_sysmem(tables, 0);
317 if (sizeof(table_addr) > sizeof(u32) && table_addr > (ulong)UINT_MAX) {
318 /*
319 * We need to put this >32-bit pointer into the table but the
320 * field is only 32 bits wide.
321 */
322 printf("WARNING: SMBIOS table_address overflow %llx\n",
323 (unsigned long long)table_addr);
324 table_addr = 0;
325 }
326 se->struct_table_address = table_addr;
327
Bin Meng721e9922015-10-12 05:23:41 -0700328 se->struct_count = handle;
329
330 /* calculate checksums */
331 istart = (char *)se + SMBIOS_INTERMEDIATE_OFFSET;
332 isize = sizeof(struct smbios_entry) - SMBIOS_INTERMEDIATE_OFFSET;
333 se->intermediate_checksum = table_compute_checksum(istart, isize);
334 se->checksum = table_compute_checksum(se, sizeof(struct smbios_entry));
Simon Glassa2505fc2018-11-22 13:46:37 -0700335 unmap_sysmem(se);
Bin Meng721e9922015-10-12 05:23:41 -0700336
337 return addr;
338}