blob: 219de7adae6f551b2be30fe498a285d136240ca1 [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
Stefan Reinauer31324c62012-04-05 21:22:02 +0200182#if CONFIG_CHROMEOS
183static void lb_gpios(struct lb_header *header)
184{
185 struct lb_gpios *gpios;
186 gpios = (struct lb_gpios *)lb_new_record(header);
187 gpios->tag = LB_TAG_GPIO;
188 gpios->size = sizeof(*gpios);
189 gpios->count = 0;
190 fill_lb_gpios(gpios);
191}
192
193static void lb_vdat(struct lb_header *header)
194{
195 struct lb_vdat* vdat;
196
197 vdat = (struct lb_vdat *)lb_new_record(header);
198 vdat->tag = LB_TAG_VDAT;
199 vdat->size = sizeof(*vdat);
200 acpi_get_vdat_info(&vdat->vdat_addr, &vdat->vdat_size);
201}
202
203static void lb_vbnv(struct lb_header *header)
204{
205 struct lb_vbnv* vbnv;
206
207 vbnv = (struct lb_vbnv *)lb_new_record(header);
208 vbnv->tag = LB_TAG_VBNV;
209 vbnv->size = sizeof(*vbnv);
210 vbnv->vbnv_start = CONFIG_VBNV_OFFSET + 14;
211 vbnv->vbnv_size = CONFIG_VBNV_SIZE;
212}
213#endif
214
Vadim Bendebury22c04682011-10-03 14:58:57 -0700215static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700216{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700217 /*
218 * These CBMEM sections' addresses are included in the coreboot table
219 * with the appropriate tags.
220 */
221 const struct section_id {
222 int cbmem_id;
223 int table_tag;
224 } section_ids[] = {
225 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
226 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE}
227 };
228 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700229
Vadim Bendebury22c04682011-10-03 14:58:57 -0700230 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
231 const struct section_id *sid = section_ids + i;
232 struct lb_cbmem_ref *cbmem_ref;
233 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700234
Vadim Bendebury22c04682011-10-03 14:58:57 -0700235 if (!cbmem_addr)
236 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700237
Vadim Bendebury22c04682011-10-03 14:58:57 -0700238 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
239 if (!cbmem_ref) {
240 printk(BIOS_ERR, "No more room in coreboot table!\n");
241 break;
242 }
243 cbmem_ref->tag = sid->table_tag;
244 cbmem_ref->size = sizeof(*cbmem_ref);
245 cbmem_ref->cbmem_addr = cbmem_addr;
246 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700247}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700248
Stefan Reinauere3778572010-01-30 09:47:18 +0000249static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000250{
251 struct lb_record *rec;
252 struct lb_mainboard *mainboard;
253 rec = lb_new_record(header);
254 mainboard = (struct lb_mainboard *)rec;
255 mainboard->tag = LB_TAG_MAINBOARD;
256
257 mainboard->size = (sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000258 strlen(mainboard_vendor) + 1 +
Eric Biederman8ca8d762003-04-22 19:02:15 +0000259 strlen(mainboard_part_number) + 1 +
260 3) & ~3;
261
262 mainboard->vendor_idx = 0;
263 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
264
265 memcpy(mainboard->strings + mainboard->vendor_idx,
266 mainboard_vendor, strlen(mainboard_vendor) + 1);
267 memcpy(mainboard->strings + mainboard->part_number_idx,
268 mainboard_part_number, strlen(mainboard_part_number) + 1);
269
270 return mainboard;
271}
272
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700273#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000274static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000275{
276 struct lb_record *rec;
277 struct cmos_checksum *cmos_checksum;
278 rec = lb_new_record(header);
279 cmos_checksum = (struct cmos_checksum *)rec;
280 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
281
282 cmos_checksum->size = (sizeof(*cmos_checksum));
283
Stefan Reinauerb5828d72010-03-29 17:14:28 +0000284 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
285 cmos_checksum->range_end = ( LB_CKS_RANGE_END * 8 ) + 7;
286 cmos_checksum->location = LB_CKS_LOC * 8;
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000287 cmos_checksum->type = CHECKSUM_PCBIOS;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000288
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000289 return cmos_checksum;
290}
Stefan Reinauer2549d522010-03-17 03:44:45 +0000291#endif
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000292
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000293static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000294{
295 static const struct {
296 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000297 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000298 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000299 { LB_TAG_VERSION, coreboot_version, },
300 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
301 { LB_TAG_BUILD, coreboot_build, },
302 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
303 { LB_TAG_COMPILE_BY, coreboot_compile_by, },
304 { LB_TAG_COMPILE_HOST, coreboot_compile_host, },
305 { LB_TAG_COMPILE_DOMAIN, coreboot_compile_domain, },
306 { LB_TAG_COMPILER, coreboot_compiler, },
307 { LB_TAG_LINKER, coreboot_linker, },
308 { LB_TAG_ASSEMBLER, coreboot_assembler, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000309 };
Eric Biederman52685572003-05-19 19:16:21 +0000310 unsigned int i;
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000311 for(i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000312 struct lb_string *rec;
313 size_t len;
314 rec = (struct lb_string *)lb_new_record(header);
315 len = strlen(strings[i].string);
316 rec->tag = strings[i].tag;
317 rec->size = (sizeof(*rec) + len + 1 + 3) & ~3;
318 memcpy(rec->string, strings[i].string, len+1);
319 }
320
321}
322
Myles Watson2e672732009-11-12 16:38:03 +0000323#if CONFIG_WRITE_HIGH_TABLES == 1
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000324static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000325{
326 struct lb_record *rec;
327 struct lb_forward *forward;
328 rec = lb_new_record(header);
329 forward = (struct lb_forward *)rec;
330 forward->tag = LB_TAG_FORWARD;
331 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000332 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000333 return forward;
334}
Myles Watson2e672732009-11-12 16:38:03 +0000335#endif
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000336
Eric Biederman8ca8d762003-04-22 19:02:15 +0000337void lb_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000338 uint32_t type, uint64_t start, uint64_t size)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000339{
340 int entries;
341 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
Eric Biedermanec01aa92004-12-10 20:50:43 +0000342 mem->map[entries].start = pack_lb64(start);
343 mem->map[entries].size = pack_lb64(size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000344 mem->map[entries].type = type;
345 mem->size += sizeof(mem->map[0]);
346}
347
Eric Biederman8ca8d762003-04-22 19:02:15 +0000348static void lb_reserve_table_memory(struct lb_header *head)
349{
350 struct lb_record *last_rec;
351 struct lb_memory *mem;
352 uint64_t start;
353 uint64_t end;
354 int i, entries;
355
356 last_rec = lb_last_record(head);
357 mem = get_lb_mem();
358 start = (unsigned long)head;
359 end = (unsigned long)last_rec;
360 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
361 /* Resize the right two memory areas so this table is in
362 * a reserved area of memory. Everything has been carefully
363 * setup so that is all we need to do.
364 */
365 for(i = 0; i < entries; i++ ) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000366 uint64_t map_start = unpack_lb64(mem->map[i].start);
367 uint64_t map_end = map_start + unpack_lb64(mem->map[i].size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000368 /* Does this area need to be expanded? */
369 if (map_end == start) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000370 mem->map[i].size = pack_lb64(end - map_start);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000371 }
372 /* Does this area need to be contracted? */
373 else if (map_start == start) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000374 mem->map[i].start = pack_lb64(end);
375 mem->map[i].size = pack_lb64(map_end - end);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000376 }
377 }
378}
379
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000380static unsigned long lb_table_fini(struct lb_header *head, int fixup)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000381{
382 struct lb_record *rec, *first_rec;
383 rec = lb_last_record(head);
384 if (head->table_entries) {
385 head->table_bytes += rec->size;
386 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000387
388 if (fixup)
389 lb_reserve_table_memory(head);
390
Eric Biederman8ca8d762003-04-22 19:02:15 +0000391 first_rec = lb_first_record(head);
392 head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
393 head->header_checksum = 0;
394 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700395 printk(BIOS_DEBUG,
396 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
397 head, head->table_bytes, head->table_checksum);
398 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000399}
400
Eric Biederman6e53f502004-10-27 08:53:57 +0000401static void lb_cleanup_memory_ranges(struct lb_memory *mem)
402{
403 int entries;
404 int i, j;
405 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000406
Eric Biederman6e53f502004-10-27 08:53:57 +0000407 /* Sort the lb memory ranges */
408 for(i = 0; i < entries; i++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000409 uint64_t entry_start = unpack_lb64(mem->map[i].start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000410 for(j = i; j < entries; j++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000411 uint64_t temp_start = unpack_lb64(mem->map[j].start);
412 if (temp_start < entry_start) {
Eric Biederman6e53f502004-10-27 08:53:57 +0000413 struct lb_memory_range tmp;
414 tmp = mem->map[i];
415 mem->map[i] = mem->map[j];
416 mem->map[j] = tmp;
417 }
418 }
419 }
420
421 /* Merge adjacent entries */
422 for(i = 0; (i + 1) < entries; i++) {
423 uint64_t start, end, nstart, nend;
424 if (mem->map[i].type != mem->map[i + 1].type) {
425 continue;
426 }
Eric Biedermanec01aa92004-12-10 20:50:43 +0000427 start = unpack_lb64(mem->map[i].start);
428 end = start + unpack_lb64(mem->map[i].size);
429 nstart = unpack_lb64(mem->map[i + 1].start);
430 nend = nstart + unpack_lb64(mem->map[i + 1].size);
Eric Biederman6e53f502004-10-27 08:53:57 +0000431 if ((start <= nstart) && (end > nstart)) {
432 if (start > nstart) {
433 start = nstart;
434 }
435 if (end < nend) {
436 end = nend;
437 }
438 /* Record the new region size */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000439 mem->map[i].start = pack_lb64(start);
440 mem->map[i].size = pack_lb64(end - start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000441
442 /* Delete the entry I have merged with */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000443 memmove(&mem->map[i + 1], &mem->map[i + 2],
Eric Biederman6e53f502004-10-27 08:53:57 +0000444 ((entries - i - 2) * sizeof(mem->map[0])));
445 mem->size -= sizeof(mem->map[0]);
446 entries -= 1;
447 /* See if I can merge with the next entry as well */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000448 i -= 1;
Eric Biederman6e53f502004-10-27 08:53:57 +0000449 }
450 }
451}
452
Stefan Reinauer14e22772010-04-27 06:56:47 +0000453static void lb_remove_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000454 uint64_t start, uint64_t size)
455{
456 uint64_t end;
457 int entries;
458 int i;
459
460 end = start + size;
461 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
462
463 /* Remove a reserved area from the memory map */
464 for(i = 0; i < entries; i++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000465 uint64_t map_start = unpack_lb64(mem->map[i].start);
466 uint64_t map_end = map_start + unpack_lb64(mem->map[i].size);
Eric Biederman6e53f502004-10-27 08:53:57 +0000467 if ((start <= map_start) && (end >= map_end)) {
468 /* Remove the completely covered range */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000469 memmove(&mem->map[i], &mem->map[i + 1],
Eric Biederman6e53f502004-10-27 08:53:57 +0000470 ((entries - i - 1) * sizeof(mem->map[0])));
471 mem->size -= sizeof(mem->map[0]);
472 entries -= 1;
473 /* Since the index will disappear revisit what will appear here */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000474 i -= 1;
Eric Biederman6e53f502004-10-27 08:53:57 +0000475 }
476 else if ((start > map_start) && (end < map_end)) {
477 /* Split the memory range */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000478 memmove(&mem->map[i + 1], &mem->map[i],
Eric Biederman6e53f502004-10-27 08:53:57 +0000479 ((entries - i) * sizeof(mem->map[0])));
480 mem->size += sizeof(mem->map[0]);
481 entries += 1;
482 /* Update the first map entry */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000483 mem->map[i].size = pack_lb64(start - map_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000484 /* Update the second map entry */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000485 mem->map[i + 1].start = pack_lb64(end);
486 mem->map[i + 1].size = pack_lb64(map_end - end);
Eric Biederman6e53f502004-10-27 08:53:57 +0000487 /* Don't bother with this map entry again */
488 i += 1;
489 }
490 else if ((start <= map_start) && (end > map_start)) {
491 /* Shrink the start of the memory range */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000492 mem->map[i].start = pack_lb64(end);
493 mem->map[i].size = pack_lb64(map_end - end);
Eric Biederman6e53f502004-10-27 08:53:57 +0000494 }
495 else if ((start < map_end) && (start > map_start)) {
496 /* Shrink the end of the memory range */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000497 mem->map[i].size = pack_lb64(start - map_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000498 }
499 }
500}
501
Stefan Reinauer045c3482008-12-13 20:51:34 +0000502/* This function is used in mainboard specific code, too */
503void lb_add_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000504 uint32_t type, uint64_t start, uint64_t size)
505{
506 lb_remove_memory_range(mem, start, size);
507 lb_memory_range(mem, type, start, size);
508 lb_cleanup_memory_ranges(mem);
509}
Eric Biederman8ca8d762003-04-22 19:02:15 +0000510
Stefan Reinauere3778572010-01-30 09:47:18 +0000511static void lb_dump_memory_ranges(struct lb_memory *mem)
512{
513 int entries;
514 int i;
515 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000516
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000517 printk(BIOS_DEBUG, "coreboot memory table:\n");
Stefan Reinauere3778572010-01-30 09:47:18 +0000518 for(i = 0; i < entries; i++) {
519 uint64_t entry_start = unpack_lb64(mem->map[i].start);
520 uint64_t entry_size = unpack_lb64(mem->map[i].size);
521 const char *entry_type;
522
523 switch (mem->map[i].type) {
524 case LB_MEM_RAM: entry_type="RAM"; break;
525 case LB_MEM_RESERVED: entry_type="RESERVED"; break;
526 case LB_MEM_ACPI: entry_type="ACPI"; break;
527 case LB_MEM_NVS: entry_type="NVS"; break;
528 case LB_MEM_UNUSABLE: entry_type="UNUSABLE"; break;
529 case LB_MEM_VENDOR_RSVD: entry_type="VENDOR RESERVED"; break;
530 case LB_MEM_TABLE: entry_type="CONFIGURATION TABLES"; break;
531 default: entry_type="UNKNOWN!"; break;
532 }
533
Stefan Reinauer14e22772010-04-27 06:56:47 +0000534 printk(BIOS_DEBUG, "%2d. %016llx-%016llx: %s\n",
Stefan Reinauere3778572010-01-30 09:47:18 +0000535 i, entry_start, entry_start+entry_size-1, entry_type);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000536
Stefan Reinauere3778572010-01-30 09:47:18 +0000537 }
538}
539
540
Stefan Reinauer14e22772010-04-27 06:56:47 +0000541/* Routines to extract part so the coreboot table or
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000542 * information from the coreboot table after we have written it.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000543 * Currently get_lb_mem relies on a global we can change the
544 * implementaiton.
545 */
546static struct lb_memory *mem_ranges = 0;
547struct lb_memory *get_lb_mem(void)
548{
549 return mem_ranges;
550}
551
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000552static void build_lb_mem_range(void *gp, struct device *dev, struct resource *res)
553{
554 struct lb_memory *mem = gp;
555 lb_memory_range(mem, LB_MEM_RAM, res->base, res->size);
556}
557
Eric Biederman6e53f502004-10-27 08:53:57 +0000558static struct lb_memory *build_lb_mem(struct lb_header *head)
Eric Biedermanb78c1972004-10-14 20:54:17 +0000559{
Eric Biederman6e53f502004-10-27 08:53:57 +0000560 struct lb_memory *mem;
Eric Biedermanb78c1972004-10-14 20:54:17 +0000561
Eric Biederman6e53f502004-10-27 08:53:57 +0000562 /* Record where the lb memory ranges will live */
563 mem = lb_memory(head);
564 mem_ranges = mem;
565
566 /* Build the raw table of memory */
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000567 search_global_resources(
568 IORESOURCE_MEM | IORESOURCE_CACHEABLE, IORESOURCE_MEM | IORESOURCE_CACHEABLE,
569 build_lb_mem_range, mem);
Eric Biederman6e53f502004-10-27 08:53:57 +0000570 lb_cleanup_memory_ranges(mem);
Eric Biedermanb78c1972004-10-14 20:54:17 +0000571 return mem;
572}
573
Myles Watsone0a000c2010-09-09 14:51:17 +0000574static void lb_add_rsvd_range(void *gp, struct device *dev, struct resource *res)
575{
576 struct lb_memory *mem = gp;
577 lb_add_memory_range(mem, LB_MEM_RESERVED, res->base, res->size);
578}
579
580static void add_lb_reserved(struct lb_memory *mem)
581{
582 /* Add reserved ranges */
583 search_global_resources(
584 IORESOURCE_MEM | IORESOURCE_RESERVE, IORESOURCE_MEM | IORESOURCE_RESERVE,
585 lb_add_rsvd_range, mem);
586}
587
Stefan Reinauer14e22772010-04-27 06:56:47 +0000588unsigned long write_coreboot_table(
589 unsigned long low_table_start, unsigned long low_table_end,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000590 unsigned long rom_table_start, unsigned long rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000591{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000592 struct lb_header *head;
593 struct lb_memory *mem;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000594
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700595#if CONFIG_WRITE_HIGH_TABLES
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000596 printk(BIOS_DEBUG, "Writing high table forward entry at 0x%08lx\n",
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000597 low_table_end);
598 head = lb_table_init(low_table_end);
Myles Watsonfa12b672009-04-30 22:45:41 +0000599 lb_forward(head, (struct lb_header*)rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000600
Patrick Georgibab4f922009-05-26 19:39:14 +0000601 low_table_end = (unsigned long) lb_table_fini(head, 0);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000602 printk(BIOS_DEBUG, "New low_table_end: 0x%08lx\n", low_table_end);
603 printk(BIOS_DEBUG, "Now going to write high coreboot table at 0x%08lx\n",
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000604 rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000605
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000606 head = lb_table_init(rom_table_end);
607 rom_table_end = (unsigned long)head;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000608 printk(BIOS_DEBUG, "rom_table_end = 0x%08lx\n", rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000609#else
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000610 if(low_table_end > (0x1000 - sizeof(struct lb_header))) { /* after 4K */
611 /* We need to put lbtable on to [0xf0000,0x100000) */
612 head = lb_table_init(rom_table_end);
613 rom_table_end = (unsigned long)head;
614 } else {
615 head = lb_table_init(low_table_end);
616 low_table_end = (unsigned long)head;
617 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000618#endif
Stefan Reinauer14e22772010-04-27 06:56:47 +0000619
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000620 printk(BIOS_DEBUG, "Adjust low_table_end from 0x%08lx to ", low_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000621 low_table_end += 0xfff; // 4K aligned
622 low_table_end &= ~0xfff;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000623 printk(BIOS_DEBUG, "0x%08lx \n", low_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000624
625 /* The Linux kernel assumes this region is reserved */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000626 printk(BIOS_DEBUG, "Adjust rom_table_end from 0x%08lx to ", rom_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000627 rom_table_end += 0xffff; // 64K align
628 rom_table_end &= ~0xffff;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000629 printk(BIOS_DEBUG, "0x%08lx \n", rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000630
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700631#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerba430642007-04-06 12:14:51 +0000632 {
Patrick Georgia3eb5342011-01-21 13:20:10 +0000633 struct cmos_option_table *option_table = cbfs_find_file("cmos_layout.bin", 0x1aa);
Patrick Georgi24479372011-01-18 13:56:36 +0000634 if (option_table) {
635 struct lb_record *rec_dest = lb_new_record(head);
636 /* Copy the option config table, it's already a lb_record... */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000637 memcpy(rec_dest, option_table, option_table->size);
Patrick Georgi24479372011-01-18 13:56:36 +0000638 /* Create cmos checksum entry in coreboot table */
639 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000640 } else {
641 printk(BIOS_ERR, "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000642 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000643 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000644#endif
Eric Biederman6e53f502004-10-27 08:53:57 +0000645 /* Record where RAM is located */
646 mem = build_lb_mem(head);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000647
Eric Biederman6e53f502004-10-27 08:53:57 +0000648 /* Record the mptable and the the lb_table (This will be adjusted later) */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000649 lb_add_memory_range(mem, LB_MEM_TABLE,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000650 low_table_start, low_table_end - low_table_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000651
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000652 /* Record the pirq table, acpi tables, and maybe the mptable */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000653 lb_add_memory_range(mem, LB_MEM_TABLE,
Roman Kononov96e30222008-07-23 23:22:59 +0000654 rom_table_start, rom_table_end-rom_table_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000655
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700656#if CONFIG_WRITE_HIGH_TABLES
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000657 printk(BIOS_DEBUG, "Adding high table area\n");
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000658 // should this be LB_MEM_ACPI?
Patrick Georgibccaafc2009-04-28 12:57:25 +0000659 lb_add_memory_range(mem, LB_MEM_TABLE,
660 high_tables_base, high_tables_size);
661#endif
662
Myles Watsone0a000c2010-09-09 14:51:17 +0000663 /* Add reserved regions */
664 add_lb_reserved(mem);
665
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700666#if CONFIG_HAVE_MAINBOARD_RESOURCES
Stefan Reinauer045c3482008-12-13 20:51:34 +0000667 add_mainboard_resources(mem);
Michael Xie06755e42008-09-22 13:07:20 +0000668#endif
669
Stefan Reinauere3778572010-01-30 09:47:18 +0000670 lb_dump_memory_ranges(mem);
671
Eric Biederman6e53f502004-10-27 08:53:57 +0000672 /* Note:
673 * I assume that there is always memory at immediately after
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000674 * the low_table_end. This means that after I setup the coreboot table.
Eric Biederman6e53f502004-10-27 08:53:57 +0000675 * I can trivially fixup the reserved memory ranges to hold the correct
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000676 * size of the coreboot table.
Eric Biederman6e53f502004-10-27 08:53:57 +0000677 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000678
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000679 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000680 lb_mainboard(head);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000681 /* Record the serial port, if present */
682 lb_serial(head);
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000683 /* Record our console setup */
684 lb_console(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000685 /* Record our various random string information */
686 lb_strings(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000687 /* Record our framebuffer */
688 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000689
Stefan Reinauer31324c62012-04-05 21:22:02 +0200690#if CONFIG_CHROMEOS
691 /* Record our GPIO settings (ChromeOS specific) */
692 lb_gpios(head);
693
694 /* pass along the VDAT buffer adress */
695 lb_vdat(head);
696
697 /* pass along VBNV offsets in CMOS */
698 lb_vbnv(head);
699#endif
Vadim Bendebury22c04682011-10-03 14:58:57 -0700700 add_cbmem_pointers(head);
701
Eric Biederman8ca8d762003-04-22 19:02:15 +0000702 /* Remember where my valid memory ranges are */
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000703 return lb_table_fini(head, 1);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000704
Eric Biederman8ca8d762003-04-22 19:02:15 +0000705}