* [PATCH v2] Visstrim M10: fix gpio handling.
@ 2012-06-01 7:45 Javier Martin
2012-06-05 7:30 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Javier Martin @ 2012-06-01 7:45 UTC (permalink / raw)
To: linux-arm-kernel
Some GPIOs in Visstrim M10 are used without being registered.
This leads to USB and video malfunctions. This patch registers
those GPIOs to solve the issue.
Signed-off-by: Javier Martin <javier.martin@vista-silicon.com>
---
Request all gpios using a single gpio_request_array() call.
---
arch/arm/mach-imx/mach-imx27_visstrim_m10.c | 36 ++++++++++++++++++--------
1 files changed, 25 insertions(+), 11 deletions(-)
diff --git a/arch/arm/mach-imx/mach-imx27_visstrim_m10.c b/arch/arm/mach-imx/mach-imx27_visstrim_m10.c
index e8741f9..f00c0cc 100644
--- a/arch/arm/mach-imx/mach-imx27_visstrim_m10.c
+++ b/arch/arm/mach-imx/mach-imx27_visstrim_m10.c
@@ -116,6 +116,8 @@ static const int visstrim_m10_pins[] __initconst = {
PB23_PF_USB_PWR,
PB24_PF_USB_OC,
/* CSI */
+ TVP5150_RSTN | GPIO_GPIO | GPIO_OUT,
+ TVP5150_PWDN | GPIO_GPIO | GPIO_OUT,
PB10_PF_CSI_D0,
PB11_PF_CSI_D1,
PB12_PF_CSI_D2,
@@ -138,6 +140,24 @@ static const int visstrim_m10_pins[] __initconst = {
EXPBOARD_BIT0 | GPIO_GPIO | GPIO_IN | GPIO_PUEN,
};
+static const struct gpio visstrim_m10_gpios[] __initconst = {
+ {
+ .gpio = TVP5150_RSTN,
+ .flags = GPIOF_DIR_OUT | GPIOF_INIT_HIGH,
+ .label = "tvp5150_rstn",
+ },
+ {
+ .gpio = TVP5150_PWDN,
+ .flags = GPIOF_DIR_OUT | GPIOF_INIT_LOW,
+ .label = "tvp5150_pwdn",
+ },
+ {
+ .gpio = OTG_PHY_CS_GPIO,
+ .flags = GPIOF_DIR_OUT | GPIOF_INIT_LOW,
+ .label = "usbotg_cs",
+ },
+};
+
/* Camera */
static int visstrim_camera_power(struct device *dev, int on)
{
@@ -181,13 +201,6 @@ static void __init visstrim_camera_init(void)
struct platform_device *pdev;
int dma;
- /* Initialize tvp5150 gpios */
- mxc_gpio_mode(TVP5150_RSTN | GPIO_GPIO | GPIO_OUT);
- mxc_gpio_mode(TVP5150_PWDN | GPIO_GPIO | GPIO_OUT);
- gpio_set_value(TVP5150_RSTN, 1);
- gpio_set_value(TVP5150_PWDN, 0);
- ndelay(1);
-
gpio_set_value(TVP5150_PWDN, 1);
ndelay(1);
gpio_set_value(TVP5150_RSTN, 0);
@@ -414,10 +427,6 @@ static struct i2c_board_info visstrim_m10_i2c_devices[] = {
/* USB OTG */
static int otg_phy_init(struct platform_device *pdev)
{
- gpio_set_value(OTG_PHY_CS_GPIO, 0);
-
- mdelay(10);
-
return mx27_initialize_usb_hw(pdev->id, MXC_EHCI_POWER_PINS_ENABLED);
}
@@ -474,6 +483,11 @@ static void __init visstrim_m10_board_init(void)
if (ret)
pr_err("Failed to setup pins (%d)\n", ret);
+ ret = gpio_request_array(visstrim_m10_gpios,
+ ARRAY_SIZE(visstrim_m10_gpios));
+ if (ret)
+ pr_err("Failed to request gpios (%d)\n", ret);
+
imx27_add_imx_ssi(0, &visstrim_m10_ssi_pdata);
imx27_add_imx_uart0(&uart_pdata);
--
1.7.0.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH v2] Visstrim M10: fix gpio handling.
2012-06-01 7:45 [PATCH v2] Visstrim M10: fix gpio handling Javier Martin
@ 2012-06-05 7:30 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2012-06-05 7:30 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, Jun 01, 2012 at 09:45:33AM +0200, Javier Martin wrote:
> Some GPIOs in Visstrim M10 are used without being registered.
> This leads to USB and video malfunctions. This patch registers
> those GPIOs to solve the issue.
>
> Signed-off-by: Javier Martin <javier.martin@vista-silicon.com>
Applied, thanks.
I added a 'ARM i.MX27:' prefix to the subject while applying. Please do
so next time, upstream gets picky about this.
Sascha
> ---
> Request all gpios using a single gpio_request_array() call.
>
> ---
> arch/arm/mach-imx/mach-imx27_visstrim_m10.c | 36 ++++++++++++++++++--------
> 1 files changed, 25 insertions(+), 11 deletions(-)
>
> diff --git a/arch/arm/mach-imx/mach-imx27_visstrim_m10.c b/arch/arm/mach-imx/mach-imx27_visstrim_m10.c
> index e8741f9..f00c0cc 100644
> --- a/arch/arm/mach-imx/mach-imx27_visstrim_m10.c
> +++ b/arch/arm/mach-imx/mach-imx27_visstrim_m10.c
> @@ -116,6 +116,8 @@ static const int visstrim_m10_pins[] __initconst = {
> PB23_PF_USB_PWR,
> PB24_PF_USB_OC,
> /* CSI */
> + TVP5150_RSTN | GPIO_GPIO | GPIO_OUT,
> + TVP5150_PWDN | GPIO_GPIO | GPIO_OUT,
> PB10_PF_CSI_D0,
> PB11_PF_CSI_D1,
> PB12_PF_CSI_D2,
> @@ -138,6 +140,24 @@ static const int visstrim_m10_pins[] __initconst = {
> EXPBOARD_BIT0 | GPIO_GPIO | GPIO_IN | GPIO_PUEN,
> };
>
> +static const struct gpio visstrim_m10_gpios[] __initconst = {
> + {
> + .gpio = TVP5150_RSTN,
> + .flags = GPIOF_DIR_OUT | GPIOF_INIT_HIGH,
> + .label = "tvp5150_rstn",
> + },
> + {
> + .gpio = TVP5150_PWDN,
> + .flags = GPIOF_DIR_OUT | GPIOF_INIT_LOW,
> + .label = "tvp5150_pwdn",
> + },
> + {
> + .gpio = OTG_PHY_CS_GPIO,
> + .flags = GPIOF_DIR_OUT | GPIOF_INIT_LOW,
> + .label = "usbotg_cs",
> + },
> +};
> +
> /* Camera */
> static int visstrim_camera_power(struct device *dev, int on)
> {
> @@ -181,13 +201,6 @@ static void __init visstrim_camera_init(void)
> struct platform_device *pdev;
> int dma;
>
> - /* Initialize tvp5150 gpios */
> - mxc_gpio_mode(TVP5150_RSTN | GPIO_GPIO | GPIO_OUT);
> - mxc_gpio_mode(TVP5150_PWDN | GPIO_GPIO | GPIO_OUT);
> - gpio_set_value(TVP5150_RSTN, 1);
> - gpio_set_value(TVP5150_PWDN, 0);
> - ndelay(1);
> -
> gpio_set_value(TVP5150_PWDN, 1);
> ndelay(1);
> gpio_set_value(TVP5150_RSTN, 0);
> @@ -414,10 +427,6 @@ static struct i2c_board_info visstrim_m10_i2c_devices[] = {
> /* USB OTG */
> static int otg_phy_init(struct platform_device *pdev)
> {
> - gpio_set_value(OTG_PHY_CS_GPIO, 0);
> -
> - mdelay(10);
> -
> return mx27_initialize_usb_hw(pdev->id, MXC_EHCI_POWER_PINS_ENABLED);
> }
>
> @@ -474,6 +483,11 @@ static void __init visstrim_m10_board_init(void)
> if (ret)
> pr_err("Failed to setup pins (%d)\n", ret);
>
> + ret = gpio_request_array(visstrim_m10_gpios,
> + ARRAY_SIZE(visstrim_m10_gpios));
> + if (ret)
> + pr_err("Failed to request gpios (%d)\n", ret);
> +
> imx27_add_imx_ssi(0, &visstrim_m10_ssi_pdata);
> imx27_add_imx_uart0(&uart_pdata);
>
> --
> 1.7.0.4
>
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-06-05 7:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-01 7:45 [PATCH v2] Visstrim M10: fix gpio handling Javier Martin
2012-06-05 7:30 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).