blob: 6300f7b154ef025c7c7442e77993c0f555b0ca21 [file] [log] [blame]
Ronald G. Minniche0e784a2014-11-26 19:25:47 +00001/*
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
Ronald G. Minniche0e784a2014-11-26 19:25:47 +000032void cbmem_arch_init(void)
33{
34}
35
36// WTF. this does not agre with the prototype!
37static struct lb_memory *wtf_write_tables(void)
38{
39 unsigned long table_pointer, new_table_pointer;
40
Ronald G. Minniche0e784a2014-11-26 19:25:47 +000041 post_code(0x9d);
42
43 table_pointer = (unsigned long)cbmem_add(CBMEM_ID_CBTABLE,
44 MAX_COREBOOT_TABLE_SIZE);
45 if (!table_pointer) {
46 printk(BIOS_ERR, "Could not add CBMEM for coreboot table.\n");
47 return NULL;
48 }
49
50 new_table_pointer = write_coreboot_table(0UL, 0UL,
51 table_pointer, table_pointer);
52
53 if (new_table_pointer > (table_pointer + MAX_COREBOOT_TABLE_SIZE)) {
54 printk(BIOS_ERR, "coreboot table didn't fit (%lx/%x bytes)\n",
55 new_table_pointer - table_pointer, MAX_COREBOOT_TABLE_SIZE);
56 }
57
58 printk(BIOS_DEBUG, "coreboot table: %ld bytes.\n",
59 new_table_pointer - table_pointer);
60
61 post_code(0x9e);
62
63 /* Print CBMEM sections */
64 cbmem_list();
65
66// return get_lb_mem();
67 return NULL;
68}
69void write_tables(void)
70{
71 wtf_write_tables();
72}
73
74void cbmem_fail_resume(void)
75{
76}