blob: 392406da3751a94681877c55c5aa1f46d7bc92ad [file] [log] [blame]
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +05301/*
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/init.h>
33#include <linux/io.h>
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +053034#include <linux/err.h>
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +053035#include <linux/platform_device.h>
36#include <linux/dma-mapping.h>
37#include <linux/pm_runtime.h>
38#include <linux/module.h>
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +020039#include <linux/usb/usb_phy_gen_xceiv.h>
Felipe Balbie8c4a7a2012-10-24 14:26:19 -070040#include <linux/platform_data/usb-omap.h>
Felipe Balbi0f53e482013-02-06 09:47:58 +020041#include <linux/sizes.h>
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +053042
43#include <linux/of.h>
44#include <linux/of_device.h>
45#include <linux/of_address.h>
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +020046#include <linux/of_irq.h>
Sebastian Andrzej Siewiorc031a7d2013-08-20 18:35:47 +020047#include <linux/usb/of.h>
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +053048
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +053049#include "musb_core.h"
50
Ajay Kumar Gupta65145672012-08-31 11:09:53 +000051static const struct of_device_id musb_dsps_of_match[];
Ajay Kumar Gupta65145672012-08-31 11:09:53 +000052
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +053053/**
54 * avoid using musb_readx()/musb_writex() as glue layer should not be
55 * dependent on musb core layer symbols.
56 */
57static inline u8 dsps_readb(const void __iomem *addr, unsigned offset)
58 { return __raw_readb(addr + offset); }
59
60static inline u32 dsps_readl(const void __iomem *addr, unsigned offset)
61 { return __raw_readl(addr + offset); }
62
63static inline void dsps_writeb(void __iomem *addr, unsigned offset, u8 data)
64 { __raw_writeb(data, addr + offset); }
65
66static inline void dsps_writel(void __iomem *addr, unsigned offset, u32 data)
67 { __raw_writel(data, addr + offset); }
68
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.
73 */
74struct dsps_musb_wrapper {
75 u16 revision;
76 u16 control;
77 u16 status;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +053078 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;
86
87 /* bit positions for control */
88 unsigned reset:5;
89
90 /* bit positions for interrupt */
91 unsigned usb_shift:5;
92 u32 usb_mask;
93 u32 usb_bitmap;
94 unsigned drvvbus:5;
95
96 unsigned txep_shift:5;
97 u32 txep_mask;
98 u32 txep_bitmap;
99
100 unsigned rxep_shift:5;
101 u32 rxep_mask;
102 u32 rxep_bitmap;
103
104 /* bit positions for phy_utmi */
105 unsigned otg_disable:5;
106
107 /* bit positions for mode */
108 unsigned iddig:5;
109 /* miscellaneous stuff */
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530110 u8 poll_seconds;
111};
112
113/**
114 * DSPS glue structure.
115 */
116struct dsps_glue {
117 struct device *dev;
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200118 struct platform_device *musb; /* child musb pdev */
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530119 const struct dsps_musb_wrapper *wrp; /* wrapper register offsets */
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200120 struct timer_list timer; /* otg_workaround timer */
121 unsigned long last_timer; /* last timer data for each instance */
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530122};
123
124/**
125 * dsps_musb_enable - enable interrupts
126 */
127static void dsps_musb_enable(struct musb *musb)
128{
129 struct device *dev = musb->controller;
130 struct platform_device *pdev = to_platform_device(dev->parent);
131 struct dsps_glue *glue = platform_get_drvdata(pdev);
132 const struct dsps_musb_wrapper *wrp = glue->wrp;
133 void __iomem *reg_base = musb->ctrl_base;
134 u32 epmask, coremask;
135
136 /* Workaround: setup IRQs through both register sets. */
137 epmask = ((musb->epmask & wrp->txep_mask) << wrp->txep_shift) |
138 ((musb->epmask & wrp->rxep_mask) << wrp->rxep_shift);
139 coremask = (wrp->usb_bitmap & ~MUSB_INTR_SOF);
140
141 dsps_writel(reg_base, wrp->epintr_set, epmask);
142 dsps_writel(reg_base, wrp->coreintr_set, coremask);
143 /* Force the DRVVBUS IRQ so we can start polling for ID change. */
Felipe Balbi032ec492011-11-24 15:46:26 +0200144 dsps_writel(reg_base, wrp->coreintr_set,
145 (1 << wrp->drvvbus) << wrp->usb_shift);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530146}
147
148/**
149 * dsps_musb_disable - disable HDRC and flush interrupts
150 */
151static void dsps_musb_disable(struct musb *musb)
152{
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 void __iomem *reg_base = musb->ctrl_base;
158
159 dsps_writel(reg_base, wrp->coreintr_clear, wrp->usb_bitmap);
160 dsps_writel(reg_base, wrp->epintr_clear,
161 wrp->txep_bitmap | wrp->rxep_bitmap);
162 dsps_writeb(musb->mregs, MUSB_DEVCTL, 0);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530163}
164
165static void otg_timer(unsigned long _musb)
166{
167 struct musb *musb = (void *)_musb;
168 void __iomem *mregs = musb->mregs;
169 struct device *dev = musb->controller;
B, Ravidb4a9322012-08-31 11:09:51 +0000170 struct dsps_glue *glue = dev_get_drvdata(dev->parent);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530171 const struct dsps_musb_wrapper *wrp = glue->wrp;
172 u8 devctl;
173 unsigned long flags;
174
175 /*
176 * We poll because DSPS IP's won't expose several OTG-critical
177 * status change events (from the transceiver) otherwise.
178 */
179 devctl = dsps_readb(mregs, MUSB_DEVCTL);
180 dev_dbg(musb->controller, "Poll devctl %02x (%s)\n", devctl,
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200181 usb_otg_state_string(musb->xceiv->state));
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530182
183 spin_lock_irqsave(&musb->lock, flags);
184 switch (musb->xceiv->state) {
185 case OTG_STATE_A_WAIT_BCON:
186 devctl &= ~MUSB_DEVCTL_SESSION;
187 dsps_writeb(musb->mregs, MUSB_DEVCTL, devctl);
188
189 devctl = dsps_readb(musb->mregs, MUSB_DEVCTL);
190 if (devctl & MUSB_DEVCTL_BDEVICE) {
191 musb->xceiv->state = OTG_STATE_B_IDLE;
192 MUSB_DEV_MODE(musb);
193 } else {
194 musb->xceiv->state = OTG_STATE_A_IDLE;
195 MUSB_HST_MODE(musb);
196 }
197 break;
198 case OTG_STATE_A_WAIT_VFALL:
199 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
200 dsps_writel(musb->ctrl_base, wrp->coreintr_set,
201 MUSB_INTR_VBUSERROR << wrp->usb_shift);
202 break;
203 case OTG_STATE_B_IDLE:
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530204 devctl = dsps_readb(mregs, MUSB_DEVCTL);
205 if (devctl & MUSB_DEVCTL_BDEVICE)
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200206 mod_timer(&glue->timer,
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530207 jiffies + wrp->poll_seconds * HZ);
208 else
209 musb->xceiv->state = OTG_STATE_A_IDLE;
210 break;
211 default:
212 break;
213 }
214 spin_unlock_irqrestore(&musb->lock, flags);
215}
216
217static void dsps_musb_try_idle(struct musb *musb, unsigned long timeout)
218{
219 struct device *dev = musb->controller;
B, Ravidb4a9322012-08-31 11:09:51 +0000220 struct dsps_glue *glue = dev_get_drvdata(dev->parent);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530221
222 if (timeout == 0)
223 timeout = jiffies + msecs_to_jiffies(3);
224
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",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200229 usb_otg_state_string(musb->xceiv->state));
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200230 del_timer(&glue->timer);
231 glue->last_timer = jiffies;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530232 return;
233 }
234
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200235 if (time_after(glue->last_timer, timeout) &&
236 timer_pending(&glue->timer)) {
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530237 dev_dbg(musb->controller,
238 "Longer idle timer already pending, ignoring...\n");
239 return;
240 }
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200241 glue->last_timer = timeout;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530242
243 dev_dbg(musb->controller, "%s inactive, starting idle timer for %u ms\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200244 usb_otg_state_string(musb->xceiv->state),
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530245 jiffies_to_msecs(timeout - jiffies));
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200246 mod_timer(&glue->timer, timeout);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530247}
248
249static irqreturn_t dsps_interrupt(int irq, void *hci)
250{
251 struct musb *musb = hci;
252 void __iomem *reg_base = musb->ctrl_base;
253 struct device *dev = musb->controller;
B, Ravidb4a9322012-08-31 11:09:51 +0000254 struct dsps_glue *glue = dev_get_drvdata(dev->parent);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530255 const struct dsps_musb_wrapper *wrp = glue->wrp;
256 unsigned long flags;
257 irqreturn_t ret = IRQ_NONE;
258 u32 epintr, usbintr;
259
260 spin_lock_irqsave(&musb->lock, flags);
261
262 /* Get endpoint interrupts */
263 epintr = dsps_readl(reg_base, wrp->epintr_status);
264 musb->int_rx = (epintr & wrp->rxep_bitmap) >> wrp->rxep_shift;
265 musb->int_tx = (epintr & wrp->txep_bitmap) >> wrp->txep_shift;
266
267 if (epintr)
268 dsps_writel(reg_base, wrp->epintr_status, epintr);
269
270 /* Get usb core interrupts */
271 usbintr = dsps_readl(reg_base, wrp->coreintr_status);
272 if (!usbintr && !epintr)
Sebastian Andrzej Siewior9be73ba2013-07-26 11:11:38 +0200273 goto out;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530274
275 musb->int_usb = (usbintr & wrp->usb_bitmap) >> wrp->usb_shift;
276 if (usbintr)
277 dsps_writel(reg_base, wrp->coreintr_status, usbintr);
278
279 dev_dbg(musb->controller, "usbintr (%x) epintr(%x)\n",
280 usbintr, epintr);
281 /*
282 * DRVVBUS IRQs are the only proxy we have (a very poor one!) for
283 * DSPS IP's missing ID change IRQ. We need an ID change IRQ to
284 * switch appropriately between halves of the OTG state machine.
285 * Managing DEVCTL.SESSION per Mentor docs requires that we know its
286 * value but DEVCTL.BDEVICE is invalid without DEVCTL.SESSION set.
287 * Also, DRVVBUS pulses for SRP (but not at 5V) ...
288 */
Ravi Babu96449f02013-04-02 13:21:54 +0530289 if (is_host_active(musb) && usbintr & MUSB_INTR_BABBLE)
Masanari Iida984e8332012-11-01 00:03:51 +0900290 pr_info("CAUTION: musb: Babble Interrupt Occurred\n");
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530291
292 if (usbintr & ((1 << wrp->drvvbus) << wrp->usb_shift)) {
293 int drvvbus = dsps_readl(reg_base, wrp->status);
294 void __iomem *mregs = musb->mregs;
295 u8 devctl = dsps_readb(mregs, MUSB_DEVCTL);
296 int err;
297
Felipe Balbi032ec492011-11-24 15:46:26 +0200298 err = musb->int_usb & MUSB_INTR_VBUSERROR;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530299 if (err) {
300 /*
301 * The Mentor core doesn't debounce VBUS as needed
302 * to cope with device connect current spikes. This
303 * means it's not uncommon for bus-powered devices
304 * to get VBUS errors during enumeration.
305 *
306 * This is a workaround, but newer RTL from Mentor
307 * seems to allow a better one: "re"-starting sessions
308 * without waiting for VBUS to stop registering in
309 * devctl.
310 */
311 musb->int_usb &= ~MUSB_INTR_VBUSERROR;
312 musb->xceiv->state = OTG_STATE_A_WAIT_VFALL;
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200313 mod_timer(&glue->timer,
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530314 jiffies + wrp->poll_seconds * HZ);
315 WARNING("VBUS error workaround (delay coming)\n");
Felipe Balbi032ec492011-11-24 15:46:26 +0200316 } else if (drvvbus) {
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530317 MUSB_HST_MODE(musb);
318 musb->xceiv->otg->default_a = 1;
319 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200320 del_timer(&glue->timer);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530321 } else {
322 musb->is_active = 0;
323 MUSB_DEV_MODE(musb);
324 musb->xceiv->otg->default_a = 0;
325 musb->xceiv->state = OTG_STATE_B_IDLE;
326 }
327
328 /* NOTE: this must complete power-on within 100 ms. */
329 dev_dbg(musb->controller, "VBUS %s (%s)%s, devctl %02x\n",
330 drvvbus ? "on" : "off",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200331 usb_otg_state_string(musb->xceiv->state),
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530332 err ? " ERROR" : "",
333 devctl);
334 ret = IRQ_HANDLED;
335 }
336
337 if (musb->int_tx || musb->int_rx || musb->int_usb)
338 ret |= musb_interrupt(musb);
339
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530340 /* Poll for ID change */
Felipe Balbi032ec492011-11-24 15:46:26 +0200341 if (musb->xceiv->state == OTG_STATE_B_IDLE)
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200342 mod_timer(&glue->timer, jiffies + wrp->poll_seconds * HZ);
Sebastian Andrzej Siewior9be73ba2013-07-26 11:11:38 +0200343out:
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530344 spin_unlock_irqrestore(&musb->lock, flags);
345
346 return ret;
347}
348
349static int dsps_musb_init(struct musb *musb)
350{
351 struct device *dev = musb->controller;
B, Ravidb4a9322012-08-31 11:09:51 +0000352 struct dsps_glue *glue = dev_get_drvdata(dev->parent);
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200353 struct platform_device *parent = to_platform_device(dev->parent);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530354 const struct dsps_musb_wrapper *wrp = glue->wrp;
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200355 void __iomem *reg_base;
356 struct resource *r;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530357 u32 rev, val;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530358
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200359 r = platform_get_resource_byname(parent, IORESOURCE_MEM, "control");
360 if (!r)
361 return -EINVAL;
362
363 reg_base = devm_ioremap_resource(dev, r);
Julia Lawall51ef74f2013-08-19 18:00:08 +0200364 if (IS_ERR(reg_base))
365 return PTR_ERR(reg_base);
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200366 musb->ctrl_base = reg_base;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530367
Afzal Mohammedd7554222012-11-06 20:47:24 +0530368 /* NOP driver needs change if supporting dual instance */
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200369 musb->xceiv = devm_usb_get_phy_by_phandle(dev, "phys", 0);
370 if (IS_ERR(musb->xceiv))
371 return PTR_ERR(musb->xceiv);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530372
373 /* Returns zero if e.g. not clocked */
374 rev = dsps_readl(reg_base, wrp->revision);
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200375 if (!rev)
376 return -ENODEV;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530377
Sebastian Andrzej Siewior7557a572013-07-22 20:09:52 +0200378 usb_phy_init(musb->xceiv);
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200379 setup_timer(&glue->timer, otg_timer, (unsigned long) musb);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530380
381 /* Reset the musb */
382 dsps_writel(reg_base, wrp->control, (1 << wrp->reset));
383
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530384 musb->isr = dsps_interrupt;
385
386 /* reset the otgdisable bit, needed for host mode to work */
387 val = dsps_readl(reg_base, wrp->phy_utmi);
388 val &= ~(1 << wrp->otg_disable);
389 dsps_writel(musb->ctrl_base, wrp->phy_utmi, val);
390
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530391 return 0;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530392}
393
394static int dsps_musb_exit(struct musb *musb)
395{
396 struct device *dev = musb->controller;
B, Ravidb4a9322012-08-31 11:09:51 +0000397 struct dsps_glue *glue = dev_get_drvdata(dev->parent);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530398
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200399 del_timer_sync(&glue->timer);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530400
Sebastian Andrzej Siewior7557a572013-07-22 20:09:52 +0200401 usb_phy_shutdown(musb->xceiv);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530402 return 0;
403}
404
405static struct musb_platform_ops dsps_ops = {
406 .init = dsps_musb_init,
407 .exit = dsps_musb_exit,
408
409 .enable = dsps_musb_enable,
410 .disable = dsps_musb_disable,
411
412 .try_idle = dsps_musb_try_idle,
413};
414
415static u64 musb_dmamask = DMA_BIT_MASK(32);
416
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200417static int get_int_prop(struct device_node *dn, const char *s)
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530418{
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200419 int ret;
420 u32 val;
421
422 ret = of_property_read_u32(dn, s, &val);
423 if (ret)
424 return 0;
425 return val;
426}
427
Sebastian Andrzej Siewiorc031a7d2013-08-20 18:35:47 +0200428static int get_musb_port_mode(struct device *dev)
429{
430 enum usb_dr_mode mode;
431
432 mode = of_usb_get_dr_mode(dev->of_node);
433 switch (mode) {
434 case USB_DR_MODE_HOST:
435 return MUSB_PORT_MODE_HOST;
436
437 case USB_DR_MODE_PERIPHERAL:
438 return MUSB_PORT_MODE_GADGET;
439
440 case USB_DR_MODE_UNKNOWN:
441 case USB_DR_MODE_OTG:
442 default:
443 return MUSB_PORT_MODE_DUAL_ROLE;
444 };
445}
446
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200447static int dsps_create_musb_pdev(struct dsps_glue *glue,
448 struct platform_device *parent)
449{
450 struct musb_hdrc_platform_data pdata;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530451 struct resource resources[2];
Sebastian Andrzej Siewiorc031a7d2013-08-20 18:35:47 +0200452 struct resource *res;
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200453 struct device *dev = &parent->dev;
454 struct musb_hdrc_config *config;
455 struct platform_device *musb;
456 struct device_node *dn = parent->dev.of_node;
Sebastian Andrzej Siewior2f771162012-10-31 16:12:43 +0100457 int ret;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530458
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200459 memset(resources, 0, sizeof(resources));
Sebastian Andrzej Siewiorc031a7d2013-08-20 18:35:47 +0200460 res = platform_get_resource_byname(parent, IORESOURCE_MEM, "mc");
461 if (!res) {
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200462 dev_err(dev, "failed to get memory.\n");
Sebastian Andrzej Siewiorc031a7d2013-08-20 18:35:47 +0200463 return -EINVAL;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530464 }
Sebastian Andrzej Siewiorc031a7d2013-08-20 18:35:47 +0200465 resources[0] = *res;
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200466
Sebastian Andrzej Siewiorc031a7d2013-08-20 18:35:47 +0200467 res = platform_get_resource_byname(parent, IORESOURCE_IRQ, "mc");
468 if (!res) {
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200469 dev_err(dev, "failed to get irq.\n");
Sebastian Andrzej Siewiorc031a7d2013-08-20 18:35:47 +0200470 return -EINVAL;
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200471 }
Sebastian Andrzej Siewiorc031a7d2013-08-20 18:35:47 +0200472 resources[1] = *res;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530473
B, Ravi65b3d522012-08-31 11:09:49 +0000474 /* allocate the child platform device */
Sebastian Andrzej Siewior2f771162012-10-31 16:12:43 +0100475 musb = platform_device_alloc("musb-hdrc", PLATFORM_DEVID_AUTO);
B, Ravi65b3d522012-08-31 11:09:49 +0000476 if (!musb) {
477 dev_err(dev, "failed to allocate musb device\n");
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200478 return -ENOMEM;
B, Ravi65b3d522012-08-31 11:09:49 +0000479 }
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530480
481 musb->dev.parent = dev;
482 musb->dev.dma_mask = &musb_dmamask;
483 musb->dev.coherent_dma_mask = musb_dmamask;
Sebastian Andrzej Siewiorc031a7d2013-08-20 18:35:47 +0200484 musb->dev.of_node = of_node_get(dn);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530485
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200486 glue->musb = musb;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530487
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200488 ret = platform_device_add_resources(musb, resources,
489 ARRAY_SIZE(resources));
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530490 if (ret) {
491 dev_err(dev, "failed to add resources\n");
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200492 goto err;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530493 }
494
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200495 config = devm_kzalloc(&parent->dev, sizeof(*config), GFP_KERNEL);
496 if (!config) {
497 dev_err(dev, "failed to allocate musb hdrc config\n");
498 ret = -ENOMEM;
499 goto err;
Ajay Kumar Gupta65145672012-08-31 11:09:53 +0000500 }
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200501 pdata.config = config;
502 pdata.platform_ops = &dsps_ops;
Ajay Kumar Gupta65145672012-08-31 11:09:53 +0000503
Sebastian Andrzej Siewiorc031a7d2013-08-20 18:35:47 +0200504 config->num_eps = get_int_prop(dn, "mentor,num-eps");
505 config->ram_bits = get_int_prop(dn, "mentor,ram-bits");
506 pdata.mode = get_musb_port_mode(dev);
507 /* DT keeps this entry in mA, musb expects it as per USB spec */
508 pdata.power = get_int_prop(dn, "mentor,power") / 2;
509 config->multipoint = of_property_read_bool(dn, "mentor,multipoint");
Ajay Kumar Gupta65145672012-08-31 11:09:53 +0000510
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200511 ret = platform_device_add_data(musb, &pdata, sizeof(pdata));
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530512 if (ret) {
513 dev_err(dev, "failed to add platform_data\n");
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200514 goto err;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530515 }
516
517 ret = platform_device_add(musb);
518 if (ret) {
519 dev_err(dev, "failed to register musb device\n");
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200520 goto err;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530521 }
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530522 return 0;
523
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200524err:
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530525 platform_device_put(musb);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530526 return ret;
527}
528
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500529static int dsps_probe(struct platform_device *pdev)
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530530{
Ajay Kumar Gupta65145672012-08-31 11:09:53 +0000531 const struct of_device_id *match;
532 const struct dsps_musb_wrapper *wrp;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530533 struct dsps_glue *glue;
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200534 int ret;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530535
Felipe Balbicc506032013-02-06 09:57:18 +0200536 match = of_match_node(musb_dsps_of_match, pdev->dev.of_node);
Ajay Kumar Gupta65145672012-08-31 11:09:53 +0000537 if (!match) {
538 dev_err(&pdev->dev, "fail to get matching of_match struct\n");
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200539 return -EINVAL;
Ajay Kumar Gupta65145672012-08-31 11:09:53 +0000540 }
541 wrp = match->data;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530542
543 /* allocate glue */
544 glue = kzalloc(sizeof(*glue), GFP_KERNEL);
545 if (!glue) {
546 dev_err(&pdev->dev, "unable to allocate glue memory\n");
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200547 return -ENOMEM;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530548 }
549
550 glue->dev = &pdev->dev;
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200551 glue->wrp = wrp;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530552
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530553 platform_set_drvdata(pdev, glue);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530554 pm_runtime_enable(&pdev->dev);
555
556 ret = pm_runtime_get_sync(&pdev->dev);
557 if (ret < 0) {
558 dev_err(&pdev->dev, "pm_runtime_get_sync FAILED");
Ajay Kumar Gupta0e38c4e2012-07-03 17:37:11 +0530559 goto err2;
560 }
561
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200562 ret = dsps_create_musb_pdev(glue, pdev);
563 if (ret)
564 goto err3;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530565
566 return 0;
567
568err3:
Ajay Kumar Gupta0e38c4e2012-07-03 17:37:11 +0530569 pm_runtime_put(&pdev->dev);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530570err2:
Ajay Kumar Gupta0e38c4e2012-07-03 17:37:11 +0530571 pm_runtime_disable(&pdev->dev);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530572 kfree(glue);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530573 return ret;
574}
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200575
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500576static int dsps_remove(struct platform_device *pdev)
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530577{
578 struct dsps_glue *glue = platform_get_drvdata(pdev);
579
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200580 platform_device_unregister(glue->musb);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530581
582 /* disable usbss clocks */
583 pm_runtime_put(&pdev->dev);
584 pm_runtime_disable(&pdev->dev);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530585 kfree(glue);
586 return 0;
587}
588
Sebastian Andrzej Siewiorfa7b4ca2013-07-26 11:11:37 +0200589static const struct dsps_musb_wrapper am33xx_driver_data = {
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530590 .revision = 0x00,
591 .control = 0x14,
592 .status = 0x18,
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530593 .epintr_set = 0x38,
594 .epintr_clear = 0x40,
595 .epintr_status = 0x30,
596 .coreintr_set = 0x3c,
597 .coreintr_clear = 0x44,
598 .coreintr_status = 0x34,
599 .phy_utmi = 0xe0,
600 .mode = 0xe8,
601 .reset = 0,
602 .otg_disable = 21,
603 .iddig = 8,
604 .usb_shift = 0,
605 .usb_mask = 0x1ff,
606 .usb_bitmap = (0x1ff << 0),
607 .drvvbus = 8,
608 .txep_shift = 0,
609 .txep_mask = 0xffff,
610 .txep_bitmap = (0xffff << 0),
611 .rxep_shift = 16,
612 .rxep_mask = 0xfffe,
613 .rxep_bitmap = (0xfffe << 16),
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530614 .poll_seconds = 2,
615};
616
Bill Pemberton2f826862012-11-19 13:25:20 -0500617static const struct of_device_id musb_dsps_of_match[] = {
Ajay Kumar Gupta65145672012-08-31 11:09:53 +0000618 { .compatible = "ti,musb-am33xx",
Sebastian Andrzej Siewiorfa7b4ca2013-07-26 11:11:37 +0200619 .data = (void *) &am33xx_driver_data, },
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530620 { },
621};
622MODULE_DEVICE_TABLE(of, musb_dsps_of_match);
623
624static struct platform_driver dsps_usbss_driver = {
625 .probe = dsps_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500626 .remove = dsps_remove,
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530627 .driver = {
628 .name = "musb-dsps",
Ajay Kumar Gupta65145672012-08-31 11:09:53 +0000629 .of_match_table = of_match_ptr(musb_dsps_of_match),
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530630 },
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530631};
632
633MODULE_DESCRIPTION("TI DSPS MUSB Glue Layer");
634MODULE_AUTHOR("Ravi B <ravibabu@ti.com>");
635MODULE_AUTHOR("Ajay Kumar Gupta <ajay.gupta@ti.com>");
636MODULE_LICENSE("GPL v2");
637
Sebastian Andrzej Siewior97238b32013-07-05 14:51:33 +0200638module_platform_driver(dsps_usbss_driver);