blob: 8a4faa17ea2d750a2af729a487e6960e5a3d22bb [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.
Furquan Shaikh2af76f42014-04-28 16:39:40 -070016 */
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
26#define MAX_COREBOOT_TABLE_SIZE (8 * 1024)
27
Marc Jones17b9c192015-01-16 13:45:23 -070028void write_tables(void)
Furquan Shaikh2af76f42014-04-28 16:39:40 -070029{
30 unsigned long table_pointer, new_table_pointer;
31
Furquan Shaikh2af76f42014-04-28 16:39:40 -070032 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");
Marc Jones17b9c192015-01-16 13:45:23 -070038 return;
Furquan Shaikh2af76f42014-04-28 16:39:40 -070039 }
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, MAX_COREBOOT_TABLE_SIZE);
47 }
48
49 printk(BIOS_DEBUG, "coreboot table: %ld bytes.\n",
50 new_table_pointer - table_pointer);
51
52 post_code(0x9e);
53
54 /* Print CBMEM sections */
55 cbmem_list();
Furquan Shaikh2af76f42014-04-28 16:39:40 -070056}