fix SeaBIOS loading on GX2.
authorNils Jacobs <njacobs8@hetnet.nl>
Fri, 14 May 2010 09:59:59 +0000 (09:59 +0000)
committerStefan Reinauer <stepan@openbios.org>
Fri, 14 May 2010 09:59:59 +0000 (09:59 +0000)
Signed-off-by: Nils Jacobs <njacobs8@hetnet.nl>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5547 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/northbridge/amd/gx2/northbridgeinit.c

index 7053f5e5d9f42f4f1805af27caf7e47b593ef365..65aa1b5cc2158b9af6a3fce4898fe452d7f20eec 100644 (file)
@@ -672,7 +672,7 @@ shadowRom(void)
 {
        uint64_t shadowSettings = getShadow();
        shadowSettings &= (uint64_t) 0xFFFF00000000FFFFULL;     // Disable read & writes
-       shadowSettings |= (uint64_t) 0x00000000F0000000ULL;     // Enable reads for F0000-FFFFF
+       shadowSettings |= (uint64_t) 0x0000FFFFFFFF0000ULL;     // Enable reads for C0000-FFFFF
        setShadow(shadowSettings);
 }