Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de> |
| 4 | * Copyright (C) 2010 Freescale Semiconductor, Inc. |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame^] | 8 | #include <log.h> |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 9 | #include <usb.h> |
| 10 | #include <errno.h> |
| 11 | #include <linux/compiler.h> |
Mateusz Kulikowski | 3add69e | 2016-03-31 23:12:23 +0200 | [diff] [blame] | 12 | #include <usb/ehci-ci.h> |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 13 | #include <asm/io.h> |
| 14 | #include <asm/arch/imx-regs.h> |
| 15 | #include <asm/arch/clock.h> |
Lukasz Majewski | dbc70f8 | 2019-04-04 12:26:52 +0200 | [diff] [blame] | 16 | #include <dm.h> |
| 17 | #include <power/regulator.h> |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 18 | |
| 19 | #include "ehci.h" |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 20 | |
| 21 | #define MX5_USBOTHER_REGS_OFFSET 0x800 |
| 22 | |
| 23 | |
Benoît Thébaudeau | cb10972 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 24 | #define MXC_OTG_OFFSET 0 |
| 25 | #define MXC_H1_OFFSET 0x200 |
| 26 | #define MXC_H2_OFFSET 0x400 |
Benoît Thébaudeau | 284a459 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 27 | #define MXC_H3_OFFSET 0x600 |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 28 | |
| 29 | #define MXC_USBCTRL_OFFSET 0 |
| 30 | #define MXC_USB_PHY_CTR_FUNC_OFFSET 0x8 |
| 31 | #define MXC_USB_PHY_CTR_FUNC2_OFFSET 0xc |
| 32 | #define MXC_USB_CTRL_1_OFFSET 0x10 |
| 33 | #define MXC_USBH2CTRL_OFFSET 0x14 |
Benoît Thébaudeau | 284a459 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 34 | #define MXC_USBH3CTRL_OFFSET 0x18 |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 35 | |
| 36 | /* USB_CTRL */ |
Benoît Thébaudeau | cb10972 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 37 | /* OTG wakeup intr enable */ |
| 38 | #define MXC_OTG_UCTRL_OWIE_BIT (1 << 27) |
| 39 | /* OTG power mask */ |
| 40 | #define MXC_OTG_UCTRL_OPM_BIT (1 << 24) |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 41 | /* OTG power pin polarity */ |
| 42 | #define MXC_OTG_UCTRL_O_PWR_POL_BIT (1 << 24) |
Benoît Thébaudeau | cb10972 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 43 | /* Host1 ULPI interrupt enable */ |
| 44 | #define MXC_H1_UCTRL_H1UIE_BIT (1 << 12) |
| 45 | /* HOST1 wakeup intr enable */ |
| 46 | #define MXC_H1_UCTRL_H1WIE_BIT (1 << 11) |
| 47 | /* HOST1 power mask */ |
| 48 | #define MXC_H1_UCTRL_H1PM_BIT (1 << 8) |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 49 | /* HOST1 power pin polarity */ |
| 50 | #define MXC_H1_UCTRL_H1_PWR_POL_BIT (1 << 8) |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 51 | |
| 52 | /* USB_PHY_CTRL_FUNC */ |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 53 | /* OTG Polarity of Overcurrent */ |
| 54 | #define MXC_OTG_PHYCTRL_OC_POL_BIT (1 << 9) |
Benoît Thébaudeau | cb10972 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 55 | /* OTG Disable Overcurrent Event */ |
| 56 | #define MXC_OTG_PHYCTRL_OC_DIS_BIT (1 << 8) |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 57 | /* UH1 Polarity of Overcurrent */ |
| 58 | #define MXC_H1_OC_POL_BIT (1 << 6) |
Benoît Thébaudeau | cb10972 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 59 | /* UH1 Disable Overcurrent Event */ |
| 60 | #define MXC_H1_OC_DIS_BIT (1 << 5) |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 61 | /* OTG Power Pin Polarity */ |
| 62 | #define MXC_OTG_PHYCTRL_PWR_POL_BIT (1 << 3) |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 63 | |
| 64 | /* USBH2CTRL */ |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 65 | #define MXC_H2_UCTRL_H2_OC_POL_BIT (1 << 31) |
Benoît Thébaudeau | 284a459 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 66 | #define MXC_H2_UCTRL_H2_OC_DIS_BIT (1 << 30) |
Benoît Thébaudeau | cb10972 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 67 | #define MXC_H2_UCTRL_H2UIE_BIT (1 << 8) |
| 68 | #define MXC_H2_UCTRL_H2WIE_BIT (1 << 7) |
| 69 | #define MXC_H2_UCTRL_H2PM_BIT (1 << 4) |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 70 | #define MXC_H2_UCTRL_H2_PWR_POL_BIT (1 << 4) |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 71 | |
Benoît Thébaudeau | 284a459 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 72 | /* USBH3CTRL */ |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 73 | #define MXC_H3_UCTRL_H3_OC_POL_BIT (1 << 31) |
Benoît Thébaudeau | 284a459 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 74 | #define MXC_H3_UCTRL_H3_OC_DIS_BIT (1 << 30) |
| 75 | #define MXC_H3_UCTRL_H3UIE_BIT (1 << 8) |
| 76 | #define MXC_H3_UCTRL_H3WIE_BIT (1 << 7) |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 77 | #define MXC_H3_UCTRL_H3_PWR_POL_BIT (1 << 4) |
Benoît Thébaudeau | 284a459 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 78 | |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 79 | /* USB_CTRL_1 */ |
Benoît Thébaudeau | cb10972 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 80 | #define MXC_USB_CTRL_UH1_EXT_CLK_EN (1 << 25) |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 81 | |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 82 | int mxc_set_usbcontrol(int port, unsigned int flags) |
| 83 | { |
| 84 | unsigned int v; |
| 85 | void __iomem *usb_base = (void __iomem *)OTG_BASE_ADDR; |
| 86 | void __iomem *usbother_base; |
| 87 | int ret = 0; |
| 88 | |
| 89 | usbother_base = usb_base + MX5_USBOTHER_REGS_OFFSET; |
| 90 | |
| 91 | switch (port) { |
| 92 | case 0: /* OTG port */ |
| 93 | if (flags & MXC_EHCI_INTERNAL_PHY) { |
| 94 | v = __raw_readl(usbother_base + |
| 95 | MXC_USB_PHY_CTR_FUNC_OFFSET); |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 96 | if (flags & MXC_EHCI_OC_PIN_ACTIVE_LOW) |
| 97 | v |= MXC_OTG_PHYCTRL_OC_POL_BIT; |
| 98 | else |
| 99 | v &= ~MXC_OTG_PHYCTRL_OC_POL_BIT; |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 100 | if (flags & MXC_EHCI_POWER_PINS_ENABLED) |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 101 | /* OC/USBPWR is used */ |
| 102 | v &= ~MXC_OTG_PHYCTRL_OC_DIS_BIT; |
Benoît Thébaudeau | 2b2a415 | 2012-11-13 09:56:30 +0000 | [diff] [blame] | 103 | else |
| 104 | /* OC/USBPWR is not used */ |
| 105 | v |= MXC_OTG_PHYCTRL_OC_DIS_BIT; |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 106 | #ifdef CONFIG_MX51 |
| 107 | if (flags & MXC_EHCI_PWR_PIN_ACTIVE_HIGH) |
| 108 | v |= MXC_OTG_PHYCTRL_PWR_POL_BIT; |
| 109 | else |
| 110 | v &= ~MXC_OTG_PHYCTRL_PWR_POL_BIT; |
| 111 | #endif |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 112 | __raw_writel(v, usbother_base + |
| 113 | MXC_USB_PHY_CTR_FUNC_OFFSET); |
| 114 | |
| 115 | v = __raw_readl(usbother_base + MXC_USBCTRL_OFFSET); |
Benoît Thébaudeau | 46a53ab | 2012-11-13 09:56:59 +0000 | [diff] [blame] | 116 | #ifdef CONFIG_MX51 |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 117 | if (flags & MXC_EHCI_POWER_PINS_ENABLED) |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 118 | v &= ~MXC_OTG_UCTRL_OPM_BIT; |
Benoît Thébaudeau | b7647f3 | 2012-11-13 09:56:44 +0000 | [diff] [blame] | 119 | else |
| 120 | v |= MXC_OTG_UCTRL_OPM_BIT; |
Benoît Thébaudeau | 46a53ab | 2012-11-13 09:56:59 +0000 | [diff] [blame] | 121 | #endif |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 122 | #ifdef CONFIG_MX53 |
| 123 | if (flags & MXC_EHCI_PWR_PIN_ACTIVE_HIGH) |
| 124 | v |= MXC_OTG_UCTRL_O_PWR_POL_BIT; |
| 125 | else |
| 126 | v &= ~MXC_OTG_UCTRL_O_PWR_POL_BIT; |
| 127 | #endif |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 128 | __raw_writel(v, usbother_base + MXC_USBCTRL_OFFSET); |
| 129 | } |
| 130 | break; |
Benoît Thébaudeau | cb10972 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 131 | case 1: /* Host 1 ULPI */ |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 132 | #ifdef CONFIG_MX51 |
| 133 | /* The clock for the USBH1 ULPI port will come externally |
| 134 | from the PHY. */ |
| 135 | v = __raw_readl(usbother_base + MXC_USB_CTRL_1_OFFSET); |
| 136 | __raw_writel(v | MXC_USB_CTRL_UH1_EXT_CLK_EN, usbother_base + |
| 137 | MXC_USB_CTRL_1_OFFSET); |
| 138 | #endif |
| 139 | |
| 140 | v = __raw_readl(usbother_base + MXC_USBCTRL_OFFSET); |
Benoît Thébaudeau | 46a53ab | 2012-11-13 09:56:59 +0000 | [diff] [blame] | 141 | #ifdef CONFIG_MX51 |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 142 | if (flags & MXC_EHCI_POWER_PINS_ENABLED) |
Benoît Thébaudeau | cb10972 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 143 | v &= ~MXC_H1_UCTRL_H1PM_BIT; /* H1 power mask unused */ |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 144 | else |
Benoît Thébaudeau | cb10972 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 145 | v |= MXC_H1_UCTRL_H1PM_BIT; /* H1 power mask used */ |
Benoît Thébaudeau | 46a53ab | 2012-11-13 09:56:59 +0000 | [diff] [blame] | 146 | #endif |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 147 | #ifdef CONFIG_MX53 |
| 148 | if (flags & MXC_EHCI_PWR_PIN_ACTIVE_HIGH) |
| 149 | v |= MXC_H1_UCTRL_H1_PWR_POL_BIT; |
| 150 | else |
| 151 | v &= ~MXC_H1_UCTRL_H1_PWR_POL_BIT; |
| 152 | #endif |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 153 | __raw_writel(v, usbother_base + MXC_USBCTRL_OFFSET); |
| 154 | |
| 155 | v = __raw_readl(usbother_base + MXC_USB_PHY_CTR_FUNC_OFFSET); |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 156 | if (flags & MXC_EHCI_OC_PIN_ACTIVE_LOW) |
| 157 | v |= MXC_H1_OC_POL_BIT; |
| 158 | else |
| 159 | v &= ~MXC_H1_OC_POL_BIT; |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 160 | if (flags & MXC_EHCI_POWER_PINS_ENABLED) |
| 161 | v &= ~MXC_H1_OC_DIS_BIT; /* OC is used */ |
| 162 | else |
| 163 | v |= MXC_H1_OC_DIS_BIT; /* OC is not used */ |
| 164 | __raw_writel(v, usbother_base + MXC_USB_PHY_CTR_FUNC_OFFSET); |
| 165 | |
| 166 | break; |
| 167 | case 2: /* Host 2 ULPI */ |
| 168 | v = __raw_readl(usbother_base + MXC_USBH2CTRL_OFFSET); |
Benoît Thébaudeau | 46a53ab | 2012-11-13 09:56:59 +0000 | [diff] [blame] | 169 | #ifdef CONFIG_MX51 |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 170 | if (flags & MXC_EHCI_POWER_PINS_ENABLED) |
Benoît Thébaudeau | cb10972 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 171 | v &= ~MXC_H2_UCTRL_H2PM_BIT; /* H2 power mask unused */ |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 172 | else |
Benoît Thébaudeau | cb10972 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 173 | v |= MXC_H2_UCTRL_H2PM_BIT; /* H2 power mask used */ |
Benoît Thébaudeau | 46a53ab | 2012-11-13 09:56:59 +0000 | [diff] [blame] | 174 | #endif |
Benoît Thébaudeau | 284a459 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 175 | #ifdef CONFIG_MX53 |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 176 | if (flags & MXC_EHCI_OC_PIN_ACTIVE_LOW) |
| 177 | v |= MXC_H2_UCTRL_H2_OC_POL_BIT; |
| 178 | else |
| 179 | v &= ~MXC_H2_UCTRL_H2_OC_POL_BIT; |
Benoît Thébaudeau | 284a459 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 180 | if (flags & MXC_EHCI_POWER_PINS_ENABLED) |
| 181 | v &= ~MXC_H2_UCTRL_H2_OC_DIS_BIT; /* OC is used */ |
| 182 | else |
| 183 | v |= MXC_H2_UCTRL_H2_OC_DIS_BIT; /* OC is not used */ |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 184 | if (flags & MXC_EHCI_PWR_PIN_ACTIVE_HIGH) |
| 185 | v |= MXC_H2_UCTRL_H2_PWR_POL_BIT; |
| 186 | else |
| 187 | v &= ~MXC_H2_UCTRL_H2_PWR_POL_BIT; |
Benoît Thébaudeau | 284a459 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 188 | #endif |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 189 | __raw_writel(v, usbother_base + MXC_USBH2CTRL_OFFSET); |
| 190 | break; |
Benoît Thébaudeau | 284a459 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 191 | #ifdef CONFIG_MX53 |
| 192 | case 3: /* Host 3 ULPI */ |
| 193 | v = __raw_readl(usbother_base + MXC_USBH3CTRL_OFFSET); |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 194 | if (flags & MXC_EHCI_OC_PIN_ACTIVE_LOW) |
| 195 | v |= MXC_H3_UCTRL_H3_OC_POL_BIT; |
| 196 | else |
| 197 | v &= ~MXC_H3_UCTRL_H3_OC_POL_BIT; |
Benoît Thébaudeau | 284a459 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 198 | if (flags & MXC_EHCI_POWER_PINS_ENABLED) |
| 199 | v &= ~MXC_H3_UCTRL_H3_OC_DIS_BIT; /* OC is used */ |
| 200 | else |
| 201 | v |= MXC_H3_UCTRL_H3_OC_DIS_BIT; /* OC is not used */ |
Benoît Thébaudeau | 17971a9 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 202 | if (flags & MXC_EHCI_PWR_PIN_ACTIVE_HIGH) |
| 203 | v |= MXC_H3_UCTRL_H3_PWR_POL_BIT; |
| 204 | else |
| 205 | v &= ~MXC_H3_UCTRL_H3_PWR_POL_BIT; |
Benoît Thébaudeau | 284a459 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 206 | __raw_writel(v, usbother_base + MXC_USBH3CTRL_OFFSET); |
| 207 | break; |
| 208 | #endif |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | return ret; |
| 212 | } |
| 213 | |
Benoît Thébaudeau | 98023c1 | 2012-11-13 09:58:35 +0000 | [diff] [blame] | 214 | int __weak board_ehci_hcd_init(int port) |
Marek Vasut | de09b79 | 2011-11-24 05:14:00 +0100 | [diff] [blame] | 215 | { |
Benoît Thébaudeau | 98023c1 | 2012-11-13 09:58:35 +0000 | [diff] [blame] | 216 | return 0; |
Marek Vasut | de09b79 | 2011-11-24 05:14:00 +0100 | [diff] [blame] | 217 | } |
| 218 | |
Benoît Thébaudeau | 98023c1 | 2012-11-13 09:58:35 +0000 | [diff] [blame] | 219 | void __weak board_ehci_hcd_postinit(struct usb_ehci *ehci, int port) |
| 220 | { |
| 221 | } |
Marek Vasut | de09b79 | 2011-11-24 05:14:00 +0100 | [diff] [blame] | 222 | |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 223 | __weak void mx5_ehci_powerup_fixup(struct ehci_ctrl *ctrl, uint32_t *status_reg, |
| 224 | uint32_t *reg) |
| 225 | { |
| 226 | mdelay(50); |
| 227 | } |
| 228 | |
Lukasz Majewski | dbc70f8 | 2019-04-04 12:26:52 +0200 | [diff] [blame] | 229 | #if !CONFIG_IS_ENABLED(DM_USB) |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 230 | static const struct ehci_ops mx5_ehci_ops = { |
| 231 | .powerup_fixup = mx5_ehci_powerup_fixup, |
| 232 | }; |
| 233 | |
Troy Kisky | 7d6bbb9 | 2013-10-10 15:27:57 -0700 | [diff] [blame] | 234 | int ehci_hcd_init(int index, enum usb_init_type init, |
| 235 | struct ehci_hccr **hccr, struct ehci_hcor **hcor) |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 236 | { |
| 237 | struct usb_ehci *ehci; |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 238 | |
Simon Glass | dc9f3ed | 2015-03-25 12:22:27 -0600 | [diff] [blame] | 239 | /* The only user for this is efikamx-usb */ |
| 240 | ehci_set_controller_priv(index, NULL, &mx5_ehci_ops); |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 241 | set_usboh3_clk(); |
Fabio Estevam | 800cb81 | 2013-07-26 13:54:28 -0300 | [diff] [blame] | 242 | enable_usboh3_clk(true); |
Benoît Thébaudeau | f2f0038 | 2012-09-28 07:09:03 +0000 | [diff] [blame] | 243 | set_usb_phy_clk(); |
Fabio Estevam | 800cb81 | 2013-07-26 13:54:28 -0300 | [diff] [blame] | 244 | enable_usb_phy1_clk(true); |
| 245 | enable_usb_phy2_clk(true); |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 246 | mdelay(1); |
| 247 | |
Marek Vasut | de09b79 | 2011-11-24 05:14:00 +0100 | [diff] [blame] | 248 | /* Do board specific initialization */ |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 249 | board_ehci_hcd_init(CONFIG_MXC_USB_PORT); |
| 250 | |
| 251 | ehci = (struct usb_ehci *)(OTG_BASE_ADDR + |
| 252 | (0x200 * CONFIG_MXC_USB_PORT)); |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 253 | *hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength); |
| 254 | *hcor = (struct ehci_hcor *)((uint32_t)*hccr + |
| 255 | HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase))); |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 256 | setbits_le32(&ehci->usbmode, CM_HOST); |
| 257 | |
| 258 | __raw_writel(CONFIG_MXC_USB_PORTSC, &ehci->portsc); |
| 259 | setbits_le32(&ehci->portsc, USB_EN); |
| 260 | |
| 261 | mxc_set_usbcontrol(CONFIG_MXC_USB_PORT, CONFIG_MXC_USB_FLAGS); |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 262 | mdelay(10); |
| 263 | |
Marek Vasut | de09b79 | 2011-11-24 05:14:00 +0100 | [diff] [blame] | 264 | /* Do board specific post-initialization */ |
| 265 | board_ehci_hcd_postinit(ehci, CONFIG_MXC_USB_PORT); |
| 266 | |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 267 | return 0; |
| 268 | } |
| 269 | |
Lucas Stach | 3494a4c | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 270 | int ehci_hcd_stop(int index) |
Wolfgang Grandegger | d17f2d2 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 271 | { |
| 272 | return 0; |
| 273 | } |
Lukasz Majewski | dbc70f8 | 2019-04-04 12:26:52 +0200 | [diff] [blame] | 274 | #else /* CONFIG_IS_ENABLED(DM_USB) */ |
| 275 | struct ehci_mx5_priv_data { |
| 276 | struct ehci_ctrl ctrl; |
| 277 | struct usb_ehci *ehci; |
| 278 | struct udevice *vbus_supply; |
| 279 | enum usb_init_type init_type; |
| 280 | int portnr; |
| 281 | }; |
| 282 | |
| 283 | static const struct ehci_ops mx5_ehci_ops = { |
| 284 | .powerup_fixup = mx5_ehci_powerup_fixup, |
| 285 | }; |
| 286 | |
| 287 | static int ehci_usb_ofdata_to_platdata(struct udevice *dev) |
| 288 | { |
| 289 | struct usb_platdata *plat = dev_get_platdata(dev); |
| 290 | const char *mode; |
| 291 | |
| 292 | mode = fdt_getprop(gd->fdt_blob, dev_of_offset(dev), "dr_mode", NULL); |
| 293 | if (mode) { |
| 294 | if (strcmp(mode, "peripheral") == 0) |
| 295 | plat->init_type = USB_INIT_DEVICE; |
| 296 | else if (strcmp(mode, "host") == 0) |
| 297 | plat->init_type = USB_INIT_HOST; |
| 298 | else |
| 299 | return -EINVAL; |
| 300 | } |
| 301 | |
| 302 | return 0; |
| 303 | } |
| 304 | |
| 305 | static int ehci_usb_probe(struct udevice *dev) |
| 306 | { |
| 307 | struct usb_platdata *plat = dev_get_platdata(dev); |
| 308 | struct usb_ehci *ehci = (struct usb_ehci *)devfdt_get_addr(dev); |
| 309 | struct ehci_mx5_priv_data *priv = dev_get_priv(dev); |
| 310 | enum usb_init_type type = plat->init_type; |
| 311 | struct ehci_hccr *hccr; |
| 312 | struct ehci_hcor *hcor; |
| 313 | int ret; |
| 314 | |
| 315 | set_usboh3_clk(); |
| 316 | enable_usboh3_clk(true); |
| 317 | set_usb_phy_clk(); |
| 318 | enable_usb_phy1_clk(true); |
| 319 | enable_usb_phy2_clk(true); |
| 320 | mdelay(1); |
| 321 | |
| 322 | priv->ehci = ehci; |
| 323 | priv->portnr = dev->seq; |
| 324 | priv->init_type = type; |
| 325 | |
| 326 | ret = device_get_supply_regulator(dev, "vbus-supply", |
| 327 | &priv->vbus_supply); |
| 328 | if (ret) |
| 329 | debug("%s: No vbus supply\n", dev->name); |
| 330 | |
| 331 | if (!ret && priv->vbus_supply) { |
| 332 | ret = regulator_set_enable(priv->vbus_supply, |
| 333 | (type == USB_INIT_DEVICE) ? |
| 334 | false : true); |
| 335 | if (ret) { |
| 336 | puts("Error enabling VBUS supply\n"); |
| 337 | return ret; |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength); |
| 342 | hcor = (struct ehci_hcor *)((uint32_t)hccr + |
| 343 | HC_LENGTH(ehci_readl(&(hccr)->cr_capbase))); |
| 344 | setbits_le32(&ehci->usbmode, CM_HOST); |
| 345 | |
| 346 | __raw_writel(CONFIG_MXC_USB_PORTSC, &ehci->portsc); |
| 347 | setbits_le32(&ehci->portsc, USB_EN); |
| 348 | |
| 349 | mxc_set_usbcontrol(priv->portnr, CONFIG_MXC_USB_FLAGS); |
| 350 | mdelay(10); |
| 351 | |
| 352 | return ehci_register(dev, hccr, hcor, &mx5_ehci_ops, 0, |
| 353 | priv->init_type); |
| 354 | } |
| 355 | |
| 356 | static const struct udevice_id mx5_usb_ids[] = { |
| 357 | { .compatible = "fsl,imx53-usb" }, |
| 358 | { } |
| 359 | }; |
| 360 | |
| 361 | U_BOOT_DRIVER(usb_mx5) = { |
| 362 | .name = "ehci_mx5", |
| 363 | .id = UCLASS_USB, |
| 364 | .of_match = mx5_usb_ids, |
| 365 | .ofdata_to_platdata = ehci_usb_ofdata_to_platdata, |
| 366 | .probe = ehci_usb_probe, |
| 367 | .remove = ehci_deregister, |
| 368 | .ops = &ehci_usb_ops, |
| 369 | .platdata_auto_alloc_size = sizeof(struct usb_platdata), |
| 370 | .priv_auto_alloc_size = sizeof(struct ehci_mx5_priv_data), |
| 371 | .flags = DM_FLAG_ALLOC_PRIV_DMA, |
| 372 | }; |
| 373 | #endif /* !CONFIG_IS_ENABLED(DM_USB) */ |