Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com> |
| 4 | * |
| 5 | * Adapted from coreboot src/arch/x86/smbios.c |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
Simon Glass | bd5515d | 2024-06-23 14:30:33 -0600 | [diff] [blame] | 8 | #define LOG_CATEGORY LOGC_BOARD |
| 9 | |
Simon Glass | 0dd7ca2 | 2020-11-05 06:32:07 -0700 | [diff] [blame] | 10 | #include <dm.h> |
Simon Glass | 0af6e2d | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 11 | #include <env.h> |
Pali Rohár | ebe9fd8 | 2021-04-22 18:09:57 +0200 | [diff] [blame] | 12 | #include <linux/stringify.h> |
Ilias Apalodimas | ada83d9 | 2023-12-07 11:18:50 +0200 | [diff] [blame] | 13 | #include <linux/string.h> |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 14 | #include <mapmem.h> |
Alexander Graf | fb22808 | 2016-08-19 01:23:23 +0200 | [diff] [blame] | 15 | #include <smbios.h> |
Simon Glass | cf67d6d | 2021-02-04 21:17:23 -0700 | [diff] [blame] | 16 | #include <sysinfo.h> |
Alexander Graf | fb22808 | 2016-08-19 01:23:23 +0200 | [diff] [blame] | 17 | #include <tables_csum.h> |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 18 | #include <version.h> |
Ilias Apalodimas | ada83d9 | 2023-12-07 11:18:50 +0200 | [diff] [blame] | 19 | #include <malloc.h> |
| 20 | #include <dm/ofnode.h> |
Alexander Graf | e44b3c0 | 2016-08-19 01:23:28 +0200 | [diff] [blame] | 21 | #ifdef CONFIG_CPU |
| 22 | #include <cpu.h> |
Alexander Graf | e44b3c0 | 2016-08-19 01:23:28 +0200 | [diff] [blame] | 23 | #include <dm/uclass-internal.h> |
| 24 | #endif |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 25 | |
Pali Rohár | ebe9fd8 | 2021-04-22 18:09:57 +0200 | [diff] [blame] | 26 | /* Safeguard for checking that U_BOOT_VERSION_NUM macros are compatible with U_BOOT_DMI */ |
| 27 | #if U_BOOT_VERSION_NUM < 2000 || U_BOOT_VERSION_NUM > 2099 || \ |
| 28 | U_BOOT_VERSION_NUM_PATCH < 1 || U_BOOT_VERSION_NUM_PATCH > 12 |
| 29 | #error U_BOOT_VERSION_NUM macros are not compatible with DMI, fix U_BOOT_DMI macros |
| 30 | #endif |
| 31 | |
| 32 | /* |
| 33 | * U_BOOT_DMI_DATE contains BIOS Release Date in format mm/dd/yyyy. |
| 34 | * BIOS Release Date is calculated from U-Boot version and fixed day 01. |
| 35 | * So for U-Boot version 2021.04 it is calculated as "04/01/2021". |
| 36 | * BIOS Release Date should contain date when code was released |
| 37 | * and not when it was built or compiled. |
| 38 | */ |
| 39 | #if U_BOOT_VERSION_NUM_PATCH < 10 |
| 40 | #define U_BOOT_DMI_MONTH "0" __stringify(U_BOOT_VERSION_NUM_PATCH) |
| 41 | #else |
| 42 | #define U_BOOT_DMI_MONTH __stringify(U_BOOT_VERSION_NUM_PATCH) |
| 43 | #endif |
| 44 | #define U_BOOT_DMI_DAY "01" |
| 45 | #define U_BOOT_DMI_YEAR __stringify(U_BOOT_VERSION_NUM) |
| 46 | #define U_BOOT_DMI_DATE U_BOOT_DMI_MONTH "/" U_BOOT_DMI_DAY "/" U_BOOT_DMI_YEAR |
| 47 | |
Simon Glass | a05eb04 | 2021-02-04 21:17:20 -0700 | [diff] [blame] | 48 | DECLARE_GLOBAL_DATA_PTR; |
| 49 | |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 50 | /** |
Ilias Apalodimas | ada83d9 | 2023-12-07 11:18:50 +0200 | [diff] [blame] | 51 | * struct map_sysinfo - Mapping of sysinfo strings to DT |
| 52 | * |
Ilias Apalodimas | 3adf8a6 | 2024-01-11 16:39:35 +0200 | [diff] [blame] | 53 | * @si_str: sysinfo string |
Ilias Apalodimas | ada83d9 | 2023-12-07 11:18:50 +0200 | [diff] [blame] | 54 | * @dt_str: DT string |
| 55 | * @max: Max index of the tokenized string to pick. Counting starts from 0 |
| 56 | * |
| 57 | */ |
| 58 | struct map_sysinfo { |
Ilias Apalodimas | 5ae2d5c | 2024-01-11 16:39:36 +0200 | [diff] [blame] | 59 | const char *si_node; |
Ilias Apalodimas | 3adf8a6 | 2024-01-11 16:39:35 +0200 | [diff] [blame] | 60 | const char *si_str; |
Ilias Apalodimas | ada83d9 | 2023-12-07 11:18:50 +0200 | [diff] [blame] | 61 | const char *dt_str; |
| 62 | int max; |
| 63 | }; |
| 64 | |
| 65 | static const struct map_sysinfo sysinfo_to_dt[] = { |
Ilias Apalodimas | 5ae2d5c | 2024-01-11 16:39:36 +0200 | [diff] [blame] | 66 | { .si_node = "system", .si_str = "product", .dt_str = "model", 2 }, |
| 67 | { .si_node = "system", .si_str = "manufacturer", .dt_str = "compatible", 1 }, |
| 68 | { .si_node = "baseboard", .si_str = "product", .dt_str = "model", 2 }, |
| 69 | { .si_node = "baseboard", .si_str = "manufacturer", .dt_str = "compatible", 1 }, |
Ilias Apalodimas | ada83d9 | 2023-12-07 11:18:50 +0200 | [diff] [blame] | 70 | }; |
| 71 | |
| 72 | /** |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 73 | * struct smbios_ctx - context for writing SMBIOS tables |
| 74 | * |
Ilias Apalodimas | 5ae2d5c | 2024-01-11 16:39:36 +0200 | [diff] [blame] | 75 | * @node: node containing the information to write (ofnode_null() |
| 76 | * if none) |
| 77 | * @dev: sysinfo device to use (NULL if none) |
| 78 | * @subnode_name: sysinfo subnode_name. Used for DT fallback |
| 79 | * @eos: end-of-string pointer for the table being processed. |
| 80 | * This is set up when we start processing a table |
| 81 | * @next_ptr: pointer to the start of the next string to be added. |
| 82 | * When the table is not empty, this points to the byte |
| 83 | * after the \0 of the previous string. |
| 84 | * @last_str: points to the last string that was written to the table, |
| 85 | * or NULL if none |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 86 | */ |
| 87 | struct smbios_ctx { |
| 88 | ofnode node; |
| 89 | struct udevice *dev; |
Ilias Apalodimas | 5ae2d5c | 2024-01-11 16:39:36 +0200 | [diff] [blame] | 90 | const char *subnode_name; |
Simon Glass | dff4e86 | 2021-02-04 21:17:18 -0700 | [diff] [blame] | 91 | char *eos; |
Simon Glass | 721b466 | 2021-02-04 21:17:19 -0700 | [diff] [blame] | 92 | char *next_ptr; |
Simon Glass | a05eb04 | 2021-02-04 21:17:20 -0700 | [diff] [blame] | 93 | char *last_str; |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 94 | }; |
| 95 | |
| 96 | /** |
Simon Glass | 099d3ae | 2021-02-04 21:17:14 -0700 | [diff] [blame] | 97 | * Function prototype to write a specific type of SMBIOS structure |
| 98 | * |
| 99 | * @addr: start address to write the structure |
| 100 | * @handle: the structure's handle, a unique 16-bit number |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 101 | * @ctx: context for writing the tables |
Heinrich Schuchardt | 9809bcc | 2021-06-10 12:13:52 +0200 | [diff] [blame] | 102 | * Return: size of the structure |
Simon Glass | 099d3ae | 2021-02-04 21:17:14 -0700 | [diff] [blame] | 103 | */ |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 104 | typedef int (*smbios_write_type)(ulong *addr, int handle, |
| 105 | struct smbios_ctx *ctx); |
Simon Glass | 099d3ae | 2021-02-04 21:17:14 -0700 | [diff] [blame] | 106 | |
| 107 | /** |
Simon Glass | 6f3332a | 2020-11-05 06:32:08 -0700 | [diff] [blame] | 108 | * struct smbios_write_method - Information about a table-writing function |
| 109 | * |
| 110 | * @write: Function to call |
| 111 | * @subnode_name: Name of subnode which has the information for this function, |
| 112 | * NULL if none |
| 113 | */ |
| 114 | struct smbios_write_method { |
| 115 | smbios_write_type write; |
| 116 | const char *subnode_name; |
| 117 | }; |
| 118 | |
Ilias Apalodimas | 5ae2d5c | 2024-01-11 16:39:36 +0200 | [diff] [blame] | 119 | static const struct map_sysinfo *convert_sysinfo_to_dt(const char *node, const char *si) |
Ilias Apalodimas | ada83d9 | 2023-12-07 11:18:50 +0200 | [diff] [blame] | 120 | { |
| 121 | int i; |
| 122 | |
| 123 | for (i = 0; i < ARRAY_SIZE(sysinfo_to_dt); i++) { |
Ilias Apalodimas | 5ae2d5c | 2024-01-11 16:39:36 +0200 | [diff] [blame] | 124 | if (node && !strcmp(node, sysinfo_to_dt[i].si_node) && |
| 125 | !strcmp(si, sysinfo_to_dt[i].si_str)) |
Ilias Apalodimas | ada83d9 | 2023-12-07 11:18:50 +0200 | [diff] [blame] | 126 | return &sysinfo_to_dt[i]; |
| 127 | } |
| 128 | |
| 129 | return NULL; |
| 130 | } |
| 131 | |
Simon Glass | 6f3332a | 2020-11-05 06:32:08 -0700 | [diff] [blame] | 132 | /** |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 133 | * smbios_add_string() - add a string to the string area |
| 134 | * |
| 135 | * This adds a string to the string area which is appended directly after |
| 136 | * the formatted portion of an SMBIOS structure. |
| 137 | * |
Simon Glass | dff4e86 | 2021-02-04 21:17:18 -0700 | [diff] [blame] | 138 | * @ctx: SMBIOS context |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 139 | * @str: string to add |
Heinrich Schuchardt | e952b82 | 2024-01-29 14:09:36 +0100 | [diff] [blame] | 140 | * Return: string number in the string area. 0 if str is NULL. |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 141 | */ |
Simon Glass | dff4e86 | 2021-02-04 21:17:18 -0700 | [diff] [blame] | 142 | static int smbios_add_string(struct smbios_ctx *ctx, const char *str) |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 143 | { |
| 144 | int i = 1; |
Simon Glass | dff4e86 | 2021-02-04 21:17:18 -0700 | [diff] [blame] | 145 | char *p = ctx->eos; |
| 146 | |
Heinrich Schuchardt | e952b82 | 2024-01-29 14:09:36 +0100 | [diff] [blame] | 147 | if (!str) |
| 148 | return 0; |
| 149 | |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 150 | for (;;) { |
| 151 | if (!*p) { |
Simon Glass | a05eb04 | 2021-02-04 21:17:20 -0700 | [diff] [blame] | 152 | ctx->last_str = p; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 153 | strcpy(p, str); |
| 154 | p += strlen(str); |
| 155 | *p++ = '\0'; |
Simon Glass | 721b466 | 2021-02-04 21:17:19 -0700 | [diff] [blame] | 156 | ctx->next_ptr = p; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 157 | *p++ = '\0'; |
| 158 | |
| 159 | return i; |
| 160 | } |
| 161 | |
Simon Glass | a05eb04 | 2021-02-04 21:17:20 -0700 | [diff] [blame] | 162 | if (!strcmp(p, str)) { |
| 163 | ctx->last_str = p; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 164 | return i; |
Simon Glass | a05eb04 | 2021-02-04 21:17:20 -0700 | [diff] [blame] | 165 | } |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 166 | |
| 167 | p += strlen(p) + 1; |
| 168 | i++; |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | /** |
Ilias Apalodimas | ada83d9 | 2023-12-07 11:18:50 +0200 | [diff] [blame] | 173 | * get_str_from_dt - Get a substring from a DT property. |
| 174 | * After finding the property in the DT, the function |
| 175 | * will parse comma-separated values and return the value. |
| 176 | * If nprop->max exceeds the number of comma-separated |
| 177 | * elements, the last non NULL value will be returned. |
| 178 | * Counting starts from zero. |
| 179 | * |
| 180 | * @nprop: sysinfo property to use |
| 181 | * @str: pointer to fill with data |
| 182 | * @size: str buffer length |
| 183 | */ |
| 184 | static |
| 185 | void get_str_from_dt(const struct map_sysinfo *nprop, char *str, size_t size) |
| 186 | { |
| 187 | const char *dt_str; |
| 188 | int cnt = 0; |
| 189 | char *token; |
| 190 | |
| 191 | memset(str, 0, size); |
| 192 | if (!nprop || !nprop->max) |
| 193 | return; |
| 194 | |
| 195 | dt_str = ofnode_read_string(ofnode_root(), nprop->dt_str); |
| 196 | if (!dt_str) |
| 197 | return; |
| 198 | |
| 199 | memcpy(str, dt_str, size); |
| 200 | token = strtok(str, ","); |
| 201 | while (token && cnt < nprop->max) { |
| 202 | strlcpy(str, token, strlen(token) + 1); |
| 203 | token = strtok(NULL, ","); |
| 204 | cnt++; |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | /** |
Simon Glass | cf67d6d | 2021-02-04 21:17:23 -0700 | [diff] [blame] | 209 | * smbios_add_prop_si() - Add a property from the devicetree or sysinfo |
| 210 | * |
| 211 | * Sysinfo is used if available, with a fallback to devicetree |
Simon Glass | 6f3332a | 2020-11-05 06:32:08 -0700 | [diff] [blame] | 212 | * |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 213 | * @ctx: context for writing the tables |
Simon Glass | 6f3332a | 2020-11-05 06:32:08 -0700 | [diff] [blame] | 214 | * @prop: property to write |
Heinrich Schuchardt | da0428c | 2024-01-29 13:58:18 +0100 | [diff] [blame] | 215 | * @sysinfo_id: unique identifier for the string value to be read |
Ilias Apalodimas | 07f3eba | 2023-12-07 11:18:49 +0200 | [diff] [blame] | 216 | * @dval: Default value to use if the string is not found or is empty |
Heinrich Schuchardt | 9809bcc | 2021-06-10 12:13:52 +0200 | [diff] [blame] | 217 | * Return: 0 if not found, else SMBIOS string number (1 or more) |
Simon Glass | 6f3332a | 2020-11-05 06:32:08 -0700 | [diff] [blame] | 218 | */ |
Simon Glass | cf67d6d | 2021-02-04 21:17:23 -0700 | [diff] [blame] | 219 | static int smbios_add_prop_si(struct smbios_ctx *ctx, const char *prop, |
Ilias Apalodimas | 07f3eba | 2023-12-07 11:18:49 +0200 | [diff] [blame] | 220 | int sysinfo_id, const char *dval) |
Simon Glass | 6f3332a | 2020-11-05 06:32:08 -0700 | [diff] [blame] | 221 | { |
Ilias Apalodimas | ada83d9 | 2023-12-07 11:18:50 +0200 | [diff] [blame] | 222 | int ret; |
| 223 | |
Ilias Apalodimas | 07f3eba | 2023-12-07 11:18:49 +0200 | [diff] [blame] | 224 | if (!dval || !*dval) |
Heinrich Schuchardt | e952b82 | 2024-01-29 14:09:36 +0100 | [diff] [blame] | 225 | dval = NULL; |
Ilias Apalodimas | 07f3eba | 2023-12-07 11:18:49 +0200 | [diff] [blame] | 226 | |
| 227 | if (!prop) |
| 228 | return smbios_add_string(ctx, dval); |
| 229 | |
Simon Glass | cf67d6d | 2021-02-04 21:17:23 -0700 | [diff] [blame] | 230 | if (sysinfo_id && ctx->dev) { |
| 231 | char val[SMBIOS_STR_MAX]; |
Simon Glass | cf67d6d | 2021-02-04 21:17:23 -0700 | [diff] [blame] | 232 | |
| 233 | ret = sysinfo_get_str(ctx->dev, sysinfo_id, sizeof(val), val); |
| 234 | if (!ret) |
| 235 | return smbios_add_string(ctx, val); |
| 236 | } |
Simon Glass | 95f4708 | 2020-11-05 06:32:18 -0700 | [diff] [blame] | 237 | if (IS_ENABLED(CONFIG_OF_CONTROL)) { |
Ilias Apalodimas | ada83d9 | 2023-12-07 11:18:50 +0200 | [diff] [blame] | 238 | const char *str = NULL; |
| 239 | char str_dt[128] = { 0 }; |
| 240 | /* |
| 241 | * If the node is not valid fallback and try the entire DT |
| 242 | * so we can at least fill in manufacturer and board type |
| 243 | */ |
| 244 | if (ofnode_valid(ctx->node)) { |
| 245 | str = ofnode_read_string(ctx->node, prop); |
| 246 | } else { |
| 247 | const struct map_sysinfo *nprop; |
Simon Glass | 95f4708 | 2020-11-05 06:32:18 -0700 | [diff] [blame] | 248 | |
Ilias Apalodimas | 5ae2d5c | 2024-01-11 16:39:36 +0200 | [diff] [blame] | 249 | nprop = convert_sysinfo_to_dt(ctx->subnode_name, prop); |
Ilias Apalodimas | ada83d9 | 2023-12-07 11:18:50 +0200 | [diff] [blame] | 250 | get_str_from_dt(nprop, str_dt, sizeof(str_dt)); |
| 251 | str = (const char *)str_dt; |
| 252 | } |
Ilias Apalodimas | 07f3eba | 2023-12-07 11:18:49 +0200 | [diff] [blame] | 253 | |
Ilias Apalodimas | ada83d9 | 2023-12-07 11:18:50 +0200 | [diff] [blame] | 254 | ret = smbios_add_string(ctx, str && *str ? str : dval); |
| 255 | return ret; |
Simon Glass | 95f4708 | 2020-11-05 06:32:18 -0700 | [diff] [blame] | 256 | } |
Simon Glass | 6f3332a | 2020-11-05 06:32:08 -0700 | [diff] [blame] | 257 | |
| 258 | return 0; |
| 259 | } |
| 260 | |
Simon Glass | cf67d6d | 2021-02-04 21:17:23 -0700 | [diff] [blame] | 261 | /** |
| 262 | * smbios_add_prop() - Add a property from the devicetree |
| 263 | * |
Ilias Apalodimas | 07f3eba | 2023-12-07 11:18:49 +0200 | [diff] [blame] | 264 | * @prop: property to write. The default string will be written if |
| 265 | * prop is NULL |
| 266 | * @dval: Default value to use if the string is not found or is empty |
Heinrich Schuchardt | 9809bcc | 2021-06-10 12:13:52 +0200 | [diff] [blame] | 267 | * Return: 0 if not found, else SMBIOS string number (1 or more) |
Simon Glass | cf67d6d | 2021-02-04 21:17:23 -0700 | [diff] [blame] | 268 | */ |
Ilias Apalodimas | 07f3eba | 2023-12-07 11:18:49 +0200 | [diff] [blame] | 269 | static int smbios_add_prop(struct smbios_ctx *ctx, const char *prop, |
| 270 | const char *dval) |
Simon Glass | cf67d6d | 2021-02-04 21:17:23 -0700 | [diff] [blame] | 271 | { |
Ilias Apalodimas | 07f3eba | 2023-12-07 11:18:49 +0200 | [diff] [blame] | 272 | return smbios_add_prop_si(ctx, prop, SYSINFO_ID_NONE, dval); |
Simon Glass | cf67d6d | 2021-02-04 21:17:23 -0700 | [diff] [blame] | 273 | } |
| 274 | |
Simon Glass | dff4e86 | 2021-02-04 21:17:18 -0700 | [diff] [blame] | 275 | static void smbios_set_eos(struct smbios_ctx *ctx, char *eos) |
| 276 | { |
| 277 | ctx->eos = eos; |
Simon Glass | 721b466 | 2021-02-04 21:17:19 -0700 | [diff] [blame] | 278 | ctx->next_ptr = eos; |
Simon Glass | a05eb04 | 2021-02-04 21:17:20 -0700 | [diff] [blame] | 279 | ctx->last_str = NULL; |
Simon Glass | dff4e86 | 2021-02-04 21:17:18 -0700 | [diff] [blame] | 280 | } |
| 281 | |
Simon Glass | a05eb04 | 2021-02-04 21:17:20 -0700 | [diff] [blame] | 282 | int smbios_update_version(const char *version) |
| 283 | { |
| 284 | char *ptr = gd->smbios_version; |
| 285 | uint old_len, len; |
| 286 | |
| 287 | if (!ptr) |
| 288 | return log_ret(-ENOENT); |
| 289 | |
| 290 | /* |
| 291 | * This string is supposed to have at least enough bytes and is |
| 292 | * padded with spaces. Update it, taking care not to move the |
| 293 | * \0 terminator, so that other strings in the string table |
| 294 | * are not disturbed. See smbios_add_string() |
| 295 | */ |
| 296 | old_len = strnlen(ptr, SMBIOS_STR_MAX); |
| 297 | len = strnlen(version, SMBIOS_STR_MAX); |
| 298 | if (len > old_len) |
| 299 | return log_ret(-ENOSPC); |
| 300 | |
| 301 | log_debug("Replacing SMBIOS type 0 version string '%s'\n", ptr); |
| 302 | memcpy(ptr, version, len); |
| 303 | #ifdef LOG_DEBUG |
| 304 | print_buffer((ulong)ptr, ptr, 1, old_len + 1, 0); |
| 305 | #endif |
| 306 | |
| 307 | return 0; |
| 308 | } |
| 309 | |
Simon Glass | 6f3332a | 2020-11-05 06:32:08 -0700 | [diff] [blame] | 310 | /** |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 311 | * smbios_string_table_len() - compute the string area size |
| 312 | * |
| 313 | * This computes the size of the string area including the string terminator. |
| 314 | * |
Simon Glass | 721b466 | 2021-02-04 21:17:19 -0700 | [diff] [blame] | 315 | * @ctx: SMBIOS context |
Heinrich Schuchardt | 9809bcc | 2021-06-10 12:13:52 +0200 | [diff] [blame] | 316 | * Return: string area size |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 317 | */ |
Simon Glass | 721b466 | 2021-02-04 21:17:19 -0700 | [diff] [blame] | 318 | static int smbios_string_table_len(const struct smbios_ctx *ctx) |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 319 | { |
Matthias Brugger | e01fa9f | 2021-04-06 11:04:35 +0200 | [diff] [blame] | 320 | /* In case no string is defined we have to return two \0 */ |
| 321 | if (ctx->next_ptr == ctx->eos) |
| 322 | return 2; |
| 323 | |
Simon Glass | 721b466 | 2021-02-04 21:17:19 -0700 | [diff] [blame] | 324 | /* Allow for the final \0 after all strings */ |
| 325 | return (ctx->next_ptr + 1) - ctx->eos; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 326 | } |
| 327 | |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 328 | static int smbios_write_type0(ulong *current, int handle, |
| 329 | struct smbios_ctx *ctx) |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 330 | { |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 331 | struct smbios_type0 *t; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 332 | int len = sizeof(struct smbios_type0); |
| 333 | |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 334 | t = map_sysmem(*current, len); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 335 | memset(t, 0, sizeof(struct smbios_type0)); |
| 336 | fill_smbios_header(t, SMBIOS_BIOS_INFORMATION, len, handle); |
Simon Glass | dff4e86 | 2021-02-04 21:17:18 -0700 | [diff] [blame] | 337 | smbios_set_eos(ctx, t->eos); |
Ilias Apalodimas | 07f3eba | 2023-12-07 11:18:49 +0200 | [diff] [blame] | 338 | t->vendor = smbios_add_prop(ctx, NULL, "U-Boot"); |
Simon Glass | a05eb04 | 2021-02-04 21:17:20 -0700 | [diff] [blame] | 339 | |
Ilias Apalodimas | 07f3eba | 2023-12-07 11:18:49 +0200 | [diff] [blame] | 340 | t->bios_ver = smbios_add_prop(ctx, "version", PLAIN_VERSION); |
Simon Glass | a05eb04 | 2021-02-04 21:17:20 -0700 | [diff] [blame] | 341 | if (t->bios_ver) |
| 342 | gd->smbios_version = ctx->last_str; |
| 343 | log_debug("smbios_version = %p: '%s'\n", gd->smbios_version, |
| 344 | gd->smbios_version); |
| 345 | #ifdef LOG_DEBUG |
| 346 | print_buffer((ulong)gd->smbios_version, gd->smbios_version, |
| 347 | 1, strlen(gd->smbios_version) + 1, 0); |
| 348 | #endif |
Ilias Apalodimas | 07f3eba | 2023-12-07 11:18:49 +0200 | [diff] [blame] | 349 | t->bios_release_date = smbios_add_prop(ctx, NULL, U_BOOT_DMI_DATE); |
Alexander Graf | 66f96e1 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 350 | #ifdef CONFIG_ROM_SIZE |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 351 | t->bios_rom_size = (CONFIG_ROM_SIZE / 65536) - 1; |
Alexander Graf | 66f96e1 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 352 | #endif |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 353 | t->bios_characteristics = BIOS_CHARACTERISTICS_PCI_SUPPORTED | |
| 354 | BIOS_CHARACTERISTICS_SELECTABLE_BOOT | |
| 355 | BIOS_CHARACTERISTICS_UPGRADEABLE; |
| 356 | #ifdef CONFIG_GENERATE_ACPI_TABLE |
| 357 | t->bios_characteristics_ext1 = BIOS_CHARACTERISTICS_EXT1_ACPI; |
| 358 | #endif |
Alexander Graf | 66f96e1 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 359 | #ifdef CONFIG_EFI_LOADER |
Ilias Apalodimas | 15578bc | 2021-06-09 18:14:47 +0300 | [diff] [blame] | 360 | t->bios_characteristics_ext2 |= BIOS_CHARACTERISTICS_EXT2_UEFI; |
Alexander Graf | 66f96e1 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 361 | #endif |
Ilias Apalodimas | 15578bc | 2021-06-09 18:14:47 +0300 | [diff] [blame] | 362 | t->bios_characteristics_ext2 |= BIOS_CHARACTERISTICS_EXT2_TARGET; |
Alexander Graf | 66f96e1 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 363 | |
Simon Glass | d7d1682 | 2021-02-04 21:17:16 -0700 | [diff] [blame] | 364 | /* bios_major_release has only one byte, so drop century */ |
| 365 | t->bios_major_release = U_BOOT_VERSION_NUM % 100; |
| 366 | t->bios_minor_release = U_BOOT_VERSION_NUM_PATCH; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 367 | t->ec_major_release = 0xff; |
| 368 | t->ec_minor_release = 0xff; |
| 369 | |
Simon Glass | 721b466 | 2021-02-04 21:17:19 -0700 | [diff] [blame] | 370 | len = t->length + smbios_string_table_len(ctx); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 371 | *current += len; |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 372 | unmap_sysmem(t); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 373 | |
| 374 | return len; |
| 375 | } |
| 376 | |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 377 | static int smbios_write_type1(ulong *current, int handle, |
| 378 | struct smbios_ctx *ctx) |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 379 | { |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 380 | struct smbios_type1 *t; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 381 | int len = sizeof(struct smbios_type1); |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 382 | char *serial_str = env_get("serial#"); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 383 | |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 384 | t = map_sysmem(*current, len); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 385 | memset(t, 0, sizeof(struct smbios_type1)); |
| 386 | fill_smbios_header(t, SMBIOS_SYSTEM_INFORMATION, len, handle); |
Simon Glass | dff4e86 | 2021-02-04 21:17:18 -0700 | [diff] [blame] | 387 | smbios_set_eos(ctx, t->eos); |
Michal Simek | a7aa395 | 2024-04-26 15:38:13 +0200 | [diff] [blame] | 388 | t->manufacturer = smbios_add_prop_si(ctx, "manufacturer", |
| 389 | SYSINFO_ID_SMBIOS_SYSTEM_MANUFACTURER, |
| 390 | NULL); |
| 391 | t->product_name = smbios_add_prop_si(ctx, "product", |
| 392 | SYSINFO_ID_SMBIOS_SYSTEM_PRODUCT, |
| 393 | NULL); |
Simon Glass | cf67d6d | 2021-02-04 21:17:23 -0700 | [diff] [blame] | 394 | t->version = smbios_add_prop_si(ctx, "version", |
Ilias Apalodimas | 07f3eba | 2023-12-07 11:18:49 +0200 | [diff] [blame] | 395 | SYSINFO_ID_SMBIOS_SYSTEM_VERSION, |
Heinrich Schuchardt | e952b82 | 2024-01-29 14:09:36 +0100 | [diff] [blame] | 396 | NULL); |
Alexander Graf | 9a3e3e2 | 2016-08-19 01:23:31 +0200 | [diff] [blame] | 397 | if (serial_str) { |
Ilias Apalodimas | 07f3eba | 2023-12-07 11:18:49 +0200 | [diff] [blame] | 398 | t->serial_number = smbios_add_prop(ctx, NULL, serial_str); |
Simon Glass | 6f3332a | 2020-11-05 06:32:08 -0700 | [diff] [blame] | 399 | strncpy((char *)t->uuid, serial_str, sizeof(t->uuid)); |
| 400 | } else { |
Michal Simek | a7aa395 | 2024-04-26 15:38:13 +0200 | [diff] [blame] | 401 | t->serial_number = smbios_add_prop_si(ctx, "serial", |
| 402 | SYSINFO_ID_SMBIOS_SYSTEM_SERIAL, |
| 403 | NULL); |
Alexander Graf | 9a3e3e2 | 2016-08-19 01:23:31 +0200 | [diff] [blame] | 404 | } |
Heinrich Schuchardt | a0501b5 | 2024-02-10 12:06:48 +0100 | [diff] [blame] | 405 | t->wakeup_type = SMBIOS_WAKEUP_TYPE_UNKNOWN; |
Michal Simek | a7aa395 | 2024-04-26 15:38:13 +0200 | [diff] [blame] | 406 | t->sku_number = smbios_add_prop_si(ctx, "sku", |
| 407 | SYSINFO_ID_SMBIOS_SYSTEM_SKU, NULL); |
| 408 | t->family = smbios_add_prop_si(ctx, "family", |
| 409 | SYSINFO_ID_SMBIOS_SYSTEM_FAMILY, NULL); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 410 | |
Simon Glass | 721b466 | 2021-02-04 21:17:19 -0700 | [diff] [blame] | 411 | len = t->length + smbios_string_table_len(ctx); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 412 | *current += len; |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 413 | unmap_sysmem(t); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 414 | |
| 415 | return len; |
| 416 | } |
| 417 | |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 418 | static int smbios_write_type2(ulong *current, int handle, |
| 419 | struct smbios_ctx *ctx) |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 420 | { |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 421 | struct smbios_type2 *t; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 422 | int len = sizeof(struct smbios_type2); |
| 423 | |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 424 | t = map_sysmem(*current, len); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 425 | memset(t, 0, sizeof(struct smbios_type2)); |
| 426 | fill_smbios_header(t, SMBIOS_BOARD_INFORMATION, len, handle); |
Simon Glass | dff4e86 | 2021-02-04 21:17:18 -0700 | [diff] [blame] | 427 | smbios_set_eos(ctx, t->eos); |
Michal Simek | a7aa395 | 2024-04-26 15:38:13 +0200 | [diff] [blame] | 428 | t->manufacturer = smbios_add_prop_si(ctx, "manufacturer", |
| 429 | SYSINFO_ID_SMBIOS_BASEBOARD_MANUFACTURER, |
| 430 | NULL); |
| 431 | t->product_name = smbios_add_prop_si(ctx, "product", |
| 432 | SYSINFO_ID_SMBIOS_BASEBOARD_PRODUCT, |
| 433 | NULL); |
Simon Glass | cf67d6d | 2021-02-04 21:17:23 -0700 | [diff] [blame] | 434 | t->version = smbios_add_prop_si(ctx, "version", |
Ilias Apalodimas | 07f3eba | 2023-12-07 11:18:49 +0200 | [diff] [blame] | 435 | SYSINFO_ID_SMBIOS_BASEBOARD_VERSION, |
Heinrich Schuchardt | e952b82 | 2024-01-29 14:09:36 +0100 | [diff] [blame] | 436 | NULL); |
Michal Simek | a7aa395 | 2024-04-26 15:38:13 +0200 | [diff] [blame] | 437 | |
| 438 | t->serial_number = smbios_add_prop_si(ctx, "serial", |
| 439 | SYSINFO_ID_SMBIOS_BASEBOARD_SERIAL, |
| 440 | NULL); |
| 441 | t->asset_tag_number = smbios_add_prop_si(ctx, "asset-tag", |
| 442 | SYSINFO_ID_SMBIOS_BASEBOARD_ASSET_TAG, |
| 443 | NULL); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 444 | t->feature_flags = SMBIOS_BOARD_FEATURE_HOSTING; |
| 445 | t->board_type = SMBIOS_BOARD_MOTHERBOARD; |
Heinrich Schuchardt | ab8f4c8 | 2024-01-29 18:32:58 +0100 | [diff] [blame] | 446 | t->chassis_handle = handle + 1; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 447 | |
Simon Glass | 721b466 | 2021-02-04 21:17:19 -0700 | [diff] [blame] | 448 | len = t->length + smbios_string_table_len(ctx); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 449 | *current += len; |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 450 | unmap_sysmem(t); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 451 | |
| 452 | return len; |
| 453 | } |
| 454 | |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 455 | static int smbios_write_type3(ulong *current, int handle, |
| 456 | struct smbios_ctx *ctx) |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 457 | { |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 458 | struct smbios_type3 *t; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 459 | int len = sizeof(struct smbios_type3); |
| 460 | |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 461 | t = map_sysmem(*current, len); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 462 | memset(t, 0, sizeof(struct smbios_type3)); |
| 463 | fill_smbios_header(t, SMBIOS_SYSTEM_ENCLOSURE, len, handle); |
Simon Glass | dff4e86 | 2021-02-04 21:17:18 -0700 | [diff] [blame] | 464 | smbios_set_eos(ctx, t->eos); |
Heinrich Schuchardt | e952b82 | 2024-01-29 14:09:36 +0100 | [diff] [blame] | 465 | t->manufacturer = smbios_add_prop(ctx, "manufacturer", NULL); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 466 | t->chassis_type = SMBIOS_ENCLOSURE_DESKTOP; |
| 467 | t->bootup_state = SMBIOS_STATE_SAFE; |
| 468 | t->power_supply_state = SMBIOS_STATE_SAFE; |
| 469 | t->thermal_state = SMBIOS_STATE_SAFE; |
| 470 | t->security_status = SMBIOS_SECURITY_NONE; |
| 471 | |
Simon Glass | 721b466 | 2021-02-04 21:17:19 -0700 | [diff] [blame] | 472 | len = t->length + smbios_string_table_len(ctx); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 473 | *current += len; |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 474 | unmap_sysmem(t); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 475 | |
| 476 | return len; |
| 477 | } |
| 478 | |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 479 | static void smbios_write_type4_dm(struct smbios_type4 *t, |
| 480 | struct smbios_ctx *ctx) |
Alexander Graf | e44b3c0 | 2016-08-19 01:23:28 +0200 | [diff] [blame] | 481 | { |
| 482 | u16 processor_family = SMBIOS_PROCESSOR_FAMILY_UNKNOWN; |
Heinrich Schuchardt | e952b82 | 2024-01-29 14:09:36 +0100 | [diff] [blame] | 483 | const char *vendor = NULL; |
| 484 | const char *name = NULL; |
Alexander Graf | e44b3c0 | 2016-08-19 01:23:28 +0200 | [diff] [blame] | 485 | |
| 486 | #ifdef CONFIG_CPU |
| 487 | char processor_name[49]; |
| 488 | char vendor_name[49]; |
Simon Glass | 0dd7ca2 | 2020-11-05 06:32:07 -0700 | [diff] [blame] | 489 | struct udevice *cpu = NULL; |
Alexander Graf | e44b3c0 | 2016-08-19 01:23:28 +0200 | [diff] [blame] | 490 | |
Simon Glass | 0dd7ca2 | 2020-11-05 06:32:07 -0700 | [diff] [blame] | 491 | uclass_find_first_device(UCLASS_CPU, &cpu); |
| 492 | if (cpu) { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 493 | struct cpu_plat *plat = dev_get_parent_plat(cpu); |
Alexander Graf | e44b3c0 | 2016-08-19 01:23:28 +0200 | [diff] [blame] | 494 | |
| 495 | if (plat->family) |
| 496 | processor_family = plat->family; |
| 497 | t->processor_id[0] = plat->id[0]; |
| 498 | t->processor_id[1] = plat->id[1]; |
| 499 | |
Simon Glass | 0dd7ca2 | 2020-11-05 06:32:07 -0700 | [diff] [blame] | 500 | if (!cpu_get_vendor(cpu, vendor_name, sizeof(vendor_name))) |
Alexander Graf | e44b3c0 | 2016-08-19 01:23:28 +0200 | [diff] [blame] | 501 | vendor = vendor_name; |
Simon Glass | 0dd7ca2 | 2020-11-05 06:32:07 -0700 | [diff] [blame] | 502 | if (!cpu_get_desc(cpu, processor_name, sizeof(processor_name))) |
Alexander Graf | e44b3c0 | 2016-08-19 01:23:28 +0200 | [diff] [blame] | 503 | name = processor_name; |
| 504 | } |
| 505 | #endif |
| 506 | |
Heinrich Schuchardt | b5f9aef | 2023-12-28 08:30:23 +0100 | [diff] [blame] | 507 | t->processor_family = 0xfe; |
| 508 | t->processor_family2 = processor_family; |
Ilias Apalodimas | 07f3eba | 2023-12-07 11:18:49 +0200 | [diff] [blame] | 509 | t->processor_manufacturer = smbios_add_prop(ctx, NULL, vendor); |
| 510 | t->processor_version = smbios_add_prop(ctx, NULL, name); |
Alexander Graf | e44b3c0 | 2016-08-19 01:23:28 +0200 | [diff] [blame] | 511 | } |
| 512 | |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 513 | static int smbios_write_type4(ulong *current, int handle, |
| 514 | struct smbios_ctx *ctx) |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 515 | { |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 516 | struct smbios_type4 *t; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 517 | int len = sizeof(struct smbios_type4); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 518 | |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 519 | t = map_sysmem(*current, len); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 520 | memset(t, 0, sizeof(struct smbios_type4)); |
| 521 | fill_smbios_header(t, SMBIOS_PROCESSOR_INFORMATION, len, handle); |
Simon Glass | dff4e86 | 2021-02-04 21:17:18 -0700 | [diff] [blame] | 522 | smbios_set_eos(ctx, t->eos); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 523 | t->processor_type = SMBIOS_PROCESSOR_TYPE_CENTRAL; |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 524 | smbios_write_type4_dm(t, ctx); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 525 | t->status = SMBIOS_PROCESSOR_STATUS_ENABLED; |
| 526 | t->processor_upgrade = SMBIOS_PROCESSOR_UPGRADE_NONE; |
| 527 | t->l1_cache_handle = 0xffff; |
| 528 | t->l2_cache_handle = 0xffff; |
| 529 | t->l3_cache_handle = 0xffff; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 530 | |
Simon Glass | 721b466 | 2021-02-04 21:17:19 -0700 | [diff] [blame] | 531 | len = t->length + smbios_string_table_len(ctx); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 532 | *current += len; |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 533 | unmap_sysmem(t); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 534 | |
| 535 | return len; |
| 536 | } |
| 537 | |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 538 | static int smbios_write_type32(ulong *current, int handle, |
| 539 | struct smbios_ctx *ctx) |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 540 | { |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 541 | struct smbios_type32 *t; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 542 | int len = sizeof(struct smbios_type32); |
| 543 | |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 544 | t = map_sysmem(*current, len); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 545 | memset(t, 0, sizeof(struct smbios_type32)); |
| 546 | fill_smbios_header(t, SMBIOS_SYSTEM_BOOT_INFORMATION, len, handle); |
Simon Glass | dff4e86 | 2021-02-04 21:17:18 -0700 | [diff] [blame] | 547 | smbios_set_eos(ctx, t->eos); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 548 | |
| 549 | *current += len; |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 550 | unmap_sysmem(t); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 551 | |
| 552 | return len; |
| 553 | } |
| 554 | |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 555 | static int smbios_write_type127(ulong *current, int handle, |
| 556 | struct smbios_ctx *ctx) |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 557 | { |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 558 | struct smbios_type127 *t; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 559 | int len = sizeof(struct smbios_type127); |
| 560 | |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 561 | t = map_sysmem(*current, len); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 562 | memset(t, 0, sizeof(struct smbios_type127)); |
| 563 | fill_smbios_header(t, SMBIOS_END_OF_TABLE, len, handle); |
| 564 | |
| 565 | *current += len; |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 566 | unmap_sysmem(t); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 567 | |
| 568 | return len; |
| 569 | } |
| 570 | |
Simon Glass | 6f3332a | 2020-11-05 06:32:08 -0700 | [diff] [blame] | 571 | static struct smbios_write_method smbios_write_funcs[] = { |
Simon Glass | a05eb04 | 2021-02-04 21:17:20 -0700 | [diff] [blame] | 572 | { smbios_write_type0, "bios", }, |
Simon Glass | 6f3332a | 2020-11-05 06:32:08 -0700 | [diff] [blame] | 573 | { smbios_write_type1, "system", }, |
| 574 | { smbios_write_type2, "baseboard", }, |
Heinrich Schuchardt | ab8f4c8 | 2024-01-29 18:32:58 +0100 | [diff] [blame] | 575 | /* Type 3 must immediately follow type 2 due to chassis handle. */ |
Simon Glass | 6f3332a | 2020-11-05 06:32:08 -0700 | [diff] [blame] | 576 | { smbios_write_type3, "chassis", }, |
| 577 | { smbios_write_type4, }, |
| 578 | { smbios_write_type32, }, |
| 579 | { smbios_write_type127 }, |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 580 | }; |
| 581 | |
Simon Glass | ca37a39 | 2017-01-16 07:03:35 -0700 | [diff] [blame] | 582 | ulong write_smbios_table(ulong addr) |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 583 | { |
Simon Glass | 6f3332a | 2020-11-05 06:32:08 -0700 | [diff] [blame] | 584 | ofnode parent_node = ofnode_null(); |
Simon Glass | 3905e92 | 2023-12-31 08:25:45 -0700 | [diff] [blame] | 585 | ulong table_addr, start_addr; |
Simon Glass | fc4b552 | 2023-12-31 08:25:51 -0700 | [diff] [blame] | 586 | struct smbios3_entry *se; |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 587 | struct smbios_ctx ctx; |
Simon Glass | ca37a39 | 2017-01-16 07:03:35 -0700 | [diff] [blame] | 588 | ulong tables; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 589 | int len = 0; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 590 | int handle = 0; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 591 | int i; |
| 592 | |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 593 | ctx.node = ofnode_null(); |
Quentin Schulz | 60b515d | 2024-06-10 18:13:46 +0200 | [diff] [blame] | 594 | if (IS_ENABLED(CONFIG_OF_CONTROL) && CONFIG_IS_ENABLED(SYSINFO)) { |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 595 | uclass_first_device(UCLASS_SYSINFO, &ctx.dev); |
Michal Simek | 7d95500 | 2024-04-26 15:38:12 +0200 | [diff] [blame] | 596 | if (ctx.dev) { |
| 597 | int ret; |
| 598 | |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 599 | parent_node = dev_read_subnode(ctx.dev, "smbios"); |
Michal Simek | 7d95500 | 2024-04-26 15:38:12 +0200 | [diff] [blame] | 600 | ret = sysinfo_detect(ctx.dev); |
Simon Glass | bd5515d | 2024-06-23 14:30:33 -0600 | [diff] [blame] | 601 | |
| 602 | /* |
| 603 | * ignore the error since many boards don't implement |
| 604 | * this and we can still use the info in the devicetree |
| 605 | */ |
| 606 | ret = log_msg_ret("sys", ret); |
Michal Simek | 7d95500 | 2024-04-26 15:38:12 +0200 | [diff] [blame] | 607 | } |
Simon Glass | 8e5ddb0 | 2021-02-04 21:17:17 -0700 | [diff] [blame] | 608 | } else { |
| 609 | ctx.dev = NULL; |
Simon Glass | 0dd7ca2 | 2020-11-05 06:32:07 -0700 | [diff] [blame] | 610 | } |
| 611 | |
Simon Glass | 3905e92 | 2023-12-31 08:25:45 -0700 | [diff] [blame] | 612 | start_addr = addr; |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 613 | |
Simon Glass | fc4b552 | 2023-12-31 08:25:51 -0700 | [diff] [blame] | 614 | /* move past the (so-far-unwritten) header to start writing structs */ |
| 615 | addr = ALIGN(addr + sizeof(struct smbios3_entry), 16); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 616 | tables = addr; |
| 617 | |
| 618 | /* populate minimum required tables */ |
| 619 | for (i = 0; i < ARRAY_SIZE(smbios_write_funcs); i++) { |
Simon Glass | 6f3332a | 2020-11-05 06:32:08 -0700 | [diff] [blame] | 620 | const struct smbios_write_method *method; |
Simon Glass | 6f3332a | 2020-11-05 06:32:08 -0700 | [diff] [blame] | 621 | |
| 622 | method = &smbios_write_funcs[i]; |
Ilias Apalodimas | 5ae2d5c | 2024-01-11 16:39:36 +0200 | [diff] [blame] | 623 | ctx.subnode_name = NULL; |
| 624 | if (method->subnode_name) { |
| 625 | ctx.subnode_name = method->subnode_name; |
| 626 | if (IS_ENABLED(CONFIG_OF_CONTROL)) |
| 627 | ctx.node = ofnode_find_subnode(parent_node, |
| 628 | method->subnode_name); |
| 629 | } |
Heinrich Schuchardt | 91f875a | 2024-01-31 23:42:35 +0100 | [diff] [blame] | 630 | len += method->write((ulong *)&addr, handle++, &ctx); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 631 | } |
| 632 | |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 633 | /* |
| 634 | * We must use a pointer here so things work correctly on sandbox. The |
| 635 | * user of this table is not aware of the mapping of addresses to |
| 636 | * sandbox's DRAM buffer. |
| 637 | */ |
| 638 | table_addr = (ulong)map_sysmem(tables, 0); |
Simon Glass | 2d93add | 2018-11-22 13:46:37 -0700 | [diff] [blame] | 639 | |
Simon Glass | fc4b552 | 2023-12-31 08:25:51 -0700 | [diff] [blame] | 640 | /* now go back and write the SMBIOS3 header */ |
Heinrich Schuchardt | 494d072 | 2024-01-11 07:34:08 +0100 | [diff] [blame] | 641 | se = map_sysmem(start_addr, sizeof(struct smbios3_entry)); |
| 642 | memset(se, '\0', sizeof(struct smbios3_entry)); |
Simon Glass | fc4b552 | 2023-12-31 08:25:51 -0700 | [diff] [blame] | 643 | memcpy(se->anchor, "_SM3_", 5); |
| 644 | se->length = sizeof(struct smbios3_entry); |
| 645 | se->major_ver = SMBIOS_MAJOR_VER; |
| 646 | se->minor_ver = SMBIOS_MINOR_VER; |
| 647 | se->doc_rev = 0; |
| 648 | se->entry_point_rev = 1; |
Heinrich Schuchardt | 68e948a | 2024-01-31 23:49:34 +0100 | [diff] [blame] | 649 | se->table_maximum_size = len; |
Simon Glass | fc4b552 | 2023-12-31 08:25:51 -0700 | [diff] [blame] | 650 | se->struct_table_address = table_addr; |
| 651 | se->checksum = table_compute_checksum(se, sizeof(struct smbios3_entry)); |
| 652 | unmap_sysmem(se); |
Bin Meng | ae5bedb | 2015-10-12 05:23:41 -0700 | [diff] [blame] | 653 | |
| 654 | return addr; |
| 655 | } |