Author: stepan Date: Fri May 14 11:59:59 2010 New Revision: 5547 URL: https://tracker.coreboot.org/trac/coreboot/changeset/5547
Log: fix SeaBIOS loading on GX2. Signed-off-by: Nils Jacobs <[email protected]> Acked-by: Stefan Reinauer <[email protected]> Modified: trunk/src/northbridge/amd/gx2/northbridgeinit.c Modified: trunk/src/northbridge/amd/gx2/northbridgeinit.c ============================================================================== --- trunk/src/northbridge/amd/gx2/northbridgeinit.c Fri May 14 11:56:46 2010 (r5546) +++ trunk/src/northbridge/amd/gx2/northbridgeinit.c Fri May 14 11:59:59 2010 (r5547) @@ -672,7 +672,7 @@ { 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); } -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

