From 32cf4a9c937c762bfbcff1144cc0cb0af8ba91e5 Mon Sep 17 00:00:00 2001 From: Peng Fan Date: Mon, 6 Feb 2017 17:40:45 +0800 Subject: MLK-14418-6 imx: mx7dsabresd: switch to DM USB Switch to use DM USB. Enable GPIO regulator to handle vbus supply. Signed-off-by: Peng Fan --- board/freescale/mx7dsabresd/mx7dsabresd.c | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'board') diff --git a/board/freescale/mx7dsabresd/mx7dsabresd.c b/board/freescale/mx7dsabresd/mx7dsabresd.c index 5c70b48..3ee6ac8 100644 --- a/board/freescale/mx7dsabresd/mx7dsabresd.c +++ b/board/freescale/mx7dsabresd/mx7dsabresd.c @@ -22,8 +22,6 @@ #include #include "../common/pfuze.h" #include -#include -#include DECLARE_GLOBAL_DATA_PTR; @@ -61,14 +59,6 @@ static iomux_v3_cfg_t const uart1_pads[] = { MX7D_PAD_UART1_RX_DATA__UART1_DCE_RX | MUX_PAD_CTRL(UART_PAD_CTRL), }; -static iomux_v3_cfg_t const usb_otg1_pads[] = { - MX7D_PAD_GPIO1_IO05__USB_OTG1_PWR | MUX_PAD_CTRL(NO_PAD_CTRL), -}; - -static iomux_v3_cfg_t const usb_otg2_pads[] = { - MX7D_PAD_UART3_CTS_B__USB_OTG2_PWR | MUX_PAD_CTRL(NO_PAD_CTRL), -}; - #ifdef CONFIG_NAND_MXS static iomux_v3_cfg_t const gpmi_pads[] = { MX7D_PAD_SD3_DATA0__NAND_DATA00 | MUX_PAD_CTRL(NAND_PAD_CTRL), @@ -292,11 +282,6 @@ int board_early_init_f(void) { setup_iomux_uart(); - imx_iomux_v3_setup_multiple_pads(usb_otg1_pads, - ARRAY_SIZE(usb_otg1_pads)); - imx_iomux_v3_setup_multiple_pads(usb_otg2_pads, - ARRAY_SIZE(usb_otg2_pads)); - return 0; } @@ -384,13 +369,3 @@ int checkboard(void) return 0; } - -#ifdef CONFIG_USB_EHCI_MX7 -int board_usb_phy_mode(int port) -{ - if (port == 0) - return USB_INIT_DEVICE; - else - return USB_INIT_HOST; -} -#endif -- cgit v1.1