Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de> |
| 4 | * Copyright (C) 2010 Freescale Semiconductor, Inc. |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 8 | #include <log.h> |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 9 | #include <usb.h> |
| 10 | #include <errno.h> |
Mateusz Kulikowski | 8c25c25 | 2016-01-23 11:54:32 +0100 | [diff] [blame] | 11 | #include <wait_bit.h> |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 12 | #include <linux/compiler.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 13 | #include <linux/delay.h> |
Mateusz Kulikowski | e162c6b | 2016-03-31 23:12:23 +0200 | [diff] [blame] | 14 | #include <usb/ehci-ci.h> |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 15 | #include <asm/io.h> |
| 16 | #include <asm/arch/imx-regs.h> |
| 17 | #include <asm/arch/clock.h> |
Stefano Babic | 552a848 | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 18 | #include <asm/mach-imx/iomux-v3.h> |
| 19 | #include <asm/mach-imx/sys_proto.h> |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 20 | #include <dm.h> |
Simon Glass | c62db35 | 2017-05-31 19:47:48 -0600 | [diff] [blame] | 21 | #include <asm/mach-types.h> |
Peng Fan | fcf9f9f | 2016-12-22 17:06:43 +0800 | [diff] [blame] | 22 | #include <power/regulator.h> |
Adam Ford | 69535b3 | 2019-04-03 08:41:56 -0500 | [diff] [blame] | 23 | #include <linux/usb/otg.h> |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 24 | |
| 25 | #include "ehci.h" |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 26 | |
Peng Fan | cccbddc | 2016-12-22 17:06:42 +0800 | [diff] [blame] | 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 29 | #define USB_OTGREGS_OFFSET 0x000 |
| 30 | #define USB_H1REGS_OFFSET 0x200 |
| 31 | #define USB_H2REGS_OFFSET 0x400 |
| 32 | #define USB_H3REGS_OFFSET 0x600 |
| 33 | #define USB_OTHERREGS_OFFSET 0x800 |
| 34 | |
| 35 | #define USB_H1_CTRL_OFFSET 0x04 |
| 36 | |
| 37 | #define USBPHY_CTRL 0x00000030 |
| 38 | #define USBPHY_CTRL_SET 0x00000034 |
| 39 | #define USBPHY_CTRL_CLR 0x00000038 |
| 40 | #define USBPHY_CTRL_TOG 0x0000003c |
| 41 | |
| 42 | #define USBPHY_PWD 0x00000000 |
| 43 | #define USBPHY_CTRL_SFTRST 0x80000000 |
| 44 | #define USBPHY_CTRL_CLKGATE 0x40000000 |
| 45 | #define USBPHY_CTRL_ENUTMILEVEL3 0x00008000 |
| 46 | #define USBPHY_CTRL_ENUTMILEVEL2 0x00004000 |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 47 | #define USBPHY_CTRL_OTG_ID 0x08000000 |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 48 | |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 49 | #define ANADIG_USB2_CHRG_DETECT_EN_B 0x00100000 |
| 50 | #define ANADIG_USB2_CHRG_DETECT_CHK_CHRG_B 0x00080000 |
| 51 | |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 52 | #define ANADIG_USB2_PLL_480_CTRL_BYPASS 0x00010000 |
| 53 | #define ANADIG_USB2_PLL_480_CTRL_ENABLE 0x00002000 |
| 54 | #define ANADIG_USB2_PLL_480_CTRL_POWER 0x00001000 |
| 55 | #define ANADIG_USB2_PLL_480_CTRL_EN_USB_CLKS 0x00000040 |
| 56 | |
Adrian Alonso | 35554fc | 2015-08-06 15:43:17 -0500 | [diff] [blame] | 57 | #define USBNC_OFFSET 0x200 |
Peng Fan | cccbddc | 2016-12-22 17:06:42 +0800 | [diff] [blame] | 58 | #define USBNC_PHY_STATUS_OFFSET 0x23C |
Adrian Alonso | 35554fc | 2015-08-06 15:43:17 -0500 | [diff] [blame] | 59 | #define USBNC_PHYSTATUS_ID_DIG (1 << 4) /* otg_id status */ |
| 60 | #define USBNC_PHYCFG2_ACAENB (1 << 4) /* otg_id detection enable */ |
Stefan Agner | 9a88180 | 2016-07-13 00:25:37 -0700 | [diff] [blame] | 61 | #define UCTRL_PWR_POL (1 << 9) /* OTG Polarity of Power Pin */ |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 62 | #define UCTRL_OVER_CUR_POL (1 << 8) /* OTG Polarity of Overcurrent */ |
| 63 | #define UCTRL_OVER_CUR_DIS (1 << 7) /* Disable OTG Overcurrent Detection */ |
| 64 | |
| 65 | /* USBCMD */ |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 66 | #define UCMD_RUN_STOP (1 << 0) /* controller run/stop */ |
| 67 | #define UCMD_RESET (1 << 1) /* controller reset */ |
| 68 | |
Ye Li | 235f5e1 | 2019-10-24 10:29:32 -0300 | [diff] [blame] | 69 | #if defined(CONFIG_MX6) || defined(CONFIG_MX7ULP) |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 70 | static const unsigned phy_bases[] = { |
| 71 | USB_PHY0_BASE_ADDR, |
Ye Li | 235f5e1 | 2019-10-24 10:29:32 -0300 | [diff] [blame] | 72 | #if defined(USB_PHY1_BASE_ADDR) |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 73 | USB_PHY1_BASE_ADDR, |
Ye Li | 235f5e1 | 2019-10-24 10:29:32 -0300 | [diff] [blame] | 74 | #endif |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 75 | }; |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 76 | |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 77 | static void usb_internal_phy_clock_gate(int index, int on) |
| 78 | { |
| 79 | void __iomem *phy_reg; |
| 80 | |
| 81 | if (index >= ARRAY_SIZE(phy_bases)) |
| 82 | return; |
| 83 | |
| 84 | phy_reg = (void __iomem *)phy_bases[index]; |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 85 | phy_reg += on ? USBPHY_CTRL_CLR : USBPHY_CTRL_SET; |
Adrian Alonso | e38ff30 | 2015-08-06 15:43:15 -0500 | [diff] [blame] | 86 | writel(USBPHY_CTRL_CLKGATE, phy_reg); |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 87 | } |
| 88 | |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 89 | static void usb_power_config(int index) |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 90 | { |
Ye Li | 235f5e1 | 2019-10-24 10:29:32 -0300 | [diff] [blame] | 91 | #if defined(CONFIG_MX7ULP) |
| 92 | struct usbphy_regs __iomem *usbphy = |
| 93 | (struct usbphy_regs __iomem *)USB_PHY0_BASE_ADDR; |
| 94 | |
| 95 | if (index > 0) |
| 96 | return; |
| 97 | |
| 98 | writel(ANADIG_USB2_CHRG_DETECT_EN_B | |
| 99 | ANADIG_USB2_CHRG_DETECT_CHK_CHRG_B, |
| 100 | &usbphy->usb1_chrg_detect); |
| 101 | |
| 102 | scg_enable_usb_pll(true); |
| 103 | |
| 104 | #else |
Wolfgang Grandegger | 3f29d96 | 2012-05-02 04:36:39 +0000 | [diff] [blame] | 105 | struct anatop_regs __iomem *anatop = |
| 106 | (struct anatop_regs __iomem *)ANATOP_BASE_ADDR; |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 107 | void __iomem *chrg_detect; |
| 108 | void __iomem *pll_480_ctrl_clr; |
| 109 | void __iomem *pll_480_ctrl_set; |
| 110 | |
| 111 | switch (index) { |
| 112 | case 0: |
| 113 | chrg_detect = &anatop->usb1_chrg_detect; |
| 114 | pll_480_ctrl_clr = &anatop->usb1_pll_480_ctrl_clr; |
| 115 | pll_480_ctrl_set = &anatop->usb1_pll_480_ctrl_set; |
| 116 | break; |
| 117 | case 1: |
| 118 | chrg_detect = &anatop->usb2_chrg_detect; |
| 119 | pll_480_ctrl_clr = &anatop->usb2_pll_480_ctrl_clr; |
| 120 | pll_480_ctrl_set = &anatop->usb2_pll_480_ctrl_set; |
| 121 | break; |
| 122 | default: |
| 123 | return; |
| 124 | } |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 125 | /* |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 126 | * Some phy and power's special controls |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 127 | * 1. The external charger detector needs to be disabled |
| 128 | * or the signal at DP will be poor |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 129 | * 2. The PLL's power and output to usb |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 130 | * is totally controlled by IC, so the Software only needs |
| 131 | * to enable them at initializtion. |
| 132 | */ |
Adrian Alonso | e38ff30 | 2015-08-06 15:43:15 -0500 | [diff] [blame] | 133 | writel(ANADIG_USB2_CHRG_DETECT_EN_B | |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 134 | ANADIG_USB2_CHRG_DETECT_CHK_CHRG_B, |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 135 | chrg_detect); |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 136 | |
Adrian Alonso | e38ff30 | 2015-08-06 15:43:15 -0500 | [diff] [blame] | 137 | writel(ANADIG_USB2_PLL_480_CTRL_BYPASS, |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 138 | pll_480_ctrl_clr); |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 139 | |
Adrian Alonso | e38ff30 | 2015-08-06 15:43:15 -0500 | [diff] [blame] | 140 | writel(ANADIG_USB2_PLL_480_CTRL_ENABLE | |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 141 | ANADIG_USB2_PLL_480_CTRL_POWER | |
| 142 | ANADIG_USB2_PLL_480_CTRL_EN_USB_CLKS, |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 143 | pll_480_ctrl_set); |
Ye Li | 235f5e1 | 2019-10-24 10:29:32 -0300 | [diff] [blame] | 144 | |
| 145 | #endif |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 146 | } |
| 147 | |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 148 | /* Return 0 : host node, <>0 : device mode */ |
| 149 | static int usb_phy_enable(int index, struct usb_ehci *ehci) |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 150 | { |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 151 | void __iomem *phy_reg; |
| 152 | void __iomem *phy_ctrl; |
| 153 | void __iomem *usb_cmd; |
Adrian Alonso | f0c89d5 | 2015-08-06 15:46:03 -0500 | [diff] [blame] | 154 | int ret; |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 155 | |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 156 | if (index >= ARRAY_SIZE(phy_bases)) |
| 157 | return 0; |
| 158 | |
| 159 | phy_reg = (void __iomem *)phy_bases[index]; |
| 160 | phy_ctrl = (void __iomem *)(phy_reg + USBPHY_CTRL); |
| 161 | usb_cmd = (void __iomem *)&ehci->usbcmd; |
| 162 | |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 163 | /* Stop then Reset */ |
Adrian Alonso | e38ff30 | 2015-08-06 15:43:15 -0500 | [diff] [blame] | 164 | clrbits_le32(usb_cmd, UCMD_RUN_STOP); |
Álvaro Fernández Rojas | 4826350 | 2018-01-23 17:14:55 +0100 | [diff] [blame] | 165 | ret = wait_for_bit_le32(usb_cmd, UCMD_RUN_STOP, false, 10000, false); |
Adrian Alonso | f0c89d5 | 2015-08-06 15:46:03 -0500 | [diff] [blame] | 166 | if (ret) |
| 167 | return ret; |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 168 | |
Adrian Alonso | e38ff30 | 2015-08-06 15:43:15 -0500 | [diff] [blame] | 169 | setbits_le32(usb_cmd, UCMD_RESET); |
Álvaro Fernández Rojas | 4826350 | 2018-01-23 17:14:55 +0100 | [diff] [blame] | 170 | ret = wait_for_bit_le32(usb_cmd, UCMD_RESET, false, 10000, false); |
Adrian Alonso | f0c89d5 | 2015-08-06 15:46:03 -0500 | [diff] [blame] | 171 | if (ret) |
| 172 | return ret; |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 173 | |
| 174 | /* Reset USBPHY module */ |
Adrian Alonso | e38ff30 | 2015-08-06 15:43:15 -0500 | [diff] [blame] | 175 | setbits_le32(phy_ctrl, USBPHY_CTRL_SFTRST); |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 176 | udelay(10); |
| 177 | |
| 178 | /* Remove CLKGATE and SFTRST */ |
Adrian Alonso | e38ff30 | 2015-08-06 15:43:15 -0500 | [diff] [blame] | 179 | clrbits_le32(phy_ctrl, USBPHY_CTRL_CLKGATE | USBPHY_CTRL_SFTRST); |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 180 | udelay(10); |
| 181 | |
| 182 | /* Power up the PHY */ |
Adrian Alonso | e38ff30 | 2015-08-06 15:43:15 -0500 | [diff] [blame] | 183 | writel(0, phy_reg + USBPHY_PWD); |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 184 | /* enable FS/LS device */ |
Adrian Alonso | e38ff30 | 2015-08-06 15:43:15 -0500 | [diff] [blame] | 185 | setbits_le32(phy_ctrl, USBPHY_CTRL_ENUTMILEVEL2 | |
| 186 | USBPHY_CTRL_ENUTMILEVEL3); |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 187 | |
Peng Fan | 229dbba | 2014-11-10 08:50:39 +0800 | [diff] [blame] | 188 | return 0; |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 189 | } |
| 190 | |
Peng Fan | 229dbba | 2014-11-10 08:50:39 +0800 | [diff] [blame] | 191 | int usb_phy_mode(int port) |
| 192 | { |
| 193 | void __iomem *phy_reg; |
| 194 | void __iomem *phy_ctrl; |
| 195 | u32 val; |
| 196 | |
| 197 | phy_reg = (void __iomem *)phy_bases[port]; |
| 198 | phy_ctrl = (void __iomem *)(phy_reg + USBPHY_CTRL); |
| 199 | |
Adrian Alonso | e38ff30 | 2015-08-06 15:43:15 -0500 | [diff] [blame] | 200 | val = readl(phy_ctrl); |
Peng Fan | 229dbba | 2014-11-10 08:50:39 +0800 | [diff] [blame] | 201 | |
| 202 | if (val & USBPHY_CTRL_OTG_ID) |
| 203 | return USB_INIT_DEVICE; |
| 204 | else |
| 205 | return USB_INIT_HOST; |
| 206 | } |
| 207 | |
Ye Li | 235f5e1 | 2019-10-24 10:29:32 -0300 | [diff] [blame] | 208 | #if defined(CONFIG_MX7ULP) |
| 209 | struct usbnc_regs { |
| 210 | u32 ctrl1; |
| 211 | u32 ctrl2; |
| 212 | u32 reserve0[2]; |
| 213 | u32 hsic_ctrl; |
| 214 | }; |
| 215 | #else |
Adrian Alonso | 35554fc | 2015-08-06 15:43:17 -0500 | [diff] [blame] | 216 | /* Base address for this IP block is 0x02184800 */ |
| 217 | struct usbnc_regs { |
| 218 | u32 ctrl[4]; /* otg/host1-3 */ |
| 219 | u32 uh2_hsic_ctrl; |
| 220 | u32 uh3_hsic_ctrl; |
| 221 | u32 otg_phy_ctrl_0; |
| 222 | u32 uh1_phy_ctrl_0; |
| 223 | }; |
Ye Li | 235f5e1 | 2019-10-24 10:29:32 -0300 | [diff] [blame] | 224 | #endif |
| 225 | |
Adrian Alonso | 35554fc | 2015-08-06 15:43:17 -0500 | [diff] [blame] | 226 | #elif defined(CONFIG_MX7) |
| 227 | struct usbnc_regs { |
| 228 | u32 ctrl1; |
| 229 | u32 ctrl2; |
| 230 | u32 reserve1[10]; |
| 231 | u32 phy_cfg1; |
| 232 | u32 phy_cfg2; |
Peng Fan | 429ff44 | 2016-06-20 09:43:08 +0800 | [diff] [blame] | 233 | u32 reserve2; |
Adrian Alonso | 35554fc | 2015-08-06 15:43:17 -0500 | [diff] [blame] | 234 | u32 phy_status; |
Peng Fan | 429ff44 | 2016-06-20 09:43:08 +0800 | [diff] [blame] | 235 | u32 reserve3[4]; |
Adrian Alonso | 35554fc | 2015-08-06 15:43:17 -0500 | [diff] [blame] | 236 | u32 adp_cfg1; |
| 237 | u32 adp_cfg2; |
| 238 | u32 adp_status; |
| 239 | }; |
| 240 | |
| 241 | static void usb_power_config(int index) |
| 242 | { |
| 243 | struct usbnc_regs *usbnc = (struct usbnc_regs *)(USB_BASE_ADDR + |
| 244 | (0x10000 * index) + USBNC_OFFSET); |
| 245 | void __iomem *phy_cfg2 = (void __iomem *)(&usbnc->phy_cfg2); |
| 246 | |
Peng Fan | 57de41e | 2016-06-20 09:43:09 +0800 | [diff] [blame] | 247 | /* |
| 248 | * Clear the ACAENB to enable usb_otg_id detection, |
| 249 | * otherwise it is the ACA detection enabled. |
| 250 | */ |
| 251 | clrbits_le32(phy_cfg2, USBNC_PHYCFG2_ACAENB); |
Adrian Alonso | 35554fc | 2015-08-06 15:43:17 -0500 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | int usb_phy_mode(int port) |
| 255 | { |
| 256 | struct usbnc_regs *usbnc = (struct usbnc_regs *)(USB_BASE_ADDR + |
| 257 | (0x10000 * port) + USBNC_OFFSET); |
| 258 | void __iomem *status = (void __iomem *)(&usbnc->phy_status); |
| 259 | u32 val; |
| 260 | |
| 261 | val = readl(status); |
| 262 | |
| 263 | if (val & USBNC_PHYSTATUS_ID_DIG) |
| 264 | return USB_INIT_DEVICE; |
| 265 | else |
| 266 | return USB_INIT_HOST; |
| 267 | } |
| 268 | #endif |
| 269 | |
| 270 | static void usb_oc_config(int index) |
| 271 | { |
| 272 | #if defined(CONFIG_MX6) |
| 273 | struct usbnc_regs *usbnc = (struct usbnc_regs *)(USB_BASE_ADDR + |
| 274 | USB_OTHERREGS_OFFSET); |
| 275 | void __iomem *ctrl = (void __iomem *)(&usbnc->ctrl[index]); |
Ye Li | 235f5e1 | 2019-10-24 10:29:32 -0300 | [diff] [blame] | 276 | #elif defined(CONFIG_MX7) || defined(CONFIG_MX7ULP) |
Adrian Alonso | 35554fc | 2015-08-06 15:43:17 -0500 | [diff] [blame] | 277 | struct usbnc_regs *usbnc = (struct usbnc_regs *)(USB_BASE_ADDR + |
| 278 | (0x10000 * index) + USBNC_OFFSET); |
| 279 | void __iomem *ctrl = (void __iomem *)(&usbnc->ctrl1); |
| 280 | #endif |
| 281 | |
| 282 | #if CONFIG_MACH_TYPE == MACH_TYPE_MX6Q_ARM2 |
| 283 | /* mx6qarm2 seems to required a different setting*/ |
| 284 | clrbits_le32(ctrl, UCTRL_OVER_CUR_POL); |
| 285 | #else |
| 286 | setbits_le32(ctrl, UCTRL_OVER_CUR_POL); |
| 287 | #endif |
| 288 | |
Adrian Alonso | 35554fc | 2015-08-06 15:43:17 -0500 | [diff] [blame] | 289 | setbits_le32(ctrl, UCTRL_OVER_CUR_DIS); |
Ye Li | 235f5e1 | 2019-10-24 10:29:32 -0300 | [diff] [blame] | 290 | |
| 291 | /* Set power polarity to high active */ |
| 292 | #ifdef CONFIG_MXC_USB_OTG_HACTIVE |
| 293 | setbits_le32(ctrl, UCTRL_PWR_POL); |
| 294 | #else |
| 295 | clrbits_le32(ctrl, UCTRL_PWR_POL); |
| 296 | #endif |
Adrian Alonso | 35554fc | 2015-08-06 15:43:17 -0500 | [diff] [blame] | 297 | } |
| 298 | |
Adrian Alonso | 74f0610 | 2015-08-06 15:43:16 -0500 | [diff] [blame] | 299 | /** |
Stefan Agner | 79d867c | 2016-05-05 16:59:12 -0700 | [diff] [blame] | 300 | * board_usb_phy_mode - override usb phy mode |
Adrian Alonso | 74f0610 | 2015-08-06 15:43:16 -0500 | [diff] [blame] | 301 | * @port: usb host/otg port |
| 302 | * |
| 303 | * Target board specific, override usb_phy_mode. |
| 304 | * When usb-otg is used as usb host port, iomux pad usb_otg_id can be |
| 305 | * left disconnected in this case usb_phy_mode will not be able to identify |
| 306 | * the phy mode that usb port is used. |
| 307 | * Machine file overrides board_usb_phy_mode. |
| 308 | * |
| 309 | * Return: USB_INIT_DEVICE or USB_INIT_HOST |
| 310 | */ |
Peng Fan | 229dbba | 2014-11-10 08:50:39 +0800 | [diff] [blame] | 311 | int __weak board_usb_phy_mode(int port) |
| 312 | { |
| 313 | return usb_phy_mode(port); |
| 314 | } |
| 315 | |
Adrian Alonso | 74f0610 | 2015-08-06 15:43:16 -0500 | [diff] [blame] | 316 | /** |
| 317 | * board_ehci_hcd_init - set usb vbus voltage |
| 318 | * @port: usb otg port |
| 319 | * |
| 320 | * Target board specific, setup iomux pad to setup supply vbus voltage |
| 321 | * for usb otg port. Machine board file overrides board_ehci_hcd_init |
| 322 | * |
| 323 | * Return: 0 Success |
| 324 | */ |
Benoît Thébaudeau | f22e4fa | 2012-11-13 09:58:35 +0000 | [diff] [blame] | 325 | int __weak board_ehci_hcd_init(int port) |
| 326 | { |
| 327 | return 0; |
| 328 | } |
| 329 | |
Adrian Alonso | 74f0610 | 2015-08-06 15:43:16 -0500 | [diff] [blame] | 330 | /** |
| 331 | * board_ehci_power - enables/disables usb vbus voltage |
| 332 | * @port: usb otg port |
| 333 | * @on: on/off vbus voltage |
| 334 | * |
| 335 | * Enables/disables supply vbus voltage for usb otg port. |
| 336 | * Machine board file overrides board_ehci_power |
| 337 | * |
| 338 | * Return: 0 Success |
| 339 | */ |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 340 | int __weak board_ehci_power(int port, int on) |
| 341 | { |
| 342 | return 0; |
| 343 | } |
| 344 | |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 345 | int ehci_mx6_common_init(struct usb_ehci *ehci, int index) |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 346 | { |
Stefan Agner | 79d867c | 2016-05-05 16:59:12 -0700 | [diff] [blame] | 347 | int ret; |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 348 | |
| 349 | enable_usboh3_clk(1); |
| 350 | mdelay(1); |
| 351 | |
| 352 | /* Do board specific initialization */ |
Stefan Agner | 79d867c | 2016-05-05 16:59:12 -0700 | [diff] [blame] | 353 | ret = board_ehci_hcd_init(index); |
| 354 | if (ret) |
| 355 | return ret; |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 356 | |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 357 | usb_power_config(index); |
| 358 | usb_oc_config(index); |
Adrian Alonso | 35554fc | 2015-08-06 15:43:17 -0500 | [diff] [blame] | 359 | |
Ye Li | 235f5e1 | 2019-10-24 10:29:32 -0300 | [diff] [blame] | 360 | #if defined(CONFIG_MX6) || defined(CONFIG_MX7ULP) |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 361 | usb_internal_phy_clock_gate(index, 1); |
Peng Fan | 229dbba | 2014-11-10 08:50:39 +0800 | [diff] [blame] | 362 | usb_phy_enable(index, ehci); |
Adrian Alonso | 35554fc | 2015-08-06 15:43:17 -0500 | [diff] [blame] | 363 | #endif |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 364 | |
| 365 | return 0; |
| 366 | } |
| 367 | |
Sven Schwermer | fd09c20 | 2018-11-21 08:43:56 +0100 | [diff] [blame] | 368 | #if !CONFIG_IS_ENABLED(DM_USB) |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 369 | int ehci_hcd_init(int index, enum usb_init_type init, |
| 370 | struct ehci_hccr **hccr, struct ehci_hcor **hcor) |
| 371 | { |
| 372 | enum usb_init_type type; |
| 373 | #if defined(CONFIG_MX6) |
| 374 | u32 controller_spacing = 0x200; |
Ye Li | 235f5e1 | 2019-10-24 10:29:32 -0300 | [diff] [blame] | 375 | #elif defined(CONFIG_MX7) || defined(CONFIG_MX7ULP) |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 376 | u32 controller_spacing = 0x10000; |
| 377 | #endif |
| 378 | struct usb_ehci *ehci = (struct usb_ehci *)(USB_BASE_ADDR + |
| 379 | (controller_spacing * index)); |
| 380 | int ret; |
| 381 | |
| 382 | if (index > 3) |
| 383 | return -EINVAL; |
| 384 | |
Peng Fan | 0bd3d91 | 2020-05-01 22:08:36 +0800 | [diff] [blame] | 385 | if (CONFIG_IS_ENABLED(IMX_MODULE_FUSE)) { |
| 386 | if (usb_fused((ulong)ehci)) { |
| 387 | printf("SoC fuse indicates USB@0x%lx is unavailable.\n", |
| 388 | (ulong)ehci); |
| 389 | return -ENODEV; |
| 390 | } |
| 391 | } |
| 392 | |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 393 | ret = ehci_mx6_common_init(ehci, index); |
| 394 | if (ret) |
| 395 | return ret; |
| 396 | |
Peng Fan | 229dbba | 2014-11-10 08:50:39 +0800 | [diff] [blame] | 397 | type = board_usb_phy_mode(index); |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 398 | |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 399 | if (hccr && hcor) { |
| 400 | *hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength); |
| 401 | *hcor = (struct ehci_hcor *)((uint32_t)*hccr + |
| 402 | HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase))); |
| 403 | } |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 404 | |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 405 | if ((type == init) || (type == USB_INIT_DEVICE)) |
| 406 | board_ehci_power(index, (type == USB_INIT_DEVICE) ? 0 : 1); |
| 407 | if (type != init) |
| 408 | return -ENODEV; |
| 409 | if (type == USB_INIT_DEVICE) |
| 410 | return 0; |
Adrian Alonso | 35554fc | 2015-08-06 15:43:17 -0500 | [diff] [blame] | 411 | |
Troy Kisky | d1a5286 | 2013-10-10 15:27:59 -0700 | [diff] [blame] | 412 | setbits_le32(&ehci->usbmode, CM_HOST); |
Adrian Alonso | e38ff30 | 2015-08-06 15:43:15 -0500 | [diff] [blame] | 413 | writel(CONFIG_MXC_USB_PORTSC, &ehci->portsc); |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 414 | setbits_le32(&ehci->portsc, USB_EN); |
| 415 | |
| 416 | mdelay(10); |
| 417 | |
| 418 | return 0; |
| 419 | } |
| 420 | |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 421 | int ehci_hcd_stop(int index) |
Wolfgang Grandegger | 3f46752 | 2012-02-08 22:33:25 +0000 | [diff] [blame] | 422 | { |
| 423 | return 0; |
| 424 | } |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 425 | #else |
| 426 | struct ehci_mx6_priv_data { |
| 427 | struct ehci_ctrl ctrl; |
| 428 | struct usb_ehci *ehci; |
Peng Fan | fcf9f9f | 2016-12-22 17:06:43 +0800 | [diff] [blame] | 429 | struct udevice *vbus_supply; |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 430 | enum usb_init_type init_type; |
| 431 | int portnr; |
| 432 | }; |
| 433 | |
| 434 | static int mx6_init_after_reset(struct ehci_ctrl *dev) |
| 435 | { |
| 436 | struct ehci_mx6_priv_data *priv = dev->priv; |
| 437 | enum usb_init_type type = priv->init_type; |
| 438 | struct usb_ehci *ehci = priv->ehci; |
| 439 | int ret; |
| 440 | |
| 441 | ret = ehci_mx6_common_init(priv->ehci, priv->portnr); |
| 442 | if (ret) |
| 443 | return ret; |
| 444 | |
Abel Vesa | 921208e | 2019-02-01 16:40:08 +0000 | [diff] [blame] | 445 | #if CONFIG_IS_ENABLED(DM_REGULATOR) |
Peng Fan | fcf9f9f | 2016-12-22 17:06:43 +0800 | [diff] [blame] | 446 | if (priv->vbus_supply) { |
| 447 | ret = regulator_set_enable(priv->vbus_supply, |
| 448 | (type == USB_INIT_DEVICE) ? |
| 449 | false : true); |
Marek Vasut | 10bcafb | 2020-05-21 23:32:23 +0200 | [diff] [blame] | 450 | if (ret && ret != -ENOSYS) { |
Marek Vasut | 73021d1 | 2020-05-21 23:34:06 +0200 | [diff] [blame] | 451 | printf("Error enabling VBUS supply (ret=%i)\n", ret); |
Peng Fan | fcf9f9f | 2016-12-22 17:06:43 +0800 | [diff] [blame] | 452 | return ret; |
| 453 | } |
| 454 | } |
Abel Vesa | 921208e | 2019-02-01 16:40:08 +0000 | [diff] [blame] | 455 | #endif |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 456 | |
| 457 | if (type == USB_INIT_DEVICE) |
| 458 | return 0; |
| 459 | |
| 460 | setbits_le32(&ehci->usbmode, CM_HOST); |
| 461 | writel(CONFIG_MXC_USB_PORTSC, &ehci->portsc); |
| 462 | setbits_le32(&ehci->portsc, USB_EN); |
| 463 | |
| 464 | mdelay(10); |
| 465 | |
| 466 | return 0; |
| 467 | } |
| 468 | |
| 469 | static const struct ehci_ops mx6_ehci_ops = { |
| 470 | .init_after_reset = mx6_init_after_reset |
| 471 | }; |
| 472 | |
Peng Fan | cccbddc | 2016-12-22 17:06:42 +0800 | [diff] [blame] | 473 | static int ehci_usb_phy_mode(struct udevice *dev) |
| 474 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 475 | struct usb_plat *plat = dev_get_plat(dev); |
Masahiro Yamada | 8613c8d | 2020-07-17 14:36:46 +0900 | [diff] [blame] | 476 | void *__iomem addr = dev_read_addr_ptr(dev); |
Peng Fan | cccbddc | 2016-12-22 17:06:42 +0800 | [diff] [blame] | 477 | void *__iomem phy_ctrl, *__iomem phy_status; |
| 478 | const void *blob = gd->fdt_blob; |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 479 | int offset = dev_of_offset(dev), phy_off; |
Peng Fan | cccbddc | 2016-12-22 17:06:42 +0800 | [diff] [blame] | 480 | u32 val; |
| 481 | |
| 482 | /* |
| 483 | * About fsl,usbphy, Refer to |
| 484 | * Documentation/devicetree/bindings/usb/ci-hdrc-usb2.txt. |
| 485 | */ |
Ye Li | 235f5e1 | 2019-10-24 10:29:32 -0300 | [diff] [blame] | 486 | if (is_mx6() || is_mx7ulp()) { |
Peng Fan | cccbddc | 2016-12-22 17:06:42 +0800 | [diff] [blame] | 487 | phy_off = fdtdec_lookup_phandle(blob, |
| 488 | offset, |
| 489 | "fsl,usbphy"); |
| 490 | if (phy_off < 0) |
| 491 | return -EINVAL; |
| 492 | |
| 493 | addr = (void __iomem *)fdtdec_get_addr(blob, phy_off, |
| 494 | "reg"); |
| 495 | if ((fdt_addr_t)addr == FDT_ADDR_T_NONE) |
| 496 | return -EINVAL; |
| 497 | |
| 498 | phy_ctrl = (void __iomem *)(addr + USBPHY_CTRL); |
| 499 | val = readl(phy_ctrl); |
| 500 | |
| 501 | if (val & USBPHY_CTRL_OTG_ID) |
| 502 | plat->init_type = USB_INIT_DEVICE; |
| 503 | else |
| 504 | plat->init_type = USB_INIT_HOST; |
| 505 | } else if (is_mx7()) { |
| 506 | phy_status = (void __iomem *)(addr + |
| 507 | USBNC_PHY_STATUS_OFFSET); |
| 508 | val = readl(phy_status); |
| 509 | |
| 510 | if (val & USBNC_PHYSTATUS_ID_DIG) |
| 511 | plat->init_type = USB_INIT_DEVICE; |
| 512 | else |
| 513 | plat->init_type = USB_INIT_HOST; |
| 514 | } else { |
| 515 | return -EINVAL; |
| 516 | } |
| 517 | |
| 518 | return 0; |
| 519 | } |
| 520 | |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 521 | static int ehci_usb_of_to_plat(struct udevice *dev) |
Peng Fan | cccbddc | 2016-12-22 17:06:42 +0800 | [diff] [blame] | 522 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 523 | struct usb_plat *plat = dev_get_plat(dev); |
Adam Ford | 69535b3 | 2019-04-03 08:41:56 -0500 | [diff] [blame] | 524 | enum usb_dr_mode dr_mode; |
Peng Fan | cccbddc | 2016-12-22 17:06:42 +0800 | [diff] [blame] | 525 | |
Simon Glass | f10643c | 2020-12-19 10:40:14 -0700 | [diff] [blame] | 526 | dr_mode = usb_get_dr_mode(dev_ofnode(dev)); |
Peng Fan | cccbddc | 2016-12-22 17:06:42 +0800 | [diff] [blame] | 527 | |
Adam Ford | 69535b3 | 2019-04-03 08:41:56 -0500 | [diff] [blame] | 528 | switch (dr_mode) { |
| 529 | case USB_DR_MODE_HOST: |
| 530 | plat->init_type = USB_INIT_HOST; |
| 531 | break; |
| 532 | case USB_DR_MODE_PERIPHERAL: |
| 533 | plat->init_type = USB_INIT_DEVICE; |
| 534 | break; |
| 535 | case USB_DR_MODE_OTG: |
| 536 | case USB_DR_MODE_UNKNOWN: |
| 537 | return ehci_usb_phy_mode(dev); |
| 538 | }; |
Peng Fan | cccbddc | 2016-12-22 17:06:42 +0800 | [diff] [blame] | 539 | |
Adam Ford | 69535b3 | 2019-04-03 08:41:56 -0500 | [diff] [blame] | 540 | return 0; |
Peng Fan | cccbddc | 2016-12-22 17:06:42 +0800 | [diff] [blame] | 541 | } |
| 542 | |
Marek Vasut | 501547c | 2019-06-24 19:05:47 +0200 | [diff] [blame] | 543 | static int ehci_usb_bind(struct udevice *dev) |
| 544 | { |
| 545 | /* |
| 546 | * TODO: |
| 547 | * This driver is only partly converted to DT probing and still uses |
| 548 | * a tremendous amount of hard-coded addresses. To make things worse, |
| 549 | * the driver depends on specific sequential indexing of controllers, |
| 550 | * from which it derives offsets in the PHY and ANATOP register sets. |
| 551 | * |
| 552 | * Here we attempt to calculate these indexes from DT information as |
Igor Opaniuk | 1198a10 | 2019-10-10 16:09:35 +0300 | [diff] [blame] | 553 | * well as we can. The USB controllers on all existing iMX6 SoCs |
| 554 | * are placed next to each other, at addresses incremented by 0x200, |
| 555 | * and iMX7 their addresses are shifted by 0x10000. |
| 556 | * Thus, the index is derived from the multiple of 0x200 (0x10000 for |
| 557 | * iMX7) offset from the first controller address. |
Marek Vasut | 501547c | 2019-06-24 19:05:47 +0200 | [diff] [blame] | 558 | * |
| 559 | * However, to complete conversion of this driver to DT probing, the |
| 560 | * following has to be done: |
| 561 | * - DM clock framework support for iMX must be implemented |
| 562 | * - usb_power_config() has to be converted to clock framework |
| 563 | * -> Thus, the ad-hoc "index" variable goes away. |
| 564 | * - USB PHY handling has to be factored out into separate driver |
| 565 | * -> Thus, the ad-hoc "index" variable goes away from the PHY |
| 566 | * code, the PHY driver must parse it's address from DT. This |
| 567 | * USB driver must find the PHY driver via DT phandle. |
| 568 | * -> usb_power_config() shall be moved to PHY driver |
| 569 | * With these changes in place, the ad-hoc indexing goes away and |
| 570 | * the driver is fully converted to DT probing. |
| 571 | */ |
Marek Vasut | 501547c | 2019-06-24 19:05:47 +0200 | [diff] [blame] | 572 | |
Simon Glass | 4de51cc | 2020-12-16 21:20:20 -0700 | [diff] [blame] | 573 | /* |
| 574 | * FIXME: This cannot work with the new sequence numbers. |
| 575 | * Please complete the DM conversion. |
| 576 | * |
| 577 | * u32 controller_spacing = is_mx7() ? 0x10000 : 0x200; |
| 578 | * fdt_addr_t addr = devfdt_get_addr_index(dev, 0); |
| 579 | * |
| 580 | * dev->req_seq = (addr - USB_BASE_ADDR) / controller_spacing; |
| 581 | */ |
Marek Vasut | 501547c | 2019-06-24 19:05:47 +0200 | [diff] [blame] | 582 | |
| 583 | return 0; |
| 584 | } |
| 585 | |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 586 | static int ehci_usb_probe(struct udevice *dev) |
| 587 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 588 | struct usb_plat *plat = dev_get_plat(dev); |
Masahiro Yamada | 8613c8d | 2020-07-17 14:36:46 +0900 | [diff] [blame] | 589 | struct usb_ehci *ehci = dev_read_addr_ptr(dev); |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 590 | struct ehci_mx6_priv_data *priv = dev_get_priv(dev); |
Peng Fan | fcf9f9f | 2016-12-22 17:06:43 +0800 | [diff] [blame] | 591 | enum usb_init_type type = plat->init_type; |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 592 | struct ehci_hccr *hccr; |
| 593 | struct ehci_hcor *hcor; |
| 594 | int ret; |
| 595 | |
Peng Fan | 0bd3d91 | 2020-05-01 22:08:36 +0800 | [diff] [blame] | 596 | if (CONFIG_IS_ENABLED(IMX_MODULE_FUSE)) { |
| 597 | if (usb_fused((ulong)ehci)) { |
| 598 | printf("SoC fuse indicates USB@0x%lx is unavailable.\n", |
| 599 | (ulong)ehci); |
| 600 | return -ENODEV; |
| 601 | } |
| 602 | } |
| 603 | |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 604 | priv->ehci = ehci; |
Simon Glass | 8b85dfc | 2020-12-16 21:20:07 -0700 | [diff] [blame] | 605 | priv->portnr = dev_seq(dev); |
Peng Fan | fcf9f9f | 2016-12-22 17:06:43 +0800 | [diff] [blame] | 606 | priv->init_type = type; |
| 607 | |
Abel Vesa | 921208e | 2019-02-01 16:40:08 +0000 | [diff] [blame] | 608 | #if CONFIG_IS_ENABLED(DM_REGULATOR) |
Peng Fan | fcf9f9f | 2016-12-22 17:06:43 +0800 | [diff] [blame] | 609 | ret = device_get_supply_regulator(dev, "vbus-supply", |
| 610 | &priv->vbus_supply); |
| 611 | if (ret) |
| 612 | debug("%s: No vbus supply\n", dev->name); |
Abel Vesa | 921208e | 2019-02-01 16:40:08 +0000 | [diff] [blame] | 613 | #endif |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 614 | ret = ehci_mx6_common_init(ehci, priv->portnr); |
| 615 | if (ret) |
| 616 | return ret; |
| 617 | |
Abel Vesa | 921208e | 2019-02-01 16:40:08 +0000 | [diff] [blame] | 618 | #if CONFIG_IS_ENABLED(DM_REGULATOR) |
Peng Fan | fcf9f9f | 2016-12-22 17:06:43 +0800 | [diff] [blame] | 619 | if (priv->vbus_supply) { |
| 620 | ret = regulator_set_enable(priv->vbus_supply, |
| 621 | (type == USB_INIT_DEVICE) ? |
| 622 | false : true); |
Marek Vasut | 10bcafb | 2020-05-21 23:32:23 +0200 | [diff] [blame] | 623 | if (ret && ret != -ENOSYS) { |
Marek Vasut | 73021d1 | 2020-05-21 23:34:06 +0200 | [diff] [blame] | 624 | printf("Error enabling VBUS supply (ret=%i)\n", ret); |
Peng Fan | fcf9f9f | 2016-12-22 17:06:43 +0800 | [diff] [blame] | 625 | return ret; |
| 626 | } |
| 627 | } |
Abel Vesa | 921208e | 2019-02-01 16:40:08 +0000 | [diff] [blame] | 628 | #endif |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 629 | |
| 630 | if (priv->init_type == USB_INIT_HOST) { |
| 631 | setbits_le32(&ehci->usbmode, CM_HOST); |
| 632 | writel(CONFIG_MXC_USB_PORTSC, &ehci->portsc); |
| 633 | setbits_le32(&ehci->portsc, USB_EN); |
| 634 | } |
| 635 | |
| 636 | mdelay(10); |
| 637 | |
| 638 | hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength); |
| 639 | hcor = (struct ehci_hcor *)((uint32_t)hccr + |
| 640 | HC_LENGTH(ehci_readl(&(hccr)->cr_capbase))); |
| 641 | |
| 642 | return ehci_register(dev, hccr, hcor, &mx6_ehci_ops, 0, priv->init_type); |
| 643 | } |
| 644 | |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 645 | static const struct udevice_id mx6_usb_ids[] = { |
| 646 | { .compatible = "fsl,imx27-usb" }, |
| 647 | { } |
| 648 | }; |
| 649 | |
| 650 | U_BOOT_DRIVER(usb_mx6) = { |
| 651 | .name = "ehci_mx6", |
| 652 | .id = UCLASS_USB, |
| 653 | .of_match = mx6_usb_ids, |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 654 | .of_to_plat = ehci_usb_of_to_plat, |
Marek Vasut | 501547c | 2019-06-24 19:05:47 +0200 | [diff] [blame] | 655 | .bind = ehci_usb_bind, |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 656 | .probe = ehci_usb_probe, |
Masahiro Yamada | 4052734 | 2016-09-06 22:17:34 +0900 | [diff] [blame] | 657 | .remove = ehci_deregister, |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 658 | .ops = &ehci_usb_ops, |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 659 | .plat_auto = sizeof(struct usb_plat), |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 660 | .priv_auto = sizeof(struct ehci_mx6_priv_data), |
Peng Fan | bb42fb4 | 2016-06-17 14:19:27 +0800 | [diff] [blame] | 661 | .flags = DM_FLAG_ALLOC_PRIV_DMA, |
| 662 | }; |
| 663 | #endif |