blob: f433e86b7d6a6a509c8ad1a9d73d044cb19648de [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 Reinauer5ae31752013-06-19 13:47:46 -0700140#if CONFIG_CONSOLE_SERIAL8250 || CONFIG_CONSOLE_SERIAL8250MEM || \
141 CONFIG_CONSOLE_SERIAL_UART || 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 Reinauer3e4e3032013-03-20 14:08:04 -0700158#if CONFIG_CONSOLE_SERIAL8250MEM || CONFIG_CONSOLE_SERIAL_UART
Stefan Reinauer4885daa2011-04-26 23:47:04 +0000159 add_console(header, LB_TAG_CONSOLE_SERIAL8250MEM);
160#endif
Stefan Reinauer7e00a442010-05-25 17:09:05 +0000161#if CONFIG_USBDEBUG
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000162 add_console(header, LB_TAG_CONSOLE_EHCI);
163#endif
164}
165
Stefan Reinauerd650e992010-02-22 04:33:13 +0000166static void lb_framebuffer(struct lb_header *header)
167{
Ronald G. Minnich69efaa02013-02-26 10:07:40 -0800168#if CONFIG_FRAMEBUFFER_KEEP_VESA_MODE || CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT
Stefan Reinauerd650e992010-02-22 04:33:13 +0000169 void fill_lb_framebuffer(struct lb_framebuffer *framebuffer);
Gabe Blackfb8632a2012-09-30 04:47:48 -0700170 int vbe_mode_info_valid(void);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000171
Gabe Blackfb8632a2012-09-30 04:47:48 -0700172 // If there isn't any mode info to put in the table, don't ask for it
173 // to be filled with junk.
174 if (!vbe_mode_info_valid())
175 return;
Stefan Reinauerd650e992010-02-22 04:33:13 +0000176 struct lb_framebuffer *framebuffer;
177 framebuffer = (struct lb_framebuffer *)lb_new_record(header);
Vladimir Serbinenko617f8532013-11-23 14:46:34 +0100178 fill_lb_framebuffer(framebuffer);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000179 framebuffer->tag = LB_TAG_FRAMEBUFFER;
180 framebuffer->size = sizeof(*framebuffer);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000181#endif
182}
183
Stefan Reinauer31324c62012-04-05 21:22:02 +0200184#if CONFIG_CHROMEOS
185static void lb_gpios(struct lb_header *header)
186{
187 struct lb_gpios *gpios;
188 gpios = (struct lb_gpios *)lb_new_record(header);
189 gpios->tag = LB_TAG_GPIO;
190 gpios->size = sizeof(*gpios);
191 gpios->count = 0;
192 fill_lb_gpios(gpios);
193}
194
195static void lb_vdat(struct lb_header *header)
196{
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700197#if CONFIG_GENERATE_ACPI_TABLES
Stefan Reinauer31324c62012-04-05 21:22:02 +0200198 struct lb_vdat* vdat;
199
200 vdat = (struct lb_vdat *)lb_new_record(header);
201 vdat->tag = LB_TAG_VDAT;
202 vdat->size = sizeof(*vdat);
203 acpi_get_vdat_info(&vdat->vdat_addr, &vdat->vdat_size);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700204#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200205}
206
207static void lb_vbnv(struct lb_header *header)
208{
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700209#if CONFIG_PC80_SYSTEM
Stefan Reinauer31324c62012-04-05 21:22:02 +0200210 struct lb_vbnv* vbnv;
211
212 vbnv = (struct lb_vbnv *)lb_new_record(header);
213 vbnv->tag = LB_TAG_VBNV;
214 vbnv->size = sizeof(*vbnv);
215 vbnv->vbnv_start = CONFIG_VBNV_OFFSET + 14;
216 vbnv->vbnv_size = CONFIG_VBNV_SIZE;
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700217#endif
Stefan Reinauer31324c62012-04-05 21:22:02 +0200218}
Aaron Durbindd32a312013-03-07 23:15:06 -0600219
220#if CONFIG_VBOOT_VERIFY_FIRMWARE
221static void lb_vboot_handoff(struct lb_header *header)
222{
223 void *addr;
224 uint32_t size;
225 struct lb_vboot_handoff* vbho;
226
227 if (vboot_get_handoff_info(&addr, &size))
228 return;
229
230 vbho = (struct lb_vboot_handoff *)lb_new_record(header);
231 vbho->tag = LB_TAB_VBOOT_HANDOFF;
232 vbho->size = sizeof(*vbho);
Stefan Reinauer642b1db72013-04-18 18:01:34 -0700233 vbho->vboot_handoff_addr = (intptr_t)addr;
Aaron Durbindd32a312013-03-07 23:15:06 -0600234 vbho->vboot_handoff_size = size;
235}
236#else
237static inline void lb_vboot_handoff(struct lb_header *header) {}
238#endif /* CONFIG_VBOOT_VERIFY_FIRMWARE */
239#endif /* CONFIG_CHROMEOS */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200240
Aaron Durbinbc07f5d2013-03-26 13:09:39 -0500241static void lb_x86_rom_cache(struct lb_header *header)
242{
243#if CONFIG_ARCH_X86
244 long mtrr_index;
245 struct lb_x86_rom_mtrr *lb_x86_rom_mtrr;
246
247 mtrr_index = x86_mtrr_rom_cache_var_index();
248
249 if (mtrr_index < 0)
250 return;
251
252 lb_x86_rom_mtrr = (struct lb_x86_rom_mtrr *)lb_new_record(header);
253 lb_x86_rom_mtrr->tag = LB_TAG_X86_ROM_MTRR;
254 lb_x86_rom_mtrr->size = sizeof(struct lb_x86_rom_mtrr);
255 lb_x86_rom_mtrr->index = mtrr_index;
256#endif
257}
258
Vadim Bendebury22c04682011-10-03 14:58:57 -0700259static void add_cbmem_pointers(struct lb_header *header)
Vadim Bendebury2e438672011-09-23 09:56:11 -0700260{
Vadim Bendebury22c04682011-10-03 14:58:57 -0700261 /*
262 * These CBMEM sections' addresses are included in the coreboot table
263 * with the appropriate tags.
264 */
265 const struct section_id {
266 int cbmem_id;
267 int table_tag;
268 } section_ids[] = {
269 {CBMEM_ID_TIMESTAMP, LB_TAG_TIMESTAMPS},
270 {CBMEM_ID_CONSOLE, LB_TAG_CBMEM_CONSOLE}
271 };
272 int i;
Vadim Bendebury2e438672011-09-23 09:56:11 -0700273
Vadim Bendebury22c04682011-10-03 14:58:57 -0700274 for (i = 0; i < ARRAY_SIZE(section_ids); i++) {
275 const struct section_id *sid = section_ids + i;
276 struct lb_cbmem_ref *cbmem_ref;
277 void *cbmem_addr = cbmem_find(sid->cbmem_id);
Vadim Bendebury2e438672011-09-23 09:56:11 -0700278
Vadim Bendebury22c04682011-10-03 14:58:57 -0700279 if (!cbmem_addr)
280 continue; /* This section is not present */
Vadim Bendebury2e438672011-09-23 09:56:11 -0700281
Vadim Bendebury22c04682011-10-03 14:58:57 -0700282 cbmem_ref = (struct lb_cbmem_ref *)lb_new_record(header);
283 if (!cbmem_ref) {
284 printk(BIOS_ERR, "No more room in coreboot table!\n");
285 break;
286 }
287 cbmem_ref->tag = sid->table_tag;
288 cbmem_ref->size = sizeof(*cbmem_ref);
Stefan Reinauerb8ad2242013-01-11 10:41:42 -0800289 cbmem_ref->cbmem_addr = (unsigned long)cbmem_addr;
Vadim Bendebury22c04682011-10-03 14:58:57 -0700290 }
Vadim Bendebury2e438672011-09-23 09:56:11 -0700291}
Vadim Bendebury2e438672011-09-23 09:56:11 -0700292
Stefan Reinauere3778572010-01-30 09:47:18 +0000293static struct lb_mainboard *lb_mainboard(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000294{
295 struct lb_record *rec;
296 struct lb_mainboard *mainboard;
297 rec = lb_new_record(header);
298 mainboard = (struct lb_mainboard *)rec;
299 mainboard->tag = LB_TAG_MAINBOARD;
300
301 mainboard->size = (sizeof(*mainboard) +
Stefan Reinauer14e22772010-04-27 06:56:47 +0000302 strlen(mainboard_vendor) + 1 +
Eric Biederman8ca8d762003-04-22 19:02:15 +0000303 strlen(mainboard_part_number) + 1 +
304 3) & ~3;
305
306 mainboard->vendor_idx = 0;
307 mainboard->part_number_idx = strlen(mainboard_vendor) + 1;
308
309 memcpy(mainboard->strings + mainboard->vendor_idx,
310 mainboard_vendor, strlen(mainboard_vendor) + 1);
311 memcpy(mainboard->strings + mainboard->part_number_idx,
312 mainboard_part_number, strlen(mainboard_part_number) + 1);
313
314 return mainboard;
315}
316
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700317#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000318static struct cmos_checksum *lb_cmos_checksum(struct lb_header *header)
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000319{
320 struct lb_record *rec;
321 struct cmos_checksum *cmos_checksum;
322 rec = lb_new_record(header);
323 cmos_checksum = (struct cmos_checksum *)rec;
324 cmos_checksum->tag = LB_TAG_OPTION_CHECKSUM;
325
326 cmos_checksum->size = (sizeof(*cmos_checksum));
327
Stefan Reinauerb5828d72010-03-29 17:14:28 +0000328 cmos_checksum->range_start = LB_CKS_RANGE_START * 8;
329 cmos_checksum->range_end = ( LB_CKS_RANGE_END * 8 ) + 7;
330 cmos_checksum->location = LB_CKS_LOC * 8;
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000331 cmos_checksum->type = CHECKSUM_PCBIOS;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000332
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000333 return cmos_checksum;
334}
Stefan Reinauer2549d522010-03-17 03:44:45 +0000335#endif
Stefan Reinauer4bd0de02005-12-03 22:39:23 +0000336
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000337static void lb_strings(struct lb_header *header)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000338{
339 static const struct {
340 uint32_t tag;
Stefan Reinauer0dff6e32007-10-23 22:17:45 +0000341 const char *string;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000342 } strings[] = {
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000343 { LB_TAG_VERSION, coreboot_version, },
344 { LB_TAG_EXTRA_VERSION, coreboot_extra_version, },
345 { LB_TAG_BUILD, coreboot_build, },
346 { LB_TAG_COMPILE_TIME, coreboot_compile_time, },
347 { LB_TAG_COMPILE_BY, coreboot_compile_by, },
348 { LB_TAG_COMPILE_HOST, coreboot_compile_host, },
349 { LB_TAG_COMPILE_DOMAIN, coreboot_compile_domain, },
350 { LB_TAG_COMPILER, coreboot_compiler, },
351 { LB_TAG_LINKER, coreboot_linker, },
352 { LB_TAG_ASSEMBLER, coreboot_assembler, },
Eric Biederman8ca8d762003-04-22 19:02:15 +0000353 };
Eric Biederman52685572003-05-19 19:16:21 +0000354 unsigned int i;
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +0000355 for(i = 0; i < ARRAY_SIZE(strings); i++) {
Eric Biederman8ca8d762003-04-22 19:02:15 +0000356 struct lb_string *rec;
357 size_t len;
358 rec = (struct lb_string *)lb_new_record(header);
359 len = strlen(strings[i].string);
360 rec->tag = strings[i].tag;
361 rec->size = (sizeof(*rec) + len + 1 + 3) & ~3;
362 memcpy(rec->string, strings[i].string, len+1);
363 }
364
365}
366
Stefan Reinauerb883d4c2009-08-27 11:23:06 +0000367static struct lb_forward *lb_forward(struct lb_header *header, struct lb_header *next_header)
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000368{
369 struct lb_record *rec;
370 struct lb_forward *forward;
371 rec = lb_new_record(header);
372 forward = (struct lb_forward *)rec;
373 forward->tag = LB_TAG_FORWARD;
374 forward->size = sizeof(*forward);
Stefan Reinauerdf77f342009-04-06 14:00:53 +0000375 forward->forward = (uint64_t)(unsigned long)next_header;
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000376 return forward;
377}
378
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500379static unsigned long lb_table_fini(struct lb_header *head)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000380{
381 struct lb_record *rec, *first_rec;
382 rec = lb_last_record(head);
383 if (head->table_entries) {
384 head->table_bytes += rec->size;
385 }
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000386
Eric Biederman8ca8d762003-04-22 19:02:15 +0000387 first_rec = lb_first_record(head);
388 head->table_checksum = compute_ip_checksum(first_rec, head->table_bytes);
389 head->header_checksum = 0;
390 head->header_checksum = compute_ip_checksum(head, sizeof(*head));
Vadim Bendebury05239892011-08-16 11:44:35 -0700391 printk(BIOS_DEBUG,
392 "Wrote coreboot table at: %p, 0x%x bytes, checksum %x\n",
393 head, head->table_bytes, head->table_checksum);
394 return (unsigned long)rec + rec->size;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000395}
396
Stefan Reinauer14e22772010-04-27 06:56:47 +0000397/* Routines to extract part so the coreboot table or
Stefan Reinauerf8ee1802008-01-18 15:08:58 +0000398 * information from the coreboot table after we have written it.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000399 * Currently get_lb_mem relies on a global we can change the
Martin Rothcbf2bd72013-07-09 21:51:14 -0600400 * implementation.
Eric Biederman8ca8d762003-04-22 19:02:15 +0000401 */
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700402static struct lb_memory *mem_ranges = NULL;
403
Eric Biederman8ca8d762003-04-22 19:02:15 +0000404struct lb_memory *get_lb_mem(void)
405{
406 return mem_ranges;
407}
408
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500409/* This structure keeps track of the coreboot table memory ranges. */
410static struct memranges lb_ranges;
Eric Biedermanf8a2ddd2004-10-30 08:05:41 +0000411
Eric Biederman6e53f502004-10-27 08:53:57 +0000412static struct lb_memory *build_lb_mem(struct lb_header *head)
Eric Biedermanb78c1972004-10-14 20:54:17 +0000413{
Eric Biederman6e53f502004-10-27 08:53:57 +0000414 struct lb_memory *mem;
Eric Biedermanb78c1972004-10-14 20:54:17 +0000415
Eric Biederman6e53f502004-10-27 08:53:57 +0000416 /* Record where the lb memory ranges will live */
417 mem = lb_memory(head);
418 mem_ranges = mem;
419
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500420 /* Fill the memory map out. The order of operations is important in
421 * that each overlapping range will take over the next. Therefore,
422 * add cacheable resources as RAM then add the reserved resources. */
423 memranges_init(&lb_ranges, IORESOURCE_CACHEABLE,
424 IORESOURCE_CACHEABLE, LB_MEM_RAM);
425 memranges_add_resources(&lb_ranges, IORESOURCE_RESERVE,
426 IORESOURCE_RESERVE, LB_MEM_RESERVED);
427
Eric Biedermanb78c1972004-10-14 20:54:17 +0000428 return mem;
429}
430
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500431static void commit_lb_memory(struct lb_memory *mem)
Myles Watsone0a000c2010-09-09 14:51:17 +0000432{
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500433 struct range_entry *r;
434 struct lb_memory_range *lb_r;
435 int i;
436
437 lb_r = &mem->map[0];
438 i = 0;
439
440 memranges_each_entry(r, &lb_ranges) {
441 const char *entry_type;
442
443 switch (range_entry_tag(r)) {
444 case LB_MEM_RAM: entry_type="RAM"; break;
445 case LB_MEM_RESERVED: entry_type="RESERVED"; break;
446 case LB_MEM_ACPI: entry_type="ACPI"; break;
447 case LB_MEM_NVS: entry_type="NVS"; break;
448 case LB_MEM_UNUSABLE: entry_type="UNUSABLE"; break;
449 case LB_MEM_VENDOR_RSVD: entry_type="VENDOR RESERVED"; break;
450 case LB_MEM_TABLE: entry_type="CONFIGURATION TABLES"; break;
451 default: entry_type="UNKNOWN!"; break;
452 }
453
454 printk(BIOS_DEBUG, "%2d. %016llx-%016llx: %s\n",
455 i, range_entry_base(r), range_entry_end(r)-1,
456 entry_type);
457
458 lb_r->start = pack_lb64(range_entry_base(r));
459 lb_r->size = pack_lb64(range_entry_size(r));
460 lb_r->type = range_entry_tag(r);
461
462 i++;
463 lb_r++;
464 mem->size += sizeof(struct lb_memory_range);
465 }
Myles Watsone0a000c2010-09-09 14:51:17 +0000466}
467
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500468void lb_add_memory_range(struct lb_memory *mem,
469 uint32_t type, uint64_t start, uint64_t size)
Myles Watsone0a000c2010-09-09 14:51:17 +0000470{
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500471 memranges_insert(&lb_ranges, start, size, type);
Myles Watsone0a000c2010-09-09 14:51:17 +0000472}
473
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500474
Stefan Reinauer14e22772010-04-27 06:56:47 +0000475unsigned long write_coreboot_table(
476 unsigned long low_table_start, unsigned long low_table_end,
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000477 unsigned long rom_table_start, unsigned long rom_table_end)
Eric Biederman8ca8d762003-04-22 19:02:15 +0000478{
Eric Biederman8ca8d762003-04-22 19:02:15 +0000479 struct lb_header *head;
480 struct lb_memory *mem;
Eric Biederman8ca8d762003-04-22 19:02:15 +0000481
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700482 if (low_table_start || low_table_end) {
483 printk(BIOS_DEBUG, "Writing table forward entry at 0x%08lx\n",
484 low_table_end);
485 head = lb_table_init(low_table_end);
486 lb_forward(head, (struct lb_header*)rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000487
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500488 low_table_end = (unsigned long) lb_table_fini(head);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700489 printk(BIOS_DEBUG, "Table forward entry ends at 0x%08lx.\n",
490 low_table_end);
491 low_table_end = ALIGN(low_table_end, 4096);
492 printk(BIOS_DEBUG, "... aligned to 0x%08lx\n", low_table_end);
493 }
494
495 printk(BIOS_DEBUG, "Writing coreboot table at 0x%08lx\n",
496 rom_table_end);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000497
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000498 head = lb_table_init(rom_table_end);
499 rom_table_end = (unsigned long)head;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000500 printk(BIOS_DEBUG, "rom_table_end = 0x%08lx\n", rom_table_end);
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700501 rom_table_end = ALIGN(rom_table_end, (64 * 1024));
502 printk(BIOS_DEBUG, "... aligned to 0x%08lx\n", rom_table_end);
Stefan Reinauer4f1cb232006-07-19 15:32:49 +0000503
Stefan Reinauerc75bfde2011-08-15 11:26:35 -0700504#if CONFIG_USE_OPTION_TABLE
Stefan Reinauerba430642007-04-06 12:14:51 +0000505 {
Hung-Te Lin6fe0cab2013-01-22 18:57:56 +0800506 struct cmos_option_table *option_table = cbfs_get_file_content(
507 CBFS_DEFAULT_MEDIA, "cmos_layout.bin",
Vladimir Serbinenko0af61b62014-01-12 13:45:52 +0100508 CBFS_COMPONENT_CMOS_LAYOUT, NULL);
Patrick Georgi24479372011-01-18 13:56:36 +0000509 if (option_table) {
510 struct lb_record *rec_dest = lb_new_record(head);
511 /* Copy the option config table, it's already a lb_record... */
Josef Kellermann679d38b2011-01-24 21:07:57 +0000512 memcpy(rec_dest, option_table, option_table->size);
Patrick Georgi24479372011-01-18 13:56:36 +0000513 /* Create cmos checksum entry in coreboot table */
514 lb_cmos_checksum(head);
Patrick Georgicef3b892011-01-18 14:28:45 +0000515 } else {
516 printk(BIOS_ERR, "cmos_layout.bin could not be found!\n");
Patrick Georgi24479372011-01-18 13:56:36 +0000517 }
Eric Biederman8ca8d762003-04-22 19:02:15 +0000518 }
Stefan Reinauerba430642007-04-06 12:14:51 +0000519#endif
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700520
521 /* The Linux kernel assumes this region is reserved */
Eric Biederman6e53f502004-10-27 08:53:57 +0000522 /* Record where RAM is located */
523 mem = build_lb_mem(head);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000524
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700525 if (low_table_start || low_table_end) {
526 /* Record the mptable and the the lb_table.
527 * (This will be adjusted later) */
528 lb_add_memory_range(mem, LB_MEM_TABLE,
529 low_table_start, low_table_end - low_table_start);
530 }
Eric Biederman6e53f502004-10-27 08:53:57 +0000531
Aaron Durbindf3a1092013-03-13 12:41:44 -0500532 /* Record the pirq table, acpi tables, and maybe the mptable. However,
533 * these only need to be added when the rom_table is sitting below
534 * 1MiB. If it isn't that means high tables are being written.
535 * The code below handles high tables correctly. */
536 if (rom_table_end <= (1 << 20))
537 lb_add_memory_range(mem, LB_MEM_TABLE,
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700538 rom_table_start, rom_table_end - rom_table_start);
Eric Biederman6e53f502004-10-27 08:53:57 +0000539
Aaron Durbindf3a1092013-03-13 12:41:44 -0500540 cbmem_add_lb_mem(mem);
Patrick Georgibccaafc2009-04-28 12:57:25 +0000541
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500542 /* No other memory areas can be added after the memory table has been
543 * committed as the entries won't show up in the serialize mem table. */
544 commit_lb_memory(mem);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000545
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000546 /* Record our motherboard */
Eric Biederman8ca8d762003-04-22 19:02:15 +0000547 lb_mainboard(head);
Patrick Georgi8c2a0c12008-01-25 18:28:18 +0000548 /* Record the serial port, if present */
549 lb_serial(head);
Patrick Georgi3bbf2ff2008-01-27 14:12:54 +0000550 /* Record our console setup */
551 lb_console(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000552 /* Record our various random string information */
553 lb_strings(head);
Stefan Reinauerd650e992010-02-22 04:33:13 +0000554 /* Record our framebuffer */
555 lb_framebuffer(head);
Aaron Durbinbc07f5d2013-03-26 13:09:39 -0500556 /* Communicate x86 variable MTRR ROM cache information. */
557 lb_x86_rom_cache(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000558
Stefan Reinauer31324c62012-04-05 21:22:02 +0200559#if CONFIG_CHROMEOS
560 /* Record our GPIO settings (ChromeOS specific) */
561 lb_gpios(head);
562
Martin Rothcbf2bd72013-07-09 21:51:14 -0600563 /* pass along the VDAT buffer address */
Stefan Reinauer31324c62012-04-05 21:22:02 +0200564 lb_vdat(head);
565
566 /* pass along VBNV offsets in CMOS */
567 lb_vbnv(head);
Aaron Durbindd32a312013-03-07 23:15:06 -0600568
569 /* pass along the vboot_handoff address. */
570 lb_vboot_handoff(head);
Stefan Reinauer31324c62012-04-05 21:22:02 +0200571#endif
Vadim Bendebury22c04682011-10-03 14:58:57 -0700572 add_cbmem_pointers(head);
573
Eric Biederman8ca8d762003-04-22 19:02:15 +0000574 /* Remember where my valid memory ranges are */
Aaron Durbin28adb6e2013-03-23 00:06:36 -0500575 return lb_table_fini(head);
Eric Biederman8ca8d762003-04-22 19:02:15 +0000576}