blob: 032a0f3264c1aa1b816da0518e353118254c0430 [file] [log] [blame]
Eric Biederman8ca8d762003-04-22 19:02:15 +00001#include <console/console.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +00002#include <ip_checksum.h>
Stefan Reinauerca374d42008-01-18 16:16:45 +00003#include <boot/coreboot_tables.h>
4#include "coreboot_table.h"
Eric Biederman8ca8d762003-04-22 19:02:15 +00005#include <string.h>
6#include <version.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +00007#include <device/device.h>
8#include <stdlib.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +00009
Eric Biederman8ca8d762003-04-22 19:02:15 +000010struct lb_header *lb_table_init(unsigned long addr)
11{
12 struct lb_header *header;
13
14 /* 16 byte align the address */
15 addr += 15;
16 addr &= ~15;
17
18 header = (void *)addr;
19 header->signature[0] = 'L';
20 header->signature[1] = 'B';
21 header->signature[2] = 'I';
22 header->signature[3] = 'O';
23 header->header_bytes = sizeof(*header);
24 header->header_checksum = 0;
25 header->table_bytes = 0;
26 header->table_checksum = 0;
27 header->table_entries = 0;
28 return header;
29}
30
31struct lb_record *lb_first_record(struct lb_header *header)
32{
33 struct lb_record *rec;
34 rec = (void *)(((char *)header) + sizeof(*header));
35 return rec;
36}
37
38struct lb_record *lb_last_record(struct lb_header *header)
39{
40 struct lb_record *rec;
41 rec = (void *)(((char *)header) + sizeof(*header) + header->table_bytes);
42 return rec;
43}
44
45struct lb_record *lb_next_record(struct lb_record *rec)
46{
47 rec = (void *)(((char *)rec) + rec->size);
48 return rec;
49}
50
51struct lb_record *lb_new_record(struct lb_header *header)
52{
53 struct lb_record *rec;
54 rec = lb_last_record(header);
55 if (header->table_entries) {
56 header->table_bytes += rec->size;
57 }
58 rec = lb_last_record(header);
59 header->table_entries++;
60 rec->tag = LB_TAG_UNUSED;
61 rec->size = sizeof(*rec);
62 return rec;
63}
64
65
66struct lb_memory *lb_memory(struct lb_header *header)
67{
68 struct lb_record *rec;
69 struct lb_memory *mem;
70 rec = lb_new_record(header);
71 mem = (struct lb_memory *)rec;
72 mem->tag = LB_TAG_MEMORY;
73 mem->size = sizeof(*mem);
74 return mem;
75}
76
Patrick Georgi8c2a0c12008-01-25 18:28:18 +000077struct lb_serial *lb_serial(struct lb_header *header)
78{
79#if defined(TTYS0_BASE)
80 struct lb_record *rec;
81 struct lb_serial *serial;
82 rec = lb_new_record(header);
83 serial = (struct lb_serial *)rec;
84 serial->tag = LB_TAG_SERIAL;
85 serial->size = sizeof(*serial);
86 serial->ioport = TTYS0_BASE;
Patrick Georgic2e8fd42008-06-29 06:41:12 +000087 serial->baud = TTYS0_BAUD;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +000088 return serial;
89#else
90 return header;
91#endif
92}
93
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +000094void add_console(struct lb_header *header, u16 consoletype)
95{
96 struct lb_record *rec;
97 struct lb_console *console;
98 rec = lb_new_record(header);
99 console = (struct lb_console *)lb_new_record(header);
100 console->tag = LB_TAG_CONSOLE;
101 console->size = sizeof(*console);
102 console->type = consoletype;
103}
104
105void lb_console(struct lb_header *header)
106{
107#ifdef CONFIG_CONSOLE_SERIAL8250
108 add_console(header, LB_TAG_CONSOLE_SERIAL8250);
109#endif
110#ifdef CONFIG_CONSOLE_VGA
111 add_console(header, LB_TAG_CONSOLE_VGA);
112#endif
113#ifdef CONFIG_CONSOLE_BTEXT
114 add_console(header, LB_TAG_CONSOLE_BTEXT);
115#endif
116#ifdef CONFIG_CONSOLE_LOGBUF
117 add_console(header, LB_TAG_CONSOLE_LOGBUF);
118#endif
119#ifdef CONFIG_CONSOLE_SROM
120 add_console(header, LB_TAG_CONSOLE_SROM);
121#endif
122#ifdef CONFIG_USBDEBUG_DIRECT
123 add_console(header, LB_TAG_CONSOLE_EHCI);
124#endif
125}
126
Eric Biederman8ca8d762003-04-22 19:02:15 +0000127struct lb_mainboard *lb_mainboard(struct lb_header *header)
128{
129 struct lb_record *rec;
130 struct lb_mainboard *mainboard;
131 rec = lb_new_record(header);
132 mainboard = (struct lb_mainboard *)rec;
133 mainboard->tag = LB_TAG_MAINBOARD;
134
135 mainboard->size = (sizeof(*mainboard) +
136 strlen(mainboard_vendor) + 1 +
137 strlen(mainboard_part_number) + 1 +
138 3) & ~3;
139
140 mainboard->vendor_idx = 0;
141 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
142
143 memcpy(mainboard->strings + mainboard->vendor_idx,
144 mainboard_vendor, strlen(mainboard_vendor) + 1);
145 memcpy(mainboard->strings + mainboard->part_number_idx,
146 mainboard_part_number, strlen(mainboard_part_number) + 1);
147
148 return mainboard;
149}
150
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000151struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
152{
153 struct lb_record *rec;
154 struct cmos_checksum *cmos_checksum;
155 rec = lb_new_record(header);
156 cmos_checksum = (struct cmos_checksum *)rec;
157 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
158
159 cmos_checksum->size = (sizeof(*cmos_checksum));
160
161 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
162 cmos_checksum->range_end = ( LB_CKS_RANGE_END * 8 ) + 7;
163 cmos_checksum->location = LB_CKS_LOC * 8;
164 cmos_checksum->type = CHECKSUM_PCBIOS;
165
166 return cmos_checksum;
167}
168
Eric Biederman8ca8d762003-04-22 19:02:15 +0000169void lb_strings(struct lb_header *header)
170{
171 static const struct {
172 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000173 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000174 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000175 { LB_TAG_VERSION, coreboot_version, },
176 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
177 { LB_TAG_BUILD, coreboot_build, },
178 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
179 { LB_TAG_COMPILE_BY, coreboot_compile_by, },
180 { LB_TAG_COMPILE_HOST, coreboot_compile_host, },
181 { LB_TAG_COMPILE_DOMAIN, coreboot_compile_domain, },
182 { LB_TAG_COMPILER, coreboot_compiler, },
183 { LB_TAG_LINKER, coreboot_linker, },
184 { LB_TAG_ASSEMBLER, coreboot_assembler, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000185 };
Eric Biederman52685572003-05-19 19:16:21 +0000186 unsigned int i;
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000187 for(i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000188 struct lb_string *rec;
189 size_t len;
190 rec = (struct lb_string *)lb_new_record(header);
191 len = strlen(strings[i].string);
192 rec->tag = strings[i].tag;
193 rec->size = (sizeof(*rec) + len + 1 + 3) & ~3;
194 memcpy(rec->string, strings[i].string, len+1);
195 }
196
197}
198
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000199struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
200{
201 struct lb_record *rec;
202 struct lb_forward *forward;
203 rec = lb_new_record(header);
204 forward = (struct lb_forward *)rec;
205 forward->tag = LB_TAG_FORWARD;
206 forward->size = sizeof(*forward);
207 forward->forward = (uint64_t) next_header;
208 return forward;
209}
210
Eric Biederman8ca8d762003-04-22 19:02:15 +0000211void lb_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000212 uint32_t type, uint64_t start, uint64_t size)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000213{
214 int entries;
215 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
Eric Biedermanec01aa92004-12-10 20:50:43 +0000216 mem->map[entries].start = pack_lb64(start);
217 mem->map[entries].size = pack_lb64(size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000218 mem->map[entries].type = type;
219 mem->size += sizeof(mem->map[0]);
220}
221
Eric Biederman8ca8d762003-04-22 19:02:15 +0000222static void lb_reserve_table_memory(struct lb_header *head)
223{
224 struct lb_record *last_rec;
225 struct lb_memory *mem;
226 uint64_t start;
227 uint64_t end;
228 int i, entries;
229
230 last_rec = lb_last_record(head);
231 mem = get_lb_mem();
232 start = (unsigned long)head;
233 end = (unsigned long)last_rec;
234 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
235 /* Resize the right two memory areas so this table is in
236 * a reserved area of memory. Everything has been carefully
237 * setup so that is all we need to do.
238 */
239 for(i = 0; i < entries; i++ ) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000240 uint64_t map_start = unpack_lb64(mem->map[i].start);
241 uint64_t map_end = map_start + unpack_lb64(mem->map[i].size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000242 /* Does this area need to be expanded? */
243 if (map_end == start) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000244 mem->map[i].size = pack_lb64(end - map_start);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000245 }
246 /* Does this area need to be contracted? */
247 else if (map_start == start) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000248 mem->map[i].start = pack_lb64(end);
249 mem->map[i].size = pack_lb64(map_end - end);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000250 }
251 }
252}
253
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000254static unsigned long lb_table_fini(struct lb_header *head, int fixup)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000255{
256 struct lb_record *rec, *first_rec;
257 rec = lb_last_record(head);
258 if (head->table_entries) {
259 head->table_bytes += rec->size;
260 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000261
262 if (fixup)
263 lb_reserve_table_memory(head);
264
Eric Biederman8ca8d762003-04-22 19:02:15 +0000265 first_rec = lb_first_record(head);
266 head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
267 head->header_checksum = 0;
268 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Myles Watsonc4ddbff2009-02-09 17:52:54 +0000269 printk_debug("Wrote coreboot table at: %p - %p checksum %x\n",
Eric Biederman8ca8d762003-04-22 19:02:15 +0000270 head, rec, head->table_checksum);
271 return (unsigned long)rec;
272}
273
Eric Biederman6e53f502004-10-27 08:53:57 +0000274static void lb_cleanup_memory_ranges(struct lb_memory *mem)
275{
276 int entries;
277 int i, j;
278 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
279
280 /* Sort the lb memory ranges */
281 for(i = 0; i < entries; i++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000282 uint64_t entry_start = unpack_lb64(mem->map[i].start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000283 for(j = i; j < entries; j++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000284 uint64_t temp_start = unpack_lb64(mem->map[j].start);
285 if (temp_start < entry_start) {
Eric Biederman6e53f502004-10-27 08:53:57 +0000286 struct lb_memory_range tmp;
287 tmp = mem->map[i];
288 mem->map[i] = mem->map[j];
289 mem->map[j] = tmp;
290 }
291 }
292 }
293
294 /* Merge adjacent entries */
295 for(i = 0; (i + 1) < entries; i++) {
296 uint64_t start, end, nstart, nend;
297 if (mem->map[i].type != mem->map[i + 1].type) {
298 continue;
299 }
Eric Biedermanec01aa92004-12-10 20:50:43 +0000300 start = unpack_lb64(mem->map[i].start);
301 end = start + unpack_lb64(mem->map[i].size);
302 nstart = unpack_lb64(mem->map[i + 1].start);
303 nend = nstart + unpack_lb64(mem->map[i + 1].size);
Eric Biederman6e53f502004-10-27 08:53:57 +0000304 if ((start <= nstart) && (end > nstart)) {
305 if (start > nstart) {
306 start = nstart;
307 }
308 if (end < nend) {
309 end = nend;
310 }
311 /* Record the new region size */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000312 mem->map[i].start = pack_lb64(start);
313 mem->map[i].size = pack_lb64(end - start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000314
315 /* Delete the entry I have merged with */
316 memmove(&mem->map[i + 1], &mem->map[i + 2],
317 ((entries - i - 2) * sizeof(mem->map[0])));
318 mem->size -= sizeof(mem->map[0]);
319 entries -= 1;
320 /* See if I can merge with the next entry as well */
321 i -= 1;
322 }
323 }
324}
325
326static void lb_remove_memory_range(struct lb_memory *mem,
327 uint64_t start, uint64_t size)
328{
329 uint64_t end;
330 int entries;
331 int i;
332
333 end = start + size;
334 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
335
336 /* Remove a reserved area from the memory map */
337 for(i = 0; i < entries; i++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000338 uint64_t map_start = unpack_lb64(mem->map[i].start);
339 uint64_t map_end = map_start + unpack_lb64(mem->map[i].size);
Eric Biederman6e53f502004-10-27 08:53:57 +0000340 if ((start <= map_start) && (end >= map_end)) {
341 /* Remove the completely covered range */
342 memmove(&mem->map[i], &mem->map[i + 1],
343 ((entries - i - 1) * sizeof(mem->map[0])));
344 mem->size -= sizeof(mem->map[0]);
345 entries -= 1;
346 /* Since the index will disappear revisit what will appear here */
347 i -= 1;
348 }
349 else if ((start > map_start) && (end < map_end)) {
350 /* Split the memory range */
351 memmove(&mem->map[i + 1], &mem->map[i],
352 ((entries - i) * sizeof(mem->map[0])));
353 mem->size += sizeof(mem->map[0]);
354 entries += 1;
355 /* Update the first map entry */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000356 mem->map[i].size = pack_lb64(start - map_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000357 /* Update the second map entry */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000358 mem->map[i + 1].start = pack_lb64(end);
359 mem->map[i + 1].size = pack_lb64(map_end - end);
Eric Biederman6e53f502004-10-27 08:53:57 +0000360 /* Don't bother with this map entry again */
361 i += 1;
362 }
363 else if ((start <= map_start) && (end > map_start)) {
364 /* Shrink the start of the memory range */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000365 mem->map[i].start = pack_lb64(end);
366 mem->map[i].size = pack_lb64(map_end - end);
Eric Biederman6e53f502004-10-27 08:53:57 +0000367 }
368 else if ((start < map_end) && (start > map_start)) {
369 /* Shrink the end of the memory range */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000370 mem->map[i].size = pack_lb64(start - map_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000371 }
372 }
373}
374
Stefan Reinauer045c3482008-12-13 20:51:34 +0000375/* This function is used in mainboard specific code, too */
376void lb_add_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000377 uint32_t type, uint64_t start, uint64_t size)
378{
379 lb_remove_memory_range(mem, start, size);
380 lb_memory_range(mem, type, start, size);
381 lb_cleanup_memory_ranges(mem);
382}
Eric Biederman8ca8d762003-04-22 19:02:15 +0000383
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000384/* Routines to extract part so the coreboot table or
385 * information from the coreboot table after we have written it.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000386 * Currently get_lb_mem relies on a global we can change the
387 * implementaiton.
388 */
389static struct lb_memory *mem_ranges = 0;
390struct lb_memory *get_lb_mem(void)
391{
392 return mem_ranges;
393}
394
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000395static void build_lb_mem_range(void *gp, struct device *dev, struct resource *res)
396{
397 struct lb_memory *mem = gp;
398 lb_memory_range(mem, LB_MEM_RAM, res->base, res->size);
399}
400
Eric Biederman6e53f502004-10-27 08:53:57 +0000401static struct lb_memory *build_lb_mem(struct lb_header *head)
Eric Biedermanb78c1972004-10-14 20:54:17 +0000402{
Eric Biederman6e53f502004-10-27 08:53:57 +0000403 struct lb_memory *mem;
Eric Biedermanb78c1972004-10-14 20:54:17 +0000404
Eric Biederman6e53f502004-10-27 08:53:57 +0000405 /* Record where the lb memory ranges will live */
406 mem = lb_memory(head);
407 mem_ranges = mem;
408
409 /* Build the raw table of memory */
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000410 search_global_resources(
411 IORESOURCE_MEM | IORESOURCE_CACHEABLE, IORESOURCE_MEM | IORESOURCE_CACHEABLE,
412 build_lb_mem_range, mem);
Eric Biederman6e53f502004-10-27 08:53:57 +0000413 lb_cleanup_memory_ranges(mem);
Eric Biedermanb78c1972004-10-14 20:54:17 +0000414 return mem;
415}
416
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000417unsigned long write_coreboot_table(
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000418 unsigned long low_table_start, unsigned long low_table_end,
419 unsigned long rom_table_start, unsigned long rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000420{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000421 struct lb_header *head;
422 struct lb_memory *mem;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000423
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000424#if HAVE_HIGH_TABLES == 1
425 printk_debug("Writing high table forward entry at 0x%08lx\n",
426 low_table_end);
427 head = lb_table_init(low_table_end);
428 lb_forward(head, rom_table_end);
429 lb_table_fini(head, 0);
430
431 low_table_end = (unsigned long)head;
432 printk_debug("New low_table_end: 0x%08lx\n", low_table_end);
433 printk_debug("Now going to write high coreboot table at 0x%08lx\n",
434 rom_table_end);
435
436 head = lb_table_init(rom_table_end);
437 rom_table_end = (unsigned long)head;
438 printk_debug("rom_table_end = 0x%08lx\n", rom_table_end);
439#else
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000440 if(low_table_end > (0x1000 - sizeof(struct lb_header))) { /* after 4K */
441 /* We need to put lbtable on to [0xf0000,0x100000) */
442 head = lb_table_init(rom_table_end);
443 rom_table_end = (unsigned long)head;
444 } else {
445 head = lb_table_init(low_table_end);
446 low_table_end = (unsigned long)head;
447 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000448#endif
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000449
Myles Watsonc4ddbff2009-02-09 17:52:54 +0000450 printk_debug("Adjust low_table_end from 0x%08lx to ", low_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000451 low_table_end += 0xfff; // 4K aligned
452 low_table_end &= ~0xfff;
Myles Watsonc4ddbff2009-02-09 17:52:54 +0000453 printk_debug("0x%08lx \n", low_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000454
455 /* The Linux kernel assumes this region is reserved */
Myles Watsonc4ddbff2009-02-09 17:52:54 +0000456 printk_debug("Adjust rom_table_end from 0x%08lx to ", rom_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000457 rom_table_end += 0xffff; // 64K align
458 rom_table_end &= ~0xffff;
Myles Watsonc4ddbff2009-02-09 17:52:54 +0000459 printk_debug("0x%08lx \n", rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000460
Stefan Reinauerba430642007-04-06 12:14:51 +0000461#if (HAVE_OPTION_TABLE == 1)
462 {
Eric Biederman6e53f502004-10-27 08:53:57 +0000463 struct lb_record *rec_dest, *rec_src;
464 /* Write the option config table... */
465 rec_dest = lb_new_record(head);
Eric Biedermana9e632c2004-11-18 22:38:08 +0000466 rec_src = (struct lb_record *)(void *)&option_table;
Eric Biederman6e53f502004-10-27 08:53:57 +0000467 memcpy(rec_dest, rec_src, rec_src->size);
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000468 /* Create cmos checksum entry in coreboot table */
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000469 lb_cmos_checksum(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000470 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000471#endif
Eric Biederman6e53f502004-10-27 08:53:57 +0000472 /* Record where RAM is located */
473 mem = build_lb_mem(head);
474
Eric Biederman6e53f502004-10-27 08:53:57 +0000475 /* Record the mptable and the the lb_table (This will be adjusted later) */
476 lb_add_memory_range(mem, LB_MEM_TABLE,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000477 low_table_start, low_table_end - low_table_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000478
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000479 /* Record the pirq table, acpi tables, and maybe the mptable */
Eric Biederman6e53f502004-10-27 08:53:57 +0000480 lb_add_memory_range(mem, LB_MEM_TABLE,
Roman Kononov96e30222008-07-23 23:22:59 +0000481 rom_table_start, rom_table_end-rom_table_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000482
Stefan Reinauer045c3482008-12-13 20:51:34 +0000483#if (HAVE_MAINBOARD_RESOURCES == 1)
484 add_mainboard_resources(mem);
Michael Xie06755e42008-09-22 13:07:20 +0000485#endif
486
Eric Biederman6e53f502004-10-27 08:53:57 +0000487 /* Note:
488 * I assume that there is always memory at immediately after
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000489 * the low_table_end. This means that after I setup the coreboot table.
Eric Biederman6e53f502004-10-27 08:53:57 +0000490 * I can trivially fixup the reserved memory ranges to hold the correct
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000491 * size of the coreboot table.
Eric Biederman6e53f502004-10-27 08:53:57 +0000492 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000493
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000494 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000495 lb_mainboard(head);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000496 /* Record the serial port, if present */
497 lb_serial(head);
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000498 /* Record our console setup */
499 lb_console(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000500 /* Record our various random string information */
501 lb_strings(head);
502
Eric Biederman8ca8d762003-04-22 19:02:15 +0000503 /* Remember where my valid memory ranges are */
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000504 return lb_table_fini(head, 1);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000505
Eric Biederman8ca8d762003-04-22 19:02:15 +0000506}