Arthur Heymans (arthur@aheymans.xyz) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/18232
-gerrit
commit 02082f264efaa87aa71d69be5444c0e48e320e12 Author: Arthur Heymans arthur@aheymans.xyz Date: Wed Jan 25 15:27:52 2017 +0100
Only show CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM option when implemented
This also selects RELOCATABLE_RAMSTAGE and CACHE_RELOCATABLE_RAMSTAGE_OUTSIDE_CBMEM by default on Haswell.
Change-Id: I50b9ee8bbfb3611fccfd1cfde58c6c9f46b189ca Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- src/Kconfig | 2 +- src/northbridge/intel/haswell/Kconfig | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/Kconfig b/src/Kconfig index 436964c..581c36b 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -244,7 +244,7 @@ config RELOCATABLE_RAMSTAGE
config CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM depends on RELOCATABLE_RAMSTAGE - bool "Cache the relocated ramstage outside of cbmem." + bool default n help The relocated ramstage is saved in an area specified by the diff --git a/src/northbridge/intel/haswell/Kconfig b/src/northbridge/intel/haswell/Kconfig index 4fc117d..e9a93ba 100644 --- a/src/northbridge/intel/haswell/Kconfig +++ b/src/northbridge/intel/haswell/Kconfig @@ -20,6 +20,8 @@ config NORTHBRIDGE_INTEL_HASWELL select INTEL_DDI select INTEL_DP select INTEL_GMA_ACPI + select RELOCATABLE_RAMSTAGE + select CACHE_RELOCATED_RAMSTAGE_OUTSIDE_CBMEM
if NORTHBRIDGE_INTEL_HASWELL