blob: 8dccd772879f4f9dcfd546f3c8383c8d8047d974 [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
Stefan Reinauer0e672b52012-04-27 00:34:54 +020037#if CONFIG_CHROMEOS
38#include <arch/acpi.h>
39#include <vendorcode/google/chromeos/gnvs.h>
40#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000041
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000042static struct lb_header *lb_table_init(unsigned long addr)
Eric Biederman8ca8d762003-04-22 19:02:15 +000043{
44 struct lb_header *header;
45
46 /* 16 byte align the address */
47 addr += 15;
48 addr &= ~15;
49
50 header = (void *)addr;
51 header->signature[0] = 'L';
52 header->signature[1] = 'B';
53 header->signature[2] = 'I';
54 header->signature[3] = 'O';
55 header->header_bytes = sizeof(*header);
56 header->header_checksum = 0;
57 header->table_bytes = 0;
58 header->table_checksum = 0;
59 header->table_entries = 0;
60 return header;
61}
62
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000063static struct lb_record *lb_first_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000064{
65 struct lb_record *rec;
66 rec = (void *)(((char *)header) + sizeof(*header));
67 return rec;
68}
69
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000070static struct lb_record *lb_last_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000071{
72 struct lb_record *rec;
73 rec = (void *)(((char *)header) + sizeof(*header) + header->table_bytes);
74 return rec;
75}
76
Myles Watson2e672732009-11-12 16:38:03 +000077#if 0
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000078static struct lb_record *lb_next_record(struct lb_record *rec)
Eric Biederman8ca8d762003-04-22 19:02:15 +000079{
Stefan Reinauer14e22772010-04-27 06:56:47 +000080 rec = (void *)(((char *)rec) + rec->size);
Eric Biederman8ca8d762003-04-22 19:02:15 +000081 return rec;
82}
Myles Watson2e672732009-11-12 16:38:03 +000083#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000084
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000085static struct lb_record *lb_new_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000086{
87 struct lb_record *rec;
88 rec = lb_last_record(header);
89 if (header->table_entries) {
90 header->table_bytes += rec->size;
91 }
92 rec = lb_last_record(header);
93 header->table_entries++;
94 rec->tag = LB_TAG_UNUSED;
95 rec->size = sizeof(*rec);
96 return rec;
97}
98
99
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000100static struct lb_memory *lb_memory(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000101{
102 struct lb_record *rec;
103 struct lb_memory *mem;
104 rec = lb_new_record(header);
105 mem = (struct lb_memory *)rec;
106 mem->tag = LB_TAG_MEMORY;
107 mem->size = sizeof(*mem);
108 return mem;
109}
110
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000111static struct lb_serial *lb_serial(struct lb_header *header)
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000112{
Myles Watsonec0ee642009-10-19 16:21:30 +0000113#if CONFIG_CONSOLE_SERIAL8250
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000114 struct lb_record *rec;
115 struct lb_serial *serial;
116 rec = lb_new_record(header);
117 serial = (struct lb_serial *)rec;
118 serial->tag = LB_TAG_SERIAL;
119 serial->size = sizeof(*serial);
Stefan Reinauerd1bc3312011-06-22 16:39:19 -0700120 serial->type = LB_SERIAL_TYPE_IO_MAPPED;
121 serial->baseaddr = CONFIG_TTYS0_BASE;
122 serial->baud = CONFIG_TTYS0_BAUD;
123 return serial;
124#elif CONFIG_CONSOLE_SERIAL8250MEM
Gabe Black32829ca2011-10-05 01:57:03 -0700125 if (uartmem_getbaseaddr()) {
126 struct lb_record *rec;
127 struct lb_serial *serial;
128 rec = lb_new_record(header);
129 serial = (struct lb_serial *)rec;
130 serial->tag = LB_TAG_SERIAL;
131 serial->size = sizeof(*serial);
132 serial->type = LB_SERIAL_TYPE_MEMORY_MAPPED;
133 serial->baseaddr = uartmem_getbaseaddr();
134 serial->baud = CONFIG_TTYS0_BAUD;
135 return serial;
136 } else {
137 return NULL;
138 }
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000139#else
Stefan Reinauer40e42a82011-04-14 21:05:41 +0000140 return NULL;
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000141#endif
142}
143
Stefan Reinauer513eb5a2011-06-01 14:04:50 -0700144#if CONFIG_CONSOLE_SERIAL8250 || CONFIG_CONSOLE_SERIAL8250MEM || \
145 CONFIG_CONSOLE_LOGBUF || CONFIG_USBDEBUG
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000146static void add_console(struct lb_header *header, u16 consoletype)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000147{
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000148 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000149
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000150 console = (struct lb_console *)lb_new_record(header);
151 console->tag = LB_TAG_CONSOLE;
152 console->size = sizeof(*console);
153 console->type = consoletype;
154}
Stefan Reinauer513eb5a2011-06-01 14:04:50 -0700155#endif
156
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000157static void lb_console(struct lb_header *header)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000158{
Myles Watsonec0ee642009-10-19 16:21:30 +0000159#if CONFIG_CONSOLE_SERIAL8250
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000160 add_console(header, LB_TAG_CONSOLE_SERIAL8250);
161#endif
Stefan Reinauer4885daa2011-04-26 23:47:04 +0000162#if CONFIG_CONSOLE_SERIAL8250MEM
163 add_console(header, LB_TAG_CONSOLE_SERIAL8250MEM);
164#endif
Myles Watsonec0ee642009-10-19 16:21:30 +0000165#if CONFIG_CONSOLE_LOGBUF
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000166 add_console(header, LB_TAG_CONSOLE_LOGBUF);
167#endif
Stefan Reinauer7e00a442010-05-25 17:09:05 +0000168#if CONFIG_USBDEBUG
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000169 add_console(header, LB_TAG_CONSOLE_EHCI);
170#endif
171}
172
Stefan Reinauerd650e992010-02-22 04:33:13 +0000173static void lb_framebuffer(struct lb_header *header)
174{
Stefan Reinauerc1efb902011-10-12 14:30:59 -0700175#if CONFIG_FRAMEBUFFER_KEEP_VESA_MODE
Stefan Reinauerd650e992010-02-22 04:33:13 +0000176 void fill_lb_framebuffer(struct lb_framebuffer *framebuffer);
Gabe Blackfb8632a2012-09-30 04:47:48 -0700177 int vbe_mode_info_valid(void);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000178
Gabe Blackfb8632a2012-09-30 04:47:48 -0700179 // If there isn't any mode info to put in the table, don't ask for it
180 // to be filled with junk.
181 if (!vbe_mode_info_valid())
182 return;
Stefan Reinauerd650e992010-02-22 04:33:13 +0000183 struct lb_framebuffer *framebuffer;
184 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
185 framebuffer->tag = LB_TAG_FRAMEBUFFER;
186 framebuffer->size = sizeof(*framebuffer);
187 fill_lb_framebuffer(framebuffer);
188#endif
189}
190
Stefan Reinauer31324c62012-04-05 21:22:02 +0200191#if CONFIG_CHROMEOS
192static void lb_gpios(struct lb_header *header)
193{
194 struct lb_gpios *gpios;
195 gpios = (struct lb_gpios *)lb_new_record(header);
196 gpios->tag = LB_TAG_GPIO;
197 gpios->size = sizeof(*gpios);
198 gpios->count = 0;
199 fill_lb_gpios(gpios);
200}
201
202static void lb_vdat(struct lb_header *header)
203{
204 struct lb_vdat* vdat;
205
206 vdat = (struct lb_vdat *)lb_new_record(header);
207 vdat->tag = LB_TAG_VDAT;
208 vdat->size = sizeof(*vdat);
209 acpi_get_vdat_info(&vdat->vdat_addr, &vdat->vdat_size);
210}
211
212static void lb_vbnv(struct lb_header *header)
213{
214 struct lb_vbnv* vbnv;
215
216 vbnv = (struct lb_vbnv *)lb_new_record(header);
217 vbnv->tag = LB_TAG_VBNV;
218 vbnv->size = sizeof(*vbnv);
219 vbnv->vbnv_start = CONFIG_VBNV_OFFSET + 14;
220 vbnv->vbnv_size = CONFIG_VBNV_SIZE;
221}
222#endif
223
Vadim Bendebury22c04682011-10-03 14:58:57 -0700224static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700225{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700226 /*
227 * These CBMEM sections' addresses are included in the coreboot table
228 * with the appropriate tags.
229 */
230 const struct section_id {
231 int cbmem_id;
232 int table_tag;
233 } section_ids[] = {
234 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
235 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE}
236 };
237 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700238
Vadim Bendebury22c04682011-10-03 14:58:57 -0700239 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
240 const struct section_id *sid = section_ids + i;
241 struct lb_cbmem_ref *cbmem_ref;
242 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700243
Vadim Bendebury22c04682011-10-03 14:58:57 -0700244 if (!cbmem_addr)
245 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700246
Vadim Bendebury22c04682011-10-03 14:58:57 -0700247 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
248 if (!cbmem_ref) {
249 printk(BIOS_ERR, "No more room in coreboot table!\n");
250 break;
251 }
252 cbmem_ref->tag = sid->table_tag;
253 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800254 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700255 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700256}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700257
Stefan Reinauere3778572010-01-30 09:47:18 +0000258static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000259{
260 struct lb_record *rec;
261 struct lb_mainboard *mainboard;
262 rec = lb_new_record(header);
263 mainboard = (struct lb_mainboard *)rec;
264 mainboard->tag = LB_TAG_MAINBOARD;
265
266 mainboard->size = (sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000267 strlen(mainboard_vendor) + 1 +
Eric Biederman8ca8d762003-04-22 19:02:15 +0000268 strlen(mainboard_part_number) + 1 +
269 3) & ~3;
270
271 mainboard->vendor_idx = 0;
272 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
273
274 memcpy(mainboard->strings + mainboard->vendor_idx,
275 mainboard_vendor, strlen(mainboard_vendor) + 1);
276 memcpy(mainboard->strings + mainboard->part_number_idx,
277 mainboard_part_number, strlen(mainboard_part_number) + 1);
278
279 return mainboard;
280}
281
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700282#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000283static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000284{
285 struct lb_record *rec;
286 struct cmos_checksum *cmos_checksum;
287 rec = lb_new_record(header);
288 cmos_checksum = (struct cmos_checksum *)rec;
289 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
290
291 cmos_checksum->size = (sizeof(*cmos_checksum));
292
Stefan Reinauerb5828d72010-03-29 17:14:28 +0000293 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
294 cmos_checksum->range_end = ( LB_CKS_RANGE_END * 8 ) + 7;
295 cmos_checksum->location = LB_CKS_LOC * 8;
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000296 cmos_checksum->type = CHECKSUM_PCBIOS;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000297
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000298 return cmos_checksum;
299}
Stefan Reinauer2549d522010-03-17 03:44:45 +0000300#endif
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000301
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000302static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000303{
304 static const struct {
305 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000306 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000307 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000308 { LB_TAG_VERSION, coreboot_version, },
309 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
310 { LB_TAG_BUILD, coreboot_build, },
311 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
312 { LB_TAG_COMPILE_BY, coreboot_compile_by, },
313 { LB_TAG_COMPILE_HOST, coreboot_compile_host, },
314 { LB_TAG_COMPILE_DOMAIN, coreboot_compile_domain, },
315 { LB_TAG_COMPILER, coreboot_compiler, },
316 { LB_TAG_LINKER, coreboot_linker, },
317 { LB_TAG_ASSEMBLER, coreboot_assembler, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000318 };
Eric Biederman52685572003-05-19 19:16:21 +0000319 unsigned int i;
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000320 for(i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000321 struct lb_string *rec;
322 size_t len;
323 rec = (struct lb_string *)lb_new_record(header);
324 len = strlen(strings[i].string);
325 rec->tag = strings[i].tag;
326 rec->size = (sizeof(*rec) + len + 1 + 3) & ~3;
327 memcpy(rec->string, strings[i].string, len+1);
328 }
329
330}
331
Patrick Georgie1667822012-05-05 15:29:32 +0200332#if CONFIG_WRITE_HIGH_TABLES
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000333static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000334{
335 struct lb_record *rec;
336 struct lb_forward *forward;
337 rec = lb_new_record(header);
338 forward = (struct lb_forward *)rec;
339 forward->tag = LB_TAG_FORWARD;
340 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000341 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000342 return forward;
343}
Myles Watson2e672732009-11-12 16:38:03 +0000344#endif
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000345
Kyösti Mälkki4c29d7f2012-08-02 09:49:11 +0300346static void lb_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000347 uint32_t type, uint64_t start, uint64_t size)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000348{
349 int entries;
350 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
Eric Biedermanec01aa92004-12-10 20:50:43 +0000351 mem->map[entries].start = pack_lb64(start);
352 mem->map[entries].size = pack_lb64(size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000353 mem->map[entries].type = type;
354 mem->size += sizeof(mem->map[0]);
355}
356
Eric Biederman8ca8d762003-04-22 19:02:15 +0000357static void lb_reserve_table_memory(struct lb_header *head)
358{
359 struct lb_record *last_rec;
360 struct lb_memory *mem;
361 uint64_t start;
362 uint64_t end;
363 int i, entries;
364
365 last_rec = lb_last_record(head);
366 mem = get_lb_mem();
367 start = (unsigned long)head;
368 end = (unsigned long)last_rec;
369 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
370 /* Resize the right two memory areas so this table is in
371 * a reserved area of memory. Everything has been carefully
372 * setup so that is all we need to do.
373 */
374 for(i = 0; i < entries; i++ ) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000375 uint64_t map_start = unpack_lb64(mem->map[i].start);
376 uint64_t map_end = map_start + unpack_lb64(mem->map[i].size);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000377 /* Does this area need to be expanded? */
378 if (map_end == start) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000379 mem->map[i].size = pack_lb64(end - map_start);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000380 }
381 /* Does this area need to be contracted? */
382 else if (map_start == start) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000383 mem->map[i].start = pack_lb64(end);
384 mem->map[i].size = pack_lb64(map_end - end);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000385 }
386 }
387}
388
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000389static unsigned long lb_table_fini(struct lb_header *head, int fixup)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000390{
391 struct lb_record *rec, *first_rec;
392 rec = lb_last_record(head);
393 if (head->table_entries) {
394 head->table_bytes += rec->size;
395 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000396
397 if (fixup)
398 lb_reserve_table_memory(head);
399
Eric Biederman8ca8d762003-04-22 19:02:15 +0000400 first_rec = lb_first_record(head);
401 head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
402 head->header_checksum = 0;
403 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700404 printk(BIOS_DEBUG,
405 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
406 head, head->table_bytes, head->table_checksum);
407 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000408}
409
Eric Biederman6e53f502004-10-27 08:53:57 +0000410static void lb_cleanup_memory_ranges(struct lb_memory *mem)
411{
412 int entries;
413 int i, j;
414 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000415
Eric Biederman6e53f502004-10-27 08:53:57 +0000416 /* Sort the lb memory ranges */
417 for(i = 0; i < entries; i++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000418 uint64_t entry_start = unpack_lb64(mem->map[i].start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000419 for(j = i; j < entries; j++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000420 uint64_t temp_start = unpack_lb64(mem->map[j].start);
421 if (temp_start < entry_start) {
Eric Biederman6e53f502004-10-27 08:53:57 +0000422 struct lb_memory_range tmp;
423 tmp = mem->map[i];
424 mem->map[i] = mem->map[j];
425 mem->map[j] = tmp;
426 }
427 }
428 }
429
430 /* Merge adjacent entries */
431 for(i = 0; (i + 1) < entries; i++) {
432 uint64_t start, end, nstart, nend;
433 if (mem->map[i].type != mem->map[i + 1].type) {
434 continue;
435 }
Eric Biedermanec01aa92004-12-10 20:50:43 +0000436 start = unpack_lb64(mem->map[i].start);
437 end = start + unpack_lb64(mem->map[i].size);
438 nstart = unpack_lb64(mem->map[i + 1].start);
439 nend = nstart + unpack_lb64(mem->map[i + 1].size);
Eric Biederman6e53f502004-10-27 08:53:57 +0000440 if ((start <= nstart) && (end > nstart)) {
441 if (start > nstart) {
442 start = nstart;
443 }
444 if (end < nend) {
445 end = nend;
446 }
447 /* Record the new region size */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000448 mem->map[i].start = pack_lb64(start);
449 mem->map[i].size = pack_lb64(end - start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000450
451 /* Delete the entry I have merged with */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000452 memmove(&mem->map[i + 1], &mem->map[i + 2],
Eric Biederman6e53f502004-10-27 08:53:57 +0000453 ((entries - i - 2) * sizeof(mem->map[0])));
454 mem->size -= sizeof(mem->map[0]);
455 entries -= 1;
456 /* See if I can merge with the next entry as well */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000457 i -= 1;
Eric Biederman6e53f502004-10-27 08:53:57 +0000458 }
459 }
460}
461
Stefan Reinauer14e22772010-04-27 06:56:47 +0000462static void lb_remove_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000463 uint64_t start, uint64_t size)
464{
465 uint64_t end;
466 int entries;
467 int i;
468
469 end = start + size;
470 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
471
472 /* Remove a reserved area from the memory map */
473 for(i = 0; i < entries; i++) {
Eric Biedermanec01aa92004-12-10 20:50:43 +0000474 uint64_t map_start = unpack_lb64(mem->map[i].start);
475 uint64_t map_end = map_start + unpack_lb64(mem->map[i].size);
Eric Biederman6e53f502004-10-27 08:53:57 +0000476 if ((start <= map_start) && (end >= map_end)) {
477 /* Remove the completely covered range */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000478 memmove(&mem->map[i], &mem->map[i + 1],
Eric Biederman6e53f502004-10-27 08:53:57 +0000479 ((entries - i - 1) * sizeof(mem->map[0])));
480 mem->size -= sizeof(mem->map[0]);
481 entries -= 1;
482 /* Since the index will disappear revisit what will appear here */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000483 i -= 1;
Eric Biederman6e53f502004-10-27 08:53:57 +0000484 }
485 else if ((start > map_start) && (end < map_end)) {
486 /* Split the memory range */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000487 memmove(&mem->map[i + 1], &mem->map[i],
Eric Biederman6e53f502004-10-27 08:53:57 +0000488 ((entries - i) * sizeof(mem->map[0])));
489 mem->size += sizeof(mem->map[0]);
490 entries += 1;
491 /* Update the first map entry */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000492 mem->map[i].size = pack_lb64(start - map_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000493 /* Update the second map entry */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000494 mem->map[i + 1].start = pack_lb64(end);
495 mem->map[i + 1].size = pack_lb64(map_end - end);
Eric Biederman6e53f502004-10-27 08:53:57 +0000496 /* Don't bother with this map entry again */
497 i += 1;
498 }
499 else if ((start <= map_start) && (end > map_start)) {
500 /* Shrink the start of the memory range */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000501 mem->map[i].start = pack_lb64(end);
502 mem->map[i].size = pack_lb64(map_end - end);
Eric Biederman6e53f502004-10-27 08:53:57 +0000503 }
504 else if ((start < map_end) && (start > map_start)) {
505 /* Shrink the end of the memory range */
Eric Biedermanec01aa92004-12-10 20:50:43 +0000506 mem->map[i].size = pack_lb64(start - map_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000507 }
508 }
509}
510
Kyösti Mälkki4c29d7f2012-08-02 09:49:11 +0300511static void lb_add_memory_range(struct lb_memory *mem,
Eric Biederman6e53f502004-10-27 08:53:57 +0000512 uint32_t type, uint64_t start, uint64_t size)
513{
514 lb_remove_memory_range(mem, start, size);
515 lb_memory_range(mem, type, start, size);
516 lb_cleanup_memory_ranges(mem);
517}
Eric Biederman8ca8d762003-04-22 19:02:15 +0000518
Stefan Reinauere3778572010-01-30 09:47:18 +0000519static void lb_dump_memory_ranges(struct lb_memory *mem)
520{
521 int entries;
522 int i;
523 entries = (mem->size - sizeof(*mem))/sizeof(mem->map[0]);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000524
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000525 printk(BIOS_DEBUG, "coreboot memory table:\n");
Stefan Reinauere3778572010-01-30 09:47:18 +0000526 for(i = 0; i < entries; i++) {
527 uint64_t entry_start = unpack_lb64(mem->map[i].start);
528 uint64_t entry_size = unpack_lb64(mem->map[i].size);
529 const char *entry_type;
530
531 switch (mem->map[i].type) {
532 case LB_MEM_RAM: entry_type="RAM"; break;
533 case LB_MEM_RESERVED: entry_type="RESERVED"; break;
534 case LB_MEM_ACPI: entry_type="ACPI"; break;
535 case LB_MEM_NVS: entry_type="NVS"; break;
536 case LB_MEM_UNUSABLE: entry_type="UNUSABLE"; break;
537 case LB_MEM_VENDOR_RSVD: entry_type="VENDOR RESERVED"; break;
538 case LB_MEM_TABLE: entry_type="CONFIGURATION TABLES"; break;
539 default: entry_type="UNKNOWN!"; break;
540 }
541
Stefan Reinauer14e22772010-04-27 06:56:47 +0000542 printk(BIOS_DEBUG, "%2d. %016llx-%016llx: %s\n",
Stefan Reinauere3778572010-01-30 09:47:18 +0000543 i, entry_start, entry_start+entry_size-1, entry_type);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000544
Stefan Reinauere3778572010-01-30 09:47:18 +0000545 }
546}
547
548
Stefan Reinauer14e22772010-04-27 06:56:47 +0000549/* Routines to extract part so the coreboot table or
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000550 * information from the coreboot table after we have written it.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000551 * Currently get_lb_mem relies on a global we can change the
552 * implementaiton.
553 */
554static struct lb_memory *mem_ranges = 0;
555struct lb_memory *get_lb_mem(void)
556{
557 return mem_ranges;
558}
559
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000560static void build_lb_mem_range(void *gp, struct device *dev, struct resource *res)
561{
562 struct lb_memory *mem = gp;
563 lb_memory_range(mem, LB_MEM_RAM, res->base, res->size);
564}
565
Eric Biederman6e53f502004-10-27 08:53:57 +0000566static struct lb_memory *build_lb_mem(struct lb_header *head)
Eric Biedermanb78c1972004-10-14 20:54:17 +0000567{
Eric Biederman6e53f502004-10-27 08:53:57 +0000568 struct lb_memory *mem;
Eric Biedermanb78c1972004-10-14 20:54:17 +0000569
Eric Biederman6e53f502004-10-27 08:53:57 +0000570 /* Record where the lb memory ranges will live */
571 mem = lb_memory(head);
572 mem_ranges = mem;
573
574 /* Build the raw table of memory */
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000575 search_global_resources(
576 IORESOURCE_MEM | IORESOURCE_CACHEABLE, IORESOURCE_MEM | IORESOURCE_CACHEABLE,
577 build_lb_mem_range, mem);
Eric Biederman6e53f502004-10-27 08:53:57 +0000578 lb_cleanup_memory_ranges(mem);
Eric Biedermanb78c1972004-10-14 20:54:17 +0000579 return mem;
580}
581
Myles Watsone0a000c2010-09-09 14:51:17 +0000582static void lb_add_rsvd_range(void *gp, struct device *dev, struct resource *res)
583{
584 struct lb_memory *mem = gp;
585 lb_add_memory_range(mem, LB_MEM_RESERVED, res->base, res->size);
586}
587
588static void add_lb_reserved(struct lb_memory *mem)
589{
590 /* Add reserved ranges */
591 search_global_resources(
592 IORESOURCE_MEM | IORESOURCE_RESERVE, IORESOURCE_MEM | IORESOURCE_RESERVE,
593 lb_add_rsvd_range, mem);
594}
595
Stefan Reinauer14e22772010-04-27 06:56:47 +0000596unsigned long write_coreboot_table(
597 unsigned long low_table_start, unsigned long low_table_end,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000598 unsigned long rom_table_start, unsigned long rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000599{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000600 struct lb_header *head;
601 struct lb_memory *mem;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000602
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700603#if CONFIG_WRITE_HIGH_TABLES
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000604 printk(BIOS_DEBUG, "Writing high table forward entry at 0x%08lx\n",
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000605 low_table_end);
606 head = lb_table_init(low_table_end);
Myles Watsonfa12b672009-04-30 22:45:41 +0000607 lb_forward(head, (struct lb_header*)rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000608
Patrick Georgibab4f922009-05-26 19:39:14 +0000609 low_table_end = (unsigned long) lb_table_fini(head, 0);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000610 printk(BIOS_DEBUG, "New low_table_end: 0x%08lx\n", low_table_end);
611 printk(BIOS_DEBUG, "Now going to write high coreboot table at 0x%08lx\n",
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000612 rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000613
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000614 head = lb_table_init(rom_table_end);
615 rom_table_end = (unsigned long)head;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000616 printk(BIOS_DEBUG, "rom_table_end = 0x%08lx\n", rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000617#else
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000618 if(low_table_end > (0x1000 - sizeof(struct lb_header))) { /* after 4K */
619 /* We need to put lbtable on to [0xf0000,0x100000) */
620 head = lb_table_init(rom_table_end);
621 rom_table_end = (unsigned long)head;
622 } else {
623 head = lb_table_init(low_table_end);
624 low_table_end = (unsigned long)head;
625 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000626#endif
Stefan Reinauer14e22772010-04-27 06:56:47 +0000627
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000628 printk(BIOS_DEBUG, "Adjust low_table_end from 0x%08lx to ", low_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000629 low_table_end += 0xfff; // 4K aligned
630 low_table_end &= ~0xfff;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000631 printk(BIOS_DEBUG, "0x%08lx \n", low_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000632
633 /* The Linux kernel assumes this region is reserved */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000634 printk(BIOS_DEBUG, "Adjust rom_table_end from 0x%08lx to ", rom_table_end);
Yinghai Lu47cb7c72007-04-06 20:27:40 +0000635 rom_table_end += 0xffff; // 64K align
636 rom_table_end &= ~0xffff;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000637 printk(BIOS_DEBUG, "0x%08lx \n", rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000638
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700639#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerba430642007-04-06 12:14:51 +0000640 {
Patrick Georgia3eb5342011-01-21 13:20:10 +0000641 struct cmos_option_table *option_table = cbfs_find_file("cmos_layout.bin", 0x1aa);
Patrick Georgi24479372011-01-18 13:56:36 +0000642 if (option_table) {
643 struct lb_record *rec_dest = lb_new_record(head);
644 /* Copy the option config table, it's already a lb_record... */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000645 memcpy(rec_dest, option_table, option_table->size);
Patrick Georgi24479372011-01-18 13:56:36 +0000646 /* Create cmos checksum entry in coreboot table */
647 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000648 } else {
649 printk(BIOS_ERR, "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000650 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000651 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000652#endif
Eric Biederman6e53f502004-10-27 08:53:57 +0000653 /* Record where RAM is located */
654 mem = build_lb_mem(head);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000655
Eric Biederman6e53f502004-10-27 08:53:57 +0000656 /* Record the mptable and the the lb_table (This will be adjusted later) */
Stefan Reinauer14e22772010-04-27 06:56:47 +0000657 lb_add_memory_range(mem, LB_MEM_TABLE,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000658 low_table_start, low_table_end - low_table_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000659
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000660 /* Record the pirq table, acpi tables, and maybe the mptable */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000661 lb_add_memory_range(mem, LB_MEM_TABLE,
Roman Kononov96e30222008-07-23 23:22:59 +0000662 rom_table_start, rom_table_end-rom_table_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000663
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700664#if CONFIG_WRITE_HIGH_TABLES
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000665 printk(BIOS_DEBUG, "Adding high table area\n");
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000666 // should this be LB_MEM_ACPI?
Patrick Georgibccaafc2009-04-28 12:57:25 +0000667 lb_add_memory_range(mem, LB_MEM_TABLE,
668 high_tables_base, high_tables_size);
669#endif
670
Myles Watsone0a000c2010-09-09 14:51:17 +0000671 /* Add reserved regions */
672 add_lb_reserved(mem);
673
Stefan Reinauere3778572010-01-30 09:47:18 +0000674 lb_dump_memory_ranges(mem);
675
Eric Biederman6e53f502004-10-27 08:53:57 +0000676 /* Note:
677 * I assume that there is always memory at immediately after
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000678 * the low_table_end. This means that after I setup the coreboot table.
Eric Biederman6e53f502004-10-27 08:53:57 +0000679 * I can trivially fixup the reserved memory ranges to hold the correct
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000680 * size of the coreboot table.
Eric Biederman6e53f502004-10-27 08:53:57 +0000681 */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000682
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000683 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000684 lb_mainboard(head);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000685 /* Record the serial port, if present */
686 lb_serial(head);
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000687 /* Record our console setup */
688 lb_console(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000689 /* Record our various random string information */
690 lb_strings(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000691 /* Record our framebuffer */
692 lb_framebuffer(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000693
Stefan Reinauer31324c62012-04-05 21:22:02 +0200694#if CONFIG_CHROMEOS
695 /* Record our GPIO settings (ChromeOS specific) */
696 lb_gpios(head);
697
698 /* pass along the VDAT buffer adress */
699 lb_vdat(head);
700
701 /* pass along VBNV offsets in CMOS */
702 lb_vbnv(head);
703#endif
Vadim Bendebury22c04682011-10-03 14:58:57 -0700704 add_cbmem_pointers(head);
705
Eric Biederman8ca8d762003-04-22 19:02:15 +0000706 /* Remember where my valid memory ranges are */
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000707 return lb_table_fini(head, 1);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000708
Eric Biederman8ca8d762003-04-22 19:02:15 +0000709}