2 * ehci-omap.c - driver for USBHOST on OMAP 34xx processor
4 * Bus Glue for OMAP34xx USBHOST 3 port EHCI controller
5 * Tested on OMAP3430 ES2.0 SDP
7 * Copyright (C) 2007-2008 Texas Instruments, Inc.
8 * Author: Vikram Pandita <vikram.pandita@ti.com>
10 * Copyright (C) 2009 Nokia Corporation
11 * Contact: Felipe Balbi <felipe.balbi@nokia.com>
13 * Based on "ehci-fsl.c" and "ehci-au1xxx.c" ehci glue layers
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 * TODO (last updated Feb 12, 2010):
32 * - add suspend/resume
33 * - move workarounds to board-files
36 #include <linux/platform_device.h>
37 #include <linux/clk.h>
38 #include <linux/gpio.h>
39 #include <linux/regulator/consumer.h>
40 #include <linux/slab.h>
41 #include <linux/usb/ulpi.h>
45 * OMAP USBHOST Register addresses: VIRTUAL ADDRESSES
46 * Use ehci_omap_readl()/ehci_omap_writel() functions
49 /* TLL Register Set */
50 #define OMAP_USBTLL_REVISION (0x00)
51 #define OMAP_USBTLL_SYSCONFIG (0x10)
52 #define OMAP_USBTLL_SYSCONFIG_CACTIVITY (1 << 8)
53 #define OMAP_USBTLL_SYSCONFIG_SIDLEMODE (1 << 3)
54 #define OMAP_USBTLL_SYSCONFIG_ENAWAKEUP (1 << 2)
55 #define OMAP_USBTLL_SYSCONFIG_SOFTRESET (1 << 1)
56 #define OMAP_USBTLL_SYSCONFIG_AUTOIDLE (1 << 0)
58 #define OMAP_USBTLL_SYSSTATUS (0x14)
59 #define OMAP_USBTLL_SYSSTATUS_RESETDONE (1 << 0)
61 #define OMAP_USBTLL_IRQSTATUS (0x18)
62 #define OMAP_USBTLL_IRQENABLE (0x1C)
64 #define OMAP_TLL_SHARED_CONF (0x30)
65 #define OMAP_TLL_SHARED_CONF_USB_90D_DDR_EN (1 << 6)
66 #define OMAP_TLL_SHARED_CONF_USB_180D_SDR_EN (1 << 5)
67 #define OMAP_TLL_SHARED_CONF_USB_DIVRATION (1 << 2)
68 #define OMAP_TLL_SHARED_CONF_FCLK_REQ (1 << 1)
69 #define OMAP_TLL_SHARED_CONF_FCLK_IS_ON (1 << 0)
71 #define OMAP_TLL_CHANNEL_CONF(num) (0x040 + 0x004 * num)
72 #define OMAP_TLL_CHANNEL_CONF_ULPINOBITSTUFF (1 << 11)
73 #define OMAP_TLL_CHANNEL_CONF_ULPI_ULPIAUTOIDLE (1 << 10)
74 #define OMAP_TLL_CHANNEL_CONF_UTMIAUTOIDLE (1 << 9)
75 #define OMAP_TLL_CHANNEL_CONF_ULPIDDRMODE (1 << 8)
76 #define OMAP_TLL_CHANNEL_CONF_CHANEN (1 << 0)
78 #define OMAP_TLL_ULPI_FUNCTION_CTRL(num) (0x804 + 0x100 * num)
79 #define OMAP_TLL_ULPI_INTERFACE_CTRL(num) (0x807 + 0x100 * num)
80 #define OMAP_TLL_ULPI_OTG_CTRL(num) (0x80A + 0x100 * num)
81 #define OMAP_TLL_ULPI_INT_EN_RISE(num) (0x80D + 0x100 * num)
82 #define OMAP_TLL_ULPI_INT_EN_FALL(num) (0x810 + 0x100 * num)
83 #define OMAP_TLL_ULPI_INT_STATUS(num) (0x813 + 0x100 * num)
84 #define OMAP_TLL_ULPI_INT_LATCH(num) (0x814 + 0x100 * num)
85 #define OMAP_TLL_ULPI_DEBUG(num) (0x815 + 0x100 * num)
86 #define OMAP_TLL_ULPI_SCRATCH_REGISTER(num) (0x816 + 0x100 * num)
88 #define OMAP_TLL_CHANNEL_COUNT 3
89 #define OMAP_TLL_CHANNEL_1_EN_MASK (1 << 1)
90 #define OMAP_TLL_CHANNEL_2_EN_MASK (1 << 2)
91 #define OMAP_TLL_CHANNEL_3_EN_MASK (1 << 4)
93 /* UHH Register Set */
94 #define OMAP_UHH_REVISION (0x00)
95 #define OMAP_UHH_SYSCONFIG (0x10)
96 #define OMAP_UHH_SYSCONFIG_MIDLEMODE (1 << 12)
97 #define OMAP_UHH_SYSCONFIG_CACTIVITY (1 << 8)
98 #define OMAP_UHH_SYSCONFIG_SIDLEMODE (1 << 3)
99 #define OMAP_UHH_SYSCONFIG_ENAWAKEUP (1 << 2)
100 #define OMAP_UHH_SYSCONFIG_SOFTRESET (1 << 1)
101 #define OMAP_UHH_SYSCONFIG_AUTOIDLE (1 << 0)
103 #define OMAP_UHH_SYSSTATUS (0x14)
104 #define OMAP_UHH_HOSTCONFIG (0x40)
105 #define OMAP_UHH_HOSTCONFIG_ULPI_BYPASS (1 << 0)
106 #define OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS (1 << 0)
107 #define OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS (1 << 11)
108 #define OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS (1 << 12)
109 #define OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN (1 << 2)
110 #define OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN (1 << 3)
111 #define OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN (1 << 4)
112 #define OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN (1 << 5)
113 #define OMAP_UHH_HOSTCONFIG_P1_CONNECT_STATUS (1 << 8)
114 #define OMAP_UHH_HOSTCONFIG_P2_CONNECT_STATUS (1 << 9)
115 #define OMAP_UHH_HOSTCONFIG_P3_CONNECT_STATUS (1 << 10)
117 #define OMAP_UHH_DEBUG_CSR (0x44)
119 /* EHCI Register Set */
120 #define EHCI_INSNREG04 (0xA0)
121 #define EHCI_INSNREG04_DISABLE_UNSUSPEND (1 << 5)
122 #define EHCI_INSNREG05_ULPI (0xA4)
123 #define EHCI_INSNREG05_ULPI_CONTROL_SHIFT 31
124 #define EHCI_INSNREG05_ULPI_PORTSEL_SHIFT 24
125 #define EHCI_INSNREG05_ULPI_OPSEL_SHIFT 22
126 #define EHCI_INSNREG05_ULPI_REGADD_SHIFT 16
127 #define EHCI_INSNREG05_ULPI_EXTREGADD_SHIFT 8
128 #define EHCI_INSNREG05_ULPI_WRDATA_SHIFT 0
130 /*-------------------------------------------------------------------------*/
132 static inline void ehci_omap_writel(void __iomem
*base
, u32 reg
, u32 val
)
134 __raw_writel(val
, base
+ reg
);
137 static inline u32
ehci_omap_readl(void __iomem
*base
, u32 reg
)
139 return __raw_readl(base
+ reg
);
142 static inline void ehci_omap_writeb(void __iomem
*base
, u8 reg
, u8 val
)
144 __raw_writeb(val
, base
+ reg
);
147 static inline u8
ehci_omap_readb(void __iomem
*base
, u8 reg
)
149 return __raw_readb(base
+ reg
);
152 /*-------------------------------------------------------------------------*/
154 struct ehci_hcd_omap
{
155 struct ehci_hcd
*ehci
;
158 struct clk
*usbhost_ick
;
159 struct clk
*usbhost2_120m_fck
;
160 struct clk
*usbhost1_48m_fck
;
161 struct clk
*usbtll_fck
;
162 struct clk
*usbtll_ick
;
164 /* FIXME the following two workarounds are
165 * board specific not silicon-specific so these
166 * should be moved to board-file instead.
168 * Maybe someone from TI will know better which
169 * board is affected and needs the workarounds
173 /* gpio for resetting phy */
174 int reset_gpio_port
[OMAP3_HS_USB_PORTS
];
176 /* phy reset workaround */
179 /* desired phy_mode: TLL, PHY */
180 enum ehci_hcd_omap_mode port_mode
[OMAP3_HS_USB_PORTS
];
182 void __iomem
*uhh_base
;
183 void __iomem
*tll_base
;
184 void __iomem
*ehci_base
;
186 /* Regulators for USB PHYs.
187 * Each PHY can have a separate regulator.
189 struct regulator
*regulator
[OMAP3_HS_USB_PORTS
];
192 /*-------------------------------------------------------------------------*/
194 static void omap_usb_utmi_init(struct ehci_hcd_omap
*omap
, u8 tll_channel_mask
)
199 /* Program the 3 TLL channels upfront */
200 for (i
= 0; i
< OMAP_TLL_CHANNEL_COUNT
; i
++) {
201 reg
= ehci_omap_readl(omap
->tll_base
, OMAP_TLL_CHANNEL_CONF(i
));
203 /* Disable AutoIdle, BitStuffing and use SDR Mode */
204 reg
&= ~(OMAP_TLL_CHANNEL_CONF_UTMIAUTOIDLE
205 | OMAP_TLL_CHANNEL_CONF_ULPINOBITSTUFF
206 | OMAP_TLL_CHANNEL_CONF_ULPIDDRMODE
);
207 ehci_omap_writel(omap
->tll_base
, OMAP_TLL_CHANNEL_CONF(i
), reg
);
210 /* Program Common TLL register */
211 reg
= ehci_omap_readl(omap
->tll_base
, OMAP_TLL_SHARED_CONF
);
212 reg
|= (OMAP_TLL_SHARED_CONF_FCLK_IS_ON
213 | OMAP_TLL_SHARED_CONF_USB_DIVRATION
214 | OMAP_TLL_SHARED_CONF_USB_180D_SDR_EN
);
215 reg
&= ~OMAP_TLL_SHARED_CONF_USB_90D_DDR_EN
;
217 ehci_omap_writel(omap
->tll_base
, OMAP_TLL_SHARED_CONF
, reg
);
219 /* Enable channels now */
220 for (i
= 0; i
< OMAP_TLL_CHANNEL_COUNT
; i
++) {
221 reg
= ehci_omap_readl(omap
->tll_base
, OMAP_TLL_CHANNEL_CONF(i
));
223 /* Enable only the reg that is needed */
224 if (!(tll_channel_mask
& 1<<i
))
227 reg
|= OMAP_TLL_CHANNEL_CONF_CHANEN
;
228 ehci_omap_writel(omap
->tll_base
, OMAP_TLL_CHANNEL_CONF(i
), reg
);
230 ehci_omap_writeb(omap
->tll_base
,
231 OMAP_TLL_ULPI_SCRATCH_REGISTER(i
), 0xbe);
232 dev_dbg(omap
->dev
, "ULPI_SCRATCH_REG[ch=%d]= 0x%02x\n",
233 i
+1, ehci_omap_readb(omap
->tll_base
,
234 OMAP_TLL_ULPI_SCRATCH_REGISTER(i
)));
238 /*-------------------------------------------------------------------------*/
240 static void omap_ehci_soft_phy_reset(struct ehci_hcd_omap
*omap
, u8 port
)
242 unsigned long timeout
= jiffies
+ msecs_to_jiffies(1000);
245 reg
= ULPI_FUNC_CTRL_RESET
246 /* FUNCTION_CTRL_SET register */
247 | (ULPI_SET(ULPI_FUNC_CTRL
) << EHCI_INSNREG05_ULPI_REGADD_SHIFT
)
249 | (2 << EHCI_INSNREG05_ULPI_OPSEL_SHIFT
)
251 | ((port
+ 1) << EHCI_INSNREG05_ULPI_PORTSEL_SHIFT
)
252 /* start ULPI access*/
253 | (1 << EHCI_INSNREG05_ULPI_CONTROL_SHIFT
);
255 ehci_omap_writel(omap
->ehci_base
, EHCI_INSNREG05_ULPI
, reg
);
257 /* Wait for ULPI access completion */
258 while ((ehci_omap_readl(omap
->ehci_base
, EHCI_INSNREG05_ULPI
)
259 & (1 << EHCI_INSNREG05_ULPI_CONTROL_SHIFT
))) {
262 if (time_after(jiffies
, timeout
)) {
263 dev_dbg(omap
->dev
, "phy reset operation timed out\n");
270 * - Start the TI USBHOST controller
272 static int omap_start_ehc(struct ehci_hcd_omap
*omap
, struct usb_hcd
*hcd
)
274 unsigned long timeout
= jiffies
+ msecs_to_jiffies(1000);
279 dev_dbg(omap
->dev
, "starting TI EHCI USB Controller\n");
281 /* Enable Clocks for USBHOST */
282 omap
->usbhost_ick
= clk_get(omap
->dev
, "usbhost_ick");
283 if (IS_ERR(omap
->usbhost_ick
)) {
284 ret
= PTR_ERR(omap
->usbhost_ick
);
287 clk_enable(omap
->usbhost_ick
);
289 omap
->usbhost2_120m_fck
= clk_get(omap
->dev
, "usbhost_120m_fck");
290 if (IS_ERR(omap
->usbhost2_120m_fck
)) {
291 ret
= PTR_ERR(omap
->usbhost2_120m_fck
);
292 goto err_host_120m_fck
;
294 clk_enable(omap
->usbhost2_120m_fck
);
296 omap
->usbhost1_48m_fck
= clk_get(omap
->dev
, "usbhost_48m_fck");
297 if (IS_ERR(omap
->usbhost1_48m_fck
)) {
298 ret
= PTR_ERR(omap
->usbhost1_48m_fck
);
299 goto err_host_48m_fck
;
301 clk_enable(omap
->usbhost1_48m_fck
);
303 if (omap
->phy_reset
) {
305 if (gpio_is_valid(omap
->reset_gpio_port
[0])) {
306 gpio_request(omap
->reset_gpio_port
[0],
308 gpio_direction_output(omap
->reset_gpio_port
[0], 0);
311 if (gpio_is_valid(omap
->reset_gpio_port
[1])) {
312 gpio_request(omap
->reset_gpio_port
[1],
314 gpio_direction_output(omap
->reset_gpio_port
[1], 0);
317 /* Hold the PHY in RESET for enough time till DIR is high */
321 /* Configure TLL for 60Mhz clk for ULPI */
322 omap
->usbtll_fck
= clk_get(omap
->dev
, "usbtll_fck");
323 if (IS_ERR(omap
->usbtll_fck
)) {
324 ret
= PTR_ERR(omap
->usbtll_fck
);
327 clk_enable(omap
->usbtll_fck
);
329 omap
->usbtll_ick
= clk_get(omap
->dev
, "usbtll_ick");
330 if (IS_ERR(omap
->usbtll_ick
)) {
331 ret
= PTR_ERR(omap
->usbtll_ick
);
334 clk_enable(omap
->usbtll_ick
);
336 /* perform TLL soft reset, and wait until reset is complete */
337 ehci_omap_writel(omap
->tll_base
, OMAP_USBTLL_SYSCONFIG
,
338 OMAP_USBTLL_SYSCONFIG_SOFTRESET
);
340 /* Wait for TLL reset to complete */
341 while (!(ehci_omap_readl(omap
->tll_base
, OMAP_USBTLL_SYSSTATUS
)
342 & OMAP_USBTLL_SYSSTATUS_RESETDONE
)) {
345 if (time_after(jiffies
, timeout
)) {
346 dev_dbg(omap
->dev
, "operation timed out\n");
352 dev_dbg(omap
->dev
, "TLL RESET DONE\n");
354 /* (1<<3) = no idle mode only for initial debugging */
355 ehci_omap_writel(omap
->tll_base
, OMAP_USBTLL_SYSCONFIG
,
356 OMAP_USBTLL_SYSCONFIG_ENAWAKEUP
|
357 OMAP_USBTLL_SYSCONFIG_SIDLEMODE
|
358 OMAP_USBTLL_SYSCONFIG_CACTIVITY
);
361 /* Put UHH in NoIdle/NoStandby mode */
362 reg
= ehci_omap_readl(omap
->uhh_base
, OMAP_UHH_SYSCONFIG
);
363 reg
|= (OMAP_UHH_SYSCONFIG_ENAWAKEUP
364 | OMAP_UHH_SYSCONFIG_SIDLEMODE
365 | OMAP_UHH_SYSCONFIG_CACTIVITY
366 | OMAP_UHH_SYSCONFIG_MIDLEMODE
);
367 reg
&= ~OMAP_UHH_SYSCONFIG_AUTOIDLE
;
369 ehci_omap_writel(omap
->uhh_base
, OMAP_UHH_SYSCONFIG
, reg
);
371 reg
= ehci_omap_readl(omap
->uhh_base
, OMAP_UHH_HOSTCONFIG
);
373 /* setup ULPI bypass and burst configurations */
374 reg
|= (OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN
375 | OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN
376 | OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN
);
377 reg
&= ~OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN
;
379 if (omap
->port_mode
[0] == EHCI_HCD_OMAP_MODE_UNKNOWN
)
380 reg
&= ~OMAP_UHH_HOSTCONFIG_P1_CONNECT_STATUS
;
381 if (omap
->port_mode
[1] == EHCI_HCD_OMAP_MODE_UNKNOWN
)
382 reg
&= ~OMAP_UHH_HOSTCONFIG_P2_CONNECT_STATUS
;
383 if (omap
->port_mode
[2] == EHCI_HCD_OMAP_MODE_UNKNOWN
)
384 reg
&= ~OMAP_UHH_HOSTCONFIG_P3_CONNECT_STATUS
;
386 /* Bypass the TLL module for PHY mode operation */
387 if (cpu_is_omap3430() && (omap_rev() <= OMAP3430_REV_ES2_1
)) {
388 dev_dbg(omap
->dev
, "OMAP3 ES version <= ES2.1\n");
389 if ((omap
->port_mode
[0] == EHCI_HCD_OMAP_MODE_PHY
) ||
390 (omap
->port_mode
[1] == EHCI_HCD_OMAP_MODE_PHY
) ||
391 (omap
->port_mode
[2] == EHCI_HCD_OMAP_MODE_PHY
))
392 reg
&= ~OMAP_UHH_HOSTCONFIG_ULPI_BYPASS
;
394 reg
|= OMAP_UHH_HOSTCONFIG_ULPI_BYPASS
;
396 dev_dbg(omap
->dev
, "OMAP3 ES version > ES2.1\n");
397 if (omap
->port_mode
[0] == EHCI_HCD_OMAP_MODE_PHY
)
398 reg
&= ~OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS
;
399 else if (omap
->port_mode
[0] == EHCI_HCD_OMAP_MODE_TLL
)
400 reg
|= OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS
;
402 if (omap
->port_mode
[1] == EHCI_HCD_OMAP_MODE_PHY
)
403 reg
&= ~OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS
;
404 else if (omap
->port_mode
[1] == EHCI_HCD_OMAP_MODE_TLL
)
405 reg
|= OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS
;
407 if (omap
->port_mode
[2] == EHCI_HCD_OMAP_MODE_PHY
)
408 reg
&= ~OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS
;
409 else if (omap
->port_mode
[2] == EHCI_HCD_OMAP_MODE_TLL
)
410 reg
|= OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS
;
413 ehci_omap_writel(omap
->uhh_base
, OMAP_UHH_HOSTCONFIG
, reg
);
414 dev_dbg(omap
->dev
, "UHH setup done, uhh_hostconfig=%x\n", reg
);
418 * An undocumented "feature" in the OMAP3 EHCI controller,
419 * causes suspended ports to be taken out of suspend when
420 * the USBCMD.Run/Stop bit is cleared (for example when
421 * we do ehci_bus_suspend).
422 * This breaks suspend-resume if the root-hub is allowed
423 * to suspend. Writing 1 to this undocumented register bit
424 * disables this feature and restores normal behavior.
426 ehci_omap_writel(omap
->ehci_base
, EHCI_INSNREG04
,
427 EHCI_INSNREG04_DISABLE_UNSUSPEND
);
429 if ((omap
->port_mode
[0] == EHCI_HCD_OMAP_MODE_TLL
) ||
430 (omap
->port_mode
[1] == EHCI_HCD_OMAP_MODE_TLL
) ||
431 (omap
->port_mode
[2] == EHCI_HCD_OMAP_MODE_TLL
)) {
433 if (omap
->port_mode
[0] == EHCI_HCD_OMAP_MODE_TLL
)
434 tll_ch_mask
|= OMAP_TLL_CHANNEL_1_EN_MASK
;
435 if (omap
->port_mode
[1] == EHCI_HCD_OMAP_MODE_TLL
)
436 tll_ch_mask
|= OMAP_TLL_CHANNEL_2_EN_MASK
;
437 if (omap
->port_mode
[2] == EHCI_HCD_OMAP_MODE_TLL
)
438 tll_ch_mask
|= OMAP_TLL_CHANNEL_3_EN_MASK
;
440 /* Enable UTMI mode for required TLL channels */
441 omap_usb_utmi_init(omap
, tll_ch_mask
);
444 if (omap
->phy_reset
) {
446 * Hold the PHY in RESET for enough time till
447 * PHY is settled and ready
451 if (gpio_is_valid(omap
->reset_gpio_port
[0]))
452 gpio_set_value(omap
->reset_gpio_port
[0], 1);
454 if (gpio_is_valid(omap
->reset_gpio_port
[1]))
455 gpio_set_value(omap
->reset_gpio_port
[1], 1);
458 /* Soft reset the PHY using PHY reset command over ULPI */
459 if (omap
->port_mode
[0] == EHCI_HCD_OMAP_MODE_PHY
)
460 omap_ehci_soft_phy_reset(omap
, 0);
461 if (omap
->port_mode
[1] == EHCI_HCD_OMAP_MODE_PHY
)
462 omap_ehci_soft_phy_reset(omap
, 1);
467 clk_disable(omap
->usbtll_ick
);
468 clk_put(omap
->usbtll_ick
);
471 clk_disable(omap
->usbtll_fck
);
472 clk_put(omap
->usbtll_fck
);
475 clk_disable(omap
->usbhost1_48m_fck
);
476 clk_put(omap
->usbhost1_48m_fck
);
478 if (omap
->phy_reset
) {
479 if (gpio_is_valid(omap
->reset_gpio_port
[0]))
480 gpio_free(omap
->reset_gpio_port
[0]);
482 if (gpio_is_valid(omap
->reset_gpio_port
[1]))
483 gpio_free(omap
->reset_gpio_port
[1]);
487 clk_disable(omap
->usbhost2_120m_fck
);
488 clk_put(omap
->usbhost2_120m_fck
);
491 clk_disable(omap
->usbhost_ick
);
492 clk_put(omap
->usbhost_ick
);
498 static void omap_stop_ehc(struct ehci_hcd_omap
*omap
, struct usb_hcd
*hcd
)
500 unsigned long timeout
= jiffies
+ msecs_to_jiffies(100);
502 dev_dbg(omap
->dev
, "stopping TI EHCI USB Controller\n");
504 /* Reset OMAP modules for insmod/rmmod to work */
505 ehci_omap_writel(omap
->uhh_base
, OMAP_UHH_SYSCONFIG
,
506 OMAP_UHH_SYSCONFIG_SOFTRESET
);
507 while (!(ehci_omap_readl(omap
->uhh_base
, OMAP_UHH_SYSSTATUS
)
511 if (time_after(jiffies
, timeout
))
512 dev_dbg(omap
->dev
, "operation timed out\n");
515 while (!(ehci_omap_readl(omap
->uhh_base
, OMAP_UHH_SYSSTATUS
)
519 if (time_after(jiffies
, timeout
))
520 dev_dbg(omap
->dev
, "operation timed out\n");
523 while (!(ehci_omap_readl(omap
->uhh_base
, OMAP_UHH_SYSSTATUS
)
527 if (time_after(jiffies
, timeout
))
528 dev_dbg(omap
->dev
, "operation timed out\n");
531 ehci_omap_writel(omap
->tll_base
, OMAP_USBTLL_SYSCONFIG
, (1 << 1));
533 while (!(ehci_omap_readl(omap
->tll_base
, OMAP_USBTLL_SYSSTATUS
)
537 if (time_after(jiffies
, timeout
))
538 dev_dbg(omap
->dev
, "operation timed out\n");
541 if (omap
->usbtll_fck
!= NULL
) {
542 clk_disable(omap
->usbtll_fck
);
543 clk_put(omap
->usbtll_fck
);
544 omap
->usbtll_fck
= NULL
;
547 if (omap
->usbhost_ick
!= NULL
) {
548 clk_disable(omap
->usbhost_ick
);
549 clk_put(omap
->usbhost_ick
);
550 omap
->usbhost_ick
= NULL
;
553 if (omap
->usbhost1_48m_fck
!= NULL
) {
554 clk_disable(omap
->usbhost1_48m_fck
);
555 clk_put(omap
->usbhost1_48m_fck
);
556 omap
->usbhost1_48m_fck
= NULL
;
559 if (omap
->usbhost2_120m_fck
!= NULL
) {
560 clk_disable(omap
->usbhost2_120m_fck
);
561 clk_put(omap
->usbhost2_120m_fck
);
562 omap
->usbhost2_120m_fck
= NULL
;
565 if (omap
->usbtll_ick
!= NULL
) {
566 clk_disable(omap
->usbtll_ick
);
567 clk_put(omap
->usbtll_ick
);
568 omap
->usbtll_ick
= NULL
;
571 if (omap
->phy_reset
) {
572 if (gpio_is_valid(omap
->reset_gpio_port
[0]))
573 gpio_free(omap
->reset_gpio_port
[0]);
575 if (gpio_is_valid(omap
->reset_gpio_port
[1]))
576 gpio_free(omap
->reset_gpio_port
[1]);
579 dev_dbg(omap
->dev
, "Clock to USB host has been disabled\n");
582 /*-------------------------------------------------------------------------*/
584 static const struct hc_driver ehci_omap_hc_driver
;
586 /* configure so an HC device and id are always provided */
587 /* always called with process context; sleeping is OK */
590 * ehci_hcd_omap_probe - initialize TI-based HCDs
592 * Allocates basic resources for this USB host controller, and
593 * then invokes the start() method for the HCD associated with it
594 * through the hotplug entry's driver_data.
596 static int ehci_hcd_omap_probe(struct platform_device
*pdev
)
598 struct ehci_hcd_omap_platform_data
*pdata
= pdev
->dev
.platform_data
;
599 struct ehci_hcd_omap
*omap
;
600 struct resource
*res
;
603 int irq
= platform_get_irq(pdev
, 0);
609 dev_dbg(&pdev
->dev
, "missing platform_data\n");
616 omap
= kzalloc(sizeof(*omap
), GFP_KERNEL
);
622 hcd
= usb_create_hcd(&ehci_omap_hc_driver
, &pdev
->dev
,
623 dev_name(&pdev
->dev
));
625 dev_dbg(&pdev
->dev
, "failed to create hcd with err %d\n", ret
);
630 platform_set_drvdata(pdev
, omap
);
631 omap
->dev
= &pdev
->dev
;
632 omap
->phy_reset
= pdata
->phy_reset
;
633 omap
->reset_gpio_port
[0] = pdata
->reset_gpio_port
[0];
634 omap
->reset_gpio_port
[1] = pdata
->reset_gpio_port
[1];
635 omap
->reset_gpio_port
[2] = pdata
->reset_gpio_port
[2];
636 omap
->port_mode
[0] = pdata
->port_mode
[0];
637 omap
->port_mode
[1] = pdata
->port_mode
[1];
638 omap
->port_mode
[2] = pdata
->port_mode
[2];
639 omap
->ehci
= hcd_to_ehci(hcd
);
640 omap
->ehci
->sbrn
= 0x20;
642 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
644 hcd
->rsrc_start
= res
->start
;
645 hcd
->rsrc_len
= resource_size(res
);
647 hcd
->regs
= ioremap(hcd
->rsrc_start
, hcd
->rsrc_len
);
649 dev_err(&pdev
->dev
, "EHCI ioremap failed\n");
654 /* we know this is the memory we want, no need to ioremap again */
655 omap
->ehci
->caps
= hcd
->regs
;
656 omap
->ehci_base
= hcd
->regs
;
658 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
659 omap
->uhh_base
= ioremap(res
->start
, resource_size(res
));
660 if (!omap
->uhh_base
) {
661 dev_err(&pdev
->dev
, "UHH ioremap failed\n");
663 goto err_uhh_ioremap
;
666 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 2);
667 omap
->tll_base
= ioremap(res
->start
, resource_size(res
));
668 if (!omap
->tll_base
) {
669 dev_err(&pdev
->dev
, "TLL ioremap failed\n");
671 goto err_tll_ioremap
;
674 /* get ehci regulator and enable */
675 for (i
= 0 ; i
< OMAP3_HS_USB_PORTS
; i
++) {
676 if (omap
->port_mode
[i
] != EHCI_HCD_OMAP_MODE_PHY
) {
677 omap
->regulator
[i
] = NULL
;
680 snprintf(supply
, sizeof(supply
), "hsusb%d", i
);
681 omap
->regulator
[i
] = regulator_get(omap
->dev
, supply
);
682 if (IS_ERR(omap
->regulator
[i
])) {
683 omap
->regulator
[i
] = NULL
;
685 "failed to get ehci port%d regulator\n", i
);
687 regulator_enable(omap
->regulator
[i
]);
691 ret
= omap_start_ehc(omap
, hcd
);
693 dev_dbg(&pdev
->dev
, "failed to start ehci\n");
697 omap
->ehci
->regs
= hcd
->regs
698 + HC_LENGTH(readl(&omap
->ehci
->caps
->hc_capbase
));
700 dbg_hcs_params(omap
->ehci
, "reset");
701 dbg_hcc_params(omap
->ehci
, "reset");
703 /* cache this readonly data; minimize chip reads */
704 omap
->ehci
->hcs_params
= readl(&omap
->ehci
->caps
->hcs_params
);
706 ret
= usb_add_hcd(hcd
, irq
, IRQF_DISABLED
| IRQF_SHARED
);
708 dev_dbg(&pdev
->dev
, "failed to add hcd with err %d\n", ret
);
712 /* root ports should always stay powered */
713 ehci_port_power(omap
->ehci
, 1);
718 omap_stop_ehc(omap
, hcd
);
721 for (i
= 0 ; i
< OMAP3_HS_USB_PORTS
; i
++) {
722 if (omap
->regulator
[i
]) {
723 regulator_disable(omap
->regulator
[i
]);
724 regulator_put(omap
->regulator
[i
]);
727 iounmap(omap
->tll_base
);
730 iounmap(omap
->uhh_base
);
745 /* may be called without controller electrically present */
746 /* may be called with controller, bus, and devices active */
749 * ehci_hcd_omap_remove - shutdown processing for EHCI HCDs
750 * @pdev: USB Host Controller being removed
752 * Reverses the effect of usb_ehci_hcd_omap_probe(), first invoking
753 * the HCD's stop() method. It is always called from a thread
754 * context, normally "rmmod", "apmd", or something similar.
756 static int ehci_hcd_omap_remove(struct platform_device
*pdev
)
758 struct ehci_hcd_omap
*omap
= platform_get_drvdata(pdev
);
759 struct usb_hcd
*hcd
= ehci_to_hcd(omap
->ehci
);
763 omap_stop_ehc(omap
, hcd
);
765 for (i
= 0 ; i
< OMAP3_HS_USB_PORTS
; i
++) {
766 if (omap
->regulator
[i
]) {
767 regulator_disable(omap
->regulator
[i
]);
768 regulator_put(omap
->regulator
[i
]);
771 iounmap(omap
->tll_base
);
772 iounmap(omap
->uhh_base
);
779 static void ehci_hcd_omap_shutdown(struct platform_device
*pdev
)
781 struct ehci_hcd_omap
*omap
= platform_get_drvdata(pdev
);
782 struct usb_hcd
*hcd
= ehci_to_hcd(omap
->ehci
);
784 if (hcd
->driver
->shutdown
)
785 hcd
->driver
->shutdown(hcd
);
788 static struct platform_driver ehci_hcd_omap_driver
= {
789 .probe
= ehci_hcd_omap_probe
,
790 .remove
= ehci_hcd_omap_remove
,
791 .shutdown
= ehci_hcd_omap_shutdown
,
792 /*.suspend = ehci_hcd_omap_suspend, */
793 /*.resume = ehci_hcd_omap_resume, */
799 /*-------------------------------------------------------------------------*/
801 static const struct hc_driver ehci_omap_hc_driver
= {
802 .description
= hcd_name
,
803 .product_desc
= "OMAP-EHCI Host Controller",
804 .hcd_priv_size
= sizeof(struct ehci_hcd
),
807 * generic hardware linkage
810 .flags
= HCD_MEMORY
| HCD_USB2
,
813 * basic lifecycle operations
818 .shutdown
= ehci_shutdown
,
821 * managing i/o requests and associated device resources
823 .urb_enqueue
= ehci_urb_enqueue
,
824 .urb_dequeue
= ehci_urb_dequeue
,
825 .endpoint_disable
= ehci_endpoint_disable
,
826 .endpoint_reset
= ehci_endpoint_reset
,
831 .get_frame_number
= ehci_get_frame
,
836 .hub_status_data
= ehci_hub_status_data
,
837 .hub_control
= ehci_hub_control
,
838 .bus_suspend
= ehci_bus_suspend
,
839 .bus_resume
= ehci_bus_resume
,
841 .clear_tt_buffer_complete
= ehci_clear_tt_buffer_complete
,
844 MODULE_ALIAS("platform:omap-ehci");
845 MODULE_AUTHOR("Texas Instruments, Inc.");
846 MODULE_AUTHOR("Felipe Balbi <felipe.balbi@nokia.com>");