diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2009-10-07 14:36:16 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2009-10-07 14:36:16 +0000 |
commit | 31f81a6de1515df2eebcf6e1b1afd545fc7a2714 (patch) | |
tree | 3ab6e3da26b92933db7a5625c5df46845270415e /src/mainboard/asi | |
parent | fdfaada706037287c74e2541a6151f16d93b9be1 (diff) |
Enable full ROM access on AMD CS5530(A) (needed for CBFS).
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4731 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/asi')
-rw-r--r-- | src/mainboard/asi/mb_5blgp/auto.c | 2 | ||||
-rw-r--r-- | src/mainboard/asi/mb_5blmp/auto.c | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/mainboard/asi/mb_5blgp/auto.c b/src/mainboard/asi/mb_5blgp/auto.c index 616f7fa2cd..7f2d086de6 100644 --- a/src/mainboard/asi/mb_5blgp/auto.c +++ b/src/mainboard/asi/mb_5blgp/auto.c @@ -31,6 +31,7 @@ #include "northbridge/amd/gx1/raminit.c" #include "cpu/x86/bist.h" #include "superio/nsc/pc87351/pc87351_early_serial.c" +#include "southbridge/amd/cs5530/cs5530_enable_rom.c" #define SERIAL_DEV PNP_DEV(0x2e, PC87351_SP1) @@ -40,6 +41,7 @@ static void main(unsigned long bist) uart_init(); console_init(); report_bist_failure(bist); + cs5530_enable_rom(); sdram_init(); /* ram_check(0, 640 * 1024); */ } diff --git a/src/mainboard/asi/mb_5blmp/auto.c b/src/mainboard/asi/mb_5blmp/auto.c index df9e09cbeb..b4356c3bbc 100644 --- a/src/mainboard/asi/mb_5blmp/auto.c +++ b/src/mainboard/asi/mb_5blmp/auto.c @@ -32,6 +32,7 @@ #include "northbridge/amd/gx1/raminit.c" #include "superio/nsc/pc87351/pc87351_early_serial.c" #include "cpu/x86/bist.h" +#include "southbridge/amd/cs5530/cs5530_enable_rom.c" #define SERIAL_DEV PNP_DEV(0x2e, PC87351_SP1) @@ -45,6 +46,8 @@ static void main(unsigned long bist) /* Halt if there was a built in self test failure. */ report_bist_failure(bist); + cs5530_enable_rom(); + /* Initialize RAM. */ sdram_init(); |