x86/xen: resume timer irqs early
[linux/fpc-iii.git] / drivers / usb / musb / musb_dsps.c
blob1edee7906b73f705250c85b86e280392f046a482
1 /*
2 * Texas Instruments DSPS platforms "glue layer"
4 * Copyright (C) 2012, by Texas Instruments
6 * Based on the am35x "glue layer" code.
8 * This file is part of the Inventra Controller Driver for Linux.
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.
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.
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
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.
32 #include <linux/init.h>
33 #include <linux/io.h>
34 #include <linux/err.h>
35 #include <linux/platform_device.h>
36 #include <linux/dma-mapping.h>
37 #include <linux/pm_runtime.h>
38 #include <linux/module.h>
39 #include <linux/usb/usb_phy_gen_xceiv.h>
40 #include <linux/platform_data/usb-omap.h>
41 #include <linux/sizes.h>
43 #include <linux/of.h>
44 #include <linux/of_device.h>
45 #include <linux/of_address.h>
46 #include <linux/of_irq.h>
47 #include <linux/usb/of.h>
49 #include "musb_core.h"
51 static const struct of_device_id musb_dsps_of_match[];
53 /**
54 * avoid using musb_readx()/musb_writex() as glue layer should not be
55 * dependent on musb core layer symbols.
57 static inline u8 dsps_readb(const void __iomem *addr, unsigned offset)
58 { return __raw_readb(addr + offset); }
60 static inline u32 dsps_readl(const void __iomem *addr, unsigned offset)
61 { return __raw_readl(addr + offset); }
63 static inline void dsps_writeb(void __iomem *addr, unsigned offset, u8 data)
64 { __raw_writeb(data, addr + offset); }
66 static inline void dsps_writel(void __iomem *addr, unsigned offset, u32 data)
67 { __raw_writel(data, addr + offset); }
69 /**
70 * DSPS musb wrapper register offset.
71 * FIXME: This should be expanded to have all the wrapper registers from TI DSPS
72 * musb ips.
74 struct dsps_musb_wrapper {
75 u16 revision;
76 u16 control;
77 u16 status;
78 u16 epintr_set;
79 u16 epintr_clear;
80 u16 epintr_status;
81 u16 coreintr_set;
82 u16 coreintr_clear;
83 u16 coreintr_status;
84 u16 phy_utmi;
85 u16 mode;
87 /* bit positions for control */
88 unsigned reset:5;
90 /* bit positions for interrupt */
91 unsigned usb_shift:5;
92 u32 usb_mask;
93 u32 usb_bitmap;
94 unsigned drvvbus:5;
96 unsigned txep_shift:5;
97 u32 txep_mask;
98 u32 txep_bitmap;
100 unsigned rxep_shift:5;
101 u32 rxep_mask;
102 u32 rxep_bitmap;
104 /* bit positions for phy_utmi */
105 unsigned otg_disable:5;
107 /* bit positions for mode */
108 unsigned iddig:5;
109 /* miscellaneous stuff */
110 u8 poll_seconds;
114 * DSPS glue structure.
116 struct dsps_glue {
117 struct device *dev;
118 struct platform_device *musb; /* child musb pdev */
119 const struct dsps_musb_wrapper *wrp; /* wrapper register offsets */
120 struct timer_list timer; /* otg_workaround timer */
121 unsigned long last_timer; /* last timer data for each instance */
124 static void dsps_musb_try_idle(struct musb *musb, unsigned long timeout);
126 * dsps_musb_enable - enable interrupts
128 static void dsps_musb_enable(struct musb *musb)
130 struct device *dev = musb->controller;
131 struct platform_device *pdev = to_platform_device(dev->parent);
132 struct dsps_glue *glue = platform_get_drvdata(pdev);
133 const struct dsps_musb_wrapper *wrp = glue->wrp;
134 void __iomem *reg_base = musb->ctrl_base;
135 u32 epmask, coremask;
137 /* Workaround: setup IRQs through both register sets. */
138 epmask = ((musb->epmask & wrp->txep_mask) << wrp->txep_shift) |
139 ((musb->epmask & wrp->rxep_mask) << wrp->rxep_shift);
140 coremask = (wrp->usb_bitmap & ~MUSB_INTR_SOF);
142 dsps_writel(reg_base, wrp->epintr_set, epmask);
143 dsps_writel(reg_base, wrp->coreintr_set, coremask);
144 /* Force the DRVVBUS IRQ so we can start polling for ID change. */
145 dsps_writel(reg_base, wrp->coreintr_set,
146 (1 << wrp->drvvbus) << wrp->usb_shift);
147 dsps_musb_try_idle(musb, 0);
151 * dsps_musb_disable - disable HDRC and flush interrupts
153 static void dsps_musb_disable(struct musb *musb)
155 struct device *dev = musb->controller;
156 struct platform_device *pdev = to_platform_device(dev->parent);
157 struct dsps_glue *glue = platform_get_drvdata(pdev);
158 const struct dsps_musb_wrapper *wrp = glue->wrp;
159 void __iomem *reg_base = musb->ctrl_base;
161 dsps_writel(reg_base, wrp->coreintr_clear, wrp->usb_bitmap);
162 dsps_writel(reg_base, wrp->epintr_clear,
163 wrp->txep_bitmap | wrp->rxep_bitmap);
164 dsps_writeb(musb->mregs, MUSB_DEVCTL, 0);
167 static void otg_timer(unsigned long _musb)
169 struct musb *musb = (void *)_musb;
170 void __iomem *mregs = musb->mregs;
171 struct device *dev = musb->controller;
172 struct dsps_glue *glue = dev_get_drvdata(dev->parent);
173 const struct dsps_musb_wrapper *wrp = glue->wrp;
174 u8 devctl;
175 unsigned long flags;
176 int skip_session = 0;
179 * We poll because DSPS IP's won't expose several OTG-critical
180 * status change events (from the transceiver) otherwise.
182 devctl = dsps_readb(mregs, MUSB_DEVCTL);
183 dev_dbg(musb->controller, "Poll devctl %02x (%s)\n", devctl,
184 usb_otg_state_string(musb->xceiv->state));
186 spin_lock_irqsave(&musb->lock, flags);
187 switch (musb->xceiv->state) {
188 case OTG_STATE_A_WAIT_BCON:
189 dsps_writeb(musb->mregs, MUSB_DEVCTL, 0);
190 skip_session = 1;
191 /* fall */
193 case OTG_STATE_A_IDLE:
194 case OTG_STATE_B_IDLE:
195 if (devctl & MUSB_DEVCTL_BDEVICE) {
196 musb->xceiv->state = OTG_STATE_B_IDLE;
197 MUSB_DEV_MODE(musb);
198 } else {
199 musb->xceiv->state = OTG_STATE_A_IDLE;
200 MUSB_HST_MODE(musb);
202 if (!(devctl & MUSB_DEVCTL_SESSION) && !skip_session)
203 dsps_writeb(mregs, MUSB_DEVCTL, MUSB_DEVCTL_SESSION);
204 mod_timer(&glue->timer, jiffies + wrp->poll_seconds * HZ);
205 break;
206 case OTG_STATE_A_WAIT_VFALL:
207 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
208 dsps_writel(musb->ctrl_base, wrp->coreintr_set,
209 MUSB_INTR_VBUSERROR << wrp->usb_shift);
210 break;
211 default:
212 break;
214 spin_unlock_irqrestore(&musb->lock, flags);
217 static void dsps_musb_try_idle(struct musb *musb, unsigned long timeout)
219 struct device *dev = musb->controller;
220 struct dsps_glue *glue = dev_get_drvdata(dev->parent);
222 if (timeout == 0)
223 timeout = jiffies + msecs_to_jiffies(3);
225 /* Never idle if active, or when VBUS timeout is not set as host */
226 if (musb->is_active || (musb->a_wait_bcon == 0 &&
227 musb->xceiv->state == OTG_STATE_A_WAIT_BCON)) {
228 dev_dbg(musb->controller, "%s active, deleting timer\n",
229 usb_otg_state_string(musb->xceiv->state));
230 del_timer(&glue->timer);
231 glue->last_timer = jiffies;
232 return;
234 if (musb->port_mode == MUSB_PORT_MODE_HOST)
235 return;
237 if (!musb->g.dev.driver)
238 return;
240 if (time_after(glue->last_timer, timeout) &&
241 timer_pending(&glue->timer)) {
242 dev_dbg(musb->controller,
243 "Longer idle timer already pending, ignoring...\n");
244 return;
246 glue->last_timer = timeout;
248 dev_dbg(musb->controller, "%s inactive, starting idle timer for %u ms\n",
249 usb_otg_state_string(musb->xceiv->state),
250 jiffies_to_msecs(timeout - jiffies));
251 mod_timer(&glue->timer, timeout);
254 static irqreturn_t dsps_interrupt(int irq, void *hci)
256 struct musb *musb = hci;
257 void __iomem *reg_base = musb->ctrl_base;
258 struct device *dev = musb->controller;
259 struct dsps_glue *glue = dev_get_drvdata(dev->parent);
260 const struct dsps_musb_wrapper *wrp = glue->wrp;
261 unsigned long flags;
262 irqreturn_t ret = IRQ_NONE;
263 u32 epintr, usbintr;
265 spin_lock_irqsave(&musb->lock, flags);
267 /* Get endpoint interrupts */
268 epintr = dsps_readl(reg_base, wrp->epintr_status);
269 musb->int_rx = (epintr & wrp->rxep_bitmap) >> wrp->rxep_shift;
270 musb->int_tx = (epintr & wrp->txep_bitmap) >> wrp->txep_shift;
272 if (epintr)
273 dsps_writel(reg_base, wrp->epintr_status, epintr);
275 /* Get usb core interrupts */
276 usbintr = dsps_readl(reg_base, wrp->coreintr_status);
277 if (!usbintr && !epintr)
278 goto out;
280 musb->int_usb = (usbintr & wrp->usb_bitmap) >> wrp->usb_shift;
281 if (usbintr)
282 dsps_writel(reg_base, wrp->coreintr_status, usbintr);
284 dev_dbg(musb->controller, "usbintr (%x) epintr(%x)\n",
285 usbintr, epintr);
287 * DRVVBUS IRQs are the only proxy we have (a very poor one!) for
288 * DSPS IP's missing ID change IRQ. We need an ID change IRQ to
289 * switch appropriately between halves of the OTG state machine.
290 * Managing DEVCTL.SESSION per Mentor docs requires that we know its
291 * value but DEVCTL.BDEVICE is invalid without DEVCTL.SESSION set.
292 * Also, DRVVBUS pulses for SRP (but not at 5V) ...
294 if (is_host_active(musb) && usbintr & MUSB_INTR_BABBLE)
295 pr_info("CAUTION: musb: Babble Interrupt Occurred\n");
297 if (usbintr & ((1 << wrp->drvvbus) << wrp->usb_shift)) {
298 int drvvbus = dsps_readl(reg_base, wrp->status);
299 void __iomem *mregs = musb->mregs;
300 u8 devctl = dsps_readb(mregs, MUSB_DEVCTL);
301 int err;
303 err = musb->int_usb & MUSB_INTR_VBUSERROR;
304 if (err) {
306 * The Mentor core doesn't debounce VBUS as needed
307 * to cope with device connect current spikes. This
308 * means it's not uncommon for bus-powered devices
309 * to get VBUS errors during enumeration.
311 * This is a workaround, but newer RTL from Mentor
312 * seems to allow a better one: "re"-starting sessions
313 * without waiting for VBUS to stop registering in
314 * devctl.
316 musb->int_usb &= ~MUSB_INTR_VBUSERROR;
317 musb->xceiv->state = OTG_STATE_A_WAIT_VFALL;
318 mod_timer(&glue->timer,
319 jiffies + wrp->poll_seconds * HZ);
320 WARNING("VBUS error workaround (delay coming)\n");
321 } else if (drvvbus) {
322 MUSB_HST_MODE(musb);
323 musb->xceiv->otg->default_a = 1;
324 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
325 del_timer(&glue->timer);
326 } else {
327 musb->is_active = 0;
328 MUSB_DEV_MODE(musb);
329 musb->xceiv->otg->default_a = 0;
330 musb->xceiv->state = OTG_STATE_B_IDLE;
333 /* NOTE: this must complete power-on within 100 ms. */
334 dev_dbg(musb->controller, "VBUS %s (%s)%s, devctl %02x\n",
335 drvvbus ? "on" : "off",
336 usb_otg_state_string(musb->xceiv->state),
337 err ? " ERROR" : "",
338 devctl);
339 ret = IRQ_HANDLED;
342 if (musb->int_tx || musb->int_rx || musb->int_usb)
343 ret |= musb_interrupt(musb);
345 /* Poll for ID change */
346 if (musb->xceiv->state == OTG_STATE_B_IDLE)
347 mod_timer(&glue->timer, jiffies + wrp->poll_seconds * HZ);
348 out:
349 spin_unlock_irqrestore(&musb->lock, flags);
351 return ret;
354 static int dsps_musb_init(struct musb *musb)
356 struct device *dev = musb->controller;
357 struct dsps_glue *glue = dev_get_drvdata(dev->parent);
358 struct platform_device *parent = to_platform_device(dev->parent);
359 const struct dsps_musb_wrapper *wrp = glue->wrp;
360 void __iomem *reg_base;
361 struct resource *r;
362 u32 rev, val;
364 r = platform_get_resource_byname(parent, IORESOURCE_MEM, "control");
365 if (!r)
366 return -EINVAL;
368 reg_base = devm_ioremap_resource(dev, r);
369 if (IS_ERR(reg_base))
370 return PTR_ERR(reg_base);
371 musb->ctrl_base = reg_base;
373 /* NOP driver needs change if supporting dual instance */
374 musb->xceiv = devm_usb_get_phy_by_phandle(dev, "phys", 0);
375 if (IS_ERR(musb->xceiv))
376 return PTR_ERR(musb->xceiv);
378 /* Returns zero if e.g. not clocked */
379 rev = dsps_readl(reg_base, wrp->revision);
380 if (!rev)
381 return -ENODEV;
383 usb_phy_init(musb->xceiv);
384 setup_timer(&glue->timer, otg_timer, (unsigned long) musb);
386 /* Reset the musb */
387 dsps_writel(reg_base, wrp->control, (1 << wrp->reset));
389 musb->isr = dsps_interrupt;
391 /* reset the otgdisable bit, needed for host mode to work */
392 val = dsps_readl(reg_base, wrp->phy_utmi);
393 val &= ~(1 << wrp->otg_disable);
394 dsps_writel(musb->ctrl_base, wrp->phy_utmi, val);
396 return 0;
399 static int dsps_musb_exit(struct musb *musb)
401 struct device *dev = musb->controller;
402 struct dsps_glue *glue = dev_get_drvdata(dev->parent);
404 del_timer_sync(&glue->timer);
406 usb_phy_shutdown(musb->xceiv);
407 return 0;
410 static struct musb_platform_ops dsps_ops = {
411 .init = dsps_musb_init,
412 .exit = dsps_musb_exit,
414 .enable = dsps_musb_enable,
415 .disable = dsps_musb_disable,
417 .try_idle = dsps_musb_try_idle,
420 static u64 musb_dmamask = DMA_BIT_MASK(32);
422 static int get_int_prop(struct device_node *dn, const char *s)
424 int ret;
425 u32 val;
427 ret = of_property_read_u32(dn, s, &val);
428 if (ret)
429 return 0;
430 return val;
433 static int get_musb_port_mode(struct device *dev)
435 enum usb_dr_mode mode;
437 mode = of_usb_get_dr_mode(dev->of_node);
438 switch (mode) {
439 case USB_DR_MODE_HOST:
440 return MUSB_PORT_MODE_HOST;
442 case USB_DR_MODE_PERIPHERAL:
443 return MUSB_PORT_MODE_GADGET;
445 case USB_DR_MODE_UNKNOWN:
446 case USB_DR_MODE_OTG:
447 default:
448 return MUSB_PORT_MODE_DUAL_ROLE;
452 static int dsps_create_musb_pdev(struct dsps_glue *glue,
453 struct platform_device *parent)
455 struct musb_hdrc_platform_data pdata;
456 struct resource resources[2];
457 struct resource *res;
458 struct device *dev = &parent->dev;
459 struct musb_hdrc_config *config;
460 struct platform_device *musb;
461 struct device_node *dn = parent->dev.of_node;
462 int ret;
464 memset(resources, 0, sizeof(resources));
465 res = platform_get_resource_byname(parent, IORESOURCE_MEM, "mc");
466 if (!res) {
467 dev_err(dev, "failed to get memory.\n");
468 return -EINVAL;
470 resources[0] = *res;
472 res = platform_get_resource_byname(parent, IORESOURCE_IRQ, "mc");
473 if (!res) {
474 dev_err(dev, "failed to get irq.\n");
475 return -EINVAL;
477 resources[1] = *res;
479 /* allocate the child platform device */
480 musb = platform_device_alloc("musb-hdrc", PLATFORM_DEVID_AUTO);
481 if (!musb) {
482 dev_err(dev, "failed to allocate musb device\n");
483 return -ENOMEM;
486 musb->dev.parent = dev;
487 musb->dev.dma_mask = &musb_dmamask;
488 musb->dev.coherent_dma_mask = musb_dmamask;
489 musb->dev.of_node = of_node_get(dn);
491 glue->musb = musb;
493 ret = platform_device_add_resources(musb, resources,
494 ARRAY_SIZE(resources));
495 if (ret) {
496 dev_err(dev, "failed to add resources\n");
497 goto err;
500 config = devm_kzalloc(&parent->dev, sizeof(*config), GFP_KERNEL);
501 if (!config) {
502 dev_err(dev, "failed to allocate musb hdrc config\n");
503 ret = -ENOMEM;
504 goto err;
506 pdata.config = config;
507 pdata.platform_ops = &dsps_ops;
509 config->num_eps = get_int_prop(dn, "mentor,num-eps");
510 config->ram_bits = get_int_prop(dn, "mentor,ram-bits");
511 pdata.mode = get_musb_port_mode(dev);
512 /* DT keeps this entry in mA, musb expects it as per USB spec */
513 pdata.power = get_int_prop(dn, "mentor,power") / 2;
514 config->multipoint = of_property_read_bool(dn, "mentor,multipoint");
516 ret = platform_device_add_data(musb, &pdata, sizeof(pdata));
517 if (ret) {
518 dev_err(dev, "failed to add platform_data\n");
519 goto err;
522 ret = platform_device_add(musb);
523 if (ret) {
524 dev_err(dev, "failed to register musb device\n");
525 goto err;
527 return 0;
529 err:
530 platform_device_put(musb);
531 return ret;
534 static int dsps_probe(struct platform_device *pdev)
536 const struct of_device_id *match;
537 const struct dsps_musb_wrapper *wrp;
538 struct dsps_glue *glue;
539 int ret;
541 if (!strcmp(pdev->name, "musb-hdrc"))
542 return -ENODEV;
544 match = of_match_node(musb_dsps_of_match, pdev->dev.of_node);
545 if (!match) {
546 dev_err(&pdev->dev, "fail to get matching of_match struct\n");
547 return -EINVAL;
549 wrp = match->data;
551 /* allocate glue */
552 glue = kzalloc(sizeof(*glue), GFP_KERNEL);
553 if (!glue) {
554 dev_err(&pdev->dev, "unable to allocate glue memory\n");
555 return -ENOMEM;
558 glue->dev = &pdev->dev;
559 glue->wrp = wrp;
561 platform_set_drvdata(pdev, glue);
562 pm_runtime_enable(&pdev->dev);
564 ret = pm_runtime_get_sync(&pdev->dev);
565 if (ret < 0) {
566 dev_err(&pdev->dev, "pm_runtime_get_sync FAILED");
567 goto err2;
570 ret = dsps_create_musb_pdev(glue, pdev);
571 if (ret)
572 goto err3;
574 return 0;
576 err3:
577 pm_runtime_put(&pdev->dev);
578 err2:
579 pm_runtime_disable(&pdev->dev);
580 kfree(glue);
581 return ret;
584 static int dsps_remove(struct platform_device *pdev)
586 struct dsps_glue *glue = platform_get_drvdata(pdev);
588 platform_device_unregister(glue->musb);
590 /* disable usbss clocks */
591 pm_runtime_put(&pdev->dev);
592 pm_runtime_disable(&pdev->dev);
593 kfree(glue);
594 return 0;
597 static const struct dsps_musb_wrapper am33xx_driver_data = {
598 .revision = 0x00,
599 .control = 0x14,
600 .status = 0x18,
601 .epintr_set = 0x38,
602 .epintr_clear = 0x40,
603 .epintr_status = 0x30,
604 .coreintr_set = 0x3c,
605 .coreintr_clear = 0x44,
606 .coreintr_status = 0x34,
607 .phy_utmi = 0xe0,
608 .mode = 0xe8,
609 .reset = 0,
610 .otg_disable = 21,
611 .iddig = 8,
612 .usb_shift = 0,
613 .usb_mask = 0x1ff,
614 .usb_bitmap = (0x1ff << 0),
615 .drvvbus = 8,
616 .txep_shift = 0,
617 .txep_mask = 0xffff,
618 .txep_bitmap = (0xffff << 0),
619 .rxep_shift = 16,
620 .rxep_mask = 0xfffe,
621 .rxep_bitmap = (0xfffe << 16),
622 .poll_seconds = 2,
625 static const struct of_device_id musb_dsps_of_match[] = {
626 { .compatible = "ti,musb-am33xx",
627 .data = (void *) &am33xx_driver_data, },
628 { },
630 MODULE_DEVICE_TABLE(of, musb_dsps_of_match);
632 static struct platform_driver dsps_usbss_driver = {
633 .probe = dsps_probe,
634 .remove = dsps_remove,
635 .driver = {
636 .name = "musb-dsps",
637 .of_match_table = of_match_ptr(musb_dsps_of_match),
641 MODULE_DESCRIPTION("TI DSPS MUSB Glue Layer");
642 MODULE_AUTHOR("Ravi B <ravibabu@ti.com>");
643 MODULE_AUTHOR("Ajay Kumar Gupta <ajay.gupta@ti.com>");
644 MODULE_LICENSE("GPL v2");
646 module_platform_driver(dsps_usbss_driver);