blob: f0ae6c5bc07c4ca5eebaf72f1aca90680bedd1f1 [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>
Eric Biedermanb78c1972004-10-14 20:54:17 +000029#include <device/device.h>
30#include <stdlib.h>
Duncan Laurie66ecdc52011-08-15 16:35:10 -070031#include <cbfs.h>
Vadim Bendebury2e438672011-09-23 09:56:11 -070032#include <cbmem.h>
Aaron Durbin49048022014-02-18 21:55:02 -060033#include <bootmem.h>
Stefan Reinauer0e672b52012-04-27 00:34:54 +020034#if CONFIG_CHROMEOS
Stefan Reinauer3e4e3032013-03-20 14:08:04 -070035#if CONFIG_GENERATE_ACPI_TABLES
Stefan Reinauer0e672b52012-04-27 00:34:54 +020036#include <arch/acpi.h>
Stefan Reinauer3e4e3032013-03-20 14:08:04 -070037#endif
Aaron Durbindd32a312013-03-07 23:15:06 -060038#include <vendorcode/google/chromeos/chromeos.h>
Stefan Reinauer0e672b52012-04-27 00:34:54 +020039#include <vendorcode/google/chromeos/gnvs.h>
40#endif
Aaron Durbinbc07f5d2013-03-26 13:09:39 -050041#if CONFIG_ARCH_X86
42#include <cpu/x86/mtrr.h>
43#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000044
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000045static struct lb_header *lb_table_init(unsigned long addr)
Eric Biederman8ca8d762003-04-22 19:02:15 +000046{
47 struct lb_header *header;
48
49 /* 16 byte align the address */
50 addr += 15;
51 addr &= ~15;
52
53 header = (void *)addr;
54 header->signature[0] = 'L';
55 header->signature[1] = 'B';
56 header->signature[2] = 'I';
57 header->signature[3] = 'O';
58 header->header_bytes = sizeof(*header);
59 header->header_checksum = 0;
60 header->table_bytes = 0;
61 header->table_checksum = 0;
62 header->table_entries = 0;
63 return header;
64}
65
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000066static struct lb_record *lb_first_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000067{
68 struct lb_record *rec;
69 rec = (void *)(((char *)header) + sizeof(*header));
70 return rec;
71}
72
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000073static struct lb_record *lb_last_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000074{
75 struct lb_record *rec;
76 rec = (void *)(((char *)header) + sizeof(*header) + header->table_bytes);
77 return rec;
78}
79
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000080static struct lb_record *lb_new_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000081{
82 struct lb_record *rec;
83 rec = lb_last_record(header);
84 if (header->table_entries) {
85 header->table_bytes += rec->size;
86 }
87 rec = lb_last_record(header);
88 header->table_entries++;
89 rec->tag = LB_TAG_UNUSED;
90 rec->size = sizeof(*rec);
91 return rec;
92}
93
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000094static struct lb_memory *lb_memory(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000095{
96 struct lb_record *rec;
97 struct lb_memory *mem;
98 rec = lb_new_record(header);
99 mem = (struct lb_memory *)rec;
100 mem->tag = LB_TAG_MEMORY;
101 mem->size = sizeof(*mem);
102 return mem;
103}
104
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200105void lb_add_serial(struct lb_serial *new_serial, void *data)
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000106{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200107 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000108 struct lb_serial *serial;
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200109
110 serial = (struct lb_serial *)lb_new_record(header);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000111 serial->tag = LB_TAG_SERIAL;
112 serial->size = sizeof(*serial);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200113 serial->type = new_serial->type;
114 serial->baseaddr = new_serial->baseaddr;
115 serial->baud = new_serial->baud;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000116}
117
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200118void lb_add_console(uint16_t consoletype, void *data)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000119{
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200120 struct lb_header *header = (struct lb_header *)data;
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000121 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000122
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000123 console = (struct lb_console *)lb_new_record(header);
124 console->tag = LB_TAG_CONSOLE;
125 console->size = sizeof(*console);
126 console->type = consoletype;
127}
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000128
Stefan Reinauerd650e992010-02-22 04:33:13 +0000129static void lb_framebuffer(struct lb_header *header)
130{
Ronald G. Minnich69efaa02013-02-26 10:07:40 -0800131#if CONFIG_FRAMEBUFFER_KEEP_VESA_MODE || CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT
Stefan Reinauerd650e992010-02-22 04:33:13 +0000132 void fill_lb_framebuffer(struct lb_framebuffer *framebuffer);
Gabe Blackfb8632a2012-09-30 04:47:48 -0700133 int vbe_mode_info_valid(void);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000134
Gabe Blackfb8632a2012-09-30 04:47:48 -0700135 // If there isn't any mode info to put in the table, don't ask for it
136 // to be filled with junk.
137 if (!vbe_mode_info_valid())
138 return;
Stefan Reinauerd650e992010-02-22 04:33:13 +0000139 struct lb_framebuffer *framebuffer;
140 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
Vladimir Serbinenko617f8532013-11-23 14:46:34 +0100141 fill_lb_framebuffer(framebuffer);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000142 framebuffer->tag = LB_TAG_FRAMEBUFFER;
143 framebuffer->size = sizeof(*framebuffer);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000144#endif
145}
146
Kyösti Mälkki65784752013-12-22 03:12:38 +0200147void fill_lb_gpio(struct lb_gpio *gpio, int num,
148 int polarity, const char *name, int value)
149{
150 memset(gpio, 0, sizeof(*gpio));
151 gpio->port = num;
152 gpio->polarity = polarity;
153 if (value >= 0)
154 gpio->value = value;
155 strncpy((char *)gpio->name, name, GPIO_MAX_NAME_LENGTH);
156}
157
Kyösti Mälkki5c4b8482014-05-03 13:29:06 +0300158#if CONFIG_CHROMEOS
Stefan Reinauer31324c62012-04-05 21:22:02 +0200159static void lb_gpios(struct lb_header *header)
160{
161 struct lb_gpios *gpios;
162 gpios = (struct lb_gpios *)lb_new_record(header);
163 gpios->tag = LB_TAG_GPIO;
164 gpios->size = sizeof(*gpios);
165 gpios->count = 0;
166 fill_lb_gpios(gpios);
167}
168
169static void lb_vdat(struct lb_header *header)
170{
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700171#if CONFIG_GENERATE_ACPI_TABLES
Julius Werner1f5487a2013-08-27 15:38:54 -0700172 struct lb_range *vdat;
Stefan Reinauer31324c62012-04-05 21:22:02 +0200173
Julius Werner1f5487a2013-08-27 15:38:54 -0700174 vdat = (struct lb_range *)lb_new_record(header);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200175 vdat->tag = LB_TAG_VDAT;
176 vdat->size = sizeof(*vdat);
Julius Werner1f5487a2013-08-27 15:38:54 -0700177 acpi_get_vdat_info(&vdat->range_start, &vdat->range_size);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700178#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200179}
180
181static void lb_vbnv(struct lb_header *header)
182{
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700183#if CONFIG_PC80_SYSTEM
Julius Werner1f5487a2013-08-27 15:38:54 -0700184 struct lb_range *vbnv;
Stefan Reinauer31324c62012-04-05 21:22:02 +0200185
Julius Werner1f5487a2013-08-27 15:38:54 -0700186 vbnv = (struct lb_range *)lb_new_record(header);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200187 vbnv->tag = LB_TAG_VBNV;
188 vbnv->size = sizeof(*vbnv);
Julius Werner1f5487a2013-08-27 15:38:54 -0700189 vbnv->range_start = CONFIG_VBNV_OFFSET + 14;
190 vbnv->range_size = CONFIG_VBNV_SIZE;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700191#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200192}
Aaron Durbindd32a312013-03-07 23:15:06 -0600193
194#if CONFIG_VBOOT_VERIFY_FIRMWARE
195static void lb_vboot_handoff(struct lb_header *header)
196{
197 void *addr;
198 uint32_t size;
Julius Werner1f5487a2013-08-27 15:38:54 -0700199 struct lb_range *vbho;
Aaron Durbindd32a312013-03-07 23:15:06 -0600200
201 if (vboot_get_handoff_info(&addr, &size))
202 return;
203
Julius Werner1f5487a2013-08-27 15:38:54 -0700204 vbho = (struct lb_range *)lb_new_record(header);
Aaron Durbindd32a312013-03-07 23:15:06 -0600205 vbho->tag = LB_TAB_VBOOT_HANDOFF;
206 vbho->size = sizeof(*vbho);
Julius Werner1f5487a2013-08-27 15:38:54 -0700207 vbho->range_start = (intptr_t)addr;
208 vbho->range_size = size;
Aaron Durbindd32a312013-03-07 23:15:06 -0600209}
210#else
211static inline void lb_vboot_handoff(struct lb_header *header) {}
212#endif /* CONFIG_VBOOT_VERIFY_FIRMWARE */
213#endif /* CONFIG_CHROMEOS */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200214
Vadim Bendebury22c04682011-10-03 14:58:57 -0700215static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700216{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700217 /*
218 * These CBMEM sections' addresses are included in the coreboot table
219 * with the appropriate tags.
220 */
221 const struct section_id {
222 int cbmem_id;
223 int table_tag;
224 } section_ids[] = {
225 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
Duncan Laurie16e899b2013-12-12 10:43:21 -0800226 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE},
227 {CBMEM_ID_ACPI_GNVS, LB_TAG_ACPI_GNVS},
Vadim Bendebury22c04682011-10-03 14:58:57 -0700228 };
229 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700230
Vadim Bendebury22c04682011-10-03 14:58:57 -0700231 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
232 const struct section_id *sid = section_ids + i;
233 struct lb_cbmem_ref *cbmem_ref;
234 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700235
Vadim Bendebury22c04682011-10-03 14:58:57 -0700236 if (!cbmem_addr)
237 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700238
Vadim Bendebury22c04682011-10-03 14:58:57 -0700239 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
240 if (!cbmem_ref) {
241 printk(BIOS_ERR, "No more room in coreboot table!\n");
242 break;
243 }
244 cbmem_ref->tag = sid->table_tag;
245 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800246 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700247 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700248}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700249
Stefan Reinauere3778572010-01-30 09:47:18 +0000250static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000251{
252 struct lb_record *rec;
253 struct lb_mainboard *mainboard;
254 rec = lb_new_record(header);
255 mainboard = (struct lb_mainboard *)rec;
256 mainboard->tag = LB_TAG_MAINBOARD;
257
258 mainboard->size = (sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000259 strlen(mainboard_vendor) + 1 +
Eric Biederman8ca8d762003-04-22 19:02:15 +0000260 strlen(mainboard_part_number) + 1 +
261 3) & ~3;
262
263 mainboard->vendor_idx = 0;
264 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
265
266 memcpy(mainboard->strings + mainboard->vendor_idx,
267 mainboard_vendor, strlen(mainboard_vendor) + 1);
268 memcpy(mainboard->strings + mainboard->part_number_idx,
269 mainboard_part_number, strlen(mainboard_part_number) + 1);
270
271 return mainboard;
272}
273
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000274static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000275{
276 static const struct {
277 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000278 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000279 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000280 { LB_TAG_VERSION, coreboot_version, },
281 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
282 { LB_TAG_BUILD, coreboot_build, },
283 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
284 { LB_TAG_COMPILE_BY, coreboot_compile_by, },
285 { LB_TAG_COMPILE_HOST, coreboot_compile_host, },
286 { LB_TAG_COMPILE_DOMAIN, coreboot_compile_domain, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000287 };
Eric Biederman52685572003-05-19 19:16:21 +0000288 unsigned int i;
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000289 for(i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000290 struct lb_string *rec;
291 size_t len;
292 rec = (struct lb_string *)lb_new_record(header);
293 len = strlen(strings[i].string);
294 rec->tag = strings[i].tag;
295 rec->size = (sizeof(*rec) + len + 1 + 3) & ~3;
296 memcpy(rec->string, strings[i].string, len+1);
297 }
298
299}
300
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000301static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000302{
303 struct lb_record *rec;
304 struct lb_forward *forward;
305 rec = lb_new_record(header);
306 forward = (struct lb_forward *)rec;
307 forward->tag = LB_TAG_FORWARD;
308 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000309 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000310 return forward;
311}
312
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500313static unsigned long lb_table_fini(struct lb_header *head)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000314{
315 struct lb_record *rec, *first_rec;
316 rec = lb_last_record(head);
317 if (head->table_entries) {
318 head->table_bytes += rec->size;
319 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000320
Eric Biederman8ca8d762003-04-22 19:02:15 +0000321 first_rec = lb_first_record(head);
322 head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
323 head->header_checksum = 0;
324 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700325 printk(BIOS_DEBUG,
326 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
327 head, head->table_bytes, head->table_checksum);
328 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000329}
330
Stefan Reinauer14e22772010-04-27 06:56:47 +0000331unsigned long write_coreboot_table(
332 unsigned long low_table_start, unsigned long low_table_end,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000333 unsigned long rom_table_start, unsigned long rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000334{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000335 struct lb_header *head;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000336
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700337 if (low_table_start || low_table_end) {
338 printk(BIOS_DEBUG, "Writing table forward entry at 0x%08lx\n",
339 low_table_end);
340 head = lb_table_init(low_table_end);
341 lb_forward(head, (struct lb_header*)rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000342
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500343 low_table_end = (unsigned long) lb_table_fini(head);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700344 printk(BIOS_DEBUG, "Table forward entry ends at 0x%08lx.\n",
345 low_table_end);
346 low_table_end = ALIGN(low_table_end, 4096);
347 printk(BIOS_DEBUG, "... aligned to 0x%08lx\n", low_table_end);
348 }
349
350 printk(BIOS_DEBUG, "Writing coreboot table at 0x%08lx\n",
351 rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000352
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000353 head = lb_table_init(rom_table_end);
354 rom_table_end = (unsigned long)head;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000355 printk(BIOS_DEBUG, "rom_table_end = 0x%08lx\n", rom_table_end);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700356 rom_table_end = ALIGN(rom_table_end, (64 * 1024));
357 printk(BIOS_DEBUG, "... aligned to 0x%08lx\n", rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000358
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700359#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerba430642007-04-06 12:14:51 +0000360 {
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800361 struct cmos_option_table *option_table = cbfs_get_file_content(
362 CBFS_DEFAULT_MEDIA, "cmos_layout.bin",
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100363 CBFS_COMPONENT_CMOS_LAYOUT, NULL);
Patrick Georgi24479372011-01-18 13:56:36 +0000364 if (option_table) {
365 struct lb_record *rec_dest = lb_new_record(head);
366 /* Copy the option config table, it's already a lb_record... */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000367 memcpy(rec_dest, option_table, option_table->size);
Patrick Georgicef3b892011-01-18 14:28:45 +0000368 } else {
369 printk(BIOS_ERR, "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000370 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000371 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000372#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700373
Aaron Durbin49048022014-02-18 21:55:02 -0600374 /* Initialize the memory map at boot time. */
375 bootmem_init();
Stefan Reinauer14e22772010-04-27 06:56:47 +0000376
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700377 if (low_table_start || low_table_end) {
Aaron Durbin49048022014-02-18 21:55:02 -0600378 uint64_t size = low_table_end - low_table_start;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700379 /* Record the mptable and the the lb_table.
380 * (This will be adjusted later) */
Aaron Durbin49048022014-02-18 21:55:02 -0600381 bootmem_add_range(low_table_start, size, LB_MEM_TABLE);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700382 }
Eric Biederman6e53f502004-10-27 08:53:57 +0000383
Aaron Durbindf3a1092013-03-13 12:41:44 -0500384 /* Record the pirq table, acpi tables, and maybe the mptable. However,
385 * these only need to be added when the rom_table is sitting below
386 * 1MiB. If it isn't that means high tables are being written.
387 * The code below handles high tables correctly. */
Aaron Durbin49048022014-02-18 21:55:02 -0600388 if (rom_table_end <= (1 << 20)) {
389 uint64_t size = rom_table_end - rom_table_start;
390 bootmem_add_range(rom_table_start, size, LB_MEM_TABLE);
391 }
Patrick Georgibccaafc2009-04-28 12:57:25 +0000392
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500393 /* No other memory areas can be added after the memory table has been
394 * committed as the entries won't show up in the serialize mem table. */
Aaron Durbin2d5cec62014-02-25 00:24:22 -0600395 bootmem_write_memory_table(lb_memory(head));
Eric Biederman8ca8d762003-04-22 19:02:15 +0000396
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000397 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000398 lb_mainboard(head);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200399
400 /* Record the serial ports and consoles */
Kyösti Mälkkiafa7b132014-02-13 17:16:22 +0200401#if CONFIG_CONSOLE_SERIAL
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200402 uart_fill_lb(head);
403#endif
404#if CONFIG_CONSOLE_USB
405 lb_add_console(LB_TAG_CONSOLE_EHCI, head);
406#endif
407
Eric Biederman8ca8d762003-04-22 19:02:15 +0000408 /* Record our various random string information */
409 lb_strings(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000410 /* Record our framebuffer */
411 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000412
Stefan Reinauer31324c62012-04-05 21:22:02 +0200413#if CONFIG_CHROMEOS
414 /* Record our GPIO settings (ChromeOS specific) */
415 lb_gpios(head);
416
Martin Rothcbf2bd72013-07-09 21:51:14 -0600417 /* pass along the VDAT buffer address */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200418 lb_vdat(head);
419
420 /* pass along VBNV offsets in CMOS */
421 lb_vbnv(head);
Aaron Durbindd32a312013-03-07 23:15:06 -0600422
423 /* pass along the vboot_handoff address. */
424 lb_vboot_handoff(head);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200425#endif
Vadim Bendebury22c04682011-10-03 14:58:57 -0700426 add_cbmem_pointers(head);
427
Eric Biederman8ca8d762003-04-22 19:02:15 +0000428 /* Remember where my valid memory ranges are */
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500429 return lb_table_fini(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000430}