diff mbox series

[U-Boot,V2] pci: imx: request gpio before use

Message ID 1514888849-608-1-git-send-email-peng.fan@nxp.com
State Accepted
Commit 67b71df277196f1649c366e52545f5bfccf56e03
Delegated to: Stefano Babic
Headers show
Series [U-Boot,V2] pci: imx: request gpio before use | expand

Commit Message

Peng Fan Jan. 2, 2018, 10:27 a.m. UTC
Before use GPIO, we need to request gpio first. Free gpio after use.

Signed-off-by: Peng Fan <peng.fan@nxp.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@nxp.com>
---

V2:
 Typo fix.
 Free gpio after use.

 drivers/pci/pcie_imx.c | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Stefano Babic Jan. 3, 2018, 1:24 p.m. UTC | #1
On 02/01/2018 11:27, Peng Fan wrote:
> Before use GPIO, we need to request gpio first. Free gpio after use.
> 
> Signed-off-by: Peng Fan <peng.fan@nxp.com>
> Cc: Stefano Babic <sbabic@denx.de>
> Cc: Fabio Estevam <fabio.estevam@nxp.com>
> ---
> 
> V2:
>  Typo fix.
>  Free gpio after use.
> 
>  drivers/pci/pcie_imx.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/pci/pcie_imx.c b/drivers/pci/pcie_imx.c
> index 2900c8d9d1..90a34063b0 100644
> --- a/drivers/pci/pcie_imx.c
> +++ b/drivers/pci/pcie_imx.c
> @@ -517,10 +517,12 @@ static int imx6_pcie_init_phy(void)
>  __weak int imx6_pcie_toggle_power(void)
>  {
>  #ifdef CONFIG_PCIE_IMX_POWER_GPIO
> +	gpio_request(CONFIG_PCIE_IMX_POWER_GPIO, "pcie_power");
>  	gpio_direction_output(CONFIG_PCIE_IMX_POWER_GPIO, 0);
>  	mdelay(20);
>  	gpio_set_value(CONFIG_PCIE_IMX_POWER_GPIO, 1);
>  	mdelay(20);
> +	gpio_free(CONFIG_PCIE_IMX_POWER_GPIO);
>  #endif
>  	return 0;
>  }
> @@ -556,10 +558,12 @@ __weak int imx6_pcie_toggle_reset(void)
>  	 * state due to being previously used in U-Boot.
>  	 */
>  #ifdef CONFIG_PCIE_IMX_PERST_GPIO
> +	gpio_request(CONFIG_PCIE_IMX_PERST_GPIO, "pcie_reset");
>  	gpio_direction_output(CONFIG_PCIE_IMX_PERST_GPIO, 0);
>  	mdelay(20);
>  	gpio_set_value(CONFIG_PCIE_IMX_PERST_GPIO, 1);
>  	mdelay(20);
> +	gpio_free(CONFIG_PCIE_IMX_PERST_GPIO);
>  #else
>  	puts("WARNING: Make sure the PCIe #PERST line is connected!\n");
>  #endif
> 

Reviewed-by: Stefano Babic <ssbabic@denx.de>

Best regards,
Stefano Babic
diff mbox series

Patch

diff --git a/drivers/pci/pcie_imx.c b/drivers/pci/pcie_imx.c
index 2900c8d9d1..90a34063b0 100644
--- a/drivers/pci/pcie_imx.c
+++ b/drivers/pci/pcie_imx.c
@@ -517,10 +517,12 @@  static int imx6_pcie_init_phy(void)
 __weak int imx6_pcie_toggle_power(void)
 {
 #ifdef CONFIG_PCIE_IMX_POWER_GPIO
+	gpio_request(CONFIG_PCIE_IMX_POWER_GPIO, "pcie_power");
 	gpio_direction_output(CONFIG_PCIE_IMX_POWER_GPIO, 0);
 	mdelay(20);
 	gpio_set_value(CONFIG_PCIE_IMX_POWER_GPIO, 1);
 	mdelay(20);
+	gpio_free(CONFIG_PCIE_IMX_POWER_GPIO);
 #endif
 	return 0;
 }
@@ -556,10 +558,12 @@  __weak int imx6_pcie_toggle_reset(void)
 	 * state due to being previously used in U-Boot.
 	 */
 #ifdef CONFIG_PCIE_IMX_PERST_GPIO
+	gpio_request(CONFIG_PCIE_IMX_PERST_GPIO, "pcie_reset");
 	gpio_direction_output(CONFIG_PCIE_IMX_PERST_GPIO, 0);
 	mdelay(20);
 	gpio_set_value(CONFIG_PCIE_IMX_PERST_GPIO, 1);
 	mdelay(20);
+	gpio_free(CONFIG_PCIE_IMX_PERST_GPIO);
 #else
 	puts("WARNING: Make sure the PCIe #PERST line is connected!\n");
 #endif