blob: 49fab9f3d24c1da5fab0fd48254b1e095eb03318 [file] [log] [blame]
Furquan Shaikh2af76f42014-04-28 16:39:40 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2003 Eric Biederman
5 * Copyright (C) 2005 Steve Magnani
6 * Copyright (C) 2008-2009 coresystems GmbH
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of 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, MA 02110-1301 USA
20 */
21
22#include <console/console.h>
23#include <cpu/cpu.h>
24#include <boot/tables.h>
25#include <boot/coreboot_tables.h>
26#include <string.h>
27#include <cbmem.h>
28#include <lib.h>
29
30#define MAX_COREBOOT_TABLE_SIZE (8 * 1024)
31
32#if ! CONFIG_DYNAMIC_CBMEM
33/*
34 * TODO: "High" tables are a convention used on x86. Maybe we can
35 * clean up that naming at some point.
36 */
37uint64_t high_tables_base = 0;
38uint64_t high_tables_size;
39#endif
40
41void cbmem_arch_init(void)
42{
43}
44
45struct lb_memory *write_tables(void)
46{
47 unsigned long table_pointer, new_table_pointer;
48
49#if ! CONFIG_DYNAMIC_CBMEM
50 if (!high_tables_base) {
51 printk(BIOS_ERR, "ERROR: high_tables_base is not set.\n");
52 }
53
54 printk(BIOS_DEBUG, "high_tables_base: %llx.\n", high_tables_base);
55#endif
56
57 post_code(0x9d);
58
59 table_pointer = (unsigned long)cbmem_add(CBMEM_ID_CBTABLE,
60 MAX_COREBOOT_TABLE_SIZE);
61 if (!table_pointer) {
62 printk(BIOS_ERR, "Could not add CBMEM for coreboot table.\n");
63 return NULL;
64 }
65
66 new_table_pointer = write_coreboot_table(0UL, 0UL,
67 table_pointer, table_pointer);
68
69 if (new_table_pointer > (table_pointer + MAX_COREBOOT_TABLE_SIZE)) {
70 printk(BIOS_ERR, "coreboot table didn't fit (%lx/%x bytes)\n",
71 new_table_pointer - table_pointer, MAX_COREBOOT_TABLE_SIZE);
72 }
73
74 printk(BIOS_DEBUG, "coreboot table: %ld bytes.\n",
75 new_table_pointer - table_pointer);
76
77 post_code(0x9e);
78
79 /* Print CBMEM sections */
80 cbmem_list();
81
82 return get_lb_mem();
83}