blob: 53ff3d36d43f94763568909357dfe90199113dce [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>
Eric Biederman8ca8d762003-04-22 19:02:15 +000024#include <ip_checksum.h>
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000025#include <boot/tables.h>
Stefan Reinauerca374d42008-01-18 16:16:45 +000026#include <boot/coreboot_tables.h>
Stefan Reinauerde3206a2010-02-22 06:09:43 +000027#include <arch/coreboot_tables.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000028#include <string.h>
29#include <version.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000030#include <device/device.h>
31#include <stdlib.h>
Duncan Laurie66ecdc52011-08-15 16:35:10 -070032#include <cbfs.h>
Vadim Bendebury2e438672011-09-23 09:56:11 -070033#include <cbmem.h>
Stefan Reinauerc75bfde2011-08-15 11:26:35 -070034#if CONFIG_USE_OPTION_TABLE
Stefan Reinauer8e726b72010-03-29 23:01:35 +000035#include <option_table.h>
Stefan Reinauerb5828d72010-03-29 17:14:28 +000036#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000037
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000038static struct lb_header *lb_table_init(unsigned long addr)
Eric Biederman8ca8d762003-04-22 19:02:15 +000039{
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
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000059static struct lb_record *lb_first_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000060{
61 struct lb_record *rec;
62 rec = (void *)(((char *)header) + sizeof(*header));
63 return rec;
64}
65
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000066static struct lb_record *lb_last_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) + header->table_bytes);
70 return rec;
71}
72
Myles Watson2e672732009-11-12 16:38:03 +000073#if 0
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000074static struct lb_record *lb_next_record(struct lb_record *rec)
Eric Biederman8ca8d762003-04-22 19:02:15 +000075{
Stefan Reinauer14e22772010-04-27 06:56:47 +000076 rec = (void *)(((char *)rec) + rec->size);
Eric Biederman8ca8d762003-04-22 19:02:15 +000077 return rec;
78}
Myles Watson2e672732009-11-12 16:38:03 +000079#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000080
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000081static struct lb_record *lb_new_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000082{
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
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000096static struct lb_memory *lb_memory(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000097{
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
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000107static struct lb_serial *lb_serial(struct lb_header *header)
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000108{
Myles Watsonec0ee642009-10-19 16:21:30 +0000109#if CONFIG_CONSOLE_SERIAL8250
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000110 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);
Stefan Reinauerd1bc3312011-06-22 16:39:19 -0700116 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
Gabe Black32829ca2011-10-05 01:57:03 -0700121 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 }
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000135#else
Stefan Reinauer40e42a82011-04-14 21:05:41 +0000136 return NULL;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000137#endif
138}
139
Stefan Reinauer513eb5a2011-06-01 14:04:50 -0700140#if CONFIG_CONSOLE_SERIAL8250 || CONFIG_CONSOLE_SERIAL8250MEM || \
141 CONFIG_CONSOLE_LOGBUF || CONFIG_USBDEBUG
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000142static void add_console(struct lb_header *header, u16 consoletype)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000143{
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000144 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000145
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000146 console = (struct lb_console *)lb_new_record(header);
147 console->tag = LB_TAG_CONSOLE;
148 console->size = sizeof(*console);
149 console->type = consoletype;
150}
Stefan Reinauer513eb5a2011-06-01 14:04:50 -0700151#endif
152
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000153static void lb_console(struct lb_header *header)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000154{
Myles Watsonec0ee642009-10-19 16:21:30 +0000155#if CONFIG_CONSOLE_SERIAL8250
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000156 add_console(header, LB_TAG_CONSOLE_SERIAL8250);
157#endif
Stefan Reinauer4885daa2011-04-26 23:47:04 +0000158#if CONFIG_CONSOLE_SERIAL8250MEM
159 add_console(header, LB_TAG_CONSOLE_SERIAL8250MEM);
160#endif
Myles Watsonec0ee642009-10-19 16:21:30 +0000161#if CONFIG_CONSOLE_LOGBUF
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000162 add_console(header, LB_TAG_CONSOLE_LOGBUF);
163#endif
Stefan Reinauer7e00a442010-05-25 17:09:05 +0000164#if CONFIG_USBDEBUG
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000165 add_console(header, LB_TAG_CONSOLE_EHCI);
166#endif
167}
168
Stefan Reinauerd650e992010-02-22 04:33:13 +0000169static void lb_framebuffer(struct lb_header *header)
170{
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700171#if CONFIG_FRAMEBUFFER_KEEP_VESA_MODE
Stefan Reinauerd650e992010-02-22 04:33:13 +0000172 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
Vadim Bendebury2e438672011-09-23 09:56:11 -0700182#if CONFIG_COLLECT_TIMESTAMPS
183static void lb_tsamp(struct lb_header *header)
184{
185 struct lb_tstamp *tstamp;
186 void *tstamp_table = cbmem_find(CBMEM_ID_TIMESTAMP);
187
188 if (!tstamp_table)
189 return;
190
191 tstamp = (struct lb_tstamp *)lb_new_record(header);
192 tstamp->tag = LB_TAG_TIMESTAMPS;
193 tstamp->size = sizeof(*tstamp);
194 tstamp->tstamp_tab = tstamp_table;
195
196}
197#endif
198
Stefan Reinauere3778572010-01-30 09:47:18 +0000199static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000200{
201 struct lb_record *rec;
202 struct lb_mainboard *mainboard;
203 rec = lb_new_record(header);
204 mainboard = (struct lb_mainboard *)rec;
205 mainboard->tag = LB_TAG_MAINBOARD;
206
207 mainboard->size = (sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000208 strlen(mainboard_vendor) + 1 +
Eric Biederman8ca8d762003-04-22 19:02:15 +0000209 strlen(mainboard_part_number) + 1 +
210 3) & ~3;
211
212 mainboard->vendor_idx = 0;
213 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
214
215 memcpy(mainboard->strings + mainboard->vendor_idx,
216 mainboard_vendor, strlen(mainboard_vendor) + 1);
217 memcpy(mainboard->strings + mainboard->part_number_idx,
218 mainboard_part_number, strlen(mainboard_part_number) + 1);
219
220 return mainboard;
221}
222
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700223#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000224static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000225{
226 struct lb_record *rec;
227 struct cmos_checksum *cmos_checksum;
228 rec = lb_new_record(header);
229 cmos_checksum = (struct cmos_checksum *)rec;
230 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
231
232 cmos_checksum->size = (sizeof(*cmos_checksum));
233
Stefan Reinauerb5828d72010-03-29 17:14:28 +0000234 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
235 cmos_checksum->range_end = ( LB_CKS_RANGE_END * 8 ) + 7;
236 cmos_checksum->location = LB_CKS_LOC * 8;
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000237 cmos_checksum->type = CHECKSUM_PCBIOS;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000238
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000239 return cmos_checksum;
240}
Stefan Reinauer2549d522010-03-17 03:44:45 +0000241#endif
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000242
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000243static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000244{
245 static const struct {
246 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000247 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000248 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000249 { LB_TAG_VERSION, coreboot_version, },
250 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
251 { LB_TAG_BUILD, coreboot_build, },
252 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
253 { LB_TAG_COMPILE_BY, coreboot_compile_by, },
254 { LB_TAG_COMPILE_HOST, coreboot_compile_host, },
255 { LB_TAG_COMPILE_DOMAIN, coreboot_compile_domain, },
256 { LB_TAG_COMPILER, coreboot_compiler, },
257 { LB_TAG_LINKER, coreboot_linker, },
258 { LB_TAG_ASSEMBLER, coreboot_assembler, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000259 };
Eric Biederman52685572003-05-19 19:16:21 +0000260 unsigned int i;
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000261 for(i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000262 struct lb_string *rec;
263 size_t len;
264 rec = (struct lb_string *)lb_new_record(header);
265 len = strlen(strings[i].string);
266 rec->tag = strings[i].tag;
267 rec->size = (sizeof(*rec) + len + 1 + 3) & ~3;
268 memcpy(rec->string, strings[i].string, len+1);
269 }
270
271}
272
Myles Watson2e672732009-11-12 16:38:03 +0000273#if CONFIG_WRITE_HIGH_TABLES == 1
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000274static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000275{
276 struct lb_record *rec;
277 struct lb_forward *forward;
278 rec = lb_new_record(header);
279 forward = (struct lb_forward *)rec;
280 forward->tag = LB_TAG_FORWARD;
281 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000282 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000283 return forward;
284}
Myles Watson2e672732009-11-12 16:38:03 +0000285#endif
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000286
Eric Biederman8ca8d762003-04-22 19:02:15 +0000287void lb_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000288 uint32_t type, uint64_t start, uint64_t size)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000289{
290 int entries;
291 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
Eric Biedermanec01aa92004-12-10 20:50:43 +0000292 mem->map[entries].start = pack_lb64(start);
293 mem->map[entries].size = pack_lb64(size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000294 mem->map[entries].type = type;
295 mem->size += sizeof(mem->map[0]);
296}
297
Eric Biederman8ca8d762003-04-22 19:02:15 +0000298static void lb_reserve_table_memory(struct lb_header *head)
299{
300 struct lb_record *last_rec;
301 struct lb_memory *mem;
302 uint64_t start;
303 uint64_t end;
304 int i, entries;
305
306 last_rec = lb_last_record(head);
307 mem = get_lb_mem();
308 start = (unsigned long)head;
309 end = (unsigned long)last_rec;
310 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
311 /* Resize the right two memory areas so this table is in
312 * a reserved area of memory. Everything has been carefully
313 * setup so that is all we need to do.
314 */
315 for(i = 0; i < entries; i++ ) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000316 uint64_t map_start = unpack_lb64(mem->map[i].start);
317 uint64_t map_end = map_start + unpack_lb64(mem->map[i].size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000318 /* Does this area need to be expanded? */
319 if (map_end == start) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000320 mem->map[i].size = pack_lb64(end - map_start);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000321 }
322 /* Does this area need to be contracted? */
323 else if (map_start == start) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000324 mem->map[i].start = pack_lb64(end);
325 mem->map[i].size = pack_lb64(map_end - end);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000326 }
327 }
328}
329
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000330static unsigned long lb_table_fini(struct lb_header *head, int fixup)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000331{
332 struct lb_record *rec, *first_rec;
333 rec = lb_last_record(head);
334 if (head->table_entries) {
335 head->table_bytes += rec->size;
336 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000337
338 if (fixup)
339 lb_reserve_table_memory(head);
340
Eric Biederman8ca8d762003-04-22 19:02:15 +0000341 first_rec = lb_first_record(head);
342 head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
343 head->header_checksum = 0;
344 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700345 printk(BIOS_DEBUG,
346 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
347 head, head->table_bytes, head->table_checksum);
348 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000349}
350
Eric Biederman6e53f502004-10-27 08:53:57 +0000351static void lb_cleanup_memory_ranges(struct lb_memory *mem)
352{
353 int entries;
354 int i, j;
355 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000356
Eric Biederman6e53f502004-10-27 08:53:57 +0000357 /* Sort the lb memory ranges */
358 for(i = 0; i < entries; i++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000359 uint64_t entry_start = unpack_lb64(mem->map[i].start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000360 for(j = i; j < entries; j++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000361 uint64_t temp_start = unpack_lb64(mem->map[j].start);
362 if (temp_start < entry_start) {
Eric Biederman6e53f502004-10-27 08:53:57 +0000363 struct lb_memory_range tmp;
364 tmp = mem->map[i];
365 mem->map[i] = mem->map[j];
366 mem->map[j] = tmp;
367 }
368 }
369 }
370
371 /* Merge adjacent entries */
372 for(i = 0; (i + 1) < entries; i++) {
373 uint64_t start, end, nstart, nend;
374 if (mem->map[i].type != mem->map[i + 1].type) {
375 continue;
376 }
Eric Biedermanec01aa92004-12-10 20:50:43 +0000377 start = unpack_lb64(mem->map[i].start);
378 end = start + unpack_lb64(mem->map[i].size);
379 nstart = unpack_lb64(mem->map[i + 1].start);
380 nend = nstart + unpack_lb64(mem->map[i + 1].size);
Eric Biederman6e53f502004-10-27 08:53:57 +0000381 if ((start <= nstart) && (end > nstart)) {
382 if (start > nstart) {
383 start = nstart;
384 }
385 if (end < nend) {
386 end = nend;
387 }
388 /* Record the new region size */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000389 mem->map[i].start = pack_lb64(start);
390 mem->map[i].size = pack_lb64(end - start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000391
392 /* Delete the entry I have merged with */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000393 memmove(&mem->map[i + 1], &mem->map[i + 2],
Eric Biederman6e53f502004-10-27 08:53:57 +0000394 ((entries - i - 2) * sizeof(mem->map[0])));
395 mem->size -= sizeof(mem->map[0]);
396 entries -= 1;
397 /* See if I can merge with the next entry as well */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000398 i -= 1;
Eric Biederman6e53f502004-10-27 08:53:57 +0000399 }
400 }
401}
402
Stefan Reinauer14e22772010-04-27 06:56:47 +0000403static void lb_remove_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000404 uint64_t start, uint64_t size)
405{
406 uint64_t end;
407 int entries;
408 int i;
409
410 end = start + size;
411 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
412
413 /* Remove a reserved area from the memory map */
414 for(i = 0; i < entries; i++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000415 uint64_t map_start = unpack_lb64(mem->map[i].start);
416 uint64_t map_end = map_start + unpack_lb64(mem->map[i].size);
Eric Biederman6e53f502004-10-27 08:53:57 +0000417 if ((start <= map_start) && (end >= map_end)) {
418 /* Remove the completely covered range */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000419 memmove(&mem->map[i], &mem->map[i + 1],
Eric Biederman6e53f502004-10-27 08:53:57 +0000420 ((entries - i - 1) * sizeof(mem->map[0])));
421 mem->size -= sizeof(mem->map[0]);
422 entries -= 1;
423 /* Since the index will disappear revisit what will appear here */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000424 i -= 1;
Eric Biederman6e53f502004-10-27 08:53:57 +0000425 }
426 else if ((start > map_start) && (end < map_end)) {
427 /* Split the memory range */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000428 memmove(&mem->map[i + 1], &mem->map[i],
Eric Biederman6e53f502004-10-27 08:53:57 +0000429 ((entries - i) * sizeof(mem->map[0])));
430 mem->size += sizeof(mem->map[0]);
431 entries += 1;
432 /* Update the first map entry */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000433 mem->map[i].size = pack_lb64(start - map_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000434 /* Update the second map entry */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000435 mem->map[i + 1].start = pack_lb64(end);
436 mem->map[i + 1].size = pack_lb64(map_end - end);
Eric Biederman6e53f502004-10-27 08:53:57 +0000437 /* Don't bother with this map entry again */
438 i += 1;
439 }
440 else if ((start <= map_start) && (end > map_start)) {
441 /* Shrink the start of the memory range */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000442 mem->map[i].start = pack_lb64(end);
443 mem->map[i].size = pack_lb64(map_end - end);
Eric Biederman6e53f502004-10-27 08:53:57 +0000444 }
445 else if ((start < map_end) && (start > map_start)) {
446 /* Shrink the end of the memory range */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000447 mem->map[i].size = pack_lb64(start - map_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000448 }
449 }
450}
451
Stefan Reinauer045c3482008-12-13 20:51:34 +0000452/* This function is used in mainboard specific code, too */
453void lb_add_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000454 uint32_t type, uint64_t start, uint64_t size)
455{
456 lb_remove_memory_range(mem, start, size);
457 lb_memory_range(mem, type, start, size);
458 lb_cleanup_memory_ranges(mem);
459}
Eric Biederman8ca8d762003-04-22 19:02:15 +0000460
Stefan Reinauere3778572010-01-30 09:47:18 +0000461static void lb_dump_memory_ranges(struct lb_memory *mem)
462{
463 int entries;
464 int i;
465 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000466
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000467 printk(BIOS_DEBUG, "coreboot memory table:\n");
Stefan Reinauere3778572010-01-30 09:47:18 +0000468 for(i = 0; i < entries; i++) {
469 uint64_t entry_start = unpack_lb64(mem->map[i].start);
470 uint64_t entry_size = unpack_lb64(mem->map[i].size);
471 const char *entry_type;
472
473 switch (mem->map[i].type) {
474 case LB_MEM_RAM: entry_type="RAM"; break;
475 case LB_MEM_RESERVED: entry_type="RESERVED"; break;
476 case LB_MEM_ACPI: entry_type="ACPI"; break;
477 case LB_MEM_NVS: entry_type="NVS"; break;
478 case LB_MEM_UNUSABLE: entry_type="UNUSABLE"; break;
479 case LB_MEM_VENDOR_RSVD: entry_type="VENDOR RESERVED"; break;
480 case LB_MEM_TABLE: entry_type="CONFIGURATION TABLES"; break;
481 default: entry_type="UNKNOWN!"; break;
482 }
483
Stefan Reinauer14e22772010-04-27 06:56:47 +0000484 printk(BIOS_DEBUG, "%2d. %016llx-%016llx: %s\n",
Stefan Reinauere3778572010-01-30 09:47:18 +0000485 i, entry_start, entry_start+entry_size-1, entry_type);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000486
Stefan Reinauere3778572010-01-30 09:47:18 +0000487 }
488}
489
490
Stefan Reinauer14e22772010-04-27 06:56:47 +0000491/* Routines to extract part so the coreboot table or
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000492 * information from the coreboot table after we have written it.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000493 * Currently get_lb_mem relies on a global we can change the
494 * implementaiton.
495 */
496static struct lb_memory *mem_ranges = 0;
497struct lb_memory *get_lb_mem(void)
498{
499 return mem_ranges;
500}
501
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000502static void build_lb_mem_range(void *gp, struct device *dev, struct resource *res)
503{
504 struct lb_memory *mem = gp;
505 lb_memory_range(mem, LB_MEM_RAM, res->base, res->size);
506}
507
Eric Biederman6e53f502004-10-27 08:53:57 +0000508static struct lb_memory *build_lb_mem(struct lb_header *head)
Eric Biedermanb78c1972004-10-14 20:54:17 +0000509{
Eric Biederman6e53f502004-10-27 08:53:57 +0000510 struct lb_memory *mem;
Eric Biedermanb78c1972004-10-14 20:54:17 +0000511
Eric Biederman6e53f502004-10-27 08:53:57 +0000512 /* Record where the lb memory ranges will live */
513 mem = lb_memory(head);
514 mem_ranges = mem;
515
516 /* Build the raw table of memory */
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000517 search_global_resources(
518 IORESOURCE_MEM | IORESOURCE_CACHEABLE, IORESOURCE_MEM | IORESOURCE_CACHEABLE,
519 build_lb_mem_range, mem);
Eric Biederman6e53f502004-10-27 08:53:57 +0000520 lb_cleanup_memory_ranges(mem);
Eric Biedermanb78c1972004-10-14 20:54:17 +0000521 return mem;
522}
523
Myles Watsone0a000c2010-09-09 14:51:17 +0000524static void lb_add_rsvd_range(void *gp, struct device *dev, struct resource *res)
525{
526 struct lb_memory *mem = gp;
527 lb_add_memory_range(mem, LB_MEM_RESERVED, res->base, res->size);
528}
529
530static void add_lb_reserved(struct lb_memory *mem)
531{
532 /* Add reserved ranges */
533 search_global_resources(
534 IORESOURCE_MEM | IORESOURCE_RESERVE, IORESOURCE_MEM | IORESOURCE_RESERVE,
535 lb_add_rsvd_range, mem);
536}
537
Stefan Reinauer14e22772010-04-27 06:56:47 +0000538unsigned long write_coreboot_table(
539 unsigned long low_table_start, unsigned long low_table_end,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000540 unsigned long rom_table_start, unsigned long rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000541{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000542 struct lb_header *head;
543 struct lb_memory *mem;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000544
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700545#if CONFIG_WRITE_HIGH_TABLES
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000546 printk(BIOS_DEBUG, "Writing high table forward entry at 0x%08lx\n",
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000547 low_table_end);
548 head = lb_table_init(low_table_end);
Myles Watsonfa12b672009-04-30 22:45:41 +0000549 lb_forward(head, (struct lb_header*)rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000550
Patrick Georgibab4f922009-05-26 19:39:14 +0000551 low_table_end = (unsigned long) lb_table_fini(head, 0);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000552 printk(BIOS_DEBUG, "New low_table_end: 0x%08lx\n", low_table_end);
553 printk(BIOS_DEBUG, "Now going to write high coreboot table at 0x%08lx\n",
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000554 rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000555
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000556 head = lb_table_init(rom_table_end);
557 rom_table_end = (unsigned long)head;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000558 printk(BIOS_DEBUG, "rom_table_end = 0x%08lx\n", rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000559#else
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000560 if(low_table_end > (0x1000 - sizeof(struct lb_header))) { /* after 4K */
561 /* We need to put lbtable on to [0xf0000,0x100000) */
562 head = lb_table_init(rom_table_end);
563 rom_table_end = (unsigned long)head;
564 } else {
565 head = lb_table_init(low_table_end);
566 low_table_end = (unsigned long)head;
567 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000568#endif
Stefan Reinauer14e22772010-04-27 06:56:47 +0000569
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000570 printk(BIOS_DEBUG, "Adjust low_table_end from 0x%08lx to ", low_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000571 low_table_end += 0xfff; // 4K aligned
572 low_table_end &= ~0xfff;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000573 printk(BIOS_DEBUG, "0x%08lx \n", low_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000574
575 /* The Linux kernel assumes this region is reserved */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000576 printk(BIOS_DEBUG, "Adjust rom_table_end from 0x%08lx to ", rom_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000577 rom_table_end += 0xffff; // 64K align
578 rom_table_end &= ~0xffff;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000579 printk(BIOS_DEBUG, "0x%08lx \n", rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000580
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700581#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerba430642007-04-06 12:14:51 +0000582 {
Patrick Georgia3eb5342011-01-21 13:20:10 +0000583 struct cmos_option_table *option_table = cbfs_find_file("cmos_layout.bin", 0x1aa);
Patrick Georgi24479372011-01-18 13:56:36 +0000584 if (option_table) {
585 struct lb_record *rec_dest = lb_new_record(head);
586 /* Copy the option config table, it's already a lb_record... */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000587 memcpy(rec_dest, option_table, option_table->size);
Patrick Georgi24479372011-01-18 13:56:36 +0000588 /* Create cmos checksum entry in coreboot table */
589 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000590 } else {
591 printk(BIOS_ERR, "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000592 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000593 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000594#endif
Eric Biederman6e53f502004-10-27 08:53:57 +0000595 /* Record where RAM is located */
596 mem = build_lb_mem(head);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000597
Eric Biederman6e53f502004-10-27 08:53:57 +0000598 /* Record the mptable and the the lb_table (This will be adjusted later) */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000599 lb_add_memory_range(mem, LB_MEM_TABLE,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000600 low_table_start, low_table_end - low_table_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000601
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000602 /* Record the pirq table, acpi tables, and maybe the mptable */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000603 lb_add_memory_range(mem, LB_MEM_TABLE,
Roman Kononov96e30222008-07-23 23:22:59 +0000604 rom_table_start, rom_table_end-rom_table_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000605
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700606#if CONFIG_WRITE_HIGH_TABLES
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000607 printk(BIOS_DEBUG, "Adding high table area\n");
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000608 // should this be LB_MEM_ACPI?
Patrick Georgibccaafc2009-04-28 12:57:25 +0000609 lb_add_memory_range(mem, LB_MEM_TABLE,
610 high_tables_base, high_tables_size);
611#endif
612
Myles Watsone0a000c2010-09-09 14:51:17 +0000613 /* Add reserved regions */
614 add_lb_reserved(mem);
615
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700616#if CONFIG_HAVE_MAINBOARD_RESOURCES
Stefan Reinauer045c3482008-12-13 20:51:34 +0000617 add_mainboard_resources(mem);
Michael Xie06755e42008-09-22 13:07:20 +0000618#endif
619
Stefan Reinauere3778572010-01-30 09:47:18 +0000620 lb_dump_memory_ranges(mem);
621
Eric Biederman6e53f502004-10-27 08:53:57 +0000622 /* Note:
623 * I assume that there is always memory at immediately after
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000624 * the low_table_end. This means that after I setup the coreboot table.
Eric Biederman6e53f502004-10-27 08:53:57 +0000625 * I can trivially fixup the reserved memory ranges to hold the correct
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000626 * size of the coreboot table.
Eric Biederman6e53f502004-10-27 08:53:57 +0000627 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000628
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000629 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000630 lb_mainboard(head);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000631 /* Record the serial port, if present */
632 lb_serial(head);
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000633 /* Record our console setup */
634 lb_console(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000635 /* Record our various random string information */
636 lb_strings(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000637 /* Record our framebuffer */
638 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000639
Vadim Bendebury2e438672011-09-23 09:56:11 -0700640#if CONFIG_COLLECT_TIMESTAMPS
641 lb_tsamp(head);
642#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +0000643 /* Remember where my valid memory ranges are */
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000644 return lb_table_fini(head, 1);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000645
Eric Biederman8ca8d762003-04-22 19:02:15 +0000646}