summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2019-11-20 22:25:30 +0100
committerPatrick Georgi <pgeorgi@google.com>2019-11-30 16:12:04 +0000
commit8601afb679f9e0af556a4bd19473d9dc5c140895 (patch)
tree9d17b7dfbe9e2d5f4942df1e72f363827326386c
parentfdb8b13e64d233296486ca9a4ca9eb34c0386934 (diff)
downloadcoreboot-8601afb679f9e0af556a4bd19473d9dc5c140895.tar.gz
coreboot-8601afb679f9e0af556a4bd19473d9dc5c140895.tar.bz2
coreboot-8601afb679f9e0af556a4bd19473d9dc5c140895.zip
kill CAR_GLOBAL_MIGRATION leftovers
Change-Id: Ia3b2c10af63cd0cab42dc39f479cb69bc4df9124 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37055 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/arch/x86/Kconfig1
-rw-r--r--src/console/printk.c3
-rw-r--r--src/cpu/Kconfig8
-rw-r--r--src/include/rules.h2
4 files changed, 2 insertions, 12 deletions
diff --git a/src/arch/x86/Kconfig b/src/arch/x86/Kconfig
index a788bc0e2337..0e6f486d03c6 100644
--- a/src/arch/x86/Kconfig
+++ b/src/arch/x86/Kconfig
@@ -219,7 +219,6 @@ config VERSTAGE_ADDR
config POSTCAR_STAGE
def_bool y
depends on ARCH_X86
- depends on !CAR_GLOBAL_MIGRATION
config VERSTAGE_DEBUG_SPINLOOP
bool
diff --git a/src/console/printk.c b/src/console/printk.c
index fd590fa6f71b..a08dd2f80f64 100644
--- a/src/console/printk.c
+++ b/src/console/printk.c
@@ -25,8 +25,7 @@
DECLARE_SPIN_LOCK(console_lock)
-#define TRACK_CONSOLE_TIME (CONFIG(HAVE_MONOTONIC_TIMER) && \
- (ENV_RAMSTAGE || !CONFIG(CAR_GLOBAL_MIGRATION)))
+#define TRACK_CONSOLE_TIME (CONFIG(HAVE_MONOTONIC_TIMER))
static struct mono_time mt_start, mt_stop;
static long console_usecs;
diff --git a/src/cpu/Kconfig b/src/cpu/Kconfig
index 3c0bf89afdec..1ad7ef1b1bb4 100644
--- a/src/cpu/Kconfig
+++ b/src/cpu/Kconfig
@@ -6,14 +6,6 @@ source "src/cpu/*/Kconfig"
if ARCH_X86
-config CAR_GLOBAL_MIGRATION
- bool
- default n
- help
- This option is selected if there is need to migrate CAR globals.
- All stages which use CAR globals can directly access the variables
- from their linked addresses.
-
config DCACHE_RAM_BASE
hex
diff --git a/src/include/rules.h b/src/include/rules.h
index 9e13ee65a64d..fa60ede1812b 100644
--- a/src/include/rules.h
+++ b/src/include/rules.h
@@ -258,7 +258,7 @@
/* No .data sections with execute-in-place from ROM. */
#define ENV_STAGE_HAS_DATA_SECTION !ENV_CACHE_AS_RAM
/* No .bss sections for stage with CAR teardown. */
-#define ENV_STAGE_HAS_BSS_SECTION !(ENV_ROMSTAGE && CONFIG(CAR_GLOBAL_MIGRATION))
+#define ENV_STAGE_HAS_BSS_SECTION 1
#else
/* Both .data and .bss, sometimes SRAM not DRAM. */
#define ENV_STAGE_HAS_DATA_SECTION 1