[coreboot] New patch to review for coreboot: b6ae9a2 Inagua: fix simple copy & paste error in code to reset PCIe slots

Jens Rottmann (JRottmann@LiPPERTembedded.de) gerrit at coreboot.org
Mon Feb 18 19:13:43 CET 2013


Jens Rottmann (JRottmann at LiPPERTembedded.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2445

-gerrit

commit b6ae9a213bf1aeb1e18dc07b8f3fca4bebdfff35
Author: Jens Rottmann <JRottmann at LiPPERTembedded.de>
Date:   Mon Feb 18 18:56:48 2013 +0100

    Inagua: 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 Inagua schematics
    show that GPIO02 is what they really meant.
    
    Change-Id: I6b9a3d473245fa27604b2f148a730290277a88ed
    Signed-off-by: Jens Rottmann <JRottmann at LiPPERTembedded.de>
---
 src/mainboard/amd/inagua/BiosCallOuts.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mainboard/amd/inagua/BiosCallOuts.c b/src/mainboard/amd/inagua/BiosCallOuts.c
index 3c38239..88bb1be 100644
--- a/src/mainboard/amd/inagua/BiosCallOuts.c
+++ b/src/mainboard/amd/inagua/BiosCallOuts.c
@@ -594,7 +594,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;



More information about the coreboot mailing list