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