blob: 698118c75a838a9237bd8f8aa8a9171937c223f3 [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>
Eric Biederman8ca8d762003-04-22 19:02:15 +00007#include <ip_checksum.h>
Stefan Reinauerca374d42008-01-18 16:16:45 +00008#include <boot/coreboot_tables.h>
Aaron Durbin5481c962016-04-19 20:37:51 -05009#include <boot/tables.h>
Patrick Georgifb5d5b12015-07-14 17:15:51 +010010#include <boot_device.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000011#include <string.h>
12#include <version.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>
Eric Biedermanb78c1972004-10-14 20:54:17 +000018#include <stdlib.h>
Duncan Laurie66ecdc52011-08-15 16:35:10 -070019#include <cbfs.h>
Vadim Bendebury2e438672011-09-23 09:56:11 -070020#include <cbmem.h>
Aaron Durbin49048022014-02-18 21:55:02 -060021#include <bootmem.h>
Johanna Schanderc544a852019-07-28 09:28:33 +020022#include <bootsplash.h>
Julius Werner09728712021-03-31 18:30:29 -070023#include <inttypes.h>
Dan Ehrenberga5aac762015-01-08 10:29:19 -080024#include <spi_flash.h>
Patrick Rudolphbc744f52020-04-17 16:16:49 +020025#include <smmstore.h>
26
Julius Wernercd49cce2019-03-05 16:53:33 -080027#if CONFIG(USE_OPTION_TABLE)
Nico Huber08599912015-09-21 20:11:47 +020028#include <option_table.h>
29#endif
Johnny Linb8899ef2020-05-28 14:04:58 +080030#if CONFIG(PLATFORM_USES_FSP2_0)
31#include <fsp/util.h>
32#else
33void lb_string_platform_blob_version(struct lb_header *header);
34#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000035
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000036static struct lb_header *lb_table_init(unsigned long addr)
Eric Biederman8ca8d762003-04-22 19:02:15 +000037{
38 struct lb_header *header;
39
Arthur Heymansf509b612022-04-19 12:05:28 +020040 addr = ALIGN_UP(addr, 16);
Eric Biederman8ca8d762003-04-22 19:02:15 +000041
42 header = (void *)addr;
43 header->signature[0] = 'L';
44 header->signature[1] = 'B';
45 header->signature[2] = 'I';
46 header->signature[3] = 'O';
47 header->header_bytes = sizeof(*header);
48 header->header_checksum = 0;
49 header->table_bytes = 0;
50 header->table_checksum = 0;
51 header->table_entries = 0;
52 return header;
53}
54
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000055static struct lb_record *lb_first_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000056{
57 struct lb_record *rec;
58 rec = (void *)(((char *)header) + sizeof(*header));
59 return rec;
60}
61
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000062static struct lb_record *lb_last_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000063{
64 struct lb_record *rec;
Lee Leahy73402172017-03-10 15:23:24 -080065 rec = (void *)(((char *)header) + sizeof(*header)
66 + header->table_bytes);
Eric Biederman8ca8d762003-04-22 19:02:15 +000067 return rec;
68}
69
Julius Wernerb8fad3d2013-08-27 15:48:32 -070070struct lb_record *lb_new_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000071{
72 struct lb_record *rec;
73 rec = lb_last_record(header);
Lee Leahy2f919ec2017-03-08 17:37:06 -080074 if (header->table_entries)
Eric Biederman8ca8d762003-04-22 19:02:15 +000075 header->table_bytes += rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +000076 rec = lb_last_record(header);
77 header->table_entries++;
78 rec->tag = LB_TAG_UNUSED;
79 rec->size = sizeof(*rec);
80 return rec;
81}
82
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000083static struct lb_memory *lb_memory(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000084{
85 struct lb_record *rec;
86 struct lb_memory *mem;
87 rec = lb_new_record(header);
88 mem = (struct lb_memory *)rec;
89 mem->tag = LB_TAG_MEMORY;
90 mem->size = sizeof(*mem);
91 return mem;
92}
93
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +020094void lb_add_serial(struct lb_serial *new_serial, void *data)
Patrick Georgi8c2a0c12008-01-25 18:28:18 +000095{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +020096 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +000097 struct lb_serial *serial;
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +020098
99 serial = (struct lb_serial *)lb_new_record(header);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000100 serial->tag = LB_TAG_SERIAL;
101 serial->size = sizeof(*serial);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200102 serial->type = new_serial->type;
103 serial->baseaddr = new_serial->baseaddr;
104 serial->baud = new_serial->baud;
Vadim Bendebury9dccf1c2015-01-09 16:54:19 -0800105 serial->regwidth = new_serial->regwidth;
Lee Leahyf92a98c2016-05-04 11:59:19 -0700106 serial->input_hertz = new_serial->input_hertz;
107 serial->uart_pci_addr = new_serial->uart_pci_addr;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000108}
109
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200110void lb_add_console(uint16_t consoletype, void *data)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000111{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200112 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000113 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000114
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000115 console = (struct lb_console *)lb_new_record(header);
116 console->tag = LB_TAG_CONSOLE;
117 console->size = sizeof(*console);
118 console->type = consoletype;
119}
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000120
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500121static void lb_framebuffer(struct lb_header *header)
122{
Stefan Reinauerd650e992010-02-22 04:33:13 +0000123 struct lb_framebuffer *framebuffer;
Duncan Laurie13bc5e52017-06-26 01:50:14 -0700124 struct lb_framebuffer fb = {0};
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500125
Julius Wernercd49cce2019-03-05 16:53:33 -0800126 if (!CONFIG(LINEAR_FRAMEBUFFER) || fill_lb_framebuffer(&fb))
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500127 return;
128
Stefan Reinauerd650e992010-02-22 04:33:13 +0000129 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500130 memcpy(framebuffer, &fb, sizeof(*framebuffer));
Stefan Reinauerd650e992010-02-22 04:33:13 +0000131 framebuffer->tag = LB_TAG_FRAMEBUFFER;
132 framebuffer->size = sizeof(*framebuffer);
Johanna Schanderc544a852019-07-28 09:28:33 +0200133
134 if (CONFIG(BOOTSPLASH)) {
135 uint8_t *fb_ptr = (uint8_t *)(uintptr_t)framebuffer->physical_address;
136 unsigned int width = framebuffer->x_resolution;
137 unsigned int height = framebuffer->y_resolution;
138 unsigned int depth = framebuffer->bits_per_pixel;
139 set_bootsplash(fb_ptr, width, height, depth);
140 }
Stefan Reinauerd650e992010-02-22 04:33:13 +0000141}
142
Julius Wernerc445b4f2016-03-31 17:27:05 -0700143void lb_add_gpios(struct lb_gpios *gpios, const struct lb_gpio *gpio_table,
144 size_t count)
Kyösti Mälkki65784752013-12-22 03:12:38 +0200145{
Julius Wernerc445b4f2016-03-31 17:27:05 -0700146 size_t table_size = count * sizeof(struct lb_gpio);
147
148 memcpy(&gpios->gpios[gpios->count], gpio_table, table_size);
149 gpios->count += count;
150 gpios->size += table_size;
Kyösti Mälkki65784752013-12-22 03:12:38 +0200151}
152
Stefan Reinauer31324c62012-04-05 21:22:02 +0200153static void lb_gpios(struct lb_header *header)
154{
155 struct lb_gpios *gpios;
Julius Wernerc445b4f2016-03-31 17:27:05 -0700156 struct lb_gpio *g;
Vadim Bendebury274ef412014-09-22 18:48:41 -0700157
Stefan Reinauer31324c62012-04-05 21:22:02 +0200158 gpios = (struct lb_gpios *)lb_new_record(header);
159 gpios->tag = LB_TAG_GPIO;
160 gpios->size = sizeof(*gpios);
161 gpios->count = 0;
162 fill_lb_gpios(gpios);
Julius Wernerc445b4f2016-03-31 17:27:05 -0700163
164 printk(BIOS_INFO, "Passing %u GPIOs to payload:\n"
165 " NAME | PORT | POLARITY | VALUE\n",
166 gpios->count);
167 for (g = &gpios->gpios[0]; g < &gpios->gpios[gpios->count]; g++) {
Julius Wernere0f058f2021-01-15 17:48:11 -0800168 printk(BIOS_INFO, "%16.16s | ", g->name);
Julius Wernerc445b4f2016-03-31 17:27:05 -0700169 if (g->port == -1)
170 printk(BIOS_INFO, " undefined | ");
171 else
172 printk(BIOS_INFO, "%#.8x | ", g->port);
173 if (g->polarity == ACTIVE_HIGH)
174 printk(BIOS_INFO, " high | ");
175 else
176 printk(BIOS_INFO, " low | ");
177 switch (g->value) {
178 case 0:
Julius Wernerdc5d24c2018-03-07 13:06:53 -0800179 printk(BIOS_INFO, " low\n");
Julius Wernerc445b4f2016-03-31 17:27:05 -0700180 break;
181 case 1:
Julius Wernerdc5d24c2018-03-07 13:06:53 -0800182 printk(BIOS_INFO, " high\n");
Julius Wernerc445b4f2016-03-31 17:27:05 -0700183 break;
184 default:
185 printk(BIOS_INFO, "undefined\n");
186 break;
187 }
188 }
Stefan Reinauer31324c62012-04-05 21:22:02 +0200189}
190
Aaron Durbin64031672018-04-21 14:45:32 -0600191__weak uint32_t board_id(void) { return UNDEFINED_STRAPPING_ID; }
192__weak uint32_t ram_code(void) { return UNDEFINED_STRAPPING_ID; }
193__weak uint32_t sku_id(void) { return UNDEFINED_STRAPPING_ID; }
Tim Wawrzynczake1a7a262020-10-09 17:07:45 -0600194__weak uint64_t fw_config_get(void) { return UNDEFINED_FW_CONFIG; }
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700195
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100196static void lb_boot_media_params(struct lb_header *header)
197{
198 struct lb_boot_media_params *bmp;
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100199 const struct region_device *boot_dev;
Julius Werner1e37c9c2019-12-11 17:09:39 -0800200 const struct cbfs_boot_device *cbd = cbfs_get_boot_device(false);
201 if (!cbd)
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100202 return;
203
204 boot_dev = boot_device_ro();
205 if (boot_dev == NULL)
206 return;
207
208 bmp = (struct lb_boot_media_params *)lb_new_record(header);
209 bmp->tag = LB_TAG_BOOT_MEDIA_PARAMS;
210 bmp->size = sizeof(*bmp);
211
Julius Werner1e37c9c2019-12-11 17:09:39 -0800212 bmp->cbfs_offset = region_device_offset(&cbd->rdev);
213 bmp->cbfs_size = region_device_sz(&cbd->rdev);
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100214 bmp->boot_media_size = region_device_sz(boot_dev);
215
Furquan Shaikhb33a2b02019-09-26 23:51:46 -0700216 bmp->fmap_offset = get_fmap_flash_offset();
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100217}
218
Bora Guvendikddf2bc52018-03-30 16:03:32 -0700219static void lb_mmc_info(struct lb_header *header)
220{
221 struct lb_mmc_info *rec;
222 int32_t *ms_cbmem;
223
224 ms_cbmem = cbmem_find(CBMEM_ID_MMC_STATUS);
225 if (!ms_cbmem)
226 return;
227
228 rec = (struct lb_mmc_info *)lb_new_record(header);
229
230 rec->tag = LB_TAG_MMC_INFO;
231 rec->size = sizeof(*rec);
232 rec->early_cmd1_status = *ms_cbmem;
233}
234
Vadim Bendebury22c04682011-10-03 14:58:57 -0700235static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700236{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700237 /*
238 * These CBMEM sections' addresses are included in the coreboot table
239 * with the appropriate tags.
240 */
241 const struct section_id {
242 int cbmem_id;
243 int table_tag;
244 } section_ids[] = {
245 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
Duncan Laurie16e899b2013-12-12 10:43:21 -0800246 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE},
247 {CBMEM_ID_ACPI_GNVS, LB_TAG_ACPI_GNVS},
Furquan Shaikhbda86bd2021-06-17 22:14:13 -0700248 {CBMEM_ID_ACPI_CNVS, LB_TAG_ACPI_CNVS},
Hung-Te Linb15a0d02015-07-13 15:49:57 +0800249 {CBMEM_ID_VPD, LB_TAG_VPD},
Philipp Deppenwiesefa1f6ff2018-05-13 12:42:42 +0200250 {CBMEM_ID_WIFI_CALIBRATION, LB_TAG_WIFI_CALIBRATION},
Patrick Rudolph6d787c22019-09-12 13:21:37 +0200251 {CBMEM_ID_TCPA_LOG, LB_TAG_TCPA_LOG},
252 {CBMEM_ID_FMAP, LB_TAG_FMAP},
Yu-Ping Wu63b97002019-11-26 13:31:32 +0800253 {CBMEM_ID_VBOOT_WORKBUF, LB_TAG_VBOOT_WORKBUF},
Nick Vaccaroa62b4182021-10-01 13:12:59 -0700254 {CBMEM_ID_TYPE_C_INFO, LB_TAG_TYPE_C_INFO},
Vadim Bendebury22c04682011-10-03 14:58:57 -0700255 };
256 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700257
Vadim Bendebury22c04682011-10-03 14:58:57 -0700258 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
259 const struct section_id *sid = section_ids + i;
260 struct lb_cbmem_ref *cbmem_ref;
261 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700262
Vadim Bendebury22c04682011-10-03 14:58:57 -0700263 if (!cbmem_addr)
264 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700265
Vadim Bendebury22c04682011-10-03 14:58:57 -0700266 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
267 if (!cbmem_ref) {
268 printk(BIOS_ERR, "No more room in coreboot table!\n");
269 break;
270 }
271 cbmem_ref->tag = sid->table_tag;
272 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800273 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700274 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700275}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700276
Stefan Reinauere3778572010-01-30 09:47:18 +0000277static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000278{
279 struct lb_record *rec;
280 struct lb_mainboard *mainboard;
281 rec = lb_new_record(header);
282 mainboard = (struct lb_mainboard *)rec;
283 mainboard->tag = LB_TAG_MAINBOARD;
284
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800285 mainboard->size = ALIGN_UP(sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000286 strlen(mainboard_vendor) + 1 +
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800287 strlen(mainboard_part_number) + 1, 8);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000288
289 mainboard->vendor_idx = 0;
290 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
291
292 memcpy(mainboard->strings + mainboard->vendor_idx,
293 mainboard_vendor, strlen(mainboard_vendor) + 1);
294 memcpy(mainboard->strings + mainboard->part_number_idx,
295 mainboard_part_number, strlen(mainboard_part_number) + 1);
296
297 return mainboard;
298}
299
Tim Wawrzynczake1a7a262020-10-09 17:07:45 -0600300static struct lb_board_config *lb_board_config(struct lb_header *header)
301{
302 struct lb_record *rec;
303 struct lb_board_config *config;
304 rec = lb_new_record(header);
305 config = (struct lb_board_config *)rec;
306
307 config->tag = LB_TAG_BOARD_CONFIG;
308 config->size = sizeof(*config);
309
Julius Werner09728712021-03-31 18:30:29 -0700310 const uint64_t fw_config = fw_config_get();
Tim Wawrzynczake1a7a262020-10-09 17:07:45 -0600311 config->board_id = board_id();
312 config->ram_code = ram_code();
313 config->sku_id = sku_id();
Jianjun Wangb2537bd2022-04-08 16:57:28 +0800314 config->fw_config = fw_config;
Julius Werner09728712021-03-31 18:30:29 -0700315
316 if (config->board_id != UNDEFINED_STRAPPING_ID)
317 printk(BIOS_INFO, "Board ID: %d\n", config->board_id);
318 if (config->ram_code != UNDEFINED_STRAPPING_ID)
319 printk(BIOS_INFO, "RAM code: %d\n", config->ram_code);
320 if (config->sku_id != UNDEFINED_STRAPPING_ID)
321 printk(BIOS_INFO, "SKU ID: %d\n", config->sku_id);
322 if (fw_config != UNDEFINED_FW_CONFIG)
323 printk(BIOS_INFO, "FW config: %#" PRIx64 "\n", fw_config);
Tim Wawrzynczake1a7a262020-10-09 17:07:45 -0600324
325 return config;
326}
327
Julius Wernercd49cce2019-03-05 16:53:33 -0800328#if CONFIG(USE_OPTION_TABLE)
Nico Huber08599912015-09-21 20:11:47 +0200329static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
330{
331 struct lb_record *rec;
332 struct cmos_checksum *cmos_checksum;
333 rec = lb_new_record(header);
334 cmos_checksum = (struct cmos_checksum *)rec;
335 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
336
337 cmos_checksum->size = (sizeof(*cmos_checksum));
338
339 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
Lee Leahyd638ef42017-03-07 09:47:22 -0800340 cmos_checksum->range_end = (LB_CKS_RANGE_END * 8) + 7;
Nico Huber08599912015-09-21 20:11:47 +0200341 cmos_checksum->location = LB_CKS_LOC * 8;
342 cmos_checksum->type = CHECKSUM_PCBIOS;
343
344 return cmos_checksum;
345}
346#endif
347
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000348static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000349{
350 static const struct {
351 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000352 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000353 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000354 { LB_TAG_VERSION, coreboot_version, },
355 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
356 { LB_TAG_BUILD, coreboot_build, },
357 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000358 };
Eric Biederman52685572003-05-19 19:16:21 +0000359 unsigned int i;
Lee Leahy45fde702017-03-08 18:02:24 -0800360 for (i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000361 struct lb_string *rec;
362 size_t len;
363 rec = (struct lb_string *)lb_new_record(header);
364 len = strlen(strings[i].string);
365 rec->tag = strings[i].tag;
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800366 rec->size = ALIGN_UP(sizeof(*rec) + len + 1, 8);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000367 memcpy(rec->string, strings[i].string, len+1);
368 }
369
370}
371
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200372static void lb_record_version_timestamp(struct lb_header *header)
373{
374 struct lb_timestamp *rec;
375 rec = (struct lb_timestamp *)lb_new_record(header);
376 rec->tag = LB_TAG_VERSION_TIMESTAMP;
377 rec->size = sizeof(*rec);
378 rec->timestamp = coreboot_version_timestamp;
379}
380
Aaron Durbin64031672018-04-21 14:45:32 -0600381void __weak lb_board(struct lb_header *header) { /* NOOP */ }
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700382
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500383/*
384 * It's possible that the system is using a SPI flash as the boot device,
385 * however it is not probing for devices to fill in specifics. In that
386 * case don't provide any information as the correct information is
387 * not known.
388 */
Aaron Durbin64031672018-04-21 14:45:32 -0600389void __weak lb_spi_flash(struct lb_header *header) { /* NOOP */ }
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500390
Lee Leahy73402172017-03-10 15:23:24 -0800391static struct lb_forward *lb_forward(struct lb_header *header,
392 struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000393{
394 struct lb_record *rec;
395 struct lb_forward *forward;
396 rec = lb_new_record(header);
397 forward = (struct lb_forward *)rec;
398 forward->tag = LB_TAG_FORWARD;
399 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000400 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000401 return forward;
402}
403
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500404static unsigned long lb_table_fini(struct lb_header *head)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000405{
406 struct lb_record *rec, *first_rec;
407 rec = lb_last_record(head);
Lee Leahy2f919ec2017-03-08 17:37:06 -0800408 if (head->table_entries)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000409 head->table_bytes += rec->size;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000410
Eric Biederman8ca8d762003-04-22 19:02:15 +0000411 first_rec = lb_first_record(head);
Lee Leahy73402172017-03-10 15:23:24 -0800412 head->table_checksum = compute_ip_checksum(first_rec,
413 head->table_bytes);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000414 head->header_checksum = 0;
415 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700416 printk(BIOS_DEBUG,
417 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
418 head, head->table_bytes, head->table_checksum);
419 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000420}
421
Arthur Heymans2e7e2d92022-03-03 22:28:27 +0100422static void lb_add_acpi_rsdp(struct lb_header *head)
423{
424 struct lb_acpi_rsdp *acpi_rsdp;
425 struct lb_record *rec = lb_new_record(head);
426 acpi_rsdp = (struct lb_acpi_rsdp *)rec;
427 acpi_rsdp->tag = LB_TAG_ACPI_RSDP;
428 acpi_rsdp->size = sizeof(*acpi_rsdp);
Jianjun Wangb2537bd2022-04-08 16:57:28 +0800429 acpi_rsdp->rsdp_pointer = get_coreboot_rsdp();
Arthur Heymans2e7e2d92022-03-03 22:28:27 +0100430}
431
Aaron Durbin8984af82016-04-19 17:06:09 -0500432size_t write_coreboot_forwarding_table(uintptr_t entry, uintptr_t target)
433{
434 struct lb_header *head;
435
Julius Werner540a9802019-12-09 13:03:29 -0800436 printk(BIOS_DEBUG, "Writing table forward entry at %p\n",
Aaron Durbin8984af82016-04-19 17:06:09 -0500437 (void *)entry);
438
439 head = lb_table_init(entry);
Lee Leahyb2d834a2017-03-08 16:52:22 -0800440 lb_forward(head, (struct lb_header *)target);
Aaron Durbin8984af82016-04-19 17:06:09 -0500441
442 return (uintptr_t)lb_table_fini(head) - entry;
443}
444
Aaron Durbina4db0502016-04-19 21:38:18 -0500445static uintptr_t write_coreboot_table(uintptr_t rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000446{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000447 struct lb_header *head;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000448
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700449 printk(BIOS_DEBUG, "Writing coreboot table at 0x%08lx\n",
Aaron Durbina4db0502016-04-19 21:38:18 -0500450 (long)rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000451
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000452 head = lb_table_init(rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000453
Julius Wernercd49cce2019-03-05 16:53:33 -0800454#if CONFIG(USE_OPTION_TABLE)
Stefan Reinauerba430642007-04-06 12:14:51 +0000455 {
Aaron Durbin899d13d2015-05-15 23:39:23 -0500456 struct cmos_option_table *option_table =
Julius Werner834b3ec2020-03-04 16:52:08 -0800457 cbfs_map("cmos_layout.bin", NULL);
Patrick Georgi24479372011-01-18 13:56:36 +0000458 if (option_table) {
459 struct lb_record *rec_dest = lb_new_record(head);
Lee Leahy73402172017-03-10 15:23:24 -0800460 /* Copy the option config table, it's already a
461 * lb_record...
462 */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000463 memcpy(rec_dest, option_table, option_table->size);
Elyes HAOUAS2119d0b2020-02-16 10:01:33 +0100464 /* Create CMOS checksum entry in coreboot table */
Nico Huber08599912015-09-21 20:11:47 +0200465 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000466 } else {
Lee Leahy73402172017-03-10 15:23:24 -0800467 printk(BIOS_ERR,
468 "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000469 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000470 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000471#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700472
Aaron Durbin4677f6b2018-04-03 00:08:12 -0600473 /* Serialize resource map into mem table types (LB_MEM_*) */
Aaron Durbin2d5cec62014-02-25 00:24:22 -0600474 bootmem_write_memory_table(lb_memory(head));
Eric Biederman8ca8d762003-04-22 19:02:15 +0000475
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000476 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000477 lb_mainboard(head);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200478
479 /* Record the serial ports and consoles */
Arthur Heymans32aabf22021-04-28 11:33:56 +0200480 if (CONFIG(CONSOLE_SERIAL))
481 uart_fill_lb(head);
482
483 if (CONFIG(CONSOLE_USB))
484 lb_add_console(LB_TAG_CONSOLE_EHCI, head);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200485
Eric Biederman8ca8d762003-04-22 19:02:15 +0000486 /* Record our various random string information */
487 lb_strings(head);
Johnny Linb8899ef2020-05-28 14:04:58 +0800488 if (CONFIG(PLATFORM_USES_FSP2_0))
489 lb_string_platform_blob_version(head);
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200490 lb_record_version_timestamp(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000491 /* Record our framebuffer */
492 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000493
Stefan Reinauer31324c62012-04-05 21:22:02 +0200494 /* Record our GPIO settings (ChromeOS specific) */
Kyösti Mälkki2c626f32020-12-19 22:21:23 +0200495 if (CONFIG(CHROMEOS))
496 lb_gpios(head);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200497
Stefan Reinauer31324c62012-04-05 21:22:02 +0200498 /* pass along VBNV offsets in CMOS */
Kyösti Mälkki64120762021-02-02 23:28:03 +0200499 if (CONFIG(VBOOT_VBNV_CMOS))
500 lb_table_add_vbnv_cmos(head);
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700501
Bora Guvendikddf2bc52018-03-30 16:03:32 -0700502 /* Pass mmc early init status */
503 lb_mmc_info(head);
504
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800505 /* Add SPI flash description if available */
Julius Wernercd49cce2019-03-05 16:53:33 -0800506 if (CONFIG(BOOT_DEVICE_SPI_FLASH))
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500507 lb_spi_flash(head);
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800508
Vadim Bendebury22c04682011-10-03 14:58:57 -0700509 add_cbmem_pointers(head);
510
Patrick Rudolphbc744f52020-04-17 16:16:49 +0200511 /* SMMSTORE v2 */
512 if (CONFIG(SMMSTORE_V2))
513 lb_smmstorev2(head);
514
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700515 /* Add board-specific table entries, if any. */
516 lb_board(head);
517
Kyösti Mälkki2c626f32020-12-19 22:21:23 +0200518 if (CONFIG(CHROMEOS_RAMOOPS))
519 lb_ramoops(head);
Furquan Shaikhefb546d2014-11-08 17:34:27 -0800520
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100521 lb_boot_media_params(head);
522
Tim Wawrzynczake1a7a262020-10-09 17:07:45 -0600523 /* Board configuration information (including straps) */
524 lb_board_config(head);
525
Patrick Rudolph39d69272020-09-21 09:49:31 +0200526 if (CONFIG(TPM_PPI))
527 lb_tpm_ppi(head);
528
Aaron Durbinf6ada1c2016-02-10 10:52:47 -0600529 /* Add architecture records. */
530 lb_arch_add_records(head);
531
Aaron Durbin1ca2d862015-09-30 12:26:54 -0500532 /* Add all cbmem entries into the coreboot tables. */
533 cbmem_add_records_to_cbtable(head);
534
Arthur Heymans2e7e2d92022-03-03 22:28:27 +0100535 if (CONFIG(HAVE_ACPI_TABLES))
536 lb_add_acpi_rsdp(head);
537
Eric Biederman8ca8d762003-04-22 19:02:15 +0000538 /* Remember where my valid memory ranges are */
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500539 return lb_table_fini(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000540}
Aaron Durbina4db0502016-04-19 21:38:18 -0500541
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700542void *write_tables(void)
Aaron Durbina4db0502016-04-19 21:38:18 -0500543{
544 uintptr_t cbtable_start;
545 uintptr_t cbtable_end;
546 size_t cbtable_size;
Aaron Durbina6e90512016-04-21 14:06:17 -0500547 const size_t max_table_size = COREBOOT_TABLE_SIZE;
Aaron Durbina4db0502016-04-19 21:38:18 -0500548
549 cbtable_start = (uintptr_t)cbmem_add(CBMEM_ID_CBTABLE, max_table_size);
550
551 if (!cbtable_start) {
552 printk(BIOS_ERR, "Could not add CBMEM for coreboot table.\n");
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700553 return NULL;
Aaron Durbina4db0502016-04-19 21:38:18 -0500554 }
555
556 /* Add architecture specific tables. */
557 arch_write_tables(cbtable_start);
558
559 /* Write the coreboot table. */
560 cbtable_end = write_coreboot_table(cbtable_start);
561 cbtable_size = cbtable_end - cbtable_start;
562
563 if (cbtable_size > max_table_size) {
564 printk(BIOS_ERR, "%s: coreboot table didn't fit (%zx/%zx)\n",
565 __func__, cbtable_size, max_table_size);
566 }
567
568 printk(BIOS_DEBUG, "coreboot table: %zd bytes.\n", cbtable_size);
569
570 /* Print CBMEM sections */
571 cbmem_list();
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700572 return (void *)cbtable_start;
Aaron Durbina4db0502016-04-19 21:38:18 -0500573}