blob: bee389d0bf9fb94cc5671f431f481ea05d0db2a6 [file] [log] [blame]
Angel Pons118a9c72020-04-02 23:48:34 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauerb883d4c2009-08-27 11:23:06 +00002
Arthur Heymans2e7e2d92022-03-03 22:28:27 +01003#include <acpi/acpi.h>
Aaron Durbina6e90512016-04-21 14:06:17 -05004#include <arch/cbconfig.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +00005#include <console/console.h>
Kyösti Mälkki1d7541f2014-02-17 21:34:42 +02006#include <console/uart.h>
Kyösti Mälkkia9dd3c32022-12-15 22:12:10 +02007#include <identity.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +00008#include <ip_checksum.h>
Stefan Reinauerca374d42008-01-18 16:16:45 +00009#include <boot/coreboot_tables.h>
Aaron Durbin5481c962016-04-19 20:37:51 -050010#include <boot/tables.h>
Patrick Georgifb5d5b12015-07-14 17:15:51 +010011#include <boot_device.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000012#include <string.h>
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -070013#include <boardid.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000014#include <device/device.h>
Patrick Rudolph39d69272020-09-21 09:49:31 +020015#include <drivers/tpm/tpm_ppi.h>
Patrick Georgifb5d5b12015-07-14 17:15:51 +010016#include <fmap.h>
Tim Wawrzynczake1a7a262020-10-09 17:07:45 -060017#include <fw_config.h>
Duncan Laurie66ecdc52011-08-15 16:35:10 -070018#include <cbfs.h>
Vadim Bendebury2e438672011-09-23 09:56:11 -070019#include <cbmem.h>
Aaron Durbin49048022014-02-18 21:55:02 -060020#include <bootmem.h>
Johanna Schanderc544a852019-07-28 09:28:33 +020021#include <bootsplash.h>
Julius Werner09728712021-03-31 18:30:29 -070022#include <inttypes.h>
Dan Ehrenberga5aac762015-01-08 10:29:19 -080023#include <spi_flash.h>
Patrick Rudolphbc744f52020-04-17 16:16:49 +020024#include <smmstore.h>
Elyes HAOUAS93a195c2021-12-31 18:46:13 +010025#include <types.h>
Kyösti Mälkkia9dd3c32022-12-15 22:12:10 +020026#include <version.h>
Patrick Rudolphbc744f52020-04-17 16:16:49 +020027
Julius Wernercd49cce2019-03-05 16:53:33 -080028#if CONFIG(USE_OPTION_TABLE)
Nico Huber08599912015-09-21 20:11:47 +020029#include <option_table.h>
30#endif
Johnny Linb8899ef2020-05-28 14:04:58 +080031#if CONFIG(PLATFORM_USES_FSP2_0)
32#include <fsp/util.h>
33#else
34void lb_string_platform_blob_version(struct lb_header *header);
35#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000036
Arthur Heymans8c740b02022-11-03 10:56:45 +010037__weak enum cb_err fill_lb_pcie(struct lb_pcie *pcie)
Jianjun Wangd16c2aa2022-03-31 15:34:34 +080038{
39 return CB_ERR_NOT_IMPLEMENTED;
40}
41
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000042static struct lb_header *lb_table_init(unsigned long addr)
Eric Biederman8ca8d762003-04-22 19:02:15 +000043{
44 struct lb_header *header;
45
Arthur Heymansf509b612022-04-19 12:05:28 +020046 addr = ALIGN_UP(addr, 16);
Eric Biederman8ca8d762003-04-22 19:02:15 +000047
48 header = (void *)addr;
49 header->signature[0] = 'L';
50 header->signature[1] = 'B';
51 header->signature[2] = 'I';
52 header->signature[3] = 'O';
53 header->header_bytes = sizeof(*header);
54 header->header_checksum = 0;
55 header->table_bytes = 0;
56 header->table_checksum = 0;
57 header->table_entries = 0;
58 return header;
59}
60
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000061static struct lb_record *lb_first_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000062{
63 struct lb_record *rec;
64 rec = (void *)(((char *)header) + sizeof(*header));
65 return rec;
66}
67
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000068static struct lb_record *lb_last_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000069{
70 struct lb_record *rec;
Lee Leahy73402172017-03-10 15:23:24 -080071 rec = (void *)(((char *)header) + sizeof(*header)
72 + header->table_bytes);
Eric Biederman8ca8d762003-04-22 19:02:15 +000073 return rec;
74}
75
Julius Wernerb8fad3d2013-08-27 15:48:32 -070076struct lb_record *lb_new_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000077{
78 struct lb_record *rec;
79 rec = lb_last_record(header);
Julius Werner9a9b2772022-11-30 16:18:01 -080080 if (header->table_entries) {
81 assert(IS_ALIGNED(rec->size, LB_ENTRY_ALIGN));
Eric Biederman8ca8d762003-04-22 19:02:15 +000082 header->table_bytes += rec->size;
Julius Werner9a9b2772022-11-30 16:18:01 -080083 rec = lb_last_record(header);
84 }
Eric Biederman8ca8d762003-04-22 19:02:15 +000085 header->table_entries++;
86 rec->tag = LB_TAG_UNUSED;
87 rec->size = sizeof(*rec);
88 return rec;
89}
90
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000091static struct lb_memory *lb_memory(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000092{
93 struct lb_record *rec;
94 struct lb_memory *mem;
95 rec = lb_new_record(header);
96 mem = (struct lb_memory *)rec;
97 mem->tag = LB_TAG_MEMORY;
98 mem->size = sizeof(*mem);
99 return mem;
100}
101
Arthur Heymans9948c522022-10-24 14:37:40 +0200102static void lb_add_serial(struct lb_header *header)
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000103{
Arthur Heymans9948c522022-10-24 14:37:40 +0200104 struct lb_serial new_serial = { .tag = LB_TAG_SERIAL,
105 .size = sizeof(struct lb_serial),
106 };
107 if (fill_lb_serial(&new_serial) != CB_SUCCESS)
108 return;
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200109
Arthur Heymans9948c522022-10-24 14:37:40 +0200110 struct lb_serial *serial = (struct lb_serial *)lb_new_record(header);
111 memcpy(serial, &new_serial, sizeof(*serial));
112 assert(serial->type == LB_SERIAL_TYPE_IO_MAPPED
113 || serial->type == LB_SERIAL_TYPE_MEMORY_MAPPED)
114 if (serial->type == LB_SERIAL_TYPE_IO_MAPPED)
115 lb_add_console(LB_TAG_CONSOLE_SERIAL8250, header);
116 else
117 lb_add_console(LB_TAG_CONSOLE_SERIAL8250MEM, header);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000118}
119
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200120void lb_add_console(uint16_t consoletype, void *data)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000121{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200122 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000123 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000124
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000125 console = (struct lb_console *)lb_new_record(header);
126 console->tag = LB_TAG_CONSOLE;
127 console->size = sizeof(*console);
128 console->type = consoletype;
129}
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000130
Jianjun Wangd16c2aa2022-03-31 15:34:34 +0800131static void lb_pcie(struct lb_header *header)
132{
133 struct lb_pcie pcie = { .tag = LB_TAG_PCIE, .size = sizeof(pcie) };
134
Arthur Heymans8c740b02022-11-03 10:56:45 +0100135 if (fill_lb_pcie(&pcie) != CB_SUCCESS)
Jianjun Wangd16c2aa2022-03-31 15:34:34 +0800136 return;
137
138 memcpy(lb_new_record(header), &pcie, sizeof(pcie));
139}
140
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500141static void lb_framebuffer(struct lb_header *header)
142{
Stefan Reinauerd650e992010-02-22 04:33:13 +0000143 struct lb_framebuffer *framebuffer;
Duncan Laurie13bc5e52017-06-26 01:50:14 -0700144 struct lb_framebuffer fb = {0};
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500145
Julius Wernercd49cce2019-03-05 16:53:33 -0800146 if (!CONFIG(LINEAR_FRAMEBUFFER) || fill_lb_framebuffer(&fb))
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500147 return;
148
Stefan Reinauerd650e992010-02-22 04:33:13 +0000149 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500150 memcpy(framebuffer, &fb, sizeof(*framebuffer));
Stefan Reinauerd650e992010-02-22 04:33:13 +0000151 framebuffer->tag = LB_TAG_FRAMEBUFFER;
152 framebuffer->size = sizeof(*framebuffer);
Johanna Schanderc544a852019-07-28 09:28:33 +0200153
154 if (CONFIG(BOOTSPLASH)) {
155 uint8_t *fb_ptr = (uint8_t *)(uintptr_t)framebuffer->physical_address;
156 unsigned int width = framebuffer->x_resolution;
157 unsigned int height = framebuffer->y_resolution;
158 unsigned int depth = framebuffer->bits_per_pixel;
159 set_bootsplash(fb_ptr, width, height, depth);
160 }
Stefan Reinauerd650e992010-02-22 04:33:13 +0000161}
162
Julius Wernerc445b4f2016-03-31 17:27:05 -0700163void lb_add_gpios(struct lb_gpios *gpios, const struct lb_gpio *gpio_table,
164 size_t count)
Kyösti Mälkki65784752013-12-22 03:12:38 +0200165{
Julius Wernerc445b4f2016-03-31 17:27:05 -0700166 size_t table_size = count * sizeof(struct lb_gpio);
167
168 memcpy(&gpios->gpios[gpios->count], gpio_table, table_size);
169 gpios->count += count;
170 gpios->size += table_size;
Kyösti Mälkki65784752013-12-22 03:12:38 +0200171}
172
Stefan Reinauer31324c62012-04-05 21:22:02 +0200173static void lb_gpios(struct lb_header *header)
174{
175 struct lb_gpios *gpios;
Julius Wernerc445b4f2016-03-31 17:27:05 -0700176 struct lb_gpio *g;
Vadim Bendebury274ef412014-09-22 18:48:41 -0700177
Stefan Reinauer31324c62012-04-05 21:22:02 +0200178 gpios = (struct lb_gpios *)lb_new_record(header);
179 gpios->tag = LB_TAG_GPIO;
180 gpios->size = sizeof(*gpios);
181 gpios->count = 0;
182 fill_lb_gpios(gpios);
Julius Wernerc445b4f2016-03-31 17:27:05 -0700183
184 printk(BIOS_INFO, "Passing %u GPIOs to payload:\n"
185 " NAME | PORT | POLARITY | VALUE\n",
186 gpios->count);
187 for (g = &gpios->gpios[0]; g < &gpios->gpios[gpios->count]; g++) {
Julius Wernere0f058f2021-01-15 17:48:11 -0800188 printk(BIOS_INFO, "%16.16s | ", g->name);
Julius Wernerc445b4f2016-03-31 17:27:05 -0700189 if (g->port == -1)
190 printk(BIOS_INFO, " undefined | ");
191 else
192 printk(BIOS_INFO, "%#.8x | ", g->port);
193 if (g->polarity == ACTIVE_HIGH)
194 printk(BIOS_INFO, " high | ");
195 else
196 printk(BIOS_INFO, " low | ");
197 switch (g->value) {
198 case 0:
Julius Wernerdc5d24c2018-03-07 13:06:53 -0800199 printk(BIOS_INFO, " low\n");
Julius Wernerc445b4f2016-03-31 17:27:05 -0700200 break;
201 case 1:
Julius Wernerdc5d24c2018-03-07 13:06:53 -0800202 printk(BIOS_INFO, " high\n");
Julius Wernerc445b4f2016-03-31 17:27:05 -0700203 break;
204 default:
205 printk(BIOS_INFO, "undefined\n");
206 break;
207 }
208 }
Stefan Reinauer31324c62012-04-05 21:22:02 +0200209}
210
Aaron Durbin64031672018-04-21 14:45:32 -0600211__weak uint32_t board_id(void) { return UNDEFINED_STRAPPING_ID; }
212__weak uint32_t ram_code(void) { return UNDEFINED_STRAPPING_ID; }
213__weak uint32_t sku_id(void) { return UNDEFINED_STRAPPING_ID; }
Tim Wawrzynczake1a7a262020-10-09 17:07:45 -0600214__weak uint64_t fw_config_get(void) { return UNDEFINED_FW_CONFIG; }
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700215
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100216static void lb_boot_media_params(struct lb_header *header)
217{
218 struct lb_boot_media_params *bmp;
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100219 const struct region_device *boot_dev;
Julius Werner1e37c9c2019-12-11 17:09:39 -0800220 const struct cbfs_boot_device *cbd = cbfs_get_boot_device(false);
221 if (!cbd)
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100222 return;
223
224 boot_dev = boot_device_ro();
225 if (boot_dev == NULL)
226 return;
227
228 bmp = (struct lb_boot_media_params *)lb_new_record(header);
229 bmp->tag = LB_TAG_BOOT_MEDIA_PARAMS;
230 bmp->size = sizeof(*bmp);
231
Julius Werner1e37c9c2019-12-11 17:09:39 -0800232 bmp->cbfs_offset = region_device_offset(&cbd->rdev);
233 bmp->cbfs_size = region_device_sz(&cbd->rdev);
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100234 bmp->boot_media_size = region_device_sz(boot_dev);
235
Furquan Shaikhb33a2b02019-09-26 23:51:46 -0700236 bmp->fmap_offset = get_fmap_flash_offset();
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100237}
238
Bora Guvendikddf2bc52018-03-30 16:03:32 -0700239static void lb_mmc_info(struct lb_header *header)
240{
241 struct lb_mmc_info *rec;
242 int32_t *ms_cbmem;
243
244 ms_cbmem = cbmem_find(CBMEM_ID_MMC_STATUS);
245 if (!ms_cbmem)
246 return;
247
248 rec = (struct lb_mmc_info *)lb_new_record(header);
249
250 rec->tag = LB_TAG_MMC_INFO;
251 rec->size = sizeof(*rec);
252 rec->early_cmd1_status = *ms_cbmem;
253}
254
Vadim Bendebury22c04682011-10-03 14:58:57 -0700255static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700256{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700257 /*
258 * These CBMEM sections' addresses are included in the coreboot table
259 * with the appropriate tags.
260 */
261 const struct section_id {
262 int cbmem_id;
263 int table_tag;
264 } section_ids[] = {
265 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
Duncan Laurie16e899b2013-12-12 10:43:21 -0800266 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE},
267 {CBMEM_ID_ACPI_GNVS, LB_TAG_ACPI_GNVS},
Furquan Shaikhbda86bd2021-06-17 22:14:13 -0700268 {CBMEM_ID_ACPI_CNVS, LB_TAG_ACPI_CNVS},
Hung-Te Linb15a0d02015-07-13 15:49:57 +0800269 {CBMEM_ID_VPD, LB_TAG_VPD},
Philipp Deppenwiesefa1f6ff2018-05-13 12:42:42 +0200270 {CBMEM_ID_WIFI_CALIBRATION, LB_TAG_WIFI_CALIBRATION},
Sergii Dmytruk2710df72022-11-10 00:40:51 +0200271 {CBMEM_ID_TPM_CB_LOG, LB_TAG_TPM_CB_LOG},
Patrick Rudolph6d787c22019-09-12 13:21:37 +0200272 {CBMEM_ID_FMAP, LB_TAG_FMAP},
Yu-Ping Wu63b97002019-11-26 13:31:32 +0800273 {CBMEM_ID_VBOOT_WORKBUF, LB_TAG_VBOOT_WORKBUF},
Nick Vaccaroa62b4182021-10-01 13:12:59 -0700274 {CBMEM_ID_TYPE_C_INFO, LB_TAG_TYPE_C_INFO},
Vadim Bendebury22c04682011-10-03 14:58:57 -0700275 };
276 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700277
Vadim Bendebury22c04682011-10-03 14:58:57 -0700278 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
279 const struct section_id *sid = section_ids + i;
280 struct lb_cbmem_ref *cbmem_ref;
281 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700282
Vadim Bendebury22c04682011-10-03 14:58:57 -0700283 if (!cbmem_addr)
284 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700285
Vadim Bendebury22c04682011-10-03 14:58:57 -0700286 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
287 if (!cbmem_ref) {
288 printk(BIOS_ERR, "No more room in coreboot table!\n");
289 break;
290 }
291 cbmem_ref->tag = sid->table_tag;
292 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800293 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700294 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700295}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700296
Stefan Reinauere3778572010-01-30 09:47:18 +0000297static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000298{
299 struct lb_record *rec;
300 struct lb_mainboard *mainboard;
301 rec = lb_new_record(header);
302 mainboard = (struct lb_mainboard *)rec;
303 mainboard->tag = LB_TAG_MAINBOARD;
304
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800305 mainboard->size = ALIGN_UP(sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000306 strlen(mainboard_vendor) + 1 +
Julius Werner9a9b2772022-11-30 16:18:01 -0800307 strlen(mainboard_part_number) + 1, LB_ENTRY_ALIGN);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000308
309 mainboard->vendor_idx = 0;
310 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
311
312 memcpy(mainboard->strings + mainboard->vendor_idx,
313 mainboard_vendor, strlen(mainboard_vendor) + 1);
314 memcpy(mainboard->strings + mainboard->part_number_idx,
315 mainboard_part_number, strlen(mainboard_part_number) + 1);
316
317 return mainboard;
318}
319
Tim Wawrzynczake1a7a262020-10-09 17:07:45 -0600320static struct lb_board_config *lb_board_config(struct lb_header *header)
321{
322 struct lb_record *rec;
323 struct lb_board_config *config;
324 rec = lb_new_record(header);
325 config = (struct lb_board_config *)rec;
326
327 config->tag = LB_TAG_BOARD_CONFIG;
328 config->size = sizeof(*config);
329
Julius Werner09728712021-03-31 18:30:29 -0700330 const uint64_t fw_config = fw_config_get();
Tim Wawrzynczake1a7a262020-10-09 17:07:45 -0600331 config->board_id = board_id();
332 config->ram_code = ram_code();
333 config->sku_id = sku_id();
Jianjun Wangb2537bd2022-04-08 16:57:28 +0800334 config->fw_config = fw_config;
Julius Werner09728712021-03-31 18:30:29 -0700335
336 if (config->board_id != UNDEFINED_STRAPPING_ID)
337 printk(BIOS_INFO, "Board ID: %d\n", config->board_id);
338 if (config->ram_code != UNDEFINED_STRAPPING_ID)
339 printk(BIOS_INFO, "RAM code: %d\n", config->ram_code);
340 if (config->sku_id != UNDEFINED_STRAPPING_ID)
341 printk(BIOS_INFO, "SKU ID: %d\n", config->sku_id);
342 if (fw_config != UNDEFINED_FW_CONFIG)
343 printk(BIOS_INFO, "FW config: %#" PRIx64 "\n", fw_config);
Tim Wawrzynczake1a7a262020-10-09 17:07:45 -0600344
345 return config;
346}
347
Julius Wernercd49cce2019-03-05 16:53:33 -0800348#if CONFIG(USE_OPTION_TABLE)
Nico Huber08599912015-09-21 20:11:47 +0200349static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
350{
351 struct lb_record *rec;
352 struct cmos_checksum *cmos_checksum;
353 rec = lb_new_record(header);
354 cmos_checksum = (struct cmos_checksum *)rec;
355 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
356
357 cmos_checksum->size = (sizeof(*cmos_checksum));
358
359 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
Lee Leahyd638ef42017-03-07 09:47:22 -0800360 cmos_checksum->range_end = (LB_CKS_RANGE_END * 8) + 7;
Nico Huber08599912015-09-21 20:11:47 +0200361 cmos_checksum->location = LB_CKS_LOC * 8;
362 cmos_checksum->type = CHECKSUM_PCBIOS;
363
364 return cmos_checksum;
365}
366#endif
367
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000368static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000369{
370 static const struct {
371 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000372 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000373 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000374 { LB_TAG_VERSION, coreboot_version, },
375 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
376 { LB_TAG_BUILD, coreboot_build, },
377 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000378 };
Eric Biederman52685572003-05-19 19:16:21 +0000379 unsigned int i;
Lee Leahy45fde702017-03-08 18:02:24 -0800380 for (i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000381 struct lb_string *rec;
382 size_t len;
383 rec = (struct lb_string *)lb_new_record(header);
384 len = strlen(strings[i].string);
385 rec->tag = strings[i].tag;
Julius Werner9a9b2772022-11-30 16:18:01 -0800386 rec->size = ALIGN_UP(sizeof(*rec) + len + 1, LB_ENTRY_ALIGN);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000387 memcpy(rec->string, strings[i].string, len+1);
388 }
389
390}
391
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200392static void lb_record_version_timestamp(struct lb_header *header)
393{
394 struct lb_timestamp *rec;
395 rec = (struct lb_timestamp *)lb_new_record(header);
396 rec->tag = LB_TAG_VERSION_TIMESTAMP;
397 rec->size = sizeof(*rec);
398 rec->timestamp = coreboot_version_timestamp;
399}
400
Aaron Durbin64031672018-04-21 14:45:32 -0600401void __weak lb_board(struct lb_header *header) { /* NOOP */ }
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700402
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500403/*
404 * It's possible that the system is using a SPI flash as the boot device,
405 * however it is not probing for devices to fill in specifics. In that
406 * case don't provide any information as the correct information is
407 * not known.
408 */
Aaron Durbin64031672018-04-21 14:45:32 -0600409void __weak lb_spi_flash(struct lb_header *header) { /* NOOP */ }
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500410
Lee Leahy73402172017-03-10 15:23:24 -0800411static struct lb_forward *lb_forward(struct lb_header *header,
412 struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000413{
414 struct lb_record *rec;
415 struct lb_forward *forward;
416 rec = lb_new_record(header);
417 forward = (struct lb_forward *)rec;
418 forward->tag = LB_TAG_FORWARD;
419 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000420 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000421 return forward;
422}
423
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500424static unsigned long lb_table_fini(struct lb_header *head)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000425{
426 struct lb_record *rec, *first_rec;
427 rec = lb_last_record(head);
Julius Werner9a9b2772022-11-30 16:18:01 -0800428 if (head->table_entries) {
429 assert(IS_ALIGNED(rec->size, LB_ENTRY_ALIGN));
Eric Biederman8ca8d762003-04-22 19:02:15 +0000430 head->table_bytes += rec->size;
Julius Werner9a9b2772022-11-30 16:18:01 -0800431 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000432
Eric Biederman8ca8d762003-04-22 19:02:15 +0000433 first_rec = lb_first_record(head);
Lee Leahy73402172017-03-10 15:23:24 -0800434 head->table_checksum = compute_ip_checksum(first_rec,
435 head->table_bytes);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000436 head->header_checksum = 0;
437 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700438 printk(BIOS_DEBUG,
439 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
440 head, head->table_bytes, head->table_checksum);
441 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000442}
443
Arthur Heymans2e7e2d92022-03-03 22:28:27 +0100444static void lb_add_acpi_rsdp(struct lb_header *head)
445{
446 struct lb_acpi_rsdp *acpi_rsdp;
447 struct lb_record *rec = lb_new_record(head);
448 acpi_rsdp = (struct lb_acpi_rsdp *)rec;
449 acpi_rsdp->tag = LB_TAG_ACPI_RSDP;
450 acpi_rsdp->size = sizeof(*acpi_rsdp);
Jianjun Wangb2537bd2022-04-08 16:57:28 +0800451 acpi_rsdp->rsdp_pointer = get_coreboot_rsdp();
Arthur Heymans2e7e2d92022-03-03 22:28:27 +0100452}
453
Aaron Durbin8984af82016-04-19 17:06:09 -0500454size_t write_coreboot_forwarding_table(uintptr_t entry, uintptr_t target)
455{
456 struct lb_header *head;
457
Julius Werner540a9802019-12-09 13:03:29 -0800458 printk(BIOS_DEBUG, "Writing table forward entry at %p\n",
Aaron Durbin8984af82016-04-19 17:06:09 -0500459 (void *)entry);
460
461 head = lb_table_init(entry);
Lee Leahyb2d834a2017-03-08 16:52:22 -0800462 lb_forward(head, (struct lb_header *)target);
Aaron Durbin8984af82016-04-19 17:06:09 -0500463
464 return (uintptr_t)lb_table_fini(head) - entry;
465}
466
Aaron Durbina4db0502016-04-19 21:38:18 -0500467static uintptr_t write_coreboot_table(uintptr_t rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000468{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000469 struct lb_header *head;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000470
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700471 printk(BIOS_DEBUG, "Writing coreboot table at 0x%08lx\n",
Aaron Durbina4db0502016-04-19 21:38:18 -0500472 (long)rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000473
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000474 head = lb_table_init(rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000475
Julius Wernercd49cce2019-03-05 16:53:33 -0800476#if CONFIG(USE_OPTION_TABLE)
Stefan Reinauerba430642007-04-06 12:14:51 +0000477 {
Aaron Durbin899d13d2015-05-15 23:39:23 -0500478 struct cmos_option_table *option_table =
Julius Werner834b3ec2020-03-04 16:52:08 -0800479 cbfs_map("cmos_layout.bin", NULL);
Patrick Georgi24479372011-01-18 13:56:36 +0000480 if (option_table) {
481 struct lb_record *rec_dest = lb_new_record(head);
Lee Leahy73402172017-03-10 15:23:24 -0800482 /* Copy the option config table, it's already a
483 * lb_record...
484 */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000485 memcpy(rec_dest, option_table, option_table->size);
Elyes HAOUAS2119d0b2020-02-16 10:01:33 +0100486 /* Create CMOS checksum entry in coreboot table */
Nico Huber08599912015-09-21 20:11:47 +0200487 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000488 } else {
Lee Leahy73402172017-03-10 15:23:24 -0800489 printk(BIOS_ERR,
490 "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000491 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000492 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000493#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700494
Aaron Durbin4677f6b2018-04-03 00:08:12 -0600495 /* Serialize resource map into mem table types (LB_MEM_*) */
Aaron Durbin2d5cec62014-02-25 00:24:22 -0600496 bootmem_write_memory_table(lb_memory(head));
Eric Biederman8ca8d762003-04-22 19:02:15 +0000497
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000498 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000499 lb_mainboard(head);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200500
501 /* Record the serial ports and consoles */
Arthur Heymans32aabf22021-04-28 11:33:56 +0200502 if (CONFIG(CONSOLE_SERIAL))
Arthur Heymans9948c522022-10-24 14:37:40 +0200503 lb_add_serial(head);
Arthur Heymans32aabf22021-04-28 11:33:56 +0200504
505 if (CONFIG(CONSOLE_USB))
506 lb_add_console(LB_TAG_CONSOLE_EHCI, head);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200507
Jianjun Wangd16c2aa2022-03-31 15:34:34 +0800508 if (CONFIG(PCI))
509 lb_pcie(head);
510
Eric Biederman8ca8d762003-04-22 19:02:15 +0000511 /* Record our various random string information */
512 lb_strings(head);
Johnny Linb8899ef2020-05-28 14:04:58 +0800513 if (CONFIG(PLATFORM_USES_FSP2_0))
514 lb_string_platform_blob_version(head);
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200515 lb_record_version_timestamp(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000516 /* Record our framebuffer */
517 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000518
Stefan Reinauer31324c62012-04-05 21:22:02 +0200519 /* Record our GPIO settings (ChromeOS specific) */
Kyösti Mälkki2c626f32020-12-19 22:21:23 +0200520 if (CONFIG(CHROMEOS))
521 lb_gpios(head);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200522
Stefan Reinauer31324c62012-04-05 21:22:02 +0200523 /* pass along VBNV offsets in CMOS */
Kyösti Mälkki64120762021-02-02 23:28:03 +0200524 if (CONFIG(VBOOT_VBNV_CMOS))
525 lb_table_add_vbnv_cmos(head);
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700526
Bora Guvendikddf2bc52018-03-30 16:03:32 -0700527 /* Pass mmc early init status */
528 lb_mmc_info(head);
529
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800530 /* Add SPI flash description if available */
Julius Wernercd49cce2019-03-05 16:53:33 -0800531 if (CONFIG(BOOT_DEVICE_SPI_FLASH))
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500532 lb_spi_flash(head);
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800533
Vadim Bendebury22c04682011-10-03 14:58:57 -0700534 add_cbmem_pointers(head);
535
Patrick Rudolphbc744f52020-04-17 16:16:49 +0200536 /* SMMSTORE v2 */
537 if (CONFIG(SMMSTORE_V2))
538 lb_smmstorev2(head);
539
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700540 /* Add board-specific table entries, if any. */
541 lb_board(head);
542
Kyösti Mälkki2c626f32020-12-19 22:21:23 +0200543 if (CONFIG(CHROMEOS_RAMOOPS))
544 lb_ramoops(head);
Furquan Shaikhefb546d2014-11-08 17:34:27 -0800545
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100546 lb_boot_media_params(head);
547
Tim Wawrzynczake1a7a262020-10-09 17:07:45 -0600548 /* Board configuration information (including straps) */
549 lb_board_config(head);
550
Patrick Rudolph39d69272020-09-21 09:49:31 +0200551 if (CONFIG(TPM_PPI))
552 lb_tpm_ppi(head);
553
Aaron Durbinf6ada1c2016-02-10 10:52:47 -0600554 /* Add architecture records. */
555 lb_arch_add_records(head);
556
Aaron Durbin1ca2d862015-09-30 12:26:54 -0500557 /* Add all cbmem entries into the coreboot tables. */
558 cbmem_add_records_to_cbtable(head);
559
Arthur Heymans2e7e2d92022-03-03 22:28:27 +0100560 if (CONFIG(HAVE_ACPI_TABLES))
561 lb_add_acpi_rsdp(head);
562
Eric Biederman8ca8d762003-04-22 19:02:15 +0000563 /* Remember where my valid memory ranges are */
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500564 return lb_table_fini(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000565}
Aaron Durbina4db0502016-04-19 21:38:18 -0500566
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700567void *write_tables(void)
Aaron Durbina4db0502016-04-19 21:38:18 -0500568{
569 uintptr_t cbtable_start;
570 uintptr_t cbtable_end;
571 size_t cbtable_size;
Aaron Durbina6e90512016-04-21 14:06:17 -0500572 const size_t max_table_size = COREBOOT_TABLE_SIZE;
Aaron Durbina4db0502016-04-19 21:38:18 -0500573
574 cbtable_start = (uintptr_t)cbmem_add(CBMEM_ID_CBTABLE, max_table_size);
575
576 if (!cbtable_start) {
577 printk(BIOS_ERR, "Could not add CBMEM for coreboot table.\n");
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700578 return NULL;
Aaron Durbina4db0502016-04-19 21:38:18 -0500579 }
580
581 /* Add architecture specific tables. */
582 arch_write_tables(cbtable_start);
583
584 /* Write the coreboot table. */
585 cbtable_end = write_coreboot_table(cbtable_start);
586 cbtable_size = cbtable_end - cbtable_start;
587
588 if (cbtable_size > max_table_size) {
589 printk(BIOS_ERR, "%s: coreboot table didn't fit (%zx/%zx)\n",
590 __func__, cbtable_size, max_table_size);
591 }
592
593 printk(BIOS_DEBUG, "coreboot table: %zd bytes.\n", cbtable_size);
594
595 /* Print CBMEM sections */
596 cbmem_list();
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700597 return (void *)cbtable_start;
Aaron Durbina4db0502016-04-19 21:38:18 -0500598}