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>
This commit is contained in:
Marc Jones 2011-06-08 14:41:52 -06:00 committed by Peter Stuge
parent fe0b4c5916
commit 486e03228e
2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ void sb800_cimx_config(AMDSBCFG *sb_config)
sb_config->SATAMODE.SataMode.SataController = SATA_CONTROLLER; sb_config->SATAMODE.SataMode.SataController = SATA_CONTROLLER;
sb_config->SATAMODE.SataMode.SataIdeCombMdPriSecOpt = 0; //0 -IDE as primary, 1 -IDE as secondary. sb_config->SATAMODE.SataMode.SataIdeCombMdPriSecOpt = 0; //0 -IDE as primary, 1 -IDE as secondary.
//TODO: set to secondary not take effect. //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; sb_config->SATAMODE.SataMode.SATARefClkSel = SATA_CLOCK_SOURCE;
/* Azalia HDA */ /* Azalia HDA */

View File

@ -109,7 +109,7 @@
* NOTE: DO NOT ALLOW SATA & IDE use same mode * NOTE: DO NOT ALLOW SATA & IDE use same mode
*/ */
#ifndef SATA_MODE #ifndef SATA_MODE
#define SATA_MODE AHCI_MODE #define SATA_MODE NATIVE_IDE_MODE
#endif #endif
/** /**