From: Tim Harvey Date: Wed, 8 Apr 2015 19:54:35 +0000 (-0700) Subject: imx: ventana: add usb_pcisel hwconfig support X-Git-Tag: v2015.07-rc1~63^2~41 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a51de276d809a64b52a99de75d8d265201c5095a;p=platform%2Fkernel%2Fu-boot.git imx: ventana: add usb_pcisel hwconfig support The GW52xx has a MUX that can direct front-panel USB OTG to one of the miniPCIe sockets (for use with a cellular modem for example). Use hwconfig to steer this. Signed-off-by: Tim Harvey --- diff --git a/board/gateworks/gw_ventana/gw_ventana.c b/board/gateworks/gw_ventana/gw_ventana.c index dac79d1..51925d1 100644 --- a/board/gateworks/gw_ventana/gw_ventana.c +++ b/board/gateworks/gw_ventana/gw_ventana.c @@ -1111,7 +1111,9 @@ static void setup_board_gpio(int board) /* USBOTG Select (PCISKT or FrontPanel) */ if (gpio_cfg[board].usb_sel) - gpio_direction_output(gpio_cfg[board].usb_sel, 0); + gpio_direction_output(gpio_cfg[board].usb_sel, + (hwconfig("usb_pcisel")) ? 1 : 0); + /* PCISKT_WDIS# (Wireless disable GPIO to miniPCIe sockets) */ if (gpio_cfg[board].wdis)