diff options
author | Aaron Durbin <adurbin@chromium.org> | 2016-04-19 15:17:08 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2016-04-21 20:40:40 +0200 |
commit | a0546da57a79499662f9f82590d1ef6fa18ed893 (patch) | |
tree | fa5f47834631ff9b9310592acb2590d1c353d56b /src/Kconfig | |
parent | 0eb1f1cba9080f2ab11d5492842f4d3c3c09af17 (diff) |
arch: use Kconfig variable for coreboot table size
Instead of hard coding a #define in each architecture's
tables.c for the coreboot table size in cbmem use a Kconfig
varible. This aids in aligning on a common write_tables()
implementation instead of duplicating the code for each
architecture.
Change-Id: I09c0f56133606ea62e9a9c4c6b9828bc24dcc668
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/14429
Tested-by: build bot (Jenkins)
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig index f9bd661e05..b656bbfa22 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -658,6 +658,15 @@ config ACPI_NHLT help Build support for NHLT (non HD Audio) ACPI table generation. + +config COREBOOT_TABLE_SIZE + hex + default 0x8000 if ARCH_X86 + default 0x2000 if !ARCH_X86 + help + The amount of memory to reserve for the coreboot tables in + cbmem. + #These Options are here to avoid "undefined" warnings. #The actual selection and help texts are in the following menu. |