blob: 74333321cb628c15f89b684b72cfc84c60bb46de [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>
46
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +053047#include "musb_core.h"
48
Ajay Kumar Gupta65145672012-08-31 11:09:53 +000049static const struct of_device_id musb_dsps_of_match[];
Ajay Kumar Gupta65145672012-08-31 11:09:53 +000050
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +053051/**
52 * avoid using musb_readx()/musb_writex() as glue layer should not be
53 * dependent on musb core layer symbols.
54 */
55static inline u8 dsps_readb(const void __iomem *addr, unsigned offset)
56 { return __raw_readb(addr + offset); }
57
58static inline u32 dsps_readl(const void __iomem *addr, unsigned offset)
59 { return __raw_readl(addr + offset); }
60
61static inline void dsps_writeb(void __iomem *addr, unsigned offset, u8 data)
62 { __raw_writeb(data, addr + offset); }
63
64static inline void dsps_writel(void __iomem *addr, unsigned offset, u32 data)
65 { __raw_writel(data, addr + offset); }
66
67/**
68 * DSPS musb wrapper register offset.
69 * FIXME: This should be expanded to have all the wrapper registers from TI DSPS
70 * musb ips.
71 */
72struct dsps_musb_wrapper {
73 u16 revision;
74 u16 control;
75 u16 status;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +053076 u16 epintr_set;
77 u16 epintr_clear;
78 u16 epintr_status;
79 u16 coreintr_set;
80 u16 coreintr_clear;
81 u16 coreintr_status;
82 u16 phy_utmi;
83 u16 mode;
84
85 /* bit positions for control */
86 unsigned reset:5;
87
88 /* bit positions for interrupt */
89 unsigned usb_shift:5;
90 u32 usb_mask;
91 u32 usb_bitmap;
92 unsigned drvvbus:5;
93
94 unsigned txep_shift:5;
95 u32 txep_mask;
96 u32 txep_bitmap;
97
98 unsigned rxep_shift:5;
99 u32 rxep_mask;
100 u32 rxep_bitmap;
101
102 /* bit positions for phy_utmi */
103 unsigned otg_disable:5;
104
105 /* bit positions for mode */
106 unsigned iddig:5;
107 /* miscellaneous stuff */
108 u32 musb_core_offset;
109 u8 poll_seconds;
B, Ravidb4a9322012-08-31 11:09:51 +0000110 /* number of musb instances */
111 u8 instances;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530112};
113
114/**
115 * DSPS glue structure.
116 */
117struct dsps_glue {
118 struct device *dev;
B, Ravidb4a9322012-08-31 11:09:51 +0000119 struct platform_device *musb[2]; /* child musb pdev */
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530120 const struct dsps_musb_wrapper *wrp; /* wrapper register offsets */
B, Ravidb4a9322012-08-31 11:09:51 +0000121 struct timer_list timer[2]; /* otg_workaround timer */
122 unsigned long last_timer[2]; /* last timer data for each instance */
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530123};
124
125/**
126 * dsps_musb_enable - enable interrupts
127 */
128static void dsps_musb_enable(struct musb *musb)
129{
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;
136
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);
141
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. */
Felipe Balbi032ec492011-11-24 15:46:26 +0200145 dsps_writel(reg_base, wrp->coreintr_set,
146 (1 << wrp->drvvbus) << wrp->usb_shift);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530147}
148
149/**
150 * dsps_musb_disable - disable HDRC and flush interrupts
151 */
152static void dsps_musb_disable(struct musb *musb)
153{
154 struct device *dev = musb->controller;
155 struct platform_device *pdev = to_platform_device(dev->parent);
156 struct dsps_glue *glue = platform_get_drvdata(pdev);
157 const struct dsps_musb_wrapper *wrp = glue->wrp;
158 void __iomem *reg_base = musb->ctrl_base;
159
160 dsps_writel(reg_base, wrp->coreintr_clear, wrp->usb_bitmap);
161 dsps_writel(reg_base, wrp->epintr_clear,
162 wrp->txep_bitmap | wrp->rxep_bitmap);
163 dsps_writeb(musb->mregs, MUSB_DEVCTL, 0);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530164}
165
166static void otg_timer(unsigned long _musb)
167{
168 struct musb *musb = (void *)_musb;
169 void __iomem *mregs = musb->mregs;
170 struct device *dev = musb->controller;
B, Ravidb4a9322012-08-31 11:09:51 +0000171 struct platform_device *pdev = to_platform_device(dev);
172 struct dsps_glue *glue = dev_get_drvdata(dev->parent);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530173 const struct dsps_musb_wrapper *wrp = glue->wrp;
174 u8 devctl;
175 unsigned long flags;
176
177 /*
178 * We poll because DSPS IP's won't expose several OTG-critical
179 * status change events (from the transceiver) otherwise.
180 */
181 devctl = dsps_readb(mregs, MUSB_DEVCTL);
182 dev_dbg(musb->controller, "Poll devctl %02x (%s)\n", devctl,
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200183 usb_otg_state_string(musb->xceiv->state));
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530184
185 spin_lock_irqsave(&musb->lock, flags);
186 switch (musb->xceiv->state) {
187 case OTG_STATE_A_WAIT_BCON:
188 devctl &= ~MUSB_DEVCTL_SESSION;
189 dsps_writeb(musb->mregs, MUSB_DEVCTL, devctl);
190
191 devctl = dsps_readb(musb->mregs, MUSB_DEVCTL);
192 if (devctl & MUSB_DEVCTL_BDEVICE) {
193 musb->xceiv->state = OTG_STATE_B_IDLE;
194 MUSB_DEV_MODE(musb);
195 } else {
196 musb->xceiv->state = OTG_STATE_A_IDLE;
197 MUSB_HST_MODE(musb);
198 }
199 break;
200 case OTG_STATE_A_WAIT_VFALL:
201 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
202 dsps_writel(musb->ctrl_base, wrp->coreintr_set,
203 MUSB_INTR_VBUSERROR << wrp->usb_shift);
204 break;
205 case OTG_STATE_B_IDLE:
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530206 devctl = dsps_readb(mregs, MUSB_DEVCTL);
207 if (devctl & MUSB_DEVCTL_BDEVICE)
B, Ravidb4a9322012-08-31 11:09:51 +0000208 mod_timer(&glue->timer[pdev->id],
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530209 jiffies + wrp->poll_seconds * HZ);
210 else
211 musb->xceiv->state = OTG_STATE_A_IDLE;
212 break;
213 default:
214 break;
215 }
216 spin_unlock_irqrestore(&musb->lock, flags);
217}
218
219static void dsps_musb_try_idle(struct musb *musb, unsigned long timeout)
220{
221 struct device *dev = musb->controller;
B, Ravidb4a9322012-08-31 11:09:51 +0000222 struct platform_device *pdev = to_platform_device(dev);
223 struct dsps_glue *glue = dev_get_drvdata(dev->parent);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530224
225 if (timeout == 0)
226 timeout = jiffies + msecs_to_jiffies(3);
227
228 /* Never idle if active, or when VBUS timeout is not set as host */
229 if (musb->is_active || (musb->a_wait_bcon == 0 &&
230 musb->xceiv->state == OTG_STATE_A_WAIT_BCON)) {
231 dev_dbg(musb->controller, "%s active, deleting timer\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200232 usb_otg_state_string(musb->xceiv->state));
B, Ravidb4a9322012-08-31 11:09:51 +0000233 del_timer(&glue->timer[pdev->id]);
234 glue->last_timer[pdev->id] = jiffies;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530235 return;
236 }
237
B, Ravidb4a9322012-08-31 11:09:51 +0000238 if (time_after(glue->last_timer[pdev->id], timeout) &&
239 timer_pending(&glue->timer[pdev->id])) {
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530240 dev_dbg(musb->controller,
241 "Longer idle timer already pending, ignoring...\n");
242 return;
243 }
B, Ravidb4a9322012-08-31 11:09:51 +0000244 glue->last_timer[pdev->id] = timeout;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530245
246 dev_dbg(musb->controller, "%s inactive, starting idle timer for %u ms\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200247 usb_otg_state_string(musb->xceiv->state),
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530248 jiffies_to_msecs(timeout - jiffies));
B, Ravidb4a9322012-08-31 11:09:51 +0000249 mod_timer(&glue->timer[pdev->id], timeout);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530250}
251
252static irqreturn_t dsps_interrupt(int irq, void *hci)
253{
254 struct musb *musb = hci;
255 void __iomem *reg_base = musb->ctrl_base;
256 struct device *dev = musb->controller;
B, Ravidb4a9322012-08-31 11:09:51 +0000257 struct platform_device *pdev = to_platform_device(dev);
258 struct dsps_glue *glue = dev_get_drvdata(dev->parent);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530259 const struct dsps_musb_wrapper *wrp = glue->wrp;
260 unsigned long flags;
261 irqreturn_t ret = IRQ_NONE;
262 u32 epintr, usbintr;
263
264 spin_lock_irqsave(&musb->lock, flags);
265
266 /* Get endpoint interrupts */
267 epintr = dsps_readl(reg_base, wrp->epintr_status);
268 musb->int_rx = (epintr & wrp->rxep_bitmap) >> wrp->rxep_shift;
269 musb->int_tx = (epintr & wrp->txep_bitmap) >> wrp->txep_shift;
270
271 if (epintr)
272 dsps_writel(reg_base, wrp->epintr_status, epintr);
273
274 /* Get usb core interrupts */
275 usbintr = dsps_readl(reg_base, wrp->coreintr_status);
276 if (!usbintr && !epintr)
Sebastian Andrzej Siewior9be73ba2013-07-26 11:11:38 +0200277 goto out;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530278
279 musb->int_usb = (usbintr & wrp->usb_bitmap) >> wrp->usb_shift;
280 if (usbintr)
281 dsps_writel(reg_base, wrp->coreintr_status, usbintr);
282
283 dev_dbg(musb->controller, "usbintr (%x) epintr(%x)\n",
284 usbintr, epintr);
285 /*
286 * DRVVBUS IRQs are the only proxy we have (a very poor one!) for
287 * DSPS IP's missing ID change IRQ. We need an ID change IRQ to
288 * switch appropriately between halves of the OTG state machine.
289 * Managing DEVCTL.SESSION per Mentor docs requires that we know its
290 * value but DEVCTL.BDEVICE is invalid without DEVCTL.SESSION set.
291 * Also, DRVVBUS pulses for SRP (but not at 5V) ...
292 */
Ravi Babu96449f02013-04-02 13:21:54 +0530293 if (is_host_active(musb) && usbintr & MUSB_INTR_BABBLE)
Masanari Iida984e8332012-11-01 00:03:51 +0900294 pr_info("CAUTION: musb: Babble Interrupt Occurred\n");
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530295
296 if (usbintr & ((1 << wrp->drvvbus) << wrp->usb_shift)) {
297 int drvvbus = dsps_readl(reg_base, wrp->status);
298 void __iomem *mregs = musb->mregs;
299 u8 devctl = dsps_readb(mregs, MUSB_DEVCTL);
300 int err;
301
Felipe Balbi032ec492011-11-24 15:46:26 +0200302 err = musb->int_usb & MUSB_INTR_VBUSERROR;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530303 if (err) {
304 /*
305 * The Mentor core doesn't debounce VBUS as needed
306 * to cope with device connect current spikes. This
307 * means it's not uncommon for bus-powered devices
308 * to get VBUS errors during enumeration.
309 *
310 * This is a workaround, but newer RTL from Mentor
311 * seems to allow a better one: "re"-starting sessions
312 * without waiting for VBUS to stop registering in
313 * devctl.
314 */
315 musb->int_usb &= ~MUSB_INTR_VBUSERROR;
316 musb->xceiv->state = OTG_STATE_A_WAIT_VFALL;
B, Ravidb4a9322012-08-31 11:09:51 +0000317 mod_timer(&glue->timer[pdev->id],
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530318 jiffies + wrp->poll_seconds * HZ);
319 WARNING("VBUS error workaround (delay coming)\n");
Felipe Balbi032ec492011-11-24 15:46:26 +0200320 } else if (drvvbus) {
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530321 musb->is_active = 1;
322 MUSB_HST_MODE(musb);
323 musb->xceiv->otg->default_a = 1;
324 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
B, Ravidb4a9322012-08-31 11:09:51 +0000325 del_timer(&glue->timer[pdev->id]);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530326 } 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;
331 }
332
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",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200336 usb_otg_state_string(musb->xceiv->state),
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530337 err ? " ERROR" : "",
338 devctl);
339 ret = IRQ_HANDLED;
340 }
341
342 if (musb->int_tx || musb->int_rx || musb->int_usb)
343 ret |= musb_interrupt(musb);
344
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530345 /* Poll for ID change */
Felipe Balbi032ec492011-11-24 15:46:26 +0200346 if (musb->xceiv->state == OTG_STATE_B_IDLE)
B, Ravidb4a9322012-08-31 11:09:51 +0000347 mod_timer(&glue->timer[pdev->id],
348 jiffies + wrp->poll_seconds * HZ);
Sebastian Andrzej Siewior9be73ba2013-07-26 11:11:38 +0200349out:
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530350 spin_unlock_irqrestore(&musb->lock, flags);
351
352 return ret;
353}
354
355static int dsps_musb_init(struct musb *musb)
356{
357 struct device *dev = musb->controller;
B, Ravidb4a9322012-08-31 11:09:51 +0000358 struct platform_device *pdev = to_platform_device(dev);
359 struct dsps_glue *glue = dev_get_drvdata(dev->parent);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530360 const struct dsps_musb_wrapper *wrp = glue->wrp;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530361 void __iomem *reg_base = musb->ctrl_base;
362 u32 rev, val;
363 int status;
364
365 /* mentor core register starts at offset of 0x400 from musb base */
366 musb->mregs += wrp->musb_core_offset;
367
Afzal Mohammedd7554222012-11-06 20:47:24 +0530368 /* NOP driver needs change if supporting dual instance */
Sebastian Andrzej Siewiore96bdc32013-07-05 12:33:33 +0200369 musb->xceiv = devm_usb_get_phy_by_phandle(glue->dev, "phys", 0);
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +0530370 if (IS_ERR_OR_NULL(musb->xceiv))
Ming Lei25736e02013-01-04 23:13:58 +0800371 return -EPROBE_DEFER;
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);
375 if (!rev) {
376 status = -ENODEV;
377 goto err0;
378 }
379
Sebastian Andrzej Siewior7557a572013-07-22 20:09:52 +0200380 usb_phy_init(musb->xceiv);
381
B, Ravidb4a9322012-08-31 11:09:51 +0000382 setup_timer(&glue->timer[pdev->id], otg_timer, (unsigned long) musb);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530383
384 /* Reset the musb */
385 dsps_writel(reg_base, wrp->control, (1 << wrp->reset));
386
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530387 musb->isr = dsps_interrupt;
388
389 /* reset the otgdisable bit, needed for host mode to work */
390 val = dsps_readl(reg_base, wrp->phy_utmi);
391 val &= ~(1 << wrp->otg_disable);
392 dsps_writel(musb->ctrl_base, wrp->phy_utmi, val);
393
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530394 return 0;
395err0:
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530396 return status;
397}
398
399static int dsps_musb_exit(struct musb *musb)
400{
401 struct device *dev = musb->controller;
B, Ravidb4a9322012-08-31 11:09:51 +0000402 struct platform_device *pdev = to_platform_device(dev);
403 struct dsps_glue *glue = dev_get_drvdata(dev->parent);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530404
B, Ravidb4a9322012-08-31 11:09:51 +0000405 del_timer_sync(&glue->timer[pdev->id]);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530406
Sebastian Andrzej Siewior7557a572013-07-22 20:09:52 +0200407 usb_phy_shutdown(musb->xceiv);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530408 return 0;
409}
410
411static struct musb_platform_ops dsps_ops = {
412 .init = dsps_musb_init,
413 .exit = dsps_musb_exit,
414
415 .enable = dsps_musb_enable,
416 .disable = dsps_musb_disable,
417
418 .try_idle = dsps_musb_try_idle,
419};
420
421static u64 musb_dmamask = DMA_BIT_MASK(32);
422
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500423static int dsps_create_musb_pdev(struct dsps_glue *glue, u8 id)
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530424{
425 struct device *dev = glue->dev;
426 struct platform_device *pdev = to_platform_device(dev);
Jingoo Hanc1a7d672013-07-30 17:03:12 +0900427 struct musb_hdrc_platform_data *pdata = dev_get_platdata(dev);
Ajay Kumar Gupta65145672012-08-31 11:09:53 +0000428 struct device_node *np = pdev->dev.of_node;
429 struct musb_hdrc_config *config;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530430 struct platform_device *musb;
431 struct resource *res;
432 struct resource resources[2];
Daniel Mackca749b22012-10-17 22:17:35 +0200433 char res_name[11];
Sebastian Andrzej Siewior2f771162012-10-31 16:12:43 +0100434 int ret;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530435
Afzal Mohammed3e594b12012-11-02 22:02:41 +0530436 /* first resource is for usbss, so start index from 1 */
437 res = platform_get_resource(pdev, IORESOURCE_MEM, id + 1);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530438 if (!res) {
Afzal Mohammed3e594b12012-11-02 22:02:41 +0530439 dev_err(dev, "failed to get memory for instance %d\n", id);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530440 ret = -ENODEV;
441 goto err0;
442 }
443 res->parent = NULL;
444 resources[0] = *res;
445
Afzal Mohammed3e594b12012-11-02 22:02:41 +0530446 /* first resource is for usbss, so start index from 1 */
447 res = platform_get_resource(pdev, IORESOURCE_IRQ, id + 1);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530448 if (!res) {
Afzal Mohammed3e594b12012-11-02 22:02:41 +0530449 dev_err(dev, "failed to get irq for instance %d\n", id);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530450 ret = -ENODEV;
451 goto err0;
452 }
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530453 res->parent = NULL;
454 resources[1] = *res;
Ajay Kumar Gupta3bb55342012-07-03 17:37:10 +0530455 resources[1].name = "mc";
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530456
B, Ravi65b3d522012-08-31 11:09:49 +0000457 /* allocate the child platform device */
Sebastian Andrzej Siewior2f771162012-10-31 16:12:43 +0100458 musb = platform_device_alloc("musb-hdrc", PLATFORM_DEVID_AUTO);
B, Ravi65b3d522012-08-31 11:09:49 +0000459 if (!musb) {
460 dev_err(dev, "failed to allocate musb device\n");
461 ret = -ENOMEM;
Sebastian Andrzej Siewior2f771162012-10-31 16:12:43 +0100462 goto err0;
B, Ravi65b3d522012-08-31 11:09:49 +0000463 }
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530464
465 musb->dev.parent = dev;
466 musb->dev.dma_mask = &musb_dmamask;
467 musb->dev.coherent_dma_mask = musb_dmamask;
468
B, Ravidb4a9322012-08-31 11:09:51 +0000469 glue->musb[id] = musb;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530470
471 ret = platform_device_add_resources(musb, resources, 2);
472 if (ret) {
473 dev_err(dev, "failed to add resources\n");
B, Ravi65b3d522012-08-31 11:09:49 +0000474 goto err2;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530475 }
476
Ajay Kumar Gupta65145672012-08-31 11:09:53 +0000477 if (np) {
478 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
479 if (!pdata) {
480 dev_err(&pdev->dev,
Masanari Iida8b513d02013-05-21 23:13:12 +0900481 "failed to allocate musb platform data\n");
Ajay Kumar Gupta65145672012-08-31 11:09:53 +0000482 ret = -ENOMEM;
483 goto err2;
484 }
485
486 config = devm_kzalloc(&pdev->dev, sizeof(*config), GFP_KERNEL);
487 if (!config) {
488 dev_err(&pdev->dev,
489 "failed to allocate musb hdrc config\n");
Wei Yongjunb25e5f12013-05-07 19:47:44 +0800490 ret = -ENOMEM;
Ajay Kumar Gupta65145672012-08-31 11:09:53 +0000491 goto err2;
492 }
493
494 of_property_read_u32(np, "num-eps", (u32 *)&config->num_eps);
495 of_property_read_u32(np, "ram-bits", (u32 *)&config->ram_bits);
Daniel Mackca749b22012-10-17 22:17:35 +0200496 snprintf(res_name, sizeof(res_name), "port%d-mode", id);
Ajay Kumar Gupta65145672012-08-31 11:09:53 +0000497 of_property_read_u32(np, res_name, (u32 *)&pdata->mode);
498 of_property_read_u32(np, "power", (u32 *)&pdata->power);
499 config->multipoint = of_property_read_bool(np, "multipoint");
500
501 pdata->config = config;
502 }
503
504 pdata->platform_ops = &dsps_ops;
505
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530506 ret = platform_device_add_data(musb, pdata, sizeof(*pdata));
507 if (ret) {
508 dev_err(dev, "failed to add platform_data\n");
B, Ravi65b3d522012-08-31 11:09:49 +0000509 goto err2;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530510 }
511
512 ret = platform_device_add(musb);
513 if (ret) {
514 dev_err(dev, "failed to register musb device\n");
B, Ravi65b3d522012-08-31 11:09:49 +0000515 goto err2;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530516 }
517
518 return 0;
519
B, Ravi65b3d522012-08-31 11:09:49 +0000520err2:
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530521 platform_device_put(musb);
522err0:
523 return ret;
524}
525
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500526static int dsps_probe(struct platform_device *pdev)
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530527{
Ajay Kumar Gupta65145672012-08-31 11:09:53 +0000528 const struct of_device_id *match;
529 const struct dsps_musb_wrapper *wrp;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530530 struct dsps_glue *glue;
531 struct resource *iomem;
B, Ravidb4a9322012-08-31 11:09:51 +0000532 int ret, i;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530533
Felipe Balbicc506032013-02-06 09:57:18 +0200534 match = of_match_node(musb_dsps_of_match, pdev->dev.of_node);
Ajay Kumar Gupta65145672012-08-31 11:09:53 +0000535 if (!match) {
536 dev_err(&pdev->dev, "fail to get matching of_match struct\n");
537 ret = -EINVAL;
538 goto err0;
539 }
540 wrp = match->data;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530541
542 /* allocate glue */
543 glue = kzalloc(sizeof(*glue), GFP_KERNEL);
544 if (!glue) {
545 dev_err(&pdev->dev, "unable to allocate glue memory\n");
546 ret = -ENOMEM;
547 goto err0;
548 }
549
550 /* get memory resource */
551 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
552 if (!iomem) {
553 dev_err(&pdev->dev, "failed to get usbss mem resourse\n");
554 ret = -ENODEV;
555 goto err1;
556 }
557
558 glue->dev = &pdev->dev;
559
560 glue->wrp = kmemdup(wrp, sizeof(*wrp), GFP_KERNEL);
561 if (!glue->wrp) {
562 dev_err(&pdev->dev, "failed to duplicate wrapper struct memory\n");
563 ret = -ENOMEM;
564 goto err1;
565 }
566 platform_set_drvdata(pdev, glue);
567
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530568 /* enable the usbss clocks */
569 pm_runtime_enable(&pdev->dev);
570
571 ret = pm_runtime_get_sync(&pdev->dev);
572 if (ret < 0) {
573 dev_err(&pdev->dev, "pm_runtime_get_sync FAILED");
Ajay Kumar Gupta0e38c4e2012-07-03 17:37:11 +0530574 goto err2;
575 }
576
B, Ravidb4a9322012-08-31 11:09:51 +0000577 /* create the child platform device for all instances of musb */
578 for (i = 0; i < wrp->instances ; i++) {
579 ret = dsps_create_musb_pdev(glue, i);
580 if (ret != 0) {
581 dev_err(&pdev->dev, "failed to create child pdev\n");
582 /* release resources of previously created instances */
583 for (i--; i >= 0 ; i--)
Sebastian Andrzej Siewior2f771162012-10-31 16:12:43 +0100584 platform_device_unregister(glue->musb[i]);
B, Ravidb4a9322012-08-31 11:09:51 +0000585 goto err3;
586 }
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530587 }
588
589 return 0;
590
591err3:
Ajay Kumar Gupta0e38c4e2012-07-03 17:37:11 +0530592 pm_runtime_put(&pdev->dev);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530593err2:
Ajay Kumar Gupta0e38c4e2012-07-03 17:37:11 +0530594 pm_runtime_disable(&pdev->dev);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530595 kfree(glue->wrp);
596err1:
597 kfree(glue);
598err0:
599 return ret;
600}
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500601static int dsps_remove(struct platform_device *pdev)
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530602{
603 struct dsps_glue *glue = platform_get_drvdata(pdev);
B, Ravidb4a9322012-08-31 11:09:51 +0000604 const struct dsps_musb_wrapper *wrp = glue->wrp;
605 int i;
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530606
607 /* delete the child platform device */
B, Ravidb4a9322012-08-31 11:09:51 +0000608 for (i = 0; i < wrp->instances ; i++)
Sebastian Andrzej Siewior2f771162012-10-31 16:12:43 +0100609 platform_device_unregister(glue->musb[i]);
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530610
611 /* disable usbss clocks */
612 pm_runtime_put(&pdev->dev);
613 pm_runtime_disable(&pdev->dev);
614 kfree(glue->wrp);
615 kfree(glue);
616 return 0;
617}
618
Sebastian Andrzej Siewiorfa7b4ca2013-07-26 11:11:37 +0200619static const struct dsps_musb_wrapper am33xx_driver_data = {
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530620 .revision = 0x00,
621 .control = 0x14,
622 .status = 0x18,
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530623 .epintr_set = 0x38,
624 .epintr_clear = 0x40,
625 .epintr_status = 0x30,
626 .coreintr_set = 0x3c,
627 .coreintr_clear = 0x44,
628 .coreintr_status = 0x34,
629 .phy_utmi = 0xe0,
630 .mode = 0xe8,
631 .reset = 0,
632 .otg_disable = 21,
633 .iddig = 8,
634 .usb_shift = 0,
635 .usb_mask = 0x1ff,
636 .usb_bitmap = (0x1ff << 0),
637 .drvvbus = 8,
638 .txep_shift = 0,
639 .txep_mask = 0xffff,
640 .txep_bitmap = (0xffff << 0),
641 .rxep_shift = 16,
642 .rxep_mask = 0xfffe,
643 .rxep_bitmap = (0xfffe << 16),
644 .musb_core_offset = 0x400,
645 .poll_seconds = 2,
Afzal Mohammed3b46dd72012-11-02 22:02:35 +0530646 .instances = 1,
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530647};
648
Bill Pemberton2f826862012-11-19 13:25:20 -0500649static const struct of_device_id musb_dsps_of_match[] = {
Ajay Kumar Gupta65145672012-08-31 11:09:53 +0000650 { .compatible = "ti,musb-am33xx",
Sebastian Andrzej Siewiorfa7b4ca2013-07-26 11:11:37 +0200651 .data = (void *) &am33xx_driver_data, },
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530652 { },
653};
654MODULE_DEVICE_TABLE(of, musb_dsps_of_match);
655
656static struct platform_driver dsps_usbss_driver = {
657 .probe = dsps_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500658 .remove = dsps_remove,
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530659 .driver = {
660 .name = "musb-dsps",
Ajay Kumar Gupta65145672012-08-31 11:09:53 +0000661 .of_match_table = of_match_ptr(musb_dsps_of_match),
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530662 },
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530663};
664
665MODULE_DESCRIPTION("TI DSPS MUSB Glue Layer");
666MODULE_AUTHOR("Ravi B <ravibabu@ti.com>");
667MODULE_AUTHOR("Ajay Kumar Gupta <ajay.gupta@ti.com>");
668MODULE_LICENSE("GPL v2");
669
670static int __init dsps_init(void)
671{
672 return platform_driver_register(&dsps_usbss_driver);
673}
674subsys_initcall(dsps_init);
675
676static void __exit dsps_exit(void)
677{
678 platform_driver_unregister(&dsps_usbss_driver);
679}
680module_exit(dsps_exit);