blob: 9467f52646d07bcf32a004dc8ae2895fd94e287f [file] [log] [blame]
Aaron Durbina2118a22016-04-21 14:02:40 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2016 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#ifndef _ARCH_CBCONFIG_H_
17#define _ARCH_CBCONFIG_H_
18
19/*
20 * Instead of using Kconfig variables for internal coreboot infrastructure
21 * variables that are architecture dependent land those things in this file.
22 * If it's not obvious all variables that are used in the common code need
23 * to have the same name across all architectures.
24 */
25
Aaron Durbina6e90512016-04-21 14:06:17 -050026#define COREBOOT_TABLE_SIZE 0x2000
27
Aaron Durbina2118a22016-04-21 14:02:40 -050028#endif