From: H. Nikolaus Schaller Date: Wed, 3 Feb 2016 19:40:13 +0000 (+0100) Subject: LC15+Pyra: fix reset GPIO for HSIC3 client X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a1de65e1e039e94db44327eea3961ee41cdad54f;p=pandora-u-boot.git LC15+Pyra: fix reset GPIO for HSIC3 client Signed-off-by: H. Nikolaus Schaller --- diff --git a/board/ti/omap5_uevm/evm.c b/board/ti/omap5_uevm/evm.c index 1c131249592..bd93d82238b 100644 --- a/board/ti/omap5_uevm/evm.c +++ b/board/ti/omap5_uevm/evm.c @@ -253,12 +253,15 @@ int ehci_hcd_stop(void) void usb_hub_reset_devices(int port) { +printf("usb_hub_reset_devices(%d)\n", port); +#if defined(CONFIG_OMAP_EHCI_PHY3_RESET_GPIO) /* The LAN9730 needs to be reset after the port power has been set. */ if (port == 3) { gpio_direction_output(CONFIG_OMAP_EHCI_PHY3_RESET_GPIO, 0); udelay(10); gpio_direction_output(CONFIG_OMAP_EHCI_PHY3_RESET_GPIO, 1); } +#endif } #endif diff --git a/include/configs/letux_cortex15.h b/include/configs/letux_cortex15.h index ed611289a65..010b695b990 100644 --- a/include/configs/letux_cortex15.h +++ b/include/configs/letux_cortex15.h @@ -14,6 +14,10 @@ #include +#undef CONFIG_OMAP_EHCI_PHY3_RESET_GPIO /* gpio 79 used differently */ +#undef CONFIG_USB_HOST_ETHER +#undef CONFIG_USB_ETHER_SMSC95XX + /* Letux Cortex 15 has no tca6424 */ #undef CONFIG_TCA642X #undef CONFIG_SYS_I2C_TCA642X_BUS_NUM