blob: 8e7f85d35314e4a22f0404d23a15054ecb119bb3 [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
Stefan Reinauer31324c62012-04-05 21:22:02 +0200147#if CONFIG_CHROMEOS
148static void lb_gpios(struct lb_header *header)
149{
150 struct lb_gpios *gpios;
151 gpios = (struct lb_gpios *)lb_new_record(header);
152 gpios->tag = LB_TAG_GPIO;
153 gpios->size = sizeof(*gpios);
154 gpios->count = 0;
155 fill_lb_gpios(gpios);
156}
157
158static void lb_vdat(struct lb_header *header)
159{
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700160#if CONFIG_GENERATE_ACPI_TABLES
Stefan Reinauer31324c62012-04-05 21:22:02 +0200161 struct lb_vdat* vdat;
162
163 vdat = (struct lb_vdat *)lb_new_record(header);
164 vdat->tag = LB_TAG_VDAT;
165 vdat->size = sizeof(*vdat);
166 acpi_get_vdat_info(&vdat->vdat_addr, &vdat->vdat_size);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700167#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200168}
169
170static void lb_vbnv(struct lb_header *header)
171{
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700172#if CONFIG_PC80_SYSTEM
Stefan Reinauer31324c62012-04-05 21:22:02 +0200173 struct lb_vbnv* vbnv;
174
175 vbnv = (struct lb_vbnv *)lb_new_record(header);
176 vbnv->tag = LB_TAG_VBNV;
177 vbnv->size = sizeof(*vbnv);
178 vbnv->vbnv_start = CONFIG_VBNV_OFFSET + 14;
179 vbnv->vbnv_size = CONFIG_VBNV_SIZE;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700180#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200181}
Aaron Durbindd32a312013-03-07 23:15:06 -0600182
183#if CONFIG_VBOOT_VERIFY_FIRMWARE
184static void lb_vboot_handoff(struct lb_header *header)
185{
186 void *addr;
187 uint32_t size;
188 struct lb_vboot_handoff* vbho;
189
190 if (vboot_get_handoff_info(&addr, &size))
191 return;
192
193 vbho = (struct lb_vboot_handoff *)lb_new_record(header);
194 vbho->tag = LB_TAB_VBOOT_HANDOFF;
195 vbho->size = sizeof(*vbho);
Stefan Reinauer642b1db72013-04-18 18:01:34 -0700196 vbho->vboot_handoff_addr = (intptr_t)addr;
Aaron Durbindd32a312013-03-07 23:15:06 -0600197 vbho->vboot_handoff_size = size;
198}
199#else
200static inline void lb_vboot_handoff(struct lb_header *header) {}
201#endif /* CONFIG_VBOOT_VERIFY_FIRMWARE */
202#endif /* CONFIG_CHROMEOS */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200203
Vadim Bendebury22c04682011-10-03 14:58:57 -0700204static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700205{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700206 /*
207 * These CBMEM sections' addresses are included in the coreboot table
208 * with the appropriate tags.
209 */
210 const struct section_id {
211 int cbmem_id;
212 int table_tag;
213 } section_ids[] = {
214 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
Duncan Laurie16e899b2013-12-12 10:43:21 -0800215 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE},
216 {CBMEM_ID_ACPI_GNVS, LB_TAG_ACPI_GNVS},
Vadim Bendebury22c04682011-10-03 14:58:57 -0700217 };
218 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700219
Vadim Bendebury22c04682011-10-03 14:58:57 -0700220 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
221 const struct section_id *sid = section_ids + i;
222 struct lb_cbmem_ref *cbmem_ref;
223 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700224
Vadim Bendebury22c04682011-10-03 14:58:57 -0700225 if (!cbmem_addr)
226 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700227
Vadim Bendebury22c04682011-10-03 14:58:57 -0700228 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
229 if (!cbmem_ref) {
230 printk(BIOS_ERR, "No more room in coreboot table!\n");
231 break;
232 }
233 cbmem_ref->tag = sid->table_tag;
234 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800235 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700236 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700237}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700238
Stefan Reinauere3778572010-01-30 09:47:18 +0000239static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000240{
241 struct lb_record *rec;
242 struct lb_mainboard *mainboard;
243 rec = lb_new_record(header);
244 mainboard = (struct lb_mainboard *)rec;
245 mainboard->tag = LB_TAG_MAINBOARD;
246
247 mainboard->size = (sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000248 strlen(mainboard_vendor) + 1 +
Eric Biederman8ca8d762003-04-22 19:02:15 +0000249 strlen(mainboard_part_number) + 1 +
250 3) & ~3;
251
252 mainboard->vendor_idx = 0;
253 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
254
255 memcpy(mainboard->strings + mainboard->vendor_idx,
256 mainboard_vendor, strlen(mainboard_vendor) + 1);
257 memcpy(mainboard->strings + mainboard->part_number_idx,
258 mainboard_part_number, strlen(mainboard_part_number) + 1);
259
260 return mainboard;
261}
262
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000263static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000264{
265 static const struct {
266 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000267 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000268 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000269 { LB_TAG_VERSION, coreboot_version, },
270 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
271 { LB_TAG_BUILD, coreboot_build, },
272 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
273 { LB_TAG_COMPILE_BY, coreboot_compile_by, },
274 { LB_TAG_COMPILE_HOST, coreboot_compile_host, },
275 { LB_TAG_COMPILE_DOMAIN, coreboot_compile_domain, },
276 { LB_TAG_COMPILER, coreboot_compiler, },
277 { LB_TAG_LINKER, coreboot_linker, },
278 { LB_TAG_ASSEMBLER, coreboot_assembler, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000279 };
Eric Biederman52685572003-05-19 19:16:21 +0000280 unsigned int i;
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000281 for(i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000282 struct lb_string *rec;
283 size_t len;
284 rec = (struct lb_string *)lb_new_record(header);
285 len = strlen(strings[i].string);
286 rec->tag = strings[i].tag;
287 rec->size = (sizeof(*rec) + len + 1 + 3) & ~3;
288 memcpy(rec->string, strings[i].string, len+1);
289 }
290
291}
292
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000293static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000294{
295 struct lb_record *rec;
296 struct lb_forward *forward;
297 rec = lb_new_record(header);
298 forward = (struct lb_forward *)rec;
299 forward->tag = LB_TAG_FORWARD;
300 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000301 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000302 return forward;
303}
304
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500305static unsigned long lb_table_fini(struct lb_header *head)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000306{
307 struct lb_record *rec, *first_rec;
308 rec = lb_last_record(head);
309 if (head->table_entries) {
310 head->table_bytes += rec->size;
311 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000312
Eric Biederman8ca8d762003-04-22 19:02:15 +0000313 first_rec = lb_first_record(head);
314 head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
315 head->header_checksum = 0;
316 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700317 printk(BIOS_DEBUG,
318 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
319 head, head->table_bytes, head->table_checksum);
320 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000321}
322
Stefan Reinauer14e22772010-04-27 06:56:47 +0000323unsigned long write_coreboot_table(
324 unsigned long low_table_start, unsigned long low_table_end,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000325 unsigned long rom_table_start, unsigned long rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000326{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000327 struct lb_header *head;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000328
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700329 if (low_table_start || low_table_end) {
330 printk(BIOS_DEBUG, "Writing table forward entry at 0x%08lx\n",
331 low_table_end);
332 head = lb_table_init(low_table_end);
333 lb_forward(head, (struct lb_header*)rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000334
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500335 low_table_end = (unsigned long) lb_table_fini(head);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700336 printk(BIOS_DEBUG, "Table forward entry ends at 0x%08lx.\n",
337 low_table_end);
338 low_table_end = ALIGN(low_table_end, 4096);
339 printk(BIOS_DEBUG, "... aligned to 0x%08lx\n", low_table_end);
340 }
341
342 printk(BIOS_DEBUG, "Writing coreboot table at 0x%08lx\n",
343 rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000344
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000345 head = lb_table_init(rom_table_end);
346 rom_table_end = (unsigned long)head;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000347 printk(BIOS_DEBUG, "rom_table_end = 0x%08lx\n", rom_table_end);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700348 rom_table_end = ALIGN(rom_table_end, (64 * 1024));
349 printk(BIOS_DEBUG, "... aligned to 0x%08lx\n", rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000350
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700351#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerba430642007-04-06 12:14:51 +0000352 {
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800353 struct cmos_option_table *option_table = cbfs_get_file_content(
354 CBFS_DEFAULT_MEDIA, "cmos_layout.bin",
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100355 CBFS_COMPONENT_CMOS_LAYOUT, NULL);
Patrick Georgi24479372011-01-18 13:56:36 +0000356 if (option_table) {
357 struct lb_record *rec_dest = lb_new_record(head);
358 /* Copy the option config table, it's already a lb_record... */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000359 memcpy(rec_dest, option_table, option_table->size);
Patrick Georgicef3b892011-01-18 14:28:45 +0000360 } else {
361 printk(BIOS_ERR, "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000362 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000363 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000364#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700365
Aaron Durbin49048022014-02-18 21:55:02 -0600366 /* Initialize the memory map at boot time. */
367 bootmem_init();
Stefan Reinauer14e22772010-04-27 06:56:47 +0000368
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700369 if (low_table_start || low_table_end) {
Aaron Durbin49048022014-02-18 21:55:02 -0600370 uint64_t size = low_table_end - low_table_start;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700371 /* Record the mptable and the the lb_table.
372 * (This will be adjusted later) */
Aaron Durbin49048022014-02-18 21:55:02 -0600373 bootmem_add_range(low_table_start, size, LB_MEM_TABLE);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700374 }
Eric Biederman6e53f502004-10-27 08:53:57 +0000375
Aaron Durbindf3a1092013-03-13 12:41:44 -0500376 /* Record the pirq table, acpi tables, and maybe the mptable. However,
377 * these only need to be added when the rom_table is sitting below
378 * 1MiB. If it isn't that means high tables are being written.
379 * The code below handles high tables correctly. */
Aaron Durbin49048022014-02-18 21:55:02 -0600380 if (rom_table_end <= (1 << 20)) {
381 uint64_t size = rom_table_end - rom_table_start;
382 bootmem_add_range(rom_table_start, size, LB_MEM_TABLE);
383 }
Patrick Georgibccaafc2009-04-28 12:57:25 +0000384
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500385 /* No other memory areas can be added after the memory table has been
386 * committed as the entries won't show up in the serialize mem table. */
Aaron Durbin2d5cec62014-02-25 00:24:22 -0600387 bootmem_write_memory_table(lb_memory(head));
Eric Biederman8ca8d762003-04-22 19:02:15 +0000388
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000389 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000390 lb_mainboard(head);
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200391
392 /* Record the serial ports and consoles */
Kyösti Mälkkiafa7b132014-02-13 17:16:22 +0200393#if CONFIG_CONSOLE_SERIAL
Kyösti Mälkkibbf6f3d2014-03-15 01:32:55 +0200394 uart_fill_lb(head);
395#endif
396#if CONFIG_CONSOLE_USB
397 lb_add_console(LB_TAG_CONSOLE_EHCI, head);
398#endif
399
Eric Biederman8ca8d762003-04-22 19:02:15 +0000400 /* Record our various random string information */
401 lb_strings(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000402 /* Record our framebuffer */
403 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000404
Stefan Reinauer31324c62012-04-05 21:22:02 +0200405#if CONFIG_CHROMEOS
406 /* Record our GPIO settings (ChromeOS specific) */
407 lb_gpios(head);
408
Martin Rothcbf2bd72013-07-09 21:51:14 -0600409 /* pass along the VDAT buffer address */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200410 lb_vdat(head);
411
412 /* pass along VBNV offsets in CMOS */
413 lb_vbnv(head);
Aaron Durbindd32a312013-03-07 23:15:06 -0600414
415 /* pass along the vboot_handoff address. */
416 lb_vboot_handoff(head);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200417#endif
Vadim Bendebury22c04682011-10-03 14:58:57 -0700418 add_cbmem_pointers(head);
419
Eric Biederman8ca8d762003-04-22 19:02:15 +0000420 /* Remember where my valid memory ranges are */
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500421 return lb_table_fini(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000422}