blob: afb674387657899c89730b120f99323669a5f9ad [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.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
20 * MA 02110-1301 USA
21 */
22
Eric Biederman8ca8d762003-04-22 19:02:15 +000023#include <console/console.h>
Kyösti Mälkki1d7541f2014-02-17 21:34:42 +020024#include <console/uart.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000025#include <ip_checksum.h>
Stefan Reinauerca374d42008-01-18 16:16:45 +000026#include <boot/coreboot_tables.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000027#include <string.h>
28#include <version.h>
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -070029#include <boardid.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000030#include <device/device.h>
31#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>
Stefan Reinauer0e672b52012-04-27 00:34:54 +020035#if CONFIG_CHROMEOS
Vladimir Serbinenko822bc652014-01-03 15:55:40 +010036#if CONFIG_HAVE_ACPI_TABLES
Stefan Reinauer0e672b52012-04-27 00:34:54 +020037#include <arch/acpi.h>
Stefan Reinauer3e4e3032013-03-20 14:08:04 -070038#endif
Aaron Durbindd32a312013-03-07 23:15:06 -060039#include <vendorcode/google/chromeos/chromeos.h>
Stefan Reinauer0e672b52012-04-27 00:34:54 +020040#include <vendorcode/google/chromeos/gnvs.h>
41#endif
Aaron Durbinbc07f5d2013-03-26 13:09:39 -050042#if CONFIG_ARCH_X86
43#include <cpu/x86/mtrr.h>
44#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000045
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000046static struct lb_header *lb_table_init(unsigned long addr)
Eric Biederman8ca8d762003-04-22 19:02:15 +000047{
48 struct lb_header *header;
49
50 /* 16 byte align the address */
51 addr += 15;
52 addr &= ~15;
53
54 header = (void *)addr;
55 header->signature[0] = 'L';
56 header->signature[1] = 'B';
57 header->signature[2] = 'I';
58 header->signature[3] = 'O';
59 header->header_bytes = sizeof(*header);
60 header->header_checksum = 0;
61 header->table_bytes = 0;
62 header->table_checksum = 0;
63 header->table_entries = 0;
64 return header;
65}
66
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000067static struct lb_record *lb_first_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000068{
69 struct lb_record *rec;
70 rec = (void *)(((char *)header) + sizeof(*header));
71 return rec;
72}
73
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000074static struct lb_record *lb_last_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000075{
76 struct lb_record *rec;
77 rec = (void *)(((char *)header) + sizeof(*header) + header->table_bytes);
78 return rec;
79}
80
Julius Wernerb8fad3d2013-08-27 15:48:32 -070081struct lb_record *lb_new_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000082{
83 struct lb_record *rec;
84 rec = lb_last_record(header);
85 if (header->table_entries) {
86 header->table_bytes += rec->size;
87 }
88 rec = lb_last_record(header);
89 header->table_entries++;
90 rec->tag = LB_TAG_UNUSED;
91 rec->size = sizeof(*rec);
92 return rec;
93}
94
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000095static struct lb_memory *lb_memory(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000096{
97 struct lb_record *rec;
98 struct lb_memory *mem;
99 rec = lb_new_record(header);
100 mem = (struct lb_memory *)rec;
101 mem->tag = LB_TAG_MEMORY;
102 mem->size = sizeof(*mem);
103 return mem;
104}
105
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200106void lb_add_serial(struct lb_serial *new_serial, void *data)
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000107{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200108 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000109 struct lb_serial *serial;
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200110
111 serial = (struct lb_serial *)lb_new_record(header);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000112 serial->tag = LB_TAG_SERIAL;
113 serial->size = sizeof(*serial);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200114 serial->type = new_serial->type;
115 serial->baseaddr = new_serial->baseaddr;
116 serial->baud = new_serial->baud;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000117}
118
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200119void lb_add_console(uint16_t consoletype, void *data)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000120{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200121 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000122 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000123
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000124 console = (struct lb_console *)lb_new_record(header);
125 console->tag = LB_TAG_CONSOLE;
126 console->size = sizeof(*console);
127 console->type = consoletype;
128}
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000129
Stefan Reinauerd650e992010-02-22 04:33:13 +0000130static void lb_framebuffer(struct lb_header *header)
131{
Ronald G. Minnich69efaa02013-02-26 10:07:40 -0800132#if CONFIG_FRAMEBUFFER_KEEP_VESA_MODE || CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT
Stefan Reinauerd650e992010-02-22 04:33:13 +0000133 void fill_lb_framebuffer(struct lb_framebuffer *framebuffer);
Gabe Blackfb8632a2012-09-30 04:47:48 -0700134 int vbe_mode_info_valid(void);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000135
Gabe Blackfb8632a2012-09-30 04:47:48 -0700136 // If there isn't any mode info to put in the table, don't ask for it
137 // to be filled with junk.
138 if (!vbe_mode_info_valid())
139 return;
Stefan Reinauerd650e992010-02-22 04:33:13 +0000140 struct lb_framebuffer *framebuffer;
141 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
Vladimir Serbinenko617f8532013-11-23 14:46:34 +0100142 fill_lb_framebuffer(framebuffer);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000143 framebuffer->tag = LB_TAG_FRAMEBUFFER;
144 framebuffer->size = sizeof(*framebuffer);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000145#endif
146}
147
Kyösti Mälkki65784752013-12-22 03:12:38 +0200148void fill_lb_gpio(struct lb_gpio *gpio, int num,
149 int polarity, const char *name, int value)
150{
151 memset(gpio, 0, sizeof(*gpio));
152 gpio->port = num;
153 gpio->polarity = polarity;
154 if (value >= 0)
155 gpio->value = value;
156 strncpy((char *)gpio->name, name, GPIO_MAX_NAME_LENGTH);
157}
158
Kyösti Mälkki5c4b8482014-05-03 13:29:06 +0300159#if CONFIG_CHROMEOS
Stefan Reinauer31324c62012-04-05 21:22:02 +0200160static void lb_gpios(struct lb_header *header)
161{
162 struct lb_gpios *gpios;
Vadim Bendebury274ef412014-09-22 18:48:41 -0700163
Stefan Reinauer31324c62012-04-05 21:22:02 +0200164 gpios = (struct lb_gpios *)lb_new_record(header);
165 gpios->tag = LB_TAG_GPIO;
166 gpios->size = sizeof(*gpios);
167 gpios->count = 0;
168 fill_lb_gpios(gpios);
169}
170
171static void lb_vdat(struct lb_header *header)
172{
Vladimir Serbinenko822bc652014-01-03 15:55:40 +0100173#if CONFIG_HAVE_ACPI_TABLES
Julius Werner1f5487a2013-08-27 15:38:54 -0700174 struct lb_range *vdat;
Stefan Reinauer31324c62012-04-05 21:22:02 +0200175
Julius Werner1f5487a2013-08-27 15:38:54 -0700176 vdat = (struct lb_range *)lb_new_record(header);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200177 vdat->tag = LB_TAG_VDAT;
178 vdat->size = sizeof(*vdat);
Julius Werner1f5487a2013-08-27 15:38:54 -0700179 acpi_get_vdat_info(&vdat->range_start, &vdat->range_size);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700180#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200181}
182
183static void lb_vbnv(struct lb_header *header)
184{
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700185#if CONFIG_PC80_SYSTEM
Julius Werner1f5487a2013-08-27 15:38:54 -0700186 struct lb_range *vbnv;
Stefan Reinauer31324c62012-04-05 21:22:02 +0200187
Julius Werner1f5487a2013-08-27 15:38:54 -0700188 vbnv = (struct lb_range *)lb_new_record(header);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200189 vbnv->tag = LB_TAG_VBNV;
190 vbnv->size = sizeof(*vbnv);
Julius Werner1f5487a2013-08-27 15:38:54 -0700191 vbnv->range_start = CONFIG_VBNV_OFFSET + 14;
192 vbnv->range_size = CONFIG_VBNV_SIZE;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700193#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200194}
Aaron Durbindd32a312013-03-07 23:15:06 -0600195
Daisuke Nojiri79cac092014-06-30 08:51:39 -0700196#if CONFIG_VBOOT_VERIFY_FIRMWARE || CONFIG_VBOOT2_VERIFY_FIRMWARE
Aaron Durbindd32a312013-03-07 23:15:06 -0600197static void lb_vboot_handoff(struct lb_header *header)
198{
199 void *addr;
200 uint32_t size;
Julius Werner1f5487a2013-08-27 15:38:54 -0700201 struct lb_range *vbho;
Aaron Durbindd32a312013-03-07 23:15:06 -0600202
203 if (vboot_get_handoff_info(&addr, &size))
204 return;
205
Julius Werner1f5487a2013-08-27 15:38:54 -0700206 vbho = (struct lb_range *)lb_new_record(header);
Aaron Durbindd32a312013-03-07 23:15:06 -0600207 vbho->tag = LB_TAB_VBOOT_HANDOFF;
208 vbho->size = sizeof(*vbho);
Julius Werner1f5487a2013-08-27 15:38:54 -0700209 vbho->range_start = (intptr_t)addr;
210 vbho->range_size = size;
Aaron Durbindd32a312013-03-07 23:15:06 -0600211}
212#else
213static inline void lb_vboot_handoff(struct lb_header *header) {}
214#endif /* CONFIG_VBOOT_VERIFY_FIRMWARE */
215#endif /* CONFIG_CHROMEOS */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200216
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700217static void lb_board_id(struct lb_header *header)
218{
219#if CONFIG_BOARD_ID_SUPPORT
220 struct lb_board_id *bid;
221
222 bid = (struct lb_board_id *)lb_new_record(header);
223
224 bid->tag = LB_TAG_BOARD_ID;
225 bid->size = sizeof(*bid);
226 bid->board_id = board_id();
227#endif
228}
229
David Hendricks627b3bd2014-11-03 17:42:09 -0800230static void lb_ram_code(struct lb_header *header)
231{
232#if IS_ENABLED(CONFIG_RAM_CODE_SUPPORT)
233 struct lb_ram_code *code;
234
235 code = (struct lb_ram_code *)lb_new_record(header);
236
237 code->tag = LB_TAG_RAM_CODE;
238 code->size = sizeof(*code);
239 code->ram_code = ram_code();
240#endif
241}
242
Vadim Bendebury22c04682011-10-03 14:58:57 -0700243static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700244{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700245 /*
246 * These CBMEM sections' addresses are included in the coreboot table
247 * with the appropriate tags.
248 */
249 const struct section_id {
250 int cbmem_id;
251 int table_tag;
252 } section_ids[] = {
253 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
Duncan Laurie16e899b2013-12-12 10:43:21 -0800254 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE},
255 {CBMEM_ID_ACPI_GNVS, LB_TAG_ACPI_GNVS},
Vadim Bendebury86b0c8b2014-10-23 15:15:45 -0700256 {CBMEM_ID_WIFI_CALIBRATION, LB_TAG_WIFI_CALIBRATION}
Vadim Bendebury22c04682011-10-03 14:58:57 -0700257 };
258 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700259
Vadim Bendebury22c04682011-10-03 14:58:57 -0700260 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
261 const struct section_id *sid = section_ids + i;
262 struct lb_cbmem_ref *cbmem_ref;
263 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700264
Vadim Bendebury22c04682011-10-03 14:58:57 -0700265 if (!cbmem_addr)
266 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700267
Vadim Bendebury22c04682011-10-03 14:58:57 -0700268 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
269 if (!cbmem_ref) {
270 printk(BIOS_ERR, "No more room in coreboot table!\n");
271 break;
272 }
273 cbmem_ref->tag = sid->table_tag;
274 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800275 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700276 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700277}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700278
Stefan Reinauere3778572010-01-30 09:47:18 +0000279static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000280{
281 struct lb_record *rec;
282 struct lb_mainboard *mainboard;
283 rec = lb_new_record(header);
284 mainboard = (struct lb_mainboard *)rec;
285 mainboard->tag = LB_TAG_MAINBOARD;
286
287 mainboard->size = (sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000288 strlen(mainboard_vendor) + 1 +
Eric Biederman8ca8d762003-04-22 19:02:15 +0000289 strlen(mainboard_part_number) + 1 +
290 3) & ~3;
291
292 mainboard->vendor_idx = 0;
293 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
294
295 memcpy(mainboard->strings + mainboard->vendor_idx,
296 mainboard_vendor, strlen(mainboard_vendor) + 1);
297 memcpy(mainboard->strings + mainboard->part_number_idx,
298 mainboard_part_number, strlen(mainboard_part_number) + 1);
299
300 return mainboard;
301}
302
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000303static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000304{
305 static const struct {
306 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000307 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000308 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000309 { LB_TAG_VERSION, coreboot_version, },
310 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
311 { LB_TAG_BUILD, coreboot_build, },
312 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000313 };
Eric Biederman52685572003-05-19 19:16:21 +0000314 unsigned int i;
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000315 for(i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000316 struct lb_string *rec;
317 size_t len;
318 rec = (struct lb_string *)lb_new_record(header);
319 len = strlen(strings[i].string);
320 rec->tag = strings[i].tag;
321 rec->size = (sizeof(*rec) + len + 1 + 3) & ~3;
322 memcpy(rec->string, strings[i].string, len+1);
323 }
324
325}
326
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200327static void lb_record_version_timestamp(struct lb_header *header)
328{
329 struct lb_timestamp *rec;
330 rec = (struct lb_timestamp *)lb_new_record(header);
331 rec->tag = LB_TAG_VERSION_TIMESTAMP;
332 rec->size = sizeof(*rec);
333 rec->timestamp = coreboot_version_timestamp;
334}
335
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700336void __attribute__((weak)) lb_board(struct lb_header *header) { /* NOOP */ }
337
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000338static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000339{
340 struct lb_record *rec;
341 struct lb_forward *forward;
342 rec = lb_new_record(header);
343 forward = (struct lb_forward *)rec;
344 forward->tag = LB_TAG_FORWARD;
345 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000346 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000347 return forward;
348}
349
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500350static unsigned long lb_table_fini(struct lb_header *head)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000351{
352 struct lb_record *rec, *first_rec;
353 rec = lb_last_record(head);
354 if (head->table_entries) {
355 head->table_bytes += rec->size;
356 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000357
Eric Biederman8ca8d762003-04-22 19:02:15 +0000358 first_rec = lb_first_record(head);
359 head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
360 head->header_checksum = 0;
361 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700362 printk(BIOS_DEBUG,
363 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
364 head, head->table_bytes, head->table_checksum);
365 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000366}
367
Stefan Reinauer14e22772010-04-27 06:56:47 +0000368unsigned long write_coreboot_table(
369 unsigned long low_table_start, unsigned long low_table_end,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000370 unsigned long rom_table_start, unsigned long rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000371{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000372 struct lb_header *head;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000373
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700374 if (low_table_start || low_table_end) {
375 printk(BIOS_DEBUG, "Writing table forward entry at 0x%08lx\n",
376 low_table_end);
377 head = lb_table_init(low_table_end);
378 lb_forward(head, (struct lb_header*)rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000379
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500380 low_table_end = (unsigned long) lb_table_fini(head);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700381 printk(BIOS_DEBUG, "Table forward entry ends at 0x%08lx.\n",
382 low_table_end);
383 low_table_end = ALIGN(low_table_end, 4096);
384 printk(BIOS_DEBUG, "... aligned to 0x%08lx\n", low_table_end);
385 }
386
387 printk(BIOS_DEBUG, "Writing coreboot table at 0x%08lx\n",
388 rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000389
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000390 head = lb_table_init(rom_table_end);
391 rom_table_end = (unsigned long)head;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000392 printk(BIOS_DEBUG, "rom_table_end = 0x%08lx\n", rom_table_end);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700393 rom_table_end = ALIGN(rom_table_end, (64 * 1024));
394 printk(BIOS_DEBUG, "... aligned to 0x%08lx\n", rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000395
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700396#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerba430642007-04-06 12:14:51 +0000397 {
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800398 struct cmos_option_table *option_table = cbfs_get_file_content(
399 CBFS_DEFAULT_MEDIA, "cmos_layout.bin",
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100400 CBFS_COMPONENT_CMOS_LAYOUT, NULL);
Patrick Georgi24479372011-01-18 13:56:36 +0000401 if (option_table) {
402 struct lb_record *rec_dest = lb_new_record(head);
403 /* Copy the option config table, it's already a lb_record... */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000404 memcpy(rec_dest, option_table, option_table->size);
Patrick Georgicef3b892011-01-18 14:28:45 +0000405 } else {
406 printk(BIOS_ERR, "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000407 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000408 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000409#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700410
Aaron Durbin49048022014-02-18 21:55:02 -0600411 /* Initialize the memory map at boot time. */
412 bootmem_init();
Stefan Reinauer14e22772010-04-27 06:56:47 +0000413
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700414 if (low_table_start || low_table_end) {
Aaron Durbin49048022014-02-18 21:55:02 -0600415 uint64_t size = low_table_end - low_table_start;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700416 /* Record the mptable and the the lb_table.
417 * (This will be adjusted later) */
Aaron Durbin49048022014-02-18 21:55:02 -0600418 bootmem_add_range(low_table_start, size, LB_MEM_TABLE);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700419 }
Eric Biederman6e53f502004-10-27 08:53:57 +0000420
Aaron Durbindf3a1092013-03-13 12:41:44 -0500421 /* Record the pirq table, acpi tables, and maybe the mptable. However,
422 * these only need to be added when the rom_table is sitting below
423 * 1MiB. If it isn't that means high tables are being written.
424 * The code below handles high tables correctly. */
Aaron Durbin49048022014-02-18 21:55:02 -0600425 if (rom_table_end <= (1 << 20)) {
426 uint64_t size = rom_table_end - rom_table_start;
427 bootmem_add_range(rom_table_start, size, LB_MEM_TABLE);
428 }
Patrick Georgibccaafc2009-04-28 12:57:25 +0000429
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500430 /* No other memory areas can be added after the memory table has been
431 * committed as the entries won't show up in the serialize mem table. */
Aaron Durbin2d5cec62014-02-25 00:24:22 -0600432 bootmem_write_memory_table(lb_memory(head));
Eric Biederman8ca8d762003-04-22 19:02:15 +0000433
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000434 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000435 lb_mainboard(head);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200436
437 /* Record the serial ports and consoles */
Kyösti Mälkkiafa7b132014-02-13 17:16:22 +0200438#if CONFIG_CONSOLE_SERIAL
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200439 uart_fill_lb(head);
440#endif
441#if CONFIG_CONSOLE_USB
442 lb_add_console(LB_TAG_CONSOLE_EHCI, head);
443#endif
444
Eric Biederman8ca8d762003-04-22 19:02:15 +0000445 /* Record our various random string information */
446 lb_strings(head);
Vladimir Serbinenko6ead2532014-08-23 01:08:09 +0200447 lb_record_version_timestamp(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000448 /* Record our framebuffer */
449 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000450
Stefan Reinauer31324c62012-04-05 21:22:02 +0200451#if CONFIG_CHROMEOS
452 /* Record our GPIO settings (ChromeOS specific) */
453 lb_gpios(head);
454
Martin Rothcbf2bd72013-07-09 21:51:14 -0600455 /* pass along the VDAT buffer address */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200456 lb_vdat(head);
457
458 /* pass along VBNV offsets in CMOS */
459 lb_vbnv(head);
Aaron Durbindd32a312013-03-07 23:15:06 -0600460
461 /* pass along the vboot_handoff address. */
462 lb_vboot_handoff(head);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200463#endif
Vadim Bendeburyb0c302f2014-07-28 16:03:07 -0700464
465 /* Add board ID if available */
466 lb_board_id(head);
467
David Hendricks627b3bd2014-11-03 17:42:09 -0800468 /* Add RAM config if available */
469 lb_ram_code(head);
470
Vadim Bendebury22c04682011-10-03 14:58:57 -0700471 add_cbmem_pointers(head);
472
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700473 /* Add board-specific table entries, if any. */
474 lb_board(head);
475
Furquan Shaikhefb546d2014-11-08 17:34:27 -0800476#if IS_ENABLED(CONFIG_CHROMEOS_RAMOOPS)
477 lb_ramoops(head);
478#endif
479
Eric Biederman8ca8d762003-04-22 19:02:15 +0000480 /* Remember where my valid memory ranges are */
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500481 return lb_table_fini(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000482}