From dd74fdac61e564d9a0e8c436cc2d949e9ecb7a3d Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Fri, 23 Feb 2007 07:15:58 +0000 Subject: [PATCH] Pick a safer default for CacheBase -- not C segment. Signed-off-by: Ronald G. Minnich Acked-by: Ronald G. Minnich Acked-by: Stefan Reinauer git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@81 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- arch/x86/stage0_i586.S | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/x86/stage0_i586.S b/arch/x86/stage0_i586.S index fd72912b28..028c5a8d8d 100644 --- a/arch/x86/stage0_i586.S +++ b/arch/x86/stage0_i586.S @@ -214,8 +214,9 @@ __protected_stage0: #define CacheSize CONFIG_CARSIZE #endif +/* pick a safer value for default -- i.e. not the C segment! */ #ifndef CONFIG_CARBASE -#define CacheBase (0xd0000 - CacheSize) +#define CacheBase (0x90000 - CacheSize) #else #define CacheBase CONFIG_CARBASE #endif