blob: 7245a63893748ed54589f98d020cd381b79dd549 [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 * Copyright (C) 2003-2004 Eric Biederman
Stefan Reinauerb5828d72010-03-29 17:14:28 +00005 * Copyright (C) 2005-2010 coresystems GmbH
Stefan Reinauerb883d4c2009-08-27 11:23:06 +00006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; version 2 of
10 * the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000016 */
17
Aaron Durbina6e90512016-04-21 14:06:17 -050018#include <arch/cbconfig.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000019#include <console/console.h>
Kyösti Mälkki1d7541f2014-02-17 21:34:42 +020020#include <console/uart.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000021#include <ip_checksum.h>
Stefan Reinauerca374d42008-01-18 16:16:45 +000022#include <boot/coreboot_tables.h>
Aaron Durbin5481c962016-04-19 20:37:51 -050023#include <boot/tables.h>
Patrick Georgifb5d5b12015-07-14 17:15:51 +010024#include <boot_device.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000025#include <string.h>
26#include <version.h>
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -070027#include <boardid.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000028#include <device/device.h>
Patrick Georgifb5d5b12015-07-14 17:15:51 +010029#include <fmap.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000030#include <stdlib.h>
Duncan Laurie66ecdc52011-08-15 16:35:10 -070031#include <cbfs.h>
Vadim Bendebury2e438672011-09-23 09:56:11 -070032#include <cbmem.h>
Aaron Durbin49048022014-02-18 21:55:02 -060033#include <bootmem.h>
Johanna Schanderc544a852019-07-28 09:28:33 +020034#include <bootsplash.h>
Dan Ehrenberga5aac762015-01-08 10:29:19 -080035#include <spi_flash.h>
Joel Kitching8d0f5992019-03-13 18:10:52 +080036#include <security/vboot/misc.h>
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020037#include <security/vboot/vbnv_layout.h>
Julius Wernercd49cce2019-03-05 16:53:33 -080038#if CONFIG(USE_OPTION_TABLE)
Nico Huber08599912015-09-21 20:11:47 +020039#include <option_table.h>
40#endif
Julius Wernercd49cce2019-03-05 16:53:33 -080041#if CONFIG(CHROMEOS)
42#if CONFIG(HAVE_ACPI_TABLES)
Stefan Reinauer0e672b52012-04-27 00:34:54 +020043#include <arch/acpi.h>
Stefan Reinauer3e4e3032013-03-20 14:08:04 -070044#endif
Aaron Durbindd32a312013-03-07 23:15:06 -060045#include <vendorcode/google/chromeos/chromeos.h>
Stefan Reinauer0e672b52012-04-27 00:34:54 +020046#include <vendorcode/google/chromeos/gnvs.h>
47#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000048
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000049static struct lb_header *lb_table_init(unsigned long addr)
Eric Biederman8ca8d762003-04-22 19:02:15 +000050{
51 struct lb_header *header;
52
53 /* 16 byte align the address */
54 addr += 15;
55 addr &= ~15;
56
57 header = (void *)addr;
58 header->signature[0] = 'L';
59 header->signature[1] = 'B';
60 header->signature[2] = 'I';
61 header->signature[3] = 'O';
62 header->header_bytes = sizeof(*header);
63 header->header_checksum = 0;
64 header->table_bytes = 0;
65 header->table_checksum = 0;
66 header->table_entries = 0;
67 return header;
68}
69
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000070static struct lb_record *lb_first_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000071{
72 struct lb_record *rec;
73 rec = (void *)(((char *)header) + sizeof(*header));
74 return rec;
75}
76
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000077static struct lb_record *lb_last_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000078{
79 struct lb_record *rec;
Lee Leahy73402172017-03-10 15:23:24 -080080 rec = (void *)(((char *)header) + sizeof(*header)
81 + header->table_bytes);
Eric Biederman8ca8d762003-04-22 19:02:15 +000082 return rec;
83}
84
Julius Wernerb8fad3d2013-08-27 15:48:32 -070085struct lb_record *lb_new_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000086{
87 struct lb_record *rec;
88 rec = lb_last_record(header);
Lee Leahy2f919ec2017-03-08 17:37:06 -080089 if (header->table_entries)
Eric Biederman8ca8d762003-04-22 19:02:15 +000090 header->table_bytes += rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +000091 rec = lb_last_record(header);
92 header->table_entries++;
93 rec->tag = LB_TAG_UNUSED;
94 rec->size = sizeof(*rec);
95 return rec;
96}
97
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000098static struct lb_memory *lb_memory(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000099{
100 struct lb_record *rec;
101 struct lb_memory *mem;
102 rec = lb_new_record(header);
103 mem = (struct lb_memory *)rec;
104 mem->tag = LB_TAG_MEMORY;
105 mem->size = sizeof(*mem);
106 return mem;
107}
108
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200109void lb_add_serial(struct lb_serial *new_serial, void *data)
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000110{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200111 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000112 struct lb_serial *serial;
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200113
114 serial = (struct lb_serial *)lb_new_record(header);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000115 serial->tag = LB_TAG_SERIAL;
116 serial->size = sizeof(*serial);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200117 serial->type = new_serial->type;
118 serial->baseaddr = new_serial->baseaddr;
119 serial->baud = new_serial->baud;
Vadim Bendebury9dccf1c2015-01-09 16:54:19 -0800120 serial->regwidth = new_serial->regwidth;
Lee Leahyf92a98c2016-05-04 11:59:19 -0700121 serial->input_hertz = new_serial->input_hertz;
122 serial->uart_pci_addr = new_serial->uart_pci_addr;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000123}
124
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200125void lb_add_console(uint16_t consoletype, void *data)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000126{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200127 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000128 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000129
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000130 console = (struct lb_console *)lb_new_record(header);
131 console->tag = LB_TAG_CONSOLE;
132 console->size = sizeof(*console);
133 console->type = consoletype;
134}
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000135
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500136static void lb_framebuffer(struct lb_header *header)
137{
Stefan Reinauerd650e992010-02-22 04:33:13 +0000138 struct lb_framebuffer *framebuffer;
Duncan Laurie13bc5e52017-06-26 01:50:14 -0700139 struct lb_framebuffer fb = {0};
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500140
Julius Wernercd49cce2019-03-05 16:53:33 -0800141 if (!CONFIG(LINEAR_FRAMEBUFFER) || fill_lb_framebuffer(&fb))
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500142 return;
143
Stefan Reinauerd650e992010-02-22 04:33:13 +0000144 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500145 memcpy(framebuffer, &fb, sizeof(*framebuffer));
Stefan Reinauerd650e992010-02-22 04:33:13 +0000146 framebuffer->tag = LB_TAG_FRAMEBUFFER;
147 framebuffer->size = sizeof(*framebuffer);
Johanna Schanderc544a852019-07-28 09:28:33 +0200148
149 if (CONFIG(BOOTSPLASH)) {
150 uint8_t *fb_ptr = (uint8_t *)(uintptr_t)framebuffer->physical_address;
151 unsigned int width = framebuffer->x_resolution;
152 unsigned int height = framebuffer->y_resolution;
153 unsigned int depth = framebuffer->bits_per_pixel;
154 set_bootsplash(fb_ptr, width, height, depth);
155 }
Stefan Reinauerd650e992010-02-22 04:33:13 +0000156}
157
Julius Wernerc445b4f2016-03-31 17:27:05 -0700158void lb_add_gpios(struct lb_gpios *gpios, const struct lb_gpio *gpio_table,
159 size_t count)
Kyösti Mälkki65784752013-12-22 03:12:38 +0200160{
Julius Wernerc445b4f2016-03-31 17:27:05 -0700161 size_t table_size = count * sizeof(struct lb_gpio);
162
163 memcpy(&gpios->gpios[gpios->count], gpio_table, table_size);
164 gpios->count += count;
165 gpios->size += table_size;
Kyösti Mälkki65784752013-12-22 03:12:38 +0200166}
167
Julius Wernercd49cce2019-03-05 16:53:33 -0800168#if CONFIG(CHROMEOS)
Stefan Reinauer31324c62012-04-05 21:22:02 +0200169static void lb_gpios(struct lb_header *header)
170{
171 struct lb_gpios *gpios;
Julius Wernerc445b4f2016-03-31 17:27:05 -0700172 struct lb_gpio *g;
Vadim Bendebury274ef412014-09-22 18:48:41 -0700173
Stefan Reinauer31324c62012-04-05 21:22:02 +0200174 gpios = (struct lb_gpios *)lb_new_record(header);
175 gpios->tag = LB_TAG_GPIO;
176 gpios->size = sizeof(*gpios);
177 gpios->count = 0;
178 fill_lb_gpios(gpios);
Julius Wernerc445b4f2016-03-31 17:27:05 -0700179
180 printk(BIOS_INFO, "Passing %u GPIOs to payload:\n"
181 " NAME | PORT | POLARITY | VALUE\n",
182 gpios->count);
183 for (g = &gpios->gpios[0]; g < &gpios->gpios[gpios->count]; g++) {
184 printk(BIOS_INFO, "%16s | ", g->name);
185 if (g->port == -1)
186 printk(BIOS_INFO, " undefined | ");
187 else
188 printk(BIOS_INFO, "%#.8x | ", g->port);
189 if (g->polarity == ACTIVE_HIGH)
190 printk(BIOS_INFO, " high | ");
191 else
192 printk(BIOS_INFO, " low | ");
193 switch (g->value) {
194 case 0:
Julius Wernerdc5d24c2018-03-07 13:06:53 -0800195 printk(BIOS_INFO, " low\n");
Julius Wernerc445b4f2016-03-31 17:27:05 -0700196 break;
197 case 1:
Julius Wernerdc5d24c2018-03-07 13:06:53 -0800198 printk(BIOS_INFO, " high\n");
Julius Wernerc445b4f2016-03-31 17:27:05 -0700199 break;
200 default:
201 printk(BIOS_INFO, "undefined\n");
202 break;
203 }
204 }
Stefan Reinauer31324c62012-04-05 21:22:02 +0200205}
206
Stefan Reinauer31324c62012-04-05 21:22:02 +0200207static void lb_vbnv(struct lb_header *header)
208{
Julius Wernercd49cce2019-03-05 16:53:33 -0800209#if CONFIG(PC80_SYSTEM)
Julius Werner1f5487a2013-08-27 15:38:54 -0700210 struct lb_range *vbnv;
Stefan Reinauer31324c62012-04-05 21:22:02 +0200211
Julius Werner1f5487a2013-08-27 15:38:54 -0700212 vbnv = (struct lb_range *)lb_new_record(header);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200213 vbnv->tag = LB_TAG_VBNV;
214 vbnv->size = sizeof(*vbnv);
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -0700215 vbnv->range_start = CONFIG_VBOOT_VBNV_OFFSET + 14;
216 vbnv->range_size = VBOOT_VBNV_BLOCK_SIZE;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700217#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200218}
Joel Kitching8d0f5992019-03-13 18:10:52 +0800219#endif /* CONFIG_CHROMEOS */
Aaron Durbindd32a312013-03-07 23:15:06 -0600220
Joel Kitching8d0f5992019-03-13 18:10:52 +0800221static void lb_vboot_workbuf(struct lb_header *header)
222{
223 struct lb_range *vbwb;
224 struct vboot_working_data *wd = vboot_get_working_data();
225
226 vbwb = (struct lb_range *)lb_new_record(header);
Patrick Georgi68999a82019-05-23 12:44:00 +0200227 vbwb->tag = LB_TAG_VBOOT_WORKBUF;
Joel Kitching8d0f5992019-03-13 18:10:52 +0800228 vbwb->size = sizeof(*vbwb);
229 vbwb->range_start = (uintptr_t)wd + wd->buffer_offset;
Yu-Ping Wuea544572019-11-14 11:38:44 +0800230 /*
231 * TODO(chromium:1021452): Since cbmem size of vboot workbuf is now
232 * always a known value, we hardcode the value of range_size here.
233 * Ultimately we'll want to move this to add_cbmem_pointers() below,
234 * but we'll have to get rid of the vboot_working_data struct first.
235 */
236 vbwb->range_size = VB2_KERNEL_WORKBUF_RECOMMENDED_SIZE -
237 wd->buffer_offset;
Joel Kitching8d0f5992019-03-13 18:10:52 +0800238}
Stefan Reinauer31324c62012-04-05 21:22:02 +0200239
Aaron Durbin64031672018-04-21 14:45:32 -0600240__weak uint32_t board_id(void) { return UNDEFINED_STRAPPING_ID; }
241__weak uint32_t ram_code(void) { return UNDEFINED_STRAPPING_ID; }
242__weak uint32_t sku_id(void) { return UNDEFINED_STRAPPING_ID; }
Julius Werner4ec3d9d2017-12-01 19:01:55 -0800243
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700244static void lb_board_id(struct lb_header *header)
245{
Julius Wernere2f17f72017-12-05 13:39:10 -0800246 struct lb_strapping_id *rec;
247 uint32_t bid = board_id();
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700248
Julius Werner4ec3d9d2017-12-01 19:01:55 -0800249 if (bid == UNDEFINED_STRAPPING_ID)
250 return;
251
Julius Wernere2f17f72017-12-05 13:39:10 -0800252 rec = (struct lb_strapping_id *)lb_new_record(header);
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700253
Julius Wernere2f17f72017-12-05 13:39:10 -0800254 rec->tag = LB_TAG_BOARD_ID;
255 rec->size = sizeof(*rec);
256 rec->id_code = bid;
257
258 printk(BIOS_INFO, "Board ID: %d\n", bid);
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700259}
260
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100261static void lb_boot_media_params(struct lb_header *header)
262{
263 struct lb_boot_media_params *bmp;
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100264 const struct region_device *boot_dev;
Aaron Durbinfe338e22019-11-18 12:35:21 -0700265 struct region_device cbfs_dev;
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100266
267 boot_device_init();
268
Aaron Durbinfe338e22019-11-18 12:35:21 -0700269 if (cbfs_boot_region_device(&cbfs_dev))
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100270 return;
271
272 boot_dev = boot_device_ro();
273 if (boot_dev == NULL)
274 return;
275
276 bmp = (struct lb_boot_media_params *)lb_new_record(header);
277 bmp->tag = LB_TAG_BOOT_MEDIA_PARAMS;
278 bmp->size = sizeof(*bmp);
279
Aaron Durbinfe338e22019-11-18 12:35:21 -0700280 bmp->cbfs_offset = region_device_offset(&cbfs_dev);
281 bmp->cbfs_size = region_device_sz(&cbfs_dev);
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100282 bmp->boot_media_size = region_device_sz(boot_dev);
283
Furquan Shaikhb33a2b02019-09-26 23:51:46 -0700284 bmp->fmap_offset = get_fmap_flash_offset();
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100285}
286
David Hendricks627b3bd2014-11-03 17:42:09 -0800287static void lb_ram_code(struct lb_header *header)
288{
Julius Wernere2f17f72017-12-05 13:39:10 -0800289 struct lb_strapping_id *rec;
290 uint32_t code = ram_code();
David Hendricks627b3bd2014-11-03 17:42:09 -0800291
Julius Werner4ec3d9d2017-12-01 19:01:55 -0800292 if (code == UNDEFINED_STRAPPING_ID)
293 return;
294
Julius Wernere2f17f72017-12-05 13:39:10 -0800295 rec = (struct lb_strapping_id *)lb_new_record(header);
David Hendricks627b3bd2014-11-03 17:42:09 -0800296
Julius Wernere2f17f72017-12-05 13:39:10 -0800297 rec->tag = LB_TAG_RAM_CODE;
298 rec->size = sizeof(*rec);
299 rec->id_code = code;
300
301 printk(BIOS_INFO, "RAM code: %d\n", code);
David Hendricks627b3bd2014-11-03 17:42:09 -0800302}
303
Julius Werner96ed92d2017-12-01 19:12:14 -0800304static void lb_sku_id(struct lb_header *header)
305{
306 struct lb_strapping_id *rec;
307 uint32_t sid = sku_id();
308
309 if (sid == UNDEFINED_STRAPPING_ID)
310 return;
311
312 rec = (struct lb_strapping_id *)lb_new_record(header);
313
314 rec->tag = LB_TAG_SKU_ID;
315 rec->size = sizeof(*rec);
316 rec->id_code = sid;
317
318 printk(BIOS_INFO, "SKU ID: %d\n", sid);
319}
320
Bora Guvendikddf2bc52018-03-30 16:03:32 -0700321static void lb_mmc_info(struct lb_header *header)
322{
323 struct lb_mmc_info *rec;
324 int32_t *ms_cbmem;
325
326 ms_cbmem = cbmem_find(CBMEM_ID_MMC_STATUS);
327 if (!ms_cbmem)
328 return;
329
330 rec = (struct lb_mmc_info *)lb_new_record(header);
331
332 rec->tag = LB_TAG_MMC_INFO;
333 rec->size = sizeof(*rec);
334 rec->early_cmd1_status = *ms_cbmem;
335}
336
Vadim Bendebury22c04682011-10-03 14:58:57 -0700337static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700338{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700339 /*
340 * These CBMEM sections' addresses are included in the coreboot table
341 * with the appropriate tags.
342 */
343 const struct section_id {
344 int cbmem_id;
345 int table_tag;
346 } section_ids[] = {
347 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
Duncan Laurie16e899b2013-12-12 10:43:21 -0800348 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE},
349 {CBMEM_ID_ACPI_GNVS, LB_TAG_ACPI_GNVS},
Hung-Te Linb15a0d02015-07-13 15:49:57 +0800350 {CBMEM_ID_VPD, LB_TAG_VPD},
Philipp Deppenwiesefa1f6ff2018-05-13 12:42:42 +0200351 {CBMEM_ID_WIFI_CALIBRATION, LB_TAG_WIFI_CALIBRATION},
Patrick Rudolph6d787c22019-09-12 13:21:37 +0200352 {CBMEM_ID_TCPA_LOG, LB_TAG_TCPA_LOG},
353 {CBMEM_ID_FMAP, LB_TAG_FMAP},
Vadim Bendebury22c04682011-10-03 14:58:57 -0700354 };
355 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700356
Vadim Bendebury22c04682011-10-03 14:58:57 -0700357 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
358 const struct section_id *sid = section_ids + i;
359 struct lb_cbmem_ref *cbmem_ref;
360 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700361
Vadim Bendebury22c04682011-10-03 14:58:57 -0700362 if (!cbmem_addr)
363 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700364
Vadim Bendebury22c04682011-10-03 14:58:57 -0700365 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
366 if (!cbmem_ref) {
367 printk(BIOS_ERR, "No more room in coreboot table!\n");
368 break;
369 }
370 cbmem_ref->tag = sid->table_tag;
371 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800372 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700373 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700374}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700375
Stefan Reinauere3778572010-01-30 09:47:18 +0000376static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000377{
378 struct lb_record *rec;
379 struct lb_mainboard *mainboard;
380 rec = lb_new_record(header);
381 mainboard = (struct lb_mainboard *)rec;
382 mainboard->tag = LB_TAG_MAINBOARD;
383
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800384 mainboard->size = ALIGN_UP(sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000385 strlen(mainboard_vendor) + 1 +
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800386 strlen(mainboard_part_number) + 1, 8);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000387
388 mainboard->vendor_idx = 0;
389 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
390
391 memcpy(mainboard->strings + mainboard->vendor_idx,
392 mainboard_vendor, strlen(mainboard_vendor) + 1);
393 memcpy(mainboard->strings + mainboard->part_number_idx,
394 mainboard_part_number, strlen(mainboard_part_number) + 1);
395
396 return mainboard;
397}
398
Julius Wernercd49cce2019-03-05 16:53:33 -0800399#if CONFIG(USE_OPTION_TABLE)
Nico Huber08599912015-09-21 20:11:47 +0200400static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
401{
402 struct lb_record *rec;
403 struct cmos_checksum *cmos_checksum;
404 rec = lb_new_record(header);
405 cmos_checksum = (struct cmos_checksum *)rec;
406 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
407
408 cmos_checksum->size = (sizeof(*cmos_checksum));
409
410 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
Lee Leahyd638ef42017-03-07 09:47:22 -0800411 cmos_checksum->range_end = (LB_CKS_RANGE_END * 8) + 7;
Nico Huber08599912015-09-21 20:11:47 +0200412 cmos_checksum->location = LB_CKS_LOC * 8;
413 cmos_checksum->type = CHECKSUM_PCBIOS;
414
415 return cmos_checksum;
416}
417#endif
418
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000419static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000420{
421 static const struct {
422 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000423 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000424 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000425 { LB_TAG_VERSION, coreboot_version, },
426 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
427 { LB_TAG_BUILD, coreboot_build, },
428 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000429 };
Eric Biederman52685572003-05-19 19:16:21 +0000430 unsigned int i;
Lee Leahy45fde702017-03-08 18:02:24 -0800431 for (i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000432 struct lb_string *rec;
433 size_t len;
434 rec = (struct lb_string *)lb_new_record(header);
435 len = strlen(strings[i].string);
436 rec->tag = strings[i].tag;
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800437 rec->size = ALIGN_UP(sizeof(*rec) + len + 1, 8);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000438 memcpy(rec->string, strings[i].string, len+1);
439 }
440
441}
442
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200443static void lb_record_version_timestamp(struct lb_header *header)
444{
445 struct lb_timestamp *rec;
446 rec = (struct lb_timestamp *)lb_new_record(header);
447 rec->tag = LB_TAG_VERSION_TIMESTAMP;
448 rec->size = sizeof(*rec);
449 rec->timestamp = coreboot_version_timestamp;
450}
451
Aaron Durbin64031672018-04-21 14:45:32 -0600452void __weak lb_board(struct lb_header *header) { /* NOOP */ }
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700453
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500454/*
455 * It's possible that the system is using a SPI flash as the boot device,
456 * however it is not probing for devices to fill in specifics. In that
457 * case don't provide any information as the correct information is
458 * not known.
459 */
Aaron Durbin64031672018-04-21 14:45:32 -0600460void __weak lb_spi_flash(struct lb_header *header) { /* NOOP */ }
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500461
Lee Leahy73402172017-03-10 15:23:24 -0800462static struct lb_forward *lb_forward(struct lb_header *header,
463 struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000464{
465 struct lb_record *rec;
466 struct lb_forward *forward;
467 rec = lb_new_record(header);
468 forward = (struct lb_forward *)rec;
469 forward->tag = LB_TAG_FORWARD;
470 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000471 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000472 return forward;
473}
474
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500475static unsigned long lb_table_fini(struct lb_header *head)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000476{
477 struct lb_record *rec, *first_rec;
478 rec = lb_last_record(head);
Lee Leahy2f919ec2017-03-08 17:37:06 -0800479 if (head->table_entries)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000480 head->table_bytes += rec->size;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000481
Eric Biederman8ca8d762003-04-22 19:02:15 +0000482 first_rec = lb_first_record(head);
Lee Leahy73402172017-03-10 15:23:24 -0800483 head->table_checksum = compute_ip_checksum(first_rec,
484 head->table_bytes);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000485 head->header_checksum = 0;
486 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700487 printk(BIOS_DEBUG,
488 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
489 head, head->table_bytes, head->table_checksum);
490 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000491}
492
Aaron Durbin8984af82016-04-19 17:06:09 -0500493size_t write_coreboot_forwarding_table(uintptr_t entry, uintptr_t target)
494{
495 struct lb_header *head;
496
497 printk(BIOS_DEBUG, "Writing table forward entry at 0x%p\n",
498 (void *)entry);
499
500 head = lb_table_init(entry);
Lee Leahyb2d834a2017-03-08 16:52:22 -0800501 lb_forward(head, (struct lb_header *)target);
Aaron Durbin8984af82016-04-19 17:06:09 -0500502
503 return (uintptr_t)lb_table_fini(head) - entry;
504}
505
Aaron Durbina4db0502016-04-19 21:38:18 -0500506static uintptr_t write_coreboot_table(uintptr_t rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000507{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000508 struct lb_header *head;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000509
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700510 printk(BIOS_DEBUG, "Writing coreboot table at 0x%08lx\n",
Aaron Durbina4db0502016-04-19 21:38:18 -0500511 (long)rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000512
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000513 head = lb_table_init(rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000514
Julius Wernercd49cce2019-03-05 16:53:33 -0800515#if CONFIG(USE_OPTION_TABLE)
Stefan Reinauerba430642007-04-06 12:14:51 +0000516 {
Aaron Durbin899d13d2015-05-15 23:39:23 -0500517 struct cmos_option_table *option_table =
518 cbfs_boot_map_with_leak("cmos_layout.bin",
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100519 CBFS_COMPONENT_CMOS_LAYOUT, NULL);
Patrick Georgi24479372011-01-18 13:56:36 +0000520 if (option_table) {
521 struct lb_record *rec_dest = lb_new_record(head);
Lee Leahy73402172017-03-10 15:23:24 -0800522 /* Copy the option config table, it's already a
523 * lb_record...
524 */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000525 memcpy(rec_dest, option_table, option_table->size);
Nico Huber08599912015-09-21 20:11:47 +0200526 /* Create cmos checksum entry in coreboot table */
527 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000528 } else {
Lee Leahy73402172017-03-10 15:23:24 -0800529 printk(BIOS_ERR,
530 "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000531 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000532 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000533#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700534
Aaron Durbin4677f6b2018-04-03 00:08:12 -0600535 /* Serialize resource map into mem table types (LB_MEM_*) */
Aaron Durbin2d5cec62014-02-25 00:24:22 -0600536 bootmem_write_memory_table(lb_memory(head));
Eric Biederman8ca8d762003-04-22 19:02:15 +0000537
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000538 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000539 lb_mainboard(head);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200540
541 /* Record the serial ports and consoles */
Julius Wernercd49cce2019-03-05 16:53:33 -0800542#if CONFIG(CONSOLE_SERIAL)
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200543 uart_fill_lb(head);
544#endif
Julius Wernercd49cce2019-03-05 16:53:33 -0800545#if CONFIG(CONSOLE_USB)
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200546 lb_add_console(LB_TAG_CONSOLE_EHCI, head);
547#endif
548
Eric Biederman8ca8d762003-04-22 19:02:15 +0000549 /* Record our various random string information */
550 lb_strings(head);
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200551 lb_record_version_timestamp(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000552 /* Record our framebuffer */
553 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000554
Julius Wernercd49cce2019-03-05 16:53:33 -0800555#if CONFIG(CHROMEOS)
Stefan Reinauer31324c62012-04-05 21:22:02 +0200556 /* Record our GPIO settings (ChromeOS specific) */
557 lb_gpios(head);
558
Stefan Reinauer31324c62012-04-05 21:22:02 +0200559 /* pass along VBNV offsets in CMOS */
560 lb_vbnv(head);
561#endif
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700562
Joel Kitching8d0f5992019-03-13 18:10:52 +0800563 if (CONFIG(VBOOT)) {
Joel Kitching8d0f5992019-03-13 18:10:52 +0800564 /* pass along the vboot workbuf address. */
565 lb_vboot_workbuf(head);
566 }
567
Julius Werner96ed92d2017-12-01 19:12:14 -0800568 /* Add strapping IDs if available */
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700569 lb_board_id(head);
David Hendricks627b3bd2014-11-03 17:42:09 -0800570 lb_ram_code(head);
Julius Werner96ed92d2017-12-01 19:12:14 -0800571 lb_sku_id(head);
David Hendricks627b3bd2014-11-03 17:42:09 -0800572
Bora Guvendikddf2bc52018-03-30 16:03:32 -0700573 /* Pass mmc early init status */
574 lb_mmc_info(head);
575
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800576 /* Add SPI flash description if available */
Julius Wernercd49cce2019-03-05 16:53:33 -0800577 if (CONFIG(BOOT_DEVICE_SPI_FLASH))
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500578 lb_spi_flash(head);
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800579
Vadim Bendebury22c04682011-10-03 14:58:57 -0700580 add_cbmem_pointers(head);
581
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700582 /* Add board-specific table entries, if any. */
583 lb_board(head);
584
Julius Wernercd49cce2019-03-05 16:53:33 -0800585#if CONFIG(CHROMEOS_RAMOOPS)
Furquan Shaikhefb546d2014-11-08 17:34:27 -0800586 lb_ramoops(head);
587#endif
588
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100589 lb_boot_media_params(head);
590
Aaron Durbinf6ada1c2016-02-10 10:52:47 -0600591 /* Add architecture records. */
592 lb_arch_add_records(head);
593
Aaron Durbin1ca2d862015-09-30 12:26:54 -0500594 /* Add all cbmem entries into the coreboot tables. */
595 cbmem_add_records_to_cbtable(head);
596
Eric Biederman8ca8d762003-04-22 19:02:15 +0000597 /* Remember where my valid memory ranges are */
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500598 return lb_table_fini(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000599}
Aaron Durbina4db0502016-04-19 21:38:18 -0500600
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700601void *write_tables(void)
Aaron Durbina4db0502016-04-19 21:38:18 -0500602{
603 uintptr_t cbtable_start;
604 uintptr_t cbtable_end;
605 size_t cbtable_size;
Aaron Durbina6e90512016-04-21 14:06:17 -0500606 const size_t max_table_size = COREBOOT_TABLE_SIZE;
Aaron Durbina4db0502016-04-19 21:38:18 -0500607
608 cbtable_start = (uintptr_t)cbmem_add(CBMEM_ID_CBTABLE, max_table_size);
609
610 if (!cbtable_start) {
611 printk(BIOS_ERR, "Could not add CBMEM for coreboot table.\n");
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700612 return NULL;
Aaron Durbina4db0502016-04-19 21:38:18 -0500613 }
614
615 /* Add architecture specific tables. */
616 arch_write_tables(cbtable_start);
617
618 /* Write the coreboot table. */
619 cbtable_end = write_coreboot_table(cbtable_start);
620 cbtable_size = cbtable_end - cbtable_start;
621
622 if (cbtable_size > max_table_size) {
623 printk(BIOS_ERR, "%s: coreboot table didn't fit (%zx/%zx)\n",
624 __func__, cbtable_size, max_table_size);
625 }
626
627 printk(BIOS_DEBUG, "coreboot table: %zd bytes.\n", cbtable_size);
628
629 /* Print CBMEM sections */
630 cbmem_list();
Ronald G. Minnicha8fa2512018-07-18 14:35:01 -0700631 return (void *)cbtable_start;
Aaron Durbina4db0502016-04-19 21:38:18 -0500632}