usb: musb: dsps: use msecs_to_jiffies instead
[firefly-linux-kernel-4.4.55.git] / drivers / usb / musb / musb_dsps.c
1 /*
2  * Texas Instruments DSPS platforms "glue layer"
3  *
4  * Copyright (C) 2012, by Texas Instruments
5  *
6  * Based on the am35x "glue layer" code.
7  *
8  * This file is part of the Inventra Controller Driver for Linux.
9  *
10  * The Inventra Controller Driver for Linux is free software; you
11  * can redistribute it and/or modify it under the terms of the GNU
12  * General Public License version 2 as published by the Free Software
13  * Foundation.
14  *
15  * The Inventra Controller Driver for Linux is distributed in
16  * the hope that it will be useful, but WITHOUT ANY WARRANTY;
17  * without even the implied warranty of MERCHANTABILITY or
18  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
19  * License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with The Inventra Controller Driver for Linux ; if not,
23  * write to the Free Software Foundation, Inc., 59 Temple Place,
24  * Suite 330, Boston, MA  02111-1307  USA
25  *
26  * musb_dsps.c will be a common file for all the TI DSPS platforms
27  * such as dm64x, dm36x, dm35x, da8x, am35x and ti81x.
28  * For now only ti81x is using this and in future davinci.c, am35x.c
29  * da8xx.c would be merged to this file after testing.
30  */
31
32 #include <linux/io.h>
33 #include <linux/err.h>
34 #include <linux/platform_device.h>
35 #include <linux/dma-mapping.h>
36 #include <linux/pm_runtime.h>
37 #include <linux/module.h>
38 #include <linux/usb/usb_phy_generic.h>
39 #include <linux/platform_data/usb-omap.h>
40 #include <linux/sizes.h>
41
42 #include <linux/of.h>
43 #include <linux/of_device.h>
44 #include <linux/of_address.h>
45 #include <linux/of_irq.h>
46 #include <linux/usb/of.h>
47
48 #include <linux/debugfs.h>
49
50 #include "musb_core.h"
51
52 static const struct of_device_id musb_dsps_of_match[];
53
54 /**
55  * avoid using musb_readx()/musb_writex() as glue layer should not be
56  * dependent on musb core layer symbols.
57  */
58 static inline u8 dsps_readb(const void __iomem *addr, unsigned offset)
59 {
60         return __raw_readb(addr + offset);
61 }
62
63 static inline u32 dsps_readl(const void __iomem *addr, unsigned offset)
64 {
65         return __raw_readl(addr + offset);
66 }
67
68 static inline void dsps_writeb(void __iomem *addr, unsigned offset, u8 data)
69 {
70         __raw_writeb(data, addr + offset);
71 }
72
73 static inline void dsps_writel(void __iomem *addr, unsigned offset, u32 data)
74 {
75         __raw_writel(data, addr + offset);
76 }
77
78 /**
79  * DSPS musb wrapper register offset.
80  * FIXME: This should be expanded to have all the wrapper registers from TI DSPS
81  * musb ips.
82  */
83 struct dsps_musb_wrapper {
84         u16     revision;
85         u16     control;
86         u16     status;
87         u16     epintr_set;
88         u16     epintr_clear;
89         u16     epintr_status;
90         u16     coreintr_set;
91         u16     coreintr_clear;
92         u16     coreintr_status;
93         u16     phy_utmi;
94         u16     mode;
95         u16     tx_mode;
96         u16     rx_mode;
97
98         /* bit positions for control */
99         unsigned        reset:5;
100
101         /* bit positions for interrupt */
102         unsigned        usb_shift:5;
103         u32             usb_mask;
104         u32             usb_bitmap;
105         unsigned        drvvbus:5;
106
107         unsigned        txep_shift:5;
108         u32             txep_mask;
109         u32             txep_bitmap;
110
111         unsigned        rxep_shift:5;
112         u32             rxep_mask;
113         u32             rxep_bitmap;
114
115         /* bit positions for phy_utmi */
116         unsigned        otg_disable:5;
117
118         /* bit positions for mode */
119         unsigned        iddig:5;
120         unsigned        iddig_mux:5;
121         /* miscellaneous stuff */
122         unsigned        poll_timeout;
123 };
124
125 /*
126  * register shadow for suspend
127  */
128 struct dsps_context {
129         u32 control;
130         u32 epintr;
131         u32 coreintr;
132         u32 phy_utmi;
133         u32 mode;
134         u32 tx_mode;
135         u32 rx_mode;
136 };
137
138 /**
139  * DSPS glue structure.
140  */
141 struct dsps_glue {
142         struct device *dev;
143         struct platform_device *musb;   /* child musb pdev */
144         const struct dsps_musb_wrapper *wrp; /* wrapper register offsets */
145         struct timer_list timer;        /* otg_workaround timer */
146         unsigned long last_timer;    /* last timer data for each instance */
147         bool sw_babble_enabled;
148
149         struct dsps_context context;
150         struct debugfs_regset32 regset;
151         struct dentry *dbgfs_root;
152 };
153
154 static const struct debugfs_reg32 dsps_musb_regs[] = {
155         { "revision",           0x00 },
156         { "control",            0x14 },
157         { "status",             0x18 },
158         { "eoi",                0x24 },
159         { "intr0_stat",         0x30 },
160         { "intr1_stat",         0x34 },
161         { "intr0_set",          0x38 },
162         { "intr1_set",          0x3c },
163         { "txmode",             0x70 },
164         { "rxmode",             0x74 },
165         { "autoreq",            0xd0 },
166         { "srpfixtime",         0xd4 },
167         { "tdown",              0xd8 },
168         { "phy_utmi",           0xe0 },
169         { "mode",               0xe8 },
170 };
171
172 static void dsps_musb_try_idle(struct musb *musb, unsigned long timeout)
173 {
174         struct device *dev = musb->controller;
175         struct dsps_glue *glue = dev_get_drvdata(dev->parent);
176
177         if (timeout == 0)
178                 timeout = jiffies + msecs_to_jiffies(3);
179
180         /* Never idle if active, or when VBUS timeout is not set as host */
181         if (musb->is_active || (musb->a_wait_bcon == 0 &&
182                         musb->xceiv->otg->state == OTG_STATE_A_WAIT_BCON)) {
183                 dev_dbg(musb->controller, "%s active, deleting timer\n",
184                                 usb_otg_state_string(musb->xceiv->otg->state));
185                 del_timer(&glue->timer);
186                 glue->last_timer = jiffies;
187                 return;
188         }
189         if (musb->port_mode != MUSB_PORT_MODE_DUAL_ROLE)
190                 return;
191
192         if (!musb->g.dev.driver)
193                 return;
194
195         if (time_after(glue->last_timer, timeout) &&
196                                 timer_pending(&glue->timer)) {
197                 dev_dbg(musb->controller,
198                         "Longer idle timer already pending, ignoring...\n");
199                 return;
200         }
201         glue->last_timer = timeout;
202
203         dev_dbg(musb->controller, "%s inactive, starting idle timer for %u ms\n",
204                 usb_otg_state_string(musb->xceiv->otg->state),
205                         jiffies_to_msecs(timeout - jiffies));
206         mod_timer(&glue->timer, timeout);
207 }
208
209 /**
210  * dsps_musb_enable - enable interrupts
211  */
212 static void dsps_musb_enable(struct musb *musb)
213 {
214         struct device *dev = musb->controller;
215         struct platform_device *pdev = to_platform_device(dev->parent);
216         struct dsps_glue *glue = platform_get_drvdata(pdev);
217         const struct dsps_musb_wrapper *wrp = glue->wrp;
218         void __iomem *reg_base = musb->ctrl_base;
219         u32 epmask, coremask;
220
221         /* Workaround: setup IRQs through both register sets. */
222         epmask = ((musb->epmask & wrp->txep_mask) << wrp->txep_shift) |
223                ((musb->epmask & wrp->rxep_mask) << wrp->rxep_shift);
224         coremask = (wrp->usb_bitmap & ~MUSB_INTR_SOF);
225
226         dsps_writel(reg_base, wrp->epintr_set, epmask);
227         dsps_writel(reg_base, wrp->coreintr_set, coremask);
228         /* Force the DRVVBUS IRQ so we can start polling for ID change. */
229         dsps_writel(reg_base, wrp->coreintr_set,
230                     (1 << wrp->drvvbus) << wrp->usb_shift);
231         dsps_musb_try_idle(musb, 0);
232 }
233
234 /**
235  * dsps_musb_disable - disable HDRC and flush interrupts
236  */
237 static void dsps_musb_disable(struct musb *musb)
238 {
239         struct device *dev = musb->controller;
240         struct platform_device *pdev = to_platform_device(dev->parent);
241         struct dsps_glue *glue = platform_get_drvdata(pdev);
242         const struct dsps_musb_wrapper *wrp = glue->wrp;
243         void __iomem *reg_base = musb->ctrl_base;
244
245         dsps_writel(reg_base, wrp->coreintr_clear, wrp->usb_bitmap);
246         dsps_writel(reg_base, wrp->epintr_clear,
247                          wrp->txep_bitmap | wrp->rxep_bitmap);
248         dsps_writeb(musb->mregs, MUSB_DEVCTL, 0);
249 }
250
251 static void otg_timer(unsigned long _musb)
252 {
253         struct musb *musb = (void *)_musb;
254         void __iomem *mregs = musb->mregs;
255         struct device *dev = musb->controller;
256         struct dsps_glue *glue = dev_get_drvdata(dev->parent);
257         const struct dsps_musb_wrapper *wrp = glue->wrp;
258         u8 devctl;
259         unsigned long flags;
260         int skip_session = 0;
261
262         /*
263          * We poll because DSPS IP's won't expose several OTG-critical
264          * status change events (from the transceiver) otherwise.
265          */
266         devctl = dsps_readb(mregs, MUSB_DEVCTL);
267         dev_dbg(musb->controller, "Poll devctl %02x (%s)\n", devctl,
268                                 usb_otg_state_string(musb->xceiv->otg->state));
269
270         spin_lock_irqsave(&musb->lock, flags);
271         switch (musb->xceiv->otg->state) {
272         case OTG_STATE_A_WAIT_BCON:
273                 dsps_writeb(musb->mregs, MUSB_DEVCTL, 0);
274                 skip_session = 1;
275                 /* fall */
276
277         case OTG_STATE_A_IDLE:
278         case OTG_STATE_B_IDLE:
279                 if (devctl & MUSB_DEVCTL_BDEVICE) {
280                         musb->xceiv->otg->state = OTG_STATE_B_IDLE;
281                         MUSB_DEV_MODE(musb);
282                 } else {
283                         musb->xceiv->otg->state = OTG_STATE_A_IDLE;
284                         MUSB_HST_MODE(musb);
285                 }
286                 if (!(devctl & MUSB_DEVCTL_SESSION) && !skip_session)
287                         dsps_writeb(mregs, MUSB_DEVCTL, MUSB_DEVCTL_SESSION);
288                 mod_timer(&glue->timer, jiffies +
289                                 msecs_to_jiffies(wrp->poll_timeout));
290                 break;
291         case OTG_STATE_A_WAIT_VFALL:
292                 musb->xceiv->otg->state = OTG_STATE_A_WAIT_VRISE;
293                 dsps_writel(musb->ctrl_base, wrp->coreintr_set,
294                             MUSB_INTR_VBUSERROR << wrp->usb_shift);
295                 break;
296         default:
297                 break;
298         }
299         spin_unlock_irqrestore(&musb->lock, flags);
300 }
301
302 static irqreturn_t dsps_interrupt(int irq, void *hci)
303 {
304         struct musb  *musb = hci;
305         void __iomem *reg_base = musb->ctrl_base;
306         struct device *dev = musb->controller;
307         struct dsps_glue *glue = dev_get_drvdata(dev->parent);
308         const struct dsps_musb_wrapper *wrp = glue->wrp;
309         unsigned long flags;
310         irqreturn_t ret = IRQ_NONE;
311         u32 epintr, usbintr;
312
313         spin_lock_irqsave(&musb->lock, flags);
314
315         /* Get endpoint interrupts */
316         epintr = dsps_readl(reg_base, wrp->epintr_status);
317         musb->int_rx = (epintr & wrp->rxep_bitmap) >> wrp->rxep_shift;
318         musb->int_tx = (epintr & wrp->txep_bitmap) >> wrp->txep_shift;
319
320         if (epintr)
321                 dsps_writel(reg_base, wrp->epintr_status, epintr);
322
323         /* Get usb core interrupts */
324         usbintr = dsps_readl(reg_base, wrp->coreintr_status);
325         if (!usbintr && !epintr)
326                 goto out;
327
328         musb->int_usb = (usbintr & wrp->usb_bitmap) >> wrp->usb_shift;
329         if (usbintr)
330                 dsps_writel(reg_base, wrp->coreintr_status, usbintr);
331
332         dev_dbg(musb->controller, "usbintr (%x) epintr(%x)\n",
333                         usbintr, epintr);
334
335         if (usbintr & ((1 << wrp->drvvbus) << wrp->usb_shift)) {
336                 int drvvbus = dsps_readl(reg_base, wrp->status);
337                 void __iomem *mregs = musb->mregs;
338                 u8 devctl = dsps_readb(mregs, MUSB_DEVCTL);
339                 int err;
340
341                 err = musb->int_usb & MUSB_INTR_VBUSERROR;
342                 if (err) {
343                         /*
344                          * The Mentor core doesn't debounce VBUS as needed
345                          * to cope with device connect current spikes. This
346                          * means it's not uncommon for bus-powered devices
347                          * to get VBUS errors during enumeration.
348                          *
349                          * This is a workaround, but newer RTL from Mentor
350                          * seems to allow a better one: "re"-starting sessions
351                          * without waiting for VBUS to stop registering in
352                          * devctl.
353                          */
354                         musb->int_usb &= ~MUSB_INTR_VBUSERROR;
355                         musb->xceiv->otg->state = OTG_STATE_A_WAIT_VFALL;
356                         mod_timer(&glue->timer, jiffies +
357                                         msecs_to_jiffies(wrp->poll_timeout));
358                         WARNING("VBUS error workaround (delay coming)\n");
359                 } else if (drvvbus) {
360                         MUSB_HST_MODE(musb);
361                         musb->xceiv->otg->default_a = 1;
362                         musb->xceiv->otg->state = OTG_STATE_A_WAIT_VRISE;
363                         del_timer(&glue->timer);
364                 } else {
365                         musb->is_active = 0;
366                         MUSB_DEV_MODE(musb);
367                         musb->xceiv->otg->default_a = 0;
368                         musb->xceiv->otg->state = OTG_STATE_B_IDLE;
369                 }
370
371                 /* NOTE: this must complete power-on within 100 ms. */
372                 dev_dbg(musb->controller, "VBUS %s (%s)%s, devctl %02x\n",
373                                 drvvbus ? "on" : "off",
374                                 usb_otg_state_string(musb->xceiv->otg->state),
375                                 err ? " ERROR" : "",
376                                 devctl);
377                 ret = IRQ_HANDLED;
378         }
379
380         if (musb->int_tx || musb->int_rx || musb->int_usb)
381                 ret |= musb_interrupt(musb);
382
383         /* Poll for ID change in OTG port mode */
384         if (musb->xceiv->otg->state == OTG_STATE_B_IDLE &&
385                         musb->port_mode == MUSB_PORT_MODE_DUAL_ROLE)
386                 mod_timer(&glue->timer, jiffies +
387                                 msecs_to_jiffies(wrp->poll_timeout));
388 out:
389         spin_unlock_irqrestore(&musb->lock, flags);
390
391         return ret;
392 }
393
394 static int dsps_musb_dbg_init(struct musb *musb, struct dsps_glue *glue)
395 {
396         struct dentry *root;
397         struct dentry *file;
398         char buf[128];
399
400         sprintf(buf, "%s.dsps", dev_name(musb->controller));
401         root = debugfs_create_dir(buf, NULL);
402         if (!root)
403                 return -ENOMEM;
404         glue->dbgfs_root = root;
405
406         glue->regset.regs = dsps_musb_regs;
407         glue->regset.nregs = ARRAY_SIZE(dsps_musb_regs);
408         glue->regset.base = musb->ctrl_base;
409
410         file = debugfs_create_regset32("regdump", S_IRUGO, root, &glue->regset);
411         if (!file) {
412                 debugfs_remove_recursive(root);
413                 return -ENOMEM;
414         }
415         return 0;
416 }
417
418 static int dsps_musb_init(struct musb *musb)
419 {
420         struct device *dev = musb->controller;
421         struct dsps_glue *glue = dev_get_drvdata(dev->parent);
422         struct platform_device *parent = to_platform_device(dev->parent);
423         const struct dsps_musb_wrapper *wrp = glue->wrp;
424         void __iomem *reg_base;
425         struct resource *r;
426         u32 rev, val;
427         int ret;
428
429         r = platform_get_resource_byname(parent, IORESOURCE_MEM, "control");
430         reg_base = devm_ioremap_resource(dev, r);
431         if (IS_ERR(reg_base))
432                 return PTR_ERR(reg_base);
433         musb->ctrl_base = reg_base;
434
435         /* NOP driver needs change if supporting dual instance */
436         musb->xceiv = devm_usb_get_phy_by_phandle(dev, "phys", 0);
437         if (IS_ERR(musb->xceiv))
438                 return PTR_ERR(musb->xceiv);
439
440         musb->phy = devm_phy_get(dev->parent, "usb2-phy");
441
442         /* Returns zero if e.g. not clocked */
443         rev = dsps_readl(reg_base, wrp->revision);
444         if (!rev)
445                 return -ENODEV;
446
447         usb_phy_init(musb->xceiv);
448         if (IS_ERR(musb->phy))  {
449                 musb->phy = NULL;
450         } else {
451                 ret = phy_init(musb->phy);
452                 if (ret < 0)
453                         return ret;
454                 ret = phy_power_on(musb->phy);
455                 if (ret) {
456                         phy_exit(musb->phy);
457                         return ret;
458                 }
459         }
460
461         setup_timer(&glue->timer, otg_timer, (unsigned long) musb);
462
463         /* Reset the musb */
464         dsps_writel(reg_base, wrp->control, (1 << wrp->reset));
465
466         musb->isr = dsps_interrupt;
467
468         /* reset the otgdisable bit, needed for host mode to work */
469         val = dsps_readl(reg_base, wrp->phy_utmi);
470         val &= ~(1 << wrp->otg_disable);
471         dsps_writel(musb->ctrl_base, wrp->phy_utmi, val);
472
473         /*
474          *  Check whether the dsps version has babble control enabled.
475          * In latest silicon revision the babble control logic is enabled.
476          * If MUSB_BABBLE_CTL returns 0x4 then we have the babble control
477          * logic enabled.
478          */
479         val = dsps_readb(musb->mregs, MUSB_BABBLE_CTL);
480         if (val & MUSB_BABBLE_RCV_DISABLE) {
481                 glue->sw_babble_enabled = true;
482                 val |= MUSB_BABBLE_SW_SESSION_CTRL;
483                 dsps_writeb(musb->mregs, MUSB_BABBLE_CTL, val);
484         }
485
486         ret = dsps_musb_dbg_init(musb, glue);
487         if (ret)
488                 return ret;
489
490         return 0;
491 }
492
493 static int dsps_musb_exit(struct musb *musb)
494 {
495         struct device *dev = musb->controller;
496         struct dsps_glue *glue = dev_get_drvdata(dev->parent);
497
498         del_timer_sync(&glue->timer);
499         usb_phy_shutdown(musb->xceiv);
500         phy_power_off(musb->phy);
501         phy_exit(musb->phy);
502         debugfs_remove_recursive(glue->dbgfs_root);
503
504         return 0;
505 }
506
507 static int dsps_musb_set_mode(struct musb *musb, u8 mode)
508 {
509         struct device *dev = musb->controller;
510         struct dsps_glue *glue = dev_get_drvdata(dev->parent);
511         const struct dsps_musb_wrapper *wrp = glue->wrp;
512         void __iomem *ctrl_base = musb->ctrl_base;
513         u32 reg;
514
515         reg = dsps_readl(ctrl_base, wrp->mode);
516
517         switch (mode) {
518         case MUSB_HOST:
519                 reg &= ~(1 << wrp->iddig);
520
521                 /*
522                  * if we're setting mode to host-only or device-only, we're
523                  * going to ignore whatever the PHY sends us and just force
524                  * ID pin status by SW
525                  */
526                 reg |= (1 << wrp->iddig_mux);
527
528                 dsps_writel(ctrl_base, wrp->mode, reg);
529                 dsps_writel(ctrl_base, wrp->phy_utmi, 0x02);
530                 break;
531         case MUSB_PERIPHERAL:
532                 reg |= (1 << wrp->iddig);
533
534                 /*
535                  * if we're setting mode to host-only or device-only, we're
536                  * going to ignore whatever the PHY sends us and just force
537                  * ID pin status by SW
538                  */
539                 reg |= (1 << wrp->iddig_mux);
540
541                 dsps_writel(ctrl_base, wrp->mode, reg);
542                 break;
543         case MUSB_OTG:
544                 dsps_writel(ctrl_base, wrp->phy_utmi, 0x02);
545                 break;
546         default:
547                 dev_err(glue->dev, "unsupported mode %d\n", mode);
548                 return -EINVAL;
549         }
550
551         return 0;
552 }
553
554 static bool dsps_sw_babble_control(struct musb *musb)
555 {
556         u8 babble_ctl;
557         bool session_restart =  false;
558
559         babble_ctl = dsps_readb(musb->mregs, MUSB_BABBLE_CTL);
560         dev_dbg(musb->controller, "babble: MUSB_BABBLE_CTL value %x\n",
561                 babble_ctl);
562         /*
563          * check line monitor flag to check whether babble is
564          * due to noise
565          */
566         dev_dbg(musb->controller, "STUCK_J is %s\n",
567                 babble_ctl & MUSB_BABBLE_STUCK_J ? "set" : "reset");
568
569         if (babble_ctl & MUSB_BABBLE_STUCK_J) {
570                 int timeout = 10;
571
572                 /*
573                  * babble is due to noise, then set transmit idle (d7 bit)
574                  * to resume normal operation
575                  */
576                 babble_ctl = dsps_readb(musb->mregs, MUSB_BABBLE_CTL);
577                 babble_ctl |= MUSB_BABBLE_FORCE_TXIDLE;
578                 dsps_writeb(musb->mregs, MUSB_BABBLE_CTL, babble_ctl);
579
580                 /* wait till line monitor flag cleared */
581                 dev_dbg(musb->controller, "Set TXIDLE, wait J to clear\n");
582                 do {
583                         babble_ctl = dsps_readb(musb->mregs, MUSB_BABBLE_CTL);
584                         udelay(1);
585                 } while ((babble_ctl & MUSB_BABBLE_STUCK_J) && timeout--);
586
587                 /* check whether stuck_at_j bit cleared */
588                 if (babble_ctl & MUSB_BABBLE_STUCK_J) {
589                         /*
590                          * real babble condition has occurred
591                          * restart the controller to start the
592                          * session again
593                          */
594                         dev_dbg(musb->controller, "J not cleared, misc (%x)\n",
595                                 babble_ctl);
596                         session_restart = true;
597                 }
598         } else {
599                 session_restart = true;
600         }
601
602         return session_restart;
603 }
604
605 static int dsps_musb_recover(struct musb *musb)
606 {
607         struct device *dev = musb->controller;
608         struct dsps_glue *glue = dev_get_drvdata(dev->parent);
609         int session_restart = 0;
610
611         if (glue->sw_babble_enabled)
612                 session_restart = dsps_sw_babble_control(musb);
613         else
614                 session_restart = 1;
615
616         return session_restart ? 0 : -EPIPE;
617 }
618
619 static struct musb_platform_ops dsps_ops = {
620         .quirks         = MUSB_INDEXED_EP,
621         .init           = dsps_musb_init,
622         .exit           = dsps_musb_exit,
623
624         .enable         = dsps_musb_enable,
625         .disable        = dsps_musb_disable,
626
627         .try_idle       = dsps_musb_try_idle,
628         .set_mode       = dsps_musb_set_mode,
629         .recover        = dsps_musb_recover,
630 };
631
632 static u64 musb_dmamask = DMA_BIT_MASK(32);
633
634 static int get_int_prop(struct device_node *dn, const char *s)
635 {
636         int ret;
637         u32 val;
638
639         ret = of_property_read_u32(dn, s, &val);
640         if (ret)
641                 return 0;
642         return val;
643 }
644
645 static int get_musb_port_mode(struct device *dev)
646 {
647         enum usb_dr_mode mode;
648
649         mode = of_usb_get_dr_mode(dev->of_node);
650         switch (mode) {
651         case USB_DR_MODE_HOST:
652                 return MUSB_PORT_MODE_HOST;
653
654         case USB_DR_MODE_PERIPHERAL:
655                 return MUSB_PORT_MODE_GADGET;
656
657         case USB_DR_MODE_UNKNOWN:
658         case USB_DR_MODE_OTG:
659         default:
660                 return MUSB_PORT_MODE_DUAL_ROLE;
661         }
662 }
663
664 static int dsps_create_musb_pdev(struct dsps_glue *glue,
665                 struct platform_device *parent)
666 {
667         struct musb_hdrc_platform_data pdata;
668         struct resource resources[2];
669         struct resource *res;
670         struct device *dev = &parent->dev;
671         struct musb_hdrc_config *config;
672         struct platform_device *musb;
673         struct device_node *dn = parent->dev.of_node;
674         int ret, val;
675
676         memset(resources, 0, sizeof(resources));
677         res = platform_get_resource_byname(parent, IORESOURCE_MEM, "mc");
678         if (!res) {
679                 dev_err(dev, "failed to get memory.\n");
680                 return -EINVAL;
681         }
682         resources[0] = *res;
683
684         res = platform_get_resource_byname(parent, IORESOURCE_IRQ, "mc");
685         if (!res) {
686                 dev_err(dev, "failed to get irq.\n");
687                 return -EINVAL;
688         }
689         resources[1] = *res;
690
691         /* allocate the child platform device */
692         musb = platform_device_alloc("musb-hdrc", PLATFORM_DEVID_AUTO);
693         if (!musb) {
694                 dev_err(dev, "failed to allocate musb device\n");
695                 return -ENOMEM;
696         }
697
698         musb->dev.parent                = dev;
699         musb->dev.dma_mask              = &musb_dmamask;
700         musb->dev.coherent_dma_mask     = musb_dmamask;
701         musb->dev.of_node               = of_node_get(dn);
702
703         glue->musb = musb;
704
705         ret = platform_device_add_resources(musb, resources,
706                         ARRAY_SIZE(resources));
707         if (ret) {
708                 dev_err(dev, "failed to add resources\n");
709                 goto err;
710         }
711
712         config = devm_kzalloc(&parent->dev, sizeof(*config), GFP_KERNEL);
713         if (!config) {
714                 ret = -ENOMEM;
715                 goto err;
716         }
717         pdata.config = config;
718         pdata.platform_ops = &dsps_ops;
719
720         config->num_eps = get_int_prop(dn, "mentor,num-eps");
721         config->ram_bits = get_int_prop(dn, "mentor,ram-bits");
722         config->host_port_deassert_reset_at_resume = 1;
723         pdata.mode = get_musb_port_mode(dev);
724         /* DT keeps this entry in mA, musb expects it as per USB spec */
725         pdata.power = get_int_prop(dn, "mentor,power") / 2;
726
727         ret = of_property_read_u32(dn, "mentor,multipoint", &val);
728         if (!ret && val)
729                 config->multipoint = true;
730
731         ret = platform_device_add_data(musb, &pdata, sizeof(pdata));
732         if (ret) {
733                 dev_err(dev, "failed to add platform_data\n");
734                 goto err;
735         }
736
737         ret = platform_device_add(musb);
738         if (ret) {
739                 dev_err(dev, "failed to register musb device\n");
740                 goto err;
741         }
742         return 0;
743
744 err:
745         platform_device_put(musb);
746         return ret;
747 }
748
749 static int dsps_probe(struct platform_device *pdev)
750 {
751         const struct of_device_id *match;
752         const struct dsps_musb_wrapper *wrp;
753         struct dsps_glue *glue;
754         int ret;
755
756         if (!strcmp(pdev->name, "musb-hdrc"))
757                 return -ENODEV;
758
759         match = of_match_node(musb_dsps_of_match, pdev->dev.of_node);
760         if (!match) {
761                 dev_err(&pdev->dev, "fail to get matching of_match struct\n");
762                 return -EINVAL;
763         }
764         wrp = match->data;
765
766         /* allocate glue */
767         glue = devm_kzalloc(&pdev->dev, sizeof(*glue), GFP_KERNEL);
768         if (!glue)
769                 return -ENOMEM;
770
771         glue->dev = &pdev->dev;
772         glue->wrp = wrp;
773
774         platform_set_drvdata(pdev, glue);
775         pm_runtime_enable(&pdev->dev);
776
777         ret = pm_runtime_get_sync(&pdev->dev);
778         if (ret < 0) {
779                 dev_err(&pdev->dev, "pm_runtime_get_sync FAILED");
780                 goto err2;
781         }
782
783         ret = dsps_create_musb_pdev(glue, pdev);
784         if (ret)
785                 goto err3;
786
787         return 0;
788
789 err3:
790         pm_runtime_put(&pdev->dev);
791 err2:
792         pm_runtime_disable(&pdev->dev);
793         return ret;
794 }
795
796 static int dsps_remove(struct platform_device *pdev)
797 {
798         struct dsps_glue *glue = platform_get_drvdata(pdev);
799
800         platform_device_unregister(glue->musb);
801
802         /* disable usbss clocks */
803         pm_runtime_put(&pdev->dev);
804         pm_runtime_disable(&pdev->dev);
805
806         return 0;
807 }
808
809 static const struct dsps_musb_wrapper am33xx_driver_data = {
810         .revision               = 0x00,
811         .control                = 0x14,
812         .status                 = 0x18,
813         .epintr_set             = 0x38,
814         .epintr_clear           = 0x40,
815         .epintr_status          = 0x30,
816         .coreintr_set           = 0x3c,
817         .coreintr_clear         = 0x44,
818         .coreintr_status        = 0x34,
819         .phy_utmi               = 0xe0,
820         .mode                   = 0xe8,
821         .tx_mode                = 0x70,
822         .rx_mode                = 0x74,
823         .reset                  = 0,
824         .otg_disable            = 21,
825         .iddig                  = 8,
826         .iddig_mux              = 7,
827         .usb_shift              = 0,
828         .usb_mask               = 0x1ff,
829         .usb_bitmap             = (0x1ff << 0),
830         .drvvbus                = 8,
831         .txep_shift             = 0,
832         .txep_mask              = 0xffff,
833         .txep_bitmap            = (0xffff << 0),
834         .rxep_shift             = 16,
835         .rxep_mask              = 0xfffe,
836         .rxep_bitmap            = (0xfffe << 16),
837         .poll_timeout           = 2000, /* ms */
838 };
839
840 static const struct of_device_id musb_dsps_of_match[] = {
841         { .compatible = "ti,musb-am33xx",
842                 .data = (void *) &am33xx_driver_data, },
843         {  },
844 };
845 MODULE_DEVICE_TABLE(of, musb_dsps_of_match);
846
847 #ifdef CONFIG_PM_SLEEP
848 static int dsps_suspend(struct device *dev)
849 {
850         struct dsps_glue *glue = dev_get_drvdata(dev);
851         const struct dsps_musb_wrapper *wrp = glue->wrp;
852         struct musb *musb = platform_get_drvdata(glue->musb);
853         void __iomem *mbase;
854
855         del_timer_sync(&glue->timer);
856
857         if (!musb)
858                 /* This can happen if the musb device is in -EPROBE_DEFER */
859                 return 0;
860
861         mbase = musb->ctrl_base;
862         glue->context.control = dsps_readl(mbase, wrp->control);
863         glue->context.epintr = dsps_readl(mbase, wrp->epintr_set);
864         glue->context.coreintr = dsps_readl(mbase, wrp->coreintr_set);
865         glue->context.phy_utmi = dsps_readl(mbase, wrp->phy_utmi);
866         glue->context.mode = dsps_readl(mbase, wrp->mode);
867         glue->context.tx_mode = dsps_readl(mbase, wrp->tx_mode);
868         glue->context.rx_mode = dsps_readl(mbase, wrp->rx_mode);
869
870         return 0;
871 }
872
873 static int dsps_resume(struct device *dev)
874 {
875         struct dsps_glue *glue = dev_get_drvdata(dev);
876         const struct dsps_musb_wrapper *wrp = glue->wrp;
877         struct musb *musb = platform_get_drvdata(glue->musb);
878         void __iomem *mbase;
879
880         if (!musb)
881                 return 0;
882
883         mbase = musb->ctrl_base;
884         dsps_writel(mbase, wrp->control, glue->context.control);
885         dsps_writel(mbase, wrp->epintr_set, glue->context.epintr);
886         dsps_writel(mbase, wrp->coreintr_set, glue->context.coreintr);
887         dsps_writel(mbase, wrp->phy_utmi, glue->context.phy_utmi);
888         dsps_writel(mbase, wrp->mode, glue->context.mode);
889         dsps_writel(mbase, wrp->tx_mode, glue->context.tx_mode);
890         dsps_writel(mbase, wrp->rx_mode, glue->context.rx_mode);
891         if (musb->xceiv->otg->state == OTG_STATE_B_IDLE &&
892             musb->port_mode == MUSB_PORT_MODE_DUAL_ROLE)
893                 mod_timer(&glue->timer, jiffies +
894                                 msecs_to_jiffies(wrp->poll_timeout));
895
896         return 0;
897 }
898 #endif
899
900 static SIMPLE_DEV_PM_OPS(dsps_pm_ops, dsps_suspend, dsps_resume);
901
902 static struct platform_driver dsps_usbss_driver = {
903         .probe          = dsps_probe,
904         .remove         = dsps_remove,
905         .driver         = {
906                 .name   = "musb-dsps",
907                 .pm     = &dsps_pm_ops,
908                 .of_match_table = musb_dsps_of_match,
909         },
910 };
911
912 MODULE_DESCRIPTION("TI DSPS MUSB Glue Layer");
913 MODULE_AUTHOR("Ravi B <ravibabu@ti.com>");
914 MODULE_AUTHOR("Ajay Kumar Gupta <ajay.gupta@ti.com>");
915 MODULE_LICENSE("GPL v2");
916
917 module_platform_driver(dsps_usbss_driver);