blob: 8e7c75eaa12d111d819edec7058c5cfdaf3b9957 [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>
Edwin Beasanteb50c7d2010-07-06 21:05:04 +000032#if (CONFIG_USE_OPTION_TABLE == 1)
Stefan Reinauer8e726b72010-03-29 23:01:35 +000033#include <option_table.h>
Patrick Georgia3eb5342011-01-21 13:20:10 +000034#include <cbfs.h>
Stefan Reinauerb5828d72010-03-29 17:14:28 +000035#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000036
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000037static struct lb_header *lb_table_init(unsigned long addr)
Eric Biederman8ca8d762003-04-22 19:02:15 +000038{
39 struct lb_header *header;
40
41 /* 16 byte align the address */
42 addr += 15;
43 addr &= ~15;
44
45 header = (void *)addr;
46 header->signature[0] = 'L';
47 header->signature[1] = 'B';
48 header->signature[2] = 'I';
49 header->signature[3] = 'O';
50 header->header_bytes = sizeof(*header);
51 header->header_checksum = 0;
52 header->table_bytes = 0;
53 header->table_checksum = 0;
54 header->table_entries = 0;
55 return header;
56}
57
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000058static struct lb_record *lb_first_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000059{
60 struct lb_record *rec;
61 rec = (void *)(((char *)header) + sizeof(*header));
62 return rec;
63}
64
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000065static struct lb_record *lb_last_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000066{
67 struct lb_record *rec;
68 rec = (void *)(((char *)header) + sizeof(*header) + header->table_bytes);
69 return rec;
70}
71
Myles Watson2e672732009-11-12 16:38:03 +000072#if 0
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000073static struct lb_record *lb_next_record(struct lb_record *rec)
Eric Biederman8ca8d762003-04-22 19:02:15 +000074{
Stefan Reinauer14e22772010-04-27 06:56:47 +000075 rec = (void *)(((char *)rec) + rec->size);
Eric Biederman8ca8d762003-04-22 19:02:15 +000076 return rec;
77}
Myles Watson2e672732009-11-12 16:38:03 +000078#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000079
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000080static struct lb_record *lb_new_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000081{
82 struct lb_record *rec;
83 rec = lb_last_record(header);
84 if (header->table_entries) {
85 header->table_bytes += rec->size;
86 }
87 rec = lb_last_record(header);
88 header->table_entries++;
89 rec->tag = LB_TAG_UNUSED;
90 rec->size = sizeof(*rec);
91 return rec;
92}
93
94
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000095static struct lb_memory *lb_memory(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000096{
97 struct lb_record *rec;
98 struct lb_memory *mem;
99 rec = lb_new_record(header);
100 mem = (struct lb_memory *)rec;
101 mem->tag = LB_TAG_MEMORY;
102 mem->size = sizeof(*mem);
103 return mem;
104}
105
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000106static struct lb_serial *lb_serial(struct lb_header *header)
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000107{
Myles Watsonec0ee642009-10-19 16:21:30 +0000108#if CONFIG_CONSOLE_SERIAL8250
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000109 struct lb_record *rec;
110 struct lb_serial *serial;
111 rec = lb_new_record(header);
112 serial = (struct lb_serial *)rec;
113 serial->tag = LB_TAG_SERIAL;
114 serial->size = sizeof(*serial);
Stefan Reinauer08670622009-06-30 15:17:49 +0000115 serial->ioport = CONFIG_TTYS0_BASE;
116 serial->baud = CONFIG_TTYS0_BAUD;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000117 return serial;
118#else
Stefan Reinauer40e42a82011-04-14 21:05:41 +0000119 return NULL;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000120#endif
121}
122
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000123static void add_console(struct lb_header *header, u16 consoletype)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000124{
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000125 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000126
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000127 console = (struct lb_console *)lb_new_record(header);
128 console->tag = LB_TAG_CONSOLE;
129 console->size = sizeof(*console);
130 console->type = consoletype;
131}
132
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000133static void lb_console(struct lb_header *header)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000134{
Myles Watsonec0ee642009-10-19 16:21:30 +0000135#if CONFIG_CONSOLE_SERIAL8250
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000136 add_console(header, LB_TAG_CONSOLE_SERIAL8250);
137#endif
Myles Watsonec0ee642009-10-19 16:21:30 +0000138#if CONFIG_CONSOLE_LOGBUF
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000139 add_console(header, LB_TAG_CONSOLE_LOGBUF);
140#endif
Stefan Reinauer7e00a442010-05-25 17:09:05 +0000141#if CONFIG_USBDEBUG
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000142 add_console(header, LB_TAG_CONSOLE_EHCI);
143#endif
144}
145
Stefan Reinauerd650e992010-02-22 04:33:13 +0000146static void lb_framebuffer(struct lb_header *header)
147{
148#if defined(CONFIG_BOOTSPLASH) && CONFIG_BOOTSPLASH && CONFIG_COREBOOT_KEEP_FRAMEBUFFER
149 void fill_lb_framebuffer(struct lb_framebuffer *framebuffer);
150
151 struct lb_framebuffer *framebuffer;
152 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
153 framebuffer->tag = LB_TAG_FRAMEBUFFER;
154 framebuffer->size = sizeof(*framebuffer);
155 fill_lb_framebuffer(framebuffer);
156#endif
157}
158
Stefan Reinauere3778572010-01-30 09:47:18 +0000159static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000160{
161 struct lb_record *rec;
162 struct lb_mainboard *mainboard;
163 rec = lb_new_record(header);
164 mainboard = (struct lb_mainboard *)rec;
165 mainboard->tag = LB_TAG_MAINBOARD;
166
167 mainboard->size = (sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000168 strlen(mainboard_vendor) + 1 +
Eric Biederman8ca8d762003-04-22 19:02:15 +0000169 strlen(mainboard_part_number) + 1 +
170 3) & ~3;
171
172 mainboard->vendor_idx = 0;
173 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
174
175 memcpy(mainboard->strings + mainboard->vendor_idx,
176 mainboard_vendor, strlen(mainboard_vendor) + 1);
177 memcpy(mainboard->strings + mainboard->part_number_idx,
178 mainboard_part_number, strlen(mainboard_part_number) + 1);
179
180 return mainboard;
181}
182
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000183#if (CONFIG_USE_OPTION_TABLE == 1)
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000184static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000185{
186 struct lb_record *rec;
187 struct cmos_checksum *cmos_checksum;
188 rec = lb_new_record(header);
189 cmos_checksum = (struct cmos_checksum *)rec;
190 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
191
192 cmos_checksum->size = (sizeof(*cmos_checksum));
193
Stefan Reinauerb5828d72010-03-29 17:14:28 +0000194 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
195 cmos_checksum->range_end = ( LB_CKS_RANGE_END * 8 ) + 7;
196 cmos_checksum->location = LB_CKS_LOC * 8;
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000197 cmos_checksum->type = CHECKSUM_PCBIOS;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000198
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000199 return cmos_checksum;
200}
Stefan Reinauer2549d522010-03-17 03:44:45 +0000201#endif
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000202
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000203static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000204{
205 static const struct {
206 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000207 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000208 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000209 { LB_TAG_VERSION, coreboot_version, },
210 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
211 { LB_TAG_BUILD, coreboot_build, },
212 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
213 { LB_TAG_COMPILE_BY, coreboot_compile_by, },
214 { LB_TAG_COMPILE_HOST, coreboot_compile_host, },
215 { LB_TAG_COMPILE_DOMAIN, coreboot_compile_domain, },
216 { LB_TAG_COMPILER, coreboot_compiler, },
217 { LB_TAG_LINKER, coreboot_linker, },
218 { LB_TAG_ASSEMBLER, coreboot_assembler, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000219 };
Eric Biederman52685572003-05-19 19:16:21 +0000220 unsigned int i;
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000221 for(i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000222 struct lb_string *rec;
223 size_t len;
224 rec = (struct lb_string *)lb_new_record(header);
225 len = strlen(strings[i].string);
226 rec->tag = strings[i].tag;
227 rec->size = (sizeof(*rec) + len + 1 + 3) & ~3;
228 memcpy(rec->string, strings[i].string, len+1);
229 }
230
231}
232
Myles Watson2e672732009-11-12 16:38:03 +0000233#if CONFIG_WRITE_HIGH_TABLES == 1
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000234static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000235{
236 struct lb_record *rec;
237 struct lb_forward *forward;
238 rec = lb_new_record(header);
239 forward = (struct lb_forward *)rec;
240 forward->tag = LB_TAG_FORWARD;
241 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000242 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000243 return forward;
244}
Myles Watson2e672732009-11-12 16:38:03 +0000245#endif
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000246
Eric Biederman8ca8d762003-04-22 19:02:15 +0000247void lb_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000248 uint32_t type, uint64_t start, uint64_t size)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000249{
250 int entries;
251 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
Eric Biedermanec01aa92004-12-10 20:50:43 +0000252 mem->map[entries].start = pack_lb64(start);
253 mem->map[entries].size = pack_lb64(size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000254 mem->map[entries].type = type;
255 mem->size += sizeof(mem->map[0]);
256}
257
Eric Biederman8ca8d762003-04-22 19:02:15 +0000258static void lb_reserve_table_memory(struct lb_header *head)
259{
260 struct lb_record *last_rec;
261 struct lb_memory *mem;
262 uint64_t start;
263 uint64_t end;
264 int i, entries;
265
266 last_rec = lb_last_record(head);
267 mem = get_lb_mem();
268 start = (unsigned long)head;
269 end = (unsigned long)last_rec;
270 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
271 /* Resize the right two memory areas so this table is in
272 * a reserved area of memory. Everything has been carefully
273 * setup so that is all we need to do.
274 */
275 for(i = 0; i < entries; i++ ) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000276 uint64_t map_start = unpack_lb64(mem->map[i].start);
277 uint64_t map_end = map_start + unpack_lb64(mem->map[i].size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000278 /* Does this area need to be expanded? */
279 if (map_end == start) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000280 mem->map[i].size = pack_lb64(end - map_start);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000281 }
282 /* Does this area need to be contracted? */
283 else if (map_start == start) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000284 mem->map[i].start = pack_lb64(end);
285 mem->map[i].size = pack_lb64(map_end - end);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000286 }
287 }
288}
289
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000290static unsigned long lb_table_fini(struct lb_header *head, int fixup)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000291{
292 struct lb_record *rec, *first_rec;
293 rec = lb_last_record(head);
294 if (head->table_entries) {
295 head->table_bytes += rec->size;
296 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000297
298 if (fixup)
299 lb_reserve_table_memory(head);
300
Eric Biederman8ca8d762003-04-22 19:02:15 +0000301 first_rec = lb_first_record(head);
302 head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
303 head->header_checksum = 0;
304 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000305 printk(BIOS_DEBUG, "Wrote coreboot table at: %p - %p checksum %x\n",
Eric Biederman8ca8d762003-04-22 19:02:15 +0000306 head, rec, head->table_checksum);
307 return (unsigned long)rec;
308}
309
Eric Biederman6e53f502004-10-27 08:53:57 +0000310static void lb_cleanup_memory_ranges(struct lb_memory *mem)
311{
312 int entries;
313 int i, j;
314 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000315
Eric Biederman6e53f502004-10-27 08:53:57 +0000316 /* Sort the lb memory ranges */
317 for(i = 0; i < entries; i++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000318 uint64_t entry_start = unpack_lb64(mem->map[i].start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000319 for(j = i; j < entries; j++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000320 uint64_t temp_start = unpack_lb64(mem->map[j].start);
321 if (temp_start < entry_start) {
Eric Biederman6e53f502004-10-27 08:53:57 +0000322 struct lb_memory_range tmp;
323 tmp = mem->map[i];
324 mem->map[i] = mem->map[j];
325 mem->map[j] = tmp;
326 }
327 }
328 }
329
330 /* Merge adjacent entries */
331 for(i = 0; (i + 1) < entries; i++) {
332 uint64_t start, end, nstart, nend;
333 if (mem->map[i].type != mem->map[i + 1].type) {
334 continue;
335 }
Eric Biedermanec01aa92004-12-10 20:50:43 +0000336 start = unpack_lb64(mem->map[i].start);
337 end = start + unpack_lb64(mem->map[i].size);
338 nstart = unpack_lb64(mem->map[i + 1].start);
339 nend = nstart + unpack_lb64(mem->map[i + 1].size);
Eric Biederman6e53f502004-10-27 08:53:57 +0000340 if ((start <= nstart) && (end > nstart)) {
341 if (start > nstart) {
342 start = nstart;
343 }
344 if (end < nend) {
345 end = nend;
346 }
347 /* Record the new region size */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000348 mem->map[i].start = pack_lb64(start);
349 mem->map[i].size = pack_lb64(end - start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000350
351 /* Delete the entry I have merged with */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000352 memmove(&mem->map[i + 1], &mem->map[i + 2],
Eric Biederman6e53f502004-10-27 08:53:57 +0000353 ((entries - i - 2) * sizeof(mem->map[0])));
354 mem->size -= sizeof(mem->map[0]);
355 entries -= 1;
356 /* See if I can merge with the next entry as well */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000357 i -= 1;
Eric Biederman6e53f502004-10-27 08:53:57 +0000358 }
359 }
360}
361
Stefan Reinauer14e22772010-04-27 06:56:47 +0000362static void lb_remove_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000363 uint64_t start, uint64_t size)
364{
365 uint64_t end;
366 int entries;
367 int i;
368
369 end = start + size;
370 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
371
372 /* Remove a reserved area from the memory map */
373 for(i = 0; i < entries; i++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000374 uint64_t map_start = unpack_lb64(mem->map[i].start);
375 uint64_t map_end = map_start + unpack_lb64(mem->map[i].size);
Eric Biederman6e53f502004-10-27 08:53:57 +0000376 if ((start <= map_start) && (end >= map_end)) {
377 /* Remove the completely covered range */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000378 memmove(&mem->map[i], &mem->map[i + 1],
Eric Biederman6e53f502004-10-27 08:53:57 +0000379 ((entries - i - 1) * sizeof(mem->map[0])));
380 mem->size -= sizeof(mem->map[0]);
381 entries -= 1;
382 /* Since the index will disappear revisit what will appear here */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000383 i -= 1;
Eric Biederman6e53f502004-10-27 08:53:57 +0000384 }
385 else if ((start > map_start) && (end < map_end)) {
386 /* Split the memory range */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000387 memmove(&mem->map[i + 1], &mem->map[i],
Eric Biederman6e53f502004-10-27 08:53:57 +0000388 ((entries - i) * sizeof(mem->map[0])));
389 mem->size += sizeof(mem->map[0]);
390 entries += 1;
391 /* Update the first map entry */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000392 mem->map[i].size = pack_lb64(start - map_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000393 /* Update the second map entry */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000394 mem->map[i + 1].start = pack_lb64(end);
395 mem->map[i + 1].size = pack_lb64(map_end - end);
Eric Biederman6e53f502004-10-27 08:53:57 +0000396 /* Don't bother with this map entry again */
397 i += 1;
398 }
399 else if ((start <= map_start) && (end > map_start)) {
400 /* Shrink the start of the memory range */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000401 mem->map[i].start = pack_lb64(end);
402 mem->map[i].size = pack_lb64(map_end - end);
Eric Biederman6e53f502004-10-27 08:53:57 +0000403 }
404 else if ((start < map_end) && (start > map_start)) {
405 /* Shrink the end of the memory range */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000406 mem->map[i].size = pack_lb64(start - map_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000407 }
408 }
409}
410
Stefan Reinauer045c3482008-12-13 20:51:34 +0000411/* This function is used in mainboard specific code, too */
412void lb_add_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000413 uint32_t type, uint64_t start, uint64_t size)
414{
415 lb_remove_memory_range(mem, start, size);
416 lb_memory_range(mem, type, start, size);
417 lb_cleanup_memory_ranges(mem);
418}
Eric Biederman8ca8d762003-04-22 19:02:15 +0000419
Stefan Reinauere3778572010-01-30 09:47:18 +0000420static void lb_dump_memory_ranges(struct lb_memory *mem)
421{
422 int entries;
423 int i;
424 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000425
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000426 printk(BIOS_DEBUG, "coreboot memory table:\n");
Stefan Reinauere3778572010-01-30 09:47:18 +0000427 for(i = 0; i < entries; i++) {
428 uint64_t entry_start = unpack_lb64(mem->map[i].start);
429 uint64_t entry_size = unpack_lb64(mem->map[i].size);
430 const char *entry_type;
431
432 switch (mem->map[i].type) {
433 case LB_MEM_RAM: entry_type="RAM"; break;
434 case LB_MEM_RESERVED: entry_type="RESERVED"; break;
435 case LB_MEM_ACPI: entry_type="ACPI"; break;
436 case LB_MEM_NVS: entry_type="NVS"; break;
437 case LB_MEM_UNUSABLE: entry_type="UNUSABLE"; break;
438 case LB_MEM_VENDOR_RSVD: entry_type="VENDOR RESERVED"; break;
439 case LB_MEM_TABLE: entry_type="CONFIGURATION TABLES"; break;
440 default: entry_type="UNKNOWN!"; break;
441 }
442
Stefan Reinauer14e22772010-04-27 06:56:47 +0000443 printk(BIOS_DEBUG, "%2d. %016llx-%016llx: %s\n",
Stefan Reinauere3778572010-01-30 09:47:18 +0000444 i, entry_start, entry_start+entry_size-1, entry_type);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000445
Stefan Reinauere3778572010-01-30 09:47:18 +0000446 }
447}
448
449
Stefan Reinauer14e22772010-04-27 06:56:47 +0000450/* Routines to extract part so the coreboot table or
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000451 * information from the coreboot table after we have written it.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000452 * Currently get_lb_mem relies on a global we can change the
453 * implementaiton.
454 */
455static struct lb_memory *mem_ranges = 0;
456struct lb_memory *get_lb_mem(void)
457{
458 return mem_ranges;
459}
460
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000461static void build_lb_mem_range(void *gp, struct device *dev, struct resource *res)
462{
463 struct lb_memory *mem = gp;
464 lb_memory_range(mem, LB_MEM_RAM, res->base, res->size);
465}
466
Eric Biederman6e53f502004-10-27 08:53:57 +0000467static struct lb_memory *build_lb_mem(struct lb_header *head)
Eric Biedermanb78c1972004-10-14 20:54:17 +0000468{
Eric Biederman6e53f502004-10-27 08:53:57 +0000469 struct lb_memory *mem;
Eric Biedermanb78c1972004-10-14 20:54:17 +0000470
Eric Biederman6e53f502004-10-27 08:53:57 +0000471 /* Record where the lb memory ranges will live */
472 mem = lb_memory(head);
473 mem_ranges = mem;
474
475 /* Build the raw table of memory */
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000476 search_global_resources(
477 IORESOURCE_MEM | IORESOURCE_CACHEABLE, IORESOURCE_MEM | IORESOURCE_CACHEABLE,
478 build_lb_mem_range, mem);
Eric Biederman6e53f502004-10-27 08:53:57 +0000479 lb_cleanup_memory_ranges(mem);
Eric Biedermanb78c1972004-10-14 20:54:17 +0000480 return mem;
481}
482
Myles Watsone0a000c2010-09-09 14:51:17 +0000483static void lb_add_rsvd_range(void *gp, struct device *dev, struct resource *res)
484{
485 struct lb_memory *mem = gp;
486 lb_add_memory_range(mem, LB_MEM_RESERVED, res->base, res->size);
487}
488
489static void add_lb_reserved(struct lb_memory *mem)
490{
491 /* Add reserved ranges */
492 search_global_resources(
493 IORESOURCE_MEM | IORESOURCE_RESERVE, IORESOURCE_MEM | IORESOURCE_RESERVE,
494 lb_add_rsvd_range, mem);
495}
496
Myles Watsonb8e20272009-10-15 13:35:47 +0000497#if CONFIG_WRITE_HIGH_TABLES == 1
Patrick Georgibccaafc2009-04-28 12:57:25 +0000498extern uint64_t high_tables_base, high_tables_size;
499#endif
500
Stefan Reinauer14e22772010-04-27 06:56:47 +0000501unsigned long write_coreboot_table(
502 unsigned long low_table_start, unsigned long low_table_end,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000503 unsigned long rom_table_start, unsigned long rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000504{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000505 struct lb_header *head;
506 struct lb_memory *mem;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000507
Myles Watsonb8e20272009-10-15 13:35:47 +0000508#if CONFIG_WRITE_HIGH_TABLES == 1
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000509 printk(BIOS_DEBUG, "Writing high table forward entry at 0x%08lx\n",
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000510 low_table_end);
511 head = lb_table_init(low_table_end);
Myles Watsonfa12b672009-04-30 22:45:41 +0000512 lb_forward(head, (struct lb_header*)rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000513
Patrick Georgibab4f922009-05-26 19:39:14 +0000514 low_table_end = (unsigned long) lb_table_fini(head, 0);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000515 printk(BIOS_DEBUG, "New low_table_end: 0x%08lx\n", low_table_end);
516 printk(BIOS_DEBUG, "Now going to write high coreboot table at 0x%08lx\n",
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000517 rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000518
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000519 head = lb_table_init(rom_table_end);
520 rom_table_end = (unsigned long)head;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000521 printk(BIOS_DEBUG, "rom_table_end = 0x%08lx\n", rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000522#else
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000523 if(low_table_end > (0x1000 - sizeof(struct lb_header))) { /* after 4K */
524 /* We need to put lbtable on to [0xf0000,0x100000) */
525 head = lb_table_init(rom_table_end);
526 rom_table_end = (unsigned long)head;
527 } else {
528 head = lb_table_init(low_table_end);
529 low_table_end = (unsigned long)head;
530 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000531#endif
Stefan Reinauer14e22772010-04-27 06:56:47 +0000532
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000533 printk(BIOS_DEBUG, "Adjust low_table_end from 0x%08lx to ", low_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000534 low_table_end += 0xfff; // 4K aligned
535 low_table_end &= ~0xfff;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000536 printk(BIOS_DEBUG, "0x%08lx \n", low_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000537
538 /* The Linux kernel assumes this region is reserved */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000539 printk(BIOS_DEBUG, "Adjust rom_table_end from 0x%08lx to ", rom_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000540 rom_table_end += 0xffff; // 64K align
541 rom_table_end &= ~0xffff;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000542 printk(BIOS_DEBUG, "0x%08lx \n", rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000543
Edwin Beasanteb50c7d2010-07-06 21:05:04 +0000544#if (CONFIG_USE_OPTION_TABLE == 1)
Stefan Reinauerba430642007-04-06 12:14:51 +0000545 {
Patrick Georgia3eb5342011-01-21 13:20:10 +0000546 struct cmos_option_table *option_table = cbfs_find_file("cmos_layout.bin", 0x1aa);
Patrick Georgi24479372011-01-18 13:56:36 +0000547 if (option_table) {
548 struct lb_record *rec_dest = lb_new_record(head);
549 /* Copy the option config table, it's already a lb_record... */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000550 memcpy(rec_dest, option_table, option_table->size);
Patrick Georgi24479372011-01-18 13:56:36 +0000551 /* Create cmos checksum entry in coreboot table */
552 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000553 } else {
554 printk(BIOS_ERR, "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000555 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000556 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000557#endif
Eric Biederman6e53f502004-10-27 08:53:57 +0000558 /* Record where RAM is located */
559 mem = build_lb_mem(head);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000560
Eric Biederman6e53f502004-10-27 08:53:57 +0000561 /* Record the mptable and the the lb_table (This will be adjusted later) */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000562 lb_add_memory_range(mem, LB_MEM_TABLE,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000563 low_table_start, low_table_end - low_table_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000564
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000565 /* Record the pirq table, acpi tables, and maybe the mptable */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000566 lb_add_memory_range(mem, LB_MEM_TABLE,
Roman Kononov96e30222008-07-23 23:22:59 +0000567 rom_table_start, rom_table_end-rom_table_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000568
Myles Watsonb8e20272009-10-15 13:35:47 +0000569#if CONFIG_WRITE_HIGH_TABLES == 1
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000570 printk(BIOS_DEBUG, "Adding high table area\n");
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000571 // should this be LB_MEM_ACPI?
Patrick Georgibccaafc2009-04-28 12:57:25 +0000572 lb_add_memory_range(mem, LB_MEM_TABLE,
573 high_tables_base, high_tables_size);
574#endif
575
Myles Watsone0a000c2010-09-09 14:51:17 +0000576 /* Add reserved regions */
577 add_lb_reserved(mem);
578
Stefan Reinauer08670622009-06-30 15:17:49 +0000579#if (CONFIG_HAVE_MAINBOARD_RESOURCES == 1)
Stefan Reinauer045c3482008-12-13 20:51:34 +0000580 add_mainboard_resources(mem);
Michael Xie06755e42008-09-22 13:07:20 +0000581#endif
582
Stefan Reinauere3778572010-01-30 09:47:18 +0000583 lb_dump_memory_ranges(mem);
584
Eric Biederman6e53f502004-10-27 08:53:57 +0000585 /* Note:
586 * I assume that there is always memory at immediately after
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000587 * the low_table_end. This means that after I setup the coreboot table.
Eric Biederman6e53f502004-10-27 08:53:57 +0000588 * I can trivially fixup the reserved memory ranges to hold the correct
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000589 * size of the coreboot table.
Eric Biederman6e53f502004-10-27 08:53:57 +0000590 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000591
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000592 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000593 lb_mainboard(head);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000594 /* Record the serial port, if present */
595 lb_serial(head);
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000596 /* Record our console setup */
597 lb_console(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000598 /* Record our various random string information */
599 lb_strings(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000600 /* Record our framebuffer */
601 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000602
Eric Biederman8ca8d762003-04-22 19:02:15 +0000603 /* Remember where my valid memory ranges are */
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000604 return lb_table_fini(head, 1);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000605
Eric Biederman8ca8d762003-04-22 19:02:15 +0000606}