blob: eb590885bc538fbd9657b505a70dc238db185cde [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Ilya Yanok37931f02012-11-06 13:48:22 +00002/*
3 * Texas Instruments DSPS platforms "glue layer"
4 *
5 * Copyright (C) 2012, by Texas Instruments
6 *
7 * Based on the am35x "glue layer" code.
8 *
9 * This file is part of the Inventra Controller Driver for Linux.
10 *
Ilya Yanok37931f02012-11-06 13:48:22 +000011 * musb_dsps.c will be a common file for all the TI DSPS platforms
12 * such as dm64x, dm36x, dm35x, da8x, am35x and ti81x.
13 * For now only ti81x is using this and in future davinci.c, am35x.c
14 * da8xx.c would be merged to this file after testing.
15 */
16
Ilya Yanok37931f02012-11-06 13:48:22 +000017#ifndef __UBOOT__
Simon Glass336d4612020-02-03 07:36:16 -070018#include <dm/device_compat.h>
Simon Glass61b29b82020-02-03 07:36:15 -070019#include <dm/devres.h>
Ilya Yanok37931f02012-11-06 13:48:22 +000020#include <linux/init.h>
21#include <linux/io.h>
22#include <linux/err.h>
23#include <linux/platform_device.h>
24#include <linux/dma-mapping.h>
25#include <linux/pm_runtime.h>
26#include <linux/module.h>
27
28#include <linux/of.h>
29#include <linux/of_device.h>
30#include <linux/of_address.h>
31
32#include <plat/usb.h>
33#else
34#include <common.h>
35#include <asm/omap_musb.h>
36#include "linux-compat.h"
37#endif
38
39#include "musb_core.h"
40
41/**
42 * avoid using musb_readx()/musb_writex() as glue layer should not be
43 * dependent on musb core layer symbols.
44 */
45static inline u8 dsps_readb(const void __iomem *addr, unsigned offset)
46 { return __raw_readb(addr + offset); }
47
48static inline u32 dsps_readl(const void __iomem *addr, unsigned offset)
49 { return __raw_readl(addr + offset); }
50
51static inline void dsps_writeb(void __iomem *addr, unsigned offset, u8 data)
52 { __raw_writeb(data, addr + offset); }
53
54static inline void dsps_writel(void __iomem *addr, unsigned offset, u32 data)
55 { __raw_writel(data, addr + offset); }
56
57/**
58 * DSPS musb wrapper register offset.
59 * FIXME: This should be expanded to have all the wrapper registers from TI DSPS
60 * musb ips.
61 */
62struct dsps_musb_wrapper {
63 u16 revision;
64 u16 control;
65 u16 status;
66 u16 eoi;
67 u16 epintr_set;
68 u16 epintr_clear;
69 u16 epintr_status;
70 u16 coreintr_set;
71 u16 coreintr_clear;
72 u16 coreintr_status;
73 u16 phy_utmi;
74 u16 mode;
75
76 /* bit positions for control */
77 unsigned reset:5;
78
79 /* bit positions for interrupt */
80 unsigned usb_shift:5;
81 u32 usb_mask;
82 u32 usb_bitmap;
83 unsigned drvvbus:5;
84
85 unsigned txep_shift:5;
86 u32 txep_mask;
87 u32 txep_bitmap;
88
89 unsigned rxep_shift:5;
90 u32 rxep_mask;
91 u32 rxep_bitmap;
92
93 /* bit positions for phy_utmi */
94 unsigned otg_disable:5;
95
96 /* bit positions for mode */
97 unsigned iddig:5;
98 /* miscellaneous stuff */
99 u32 musb_core_offset;
100 u8 poll_seconds;
101};
102
103static const struct dsps_musb_wrapper ti81xx_driver_data __devinitconst = {
104 .revision = 0x00,
105 .control = 0x14,
106 .status = 0x18,
107 .eoi = 0x24,
108 .epintr_set = 0x38,
109 .epintr_clear = 0x40,
110 .epintr_status = 0x30,
111 .coreintr_set = 0x3c,
112 .coreintr_clear = 0x44,
113 .coreintr_status = 0x34,
114 .phy_utmi = 0xe0,
115 .mode = 0xe8,
116 .reset = 0,
117 .otg_disable = 21,
118 .iddig = 8,
119 .usb_shift = 0,
120 .usb_mask = 0x1ff,
121 .usb_bitmap = (0x1ff << 0),
122 .drvvbus = 8,
123 .txep_shift = 0,
124 .txep_mask = 0xffff,
125 .txep_bitmap = (0xffff << 0),
126 .rxep_shift = 16,
127 .rxep_mask = 0xfffe,
128 .rxep_bitmap = (0xfffe << 16),
129 .musb_core_offset = 0x400,
130 .poll_seconds = 2,
131};
132
133/**
134 * DSPS glue structure.
135 */
136struct dsps_glue {
137 struct device *dev;
138 struct platform_device *musb; /* child musb pdev */
139 const struct dsps_musb_wrapper *wrp; /* wrapper register offsets */
140 struct timer_list timer; /* otg_workaround timer */
141};
142
143/**
144 * dsps_musb_enable - enable interrupts
145 */
Hans de Goede15837232015-06-17 21:33:54 +0200146#ifndef __UBOOT__
Ilya Yanok37931f02012-11-06 13:48:22 +0000147static void dsps_musb_enable(struct musb *musb)
Hans de Goede15837232015-06-17 21:33:54 +0200148#else
149static int dsps_musb_enable(struct musb *musb)
150#endif
Ilya Yanok37931f02012-11-06 13:48:22 +0000151{
152#ifndef __UBOOT__
153 struct device *dev = musb->controller;
154 struct platform_device *pdev = to_platform_device(dev->parent);
155 struct dsps_glue *glue = platform_get_drvdata(pdev);
156 const struct dsps_musb_wrapper *wrp = glue->wrp;
157#else
158 const struct dsps_musb_wrapper *wrp = &ti81xx_driver_data;
159#endif
160 void __iomem *reg_base = musb->ctrl_base;
161 u32 epmask, coremask;
162
163 /* Workaround: setup IRQs through both register sets. */
164 epmask = ((musb->epmask & wrp->txep_mask) << wrp->txep_shift) |
165 ((musb->epmask & wrp->rxep_mask) << wrp->rxep_shift);
166 coremask = (wrp->usb_bitmap & ~MUSB_INTR_SOF);
167
168 dsps_writel(reg_base, wrp->epintr_set, epmask);
169 dsps_writel(reg_base, wrp->coreintr_set, coremask);
170 /* Force the DRVVBUS IRQ so we can start polling for ID change. */
171#ifndef __UBOOT__
172 if (is_otg_enabled(musb))
173 dsps_writel(reg_base, wrp->coreintr_set,
174 (1 << wrp->drvvbus) << wrp->usb_shift);
Hans de Goede15837232015-06-17 21:33:54 +0200175#else
176 return 0;
Ilya Yanok37931f02012-11-06 13:48:22 +0000177#endif
178}
179
180/**
181 * dsps_musb_disable - disable HDRC and flush interrupts
182 */
183static void dsps_musb_disable(struct musb *musb)
184{
185#ifndef __UBOOT__
186 struct device *dev = musb->controller;
187 struct platform_device *pdev = to_platform_device(dev->parent);
188 struct dsps_glue *glue = platform_get_drvdata(pdev);
189 const struct dsps_musb_wrapper *wrp = glue->wrp;
190 void __iomem *reg_base = musb->ctrl_base;
191
192 dsps_writel(reg_base, wrp->coreintr_clear, wrp->usb_bitmap);
193 dsps_writel(reg_base, wrp->epintr_clear,
194 wrp->txep_bitmap | wrp->rxep_bitmap);
195 dsps_writeb(musb->mregs, MUSB_DEVCTL, 0);
196 dsps_writel(reg_base, wrp->eoi, 0);
197#endif
198}
199
200#ifndef __UBOOT__
201static void otg_timer(unsigned long _musb)
202{
203 struct musb *musb = (void *)_musb;
204 void __iomem *mregs = musb->mregs;
205 struct device *dev = musb->controller;
206 struct platform_device *pdev = to_platform_device(dev->parent);
207 struct dsps_glue *glue = platform_get_drvdata(pdev);
208 const struct dsps_musb_wrapper *wrp = glue->wrp;
209 u8 devctl;
210 unsigned long flags;
211
212 /*
213 * We poll because DSPS IP's won't expose several OTG-critical
214 * status change events (from the transceiver) otherwise.
215 */
216 devctl = dsps_readb(mregs, MUSB_DEVCTL);
217 dev_dbg(musb->controller, "Poll devctl %02x (%s)\n", devctl,
218 otg_state_string(musb->xceiv->state));
219
220 spin_lock_irqsave(&musb->lock, flags);
221 switch (musb->xceiv->state) {
222 case OTG_STATE_A_WAIT_BCON:
223 devctl &= ~MUSB_DEVCTL_SESSION;
224 dsps_writeb(musb->mregs, MUSB_DEVCTL, devctl);
225
226 devctl = dsps_readb(musb->mregs, MUSB_DEVCTL);
227 if (devctl & MUSB_DEVCTL_BDEVICE) {
228 musb->xceiv->state = OTG_STATE_B_IDLE;
229 MUSB_DEV_MODE(musb);
230 } else {
231 musb->xceiv->state = OTG_STATE_A_IDLE;
232 MUSB_HST_MODE(musb);
233 }
234 break;
235 case OTG_STATE_A_WAIT_VFALL:
236 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
237 dsps_writel(musb->ctrl_base, wrp->coreintr_set,
238 MUSB_INTR_VBUSERROR << wrp->usb_shift);
239 break;
240 case OTG_STATE_B_IDLE:
241 if (!is_peripheral_enabled(musb))
242 break;
243
244 devctl = dsps_readb(mregs, MUSB_DEVCTL);
245 if (devctl & MUSB_DEVCTL_BDEVICE)
246 mod_timer(&glue->timer,
247 jiffies + wrp->poll_seconds * HZ);
248 else
249 musb->xceiv->state = OTG_STATE_A_IDLE;
250 break;
251 default:
252 break;
253 }
254 spin_unlock_irqrestore(&musb->lock, flags);
255}
256
257static void dsps_musb_try_idle(struct musb *musb, unsigned long timeout)
258{
259 struct device *dev = musb->controller;
260 struct platform_device *pdev = to_platform_device(dev->parent);
261 struct dsps_glue *glue = platform_get_drvdata(pdev);
262 static unsigned long last_timer;
263
264 if (!is_otg_enabled(musb))
265 return;
266
267 if (timeout == 0)
268 timeout = jiffies + msecs_to_jiffies(3);
269
270 /* Never idle if active, or when VBUS timeout is not set as host */
271 if (musb->is_active || (musb->a_wait_bcon == 0 &&
272 musb->xceiv->state == OTG_STATE_A_WAIT_BCON)) {
273 dev_dbg(musb->controller, "%s active, deleting timer\n",
274 otg_state_string(musb->xceiv->state));
275 del_timer(&glue->timer);
276 last_timer = jiffies;
277 return;
278 }
279
280 if (time_after(last_timer, timeout) && timer_pending(&glue->timer)) {
281 dev_dbg(musb->controller,
282 "Longer idle timer already pending, ignoring...\n");
283 return;
284 }
285 last_timer = timeout;
286
287 dev_dbg(musb->controller, "%s inactive, starting idle timer for %u ms\n",
288 otg_state_string(musb->xceiv->state),
289 jiffies_to_msecs(timeout - jiffies));
290 mod_timer(&glue->timer, timeout);
291}
292#endif
293
294static irqreturn_t dsps_interrupt(int irq, void *hci)
295{
296 struct musb *musb = hci;
297 void __iomem *reg_base = musb->ctrl_base;
298#ifndef __UBOOT__
299 struct device *dev = musb->controller;
300 struct platform_device *pdev = to_platform_device(dev->parent);
301 struct dsps_glue *glue = platform_get_drvdata(pdev);
302 const struct dsps_musb_wrapper *wrp = glue->wrp;
303#else
304 const struct dsps_musb_wrapper *wrp = &ti81xx_driver_data;
305#endif
306 unsigned long flags;
307 irqreturn_t ret = IRQ_NONE;
308 u32 epintr, usbintr;
309
310 spin_lock_irqsave(&musb->lock, flags);
311
312 /* Get endpoint interrupts */
313 epintr = dsps_readl(reg_base, wrp->epintr_status);
314 musb->int_rx = (epintr & wrp->rxep_bitmap) >> wrp->rxep_shift;
315 musb->int_tx = (epintr & wrp->txep_bitmap) >> wrp->txep_shift;
316
317 if (epintr)
318 dsps_writel(reg_base, wrp->epintr_status, epintr);
319
320 /* Get usb core interrupts */
321 usbintr = dsps_readl(reg_base, wrp->coreintr_status);
322 if (!usbintr && !epintr)
323 goto eoi;
324
325 musb->int_usb = (usbintr & wrp->usb_bitmap) >> wrp->usb_shift;
326 if (usbintr)
327 dsps_writel(reg_base, wrp->coreintr_status, usbintr);
328
329 dev_dbg(musb->controller, "usbintr (%x) epintr(%x)\n",
330 usbintr, epintr);
331#ifndef __UBOOT__
332 /*
333 * DRVVBUS IRQs are the only proxy we have (a very poor one!) for
334 * DSPS IP's missing ID change IRQ. We need an ID change IRQ to
335 * switch appropriately between halves of the OTG state machine.
336 * Managing DEVCTL.SESSION per Mentor docs requires that we know its
337 * value but DEVCTL.BDEVICE is invalid without DEVCTL.SESSION set.
338 * Also, DRVVBUS pulses for SRP (but not at 5V) ...
339 */
340 if ((usbintr & MUSB_INTR_BABBLE) && is_host_enabled(musb))
341 pr_info("CAUTION: musb: Babble Interrupt Occured\n");
342
343 if (usbintr & ((1 << wrp->drvvbus) << wrp->usb_shift)) {
344 int drvvbus = dsps_readl(reg_base, wrp->status);
345 void __iomem *mregs = musb->mregs;
346 u8 devctl = dsps_readb(mregs, MUSB_DEVCTL);
347 int err;
348
349 err = is_host_enabled(musb) && (musb->int_usb &
350 MUSB_INTR_VBUSERROR);
351 if (err) {
352 /*
353 * The Mentor core doesn't debounce VBUS as needed
354 * to cope with device connect current spikes. This
355 * means it's not uncommon for bus-powered devices
356 * to get VBUS errors during enumeration.
357 *
358 * This is a workaround, but newer RTL from Mentor
359 * seems to allow a better one: "re"-starting sessions
360 * without waiting for VBUS to stop registering in
361 * devctl.
362 */
363 musb->int_usb &= ~MUSB_INTR_VBUSERROR;
364 musb->xceiv->state = OTG_STATE_A_WAIT_VFALL;
365 mod_timer(&glue->timer,
366 jiffies + wrp->poll_seconds * HZ);
367 WARNING("VBUS error workaround (delay coming)\n");
368 } else if (is_host_enabled(musb) && drvvbus) {
369 musb->is_active = 1;
370 MUSB_HST_MODE(musb);
371 musb->xceiv->otg->default_a = 1;
372 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
373 del_timer(&glue->timer);
374 } else {
375 musb->is_active = 0;
376 MUSB_DEV_MODE(musb);
377 musb->xceiv->otg->default_a = 0;
378 musb->xceiv->state = OTG_STATE_B_IDLE;
379 }
380
381 /* NOTE: this must complete power-on within 100 ms. */
382 dev_dbg(musb->controller, "VBUS %s (%s)%s, devctl %02x\n",
383 drvvbus ? "on" : "off",
384 otg_state_string(musb->xceiv->state),
385 err ? " ERROR" : "",
386 devctl);
387 ret = IRQ_HANDLED;
388 }
389#endif
390
391 if (musb->int_tx || musb->int_rx || musb->int_usb)
392 ret |= musb_interrupt(musb);
393
394 eoi:
395 /* EOI needs to be written for the IRQ to be re-asserted. */
396 if (ret == IRQ_HANDLED || epintr || usbintr)
397 dsps_writel(reg_base, wrp->eoi, 1);
398
399#ifndef __UBOOT__
400 /* Poll for ID change */
401 if (is_otg_enabled(musb) && musb->xceiv->state == OTG_STATE_B_IDLE)
402 mod_timer(&glue->timer, jiffies + wrp->poll_seconds * HZ);
403#endif
404
405 spin_unlock_irqrestore(&musb->lock, flags);
406
407 return ret;
408}
409
410static int dsps_musb_init(struct musb *musb)
411{
412#ifndef __UBOOT__
413 struct device *dev = musb->controller;
414 struct musb_hdrc_platform_data *plat = dev->platform_data;
415 struct platform_device *pdev = to_platform_device(dev->parent);
416 struct dsps_glue *glue = platform_get_drvdata(pdev);
417 const struct dsps_musb_wrapper *wrp = glue->wrp;
418 struct omap_musb_board_data *data = plat->board_data;
419#else
420 struct omap_musb_board_data *data =
421 (struct omap_musb_board_data *)musb->controller;
422 const struct dsps_musb_wrapper *wrp = &ti81xx_driver_data;
423#endif
424 void __iomem *reg_base = musb->ctrl_base;
425 u32 rev, val;
426 int status;
427
428 /* mentor core register starts at offset of 0x400 from musb base */
429 musb->mregs += wrp->musb_core_offset;
430
431#ifndef __UBOOT__
432 /* NOP driver needs change if supporting dual instance */
433 usb_nop_xceiv_register();
434 musb->xceiv = usb_get_phy(USB_PHY_TYPE_USB2);
435 if (IS_ERR_OR_NULL(musb->xceiv))
436 return -ENODEV;
437#endif
438
439 /* Returns zero if e.g. not clocked */
440 rev = dsps_readl(reg_base, wrp->revision);
441 if (!rev) {
442 status = -ENODEV;
443 goto err0;
444 }
445
446#ifndef __UBOOT__
447 if (is_host_enabled(musb))
448 setup_timer(&glue->timer, otg_timer, (unsigned long) musb);
449#endif
450
451 /* Reset the musb */
452 dsps_writel(reg_base, wrp->control, (1 << wrp->reset));
453
454 /* Start the on-chip PHY and its PLL. */
Jean-Jacques Hiblot1594c752018-12-04 11:30:56 +0100455 if (data && data->set_phy_power)
Mugunthan V N1cac34c2016-11-17 14:38:10 +0530456 data->set_phy_power(data->dev, 1);
Ilya Yanok37931f02012-11-06 13:48:22 +0000457
458 musb->isr = dsps_interrupt;
459
460 /* reset the otgdisable bit, needed for host mode to work */
461 val = dsps_readl(reg_base, wrp->phy_utmi);
462 val &= ~(1 << wrp->otg_disable);
463 dsps_writel(musb->ctrl_base, wrp->phy_utmi, val);
464
465 /* clear level interrupt */
466 dsps_writel(reg_base, wrp->eoi, 0);
467
468 return 0;
469err0:
470#ifndef __UBOOT__
471 usb_put_phy(musb->xceiv);
472 usb_nop_xceiv_unregister();
473#endif
474 return status;
475}
476
477static int dsps_musb_exit(struct musb *musb)
478{
479#ifndef __UBOOT__
480 struct device *dev = musb->controller;
481 struct musb_hdrc_platform_data *plat = dev->platform_data;
482 struct omap_musb_board_data *data = plat->board_data;
483 struct platform_device *pdev = to_platform_device(dev->parent);
484 struct dsps_glue *glue = platform_get_drvdata(pdev);
485#else
486 struct omap_musb_board_data *data =
487 (struct omap_musb_board_data *)musb->controller;
488#endif
489
490#ifndef __UBOOT__
491 if (is_host_enabled(musb))
492 del_timer_sync(&glue->timer);
493#endif
494
495 /* Shutdown the on-chip PHY and its PLL. */
Jean-Jacques Hiblot1594c752018-12-04 11:30:56 +0100496 if (data && data->set_phy_power)
Mugunthan V N1cac34c2016-11-17 14:38:10 +0530497 data->set_phy_power(data->dev, 0);
Ilya Yanok37931f02012-11-06 13:48:22 +0000498
499#ifndef __UBOOT__
500 /* NOP driver needs change if supporting dual instance */
501 usb_put_phy(musb->xceiv);
502 usb_nop_xceiv_unregister();
503#endif
504
505 return 0;
506}
507
508#ifndef __UBOOT__
509static struct musb_platform_ops dsps_ops = {
510#else
511struct musb_platform_ops musb_dsps_ops = {
512#endif
513 .init = dsps_musb_init,
514 .exit = dsps_musb_exit,
515
516 .enable = dsps_musb_enable,
517 .disable = dsps_musb_disable,
518
519#ifndef __UBOOT__
520 .try_idle = dsps_musb_try_idle,
521#endif
522};
523
524#ifndef __UBOOT__
525static u64 musb_dmamask = DMA_BIT_MASK(32);
526#endif
527
528#ifndef __UBOOT__
529static int __devinit dsps_create_musb_pdev(struct dsps_glue *glue, u8 id)
530{
531 struct device *dev = glue->dev;
532 struct platform_device *pdev = to_platform_device(dev);
533 struct musb_hdrc_platform_data *pdata = dev->platform_data;
534 struct platform_device *musb;
535 struct resource *res;
536 struct resource resources[2];
537 char res_name[10];
538 int ret;
539
540 /* get memory resource */
541 sprintf(res_name, "musb%d", id);
542 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, res_name);
543 if (!res) {
544 dev_err(dev, "%s get mem resource failed\n", res_name);
545 ret = -ENODEV;
546 goto err0;
547 }
548 res->parent = NULL;
549 resources[0] = *res;
550
551 /* get irq resource */
552 sprintf(res_name, "musb%d-irq", id);
553 res = platform_get_resource_byname(pdev, IORESOURCE_IRQ, res_name);
554 if (!res) {
555 dev_err(dev, "%s get irq resource failed\n", res_name);
556 ret = -ENODEV;
557 goto err0;
558 }
559 res->parent = NULL;
560 resources[1] = *res;
561 resources[1].name = "mc";
562
563 /* allocate the child platform device */
564 musb = platform_device_alloc("musb-hdrc", -1);
565 if (!musb) {
566 dev_err(dev, "failed to allocate musb device\n");
567 ret = -ENOMEM;
568 goto err0;
569 }
570
571 musb->dev.parent = dev;
572 musb->dev.dma_mask = &musb_dmamask;
573 musb->dev.coherent_dma_mask = musb_dmamask;
574
575 glue->musb = musb;
576
577 pdata->platform_ops = &dsps_ops;
578
579 ret = platform_device_add_resources(musb, resources, 2);
580 if (ret) {
581 dev_err(dev, "failed to add resources\n");
582 goto err1;
583 }
584
585 ret = platform_device_add_data(musb, pdata, sizeof(*pdata));
586 if (ret) {
587 dev_err(dev, "failed to add platform_data\n");
588 goto err1;
589 }
590
591 ret = platform_device_add(musb);
592 if (ret) {
593 dev_err(dev, "failed to register musb device\n");
594 goto err1;
595 }
596
597 return 0;
598
599err1:
600 platform_device_put(musb);
601err0:
602 return ret;
603}
604
605static void __devexit dsps_delete_musb_pdev(struct dsps_glue *glue)
606{
607 platform_device_del(glue->musb);
608 platform_device_put(glue->musb);
609}
610
611static int __devinit dsps_probe(struct platform_device *pdev)
612{
613 const struct platform_device_id *id = platform_get_device_id(pdev);
614 const struct dsps_musb_wrapper *wrp =
615 (struct dsps_musb_wrapper *)id->driver_data;
616 struct dsps_glue *glue;
617 struct resource *iomem;
618 int ret;
619
620 /* allocate glue */
621 glue = kzalloc(sizeof(*glue), GFP_KERNEL);
622 if (!glue) {
623 dev_err(&pdev->dev, "unable to allocate glue memory\n");
624 ret = -ENOMEM;
625 goto err0;
626 }
627
628 /* get memory resource */
629 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
630 if (!iomem) {
Robert P. J. Day62a3b7d2016-07-15 13:44:45 -0400631 dev_err(&pdev->dev, "failed to get usbss mem resource\n");
Ilya Yanok37931f02012-11-06 13:48:22 +0000632 ret = -ENODEV;
633 goto err1;
634 }
635
636 glue->dev = &pdev->dev;
637
638 glue->wrp = kmemdup(wrp, sizeof(*wrp), GFP_KERNEL);
639 if (!glue->wrp) {
640 dev_err(&pdev->dev, "failed to duplicate wrapper struct memory\n");
641 ret = -ENOMEM;
642 goto err1;
643 }
644 platform_set_drvdata(pdev, glue);
645
646 /* enable the usbss clocks */
647 pm_runtime_enable(&pdev->dev);
648
649 ret = pm_runtime_get_sync(&pdev->dev);
650 if (ret < 0) {
651 dev_err(&pdev->dev, "pm_runtime_get_sync FAILED");
652 goto err2;
653 }
654
655 /* create the child platform device for first instances of musb */
656 ret = dsps_create_musb_pdev(glue, 0);
657 if (ret != 0) {
658 dev_err(&pdev->dev, "failed to create child pdev\n");
659 goto err3;
660 }
661
662 return 0;
663
664err3:
665 pm_runtime_put(&pdev->dev);
666err2:
667 pm_runtime_disable(&pdev->dev);
668 kfree(glue->wrp);
669err1:
670 kfree(glue);
671err0:
672 return ret;
673}
674static int __devexit dsps_remove(struct platform_device *pdev)
675{
676 struct dsps_glue *glue = platform_get_drvdata(pdev);
677
678 /* delete the child platform device */
679 dsps_delete_musb_pdev(glue);
680
681 /* disable usbss clocks */
682 pm_runtime_put(&pdev->dev);
683 pm_runtime_disable(&pdev->dev);
684 kfree(glue->wrp);
685 kfree(glue);
686 return 0;
687}
688
689#ifdef CONFIG_PM_SLEEP
690static int dsps_suspend(struct device *dev)
691{
692 struct musb_hdrc_platform_data *plat = dev->platform_data;
693 struct omap_musb_board_data *data = plat->board_data;
694
695 /* Shutdown the on-chip PHY and its PLL. */
Jean-Jacques Hiblot1594c752018-12-04 11:30:56 +0100696 if (data && data->set_phy_power)
Mugunthan V N1cac34c2016-11-17 14:38:10 +0530697 data->set_phy_power(data->dev, 0);
Ilya Yanok37931f02012-11-06 13:48:22 +0000698
699 return 0;
700}
701
702static int dsps_resume(struct device *dev)
703{
704 struct musb_hdrc_platform_data *plat = dev->platform_data;
705 struct omap_musb_board_data *data = plat->board_data;
706
707 /* Start the on-chip PHY and its PLL. */
Jean-Jacques Hiblot1594c752018-12-04 11:30:56 +0100708 if (data && data->set_phy_power)
Mugunthan V N1cac34c2016-11-17 14:38:10 +0530709 data->set_phy_power(data->dev, 1);
Ilya Yanok37931f02012-11-06 13:48:22 +0000710
711 return 0;
712}
713#endif
714
715static SIMPLE_DEV_PM_OPS(dsps_pm_ops, dsps_suspend, dsps_resume);
716#endif
717
718#ifndef __UBOOT__
719static const struct platform_device_id musb_dsps_id_table[] __devinitconst = {
720 {
721 .name = "musb-ti81xx",
722 .driver_data = (kernel_ulong_t) &ti81xx_driver_data,
723 },
724 { }, /* Terminating Entry */
725};
726MODULE_DEVICE_TABLE(platform, musb_dsps_id_table);
727
728static const struct of_device_id musb_dsps_of_match[] __devinitconst = {
729 { .compatible = "musb-ti81xx", },
730 { .compatible = "ti,ti81xx-musb", },
731 { .compatible = "ti,am335x-musb", },
732 { },
733};
734MODULE_DEVICE_TABLE(of, musb_dsps_of_match);
735
736static struct platform_driver dsps_usbss_driver = {
737 .probe = dsps_probe,
738 .remove = __devexit_p(dsps_remove),
739 .driver = {
740 .name = "musb-dsps",
741 .pm = &dsps_pm_ops,
742 .of_match_table = musb_dsps_of_match,
743 },
744 .id_table = musb_dsps_id_table,
745};
746
747MODULE_DESCRIPTION("TI DSPS MUSB Glue Layer");
748MODULE_AUTHOR("Ravi B <ravibabu@ti.com>");
749MODULE_AUTHOR("Ajay Kumar Gupta <ajay.gupta@ti.com>");
750MODULE_LICENSE("GPL v2");
751
752static int __init dsps_init(void)
753{
754 return platform_driver_register(&dsps_usbss_driver);
755}
756subsys_initcall(dsps_init);
757
758static void __exit dsps_exit(void)
759{
760 platform_driver_unregister(&dsps_usbss_driver);
761}
762module_exit(dsps_exit);
763#endif