summaryrefslogtreecommitdiff
path: root/src/Kconfig
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2020-07-02 21:48:38 +0300
committerPatrick Georgi <pgeorgi@google.com>2020-07-06 06:17:47 +0000
commit18a8ba41cc748c4c85fb2d9b0314dbc87c2003c1 (patch)
treef54881cde95e01ce3eedd9969bdcecd6008a8a7f /src/Kconfig
parent7c040adc8c5aa00fabd315296aff4e70d5f03f7e (diff)
downloadcoreboot-18a8ba41cc748c4c85fb2d9b0314dbc87c2003c1.tar.xz
arch/x86: Remove RELOCATABLE_RAMSTAGE
We always have it, no need to support opting-out. For PLATFORM_HAS_DRAM_CLEAR there is a dependency of ramstage located inside CBMEM, which is only true with ARCH_X86. Change-Id: I5cbf4063c69571db92de2d321c14d30c272e8098 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43014 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/Kconfig')
-rw-r--r--src/Kconfig14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/Kconfig b/src/Kconfig
index eb85cd955f..a4c2fa6010 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -270,20 +270,9 @@ config UBSAN
say N because it adds a small performance penalty and may abort
on code that happens to work in spite of the UB.
-config RELOCATABLE_RAMSTAGE
- bool
- default y if ARCH_X86
- select RELOCATABLE_MODULES
- help
- The reloctable ramstage support allows for the ramstage to be built
- as a relocatable module. The stage loader can identify a place
- out of the OS way so that copying memory is unnecessary during an S3
- wake. When selecting this option the romstage is responsible for
- determing a stack location to use for loading the ramstage.
-
choice
prompt "Stage Cache for ACPI S3 resume"
- default NO_STAGE_CACHE if !HAVE_ACPI_RESUME || !RELOCATABLE_RAMSTAGE
+ default NO_STAGE_CACHE if !HAVE_ACPI_RESUME
default TSEG_STAGE_CACHE if SMM_TSEG
config NO_STAGE_CACHE
@@ -576,7 +565,6 @@ source "src/console/Kconfig"
config HAVE_ACPI_RESUME
bool
default n
- depends on RELOCATABLE_RAMSTAGE
config DISABLE_ACPI_HIBERNATE
bool