blob: 86f22c9689fa63b99958109c7781b66c119b278e [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>
Patrick Georgifb5d5b12015-07-14 17:15:51 +010022#include <boot_device.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000023#include <string.h>
24#include <version.h>
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -070025#include <boardid.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000026#include <device/device.h>
Patrick Georgifb5d5b12015-07-14 17:15:51 +010027#include <fmap.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000028#include <stdlib.h>
Duncan Laurie66ecdc52011-08-15 16:35:10 -070029#include <cbfs.h>
Vadim Bendebury2e438672011-09-23 09:56:11 -070030#include <cbmem.h>
Aaron Durbin49048022014-02-18 21:55:02 -060031#include <bootmem.h>
Dan Ehrenberga5aac762015-01-08 10:29:19 -080032#include <spi_flash.h>
Nico Huber08599912015-09-21 20:11:47 +020033#if CONFIG_USE_OPTION_TABLE
34#include <option_table.h>
35#endif
Stefan Reinauer0e672b52012-04-27 00:34:54 +020036#if CONFIG_CHROMEOS
Vladimir Serbinenko822bc652014-01-03 15:55:40 +010037#if CONFIG_HAVE_ACPI_TABLES
Stefan Reinauer0e672b52012-04-27 00:34:54 +020038#include <arch/acpi.h>
Stefan Reinauer3e4e3032013-03-20 14:08:04 -070039#endif
Aaron Durbindd32a312013-03-07 23:15:06 -060040#include <vendorcode/google/chromeos/chromeos.h>
Stefan Reinauer0e672b52012-04-27 00:34:54 +020041#include <vendorcode/google/chromeos/gnvs.h>
Duncan Laurie3cbf8d92016-01-28 10:26:31 -080042#include <vendorcode/google/chromeos/vbnv_layout.h>
Stefan Reinauer0e672b52012-04-27 00:34:54 +020043#endif
Aaron Durbinbc07f5d2013-03-26 13:09:39 -050044#if CONFIG_ARCH_X86
45#include <cpu/x86/mtrr.h>
46#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000047
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000048static struct lb_header *lb_table_init(unsigned long addr)
Eric Biederman8ca8d762003-04-22 19:02:15 +000049{
50 struct lb_header *header;
51
52 /* 16 byte align the address */
53 addr += 15;
54 addr &= ~15;
55
56 header = (void *)addr;
57 header->signature[0] = 'L';
58 header->signature[1] = 'B';
59 header->signature[2] = 'I';
60 header->signature[3] = 'O';
61 header->header_bytes = sizeof(*header);
62 header->header_checksum = 0;
63 header->table_bytes = 0;
64 header->table_checksum = 0;
65 header->table_entries = 0;
66 return header;
67}
68
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000069static struct lb_record *lb_first_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000070{
71 struct lb_record *rec;
72 rec = (void *)(((char *)header) + sizeof(*header));
73 return rec;
74}
75
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000076static struct lb_record *lb_last_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000077{
78 struct lb_record *rec;
79 rec = (void *)(((char *)header) + sizeof(*header) + header->table_bytes);
80 return rec;
81}
82
Julius Wernerb8fad3d2013-08-27 15:48:32 -070083struct lb_record *lb_new_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000084{
85 struct lb_record *rec;
86 rec = lb_last_record(header);
87 if (header->table_entries) {
88 header->table_bytes += rec->size;
89 }
90 rec = lb_last_record(header);
91 header->table_entries++;
92 rec->tag = LB_TAG_UNUSED;
93 rec->size = sizeof(*rec);
94 return rec;
95}
96
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000097static struct lb_memory *lb_memory(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000098{
99 struct lb_record *rec;
100 struct lb_memory *mem;
101 rec = lb_new_record(header);
102 mem = (struct lb_memory *)rec;
103 mem->tag = LB_TAG_MEMORY;
104 mem->size = sizeof(*mem);
105 return mem;
106}
107
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200108void lb_add_serial(struct lb_serial *new_serial, void *data)
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000109{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200110 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000111 struct lb_serial *serial;
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200112
113 serial = (struct lb_serial *)lb_new_record(header);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000114 serial->tag = LB_TAG_SERIAL;
115 serial->size = sizeof(*serial);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200116 serial->type = new_serial->type;
117 serial->baseaddr = new_serial->baseaddr;
118 serial->baud = new_serial->baud;
Vadim Bendebury9dccf1c2015-01-09 16:54:19 -0800119 serial->regwidth = new_serial->regwidth;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000120}
121
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200122void lb_add_console(uint16_t consoletype, void *data)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000123{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200124 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000125 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000126
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000127 console = (struct lb_console *)lb_new_record(header);
128 console->tag = LB_TAG_CONSOLE;
129 console->size = sizeof(*console);
130 console->type = consoletype;
131}
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000132
robbie zhang246115e2015-10-01 16:06:47 -0700133void __attribute__((weak)) lb_framebuffer(struct lb_header *header)
Stefan Reinauerd650e992010-02-22 04:33:13 +0000134{
Ronald G. Minnich69efaa02013-02-26 10:07:40 -0800135#if CONFIG_FRAMEBUFFER_KEEP_VESA_MODE || CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT
Stefan Reinauerd650e992010-02-22 04:33:13 +0000136 void fill_lb_framebuffer(struct lb_framebuffer *framebuffer);
Gabe Blackfb8632a2012-09-30 04:47:48 -0700137 int vbe_mode_info_valid(void);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000138
Gabe Blackfb8632a2012-09-30 04:47:48 -0700139 // If there isn't any mode info to put in the table, don't ask for it
140 // to be filled with junk.
141 if (!vbe_mode_info_valid())
142 return;
Stefan Reinauerd650e992010-02-22 04:33:13 +0000143 struct lb_framebuffer *framebuffer;
144 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
Vladimir Serbinenko617f8532013-11-23 14:46:34 +0100145 fill_lb_framebuffer(framebuffer);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000146 framebuffer->tag = LB_TAG_FRAMEBUFFER;
147 framebuffer->size = sizeof(*framebuffer);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000148#endif
149}
150
Kyösti Mälkki65784752013-12-22 03:12:38 +0200151void fill_lb_gpio(struct lb_gpio *gpio, int num,
152 int polarity, const char *name, int value)
153{
154 memset(gpio, 0, sizeof(*gpio));
155 gpio->port = num;
156 gpio->polarity = polarity;
157 if (value >= 0)
158 gpio->value = value;
159 strncpy((char *)gpio->name, name, GPIO_MAX_NAME_LENGTH);
160}
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;
Vadim Bendebury274ef412014-09-22 18:48:41 -0700166
Stefan Reinauer31324c62012-04-05 21:22:02 +0200167 gpios = (struct lb_gpios *)lb_new_record(header);
168 gpios->tag = LB_TAG_GPIO;
169 gpios->size = sizeof(*gpios);
170 gpios->count = 0;
171 fill_lb_gpios(gpios);
172}
173
174static void lb_vdat(struct lb_header *header)
175{
Vladimir Serbinenko822bc652014-01-03 15:55:40 +0100176#if CONFIG_HAVE_ACPI_TABLES
Julius Werner1f5487a2013-08-27 15:38:54 -0700177 struct lb_range *vdat;
Stefan Reinauer31324c62012-04-05 21:22:02 +0200178
Julius Werner1f5487a2013-08-27 15:38:54 -0700179 vdat = (struct lb_range *)lb_new_record(header);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200180 vdat->tag = LB_TAG_VDAT;
181 vdat->size = sizeof(*vdat);
Julius Werner1f5487a2013-08-27 15:38:54 -0700182 acpi_get_vdat_info(&vdat->range_start, &vdat->range_size);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700183#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200184}
185
186static void lb_vbnv(struct lb_header *header)
187{
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700188#if CONFIG_PC80_SYSTEM
Julius Werner1f5487a2013-08-27 15:38:54 -0700189 struct lb_range *vbnv;
Stefan Reinauer31324c62012-04-05 21:22:02 +0200190
Julius Werner1f5487a2013-08-27 15:38:54 -0700191 vbnv = (struct lb_range *)lb_new_record(header);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200192 vbnv->tag = LB_TAG_VBNV;
193 vbnv->size = sizeof(*vbnv);
Julius Werner1f5487a2013-08-27 15:38:54 -0700194 vbnv->range_start = CONFIG_VBNV_OFFSET + 14;
Duncan Laurie3cbf8d92016-01-28 10:26:31 -0800195 vbnv->range_size = VBNV_BLOCK_SIZE;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700196#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200197}
Aaron Durbindd32a312013-03-07 23:15:06 -0600198
Aaron Durbin1124cec2015-04-22 10:41:42 -0500199#if CONFIG_VBOOT_VERIFY_FIRMWARE
Aaron Durbindd32a312013-03-07 23:15:06 -0600200static void lb_vboot_handoff(struct lb_header *header)
201{
202 void *addr;
203 uint32_t size;
Julius Werner1f5487a2013-08-27 15:38:54 -0700204 struct lb_range *vbho;
Aaron Durbindd32a312013-03-07 23:15:06 -0600205
206 if (vboot_get_handoff_info(&addr, &size))
207 return;
208
Julius Werner1f5487a2013-08-27 15:38:54 -0700209 vbho = (struct lb_range *)lb_new_record(header);
Aaron Durbindd32a312013-03-07 23:15:06 -0600210 vbho->tag = LB_TAB_VBOOT_HANDOFF;
211 vbho->size = sizeof(*vbho);
Julius Werner1f5487a2013-08-27 15:38:54 -0700212 vbho->range_start = (intptr_t)addr;
213 vbho->range_size = size;
Aaron Durbindd32a312013-03-07 23:15:06 -0600214}
215#else
216static inline void lb_vboot_handoff(struct lb_header *header) {}
217#endif /* CONFIG_VBOOT_VERIFY_FIRMWARE */
218#endif /* CONFIG_CHROMEOS */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200219
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700220static void lb_board_id(struct lb_header *header)
221{
Stefan Reinauerd06258c2015-03-26 16:29:00 -0700222#if CONFIG_BOARD_ID_AUTO || CONFIG_BOARD_ID_MANUAL
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700223 struct lb_board_id *bid;
224
225 bid = (struct lb_board_id *)lb_new_record(header);
226
227 bid->tag = LB_TAG_BOARD_ID;
228 bid->size = sizeof(*bid);
229 bid->board_id = board_id();
230#endif
231}
232
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100233static void lb_boot_media_params(struct lb_header *header)
234{
235 struct lb_boot_media_params *bmp;
236 struct cbfs_props props;
237 const struct region_device *boot_dev;
238 struct region_device fmrd;
239
240 boot_device_init();
241
242 if (cbfs_boot_region_properties(&props))
243 return;
244
245 boot_dev = boot_device_ro();
246 if (boot_dev == NULL)
247 return;
248
249 bmp = (struct lb_boot_media_params *)lb_new_record(header);
250 bmp->tag = LB_TAG_BOOT_MEDIA_PARAMS;
251 bmp->size = sizeof(*bmp);
252
253 bmp->cbfs_offset = props.offset;
254 bmp->cbfs_size = props.size;
255 bmp->boot_media_size = region_device_sz(boot_dev);
256
257 bmp->fmap_offset = ~(uint64_t)0;
258 if (find_fmap_directory(&fmrd) == 0) {
259 bmp->fmap_offset = region_device_offset(&fmrd);
260 }
261}
262
David Hendricks627b3bd2014-11-03 17:42:09 -0800263static void lb_ram_code(struct lb_header *header)
264{
265#if IS_ENABLED(CONFIG_RAM_CODE_SUPPORT)
266 struct lb_ram_code *code;
267
268 code = (struct lb_ram_code *)lb_new_record(header);
269
270 code->tag = LB_TAG_RAM_CODE;
271 code->size = sizeof(*code);
272 code->ram_code = ram_code();
273#endif
274}
275
Vadim Bendebury22c04682011-10-03 14:58:57 -0700276static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700277{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700278 /*
279 * These CBMEM sections' addresses are included in the coreboot table
280 * with the appropriate tags.
281 */
282 const struct section_id {
283 int cbmem_id;
284 int table_tag;
285 } section_ids[] = {
286 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
Duncan Laurie16e899b2013-12-12 10:43:21 -0800287 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE},
288 {CBMEM_ID_ACPI_GNVS, LB_TAG_ACPI_GNVS},
Hung-Te Linb15a0d02015-07-13 15:49:57 +0800289 {CBMEM_ID_VPD, LB_TAG_VPD},
Vadim Bendebury86b0c8b2014-10-23 15:15:45 -0700290 {CBMEM_ID_WIFI_CALIBRATION, LB_TAG_WIFI_CALIBRATION}
Vadim Bendebury22c04682011-10-03 14:58:57 -0700291 };
292 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700293
Vadim Bendebury22c04682011-10-03 14:58:57 -0700294 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
295 const struct section_id *sid = section_ids + i;
296 struct lb_cbmem_ref *cbmem_ref;
297 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700298
Vadim Bendebury22c04682011-10-03 14:58:57 -0700299 if (!cbmem_addr)
300 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700301
Vadim Bendebury22c04682011-10-03 14:58:57 -0700302 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
303 if (!cbmem_ref) {
304 printk(BIOS_ERR, "No more room in coreboot table!\n");
305 break;
306 }
307 cbmem_ref->tag = sid->table_tag;
308 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800309 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700310 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700311}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700312
Stefan Reinauere3778572010-01-30 09:47:18 +0000313static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000314{
315 struct lb_record *rec;
316 struct lb_mainboard *mainboard;
317 rec = lb_new_record(header);
318 mainboard = (struct lb_mainboard *)rec;
319 mainboard->tag = LB_TAG_MAINBOARD;
320
321 mainboard->size = (sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000322 strlen(mainboard_vendor) + 1 +
Eric Biederman8ca8d762003-04-22 19:02:15 +0000323 strlen(mainboard_part_number) + 1 +
324 3) & ~3;
325
326 mainboard->vendor_idx = 0;
327 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
328
329 memcpy(mainboard->strings + mainboard->vendor_idx,
330 mainboard_vendor, strlen(mainboard_vendor) + 1);
331 memcpy(mainboard->strings + mainboard->part_number_idx,
332 mainboard_part_number, strlen(mainboard_part_number) + 1);
333
334 return mainboard;
335}
336
Nico Huber08599912015-09-21 20:11:47 +0200337#if CONFIG_USE_OPTION_TABLE
338static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
339{
340 struct lb_record *rec;
341 struct cmos_checksum *cmos_checksum;
342 rec = lb_new_record(header);
343 cmos_checksum = (struct cmos_checksum *)rec;
344 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
345
346 cmos_checksum->size = (sizeof(*cmos_checksum));
347
348 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
349 cmos_checksum->range_end = ( LB_CKS_RANGE_END * 8 ) + 7;
350 cmos_checksum->location = LB_CKS_LOC * 8;
351 cmos_checksum->type = CHECKSUM_PCBIOS;
352
353 return cmos_checksum;
354}
355#endif
356
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000357static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000358{
359 static const struct {
360 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000361 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000362 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000363 { LB_TAG_VERSION, coreboot_version, },
364 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
365 { LB_TAG_BUILD, coreboot_build, },
366 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000367 };
Eric Biederman52685572003-05-19 19:16:21 +0000368 unsigned int i;
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000369 for(i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000370 struct lb_string *rec;
371 size_t len;
372 rec = (struct lb_string *)lb_new_record(header);
373 len = strlen(strings[i].string);
374 rec->tag = strings[i].tag;
375 rec->size = (sizeof(*rec) + len + 1 + 3) & ~3;
376 memcpy(rec->string, strings[i].string, len+1);
377 }
378
379}
380
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200381static void lb_record_version_timestamp(struct lb_header *header)
382{
383 struct lb_timestamp *rec;
384 rec = (struct lb_timestamp *)lb_new_record(header);
385 rec->tag = LB_TAG_VERSION_TIMESTAMP;
386 rec->size = sizeof(*rec);
387 rec->timestamp = coreboot_version_timestamp;
388}
389
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700390void __attribute__((weak)) lb_board(struct lb_header *header) { /* NOOP */ }
391
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000392static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000393{
394 struct lb_record *rec;
395 struct lb_forward *forward;
396 rec = lb_new_record(header);
397 forward = (struct lb_forward *)rec;
398 forward->tag = LB_TAG_FORWARD;
399 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000400 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000401 return forward;
402}
403
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500404static unsigned long lb_table_fini(struct lb_header *head)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000405{
406 struct lb_record *rec, *first_rec;
407 rec = lb_last_record(head);
408 if (head->table_entries) {
409 head->table_bytes += rec->size;
410 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000411
Eric Biederman8ca8d762003-04-22 19:02:15 +0000412 first_rec = lb_first_record(head);
413 head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
414 head->header_checksum = 0;
415 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700416 printk(BIOS_DEBUG,
417 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
418 head, head->table_bytes, head->table_checksum);
419 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000420}
421
Stefan Reinauer14e22772010-04-27 06:56:47 +0000422unsigned long write_coreboot_table(
423 unsigned long low_table_start, unsigned long low_table_end,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000424 unsigned long rom_table_start, unsigned long rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000425{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000426 struct lb_header *head;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000427
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700428 if (low_table_start || low_table_end) {
429 printk(BIOS_DEBUG, "Writing table forward entry at 0x%08lx\n",
430 low_table_end);
431 head = lb_table_init(low_table_end);
432 lb_forward(head, (struct lb_header*)rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000433
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500434 low_table_end = (unsigned long) lb_table_fini(head);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700435 printk(BIOS_DEBUG, "Table forward entry ends at 0x%08lx.\n",
436 low_table_end);
437 low_table_end = ALIGN(low_table_end, 4096);
438 printk(BIOS_DEBUG, "... aligned to 0x%08lx\n", low_table_end);
439 }
440
441 printk(BIOS_DEBUG, "Writing coreboot table at 0x%08lx\n",
442 rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000443
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000444 head = lb_table_init(rom_table_end);
445 rom_table_end = (unsigned long)head;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000446 printk(BIOS_DEBUG, "rom_table_end = 0x%08lx\n", rom_table_end);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700447 rom_table_end = ALIGN(rom_table_end, (64 * 1024));
448 printk(BIOS_DEBUG, "... aligned to 0x%08lx\n", rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000449
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700450#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerba430642007-04-06 12:14:51 +0000451 {
Aaron Durbin899d13d2015-05-15 23:39:23 -0500452 struct cmos_option_table *option_table =
453 cbfs_boot_map_with_leak("cmos_layout.bin",
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100454 CBFS_COMPONENT_CMOS_LAYOUT, NULL);
Patrick Georgi24479372011-01-18 13:56:36 +0000455 if (option_table) {
456 struct lb_record *rec_dest = lb_new_record(head);
457 /* Copy the option config table, it's already a lb_record... */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000458 memcpy(rec_dest, option_table, option_table->size);
Nico Huber08599912015-09-21 20:11:47 +0200459 /* Create cmos checksum entry in coreboot table */
460 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000461 } else {
462 printk(BIOS_ERR, "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000463 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000464 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000465#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700466
Aaron Durbin49048022014-02-18 21:55:02 -0600467 /* Initialize the memory map at boot time. */
468 bootmem_init();
Stefan Reinauer14e22772010-04-27 06:56:47 +0000469
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700470 if (low_table_start || low_table_end) {
Aaron Durbin49048022014-02-18 21:55:02 -0600471 uint64_t size = low_table_end - low_table_start;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700472 /* Record the mptable and the the lb_table.
473 * (This will be adjusted later) */
Aaron Durbin49048022014-02-18 21:55:02 -0600474 bootmem_add_range(low_table_start, size, LB_MEM_TABLE);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700475 }
Eric Biederman6e53f502004-10-27 08:53:57 +0000476
Aaron Durbindf3a1092013-03-13 12:41:44 -0500477 /* Record the pirq table, acpi tables, and maybe the mptable. However,
478 * these only need to be added when the rom_table is sitting below
479 * 1MiB. If it isn't that means high tables are being written.
480 * The code below handles high tables correctly. */
Aaron Durbin49048022014-02-18 21:55:02 -0600481 if (rom_table_end <= (1 << 20)) {
482 uint64_t size = rom_table_end - rom_table_start;
483 bootmem_add_range(rom_table_start, size, LB_MEM_TABLE);
484 }
Patrick Georgibccaafc2009-04-28 12:57:25 +0000485
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500486 /* No other memory areas can be added after the memory table has been
487 * committed as the entries won't show up in the serialize mem table. */
Aaron Durbin2d5cec62014-02-25 00:24:22 -0600488 bootmem_write_memory_table(lb_memory(head));
Eric Biederman8ca8d762003-04-22 19:02:15 +0000489
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000490 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000491 lb_mainboard(head);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200492
493 /* Record the serial ports and consoles */
Kyösti Mälkkiafa7b132014-02-13 17:16:22 +0200494#if CONFIG_CONSOLE_SERIAL
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200495 uart_fill_lb(head);
496#endif
497#if CONFIG_CONSOLE_USB
498 lb_add_console(LB_TAG_CONSOLE_EHCI, head);
499#endif
500
Eric Biederman8ca8d762003-04-22 19:02:15 +0000501 /* Record our various random string information */
502 lb_strings(head);
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200503 lb_record_version_timestamp(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000504 /* Record our framebuffer */
505 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000506
Stefan Reinauer31324c62012-04-05 21:22:02 +0200507#if CONFIG_CHROMEOS
508 /* Record our GPIO settings (ChromeOS specific) */
509 lb_gpios(head);
510
Martin Rothcbf2bd72013-07-09 21:51:14 -0600511 /* pass along the VDAT buffer address */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200512 lb_vdat(head);
513
514 /* pass along VBNV offsets in CMOS */
515 lb_vbnv(head);
Aaron Durbindd32a312013-03-07 23:15:06 -0600516
517 /* pass along the vboot_handoff address. */
518 lb_vboot_handoff(head);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200519#endif
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700520
521 /* Add board ID if available */
522 lb_board_id(head);
523
David Hendricks627b3bd2014-11-03 17:42:09 -0800524 /* Add RAM config if available */
525 lb_ram_code(head);
526
Dan Ehrenberga5aac762015-01-08 10:29:19 -0800527#if IS_ENABLED(CONFIG_SPI_FLASH)
528 /* Add SPI flash description if available */
529 lb_spi_flash(head);
530#endif
531
Vadim Bendebury22c04682011-10-03 14:58:57 -0700532 add_cbmem_pointers(head);
533
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700534 /* Add board-specific table entries, if any. */
535 lb_board(head);
536
Furquan Shaikhefb546d2014-11-08 17:34:27 -0800537#if IS_ENABLED(CONFIG_CHROMEOS_RAMOOPS)
538 lb_ramoops(head);
539#endif
540
Patrick Georgifb5d5b12015-07-14 17:15:51 +0100541 lb_boot_media_params(head);
542
Aaron Durbin1ca2d862015-09-30 12:26:54 -0500543 /* Add all cbmem entries into the coreboot tables. */
544 cbmem_add_records_to_cbtable(head);
545
Eric Biederman8ca8d762003-04-22 19:02:15 +0000546 /* Remember where my valid memory ranges are */
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500547 return lb_table_fini(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000548}