diff options
author | Marshall Dawson <marshalldawson3rd@gmail.com> | 2016-10-08 10:04:21 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-12-16 23:02:29 +0100 |
commit | 941af1ca09fddfe2c8e3aebde0ed5d9e56f9456f (patch) | |
tree | 3a2b159286651d7c96cdeaf203005da957635a2a /src/mainboard/amd/gardenia | |
parent | 4bbea904170196b4cc59031a8ada7901def934fb (diff) | |
download | coreboot-941af1ca09fddfe2c8e3aebde0ed5d9e56f9456f.tar.xz |
amd/gardenia: Remove rev-specific storage setup
Gardenia doesn't have the ability to modify settings depending on
the board ID.
Original-Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Original-Reviewed-by: Marc Jones <marcj303@gmail.com>
(cherry picked from commit 536b4c424e5259ddbd82469f5f426d3189ff3f89)
Change-Id: I2c928431306c669735cf735042855e95721bb107
Signed-off-by: Marc Jones <marcj303@gmail.com>
Reviewed-on: https://review.coreboot.org/17220
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/amd/gardenia')
-rw-r--r-- | src/mainboard/amd/gardenia/BiosCallOuts.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mainboard/amd/gardenia/BiosCallOuts.c b/src/mainboard/amd/gardenia/BiosCallOuts.c index 44644ce069..f7c16b9e2e 100644 --- a/src/mainboard/amd/gardenia/BiosCallOuts.c +++ b/src/mainboard/amd/gardenia/BiosCallOuts.c @@ -32,7 +32,6 @@ #include "northbridge/amd/pi/dimmSpd.h" #include "northbridge/amd/pi/agesawrapper.h" #include <PlatformMemoryConfiguration.h> -#include <boardid.h> static AGESA_STATUS Fch_Oem_config(UINT32 Func, UINT32 FchData, VOID *ConfigPtr); @@ -90,13 +89,6 @@ AGESA_STATUS Fch_Oem_config(UINT32 Func, UINT32 FchData, VOID *ConfigPtr) #endif FchParams_env->Usb.Xhci1Enable = FALSE; FchParams_env->Usb.USB30PortInit = 8; /* 8: If USB3 port is unremoveable. */ - - /* sata configuration */ - /* SD configuration */ - /* Rev F has an on-board eMMC, which only supports SD 2.0 */ - if (board_id() == 'F') { - FchParams_env->Sd.SdConfig = SdVer2; - } } printk(BIOS_DEBUG, "Done\n"); |