diff options
author | Marc Jones <marcj303@gmail.com> | 2011-06-08 14:41:52 -0600 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2011-06-09 01:07:01 +0200 |
commit | 486e03228e15c4e26e199900b8909c0676c1140a (patch) | |
tree | 4dd3134cf50c7d85d75b0a0537c3200b9b78a7ce /src/southbridge/amd/cimx_wrapper/sb800 | |
parent | fe0b4c591602355c7219a1e3240bf396907417be (diff) |
Revert changes to set the sb800 to AHCI mode.
Seabios doesn't have this support included yet,
which causes the generic Persimmon and other CIMx
sb800 platforms to not boot.
Change-Id: If07328b7c62d7fc314647adce8fab983ed327854
Signed-off-by: Marc Jones <marcj303@gmail.com>
Reviewed-on: http://review.coreboot.org/14
Tested-by: build bot (Jenkins)
Reviewed-by: Peter Stuge <peter@stuge.se>
Diffstat (limited to 'src/southbridge/amd/cimx_wrapper/sb800')
-rw-r--r-- | src/southbridge/amd/cimx_wrapper/sb800/cfg.c | 2 | ||||
-rw-r--r-- | src/southbridge/amd/cimx_wrapper/sb800/cfg.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/southbridge/amd/cimx_wrapper/sb800/cfg.c b/src/southbridge/amd/cimx_wrapper/sb800/cfg.c index 46ad813499..0a09e11e86 100644 --- a/src/southbridge/amd/cimx_wrapper/sb800/cfg.c +++ b/src/southbridge/amd/cimx_wrapper/sb800/cfg.c @@ -83,7 +83,7 @@ void sb800_cimx_config(AMDSBCFG *sb_config) sb_config->SATAMODE.SataMode.SataController = SATA_CONTROLLER; sb_config->SATAMODE.SataMode.SataIdeCombMdPriSecOpt = 0; //0 -IDE as primary, 1 -IDE as secondary. //TODO: set to secondary not take effect. - sb_config->SATAMODE.SataMode.SataIdeCombinedMode = 1; //IDE controllor is hidden + sb_config->SATAMODE.SataMode.SataIdeCombinedMode = 0; //IDE controlor exposed and combined mode enabled sb_config->SATAMODE.SataMode.SATARefClkSel = SATA_CLOCK_SOURCE; /* Azalia HDA */ diff --git a/src/southbridge/amd/cimx_wrapper/sb800/cfg.h b/src/southbridge/amd/cimx_wrapper/sb800/cfg.h index 581fc661ea..05db9abbe7 100644 --- a/src/southbridge/amd/cimx_wrapper/sb800/cfg.h +++ b/src/southbridge/amd/cimx_wrapper/sb800/cfg.h @@ -109,7 +109,7 @@ * NOTE: DO NOT ALLOW SATA & IDE use same mode */ #ifndef SATA_MODE - #define SATA_MODE AHCI_MODE + #define SATA_MODE NATIVE_IDE_MODE #endif /** |