usb: musb: omap2430: add missing platform_device_put() on error in omap2430_probe()
[deliverable/linux.git] / drivers / usb / musb / omap2430.c
CommitLineData
550a7375
FB
1/*
2 * Copyright (C) 2005-2007 by Texas Instruments
3 * Some code has been taken from tusb6010.c
4 * Copyrights for that are attributable to:
5 * Copyright (C) 2006 Nokia Corporation
550a7375
FB
6 * Tony Lindgren <tony@atomide.com>
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 */
27#include <linux/module.h>
28#include <linux/kernel.h>
29#include <linux/sched.h>
550a7375
FB
30#include <linux/init.h>
31#include <linux/list.h>
550a7375 32#include <linux/io.h>
00a0b1d5 33#include <linux/of.h>
dc09886b
FB
34#include <linux/platform_device.h>
35#include <linux/dma-mapping.h>
207b0e1f
HH
36#include <linux/pm_runtime.h>
37#include <linux/err.h>
12a19b5f 38#include <linux/delay.h>
c9721438 39#include <linux/usb/musb-omap.h>
ca784be3 40#include <linux/usb/omap_control_usb.h>
550a7375 41
550a7375
FB
42#include "musb_core.h"
43#include "omap2430.h"
44
a3cee12a
FB
45struct omap2430_glue {
46 struct device *dev;
47 struct platform_device *musb;
c9721438 48 enum omap_musb_vbus_id_status status;
1e5acb8d 49 struct work_struct omap_musb_mailbox_work;
ca784be3 50 struct device *control_otghs;
a3cee12a 51};
c20aebb9 52#define glue_to_musb(g) platform_get_drvdata(g->musb)
a3cee12a 53
4b58ed11 54static struct omap2430_glue *_glue;
c9721438 55
550a7375
FB
56static struct timer_list musb_idle_timer;
57
58static void musb_do_idle(unsigned long _musb)
59{
60 struct musb *musb = (void *)_musb;
61 unsigned long flags;
62 u8 power;
63 u8 devctl;
64
550a7375
FB
65 spin_lock_irqsave(&musb->lock, flags);
66
84e250ff 67 switch (musb->xceiv->state) {
550a7375 68 case OTG_STATE_A_WAIT_BCON:
550a7375
FB
69
70 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
71 if (devctl & MUSB_DEVCTL_BDEVICE) {
84e250ff 72 musb->xceiv->state = OTG_STATE_B_IDLE;
550a7375
FB
73 MUSB_DEV_MODE(musb);
74 } else {
84e250ff 75 musb->xceiv->state = OTG_STATE_A_IDLE;
550a7375
FB
76 MUSB_HST_MODE(musb);
77 }
78 break;
550a7375
FB
79 case OTG_STATE_A_SUSPEND:
80 /* finish RESUME signaling? */
81 if (musb->port1_status & MUSB_PORT_STAT_RESUME) {
82 power = musb_readb(musb->mregs, MUSB_POWER);
83 power &= ~MUSB_POWER_RESUME;
5c8a86e1 84 dev_dbg(musb->controller, "root port resume stopped, power %02x\n", power);
550a7375
FB
85 musb_writeb(musb->mregs, MUSB_POWER, power);
86 musb->is_active = 1;
87 musb->port1_status &= ~(USB_PORT_STAT_SUSPEND
88 | MUSB_PORT_STAT_RESUME);
89 musb->port1_status |= USB_PORT_STAT_C_SUSPEND << 16;
90 usb_hcd_poll_rh_status(musb_to_hcd(musb));
91 /* NOTE: it might really be A_WAIT_BCON ... */
84e250ff 92 musb->xceiv->state = OTG_STATE_A_HOST;
550a7375
FB
93 }
94 break;
550a7375
FB
95 case OTG_STATE_A_HOST:
96 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
97 if (devctl & MUSB_DEVCTL_BDEVICE)
84e250ff 98 musb->xceiv->state = OTG_STATE_B_IDLE;
550a7375 99 else
84e250ff 100 musb->xceiv->state = OTG_STATE_A_WAIT_BCON;
550a7375
FB
101 default:
102 break;
103 }
104 spin_unlock_irqrestore(&musb->lock, flags);
105}
106
107
743411b3 108static void omap2430_musb_try_idle(struct musb *musb, unsigned long timeout)
550a7375
FB
109{
110 unsigned long default_timeout = jiffies + msecs_to_jiffies(3);
111 static unsigned long last_timer;
112
113 if (timeout == 0)
114 timeout = default_timeout;
115
116 /* Never idle if active, or when VBUS timeout is not set as host */
117 if (musb->is_active || ((musb->a_wait_bcon == 0)
84e250ff 118 && (musb->xceiv->state == OTG_STATE_A_WAIT_BCON))) {
5c8a86e1 119 dev_dbg(musb->controller, "%s active, deleting timer\n",
42c0bf1c 120 usb_otg_state_string(musb->xceiv->state));
550a7375
FB
121 del_timer(&musb_idle_timer);
122 last_timer = jiffies;
123 return;
124 }
125
126 if (time_after(last_timer, timeout)) {
127 if (!timer_pending(&musb_idle_timer))
128 last_timer = timeout;
129 else {
5c8a86e1 130 dev_dbg(musb->controller, "Longer idle timer already pending, ignoring\n");
550a7375
FB
131 return;
132 }
133 }
134 last_timer = timeout;
135
5c8a86e1 136 dev_dbg(musb->controller, "%s inactive, for idle timer for %lu ms\n",
42c0bf1c 137 usb_otg_state_string(musb->xceiv->state),
550a7375
FB
138 (unsigned long)jiffies_to_msecs(timeout - jiffies));
139 mod_timer(&musb_idle_timer, timeout);
140}
141
743411b3 142static void omap2430_musb_set_vbus(struct musb *musb, int is_on)
550a7375 143{
d445b6da 144 struct usb_otg *otg = musb->xceiv->otg;
550a7375 145 u8 devctl;
594632ef 146 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
550a7375
FB
147 /* HDRC controls CPEN, but beware current surges during device
148 * connect. They can trigger transient overcurrent conditions
149 * that must be ignored.
150 */
151
152 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
153
154 if (is_on) {
594632ef 155 if (musb->xceiv->state == OTG_STATE_A_IDLE) {
12a19b5f 156 int loops = 100;
594632ef
HH
157 /* start the session */
158 devctl |= MUSB_DEVCTL_SESSION;
159 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
160 /*
161 * Wait for the musb to set as A device to enable the
162 * VBUS
163 */
164 while (musb_readb(musb->mregs, MUSB_DEVCTL) & 0x80) {
165
12a19b5f 166 mdelay(5);
594632ef
HH
167 cpu_relax();
168
12a19b5f
N
169 if (time_after(jiffies, timeout)
170 || loops-- <= 0) {
594632ef
HH
171 dev_err(musb->controller,
172 "configured as A device timeout");
594632ef
HH
173 break;
174 }
175 }
176
bb467cf5 177 otg_set_vbus(otg, 1);
594632ef
HH
178 } else {
179 musb->is_active = 1;
d445b6da 180 otg->default_a = 1;
594632ef
HH
181 musb->xceiv->state = OTG_STATE_A_WAIT_VRISE;
182 devctl |= MUSB_DEVCTL_SESSION;
183 MUSB_HST_MODE(musb);
184 }
550a7375
FB
185 } else {
186 musb->is_active = 0;
187
188 /* NOTE: we're skipping A_WAIT_VFALL -> A_IDLE and
189 * jumping right to B_IDLE...
190 */
191
d445b6da 192 otg->default_a = 0;
84e250ff 193 musb->xceiv->state = OTG_STATE_B_IDLE;
550a7375
FB
194 devctl &= ~MUSB_DEVCTL_SESSION;
195
196 MUSB_DEV_MODE(musb);
197 }
198 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
199
5c8a86e1 200 dev_dbg(musb->controller, "VBUS %s, devctl %02x "
550a7375 201 /* otg %3x conf %08x prcm %08x */ "\n",
42c0bf1c 202 usb_otg_state_string(musb->xceiv->state),
550a7375
FB
203 musb_readb(musb->mregs, MUSB_DEVCTL));
204}
550a7375 205
743411b3 206static int omap2430_musb_set_mode(struct musb *musb, u8 musb_mode)
550a7375
FB
207{
208 u8 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
209
210 devctl |= MUSB_DEVCTL_SESSION;
211 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
212
96a274d1 213 return 0;
550a7375
FB
214}
215
c20aebb9
FB
216static inline void omap2430_low_level_exit(struct musb *musb)
217{
218 u32 l;
219
220 /* in any role */
221 l = musb_readl(musb->mregs, OTG_FORCESTDBY);
222 l |= ENABLEFORCE; /* enable MSTANDBY */
223 musb_writel(musb->mregs, OTG_FORCESTDBY, l);
c20aebb9
FB
224}
225
226static inline void omap2430_low_level_init(struct musb *musb)
227{
228 u32 l;
229
c20aebb9
FB
230 l = musb_readl(musb->mregs, OTG_FORCESTDBY);
231 l &= ~ENABLEFORCE; /* disable MSTANDBY */
232 musb_writel(musb->mregs, OTG_FORCESTDBY, l);
233}
234
c9721438 235void omap_musb_mailbox(enum omap_musb_vbus_id_status status)
594632ef 236{
c9721438 237 struct omap2430_glue *glue = _glue;
712d8efa 238
f8c4b0e7
AK
239 if (!glue) {
240 pr_err("%s: musb core is not yet initialized\n", __func__);
241 return;
242 }
243 glue->status = status;
244
245 if (!glue_to_musb(glue)) {
80ab72e1 246 pr_err("%s: musb core is not yet ready\n", __func__);
c9721438
KVA
247 return;
248 }
712d8efa 249
c9721438 250 schedule_work(&glue->omap_musb_mailbox_work);
712d8efa 251}
c9721438 252EXPORT_SYMBOL_GPL(omap_musb_mailbox);
712d8efa 253
c9721438 254static void omap_musb_set_mailbox(struct omap2430_glue *glue)
712d8efa 255{
1e5acb8d 256 struct musb *musb = glue_to_musb(glue);
594632ef
HH
257 struct device *dev = musb->controller;
258 struct musb_hdrc_platform_data *pdata = dev->platform_data;
259 struct omap_musb_board_data *data = pdata->board_data;
c83a8542 260 struct usb_otg *otg = musb->xceiv->otg;
594632ef 261
c9721438
KVA
262 switch (glue->status) {
263 case OMAP_MUSB_ID_GROUND:
264 dev_dbg(dev, "ID GND\n");
594632ef 265
c83a8542
KVA
266 otg->default_a = true;
267 musb->xceiv->state = OTG_STATE_A_IDLE;
c9721438 268 musb->xceiv->last_event = USB_EVENT_ID;
032ec49f 269 if (musb->gadget_driver) {
c9721438 270 pm_runtime_get_sync(dev);
ca784be3
KVA
271 omap_control_usb_set_mode(glue->control_otghs,
272 USB_MODE_HOST);
70045c57 273 omap2430_musb_set_vbus(musb, 1);
594632ef
HH
274 }
275 break;
276
c9721438
KVA
277 case OMAP_MUSB_VBUS_VALID:
278 dev_dbg(dev, "VBUS Connect\n");
594632ef 279
c83a8542
KVA
280 otg->default_a = false;
281 musb->xceiv->state = OTG_STATE_B_IDLE;
c9721438 282 musb->xceiv->last_event = USB_EVENT_VBUS;
7acc6197 283 if (musb->gadget_driver)
c9721438 284 pm_runtime_get_sync(dev);
ca784be3 285 omap_control_usb_set_mode(glue->control_otghs, USB_MODE_DEVICE);
594632ef
HH
286 break;
287
c9721438
KVA
288 case OMAP_MUSB_ID_FLOAT:
289 case OMAP_MUSB_VBUS_OFF:
290 dev_dbg(dev, "VBUS Disconnect\n");
594632ef 291
c9721438 292 musb->xceiv->last_event = USB_EVENT_NONE;
032ec49f 293 if (musb->gadget_driver) {
2c1fe89d 294 omap2430_musb_set_vbus(musb, 0);
032ec49f
FB
295 pm_runtime_mark_last_busy(dev);
296 pm_runtime_put_autosuspend(dev);
297 }
7acc6197 298
bb467cf5
KVA
299 if (data->interface_type == MUSB_INTERFACE_UTMI)
300 otg_set_vbus(musb->xceiv->otg, 0);
301
ca784be3
KVA
302 omap_control_usb_set_mode(glue->control_otghs,
303 USB_MODE_DISCONNECT);
594632ef
HH
304 break;
305 default:
c9721438 306 dev_dbg(dev, "ID float\n");
594632ef 307 }
594632ef
HH
308}
309
c9721438
KVA
310
311static void omap_musb_mailbox_work(struct work_struct *mailbox_work)
312{
313 struct omap2430_glue *glue = container_of(mailbox_work,
314 struct omap2430_glue, omap_musb_mailbox_work);
315 omap_musb_set_mailbox(glue);
316}
317
baef653a
PDS
318static irqreturn_t omap2430_musb_interrupt(int irq, void *__hci)
319{
320 unsigned long flags;
321 irqreturn_t retval = IRQ_NONE;
322 struct musb *musb = __hci;
323
324 spin_lock_irqsave(&musb->lock, flags);
325
326 musb->int_usb = musb_readb(musb->mregs, MUSB_INTRUSB);
327 musb->int_tx = musb_readw(musb->mregs, MUSB_INTRTX);
328 musb->int_rx = musb_readw(musb->mregs, MUSB_INTRRX);
329
330 if (musb->int_usb || musb->int_tx || musb->int_rx)
331 retval = musb_interrupt(musb);
332
333 spin_unlock_irqrestore(&musb->lock, flags);
334
335 return retval;
336}
337
743411b3 338static int omap2430_musb_init(struct musb *musb)
550a7375 339{
ad579699
S
340 u32 l;
341 int status = 0;
ea65df57 342 struct device *dev = musb->controller;
c9721438 343 struct omap2430_glue *glue = dev_get_drvdata(dev->parent);
ea65df57
HK
344 struct musb_hdrc_platform_data *plat = dev->platform_data;
345 struct omap_musb_board_data *data = plat->board_data;
550a7375 346
84e250ff
DB
347 /* We require some kind of external transceiver, hooked
348 * up through ULPI. TWL4030-family PMICs include one,
349 * which needs a driver, drivers aren't always needed.
350 */
b16604f2
KVA
351 if (dev->parent->of_node)
352 musb->xceiv = devm_usb_get_phy_by_phandle(dev->parent,
353 "usb-phy", 0);
354 else
355 musb->xceiv = devm_usb_get_phy_dev(dev, 0);
356
a90199bb
FB
357 if (IS_ERR(musb->xceiv)) {
358 status = PTR_ERR(musb->xceiv);
359
360 if (status == -ENXIO)
361 return status;
362
84e250ff 363 pr_err("HS USB OTG: no transceiver configured\n");
25736e0c 364 return -EPROBE_DEFER;
84e250ff
DB
365 }
366
baef653a
PDS
367 musb->isr = omap2430_musb_interrupt;
368
7acc6197
HH
369 status = pm_runtime_get_sync(dev);
370 if (status < 0) {
ad579699 371 dev_err(dev, "pm_runtime_get_sync FAILED %d\n", status);
7acc6197
HH
372 goto err1;
373 }
550a7375 374
8573e6a6 375 l = musb_readl(musb->mregs, OTG_INTERFSEL);
de2e1b0c
MM
376
377 if (data->interface_type == MUSB_INTERFACE_UTMI) {
378 /* OMAP4 uses Internal PHY GS70 which uses UTMI interface */
379 l &= ~ULPI_12PIN; /* Disable ULPI */
380 l |= UTMI_8BIT; /* Enable UTMI */
381 } else {
382 l |= ULPI_12PIN;
383 }
384
8573e6a6 385 musb_writel(musb->mregs, OTG_INTERFSEL, l);
550a7375
FB
386
387 pr_debug("HS USB OTG: revision 0x%x, sysconfig 0x%02x, "
388 "sysstatus 0x%x, intrfsel 0x%x, simenable 0x%x\n",
8573e6a6
FB
389 musb_readl(musb->mregs, OTG_REVISION),
390 musb_readl(musb->mregs, OTG_SYSCONFIG),
391 musb_readl(musb->mregs, OTG_SYSSTATUS),
392 musb_readl(musb->mregs, OTG_INTERFSEL),
393 musb_readl(musb->mregs, OTG_SIMENABLE));
550a7375 394
550a7375
FB
395 setup_timer(&musb_idle_timer, musb_do_idle, (unsigned long) musb);
396
c9721438
KVA
397 if (glue->status != OMAP_MUSB_UNKNOWN)
398 omap_musb_set_mailbox(glue);
399
3bf6db9b
KVA
400 usb_phy_init(musb->xceiv);
401
c04352a5 402 pm_runtime_put_noidle(musb->controller);
550a7375 403 return 0;
7acc6197
HH
404
405err1:
7acc6197 406 return status;
550a7375
FB
407}
408
002eda13
HH
409static void omap2430_musb_enable(struct musb *musb)
410{
411 u8 devctl;
412 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
413 struct device *dev = musb->controller;
c9721438 414 struct omap2430_glue *glue = dev_get_drvdata(dev->parent);
002eda13
HH
415 struct musb_hdrc_platform_data *pdata = dev->platform_data;
416 struct omap_musb_board_data *data = pdata->board_data;
417
c9721438 418 switch (glue->status) {
002eda13 419
c9721438 420 case OMAP_MUSB_ID_GROUND:
ca784be3 421 omap_control_usb_set_mode(glue->control_otghs, USB_MODE_HOST);
08dec56e
FC
422 if (data->interface_type != MUSB_INTERFACE_UTMI)
423 break;
424 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
425 /* start the session */
426 devctl |= MUSB_DEVCTL_SESSION;
427 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
428 while (musb_readb(musb->mregs, MUSB_DEVCTL) &
429 MUSB_DEVCTL_BDEVICE) {
430 cpu_relax();
431
432 if (time_after(jiffies, timeout)) {
433 dev_err(dev, "configured as A device timeout");
434 break;
002eda13
HH
435 }
436 }
437 break;
438
c9721438 439 case OMAP_MUSB_VBUS_VALID:
ca784be3 440 omap_control_usb_set_mode(glue->control_otghs, USB_MODE_DEVICE);
002eda13
HH
441 break;
442
443 default:
444 break;
445 }
446}
447
448static void omap2430_musb_disable(struct musb *musb)
449{
c9721438
KVA
450 struct device *dev = musb->controller;
451 struct omap2430_glue *glue = dev_get_drvdata(dev->parent);
452
ca784be3
KVA
453 if (glue->status != OMAP_MUSB_UNKNOWN)
454 omap_control_usb_set_mode(glue->control_otghs,
455 USB_MODE_DISCONNECT);
550a7375
FB
456}
457
743411b3 458static int omap2430_musb_exit(struct musb *musb)
550a7375 459{
19b9a83e 460 del_timer_sync(&musb_idle_timer);
550a7375 461
c20aebb9 462 omap2430_low_level_exit(musb);
c20aebb9 463
550a7375
FB
464 return 0;
465}
743411b3 466
f7ec9437 467static const struct musb_platform_ops omap2430_ops = {
743411b3
FB
468 .init = omap2430_musb_init,
469 .exit = omap2430_musb_exit,
470
743411b3
FB
471 .set_mode = omap2430_musb_set_mode,
472 .try_idle = omap2430_musb_try_idle,
473
474 .set_vbus = omap2430_musb_set_vbus,
002eda13
HH
475
476 .enable = omap2430_musb_enable,
477 .disable = omap2430_musb_disable,
743411b3 478};
dc09886b
FB
479
480static u64 omap2430_dmamask = DMA_BIT_MASK(32);
481
41ac7b3a 482static int omap2430_probe(struct platform_device *pdev)
dc09886b
FB
483{
484 struct musb_hdrc_platform_data *pdata = pdev->dev.platform_data;
00a0b1d5 485 struct omap_musb_board_data *data;
dc09886b 486 struct platform_device *musb;
a3cee12a 487 struct omap2430_glue *glue;
00a0b1d5
KVA
488 struct device_node *np = pdev->dev.of_node;
489 struct musb_hdrc_config *config;
dc09886b
FB
490 int ret = -ENOMEM;
491
b1183c24 492 glue = devm_kzalloc(&pdev->dev, sizeof(*glue), GFP_KERNEL);
a3cee12a
FB
493 if (!glue) {
494 dev_err(&pdev->dev, "failed to allocate glue context\n");
495 goto err0;
496 }
497
2f771164 498 musb = platform_device_alloc("musb-hdrc", PLATFORM_DEVID_AUTO);
dc09886b
FB
499 if (!musb) {
500 dev_err(&pdev->dev, "failed to allocate musb device\n");
2f771164 501 goto err0;
dc09886b
FB
502 }
503
504 musb->dev.parent = &pdev->dev;
505 musb->dev.dma_mask = &omap2430_dmamask;
506 musb->dev.coherent_dma_mask = omap2430_dmamask;
507
a3cee12a
FB
508 glue->dev = &pdev->dev;
509 glue->musb = musb;
c9721438 510 glue->status = OMAP_MUSB_UNKNOWN;
a3cee12a 511
00a0b1d5
KVA
512 if (np) {
513 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
514 if (!pdata) {
515 dev_err(&pdev->dev,
516 "failed to allocate musb platfrom data\n");
2f771164 517 goto err2;
00a0b1d5
KVA
518 }
519
520 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
521 if (!data) {
522 dev_err(&pdev->dev,
8df4ce75 523 "failed to allocate musb board data\n");
2f771164 524 goto err2;
00a0b1d5
KVA
525 }
526
527 config = devm_kzalloc(&pdev->dev, sizeof(*config), GFP_KERNEL);
b37457d8 528 if (!config) {
00a0b1d5
KVA
529 dev_err(&pdev->dev,
530 "failed to allocate musb hdrc config\n");
2f771164 531 goto err2;
00a0b1d5
KVA
532 }
533
534 of_property_read_u32(np, "mode", (u32 *)&pdata->mode);
eee44da0 535 of_property_read_u32(np, "interface-type",
00a0b1d5 536 (u32 *)&data->interface_type);
eee44da0
KVA
537 of_property_read_u32(np, "num-eps", (u32 *)&config->num_eps);
538 of_property_read_u32(np, "ram-bits", (u32 *)&config->ram_bits);
00a0b1d5
KVA
539 of_property_read_u32(np, "power", (u32 *)&pdata->power);
540 config->multipoint = of_property_read_bool(np, "multipoint");
ca784be3
KVA
541 pdata->has_mailbox = of_property_read_bool(np,
542 "ti,has-mailbox");
00a0b1d5
KVA
543
544 pdata->board_data = data;
545 pdata->config = config;
546 }
547
ca784be3
KVA
548 if (pdata->has_mailbox) {
549 glue->control_otghs = omap_get_control_dev();
550 if (IS_ERR(glue->control_otghs)) {
551 dev_vdbg(&pdev->dev, "Failed to get control device\n");
4b7e450f
WY
552 ret = PTR_ERR(glue->control_otghs);
553 goto err2;
ca784be3
KVA
554 }
555 } else {
556 glue->control_otghs = ERR_PTR(-ENODEV);
557 }
f7ec9437
FB
558 pdata->platform_ops = &omap2430_ops;
559
a3cee12a 560 platform_set_drvdata(pdev, glue);
dc09886b 561
c9721438
KVA
562 /*
563 * REVISIT if we ever have two instances of the wrapper, we will be
564 * in big trouble
565 */
566 _glue = glue;
567
1e5acb8d
KVA
568 INIT_WORK(&glue->omap_musb_mailbox_work, omap_musb_mailbox_work);
569
dc09886b
FB
570 ret = platform_device_add_resources(musb, pdev->resource,
571 pdev->num_resources);
572 if (ret) {
573 dev_err(&pdev->dev, "failed to add resources\n");
65b3d52d 574 goto err2;
dc09886b
FB
575 }
576
577 ret = platform_device_add_data(musb, pdata, sizeof(*pdata));
578 if (ret) {
579 dev_err(&pdev->dev, "failed to add platform_data\n");
65b3d52d 580 goto err2;
dc09886b
FB
581 }
582
3006dc8c
KVA
583 pm_runtime_enable(&pdev->dev);
584
dc09886b
FB
585 ret = platform_device_add(musb);
586 if (ret) {
587 dev_err(&pdev->dev, "failed to register musb device\n");
65b3d52d 588 goto err2;
dc09886b
FB
589 }
590
207b0e1f 591 return 0;
03491761 592
65b3d52d 593err2:
b1183c24 594 platform_device_put(musb);
a3cee12a 595
dc09886b
FB
596err0:
597 return ret;
598}
599
fb4e98ab 600static int omap2430_remove(struct platform_device *pdev)
dc09886b 601{
a3cee12a 602 struct omap2430_glue *glue = platform_get_drvdata(pdev);
dc09886b 603
1e5acb8d 604 cancel_work_sync(&glue->omap_musb_mailbox_work);
f039df58 605 platform_device_unregister(glue->musb);
dc09886b
FB
606
607 return 0;
608}
609
c20aebb9 610#ifdef CONFIG_PM
c20aebb9 611
7acc6197 612static int omap2430_runtime_suspend(struct device *dev)
c20aebb9
FB
613{
614 struct omap2430_glue *glue = dev_get_drvdata(dev);
615 struct musb *musb = glue_to_musb(glue);
616
afb76df1
VZ
617 if (musb) {
618 musb->context.otg_interfsel = musb_readl(musb->mregs,
619 OTG_INTERFSEL);
e25bec16 620
afb76df1
VZ
621 omap2430_low_level_exit(musb);
622 usb_phy_set_suspend(musb->xceiv, 1);
623 }
c20aebb9
FB
624
625 return 0;
626}
627
7acc6197 628static int omap2430_runtime_resume(struct device *dev)
c20aebb9
FB
629{
630 struct omap2430_glue *glue = dev_get_drvdata(dev);
631 struct musb *musb = glue_to_musb(glue);
c20aebb9 632
afb76df1
VZ
633 if (musb) {
634 omap2430_low_level_init(musb);
635 musb_writel(musb->mregs, OTG_INTERFSEL,
636 musb->context.otg_interfsel);
e25bec16 637
afb76df1
VZ
638 usb_phy_set_suspend(musb->xceiv, 0);
639 }
c20aebb9
FB
640
641 return 0;
642}
643
644static struct dev_pm_ops omap2430_pm_ops = {
7acc6197
HH
645 .runtime_suspend = omap2430_runtime_suspend,
646 .runtime_resume = omap2430_runtime_resume,
c20aebb9
FB
647};
648
649#define DEV_PM_OPS (&omap2430_pm_ops)
650#else
651#define DEV_PM_OPS NULL
652#endif
653
00a0b1d5
KVA
654#ifdef CONFIG_OF
655static const struct of_device_id omap2430_id_table[] = {
656 {
657 .compatible = "ti,omap4-musb"
658 },
659 {
660 .compatible = "ti,omap3-musb"
661 },
662 {},
663};
664MODULE_DEVICE_TABLE(of, omap2430_id_table);
665#endif
666
dc09886b 667static struct platform_driver omap2430_driver = {
e9e8c85e 668 .probe = omap2430_probe,
7690417d 669 .remove = omap2430_remove,
dc09886b
FB
670 .driver = {
671 .name = "musb-omap2430",
c20aebb9 672 .pm = DEV_PM_OPS,
00a0b1d5 673 .of_match_table = of_match_ptr(omap2430_id_table),
dc09886b
FB
674 },
675};
676
677MODULE_DESCRIPTION("OMAP2PLUS MUSB Glue Layer");
678MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>");
679MODULE_LICENSE("GPL v2");
680
681static int __init omap2430_init(void)
682{
e9e8c85e 683 return platform_driver_register(&omap2430_driver);
dc09886b 684}
c9721438 685subsys_initcall(omap2430_init);
dc09886b
FB
686
687static void __exit omap2430_exit(void)
688{
689 platform_driver_unregister(&omap2430_driver);
690}
691module_exit(omap2430_exit);
This page took 0.389839 seconds and 5 git commands to generate.