779588be8ab2d4e99d148d47c9a853606321269e
[profile/ivi/kernel-x86-ivi.git] / drivers / mfd / omap-usb-host.c
1 /**
2  * omap-usb-host.c - The USBHS core driver for OMAP EHCI & OHCI
3  *
4  * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com
5  * Author: Keshava Munegowda <keshava_mgowda@ti.com>
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2  of
9  * the License as published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/types.h>
22 #include <linux/slab.h>
23 #include <linux/delay.h>
24 #include <linux/clk.h>
25 #include <linux/dma-mapping.h>
26 #include <linux/spinlock.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>
31
32 #include "omap-usb.h"
33
34 #define USBHS_DRIVER_NAME       "usbhs_omap"
35 #define OMAP_EHCI_DEVICE        "ehci-omap"
36 #define OMAP_OHCI_DEVICE        "ohci-omap3"
37
38 /* OMAP USBHOST Register addresses  */
39
40 /* UHH Register Set */
41 #define OMAP_UHH_REVISION                               (0x00)
42 #define OMAP_UHH_SYSCONFIG                              (0x10)
43 #define OMAP_UHH_SYSCONFIG_MIDLEMODE                    (1 << 12)
44 #define OMAP_UHH_SYSCONFIG_CACTIVITY                    (1 << 8)
45 #define OMAP_UHH_SYSCONFIG_SIDLEMODE                    (1 << 3)
46 #define OMAP_UHH_SYSCONFIG_ENAWAKEUP                    (1 << 2)
47 #define OMAP_UHH_SYSCONFIG_SOFTRESET                    (1 << 1)
48 #define OMAP_UHH_SYSCONFIG_AUTOIDLE                     (1 << 0)
49
50 #define OMAP_UHH_SYSSTATUS                              (0x14)
51 #define OMAP_UHH_HOSTCONFIG                             (0x40)
52 #define OMAP_UHH_HOSTCONFIG_ULPI_BYPASS                 (1 << 0)
53 #define OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS              (1 << 0)
54 #define OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS              (1 << 11)
55 #define OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS              (1 << 12)
56 #define OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN              (1 << 2)
57 #define OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN              (1 << 3)
58 #define OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN             (1 << 4)
59 #define OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN              (1 << 5)
60 #define OMAP_UHH_HOSTCONFIG_P1_CONNECT_STATUS           (1 << 8)
61 #define OMAP_UHH_HOSTCONFIG_P2_CONNECT_STATUS           (1 << 9)
62 #define OMAP_UHH_HOSTCONFIG_P3_CONNECT_STATUS           (1 << 10)
63 #define OMAP4_UHH_HOSTCONFIG_APP_START_CLK              (1 << 31)
64
65 /* OMAP4-specific defines */
66 #define OMAP4_UHH_SYSCONFIG_IDLEMODE_CLEAR              (3 << 2)
67 #define OMAP4_UHH_SYSCONFIG_NOIDLE                      (1 << 2)
68 #define OMAP4_UHH_SYSCONFIG_STDBYMODE_CLEAR             (3 << 4)
69 #define OMAP4_UHH_SYSCONFIG_NOSTDBY                     (1 << 4)
70 #define OMAP4_UHH_SYSCONFIG_SOFTRESET                   (1 << 0)
71
72 #define OMAP4_P1_MODE_CLEAR                             (3 << 16)
73 #define OMAP4_P1_MODE_TLL                               (1 << 16)
74 #define OMAP4_P1_MODE_HSIC                              (3 << 16)
75 #define OMAP4_P2_MODE_CLEAR                             (3 << 18)
76 #define OMAP4_P2_MODE_TLL                               (1 << 18)
77 #define OMAP4_P2_MODE_HSIC                              (3 << 18)
78
79 #define OMAP_UHH_DEBUG_CSR                              (0x44)
80
81 /* Values of UHH_REVISION - Note: these are not given in the TRM */
82 #define OMAP_USBHS_REV1         0x00000010      /* OMAP3 */
83 #define OMAP_USBHS_REV2         0x50700100      /* OMAP4 */
84
85 #define is_omap_usbhs_rev1(x)   (x->usbhs_rev == OMAP_USBHS_REV1)
86 #define is_omap_usbhs_rev2(x)   (x->usbhs_rev == OMAP_USBHS_REV2)
87
88 #define is_ehci_phy_mode(x)     (x == OMAP_EHCI_PORT_MODE_PHY)
89 #define is_ehci_tll_mode(x)     (x == OMAP_EHCI_PORT_MODE_TLL)
90 #define is_ehci_hsic_mode(x)    (x == OMAP_EHCI_PORT_MODE_HSIC)
91
92
93 struct usbhs_hcd_omap {
94         int                             nports;
95
96         struct clk                      *xclk60mhsp1_ck;
97         struct clk                      *xclk60mhsp2_ck;
98         struct clk                      *utmi_p1_fck;
99         struct clk                      *usbhost_p1_fck;
100         struct clk                      *utmi_p2_fck;
101         struct clk                      *usbhost_p2_fck;
102         struct clk                      *init_60m_fclk;
103         struct clk                      *ehci_logic_fck;
104
105         void __iomem                    *uhh_base;
106
107         struct usbhs_omap_platform_data *pdata;
108
109         u32                             usbhs_rev;
110         spinlock_t                      lock;
111 };
112 /*-------------------------------------------------------------------------*/
113
114 const char usbhs_driver_name[] = USBHS_DRIVER_NAME;
115 static u64 usbhs_dmamask = DMA_BIT_MASK(32);
116
117 /*-------------------------------------------------------------------------*/
118
119 static inline void usbhs_write(void __iomem *base, u32 reg, u32 val)
120 {
121         __raw_writel(val, base + reg);
122 }
123
124 static inline u32 usbhs_read(void __iomem *base, u32 reg)
125 {
126         return __raw_readl(base + reg);
127 }
128
129 static inline void usbhs_writeb(void __iomem *base, u8 reg, u8 val)
130 {
131         __raw_writeb(val, base + reg);
132 }
133
134 static inline u8 usbhs_readb(void __iomem *base, u8 reg)
135 {
136         return __raw_readb(base + reg);
137 }
138
139 /*-------------------------------------------------------------------------*/
140
141 static struct platform_device *omap_usbhs_alloc_child(const char *name,
142                         struct resource *res, int num_resources, void *pdata,
143                         size_t pdata_size, struct device *dev)
144 {
145         struct platform_device  *child;
146         int                     ret;
147
148         child = platform_device_alloc(name, 0);
149
150         if (!child) {
151                 dev_err(dev, "platform_device_alloc %s failed\n", name);
152                 goto err_end;
153         }
154
155         ret = platform_device_add_resources(child, res, num_resources);
156         if (ret) {
157                 dev_err(dev, "platform_device_add_resources failed\n");
158                 goto err_alloc;
159         }
160
161         ret = platform_device_add_data(child, pdata, pdata_size);
162         if (ret) {
163                 dev_err(dev, "platform_device_add_data failed\n");
164                 goto err_alloc;
165         }
166
167         child->dev.dma_mask             = &usbhs_dmamask;
168         dma_set_coherent_mask(&child->dev, DMA_BIT_MASK(32));
169         child->dev.parent               = dev;
170
171         ret = platform_device_add(child);
172         if (ret) {
173                 dev_err(dev, "platform_device_add failed\n");
174                 goto err_alloc;
175         }
176
177         return child;
178
179 err_alloc:
180         platform_device_put(child);
181
182 err_end:
183         return NULL;
184 }
185
186 static int omap_usbhs_alloc_children(struct platform_device *pdev)
187 {
188         struct device                           *dev = &pdev->dev;
189         struct usbhs_omap_platform_data         *pdata = dev->platform_data;
190         struct platform_device                  *ehci;
191         struct platform_device                  *ohci;
192         struct resource                         *res;
193         struct resource                         resources[2];
194         int                                     ret;
195
196         res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ehci");
197         if (!res) {
198                 dev_err(dev, "EHCI get resource IORESOURCE_MEM failed\n");
199                 ret = -ENODEV;
200                 goto err_end;
201         }
202         resources[0] = *res;
203
204         res = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "ehci-irq");
205         if (!res) {
206                 dev_err(dev, " EHCI get resource IORESOURCE_IRQ failed\n");
207                 ret = -ENODEV;
208                 goto err_end;
209         }
210         resources[1] = *res;
211
212         ehci = omap_usbhs_alloc_child(OMAP_EHCI_DEVICE, resources, 2, pdata,
213                 sizeof(*pdata), dev);
214
215         if (!ehci) {
216                 dev_err(dev, "omap_usbhs_alloc_child failed\n");
217                 ret = -ENOMEM;
218                 goto err_end;
219         }
220
221         res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ohci");
222         if (!res) {
223                 dev_err(dev, "OHCI get resource IORESOURCE_MEM failed\n");
224                 ret = -ENODEV;
225                 goto err_ehci;
226         }
227         resources[0] = *res;
228
229         res = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "ohci-irq");
230         if (!res) {
231                 dev_err(dev, "OHCI get resource IORESOURCE_IRQ failed\n");
232                 ret = -ENODEV;
233                 goto err_ehci;
234         }
235         resources[1] = *res;
236
237         ohci = omap_usbhs_alloc_child(OMAP_OHCI_DEVICE, resources, 2, pdata,
238                 sizeof(*pdata), dev);
239         if (!ohci) {
240                 dev_err(dev, "omap_usbhs_alloc_child failed\n");
241                 ret = -ENOMEM;
242                 goto err_ehci;
243         }
244
245         return 0;
246
247 err_ehci:
248         platform_device_unregister(ehci);
249
250 err_end:
251         return ret;
252 }
253
254 static bool is_ohci_port(enum usbhs_omap_port_mode pmode)
255 {
256         switch (pmode) {
257         case OMAP_OHCI_PORT_MODE_PHY_6PIN_DATSE0:
258         case OMAP_OHCI_PORT_MODE_PHY_6PIN_DPDM:
259         case OMAP_OHCI_PORT_MODE_PHY_3PIN_DATSE0:
260         case OMAP_OHCI_PORT_MODE_PHY_4PIN_DPDM:
261         case OMAP_OHCI_PORT_MODE_TLL_6PIN_DATSE0:
262         case OMAP_OHCI_PORT_MODE_TLL_6PIN_DPDM:
263         case OMAP_OHCI_PORT_MODE_TLL_3PIN_DATSE0:
264         case OMAP_OHCI_PORT_MODE_TLL_4PIN_DPDM:
265         case OMAP_OHCI_PORT_MODE_TLL_2PIN_DATSE0:
266         case OMAP_OHCI_PORT_MODE_TLL_2PIN_DPDM:
267                 return true;
268
269         default:
270                 return false;
271         }
272 }
273
274 static int usbhs_runtime_resume(struct device *dev)
275 {
276         struct usbhs_hcd_omap           *omap = dev_get_drvdata(dev);
277         struct usbhs_omap_platform_data *pdata = omap->pdata;
278         unsigned long                   flags;
279
280         dev_dbg(dev, "usbhs_runtime_resume\n");
281
282         omap_tll_enable();
283         spin_lock_irqsave(&omap->lock, flags);
284
285         if (omap->ehci_logic_fck && !IS_ERR(omap->ehci_logic_fck))
286                 clk_enable(omap->ehci_logic_fck);
287
288         if (is_ehci_tll_mode(pdata->port_mode[0]))
289                 clk_enable(omap->usbhost_p1_fck);
290         if (is_ehci_tll_mode(pdata->port_mode[1]))
291                 clk_enable(omap->usbhost_p2_fck);
292
293         clk_enable(omap->utmi_p1_fck);
294         clk_enable(omap->utmi_p2_fck);
295
296         spin_unlock_irqrestore(&omap->lock, flags);
297
298         return 0;
299 }
300
301 static int usbhs_runtime_suspend(struct device *dev)
302 {
303         struct usbhs_hcd_omap           *omap = dev_get_drvdata(dev);
304         struct usbhs_omap_platform_data *pdata = omap->pdata;
305         unsigned long                   flags;
306
307         dev_dbg(dev, "usbhs_runtime_suspend\n");
308
309         spin_lock_irqsave(&omap->lock, flags);
310
311         if (is_ehci_tll_mode(pdata->port_mode[0]))
312                 clk_disable(omap->usbhost_p1_fck);
313         if (is_ehci_tll_mode(pdata->port_mode[1]))
314                 clk_disable(omap->usbhost_p2_fck);
315
316         clk_disable(omap->utmi_p2_fck);
317         clk_disable(omap->utmi_p1_fck);
318
319         if (omap->ehci_logic_fck && !IS_ERR(omap->ehci_logic_fck))
320                 clk_disable(omap->ehci_logic_fck);
321
322         spin_unlock_irqrestore(&omap->lock, flags);
323         omap_tll_disable();
324
325         return 0;
326 }
327
328 static void omap_usbhs_init(struct device *dev)
329 {
330         struct usbhs_hcd_omap           *omap = dev_get_drvdata(dev);
331         struct usbhs_omap_platform_data *pdata = omap->pdata;
332         unsigned long                   flags;
333         unsigned                        reg;
334
335         dev_dbg(dev, "starting TI HSUSB Controller\n");
336
337         if (pdata->phy_reset) {
338                 if (gpio_is_valid(pdata->reset_gpio_port[0]))
339                         gpio_request_one(pdata->reset_gpio_port[0],
340                                          GPIOF_OUT_INIT_LOW, "USB1 PHY reset");
341
342                 if (gpio_is_valid(pdata->reset_gpio_port[1]))
343                         gpio_request_one(pdata->reset_gpio_port[1],
344                                          GPIOF_OUT_INIT_LOW, "USB2 PHY reset");
345
346                 /* Hold the PHY in RESET for enough time till DIR is high */
347                 udelay(10);
348         }
349
350         pm_runtime_get_sync(dev);
351         spin_lock_irqsave(&omap->lock, flags);
352
353         reg = usbhs_read(omap->uhh_base, OMAP_UHH_HOSTCONFIG);
354         /* setup ULPI bypass and burst configurations */
355         reg |= (OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN
356                         | OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN
357                         | OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN);
358         reg |= OMAP4_UHH_HOSTCONFIG_APP_START_CLK;
359         reg &= ~OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN;
360
361         if (is_omap_usbhs_rev1(omap)) {
362                 if (pdata->port_mode[0] == OMAP_USBHS_PORT_MODE_UNUSED)
363                         reg &= ~OMAP_UHH_HOSTCONFIG_P1_CONNECT_STATUS;
364                 if (pdata->port_mode[1] == OMAP_USBHS_PORT_MODE_UNUSED)
365                         reg &= ~OMAP_UHH_HOSTCONFIG_P2_CONNECT_STATUS;
366                 if (pdata->port_mode[2] == OMAP_USBHS_PORT_MODE_UNUSED)
367                         reg &= ~OMAP_UHH_HOSTCONFIG_P3_CONNECT_STATUS;
368
369                 /* Bypass the TLL module for PHY mode operation */
370                 if (pdata->single_ulpi_bypass) {
371                         dev_dbg(dev, "OMAP3 ES version <= ES2.1\n");
372                         if (is_ehci_phy_mode(pdata->port_mode[0]) ||
373                                 is_ehci_phy_mode(pdata->port_mode[1]) ||
374                                         is_ehci_phy_mode(pdata->port_mode[2]))
375                                 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_BYPASS;
376                         else
377                                 reg |= OMAP_UHH_HOSTCONFIG_ULPI_BYPASS;
378                 } else {
379                         dev_dbg(dev, "OMAP3 ES version > ES2.1\n");
380                         if (is_ehci_phy_mode(pdata->port_mode[0]))
381                                 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS;
382                         else
383                                 reg |= OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS;
384                         if (is_ehci_phy_mode(pdata->port_mode[1]))
385                                 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS;
386                         else
387                                 reg |= OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS;
388                         if (is_ehci_phy_mode(pdata->port_mode[2]))
389                                 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS;
390                         else
391                                 reg |= OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS;
392                 }
393         } else if (is_omap_usbhs_rev2(omap)) {
394                 /* Clear port mode fields for PHY mode*/
395                 reg &= ~OMAP4_P1_MODE_CLEAR;
396                 reg &= ~OMAP4_P2_MODE_CLEAR;
397
398                 if (is_ehci_tll_mode(pdata->port_mode[0]) ||
399                         (is_ohci_port(pdata->port_mode[0])))
400                         reg |= OMAP4_P1_MODE_TLL;
401                 else if (is_ehci_hsic_mode(pdata->port_mode[0]))
402                         reg |= OMAP4_P1_MODE_HSIC;
403
404                 if (is_ehci_tll_mode(pdata->port_mode[1]) ||
405                         (is_ohci_port(pdata->port_mode[1])))
406                         reg |= OMAP4_P2_MODE_TLL;
407                 else if (is_ehci_hsic_mode(pdata->port_mode[1]))
408                         reg |= OMAP4_P2_MODE_HSIC;
409         }
410
411         usbhs_write(omap->uhh_base, OMAP_UHH_HOSTCONFIG, reg);
412         dev_dbg(dev, "UHH setup done, uhh_hostconfig=%x\n", reg);
413
414         spin_unlock_irqrestore(&omap->lock, flags);
415
416         pm_runtime_put_sync(dev);
417         if (pdata->phy_reset) {
418                 /* Hold the PHY in RESET for enough time till
419                  * PHY is settled and ready
420                  */
421                 udelay(10);
422
423                 if (gpio_is_valid(pdata->reset_gpio_port[0]))
424                         gpio_set_value_cansleep
425                                 (pdata->reset_gpio_port[0], 1);
426
427                 if (gpio_is_valid(pdata->reset_gpio_port[1]))
428                         gpio_set_value_cansleep
429                                 (pdata->reset_gpio_port[1], 1);
430         }
431 }
432
433 static void omap_usbhs_deinit(struct device *dev)
434 {
435         struct usbhs_hcd_omap           *omap = dev_get_drvdata(dev);
436         struct usbhs_omap_platform_data *pdata = omap->pdata;
437
438         if (pdata->phy_reset) {
439                 if (gpio_is_valid(pdata->reset_gpio_port[0]))
440                         gpio_free(pdata->reset_gpio_port[0]);
441
442                 if (gpio_is_valid(pdata->reset_gpio_port[1]))
443                         gpio_free(pdata->reset_gpio_port[1]);
444         }
445 }
446
447
448 /**
449  * usbhs_omap_probe - initialize TI-based HCDs
450  *
451  * Allocates basic resources for this USB host controller.
452  */
453 static int usbhs_omap_probe(struct platform_device *pdev)
454 {
455         struct device                   *dev =  &pdev->dev;
456         struct usbhs_omap_platform_data *pdata = dev->platform_data;
457         struct usbhs_hcd_omap           *omap;
458         struct resource                 *res;
459         int                             ret = 0;
460         int                             i;
461
462         if (!pdata) {
463                 dev_err(dev, "Missing platform data\n");
464                 return -ENODEV;
465         }
466
467         omap = devm_kzalloc(dev, sizeof(*omap), GFP_KERNEL);
468         if (!omap) {
469                 dev_err(dev, "Memory allocation failed\n");
470                 return -ENOMEM;
471         }
472
473         res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "uhh");
474         omap->uhh_base = devm_request_and_ioremap(dev, res);
475         if (!omap->uhh_base) {
476                 dev_err(dev, "Resource request/ioremap failed\n");
477                 return -EADDRNOTAVAIL;
478         }
479
480         spin_lock_init(&omap->lock);
481
482         omap->pdata = pdata;
483
484         pm_runtime_enable(dev);
485
486         platform_set_drvdata(pdev, omap);
487         pm_runtime_get_sync(dev);
488
489         omap->usbhs_rev = usbhs_read(omap->uhh_base, OMAP_UHH_REVISION);
490
491         /* we need to call runtime suspend before we update omap->nports
492          * to prevent unbalanced clk_disable()
493          */
494         pm_runtime_put_sync(dev);
495
496         /*
497          * If platform data contains nports then use that
498          * else make out number of ports from USBHS revision
499          */
500         if (pdata->nports) {
501                 omap->nports = pdata->nports;
502         } else {
503                 switch (omap->usbhs_rev) {
504                 case OMAP_USBHS_REV1:
505                         omap->nports = 3;
506                         break;
507                 case OMAP_USBHS_REV2:
508                         omap->nports = 2;
509                         break;
510                 default:
511                         omap->nports = OMAP3_HS_USB_PORTS;
512                         dev_dbg(dev,
513                          "USB HOST Rev:0x%d not recognized, assuming %d ports\n",
514                          omap->usbhs_rev, omap->nports);
515                         break;
516                 }
517         }
518
519         for (i = 0; i < omap->nports; i++)
520                 if (is_ehci_phy_mode(i) || is_ehci_tll_mode(i) ||
521                         is_ehci_hsic_mode(i)) {
522                         omap->ehci_logic_fck = clk_get(dev, "ehci_logic_fck");
523                         if (IS_ERR(omap->ehci_logic_fck)) {
524                                 ret = PTR_ERR(omap->ehci_logic_fck);
525                                 dev_warn(dev, "ehci_logic_fck failed:%d\n",
526                                          ret);
527                         }
528                         break;
529                 }
530
531         omap->utmi_p1_fck = clk_get(dev, "utmi_p1_gfclk");
532         if (IS_ERR(omap->utmi_p1_fck)) {
533                 ret = PTR_ERR(omap->utmi_p1_fck);
534                 dev_err(dev, "utmi_p1_gfclk failed error:%d\n", ret);
535                 goto err_end;
536         }
537
538         omap->xclk60mhsp1_ck = clk_get(dev, "xclk60mhsp1_ck");
539         if (IS_ERR(omap->xclk60mhsp1_ck)) {
540                 ret = PTR_ERR(omap->xclk60mhsp1_ck);
541                 dev_err(dev, "xclk60mhsp1_ck failed error:%d\n", ret);
542                 goto err_utmi_p1_fck;
543         }
544
545         omap->utmi_p2_fck = clk_get(dev, "utmi_p2_gfclk");
546         if (IS_ERR(omap->utmi_p2_fck)) {
547                 ret = PTR_ERR(omap->utmi_p2_fck);
548                 dev_err(dev, "utmi_p2_gfclk failed error:%d\n", ret);
549                 goto err_xclk60mhsp1_ck;
550         }
551
552         omap->xclk60mhsp2_ck = clk_get(dev, "xclk60mhsp2_ck");
553         if (IS_ERR(omap->xclk60mhsp2_ck)) {
554                 ret = PTR_ERR(omap->xclk60mhsp2_ck);
555                 dev_err(dev, "xclk60mhsp2_ck failed error:%d\n", ret);
556                 goto err_utmi_p2_fck;
557         }
558
559         omap->usbhost_p1_fck = clk_get(dev, "usb_host_hs_utmi_p1_clk");
560         if (IS_ERR(omap->usbhost_p1_fck)) {
561                 ret = PTR_ERR(omap->usbhost_p1_fck);
562                 dev_err(dev, "usbhost_p1_fck failed error:%d\n", ret);
563                 goto err_xclk60mhsp2_ck;
564         }
565
566         omap->usbhost_p2_fck = clk_get(dev, "usb_host_hs_utmi_p2_clk");
567         if (IS_ERR(omap->usbhost_p2_fck)) {
568                 ret = PTR_ERR(omap->usbhost_p2_fck);
569                 dev_err(dev, "usbhost_p2_fck failed error:%d\n", ret);
570                 goto err_usbhost_p1_fck;
571         }
572
573         omap->init_60m_fclk = clk_get(dev, "init_60m_fclk");
574         if (IS_ERR(omap->init_60m_fclk)) {
575                 ret = PTR_ERR(omap->init_60m_fclk);
576                 dev_err(dev, "init_60m_fclk failed error:%d\n", ret);
577                 goto err_usbhost_p2_fck;
578         }
579
580         if (is_ehci_phy_mode(pdata->port_mode[0])) {
581                 /* for OMAP3 , the clk set paretn fails */
582                 ret = clk_set_parent(omap->utmi_p1_fck,
583                                         omap->xclk60mhsp1_ck);
584                 if (ret != 0)
585                         dev_err(dev, "xclk60mhsp1_ck set parent"
586                                 "failed error:%d\n", ret);
587         } else if (is_ehci_tll_mode(pdata->port_mode[0])) {
588                 ret = clk_set_parent(omap->utmi_p1_fck,
589                                         omap->init_60m_fclk);
590                 if (ret != 0)
591                         dev_err(dev, "init_60m_fclk set parent"
592                                 "failed error:%d\n", ret);
593         }
594
595         if (is_ehci_phy_mode(pdata->port_mode[1])) {
596                 ret = clk_set_parent(omap->utmi_p2_fck,
597                                         omap->xclk60mhsp2_ck);
598                 if (ret != 0)
599                         dev_err(dev, "xclk60mhsp2_ck set parent"
600                                         "failed error:%d\n", ret);
601         } else if (is_ehci_tll_mode(pdata->port_mode[1])) {
602                 ret = clk_set_parent(omap->utmi_p2_fck,
603                                                 omap->init_60m_fclk);
604                 if (ret != 0)
605                         dev_err(dev, "init_60m_fclk set parent"
606                                 "failed error:%d\n", ret);
607         }
608
609         omap_usbhs_init(dev);
610         ret = omap_usbhs_alloc_children(pdev);
611         if (ret) {
612                 dev_err(dev, "omap_usbhs_alloc_children failed\n");
613                 goto err_alloc;
614         }
615
616         return 0;
617
618 err_alloc:
619         omap_usbhs_deinit(&pdev->dev);
620         clk_put(omap->init_60m_fclk);
621
622 err_usbhost_p2_fck:
623         clk_put(omap->usbhost_p2_fck);
624
625 err_usbhost_p1_fck:
626         clk_put(omap->usbhost_p1_fck);
627
628 err_xclk60mhsp2_ck:
629         clk_put(omap->xclk60mhsp2_ck);
630
631 err_utmi_p2_fck:
632         clk_put(omap->utmi_p2_fck);
633
634 err_xclk60mhsp1_ck:
635         clk_put(omap->xclk60mhsp1_ck);
636
637 err_utmi_p1_fck:
638         clk_put(omap->utmi_p1_fck);
639
640 err_end:
641         clk_put(omap->ehci_logic_fck);
642         pm_runtime_disable(dev);
643
644         return ret;
645 }
646
647 /**
648  * usbhs_omap_remove - shutdown processing for UHH & TLL HCDs
649  * @pdev: USB Host Controller being removed
650  *
651  * Reverses the effect of usbhs_omap_probe().
652  */
653 static int usbhs_omap_remove(struct platform_device *pdev)
654 {
655         struct usbhs_hcd_omap *omap = platform_get_drvdata(pdev);
656
657         omap_usbhs_deinit(&pdev->dev);
658         clk_put(omap->init_60m_fclk);
659         clk_put(omap->usbhost_p2_fck);
660         clk_put(omap->usbhost_p1_fck);
661         clk_put(omap->xclk60mhsp2_ck);
662         clk_put(omap->utmi_p2_fck);
663         clk_put(omap->xclk60mhsp1_ck);
664         clk_put(omap->utmi_p1_fck);
665         clk_put(omap->ehci_logic_fck);
666         pm_runtime_disable(&pdev->dev);
667
668         return 0;
669 }
670
671 static const struct dev_pm_ops usbhsomap_dev_pm_ops = {
672         .runtime_suspend        = usbhs_runtime_suspend,
673         .runtime_resume         = usbhs_runtime_resume,
674 };
675
676 static struct platform_driver usbhs_omap_driver = {
677         .driver = {
678                 .name           = (char *)usbhs_driver_name,
679                 .owner          = THIS_MODULE,
680                 .pm             = &usbhsomap_dev_pm_ops,
681         },
682         .remove         = __exit_p(usbhs_omap_remove),
683 };
684
685 MODULE_AUTHOR("Keshava Munegowda <keshava_mgowda@ti.com>");
686 MODULE_ALIAS("platform:" USBHS_DRIVER_NAME);
687 MODULE_LICENSE("GPL v2");
688 MODULE_DESCRIPTION("usb host common core driver for omap EHCI and OHCI");
689
690 static int __init omap_usbhs_drvinit(void)
691 {
692         return platform_driver_probe(&usbhs_omap_driver, usbhs_omap_probe);
693 }
694
695 /*
696  * init before ehci and ohci drivers;
697  * The usbhs core driver should be initialized much before
698  * the omap ehci and ohci probe functions are called.
699  * This usbhs core driver should be initialized after
700  * usb tll driver
701  */
702 fs_initcall_sync(omap_usbhs_drvinit);
703
704 static void __exit omap_usbhs_drvexit(void)
705 {
706         platform_driver_unregister(&usbhs_omap_driver);
707 }
708 module_exit(omap_usbhs_drvexit);