blob: a0a806d7fcce95fdf123c78beab90a8ce4ea1f06 [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 Reinauerca374d42008-01-18 16:16:45 +000025#include <boot/coreboot_tables.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000026#include <string.h>
27#include <version.h>
Eric Biedermanb78c1972004-10-14 20:54:17 +000028#include <device/device.h>
29#include <stdlib.h>
Duncan Laurie66ecdc52011-08-15 16:35:10 -070030#include <cbfs.h>
Vadim Bendebury2e438672011-09-23 09:56:11 -070031#include <cbmem.h>
Aaron Durbin28adb6e2013-03-23 00:06:36 -050032#include <memrange.h>
Stefan Reinauerc75bfde2011-08-15 11:26:35 -070033#if CONFIG_USE_OPTION_TABLE
Stefan Reinauer8e726b72010-03-29 23:01:35 +000034#include <option_table.h>
Stefan Reinauerb5828d72010-03-29 17:14:28 +000035#endif
Stefan Reinauer0e672b52012-04-27 00:34:54 +020036#if CONFIG_CHROMEOS
Stefan Reinauer3e4e3032013-03-20 14:08:04 -070037#if CONFIG_GENERATE_ACPI_TABLES
Stefan Reinauer0e672b52012-04-27 00:34:54 +020038#include <arch/acpi.h>
Stefan Reinauer3e4e3032013-03-20 14:08:04 -070039#endif
Aaron Durbindd32a312013-03-07 23:15:06 -060040#include <vendorcode/google/chromeos/chromeos.h>
Stefan Reinauer0e672b52012-04-27 00:34:54 +020041#include <vendorcode/google/chromeos/gnvs.h>
42#endif
Aaron Durbinbc07f5d2013-03-26 13:09:39 -050043#if CONFIG_ARCH_X86
44#include <cpu/x86/mtrr.h>
45#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000046
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000047static struct lb_header *lb_table_init(unsigned long addr)
Eric Biederman8ca8d762003-04-22 19:02:15 +000048{
49 struct lb_header *header;
50
51 /* 16 byte align the address */
52 addr += 15;
53 addr &= ~15;
54
55 header = (void *)addr;
56 header->signature[0] = 'L';
57 header->signature[1] = 'B';
58 header->signature[2] = 'I';
59 header->signature[3] = 'O';
60 header->header_bytes = sizeof(*header);
61 header->header_checksum = 0;
62 header->table_bytes = 0;
63 header->table_checksum = 0;
64 header->table_entries = 0;
65 return header;
66}
67
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000068static struct lb_record *lb_first_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000069{
70 struct lb_record *rec;
71 rec = (void *)(((char *)header) + sizeof(*header));
72 return rec;
73}
74
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000075static struct lb_record *lb_last_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000076{
77 struct lb_record *rec;
78 rec = (void *)(((char *)header) + sizeof(*header) + header->table_bytes);
79 return rec;
80}
81
Stefan Reinauerb883d4c2009-08-27 11:23:06 +000082static struct lb_record *lb_new_record(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +000083{
84 struct lb_record *rec;
85 rec = lb_last_record(header);
86 if (header->table_entries) {
87 header->table_bytes += rec->size;
88 }
89 rec = lb_last_record(header);
90 header->table_entries++;
91 rec->tag = LB_TAG_UNUSED;
92 rec->size = sizeof(*rec);
93 return rec;
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;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700120#elif CONFIG_CONSOLE_SERIAL8250MEM || CONFIG_CONSOLE_SERIAL_UART
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 Reinauer3e4e3032013-03-20 14:08:04 -0700140#if CONFIG_CONSOLE_SERIAL || CONFIG_CONSOLE_LOGBUF || CONFIG_USBDEBUG
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000141static void add_console(struct lb_header *header, u16 consoletype)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000142{
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000143 struct lb_console *console;
Patrick Georgi16cdbb22009-04-21 20:14:31 +0000144
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000145 console = (struct lb_console *)lb_new_record(header);
146 console->tag = LB_TAG_CONSOLE;
147 console->size = sizeof(*console);
148 console->type = consoletype;
149}
Stefan Reinauer513eb5a2011-06-01 14:04:50 -0700150#endif
151
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000152static void lb_console(struct lb_header *header)
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000153{
Myles Watsonec0ee642009-10-19 16:21:30 +0000154#if CONFIG_CONSOLE_SERIAL8250
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000155 add_console(header, LB_TAG_CONSOLE_SERIAL8250);
156#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700157#if CONFIG_CONSOLE_SERIAL8250MEM || CONFIG_CONSOLE_SERIAL_UART
Stefan Reinauer4885daa2011-04-26 23:47:04 +0000158 add_console(header, LB_TAG_CONSOLE_SERIAL8250MEM);
159#endif
Myles Watsonec0ee642009-10-19 16:21:30 +0000160#if CONFIG_CONSOLE_LOGBUF
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000161 add_console(header, LB_TAG_CONSOLE_LOGBUF);
162#endif
Stefan Reinauer7e00a442010-05-25 17:09:05 +0000163#if CONFIG_USBDEBUG
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000164 add_console(header, LB_TAG_CONSOLE_EHCI);
165#endif
166}
167
Stefan Reinauerd650e992010-02-22 04:33:13 +0000168static void lb_framebuffer(struct lb_header *header)
169{
Ronald G. Minnich69efaa02013-02-26 10:07:40 -0800170#if CONFIG_FRAMEBUFFER_KEEP_VESA_MODE || CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT
Stefan Reinauerd650e992010-02-22 04:33:13 +0000171 void fill_lb_framebuffer(struct lb_framebuffer *framebuffer);
Gabe Blackfb8632a2012-09-30 04:47:48 -0700172 int vbe_mode_info_valid(void);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000173
Gabe Blackfb8632a2012-09-30 04:47:48 -0700174 // If there isn't any mode info to put in the table, don't ask for it
175 // to be filled with junk.
176 if (!vbe_mode_info_valid())
177 return;
Stefan Reinauerd650e992010-02-22 04:33:13 +0000178 struct lb_framebuffer *framebuffer;
179 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
Vladimir Serbinenko617f8532013-11-23 14:46:34 +0100180 fill_lb_framebuffer(framebuffer);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000181 framebuffer->tag = LB_TAG_FRAMEBUFFER;
182 framebuffer->size = sizeof(*framebuffer);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000183#endif
184}
185
Stefan Reinauer31324c62012-04-05 21:22:02 +0200186#if CONFIG_CHROMEOS
187static void lb_gpios(struct lb_header *header)
188{
189 struct lb_gpios *gpios;
190 gpios = (struct lb_gpios *)lb_new_record(header);
191 gpios->tag = LB_TAG_GPIO;
192 gpios->size = sizeof(*gpios);
193 gpios->count = 0;
194 fill_lb_gpios(gpios);
195}
196
197static void lb_vdat(struct lb_header *header)
198{
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700199#if CONFIG_GENERATE_ACPI_TABLES
Stefan Reinauer31324c62012-04-05 21:22:02 +0200200 struct lb_vdat* vdat;
201
202 vdat = (struct lb_vdat *)lb_new_record(header);
203 vdat->tag = LB_TAG_VDAT;
204 vdat->size = sizeof(*vdat);
205 acpi_get_vdat_info(&vdat->vdat_addr, &vdat->vdat_size);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700206#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200207}
208
209static void lb_vbnv(struct lb_header *header)
210{
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700211#if CONFIG_PC80_SYSTEM
Stefan Reinauer31324c62012-04-05 21:22:02 +0200212 struct lb_vbnv* vbnv;
213
214 vbnv = (struct lb_vbnv *)lb_new_record(header);
215 vbnv->tag = LB_TAG_VBNV;
216 vbnv->size = sizeof(*vbnv);
217 vbnv->vbnv_start = CONFIG_VBNV_OFFSET + 14;
218 vbnv->vbnv_size = CONFIG_VBNV_SIZE;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700219#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200220}
Aaron Durbindd32a312013-03-07 23:15:06 -0600221
222#if CONFIG_VBOOT_VERIFY_FIRMWARE
223static void lb_vboot_handoff(struct lb_header *header)
224{
225 void *addr;
226 uint32_t size;
227 struct lb_vboot_handoff* vbho;
228
229 if (vboot_get_handoff_info(&addr, &size))
230 return;
231
232 vbho = (struct lb_vboot_handoff *)lb_new_record(header);
233 vbho->tag = LB_TAB_VBOOT_HANDOFF;
234 vbho->size = sizeof(*vbho);
Stefan Reinauer642b1db72013-04-18 18:01:34 -0700235 vbho->vboot_handoff_addr = (intptr_t)addr;
Aaron Durbindd32a312013-03-07 23:15:06 -0600236 vbho->vboot_handoff_size = size;
237}
238#else
239static inline void lb_vboot_handoff(struct lb_header *header) {}
240#endif /* CONFIG_VBOOT_VERIFY_FIRMWARE */
241#endif /* CONFIG_CHROMEOS */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200242
Aaron Durbinbc07f5d2013-03-26 13:09:39 -0500243static void lb_x86_rom_cache(struct lb_header *header)
244{
245#if CONFIG_ARCH_X86
246 long mtrr_index;
247 struct lb_x86_rom_mtrr *lb_x86_rom_mtrr;
248
249 mtrr_index = x86_mtrr_rom_cache_var_index();
250
251 if (mtrr_index < 0)
252 return;
253
254 lb_x86_rom_mtrr = (struct lb_x86_rom_mtrr *)lb_new_record(header);
255 lb_x86_rom_mtrr->tag = LB_TAG_X86_ROM_MTRR;
256 lb_x86_rom_mtrr->size = sizeof(struct lb_x86_rom_mtrr);
257 lb_x86_rom_mtrr->index = mtrr_index;
258#endif
259}
260
Vadim Bendebury22c04682011-10-03 14:58:57 -0700261static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700262{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700263 /*
264 * These CBMEM sections' addresses are included in the coreboot table
265 * with the appropriate tags.
266 */
267 const struct section_id {
268 int cbmem_id;
269 int table_tag;
270 } section_ids[] = {
271 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
272 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE}
273 };
274 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700275
Vadim Bendebury22c04682011-10-03 14:58:57 -0700276 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
277 const struct section_id *sid = section_ids + i;
278 struct lb_cbmem_ref *cbmem_ref;
279 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700280
Vadim Bendebury22c04682011-10-03 14:58:57 -0700281 if (!cbmem_addr)
282 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700283
Vadim Bendebury22c04682011-10-03 14:58:57 -0700284 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
285 if (!cbmem_ref) {
286 printk(BIOS_ERR, "No more room in coreboot table!\n");
287 break;
288 }
289 cbmem_ref->tag = sid->table_tag;
290 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800291 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700292 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700293}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700294
Stefan Reinauere3778572010-01-30 09:47:18 +0000295static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000296{
297 struct lb_record *rec;
298 struct lb_mainboard *mainboard;
299 rec = lb_new_record(header);
300 mainboard = (struct lb_mainboard *)rec;
301 mainboard->tag = LB_TAG_MAINBOARD;
302
303 mainboard->size = (sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000304 strlen(mainboard_vendor) + 1 +
Eric Biederman8ca8d762003-04-22 19:02:15 +0000305 strlen(mainboard_part_number) + 1 +
306 3) & ~3;
307
308 mainboard->vendor_idx = 0;
309 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
310
311 memcpy(mainboard->strings + mainboard->vendor_idx,
312 mainboard_vendor, strlen(mainboard_vendor) + 1);
313 memcpy(mainboard->strings + mainboard->part_number_idx,
314 mainboard_part_number, strlen(mainboard_part_number) + 1);
315
316 return mainboard;
317}
318
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700319#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000320static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000321{
322 struct lb_record *rec;
323 struct cmos_checksum *cmos_checksum;
324 rec = lb_new_record(header);
325 cmos_checksum = (struct cmos_checksum *)rec;
326 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
327
328 cmos_checksum->size = (sizeof(*cmos_checksum));
329
Stefan Reinauerb5828d72010-03-29 17:14:28 +0000330 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
331 cmos_checksum->range_end = ( LB_CKS_RANGE_END * 8 ) + 7;
332 cmos_checksum->location = LB_CKS_LOC * 8;
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000333 cmos_checksum->type = CHECKSUM_PCBIOS;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000334
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000335 return cmos_checksum;
336}
Stefan Reinauer2549d522010-03-17 03:44:45 +0000337#endif
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000338
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000339static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000340{
341 static const struct {
342 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000343 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000344 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000345 { LB_TAG_VERSION, coreboot_version, },
346 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
347 { LB_TAG_BUILD, coreboot_build, },
348 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
349 { LB_TAG_COMPILE_BY, coreboot_compile_by, },
350 { LB_TAG_COMPILE_HOST, coreboot_compile_host, },
351 { LB_TAG_COMPILE_DOMAIN, coreboot_compile_domain, },
352 { LB_TAG_COMPILER, coreboot_compiler, },
353 { LB_TAG_LINKER, coreboot_linker, },
354 { LB_TAG_ASSEMBLER, coreboot_assembler, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000355 };
Eric Biederman52685572003-05-19 19:16:21 +0000356 unsigned int i;
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000357 for(i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000358 struct lb_string *rec;
359 size_t len;
360 rec = (struct lb_string *)lb_new_record(header);
361 len = strlen(strings[i].string);
362 rec->tag = strings[i].tag;
363 rec->size = (sizeof(*rec) + len + 1 + 3) & ~3;
364 memcpy(rec->string, strings[i].string, len+1);
365 }
366
367}
368
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000369static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000370{
371 struct lb_record *rec;
372 struct lb_forward *forward;
373 rec = lb_new_record(header);
374 forward = (struct lb_forward *)rec;
375 forward->tag = LB_TAG_FORWARD;
376 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000377 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000378 return forward;
379}
380
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500381static unsigned long lb_table_fini(struct lb_header *head)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000382{
383 struct lb_record *rec, *first_rec;
384 rec = lb_last_record(head);
385 if (head->table_entries) {
386 head->table_bytes += rec->size;
387 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000388
Eric Biederman8ca8d762003-04-22 19:02:15 +0000389 first_rec = lb_first_record(head);
390 head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
391 head->header_checksum = 0;
392 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700393 printk(BIOS_DEBUG,
394 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
395 head, head->table_bytes, head->table_checksum);
396 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000397}
398
Stefan Reinauer14e22772010-04-27 06:56:47 +0000399/* Routines to extract part so the coreboot table or
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000400 * information from the coreboot table after we have written it.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000401 * Currently get_lb_mem relies on a global we can change the
Martin Rothcbf2bd72013-07-09 21:51:14 -0600402 * implementation.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000403 */
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700404static struct lb_memory *mem_ranges = NULL;
405
Eric Biederman8ca8d762003-04-22 19:02:15 +0000406struct lb_memory *get_lb_mem(void)
407{
408 return mem_ranges;
409}
410
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500411/* This structure keeps track of the coreboot table memory ranges. */
412static struct memranges lb_ranges;
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000413
Eric Biederman6e53f502004-10-27 08:53:57 +0000414static struct lb_memory *build_lb_mem(struct lb_header *head)
Eric Biedermanb78c1972004-10-14 20:54:17 +0000415{
Eric Biederman6e53f502004-10-27 08:53:57 +0000416 struct lb_memory *mem;
Eric Biedermanb78c1972004-10-14 20:54:17 +0000417
Eric Biederman6e53f502004-10-27 08:53:57 +0000418 /* Record where the lb memory ranges will live */
419 mem = lb_memory(head);
420 mem_ranges = mem;
421
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500422 /* Fill the memory map out. The order of operations is important in
423 * that each overlapping range will take over the next. Therefore,
424 * add cacheable resources as RAM then add the reserved resources. */
425 memranges_init(&lb_ranges, IORESOURCE_CACHEABLE,
426 IORESOURCE_CACHEABLE, LB_MEM_RAM);
427 memranges_add_resources(&lb_ranges, IORESOURCE_RESERVE,
428 IORESOURCE_RESERVE, LB_MEM_RESERVED);
429
Eric Biedermanb78c1972004-10-14 20:54:17 +0000430 return mem;
431}
432
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500433static void commit_lb_memory(struct lb_memory *mem)
Myles Watsone0a000c2010-09-09 14:51:17 +0000434{
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500435 struct range_entry *r;
436 struct lb_memory_range *lb_r;
437 int i;
438
439 lb_r = &mem->map[0];
440 i = 0;
441
442 memranges_each_entry(r, &lb_ranges) {
443 const char *entry_type;
444
445 switch (range_entry_tag(r)) {
446 case LB_MEM_RAM: entry_type="RAM"; break;
447 case LB_MEM_RESERVED: entry_type="RESERVED"; break;
448 case LB_MEM_ACPI: entry_type="ACPI"; break;
449 case LB_MEM_NVS: entry_type="NVS"; break;
450 case LB_MEM_UNUSABLE: entry_type="UNUSABLE"; break;
451 case LB_MEM_VENDOR_RSVD: entry_type="VENDOR RESERVED"; break;
452 case LB_MEM_TABLE: entry_type="CONFIGURATION TABLES"; break;
453 default: entry_type="UNKNOWN!"; break;
454 }
455
456 printk(BIOS_DEBUG, "%2d. %016llx-%016llx: %s\n",
457 i, range_entry_base(r), range_entry_end(r)-1,
458 entry_type);
459
460 lb_r->start = pack_lb64(range_entry_base(r));
461 lb_r->size = pack_lb64(range_entry_size(r));
462 lb_r->type = range_entry_tag(r);
463
464 i++;
465 lb_r++;
466 mem->size += sizeof(struct lb_memory_range);
467 }
Myles Watsone0a000c2010-09-09 14:51:17 +0000468}
469
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500470void lb_add_memory_range(struct lb_memory *mem,
471 uint32_t type, uint64_t start, uint64_t size)
Myles Watsone0a000c2010-09-09 14:51:17 +0000472{
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500473 memranges_insert(&lb_ranges, start, size, type);
Myles Watsone0a000c2010-09-09 14:51:17 +0000474}
475
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500476
Stefan Reinauer14e22772010-04-27 06:56:47 +0000477unsigned long write_coreboot_table(
478 unsigned long low_table_start, unsigned long low_table_end,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000479 unsigned long rom_table_start, unsigned long rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000480{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000481 struct lb_header *head;
482 struct lb_memory *mem;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000483
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700484 if (low_table_start || low_table_end) {
485 printk(BIOS_DEBUG, "Writing table forward entry at 0x%08lx\n",
486 low_table_end);
487 head = lb_table_init(low_table_end);
488 lb_forward(head, (struct lb_header*)rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000489
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500490 low_table_end = (unsigned long) lb_table_fini(head);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700491 printk(BIOS_DEBUG, "Table forward entry ends at 0x%08lx.\n",
492 low_table_end);
493 low_table_end = ALIGN(low_table_end, 4096);
494 printk(BIOS_DEBUG, "... aligned to 0x%08lx\n", low_table_end);
495 }
496
497 printk(BIOS_DEBUG, "Writing coreboot table at 0x%08lx\n",
498 rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000499
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000500 head = lb_table_init(rom_table_end);
501 rom_table_end = (unsigned long)head;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000502 printk(BIOS_DEBUG, "rom_table_end = 0x%08lx\n", rom_table_end);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700503 rom_table_end = ALIGN(rom_table_end, (64 * 1024));
504 printk(BIOS_DEBUG, "... aligned to 0x%08lx\n", rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000505
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700506#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerba430642007-04-06 12:14:51 +0000507 {
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800508 struct cmos_option_table *option_table = cbfs_get_file_content(
509 CBFS_DEFAULT_MEDIA, "cmos_layout.bin",
510 CBFS_COMPONENT_CMOS_LAYOUT);
Patrick Georgi24479372011-01-18 13:56:36 +0000511 if (option_table) {
512 struct lb_record *rec_dest = lb_new_record(head);
513 /* Copy the option config table, it's already a lb_record... */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000514 memcpy(rec_dest, option_table, option_table->size);
Patrick Georgi24479372011-01-18 13:56:36 +0000515 /* Create cmos checksum entry in coreboot table */
516 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000517 } else {
518 printk(BIOS_ERR, "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000519 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000520 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000521#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700522
523 /* The Linux kernel assumes this region is reserved */
Eric Biederman6e53f502004-10-27 08:53:57 +0000524 /* Record where RAM is located */
525 mem = build_lb_mem(head);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000526
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700527 if (low_table_start || low_table_end) {
528 /* Record the mptable and the the lb_table.
529 * (This will be adjusted later) */
530 lb_add_memory_range(mem, LB_MEM_TABLE,
531 low_table_start, low_table_end - low_table_start);
532 }
Eric Biederman6e53f502004-10-27 08:53:57 +0000533
Aaron Durbindf3a1092013-03-13 12:41:44 -0500534 /* Record the pirq table, acpi tables, and maybe the mptable. However,
535 * these only need to be added when the rom_table is sitting below
536 * 1MiB. If it isn't that means high tables are being written.
537 * The code below handles high tables correctly. */
538 if (rom_table_end <= (1 << 20))
539 lb_add_memory_range(mem, LB_MEM_TABLE,
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700540 rom_table_start, rom_table_end - rom_table_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000541
Aaron Durbindf3a1092013-03-13 12:41:44 -0500542 cbmem_add_lb_mem(mem);
Patrick Georgibccaafc2009-04-28 12:57:25 +0000543
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500544 /* No other memory areas can be added after the memory table has been
545 * committed as the entries won't show up in the serialize mem table. */
546 commit_lb_memory(mem);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000547
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000548 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000549 lb_mainboard(head);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000550 /* Record the serial port, if present */
551 lb_serial(head);
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000552 /* Record our console setup */
553 lb_console(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000554 /* Record our various random string information */
555 lb_strings(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000556 /* Record our framebuffer */
557 lb_framebuffer(head);
Aaron Durbinbc07f5d2013-03-26 13:09:39 -0500558 /* Communicate x86 variable MTRR ROM cache information. */
559 lb_x86_rom_cache(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000560
Stefan Reinauer31324c62012-04-05 21:22:02 +0200561#if CONFIG_CHROMEOS
562 /* Record our GPIO settings (ChromeOS specific) */
563 lb_gpios(head);
564
Martin Rothcbf2bd72013-07-09 21:51:14 -0600565 /* pass along the VDAT buffer address */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200566 lb_vdat(head);
567
568 /* pass along VBNV offsets in CMOS */
569 lb_vbnv(head);
Aaron Durbindd32a312013-03-07 23:15:06 -0600570
571 /* pass along the vboot_handoff address. */
572 lb_vboot_handoff(head);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200573#endif
Vadim Bendebury22c04682011-10-03 14:58:57 -0700574 add_cbmem_pointers(head);
575
Eric Biederman8ca8d762003-04-22 19:02:15 +0000576 /* Remember where my valid memory ranges are */
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500577 return lb_table_fini(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000578}