diff mbox

[U-Boot] mx6sxsabresd: Fix PCI reset and power GPIO assignments

Message ID 1412096739-16748-1-git-send-email-fabio.estevam@freescale.com
State Awaiting Upstream
Delegated to: Stefano Babic
Headers show

Commit Message

Fabio Estevam Sept. 30, 2014, 5:05 p.m. UTC
PERST_GPIO and POWER_GPIO are currently swapped.

Fix the GPIO assignments as per the board schematics.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 include/configs/mx6sxsabresd.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Fabio Estevam Oct. 4, 2014, 10:45 p.m. UTC | #1
Hi Stefano,

On Tue, Sep 30, 2014 at 2:05 PM, Fabio Estevam
<fabio.estevam@freescale.com> wrote:
> PERST_GPIO and POWER_GPIO are currently swapped.
>
> Fix the GPIO assignments as per the board schematics.
>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Would it be possible to get this one into 2014.10?

Thanks
Stefano Babic Oct. 6, 2014, 8:43 a.m. UTC | #2
Hi Fabio,

On 05/10/2014 00:45, Fabio Estevam wrote:
> Hi Stefano,
> 
> On Tue, Sep 30, 2014 at 2:05 PM, Fabio Estevam
> <fabio.estevam@freescale.com> wrote:
>> PERST_GPIO and POWER_GPIO are currently swapped.
>>
>> Fix the GPIO assignments as per the board schematics.
>>
>> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> 
> Would it be possible to get this one into 2014.10?

Yes, I will merge it.

Best regards,
Stefano Babic
Stefano Babic Oct. 6, 2014, 3:07 p.m. UTC | #3
On 30/09/2014 19:05, Fabio Estevam wrote:
> PERST_GPIO and POWER_GPIO are currently swapped.
> 
> Fix the GPIO assignments as per the board schematics.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---


Applied to u-boot-imx, thanks !

Best regards,
Stefano Babic
diff mbox

Patch

diff --git a/include/configs/mx6sxsabresd.h b/include/configs/mx6sxsabresd.h
index fd74c69..e02ea18 100644
--- a/include/configs/mx6sxsabresd.h
+++ b/include/configs/mx6sxsabresd.h
@@ -204,8 +204,8 @@ 
 #define CONFIG_PCI_PNP
 #define CONFIG_PCI_SCAN_SHOW
 #define CONFIG_PCIE_IMX
-#define CONFIG_PCIE_IMX_PERST_GPIO	IMX_GPIO_NR(2, 1)
-#define CONFIG_PCIE_IMX_POWER_GPIO	IMX_GPIO_NR(2, 0)
+#define CONFIG_PCIE_IMX_PERST_GPIO	IMX_GPIO_NR(2, 0)
+#define CONFIG_PCIE_IMX_POWER_GPIO	IMX_GPIO_NR(2, 1)
 #endif
 
 /* FLASH and environment organization */