blob: 29702150344442853e569b03f32fdaee755aad58 [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>
Aaron Durbin64031672018-04-21 14:45:32 -060019#include <compiler.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000020#include <console/console.h>
Kyösti Mälkki1d7541f2014-02-17 21:34:42 +020021#include <console/uart.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000022#include <ip_checksum.h>
Stefan Reinauerca374d42008-01-18 16:16:45 +000023#include <boot/coreboot_tables.h>
Aaron Durbin5481c962016-04-19 20:37:51 -050024#include <boot/tables.h>
Patrick Georgifb5d5b12015-07-14 17:15:51 +010025#include <boot_device.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000026#include <string.h>
27#include <version.h>
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -070028#include <boardid.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000029#include <device/device.h>
Patrick Georgifb5d5b12015-07-14 17:15:51 +010030#include <fmap.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000031#include <stdlib.h>
Duncan Laurie66ecdc52011-08-15 16:35:10 -070032#include <cbfs.h>
Vadim Bendebury2e438672011-09-23 09:56:11 -070033#include <cbmem.h>
Aaron Durbin49048022014-02-18 21:55:02 -060034#include <bootmem.h>
Dan Ehrenberga5aac762015-01-08 10:29:19 -080035#include <spi_flash.h>
Philipp Deppenwiesefea24292017-10-17 17:02:29 +020036#include <security/vboot/vbnv_layout.h>
Martin Roth1bf55b42017-06-24 14:16:38 -060037#if IS_ENABLED(CONFIG_USE_OPTION_TABLE)
Nico Huber08599912015-09-21 20:11:47 +020038#include <option_table.h>
39#endif
Martin Roth1bf55b42017-06-24 14:16:38 -060040#if IS_ENABLED(CONFIG_CHROMEOS)
41#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
Stefan Reinauer0e672b52012-04-27 00:34:54 +020042#include <arch/acpi.h>
Stefan Reinauer3e4e3032013-03-20 14:08:04 -070043#endif
Aaron Durbindd32a312013-03-07 23:15:06 -060044#include <vendorcode/google/chromeos/chromeos.h>
Stefan Reinauer0e672b52012-04-27 00:34:54 +020045#include <vendorcode/google/chromeos/gnvs.h>
46#endif
Martin Roth1bf55b42017-06-24 14:16:38 -060047#if IS_ENABLED(CONFIG_ARCH_X86)
Aaron Durbinbc07f5d2013-03-26 13:09:39 -050048#include <cpu/x86/mtrr.h>
49#endif
Ronald G. Minnich23bb0362017-01-17 23:20:48 -080050#include <commonlib/helpers.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000051
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000052static struct lb_header *lb_table_init(unsigned long addr)
Eric Biederman8ca8d762003-04-22 19:02:15 +000053{
54 struct lb_header *header;
55
56 /* 16 byte align the address */
57 addr += 15;
58 addr &= ~15;
59
60 header = (void *)addr;
61 header->signature[0] = 'L';
62 header->signature[1] = 'B';
63 header->signature[2] = 'I';
64 header->signature[3] = 'O';
65 header->header_bytes = sizeof(*header);
66 header->header_checksum = 0;
67 header->table_bytes = 0;
68 header->table_checksum = 0;
69 header->table_entries = 0;
70 return header;
71}
72
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000073static struct lb_record *lb_first_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000074{
75 struct lb_record *rec;
76 rec = (void *)(((char *)header) + sizeof(*header));
77 return rec;
78}
79
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000080static struct lb_record *lb_last_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000081{
82 struct lb_record *rec;
Lee Leahy73402172017-03-10 15:23:24 -080083 rec = (void *)(((char *)header) + sizeof(*header)
84 + header->table_bytes);
Eric Biederman8ca8d762003-04-22 19:02:15 +000085 return rec;
86}
87
Julius Wernerb8fad3d2013-08-27 15:48:32 -070088struct lb_record *lb_new_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000089{
90 struct lb_record *rec;
91 rec = lb_last_record(header);
Lee Leahy2f919ec2017-03-08 17:37:06 -080092 if (header->table_entries)
Eric Biederman8ca8d762003-04-22 19:02:15 +000093 header->table_bytes += rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +000094 rec = lb_last_record(header);
95 header->table_entries++;
96 rec->tag = LB_TAG_UNUSED;
97 rec->size = sizeof(*rec);
98 return rec;
99}
100
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000101static struct lb_memory *lb_memory(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000102{
103 struct lb_record *rec;
104 struct lb_memory *mem;
105 rec = lb_new_record(header);
106 mem = (struct lb_memory *)rec;
107 mem->tag = LB_TAG_MEMORY;
108 mem->size = sizeof(*mem);
109 return mem;
110}
111
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200112void lb_add_serial(struct lb_serial *new_serial, void *data)
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000113{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200114 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000115 struct lb_serial *serial;
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200116
117 serial = (struct lb_serial *)lb_new_record(header);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000118 serial->tag = LB_TAG_SERIAL;
119 serial->size = sizeof(*serial);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200120 serial->type = new_serial->type;
121 serial->baseaddr = new_serial->baseaddr;
122 serial->baud = new_serial->baud;
Vadim Bendebury9dccf1c2015-01-09 16:54:19 -0800123 serial->regwidth = new_serial->regwidth;
Lee Leahyf92a98c2016-05-04 11:59:19 -0700124 serial->input_hertz = new_serial->input_hertz;
125 serial->uart_pci_addr = new_serial->uart_pci_addr;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000126}
127
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200128void lb_add_console(uint16_t consoletype, void *data)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000129{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200130 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000131 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000132
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000133 console = (struct lb_console *)lb_new_record(header);
134 console->tag = LB_TAG_CONSOLE;
135 console->size = sizeof(*console);
136 console->type = consoletype;
137}
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000138
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500139static void lb_framebuffer(struct lb_header *header)
140{
Stefan Reinauerd650e992010-02-22 04:33:13 +0000141 struct lb_framebuffer *framebuffer;
Duncan Laurie13bc5e52017-06-26 01:50:14 -0700142 struct lb_framebuffer fb = {0};
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500143
Nico Huberce768f32017-05-20 20:47:18 +0200144 if (!IS_ENABLED(CONFIG_LINEAR_FRAMEBUFFER) || fill_lb_framebuffer(&fb))
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500145 return;
146
Stefan Reinauerd650e992010-02-22 04:33:13 +0000147 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
Aaron Durbinbdb5c8f2017-05-16 21:39:50 -0500148 memcpy(framebuffer, &fb, sizeof(*framebuffer));
Stefan Reinauerd650e992010-02-22 04:33:13 +0000149 framebuffer->tag = LB_TAG_FRAMEBUFFER;
150 framebuffer->size = sizeof(*framebuffer);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000151}
152
Julius Wernerc445b4f2016-03-31 17:27:05 -0700153void lb_add_gpios(struct lb_gpios *gpios, const struct lb_gpio *gpio_table,
154 size_t count)
Kyösti Mälkki65784752013-12-22 03:12:38 +0200155{
Julius Wernerc445b4f2016-03-31 17:27:05 -0700156 size_t table_size = count * sizeof(struct lb_gpio);
157
158 memcpy(&gpios->gpios[gpios->count], gpio_table, table_size);
159 gpios->count += count;
160 gpios->size += table_size;
Kyösti Mälkki65784752013-12-22 03:12:38 +0200161}
162
Martin Roth1bf55b42017-06-24 14:16:38 -0600163#if IS_ENABLED(CONFIG_CHROMEOS)
Stefan Reinauer31324c62012-04-05 21:22:02 +0200164static void lb_gpios(struct lb_header *header)
165{
166 struct lb_gpios *gpios;
Julius Wernerc445b4f2016-03-31 17:27:05 -0700167 struct lb_gpio *g;
Vadim Bendebury274ef412014-09-22 18:48:41 -0700168
Stefan Reinauer31324c62012-04-05 21:22:02 +0200169 gpios = (struct lb_gpios *)lb_new_record(header);
170 gpios->tag = LB_TAG_GPIO;
171 gpios->size = sizeof(*gpios);
172 gpios->count = 0;
173 fill_lb_gpios(gpios);
Julius Wernerc445b4f2016-03-31 17:27:05 -0700174
175 printk(BIOS_INFO, "Passing %u GPIOs to payload:\n"
176 " NAME | PORT | POLARITY | VALUE\n",
177 gpios->count);
178 for (g = &gpios->gpios[0]; g < &gpios->gpios[gpios->count]; g++) {
179 printk(BIOS_INFO, "%16s | ", g->name);
180 if (g->port == -1)
181 printk(BIOS_INFO, " undefined | ");
182 else
183 printk(BIOS_INFO, "%#.8x | ", g->port);
184 if (g->polarity == ACTIVE_HIGH)
185 printk(BIOS_INFO, " high | ");
186 else
187 printk(BIOS_INFO, " low | ");
188 switch (g->value) {
189 case 0:
Julius Wernerdc5d24c2018-03-07 13:06:53 -0800190 printk(BIOS_INFO, " low\n");
Julius Wernerc445b4f2016-03-31 17:27:05 -0700191 break;
192 case 1:
Julius Wernerdc5d24c2018-03-07 13:06:53 -0800193 printk(BIOS_INFO, " high\n");
Julius Wernerc445b4f2016-03-31 17:27:05 -0700194 break;
195 default:
196 printk(BIOS_INFO, "undefined\n");
197 break;
198 }
199 }
Stefan Reinauer31324c62012-04-05 21:22:02 +0200200}
201
202static void lb_vdat(struct lb_header *header)
203{
Martin Roth1bf55b42017-06-24 14:16:38 -0600204#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
Julius Werner1f5487a2013-08-27 15:38:54 -0700205 struct lb_range *vdat;
Stefan Reinauer31324c62012-04-05 21:22:02 +0200206
Julius Werner1f5487a2013-08-27 15:38:54 -0700207 vdat = (struct lb_range *)lb_new_record(header);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200208 vdat->tag = LB_TAG_VDAT;
209 vdat->size = sizeof(*vdat);
Julius Werner1f5487a2013-08-27 15:38:54 -0700210 acpi_get_vdat_info(&vdat->range_start, &vdat->range_size);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700211#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200212}
213
214static void lb_vbnv(struct lb_header *header)
215{
Martin Roth1bf55b42017-06-24 14:16:38 -0600216#if IS_ENABLED(CONFIG_PC80_SYSTEM)
Julius Werner1f5487a2013-08-27 15:38:54 -0700217 struct lb_range *vbnv;
Stefan Reinauer31324c62012-04-05 21:22:02 +0200218
Julius Werner1f5487a2013-08-27 15:38:54 -0700219 vbnv = (struct lb_range *)lb_new_record(header);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200220 vbnv->tag = LB_TAG_VBNV;
221 vbnv->size = sizeof(*vbnv);
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -0700222 vbnv->range_start = CONFIG_VBOOT_VBNV_OFFSET + 14;
223 vbnv->range_size = VBOOT_VBNV_BLOCK_SIZE;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700224#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200225}
Aaron Durbindd32a312013-03-07 23:15:06 -0600226
Martin Roth1bf55b42017-06-24 14:16:38 -0600227#if IS_ENABLED(CONFIG_VBOOT)
Aaron Durbindd32a312013-03-07 23:15:06 -0600228static void lb_vboot_handoff(struct lb_header *header)
229{
230 void *addr;
231 uint32_t size;
Julius Werner1f5487a2013-08-27 15:38:54 -0700232 struct lb_range *vbho;
Aaron Durbindd32a312013-03-07 23:15:06 -0600233
234 if (vboot_get_handoff_info(&addr, &size))
235 return;
236
Julius Werner1f5487a2013-08-27 15:38:54 -0700237 vbho = (struct lb_range *)lb_new_record(header);
Aaron Durbindd32a312013-03-07 23:15:06 -0600238 vbho->tag = LB_TAB_VBOOT_HANDOFF;
239 vbho->size = sizeof(*vbho);
Julius Werner1f5487a2013-08-27 15:38:54 -0700240 vbho->range_start = (intptr_t)addr;
241 vbho->range_size = size;
Aaron Durbindd32a312013-03-07 23:15:06 -0600242}
243#else
244static inline void lb_vboot_handoff(struct lb_header *header) {}
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -0700245#endif /* CONFIG_VBOOT */
Aaron Durbindd32a312013-03-07 23:15:06 -0600246#endif /* CONFIG_CHROMEOS */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200247
Aaron Durbin64031672018-04-21 14:45:32 -0600248__weak uint32_t board_id(void) { return UNDEFINED_STRAPPING_ID; }
249__weak uint32_t ram_code(void) { return UNDEFINED_STRAPPING_ID; }
250__weak uint32_t sku_id(void) { return UNDEFINED_STRAPPING_ID; }
Julius Werner4ec3d9d2017-12-01 19:01:55 -0800251
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700252static void lb_board_id(struct lb_header *header)
253{
Julius Wernere2f17f72017-12-05 13:39:10 -0800254 struct lb_strapping_id *rec;
255 uint32_t bid = board_id();
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700256
Julius Werner4ec3d9d2017-12-01 19:01:55 -0800257 if (bid == UNDEFINED_STRAPPING_ID)
258 return;
259
Julius Wernere2f17f72017-12-05 13:39:10 -0800260 rec = (struct lb_strapping_id *)lb_new_record(header);
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700261
Julius Wernere2f17f72017-12-05 13:39:10 -0800262 rec->tag = LB_TAG_BOARD_ID;
263 rec->size = sizeof(*rec);
264 rec->id_code = bid;
265
266 printk(BIOS_INFO, "Board ID: %d\n", bid);
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700267}
268
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100269static void lb_boot_media_params(struct lb_header *header)
270{
271 struct lb_boot_media_params *bmp;
272 struct cbfs_props props;
273 const struct region_device *boot_dev;
274 struct region_device fmrd;
275
276 boot_device_init();
277
278 if (cbfs_boot_region_properties(&props))
279 return;
280
281 boot_dev = boot_device_ro();
282 if (boot_dev == NULL)
283 return;
284
285 bmp = (struct lb_boot_media_params *)lb_new_record(header);
286 bmp->tag = LB_TAG_BOOT_MEDIA_PARAMS;
287 bmp->size = sizeof(*bmp);
288
289 bmp->cbfs_offset = props.offset;
290 bmp->cbfs_size = props.size;
291 bmp->boot_media_size = region_device_sz(boot_dev);
292
293 bmp->fmap_offset = ~(uint64_t)0;
Lee Leahy2f919ec2017-03-08 17:37:06 -0800294 if (find_fmap_directory(&fmrd) == 0)
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100295 bmp->fmap_offset = region_device_offset(&fmrd);
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100296}
297
David Hendricks627b3bd2014-11-03 17:42:09 -0800298static void lb_ram_code(struct lb_header *header)
299{
Julius Wernere2f17f72017-12-05 13:39:10 -0800300 struct lb_strapping_id *rec;
301 uint32_t code = ram_code();
David Hendricks627b3bd2014-11-03 17:42:09 -0800302
Julius Werner4ec3d9d2017-12-01 19:01:55 -0800303 if (code == UNDEFINED_STRAPPING_ID)
304 return;
305
Julius Wernere2f17f72017-12-05 13:39:10 -0800306 rec = (struct lb_strapping_id *)lb_new_record(header);
David Hendricks627b3bd2014-11-03 17:42:09 -0800307
Julius Wernere2f17f72017-12-05 13:39:10 -0800308 rec->tag = LB_TAG_RAM_CODE;
309 rec->size = sizeof(*rec);
310 rec->id_code = code;
311
312 printk(BIOS_INFO, "RAM code: %d\n", code);
David Hendricks627b3bd2014-11-03 17:42:09 -0800313}
314
Julius Werner96ed92d2017-12-01 19:12:14 -0800315static void lb_sku_id(struct lb_header *header)
316{
317 struct lb_strapping_id *rec;
318 uint32_t sid = sku_id();
319
320 if (sid == UNDEFINED_STRAPPING_ID)
321 return;
322
323 rec = (struct lb_strapping_id *)lb_new_record(header);
324
325 rec->tag = LB_TAG_SKU_ID;
326 rec->size = sizeof(*rec);
327 rec->id_code = sid;
328
329 printk(BIOS_INFO, "SKU ID: %d\n", sid);
330}
331
Vadim Bendebury22c04682011-10-03 14:58:57 -0700332static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700333{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700334 /*
335 * These CBMEM sections' addresses are included in the coreboot table
336 * with the appropriate tags.
337 */
338 const struct section_id {
339 int cbmem_id;
340 int table_tag;
341 } section_ids[] = {
342 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
Duncan Laurie16e899b2013-12-12 10:43:21 -0800343 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE},
344 {CBMEM_ID_ACPI_GNVS, LB_TAG_ACPI_GNVS},
Hung-Te Linb15a0d02015-07-13 15:49:57 +0800345 {CBMEM_ID_VPD, LB_TAG_VPD},
Vadim Bendebury86b0c8b2014-10-23 15:15:45 -0700346 {CBMEM_ID_WIFI_CALIBRATION, LB_TAG_WIFI_CALIBRATION}
Vadim Bendebury22c04682011-10-03 14:58:57 -0700347 };
348 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700349
Vadim Bendebury22c04682011-10-03 14:58:57 -0700350 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
351 const struct section_id *sid = section_ids + i;
352 struct lb_cbmem_ref *cbmem_ref;
353 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700354
Vadim Bendebury22c04682011-10-03 14:58:57 -0700355 if (!cbmem_addr)
356 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700357
Vadim Bendebury22c04682011-10-03 14:58:57 -0700358 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
359 if (!cbmem_ref) {
360 printk(BIOS_ERR, "No more room in coreboot table!\n");
361 break;
362 }
363 cbmem_ref->tag = sid->table_tag;
364 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800365 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700366 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700367}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700368
Stefan Reinauere3778572010-01-30 09:47:18 +0000369static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000370{
371 struct lb_record *rec;
372 struct lb_mainboard *mainboard;
373 rec = lb_new_record(header);
374 mainboard = (struct lb_mainboard *)rec;
375 mainboard->tag = LB_TAG_MAINBOARD;
376
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800377 mainboard->size = ALIGN_UP(sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000378 strlen(mainboard_vendor) + 1 +
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800379 strlen(mainboard_part_number) + 1, 8);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000380
381 mainboard->vendor_idx = 0;
382 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
383
384 memcpy(mainboard->strings + mainboard->vendor_idx,
385 mainboard_vendor, strlen(mainboard_vendor) + 1);
386 memcpy(mainboard->strings + mainboard->part_number_idx,
387 mainboard_part_number, strlen(mainboard_part_number) + 1);
388
389 return mainboard;
390}
391
Martin Roth1bf55b42017-06-24 14:16:38 -0600392#if IS_ENABLED(CONFIG_USE_OPTION_TABLE)
Nico Huber08599912015-09-21 20:11:47 +0200393static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
394{
395 struct lb_record *rec;
396 struct cmos_checksum *cmos_checksum;
397 rec = lb_new_record(header);
398 cmos_checksum = (struct cmos_checksum *)rec;
399 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
400
401 cmos_checksum->size = (sizeof(*cmos_checksum));
402
403 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
Lee Leahyd638ef42017-03-07 09:47:22 -0800404 cmos_checksum->range_end = (LB_CKS_RANGE_END * 8) + 7;
Nico Huber08599912015-09-21 20:11:47 +0200405 cmos_checksum->location = LB_CKS_LOC * 8;
406 cmos_checksum->type = CHECKSUM_PCBIOS;
407
408 return cmos_checksum;
409}
410#endif
411
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000412static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000413{
414 static const struct {
415 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000416 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000417 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000418 { LB_TAG_VERSION, coreboot_version, },
419 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
420 { LB_TAG_BUILD, coreboot_build, },
421 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000422 };
Eric Biederman52685572003-05-19 19:16:21 +0000423 unsigned int i;
Lee Leahy45fde702017-03-08 18:02:24 -0800424 for (i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000425 struct lb_string *rec;
426 size_t len;
427 rec = (struct lb_string *)lb_new_record(header);
428 len = strlen(strings[i].string);
429 rec->tag = strings[i].tag;
Ronald G. Minnich23bb0362017-01-17 23:20:48 -0800430 rec->size = ALIGN_UP(sizeof(*rec) + len + 1, 8);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000431 memcpy(rec->string, strings[i].string, len+1);
432 }
433
434}
435
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200436static void lb_record_version_timestamp(struct lb_header *header)
437{
438 struct lb_timestamp *rec;
439 rec = (struct lb_timestamp *)lb_new_record(header);
440 rec->tag = LB_TAG_VERSION_TIMESTAMP;
441 rec->size = sizeof(*rec);
442 rec->timestamp = coreboot_version_timestamp;
443}
444
Aaron Durbin64031672018-04-21 14:45:32 -0600445void __weak lb_board(struct lb_header *header) { /* NOOP */ }
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700446
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500447/*
448 * It's possible that the system is using a SPI flash as the boot device,
449 * however it is not probing for devices to fill in specifics. In that
450 * case don't provide any information as the correct information is
451 * not known.
452 */
Aaron Durbin64031672018-04-21 14:45:32 -0600453void __weak lb_spi_flash(struct lb_header *header) { /* NOOP */ }
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500454
Lee Leahy73402172017-03-10 15:23:24 -0800455static struct lb_forward *lb_forward(struct lb_header *header,
456 struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000457{
458 struct lb_record *rec;
459 struct lb_forward *forward;
460 rec = lb_new_record(header);
461 forward = (struct lb_forward *)rec;
462 forward->tag = LB_TAG_FORWARD;
463 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000464 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000465 return forward;
466}
467
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500468static unsigned long lb_table_fini(struct lb_header *head)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000469{
470 struct lb_record *rec, *first_rec;
471 rec = lb_last_record(head);
Lee Leahy2f919ec2017-03-08 17:37:06 -0800472 if (head->table_entries)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000473 head->table_bytes += rec->size;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000474
Eric Biederman8ca8d762003-04-22 19:02:15 +0000475 first_rec = lb_first_record(head);
Lee Leahy73402172017-03-10 15:23:24 -0800476 head->table_checksum = compute_ip_checksum(first_rec,
477 head->table_bytes);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000478 head->header_checksum = 0;
479 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700480 printk(BIOS_DEBUG,
481 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
482 head, head->table_bytes, head->table_checksum);
483 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000484}
485
Aaron Durbin8984af82016-04-19 17:06:09 -0500486size_t write_coreboot_forwarding_table(uintptr_t entry, uintptr_t target)
487{
488 struct lb_header *head;
489
490 printk(BIOS_DEBUG, "Writing table forward entry at 0x%p\n",
491 (void *)entry);
492
493 head = lb_table_init(entry);
Lee Leahyb2d834a2017-03-08 16:52:22 -0800494 lb_forward(head, (struct lb_header *)target);
Aaron Durbin8984af82016-04-19 17:06:09 -0500495
496 return (uintptr_t)lb_table_fini(head) - entry;
497}
498
Aaron Durbina4db0502016-04-19 21:38:18 -0500499static uintptr_t write_coreboot_table(uintptr_t rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000500{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000501 struct lb_header *head;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000502
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700503 printk(BIOS_DEBUG, "Writing coreboot table at 0x%08lx\n",
Aaron Durbina4db0502016-04-19 21:38:18 -0500504 (long)rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000505
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000506 head = lb_table_init(rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000507
Martin Roth1bf55b42017-06-24 14:16:38 -0600508#if IS_ENABLED(CONFIG_USE_OPTION_TABLE)
Stefan Reinauerba430642007-04-06 12:14:51 +0000509 {
Aaron Durbin899d13d2015-05-15 23:39:23 -0500510 struct cmos_option_table *option_table =
511 cbfs_boot_map_with_leak("cmos_layout.bin",
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100512 CBFS_COMPONENT_CMOS_LAYOUT, NULL);
Patrick Georgi24479372011-01-18 13:56:36 +0000513 if (option_table) {
514 struct lb_record *rec_dest = lb_new_record(head);
Lee Leahy73402172017-03-10 15:23:24 -0800515 /* Copy the option config table, it's already a
516 * lb_record...
517 */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000518 memcpy(rec_dest, option_table, option_table->size);
Nico Huber08599912015-09-21 20:11:47 +0200519 /* Create cmos checksum entry in coreboot table */
520 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000521 } else {
Lee Leahy73402172017-03-10 15:23:24 -0800522 printk(BIOS_ERR,
523 "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000524 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000525 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000526#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700527
Aaron Durbin4677f6b2018-04-03 00:08:12 -0600528 /* Serialize resource map into mem table types (LB_MEM_*) */
Aaron Durbin2d5cec62014-02-25 00:24:22 -0600529 bootmem_write_memory_table(lb_memory(head));
Eric Biederman8ca8d762003-04-22 19:02:15 +0000530
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000531 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000532 lb_mainboard(head);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200533
534 /* Record the serial ports and consoles */
Martin Roth1bf55b42017-06-24 14:16:38 -0600535#if IS_ENABLED(CONFIG_CONSOLE_SERIAL)
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200536 uart_fill_lb(head);
537#endif
Martin Roth1bf55b42017-06-24 14:16:38 -0600538#if IS_ENABLED(CONFIG_CONSOLE_USB)
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200539 lb_add_console(LB_TAG_CONSOLE_EHCI, head);
540#endif
541
Eric Biederman8ca8d762003-04-22 19:02:15 +0000542 /* Record our various random string information */
543 lb_strings(head);
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200544 lb_record_version_timestamp(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000545 /* Record our framebuffer */
546 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000547
Martin Roth1bf55b42017-06-24 14:16:38 -0600548#if IS_ENABLED(CONFIG_CHROMEOS)
Stefan Reinauer31324c62012-04-05 21:22:02 +0200549 /* Record our GPIO settings (ChromeOS specific) */
550 lb_gpios(head);
551
Martin Rothcbf2bd72013-07-09 21:51:14 -0600552 /* pass along the VDAT buffer address */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200553 lb_vdat(head);
554
555 /* pass along VBNV offsets in CMOS */
556 lb_vbnv(head);
Aaron Durbindd32a312013-03-07 23:15:06 -0600557
558 /* pass along the vboot_handoff address. */
559 lb_vboot_handoff(head);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200560#endif
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700561
Julius Werner96ed92d2017-12-01 19:12:14 -0800562 /* Add strapping IDs if available */
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700563 lb_board_id(head);
David Hendricks627b3bd2014-11-03 17:42:09 -0800564 lb_ram_code(head);
Julius Werner96ed92d2017-12-01 19:12:14 -0800565 lb_sku_id(head);
David Hendricks627b3bd2014-11-03 17:42:09 -0800566
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800567 /* Add SPI flash description if available */
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500568 if (IS_ENABLED(CONFIG_BOOT_DEVICE_SPI_FLASH))
569 lb_spi_flash(head);
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800570
Vadim Bendebury22c04682011-10-03 14:58:57 -0700571 add_cbmem_pointers(head);
572
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700573 /* Add board-specific table entries, if any. */
574 lb_board(head);
575
Furquan Shaikhefb546d2014-11-08 17:34:27 -0800576#if IS_ENABLED(CONFIG_CHROMEOS_RAMOOPS)
577 lb_ramoops(head);
578#endif
579
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100580 lb_boot_media_params(head);
581
Aaron Durbinf6ada1c2016-02-10 10:52:47 -0600582 /* Add architecture records. */
583 lb_arch_add_records(head);
584
Aaron Durbin1ca2d862015-09-30 12:26:54 -0500585 /* Add all cbmem entries into the coreboot tables. */
586 cbmem_add_records_to_cbtable(head);
587
Eric Biederman8ca8d762003-04-22 19:02:15 +0000588 /* Remember where my valid memory ranges are */
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500589 return lb_table_fini(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000590}
Aaron Durbina4db0502016-04-19 21:38:18 -0500591
592void write_tables(void)
593{
594 uintptr_t cbtable_start;
595 uintptr_t cbtable_end;
596 size_t cbtable_size;
Aaron Durbina6e90512016-04-21 14:06:17 -0500597 const size_t max_table_size = COREBOOT_TABLE_SIZE;
Aaron Durbina4db0502016-04-19 21:38:18 -0500598
599 cbtable_start = (uintptr_t)cbmem_add(CBMEM_ID_CBTABLE, max_table_size);
600
601 if (!cbtable_start) {
602 printk(BIOS_ERR, "Could not add CBMEM for coreboot table.\n");
603 return;
604 }
605
606 /* Add architecture specific tables. */
607 arch_write_tables(cbtable_start);
608
609 /* Write the coreboot table. */
610 cbtable_end = write_coreboot_table(cbtable_start);
611 cbtable_size = cbtable_end - cbtable_start;
612
613 if (cbtable_size > max_table_size) {
614 printk(BIOS_ERR, "%s: coreboot table didn't fit (%zx/%zx)\n",
615 __func__, cbtable_size, max_table_size);
616 }
617
618 printk(BIOS_DEBUG, "coreboot table: %zd bytes.\n", cbtable_size);
619
620 /* Print CBMEM sections */
621 cbmem_list();
622}