blob: 947a33f162dffbd6edff81e0359c921d6aef4f86 [file] [log] [blame]
Stefan Reinauerb883d4c2009-08-27 11:23:06 +00001/*
2 * This file is part of the coreboot project.
Stefan Reinauer14e22772010-04-27 06:56:47 +00003 *
Stefan Reinauerb883d4c2009-08-27 11:23:06 +00004 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; version 2 of
8 * the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000014 */
15
Aaron Durbina6e90512016-04-21 14:06:17 -050016#include <arch/cbconfig.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000017#include <console/console.h>
Kyösti Mälkki1d7541f2014-02-17 21:34:42 +020018#include <console/uart.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000019#include <ip_checksum.h>
Stefan Reinauerca374d42008-01-18 16:16:45 +000020#include <boot/coreboot_tables.h>
Aaron Durbin5481c962016-04-19 20:37:51 -050021#include <boot/tables.h>
Patrick Georgifb5d5b12015-07-14 17:15:51 +010022#include <boot_device.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000023#include <string.h>
24#include <version.h>
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -070025#include <boardid.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000026#include <device/device.h>
Patrick Georgifb5d5b12015-07-14 17:15:51 +010027#include <fmap.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000028#include <stdlib.h>
Duncan Laurie66ecdc52011-08-15 16:35:10 -070029#include <cbfs.h>
Vadim Bendebury2e438672011-09-23 09:56:11 -070030#include <cbmem.h>
Aaron Durbin49048022014-02-18 21:55:02 -060031#include <bootmem.h>
Johanna Schanderc544a852019-07-28 09:28:33 +020032#include <bootsplash.h>
Dan Ehrenberga5aac762015-01-08 10:29:19 -080033#include <spi_flash.h>
Joel Kitching8d0f5992019-03-13 18:10:52 +080034#include <security/vboot/misc.h>
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020035#include <security/vboot/vbnv_layout.h>
Julius Wernercd49cce2019-03-05 16:53:33 -080036#if CONFIG(USE_OPTION_TABLE)
Nico Huber08599912015-09-21 20:11:47 +020037#include <option_table.h>
38#endif
Julius Wernercd49cce2019-03-05 16:53:33 -080039#if CONFIG(CHROMEOS)
40#if CONFIG(HAVE_ACPI_TABLES)
Stefan Reinauer0e672b52012-04-27 00:34:54 +020041#include <arch/acpi.h>
Stefan Reinauer3e4e3032013-03-20 14:08:04 -070042#endif
Aaron Durbindd32a312013-03-07 23:15:06 -060043#include <vendorcode/google/chromeos/chromeos.h>
Stefan Reinauer0e672b52012-04-27 00:34:54 +020044#include <vendorcode/google/chromeos/gnvs.h>
45#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000046
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000047static struct lb_header *lb_table_init(unsigned long addr)
Eric Biederman8ca8d762003-04-22 19:02:15 +000048{
49 struct lb_header *header;
50
51 /* 16 byte align the address */
52 addr += 15;
53 addr &= ~15;
54
55 header = (void *)addr;
56 header->signature[0] = 'L';
57 header->signature[1] = 'B';
58 header->signature[2] = 'I';
59 header->signature[3] = 'O';
60 header->header_bytes = sizeof(*header);
61 header->header_checksum = 0;
62 header->table_bytes = 0;
63 header->table_checksum = 0;
64 header->table_entries = 0;
65 return header;
66}
67
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000068static struct lb_record *lb_first_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000069{
70 struct lb_record *rec;
71 rec = (void *)(((char *)header) + sizeof(*header));
72 return rec;
73}
74
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000075static struct lb_record *lb_last_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000076{
77 struct lb_record *rec;
Lee Leahy73402172017-03-10 15:23:24 -080078 rec = (void *)(((char *)header) + sizeof(*header)
79 + header->table_bytes);
Eric Biederman8ca8d762003-04-22 19:02:15 +000080 return rec;
81}
82
Julius Wernerb8fad3d2013-08-27 15:48:32 -070083struct lb_record *lb_new_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000084{
85 struct lb_record *rec;
86 rec = lb_last_record(header);
Lee Leahy2f919ec2017-03-08 17:37:06 -080087 if (header->table_entries)
Eric Biederman8ca8d762003-04-22 19:02:15 +000088 header->table_bytes += rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +000089 rec = lb_last_record(header);
90 header->table_entries++;
91 rec->tag = LB_TAG_UNUSED;
92 rec->size = sizeof(*rec);
93 return rec;
94}
95
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000096static struct lb_memory *lb_memory(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000097{
98 struct lb_record *rec;
99 struct lb_memory *mem;
100 rec = lb_new_record(header);
101 mem = (struct lb_memory *)rec;
102 mem->tag = LB_TAG_MEMORY;
103 mem->size = sizeof(*mem);
104 return mem;
105}
106
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200107void lb_add_serial(struct lb_serial *new_serial, void *data)
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000108{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200109 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000110 struct lb_serial *serial;
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200111
112 serial = (struct lb_serial *)lb_new_record(header);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000113 serial->tag = LB_TAG_SERIAL;
114 serial->size = sizeof(*serial);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200115 serial->type = new_serial->type;
116 serial->baseaddr = new_serial->baseaddr;
117 serial->baud = new_serial->baud;
Vadim Bendebury9dccf1c2015-01-09 16:54:19 -0800118 serial->regwidth = new_serial->regwidth;
Lee Leahyf92a98c2016-05-04 11:59:19 -0700119 serial->input_hertz = new_serial->input_hertz;
120 serial->uart_pci_addr = new_serial->uart_pci_addr;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000121}
122
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200123void lb_add_console(uint16_t consoletype, void *data)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000124{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200125 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000126 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000127
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000128 console = (struct lb_console *)lb_new_record(header);
129 console->tag = LB_TAG_CONSOLE;
130 console->size = sizeof(*console);
131 console->type = consoletype;
132}
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000133
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500134static void lb_framebuffer(struct lb_header *header)
135{
Stefan Reinauerd650e992010-02-22 04:33:13 +0000136 struct lb_framebuffer *framebuffer;
Duncan Laurie13bc5e52017-06-26 01:50:14 -0700137 struct lb_framebuffer fb = {0};
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500138
Julius Wernercd49cce2019-03-05 16:53:33 -0800139 if (!CONFIG(LINEAR_FRAMEBUFFER) || fill_lb_framebuffer(&fb))
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500140 return;
141
Stefan Reinauerd650e992010-02-22 04:33:13 +0000142 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500143 memcpy(framebuffer, &fb, sizeof(*framebuffer));
Stefan Reinauerd650e992010-02-22 04:33:13 +0000144 framebuffer->tag = LB_TAG_FRAMEBUFFER;
145 framebuffer->size = sizeof(*framebuffer);
Johanna Schanderc544a852019-07-28 09:28:33 +0200146
147 if (CONFIG(BOOTSPLASH)) {
148 uint8_t *fb_ptr = (uint8_t *)(uintptr_t)framebuffer->physical_address;
149 unsigned int width = framebuffer->x_resolution;
150 unsigned int height = framebuffer->y_resolution;
151 unsigned int depth = framebuffer->bits_per_pixel;
152 set_bootsplash(fb_ptr, width, height, depth);
153 }
Stefan Reinauerd650e992010-02-22 04:33:13 +0000154}
155
Julius Wernerc445b4f2016-03-31 17:27:05 -0700156void lb_add_gpios(struct lb_gpios *gpios, const struct lb_gpio *gpio_table,
157 size_t count)
Kyösti Mälkki65784752013-12-22 03:12:38 +0200158{
Julius Wernerc445b4f2016-03-31 17:27:05 -0700159 size_t table_size = count * sizeof(struct lb_gpio);
160
161 memcpy(&gpios->gpios[gpios->count], gpio_table, table_size);
162 gpios->count += count;
163 gpios->size += table_size;
Kyösti Mälkki65784752013-12-22 03:12:38 +0200164}
165
Julius Wernercd49cce2019-03-05 16:53:33 -0800166#if CONFIG(CHROMEOS)
Stefan Reinauer31324c62012-04-05 21:22:02 +0200167static void lb_gpios(struct lb_header *header)
168{
169 struct lb_gpios *gpios;
Julius Wernerc445b4f2016-03-31 17:27:05 -0700170 struct lb_gpio *g;
Vadim Bendebury274ef412014-09-22 18:48:41 -0700171
Stefan Reinauer31324c62012-04-05 21:22:02 +0200172 gpios = (struct lb_gpios *)lb_new_record(header);
173 gpios->tag = LB_TAG_GPIO;
174 gpios->size = sizeof(*gpios);
175 gpios->count = 0;
176 fill_lb_gpios(gpios);
Julius Wernerc445b4f2016-03-31 17:27:05 -0700177
178 printk(BIOS_INFO, "Passing %u GPIOs to payload:\n"
179 " NAME | PORT | POLARITY | VALUE\n",
180 gpios->count);
181 for (g = &gpios->gpios[0]; g < &gpios->gpios[gpios->count]; g++) {
182 printk(BIOS_INFO, "%16s | ", g->name);
183 if (g->port == -1)
184 printk(BIOS_INFO, " undefined | ");
185 else
186 printk(BIOS_INFO, "%#.8x | ", g->port);
187 if (g->polarity == ACTIVE_HIGH)
188 printk(BIOS_INFO, " high | ");
189 else
190 printk(BIOS_INFO, " low | ");
191 switch (g->value) {
192 case 0:
Julius Wernerdc5d24c2018-03-07 13:06:53 -0800193 printk(BIOS_INFO, " low\n");
Julius Wernerc445b4f2016-03-31 17:27:05 -0700194 break;
195 case 1:
Julius Wernerdc5d24c2018-03-07 13:06:53 -0800196 printk(BIOS_INFO, " high\n");
Julius Wernerc445b4f2016-03-31 17:27:05 -0700197 break;
198 default:
199 printk(BIOS_INFO, "undefined\n");
200 break;
201 }
202 }
Stefan Reinauer31324c62012-04-05 21:22:02 +0200203}
204
Stefan Reinauer31324c62012-04-05 21:22:02 +0200205static void lb_vbnv(struct lb_header *header)
206{
Julius Wernercd49cce2019-03-05 16:53:33 -0800207#if CONFIG(PC80_SYSTEM)
Julius Werner1f5487a2013-08-27 15:38:54 -0700208 struct lb_range *vbnv;
Stefan Reinauer31324c62012-04-05 21:22:02 +0200209
Julius Werner1f5487a2013-08-27 15:38:54 -0700210 vbnv = (struct lb_range *)lb_new_record(header);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200211 vbnv->tag = LB_TAG_VBNV;
212 vbnv->size = sizeof(*vbnv);
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -0700213 vbnv->range_start = CONFIG_VBOOT_VBNV_OFFSET + 14;
214 vbnv->range_size = VBOOT_VBNV_BLOCK_SIZE;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700215#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200216}
Joel Kitching8d0f5992019-03-13 18:10:52 +0800217#endif /* CONFIG_CHROMEOS */
Aaron Durbindd32a312013-03-07 23:15:06 -0600218
Aaron Durbin64031672018-04-21 14:45:32 -0600219__weak uint32_t board_id(void) { return UNDEFINED_STRAPPING_ID; }
220__weak uint32_t ram_code(void) { return UNDEFINED_STRAPPING_ID; }
221__weak uint32_t sku_id(void) { return UNDEFINED_STRAPPING_ID; }
Julius Werner4ec3d9d2017-12-01 19:01:55 -0800222
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700223static void lb_board_id(struct lb_header *header)
224{
Julius Wernere2f17f72017-12-05 13:39:10 -0800225 struct lb_strapping_id *rec;
226 uint32_t bid = board_id();
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700227
Julius Werner4ec3d9d2017-12-01 19:01:55 -0800228 if (bid == UNDEFINED_STRAPPING_ID)
229 return;
230
Julius Wernere2f17f72017-12-05 13:39:10 -0800231 rec = (struct lb_strapping_id *)lb_new_record(header);
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700232
Julius Wernere2f17f72017-12-05 13:39:10 -0800233 rec->tag = LB_TAG_BOARD_ID;
234 rec->size = sizeof(*rec);
235 rec->id_code = bid;
236
237 printk(BIOS_INFO, "Board ID: %d\n", bid);
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700238}
239
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100240static void lb_boot_media_params(struct lb_header *header)
241{
242 struct lb_boot_media_params *bmp;
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100243 const struct region_device *boot_dev;
Aaron Durbinfe338e22019-11-18 12:35:21 -0700244 struct region_device cbfs_dev;
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100245
246 boot_device_init();
247
Aaron Durbinfe338e22019-11-18 12:35:21 -0700248 if (cbfs_boot_region_device(&cbfs_dev))
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100249 return;
250
251 boot_dev = boot_device_ro();
252 if (boot_dev == NULL)
253 return;
254
255 bmp = (struct lb_boot_media_params *)lb_new_record(header);
256 bmp->tag = LB_TAG_BOOT_MEDIA_PARAMS;
257 bmp->size = sizeof(*bmp);
258
Aaron Durbinfe338e22019-11-18 12:35:21 -0700259 bmp->cbfs_offset = region_device_offset(&cbfs_dev);
260 bmp->cbfs_size = region_device_sz(&cbfs_dev);
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100261 bmp->boot_media_size = region_device_sz(boot_dev);
262
Furquan Shaikhb33a2b02019-09-26 23:51:46 -0700263 bmp->fmap_offset = get_fmap_flash_offset();
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100264}
265
David Hendricks627b3bd2014-11-03 17:42:09 -0800266static void lb_ram_code(struct lb_header *header)
267{
Julius Wernere2f17f72017-12-05 13:39:10 -0800268 struct lb_strapping_id *rec;
269 uint32_t code = ram_code();
David Hendricks627b3bd2014-11-03 17:42:09 -0800270
Julius Werner4ec3d9d2017-12-01 19:01:55 -0800271 if (code == UNDEFINED_STRAPPING_ID)
272 return;
273
Julius Wernere2f17f72017-12-05 13:39:10 -0800274 rec = (struct lb_strapping_id *)lb_new_record(header);
David Hendricks627b3bd2014-11-03 17:42:09 -0800275
Julius Wernere2f17f72017-12-05 13:39:10 -0800276 rec->tag = LB_TAG_RAM_CODE;
277 rec->size = sizeof(*rec);
278 rec->id_code = code;
279
280 printk(BIOS_INFO, "RAM code: %d\n", code);
David Hendricks627b3bd2014-11-03 17:42:09 -0800281}
282
Julius Werner96ed92d2017-12-01 19:12:14 -0800283static void lb_sku_id(struct lb_header *header)
284{
285 struct lb_strapping_id *rec;
286 uint32_t sid = sku_id();
287
288 if (sid == UNDEFINED_STRAPPING_ID)
289 return;
290
291 rec = (struct lb_strapping_id *)lb_new_record(header);
292
293 rec->tag = LB_TAG_SKU_ID;
294 rec->size = sizeof(*rec);
295 rec->id_code = sid;
296
297 printk(BIOS_INFO, "SKU ID: %d\n", sid);
298}
299
Bora Guvendikddf2bc52018-03-30 16:03:32 -0700300static void lb_mmc_info(struct lb_header *header)
301{
302 struct lb_mmc_info *rec;
303 int32_t *ms_cbmem;
304
305 ms_cbmem = cbmem_find(CBMEM_ID_MMC_STATUS);
306 if (!ms_cbmem)
307 return;
308
309 rec = (struct lb_mmc_info *)lb_new_record(header);
310
311 rec->tag = LB_TAG_MMC_INFO;
312 rec->size = sizeof(*rec);
313 rec->early_cmd1_status = *ms_cbmem;
314}
315
Vadim Bendebury22c04682011-10-03 14:58:57 -0700316static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700317{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700318 /*
319 * These CBMEM sections' addresses are included in the coreboot table
320 * with the appropriate tags.
321 */
322 const struct section_id {
323 int cbmem_id;
324 int table_tag;
325 } section_ids[] = {
326 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
Duncan Laurie16e899b2013-12-12 10:43:21 -0800327 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE},
328 {CBMEM_ID_ACPI_GNVS, LB_TAG_ACPI_GNVS},
Hung-Te Linb15a0d02015-07-13 15:49:57 +0800329 {CBMEM_ID_VPD, LB_TAG_VPD},
Philipp Deppenwiesefa1f6ff2018-05-13 12:42:42 +0200330 {CBMEM_ID_WIFI_CALIBRATION, LB_TAG_WIFI_CALIBRATION},
Patrick Rudolph6d787c22019-09-12 13:21:37 +0200331 {CBMEM_ID_TCPA_LOG, LB_TAG_TCPA_LOG},
332 {CBMEM_ID_FMAP, LB_TAG_FMAP},
Yu-Ping Wu63b97002019-11-26 13:31:32 +0800333 {CBMEM_ID_VBOOT_WORKBUF, LB_TAG_VBOOT_WORKBUF},
Vadim Bendebury22c04682011-10-03 14:58:57 -0700334 };
335 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700336
Vadim Bendebury22c04682011-10-03 14:58:57 -0700337 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
338 const struct section_id *sid = section_ids + i;
339 struct lb_cbmem_ref *cbmem_ref;
340 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700341
Vadim Bendebury22c04682011-10-03 14:58:57 -0700342 if (!cbmem_addr)
343 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700344
Vadim Bendebury22c04682011-10-03 14:58:57 -0700345 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
346 if (!cbmem_ref) {
347 printk(BIOS_ERR, "No more room in coreboot table!\n");
348 break;
349 }
350 cbmem_ref->tag = sid->table_tag;
351 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800352 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700353 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700354}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700355
Stefan Reinauere3778572010-01-30 09:47:18 +0000356static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000357{
358 struct lb_record *rec;
359 struct lb_mainboard *mainboard;
360 rec = lb_new_record(header);
361 mainboard = (struct lb_mainboard *)rec;
362 mainboard->tag = LB_TAG_MAINBOARD;
363
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800364 mainboard->size = ALIGN_UP(sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000365 strlen(mainboard_vendor) + 1 +
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800366 strlen(mainboard_part_number) + 1, 8);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000367
368 mainboard->vendor_idx = 0;
369 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
370
371 memcpy(mainboard->strings + mainboard->vendor_idx,
372 mainboard_vendor, strlen(mainboard_vendor) + 1);
373 memcpy(mainboard->strings + mainboard->part_number_idx,
374 mainboard_part_number, strlen(mainboard_part_number) + 1);
375
376 return mainboard;
377}
378
Julius Wernercd49cce2019-03-05 16:53:33 -0800379#if CONFIG(USE_OPTION_TABLE)
Nico Huber08599912015-09-21 20:11:47 +0200380static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
381{
382 struct lb_record *rec;
383 struct cmos_checksum *cmos_checksum;
384 rec = lb_new_record(header);
385 cmos_checksum = (struct cmos_checksum *)rec;
386 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
387
388 cmos_checksum->size = (sizeof(*cmos_checksum));
389
390 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
Lee Leahyd638ef42017-03-07 09:47:22 -0800391 cmos_checksum->range_end = (LB_CKS_RANGE_END * 8) + 7;
Nico Huber08599912015-09-21 20:11:47 +0200392 cmos_checksum->location = LB_CKS_LOC * 8;
393 cmos_checksum->type = CHECKSUM_PCBIOS;
394
395 return cmos_checksum;
396}
397#endif
398
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000399static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000400{
401 static const struct {
402 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000403 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000404 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000405 { LB_TAG_VERSION, coreboot_version, },
406 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
407 { LB_TAG_BUILD, coreboot_build, },
408 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000409 };
Eric Biederman52685572003-05-19 19:16:21 +0000410 unsigned int i;
Lee Leahy45fde702017-03-08 18:02:24 -0800411 for (i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000412 struct lb_string *rec;
413 size_t len;
414 rec = (struct lb_string *)lb_new_record(header);
415 len = strlen(strings[i].string);
416 rec->tag = strings[i].tag;
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800417 rec->size = ALIGN_UP(sizeof(*rec) + len + 1, 8);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000418 memcpy(rec->string, strings[i].string, len+1);
419 }
420
421}
422
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200423static void lb_record_version_timestamp(struct lb_header *header)
424{
425 struct lb_timestamp *rec;
426 rec = (struct lb_timestamp *)lb_new_record(header);
427 rec->tag = LB_TAG_VERSION_TIMESTAMP;
428 rec->size = sizeof(*rec);
429 rec->timestamp = coreboot_version_timestamp;
430}
431
Aaron Durbin64031672018-04-21 14:45:32 -0600432void __weak lb_board(struct lb_header *header) { /* NOOP */ }
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700433
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500434/*
435 * It's possible that the system is using a SPI flash as the boot device,
436 * however it is not probing for devices to fill in specifics. In that
437 * case don't provide any information as the correct information is
438 * not known.
439 */
Aaron Durbin64031672018-04-21 14:45:32 -0600440void __weak lb_spi_flash(struct lb_header *header) { /* NOOP */ }
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500441
Lee Leahy73402172017-03-10 15:23:24 -0800442static struct lb_forward *lb_forward(struct lb_header *header,
443 struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000444{
445 struct lb_record *rec;
446 struct lb_forward *forward;
447 rec = lb_new_record(header);
448 forward = (struct lb_forward *)rec;
449 forward->tag = LB_TAG_FORWARD;
450 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000451 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000452 return forward;
453}
454
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500455static unsigned long lb_table_fini(struct lb_header *head)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000456{
457 struct lb_record *rec, *first_rec;
458 rec = lb_last_record(head);
Lee Leahy2f919ec2017-03-08 17:37:06 -0800459 if (head->table_entries)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000460 head->table_bytes += rec->size;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000461
Eric Biederman8ca8d762003-04-22 19:02:15 +0000462 first_rec = lb_first_record(head);
Lee Leahy73402172017-03-10 15:23:24 -0800463 head->table_checksum = compute_ip_checksum(first_rec,
464 head->table_bytes);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000465 head->header_checksum = 0;
466 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700467 printk(BIOS_DEBUG,
468 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
469 head, head->table_bytes, head->table_checksum);
470 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000471}
472
Aaron Durbin8984af82016-04-19 17:06:09 -0500473size_t write_coreboot_forwarding_table(uintptr_t entry, uintptr_t target)
474{
475 struct lb_header *head;
476
Julius Werner540a9802019-12-09 13:03:29 -0800477 printk(BIOS_DEBUG, "Writing table forward entry at %p\n",
Aaron Durbin8984af82016-04-19 17:06:09 -0500478 (void *)entry);
479
480 head = lb_table_init(entry);
Lee Leahyb2d834a2017-03-08 16:52:22 -0800481 lb_forward(head, (struct lb_header *)target);
Aaron Durbin8984af82016-04-19 17:06:09 -0500482
483 return (uintptr_t)lb_table_fini(head) - entry;
484}
485
Aaron Durbina4db0502016-04-19 21:38:18 -0500486static uintptr_t write_coreboot_table(uintptr_t rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000487{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000488 struct lb_header *head;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000489
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700490 printk(BIOS_DEBUG, "Writing coreboot table at 0x%08lx\n",
Aaron Durbina4db0502016-04-19 21:38:18 -0500491 (long)rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000492
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000493 head = lb_table_init(rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000494
Julius Wernercd49cce2019-03-05 16:53:33 -0800495#if CONFIG(USE_OPTION_TABLE)
Stefan Reinauerba430642007-04-06 12:14:51 +0000496 {
Aaron Durbin899d13d2015-05-15 23:39:23 -0500497 struct cmos_option_table *option_table =
498 cbfs_boot_map_with_leak("cmos_layout.bin",
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100499 CBFS_COMPONENT_CMOS_LAYOUT, NULL);
Patrick Georgi24479372011-01-18 13:56:36 +0000500 if (option_table) {
501 struct lb_record *rec_dest = lb_new_record(head);
Lee Leahy73402172017-03-10 15:23:24 -0800502 /* Copy the option config table, it's already a
503 * lb_record...
504 */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000505 memcpy(rec_dest, option_table, option_table->size);
Elyes HAOUAS2119d0b2020-02-16 10:01:33 +0100506 /* Create CMOS checksum entry in coreboot table */
Nico Huber08599912015-09-21 20:11:47 +0200507 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000508 } else {
Lee Leahy73402172017-03-10 15:23:24 -0800509 printk(BIOS_ERR,
510 "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000511 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000512 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000513#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700514
Aaron Durbin4677f6b2018-04-03 00:08:12 -0600515 /* Serialize resource map into mem table types (LB_MEM_*) */
Aaron Durbin2d5cec62014-02-25 00:24:22 -0600516 bootmem_write_memory_table(lb_memory(head));
Eric Biederman8ca8d762003-04-22 19:02:15 +0000517
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000518 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000519 lb_mainboard(head);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200520
521 /* Record the serial ports and consoles */
Julius Wernercd49cce2019-03-05 16:53:33 -0800522#if CONFIG(CONSOLE_SERIAL)
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200523 uart_fill_lb(head);
524#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800525#if CONFIG(CONSOLE_USB)
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200526 lb_add_console(LB_TAG_CONSOLE_EHCI, head);
527#endif
528
Eric Biederman8ca8d762003-04-22 19:02:15 +0000529 /* Record our various random string information */
530 lb_strings(head);
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200531 lb_record_version_timestamp(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000532 /* Record our framebuffer */
533 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000534
Julius Wernercd49cce2019-03-05 16:53:33 -0800535#if CONFIG(CHROMEOS)
Stefan Reinauer31324c62012-04-05 21:22:02 +0200536 /* Record our GPIO settings (ChromeOS specific) */
537 lb_gpios(head);
538
Stefan Reinauer31324c62012-04-05 21:22:02 +0200539 /* pass along VBNV offsets in CMOS */
540 lb_vbnv(head);
541#endif
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700542
Julius Werner96ed92d2017-12-01 19:12:14 -0800543 /* Add strapping IDs if available */
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700544 lb_board_id(head);
David Hendricks627b3bd2014-11-03 17:42:09 -0800545 lb_ram_code(head);
Julius Werner96ed92d2017-12-01 19:12:14 -0800546 lb_sku_id(head);
David Hendricks627b3bd2014-11-03 17:42:09 -0800547
Bora Guvendikddf2bc52018-03-30 16:03:32 -0700548 /* Pass mmc early init status */
549 lb_mmc_info(head);
550
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800551 /* Add SPI flash description if available */
Julius Wernercd49cce2019-03-05 16:53:33 -0800552 if (CONFIG(BOOT_DEVICE_SPI_FLASH))
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500553 lb_spi_flash(head);
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800554
Vadim Bendebury22c04682011-10-03 14:58:57 -0700555 add_cbmem_pointers(head);
556
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700557 /* Add board-specific table entries, if any. */
558 lb_board(head);
559
Julius Wernercd49cce2019-03-05 16:53:33 -0800560#if CONFIG(CHROMEOS_RAMOOPS)
Furquan Shaikhefb546d2014-11-08 17:34:27 -0800561 lb_ramoops(head);
562#endif
563
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100564 lb_boot_media_params(head);
565
Aaron Durbinf6ada1c2016-02-10 10:52:47 -0600566 /* Add architecture records. */
567 lb_arch_add_records(head);
568
Aaron Durbin1ca2d862015-09-30 12:26:54 -0500569 /* Add all cbmem entries into the coreboot tables. */
570 cbmem_add_records_to_cbtable(head);
571
Eric Biederman8ca8d762003-04-22 19:02:15 +0000572 /* Remember where my valid memory ranges are */
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500573 return lb_table_fini(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000574}
Aaron Durbina4db0502016-04-19 21:38:18 -0500575
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700576void *write_tables(void)
Aaron Durbina4db0502016-04-19 21:38:18 -0500577{
578 uintptr_t cbtable_start;
579 uintptr_t cbtable_end;
580 size_t cbtable_size;
Aaron Durbina6e90512016-04-21 14:06:17 -0500581 const size_t max_table_size = COREBOOT_TABLE_SIZE;
Aaron Durbina4db0502016-04-19 21:38:18 -0500582
583 cbtable_start = (uintptr_t)cbmem_add(CBMEM_ID_CBTABLE, max_table_size);
584
585 if (!cbtable_start) {
586 printk(BIOS_ERR, "Could not add CBMEM for coreboot table.\n");
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700587 return NULL;
Aaron Durbina4db0502016-04-19 21:38:18 -0500588 }
589
590 /* Add architecture specific tables. */
591 arch_write_tables(cbtable_start);
592
593 /* Write the coreboot table. */
594 cbtable_end = write_coreboot_table(cbtable_start);
595 cbtable_size = cbtable_end - cbtable_start;
596
597 if (cbtable_size > max_table_size) {
598 printk(BIOS_ERR, "%s: coreboot table didn't fit (%zx/%zx)\n",
599 __func__, cbtable_size, max_table_size);
600 }
601
602 printk(BIOS_DEBUG, "coreboot table: %zd bytes.\n", cbtable_size);
603
604 /* Print CBMEM sections */
605 cbmem_list();
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700606 return (void *)cbtable_start;
Aaron Durbina4db0502016-04-19 21:38:18 -0500607}