summaryrefslogtreecommitdiffstats
path: root/src/mainboard/amd/south_station/BiosCallOuts.c
diff options
context:
space:
mode:
authorJens Rottmann <JRottmann@LiPPERTembedded.de>2013-02-18 18:56:48 +0100
committerPeter Stuge <peter@stuge.se>2013-02-19 19:50:33 +0100
commitf87855ceab7e735221c1b85ed405a0b47e329125 (patch)
tree41f2a2b94aa37fea8a5857129c3268243e624737 /src/mainboard/amd/south_station/BiosCallOuts.c
parent46cb96bb887c88ab0c03dc83ebd6ba107a5d908c (diff)
downloadcoreboot-f87855ceab7e735221c1b85ed405a0b47e329125.tar.gz
coreboot-f87855ceab7e735221c1b85ed405a0b47e329125.tar.bz2
coreboot-f87855ceab7e735221c1b85ed405a0b47e329125.zip
Inagua+children: fix simple copy & paste error in code to reset PCIe slots
Looking at AssertSlotReset, the comments and all other case's it's obvious this is a simple copy & paste error where someone just forgot to change one occurrance of the GPIO nr. Also the AMD Inagua schematics show that GPIO02 is what they really meant. Also forward the fix to boards copied from Inagua (AMD South Station, Union Station, Asrock E350M1). Change-Id: I6b9a3d473245fa27604b2f148a730290277a88ed Signed-off-by: Jens Rottmann <JRottmann@LiPPERTembedded.de> Reviewed-on: http://review.coreboot.org/2445 Tested-by: build bot (Jenkins) Reviewed-by: Peter Stuge <peter@stuge.se>
Diffstat (limited to 'src/mainboard/amd/south_station/BiosCallOuts.c')
-rw-r--r--src/mainboard/amd/south_station/BiosCallOuts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/amd/south_station/BiosCallOuts.c b/src/mainboard/amd/south_station/BiosCallOuts.c
index 3cfd7417557a..0fc7bee2f687 100644
--- a/src/mainboard/amd/south_station/BiosCallOuts.c
+++ b/src/mainboard/amd/south_station/BiosCallOuts.c
@@ -602,7 +602,7 @@ AGESA_STATUS BiosGnbPcieSlotReset (UINT32 Func, UINT32 Data, VOID *ConfigPtr)
Status = AGESA_SUCCESS;
break;
case DeassertSlotReset:
- Data8 = Read64Mem8(GpioMmioAddr+SB_GPIO_REG25);
+ Data8 = Read64Mem8(GpioMmioAddr+SB_GPIO_REG02);
Data8 |= BIT6 ;
Write64Mem8 (GpioMmioAddr+SB_GPIO_REG02, Data8); // MPCIE_RST0, GPIO02
Status = AGESA_SUCCESS;