blob: f8da6580cb0b18bd828c1d57fe5cc557ac12e2cf [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>
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -070035#include <vboot/vbnv_layout.h>
Nico Huber08599912015-09-21 20:11:47 +020036#if CONFIG_USE_OPTION_TABLE
37#include <option_table.h>
38#endif
Stefan Reinauer0e672b52012-04-27 00:34:54 +020039#if CONFIG_CHROMEOS
Vladimir Serbinenko822bc652014-01-03 15:55:40 +010040#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
Aaron Durbinbc07f5d2013-03-26 13:09:39 -050046#if CONFIG_ARCH_X86
47#include <cpu/x86/mtrr.h>
48#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000049
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000050static struct lb_header *lb_table_init(unsigned long addr)
Eric Biederman8ca8d762003-04-22 19:02:15 +000051{
52 struct lb_header *header;
53
54 /* 16 byte align the address */
55 addr += 15;
56 addr &= ~15;
57
58 header = (void *)addr;
59 header->signature[0] = 'L';
60 header->signature[1] = 'B';
61 header->signature[2] = 'I';
62 header->signature[3] = 'O';
63 header->header_bytes = sizeof(*header);
64 header->header_checksum = 0;
65 header->table_bytes = 0;
66 header->table_checksum = 0;
67 header->table_entries = 0;
68 return header;
69}
70
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000071static struct lb_record *lb_first_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000072{
73 struct lb_record *rec;
74 rec = (void *)(((char *)header) + sizeof(*header));
75 return rec;
76}
77
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000078static struct lb_record *lb_last_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000079{
80 struct lb_record *rec;
81 rec = (void *)(((char *)header) + sizeof(*header) + header->table_bytes);
82 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);
89 if (header->table_entries) {
90 header->table_bytes += rec->size;
91 }
92 rec = lb_last_record(header);
93 header->table_entries++;
94 rec->tag = LB_TAG_UNUSED;
95 rec->size = sizeof(*rec);
96 return rec;
97}
98
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000099static struct lb_memory *lb_memory(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000100{
101 struct lb_record *rec;
102 struct lb_memory *mem;
103 rec = lb_new_record(header);
104 mem = (struct lb_memory *)rec;
105 mem->tag = LB_TAG_MEMORY;
106 mem->size = sizeof(*mem);
107 return mem;
108}
109
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200110void lb_add_serial(struct lb_serial *new_serial, void *data)
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000111{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200112 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000113 struct lb_serial *serial;
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200114
115 serial = (struct lb_serial *)lb_new_record(header);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000116 serial->tag = LB_TAG_SERIAL;
117 serial->size = sizeof(*serial);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200118 serial->type = new_serial->type;
119 serial->baseaddr = new_serial->baseaddr;
120 serial->baud = new_serial->baud;
Vadim Bendebury9dccf1c2015-01-09 16:54:19 -0800121 serial->regwidth = new_serial->regwidth;
Lee Leahyf92a98c2016-05-04 11:59:19 -0700122 serial->input_hertz = new_serial->input_hertz;
123 serial->uart_pci_addr = new_serial->uart_pci_addr;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000124}
125
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200126void lb_add_console(uint16_t consoletype, void *data)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000127{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200128 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000129 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000130
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000131 console = (struct lb_console *)lb_new_record(header);
132 console->tag = LB_TAG_CONSOLE;
133 console->size = sizeof(*console);
134 console->type = consoletype;
135}
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000136
robbie zhang246115e2015-10-01 16:06:47 -0700137void __attribute__((weak)) lb_framebuffer(struct lb_header *header)
Stefan Reinauerd650e992010-02-22 04:33:13 +0000138{
Ronald G. Minnich69efaa02013-02-26 10:07:40 -0800139#if CONFIG_FRAMEBUFFER_KEEP_VESA_MODE || CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT
Stefan Reinauerd650e992010-02-22 04:33:13 +0000140 void fill_lb_framebuffer(struct lb_framebuffer *framebuffer);
Gabe Blackfb8632a2012-09-30 04:47:48 -0700141 int vbe_mode_info_valid(void);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000142
Gabe Blackfb8632a2012-09-30 04:47:48 -0700143 // If there isn't any mode info to put in the table, don't ask for it
144 // to be filled with junk.
145 if (!vbe_mode_info_valid())
146 return;
Stefan Reinauerd650e992010-02-22 04:33:13 +0000147 struct lb_framebuffer *framebuffer;
148 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
Vladimir Serbinenko617f8532013-11-23 14:46:34 +0100149 fill_lb_framebuffer(framebuffer);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000150 framebuffer->tag = LB_TAG_FRAMEBUFFER;
151 framebuffer->size = sizeof(*framebuffer);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000152#endif
153}
154
Julius Wernerc445b4f2016-03-31 17:27:05 -0700155void lb_add_gpios(struct lb_gpios *gpios, const struct lb_gpio *gpio_table,
156 size_t count)
Kyösti Mälkki65784752013-12-22 03:12:38 +0200157{
Julius Wernerc445b4f2016-03-31 17:27:05 -0700158 size_t table_size = count * sizeof(struct lb_gpio);
159
160 memcpy(&gpios->gpios[gpios->count], gpio_table, table_size);
161 gpios->count += count;
162 gpios->size += table_size;
Kyösti Mälkki65784752013-12-22 03:12:38 +0200163}
164
Kyösti Mälkki5c4b8482014-05-03 13:29:06 +0300165#if CONFIG_CHROMEOS
Stefan Reinauer31324c62012-04-05 21:22:02 +0200166static void lb_gpios(struct lb_header *header)
167{
168 struct lb_gpios *gpios;
Julius Wernerc445b4f2016-03-31 17:27:05 -0700169 struct lb_gpio *g;
Vadim Bendebury274ef412014-09-22 18:48:41 -0700170
Stefan Reinauer31324c62012-04-05 21:22:02 +0200171 gpios = (struct lb_gpios *)lb_new_record(header);
172 gpios->tag = LB_TAG_GPIO;
173 gpios->size = sizeof(*gpios);
174 gpios->count = 0;
175 fill_lb_gpios(gpios);
Julius Wernerc445b4f2016-03-31 17:27:05 -0700176
177 printk(BIOS_INFO, "Passing %u GPIOs to payload:\n"
178 " NAME | PORT | POLARITY | VALUE\n",
179 gpios->count);
180 for (g = &gpios->gpios[0]; g < &gpios->gpios[gpios->count]; g++) {
181 printk(BIOS_INFO, "%16s | ", g->name);
182 if (g->port == -1)
183 printk(BIOS_INFO, " undefined | ");
184 else
185 printk(BIOS_INFO, "%#.8x | ", g->port);
186 if (g->polarity == ACTIVE_HIGH)
187 printk(BIOS_INFO, " high | ");
188 else
189 printk(BIOS_INFO, " low | ");
190 switch (g->value) {
191 case 0:
192 printk(BIOS_INFO, " high\n");
193 break;
194 case 1:
195 printk(BIOS_INFO, " low\n");
196 break;
197 default:
198 printk(BIOS_INFO, "undefined\n");
199 break;
200 }
201 }
Stefan Reinauer31324c62012-04-05 21:22:02 +0200202}
203
204static void lb_vdat(struct lb_header *header)
205{
Vladimir Serbinenko822bc652014-01-03 15:55:40 +0100206#if CONFIG_HAVE_ACPI_TABLES
Julius Werner1f5487a2013-08-27 15:38:54 -0700207 struct lb_range *vdat;
Stefan Reinauer31324c62012-04-05 21:22:02 +0200208
Julius Werner1f5487a2013-08-27 15:38:54 -0700209 vdat = (struct lb_range *)lb_new_record(header);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200210 vdat->tag = LB_TAG_VDAT;
211 vdat->size = sizeof(*vdat);
Julius Werner1f5487a2013-08-27 15:38:54 -0700212 acpi_get_vdat_info(&vdat->range_start, &vdat->range_size);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700213#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200214}
215
216static void lb_vbnv(struct lb_header *header)
217{
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700218#if CONFIG_PC80_SYSTEM
Julius Werner1f5487a2013-08-27 15:38:54 -0700219 struct lb_range *vbnv;
Stefan Reinauer31324c62012-04-05 21:22:02 +0200220
Julius Werner1f5487a2013-08-27 15:38:54 -0700221 vbnv = (struct lb_range *)lb_new_record(header);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200222 vbnv->tag = LB_TAG_VBNV;
223 vbnv->size = sizeof(*vbnv);
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -0700224 vbnv->range_start = CONFIG_VBOOT_VBNV_OFFSET + 14;
225 vbnv->range_size = VBOOT_VBNV_BLOCK_SIZE;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700226#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200227}
Aaron Durbindd32a312013-03-07 23:15:06 -0600228
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -0700229#if CONFIG_VBOOT
Aaron Durbindd32a312013-03-07 23:15:06 -0600230static void lb_vboot_handoff(struct lb_header *header)
231{
232 void *addr;
233 uint32_t size;
Julius Werner1f5487a2013-08-27 15:38:54 -0700234 struct lb_range *vbho;
Aaron Durbindd32a312013-03-07 23:15:06 -0600235
236 if (vboot_get_handoff_info(&addr, &size))
237 return;
238
Julius Werner1f5487a2013-08-27 15:38:54 -0700239 vbho = (struct lb_range *)lb_new_record(header);
Aaron Durbindd32a312013-03-07 23:15:06 -0600240 vbho->tag = LB_TAB_VBOOT_HANDOFF;
241 vbho->size = sizeof(*vbho);
Julius Werner1f5487a2013-08-27 15:38:54 -0700242 vbho->range_start = (intptr_t)addr;
243 vbho->range_size = size;
Aaron Durbindd32a312013-03-07 23:15:06 -0600244}
245#else
246static inline void lb_vboot_handoff(struct lb_header *header) {}
Furquan Shaikh2a12e2e2016-07-25 11:48:03 -0700247#endif /* CONFIG_VBOOT */
Aaron Durbindd32a312013-03-07 23:15:06 -0600248#endif /* CONFIG_CHROMEOS */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200249
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700250static void lb_board_id(struct lb_header *header)
251{
Stefan Reinauerd06258c2015-03-26 16:29:00 -0700252#if CONFIG_BOARD_ID_AUTO || CONFIG_BOARD_ID_MANUAL
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700253 struct lb_board_id *bid;
254
255 bid = (struct lb_board_id *)lb_new_record(header);
256
257 bid->tag = LB_TAG_BOARD_ID;
258 bid->size = sizeof(*bid);
259 bid->board_id = board_id();
260#endif
261}
262
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100263static void lb_boot_media_params(struct lb_header *header)
264{
265 struct lb_boot_media_params *bmp;
266 struct cbfs_props props;
267 const struct region_device *boot_dev;
268 struct region_device fmrd;
269
270 boot_device_init();
271
272 if (cbfs_boot_region_properties(&props))
273 return;
274
275 boot_dev = boot_device_ro();
276 if (boot_dev == NULL)
277 return;
278
279 bmp = (struct lb_boot_media_params *)lb_new_record(header);
280 bmp->tag = LB_TAG_BOOT_MEDIA_PARAMS;
281 bmp->size = sizeof(*bmp);
282
283 bmp->cbfs_offset = props.offset;
284 bmp->cbfs_size = props.size;
285 bmp->boot_media_size = region_device_sz(boot_dev);
286
287 bmp->fmap_offset = ~(uint64_t)0;
288 if (find_fmap_directory(&fmrd) == 0) {
289 bmp->fmap_offset = region_device_offset(&fmrd);
290 }
291}
292
David Hendricks627b3bd2014-11-03 17:42:09 -0800293static void lb_ram_code(struct lb_header *header)
294{
295#if IS_ENABLED(CONFIG_RAM_CODE_SUPPORT)
296 struct lb_ram_code *code;
297
298 code = (struct lb_ram_code *)lb_new_record(header);
299
300 code->tag = LB_TAG_RAM_CODE;
301 code->size = sizeof(*code);
302 code->ram_code = ram_code();
303#endif
304}
305
Vadim Bendebury22c04682011-10-03 14:58:57 -0700306static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700307{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700308 /*
309 * These CBMEM sections' addresses are included in the coreboot table
310 * with the appropriate tags.
311 */
312 const struct section_id {
313 int cbmem_id;
314 int table_tag;
315 } section_ids[] = {
316 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
Duncan Laurie16e899b2013-12-12 10:43:21 -0800317 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE},
318 {CBMEM_ID_ACPI_GNVS, LB_TAG_ACPI_GNVS},
Hung-Te Linb15a0d02015-07-13 15:49:57 +0800319 {CBMEM_ID_VPD, LB_TAG_VPD},
Vadim Bendebury86b0c8b2014-10-23 15:15:45 -0700320 {CBMEM_ID_WIFI_CALIBRATION, LB_TAG_WIFI_CALIBRATION}
Vadim Bendebury22c04682011-10-03 14:58:57 -0700321 };
322 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700323
Vadim Bendebury22c04682011-10-03 14:58:57 -0700324 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
325 const struct section_id *sid = section_ids + i;
326 struct lb_cbmem_ref *cbmem_ref;
327 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700328
Vadim Bendebury22c04682011-10-03 14:58:57 -0700329 if (!cbmem_addr)
330 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700331
Vadim Bendebury22c04682011-10-03 14:58:57 -0700332 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
333 if (!cbmem_ref) {
334 printk(BIOS_ERR, "No more room in coreboot table!\n");
335 break;
336 }
337 cbmem_ref->tag = sid->table_tag;
338 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800339 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700340 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700341}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700342
Stefan Reinauere3778572010-01-30 09:47:18 +0000343static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000344{
345 struct lb_record *rec;
346 struct lb_mainboard *mainboard;
347 rec = lb_new_record(header);
348 mainboard = (struct lb_mainboard *)rec;
349 mainboard->tag = LB_TAG_MAINBOARD;
350
351 mainboard->size = (sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000352 strlen(mainboard_vendor) + 1 +
Eric Biederman8ca8d762003-04-22 19:02:15 +0000353 strlen(mainboard_part_number) + 1 +
354 3) & ~3;
355
356 mainboard->vendor_idx = 0;
357 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
358
359 memcpy(mainboard->strings + mainboard->vendor_idx,
360 mainboard_vendor, strlen(mainboard_vendor) + 1);
361 memcpy(mainboard->strings + mainboard->part_number_idx,
362 mainboard_part_number, strlen(mainboard_part_number) + 1);
363
364 return mainboard;
365}
366
Nico Huber08599912015-09-21 20:11:47 +0200367#if CONFIG_USE_OPTION_TABLE
368static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
369{
370 struct lb_record *rec;
371 struct cmos_checksum *cmos_checksum;
372 rec = lb_new_record(header);
373 cmos_checksum = (struct cmos_checksum *)rec;
374 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
375
376 cmos_checksum->size = (sizeof(*cmos_checksum));
377
378 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
379 cmos_checksum->range_end = ( LB_CKS_RANGE_END * 8 ) + 7;
380 cmos_checksum->location = LB_CKS_LOC * 8;
381 cmos_checksum->type = CHECKSUM_PCBIOS;
382
383 return cmos_checksum;
384}
385#endif
386
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000387static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000388{
389 static const struct {
390 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000391 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000392 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000393 { LB_TAG_VERSION, coreboot_version, },
394 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
395 { LB_TAG_BUILD, coreboot_build, },
396 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000397 };
Eric Biederman52685572003-05-19 19:16:21 +0000398 unsigned int i;
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000399 for(i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000400 struct lb_string *rec;
401 size_t len;
402 rec = (struct lb_string *)lb_new_record(header);
403 len = strlen(strings[i].string);
404 rec->tag = strings[i].tag;
405 rec->size = (sizeof(*rec) + len + 1 + 3) & ~3;
406 memcpy(rec->string, strings[i].string, len+1);
407 }
408
409}
410
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200411static void lb_record_version_timestamp(struct lb_header *header)
412{
413 struct lb_timestamp *rec;
414 rec = (struct lb_timestamp *)lb_new_record(header);
415 rec->tag = LB_TAG_VERSION_TIMESTAMP;
416 rec->size = sizeof(*rec);
417 rec->timestamp = coreboot_version_timestamp;
418}
419
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700420void __attribute__((weak)) lb_board(struct lb_header *header) { /* NOOP */ }
421
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500422/*
423 * It's possible that the system is using a SPI flash as the boot device,
424 * however it is not probing for devices to fill in specifics. In that
425 * case don't provide any information as the correct information is
426 * not known.
427 */
428void __attribute__((weak)) lb_spi_flash(struct lb_header *header) { /* NOOP */ }
429
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000430static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000431{
432 struct lb_record *rec;
433 struct lb_forward *forward;
434 rec = lb_new_record(header);
435 forward = (struct lb_forward *)rec;
436 forward->tag = LB_TAG_FORWARD;
437 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000438 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000439 return forward;
440}
441
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500442static unsigned long lb_table_fini(struct lb_header *head)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000443{
444 struct lb_record *rec, *first_rec;
445 rec = lb_last_record(head);
446 if (head->table_entries) {
447 head->table_bytes += rec->size;
448 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000449
Eric Biederman8ca8d762003-04-22 19:02:15 +0000450 first_rec = lb_first_record(head);
451 head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
452 head->header_checksum = 0;
453 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700454 printk(BIOS_DEBUG,
455 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
456 head, head->table_bytes, head->table_checksum);
457 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000458}
459
Aaron Durbin8984af82016-04-19 17:06:09 -0500460size_t write_coreboot_forwarding_table(uintptr_t entry, uintptr_t target)
461{
462 struct lb_header *head;
463
464 printk(BIOS_DEBUG, "Writing table forward entry at 0x%p\n",
465 (void *)entry);
466
467 head = lb_table_init(entry);
468 lb_forward(head, (struct lb_header*)target);
469
470 return (uintptr_t)lb_table_fini(head) - entry;
471}
472
Aaron Durbina4db0502016-04-19 21:38:18 -0500473static uintptr_t write_coreboot_table(uintptr_t rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000474{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000475 struct lb_header *head;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000476
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700477 printk(BIOS_DEBUG, "Writing coreboot table at 0x%08lx\n",
Aaron Durbina4db0502016-04-19 21:38:18 -0500478 (long)rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000479
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000480 head = lb_table_init(rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000481
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700482#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerba430642007-04-06 12:14:51 +0000483 {
Aaron Durbin899d13d2015-05-15 23:39:23 -0500484 struct cmos_option_table *option_table =
485 cbfs_boot_map_with_leak("cmos_layout.bin",
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100486 CBFS_COMPONENT_CMOS_LAYOUT, NULL);
Patrick Georgi24479372011-01-18 13:56:36 +0000487 if (option_table) {
488 struct lb_record *rec_dest = lb_new_record(head);
489 /* Copy the option config table, it's already a lb_record... */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000490 memcpy(rec_dest, option_table, option_table->size);
Nico Huber08599912015-09-21 20:11:47 +0200491 /* Create cmos checksum entry in coreboot table */
492 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000493 } else {
494 printk(BIOS_ERR, "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000495 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000496 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000497#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700498
Aaron Durbin49048022014-02-18 21:55:02 -0600499 /* Initialize the memory map at boot time. */
500 bootmem_init();
Stefan Reinauer14e22772010-04-27 06:56:47 +0000501
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500502 /* No other memory areas can be added after the memory table has been
503 * committed as the entries won't show up in the serialize mem table. */
Aaron Durbin2d5cec62014-02-25 00:24:22 -0600504 bootmem_write_memory_table(lb_memory(head));
Eric Biederman8ca8d762003-04-22 19:02:15 +0000505
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000506 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000507 lb_mainboard(head);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200508
509 /* Record the serial ports and consoles */
Kyösti Mälkkiafa7b132014-02-13 17:16:22 +0200510#if CONFIG_CONSOLE_SERIAL
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200511 uart_fill_lb(head);
512#endif
513#if CONFIG_CONSOLE_USB
514 lb_add_console(LB_TAG_CONSOLE_EHCI, head);
515#endif
516
Eric Biederman8ca8d762003-04-22 19:02:15 +0000517 /* Record our various random string information */
518 lb_strings(head);
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200519 lb_record_version_timestamp(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000520 /* Record our framebuffer */
521 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000522
Stefan Reinauer31324c62012-04-05 21:22:02 +0200523#if CONFIG_CHROMEOS
524 /* Record our GPIO settings (ChromeOS specific) */
525 lb_gpios(head);
526
Martin Rothcbf2bd72013-07-09 21:51:14 -0600527 /* pass along the VDAT buffer address */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200528 lb_vdat(head);
529
530 /* pass along VBNV offsets in CMOS */
531 lb_vbnv(head);
Aaron Durbindd32a312013-03-07 23:15:06 -0600532
533 /* pass along the vboot_handoff address. */
534 lb_vboot_handoff(head);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200535#endif
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700536
537 /* Add board ID if available */
538 lb_board_id(head);
539
David Hendricks627b3bd2014-11-03 17:42:09 -0800540 /* Add RAM config if available */
541 lb_ram_code(head);
542
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800543 /* Add SPI flash description if available */
Aaron Durbinc0a823c2016-08-11 14:51:38 -0500544 if (IS_ENABLED(CONFIG_BOOT_DEVICE_SPI_FLASH))
545 lb_spi_flash(head);
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800546
Vadim Bendebury22c04682011-10-03 14:58:57 -0700547 add_cbmem_pointers(head);
548
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700549 /* Add board-specific table entries, if any. */
550 lb_board(head);
551
Furquan Shaikhefb546d2014-11-08 17:34:27 -0800552#if IS_ENABLED(CONFIG_CHROMEOS_RAMOOPS)
553 lb_ramoops(head);
554#endif
555
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100556 lb_boot_media_params(head);
557
Aaron Durbinf6ada1c2016-02-10 10:52:47 -0600558 /* Add architecture records. */
559 lb_arch_add_records(head);
560
Aaron Durbin1ca2d862015-09-30 12:26:54 -0500561 /* Add all cbmem entries into the coreboot tables. */
562 cbmem_add_records_to_cbtable(head);
563
Eric Biederman8ca8d762003-04-22 19:02:15 +0000564 /* Remember where my valid memory ranges are */
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500565 return lb_table_fini(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000566}
Aaron Durbina4db0502016-04-19 21:38:18 -0500567
568void write_tables(void)
569{
570 uintptr_t cbtable_start;
571 uintptr_t cbtable_end;
572 size_t cbtable_size;
Aaron Durbina6e90512016-04-21 14:06:17 -0500573 const size_t max_table_size = COREBOOT_TABLE_SIZE;
Aaron Durbina4db0502016-04-19 21:38:18 -0500574
575 cbtable_start = (uintptr_t)cbmem_add(CBMEM_ID_CBTABLE, max_table_size);
576
577 if (!cbtable_start) {
578 printk(BIOS_ERR, "Could not add CBMEM for coreboot table.\n");
579 return;
580 }
581
582 /* Add architecture specific tables. */
583 arch_write_tables(cbtable_start);
584
585 /* Write the coreboot table. */
586 cbtable_end = write_coreboot_table(cbtable_start);
587 cbtable_size = cbtable_end - cbtable_start;
588
589 if (cbtable_size > max_table_size) {
590 printk(BIOS_ERR, "%s: coreboot table didn't fit (%zx/%zx)\n",
591 __func__, cbtable_size, max_table_size);
592 }
593
594 printk(BIOS_DEBUG, "coreboot table: %zd bytes.\n", cbtable_size);
595
596 /* Print CBMEM sections */
597 cbmem_list();
598}