blob: a9ff6f0f1be63d455fef4072de74326fe092efc8 [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 Bendebury22c04682011-10-03 14:58:57 -0700182static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700183{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700184 /*
185 * These CBMEM sections' addresses are included in the coreboot table
186 * with the appropriate tags.
187 */
188 const struct section_id {
189 int cbmem_id;
190 int table_tag;
191 } section_ids[] = {
192 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
193 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE}
194 };
195 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700196
Vadim Bendebury22c04682011-10-03 14:58:57 -0700197 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
198 const struct section_id *sid = section_ids + i;
199 struct lb_cbmem_ref *cbmem_ref;
200 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700201
Vadim Bendebury22c04682011-10-03 14:58:57 -0700202 if (!cbmem_addr)
203 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700204
Vadim Bendebury22c04682011-10-03 14:58:57 -0700205 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
206 if (!cbmem_ref) {
207 printk(BIOS_ERR, "No more room in coreboot table!\n");
208 break;
209 }
210 cbmem_ref->tag = sid->table_tag;
211 cbmem_ref->size = sizeof(*cbmem_ref);
212 cbmem_ref->cbmem_addr = cbmem_addr;
213 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700214}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700215
Stefan Reinauere3778572010-01-30 09:47:18 +0000216static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000217{
218 struct lb_record *rec;
219 struct lb_mainboard *mainboard;
220 rec = lb_new_record(header);
221 mainboard = (struct lb_mainboard *)rec;
222 mainboard->tag = LB_TAG_MAINBOARD;
223
224 mainboard->size = (sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000225 strlen(mainboard_vendor) + 1 +
Eric Biederman8ca8d762003-04-22 19:02:15 +0000226 strlen(mainboard_part_number) + 1 +
227 3) & ~3;
228
229 mainboard->vendor_idx = 0;
230 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
231
232 memcpy(mainboard->strings + mainboard->vendor_idx,
233 mainboard_vendor, strlen(mainboard_vendor) + 1);
234 memcpy(mainboard->strings + mainboard->part_number_idx,
235 mainboard_part_number, strlen(mainboard_part_number) + 1);
236
237 return mainboard;
238}
239
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700240#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000241static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000242{
243 struct lb_record *rec;
244 struct cmos_checksum *cmos_checksum;
245 rec = lb_new_record(header);
246 cmos_checksum = (struct cmos_checksum *)rec;
247 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
248
249 cmos_checksum->size = (sizeof(*cmos_checksum));
250
Stefan Reinauerb5828d72010-03-29 17:14:28 +0000251 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
252 cmos_checksum->range_end = ( LB_CKS_RANGE_END * 8 ) + 7;
253 cmos_checksum->location = LB_CKS_LOC * 8;
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000254 cmos_checksum->type = CHECKSUM_PCBIOS;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000255
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000256 return cmos_checksum;
257}
Stefan Reinauer2549d522010-03-17 03:44:45 +0000258#endif
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000259
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000260static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000261{
262 static const struct {
263 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000264 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000265 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000266 { LB_TAG_VERSION, coreboot_version, },
267 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
268 { LB_TAG_BUILD, coreboot_build, },
269 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
270 { LB_TAG_COMPILE_BY, coreboot_compile_by, },
271 { LB_TAG_COMPILE_HOST, coreboot_compile_host, },
272 { LB_TAG_COMPILE_DOMAIN, coreboot_compile_domain, },
273 { LB_TAG_COMPILER, coreboot_compiler, },
274 { LB_TAG_LINKER, coreboot_linker, },
275 { LB_TAG_ASSEMBLER, coreboot_assembler, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000276 };
Eric Biederman52685572003-05-19 19:16:21 +0000277 unsigned int i;
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000278 for(i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000279 struct lb_string *rec;
280 size_t len;
281 rec = (struct lb_string *)lb_new_record(header);
282 len = strlen(strings[i].string);
283 rec->tag = strings[i].tag;
284 rec->size = (sizeof(*rec) + len + 1 + 3) & ~3;
285 memcpy(rec->string, strings[i].string, len+1);
286 }
287
288}
289
Myles Watson2e672732009-11-12 16:38:03 +0000290#if CONFIG_WRITE_HIGH_TABLES == 1
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000291static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000292{
293 struct lb_record *rec;
294 struct lb_forward *forward;
295 rec = lb_new_record(header);
296 forward = (struct lb_forward *)rec;
297 forward->tag = LB_TAG_FORWARD;
298 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000299 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000300 return forward;
301}
Myles Watson2e672732009-11-12 16:38:03 +0000302#endif
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000303
Eric Biederman8ca8d762003-04-22 19:02:15 +0000304void lb_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000305 uint32_t type, uint64_t start, uint64_t size)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000306{
307 int entries;
308 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
Eric Biedermanec01aa92004-12-10 20:50:43 +0000309 mem->map[entries].start = pack_lb64(start);
310 mem->map[entries].size = pack_lb64(size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000311 mem->map[entries].type = type;
312 mem->size += sizeof(mem->map[0]);
313}
314
Eric Biederman8ca8d762003-04-22 19:02:15 +0000315static void lb_reserve_table_memory(struct lb_header *head)
316{
317 struct lb_record *last_rec;
318 struct lb_memory *mem;
319 uint64_t start;
320 uint64_t end;
321 int i, entries;
322
323 last_rec = lb_last_record(head);
324 mem = get_lb_mem();
325 start = (unsigned long)head;
326 end = (unsigned long)last_rec;
327 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
328 /* Resize the right two memory areas so this table is in
329 * a reserved area of memory. Everything has been carefully
330 * setup so that is all we need to do.
331 */
332 for(i = 0; i < entries; i++ ) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000333 uint64_t map_start = unpack_lb64(mem->map[i].start);
334 uint64_t map_end = map_start + unpack_lb64(mem->map[i].size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000335 /* Does this area need to be expanded? */
336 if (map_end == start) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000337 mem->map[i].size = pack_lb64(end - map_start);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000338 }
339 /* Does this area need to be contracted? */
340 else if (map_start == start) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000341 mem->map[i].start = pack_lb64(end);
342 mem->map[i].size = pack_lb64(map_end - end);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000343 }
344 }
345}
346
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000347static unsigned long lb_table_fini(struct lb_header *head, int fixup)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000348{
349 struct lb_record *rec, *first_rec;
350 rec = lb_last_record(head);
351 if (head->table_entries) {
352 head->table_bytes += rec->size;
353 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000354
355 if (fixup)
356 lb_reserve_table_memory(head);
357
Eric Biederman8ca8d762003-04-22 19:02:15 +0000358 first_rec = lb_first_record(head);
359 head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
360 head->header_checksum = 0;
361 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700362 printk(BIOS_DEBUG,
363 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
364 head, head->table_bytes, head->table_checksum);
365 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000366}
367
Eric Biederman6e53f502004-10-27 08:53:57 +0000368static void lb_cleanup_memory_ranges(struct lb_memory *mem)
369{
370 int entries;
371 int i, j;
372 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000373
Eric Biederman6e53f502004-10-27 08:53:57 +0000374 /* Sort the lb memory ranges */
375 for(i = 0; i < entries; i++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000376 uint64_t entry_start = unpack_lb64(mem->map[i].start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000377 for(j = i; j < entries; j++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000378 uint64_t temp_start = unpack_lb64(mem->map[j].start);
379 if (temp_start < entry_start) {
Eric Biederman6e53f502004-10-27 08:53:57 +0000380 struct lb_memory_range tmp;
381 tmp = mem->map[i];
382 mem->map[i] = mem->map[j];
383 mem->map[j] = tmp;
384 }
385 }
386 }
387
388 /* Merge adjacent entries */
389 for(i = 0; (i + 1) < entries; i++) {
390 uint64_t start, end, nstart, nend;
391 if (mem->map[i].type != mem->map[i + 1].type) {
392 continue;
393 }
Eric Biedermanec01aa92004-12-10 20:50:43 +0000394 start = unpack_lb64(mem->map[i].start);
395 end = start + unpack_lb64(mem->map[i].size);
396 nstart = unpack_lb64(mem->map[i + 1].start);
397 nend = nstart + unpack_lb64(mem->map[i + 1].size);
Eric Biederman6e53f502004-10-27 08:53:57 +0000398 if ((start <= nstart) && (end > nstart)) {
399 if (start > nstart) {
400 start = nstart;
401 }
402 if (end < nend) {
403 end = nend;
404 }
405 /* Record the new region size */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000406 mem->map[i].start = pack_lb64(start);
407 mem->map[i].size = pack_lb64(end - start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000408
409 /* Delete the entry I have merged with */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000410 memmove(&mem->map[i + 1], &mem->map[i + 2],
Eric Biederman6e53f502004-10-27 08:53:57 +0000411 ((entries - i - 2) * sizeof(mem->map[0])));
412 mem->size -= sizeof(mem->map[0]);
413 entries -= 1;
414 /* See if I can merge with the next entry as well */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000415 i -= 1;
Eric Biederman6e53f502004-10-27 08:53:57 +0000416 }
417 }
418}
419
Stefan Reinauer14e22772010-04-27 06:56:47 +0000420static void lb_remove_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000421 uint64_t start, uint64_t size)
422{
423 uint64_t end;
424 int entries;
425 int i;
426
427 end = start + size;
428 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
429
430 /* Remove a reserved area from the memory map */
431 for(i = 0; i < entries; i++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000432 uint64_t map_start = unpack_lb64(mem->map[i].start);
433 uint64_t map_end = map_start + unpack_lb64(mem->map[i].size);
Eric Biederman6e53f502004-10-27 08:53:57 +0000434 if ((start <= map_start) && (end >= map_end)) {
435 /* Remove the completely covered range */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000436 memmove(&mem->map[i], &mem->map[i + 1],
Eric Biederman6e53f502004-10-27 08:53:57 +0000437 ((entries - i - 1) * sizeof(mem->map[0])));
438 mem->size -= sizeof(mem->map[0]);
439 entries -= 1;
440 /* Since the index will disappear revisit what will appear here */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000441 i -= 1;
Eric Biederman6e53f502004-10-27 08:53:57 +0000442 }
443 else if ((start > map_start) && (end < map_end)) {
444 /* Split the memory range */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000445 memmove(&mem->map[i + 1], &mem->map[i],
Eric Biederman6e53f502004-10-27 08:53:57 +0000446 ((entries - i) * sizeof(mem->map[0])));
447 mem->size += sizeof(mem->map[0]);
448 entries += 1;
449 /* Update the first map entry */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000450 mem->map[i].size = pack_lb64(start - map_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000451 /* Update the second map entry */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000452 mem->map[i + 1].start = pack_lb64(end);
453 mem->map[i + 1].size = pack_lb64(map_end - end);
Eric Biederman6e53f502004-10-27 08:53:57 +0000454 /* Don't bother with this map entry again */
455 i += 1;
456 }
457 else if ((start <= map_start) && (end > map_start)) {
458 /* Shrink the start of the memory range */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000459 mem->map[i].start = pack_lb64(end);
460 mem->map[i].size = pack_lb64(map_end - end);
Eric Biederman6e53f502004-10-27 08:53:57 +0000461 }
462 else if ((start < map_end) && (start > map_start)) {
463 /* Shrink the end of the memory range */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000464 mem->map[i].size = pack_lb64(start - map_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000465 }
466 }
467}
468
Stefan Reinauer045c3482008-12-13 20:51:34 +0000469/* This function is used in mainboard specific code, too */
470void lb_add_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000471 uint32_t type, uint64_t start, uint64_t size)
472{
473 lb_remove_memory_range(mem, start, size);
474 lb_memory_range(mem, type, start, size);
475 lb_cleanup_memory_ranges(mem);
476}
Eric Biederman8ca8d762003-04-22 19:02:15 +0000477
Stefan Reinauere3778572010-01-30 09:47:18 +0000478static void lb_dump_memory_ranges(struct lb_memory *mem)
479{
480 int entries;
481 int i;
482 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000483
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000484 printk(BIOS_DEBUG, "coreboot memory table:\n");
Stefan Reinauere3778572010-01-30 09:47:18 +0000485 for(i = 0; i < entries; i++) {
486 uint64_t entry_start = unpack_lb64(mem->map[i].start);
487 uint64_t entry_size = unpack_lb64(mem->map[i].size);
488 const char *entry_type;
489
490 switch (mem->map[i].type) {
491 case LB_MEM_RAM: entry_type="RAM"; break;
492 case LB_MEM_RESERVED: entry_type="RESERVED"; break;
493 case LB_MEM_ACPI: entry_type="ACPI"; break;
494 case LB_MEM_NVS: entry_type="NVS"; break;
495 case LB_MEM_UNUSABLE: entry_type="UNUSABLE"; break;
496 case LB_MEM_VENDOR_RSVD: entry_type="VENDOR RESERVED"; break;
497 case LB_MEM_TABLE: entry_type="CONFIGURATION TABLES"; break;
498 default: entry_type="UNKNOWN!"; break;
499 }
500
Stefan Reinauer14e22772010-04-27 06:56:47 +0000501 printk(BIOS_DEBUG, "%2d. %016llx-%016llx: %s\n",
Stefan Reinauere3778572010-01-30 09:47:18 +0000502 i, entry_start, entry_start+entry_size-1, entry_type);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000503
Stefan Reinauere3778572010-01-30 09:47:18 +0000504 }
505}
506
507
Stefan Reinauer14e22772010-04-27 06:56:47 +0000508/* Routines to extract part so the coreboot table or
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000509 * information from the coreboot table after we have written it.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000510 * Currently get_lb_mem relies on a global we can change the
511 * implementaiton.
512 */
513static struct lb_memory *mem_ranges = 0;
514struct lb_memory *get_lb_mem(void)
515{
516 return mem_ranges;
517}
518
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000519static void build_lb_mem_range(void *gp, struct device *dev, struct resource *res)
520{
521 struct lb_memory *mem = gp;
522 lb_memory_range(mem, LB_MEM_RAM, res->base, res->size);
523}
524
Eric Biederman6e53f502004-10-27 08:53:57 +0000525static struct lb_memory *build_lb_mem(struct lb_header *head)
Eric Biedermanb78c1972004-10-14 20:54:17 +0000526{
Eric Biederman6e53f502004-10-27 08:53:57 +0000527 struct lb_memory *mem;
Eric Biedermanb78c1972004-10-14 20:54:17 +0000528
Eric Biederman6e53f502004-10-27 08:53:57 +0000529 /* Record where the lb memory ranges will live */
530 mem = lb_memory(head);
531 mem_ranges = mem;
532
533 /* Build the raw table of memory */
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000534 search_global_resources(
535 IORESOURCE_MEM | IORESOURCE_CACHEABLE, IORESOURCE_MEM | IORESOURCE_CACHEABLE,
536 build_lb_mem_range, mem);
Eric Biederman6e53f502004-10-27 08:53:57 +0000537 lb_cleanup_memory_ranges(mem);
Eric Biedermanb78c1972004-10-14 20:54:17 +0000538 return mem;
539}
540
Myles Watsone0a000c2010-09-09 14:51:17 +0000541static void lb_add_rsvd_range(void *gp, struct device *dev, struct resource *res)
542{
543 struct lb_memory *mem = gp;
544 lb_add_memory_range(mem, LB_MEM_RESERVED, res->base, res->size);
545}
546
547static void add_lb_reserved(struct lb_memory *mem)
548{
549 /* Add reserved ranges */
550 search_global_resources(
551 IORESOURCE_MEM | IORESOURCE_RESERVE, IORESOURCE_MEM | IORESOURCE_RESERVE,
552 lb_add_rsvd_range, mem);
553}
554
Stefan Reinauer14e22772010-04-27 06:56:47 +0000555unsigned long write_coreboot_table(
556 unsigned long low_table_start, unsigned long low_table_end,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000557 unsigned long rom_table_start, unsigned long rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000558{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000559 struct lb_header *head;
560 struct lb_memory *mem;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000561
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700562#if CONFIG_WRITE_HIGH_TABLES
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000563 printk(BIOS_DEBUG, "Writing high table forward entry at 0x%08lx\n",
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000564 low_table_end);
565 head = lb_table_init(low_table_end);
Myles Watsonfa12b672009-04-30 22:45:41 +0000566 lb_forward(head, (struct lb_header*)rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000567
Patrick Georgibab4f922009-05-26 19:39:14 +0000568 low_table_end = (unsigned long) lb_table_fini(head, 0);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000569 printk(BIOS_DEBUG, "New low_table_end: 0x%08lx\n", low_table_end);
570 printk(BIOS_DEBUG, "Now going to write high coreboot table at 0x%08lx\n",
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000571 rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000572
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000573 head = lb_table_init(rom_table_end);
574 rom_table_end = (unsigned long)head;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000575 printk(BIOS_DEBUG, "rom_table_end = 0x%08lx\n", rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000576#else
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000577 if(low_table_end > (0x1000 - sizeof(struct lb_header))) { /* after 4K */
578 /* We need to put lbtable on to [0xf0000,0x100000) */
579 head = lb_table_init(rom_table_end);
580 rom_table_end = (unsigned long)head;
581 } else {
582 head = lb_table_init(low_table_end);
583 low_table_end = (unsigned long)head;
584 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000585#endif
Stefan Reinauer14e22772010-04-27 06:56:47 +0000586
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000587 printk(BIOS_DEBUG, "Adjust low_table_end from 0x%08lx to ", low_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000588 low_table_end += 0xfff; // 4K aligned
589 low_table_end &= ~0xfff;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000590 printk(BIOS_DEBUG, "0x%08lx \n", low_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000591
592 /* The Linux kernel assumes this region is reserved */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000593 printk(BIOS_DEBUG, "Adjust rom_table_end from 0x%08lx to ", rom_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000594 rom_table_end += 0xffff; // 64K align
595 rom_table_end &= ~0xffff;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000596 printk(BIOS_DEBUG, "0x%08lx \n", rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000597
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700598#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerba430642007-04-06 12:14:51 +0000599 {
Patrick Georgia3eb5342011-01-21 13:20:10 +0000600 struct cmos_option_table *option_table = cbfs_find_file("cmos_layout.bin", 0x1aa);
Patrick Georgi24479372011-01-18 13:56:36 +0000601 if (option_table) {
602 struct lb_record *rec_dest = lb_new_record(head);
603 /* Copy the option config table, it's already a lb_record... */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000604 memcpy(rec_dest, option_table, option_table->size);
Patrick Georgi24479372011-01-18 13:56:36 +0000605 /* Create cmos checksum entry in coreboot table */
606 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000607 } else {
608 printk(BIOS_ERR, "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000609 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000610 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000611#endif
Eric Biederman6e53f502004-10-27 08:53:57 +0000612 /* Record where RAM is located */
613 mem = build_lb_mem(head);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000614
Eric Biederman6e53f502004-10-27 08:53:57 +0000615 /* Record the mptable and the the lb_table (This will be adjusted later) */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000616 lb_add_memory_range(mem, LB_MEM_TABLE,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000617 low_table_start, low_table_end - low_table_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000618
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000619 /* Record the pirq table, acpi tables, and maybe the mptable */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000620 lb_add_memory_range(mem, LB_MEM_TABLE,
Roman Kononov96e30222008-07-23 23:22:59 +0000621 rom_table_start, rom_table_end-rom_table_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000622
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700623#if CONFIG_WRITE_HIGH_TABLES
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000624 printk(BIOS_DEBUG, "Adding high table area\n");
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000625 // should this be LB_MEM_ACPI?
Patrick Georgibccaafc2009-04-28 12:57:25 +0000626 lb_add_memory_range(mem, LB_MEM_TABLE,
627 high_tables_base, high_tables_size);
628#endif
629
Myles Watsone0a000c2010-09-09 14:51:17 +0000630 /* Add reserved regions */
631 add_lb_reserved(mem);
632
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700633#if CONFIG_HAVE_MAINBOARD_RESOURCES
Stefan Reinauer045c3482008-12-13 20:51:34 +0000634 add_mainboard_resources(mem);
Michael Xie06755e42008-09-22 13:07:20 +0000635#endif
636
Stefan Reinauere3778572010-01-30 09:47:18 +0000637 lb_dump_memory_ranges(mem);
638
Eric Biederman6e53f502004-10-27 08:53:57 +0000639 /* Note:
640 * I assume that there is always memory at immediately after
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000641 * the low_table_end. This means that after I setup the coreboot table.
Eric Biederman6e53f502004-10-27 08:53:57 +0000642 * I can trivially fixup the reserved memory ranges to hold the correct
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000643 * size of the coreboot table.
Eric Biederman6e53f502004-10-27 08:53:57 +0000644 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000645
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000646 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000647 lb_mainboard(head);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000648 /* Record the serial port, if present */
649 lb_serial(head);
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000650 /* Record our console setup */
651 lb_console(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000652 /* Record our various random string information */
653 lb_strings(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000654 /* Record our framebuffer */
655 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000656
Vadim Bendebury22c04682011-10-03 14:58:57 -0700657 add_cbmem_pointers(head);
658
Eric Biederman8ca8d762003-04-22 19:02:15 +0000659 /* Remember where my valid memory ranges are */
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000660 return lb_table_fini(head, 1);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000661
Eric Biederman8ca8d762003-04-22 19:02:15 +0000662}