blob: d03b771f48cd2ee0b17476272bfc00ed79e490e2 [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>
Dan Ehrenberga5aac762015-01-08 10:29:19 -080034#include <spi_flash.h>
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020035#include <security/vboot/vbnv_layout.h>
Martin Roth1bf55b42017-06-24 14:16:38 -060036#if IS_ENABLED(CONFIG_USE_OPTION_TABLE)
Nico Huber08599912015-09-21 20:11:47 +020037#include <option_table.h>
38#endif
Martin Roth1bf55b42017-06-24 14:16:38 -060039#if IS_ENABLED(CONFIG_CHROMEOS)
40#if IS_ENABLED(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
Martin Roth1bf55b42017-06-24 14:16:38 -060046#if IS_ENABLED(CONFIG_ARCH_X86)
Aaron Durbinbc07f5d2013-03-26 13:09:39 -050047#include <cpu/x86/mtrr.h>
48#endif
Ronald G. Minnich23bb0362017-01-17 23:20:48 -080049#include <commonlib/helpers.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000050
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000051static struct lb_header *lb_table_init(unsigned long addr)
Eric Biederman8ca8d762003-04-22 19:02:15 +000052{
53 struct lb_header *header;
54
55 /* 16 byte align the address */
56 addr += 15;
57 addr &= ~15;
58
59 header = (void *)addr;
60 header->signature[0] = 'L';
61 header->signature[1] = 'B';
62 header->signature[2] = 'I';
63 header->signature[3] = 'O';
64 header->header_bytes = sizeof(*header);
65 header->header_checksum = 0;
66 header->table_bytes = 0;
67 header->table_checksum = 0;
68 header->table_entries = 0;
69 return header;
70}
71
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000072static struct lb_record *lb_first_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000073{
74 struct lb_record *rec;
75 rec = (void *)(((char *)header) + sizeof(*header));
76 return rec;
77}
78
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000079static struct lb_record *lb_last_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000080{
81 struct lb_record *rec;
Lee Leahy73402172017-03-10 15:23:24 -080082 rec = (void *)(((char *)header) + sizeof(*header)
83 + header->table_bytes);
Eric Biederman8ca8d762003-04-22 19:02:15 +000084 return rec;
85}
86
Julius Wernerb8fad3d2013-08-27 15:48:32 -070087struct lb_record *lb_new_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000088{
89 struct lb_record *rec;
90 rec = lb_last_record(header);
Lee Leahy2f919ec2017-03-08 17:37:06 -080091 if (header->table_entries)
Eric Biederman8ca8d762003-04-22 19:02:15 +000092 header->table_bytes += rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +000093 rec = lb_last_record(header);
94 header->table_entries++;
95 rec->tag = LB_TAG_UNUSED;
96 rec->size = sizeof(*rec);
97 return rec;
98}
99
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000100static struct lb_memory *lb_memory(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000101{
102 struct lb_record *rec;
103 struct lb_memory *mem;
104 rec = lb_new_record(header);
105 mem = (struct lb_memory *)rec;
106 mem->tag = LB_TAG_MEMORY;
107 mem->size = sizeof(*mem);
108 return mem;
109}
110
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200111void lb_add_serial(struct lb_serial *new_serial, void *data)
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000112{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200113 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000114 struct lb_serial *serial;
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200115
116 serial = (struct lb_serial *)lb_new_record(header);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000117 serial->tag = LB_TAG_SERIAL;
118 serial->size = sizeof(*serial);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200119 serial->type = new_serial->type;
120 serial->baseaddr = new_serial->baseaddr;
121 serial->baud = new_serial->baud;
Vadim Bendebury9dccf1c2015-01-09 16:54:19 -0800122 serial->regwidth = new_serial->regwidth;
Lee Leahyf92a98c2016-05-04 11:59:19 -0700123 serial->input_hertz = new_serial->input_hertz;
124 serial->uart_pci_addr = new_serial->uart_pci_addr;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000125}
126
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200127void lb_add_console(uint16_t consoletype, void *data)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000128{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200129 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000130 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000131
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000132 console = (struct lb_console *)lb_new_record(header);
133 console->tag = LB_TAG_CONSOLE;
134 console->size = sizeof(*console);
135 console->type = consoletype;
136}
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000137
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500138static void lb_framebuffer(struct lb_header *header)
139{
Stefan Reinauerd650e992010-02-22 04:33:13 +0000140 struct lb_framebuffer *framebuffer;
Duncan Laurie13bc5e52017-06-26 01:50:14 -0700141 struct lb_framebuffer fb = {0};
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500142
Nico Huberce768f32017-05-20 20:47:18 +0200143 if (!IS_ENABLED(CONFIG_LINEAR_FRAMEBUFFER) || fill_lb_framebuffer(&fb))
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500144 return;
145
Stefan Reinauerd650e992010-02-22 04:33:13 +0000146 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500147 memcpy(framebuffer, &fb, sizeof(*framebuffer));
Stefan Reinauerd650e992010-02-22 04:33:13 +0000148 framebuffer->tag = LB_TAG_FRAMEBUFFER;
149 framebuffer->size = sizeof(*framebuffer);
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
Martin Roth1bf55b42017-06-24 14:16:38 -0600162#if IS_ENABLED(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
201static void lb_vdat(struct lb_header *header)
202{
Martin Roth1bf55b42017-06-24 14:16:38 -0600203#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
Julius Werner1f5487a2013-08-27 15:38:54 -0700204 struct lb_range *vdat;
Stefan Reinauer31324c62012-04-05 21:22:02 +0200205
Julius Werner1f5487a2013-08-27 15:38:54 -0700206 vdat = (struct lb_range *)lb_new_record(header);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200207 vdat->tag = LB_TAG_VDAT;
208 vdat->size = sizeof(*vdat);
Julius Werner1f5487a2013-08-27 15:38:54 -0700209 acpi_get_vdat_info(&vdat->range_start, &vdat->range_size);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700210#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200211}
212
213static void lb_vbnv(struct lb_header *header)
214{
Martin Roth1bf55b42017-06-24 14:16:38 -0600215#if IS_ENABLED(CONFIG_PC80_SYSTEM)
Julius Werner1f5487a2013-08-27 15:38:54 -0700216 struct lb_range *vbnv;
Stefan Reinauer31324c62012-04-05 21:22:02 +0200217
Julius Werner1f5487a2013-08-27 15:38:54 -0700218 vbnv = (struct lb_range *)lb_new_record(header);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200219 vbnv->tag = LB_TAG_VBNV;
220 vbnv->size = sizeof(*vbnv);
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -0700221 vbnv->range_start = CONFIG_VBOOT_VBNV_OFFSET + 14;
222 vbnv->range_size = VBOOT_VBNV_BLOCK_SIZE;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700223#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200224}
Aaron Durbindd32a312013-03-07 23:15:06 -0600225
Martin Roth1bf55b42017-06-24 14:16:38 -0600226#if IS_ENABLED(CONFIG_VBOOT)
Aaron Durbindd32a312013-03-07 23:15:06 -0600227static void lb_vboot_handoff(struct lb_header *header)
228{
229 void *addr;
230 uint32_t size;
Julius Werner1f5487a2013-08-27 15:38:54 -0700231 struct lb_range *vbho;
Aaron Durbindd32a312013-03-07 23:15:06 -0600232
233 if (vboot_get_handoff_info(&addr, &size))
234 return;
235
Julius Werner1f5487a2013-08-27 15:38:54 -0700236 vbho = (struct lb_range *)lb_new_record(header);
Aaron Durbindd32a312013-03-07 23:15:06 -0600237 vbho->tag = LB_TAB_VBOOT_HANDOFF;
238 vbho->size = sizeof(*vbho);
Julius Werner1f5487a2013-08-27 15:38:54 -0700239 vbho->range_start = (intptr_t)addr;
240 vbho->range_size = size;
Aaron Durbindd32a312013-03-07 23:15:06 -0600241}
242#else
243static inline void lb_vboot_handoff(struct lb_header *header) {}
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -0700244#endif /* CONFIG_VBOOT */
Aaron Durbindd32a312013-03-07 23:15:06 -0600245#endif /* CONFIG_CHROMEOS */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200246
Julius Werner4ec3d9d2017-12-01 19:01:55 -0800247__attribute__((weak)) uint32_t board_id(void) { return UNDEFINED_STRAPPING_ID; }
248__attribute__((weak)) uint32_t ram_code(void) { return UNDEFINED_STRAPPING_ID; }
Julius Werner96ed92d2017-12-01 19:12:14 -0800249__attribute__((weak)) uint32_t sku_id(void) { return UNDEFINED_STRAPPING_ID; }
Julius Werner4ec3d9d2017-12-01 19:01:55 -0800250
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700251static void lb_board_id(struct lb_header *header)
252{
Julius Wernere2f17f72017-12-05 13:39:10 -0800253 struct lb_strapping_id *rec;
254 uint32_t bid = board_id();
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700255
Julius Werner4ec3d9d2017-12-01 19:01:55 -0800256 if (bid == UNDEFINED_STRAPPING_ID)
257 return;
258
Julius Wernere2f17f72017-12-05 13:39:10 -0800259 rec = (struct lb_strapping_id *)lb_new_record(header);
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700260
Julius Wernere2f17f72017-12-05 13:39:10 -0800261 rec->tag = LB_TAG_BOARD_ID;
262 rec->size = sizeof(*rec);
263 rec->id_code = bid;
264
265 printk(BIOS_INFO, "Board ID: %d\n", bid);
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700266}
267
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100268static void lb_boot_media_params(struct lb_header *header)
269{
270 struct lb_boot_media_params *bmp;
271 struct cbfs_props props;
272 const struct region_device *boot_dev;
273 struct region_device fmrd;
274
275 boot_device_init();
276
277 if (cbfs_boot_region_properties(&props))
278 return;
279
280 boot_dev = boot_device_ro();
281 if (boot_dev == NULL)
282 return;
283
284 bmp = (struct lb_boot_media_params *)lb_new_record(header);
285 bmp->tag = LB_TAG_BOOT_MEDIA_PARAMS;
286 bmp->size = sizeof(*bmp);
287
288 bmp->cbfs_offset = props.offset;
289 bmp->cbfs_size = props.size;
290 bmp->boot_media_size = region_device_sz(boot_dev);
291
292 bmp->fmap_offset = ~(uint64_t)0;
Lee Leahy2f919ec2017-03-08 17:37:06 -0800293 if (find_fmap_directory(&fmrd) == 0)
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100294 bmp->fmap_offset = region_device_offset(&fmrd);
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100295}
296
David Hendricks627b3bd2014-11-03 17:42:09 -0800297static void lb_ram_code(struct lb_header *header)
298{
Julius Wernere2f17f72017-12-05 13:39:10 -0800299 struct lb_strapping_id *rec;
300 uint32_t code = ram_code();
David Hendricks627b3bd2014-11-03 17:42:09 -0800301
Julius Werner4ec3d9d2017-12-01 19:01:55 -0800302 if (code == UNDEFINED_STRAPPING_ID)
303 return;
304
Julius Wernere2f17f72017-12-05 13:39:10 -0800305 rec = (struct lb_strapping_id *)lb_new_record(header);
David Hendricks627b3bd2014-11-03 17:42:09 -0800306
Julius Wernere2f17f72017-12-05 13:39:10 -0800307 rec->tag = LB_TAG_RAM_CODE;
308 rec->size = sizeof(*rec);
309 rec->id_code = code;
310
311 printk(BIOS_INFO, "RAM code: %d\n", code);
David Hendricks627b3bd2014-11-03 17:42:09 -0800312}
313
Julius Werner96ed92d2017-12-01 19:12:14 -0800314static void lb_sku_id(struct lb_header *header)
315{
316 struct lb_strapping_id *rec;
317 uint32_t sid = sku_id();
318
319 if (sid == UNDEFINED_STRAPPING_ID)
320 return;
321
322 rec = (struct lb_strapping_id *)lb_new_record(header);
323
324 rec->tag = LB_TAG_SKU_ID;
325 rec->size = sizeof(*rec);
326 rec->id_code = sid;
327
328 printk(BIOS_INFO, "SKU ID: %d\n", sid);
329}
330
Vadim Bendebury22c04682011-10-03 14:58:57 -0700331static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700332{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700333 /*
334 * These CBMEM sections' addresses are included in the coreboot table
335 * with the appropriate tags.
336 */
337 const struct section_id {
338 int cbmem_id;
339 int table_tag;
340 } section_ids[] = {
341 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
Duncan Laurie16e899b2013-12-12 10:43:21 -0800342 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE},
343 {CBMEM_ID_ACPI_GNVS, LB_TAG_ACPI_GNVS},
Hung-Te Linb15a0d02015-07-13 15:49:57 +0800344 {CBMEM_ID_VPD, LB_TAG_VPD},
Vadim Bendebury86b0c8b2014-10-23 15:15:45 -0700345 {CBMEM_ID_WIFI_CALIBRATION, LB_TAG_WIFI_CALIBRATION}
Vadim Bendebury22c04682011-10-03 14:58:57 -0700346 };
347 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700348
Vadim Bendebury22c04682011-10-03 14:58:57 -0700349 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
350 const struct section_id *sid = section_ids + i;
351 struct lb_cbmem_ref *cbmem_ref;
352 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700353
Vadim Bendebury22c04682011-10-03 14:58:57 -0700354 if (!cbmem_addr)
355 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700356
Vadim Bendebury22c04682011-10-03 14:58:57 -0700357 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
358 if (!cbmem_ref) {
359 printk(BIOS_ERR, "No more room in coreboot table!\n");
360 break;
361 }
362 cbmem_ref->tag = sid->table_tag;
363 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800364 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700365 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700366}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700367
Stefan Reinauere3778572010-01-30 09:47:18 +0000368static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000369{
370 struct lb_record *rec;
371 struct lb_mainboard *mainboard;
372 rec = lb_new_record(header);
373 mainboard = (struct lb_mainboard *)rec;
374 mainboard->tag = LB_TAG_MAINBOARD;
375
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800376 mainboard->size = ALIGN_UP(sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000377 strlen(mainboard_vendor) + 1 +
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800378 strlen(mainboard_part_number) + 1, 8);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000379
380 mainboard->vendor_idx = 0;
381 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
382
383 memcpy(mainboard->strings + mainboard->vendor_idx,
384 mainboard_vendor, strlen(mainboard_vendor) + 1);
385 memcpy(mainboard->strings + mainboard->part_number_idx,
386 mainboard_part_number, strlen(mainboard_part_number) + 1);
387
388 return mainboard;
389}
390
Martin Roth1bf55b42017-06-24 14:16:38 -0600391#if IS_ENABLED(CONFIG_USE_OPTION_TABLE)
Nico Huber08599912015-09-21 20:11:47 +0200392static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
393{
394 struct lb_record *rec;
395 struct cmos_checksum *cmos_checksum;
396 rec = lb_new_record(header);
397 cmos_checksum = (struct cmos_checksum *)rec;
398 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
399
400 cmos_checksum->size = (sizeof(*cmos_checksum));
401
402 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
Lee Leahyd638ef42017-03-07 09:47:22 -0800403 cmos_checksum->range_end = (LB_CKS_RANGE_END * 8) + 7;
Nico Huber08599912015-09-21 20:11:47 +0200404 cmos_checksum->location = LB_CKS_LOC * 8;
405 cmos_checksum->type = CHECKSUM_PCBIOS;
406
407 return cmos_checksum;
408}
409#endif
410
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000411static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000412{
413 static const struct {
414 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000415 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000416 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000417 { LB_TAG_VERSION, coreboot_version, },
418 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
419 { LB_TAG_BUILD, coreboot_build, },
420 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000421 };
Eric Biederman52685572003-05-19 19:16:21 +0000422 unsigned int i;
Lee Leahy45fde702017-03-08 18:02:24 -0800423 for (i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000424 struct lb_string *rec;
425 size_t len;
426 rec = (struct lb_string *)lb_new_record(header);
427 len = strlen(strings[i].string);
428 rec->tag = strings[i].tag;
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800429 rec->size = ALIGN_UP(sizeof(*rec) + len + 1, 8);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000430 memcpy(rec->string, strings[i].string, len+1);
431 }
432
433}
434
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200435static void lb_record_version_timestamp(struct lb_header *header)
436{
437 struct lb_timestamp *rec;
438 rec = (struct lb_timestamp *)lb_new_record(header);
439 rec->tag = LB_TAG_VERSION_TIMESTAMP;
440 rec->size = sizeof(*rec);
441 rec->timestamp = coreboot_version_timestamp;
442}
443
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700444void __attribute__((weak)) lb_board(struct lb_header *header) { /* NOOP */ }
445
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500446/*
447 * It's possible that the system is using a SPI flash as the boot device,
448 * however it is not probing for devices to fill in specifics. In that
449 * case don't provide any information as the correct information is
450 * not known.
451 */
452void __attribute__((weak)) lb_spi_flash(struct lb_header *header) { /* NOOP */ }
453
Lee Leahy73402172017-03-10 15:23:24 -0800454static struct lb_forward *lb_forward(struct lb_header *header,
455 struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000456{
457 struct lb_record *rec;
458 struct lb_forward *forward;
459 rec = lb_new_record(header);
460 forward = (struct lb_forward *)rec;
461 forward->tag = LB_TAG_FORWARD;
462 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000463 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000464 return forward;
465}
466
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500467static unsigned long lb_table_fini(struct lb_header *head)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000468{
469 struct lb_record *rec, *first_rec;
470 rec = lb_last_record(head);
Lee Leahy2f919ec2017-03-08 17:37:06 -0800471 if (head->table_entries)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000472 head->table_bytes += rec->size;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000473
Eric Biederman8ca8d762003-04-22 19:02:15 +0000474 first_rec = lb_first_record(head);
Lee Leahy73402172017-03-10 15:23:24 -0800475 head->table_checksum = compute_ip_checksum(first_rec,
476 head->table_bytes);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000477 head->header_checksum = 0;
478 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700479 printk(BIOS_DEBUG,
480 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
481 head, head->table_bytes, head->table_checksum);
482 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000483}
484
Aaron Durbin8984af82016-04-19 17:06:09 -0500485size_t write_coreboot_forwarding_table(uintptr_t entry, uintptr_t target)
486{
487 struct lb_header *head;
488
489 printk(BIOS_DEBUG, "Writing table forward entry at 0x%p\n",
490 (void *)entry);
491
492 head = lb_table_init(entry);
Lee Leahyb2d834a2017-03-08 16:52:22 -0800493 lb_forward(head, (struct lb_header *)target);
Aaron Durbin8984af82016-04-19 17:06:09 -0500494
495 return (uintptr_t)lb_table_fini(head) - entry;
496}
497
Aaron Durbina4db0502016-04-19 21:38:18 -0500498static uintptr_t write_coreboot_table(uintptr_t rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000499{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000500 struct lb_header *head;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000501
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700502 printk(BIOS_DEBUG, "Writing coreboot table at 0x%08lx\n",
Aaron Durbina4db0502016-04-19 21:38:18 -0500503 (long)rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000504
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000505 head = lb_table_init(rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000506
Martin Roth1bf55b42017-06-24 14:16:38 -0600507#if IS_ENABLED(CONFIG_USE_OPTION_TABLE)
Stefan Reinauerba430642007-04-06 12:14:51 +0000508 {
Aaron Durbin899d13d2015-05-15 23:39:23 -0500509 struct cmos_option_table *option_table =
510 cbfs_boot_map_with_leak("cmos_layout.bin",
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100511 CBFS_COMPONENT_CMOS_LAYOUT, NULL);
Patrick Georgi24479372011-01-18 13:56:36 +0000512 if (option_table) {
513 struct lb_record *rec_dest = lb_new_record(head);
Lee Leahy73402172017-03-10 15:23:24 -0800514 /* Copy the option config table, it's already a
515 * lb_record...
516 */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000517 memcpy(rec_dest, option_table, option_table->size);
Nico Huber08599912015-09-21 20:11:47 +0200518 /* Create cmos checksum entry in coreboot table */
519 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000520 } else {
Lee Leahy73402172017-03-10 15:23:24 -0800521 printk(BIOS_ERR,
522 "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000523 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000524 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000525#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700526
Aaron Durbin49048022014-02-18 21:55:02 -0600527 /* Initialize the memory map at boot time. */
528 bootmem_init();
Stefan Reinauer14e22772010-04-27 06:56:47 +0000529
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500530 /* No other memory areas can be added after the memory table has been
531 * committed as the entries won't show up in the serialize mem table. */
Aaron Durbin2d5cec62014-02-25 00:24:22 -0600532 bootmem_write_memory_table(lb_memory(head));
Eric Biederman8ca8d762003-04-22 19:02:15 +0000533
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000534 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000535 lb_mainboard(head);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200536
537 /* Record the serial ports and consoles */
Martin Roth1bf55b42017-06-24 14:16:38 -0600538#if IS_ENABLED(CONFIG_CONSOLE_SERIAL)
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200539 uart_fill_lb(head);
540#endif
Martin Roth1bf55b42017-06-24 14:16:38 -0600541#if IS_ENABLED(CONFIG_CONSOLE_USB)
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200542 lb_add_console(LB_TAG_CONSOLE_EHCI, head);
543#endif
544
Eric Biederman8ca8d762003-04-22 19:02:15 +0000545 /* Record our various random string information */
546 lb_strings(head);
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200547 lb_record_version_timestamp(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000548 /* Record our framebuffer */
549 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000550
Martin Roth1bf55b42017-06-24 14:16:38 -0600551#if IS_ENABLED(CONFIG_CHROMEOS)
Stefan Reinauer31324c62012-04-05 21:22:02 +0200552 /* Record our GPIO settings (ChromeOS specific) */
553 lb_gpios(head);
554
Martin Rothcbf2bd72013-07-09 21:51:14 -0600555 /* pass along the VDAT buffer address */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200556 lb_vdat(head);
557
558 /* pass along VBNV offsets in CMOS */
559 lb_vbnv(head);
Aaron Durbindd32a312013-03-07 23:15:06 -0600560
561 /* pass along the vboot_handoff address. */
562 lb_vboot_handoff(head);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200563#endif
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700564
Julius Werner96ed92d2017-12-01 19:12:14 -0800565 /* Add strapping IDs if available */
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700566 lb_board_id(head);
David Hendricks627b3bd2014-11-03 17:42:09 -0800567 lb_ram_code(head);
Julius Werner96ed92d2017-12-01 19:12:14 -0800568 lb_sku_id(head);
David Hendricks627b3bd2014-11-03 17:42:09 -0800569
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800570 /* Add SPI flash description if available */
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500571 if (IS_ENABLED(CONFIG_BOOT_DEVICE_SPI_FLASH))
572 lb_spi_flash(head);
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800573
Vadim Bendebury22c04682011-10-03 14:58:57 -0700574 add_cbmem_pointers(head);
575
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700576 /* Add board-specific table entries, if any. */
577 lb_board(head);
578
Furquan Shaikhefb546d2014-11-08 17:34:27 -0800579#if IS_ENABLED(CONFIG_CHROMEOS_RAMOOPS)
580 lb_ramoops(head);
581#endif
582
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100583 lb_boot_media_params(head);
584
Aaron Durbinf6ada1c2016-02-10 10:52:47 -0600585 /* Add architecture records. */
586 lb_arch_add_records(head);
587
Aaron Durbin1ca2d862015-09-30 12:26:54 -0500588 /* Add all cbmem entries into the coreboot tables. */
589 cbmem_add_records_to_cbtable(head);
590
Eric Biederman8ca8d762003-04-22 19:02:15 +0000591 /* Remember where my valid memory ranges are */
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500592 return lb_table_fini(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000593}
Aaron Durbina4db0502016-04-19 21:38:18 -0500594
595void write_tables(void)
596{
597 uintptr_t cbtable_start;
598 uintptr_t cbtable_end;
599 size_t cbtable_size;
Aaron Durbina6e90512016-04-21 14:06:17 -0500600 const size_t max_table_size = COREBOOT_TABLE_SIZE;
Aaron Durbina4db0502016-04-19 21:38:18 -0500601
602 cbtable_start = (uintptr_t)cbmem_add(CBMEM_ID_CBTABLE, max_table_size);
603
604 if (!cbtable_start) {
605 printk(BIOS_ERR, "Could not add CBMEM for coreboot table.\n");
606 return;
607 }
608
609 /* Add architecture specific tables. */
610 arch_write_tables(cbtable_start);
611
612 /* Write the coreboot table. */
613 cbtable_end = write_coreboot_table(cbtable_start);
614 cbtable_size = cbtable_end - cbtable_start;
615
616 if (cbtable_size > max_table_size) {
617 printk(BIOS_ERR, "%s: coreboot table didn't fit (%zx/%zx)\n",
618 __func__, cbtable_size, max_table_size);
619 }
620
621 printk(BIOS_DEBUG, "coreboot table: %zd bytes.\n", cbtable_size);
622
623 /* Print CBMEM sections */
624 cbmem_list();
625}