219de7adae6f551b2be30fe498a285d136240ca1
[coreboot.git] / src / arch / x86 / boot / coreboot_table.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2003-2004 Eric Biederman
5  * Copyright (C) 2005-2010 coresystems GmbH
6  *
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
23 #include <console/console.h>
24 #include <ip_checksum.h>
25 #include <boot/tables.h>
26 #include <boot/coreboot_tables.h>
27 #include <arch/coreboot_tables.h>
28 #include <string.h>
29 #include <version.h>
30 #include <device/device.h>
31 #include <stdlib.h>
32 #include <cbfs.h>
33 #include <cbmem.h>
34 #if CONFIG_USE_OPTION_TABLE
35 #include <option_table.h>
36 #endif
37
38 static struct lb_header *lb_table_init(unsigned long addr)
39 {
40         struct lb_header *header;
41
42         /* 16 byte align the address */
43         addr += 15;
44         addr &= ~15;
45
46         header = (void *)addr;
47         header->signature[0] = 'L';
48         header->signature[1] = 'B';
49         header->signature[2] = 'I';
50         header->signature[3] = 'O';
51         header->header_bytes = sizeof(*header);
52         header->header_checksum = 0;
53         header->table_bytes = 0;
54         header->table_checksum = 0;
55         header->table_entries = 0;
56         return header;
57 }
58
59 static struct lb_record *lb_first_record(struct lb_header *header)
60 {
61         struct lb_record *rec;
62         rec = (void *)(((char *)header) + sizeof(*header));
63         return rec;
64 }
65
66 static struct lb_record *lb_last_record(struct lb_header *header)
67 {
68         struct lb_record *rec;
69         rec = (void *)(((char *)header) + sizeof(*header) + header->table_bytes);
70         return rec;
71 }
72
73 #if 0
74 static struct lb_record *lb_next_record(struct lb_record *rec)
75 {
76         rec = (void *)(((char *)rec) + rec->size);
77         return rec;
78 }
79 #endif
80
81 static struct lb_record *lb_new_record(struct lb_header *header)
82 {
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
95
96 static struct lb_memory *lb_memory(struct lb_header *header)
97 {
98         struct lb_record *rec;
99         struct lb_memory *mem;
100         rec = lb_new_record(header);
101         mem = (struct lb_memory *)rec;
102         mem->tag = LB_TAG_MEMORY;
103         mem->size = sizeof(*mem);
104         return mem;
105 }
106
107 static struct lb_serial *lb_serial(struct lb_header *header)
108 {
109 #if CONFIG_CONSOLE_SERIAL8250
110         struct lb_record *rec;
111         struct lb_serial *serial;
112         rec = lb_new_record(header);
113         serial = (struct lb_serial *)rec;
114         serial->tag = LB_TAG_SERIAL;
115         serial->size = sizeof(*serial);
116         serial->type = LB_SERIAL_TYPE_IO_MAPPED;
117         serial->baseaddr = CONFIG_TTYS0_BASE;
118         serial->baud = CONFIG_TTYS0_BAUD;
119         return serial;
120 #elif CONFIG_CONSOLE_SERIAL8250MEM
121         if (uartmem_getbaseaddr()) {
122                 struct lb_record *rec;
123                 struct lb_serial *serial;
124                 rec = lb_new_record(header);
125                 serial = (struct lb_serial *)rec;
126                 serial->tag = LB_TAG_SERIAL;
127                 serial->size = sizeof(*serial);
128                 serial->type = LB_SERIAL_TYPE_MEMORY_MAPPED;
129                 serial->baseaddr = uartmem_getbaseaddr();
130                 serial->baud = CONFIG_TTYS0_BAUD;
131                 return serial;
132         } else {
133                 return NULL;
134         }
135 #else
136         return NULL;
137 #endif
138 }
139
140 #if CONFIG_CONSOLE_SERIAL8250 || CONFIG_CONSOLE_SERIAL8250MEM || \
141     CONFIG_CONSOLE_LOGBUF || CONFIG_USBDEBUG
142 static void add_console(struct lb_header *header, u16 consoletype)
143 {
144         struct lb_console *console;
145
146         console = (struct lb_console *)lb_new_record(header);
147         console->tag = LB_TAG_CONSOLE;
148         console->size = sizeof(*console);
149         console->type = consoletype;
150 }
151 #endif
152
153 static void lb_console(struct lb_header *header)
154 {
155 #if CONFIG_CONSOLE_SERIAL8250
156         add_console(header, LB_TAG_CONSOLE_SERIAL8250);
157 #endif
158 #if CONFIG_CONSOLE_SERIAL8250MEM
159         add_console(header, LB_TAG_CONSOLE_SERIAL8250MEM);
160 #endif
161 #if CONFIG_CONSOLE_LOGBUF
162         add_console(header, LB_TAG_CONSOLE_LOGBUF);
163 #endif
164 #if CONFIG_USBDEBUG
165         add_console(header, LB_TAG_CONSOLE_EHCI);
166 #endif
167 }
168
169 static void lb_framebuffer(struct lb_header *header)
170 {
171 #if CONFIG_FRAMEBUFFER_KEEP_VESA_MODE
172         void fill_lb_framebuffer(struct lb_framebuffer *framebuffer);
173
174         struct lb_framebuffer *framebuffer;
175         framebuffer = (struct lb_framebuffer *)lb_new_record(header);
176         framebuffer->tag = LB_TAG_FRAMEBUFFER;
177         framebuffer->size = sizeof(*framebuffer);
178         fill_lb_framebuffer(framebuffer);
179 #endif
180 }
181
182 #if CONFIG_CHROMEOS
183 static void lb_gpios(struct lb_header *header)
184 {
185         struct lb_gpios *gpios;
186         gpios = (struct lb_gpios *)lb_new_record(header);
187         gpios->tag = LB_TAG_GPIO;
188         gpios->size = sizeof(*gpios);
189         gpios->count = 0;
190         fill_lb_gpios(gpios);
191 }
192
193 static void lb_vdat(struct lb_header *header)
194 {
195         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);
201 }
202
203 static void lb_vbnv(struct lb_header *header)
204 {
205         struct lb_vbnv* vbnv;
206
207         vbnv = (struct lb_vbnv *)lb_new_record(header);
208         vbnv->tag = LB_TAG_VBNV;
209         vbnv->size = sizeof(*vbnv);
210         vbnv->vbnv_start = CONFIG_VBNV_OFFSET + 14;
211         vbnv->vbnv_size = CONFIG_VBNV_SIZE;
212 }
213 #endif
214
215 static void add_cbmem_pointers(struct lb_header *header)
216 {
217         /*
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},
226                 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE}
227         };
228         int i;
229
230         for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
231                 const struct section_id *sid = section_ids + i;
232                 struct lb_cbmem_ref *cbmem_ref;
233                 void *cbmem_addr = cbmem_find(sid->cbmem_id);
234
235                 if (!cbmem_addr)
236                         continue;  /* This section is not present */
237
238                 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
239                 if (!cbmem_ref) {
240                         printk(BIOS_ERR, "No more room in coreboot table!\n");
241                         break;
242                 }
243                 cbmem_ref->tag = sid->table_tag;
244                 cbmem_ref->size = sizeof(*cbmem_ref);
245                 cbmem_ref->cbmem_addr = cbmem_addr;
246         }
247 }
248
249 static struct lb_mainboard *lb_mainboard(struct lb_header *header)
250 {
251         struct lb_record *rec;
252         struct lb_mainboard *mainboard;
253         rec = lb_new_record(header);
254         mainboard = (struct lb_mainboard *)rec;
255         mainboard->tag = LB_TAG_MAINBOARD;
256
257         mainboard->size = (sizeof(*mainboard) +
258                 strlen(mainboard_vendor) + 1 +
259                 strlen(mainboard_part_number) + 1 +
260                 3) & ~3;
261
262         mainboard->vendor_idx = 0;
263         mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
264
265         memcpy(mainboard->strings + mainboard->vendor_idx,
266                 mainboard_vendor,      strlen(mainboard_vendor) + 1);
267         memcpy(mainboard->strings + mainboard->part_number_idx,
268                 mainboard_part_number, strlen(mainboard_part_number) + 1);
269
270         return mainboard;
271 }
272
273 #if CONFIG_USE_OPTION_TABLE
274 static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
275 {
276         struct lb_record *rec;
277         struct cmos_checksum *cmos_checksum;
278         rec = lb_new_record(header);
279         cmos_checksum = (struct cmos_checksum *)rec;
280         cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
281
282         cmos_checksum->size = (sizeof(*cmos_checksum));
283
284         cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
285         cmos_checksum->range_end = ( LB_CKS_RANGE_END * 8 ) + 7;
286         cmos_checksum->location = LB_CKS_LOC * 8;
287         cmos_checksum->type = CHECKSUM_PCBIOS;
288
289         return cmos_checksum;
290 }
291 #endif
292
293 static void lb_strings(struct lb_header *header)
294 {
295         static const struct {
296                 uint32_t tag;
297                 const char *string;
298         } strings[] = {
299                 { LB_TAG_VERSION,        coreboot_version,        },
300                 { LB_TAG_EXTRA_VERSION,  coreboot_extra_version,  },
301                 { LB_TAG_BUILD,          coreboot_build,          },
302                 { LB_TAG_COMPILE_TIME,   coreboot_compile_time,   },
303                 { LB_TAG_COMPILE_BY,     coreboot_compile_by,     },
304                 { LB_TAG_COMPILE_HOST,   coreboot_compile_host,   },
305                 { LB_TAG_COMPILE_DOMAIN, coreboot_compile_domain, },
306                 { LB_TAG_COMPILER,       coreboot_compiler,       },
307                 { LB_TAG_LINKER,         coreboot_linker,         },
308                 { LB_TAG_ASSEMBLER,      coreboot_assembler,      },
309         };
310         unsigned int i;
311         for(i = 0; i < ARRAY_SIZE(strings); i++) {
312                 struct lb_string *rec;
313                 size_t len;
314                 rec = (struct lb_string *)lb_new_record(header);
315                 len = strlen(strings[i].string);
316                 rec->tag = strings[i].tag;
317                 rec->size = (sizeof(*rec) + len + 1 + 3) & ~3;
318                 memcpy(rec->string, strings[i].string, len+1);
319         }
320
321 }
322
323 #if CONFIG_WRITE_HIGH_TABLES == 1
324 static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
325 {
326         struct lb_record *rec;
327         struct lb_forward *forward;
328         rec = lb_new_record(header);
329         forward = (struct lb_forward *)rec;
330         forward->tag = LB_TAG_FORWARD;
331         forward->size = sizeof(*forward);
332         forward->forward = (uint64_t)(unsigned long)next_header;
333         return forward;
334 }
335 #endif
336
337 void lb_memory_range(struct lb_memory *mem,
338         uint32_t type, uint64_t start, uint64_t size)
339 {
340         int entries;
341         entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
342         mem->map[entries].start = pack_lb64(start);
343         mem->map[entries].size = pack_lb64(size);
344         mem->map[entries].type = type;
345         mem->size += sizeof(mem->map[0]);
346 }
347
348 static void lb_reserve_table_memory(struct lb_header *head)
349 {
350         struct lb_record *last_rec;
351         struct lb_memory *mem;
352         uint64_t start;
353         uint64_t end;
354         int i, entries;
355
356         last_rec = lb_last_record(head);
357         mem = get_lb_mem();
358         start = (unsigned long)head;
359         end = (unsigned long)last_rec;
360         entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
361         /* Resize the right two memory areas so this table is in
362          * a reserved area of memory.  Everything has been carefully
363          * setup so that is all we need to do.
364          */
365         for(i = 0; i < entries; i++ ) {
366                 uint64_t map_start = unpack_lb64(mem->map[i].start);
367                 uint64_t map_end = map_start + unpack_lb64(mem->map[i].size);
368                 /* Does this area need to be expanded? */
369                 if (map_end == start) {
370                         mem->map[i].size = pack_lb64(end - map_start);
371                 }
372                 /* Does this area need to be contracted? */
373                 else if (map_start == start) {
374                         mem->map[i].start = pack_lb64(end);
375                         mem->map[i].size = pack_lb64(map_end - end);
376                 }
377         }
378 }
379
380 static unsigned long lb_table_fini(struct lb_header *head, int fixup)
381 {
382         struct lb_record *rec, *first_rec;
383         rec = lb_last_record(head);
384         if (head->table_entries) {
385                 head->table_bytes += rec->size;
386         }
387
388         if (fixup)
389                 lb_reserve_table_memory(head);
390
391         first_rec = lb_first_record(head);
392         head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
393         head->header_checksum = 0;
394         head->header_checksum = compute_ip_checksum(head, sizeof(*head));
395         printk(BIOS_DEBUG,
396                "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
397                head, head->table_bytes, head->table_checksum);
398         return (unsigned long)rec + rec->size;
399 }
400
401 static void lb_cleanup_memory_ranges(struct lb_memory *mem)
402 {
403         int entries;
404         int i, j;
405         entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
406
407         /* Sort the lb memory ranges */
408         for(i = 0; i < entries; i++) {
409                 uint64_t entry_start = unpack_lb64(mem->map[i].start);
410                 for(j = i; j < entries; j++) {
411                         uint64_t temp_start = unpack_lb64(mem->map[j].start);
412                         if (temp_start < entry_start) {
413                                 struct lb_memory_range tmp;
414                                 tmp = mem->map[i];
415                                 mem->map[i] = mem->map[j];
416                                 mem->map[j] = tmp;
417                         }
418                 }
419         }
420
421         /* Merge adjacent entries */
422         for(i = 0; (i + 1) < entries; i++) {
423                 uint64_t start, end, nstart, nend;
424                 if (mem->map[i].type != mem->map[i + 1].type) {
425                         continue;
426                 }
427                 start  = unpack_lb64(mem->map[i].start);
428                 end    = start + unpack_lb64(mem->map[i].size);
429                 nstart = unpack_lb64(mem->map[i + 1].start);
430                 nend   = nstart + unpack_lb64(mem->map[i + 1].size);
431                 if ((start <= nstart) && (end > nstart)) {
432                         if (start > nstart) {
433                                 start = nstart;
434                         }
435                         if (end < nend) {
436                                 end = nend;
437                         }
438                         /* Record the new region size */
439                         mem->map[i].start = pack_lb64(start);
440                         mem->map[i].size  = pack_lb64(end - start);
441
442                         /* Delete the entry I have merged with */
443                         memmove(&mem->map[i + 1], &mem->map[i + 2],
444                                 ((entries - i - 2) * sizeof(mem->map[0])));
445                         mem->size -= sizeof(mem->map[0]);
446                         entries -= 1;
447                         /* See if I can merge with the next entry as well */
448                         i -= 1;
449                 }
450         }
451 }
452
453 static void lb_remove_memory_range(struct lb_memory *mem,
454         uint64_t start, uint64_t size)
455 {
456         uint64_t end;
457         int entries;
458         int i;
459
460         end = start + size;
461         entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
462
463         /* Remove a reserved area from the memory map */
464         for(i = 0; i < entries; i++) {
465                 uint64_t map_start = unpack_lb64(mem->map[i].start);
466                 uint64_t map_end   = map_start + unpack_lb64(mem->map[i].size);
467                 if ((start <= map_start) && (end >= map_end)) {
468                         /* Remove the completely covered range */
469                         memmove(&mem->map[i], &mem->map[i + 1],
470                                 ((entries - i - 1) * sizeof(mem->map[0])));
471                         mem->size -= sizeof(mem->map[0]);
472                         entries -= 1;
473                         /* Since the index will disappear revisit what will appear here */
474                         i -= 1;
475                 }
476                 else if ((start > map_start) && (end < map_end)) {
477                         /* Split the memory range */
478                         memmove(&mem->map[i + 1], &mem->map[i],
479                                 ((entries - i) * sizeof(mem->map[0])));
480                         mem->size += sizeof(mem->map[0]);
481                         entries += 1;
482                         /* Update the first map entry */
483                         mem->map[i].size = pack_lb64(start - map_start);
484                         /* Update the second map entry */
485                         mem->map[i + 1].start = pack_lb64(end);
486                         mem->map[i + 1].size  = pack_lb64(map_end - end);
487                         /* Don't bother with this map entry again */
488                         i += 1;
489                 }
490                 else if ((start <= map_start) && (end > map_start)) {
491                         /* Shrink the start of the memory range */
492                         mem->map[i].start = pack_lb64(end);
493                         mem->map[i].size  = pack_lb64(map_end - end);
494                 }
495                 else if ((start < map_end) && (start > map_start)) {
496                         /* Shrink the end of the memory range */
497                         mem->map[i].size = pack_lb64(start - map_start);
498                 }
499         }
500 }
501
502 /* This function is used in mainboard specific code, too */
503 void lb_add_memory_range(struct lb_memory *mem,
504         uint32_t type, uint64_t start, uint64_t size)
505 {
506         lb_remove_memory_range(mem, start, size);
507         lb_memory_range(mem, type, start, size);
508         lb_cleanup_memory_ranges(mem);
509 }
510
511 static void lb_dump_memory_ranges(struct lb_memory *mem)
512 {
513         int entries;
514         int i;
515         entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
516
517         printk(BIOS_DEBUG, "coreboot memory table:\n");
518         for(i = 0; i < entries; i++) {
519                 uint64_t entry_start = unpack_lb64(mem->map[i].start);
520                 uint64_t entry_size = unpack_lb64(mem->map[i].size);
521                 const char *entry_type;
522
523                 switch (mem->map[i].type) {
524                 case LB_MEM_RAM: entry_type="RAM"; break;
525                 case LB_MEM_RESERVED: entry_type="RESERVED"; break;
526                 case LB_MEM_ACPI: entry_type="ACPI"; break;
527                 case LB_MEM_NVS: entry_type="NVS"; break;
528                 case LB_MEM_UNUSABLE: entry_type="UNUSABLE"; break;
529                 case LB_MEM_VENDOR_RSVD: entry_type="VENDOR RESERVED"; break;
530                 case LB_MEM_TABLE: entry_type="CONFIGURATION TABLES"; break;
531                 default: entry_type="UNKNOWN!"; break;
532                 }
533
534                 printk(BIOS_DEBUG, "%2d. %016llx-%016llx: %s\n",
535                         i, entry_start, entry_start+entry_size-1, entry_type);
536
537         }
538 }
539
540
541 /* Routines to extract part so the coreboot table or
542  * information from the coreboot table after we have written it.
543  * Currently get_lb_mem relies on a global we can change the
544  * implementaiton.
545  */
546 static struct lb_memory *mem_ranges = 0;
547 struct lb_memory *get_lb_mem(void)
548 {
549         return mem_ranges;
550 }
551
552 static void build_lb_mem_range(void *gp, struct device *dev, struct resource *res)
553 {
554         struct lb_memory *mem = gp;
555         lb_memory_range(mem, LB_MEM_RAM, res->base, res->size);
556 }
557
558 static struct lb_memory *build_lb_mem(struct lb_header *head)
559 {
560         struct lb_memory *mem;
561
562         /* Record where the lb memory ranges will live */
563         mem = lb_memory(head);
564         mem_ranges = mem;
565
566         /* Build the raw table of memory */
567         search_global_resources(
568                 IORESOURCE_MEM | IORESOURCE_CACHEABLE, IORESOURCE_MEM | IORESOURCE_CACHEABLE,
569                 build_lb_mem_range, mem);
570         lb_cleanup_memory_ranges(mem);
571         return mem;
572 }
573
574 static void lb_add_rsvd_range(void *gp, struct device *dev, struct resource *res)
575 {
576         struct lb_memory *mem = gp;
577         lb_add_memory_range(mem, LB_MEM_RESERVED, res->base, res->size);
578 }
579
580 static void add_lb_reserved(struct lb_memory *mem)
581 {
582         /* Add reserved ranges */
583         search_global_resources(
584                 IORESOURCE_MEM | IORESOURCE_RESERVE, IORESOURCE_MEM | IORESOURCE_RESERVE,
585                 lb_add_rsvd_range, mem);
586 }
587
588 unsigned long write_coreboot_table(
589         unsigned long low_table_start, unsigned long low_table_end,
590         unsigned long rom_table_start, unsigned long rom_table_end)
591 {
592         struct lb_header *head;
593         struct lb_memory *mem;
594
595 #if CONFIG_WRITE_HIGH_TABLES
596         printk(BIOS_DEBUG, "Writing high table forward entry at 0x%08lx\n",
597                         low_table_end);
598         head = lb_table_init(low_table_end);
599         lb_forward(head, (struct lb_header*)rom_table_end);
600
601         low_table_end = (unsigned long) lb_table_fini(head, 0);
602         printk(BIOS_DEBUG, "New low_table_end: 0x%08lx\n", low_table_end);
603         printk(BIOS_DEBUG, "Now going to write high coreboot table at 0x%08lx\n",
604                         rom_table_end);
605
606         head = lb_table_init(rom_table_end);
607         rom_table_end = (unsigned long)head;
608         printk(BIOS_DEBUG, "rom_table_end = 0x%08lx\n", rom_table_end);
609 #else
610         if(low_table_end > (0x1000 - sizeof(struct lb_header))) { /* after 4K */
611                 /* We need to put lbtable on  to [0xf0000,0x100000) */
612                 head = lb_table_init(rom_table_end);
613                 rom_table_end = (unsigned long)head;
614         } else {
615                 head = lb_table_init(low_table_end);
616                 low_table_end = (unsigned long)head;
617         }
618 #endif
619
620         printk(BIOS_DEBUG, "Adjust low_table_end from 0x%08lx to ", low_table_end);
621         low_table_end += 0xfff; // 4K aligned
622         low_table_end &= ~0xfff;
623         printk(BIOS_DEBUG, "0x%08lx \n", low_table_end);
624
625         /* The Linux kernel assumes this region is reserved */
626         printk(BIOS_DEBUG, "Adjust rom_table_end from 0x%08lx to ", rom_table_end);
627         rom_table_end += 0xffff; // 64K align
628         rom_table_end &= ~0xffff;
629         printk(BIOS_DEBUG, "0x%08lx \n", rom_table_end);
630
631 #if CONFIG_USE_OPTION_TABLE
632         {
633                 struct cmos_option_table *option_table = cbfs_find_file("cmos_layout.bin", 0x1aa);
634                 if (option_table) {
635                         struct lb_record *rec_dest = lb_new_record(head);
636                         /* Copy the option config table, it's already a lb_record... */
637                         memcpy(rec_dest,  option_table, option_table->size);
638                         /* Create cmos checksum entry in coreboot table */
639                         lb_cmos_checksum(head);
640                 } else {
641                         printk(BIOS_ERR, "cmos_layout.bin could not be found!\n");
642                 }
643         }
644 #endif
645         /* Record where RAM is located */
646         mem = build_lb_mem(head);
647
648         /* Record the mptable and the the lb_table (This will be adjusted later) */
649         lb_add_memory_range(mem, LB_MEM_TABLE,
650                 low_table_start, low_table_end - low_table_start);
651
652         /* Record the pirq table, acpi tables, and maybe the mptable */
653         lb_add_memory_range(mem, LB_MEM_TABLE,
654                 rom_table_start, rom_table_end-rom_table_start);
655
656 #if CONFIG_WRITE_HIGH_TABLES
657         printk(BIOS_DEBUG, "Adding high table area\n");
658         // should this be LB_MEM_ACPI?
659         lb_add_memory_range(mem, LB_MEM_TABLE,
660                 high_tables_base, high_tables_size);
661 #endif
662
663         /* Add reserved regions */
664         add_lb_reserved(mem);
665
666 #if CONFIG_HAVE_MAINBOARD_RESOURCES
667         add_mainboard_resources(mem);
668 #endif
669
670         lb_dump_memory_ranges(mem);
671
672         /* Note:
673          * I assume that there is always memory at immediately after
674          * the low_table_end.  This means that after I setup the coreboot table.
675          * I can trivially fixup the reserved memory ranges to hold the correct
676          * size of the coreboot table.
677          */
678
679         /* Record our motherboard */
680         lb_mainboard(head);
681         /* Record the serial port, if present */
682         lb_serial(head);
683         /* Record our console setup */
684         lb_console(head);
685         /* Record our various random string information */
686         lb_strings(head);
687         /* Record our framebuffer */
688         lb_framebuffer(head);
689
690 #if CONFIG_CHROMEOS
691         /* Record our GPIO settings (ChromeOS specific) */
692         lb_gpios(head);
693
694         /* pass along the VDAT buffer adress */
695         lb_vdat(head);
696
697         /* pass along VBNV offsets in CMOS */
698         lb_vbnv(head);
699 #endif
700         add_cbmem_pointers(head);
701
702         /* Remember where my valid memory ranges are */
703         return lb_table_fini(head, 1);
704
705 }