Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de> |
| 3 | * Copyright (C) 2010 Freescale Semiconductor, Inc. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <usb.h> |
| 10 | #include <errno.h> |
| 11 | #include <linux/compiler.h> |
| 12 | #include <usb/ehci-fsl.h> |
| 13 | #include <asm/io.h> |
| 14 | #include <asm/arch/imx-regs.h> |
| 15 | #include <asm/arch/clock.h> |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 16 | |
| 17 | #include "ehci.h" |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 18 | |
| 19 | #define MX5_USBOTHER_REGS_OFFSET 0x800 |
| 20 | |
| 21 | |
Benoît Thébaudeau | bdc5202 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 22 | #define MXC_OTG_OFFSET 0 |
| 23 | #define MXC_H1_OFFSET 0x200 |
| 24 | #define MXC_H2_OFFSET 0x400 |
Benoît Thébaudeau | 2cfe0b8 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 25 | #define MXC_H3_OFFSET 0x600 |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 26 | |
| 27 | #define MXC_USBCTRL_OFFSET 0 |
| 28 | #define MXC_USB_PHY_CTR_FUNC_OFFSET 0x8 |
| 29 | #define MXC_USB_PHY_CTR_FUNC2_OFFSET 0xc |
| 30 | #define MXC_USB_CTRL_1_OFFSET 0x10 |
| 31 | #define MXC_USBH2CTRL_OFFSET 0x14 |
Benoît Thébaudeau | 2cfe0b8 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 32 | #define MXC_USBH3CTRL_OFFSET 0x18 |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 33 | |
| 34 | /* USB_CTRL */ |
Benoît Thébaudeau | bdc5202 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 35 | /* OTG wakeup intr enable */ |
| 36 | #define MXC_OTG_UCTRL_OWIE_BIT (1 << 27) |
| 37 | /* OTG power mask */ |
| 38 | #define MXC_OTG_UCTRL_OPM_BIT (1 << 24) |
Benoît Thébaudeau | 31ac2d0 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 39 | /* OTG power pin polarity */ |
| 40 | #define MXC_OTG_UCTRL_O_PWR_POL_BIT (1 << 24) |
Benoît Thébaudeau | bdc5202 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 41 | /* Host1 ULPI interrupt enable */ |
| 42 | #define MXC_H1_UCTRL_H1UIE_BIT (1 << 12) |
| 43 | /* HOST1 wakeup intr enable */ |
| 44 | #define MXC_H1_UCTRL_H1WIE_BIT (1 << 11) |
| 45 | /* HOST1 power mask */ |
| 46 | #define MXC_H1_UCTRL_H1PM_BIT (1 << 8) |
Benoît Thébaudeau | 31ac2d0 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 47 | /* HOST1 power pin polarity */ |
| 48 | #define MXC_H1_UCTRL_H1_PWR_POL_BIT (1 << 8) |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 49 | |
| 50 | /* USB_PHY_CTRL_FUNC */ |
Benoît Thébaudeau | 31ac2d0 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 51 | /* OTG Polarity of Overcurrent */ |
| 52 | #define MXC_OTG_PHYCTRL_OC_POL_BIT (1 << 9) |
Benoît Thébaudeau | bdc5202 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 53 | /* OTG Disable Overcurrent Event */ |
| 54 | #define MXC_OTG_PHYCTRL_OC_DIS_BIT (1 << 8) |
Benoît Thébaudeau | 31ac2d0 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 55 | /* UH1 Polarity of Overcurrent */ |
| 56 | #define MXC_H1_OC_POL_BIT (1 << 6) |
Benoît Thébaudeau | bdc5202 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 57 | /* UH1 Disable Overcurrent Event */ |
| 58 | #define MXC_H1_OC_DIS_BIT (1 << 5) |
Benoît Thébaudeau | 31ac2d0 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 59 | /* OTG Power Pin Polarity */ |
| 60 | #define MXC_OTG_PHYCTRL_PWR_POL_BIT (1 << 3) |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 61 | |
| 62 | /* USBH2CTRL */ |
Benoît Thébaudeau | 31ac2d0 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 63 | #define MXC_H2_UCTRL_H2_OC_POL_BIT (1 << 31) |
Benoît Thébaudeau | 2cfe0b8 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 64 | #define MXC_H2_UCTRL_H2_OC_DIS_BIT (1 << 30) |
Benoît Thébaudeau | bdc5202 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 65 | #define MXC_H2_UCTRL_H2UIE_BIT (1 << 8) |
| 66 | #define MXC_H2_UCTRL_H2WIE_BIT (1 << 7) |
| 67 | #define MXC_H2_UCTRL_H2PM_BIT (1 << 4) |
Benoît Thébaudeau | 31ac2d0 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 68 | #define MXC_H2_UCTRL_H2_PWR_POL_BIT (1 << 4) |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 69 | |
Benoît Thébaudeau | 2cfe0b8 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 70 | /* USBH3CTRL */ |
Benoît Thébaudeau | 31ac2d0 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 71 | #define MXC_H3_UCTRL_H3_OC_POL_BIT (1 << 31) |
Benoît Thébaudeau | 2cfe0b8 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 72 | #define MXC_H3_UCTRL_H3_OC_DIS_BIT (1 << 30) |
| 73 | #define MXC_H3_UCTRL_H3UIE_BIT (1 << 8) |
| 74 | #define MXC_H3_UCTRL_H3WIE_BIT (1 << 7) |
Benoît Thébaudeau | 31ac2d0 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 75 | #define MXC_H3_UCTRL_H3_PWR_POL_BIT (1 << 4) |
Benoît Thébaudeau | 2cfe0b8 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 76 | |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 77 | /* USB_CTRL_1 */ |
Benoît Thébaudeau | bdc5202 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 78 | #define MXC_USB_CTRL_UH1_EXT_CLK_EN (1 << 25) |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 79 | |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 80 | int mxc_set_usbcontrol(int port, unsigned int flags) |
| 81 | { |
| 82 | unsigned int v; |
| 83 | void __iomem *usb_base = (void __iomem *)OTG_BASE_ADDR; |
| 84 | void __iomem *usbother_base; |
| 85 | int ret = 0; |
| 86 | |
| 87 | usbother_base = usb_base + MX5_USBOTHER_REGS_OFFSET; |
| 88 | |
| 89 | switch (port) { |
| 90 | case 0: /* OTG port */ |
| 91 | if (flags & MXC_EHCI_INTERNAL_PHY) { |
| 92 | v = __raw_readl(usbother_base + |
| 93 | MXC_USB_PHY_CTR_FUNC_OFFSET); |
Benoît Thébaudeau | 31ac2d0 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 94 | if (flags & MXC_EHCI_OC_PIN_ACTIVE_LOW) |
| 95 | v |= MXC_OTG_PHYCTRL_OC_POL_BIT; |
| 96 | else |
| 97 | v &= ~MXC_OTG_PHYCTRL_OC_POL_BIT; |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 98 | if (flags & MXC_EHCI_POWER_PINS_ENABLED) |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 99 | /* OC/USBPWR is used */ |
| 100 | v &= ~MXC_OTG_PHYCTRL_OC_DIS_BIT; |
Benoît Thébaudeau | 7d42432 | 2012-11-13 09:56:30 +0000 | [diff] [blame] | 101 | else |
| 102 | /* OC/USBPWR is not used */ |
| 103 | v |= MXC_OTG_PHYCTRL_OC_DIS_BIT; |
Benoît Thébaudeau | 31ac2d0 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 104 | #ifdef CONFIG_MX51 |
| 105 | if (flags & MXC_EHCI_PWR_PIN_ACTIVE_HIGH) |
| 106 | v |= MXC_OTG_PHYCTRL_PWR_POL_BIT; |
| 107 | else |
| 108 | v &= ~MXC_OTG_PHYCTRL_PWR_POL_BIT; |
| 109 | #endif |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 110 | __raw_writel(v, usbother_base + |
| 111 | MXC_USB_PHY_CTR_FUNC_OFFSET); |
| 112 | |
| 113 | v = __raw_readl(usbother_base + MXC_USBCTRL_OFFSET); |
Benoît Thébaudeau | 661052f | 2012-11-13 09:56:59 +0000 | [diff] [blame] | 114 | #ifdef CONFIG_MX51 |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 115 | if (flags & MXC_EHCI_POWER_PINS_ENABLED) |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 116 | v &= ~MXC_OTG_UCTRL_OPM_BIT; |
Benoît Thébaudeau | 394c00d | 2012-11-13 09:56:44 +0000 | [diff] [blame] | 117 | else |
| 118 | v |= MXC_OTG_UCTRL_OPM_BIT; |
Benoît Thébaudeau | 661052f | 2012-11-13 09:56:59 +0000 | [diff] [blame] | 119 | #endif |
Benoît Thébaudeau | 31ac2d0 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 120 | #ifdef CONFIG_MX53 |
| 121 | if (flags & MXC_EHCI_PWR_PIN_ACTIVE_HIGH) |
| 122 | v |= MXC_OTG_UCTRL_O_PWR_POL_BIT; |
| 123 | else |
| 124 | v &= ~MXC_OTG_UCTRL_O_PWR_POL_BIT; |
| 125 | #endif |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 126 | __raw_writel(v, usbother_base + MXC_USBCTRL_OFFSET); |
| 127 | } |
| 128 | break; |
Benoît Thébaudeau | bdc5202 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 129 | case 1: /* Host 1 ULPI */ |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 130 | #ifdef CONFIG_MX51 |
| 131 | /* The clock for the USBH1 ULPI port will come externally |
| 132 | from the PHY. */ |
| 133 | v = __raw_readl(usbother_base + MXC_USB_CTRL_1_OFFSET); |
| 134 | __raw_writel(v | MXC_USB_CTRL_UH1_EXT_CLK_EN, usbother_base + |
| 135 | MXC_USB_CTRL_1_OFFSET); |
| 136 | #endif |
| 137 | |
| 138 | v = __raw_readl(usbother_base + MXC_USBCTRL_OFFSET); |
Benoît Thébaudeau | 661052f | 2012-11-13 09:56:59 +0000 | [diff] [blame] | 139 | #ifdef CONFIG_MX51 |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 140 | if (flags & MXC_EHCI_POWER_PINS_ENABLED) |
Benoît Thébaudeau | bdc5202 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 141 | v &= ~MXC_H1_UCTRL_H1PM_BIT; /* H1 power mask unused */ |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 142 | else |
Benoît Thébaudeau | bdc5202 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 143 | v |= MXC_H1_UCTRL_H1PM_BIT; /* H1 power mask used */ |
Benoît Thébaudeau | 661052f | 2012-11-13 09:56:59 +0000 | [diff] [blame] | 144 | #endif |
Benoît Thébaudeau | 31ac2d0 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 145 | #ifdef CONFIG_MX53 |
| 146 | if (flags & MXC_EHCI_PWR_PIN_ACTIVE_HIGH) |
| 147 | v |= MXC_H1_UCTRL_H1_PWR_POL_BIT; |
| 148 | else |
| 149 | v &= ~MXC_H1_UCTRL_H1_PWR_POL_BIT; |
| 150 | #endif |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 151 | __raw_writel(v, usbother_base + MXC_USBCTRL_OFFSET); |
| 152 | |
| 153 | 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] | 154 | if (flags & MXC_EHCI_OC_PIN_ACTIVE_LOW) |
| 155 | v |= MXC_H1_OC_POL_BIT; |
| 156 | else |
| 157 | v &= ~MXC_H1_OC_POL_BIT; |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 158 | if (flags & MXC_EHCI_POWER_PINS_ENABLED) |
| 159 | v &= ~MXC_H1_OC_DIS_BIT; /* OC is used */ |
| 160 | else |
| 161 | v |= MXC_H1_OC_DIS_BIT; /* OC is not used */ |
| 162 | __raw_writel(v, usbother_base + MXC_USB_PHY_CTR_FUNC_OFFSET); |
| 163 | |
| 164 | break; |
| 165 | case 2: /* Host 2 ULPI */ |
| 166 | v = __raw_readl(usbother_base + MXC_USBH2CTRL_OFFSET); |
Benoît Thébaudeau | 661052f | 2012-11-13 09:56:59 +0000 | [diff] [blame] | 167 | #ifdef CONFIG_MX51 |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 168 | if (flags & MXC_EHCI_POWER_PINS_ENABLED) |
Benoît Thébaudeau | bdc5202 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 169 | v &= ~MXC_H2_UCTRL_H2PM_BIT; /* H2 power mask unused */ |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 170 | else |
Benoît Thébaudeau | bdc5202 | 2012-11-13 09:56:15 +0000 | [diff] [blame] | 171 | v |= MXC_H2_UCTRL_H2PM_BIT; /* H2 power mask used */ |
Benoît Thébaudeau | 661052f | 2012-11-13 09:56:59 +0000 | [diff] [blame] | 172 | #endif |
Benoît Thébaudeau | 2cfe0b8 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 173 | #ifdef CONFIG_MX53 |
Benoît Thébaudeau | 31ac2d0 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 174 | if (flags & MXC_EHCI_OC_PIN_ACTIVE_LOW) |
| 175 | v |= MXC_H2_UCTRL_H2_OC_POL_BIT; |
| 176 | else |
| 177 | v &= ~MXC_H2_UCTRL_H2_OC_POL_BIT; |
Benoît Thébaudeau | 2cfe0b8 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 178 | if (flags & MXC_EHCI_POWER_PINS_ENABLED) |
| 179 | v &= ~MXC_H2_UCTRL_H2_OC_DIS_BIT; /* OC is used */ |
| 180 | else |
| 181 | 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] | 182 | if (flags & MXC_EHCI_PWR_PIN_ACTIVE_HIGH) |
| 183 | v |= MXC_H2_UCTRL_H2_PWR_POL_BIT; |
| 184 | else |
| 185 | v &= ~MXC_H2_UCTRL_H2_PWR_POL_BIT; |
Benoît Thébaudeau | 2cfe0b8 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 186 | #endif |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 187 | __raw_writel(v, usbother_base + MXC_USBH2CTRL_OFFSET); |
| 188 | break; |
Benoît Thébaudeau | 2cfe0b8 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 189 | #ifdef CONFIG_MX53 |
| 190 | case 3: /* Host 3 ULPI */ |
| 191 | v = __raw_readl(usbother_base + MXC_USBH3CTRL_OFFSET); |
Benoît Thébaudeau | 31ac2d0 | 2012-11-13 09:57:27 +0000 | [diff] [blame] | 192 | if (flags & MXC_EHCI_OC_PIN_ACTIVE_LOW) |
| 193 | v |= MXC_H3_UCTRL_H3_OC_POL_BIT; |
| 194 | else |
| 195 | v &= ~MXC_H3_UCTRL_H3_OC_POL_BIT; |
Benoît Thébaudeau | 2cfe0b8 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 196 | if (flags & MXC_EHCI_POWER_PINS_ENABLED) |
| 197 | v &= ~MXC_H3_UCTRL_H3_OC_DIS_BIT; /* OC is used */ |
| 198 | else |
| 199 | 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] | 200 | if (flags & MXC_EHCI_PWR_PIN_ACTIVE_HIGH) |
| 201 | v |= MXC_H3_UCTRL_H3_PWR_POL_BIT; |
| 202 | else |
| 203 | v &= ~MXC_H3_UCTRL_H3_PWR_POL_BIT; |
Benoît Thébaudeau | 2cfe0b8 | 2012-11-13 09:57:14 +0000 | [diff] [blame] | 204 | __raw_writel(v, usbother_base + MXC_USBH3CTRL_OFFSET); |
| 205 | break; |
| 206 | #endif |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | return ret; |
| 210 | } |
| 211 | |
Benoît Thébaudeau | f22e4fa | 2012-11-13 09:58:35 +0000 | [diff] [blame] | 212 | int __weak board_ehci_hcd_init(int port) |
Marek Vasut | 1b80f27 | 2011-11-24 05:14:00 +0100 | [diff] [blame] | 213 | { |
Benoît Thébaudeau | f22e4fa | 2012-11-13 09:58:35 +0000 | [diff] [blame] | 214 | return 0; |
Marek Vasut | 1b80f27 | 2011-11-24 05:14:00 +0100 | [diff] [blame] | 215 | } |
| 216 | |
Benoît Thébaudeau | f22e4fa | 2012-11-13 09:58:35 +0000 | [diff] [blame] | 217 | void __weak board_ehci_hcd_postinit(struct usb_ehci *ehci, int port) |
| 218 | { |
| 219 | } |
Marek Vasut | 1b80f27 | 2011-11-24 05:14:00 +0100 | [diff] [blame] | 220 | |
Troy Kisky | 127efc4 | 2013-10-10 15:27:57 -0700 | [diff] [blame] | 221 | int ehci_hcd_init(int index, enum usb_init_type init, |
| 222 | struct ehci_hccr **hccr, struct ehci_hcor **hcor) |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 223 | { |
| 224 | struct usb_ehci *ehci; |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 225 | |
| 226 | set_usboh3_clk(); |
Fabio Estevam | 76b6b19 | 2013-07-26 13:54:28 -0300 | [diff] [blame] | 227 | enable_usboh3_clk(true); |
Benoît Thébaudeau | 414e166 | 2012-09-28 07:09:03 +0000 | [diff] [blame] | 228 | set_usb_phy_clk(); |
Fabio Estevam | 76b6b19 | 2013-07-26 13:54:28 -0300 | [diff] [blame] | 229 | enable_usb_phy1_clk(true); |
| 230 | enable_usb_phy2_clk(true); |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 231 | mdelay(1); |
| 232 | |
Marek Vasut | 1b80f27 | 2011-11-24 05:14:00 +0100 | [diff] [blame] | 233 | /* Do board specific initialization */ |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 234 | board_ehci_hcd_init(CONFIG_MXC_USB_PORT); |
| 235 | |
| 236 | ehci = (struct usb_ehci *)(OTG_BASE_ADDR + |
| 237 | (0x200 * CONFIG_MXC_USB_PORT)); |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 238 | *hccr = (struct ehci_hccr *)((uint32_t)&ehci->caplength); |
| 239 | *hcor = (struct ehci_hcor *)((uint32_t)*hccr + |
| 240 | HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase))); |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 241 | setbits_le32(&ehci->usbmode, CM_HOST); |
| 242 | |
| 243 | __raw_writel(CONFIG_MXC_USB_PORTSC, &ehci->portsc); |
| 244 | setbits_le32(&ehci->portsc, USB_EN); |
| 245 | |
| 246 | mxc_set_usbcontrol(CONFIG_MXC_USB_PORT, CONFIG_MXC_USB_FLAGS); |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 247 | mdelay(10); |
| 248 | |
Marek Vasut | 1b80f27 | 2011-11-24 05:14:00 +0100 | [diff] [blame] | 249 | /* Do board specific post-initialization */ |
| 250 | board_ehci_hcd_postinit(ehci, CONFIG_MXC_USB_PORT); |
| 251 | |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 252 | return 0; |
| 253 | } |
| 254 | |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 255 | int ehci_hcd_stop(int index) |
Wolfgang Grandegger | 1ca5620 | 2011-11-11 14:03:36 +0100 | [diff] [blame] | 256 | { |
| 257 | return 0; |
| 258 | } |