blob: 9148405879064a9b688e108abf0ebfd1b11d868b [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 Georgifb5d5b12015-07-14 17:15:51 +010014#include <fmap.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000015#include <stdlib.h>
Duncan Laurie66ecdc52011-08-15 16:35:10 -070016#include <cbfs.h>
Vadim Bendebury2e438672011-09-23 09:56:11 -070017#include <cbmem.h>
Aaron Durbin49048022014-02-18 21:55:02 -060018#include <bootmem.h>
Johanna Schanderc544a852019-07-28 09:28:33 +020019#include <bootsplash.h>
Dan Ehrenberga5aac762015-01-08 10:29:19 -080020#include <spi_flash.h>
Joel Kitching8d0f5992019-03-13 18:10:52 +080021#include <security/vboot/misc.h>
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020022#include <security/vboot/vbnv_layout.h>
Julius Wernercd49cce2019-03-05 16:53:33 -080023#if CONFIG(USE_OPTION_TABLE)
Nico Huber08599912015-09-21 20:11:47 +020024#include <option_table.h>
25#endif
Julius Wernercd49cce2019-03-05 16:53:33 -080026#if CONFIG(CHROMEOS)
27#if CONFIG(HAVE_ACPI_TABLES)
Furquan Shaikh76cedd22020-05-02 10:24:23 -070028#include <acpi/acpi.h>
Stefan Reinauer3e4e3032013-03-20 14:08:04 -070029#endif
Aaron Durbindd32a312013-03-07 23:15:06 -060030#include <vendorcode/google/chromeos/chromeos.h>
Stefan Reinauer0e672b52012-04-27 00:34:54 +020031#include <vendorcode/google/chromeos/gnvs.h>
32#endif
Johnny Linb8899ef2020-05-28 14:04:58 +080033#if CONFIG(PLATFORM_USES_FSP2_0)
34#include <fsp/util.h>
35#else
36void lb_string_platform_blob_version(struct lb_header *header);
37#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000038
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000039static struct lb_header *lb_table_init(unsigned long addr)
Eric Biederman8ca8d762003-04-22 19:02:15 +000040{
41 struct lb_header *header;
42
43 /* 16 byte align the address */
44 addr += 15;
45 addr &= ~15;
46
47 header = (void *)addr;
48 header->signature[0] = 'L';
49 header->signature[1] = 'B';
50 header->signature[2] = 'I';
51 header->signature[3] = 'O';
52 header->header_bytes = sizeof(*header);
53 header->header_checksum = 0;
54 header->table_bytes = 0;
55 header->table_checksum = 0;
56 header->table_entries = 0;
57 return header;
58}
59
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000060static struct lb_record *lb_first_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000061{
62 struct lb_record *rec;
63 rec = (void *)(((char *)header) + sizeof(*header));
64 return rec;
65}
66
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000067static struct lb_record *lb_last_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000068{
69 struct lb_record *rec;
Lee Leahy73402172017-03-10 15:23:24 -080070 rec = (void *)(((char *)header) + sizeof(*header)
71 + header->table_bytes);
Eric Biederman8ca8d762003-04-22 19:02:15 +000072 return rec;
73}
74
Julius Wernerb8fad3d2013-08-27 15:48:32 -070075struct lb_record *lb_new_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000076{
77 struct lb_record *rec;
78 rec = lb_last_record(header);
Lee Leahy2f919ec2017-03-08 17:37:06 -080079 if (header->table_entries)
Eric Biederman8ca8d762003-04-22 19:02:15 +000080 header->table_bytes += rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +000081 rec = lb_last_record(header);
82 header->table_entries++;
83 rec->tag = LB_TAG_UNUSED;
84 rec->size = sizeof(*rec);
85 return rec;
86}
87
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000088static struct lb_memory *lb_memory(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000089{
90 struct lb_record *rec;
91 struct lb_memory *mem;
92 rec = lb_new_record(header);
93 mem = (struct lb_memory *)rec;
94 mem->tag = LB_TAG_MEMORY;
95 mem->size = sizeof(*mem);
96 return mem;
97}
98
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +020099void lb_add_serial(struct lb_serial *new_serial, void *data)
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000100{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200101 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000102 struct lb_serial *serial;
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200103
104 serial = (struct lb_serial *)lb_new_record(header);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000105 serial->tag = LB_TAG_SERIAL;
106 serial->size = sizeof(*serial);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200107 serial->type = new_serial->type;
108 serial->baseaddr = new_serial->baseaddr;
109 serial->baud = new_serial->baud;
Vadim Bendebury9dccf1c2015-01-09 16:54:19 -0800110 serial->regwidth = new_serial->regwidth;
Lee Leahyf92a98c2016-05-04 11:59:19 -0700111 serial->input_hertz = new_serial->input_hertz;
112 serial->uart_pci_addr = new_serial->uart_pci_addr;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000113}
114
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200115void lb_add_console(uint16_t consoletype, void *data)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000116{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200117 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000118 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000119
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000120 console = (struct lb_console *)lb_new_record(header);
121 console->tag = LB_TAG_CONSOLE;
122 console->size = sizeof(*console);
123 console->type = consoletype;
124}
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000125
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500126static void lb_framebuffer(struct lb_header *header)
127{
Stefan Reinauerd650e992010-02-22 04:33:13 +0000128 struct lb_framebuffer *framebuffer;
Duncan Laurie13bc5e52017-06-26 01:50:14 -0700129 struct lb_framebuffer fb = {0};
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500130
Julius Wernercd49cce2019-03-05 16:53:33 -0800131 if (!CONFIG(LINEAR_FRAMEBUFFER) || fill_lb_framebuffer(&fb))
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500132 return;
133
Stefan Reinauerd650e992010-02-22 04:33:13 +0000134 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500135 memcpy(framebuffer, &fb, sizeof(*framebuffer));
Stefan Reinauerd650e992010-02-22 04:33:13 +0000136 framebuffer->tag = LB_TAG_FRAMEBUFFER;
137 framebuffer->size = sizeof(*framebuffer);
Johanna Schanderc544a852019-07-28 09:28:33 +0200138
139 if (CONFIG(BOOTSPLASH)) {
140 uint8_t *fb_ptr = (uint8_t *)(uintptr_t)framebuffer->physical_address;
141 unsigned int width = framebuffer->x_resolution;
142 unsigned int height = framebuffer->y_resolution;
143 unsigned int depth = framebuffer->bits_per_pixel;
144 set_bootsplash(fb_ptr, width, height, depth);
145 }
Stefan Reinauerd650e992010-02-22 04:33:13 +0000146}
147
Julius Wernerc445b4f2016-03-31 17:27:05 -0700148void lb_add_gpios(struct lb_gpios *gpios, const struct lb_gpio *gpio_table,
149 size_t count)
Kyösti Mälkki65784752013-12-22 03:12:38 +0200150{
Julius Wernerc445b4f2016-03-31 17:27:05 -0700151 size_t table_size = count * sizeof(struct lb_gpio);
152
153 memcpy(&gpios->gpios[gpios->count], gpio_table, table_size);
154 gpios->count += count;
155 gpios->size += table_size;
Kyösti Mälkki65784752013-12-22 03:12:38 +0200156}
157
Julius Wernercd49cce2019-03-05 16:53:33 -0800158#if CONFIG(CHROMEOS)
Stefan Reinauer31324c62012-04-05 21:22:02 +0200159static void lb_gpios(struct lb_header *header)
160{
161 struct lb_gpios *gpios;
Julius Wernerc445b4f2016-03-31 17:27:05 -0700162 struct lb_gpio *g;
Vadim Bendebury274ef412014-09-22 18:48:41 -0700163
Stefan Reinauer31324c62012-04-05 21:22:02 +0200164 gpios = (struct lb_gpios *)lb_new_record(header);
165 gpios->tag = LB_TAG_GPIO;
166 gpios->size = sizeof(*gpios);
167 gpios->count = 0;
168 fill_lb_gpios(gpios);
Julius Wernerc445b4f2016-03-31 17:27:05 -0700169
170 printk(BIOS_INFO, "Passing %u GPIOs to payload:\n"
171 " NAME | PORT | POLARITY | VALUE\n",
172 gpios->count);
173 for (g = &gpios->gpios[0]; g < &gpios->gpios[gpios->count]; g++) {
174 printk(BIOS_INFO, "%16s | ", g->name);
175 if (g->port == -1)
176 printk(BIOS_INFO, " undefined | ");
177 else
178 printk(BIOS_INFO, "%#.8x | ", g->port);
179 if (g->polarity == ACTIVE_HIGH)
180 printk(BIOS_INFO, " high | ");
181 else
182 printk(BIOS_INFO, " low | ");
183 switch (g->value) {
184 case 0:
Julius Wernerdc5d24c2018-03-07 13:06:53 -0800185 printk(BIOS_INFO, " low\n");
Julius Wernerc445b4f2016-03-31 17:27:05 -0700186 break;
187 case 1:
Julius Wernerdc5d24c2018-03-07 13:06:53 -0800188 printk(BIOS_INFO, " high\n");
Julius Wernerc445b4f2016-03-31 17:27:05 -0700189 break;
190 default:
191 printk(BIOS_INFO, "undefined\n");
192 break;
193 }
194 }
Stefan Reinauer31324c62012-04-05 21:22:02 +0200195}
196
Stefan Reinauer31324c62012-04-05 21:22:02 +0200197static void lb_vbnv(struct lb_header *header)
198{
Julius Wernercd49cce2019-03-05 16:53:33 -0800199#if CONFIG(PC80_SYSTEM)
Julius Werner1f5487a2013-08-27 15:38:54 -0700200 struct lb_range *vbnv;
Stefan Reinauer31324c62012-04-05 21:22:02 +0200201
Julius Werner1f5487a2013-08-27 15:38:54 -0700202 vbnv = (struct lb_range *)lb_new_record(header);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200203 vbnv->tag = LB_TAG_VBNV;
204 vbnv->size = sizeof(*vbnv);
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -0700205 vbnv->range_start = CONFIG_VBOOT_VBNV_OFFSET + 14;
206 vbnv->range_size = VBOOT_VBNV_BLOCK_SIZE;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700207#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200208}
Joel Kitching8d0f5992019-03-13 18:10:52 +0800209#endif /* CONFIG_CHROMEOS */
Aaron Durbindd32a312013-03-07 23:15:06 -0600210
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; }
Julius Werner4ec3d9d2017-12-01 19:01:55 -0800214
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700215static void lb_board_id(struct lb_header *header)
216{
Julius Wernere2f17f72017-12-05 13:39:10 -0800217 struct lb_strapping_id *rec;
218 uint32_t bid = board_id();
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700219
Julius Werner4ec3d9d2017-12-01 19:01:55 -0800220 if (bid == UNDEFINED_STRAPPING_ID)
221 return;
222
Julius Wernere2f17f72017-12-05 13:39:10 -0800223 rec = (struct lb_strapping_id *)lb_new_record(header);
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700224
Julius Wernere2f17f72017-12-05 13:39:10 -0800225 rec->tag = LB_TAG_BOARD_ID;
226 rec->size = sizeof(*rec);
227 rec->id_code = bid;
228
229 printk(BIOS_INFO, "Board ID: %d\n", bid);
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700230}
231
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100232static void lb_boot_media_params(struct lb_header *header)
233{
234 struct lb_boot_media_params *bmp;
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100235 const struct region_device *boot_dev;
Aaron Durbinfe338e22019-11-18 12:35:21 -0700236 struct region_device cbfs_dev;
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100237
238 boot_device_init();
239
Aaron Durbinfe338e22019-11-18 12:35:21 -0700240 if (cbfs_boot_region_device(&cbfs_dev))
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100241 return;
242
243 boot_dev = boot_device_ro();
244 if (boot_dev == NULL)
245 return;
246
247 bmp = (struct lb_boot_media_params *)lb_new_record(header);
248 bmp->tag = LB_TAG_BOOT_MEDIA_PARAMS;
249 bmp->size = sizeof(*bmp);
250
Aaron Durbinfe338e22019-11-18 12:35:21 -0700251 bmp->cbfs_offset = region_device_offset(&cbfs_dev);
252 bmp->cbfs_size = region_device_sz(&cbfs_dev);
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100253 bmp->boot_media_size = region_device_sz(boot_dev);
254
Furquan Shaikhb33a2b02019-09-26 23:51:46 -0700255 bmp->fmap_offset = get_fmap_flash_offset();
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100256}
257
David Hendricks627b3bd2014-11-03 17:42:09 -0800258static void lb_ram_code(struct lb_header *header)
259{
Julius Wernere2f17f72017-12-05 13:39:10 -0800260 struct lb_strapping_id *rec;
261 uint32_t code = ram_code();
David Hendricks627b3bd2014-11-03 17:42:09 -0800262
Julius Werner4ec3d9d2017-12-01 19:01:55 -0800263 if (code == UNDEFINED_STRAPPING_ID)
264 return;
265
Julius Wernere2f17f72017-12-05 13:39:10 -0800266 rec = (struct lb_strapping_id *)lb_new_record(header);
David Hendricks627b3bd2014-11-03 17:42:09 -0800267
Julius Wernere2f17f72017-12-05 13:39:10 -0800268 rec->tag = LB_TAG_RAM_CODE;
269 rec->size = sizeof(*rec);
270 rec->id_code = code;
271
272 printk(BIOS_INFO, "RAM code: %d\n", code);
David Hendricks627b3bd2014-11-03 17:42:09 -0800273}
274
Julius Werner96ed92d2017-12-01 19:12:14 -0800275static void lb_sku_id(struct lb_header *header)
276{
277 struct lb_strapping_id *rec;
278 uint32_t sid = sku_id();
279
280 if (sid == UNDEFINED_STRAPPING_ID)
281 return;
282
283 rec = (struct lb_strapping_id *)lb_new_record(header);
284
285 rec->tag = LB_TAG_SKU_ID;
286 rec->size = sizeof(*rec);
287 rec->id_code = sid;
288
289 printk(BIOS_INFO, "SKU ID: %d\n", sid);
290}
291
Bora Guvendikddf2bc52018-03-30 16:03:32 -0700292static void lb_mmc_info(struct lb_header *header)
293{
294 struct lb_mmc_info *rec;
295 int32_t *ms_cbmem;
296
297 ms_cbmem = cbmem_find(CBMEM_ID_MMC_STATUS);
298 if (!ms_cbmem)
299 return;
300
301 rec = (struct lb_mmc_info *)lb_new_record(header);
302
303 rec->tag = LB_TAG_MMC_INFO;
304 rec->size = sizeof(*rec);
305 rec->early_cmd1_status = *ms_cbmem;
306}
307
Vadim Bendebury22c04682011-10-03 14:58:57 -0700308static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700309{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700310 /*
311 * These CBMEM sections' addresses are included in the coreboot table
312 * with the appropriate tags.
313 */
314 const struct section_id {
315 int cbmem_id;
316 int table_tag;
317 } section_ids[] = {
318 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
Duncan Laurie16e899b2013-12-12 10:43:21 -0800319 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE},
320 {CBMEM_ID_ACPI_GNVS, LB_TAG_ACPI_GNVS},
Hung-Te Linb15a0d02015-07-13 15:49:57 +0800321 {CBMEM_ID_VPD, LB_TAG_VPD},
Philipp Deppenwiesefa1f6ff2018-05-13 12:42:42 +0200322 {CBMEM_ID_WIFI_CALIBRATION, LB_TAG_WIFI_CALIBRATION},
Patrick Rudolph6d787c22019-09-12 13:21:37 +0200323 {CBMEM_ID_TCPA_LOG, LB_TAG_TCPA_LOG},
324 {CBMEM_ID_FMAP, LB_TAG_FMAP},
Yu-Ping Wu63b97002019-11-26 13:31:32 +0800325 {CBMEM_ID_VBOOT_WORKBUF, LB_TAG_VBOOT_WORKBUF},
Vadim Bendebury22c04682011-10-03 14:58:57 -0700326 };
327 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700328
Vadim Bendebury22c04682011-10-03 14:58:57 -0700329 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
330 const struct section_id *sid = section_ids + i;
331 struct lb_cbmem_ref *cbmem_ref;
332 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700333
Vadim Bendebury22c04682011-10-03 14:58:57 -0700334 if (!cbmem_addr)
335 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700336
Vadim Bendebury22c04682011-10-03 14:58:57 -0700337 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
338 if (!cbmem_ref) {
339 printk(BIOS_ERR, "No more room in coreboot table!\n");
340 break;
341 }
342 cbmem_ref->tag = sid->table_tag;
343 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800344 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700345 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700346}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700347
Stefan Reinauere3778572010-01-30 09:47:18 +0000348static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000349{
350 struct lb_record *rec;
351 struct lb_mainboard *mainboard;
352 rec = lb_new_record(header);
353 mainboard = (struct lb_mainboard *)rec;
354 mainboard->tag = LB_TAG_MAINBOARD;
355
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800356 mainboard->size = ALIGN_UP(sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000357 strlen(mainboard_vendor) + 1 +
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800358 strlen(mainboard_part_number) + 1, 8);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000359
360 mainboard->vendor_idx = 0;
361 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
362
363 memcpy(mainboard->strings + mainboard->vendor_idx,
364 mainboard_vendor, strlen(mainboard_vendor) + 1);
365 memcpy(mainboard->strings + mainboard->part_number_idx,
366 mainboard_part_number, strlen(mainboard_part_number) + 1);
367
368 return mainboard;
369}
370
Julius Wernercd49cce2019-03-05 16:53:33 -0800371#if CONFIG(USE_OPTION_TABLE)
Nico Huber08599912015-09-21 20:11:47 +0200372static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
373{
374 struct lb_record *rec;
375 struct cmos_checksum *cmos_checksum;
376 rec = lb_new_record(header);
377 cmos_checksum = (struct cmos_checksum *)rec;
378 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
379
380 cmos_checksum->size = (sizeof(*cmos_checksum));
381
382 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
Lee Leahyd638ef42017-03-07 09:47:22 -0800383 cmos_checksum->range_end = (LB_CKS_RANGE_END * 8) + 7;
Nico Huber08599912015-09-21 20:11:47 +0200384 cmos_checksum->location = LB_CKS_LOC * 8;
385 cmos_checksum->type = CHECKSUM_PCBIOS;
386
387 return cmos_checksum;
388}
389#endif
390
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000391static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000392{
393 static const struct {
394 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000395 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000396 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000397 { LB_TAG_VERSION, coreboot_version, },
398 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
399 { LB_TAG_BUILD, coreboot_build, },
400 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000401 };
Eric Biederman52685572003-05-19 19:16:21 +0000402 unsigned int i;
Lee Leahy45fde702017-03-08 18:02:24 -0800403 for (i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000404 struct lb_string *rec;
405 size_t len;
406 rec = (struct lb_string *)lb_new_record(header);
407 len = strlen(strings[i].string);
408 rec->tag = strings[i].tag;
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800409 rec->size = ALIGN_UP(sizeof(*rec) + len + 1, 8);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000410 memcpy(rec->string, strings[i].string, len+1);
411 }
412
413}
414
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200415static void lb_record_version_timestamp(struct lb_header *header)
416{
417 struct lb_timestamp *rec;
418 rec = (struct lb_timestamp *)lb_new_record(header);
419 rec->tag = LB_TAG_VERSION_TIMESTAMP;
420 rec->size = sizeof(*rec);
421 rec->timestamp = coreboot_version_timestamp;
422}
423
Aaron Durbin64031672018-04-21 14:45:32 -0600424void __weak lb_board(struct lb_header *header) { /* NOOP */ }
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700425
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500426/*
427 * It's possible that the system is using a SPI flash as the boot device,
428 * however it is not probing for devices to fill in specifics. In that
429 * case don't provide any information as the correct information is
430 * not known.
431 */
Aaron Durbin64031672018-04-21 14:45:32 -0600432void __weak lb_spi_flash(struct lb_header *header) { /* NOOP */ }
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500433
Lee Leahy73402172017-03-10 15:23:24 -0800434static struct lb_forward *lb_forward(struct lb_header *header,
435 struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000436{
437 struct lb_record *rec;
438 struct lb_forward *forward;
439 rec = lb_new_record(header);
440 forward = (struct lb_forward *)rec;
441 forward->tag = LB_TAG_FORWARD;
442 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000443 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000444 return forward;
445}
446
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500447static unsigned long lb_table_fini(struct lb_header *head)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000448{
449 struct lb_record *rec, *first_rec;
450 rec = lb_last_record(head);
Lee Leahy2f919ec2017-03-08 17:37:06 -0800451 if (head->table_entries)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000452 head->table_bytes += rec->size;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000453
Eric Biederman8ca8d762003-04-22 19:02:15 +0000454 first_rec = lb_first_record(head);
Lee Leahy73402172017-03-10 15:23:24 -0800455 head->table_checksum = compute_ip_checksum(first_rec,
456 head->table_bytes);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000457 head->header_checksum = 0;
458 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700459 printk(BIOS_DEBUG,
460 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
461 head, head->table_bytes, head->table_checksum);
462 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000463}
464
Aaron Durbin8984af82016-04-19 17:06:09 -0500465size_t write_coreboot_forwarding_table(uintptr_t entry, uintptr_t target)
466{
467 struct lb_header *head;
468
Julius Werner540a9802019-12-09 13:03:29 -0800469 printk(BIOS_DEBUG, "Writing table forward entry at %p\n",
Aaron Durbin8984af82016-04-19 17:06:09 -0500470 (void *)entry);
471
472 head = lb_table_init(entry);
Lee Leahyb2d834a2017-03-08 16:52:22 -0800473 lb_forward(head, (struct lb_header *)target);
Aaron Durbin8984af82016-04-19 17:06:09 -0500474
475 return (uintptr_t)lb_table_fini(head) - entry;
476}
477
Aaron Durbina4db0502016-04-19 21:38:18 -0500478static uintptr_t write_coreboot_table(uintptr_t rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000479{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000480 struct lb_header *head;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000481
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700482 printk(BIOS_DEBUG, "Writing coreboot table at 0x%08lx\n",
Aaron Durbina4db0502016-04-19 21:38:18 -0500483 (long)rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000484
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000485 head = lb_table_init(rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000486
Julius Wernercd49cce2019-03-05 16:53:33 -0800487#if CONFIG(USE_OPTION_TABLE)
Stefan Reinauerba430642007-04-06 12:14:51 +0000488 {
Aaron Durbin899d13d2015-05-15 23:39:23 -0500489 struct cmos_option_table *option_table =
490 cbfs_boot_map_with_leak("cmos_layout.bin",
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100491 CBFS_COMPONENT_CMOS_LAYOUT, NULL);
Patrick Georgi24479372011-01-18 13:56:36 +0000492 if (option_table) {
493 struct lb_record *rec_dest = lb_new_record(head);
Lee Leahy73402172017-03-10 15:23:24 -0800494 /* Copy the option config table, it's already a
495 * lb_record...
496 */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000497 memcpy(rec_dest, option_table, option_table->size);
Elyes HAOUAS2119d0b2020-02-16 10:01:33 +0100498 /* Create CMOS checksum entry in coreboot table */
Nico Huber08599912015-09-21 20:11:47 +0200499 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000500 } else {
Lee Leahy73402172017-03-10 15:23:24 -0800501 printk(BIOS_ERR,
502 "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000503 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000504 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000505#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700506
Aaron Durbin4677f6b2018-04-03 00:08:12 -0600507 /* Serialize resource map into mem table types (LB_MEM_*) */
Aaron Durbin2d5cec62014-02-25 00:24:22 -0600508 bootmem_write_memory_table(lb_memory(head));
Eric Biederman8ca8d762003-04-22 19:02:15 +0000509
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000510 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000511 lb_mainboard(head);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200512
513 /* Record the serial ports and consoles */
Julius Wernercd49cce2019-03-05 16:53:33 -0800514#if CONFIG(CONSOLE_SERIAL)
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200515 uart_fill_lb(head);
516#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800517#if CONFIG(CONSOLE_USB)
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200518 lb_add_console(LB_TAG_CONSOLE_EHCI, head);
519#endif
520
Eric Biederman8ca8d762003-04-22 19:02:15 +0000521 /* Record our various random string information */
522 lb_strings(head);
Johnny Linb8899ef2020-05-28 14:04:58 +0800523 if (CONFIG(PLATFORM_USES_FSP2_0))
524 lb_string_platform_blob_version(head);
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200525 lb_record_version_timestamp(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000526 /* Record our framebuffer */
527 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000528
Julius Wernercd49cce2019-03-05 16:53:33 -0800529#if CONFIG(CHROMEOS)
Stefan Reinauer31324c62012-04-05 21:22:02 +0200530 /* Record our GPIO settings (ChromeOS specific) */
531 lb_gpios(head);
532
Stefan Reinauer31324c62012-04-05 21:22:02 +0200533 /* pass along VBNV offsets in CMOS */
534 lb_vbnv(head);
535#endif
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700536
Julius Werner96ed92d2017-12-01 19:12:14 -0800537 /* Add strapping IDs if available */
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700538 lb_board_id(head);
David Hendricks627b3bd2014-11-03 17:42:09 -0800539 lb_ram_code(head);
Julius Werner96ed92d2017-12-01 19:12:14 -0800540 lb_sku_id(head);
David Hendricks627b3bd2014-11-03 17:42:09 -0800541
Bora Guvendikddf2bc52018-03-30 16:03:32 -0700542 /* Pass mmc early init status */
543 lb_mmc_info(head);
544
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800545 /* Add SPI flash description if available */
Julius Wernercd49cce2019-03-05 16:53:33 -0800546 if (CONFIG(BOOT_DEVICE_SPI_FLASH))
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500547 lb_spi_flash(head);
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800548
Vadim Bendebury22c04682011-10-03 14:58:57 -0700549 add_cbmem_pointers(head);
550
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700551 /* Add board-specific table entries, if any. */
552 lb_board(head);
553
Julius Wernercd49cce2019-03-05 16:53:33 -0800554#if CONFIG(CHROMEOS_RAMOOPS)
Furquan Shaikhefb546d2014-11-08 17:34:27 -0800555 lb_ramoops(head);
556#endif
557
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100558 lb_boot_media_params(head);
559
Aaron Durbinf6ada1c2016-02-10 10:52:47 -0600560 /* Add architecture records. */
561 lb_arch_add_records(head);
562
Aaron Durbin1ca2d862015-09-30 12:26:54 -0500563 /* Add all cbmem entries into the coreboot tables. */
564 cbmem_add_records_to_cbtable(head);
565
Eric Biederman8ca8d762003-04-22 19:02:15 +0000566 /* Remember where my valid memory ranges are */
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500567 return lb_table_fini(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000568}
Aaron Durbina4db0502016-04-19 21:38:18 -0500569
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700570void *write_tables(void)
Aaron Durbina4db0502016-04-19 21:38:18 -0500571{
572 uintptr_t cbtable_start;
573 uintptr_t cbtable_end;
574 size_t cbtable_size;
Aaron Durbina6e90512016-04-21 14:06:17 -0500575 const size_t max_table_size = COREBOOT_TABLE_SIZE;
Aaron Durbina4db0502016-04-19 21:38:18 -0500576
577 cbtable_start = (uintptr_t)cbmem_add(CBMEM_ID_CBTABLE, max_table_size);
578
579 if (!cbtable_start) {
580 printk(BIOS_ERR, "Could not add CBMEM for coreboot table.\n");
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700581 return NULL;
Aaron Durbina4db0502016-04-19 21:38:18 -0500582 }
583
584 /* Add architecture specific tables. */
585 arch_write_tables(cbtable_start);
586
587 /* Write the coreboot table. */
588 cbtable_end = write_coreboot_table(cbtable_start);
589 cbtable_size = cbtable_end - cbtable_start;
590
591 if (cbtable_size > max_table_size) {
592 printk(BIOS_ERR, "%s: coreboot table didn't fit (%zx/%zx)\n",
593 __func__, cbtable_size, max_table_size);
594 }
595
596 printk(BIOS_DEBUG, "coreboot table: %zd bytes.\n", cbtable_size);
597
598 /* Print CBMEM sections */
599 cbmem_list();
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700600 return (void *)cbtable_start;
Aaron Durbina4db0502016-04-19 21:38:18 -0500601}