blob: 58c6f48cbf0a50769721e6502e53fa314c1aa3c9 [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
Eric Biederman8ca8d762003-04-22 19:02:15 +000018#include <console/console.h>
Kyösti Mälkki1d7541f2014-02-17 21:34:42 +020019#include <console/uart.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000020#include <ip_checksum.h>
Stefan Reinauerca374d42008-01-18 16:16:45 +000021#include <boot/coreboot_tables.h>
Aaron Durbin5481c962016-04-19 20:37:51 -050022#include <boot/tables.h>
Patrick Georgifb5d5b12015-07-14 17:15:51 +010023#include <boot_device.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000024#include <string.h>
25#include <version.h>
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -070026#include <boardid.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000027#include <device/device.h>
Patrick Georgifb5d5b12015-07-14 17:15:51 +010028#include <fmap.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000029#include <stdlib.h>
Duncan Laurie66ecdc52011-08-15 16:35:10 -070030#include <cbfs.h>
Vadim Bendebury2e438672011-09-23 09:56:11 -070031#include <cbmem.h>
Aaron Durbin49048022014-02-18 21:55:02 -060032#include <bootmem.h>
Dan Ehrenberga5aac762015-01-08 10:29:19 -080033#include <spi_flash.h>
Nico Huber08599912015-09-21 20:11:47 +020034#if CONFIG_USE_OPTION_TABLE
35#include <option_table.h>
36#endif
Stefan Reinauer0e672b52012-04-27 00:34:54 +020037#if CONFIG_CHROMEOS
Vladimir Serbinenko822bc652014-01-03 15:55:40 +010038#if CONFIG_HAVE_ACPI_TABLES
Stefan Reinauer0e672b52012-04-27 00:34:54 +020039#include <arch/acpi.h>
Stefan Reinauer3e4e3032013-03-20 14:08:04 -070040#endif
Aaron Durbindd32a312013-03-07 23:15:06 -060041#include <vendorcode/google/chromeos/chromeos.h>
Stefan Reinauer0e672b52012-04-27 00:34:54 +020042#include <vendorcode/google/chromeos/gnvs.h>
Duncan Laurie3cbf8d92016-01-28 10:26:31 -080043#include <vendorcode/google/chromeos/vbnv_layout.h>
Stefan Reinauer0e672b52012-04-27 00:34:54 +020044#endif
Aaron Durbinbc07f5d2013-03-26 13:09:39 -050045#if CONFIG_ARCH_X86
46#include <cpu/x86/mtrr.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;
80 rec = (void *)(((char *)header) + sizeof(*header) + header->table_bytes);
81 return rec;
82}
83
Julius Wernerb8fad3d2013-08-27 15:48:32 -070084struct lb_record *lb_new_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000085{
86 struct lb_record *rec;
87 rec = lb_last_record(header);
88 if (header->table_entries) {
89 header->table_bytes += rec->size;
90 }
91 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;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000121}
122
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200123void lb_add_console(uint16_t consoletype, void *data)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000124{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200125 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000126 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000127
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000128 console = (struct lb_console *)lb_new_record(header);
129 console->tag = LB_TAG_CONSOLE;
130 console->size = sizeof(*console);
131 console->type = consoletype;
132}
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000133
robbie zhang246115e2015-10-01 16:06:47 -0700134void __attribute__((weak)) lb_framebuffer(struct lb_header *header)
Stefan Reinauerd650e992010-02-22 04:33:13 +0000135{
Ronald G. Minnich69efaa02013-02-26 10:07:40 -0800136#if CONFIG_FRAMEBUFFER_KEEP_VESA_MODE || CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT
Stefan Reinauerd650e992010-02-22 04:33:13 +0000137 void fill_lb_framebuffer(struct lb_framebuffer *framebuffer);
Gabe Blackfb8632a2012-09-30 04:47:48 -0700138 int vbe_mode_info_valid(void);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000139
Gabe Blackfb8632a2012-09-30 04:47:48 -0700140 // If there isn't any mode info to put in the table, don't ask for it
141 // to be filled with junk.
142 if (!vbe_mode_info_valid())
143 return;
Stefan Reinauerd650e992010-02-22 04:33:13 +0000144 struct lb_framebuffer *framebuffer;
145 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
Vladimir Serbinenko617f8532013-11-23 14:46:34 +0100146 fill_lb_framebuffer(framebuffer);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000147 framebuffer->tag = LB_TAG_FRAMEBUFFER;
148 framebuffer->size = sizeof(*framebuffer);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000149#endif
150}
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
Kyösti Mälkki5c4b8482014-05-03 13:29:06 +0300162#if 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:
189 printk(BIOS_INFO, " high\n");
190 break;
191 case 1:
192 printk(BIOS_INFO, " low\n");
193 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{
Vladimir Serbinenko822bc652014-01-03 15:55:40 +0100203#if 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{
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700215#if 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);
Julius Werner1f5487a2013-08-27 15:38:54 -0700221 vbnv->range_start = CONFIG_VBNV_OFFSET + 14;
Duncan Laurie3cbf8d92016-01-28 10:26:31 -0800222 vbnv->range_size = 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
Aaron Durbin1124cec2015-04-22 10:41:42 -0500226#if CONFIG_VBOOT_VERIFY_FIRMWARE
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) {}
244#endif /* CONFIG_VBOOT_VERIFY_FIRMWARE */
245#endif /* CONFIG_CHROMEOS */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200246
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700247static void lb_board_id(struct lb_header *header)
248{
Stefan Reinauerd06258c2015-03-26 16:29:00 -0700249#if CONFIG_BOARD_ID_AUTO || CONFIG_BOARD_ID_MANUAL
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700250 struct lb_board_id *bid;
251
252 bid = (struct lb_board_id *)lb_new_record(header);
253
254 bid->tag = LB_TAG_BOARD_ID;
255 bid->size = sizeof(*bid);
256 bid->board_id = board_id();
257#endif
258}
259
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100260static void lb_boot_media_params(struct lb_header *header)
261{
262 struct lb_boot_media_params *bmp;
263 struct cbfs_props props;
264 const struct region_device *boot_dev;
265 struct region_device fmrd;
266
267 boot_device_init();
268
269 if (cbfs_boot_region_properties(&props))
270 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
280 bmp->cbfs_offset = props.offset;
281 bmp->cbfs_size = props.size;
282 bmp->boot_media_size = region_device_sz(boot_dev);
283
284 bmp->fmap_offset = ~(uint64_t)0;
285 if (find_fmap_directory(&fmrd) == 0) {
286 bmp->fmap_offset = region_device_offset(&fmrd);
287 }
288}
289
David Hendricks627b3bd2014-11-03 17:42:09 -0800290static void lb_ram_code(struct lb_header *header)
291{
292#if IS_ENABLED(CONFIG_RAM_CODE_SUPPORT)
293 struct lb_ram_code *code;
294
295 code = (struct lb_ram_code *)lb_new_record(header);
296
297 code->tag = LB_TAG_RAM_CODE;
298 code->size = sizeof(*code);
299 code->ram_code = ram_code();
300#endif
301}
302
Vadim Bendebury22c04682011-10-03 14:58:57 -0700303static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700304{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700305 /*
306 * These CBMEM sections' addresses are included in the coreboot table
307 * with the appropriate tags.
308 */
309 const struct section_id {
310 int cbmem_id;
311 int table_tag;
312 } section_ids[] = {
313 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
Duncan Laurie16e899b2013-12-12 10:43:21 -0800314 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE},
315 {CBMEM_ID_ACPI_GNVS, LB_TAG_ACPI_GNVS},
Hung-Te Linb15a0d02015-07-13 15:49:57 +0800316 {CBMEM_ID_VPD, LB_TAG_VPD},
Vadim Bendebury86b0c8b2014-10-23 15:15:45 -0700317 {CBMEM_ID_WIFI_CALIBRATION, LB_TAG_WIFI_CALIBRATION}
Vadim Bendebury22c04682011-10-03 14:58:57 -0700318 };
319 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700320
Vadim Bendebury22c04682011-10-03 14:58:57 -0700321 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
322 const struct section_id *sid = section_ids + i;
323 struct lb_cbmem_ref *cbmem_ref;
324 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700325
Vadim Bendebury22c04682011-10-03 14:58:57 -0700326 if (!cbmem_addr)
327 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700328
Vadim Bendebury22c04682011-10-03 14:58:57 -0700329 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
330 if (!cbmem_ref) {
331 printk(BIOS_ERR, "No more room in coreboot table!\n");
332 break;
333 }
334 cbmem_ref->tag = sid->table_tag;
335 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800336 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700337 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700338}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700339
Stefan Reinauere3778572010-01-30 09:47:18 +0000340static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000341{
342 struct lb_record *rec;
343 struct lb_mainboard *mainboard;
344 rec = lb_new_record(header);
345 mainboard = (struct lb_mainboard *)rec;
346 mainboard->tag = LB_TAG_MAINBOARD;
347
348 mainboard->size = (sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000349 strlen(mainboard_vendor) + 1 +
Eric Biederman8ca8d762003-04-22 19:02:15 +0000350 strlen(mainboard_part_number) + 1 +
351 3) & ~3;
352
353 mainboard->vendor_idx = 0;
354 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
355
356 memcpy(mainboard->strings + mainboard->vendor_idx,
357 mainboard_vendor, strlen(mainboard_vendor) + 1);
358 memcpy(mainboard->strings + mainboard->part_number_idx,
359 mainboard_part_number, strlen(mainboard_part_number) + 1);
360
361 return mainboard;
362}
363
Nico Huber08599912015-09-21 20:11:47 +0200364#if CONFIG_USE_OPTION_TABLE
365static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
366{
367 struct lb_record *rec;
368 struct cmos_checksum *cmos_checksum;
369 rec = lb_new_record(header);
370 cmos_checksum = (struct cmos_checksum *)rec;
371 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
372
373 cmos_checksum->size = (sizeof(*cmos_checksum));
374
375 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
376 cmos_checksum->range_end = ( LB_CKS_RANGE_END * 8 ) + 7;
377 cmos_checksum->location = LB_CKS_LOC * 8;
378 cmos_checksum->type = CHECKSUM_PCBIOS;
379
380 return cmos_checksum;
381}
382#endif
383
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000384static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000385{
386 static const struct {
387 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000388 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000389 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000390 { LB_TAG_VERSION, coreboot_version, },
391 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
392 { LB_TAG_BUILD, coreboot_build, },
393 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000394 };
Eric Biederman52685572003-05-19 19:16:21 +0000395 unsigned int i;
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000396 for(i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000397 struct lb_string *rec;
398 size_t len;
399 rec = (struct lb_string *)lb_new_record(header);
400 len = strlen(strings[i].string);
401 rec->tag = strings[i].tag;
402 rec->size = (sizeof(*rec) + len + 1 + 3) & ~3;
403 memcpy(rec->string, strings[i].string, len+1);
404 }
405
406}
407
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200408static void lb_record_version_timestamp(struct lb_header *header)
409{
410 struct lb_timestamp *rec;
411 rec = (struct lb_timestamp *)lb_new_record(header);
412 rec->tag = LB_TAG_VERSION_TIMESTAMP;
413 rec->size = sizeof(*rec);
414 rec->timestamp = coreboot_version_timestamp;
415}
416
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700417void __attribute__((weak)) lb_board(struct lb_header *header) { /* NOOP */ }
418
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000419static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000420{
421 struct lb_record *rec;
422 struct lb_forward *forward;
423 rec = lb_new_record(header);
424 forward = (struct lb_forward *)rec;
425 forward->tag = LB_TAG_FORWARD;
426 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000427 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000428 return forward;
429}
430
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500431static unsigned long lb_table_fini(struct lb_header *head)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000432{
433 struct lb_record *rec, *first_rec;
434 rec = lb_last_record(head);
435 if (head->table_entries) {
436 head->table_bytes += rec->size;
437 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000438
Eric Biederman8ca8d762003-04-22 19:02:15 +0000439 first_rec = lb_first_record(head);
440 head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
441 head->header_checksum = 0;
442 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700443 printk(BIOS_DEBUG,
444 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
445 head, head->table_bytes, head->table_checksum);
446 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000447}
448
Aaron Durbin8984af82016-04-19 17:06:09 -0500449size_t write_coreboot_forwarding_table(uintptr_t entry, uintptr_t target)
450{
451 struct lb_header *head;
452
453 printk(BIOS_DEBUG, "Writing table forward entry at 0x%p\n",
454 (void *)entry);
455
456 head = lb_table_init(entry);
457 lb_forward(head, (struct lb_header*)target);
458
459 return (uintptr_t)lb_table_fini(head) - entry;
460}
461
Aaron Durbina4db0502016-04-19 21:38:18 -0500462static uintptr_t write_coreboot_table(uintptr_t rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000463{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000464 struct lb_header *head;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000465
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700466 printk(BIOS_DEBUG, "Writing coreboot table at 0x%08lx\n",
Aaron Durbina4db0502016-04-19 21:38:18 -0500467 (long)rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000468
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000469 head = lb_table_init(rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000470
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700471#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerba430642007-04-06 12:14:51 +0000472 {
Aaron Durbin899d13d2015-05-15 23:39:23 -0500473 struct cmos_option_table *option_table =
474 cbfs_boot_map_with_leak("cmos_layout.bin",
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100475 CBFS_COMPONENT_CMOS_LAYOUT, NULL);
Patrick Georgi24479372011-01-18 13:56:36 +0000476 if (option_table) {
477 struct lb_record *rec_dest = lb_new_record(head);
478 /* Copy the option config table, it's already a lb_record... */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000479 memcpy(rec_dest, option_table, option_table->size);
Nico Huber08599912015-09-21 20:11:47 +0200480 /* Create cmos checksum entry in coreboot table */
481 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000482 } else {
483 printk(BIOS_ERR, "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000484 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000485 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000486#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700487
Aaron Durbin49048022014-02-18 21:55:02 -0600488 /* Initialize the memory map at boot time. */
489 bootmem_init();
Stefan Reinauer14e22772010-04-27 06:56:47 +0000490
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500491 /* No other memory areas can be added after the memory table has been
492 * committed as the entries won't show up in the serialize mem table. */
Aaron Durbin2d5cec62014-02-25 00:24:22 -0600493 bootmem_write_memory_table(lb_memory(head));
Eric Biederman8ca8d762003-04-22 19:02:15 +0000494
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000495 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000496 lb_mainboard(head);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200497
498 /* Record the serial ports and consoles */
Kyösti Mälkkiafa7b132014-02-13 17:16:22 +0200499#if CONFIG_CONSOLE_SERIAL
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200500 uart_fill_lb(head);
501#endif
502#if CONFIG_CONSOLE_USB
503 lb_add_console(LB_TAG_CONSOLE_EHCI, head);
504#endif
505
Eric Biederman8ca8d762003-04-22 19:02:15 +0000506 /* Record our various random string information */
507 lb_strings(head);
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200508 lb_record_version_timestamp(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000509 /* Record our framebuffer */
510 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000511
Stefan Reinauer31324c62012-04-05 21:22:02 +0200512#if CONFIG_CHROMEOS
513 /* Record our GPIO settings (ChromeOS specific) */
514 lb_gpios(head);
515
Martin Rothcbf2bd72013-07-09 21:51:14 -0600516 /* pass along the VDAT buffer address */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200517 lb_vdat(head);
518
519 /* pass along VBNV offsets in CMOS */
520 lb_vbnv(head);
Aaron Durbindd32a312013-03-07 23:15:06 -0600521
522 /* pass along the vboot_handoff address. */
523 lb_vboot_handoff(head);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200524#endif
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700525
526 /* Add board ID if available */
527 lb_board_id(head);
528
David Hendricks627b3bd2014-11-03 17:42:09 -0800529 /* Add RAM config if available */
530 lb_ram_code(head);
531
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800532#if IS_ENABLED(CONFIG_SPI_FLASH)
533 /* Add SPI flash description if available */
534 lb_spi_flash(head);
535#endif
536
Vadim Bendebury22c04682011-10-03 14:58:57 -0700537 add_cbmem_pointers(head);
538
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700539 /* Add board-specific table entries, if any. */
540 lb_board(head);
541
Furquan Shaikhefb546d2014-11-08 17:34:27 -0800542#if IS_ENABLED(CONFIG_CHROMEOS_RAMOOPS)
543 lb_ramoops(head);
544#endif
545
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100546 lb_boot_media_params(head);
547
Aaron Durbinf6ada1c2016-02-10 10:52:47 -0600548 /* Add architecture records. */
549 lb_arch_add_records(head);
550
Aaron Durbin1ca2d862015-09-30 12:26:54 -0500551 /* Add all cbmem entries into the coreboot tables. */
552 cbmem_add_records_to_cbtable(head);
553
Eric Biederman8ca8d762003-04-22 19:02:15 +0000554 /* Remember where my valid memory ranges are */
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500555 return lb_table_fini(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000556}
Aaron Durbina4db0502016-04-19 21:38:18 -0500557
558void write_tables(void)
559{
560 uintptr_t cbtable_start;
561 uintptr_t cbtable_end;
562 size_t cbtable_size;
563 const size_t max_table_size = CONFIG_COREBOOT_TABLE_SIZE;
564
565 cbtable_start = (uintptr_t)cbmem_add(CBMEM_ID_CBTABLE, max_table_size);
566
567 if (!cbtable_start) {
568 printk(BIOS_ERR, "Could not add CBMEM for coreboot table.\n");
569 return;
570 }
571
572 /* Add architecture specific tables. */
573 arch_write_tables(cbtable_start);
574
575 /* Write the coreboot table. */
576 cbtable_end = write_coreboot_table(cbtable_start);
577 cbtable_size = cbtable_end - cbtable_start;
578
579 if (cbtable_size > max_table_size) {
580 printk(BIOS_ERR, "%s: coreboot table didn't fit (%zx/%zx)\n",
581 __func__, cbtable_size, max_table_size);
582 }
583
584 printk(BIOS_DEBUG, "coreboot table: %zd bytes.\n", cbtable_size);
585
586 /* Print CBMEM sections */
587 cbmem_list();
588}