blob: 667c68598137d2468602b41c9e555d240d16231c [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>
Eric Biederman8ca8d762003-04-22 19:02:15 +000024#include <ip_checksum.h>
Stefan Reinauerca374d42008-01-18 16:16:45 +000025#include <boot/coreboot_tables.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000026#include <string.h>
27#include <version.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000028#include <device/device.h>
29#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>
Stefan Reinauer0e672b52012-04-27 00:34:54 +020033#if CONFIG_CHROMEOS
Stefan Reinauer3e4e3032013-03-20 14:08:04 -070034#if CONFIG_GENERATE_ACPI_TABLES
Stefan Reinauer0e672b52012-04-27 00:34:54 +020035#include <arch/acpi.h>
Stefan Reinauer3e4e3032013-03-20 14:08:04 -070036#endif
Aaron Durbindd32a312013-03-07 23:15:06 -060037#include <vendorcode/google/chromeos/chromeos.h>
Stefan Reinauer0e672b52012-04-27 00:34:54 +020038#include <vendorcode/google/chromeos/gnvs.h>
39#endif
Aaron Durbinbc07f5d2013-03-26 13:09:39 -050040#if CONFIG_ARCH_X86
41#include <cpu/x86/mtrr.h>
42#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000043
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000044static struct lb_header *lb_table_init(unsigned long addr)
Eric Biederman8ca8d762003-04-22 19:02:15 +000045{
46 struct lb_header *header;
47
48 /* 16 byte align the address */
49 addr += 15;
50 addr &= ~15;
51
52 header = (void *)addr;
53 header->signature[0] = 'L';
54 header->signature[1] = 'B';
55 header->signature[2] = 'I';
56 header->signature[3] = 'O';
57 header->header_bytes = sizeof(*header);
58 header->header_checksum = 0;
59 header->table_bytes = 0;
60 header->table_checksum = 0;
61 header->table_entries = 0;
62 return header;
63}
64
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000065static struct lb_record *lb_first_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000066{
67 struct lb_record *rec;
68 rec = (void *)(((char *)header) + sizeof(*header));
69 return rec;
70}
71
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000072static struct lb_record *lb_last_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000073{
74 struct lb_record *rec;
75 rec = (void *)(((char *)header) + sizeof(*header) + header->table_bytes);
76 return rec;
77}
78
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000079static struct lb_record *lb_new_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000080{
81 struct lb_record *rec;
82 rec = lb_last_record(header);
83 if (header->table_entries) {
84 header->table_bytes += rec->size;
85 }
86 rec = lb_last_record(header);
87 header->table_entries++;
88 rec->tag = LB_TAG_UNUSED;
89 rec->size = sizeof(*rec);
90 return rec;
91}
92
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000093static struct lb_memory *lb_memory(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000094{
95 struct lb_record *rec;
96 struct lb_memory *mem;
97 rec = lb_new_record(header);
98 mem = (struct lb_memory *)rec;
99 mem->tag = LB_TAG_MEMORY;
100 mem->size = sizeof(*mem);
101 return mem;
102}
103
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000104static struct lb_serial *lb_serial(struct lb_header *header)
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000105{
Myles Watsonec0ee642009-10-19 16:21:30 +0000106#if CONFIG_CONSOLE_SERIAL8250
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000107 struct lb_record *rec;
108 struct lb_serial *serial;
109 rec = lb_new_record(header);
110 serial = (struct lb_serial *)rec;
111 serial->tag = LB_TAG_SERIAL;
112 serial->size = sizeof(*serial);
Stefan Reinauerd1bc3312011-06-22 16:39:19 -0700113 serial->type = LB_SERIAL_TYPE_IO_MAPPED;
114 serial->baseaddr = CONFIG_TTYS0_BASE;
115 serial->baud = CONFIG_TTYS0_BAUD;
116 return serial;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700117#elif CONFIG_CONSOLE_SERIAL8250MEM || CONFIG_CONSOLE_SERIAL_UART
Gabe Black32829ca2011-10-05 01:57:03 -0700118 if (uartmem_getbaseaddr()) {
119 struct lb_record *rec;
120 struct lb_serial *serial;
121 rec = lb_new_record(header);
122 serial = (struct lb_serial *)rec;
123 serial->tag = LB_TAG_SERIAL;
124 serial->size = sizeof(*serial);
125 serial->type = LB_SERIAL_TYPE_MEMORY_MAPPED;
126 serial->baseaddr = uartmem_getbaseaddr();
127 serial->baud = CONFIG_TTYS0_BAUD;
128 return serial;
129 } else {
130 return NULL;
131 }
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000132#else
Stefan Reinauer40e42a82011-04-14 21:05:41 +0000133 return NULL;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000134#endif
135}
136
Stefan Reinauer5ae31752013-06-19 13:47:46 -0700137#if CONFIG_CONSOLE_SERIAL8250 || CONFIG_CONSOLE_SERIAL8250MEM || \
138 CONFIG_CONSOLE_SERIAL_UART || CONFIG_USBDEBUG
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000139static void add_console(struct lb_header *header, u16 consoletype)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000140{
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000141 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000142
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000143 console = (struct lb_console *)lb_new_record(header);
144 console->tag = LB_TAG_CONSOLE;
145 console->size = sizeof(*console);
146 console->type = consoletype;
147}
Stefan Reinauer513eb5a2011-06-01 14:04:50 -0700148#endif
149
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000150static void lb_console(struct lb_header *header)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000151{
Myles Watsonec0ee642009-10-19 16:21:30 +0000152#if CONFIG_CONSOLE_SERIAL8250
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000153 add_console(header, LB_TAG_CONSOLE_SERIAL8250);
154#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700155#if CONFIG_CONSOLE_SERIAL8250MEM || CONFIG_CONSOLE_SERIAL_UART
Stefan Reinauer4885daa2011-04-26 23:47:04 +0000156 add_console(header, LB_TAG_CONSOLE_SERIAL8250MEM);
157#endif
Stefan Reinauer7e00a442010-05-25 17:09:05 +0000158#if CONFIG_USBDEBUG
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000159 add_console(header, LB_TAG_CONSOLE_EHCI);
160#endif
161}
162
Stefan Reinauerd650e992010-02-22 04:33:13 +0000163static void lb_framebuffer(struct lb_header *header)
164{
Ronald G. Minnich69efaa02013-02-26 10:07:40 -0800165#if CONFIG_FRAMEBUFFER_KEEP_VESA_MODE || CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT
Stefan Reinauerd650e992010-02-22 04:33:13 +0000166 void fill_lb_framebuffer(struct lb_framebuffer *framebuffer);
Gabe Blackfb8632a2012-09-30 04:47:48 -0700167 int vbe_mode_info_valid(void);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000168
Gabe Blackfb8632a2012-09-30 04:47:48 -0700169 // If there isn't any mode info to put in the table, don't ask for it
170 // to be filled with junk.
171 if (!vbe_mode_info_valid())
172 return;
Stefan Reinauerd650e992010-02-22 04:33:13 +0000173 struct lb_framebuffer *framebuffer;
174 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
Vladimir Serbinenko617f8532013-11-23 14:46:34 +0100175 fill_lb_framebuffer(framebuffer);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000176 framebuffer->tag = LB_TAG_FRAMEBUFFER;
177 framebuffer->size = sizeof(*framebuffer);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000178#endif
179}
180
Stefan Reinauer31324c62012-04-05 21:22:02 +0200181#if CONFIG_CHROMEOS
182static void lb_gpios(struct lb_header *header)
183{
184 struct lb_gpios *gpios;
185 gpios = (struct lb_gpios *)lb_new_record(header);
186 gpios->tag = LB_TAG_GPIO;
187 gpios->size = sizeof(*gpios);
188 gpios->count = 0;
189 fill_lb_gpios(gpios);
190}
191
192static void lb_vdat(struct lb_header *header)
193{
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700194#if CONFIG_GENERATE_ACPI_TABLES
Stefan Reinauer31324c62012-04-05 21:22:02 +0200195 struct lb_vdat* vdat;
196
197 vdat = (struct lb_vdat *)lb_new_record(header);
198 vdat->tag = LB_TAG_VDAT;
199 vdat->size = sizeof(*vdat);
200 acpi_get_vdat_info(&vdat->vdat_addr, &vdat->vdat_size);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700201#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200202}
203
204static void lb_vbnv(struct lb_header *header)
205{
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700206#if CONFIG_PC80_SYSTEM
Stefan Reinauer31324c62012-04-05 21:22:02 +0200207 struct lb_vbnv* vbnv;
208
209 vbnv = (struct lb_vbnv *)lb_new_record(header);
210 vbnv->tag = LB_TAG_VBNV;
211 vbnv->size = sizeof(*vbnv);
212 vbnv->vbnv_start = CONFIG_VBNV_OFFSET + 14;
213 vbnv->vbnv_size = CONFIG_VBNV_SIZE;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700214#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200215}
Aaron Durbindd32a312013-03-07 23:15:06 -0600216
217#if CONFIG_VBOOT_VERIFY_FIRMWARE
218static void lb_vboot_handoff(struct lb_header *header)
219{
220 void *addr;
221 uint32_t size;
222 struct lb_vboot_handoff* vbho;
223
224 if (vboot_get_handoff_info(&addr, &size))
225 return;
226
227 vbho = (struct lb_vboot_handoff *)lb_new_record(header);
228 vbho->tag = LB_TAB_VBOOT_HANDOFF;
229 vbho->size = sizeof(*vbho);
Stefan Reinauer642b1db72013-04-18 18:01:34 -0700230 vbho->vboot_handoff_addr = (intptr_t)addr;
Aaron Durbindd32a312013-03-07 23:15:06 -0600231 vbho->vboot_handoff_size = size;
232}
233#else
234static inline void lb_vboot_handoff(struct lb_header *header) {}
235#endif /* CONFIG_VBOOT_VERIFY_FIRMWARE */
236#endif /* CONFIG_CHROMEOS */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200237
Vadim Bendebury22c04682011-10-03 14:58:57 -0700238static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700239{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700240 /*
241 * These CBMEM sections' addresses are included in the coreboot table
242 * with the appropriate tags.
243 */
244 const struct section_id {
245 int cbmem_id;
246 int table_tag;
247 } section_ids[] = {
248 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
Duncan Laurie16e899b2013-12-12 10:43:21 -0800249 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE},
250 {CBMEM_ID_ACPI_GNVS, LB_TAG_ACPI_GNVS},
Vadim Bendebury22c04682011-10-03 14:58:57 -0700251 };
252 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700253
Vadim Bendebury22c04682011-10-03 14:58:57 -0700254 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
255 const struct section_id *sid = section_ids + i;
256 struct lb_cbmem_ref *cbmem_ref;
257 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700258
Vadim Bendebury22c04682011-10-03 14:58:57 -0700259 if (!cbmem_addr)
260 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700261
Vadim Bendebury22c04682011-10-03 14:58:57 -0700262 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
263 if (!cbmem_ref) {
264 printk(BIOS_ERR, "No more room in coreboot table!\n");
265 break;
266 }
267 cbmem_ref->tag = sid->table_tag;
268 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800269 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700270 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700271}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700272
Stefan Reinauere3778572010-01-30 09:47:18 +0000273static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000274{
275 struct lb_record *rec;
276 struct lb_mainboard *mainboard;
277 rec = lb_new_record(header);
278 mainboard = (struct lb_mainboard *)rec;
279 mainboard->tag = LB_TAG_MAINBOARD;
280
281 mainboard->size = (sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000282 strlen(mainboard_vendor) + 1 +
Eric Biederman8ca8d762003-04-22 19:02:15 +0000283 strlen(mainboard_part_number) + 1 +
284 3) & ~3;
285
286 mainboard->vendor_idx = 0;
287 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
288
289 memcpy(mainboard->strings + mainboard->vendor_idx,
290 mainboard_vendor, strlen(mainboard_vendor) + 1);
291 memcpy(mainboard->strings + mainboard->part_number_idx,
292 mainboard_part_number, strlen(mainboard_part_number) + 1);
293
294 return mainboard;
295}
296
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000297static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000298{
299 static const struct {
300 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000301 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000302 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000303 { LB_TAG_VERSION, coreboot_version, },
304 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
305 { LB_TAG_BUILD, coreboot_build, },
306 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
307 { LB_TAG_COMPILE_BY, coreboot_compile_by, },
308 { LB_TAG_COMPILE_HOST, coreboot_compile_host, },
309 { LB_TAG_COMPILE_DOMAIN, coreboot_compile_domain, },
310 { LB_TAG_COMPILER, coreboot_compiler, },
311 { LB_TAG_LINKER, coreboot_linker, },
312 { LB_TAG_ASSEMBLER, coreboot_assembler, },
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
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000327static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000328{
329 struct lb_record *rec;
330 struct lb_forward *forward;
331 rec = lb_new_record(header);
332 forward = (struct lb_forward *)rec;
333 forward->tag = LB_TAG_FORWARD;
334 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000335 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000336 return forward;
337}
338
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500339static unsigned long lb_table_fini(struct lb_header *head)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000340{
341 struct lb_record *rec, *first_rec;
342 rec = lb_last_record(head);
343 if (head->table_entries) {
344 head->table_bytes += rec->size;
345 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000346
Eric Biederman8ca8d762003-04-22 19:02:15 +0000347 first_rec = lb_first_record(head);
348 head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
349 head->header_checksum = 0;
350 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700351 printk(BIOS_DEBUG,
352 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
353 head, head->table_bytes, head->table_checksum);
354 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000355}
356
Stefan Reinauer14e22772010-04-27 06:56:47 +0000357unsigned long write_coreboot_table(
358 unsigned long low_table_start, unsigned long low_table_end,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000359 unsigned long rom_table_start, unsigned long rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000360{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000361 struct lb_header *head;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000362
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700363 if (low_table_start || low_table_end) {
364 printk(BIOS_DEBUG, "Writing table forward entry at 0x%08lx\n",
365 low_table_end);
366 head = lb_table_init(low_table_end);
367 lb_forward(head, (struct lb_header*)rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000368
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500369 low_table_end = (unsigned long) lb_table_fini(head);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700370 printk(BIOS_DEBUG, "Table forward entry ends at 0x%08lx.\n",
371 low_table_end);
372 low_table_end = ALIGN(low_table_end, 4096);
373 printk(BIOS_DEBUG, "... aligned to 0x%08lx\n", low_table_end);
374 }
375
376 printk(BIOS_DEBUG, "Writing coreboot table at 0x%08lx\n",
377 rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000378
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000379 head = lb_table_init(rom_table_end);
380 rom_table_end = (unsigned long)head;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000381 printk(BIOS_DEBUG, "rom_table_end = 0x%08lx\n", rom_table_end);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700382 rom_table_end = ALIGN(rom_table_end, (64 * 1024));
383 printk(BIOS_DEBUG, "... aligned to 0x%08lx\n", rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000384
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700385#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerba430642007-04-06 12:14:51 +0000386 {
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800387 struct cmos_option_table *option_table = cbfs_get_file_content(
388 CBFS_DEFAULT_MEDIA, "cmos_layout.bin",
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100389 CBFS_COMPONENT_CMOS_LAYOUT, NULL);
Patrick Georgi24479372011-01-18 13:56:36 +0000390 if (option_table) {
391 struct lb_record *rec_dest = lb_new_record(head);
392 /* Copy the option config table, it's already a lb_record... */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000393 memcpy(rec_dest, option_table, option_table->size);
Patrick Georgicef3b892011-01-18 14:28:45 +0000394 } else {
395 printk(BIOS_ERR, "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000396 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000397 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000398#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700399
Aaron Durbin49048022014-02-18 21:55:02 -0600400 /* Initialize the memory map at boot time. */
401 bootmem_init();
Stefan Reinauer14e22772010-04-27 06:56:47 +0000402
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700403 if (low_table_start || low_table_end) {
Aaron Durbin49048022014-02-18 21:55:02 -0600404 uint64_t size = low_table_end - low_table_start;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700405 /* Record the mptable and the the lb_table.
406 * (This will be adjusted later) */
Aaron Durbin49048022014-02-18 21:55:02 -0600407 bootmem_add_range(low_table_start, size, LB_MEM_TABLE);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700408 }
Eric Biederman6e53f502004-10-27 08:53:57 +0000409
Aaron Durbindf3a1092013-03-13 12:41:44 -0500410 /* Record the pirq table, acpi tables, and maybe the mptable. However,
411 * these only need to be added when the rom_table is sitting below
412 * 1MiB. If it isn't that means high tables are being written.
413 * The code below handles high tables correctly. */
Aaron Durbin49048022014-02-18 21:55:02 -0600414 if (rom_table_end <= (1 << 20)) {
415 uint64_t size = rom_table_end - rom_table_start;
416 bootmem_add_range(rom_table_start, size, LB_MEM_TABLE);
417 }
Patrick Georgibccaafc2009-04-28 12:57:25 +0000418
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500419 /* No other memory areas can be added after the memory table has been
420 * committed as the entries won't show up in the serialize mem table. */
Aaron Durbin2d5cec62014-02-25 00:24:22 -0600421 bootmem_write_memory_table(lb_memory(head));
Eric Biederman8ca8d762003-04-22 19:02:15 +0000422
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000423 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000424 lb_mainboard(head);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000425 /* Record the serial port, if present */
426 lb_serial(head);
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000427 /* Record our console setup */
428 lb_console(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000429 /* Record our various random string information */
430 lb_strings(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000431 /* Record our framebuffer */
432 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000433
Stefan Reinauer31324c62012-04-05 21:22:02 +0200434#if CONFIG_CHROMEOS
435 /* Record our GPIO settings (ChromeOS specific) */
436 lb_gpios(head);
437
Martin Rothcbf2bd72013-07-09 21:51:14 -0600438 /* pass along the VDAT buffer address */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200439 lb_vdat(head);
440
441 /* pass along VBNV offsets in CMOS */
442 lb_vbnv(head);
Aaron Durbindd32a312013-03-07 23:15:06 -0600443
444 /* pass along the vboot_handoff address. */
445 lb_vboot_handoff(head);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200446#endif
Vadim Bendebury22c04682011-10-03 14:58:57 -0700447 add_cbmem_pointers(head);
448
Eric Biederman8ca8d762003-04-22 19:02:15 +0000449 /* Remember where my valid memory ranges are */
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500450 return lb_table_fini(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000451}