blob: 6c7693c9f4f874fc2fcc4d0147fab923298aadeb [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{
Stefan Reinauer08670622009-06-30 15:17:49 +000079#if defined(CONFIG_TTYS0_BASE)
Patrick Georgi8c2a0c12008-01-25 18:28:18 +000080 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);
Stefan Reinauer08670622009-06-30 15:17:49 +000086 serial->ioport = CONFIG_TTYS0_BASE;
87 serial->baud = CONFIG_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{
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +000096 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +000097
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +000098 console = (struct lb_console *)lb_new_record(header);
99 console->tag = LB_TAG_CONSOLE;
100 console->size = sizeof(*console);
101 console->type = consoletype;
102}
103
104void lb_console(struct lb_header *header)
105{
106#ifdef CONFIG_CONSOLE_SERIAL8250
107 add_console(header, LB_TAG_CONSOLE_SERIAL8250);
108#endif
109#ifdef CONFIG_CONSOLE_VGA
110 add_console(header, LB_TAG_CONSOLE_VGA);
111#endif
112#ifdef CONFIG_CONSOLE_BTEXT
113 add_console(header, LB_TAG_CONSOLE_BTEXT);
114#endif
115#ifdef CONFIG_CONSOLE_LOGBUF
116 add_console(header, LB_TAG_CONSOLE_LOGBUF);
117#endif
118#ifdef CONFIG_CONSOLE_SROM
119 add_console(header, LB_TAG_CONSOLE_SROM);
120#endif
121#ifdef CONFIG_USBDEBUG_DIRECT
122 add_console(header, LB_TAG_CONSOLE_EHCI);
123#endif
124}
125
Eric Biederman8ca8d762003-04-22 19:02:15 +0000126struct lb_mainboard *lb_mainboard(struct lb_header *header)
127{
128 struct lb_record *rec;
129 struct lb_mainboard *mainboard;
130 rec = lb_new_record(header);
131 mainboard = (struct lb_mainboard *)rec;
132 mainboard->tag = LB_TAG_MAINBOARD;
133
134 mainboard->size = (sizeof(*mainboard) +
135 strlen(mainboard_vendor) + 1 +
136 strlen(mainboard_part_number) + 1 +
137 3) & ~3;
138
139 mainboard->vendor_idx = 0;
140 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
141
142 memcpy(mainboard->strings + mainboard->vendor_idx,
143 mainboard_vendor, strlen(mainboard_vendor) + 1);
144 memcpy(mainboard->strings + mainboard->part_number_idx,
145 mainboard_part_number, strlen(mainboard_part_number) + 1);
146
147 return mainboard;
148}
149
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000150struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
151{
152 struct lb_record *rec;
153 struct cmos_checksum *cmos_checksum;
154 rec = lb_new_record(header);
155 cmos_checksum = (struct cmos_checksum *)rec;
156 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
157
158 cmos_checksum->size = (sizeof(*cmos_checksum));
159
Stefan Reinauer08670622009-06-30 15:17:49 +0000160 cmos_checksum->range_start = CONFIG_LB_CKS_RANGE_START * 8;
161 cmos_checksum->range_end = ( CONFIG_LB_CKS_RANGE_END * 8 ) + 7;
162 cmos_checksum->location = CONFIG_LB_CKS_LOC * 8;
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000163 cmos_checksum->type = CHECKSUM_PCBIOS;
164
165 return cmos_checksum;
166}
167
Eric Biederman8ca8d762003-04-22 19:02:15 +0000168void lb_strings(struct lb_header *header)
169{
170 static const struct {
171 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000172 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000173 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000174 { LB_TAG_VERSION, coreboot_version, },
175 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
176 { LB_TAG_BUILD, coreboot_build, },
177 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
178 { LB_TAG_COMPILE_BY, coreboot_compile_by, },
179 { LB_TAG_COMPILE_HOST, coreboot_compile_host, },
180 { LB_TAG_COMPILE_DOMAIN, coreboot_compile_domain, },
181 { LB_TAG_COMPILER, coreboot_compiler, },
182 { LB_TAG_LINKER, coreboot_linker, },
183 { LB_TAG_ASSEMBLER, coreboot_assembler, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000184 };
Eric Biederman52685572003-05-19 19:16:21 +0000185 unsigned int i;
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000186 for(i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000187 struct lb_string *rec;
188 size_t len;
189 rec = (struct lb_string *)lb_new_record(header);
190 len = strlen(strings[i].string);
191 rec->tag = strings[i].tag;
192 rec->size = (sizeof(*rec) + len + 1 + 3) & ~3;
193 memcpy(rec->string, strings[i].string, len+1);
194 }
195
196}
197
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000198struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
199{
200 struct lb_record *rec;
201 struct lb_forward *forward;
202 rec = lb_new_record(header);
203 forward = (struct lb_forward *)rec;
204 forward->tag = LB_TAG_FORWARD;
205 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000206 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000207 return forward;
208}
209
Eric Biederman8ca8d762003-04-22 19:02:15 +0000210void lb_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000211 uint32_t type, uint64_t start, uint64_t size)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000212{
213 int entries;
214 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
Eric Biedermanec01aa92004-12-10 20:50:43 +0000215 mem->map[entries].start = pack_lb64(start);
216 mem->map[entries].size = pack_lb64(size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000217 mem->map[entries].type = type;
218 mem->size += sizeof(mem->map[0]);
219}
220
Eric Biederman8ca8d762003-04-22 19:02:15 +0000221static void lb_reserve_table_memory(struct lb_header *head)
222{
223 struct lb_record *last_rec;
224 struct lb_memory *mem;
225 uint64_t start;
226 uint64_t end;
227 int i, entries;
228
229 last_rec = lb_last_record(head);
230 mem = get_lb_mem();
231 start = (unsigned long)head;
232 end = (unsigned long)last_rec;
233 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
234 /* Resize the right two memory areas so this table is in
235 * a reserved area of memory. Everything has been carefully
236 * setup so that is all we need to do.
237 */
238 for(i = 0; i < entries; i++ ) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000239 uint64_t map_start = unpack_lb64(mem->map[i].start);
240 uint64_t map_end = map_start + unpack_lb64(mem->map[i].size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000241 /* Does this area need to be expanded? */
242 if (map_end == start) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000243 mem->map[i].size = pack_lb64(end - map_start);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000244 }
245 /* Does this area need to be contracted? */
246 else if (map_start == start) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000247 mem->map[i].start = pack_lb64(end);
248 mem->map[i].size = pack_lb64(map_end - end);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000249 }
250 }
251}
252
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000253static unsigned long lb_table_fini(struct lb_header *head, int fixup)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000254{
255 struct lb_record *rec, *first_rec;
256 rec = lb_last_record(head);
257 if (head->table_entries) {
258 head->table_bytes += rec->size;
259 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000260
261 if (fixup)
262 lb_reserve_table_memory(head);
263
Eric Biederman8ca8d762003-04-22 19:02:15 +0000264 first_rec = lb_first_record(head);
265 head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
266 head->header_checksum = 0;
267 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Myles Watsonc4ddbff2009-02-09 17:52:54 +0000268 printk_debug("Wrote coreboot table at: %p - %p checksum %x\n",
Eric Biederman8ca8d762003-04-22 19:02:15 +0000269 head, rec, head->table_checksum);
270 return (unsigned long)rec;
271}
272
Eric Biederman6e53f502004-10-27 08:53:57 +0000273static void lb_cleanup_memory_ranges(struct lb_memory *mem)
274{
275 int entries;
276 int i, j;
277 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
278
279 /* Sort the lb memory ranges */
280 for(i = 0; i < entries; i++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000281 uint64_t entry_start = unpack_lb64(mem->map[i].start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000282 for(j = i; j < entries; j++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000283 uint64_t temp_start = unpack_lb64(mem->map[j].start);
284 if (temp_start < entry_start) {
Eric Biederman6e53f502004-10-27 08:53:57 +0000285 struct lb_memory_range tmp;
286 tmp = mem->map[i];
287 mem->map[i] = mem->map[j];
288 mem->map[j] = tmp;
289 }
290 }
291 }
292
293 /* Merge adjacent entries */
294 for(i = 0; (i + 1) < entries; i++) {
295 uint64_t start, end, nstart, nend;
296 if (mem->map[i].type != mem->map[i + 1].type) {
297 continue;
298 }
Eric Biedermanec01aa92004-12-10 20:50:43 +0000299 start = unpack_lb64(mem->map[i].start);
300 end = start + unpack_lb64(mem->map[i].size);
301 nstart = unpack_lb64(mem->map[i + 1].start);
302 nend = nstart + unpack_lb64(mem->map[i + 1].size);
Eric Biederman6e53f502004-10-27 08:53:57 +0000303 if ((start <= nstart) && (end > nstart)) {
304 if (start > nstart) {
305 start = nstart;
306 }
307 if (end < nend) {
308 end = nend;
309 }
310 /* Record the new region size */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000311 mem->map[i].start = pack_lb64(start);
312 mem->map[i].size = pack_lb64(end - start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000313
314 /* Delete the entry I have merged with */
315 memmove(&mem->map[i + 1], &mem->map[i + 2],
316 ((entries - i - 2) * sizeof(mem->map[0])));
317 mem->size -= sizeof(mem->map[0]);
318 entries -= 1;
319 /* See if I can merge with the next entry as well */
320 i -= 1;
321 }
322 }
323}
324
325static void lb_remove_memory_range(struct lb_memory *mem,
326 uint64_t start, uint64_t size)
327{
328 uint64_t end;
329 int entries;
330 int i;
331
332 end = start + size;
333 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
334
335 /* Remove a reserved area from the memory map */
336 for(i = 0; i < entries; i++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000337 uint64_t map_start = unpack_lb64(mem->map[i].start);
338 uint64_t map_end = map_start + unpack_lb64(mem->map[i].size);
Eric Biederman6e53f502004-10-27 08:53:57 +0000339 if ((start <= map_start) && (end >= map_end)) {
340 /* Remove the completely covered range */
341 memmove(&mem->map[i], &mem->map[i + 1],
342 ((entries - i - 1) * sizeof(mem->map[0])));
343 mem->size -= sizeof(mem->map[0]);
344 entries -= 1;
345 /* Since the index will disappear revisit what will appear here */
346 i -= 1;
347 }
348 else if ((start > map_start) && (end < map_end)) {
349 /* Split the memory range */
350 memmove(&mem->map[i + 1], &mem->map[i],
351 ((entries - i) * sizeof(mem->map[0])));
352 mem->size += sizeof(mem->map[0]);
353 entries += 1;
354 /* Update the first map entry */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000355 mem->map[i].size = pack_lb64(start - map_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000356 /* Update the second map entry */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000357 mem->map[i + 1].start = pack_lb64(end);
358 mem->map[i + 1].size = pack_lb64(map_end - end);
Eric Biederman6e53f502004-10-27 08:53:57 +0000359 /* Don't bother with this map entry again */
360 i += 1;
361 }
362 else if ((start <= map_start) && (end > map_start)) {
363 /* Shrink the start of the memory range */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000364 mem->map[i].start = pack_lb64(end);
365 mem->map[i].size = pack_lb64(map_end - end);
Eric Biederman6e53f502004-10-27 08:53:57 +0000366 }
367 else if ((start < map_end) && (start > map_start)) {
368 /* Shrink the end of the memory range */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000369 mem->map[i].size = pack_lb64(start - map_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000370 }
371 }
372}
373
Stefan Reinauer045c3482008-12-13 20:51:34 +0000374/* This function is used in mainboard specific code, too */
375void lb_add_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000376 uint32_t type, uint64_t start, uint64_t size)
377{
378 lb_remove_memory_range(mem, start, size);
379 lb_memory_range(mem, type, start, size);
380 lb_cleanup_memory_ranges(mem);
381}
Eric Biederman8ca8d762003-04-22 19:02:15 +0000382
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000383/* Routines to extract part so the coreboot table or
384 * information from the coreboot table after we have written it.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000385 * Currently get_lb_mem relies on a global we can change the
386 * implementaiton.
387 */
388static struct lb_memory *mem_ranges = 0;
389struct lb_memory *get_lb_mem(void)
390{
391 return mem_ranges;
392}
393
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000394static void build_lb_mem_range(void *gp, struct device *dev, struct resource *res)
395{
396 struct lb_memory *mem = gp;
397 lb_memory_range(mem, LB_MEM_RAM, res->base, res->size);
398}
399
Eric Biederman6e53f502004-10-27 08:53:57 +0000400static struct lb_memory *build_lb_mem(struct lb_header *head)
Eric Biedermanb78c1972004-10-14 20:54:17 +0000401{
Eric Biederman6e53f502004-10-27 08:53:57 +0000402 struct lb_memory *mem;
Eric Biedermanb78c1972004-10-14 20:54:17 +0000403
Eric Biederman6e53f502004-10-27 08:53:57 +0000404 /* Record where the lb memory ranges will live */
405 mem = lb_memory(head);
406 mem_ranges = mem;
407
408 /* Build the raw table of memory */
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000409 search_global_resources(
410 IORESOURCE_MEM | IORESOURCE_CACHEABLE, IORESOURCE_MEM | IORESOURCE_CACHEABLE,
411 build_lb_mem_range, mem);
Eric Biederman6e53f502004-10-27 08:53:57 +0000412 lb_cleanup_memory_ranges(mem);
Eric Biedermanb78c1972004-10-14 20:54:17 +0000413 return mem;
414}
415
Stefan Reinauer08670622009-06-30 15:17:49 +0000416#if CONFIG_HAVE_HIGH_TABLES == 1
Patrick Georgibccaafc2009-04-28 12:57:25 +0000417extern uint64_t high_tables_base, high_tables_size;
418#endif
419
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000420unsigned long write_coreboot_table(
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000421 unsigned long low_table_start, unsigned long low_table_end,
422 unsigned long rom_table_start, unsigned long rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000423{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000424 struct lb_header *head;
425 struct lb_memory *mem;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000426
Stefan Reinauer08670622009-06-30 15:17:49 +0000427#if CONFIG_HAVE_HIGH_TABLES == 1
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000428 printk_debug("Writing high table forward entry at 0x%08lx\n",
429 low_table_end);
430 head = lb_table_init(low_table_end);
Myles Watsonfa12b672009-04-30 22:45:41 +0000431 lb_forward(head, (struct lb_header*)rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000432
Patrick Georgibab4f922009-05-26 19:39:14 +0000433 low_table_end = (unsigned long) lb_table_fini(head, 0);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000434 printk_debug("New low_table_end: 0x%08lx\n", low_table_end);
435 printk_debug("Now going to write high coreboot table at 0x%08lx\n",
436 rom_table_end);
437
438 head = lb_table_init(rom_table_end);
439 rom_table_end = (unsigned long)head;
440 printk_debug("rom_table_end = 0x%08lx\n", rom_table_end);
441#else
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000442 if(low_table_end > (0x1000 - sizeof(struct lb_header))) { /* after 4K */
443 /* We need to put lbtable on to [0xf0000,0x100000) */
444 head = lb_table_init(rom_table_end);
445 rom_table_end = (unsigned long)head;
446 } else {
447 head = lb_table_init(low_table_end);
448 low_table_end = (unsigned long)head;
449 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000450#endif
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000451
Myles Watsonc4ddbff2009-02-09 17:52:54 +0000452 printk_debug("Adjust low_table_end from 0x%08lx to ", low_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000453 low_table_end += 0xfff; // 4K aligned
454 low_table_end &= ~0xfff;
Myles Watsonc4ddbff2009-02-09 17:52:54 +0000455 printk_debug("0x%08lx \n", low_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000456
457 /* The Linux kernel assumes this region is reserved */
Myles Watsonc4ddbff2009-02-09 17:52:54 +0000458 printk_debug("Adjust rom_table_end from 0x%08lx to ", rom_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000459 rom_table_end += 0xffff; // 64K align
460 rom_table_end &= ~0xffff;
Myles Watsonc4ddbff2009-02-09 17:52:54 +0000461 printk_debug("0x%08lx \n", rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000462
Stefan Reinauer08670622009-06-30 15:17:49 +0000463#if (CONFIG_HAVE_OPTION_TABLE == 1)
Stefan Reinauerba430642007-04-06 12:14:51 +0000464 {
Eric Biederman6e53f502004-10-27 08:53:57 +0000465 struct lb_record *rec_dest, *rec_src;
466 /* Write the option config table... */
467 rec_dest = lb_new_record(head);
Eric Biedermana9e632c2004-11-18 22:38:08 +0000468 rec_src = (struct lb_record *)(void *)&option_table;
Eric Biederman6e53f502004-10-27 08:53:57 +0000469 memcpy(rec_dest, rec_src, rec_src->size);
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000470 /* Create cmos checksum entry in coreboot table */
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000471 lb_cmos_checksum(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000472 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000473#endif
Eric Biederman6e53f502004-10-27 08:53:57 +0000474 /* Record where RAM is located */
475 mem = build_lb_mem(head);
476
Eric Biederman6e53f502004-10-27 08:53:57 +0000477 /* Record the mptable and the the lb_table (This will be adjusted later) */
478 lb_add_memory_range(mem, LB_MEM_TABLE,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000479 low_table_start, low_table_end - low_table_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000480
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000481 /* Record the pirq table, acpi tables, and maybe the mptable */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000482 lb_add_memory_range(mem, LB_MEM_TABLE,
Roman Kononov96e30222008-07-23 23:22:59 +0000483 rom_table_start, rom_table_end-rom_table_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000484
Stefan Reinauer08670622009-06-30 15:17:49 +0000485#if CONFIG_HAVE_HIGH_TABLES == 1
Patrick Georgibccaafc2009-04-28 12:57:25 +0000486 printk_debug("Adding high table area\n");
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000487 // should this be LB_MEM_ACPI?
Patrick Georgibccaafc2009-04-28 12:57:25 +0000488 lb_add_memory_range(mem, LB_MEM_TABLE,
489 high_tables_base, high_tables_size);
490#endif
491
Stefan Reinauer08670622009-06-30 15:17:49 +0000492#if (CONFIG_HAVE_MAINBOARD_RESOURCES == 1)
Stefan Reinauer045c3482008-12-13 20:51:34 +0000493 add_mainboard_resources(mem);
Michael Xie06755e42008-09-22 13:07:20 +0000494#endif
495
Eric Biederman6e53f502004-10-27 08:53:57 +0000496 /* Note:
497 * I assume that there is always memory at immediately after
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000498 * the low_table_end. This means that after I setup the coreboot table.
Eric Biederman6e53f502004-10-27 08:53:57 +0000499 * I can trivially fixup the reserved memory ranges to hold the correct
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000500 * size of the coreboot table.
Eric Biederman6e53f502004-10-27 08:53:57 +0000501 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000502
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000503 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000504 lb_mainboard(head);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000505 /* Record the serial port, if present */
506 lb_serial(head);
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000507 /* Record our console setup */
508 lb_console(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000509 /* Record our various random string information */
510 lb_strings(head);
511
Eric Biederman8ca8d762003-04-22 19:02:15 +0000512 /* Remember where my valid memory ranges are */
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000513 return lb_table_fini(head, 1);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000514
Eric Biederman8ca8d762003-04-22 19:02:15 +0000515}