blob: 02d1c163e17b5b9ee8192409b2bba437b7d98e2f [file] [log] [blame]
Ronald G. Minnich98312442016-02-12 22:37:48 +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
18#include <console/console.h>
19#include <cpu/cpu.h>
20#include <boot/tables.h>
21#include <boot/coreboot_tables.h>
22#include <string.h>
23#include <cbmem.h>
24#include <lib.h>
25
Aaron Durbina0546da2016-04-19 15:17:08 -050026#define MAX_COREBOOT_TABLE_SIZE CONFIG_COREBOOT_TABLE_SIZE
Ronald G. Minnich98312442016-02-12 22:37:48 +000027
Aaron Durbinf7dca0a2016-04-19 13:41:16 -050028void write_tables(void)
Ronald G. Minnich98312442016-02-12 22:37:48 +000029{
30 unsigned long table_pointer, new_table_pointer;
31
32 post_code(0x9d);
33
34 table_pointer = (unsigned long)cbmem_add(CBMEM_ID_CBTABLE,
35 MAX_COREBOOT_TABLE_SIZE);
36 if (!table_pointer) {
37 printk(BIOS_ERR, "Could not add CBMEM for coreboot table.\n");
Aaron Durbinf7dca0a2016-04-19 13:41:16 -050038 return;
Ronald G. Minnich98312442016-02-12 22:37:48 +000039 }
40
41 new_table_pointer = write_coreboot_table(0UL, 0UL,
42 table_pointer, table_pointer);
43
44 if (new_table_pointer > (table_pointer + MAX_COREBOOT_TABLE_SIZE)) {
45 printk(BIOS_ERR, "coreboot table didn't fit (%lx/%x bytes)\n",
46 new_table_pointer - table_pointer,
47 MAX_COREBOOT_TABLE_SIZE);
48 }
49
50 printk(BIOS_DEBUG, "coreboot table: %ld bytes.\n",
51 new_table_pointer - table_pointer);
52
53 post_code(0x9e);
Ronald G. Minnich98312442016-02-12 22:37:48 +000054}
55
56void lb_arch_add_records(struct lb_header *header)
57{
58}