blob: 4d2cb0f85e2e567162df8839f282c2665eee546d [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>
13#include <tables_csum.h>
Bin Meng721e9922015-10-12 05:23:41 -070014#include <version.h>
Alexander Graf96476202016-08-19 01:23:28 +020015#ifdef CONFIG_CPU
16#include <cpu.h>
Alexander Graf96476202016-08-19 01:23:28 +020017#include <dm/uclass-internal.h>
18#endif
Bin Meng721e9922015-10-12 05:23:41 -070019
Bin Meng721e9922015-10-12 05:23:41 -070020/**
Simon Glass1e8989a2021-02-04 21:17:17 -070021 * struct smbios_ctx - context for writing SMBIOS tables
22 *
23 * @node: node containing the information to write (ofnode_null() if none)
24 * @dev: sysinfo device to use (NULL if none)
25 */
26struct smbios_ctx {
27 ofnode node;
28 struct udevice *dev;
29};
30
31/**
Simon Glass0e89b852021-02-04 21:17:14 -070032 * Function prototype to write a specific type of SMBIOS structure
33 *
34 * @addr: start address to write the structure
35 * @handle: the structure's handle, a unique 16-bit number
Simon Glass1e8989a2021-02-04 21:17:17 -070036 * @ctx: context for writing the tables
Simon Glass0e89b852021-02-04 21:17:14 -070037 * @return: size of the structure
38 */
Simon Glass1e8989a2021-02-04 21:17:17 -070039typedef int (*smbios_write_type)(ulong *addr, int handle,
40 struct smbios_ctx *ctx);
Simon Glass0e89b852021-02-04 21:17:14 -070041
42/**
Simon Glass44ffb6f2020-11-05 06:32:08 -070043 * struct smbios_write_method - Information about a table-writing function
44 *
45 * @write: Function to call
46 * @subnode_name: Name of subnode which has the information for this function,
47 * NULL if none
48 */
49struct smbios_write_method {
50 smbios_write_type write;
51 const char *subnode_name;
52};
53
54/**
Bin Meng721e9922015-10-12 05:23:41 -070055 * smbios_add_string() - add a string to the string area
56 *
57 * This adds a string to the string area which is appended directly after
58 * the formatted portion of an SMBIOS structure.
59 *
60 * @start: string area start address
61 * @str: string to add
Simon Glass78227d42020-11-05 06:32:07 -070062 * @return: string number in the string area (1 or more)
Bin Meng721e9922015-10-12 05:23:41 -070063 */
64static int smbios_add_string(char *start, const char *str)
65{
66 int i = 1;
67 char *p = start;
Heinrich Schuchardt00a871d2020-06-01 15:44:00 +020068 if (!*str)
69 str = "Unknown";
Bin Meng721e9922015-10-12 05:23:41 -070070
71 for (;;) {
72 if (!*p) {
73 strcpy(p, str);
74 p += strlen(str);
75 *p++ = '\0';
76 *p++ = '\0';
77
78 return i;
79 }
80
81 if (!strcmp(p, str))
82 return i;
83
84 p += strlen(p) + 1;
85 i++;
86 }
87}
88
89/**
Simon Glass44ffb6f2020-11-05 06:32:08 -070090 * smbios_add_prop() - Add a property from the device tree
91 *
92 * @start: string area start address
Simon Glass1e8989a2021-02-04 21:17:17 -070093 * @ctx: context for writing the tables
Simon Glass44ffb6f2020-11-05 06:32:08 -070094 * @prop: property to write
95 * @return 0 if not found, else SMBIOS string number (1 or more)
96 */
Simon Glass1e8989a2021-02-04 21:17:17 -070097static int smbios_add_prop(char *start, struct smbios_ctx *ctx,
98 const char *prop)
Simon Glass44ffb6f2020-11-05 06:32:08 -070099{
Simon Glasse4f8e542020-11-05 06:32:18 -0700100
101 if (IS_ENABLED(CONFIG_OF_CONTROL)) {
102 const char *str;
103
Simon Glass1e8989a2021-02-04 21:17:17 -0700104 str = ofnode_read_string(ctx->node, prop);
Simon Glasse4f8e542020-11-05 06:32:18 -0700105 if (str)
106 return smbios_add_string(start, str);
107 }
108
109 return 0;
Simon Glass44ffb6f2020-11-05 06:32:08 -0700110}
111
112/**
Bin Meng721e9922015-10-12 05:23:41 -0700113 * smbios_string_table_len() - compute the string area size
114 *
115 * This computes the size of the string area including the string terminator.
116 *
117 * @start: string area start address
118 * @return: string area size
119 */
120static int smbios_string_table_len(char *start)
121{
122 char *p = start;
123 int i, len = 0;
124
125 while (*p) {
126 i = strlen(p) + 1;
127 p += i;
128 len += i;
129 }
130
131 return len + 1;
132}
133
Simon Glass1e8989a2021-02-04 21:17:17 -0700134static int smbios_write_type0(ulong *current, int handle,
135 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700136{
Simon Glassa2505fc2018-11-22 13:46:37 -0700137 struct smbios_type0 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700138 int len = sizeof(struct smbios_type0);
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_type0));
142 fill_smbios_header(t, SMBIOS_BIOS_INFORMATION, len, handle);
143 t->vendor = smbios_add_string(t->eos, "U-Boot");
144 t->bios_ver = smbios_add_string(t->eos, PLAIN_VERSION);
145 t->bios_release_date = smbios_add_string(t->eos, U_BOOT_DMI_DATE);
Alexander Grafe663b352016-08-19 01:23:29 +0200146#ifdef CONFIG_ROM_SIZE
Bin Meng721e9922015-10-12 05:23:41 -0700147 t->bios_rom_size = (CONFIG_ROM_SIZE / 65536) - 1;
Alexander Grafe663b352016-08-19 01:23:29 +0200148#endif
Bin Meng721e9922015-10-12 05:23:41 -0700149 t->bios_characteristics = BIOS_CHARACTERISTICS_PCI_SUPPORTED |
150 BIOS_CHARACTERISTICS_SELECTABLE_BOOT |
151 BIOS_CHARACTERISTICS_UPGRADEABLE;
152#ifdef CONFIG_GENERATE_ACPI_TABLE
153 t->bios_characteristics_ext1 = BIOS_CHARACTERISTICS_EXT1_ACPI;
154#endif
Alexander Grafe663b352016-08-19 01:23:29 +0200155#ifdef CONFIG_EFI_LOADER
156 t->bios_characteristics_ext1 |= BIOS_CHARACTERISTICS_EXT1_UEFI;
157#endif
Bin Meng721e9922015-10-12 05:23:41 -0700158 t->bios_characteristics_ext2 = BIOS_CHARACTERISTICS_EXT2_TARGET;
Alexander Grafe663b352016-08-19 01:23:29 +0200159
Simon Glass7617f992021-02-04 21:17:16 -0700160 /* bios_major_release has only one byte, so drop century */
161 t->bios_major_release = U_BOOT_VERSION_NUM % 100;
162 t->bios_minor_release = U_BOOT_VERSION_NUM_PATCH;
Bin Meng721e9922015-10-12 05:23:41 -0700163 t->ec_major_release = 0xff;
164 t->ec_minor_release = 0xff;
165
166 len = t->length + smbios_string_table_len(t->eos);
167 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700168 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700169
170 return len;
171}
172
Simon Glass1e8989a2021-02-04 21:17:17 -0700173static int smbios_write_type1(ulong *current, int handle,
174 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700175{
Simon Glassa2505fc2018-11-22 13:46:37 -0700176 struct smbios_type1 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700177 int len = sizeof(struct smbios_type1);
Simon Glass00caae62017-08-03 12:22:12 -0600178 char *serial_str = env_get("serial#");
Bin Meng721e9922015-10-12 05:23:41 -0700179
Simon Glassa2505fc2018-11-22 13:46:37 -0700180 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700181 memset(t, 0, sizeof(struct smbios_type1));
182 fill_smbios_header(t, SMBIOS_SYSTEM_INFORMATION, len, handle);
Simon Glass1e8989a2021-02-04 21:17:17 -0700183 t->manufacturer = smbios_add_prop(t->eos, ctx, "manufacturer");
184 t->product_name = smbios_add_prop(t->eos, ctx, "product");
185 t->version = smbios_add_prop(t->eos, ctx, "version");
Alexander Graf6fb580d2016-08-19 01:23:31 +0200186 if (serial_str) {
Alexander Graf6fb580d2016-08-19 01:23:31 +0200187 t->serial_number = smbios_add_string(t->eos, serial_str);
Simon Glass44ffb6f2020-11-05 06:32:08 -0700188 strncpy((char *)t->uuid, serial_str, sizeof(t->uuid));
189 } else {
Simon Glass1e8989a2021-02-04 21:17:17 -0700190 t->serial_number = smbios_add_prop(t->eos, ctx, "serial");
Alexander Graf6fb580d2016-08-19 01:23:31 +0200191 }
Simon Glass1e8989a2021-02-04 21:17:17 -0700192 t->sku_number = smbios_add_prop(t->eos, ctx, "sku");
193 t->family = smbios_add_prop(t->eos, ctx, "family");
Bin Meng721e9922015-10-12 05:23:41 -0700194
195 len = t->length + smbios_string_table_len(t->eos);
196 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700197 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700198
199 return len;
200}
201
Simon Glass1e8989a2021-02-04 21:17:17 -0700202static int smbios_write_type2(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_type2 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700206 int len = sizeof(struct smbios_type2);
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_type2));
210 fill_smbios_header(t, SMBIOS_BOARD_INFORMATION, len, handle);
Simon Glass1e8989a2021-02-04 21:17:17 -0700211 t->manufacturer = smbios_add_prop(t->eos, ctx, "manufacturer");
212 t->product_name = smbios_add_prop(t->eos, ctx, "product");
213 t->asset_tag_number = smbios_add_prop(t->eos, ctx, "asset-tag");
Bin Meng721e9922015-10-12 05:23:41 -0700214 t->feature_flags = SMBIOS_BOARD_FEATURE_HOSTING;
215 t->board_type = SMBIOS_BOARD_MOTHERBOARD;
216
217 len = t->length + smbios_string_table_len(t->eos);
218 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700219 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700220
221 return len;
222}
223
Simon Glass1e8989a2021-02-04 21:17:17 -0700224static int smbios_write_type3(ulong *current, int handle,
225 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700226{
Simon Glassa2505fc2018-11-22 13:46:37 -0700227 struct smbios_type3 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700228 int len = sizeof(struct smbios_type3);
229
Simon Glassa2505fc2018-11-22 13:46:37 -0700230 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700231 memset(t, 0, sizeof(struct smbios_type3));
232 fill_smbios_header(t, SMBIOS_SYSTEM_ENCLOSURE, len, handle);
Simon Glass1e8989a2021-02-04 21:17:17 -0700233 t->manufacturer = smbios_add_prop(t->eos, ctx, "manufacturer");
Bin Meng721e9922015-10-12 05:23:41 -0700234 t->chassis_type = SMBIOS_ENCLOSURE_DESKTOP;
235 t->bootup_state = SMBIOS_STATE_SAFE;
236 t->power_supply_state = SMBIOS_STATE_SAFE;
237 t->thermal_state = SMBIOS_STATE_SAFE;
238 t->security_status = SMBIOS_SECURITY_NONE;
239
240 len = t->length + smbios_string_table_len(t->eos);
241 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700242 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700243
244 return len;
245}
246
Simon Glass1e8989a2021-02-04 21:17:17 -0700247static void smbios_write_type4_dm(struct smbios_type4 *t,
248 struct smbios_ctx *ctx)
Alexander Graf96476202016-08-19 01:23:28 +0200249{
250 u16 processor_family = SMBIOS_PROCESSOR_FAMILY_UNKNOWN;
251 const char *vendor = "Unknown";
252 const char *name = "Unknown";
253
254#ifdef CONFIG_CPU
255 char processor_name[49];
256 char vendor_name[49];
Simon Glass78227d42020-11-05 06:32:07 -0700257 struct udevice *cpu = NULL;
Alexander Graf96476202016-08-19 01:23:28 +0200258
Simon Glass78227d42020-11-05 06:32:07 -0700259 uclass_find_first_device(UCLASS_CPU, &cpu);
260 if (cpu) {
Simon Glass8a8d24b2020-12-03 16:55:23 -0700261 struct cpu_plat *plat = dev_get_parent_plat(cpu);
Alexander Graf96476202016-08-19 01:23:28 +0200262
263 if (plat->family)
264 processor_family = plat->family;
265 t->processor_id[0] = plat->id[0];
266 t->processor_id[1] = plat->id[1];
267
Simon Glass78227d42020-11-05 06:32:07 -0700268 if (!cpu_get_vendor(cpu, vendor_name, sizeof(vendor_name)))
Alexander Graf96476202016-08-19 01:23:28 +0200269 vendor = vendor_name;
Simon Glass78227d42020-11-05 06:32:07 -0700270 if (!cpu_get_desc(cpu, processor_name, sizeof(processor_name)))
Alexander Graf96476202016-08-19 01:23:28 +0200271 name = processor_name;
272 }
273#endif
274
275 t->processor_family = processor_family;
276 t->processor_manufacturer = smbios_add_string(t->eos, vendor);
277 t->processor_version = smbios_add_string(t->eos, name);
278}
279
Simon Glass1e8989a2021-02-04 21:17:17 -0700280static int smbios_write_type4(ulong *current, int handle,
281 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700282{
Simon Glassa2505fc2018-11-22 13:46:37 -0700283 struct smbios_type4 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700284 int len = sizeof(struct smbios_type4);
Bin Meng721e9922015-10-12 05:23:41 -0700285
Simon Glassa2505fc2018-11-22 13:46:37 -0700286 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700287 memset(t, 0, sizeof(struct smbios_type4));
288 fill_smbios_header(t, SMBIOS_PROCESSOR_INFORMATION, len, handle);
289 t->processor_type = SMBIOS_PROCESSOR_TYPE_CENTRAL;
Simon Glass1e8989a2021-02-04 21:17:17 -0700290 smbios_write_type4_dm(t, ctx);
Bin Meng721e9922015-10-12 05:23:41 -0700291 t->status = SMBIOS_PROCESSOR_STATUS_ENABLED;
292 t->processor_upgrade = SMBIOS_PROCESSOR_UPGRADE_NONE;
293 t->l1_cache_handle = 0xffff;
294 t->l2_cache_handle = 0xffff;
295 t->l3_cache_handle = 0xffff;
296 t->processor_family2 = t->processor_family;
297
298 len = t->length + smbios_string_table_len(t->eos);
299 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700300 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700301
302 return len;
303}
304
Simon Glass1e8989a2021-02-04 21:17:17 -0700305static int smbios_write_type32(ulong *current, int handle,
306 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700307{
Simon Glassa2505fc2018-11-22 13:46:37 -0700308 struct smbios_type32 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700309 int len = sizeof(struct smbios_type32);
310
Simon Glassa2505fc2018-11-22 13:46:37 -0700311 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700312 memset(t, 0, sizeof(struct smbios_type32));
313 fill_smbios_header(t, SMBIOS_SYSTEM_BOOT_INFORMATION, len, handle);
314
315 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700316 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700317
318 return len;
319}
320
Simon Glass1e8989a2021-02-04 21:17:17 -0700321static int smbios_write_type127(ulong *current, int handle,
322 struct smbios_ctx *ctx)
Bin Meng721e9922015-10-12 05:23:41 -0700323{
Simon Glassa2505fc2018-11-22 13:46:37 -0700324 struct smbios_type127 *t;
Bin Meng721e9922015-10-12 05:23:41 -0700325 int len = sizeof(struct smbios_type127);
326
Simon Glassa2505fc2018-11-22 13:46:37 -0700327 t = map_sysmem(*current, len);
Bin Meng721e9922015-10-12 05:23:41 -0700328 memset(t, 0, sizeof(struct smbios_type127));
329 fill_smbios_header(t, SMBIOS_END_OF_TABLE, len, handle);
330
331 *current += len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700332 unmap_sysmem(t);
Bin Meng721e9922015-10-12 05:23:41 -0700333
334 return len;
335}
336
Simon Glass44ffb6f2020-11-05 06:32:08 -0700337static struct smbios_write_method smbios_write_funcs[] = {
338 { smbios_write_type0, },
339 { smbios_write_type1, "system", },
340 { smbios_write_type2, "baseboard", },
341 { smbios_write_type3, "chassis", },
342 { smbios_write_type4, },
343 { smbios_write_type32, },
344 { smbios_write_type127 },
Bin Meng721e9922015-10-12 05:23:41 -0700345};
346
Simon Glass42fd8c12017-01-16 07:03:35 -0700347ulong write_smbios_table(ulong addr)
Bin Meng721e9922015-10-12 05:23:41 -0700348{
Simon Glass44ffb6f2020-11-05 06:32:08 -0700349 ofnode parent_node = ofnode_null();
Bin Meng721e9922015-10-12 05:23:41 -0700350 struct smbios_entry *se;
Simon Glass1e8989a2021-02-04 21:17:17 -0700351 struct smbios_ctx ctx;
Simon Glassa2505fc2018-11-22 13:46:37 -0700352 ulong table_addr;
Simon Glass42fd8c12017-01-16 07:03:35 -0700353 ulong tables;
Bin Meng721e9922015-10-12 05:23:41 -0700354 int len = 0;
355 int max_struct_size = 0;
356 int handle = 0;
357 char *istart;
358 int isize;
359 int i;
360
Simon Glass1e8989a2021-02-04 21:17:17 -0700361 ctx.node = ofnode_null();
Simon Glass78227d42020-11-05 06:32:07 -0700362 if (IS_ENABLED(CONFIG_OF_CONTROL)) {
Simon Glass1e8989a2021-02-04 21:17:17 -0700363 uclass_first_device(UCLASS_SYSINFO, &ctx.dev);
364 if (ctx.dev)
365 parent_node = dev_read_subnode(ctx.dev, "smbios");
366 } else {
367 ctx.dev = NULL;
Simon Glass78227d42020-11-05 06:32:07 -0700368 }
369
Bin Meng721e9922015-10-12 05:23:41 -0700370 /* 16 byte align the table address */
371 addr = ALIGN(addr, 16);
372
Simon Glassa2505fc2018-11-22 13:46:37 -0700373 se = map_sysmem(addr, sizeof(struct smbios_entry));
Bin Meng721e9922015-10-12 05:23:41 -0700374 memset(se, 0, sizeof(struct smbios_entry));
375
376 addr += sizeof(struct smbios_entry);
377 addr = ALIGN(addr, 16);
378 tables = addr;
379
380 /* populate minimum required tables */
381 for (i = 0; i < ARRAY_SIZE(smbios_write_funcs); i++) {
Simon Glass44ffb6f2020-11-05 06:32:08 -0700382 const struct smbios_write_method *method;
Simon Glass44ffb6f2020-11-05 06:32:08 -0700383 int tmp;
384
385 method = &smbios_write_funcs[i];
386 if (IS_ENABLED(CONFIG_OF_CONTROL) && method->subnode_name)
Simon Glass1e8989a2021-02-04 21:17:17 -0700387 ctx.node = ofnode_find_subnode(parent_node,
388 method->subnode_name);
389 tmp = method->write((ulong *)&addr, handle++, &ctx);
Christian Gmeiner60a4df32018-07-30 13:22:07 +0200390
Bin Meng721e9922015-10-12 05:23:41 -0700391 max_struct_size = max(max_struct_size, tmp);
392 len += tmp;
393 }
394
395 memcpy(se->anchor, "_SM_", 4);
396 se->length = sizeof(struct smbios_entry);
397 se->major_ver = SMBIOS_MAJOR_VER;
398 se->minor_ver = SMBIOS_MINOR_VER;
399 se->max_struct_size = max_struct_size;
400 memcpy(se->intermediate_anchor, "_DMI_", 5);
401 se->struct_table_length = len;
Simon Glassa2505fc2018-11-22 13:46:37 -0700402
403 /*
404 * We must use a pointer here so things work correctly on sandbox. The
405 * user of this table is not aware of the mapping of addresses to
406 * sandbox's DRAM buffer.
407 */
408 table_addr = (ulong)map_sysmem(tables, 0);
409 if (sizeof(table_addr) > sizeof(u32) && table_addr > (ulong)UINT_MAX) {
410 /*
411 * We need to put this >32-bit pointer into the table but the
412 * field is only 32 bits wide.
413 */
414 printf("WARNING: SMBIOS table_address overflow %llx\n",
415 (unsigned long long)table_addr);
416 table_addr = 0;
417 }
418 se->struct_table_address = table_addr;
419
Bin Meng721e9922015-10-12 05:23:41 -0700420 se->struct_count = handle;
421
422 /* calculate checksums */
423 istart = (char *)se + SMBIOS_INTERMEDIATE_OFFSET;
424 isize = sizeof(struct smbios_entry) - SMBIOS_INTERMEDIATE_OFFSET;
425 se->intermediate_checksum = table_compute_checksum(istart, isize);
426 se->checksum = table_compute_checksum(se, sizeof(struct smbios_entry));
Simon Glassa2505fc2018-11-22 13:46:37 -0700427 unmap_sysmem(se);
Bin Meng721e9922015-10-12 05:23:41 -0700428
429 return addr;
430}