blob: 9e0d589250813b037c0fd4a42586a4222097365b [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
Aaron Durbina6e90512016-04-21 14:06:17 -05003#include <arch/cbconfig.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +00004#include <console/console.h>
Kyösti Mälkki1d7541f2014-02-17 21:34:42 +02005#include <console/uart.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +00006#include <ip_checksum.h>
Stefan Reinauerca374d42008-01-18 16:16:45 +00007#include <boot/coreboot_tables.h>
Aaron Durbin5481c962016-04-19 20:37:51 -05008#include <boot/tables.h>
Patrick Georgifb5d5b12015-07-14 17:15:51 +01009#include <boot_device.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000010#include <string.h>
11#include <version.h>
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -070012#include <boardid.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000013#include <device/device.h>
Patrick Rudolph39d69272020-09-21 09:49:31 +020014#include <drivers/tpm/tpm_ppi.h>
Patrick Georgifb5d5b12015-07-14 17:15:51 +010015#include <fmap.h>
Tim Wawrzynczake1a7a262020-10-09 17:07:45 -060016#include <fw_config.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000017#include <stdlib.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>
Dan Ehrenberga5aac762015-01-08 10:29:19 -080022#include <spi_flash.h>
Joel Kitching8d0f5992019-03-13 18:10:52 +080023#include <security/vboot/misc.h>
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020024#include <security/vboot/vbnv_layout.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
Julius Wernercd49cce2019-03-05 16:53:33 -080030#if CONFIG(CHROMEOS)
31#if CONFIG(HAVE_ACPI_TABLES)
Furquan Shaikh76cedd22020-05-02 10:24:23 -070032#include <acpi/acpi.h>
Stefan Reinauer3e4e3032013-03-20 14:08:04 -070033#endif
Aaron Durbindd32a312013-03-07 23:15:06 -060034#include <vendorcode/google/chromeos/chromeos.h>
Stefan Reinauer0e672b52012-04-27 00:34:54 +020035#include <vendorcode/google/chromeos/gnvs.h>
36#endif
Johnny Linb8899ef2020-05-28 14:04:58 +080037#if CONFIG(PLATFORM_USES_FSP2_0)
38#include <fsp/util.h>
39#else
40void lb_string_platform_blob_version(struct lb_header *header);
41#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000042
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000043static struct lb_header *lb_table_init(unsigned long addr)
Eric Biederman8ca8d762003-04-22 19:02:15 +000044{
45 struct lb_header *header;
46
47 /* 16 byte align the address */
48 addr += 15;
49 addr &= ~15;
50
51 header = (void *)addr;
52 header->signature[0] = 'L';
53 header->signature[1] = 'B';
54 header->signature[2] = 'I';
55 header->signature[3] = 'O';
56 header->header_bytes = sizeof(*header);
57 header->header_checksum = 0;
58 header->table_bytes = 0;
59 header->table_checksum = 0;
60 header->table_entries = 0;
61 return header;
62}
63
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000064static struct lb_record *lb_first_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000065{
66 struct lb_record *rec;
67 rec = (void *)(((char *)header) + sizeof(*header));
68 return rec;
69}
70
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000071static struct lb_record *lb_last_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000072{
73 struct lb_record *rec;
Lee Leahy73402172017-03-10 15:23:24 -080074 rec = (void *)(((char *)header) + sizeof(*header)
75 + header->table_bytes);
Eric Biederman8ca8d762003-04-22 19:02:15 +000076 return rec;
77}
78
Julius Wernerb8fad3d2013-08-27 15:48:32 -070079struct lb_record *lb_new_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000080{
81 struct lb_record *rec;
82 rec = lb_last_record(header);
Lee Leahy2f919ec2017-03-08 17:37:06 -080083 if (header->table_entries)
Eric Biederman8ca8d762003-04-22 19:02:15 +000084 header->table_bytes += rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +000085 rec = lb_last_record(header);
86 header->table_entries++;
87 rec->tag = LB_TAG_UNUSED;
88 rec->size = sizeof(*rec);
89 return rec;
90}
91
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000092static struct lb_memory *lb_memory(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000093{
94 struct lb_record *rec;
95 struct lb_memory *mem;
96 rec = lb_new_record(header);
97 mem = (struct lb_memory *)rec;
98 mem->tag = LB_TAG_MEMORY;
99 mem->size = sizeof(*mem);
100 return mem;
101}
102
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200103void lb_add_serial(struct lb_serial *new_serial, void *data)
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000104{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200105 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000106 struct lb_serial *serial;
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200107
108 serial = (struct lb_serial *)lb_new_record(header);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000109 serial->tag = LB_TAG_SERIAL;
110 serial->size = sizeof(*serial);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200111 serial->type = new_serial->type;
112 serial->baseaddr = new_serial->baseaddr;
113 serial->baud = new_serial->baud;
Vadim Bendebury9dccf1c2015-01-09 16:54:19 -0800114 serial->regwidth = new_serial->regwidth;
Lee Leahyf92a98c2016-05-04 11:59:19 -0700115 serial->input_hertz = new_serial->input_hertz;
116 serial->uart_pci_addr = new_serial->uart_pci_addr;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000117}
118
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200119void lb_add_console(uint16_t consoletype, void *data)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000120{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200121 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000122 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000123
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000124 console = (struct lb_console *)lb_new_record(header);
125 console->tag = LB_TAG_CONSOLE;
126 console->size = sizeof(*console);
127 console->type = consoletype;
128}
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000129
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500130static void lb_framebuffer(struct lb_header *header)
131{
Stefan Reinauerd650e992010-02-22 04:33:13 +0000132 struct lb_framebuffer *framebuffer;
Duncan Laurie13bc5e52017-06-26 01:50:14 -0700133 struct lb_framebuffer fb = {0};
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500134
Julius Wernercd49cce2019-03-05 16:53:33 -0800135 if (!CONFIG(LINEAR_FRAMEBUFFER) || fill_lb_framebuffer(&fb))
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500136 return;
137
Stefan Reinauerd650e992010-02-22 04:33:13 +0000138 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500139 memcpy(framebuffer, &fb, sizeof(*framebuffer));
Stefan Reinauerd650e992010-02-22 04:33:13 +0000140 framebuffer->tag = LB_TAG_FRAMEBUFFER;
141 framebuffer->size = sizeof(*framebuffer);
Johanna Schanderc544a852019-07-28 09:28:33 +0200142
143 if (CONFIG(BOOTSPLASH)) {
144 uint8_t *fb_ptr = (uint8_t *)(uintptr_t)framebuffer->physical_address;
145 unsigned int width = framebuffer->x_resolution;
146 unsigned int height = framebuffer->y_resolution;
147 unsigned int depth = framebuffer->bits_per_pixel;
148 set_bootsplash(fb_ptr, width, height, depth);
149 }
Stefan Reinauerd650e992010-02-22 04:33:13 +0000150}
151
Julius Wernerc445b4f2016-03-31 17:27:05 -0700152void lb_add_gpios(struct lb_gpios *gpios, const struct lb_gpio *gpio_table,
153 size_t count)
Kyösti Mälkki65784752013-12-22 03:12:38 +0200154{
Julius Wernerc445b4f2016-03-31 17:27:05 -0700155 size_t table_size = count * sizeof(struct lb_gpio);
156
157 memcpy(&gpios->gpios[gpios->count], gpio_table, table_size);
158 gpios->count += count;
159 gpios->size += table_size;
Kyösti Mälkki65784752013-12-22 03:12:38 +0200160}
161
Julius Wernercd49cce2019-03-05 16:53:33 -0800162#if CONFIG(CHROMEOS)
Stefan Reinauer31324c62012-04-05 21:22:02 +0200163static void lb_gpios(struct lb_header *header)
164{
165 struct lb_gpios *gpios;
Julius Wernerc445b4f2016-03-31 17:27:05 -0700166 struct lb_gpio *g;
Vadim Bendebury274ef412014-09-22 18:48:41 -0700167
Stefan Reinauer31324c62012-04-05 21:22:02 +0200168 gpios = (struct lb_gpios *)lb_new_record(header);
169 gpios->tag = LB_TAG_GPIO;
170 gpios->size = sizeof(*gpios);
171 gpios->count = 0;
172 fill_lb_gpios(gpios);
Julius Wernerc445b4f2016-03-31 17:27:05 -0700173
174 printk(BIOS_INFO, "Passing %u GPIOs to payload:\n"
175 " NAME | PORT | POLARITY | VALUE\n",
176 gpios->count);
177 for (g = &gpios->gpios[0]; g < &gpios->gpios[gpios->count]; g++) {
178 printk(BIOS_INFO, "%16s | ", g->name);
179 if (g->port == -1)
180 printk(BIOS_INFO, " undefined | ");
181 else
182 printk(BIOS_INFO, "%#.8x | ", g->port);
183 if (g->polarity == ACTIVE_HIGH)
184 printk(BIOS_INFO, " high | ");
185 else
186 printk(BIOS_INFO, " low | ");
187 switch (g->value) {
188 case 0:
Julius Wernerdc5d24c2018-03-07 13:06:53 -0800189 printk(BIOS_INFO, " low\n");
Julius Wernerc445b4f2016-03-31 17:27:05 -0700190 break;
191 case 1:
Julius Wernerdc5d24c2018-03-07 13:06:53 -0800192 printk(BIOS_INFO, " high\n");
Julius Wernerc445b4f2016-03-31 17:27:05 -0700193 break;
194 default:
195 printk(BIOS_INFO, "undefined\n");
196 break;
197 }
198 }
Stefan Reinauer31324c62012-04-05 21:22:02 +0200199}
200
Stefan Reinauer31324c62012-04-05 21:22:02 +0200201static void lb_vbnv(struct lb_header *header)
202{
Julius Wernercd49cce2019-03-05 16:53:33 -0800203#if CONFIG(PC80_SYSTEM)
Julius Werner1f5487a2013-08-27 15:38:54 -0700204 struct lb_range *vbnv;
Stefan Reinauer31324c62012-04-05 21:22:02 +0200205
Julius Werner1f5487a2013-08-27 15:38:54 -0700206 vbnv = (struct lb_range *)lb_new_record(header);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200207 vbnv->tag = LB_TAG_VBNV;
208 vbnv->size = sizeof(*vbnv);
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -0700209 vbnv->range_start = CONFIG_VBOOT_VBNV_OFFSET + 14;
210 vbnv->range_size = VBOOT_VBNV_BLOCK_SIZE;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700211#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200212}
Joel Kitching8d0f5992019-03-13 18:10:52 +0800213#endif /* CONFIG_CHROMEOS */
Aaron Durbindd32a312013-03-07 23:15:06 -0600214
Aaron Durbin64031672018-04-21 14:45:32 -0600215__weak uint32_t board_id(void) { return UNDEFINED_STRAPPING_ID; }
216__weak uint32_t ram_code(void) { return UNDEFINED_STRAPPING_ID; }
217__weak uint32_t sku_id(void) { return UNDEFINED_STRAPPING_ID; }
Tim Wawrzynczake1a7a262020-10-09 17:07:45 -0600218__weak uint64_t fw_config_get(void) { return UNDEFINED_FW_CONFIG; }
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700219
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100220static void lb_boot_media_params(struct lb_header *header)
221{
222 struct lb_boot_media_params *bmp;
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100223 const struct region_device *boot_dev;
Julius Werner1e37c9c2019-12-11 17:09:39 -0800224 const struct cbfs_boot_device *cbd = cbfs_get_boot_device(false);
225 if (!cbd)
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100226 return;
227
228 boot_dev = boot_device_ro();
229 if (boot_dev == NULL)
230 return;
231
232 bmp = (struct lb_boot_media_params *)lb_new_record(header);
233 bmp->tag = LB_TAG_BOOT_MEDIA_PARAMS;
234 bmp->size = sizeof(*bmp);
235
Julius Werner1e37c9c2019-12-11 17:09:39 -0800236 bmp->cbfs_offset = region_device_offset(&cbd->rdev);
237 bmp->cbfs_size = region_device_sz(&cbd->rdev);
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100238 bmp->boot_media_size = region_device_sz(boot_dev);
239
Furquan Shaikhb33a2b02019-09-26 23:51:46 -0700240 bmp->fmap_offset = get_fmap_flash_offset();
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100241}
242
Bora Guvendikddf2bc52018-03-30 16:03:32 -0700243static void lb_mmc_info(struct lb_header *header)
244{
245 struct lb_mmc_info *rec;
246 int32_t *ms_cbmem;
247
248 ms_cbmem = cbmem_find(CBMEM_ID_MMC_STATUS);
249 if (!ms_cbmem)
250 return;
251
252 rec = (struct lb_mmc_info *)lb_new_record(header);
253
254 rec->tag = LB_TAG_MMC_INFO;
255 rec->size = sizeof(*rec);
256 rec->early_cmd1_status = *ms_cbmem;
257}
258
Vadim Bendebury22c04682011-10-03 14:58:57 -0700259static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700260{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700261 /*
262 * These CBMEM sections' addresses are included in the coreboot table
263 * with the appropriate tags.
264 */
265 const struct section_id {
266 int cbmem_id;
267 int table_tag;
268 } section_ids[] = {
269 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
Duncan Laurie16e899b2013-12-12 10:43:21 -0800270 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE},
271 {CBMEM_ID_ACPI_GNVS, LB_TAG_ACPI_GNVS},
Hung-Te Linb15a0d02015-07-13 15:49:57 +0800272 {CBMEM_ID_VPD, LB_TAG_VPD},
Philipp Deppenwiesefa1f6ff2018-05-13 12:42:42 +0200273 {CBMEM_ID_WIFI_CALIBRATION, LB_TAG_WIFI_CALIBRATION},
Patrick Rudolph6d787c22019-09-12 13:21:37 +0200274 {CBMEM_ID_TCPA_LOG, LB_TAG_TCPA_LOG},
275 {CBMEM_ID_FMAP, LB_TAG_FMAP},
Yu-Ping Wu63b97002019-11-26 13:31:32 +0800276 {CBMEM_ID_VBOOT_WORKBUF, LB_TAG_VBOOT_WORKBUF},
Vadim Bendebury22c04682011-10-03 14:58:57 -0700277 };
278 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700279
Vadim Bendebury22c04682011-10-03 14:58:57 -0700280 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
281 const struct section_id *sid = section_ids + i;
282 struct lb_cbmem_ref *cbmem_ref;
283 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700284
Vadim Bendebury22c04682011-10-03 14:58:57 -0700285 if (!cbmem_addr)
286 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700287
Vadim Bendebury22c04682011-10-03 14:58:57 -0700288 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
289 if (!cbmem_ref) {
290 printk(BIOS_ERR, "No more room in coreboot table!\n");
291 break;
292 }
293 cbmem_ref->tag = sid->table_tag;
294 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800295 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700296 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700297}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700298
Stefan Reinauere3778572010-01-30 09:47:18 +0000299static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000300{
301 struct lb_record *rec;
302 struct lb_mainboard *mainboard;
303 rec = lb_new_record(header);
304 mainboard = (struct lb_mainboard *)rec;
305 mainboard->tag = LB_TAG_MAINBOARD;
306
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800307 mainboard->size = ALIGN_UP(sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000308 strlen(mainboard_vendor) + 1 +
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800309 strlen(mainboard_part_number) + 1, 8);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000310
311 mainboard->vendor_idx = 0;
312 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
313
314 memcpy(mainboard->strings + mainboard->vendor_idx,
315 mainboard_vendor, strlen(mainboard_vendor) + 1);
316 memcpy(mainboard->strings + mainboard->part_number_idx,
317 mainboard_part_number, strlen(mainboard_part_number) + 1);
318
319 return mainboard;
320}
321
Tim Wawrzynczake1a7a262020-10-09 17:07:45 -0600322static struct lb_board_config *lb_board_config(struct lb_header *header)
323{
324 struct lb_record *rec;
325 struct lb_board_config *config;
326 rec = lb_new_record(header);
327 config = (struct lb_board_config *)rec;
328
329 config->tag = LB_TAG_BOARD_CONFIG;
330 config->size = sizeof(*config);
331
332 config->board_id = board_id();
333 config->ram_code = ram_code();
334 config->sku_id = sku_id();
335 config->fw_config = pack_lb64(fw_config_get());
336
337 return config;
338}
339
Julius Wernercd49cce2019-03-05 16:53:33 -0800340#if CONFIG(USE_OPTION_TABLE)
Nico Huber08599912015-09-21 20:11:47 +0200341static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
342{
343 struct lb_record *rec;
344 struct cmos_checksum *cmos_checksum;
345 rec = lb_new_record(header);
346 cmos_checksum = (struct cmos_checksum *)rec;
347 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
348
349 cmos_checksum->size = (sizeof(*cmos_checksum));
350
351 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
Lee Leahyd638ef42017-03-07 09:47:22 -0800352 cmos_checksum->range_end = (LB_CKS_RANGE_END * 8) + 7;
Nico Huber08599912015-09-21 20:11:47 +0200353 cmos_checksum->location = LB_CKS_LOC * 8;
354 cmos_checksum->type = CHECKSUM_PCBIOS;
355
356 return cmos_checksum;
357}
358#endif
359
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000360static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000361{
362 static const struct {
363 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000364 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000365 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000366 { LB_TAG_VERSION, coreboot_version, },
367 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
368 { LB_TAG_BUILD, coreboot_build, },
369 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000370 };
Eric Biederman52685572003-05-19 19:16:21 +0000371 unsigned int i;
Lee Leahy45fde702017-03-08 18:02:24 -0800372 for (i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000373 struct lb_string *rec;
374 size_t len;
375 rec = (struct lb_string *)lb_new_record(header);
376 len = strlen(strings[i].string);
377 rec->tag = strings[i].tag;
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800378 rec->size = ALIGN_UP(sizeof(*rec) + len + 1, 8);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000379 memcpy(rec->string, strings[i].string, len+1);
380 }
381
382}
383
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200384static void lb_record_version_timestamp(struct lb_header *header)
385{
386 struct lb_timestamp *rec;
387 rec = (struct lb_timestamp *)lb_new_record(header);
388 rec->tag = LB_TAG_VERSION_TIMESTAMP;
389 rec->size = sizeof(*rec);
390 rec->timestamp = coreboot_version_timestamp;
391}
392
Aaron Durbin64031672018-04-21 14:45:32 -0600393void __weak lb_board(struct lb_header *header) { /* NOOP */ }
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700394
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500395/*
396 * It's possible that the system is using a SPI flash as the boot device,
397 * however it is not probing for devices to fill in specifics. In that
398 * case don't provide any information as the correct information is
399 * not known.
400 */
Aaron Durbin64031672018-04-21 14:45:32 -0600401void __weak lb_spi_flash(struct lb_header *header) { /* NOOP */ }
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500402
Lee Leahy73402172017-03-10 15:23:24 -0800403static struct lb_forward *lb_forward(struct lb_header *header,
404 struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000405{
406 struct lb_record *rec;
407 struct lb_forward *forward;
408 rec = lb_new_record(header);
409 forward = (struct lb_forward *)rec;
410 forward->tag = LB_TAG_FORWARD;
411 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000412 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000413 return forward;
414}
415
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500416static unsigned long lb_table_fini(struct lb_header *head)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000417{
418 struct lb_record *rec, *first_rec;
419 rec = lb_last_record(head);
Lee Leahy2f919ec2017-03-08 17:37:06 -0800420 if (head->table_entries)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000421 head->table_bytes += rec->size;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000422
Eric Biederman8ca8d762003-04-22 19:02:15 +0000423 first_rec = lb_first_record(head);
Lee Leahy73402172017-03-10 15:23:24 -0800424 head->table_checksum = compute_ip_checksum(first_rec,
425 head->table_bytes);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000426 head->header_checksum = 0;
427 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700428 printk(BIOS_DEBUG,
429 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
430 head, head->table_bytes, head->table_checksum);
431 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000432}
433
Aaron Durbin8984af82016-04-19 17:06:09 -0500434size_t write_coreboot_forwarding_table(uintptr_t entry, uintptr_t target)
435{
436 struct lb_header *head;
437
Julius Werner540a9802019-12-09 13:03:29 -0800438 printk(BIOS_DEBUG, "Writing table forward entry at %p\n",
Aaron Durbin8984af82016-04-19 17:06:09 -0500439 (void *)entry);
440
441 head = lb_table_init(entry);
Lee Leahyb2d834a2017-03-08 16:52:22 -0800442 lb_forward(head, (struct lb_header *)target);
Aaron Durbin8984af82016-04-19 17:06:09 -0500443
444 return (uintptr_t)lb_table_fini(head) - entry;
445}
446
Aaron Durbina4db0502016-04-19 21:38:18 -0500447static uintptr_t write_coreboot_table(uintptr_t rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000448{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000449 struct lb_header *head;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000450
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700451 printk(BIOS_DEBUG, "Writing coreboot table at 0x%08lx\n",
Aaron Durbina4db0502016-04-19 21:38:18 -0500452 (long)rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000453
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000454 head = lb_table_init(rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000455
Julius Wernercd49cce2019-03-05 16:53:33 -0800456#if CONFIG(USE_OPTION_TABLE)
Stefan Reinauerba430642007-04-06 12:14:51 +0000457 {
Aaron Durbin899d13d2015-05-15 23:39:23 -0500458 struct cmos_option_table *option_table =
Julius Werner834b3ec2020-03-04 16:52:08 -0800459 cbfs_map("cmos_layout.bin", NULL);
Patrick Georgi24479372011-01-18 13:56:36 +0000460 if (option_table) {
461 struct lb_record *rec_dest = lb_new_record(head);
Lee Leahy73402172017-03-10 15:23:24 -0800462 /* Copy the option config table, it's already a
463 * lb_record...
464 */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000465 memcpy(rec_dest, option_table, option_table->size);
Elyes HAOUAS2119d0b2020-02-16 10:01:33 +0100466 /* Create CMOS checksum entry in coreboot table */
Nico Huber08599912015-09-21 20:11:47 +0200467 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000468 } else {
Lee Leahy73402172017-03-10 15:23:24 -0800469 printk(BIOS_ERR,
470 "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000471 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000472 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000473#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700474
Aaron Durbin4677f6b2018-04-03 00:08:12 -0600475 /* Serialize resource map into mem table types (LB_MEM_*) */
Aaron Durbin2d5cec62014-02-25 00:24:22 -0600476 bootmem_write_memory_table(lb_memory(head));
Eric Biederman8ca8d762003-04-22 19:02:15 +0000477
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000478 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000479 lb_mainboard(head);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200480
481 /* Record the serial ports and consoles */
Julius Wernercd49cce2019-03-05 16:53:33 -0800482#if CONFIG(CONSOLE_SERIAL)
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200483 uart_fill_lb(head);
484#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800485#if CONFIG(CONSOLE_USB)
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200486 lb_add_console(LB_TAG_CONSOLE_EHCI, head);
487#endif
488
Eric Biederman8ca8d762003-04-22 19:02:15 +0000489 /* Record our various random string information */
490 lb_strings(head);
Johnny Linb8899ef2020-05-28 14:04:58 +0800491 if (CONFIG(PLATFORM_USES_FSP2_0))
492 lb_string_platform_blob_version(head);
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200493 lb_record_version_timestamp(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000494 /* Record our framebuffer */
495 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000496
Julius Wernercd49cce2019-03-05 16:53:33 -0800497#if CONFIG(CHROMEOS)
Stefan Reinauer31324c62012-04-05 21:22:02 +0200498 /* Record our GPIO settings (ChromeOS specific) */
499 lb_gpios(head);
500
Stefan Reinauer31324c62012-04-05 21:22:02 +0200501 /* pass along VBNV offsets in CMOS */
502 lb_vbnv(head);
503#endif
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700504
Bora Guvendikddf2bc52018-03-30 16:03:32 -0700505 /* Pass mmc early init status */
506 lb_mmc_info(head);
507
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800508 /* Add SPI flash description if available */
Julius Wernercd49cce2019-03-05 16:53:33 -0800509 if (CONFIG(BOOT_DEVICE_SPI_FLASH))
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500510 lb_spi_flash(head);
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800511
Vadim Bendebury22c04682011-10-03 14:58:57 -0700512 add_cbmem_pointers(head);
513
Patrick Rudolphbc744f52020-04-17 16:16:49 +0200514 /* SMMSTORE v2 */
515 if (CONFIG(SMMSTORE_V2))
516 lb_smmstorev2(head);
517
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700518 /* Add board-specific table entries, if any. */
519 lb_board(head);
520
Julius Wernercd49cce2019-03-05 16:53:33 -0800521#if CONFIG(CHROMEOS_RAMOOPS)
Furquan Shaikhefb546d2014-11-08 17:34:27 -0800522 lb_ramoops(head);
523#endif
524
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100525 lb_boot_media_params(head);
526
Tim Wawrzynczake1a7a262020-10-09 17:07:45 -0600527 /* Board configuration information (including straps) */
528 lb_board_config(head);
529
Patrick Rudolph39d69272020-09-21 09:49:31 +0200530 if (CONFIG(TPM_PPI))
531 lb_tpm_ppi(head);
532
Aaron Durbinf6ada1c2016-02-10 10:52:47 -0600533 /* Add architecture records. */
534 lb_arch_add_records(head);
535
Aaron Durbin1ca2d862015-09-30 12:26:54 -0500536 /* Add all cbmem entries into the coreboot tables. */
537 cbmem_add_records_to_cbtable(head);
538
Eric Biederman8ca8d762003-04-22 19:02:15 +0000539 /* Remember where my valid memory ranges are */
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500540 return lb_table_fini(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000541}
Aaron Durbina4db0502016-04-19 21:38:18 -0500542
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700543void *write_tables(void)
Aaron Durbina4db0502016-04-19 21:38:18 -0500544{
545 uintptr_t cbtable_start;
546 uintptr_t cbtable_end;
547 size_t cbtable_size;
Aaron Durbina6e90512016-04-21 14:06:17 -0500548 const size_t max_table_size = COREBOOT_TABLE_SIZE;
Aaron Durbina4db0502016-04-19 21:38:18 -0500549
550 cbtable_start = (uintptr_t)cbmem_add(CBMEM_ID_CBTABLE, max_table_size);
551
552 if (!cbtable_start) {
553 printk(BIOS_ERR, "Could not add CBMEM for coreboot table.\n");
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700554 return NULL;
Aaron Durbina4db0502016-04-19 21:38:18 -0500555 }
556
557 /* Add architecture specific tables. */
558 arch_write_tables(cbtable_start);
559
560 /* Write the coreboot table. */
561 cbtable_end = write_coreboot_table(cbtable_start);
562 cbtable_size = cbtable_end - cbtable_start;
563
564 if (cbtable_size > max_table_size) {
565 printk(BIOS_ERR, "%s: coreboot table didn't fit (%zx/%zx)\n",
566 __func__, cbtable_size, max_table_size);
567 }
568
569 printk(BIOS_DEBUG, "coreboot table: %zd bytes.\n", cbtable_size);
570
571 /* Print CBMEM sections */
572 cbmem_list();
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700573 return (void *)cbtable_start;
Aaron Durbina4db0502016-04-19 21:38:18 -0500574}