2 * omap-usb-host.c - The USBHS core driver for OMAP EHCI & OHCI
4 * Copyright (C) 2011-2013 Texas Instruments Incorporated - http://www.ti.com
5 * Author: Keshava Munegowda <keshava_mgowda@ti.com>
6 * Author: Roger Quadros <rogerq@ti.com>
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 of
10 * the License as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/types.h>
23 #include <linux/slab.h>
24 #include <linux/delay.h>
25 #include <linux/clk.h>
26 #include <linux/dma-mapping.h>
27 #include <linux/gpio.h>
28 #include <linux/platform_device.h>
29 #include <linux/platform_data/usb-omap.h>
30 #include <linux/pm_runtime.h>
32 #include <linux/of_platform.h>
33 #include <linux/err.h>
37 #define USBHS_DRIVER_NAME "usbhs_omap"
38 #define OMAP_EHCI_DEVICE "ehci-omap"
39 #define OMAP_OHCI_DEVICE "ohci-omap3"
41 /* OMAP USBHOST Register addresses */
43 /* UHH Register Set */
44 #define OMAP_UHH_REVISION (0x00)
45 #define OMAP_UHH_SYSCONFIG (0x10)
46 #define OMAP_UHH_SYSCONFIG_MIDLEMODE (1 << 12)
47 #define OMAP_UHH_SYSCONFIG_CACTIVITY (1 << 8)
48 #define OMAP_UHH_SYSCONFIG_SIDLEMODE (1 << 3)
49 #define OMAP_UHH_SYSCONFIG_ENAWAKEUP (1 << 2)
50 #define OMAP_UHH_SYSCONFIG_SOFTRESET (1 << 1)
51 #define OMAP_UHH_SYSCONFIG_AUTOIDLE (1 << 0)
53 #define OMAP_UHH_SYSSTATUS (0x14)
54 #define OMAP_UHH_HOSTCONFIG (0x40)
55 #define OMAP_UHH_HOSTCONFIG_ULPI_BYPASS (1 << 0)
56 #define OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS (1 << 0)
57 #define OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS (1 << 11)
58 #define OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS (1 << 12)
59 #define OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN (1 << 2)
60 #define OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN (1 << 3)
61 #define OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN (1 << 4)
62 #define OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN (1 << 5)
63 #define OMAP_UHH_HOSTCONFIG_P1_CONNECT_STATUS (1 << 8)
64 #define OMAP_UHH_HOSTCONFIG_P2_CONNECT_STATUS (1 << 9)
65 #define OMAP_UHH_HOSTCONFIG_P3_CONNECT_STATUS (1 << 10)
66 #define OMAP4_UHH_HOSTCONFIG_APP_START_CLK (1 << 31)
68 /* OMAP4-specific defines */
69 #define OMAP4_UHH_SYSCONFIG_IDLEMODE_CLEAR (3 << 2)
70 #define OMAP4_UHH_SYSCONFIG_NOIDLE (1 << 2)
71 #define OMAP4_UHH_SYSCONFIG_STDBYMODE_CLEAR (3 << 4)
72 #define OMAP4_UHH_SYSCONFIG_NOSTDBY (1 << 4)
73 #define OMAP4_UHH_SYSCONFIG_SOFTRESET (1 << 0)
75 #define OMAP4_P1_MODE_CLEAR (3 << 16)
76 #define OMAP4_P1_MODE_TLL (1 << 16)
77 #define OMAP4_P1_MODE_HSIC (3 << 16)
78 #define OMAP4_P2_MODE_CLEAR (3 << 18)
79 #define OMAP4_P2_MODE_TLL (1 << 18)
80 #define OMAP4_P2_MODE_HSIC (3 << 18)
82 #define OMAP_UHH_DEBUG_CSR (0x44)
84 /* Values of UHH_REVISION - Note: these are not given in the TRM */
85 #define OMAP_USBHS_REV1 0x00000010 /* OMAP3 */
86 #define OMAP_USBHS_REV2 0x50700100 /* OMAP4 */
88 #define is_omap_usbhs_rev1(x) (x->usbhs_rev == OMAP_USBHS_REV1)
89 #define is_omap_usbhs_rev2(x) (x->usbhs_rev == OMAP_USBHS_REV2)
91 #define is_ehci_phy_mode(x) (x == OMAP_EHCI_PORT_MODE_PHY)
92 #define is_ehci_tll_mode(x) (x == OMAP_EHCI_PORT_MODE_TLL)
93 #define is_ehci_hsic_mode(x) (x == OMAP_EHCI_PORT_MODE_HSIC)
96 struct usbhs_hcd_omap
{
98 struct clk
**utmi_clk
;
99 struct clk
**hsic60m_clk
;
100 struct clk
**hsic480m_clk
;
102 struct clk
*xclk60mhsp1_ck
;
103 struct clk
*xclk60mhsp2_ck
;
104 struct clk
*utmi_p1_gfclk
;
105 struct clk
*utmi_p2_gfclk
;
106 struct clk
*init_60m_fclk
;
107 struct clk
*ehci_logic_fck
;
109 void __iomem
*uhh_base
;
111 struct usbhs_omap_platform_data
*pdata
;
115 /*-------------------------------------------------------------------------*/
117 const char usbhs_driver_name
[] = USBHS_DRIVER_NAME
;
118 static u64 usbhs_dmamask
= DMA_BIT_MASK(32);
120 /*-------------------------------------------------------------------------*/
122 static inline void usbhs_write(void __iomem
*base
, u32 reg
, u32 val
)
124 __raw_writel(val
, base
+ reg
);
127 static inline u32
usbhs_read(void __iomem
*base
, u32 reg
)
129 return __raw_readl(base
+ reg
);
132 static inline void usbhs_writeb(void __iomem
*base
, u8 reg
, u8 val
)
134 __raw_writeb(val
, base
+ reg
);
137 static inline u8
usbhs_readb(void __iomem
*base
, u8 reg
)
139 return __raw_readb(base
+ reg
);
142 /*-------------------------------------------------------------------------*/
145 * Map 'enum usbhs_omap_port_mode' found in <linux/platform_data/usb-omap.h>
146 * to the device tree binding portN-mode found in
147 * 'Documentation/devicetree/bindings/mfd/omap-usb-host.txt'
149 static const char * const port_modes
[] = {
150 [OMAP_USBHS_PORT_MODE_UNUSED
] = "",
151 [OMAP_EHCI_PORT_MODE_PHY
] = "ehci-phy",
152 [OMAP_EHCI_PORT_MODE_TLL
] = "ehci-tll",
153 [OMAP_EHCI_PORT_MODE_HSIC
] = "ehci-hsic",
154 [OMAP_OHCI_PORT_MODE_PHY_6PIN_DATSE0
] = "ohci-phy-6pin-datse0",
155 [OMAP_OHCI_PORT_MODE_PHY_6PIN_DPDM
] = "ohci-phy-6pin-dpdm",
156 [OMAP_OHCI_PORT_MODE_PHY_3PIN_DATSE0
] = "ohci-phy-3pin-datse0",
157 [OMAP_OHCI_PORT_MODE_PHY_4PIN_DPDM
] = "ohci-phy-4pin-dpdm",
158 [OMAP_OHCI_PORT_MODE_TLL_6PIN_DATSE0
] = "ohci-tll-6pin-datse0",
159 [OMAP_OHCI_PORT_MODE_TLL_6PIN_DPDM
] = "ohci-tll-6pin-dpdm",
160 [OMAP_OHCI_PORT_MODE_TLL_3PIN_DATSE0
] = "ohci-tll-3pin-datse0",
161 [OMAP_OHCI_PORT_MODE_TLL_4PIN_DPDM
] = "ohci-tll-4pin-dpdm",
162 [OMAP_OHCI_PORT_MODE_TLL_2PIN_DATSE0
] = "ohci-tll-2pin-datse0",
163 [OMAP_OHCI_PORT_MODE_TLL_2PIN_DPDM
] = "ohci-tll-2pin-dpdm",
167 * omap_usbhs_get_dt_port_mode - Get the 'enum usbhs_omap_port_mode'
168 * from the port mode string.
169 * @mode: The port mode string, usually obtained from device tree.
171 * The function returns the 'enum usbhs_omap_port_mode' that matches the
172 * provided port mode string as per the port_modes table.
173 * If no match is found it returns -ENODEV
175 static const int omap_usbhs_get_dt_port_mode(const char *mode
)
179 for (i
= 0; i
< ARRAY_SIZE(port_modes
); i
++) {
180 if (!strcmp(mode
, port_modes
[i
]))
187 static struct platform_device
*omap_usbhs_alloc_child(const char *name
,
188 struct resource
*res
, int num_resources
, void *pdata
,
189 size_t pdata_size
, struct device
*dev
)
191 struct platform_device
*child
;
194 child
= platform_device_alloc(name
, 0);
197 dev_err(dev
, "platform_device_alloc %s failed\n", name
);
201 ret
= platform_device_add_resources(child
, res
, num_resources
);
203 dev_err(dev
, "platform_device_add_resources failed\n");
207 ret
= platform_device_add_data(child
, pdata
, pdata_size
);
209 dev_err(dev
, "platform_device_add_data failed\n");
213 child
->dev
.dma_mask
= &usbhs_dmamask
;
214 dma_set_coherent_mask(&child
->dev
, DMA_BIT_MASK(32));
215 child
->dev
.parent
= dev
;
217 ret
= platform_device_add(child
);
219 dev_err(dev
, "platform_device_add failed\n");
226 platform_device_put(child
);
232 static int omap_usbhs_alloc_children(struct platform_device
*pdev
)
234 struct device
*dev
= &pdev
->dev
;
235 struct usbhs_omap_platform_data
*pdata
= dev
->platform_data
;
236 struct platform_device
*ehci
;
237 struct platform_device
*ohci
;
238 struct resource
*res
;
239 struct resource resources
[2];
242 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "ehci");
244 dev_err(dev
, "EHCI get resource IORESOURCE_MEM failed\n");
250 res
= platform_get_resource_byname(pdev
, IORESOURCE_IRQ
, "ehci-irq");
252 dev_err(dev
, " EHCI get resource IORESOURCE_IRQ failed\n");
258 ehci
= omap_usbhs_alloc_child(OMAP_EHCI_DEVICE
, resources
, 2, pdata
,
259 sizeof(*pdata
), dev
);
262 dev_err(dev
, "omap_usbhs_alloc_child failed\n");
267 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "ohci");
269 dev_err(dev
, "OHCI get resource IORESOURCE_MEM failed\n");
275 res
= platform_get_resource_byname(pdev
, IORESOURCE_IRQ
, "ohci-irq");
277 dev_err(dev
, "OHCI get resource IORESOURCE_IRQ failed\n");
283 ohci
= omap_usbhs_alloc_child(OMAP_OHCI_DEVICE
, resources
, 2, pdata
,
284 sizeof(*pdata
), dev
);
286 dev_err(dev
, "omap_usbhs_alloc_child failed\n");
294 platform_device_unregister(ehci
);
300 static bool is_ohci_port(enum usbhs_omap_port_mode pmode
)
303 case OMAP_OHCI_PORT_MODE_PHY_6PIN_DATSE0
:
304 case OMAP_OHCI_PORT_MODE_PHY_6PIN_DPDM
:
305 case OMAP_OHCI_PORT_MODE_PHY_3PIN_DATSE0
:
306 case OMAP_OHCI_PORT_MODE_PHY_4PIN_DPDM
:
307 case OMAP_OHCI_PORT_MODE_TLL_6PIN_DATSE0
:
308 case OMAP_OHCI_PORT_MODE_TLL_6PIN_DPDM
:
309 case OMAP_OHCI_PORT_MODE_TLL_3PIN_DATSE0
:
310 case OMAP_OHCI_PORT_MODE_TLL_4PIN_DPDM
:
311 case OMAP_OHCI_PORT_MODE_TLL_2PIN_DATSE0
:
312 case OMAP_OHCI_PORT_MODE_TLL_2PIN_DPDM
:
320 static int usbhs_runtime_resume(struct device
*dev
)
322 struct usbhs_hcd_omap
*omap
= dev_get_drvdata(dev
);
323 struct usbhs_omap_platform_data
*pdata
= omap
->pdata
;
326 dev_dbg(dev
, "usbhs_runtime_resume\n");
328 omap_tll_enable(pdata
);
330 if (!IS_ERR(omap
->ehci_logic_fck
))
331 clk_enable(omap
->ehci_logic_fck
);
333 for (i
= 0; i
< omap
->nports
; i
++) {
334 switch (pdata
->port_mode
[i
]) {
335 case OMAP_EHCI_PORT_MODE_HSIC
:
336 if (!IS_ERR(omap
->hsic60m_clk
[i
])) {
337 r
= clk_enable(omap
->hsic60m_clk
[i
]);
340 "Can't enable port %d hsic60m clk:%d\n",
345 if (!IS_ERR(omap
->hsic480m_clk
[i
])) {
346 r
= clk_enable(omap
->hsic480m_clk
[i
]);
349 "Can't enable port %d hsic480m clk:%d\n",
353 /* Fall through as HSIC mode needs utmi_clk */
355 case OMAP_EHCI_PORT_MODE_TLL
:
356 if (!IS_ERR(omap
->utmi_clk
[i
])) {
357 r
= clk_enable(omap
->utmi_clk
[i
]);
360 "Can't enable port %d clk : %d\n",
373 static int usbhs_runtime_suspend(struct device
*dev
)
375 struct usbhs_hcd_omap
*omap
= dev_get_drvdata(dev
);
376 struct usbhs_omap_platform_data
*pdata
= omap
->pdata
;
379 dev_dbg(dev
, "usbhs_runtime_suspend\n");
381 for (i
= 0; i
< omap
->nports
; i
++) {
382 switch (pdata
->port_mode
[i
]) {
383 case OMAP_EHCI_PORT_MODE_HSIC
:
384 if (!IS_ERR(omap
->hsic60m_clk
[i
]))
385 clk_disable(omap
->hsic60m_clk
[i
]);
387 if (!IS_ERR(omap
->hsic480m_clk
[i
]))
388 clk_disable(omap
->hsic480m_clk
[i
]);
389 /* Fall through as utmi_clks were used in HSIC mode */
391 case OMAP_EHCI_PORT_MODE_TLL
:
392 if (!IS_ERR(omap
->utmi_clk
[i
]))
393 clk_disable(omap
->utmi_clk
[i
]);
400 if (!IS_ERR(omap
->ehci_logic_fck
))
401 clk_disable(omap
->ehci_logic_fck
);
403 omap_tll_disable(pdata
);
408 static unsigned omap_usbhs_rev1_hostconfig(struct usbhs_hcd_omap
*omap
,
411 struct usbhs_omap_platform_data
*pdata
= omap
->pdata
;
414 for (i
= 0; i
< omap
->nports
; i
++) {
415 switch (pdata
->port_mode
[i
]) {
416 case OMAP_USBHS_PORT_MODE_UNUSED
:
417 reg
&= ~(OMAP_UHH_HOSTCONFIG_P1_CONNECT_STATUS
<< i
);
419 case OMAP_EHCI_PORT_MODE_PHY
:
420 if (pdata
->single_ulpi_bypass
)
424 reg
&= ~OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS
;
426 reg
&= ~(OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS
430 if (pdata
->single_ulpi_bypass
)
434 reg
|= OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS
;
436 reg
|= OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS
442 if (pdata
->single_ulpi_bypass
) {
443 /* bypass ULPI only if none of the ports use PHY mode */
444 reg
|= OMAP_UHH_HOSTCONFIG_ULPI_BYPASS
;
446 for (i
= 0; i
< omap
->nports
; i
++) {
447 if (is_ehci_phy_mode(pdata
->port_mode
[i
])) {
448 reg
&= OMAP_UHH_HOSTCONFIG_ULPI_BYPASS
;
457 static unsigned omap_usbhs_rev2_hostconfig(struct usbhs_hcd_omap
*omap
,
460 struct usbhs_omap_platform_data
*pdata
= omap
->pdata
;
463 for (i
= 0; i
< omap
->nports
; i
++) {
464 /* Clear port mode fields for PHY mode */
465 reg
&= ~(OMAP4_P1_MODE_CLEAR
<< 2 * i
);
467 if (is_ehci_tll_mode(pdata
->port_mode
[i
]) ||
468 (is_ohci_port(pdata
->port_mode
[i
])))
469 reg
|= OMAP4_P1_MODE_TLL
<< 2 * i
;
470 else if (is_ehci_hsic_mode(pdata
->port_mode
[i
]))
471 reg
|= OMAP4_P1_MODE_HSIC
<< 2 * i
;
477 static void omap_usbhs_init(struct device
*dev
)
479 struct usbhs_hcd_omap
*omap
= dev_get_drvdata(dev
);
482 dev_dbg(dev
, "starting TI HSUSB Controller\n");
484 pm_runtime_get_sync(dev
);
486 reg
= usbhs_read(omap
->uhh_base
, OMAP_UHH_HOSTCONFIG
);
487 /* setup ULPI bypass and burst configurations */
488 reg
|= (OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN
489 | OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN
490 | OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN
);
491 reg
|= OMAP4_UHH_HOSTCONFIG_APP_START_CLK
;
492 reg
&= ~OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN
;
494 switch (omap
->usbhs_rev
) {
495 case OMAP_USBHS_REV1
:
496 reg
= omap_usbhs_rev1_hostconfig(omap
, reg
);
499 case OMAP_USBHS_REV2
:
500 reg
= omap_usbhs_rev2_hostconfig(omap
, reg
);
503 default: /* newer revisions */
504 reg
= omap_usbhs_rev2_hostconfig(omap
, reg
);
508 usbhs_write(omap
->uhh_base
, OMAP_UHH_HOSTCONFIG
, reg
);
509 dev_dbg(dev
, "UHH setup done, uhh_hostconfig=%x\n", reg
);
511 pm_runtime_put_sync(dev
);
514 static int usbhs_omap_get_dt_pdata(struct device
*dev
,
515 struct usbhs_omap_platform_data
*pdata
)
518 struct device_node
*node
= dev
->of_node
;
520 ret
= of_property_read_u32(node
, "num-ports", &pdata
->nports
);
524 if (pdata
->nports
> OMAP3_HS_USB_PORTS
) {
525 dev_warn(dev
, "Too many num_ports <%d> in device tree. Max %d\n",
526 pdata
->nports
, OMAP3_HS_USB_PORTS
);
531 for (i
= 0; i
< OMAP3_HS_USB_PORTS
; i
++) {
535 pdata
->port_mode
[i
] = OMAP_USBHS_PORT_MODE_UNUSED
;
537 snprintf(prop
, sizeof(prop
), "port%d-mode", i
+ 1);
538 ret
= of_property_read_string(node
, prop
, &mode
);
542 ret
= omap_usbhs_get_dt_port_mode(mode
);
544 dev_warn(dev
, "Invalid port%d-mode \"%s\" in device tree\n",
549 dev_dbg(dev
, "port%d-mode: %s -> %d\n", i
, mode
, ret
);
550 pdata
->port_mode
[i
] = ret
;
554 pdata
->single_ulpi_bypass
= of_property_read_bool(node
,
555 "single-ulpi-bypass");
560 static struct of_device_id usbhs_child_match_table
[] = {
561 { .compatible
= "ti,omap-ehci", },
562 { .compatible
= "ti,omap-ohci", },
567 * usbhs_omap_probe - initialize TI-based HCDs
569 * Allocates basic resources for this USB host controller.
571 static int usbhs_omap_probe(struct platform_device
*pdev
)
573 struct device
*dev
= &pdev
->dev
;
574 struct usbhs_omap_platform_data
*pdata
= dev
->platform_data
;
575 struct usbhs_hcd_omap
*omap
;
576 struct resource
*res
;
582 /* For DT boot we populate platform data from OF node */
583 pdata
= devm_kzalloc(dev
, sizeof(*pdata
), GFP_KERNEL
);
587 ret
= usbhs_omap_get_dt_pdata(dev
, pdata
);
591 dev
->platform_data
= pdata
;
595 dev_err(dev
, "Missing platform data\n");
599 if (pdata
->nports
> OMAP3_HS_USB_PORTS
) {
600 dev_info(dev
, "Too many num_ports <%d> in platform_data. Max %d\n",
601 pdata
->nports
, OMAP3_HS_USB_PORTS
);
605 omap
= devm_kzalloc(dev
, sizeof(*omap
), GFP_KERNEL
);
607 dev_err(dev
, "Memory allocation failed\n");
611 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
612 omap
->uhh_base
= devm_ioremap_resource(dev
, res
);
613 if (IS_ERR(omap
->uhh_base
))
614 return PTR_ERR(omap
->uhh_base
);
618 /* Initialize the TLL subsystem */
619 omap_tll_init(pdata
);
621 pm_runtime_enable(dev
);
623 platform_set_drvdata(pdev
, omap
);
624 pm_runtime_get_sync(dev
);
626 omap
->usbhs_rev
= usbhs_read(omap
->uhh_base
, OMAP_UHH_REVISION
);
628 /* we need to call runtime suspend before we update omap->nports
629 * to prevent unbalanced clk_disable()
631 pm_runtime_put_sync(dev
);
634 * If platform data contains nports then use that
635 * else make out number of ports from USBHS revision
638 omap
->nports
= pdata
->nports
;
640 switch (omap
->usbhs_rev
) {
641 case OMAP_USBHS_REV1
:
644 case OMAP_USBHS_REV2
:
648 omap
->nports
= OMAP3_HS_USB_PORTS
;
650 "USB HOST Rev:0x%d not recognized, assuming %d ports\n",
651 omap
->usbhs_rev
, omap
->nports
);
654 pdata
->nports
= omap
->nports
;
657 i
= sizeof(struct clk
*) * omap
->nports
;
658 omap
->utmi_clk
= devm_kzalloc(dev
, i
, GFP_KERNEL
);
659 omap
->hsic480m_clk
= devm_kzalloc(dev
, i
, GFP_KERNEL
);
660 omap
->hsic60m_clk
= devm_kzalloc(dev
, i
, GFP_KERNEL
);
662 if (!omap
->utmi_clk
|| !omap
->hsic480m_clk
|| !omap
->hsic60m_clk
) {
663 dev_err(dev
, "Memory allocation failed\n");
668 need_logic_fck
= false;
669 for (i
= 0; i
< omap
->nports
; i
++) {
670 if (is_ehci_phy_mode(i
) || is_ehci_tll_mode(i
) ||
671 is_ehci_hsic_mode(i
))
672 need_logic_fck
|= true;
675 omap
->ehci_logic_fck
= ERR_PTR(-EINVAL
);
676 if (need_logic_fck
) {
677 omap
->ehci_logic_fck
= clk_get(dev
, "ehci_logic_fck");
678 if (IS_ERR(omap
->ehci_logic_fck
)) {
679 ret
= PTR_ERR(omap
->ehci_logic_fck
);
680 dev_dbg(dev
, "ehci_logic_fck failed:%d\n", ret
);
684 omap
->utmi_p1_gfclk
= clk_get(dev
, "utmi_p1_gfclk");
685 if (IS_ERR(omap
->utmi_p1_gfclk
)) {
686 ret
= PTR_ERR(omap
->utmi_p1_gfclk
);
687 dev_err(dev
, "utmi_p1_gfclk failed error:%d\n", ret
);
691 omap
->utmi_p2_gfclk
= clk_get(dev
, "utmi_p2_gfclk");
692 if (IS_ERR(omap
->utmi_p2_gfclk
)) {
693 ret
= PTR_ERR(omap
->utmi_p2_gfclk
);
694 dev_err(dev
, "utmi_p2_gfclk failed error:%d\n", ret
);
698 omap
->xclk60mhsp1_ck
= clk_get(dev
, "xclk60mhsp1_ck");
699 if (IS_ERR(omap
->xclk60mhsp1_ck
)) {
700 ret
= PTR_ERR(omap
->xclk60mhsp1_ck
);
701 dev_err(dev
, "xclk60mhsp1_ck failed error:%d\n", ret
);
702 goto err_xclk60mhsp1
;
705 omap
->xclk60mhsp2_ck
= clk_get(dev
, "xclk60mhsp2_ck");
706 if (IS_ERR(omap
->xclk60mhsp2_ck
)) {
707 ret
= PTR_ERR(omap
->xclk60mhsp2_ck
);
708 dev_err(dev
, "xclk60mhsp2_ck failed error:%d\n", ret
);
709 goto err_xclk60mhsp2
;
712 omap
->init_60m_fclk
= clk_get(dev
, "init_60m_fclk");
713 if (IS_ERR(omap
->init_60m_fclk
)) {
714 ret
= PTR_ERR(omap
->init_60m_fclk
);
715 dev_err(dev
, "init_60m_fclk failed error:%d\n", ret
);
719 for (i
= 0; i
< omap
->nports
; i
++) {
722 /* clock names are indexed from 1*/
723 snprintf(clkname
, sizeof(clkname
),
724 "usb_host_hs_utmi_p%d_clk", i
+ 1);
726 /* If a clock is not found we won't bail out as not all
727 * platforms have all clocks and we can function without
730 omap
->utmi_clk
[i
] = clk_get(dev
, clkname
);
731 if (IS_ERR(omap
->utmi_clk
[i
]))
732 dev_dbg(dev
, "Failed to get clock : %s : %ld\n",
733 clkname
, PTR_ERR(omap
->utmi_clk
[i
]));
735 snprintf(clkname
, sizeof(clkname
),
736 "usb_host_hs_hsic480m_p%d_clk", i
+ 1);
737 omap
->hsic480m_clk
[i
] = clk_get(dev
, clkname
);
738 if (IS_ERR(omap
->hsic480m_clk
[i
]))
739 dev_dbg(dev
, "Failed to get clock : %s : %ld\n",
740 clkname
, PTR_ERR(omap
->hsic480m_clk
[i
]));
742 snprintf(clkname
, sizeof(clkname
),
743 "usb_host_hs_hsic60m_p%d_clk", i
+ 1);
744 omap
->hsic60m_clk
[i
] = clk_get(dev
, clkname
);
745 if (IS_ERR(omap
->hsic60m_clk
[i
]))
746 dev_dbg(dev
, "Failed to get clock : %s : %ld\n",
747 clkname
, PTR_ERR(omap
->hsic60m_clk
[i
]));
750 if (is_ehci_phy_mode(pdata
->port_mode
[0])) {
751 /* for OMAP3, clk_set_parent fails */
752 ret
= clk_set_parent(omap
->utmi_p1_gfclk
,
753 omap
->xclk60mhsp1_ck
);
755 dev_dbg(dev
, "xclk60mhsp1_ck set parent failed: %d\n",
757 } else if (is_ehci_tll_mode(pdata
->port_mode
[0])) {
758 ret
= clk_set_parent(omap
->utmi_p1_gfclk
,
759 omap
->init_60m_fclk
);
761 dev_dbg(dev
, "P0 init_60m_fclk set parent failed: %d\n",
765 if (is_ehci_phy_mode(pdata
->port_mode
[1])) {
766 ret
= clk_set_parent(omap
->utmi_p2_gfclk
,
767 omap
->xclk60mhsp2_ck
);
769 dev_dbg(dev
, "xclk60mhsp2_ck set parent failed: %d\n",
771 } else if (is_ehci_tll_mode(pdata
->port_mode
[1])) {
772 ret
= clk_set_parent(omap
->utmi_p2_gfclk
,
773 omap
->init_60m_fclk
);
775 dev_dbg(dev
, "P1 init_60m_fclk set parent failed: %d\n",
779 omap_usbhs_init(dev
);
782 ret
= of_platform_populate(dev
->of_node
,
783 usbhs_child_match_table
, NULL
, dev
);
786 dev_err(dev
, "Failed to create DT children: %d\n", ret
);
791 ret
= omap_usbhs_alloc_children(pdev
);
793 dev_err(dev
, "omap_usbhs_alloc_children failed: %d\n",
802 for (i
= 0; i
< omap
->nports
; i
++) {
803 if (!IS_ERR(omap
->utmi_clk
[i
]))
804 clk_put(omap
->utmi_clk
[i
]);
805 if (!IS_ERR(omap
->hsic60m_clk
[i
]))
806 clk_put(omap
->hsic60m_clk
[i
]);
807 if (!IS_ERR(omap
->hsic480m_clk
[i
]))
808 clk_put(omap
->hsic480m_clk
[i
]);
811 clk_put(omap
->init_60m_fclk
);
814 clk_put(omap
->xclk60mhsp2_ck
);
817 clk_put(omap
->xclk60mhsp1_ck
);
820 clk_put(omap
->utmi_p2_gfclk
);
823 clk_put(omap
->utmi_p1_gfclk
);
826 if (!IS_ERR(omap
->ehci_logic_fck
))
827 clk_put(omap
->ehci_logic_fck
);
830 pm_runtime_disable(dev
);
835 static int usbhs_omap_remove_child(struct device
*dev
, void *data
)
837 dev_info(dev
, "unregistering\n");
838 platform_device_unregister(to_platform_device(dev
));
843 * usbhs_omap_remove - shutdown processing for UHH & TLL HCDs
844 * @pdev: USB Host Controller being removed
846 * Reverses the effect of usbhs_omap_probe().
848 static int usbhs_omap_remove(struct platform_device
*pdev
)
850 struct usbhs_hcd_omap
*omap
= platform_get_drvdata(pdev
);
853 for (i
= 0; i
< omap
->nports
; i
++) {
854 if (!IS_ERR(omap
->utmi_clk
[i
]))
855 clk_put(omap
->utmi_clk
[i
]);
856 if (!IS_ERR(omap
->hsic60m_clk
[i
]))
857 clk_put(omap
->hsic60m_clk
[i
]);
858 if (!IS_ERR(omap
->hsic480m_clk
[i
]))
859 clk_put(omap
->hsic480m_clk
[i
]);
862 clk_put(omap
->init_60m_fclk
);
863 clk_put(omap
->utmi_p1_gfclk
);
864 clk_put(omap
->utmi_p2_gfclk
);
865 clk_put(omap
->xclk60mhsp2_ck
);
866 clk_put(omap
->xclk60mhsp1_ck
);
868 if (!IS_ERR(omap
->ehci_logic_fck
))
869 clk_put(omap
->ehci_logic_fck
);
871 pm_runtime_disable(&pdev
->dev
);
873 /* remove children */
874 device_for_each_child(&pdev
->dev
, NULL
, usbhs_omap_remove_child
);
878 static const struct dev_pm_ops usbhsomap_dev_pm_ops
= {
879 .runtime_suspend
= usbhs_runtime_suspend
,
880 .runtime_resume
= usbhs_runtime_resume
,
883 static const struct of_device_id usbhs_omap_dt_ids
[] = {
884 { .compatible
= "ti,usbhs-host" },
888 MODULE_DEVICE_TABLE(of
, usbhs_omap_dt_ids
);
891 static struct platform_driver usbhs_omap_driver
= {
893 .name
= (char *)usbhs_driver_name
,
894 .owner
= THIS_MODULE
,
895 .pm
= &usbhsomap_dev_pm_ops
,
896 .of_match_table
= of_match_ptr(usbhs_omap_dt_ids
),
898 .remove
= usbhs_omap_remove
,
901 MODULE_AUTHOR("Keshava Munegowda <keshava_mgowda@ti.com>");
902 MODULE_AUTHOR("Roger Quadros <rogerq@ti.com>");
903 MODULE_ALIAS("platform:" USBHS_DRIVER_NAME
);
904 MODULE_LICENSE("GPL v2");
905 MODULE_DESCRIPTION("usb host common core driver for omap EHCI and OHCI");
907 static int __init
omap_usbhs_drvinit(void)
909 return platform_driver_probe(&usbhs_omap_driver
, usbhs_omap_probe
);
913 * init before ehci and ohci drivers;
914 * The usbhs core driver should be initialized much before
915 * the omap ehci and ohci probe functions are called.
916 * This usbhs core driver should be initialized after
919 fs_initcall_sync(omap_usbhs_drvinit
);
921 static void __exit
omap_usbhs_drvexit(void)
923 platform_driver_unregister(&usbhs_omap_driver
);
925 module_exit(omap_usbhs_drvexit
);