slab/slub: consider a memcg parameter in kmem_create_cache
[linux-2.6.git] / drivers / mfd / omap-usb-host.c
blob770a0d01e0b96d11f9d624c337f2cd9499f6452b
1 /**
2 * omap-usb-host.c - The USBHS core driver for OMAP EHCI & OHCI
4 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com
5 * Author: Keshava Munegowda <keshava_mgowda@ti.com>
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.
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.
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/>.
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 <plat/cpu.h>
29 #include <linux/platform_device.h>
30 #include <linux/platform_data/usb-omap.h>
31 #include <linux/pm_runtime.h>
33 #include "omap-usb.h"
35 #define USBHS_DRIVER_NAME "usbhs_omap"
36 #define OMAP_EHCI_DEVICE "ehci-omap"
37 #define OMAP_OHCI_DEVICE "ohci-omap3"
39 /* OMAP USBHOST Register addresses */
41 /* UHH Register Set */
42 #define OMAP_UHH_REVISION (0x00)
43 #define OMAP_UHH_SYSCONFIG (0x10)
44 #define OMAP_UHH_SYSCONFIG_MIDLEMODE (1 << 12)
45 #define OMAP_UHH_SYSCONFIG_CACTIVITY (1 << 8)
46 #define OMAP_UHH_SYSCONFIG_SIDLEMODE (1 << 3)
47 #define OMAP_UHH_SYSCONFIG_ENAWAKEUP (1 << 2)
48 #define OMAP_UHH_SYSCONFIG_SOFTRESET (1 << 1)
49 #define OMAP_UHH_SYSCONFIG_AUTOIDLE (1 << 0)
51 #define OMAP_UHH_SYSSTATUS (0x14)
52 #define OMAP_UHH_HOSTCONFIG (0x40)
53 #define OMAP_UHH_HOSTCONFIG_ULPI_BYPASS (1 << 0)
54 #define OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS (1 << 0)
55 #define OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS (1 << 11)
56 #define OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS (1 << 12)
57 #define OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN (1 << 2)
58 #define OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN (1 << 3)
59 #define OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN (1 << 4)
60 #define OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN (1 << 5)
61 #define OMAP_UHH_HOSTCONFIG_P1_CONNECT_STATUS (1 << 8)
62 #define OMAP_UHH_HOSTCONFIG_P2_CONNECT_STATUS (1 << 9)
63 #define OMAP_UHH_HOSTCONFIG_P3_CONNECT_STATUS (1 << 10)
64 #define OMAP4_UHH_HOSTCONFIG_APP_START_CLK (1 << 31)
66 /* OMAP4-specific defines */
67 #define OMAP4_UHH_SYSCONFIG_IDLEMODE_CLEAR (3 << 2)
68 #define OMAP4_UHH_SYSCONFIG_NOIDLE (1 << 2)
69 #define OMAP4_UHH_SYSCONFIG_STDBYMODE_CLEAR (3 << 4)
70 #define OMAP4_UHH_SYSCONFIG_NOSTDBY (1 << 4)
71 #define OMAP4_UHH_SYSCONFIG_SOFTRESET (1 << 0)
73 #define OMAP4_P1_MODE_CLEAR (3 << 16)
74 #define OMAP4_P1_MODE_TLL (1 << 16)
75 #define OMAP4_P1_MODE_HSIC (3 << 16)
76 #define OMAP4_P2_MODE_CLEAR (3 << 18)
77 #define OMAP4_P2_MODE_TLL (1 << 18)
78 #define OMAP4_P2_MODE_HSIC (3 << 18)
80 #define OMAP_UHH_DEBUG_CSR (0x44)
82 /* Values of UHH_REVISION - Note: these are not given in the TRM */
83 #define OMAP_USBHS_REV1 0x00000010 /* OMAP3 */
84 #define OMAP_USBHS_REV2 0x50700100 /* OMAP4 */
86 #define is_omap_usbhs_rev1(x) (x->usbhs_rev == OMAP_USBHS_REV1)
87 #define is_omap_usbhs_rev2(x) (x->usbhs_rev == OMAP_USBHS_REV2)
89 #define is_ehci_phy_mode(x) (x == OMAP_EHCI_PORT_MODE_PHY)
90 #define is_ehci_tll_mode(x) (x == OMAP_EHCI_PORT_MODE_TLL)
91 #define is_ehci_hsic_mode(x) (x == OMAP_EHCI_PORT_MODE_HSIC)
94 struct usbhs_hcd_omap {
95 struct clk *xclk60mhsp1_ck;
96 struct clk *xclk60mhsp2_ck;
97 struct clk *utmi_p1_fck;
98 struct clk *usbhost_p1_fck;
99 struct clk *utmi_p2_fck;
100 struct clk *usbhost_p2_fck;
101 struct clk *init_60m_fclk;
102 struct clk *ehci_logic_fck;
104 void __iomem *uhh_base;
106 struct usbhs_omap_platform_data platdata;
108 u32 usbhs_rev;
109 spinlock_t lock;
111 /*-------------------------------------------------------------------------*/
113 const char usbhs_driver_name[] = USBHS_DRIVER_NAME;
114 static u64 usbhs_dmamask = DMA_BIT_MASK(32);
116 /*-------------------------------------------------------------------------*/
118 static inline void usbhs_write(void __iomem *base, u32 reg, u32 val)
120 __raw_writel(val, base + reg);
123 static inline u32 usbhs_read(void __iomem *base, u32 reg)
125 return __raw_readl(base + reg);
128 static inline void usbhs_writeb(void __iomem *base, u8 reg, u8 val)
130 __raw_writeb(val, base + reg);
133 static inline u8 usbhs_readb(void __iomem *base, u8 reg)
135 return __raw_readb(base + reg);
138 /*-------------------------------------------------------------------------*/
140 static struct platform_device *omap_usbhs_alloc_child(const char *name,
141 struct resource *res, int num_resources, void *pdata,
142 size_t pdata_size, struct device *dev)
144 struct platform_device *child;
145 int ret;
147 child = platform_device_alloc(name, 0);
149 if (!child) {
150 dev_err(dev, "platform_device_alloc %s failed\n", name);
151 goto err_end;
154 ret = platform_device_add_resources(child, res, num_resources);
155 if (ret) {
156 dev_err(dev, "platform_device_add_resources failed\n");
157 goto err_alloc;
160 ret = platform_device_add_data(child, pdata, pdata_size);
161 if (ret) {
162 dev_err(dev, "platform_device_add_data failed\n");
163 goto err_alloc;
166 child->dev.dma_mask = &usbhs_dmamask;
167 dma_set_coherent_mask(&child->dev, DMA_BIT_MASK(32));
168 child->dev.parent = dev;
170 ret = platform_device_add(child);
171 if (ret) {
172 dev_err(dev, "platform_device_add failed\n");
173 goto err_alloc;
176 return child;
178 err_alloc:
179 platform_device_put(child);
181 err_end:
182 return NULL;
185 static int omap_usbhs_alloc_children(struct platform_device *pdev)
187 struct device *dev = &pdev->dev;
188 struct usbhs_hcd_omap *omap;
189 struct ehci_hcd_omap_platform_data *ehci_data;
190 struct ohci_hcd_omap_platform_data *ohci_data;
191 struct platform_device *ehci;
192 struct platform_device *ohci;
193 struct resource *res;
194 struct resource resources[2];
195 int ret;
197 omap = platform_get_drvdata(pdev);
198 ehci_data = omap->platdata.ehci_data;
199 ohci_data = omap->platdata.ohci_data;
201 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ehci");
202 if (!res) {
203 dev_err(dev, "EHCI get resource IORESOURCE_MEM failed\n");
204 ret = -ENODEV;
205 goto err_end;
207 resources[0] = *res;
209 res = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "ehci-irq");
210 if (!res) {
211 dev_err(dev, " EHCI get resource IORESOURCE_IRQ failed\n");
212 ret = -ENODEV;
213 goto err_end;
215 resources[1] = *res;
217 ehci = omap_usbhs_alloc_child(OMAP_EHCI_DEVICE, resources, 2, ehci_data,
218 sizeof(*ehci_data), dev);
220 if (!ehci) {
221 dev_err(dev, "omap_usbhs_alloc_child failed\n");
222 ret = -ENOMEM;
223 goto err_end;
226 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ohci");
227 if (!res) {
228 dev_err(dev, "OHCI get resource IORESOURCE_MEM failed\n");
229 ret = -ENODEV;
230 goto err_ehci;
232 resources[0] = *res;
234 res = platform_get_resource_byname(pdev, IORESOURCE_IRQ, "ohci-irq");
235 if (!res) {
236 dev_err(dev, "OHCI get resource IORESOURCE_IRQ failed\n");
237 ret = -ENODEV;
238 goto err_ehci;
240 resources[1] = *res;
242 ohci = omap_usbhs_alloc_child(OMAP_OHCI_DEVICE, resources, 2, ohci_data,
243 sizeof(*ohci_data), dev);
244 if (!ohci) {
245 dev_err(dev, "omap_usbhs_alloc_child failed\n");
246 ret = -ENOMEM;
247 goto err_ehci;
250 return 0;
252 err_ehci:
253 platform_device_unregister(ehci);
255 err_end:
256 return ret;
259 static bool is_ohci_port(enum usbhs_omap_port_mode pmode)
261 switch (pmode) {
262 case OMAP_OHCI_PORT_MODE_PHY_6PIN_DATSE0:
263 case OMAP_OHCI_PORT_MODE_PHY_6PIN_DPDM:
264 case OMAP_OHCI_PORT_MODE_PHY_3PIN_DATSE0:
265 case OMAP_OHCI_PORT_MODE_PHY_4PIN_DPDM:
266 case OMAP_OHCI_PORT_MODE_TLL_6PIN_DATSE0:
267 case OMAP_OHCI_PORT_MODE_TLL_6PIN_DPDM:
268 case OMAP_OHCI_PORT_MODE_TLL_3PIN_DATSE0:
269 case OMAP_OHCI_PORT_MODE_TLL_4PIN_DPDM:
270 case OMAP_OHCI_PORT_MODE_TLL_2PIN_DATSE0:
271 case OMAP_OHCI_PORT_MODE_TLL_2PIN_DPDM:
272 return true;
274 default:
275 return false;
279 static int usbhs_runtime_resume(struct device *dev)
281 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
282 struct usbhs_omap_platform_data *pdata = &omap->platdata;
283 unsigned long flags;
285 dev_dbg(dev, "usbhs_runtime_resume\n");
287 if (!pdata) {
288 dev_dbg(dev, "missing platform_data\n");
289 return -ENODEV;
292 omap_tll_enable();
293 spin_lock_irqsave(&omap->lock, flags);
295 if (omap->ehci_logic_fck && !IS_ERR(omap->ehci_logic_fck))
296 clk_enable(omap->ehci_logic_fck);
298 if (is_ehci_tll_mode(pdata->port_mode[0]))
299 clk_enable(omap->usbhost_p1_fck);
300 if (is_ehci_tll_mode(pdata->port_mode[1]))
301 clk_enable(omap->usbhost_p2_fck);
303 clk_enable(omap->utmi_p1_fck);
304 clk_enable(omap->utmi_p2_fck);
306 spin_unlock_irqrestore(&omap->lock, flags);
308 return 0;
311 static int usbhs_runtime_suspend(struct device *dev)
313 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
314 struct usbhs_omap_platform_data *pdata = &omap->platdata;
315 unsigned long flags;
317 dev_dbg(dev, "usbhs_runtime_suspend\n");
319 if (!pdata) {
320 dev_dbg(dev, "missing platform_data\n");
321 return -ENODEV;
324 spin_lock_irqsave(&omap->lock, flags);
326 if (is_ehci_tll_mode(pdata->port_mode[0]))
327 clk_disable(omap->usbhost_p1_fck);
328 if (is_ehci_tll_mode(pdata->port_mode[1]))
329 clk_disable(omap->usbhost_p2_fck);
331 clk_disable(omap->utmi_p2_fck);
332 clk_disable(omap->utmi_p1_fck);
334 if (omap->ehci_logic_fck && !IS_ERR(omap->ehci_logic_fck))
335 clk_disable(omap->ehci_logic_fck);
337 spin_unlock_irqrestore(&omap->lock, flags);
338 omap_tll_disable();
340 return 0;
343 static void omap_usbhs_init(struct device *dev)
345 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
346 struct usbhs_omap_platform_data *pdata = &omap->platdata;
347 unsigned long flags;
348 unsigned reg;
350 dev_dbg(dev, "starting TI HSUSB Controller\n");
352 if (pdata->ehci_data->phy_reset) {
353 if (gpio_is_valid(pdata->ehci_data->reset_gpio_port[0]))
354 gpio_request_one(pdata->ehci_data->reset_gpio_port[0],
355 GPIOF_OUT_INIT_LOW, "USB1 PHY reset");
357 if (gpio_is_valid(pdata->ehci_data->reset_gpio_port[1]))
358 gpio_request_one(pdata->ehci_data->reset_gpio_port[1],
359 GPIOF_OUT_INIT_LOW, "USB2 PHY reset");
361 /* Hold the PHY in RESET for enough time till DIR is high */
362 udelay(10);
365 pm_runtime_get_sync(dev);
366 spin_lock_irqsave(&omap->lock, flags);
367 omap->usbhs_rev = usbhs_read(omap->uhh_base, OMAP_UHH_REVISION);
368 dev_dbg(dev, "OMAP UHH_REVISION 0x%x\n", omap->usbhs_rev);
370 reg = usbhs_read(omap->uhh_base, OMAP_UHH_HOSTCONFIG);
371 /* setup ULPI bypass and burst configurations */
372 reg |= (OMAP_UHH_HOSTCONFIG_INCR4_BURST_EN
373 | OMAP_UHH_HOSTCONFIG_INCR8_BURST_EN
374 | OMAP_UHH_HOSTCONFIG_INCR16_BURST_EN);
375 reg |= OMAP4_UHH_HOSTCONFIG_APP_START_CLK;
376 reg &= ~OMAP_UHH_HOSTCONFIG_INCRX_ALIGN_EN;
378 if (is_omap_usbhs_rev1(omap)) {
379 if (pdata->port_mode[0] == OMAP_USBHS_PORT_MODE_UNUSED)
380 reg &= ~OMAP_UHH_HOSTCONFIG_P1_CONNECT_STATUS;
381 if (pdata->port_mode[1] == OMAP_USBHS_PORT_MODE_UNUSED)
382 reg &= ~OMAP_UHH_HOSTCONFIG_P2_CONNECT_STATUS;
383 if (pdata->port_mode[2] == OMAP_USBHS_PORT_MODE_UNUSED)
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(dev, "OMAP3 ES version <= ES2.1\n");
389 if (is_ehci_phy_mode(pdata->port_mode[0]) ||
390 is_ehci_phy_mode(pdata->port_mode[1]) ||
391 is_ehci_phy_mode(pdata->port_mode[2]))
392 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_BYPASS;
393 else
394 reg |= OMAP_UHH_HOSTCONFIG_ULPI_BYPASS;
395 } else {
396 dev_dbg(dev, "OMAP3 ES version > ES2.1\n");
397 if (is_ehci_phy_mode(pdata->port_mode[0]))
398 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS;
399 else
400 reg |= OMAP_UHH_HOSTCONFIG_ULPI_P1_BYPASS;
401 if (is_ehci_phy_mode(pdata->port_mode[1]))
402 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS;
403 else
404 reg |= OMAP_UHH_HOSTCONFIG_ULPI_P2_BYPASS;
405 if (is_ehci_phy_mode(pdata->port_mode[2]))
406 reg &= ~OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS;
407 else
408 reg |= OMAP_UHH_HOSTCONFIG_ULPI_P3_BYPASS;
410 } else if (is_omap_usbhs_rev2(omap)) {
411 /* Clear port mode fields for PHY mode*/
412 reg &= ~OMAP4_P1_MODE_CLEAR;
413 reg &= ~OMAP4_P2_MODE_CLEAR;
415 if (is_ehci_tll_mode(pdata->port_mode[0]) ||
416 (is_ohci_port(pdata->port_mode[0])))
417 reg |= OMAP4_P1_MODE_TLL;
418 else if (is_ehci_hsic_mode(pdata->port_mode[0]))
419 reg |= OMAP4_P1_MODE_HSIC;
421 if (is_ehci_tll_mode(pdata->port_mode[1]) ||
422 (is_ohci_port(pdata->port_mode[1])))
423 reg |= OMAP4_P2_MODE_TLL;
424 else if (is_ehci_hsic_mode(pdata->port_mode[1]))
425 reg |= OMAP4_P2_MODE_HSIC;
428 usbhs_write(omap->uhh_base, OMAP_UHH_HOSTCONFIG, reg);
429 dev_dbg(dev, "UHH setup done, uhh_hostconfig=%x\n", reg);
431 spin_unlock_irqrestore(&omap->lock, flags);
433 pm_runtime_put_sync(dev);
434 if (pdata->ehci_data->phy_reset) {
435 /* Hold the PHY in RESET for enough time till
436 * PHY is settled and ready
438 udelay(10);
440 if (gpio_is_valid(pdata->ehci_data->reset_gpio_port[0]))
441 gpio_set_value_cansleep
442 (pdata->ehci_data->reset_gpio_port[0], 1);
444 if (gpio_is_valid(pdata->ehci_data->reset_gpio_port[1]))
445 gpio_set_value_cansleep
446 (pdata->ehci_data->reset_gpio_port[1], 1);
450 static void omap_usbhs_deinit(struct device *dev)
452 struct usbhs_hcd_omap *omap = dev_get_drvdata(dev);
453 struct usbhs_omap_platform_data *pdata = &omap->platdata;
455 if (pdata->ehci_data->phy_reset) {
456 if (gpio_is_valid(pdata->ehci_data->reset_gpio_port[0]))
457 gpio_free(pdata->ehci_data->reset_gpio_port[0]);
459 if (gpio_is_valid(pdata->ehci_data->reset_gpio_port[1]))
460 gpio_free(pdata->ehci_data->reset_gpio_port[1]);
466 * usbhs_omap_probe - initialize TI-based HCDs
468 * Allocates basic resources for this USB host controller.
470 static int usbhs_omap_probe(struct platform_device *pdev)
472 struct device *dev = &pdev->dev;
473 struct usbhs_omap_platform_data *pdata = dev->platform_data;
474 struct usbhs_hcd_omap *omap;
475 struct resource *res;
476 int ret = 0;
477 int i;
479 if (!pdata) {
480 dev_err(dev, "Missing platform data\n");
481 ret = -ENOMEM;
482 goto end_probe;
485 omap = kzalloc(sizeof(*omap), GFP_KERNEL);
486 if (!omap) {
487 dev_err(dev, "Memory allocation failed\n");
488 ret = -ENOMEM;
489 goto end_probe;
492 spin_lock_init(&omap->lock);
494 for (i = 0; i < OMAP3_HS_USB_PORTS; i++)
495 omap->platdata.port_mode[i] = pdata->port_mode[i];
497 omap->platdata.ehci_data = pdata->ehci_data;
498 omap->platdata.ohci_data = pdata->ohci_data;
500 pm_runtime_enable(dev);
503 for (i = 0; i < OMAP3_HS_USB_PORTS; i++)
504 if (is_ehci_phy_mode(i) || is_ehci_tll_mode(i) ||
505 is_ehci_hsic_mode(i)) {
506 omap->ehci_logic_fck = clk_get(dev, "ehci_logic_fck");
507 if (IS_ERR(omap->ehci_logic_fck)) {
508 ret = PTR_ERR(omap->ehci_logic_fck);
509 dev_warn(dev, "ehci_logic_fck failed:%d\n",
510 ret);
512 break;
515 omap->utmi_p1_fck = clk_get(dev, "utmi_p1_gfclk");
516 if (IS_ERR(omap->utmi_p1_fck)) {
517 ret = PTR_ERR(omap->utmi_p1_fck);
518 dev_err(dev, "utmi_p1_gfclk failed error:%d\n", ret);
519 goto err_end;
522 omap->xclk60mhsp1_ck = clk_get(dev, "xclk60mhsp1_ck");
523 if (IS_ERR(omap->xclk60mhsp1_ck)) {
524 ret = PTR_ERR(omap->xclk60mhsp1_ck);
525 dev_err(dev, "xclk60mhsp1_ck failed error:%d\n", ret);
526 goto err_utmi_p1_fck;
529 omap->utmi_p2_fck = clk_get(dev, "utmi_p2_gfclk");
530 if (IS_ERR(omap->utmi_p2_fck)) {
531 ret = PTR_ERR(omap->utmi_p2_fck);
532 dev_err(dev, "utmi_p2_gfclk failed error:%d\n", ret);
533 goto err_xclk60mhsp1_ck;
536 omap->xclk60mhsp2_ck = clk_get(dev, "xclk60mhsp2_ck");
537 if (IS_ERR(omap->xclk60mhsp2_ck)) {
538 ret = PTR_ERR(omap->xclk60mhsp2_ck);
539 dev_err(dev, "xclk60mhsp2_ck failed error:%d\n", ret);
540 goto err_utmi_p2_fck;
543 omap->usbhost_p1_fck = clk_get(dev, "usb_host_hs_utmi_p1_clk");
544 if (IS_ERR(omap->usbhost_p1_fck)) {
545 ret = PTR_ERR(omap->usbhost_p1_fck);
546 dev_err(dev, "usbhost_p1_fck failed error:%d\n", ret);
547 goto err_xclk60mhsp2_ck;
550 omap->usbhost_p2_fck = clk_get(dev, "usb_host_hs_utmi_p2_clk");
551 if (IS_ERR(omap->usbhost_p2_fck)) {
552 ret = PTR_ERR(omap->usbhost_p2_fck);
553 dev_err(dev, "usbhost_p2_fck failed error:%d\n", ret);
554 goto err_usbhost_p1_fck;
557 omap->init_60m_fclk = clk_get(dev, "init_60m_fclk");
558 if (IS_ERR(omap->init_60m_fclk)) {
559 ret = PTR_ERR(omap->init_60m_fclk);
560 dev_err(dev, "init_60m_fclk failed error:%d\n", ret);
561 goto err_usbhost_p2_fck;
564 if (is_ehci_phy_mode(pdata->port_mode[0])) {
565 /* for OMAP3 , the clk set paretn fails */
566 ret = clk_set_parent(omap->utmi_p1_fck,
567 omap->xclk60mhsp1_ck);
568 if (ret != 0)
569 dev_err(dev, "xclk60mhsp1_ck set parent"
570 "failed error:%d\n", ret);
571 } else if (is_ehci_tll_mode(pdata->port_mode[0])) {
572 ret = clk_set_parent(omap->utmi_p1_fck,
573 omap->init_60m_fclk);
574 if (ret != 0)
575 dev_err(dev, "init_60m_fclk set parent"
576 "failed error:%d\n", ret);
579 if (is_ehci_phy_mode(pdata->port_mode[1])) {
580 ret = clk_set_parent(omap->utmi_p2_fck,
581 omap->xclk60mhsp2_ck);
582 if (ret != 0)
583 dev_err(dev, "xclk60mhsp2_ck set parent"
584 "failed error:%d\n", ret);
585 } else if (is_ehci_tll_mode(pdata->port_mode[1])) {
586 ret = clk_set_parent(omap->utmi_p2_fck,
587 omap->init_60m_fclk);
588 if (ret != 0)
589 dev_err(dev, "init_60m_fclk set parent"
590 "failed error:%d\n", ret);
593 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "uhh");
594 if (!res) {
595 dev_err(dev, "UHH EHCI get resource failed\n");
596 ret = -ENODEV;
597 goto err_init_60m_fclk;
600 omap->uhh_base = ioremap(res->start, resource_size(res));
601 if (!omap->uhh_base) {
602 dev_err(dev, "UHH ioremap failed\n");
603 ret = -ENOMEM;
604 goto err_init_60m_fclk;
607 platform_set_drvdata(pdev, omap);
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;
616 goto end_probe;
618 err_alloc:
619 omap_usbhs_deinit(&pdev->dev);
620 iounmap(omap->uhh_base);
622 err_init_60m_fclk:
623 clk_put(omap->init_60m_fclk);
625 err_usbhost_p2_fck:
626 clk_put(omap->usbhost_p2_fck);
628 err_usbhost_p1_fck:
629 clk_put(omap->usbhost_p1_fck);
631 err_xclk60mhsp2_ck:
632 clk_put(omap->xclk60mhsp2_ck);
634 err_utmi_p2_fck:
635 clk_put(omap->utmi_p2_fck);
637 err_xclk60mhsp1_ck:
638 clk_put(omap->xclk60mhsp1_ck);
640 err_utmi_p1_fck:
641 clk_put(omap->utmi_p1_fck);
643 err_end:
644 clk_put(omap->ehci_logic_fck);
645 pm_runtime_disable(dev);
646 kfree(omap);
648 end_probe:
649 return ret;
653 * usbhs_omap_remove - shutdown processing for UHH & TLL HCDs
654 * @pdev: USB Host Controller being removed
656 * Reverses the effect of usbhs_omap_probe().
658 static int usbhs_omap_remove(struct platform_device *pdev)
660 struct usbhs_hcd_omap *omap = platform_get_drvdata(pdev);
662 omap_usbhs_deinit(&pdev->dev);
663 iounmap(omap->uhh_base);
664 clk_put(omap->init_60m_fclk);
665 clk_put(omap->usbhost_p2_fck);
666 clk_put(omap->usbhost_p1_fck);
667 clk_put(omap->xclk60mhsp2_ck);
668 clk_put(omap->utmi_p2_fck);
669 clk_put(omap->xclk60mhsp1_ck);
670 clk_put(omap->utmi_p1_fck);
671 clk_put(omap->ehci_logic_fck);
672 pm_runtime_disable(&pdev->dev);
673 kfree(omap);
675 return 0;
678 static const struct dev_pm_ops usbhsomap_dev_pm_ops = {
679 .runtime_suspend = usbhs_runtime_suspend,
680 .runtime_resume = usbhs_runtime_resume,
683 static struct platform_driver usbhs_omap_driver = {
684 .driver = {
685 .name = (char *)usbhs_driver_name,
686 .owner = THIS_MODULE,
687 .pm = &usbhsomap_dev_pm_ops,
689 .remove = __exit_p(usbhs_omap_remove),
692 MODULE_AUTHOR("Keshava Munegowda <keshava_mgowda@ti.com>");
693 MODULE_ALIAS("platform:" USBHS_DRIVER_NAME);
694 MODULE_LICENSE("GPL v2");
695 MODULE_DESCRIPTION("usb host common core driver for omap EHCI and OHCI");
697 static int __init omap_usbhs_drvinit(void)
699 return platform_driver_probe(&usbhs_omap_driver, usbhs_omap_probe);
703 * init before ehci and ohci drivers;
704 * The usbhs core driver should be initialized much before
705 * the omap ehci and ohci probe functions are called.
706 * This usbhs core driver should be initialized after
707 * usb tll driver
709 fs_initcall_sync(omap_usbhs_drvinit);
711 static void __exit omap_usbhs_drvexit(void)
713 platform_driver_unregister(&usbhs_omap_driver);
715 module_exit(omap_usbhs_drvexit);