1 /*
2 * MUSB OTG driver core code
3 *
4 * Copyright 2005 Mentor Graphics Corporation
5 * Copyright (C) 2005-2006 by Texas Instruments
6 * Copyright (C) 2006-2007 Nokia Corporation
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 *
22 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
23 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
25 * NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
28 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
29 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 *
33 */
34
35 /*
36 * Inventra (Multipoint) Dual-Role Controller Driver for Linux.
37 *
38 * This consists of a Host Controller Driver (HCD) and a peripheral
39 * controller driver implementing the "Gadget" API; OTG support is
40 * in the works. These are normal Linux-USB controller drivers which
41 * use IRQs and have no dedicated thread.
42 *
43 * This version of the driver has only been used with products from
44 * Texas Instruments. Those products integrate the Inventra logic
45 * with other DMA, IRQ, and bus modules, as well as other logic that
46 * needs to be reflected in this driver.
47 *
48 *
49 * NOTE: the original Mentor code here was pretty much a collection
50 * of mechanisms that don't seem to have been fully integrated/working
51 * for *any* Linux kernel version. This version aims at Linux 2.6.now,
52 * Key open issues include:
53 *
54 * - Lack of host-side transaction scheduling, for all transfer types.
55 * The hardware doesn't do it; instead, software must.
56 *
57 * This is not an issue for OTG devices that don't support external
58 * hubs, but for more "normal" USB hosts it's a user issue that the
59 * "multipoint" support doesn't scale in the expected ways. That
60 * includes DaVinci EVM in a common non-OTG mode.
61 *
62 * * Control and bulk use dedicated endpoints, and there's as
63 * yet no mechanism to either (a) reclaim the hardware when
64 * peripherals are NAKing, which gets complicated with bulk
65 * endpoints, or (b) use more than a single bulk endpoint in
66 * each direction.
67 *
68 * RESULT: one device may be perceived as blocking another one.
69 *
70 * * Interrupt and isochronous will dynamically allocate endpoint
71 * hardware, but (a) there's no record keeping for bandwidth;
72 * (b) in the common case that few endpoints are available, there
73 * is no mechanism to reuse endpoints to talk to multiple devices.
74 *
75 * RESULT: At one extreme, bandwidth can be overcommitted in
76 * some hardware configurations, no faults will be reported.
77 * At the other extreme, the bandwidth capabilities which do
78 * exist tend to be severely undercommitted. You can't yet hook
79 * up both a keyboard and a mouse to an external USB hub.
80 */
81
82 /*
83 * This gets many kinds of configuration information:
84 * - Kconfig for everything user-configurable
85 * - platform_device for addressing, irq, and platform_data
86 * - platform_data is mostly for board-specific information
87 * (plus recentrly, SOC or family details)
88 *
89 * Most of the conditional compilation will (someday) vanish.
90 */
91
92 #include <linux/module.h>
93 #include <linux/kernel.h>
94 #include <linux/sched.h>
95 #include <linux/slab.h>
96 #include <linux/list.h>
97 #include <linux/kobject.h>
98 #include <linux/prefetch.h>
99 #include <linux/platform_device.h>
100 #include <linux/io.h>
101 #include <linux/dma-mapping.h>
102 #include <linux/usb.h>
103
104 #include "musb_core.h"
105
106 #define TA_WAIT_BCON(m) max_t(int, (m)->a_wait_bcon, OTG_TIME_A_WAIT_BCON)
107
108
109 #define DRIVER_AUTHOR "Mentor Graphics, Texas Instruments, Nokia"
110 #define DRIVER_DESC "Inventra Dual-Role USB Controller Driver"
111
112 #define MUSB_VERSION "6.0"
113
114 #define DRIVER_INFO DRIVER_DESC ", v" MUSB_VERSION
115
116 #define MUSB_DRIVER_NAME "musb-hdrc"
117 const char musb_driver_name[] = MUSB_DRIVER_NAME;
118
119 MODULE_DESCRIPTION(DRIVER_INFO);
120 MODULE_AUTHOR(DRIVER_AUTHOR);
121 MODULE_LICENSE("GPL");
122 MODULE_ALIAS("platform:" MUSB_DRIVER_NAME);
123
124
125 /*-------------------------------------------------------------------------*/
126
dev_to_musb(struct device * dev)127 static inline struct musb *dev_to_musb(struct device *dev)
128 {
129 return dev_get_drvdata(dev);
130 }
131
132 /*-------------------------------------------------------------------------*/
133
134 #ifndef CONFIG_BLACKFIN
musb_ulpi_read(struct usb_phy * phy,u32 offset)135 static int musb_ulpi_read(struct usb_phy *phy, u32 offset)
136 {
137 void __iomem *addr = phy->io_priv;
138 int i = 0;
139 u8 r;
140 u8 power;
141 int ret;
142
143 pm_runtime_get_sync(phy->io_dev);
144
145 /* Make sure the transceiver is not in low power mode */
146 power = musb_readb(addr, MUSB_POWER);
147 power &= ~MUSB_POWER_SUSPENDM;
148 musb_writeb(addr, MUSB_POWER, power);
149
150 /* REVISIT: musbhdrc_ulpi_an.pdf recommends setting the
151 * ULPICarKitControlDisableUTMI after clearing POWER_SUSPENDM.
152 */
153
154 musb_writeb(addr, MUSB_ULPI_REG_ADDR, (u8)offset);
155 musb_writeb(addr, MUSB_ULPI_REG_CONTROL,
156 MUSB_ULPI_REG_REQ | MUSB_ULPI_RDN_WR);
157
158 while (!(musb_readb(addr, MUSB_ULPI_REG_CONTROL)
159 & MUSB_ULPI_REG_CMPLT)) {
160 i++;
161 if (i == 10000) {
162 ret = -ETIMEDOUT;
163 goto out;
164 }
165
166 }
167 r = musb_readb(addr, MUSB_ULPI_REG_CONTROL);
168 r &= ~MUSB_ULPI_REG_CMPLT;
169 musb_writeb(addr, MUSB_ULPI_REG_CONTROL, r);
170
171 ret = musb_readb(addr, MUSB_ULPI_REG_DATA);
172
173 out:
174 pm_runtime_put(phy->io_dev);
175
176 return ret;
177 }
178
musb_ulpi_write(struct usb_phy * phy,u32 offset,u32 data)179 static int musb_ulpi_write(struct usb_phy *phy, u32 offset, u32 data)
180 {
181 void __iomem *addr = phy->io_priv;
182 int i = 0;
183 u8 r = 0;
184 u8 power;
185 int ret = 0;
186
187 pm_runtime_get_sync(phy->io_dev);
188
189 /* Make sure the transceiver is not in low power mode */
190 power = musb_readb(addr, MUSB_POWER);
191 power &= ~MUSB_POWER_SUSPENDM;
192 musb_writeb(addr, MUSB_POWER, power);
193
194 musb_writeb(addr, MUSB_ULPI_REG_ADDR, (u8)offset);
195 musb_writeb(addr, MUSB_ULPI_REG_DATA, (u8)data);
196 musb_writeb(addr, MUSB_ULPI_REG_CONTROL, MUSB_ULPI_REG_REQ);
197
198 while (!(musb_readb(addr, MUSB_ULPI_REG_CONTROL)
199 & MUSB_ULPI_REG_CMPLT)) {
200 i++;
201 if (i == 10000) {
202 ret = -ETIMEDOUT;
203 goto out;
204 }
205 }
206
207 r = musb_readb(addr, MUSB_ULPI_REG_CONTROL);
208 r &= ~MUSB_ULPI_REG_CMPLT;
209 musb_writeb(addr, MUSB_ULPI_REG_CONTROL, r);
210
211 out:
212 pm_runtime_put(phy->io_dev);
213
214 return ret;
215 }
216 #else
217 #define musb_ulpi_read NULL
218 #define musb_ulpi_write NULL
219 #endif
220
221 static struct usb_phy_io_ops musb_ulpi_access = {
222 .read = musb_ulpi_read,
223 .write = musb_ulpi_write,
224 };
225
226 /*-------------------------------------------------------------------------*/
227
228 #if !defined(CONFIG_USB_MUSB_TUSB6010) && !defined(CONFIG_USB_MUSB_BLACKFIN)
229
230 /*
231 * Load an endpoint's FIFO
232 */
musb_write_fifo(struct musb_hw_ep * hw_ep,u16 len,const u8 * src)233 void musb_write_fifo(struct musb_hw_ep *hw_ep, u16 len, const u8 *src)
234 {
235 struct musb *musb = hw_ep->musb;
236 void __iomem *fifo = hw_ep->fifo;
237
238 if (unlikely(len == 0))
239 return;
240
241 prefetch((u8 *)src);
242
243 dev_dbg(musb->controller, "%cX ep%d fifo %p count %d buf %p\n",
244 'T', hw_ep->epnum, fifo, len, src);
245
246 /* we can't assume unaligned reads work */
247 if (likely((0x01 & (unsigned long) src) == 0)) {
248 u16 index = 0;
249
250 /* best case is 32bit-aligned source address */
251 if ((0x02 & (unsigned long) src) == 0) {
252 if (len >= 4) {
253 iowrite32_rep(fifo, src + index, len >> 2);
254 index += len & ~0x03;
255 }
256 if (len & 0x02) {
257 musb_writew(fifo, 0, *(u16 *)&src[index]);
258 index += 2;
259 }
260 } else {
261 if (len >= 2) {
262 iowrite16_rep(fifo, src + index, len >> 1);
263 index += len & ~0x01;
264 }
265 }
266 if (len & 0x01)
267 musb_writeb(fifo, 0, src[index]);
268 } else {
269 /* byte aligned */
270 iowrite8_rep(fifo, src, len);
271 }
272 }
273
274 #if !defined(CONFIG_USB_MUSB_AM35X)
275 /*
276 * Unload an endpoint's FIFO
277 */
musb_read_fifo(struct musb_hw_ep * hw_ep,u16 len,u8 * dst)278 void musb_read_fifo(struct musb_hw_ep *hw_ep, u16 len, u8 *dst)
279 {
280 struct musb *musb = hw_ep->musb;
281 void __iomem *fifo = hw_ep->fifo;
282
283 if (unlikely(len == 0))
284 return;
285
286 dev_dbg(musb->controller, "%cX ep%d fifo %p count %d buf %p\n",
287 'R', hw_ep->epnum, fifo, len, dst);
288
289 /* we can't assume unaligned writes work */
290 if (likely((0x01 & (unsigned long) dst) == 0)) {
291 u16 index = 0;
292
293 /* best case is 32bit-aligned destination address */
294 if ((0x02 & (unsigned long) dst) == 0) {
295 if (len >= 4) {
296 ioread32_rep(fifo, dst, len >> 2);
297 index = len & ~0x03;
298 }
299 if (len & 0x02) {
300 *(u16 *)&dst[index] = musb_readw(fifo, 0);
301 index += 2;
302 }
303 } else {
304 if (len >= 2) {
305 ioread16_rep(fifo, dst, len >> 1);
306 index = len & ~0x01;
307 }
308 }
309 if (len & 0x01)
310 dst[index] = musb_readb(fifo, 0);
311 } else {
312 /* byte aligned */
313 ioread8_rep(fifo, dst, len);
314 }
315 }
316 #endif
317
318 #endif /* normal PIO */
319
320
321 /*-------------------------------------------------------------------------*/
322
323 /* for high speed test mode; see USB 2.0 spec 7.1.20 */
324 static const u8 musb_test_packet[53] = {
325 /* implicit SYNC then DATA0 to start */
326
327 /* JKJKJKJK x9 */
328 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
329 /* JJKKJJKK x8 */
330 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
331 /* JJJJKKKK x8 */
332 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee,
333 /* JJJJJJJKKKKKKK x8 */
334 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
335 /* JJJJJJJK x8 */
336 0x7f, 0xbf, 0xdf, 0xef, 0xf7, 0xfb, 0xfd,
337 /* JKKKKKKK x10, JK */
338 0xfc, 0x7e, 0xbf, 0xdf, 0xef, 0xf7, 0xfb, 0xfd, 0x7e
339
340 /* implicit CRC16 then EOP to end */
341 };
342
musb_load_testpacket(struct musb * musb)343 void musb_load_testpacket(struct musb *musb)
344 {
345 void __iomem *regs = musb->endpoints[0].regs;
346
347 musb_ep_select(musb->mregs, 0);
348 musb_write_fifo(musb->control_ep,
349 sizeof(musb_test_packet), musb_test_packet);
350 musb_writew(regs, MUSB_CSR0, MUSB_CSR0_TXPKTRDY);
351 }
352
353 /*-------------------------------------------------------------------------*/
354
355 /*
356 * Handles OTG hnp timeouts, such as b_ase0_brst
357 */
musb_otg_timer_func(unsigned long data)358 static void musb_otg_timer_func(unsigned long data)
359 {
360 struct musb *musb = (struct musb *)data;
361 unsigned long flags;
362
363 spin_lock_irqsave(&musb->lock, flags);
364 switch (musb->xceiv->state) {
365 case OTG_STATE_B_WAIT_ACON:
366 dev_dbg(musb->controller, "HNP: b_wait_acon timeout; back to b_peripheral\n");
367 musb_g_disconnect(musb);
368 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
369 musb->is_active = 0;
370 break;
371 case OTG_STATE_A_SUSPEND:
372 case OTG_STATE_A_WAIT_BCON:
373 dev_dbg(musb->controller, "HNP: %s timeout\n",
374 usb_otg_state_string(musb->xceiv->state));
375 musb_platform_set_vbus(musb, 0);
376 musb->xceiv->state = OTG_STATE_A_WAIT_VFALL;
377 break;
378 default:
379 dev_dbg(musb->controller, "HNP: Unhandled mode %s\n",
380 usb_otg_state_string(musb->xceiv->state));
381 }
382 spin_unlock_irqrestore(&musb->lock, flags);
383 }
384
385 /*
386 * Stops the HNP transition. Caller must take care of locking.
387 */
musb_hnp_stop(struct musb * musb)388 void musb_hnp_stop(struct musb *musb)
389 {
390 struct usb_hcd *hcd = musb->hcd;
391 void __iomem *mbase = musb->mregs;
392 u8 reg;
393
394 dev_dbg(musb->controller, "HNP: stop from %s\n",
395 usb_otg_state_string(musb->xceiv->state));
396
397 switch (musb->xceiv->state) {
398 case OTG_STATE_A_PERIPHERAL:
399 musb_g_disconnect(musb);
400 dev_dbg(musb->controller, "HNP: back to %s\n",
401 usb_otg_state_string(musb->xceiv->state));
402 break;
403 case OTG_STATE_B_HOST:
404 dev_dbg(musb->controller, "HNP: Disabling HR\n");
405 if (hcd)
406 hcd->self.is_b_host = 0;
407 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
408 MUSB_DEV_MODE(musb);
409 reg = musb_readb(mbase, MUSB_POWER);
410 reg |= MUSB_POWER_SUSPENDM;
411 musb_writeb(mbase, MUSB_POWER, reg);
412 /* REVISIT: Start SESSION_REQUEST here? */
413 break;
414 default:
415 dev_dbg(musb->controller, "HNP: Stopping in unknown state %s\n",
416 usb_otg_state_string(musb->xceiv->state));
417 }
418
419 /*
420 * When returning to A state after HNP, avoid hub_port_rebounce(),
421 * which cause occasional OPT A "Did not receive reset after connect"
422 * errors.
423 */
424 musb->port1_status &= ~(USB_PORT_STAT_C_CONNECTION << 16);
425 }
426
427 /*
428 * Interrupt Service Routine to record USB "global" interrupts.
429 * Since these do not happen often and signify things of
430 * paramount importance, it seems OK to check them individually;
431 * the order of the tests is specified in the manual
432 *
433 * @param musb instance pointer
434 * @param int_usb register contents
435 * @param devctl
436 * @param power
437 */
438
musb_stage0_irq(struct musb * musb,u8 int_usb,u8 devctl)439 static irqreturn_t musb_stage0_irq(struct musb *musb, u8 int_usb,
440 u8 devctl)
441 {
442 irqreturn_t handled = IRQ_NONE;
443
444 dev_dbg(musb->controller, "<== DevCtl=%02x, int_usb=0x%x\n", devctl,
445 int_usb);
446
447 /* in host mode, the peripheral may issue remote wakeup.
448 * in peripheral mode, the host may resume the link.
449 * spurious RESUME irqs happen too, paired with SUSPEND.
450 */
451 if (int_usb & MUSB_INTR_RESUME) {
452 handled = IRQ_HANDLED;
453 dev_dbg(musb->controller, "RESUME (%s)\n", usb_otg_state_string(musb->xceiv->state));
454
455 if (devctl & MUSB_DEVCTL_HM) {
456 void __iomem *mbase = musb->mregs;
457 u8 power;
458
459 switch (musb->xceiv->state) {
460 case OTG_STATE_A_SUSPEND:
461 /* remote wakeup? later, GetPortStatus
462 * will stop RESUME signaling
463 */
464
465 power = musb_readb(musb->mregs, MUSB_POWER);
466 if (power & MUSB_POWER_SUSPENDM) {
467 /* spurious */
468 musb->int_usb &= ~MUSB_INTR_SUSPEND;
469 dev_dbg(musb->controller, "Spurious SUSPENDM\n");
470 break;
471 }
472
473 power &= ~MUSB_POWER_SUSPENDM;
474 musb_writeb(mbase, MUSB_POWER,
475 power | MUSB_POWER_RESUME);
476
477 musb->port1_status |=
478 (USB_PORT_STAT_C_SUSPEND << 16)
479 | MUSB_PORT_STAT_RESUME;
480 musb->rh_timer = jiffies
481 + msecs_to_jiffies(20);
482 schedule_delayed_work(
483 &musb->finish_resume_work,
484 msecs_to_jiffies(USB_RESUME_TIMEOUT));
485
486 musb->xceiv->state = OTG_STATE_A_HOST;
487 musb->is_active = 1;
488 musb_host_resume_root_hub(musb);
489 break;
490 case OTG_STATE_B_WAIT_ACON:
491 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
492 musb->is_active = 1;
493 MUSB_DEV_MODE(musb);
494 break;
495 default:
496 WARNING("bogus %s RESUME (%s)\n",
497 "host",
498 usb_otg_state_string(musb->xceiv->state));
499 }
500 } else {
501 switch (musb->xceiv->state) {
502 case OTG_STATE_A_SUSPEND:
503 /* possibly DISCONNECT is upcoming */
504 musb->xceiv->state = OTG_STATE_A_HOST;
505 musb_host_resume_root_hub(musb);
506 break;
507 case OTG_STATE_B_WAIT_ACON:
508 case OTG_STATE_B_PERIPHERAL:
509 /* disconnect while suspended? we may
510 * not get a disconnect irq...
511 */
512 if ((devctl & MUSB_DEVCTL_VBUS)
513 != (3 << MUSB_DEVCTL_VBUS_SHIFT)
514 ) {
515 musb->int_usb |= MUSB_INTR_DISCONNECT;
516 musb->int_usb &= ~MUSB_INTR_SUSPEND;
517 break;
518 }
519 musb_g_resume(musb);
520 break;
521 case OTG_STATE_B_IDLE:
522 musb->int_usb &= ~MUSB_INTR_SUSPEND;
523 break;
524 default:
525 WARNING("bogus %s RESUME (%s)\n",
526 "peripheral",
527 usb_otg_state_string(musb->xceiv->state));
528 }
529 }
530 }
531
532 /* see manual for the order of the tests */
533 if (int_usb & MUSB_INTR_SESSREQ) {
534 void __iomem *mbase = musb->mregs;
535
536 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS
537 && (devctl & MUSB_DEVCTL_BDEVICE)) {
538 dev_dbg(musb->controller, "SessReq while on B state\n");
539 return IRQ_HANDLED;
540 }
541
542 dev_dbg(musb->controller, "SESSION_REQUEST (%s)\n",
543 usb_otg_state_string(musb->xceiv->state));
544
545 /* IRQ arrives from ID pin sense or (later, if VBUS power
546 * is removed) SRP. responses are time critical:
547 * - turn on VBUS (with silicon-specific mechanism)
548 * - go through A_WAIT_VRISE
549 * - ... to A_WAIT_BCON.
550 * a_wait_vrise_tmout triggers VBUS_ERROR transitions
551 */
552 musb_writeb(mbase, MUSB_DEVCTL, MUSB_DEVCTL_SESSION);
553 musb->ep0_stage = MUSB_EP0_START;
554 musb->xceiv->state = OTG_STATE_A_IDLE;
555 MUSB_HST_MODE(musb);
556 musb_platform_set_vbus(musb, 1);
557
558 handled = IRQ_HANDLED;
559 }
560
561 if (int_usb & MUSB_INTR_VBUSERROR) {
562 int ignore = 0;
563
564 /* During connection as an A-Device, we may see a short
565 * current spikes causing voltage drop, because of cable
566 * and peripheral capacitance combined with vbus draw.
567 * (So: less common with truly self-powered devices, where
568 * vbus doesn't act like a power supply.)
569 *
570 * Such spikes are short; usually less than ~500 usec, max
571 * of ~2 msec. That is, they're not sustained overcurrent
572 * errors, though they're reported using VBUSERROR irqs.
573 *
574 * Workarounds: (a) hardware: use self powered devices.
575 * (b) software: ignore non-repeated VBUS errors.
576 *
577 * REVISIT: do delays from lots of DEBUG_KERNEL checks
578 * make trouble here, keeping VBUS < 4.4V ?
579 */
580 switch (musb->xceiv->state) {
581 case OTG_STATE_A_HOST:
582 /* recovery is dicey once we've gotten past the
583 * initial stages of enumeration, but if VBUS
584 * stayed ok at the other end of the link, and
585 * another reset is due (at least for high speed,
586 * to redo the chirp etc), it might work OK...
587 */
588 case OTG_STATE_A_WAIT_BCON:
589 case OTG_STATE_A_WAIT_VRISE:
590 if (musb->vbuserr_retry) {
591 void __iomem *mbase = musb->mregs;
592
593 musb->vbuserr_retry--;
594 ignore = 1;
595 devctl |= MUSB_DEVCTL_SESSION;
596 musb_writeb(mbase, MUSB_DEVCTL, devctl);
597 } else {
598 musb->port1_status |=
599 USB_PORT_STAT_OVERCURRENT
600 | (USB_PORT_STAT_C_OVERCURRENT << 16);
601 }
602 break;
603 default:
604 break;
605 }
606
607 dev_printk(ignore ? KERN_DEBUG : KERN_ERR, musb->controller,
608 "VBUS_ERROR in %s (%02x, %s), retry #%d, port1 %08x\n",
609 usb_otg_state_string(musb->xceiv->state),
610 devctl,
611 ({ char *s;
612 switch (devctl & MUSB_DEVCTL_VBUS) {
613 case 0 << MUSB_DEVCTL_VBUS_SHIFT:
614 s = "<SessEnd"; break;
615 case 1 << MUSB_DEVCTL_VBUS_SHIFT:
616 s = "<AValid"; break;
617 case 2 << MUSB_DEVCTL_VBUS_SHIFT:
618 s = "<VBusValid"; break;
619 /* case 3 << MUSB_DEVCTL_VBUS_SHIFT: */
620 default:
621 s = "VALID"; break;
622 } s; }),
623 VBUSERR_RETRY_COUNT - musb->vbuserr_retry,
624 musb->port1_status);
625
626 /* go through A_WAIT_VFALL then start a new session */
627 if (!ignore)
628 musb_platform_set_vbus(musb, 0);
629 handled = IRQ_HANDLED;
630 }
631
632 if (int_usb & MUSB_INTR_SUSPEND) {
633 dev_dbg(musb->controller, "SUSPEND (%s) devctl %02x\n",
634 usb_otg_state_string(musb->xceiv->state), devctl);
635 handled = IRQ_HANDLED;
636
637 switch (musb->xceiv->state) {
638 case OTG_STATE_A_PERIPHERAL:
639 /* We also come here if the cable is removed, since
640 * this silicon doesn't report ID-no-longer-grounded.
641 *
642 * We depend on T(a_wait_bcon) to shut us down, and
643 * hope users don't do anything dicey during this
644 * undesired detour through A_WAIT_BCON.
645 */
646 musb_hnp_stop(musb);
647 musb_host_resume_root_hub(musb);
648 musb_root_disconnect(musb);
649 musb_platform_try_idle(musb, jiffies
650 + msecs_to_jiffies(musb->a_wait_bcon
651 ? : OTG_TIME_A_WAIT_BCON));
652
653 break;
654 case OTG_STATE_B_IDLE:
655 if (!musb->is_active)
656 break;
657 case OTG_STATE_B_PERIPHERAL:
658 musb_g_suspend(musb);
659 musb->is_active = musb->g.b_hnp_enable;
660 if (musb->is_active) {
661 musb->xceiv->state = OTG_STATE_B_WAIT_ACON;
662 dev_dbg(musb->controller, "HNP: Setting timer for b_ase0_brst\n");
663 mod_timer(&musb->otg_timer, jiffies
664 + msecs_to_jiffies(
665 OTG_TIME_B_ASE0_BRST));
666 }
667 break;
668 case OTG_STATE_A_WAIT_BCON:
669 if (musb->a_wait_bcon != 0)
670 musb_platform_try_idle(musb, jiffies
671 + msecs_to_jiffies(musb->a_wait_bcon));
672 break;
673 case OTG_STATE_A_HOST:
674 musb->xceiv->state = OTG_STATE_A_SUSPEND;
675 musb->is_active = musb->hcd->self.b_hnp_enable;
676 break;
677 case OTG_STATE_B_HOST:
678 /* Transition to B_PERIPHERAL, see 6.8.2.6 p 44 */
679 dev_dbg(musb->controller, "REVISIT: SUSPEND as B_HOST\n");
680 break;
681 default:
682 /* "should not happen" */
683 musb->is_active = 0;
684 break;
685 }
686 }
687
688 if (int_usb & MUSB_INTR_CONNECT) {
689 struct usb_hcd *hcd = musb->hcd;
690
691 handled = IRQ_HANDLED;
692 musb->is_active = 1;
693
694 musb->ep0_stage = MUSB_EP0_START;
695
696 /* flush endpoints when transitioning from Device Mode */
697 if (is_peripheral_active(musb)) {
698 /* REVISIT HNP; just force disconnect */
699 }
700 musb->intrtxe = musb->epmask;
701 musb_writew(musb->mregs, MUSB_INTRTXE, musb->intrtxe);
702 musb->intrrxe = musb->epmask & 0xfffe;
703 musb_writew(musb->mregs, MUSB_INTRRXE, musb->intrrxe);
704 musb_writeb(musb->mregs, MUSB_INTRUSBE, 0xf7);
705 musb->port1_status &= ~(USB_PORT_STAT_LOW_SPEED
706 |USB_PORT_STAT_HIGH_SPEED
707 |USB_PORT_STAT_ENABLE
708 );
709 musb->port1_status |= USB_PORT_STAT_CONNECTION
710 |(USB_PORT_STAT_C_CONNECTION << 16);
711
712 /* high vs full speed is just a guess until after reset */
713 if (devctl & MUSB_DEVCTL_LSDEV)
714 musb->port1_status |= USB_PORT_STAT_LOW_SPEED;
715
716 /* indicate new connection to OTG machine */
717 switch (musb->xceiv->state) {
718 case OTG_STATE_B_PERIPHERAL:
719 if (int_usb & MUSB_INTR_SUSPEND) {
720 dev_dbg(musb->controller, "HNP: SUSPEND+CONNECT, now b_host\n");
721 int_usb &= ~MUSB_INTR_SUSPEND;
722 goto b_host;
723 } else
724 dev_dbg(musb->controller, "CONNECT as b_peripheral???\n");
725 break;
726 case OTG_STATE_B_WAIT_ACON:
727 dev_dbg(musb->controller, "HNP: CONNECT, now b_host\n");
728 b_host:
729 musb->xceiv->state = OTG_STATE_B_HOST;
730 if (musb->hcd)
731 musb->hcd->self.is_b_host = 1;
732 del_timer(&musb->otg_timer);
733 break;
734 default:
735 if ((devctl & MUSB_DEVCTL_VBUS)
736 == (3 << MUSB_DEVCTL_VBUS_SHIFT)) {
737 musb->xceiv->state = OTG_STATE_A_HOST;
738 if (hcd)
739 hcd->self.is_b_host = 0;
740 }
741 break;
742 }
743
744 musb_host_poke_root_hub(musb);
745
746 dev_dbg(musb->controller, "CONNECT (%s) devctl %02x\n",
747 usb_otg_state_string(musb->xceiv->state), devctl);
748 }
749
750 if (int_usb & MUSB_INTR_DISCONNECT) {
751 dev_dbg(musb->controller, "DISCONNECT (%s) as %s, devctl %02x\n",
752 usb_otg_state_string(musb->xceiv->state),
753 MUSB_MODE(musb), devctl);
754 handled = IRQ_HANDLED;
755
756 switch (musb->xceiv->state) {
757 case OTG_STATE_A_HOST:
758 case OTG_STATE_A_SUSPEND:
759 musb_host_resume_root_hub(musb);
760 musb_root_disconnect(musb);
761 if (musb->a_wait_bcon != 0)
762 musb_platform_try_idle(musb, jiffies
763 + msecs_to_jiffies(musb->a_wait_bcon));
764 break;
765 case OTG_STATE_B_HOST:
766 /* REVISIT this behaves for "real disconnect"
767 * cases; make sure the other transitions from
768 * from B_HOST act right too. The B_HOST code
769 * in hnp_stop() is currently not used...
770 */
771 musb_root_disconnect(musb);
772 if (musb->hcd)
773 musb->hcd->self.is_b_host = 0;
774 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
775 MUSB_DEV_MODE(musb);
776 musb_g_disconnect(musb);
777 break;
778 case OTG_STATE_A_PERIPHERAL:
779 musb_hnp_stop(musb);
780 musb_root_disconnect(musb);
781 /* FALLTHROUGH */
782 case OTG_STATE_B_WAIT_ACON:
783 /* FALLTHROUGH */
784 case OTG_STATE_B_PERIPHERAL:
785 case OTG_STATE_B_IDLE:
786 musb_g_disconnect(musb);
787 break;
788 default:
789 WARNING("unhandled DISCONNECT transition (%s)\n",
790 usb_otg_state_string(musb->xceiv->state));
791 break;
792 }
793 }
794
795 /* mentor saves a bit: bus reset and babble share the same irq.
796 * only host sees babble; only peripheral sees bus reset.
797 */
798 if (int_usb & MUSB_INTR_RESET) {
799 handled = IRQ_HANDLED;
800 if ((devctl & MUSB_DEVCTL_HM) != 0) {
801 /*
802 * Looks like non-HS BABBLE can be ignored, but
803 * HS BABBLE is an error condition. For HS the solution
804 * is to avoid babble in the first place and fix what
805 * caused BABBLE. When HS BABBLE happens we can only
806 * stop the session.
807 */
808 if (devctl & (MUSB_DEVCTL_FSDEV | MUSB_DEVCTL_LSDEV))
809 dev_dbg(musb->controller, "BABBLE devctl: %02x\n", devctl);
810 else {
811 ERR("Stopping host session -- babble\n");
812 musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
813 }
814 } else {
815 dev_dbg(musb->controller, "BUS RESET as %s\n",
816 usb_otg_state_string(musb->xceiv->state));
817 switch (musb->xceiv->state) {
818 case OTG_STATE_A_SUSPEND:
819 musb_g_reset(musb);
820 /* FALLTHROUGH */
821 case OTG_STATE_A_WAIT_BCON: /* OPT TD.4.7-900ms */
822 /* never use invalid T(a_wait_bcon) */
823 dev_dbg(musb->controller, "HNP: in %s, %d msec timeout\n",
824 usb_otg_state_string(musb->xceiv->state),
825 TA_WAIT_BCON(musb));
826 mod_timer(&musb->otg_timer, jiffies
827 + msecs_to_jiffies(TA_WAIT_BCON(musb)));
828 break;
829 case OTG_STATE_A_PERIPHERAL:
830 del_timer(&musb->otg_timer);
831 musb_g_reset(musb);
832 break;
833 case OTG_STATE_B_WAIT_ACON:
834 dev_dbg(musb->controller, "HNP: RESET (%s), to b_peripheral\n",
835 usb_otg_state_string(musb->xceiv->state));
836 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
837 musb_g_reset(musb);
838 break;
839 case OTG_STATE_B_IDLE:
840 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
841 /* FALLTHROUGH */
842 case OTG_STATE_B_PERIPHERAL:
843 musb_g_reset(musb);
844 break;
845 default:
846 dev_dbg(musb->controller, "Unhandled BUS RESET as %s\n",
847 usb_otg_state_string(musb->xceiv->state));
848 }
849 }
850 }
851
852 /* handle babble condition */
853 if (int_usb & MUSB_INTR_BABBLE && is_host_active(musb))
854 schedule_delayed_work(&musb->recover_work,
855 msecs_to_jiffies(100));
856
857 #if 0
858 /* REVISIT ... this would be for multiplexing periodic endpoints, or
859 * supporting transfer phasing to prevent exceeding ISO bandwidth
860 * limits of a given frame or microframe.
861 *
862 * It's not needed for peripheral side, which dedicates endpoints;
863 * though it _might_ use SOF irqs for other purposes.
864 *
865 * And it's not currently needed for host side, which also dedicates
866 * endpoints, relies on TX/RX interval registers, and isn't claimed
867 * to support ISO transfers yet.
868 */
869 if (int_usb & MUSB_INTR_SOF) {
870 void __iomem *mbase = musb->mregs;
871 struct musb_hw_ep *ep;
872 u8 epnum;
873 u16 frame;
874
875 dev_dbg(musb->controller, "START_OF_FRAME\n");
876 handled = IRQ_HANDLED;
877
878 /* start any periodic Tx transfers waiting for current frame */
879 frame = musb_readw(mbase, MUSB_FRAME);
880 ep = musb->endpoints;
881 for (epnum = 1; (epnum < musb->nr_endpoints)
882 && (musb->epmask >= (1 << epnum));
883 epnum++, ep++) {
884 /*
885 * FIXME handle framecounter wraps (12 bits)
886 * eliminate duplicated StartUrb logic
887 */
888 if (ep->dwWaitFrame >= frame) {
889 ep->dwWaitFrame = 0;
890 pr_debug("SOF --> periodic TX%s on %d\n",
891 ep->tx_channel ? " DMA" : "",
892 epnum);
893 if (!ep->tx_channel)
894 musb_h_tx_start(musb, epnum);
895 else
896 cppi_hostdma_start(musb, epnum);
897 }
898 } /* end of for loop */
899 }
900 #endif
901
902 schedule_work(&musb->irq_work);
903
904 return handled;
905 }
906
907 /*-------------------------------------------------------------------------*/
908
musb_generic_disable(struct musb * musb)909 static void musb_generic_disable(struct musb *musb)
910 {
911 void __iomem *mbase = musb->mregs;
912 u16 temp;
913
914 /* disable interrupts */
915 musb_writeb(mbase, MUSB_INTRUSBE, 0);
916 musb->intrtxe = 0;
917 musb_writew(mbase, MUSB_INTRTXE, 0);
918 musb->intrrxe = 0;
919 musb_writew(mbase, MUSB_INTRRXE, 0);
920
921 /* off */
922 musb_writeb(mbase, MUSB_DEVCTL, 0);
923
924 /* flush pending interrupts */
925 temp = musb_readb(mbase, MUSB_INTRUSB);
926 temp = musb_readw(mbase, MUSB_INTRTX);
927 temp = musb_readw(mbase, MUSB_INTRRX);
928
929 }
930
931 /*
932 * Program the HDRC to start (enable interrupts, dma, etc.).
933 */
musb_start(struct musb * musb)934 void musb_start(struct musb *musb)
935 {
936 void __iomem *regs = musb->mregs;
937 u8 devctl = musb_readb(regs, MUSB_DEVCTL);
938
939 dev_dbg(musb->controller, "<== devctl %02x\n", devctl);
940
941 /* Set INT enable registers, enable interrupts */
942 musb->intrtxe = musb->epmask;
943 musb_writew(regs, MUSB_INTRTXE, musb->intrtxe);
944 musb->intrrxe = musb->epmask & 0xfffe;
945 musb_writew(regs, MUSB_INTRRXE, musb->intrrxe);
946 musb_writeb(regs, MUSB_INTRUSBE, 0xf7);
947
948 musb_writeb(regs, MUSB_TESTMODE, 0);
949
950 /* put into basic highspeed mode and start session */
951 musb_writeb(regs, MUSB_POWER, MUSB_POWER_ISOUPDATE
952 | MUSB_POWER_HSENAB
953 /* ENSUSPEND wedges tusb */
954 /* | MUSB_POWER_ENSUSPEND */
955 );
956
957 musb->is_active = 0;
958 devctl = musb_readb(regs, MUSB_DEVCTL);
959 devctl &= ~MUSB_DEVCTL_SESSION;
960
961 /* session started after:
962 * (a) ID-grounded irq, host mode;
963 * (b) vbus present/connect IRQ, peripheral mode;
964 * (c) peripheral initiates, using SRP
965 */
966 if (musb->port_mode != MUSB_PORT_MODE_HOST &&
967 (devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS) {
968 musb->is_active = 1;
969 } else {
970 devctl |= MUSB_DEVCTL_SESSION;
971 }
972
973 musb_platform_enable(musb);
974 musb_writeb(regs, MUSB_DEVCTL, devctl);
975 }
976
977 /*
978 * Make the HDRC stop (disable interrupts, etc.);
979 * reversible by musb_start
980 * called on gadget driver unregister
981 * with controller locked, irqs blocked
982 * acts as a NOP unless some role activated the hardware
983 */
musb_stop(struct musb * musb)984 void musb_stop(struct musb *musb)
985 {
986 /* stop IRQs, timers, ... */
987 musb_platform_disable(musb);
988 musb_generic_disable(musb);
989 dev_dbg(musb->controller, "HDRC disabled\n");
990
991 /* FIXME
992 * - mark host and/or peripheral drivers unusable/inactive
993 * - disable DMA (and enable it in HdrcStart)
994 * - make sure we can musb_start() after musb_stop(); with
995 * OTG mode, gadget driver module rmmod/modprobe cycles that
996 * - ...
997 */
998 musb_platform_try_idle(musb, 0);
999 }
1000
musb_shutdown(struct platform_device * pdev)1001 static void musb_shutdown(struct platform_device *pdev)
1002 {
1003 struct musb *musb = dev_to_musb(&pdev->dev);
1004 unsigned long flags;
1005
1006 pm_runtime_get_sync(musb->controller);
1007
1008 musb_host_cleanup(musb);
1009 musb_gadget_cleanup(musb);
1010
1011 spin_lock_irqsave(&musb->lock, flags);
1012 musb_platform_disable(musb);
1013 musb_generic_disable(musb);
1014 spin_unlock_irqrestore(&musb->lock, flags);
1015
1016 musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
1017 musb_platform_exit(musb);
1018
1019 pm_runtime_put(musb->controller);
1020 /* FIXME power down */
1021 }
1022
1023
1024 /*-------------------------------------------------------------------------*/
1025
1026 /*
1027 * The silicon either has hard-wired endpoint configurations, or else
1028 * "dynamic fifo" sizing. The driver has support for both, though at this
1029 * writing only the dynamic sizing is very well tested. Since we switched
1030 * away from compile-time hardware parameters, we can no longer rely on
1031 * dead code elimination to leave only the relevant one in the object file.
1032 *
1033 * We don't currently use dynamic fifo setup capability to do anything
1034 * more than selecting one of a bunch of predefined configurations.
1035 */
1036 #if defined(CONFIG_USB_MUSB_TUSB6010) \
1037 || defined(CONFIG_USB_MUSB_TUSB6010_MODULE) \
1038 || defined(CONFIG_USB_MUSB_OMAP2PLUS) \
1039 || defined(CONFIG_USB_MUSB_OMAP2PLUS_MODULE) \
1040 || defined(CONFIG_USB_MUSB_AM35X) \
1041 || defined(CONFIG_USB_MUSB_AM35X_MODULE) \
1042 || defined(CONFIG_USB_MUSB_DSPS) \
1043 || defined(CONFIG_USB_MUSB_DSPS_MODULE)
1044 static ushort fifo_mode = 4;
1045 #elif defined(CONFIG_USB_MUSB_UX500) \
1046 || defined(CONFIG_USB_MUSB_UX500_MODULE)
1047 static ushort fifo_mode = 5;
1048 #else
1049 static ushort fifo_mode = 2;
1050 #endif
1051
1052 /* "modprobe ... fifo_mode=1" etc */
1053 module_param(fifo_mode, ushort, 0);
1054 MODULE_PARM_DESC(fifo_mode, "initial endpoint configuration");
1055
1056 /*
1057 * tables defining fifo_mode values. define more if you like.
1058 * for host side, make sure both halves of ep1 are set up.
1059 */
1060
1061 /* mode 0 - fits in 2KB */
1062 static struct musb_fifo_cfg mode_0_cfg[] = {
1063 { .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1064 { .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1065 { .hw_ep_num = 2, .style = FIFO_RXTX, .maxpacket = 512, },
1066 { .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1067 { .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1068 };
1069
1070 /* mode 1 - fits in 4KB */
1071 static struct musb_fifo_cfg mode_1_cfg[] = {
1072 { .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1073 { .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1074 { .hw_ep_num = 2, .style = FIFO_RXTX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1075 { .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1076 { .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1077 };
1078
1079 /* mode 2 - fits in 4KB */
1080 static struct musb_fifo_cfg mode_2_cfg[] = {
1081 { .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1082 { .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1083 { .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1084 { .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1085 { .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1086 { .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1087 };
1088
1089 /* mode 3 - fits in 4KB */
1090 static struct musb_fifo_cfg mode_3_cfg[] = {
1091 { .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1092 { .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1093 { .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1094 { .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1095 { .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1096 { .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1097 };
1098
1099 /* mode 4 - fits in 16KB */
1100 static struct musb_fifo_cfg mode_4_cfg[] = {
1101 { .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1102 { .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1103 { .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1104 { .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1105 { .hw_ep_num = 3, .style = FIFO_TX, .maxpacket = 512, },
1106 { .hw_ep_num = 3, .style = FIFO_RX, .maxpacket = 512, },
1107 { .hw_ep_num = 4, .style = FIFO_TX, .maxpacket = 512, },
1108 { .hw_ep_num = 4, .style = FIFO_RX, .maxpacket = 512, },
1109 { .hw_ep_num = 5, .style = FIFO_TX, .maxpacket = 512, },
1110 { .hw_ep_num = 5, .style = FIFO_RX, .maxpacket = 512, },
1111 { .hw_ep_num = 6, .style = FIFO_TX, .maxpacket = 512, },
1112 { .hw_ep_num = 6, .style = FIFO_RX, .maxpacket = 512, },
1113 { .hw_ep_num = 7, .style = FIFO_TX, .maxpacket = 512, },
1114 { .hw_ep_num = 7, .style = FIFO_RX, .maxpacket = 512, },
1115 { .hw_ep_num = 8, .style = FIFO_TX, .maxpacket = 512, },
1116 { .hw_ep_num = 8, .style = FIFO_RX, .maxpacket = 512, },
1117 { .hw_ep_num = 9, .style = FIFO_TX, .maxpacket = 512, },
1118 { .hw_ep_num = 9, .style = FIFO_RX, .maxpacket = 512, },
1119 { .hw_ep_num = 10, .style = FIFO_TX, .maxpacket = 256, },
1120 { .hw_ep_num = 10, .style = FIFO_RX, .maxpacket = 64, },
1121 { .hw_ep_num = 11, .style = FIFO_TX, .maxpacket = 256, },
1122 { .hw_ep_num = 11, .style = FIFO_RX, .maxpacket = 64, },
1123 { .hw_ep_num = 12, .style = FIFO_TX, .maxpacket = 256, },
1124 { .hw_ep_num = 12, .style = FIFO_RX, .maxpacket = 64, },
1125 { .hw_ep_num = 13, .style = FIFO_RXTX, .maxpacket = 4096, },
1126 { .hw_ep_num = 14, .style = FIFO_RXTX, .maxpacket = 1024, },
1127 { .hw_ep_num = 15, .style = FIFO_RXTX, .maxpacket = 1024, },
1128 };
1129
1130 /* mode 5 - fits in 8KB */
1131 static struct musb_fifo_cfg mode_5_cfg[] = {
1132 { .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1133 { .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1134 { .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1135 { .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1136 { .hw_ep_num = 3, .style = FIFO_TX, .maxpacket = 512, },
1137 { .hw_ep_num = 3, .style = FIFO_RX, .maxpacket = 512, },
1138 { .hw_ep_num = 4, .style = FIFO_TX, .maxpacket = 512, },
1139 { .hw_ep_num = 4, .style = FIFO_RX, .maxpacket = 512, },
1140 { .hw_ep_num = 5, .style = FIFO_TX, .maxpacket = 512, },
1141 { .hw_ep_num = 5, .style = FIFO_RX, .maxpacket = 512, },
1142 { .hw_ep_num = 6, .style = FIFO_TX, .maxpacket = 32, },
1143 { .hw_ep_num = 6, .style = FIFO_RX, .maxpacket = 32, },
1144 { .hw_ep_num = 7, .style = FIFO_TX, .maxpacket = 32, },
1145 { .hw_ep_num = 7, .style = FIFO_RX, .maxpacket = 32, },
1146 { .hw_ep_num = 8, .style = FIFO_TX, .maxpacket = 32, },
1147 { .hw_ep_num = 8, .style = FIFO_RX, .maxpacket = 32, },
1148 { .hw_ep_num = 9, .style = FIFO_TX, .maxpacket = 32, },
1149 { .hw_ep_num = 9, .style = FIFO_RX, .maxpacket = 32, },
1150 { .hw_ep_num = 10, .style = FIFO_TX, .maxpacket = 32, },
1151 { .hw_ep_num = 10, .style = FIFO_RX, .maxpacket = 32, },
1152 { .hw_ep_num = 11, .style = FIFO_TX, .maxpacket = 32, },
1153 { .hw_ep_num = 11, .style = FIFO_RX, .maxpacket = 32, },
1154 { .hw_ep_num = 12, .style = FIFO_TX, .maxpacket = 32, },
1155 { .hw_ep_num = 12, .style = FIFO_RX, .maxpacket = 32, },
1156 { .hw_ep_num = 13, .style = FIFO_RXTX, .maxpacket = 512, },
1157 { .hw_ep_num = 14, .style = FIFO_RXTX, .maxpacket = 1024, },
1158 { .hw_ep_num = 15, .style = FIFO_RXTX, .maxpacket = 1024, },
1159 };
1160
1161 /*
1162 * configure a fifo; for non-shared endpoints, this may be called
1163 * once for a tx fifo and once for an rx fifo.
1164 *
1165 * returns negative errno or offset for next fifo.
1166 */
1167 static int
fifo_setup(struct musb * musb,struct musb_hw_ep * hw_ep,const struct musb_fifo_cfg * cfg,u16 offset)1168 fifo_setup(struct musb *musb, struct musb_hw_ep *hw_ep,
1169 const struct musb_fifo_cfg *cfg, u16 offset)
1170 {
1171 void __iomem *mbase = musb->mregs;
1172 int size = 0;
1173 u16 maxpacket = cfg->maxpacket;
1174 u16 c_off = offset >> 3;
1175 u8 c_size;
1176
1177 /* expect hw_ep has already been zero-initialized */
1178
1179 size = ffs(max(maxpacket, (u16) 8)) - 1;
1180 maxpacket = 1 << size;
1181
1182 c_size = size - 3;
1183 if (cfg->mode == BUF_DOUBLE) {
1184 if ((offset + (maxpacket << 1)) >
1185 (1 << (musb->config->ram_bits + 2)))
1186 return -EMSGSIZE;
1187 c_size |= MUSB_FIFOSZ_DPB;
1188 } else {
1189 if ((offset + maxpacket) > (1 << (musb->config->ram_bits + 2)))
1190 return -EMSGSIZE;
1191 }
1192
1193 /* configure the FIFO */
1194 musb_writeb(mbase, MUSB_INDEX, hw_ep->epnum);
1195
1196 /* EP0 reserved endpoint for control, bidirectional;
1197 * EP1 reserved for bulk, two unidirectional halves.
1198 */
1199 if (hw_ep->epnum == 1)
1200 musb->bulk_ep = hw_ep;
1201 /* REVISIT error check: be sure ep0 can both rx and tx ... */
1202 switch (cfg->style) {
1203 case FIFO_TX:
1204 musb_write_txfifosz(mbase, c_size);
1205 musb_write_txfifoadd(mbase, c_off);
1206 hw_ep->tx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1207 hw_ep->max_packet_sz_tx = maxpacket;
1208 break;
1209 case FIFO_RX:
1210 musb_write_rxfifosz(mbase, c_size);
1211 musb_write_rxfifoadd(mbase, c_off);
1212 hw_ep->rx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1213 hw_ep->max_packet_sz_rx = maxpacket;
1214 break;
1215 case FIFO_RXTX:
1216 musb_write_txfifosz(mbase, c_size);
1217 musb_write_txfifoadd(mbase, c_off);
1218 hw_ep->rx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1219 hw_ep->max_packet_sz_rx = maxpacket;
1220
1221 musb_write_rxfifosz(mbase, c_size);
1222 musb_write_rxfifoadd(mbase, c_off);
1223 hw_ep->tx_double_buffered = hw_ep->rx_double_buffered;
1224 hw_ep->max_packet_sz_tx = maxpacket;
1225
1226 hw_ep->is_shared_fifo = true;
1227 break;
1228 }
1229
1230 /* NOTE rx and tx endpoint irqs aren't managed separately,
1231 * which happens to be ok
1232 */
1233 musb->epmask |= (1 << hw_ep->epnum);
1234
1235 return offset + (maxpacket << ((c_size & MUSB_FIFOSZ_DPB) ? 1 : 0));
1236 }
1237
1238 static struct musb_fifo_cfg ep0_cfg = {
1239 .style = FIFO_RXTX, .maxpacket = 64,
1240 };
1241
ep_config_from_table(struct musb * musb)1242 static int ep_config_from_table(struct musb *musb)
1243 {
1244 const struct musb_fifo_cfg *cfg;
1245 unsigned i, n;
1246 int offset;
1247 struct musb_hw_ep *hw_ep = musb->endpoints;
1248
1249 if (musb->config->fifo_cfg) {
1250 cfg = musb->config->fifo_cfg;
1251 n = musb->config->fifo_cfg_size;
1252 goto done;
1253 }
1254
1255 switch (fifo_mode) {
1256 default:
1257 fifo_mode = 0;
1258 /* FALLTHROUGH */
1259 case 0:
1260 cfg = mode_0_cfg;
1261 n = ARRAY_SIZE(mode_0_cfg);
1262 break;
1263 case 1:
1264 cfg = mode_1_cfg;
1265 n = ARRAY_SIZE(mode_1_cfg);
1266 break;
1267 case 2:
1268 cfg = mode_2_cfg;
1269 n = ARRAY_SIZE(mode_2_cfg);
1270 break;
1271 case 3:
1272 cfg = mode_3_cfg;
1273 n = ARRAY_SIZE(mode_3_cfg);
1274 break;
1275 case 4:
1276 cfg = mode_4_cfg;
1277 n = ARRAY_SIZE(mode_4_cfg);
1278 break;
1279 case 5:
1280 cfg = mode_5_cfg;
1281 n = ARRAY_SIZE(mode_5_cfg);
1282 break;
1283 }
1284
1285 printk(KERN_DEBUG "%s: setup fifo_mode %d\n",
1286 musb_driver_name, fifo_mode);
1287
1288
1289 done:
1290 offset = fifo_setup(musb, hw_ep, &ep0_cfg, 0);
1291 /* assert(offset > 0) */
1292
1293 /* NOTE: for RTL versions >= 1.400 EPINFO and RAMINFO would
1294 * be better than static musb->config->num_eps and DYN_FIFO_SIZE...
1295 */
1296
1297 for (i = 0; i < n; i++) {
1298 u8 epn = cfg->hw_ep_num;
1299
1300 if (epn >= musb->config->num_eps) {
1301 pr_debug("%s: invalid ep %d\n",
1302 musb_driver_name, epn);
1303 return -EINVAL;
1304 }
1305 offset = fifo_setup(musb, hw_ep + epn, cfg++, offset);
1306 if (offset < 0) {
1307 pr_debug("%s: mem overrun, ep %d\n",
1308 musb_driver_name, epn);
1309 return offset;
1310 }
1311 epn++;
1312 musb->nr_endpoints = max(epn, musb->nr_endpoints);
1313 }
1314
1315 printk(KERN_DEBUG "%s: %d/%d max ep, %d/%d memory\n",
1316 musb_driver_name,
1317 n + 1, musb->config->num_eps * 2 - 1,
1318 offset, (1 << (musb->config->ram_bits + 2)));
1319
1320 if (!musb->bulk_ep) {
1321 pr_debug("%s: missing bulk\n", musb_driver_name);
1322 return -EINVAL;
1323 }
1324
1325 return 0;
1326 }
1327
1328
1329 /*
1330 * ep_config_from_hw - when MUSB_C_DYNFIFO_DEF is false
1331 * @param musb the controller
1332 */
ep_config_from_hw(struct musb * musb)1333 static int ep_config_from_hw(struct musb *musb)
1334 {
1335 u8 epnum = 0;
1336 struct musb_hw_ep *hw_ep;
1337 void __iomem *mbase = musb->mregs;
1338 int ret = 0;
1339
1340 dev_dbg(musb->controller, "<== static silicon ep config\n");
1341
1342 /* FIXME pick up ep0 maxpacket size */
1343
1344 for (epnum = 1; epnum < musb->config->num_eps; epnum++) {
1345 musb_ep_select(mbase, epnum);
1346 hw_ep = musb->endpoints + epnum;
1347
1348 ret = musb_read_fifosize(musb, hw_ep, epnum);
1349 if (ret < 0)
1350 break;
1351
1352 /* FIXME set up hw_ep->{rx,tx}_double_buffered */
1353
1354 /* pick an RX/TX endpoint for bulk */
1355 if (hw_ep->max_packet_sz_tx < 512
1356 || hw_ep->max_packet_sz_rx < 512)
1357 continue;
1358
1359 /* REVISIT: this algorithm is lazy, we should at least
1360 * try to pick a double buffered endpoint.
1361 */
1362 if (musb->bulk_ep)
1363 continue;
1364 musb->bulk_ep = hw_ep;
1365 }
1366
1367 if (!musb->bulk_ep) {
1368 pr_debug("%s: missing bulk\n", musb_driver_name);
1369 return -EINVAL;
1370 }
1371
1372 return 0;
1373 }
1374
1375 enum { MUSB_CONTROLLER_MHDRC, MUSB_CONTROLLER_HDRC, };
1376
1377 /* Initialize MUSB (M)HDRC part of the USB hardware subsystem;
1378 * configure endpoints, or take their config from silicon
1379 */
musb_core_init(u16 musb_type,struct musb * musb)1380 static int musb_core_init(u16 musb_type, struct musb *musb)
1381 {
1382 u8 reg;
1383 char *type;
1384 char aInfo[90], aRevision[32], aDate[12];
1385 void __iomem *mbase = musb->mregs;
1386 int status = 0;
1387 int i;
1388
1389 /* log core options (read using indexed model) */
1390 reg = musb_read_configdata(mbase);
1391
1392 strcpy(aInfo, (reg & MUSB_CONFIGDATA_UTMIDW) ? "UTMI-16" : "UTMI-8");
1393 if (reg & MUSB_CONFIGDATA_DYNFIFO) {
1394 strcat(aInfo, ", dyn FIFOs");
1395 musb->dyn_fifo = true;
1396 }
1397 if (reg & MUSB_CONFIGDATA_MPRXE) {
1398 strcat(aInfo, ", bulk combine");
1399 musb->bulk_combine = true;
1400 }
1401 if (reg & MUSB_CONFIGDATA_MPTXE) {
1402 strcat(aInfo, ", bulk split");
1403 musb->bulk_split = true;
1404 }
1405 if (reg & MUSB_CONFIGDATA_HBRXE) {
1406 strcat(aInfo, ", HB-ISO Rx");
1407 musb->hb_iso_rx = true;
1408 }
1409 if (reg & MUSB_CONFIGDATA_HBTXE) {
1410 strcat(aInfo, ", HB-ISO Tx");
1411 musb->hb_iso_tx = true;
1412 }
1413 if (reg & MUSB_CONFIGDATA_SOFTCONE)
1414 strcat(aInfo, ", SoftConn");
1415
1416 printk(KERN_DEBUG "%s: ConfigData=0x%02x (%s)\n",
1417 musb_driver_name, reg, aInfo);
1418
1419 aDate[0] = 0;
1420 if (MUSB_CONTROLLER_MHDRC == musb_type) {
1421 musb->is_multipoint = 1;
1422 type = "M";
1423 } else {
1424 musb->is_multipoint = 0;
1425 type = "";
1426 #ifndef CONFIG_USB_OTG_BLACKLIST_HUB
1427 printk(KERN_ERR
1428 "%s: kernel must blacklist external hubs\n",
1429 musb_driver_name);
1430 #endif
1431 }
1432
1433 /* log release info */
1434 musb->hwvers = musb_read_hwvers(mbase);
1435 snprintf(aRevision, 32, "%d.%d%s", MUSB_HWVERS_MAJOR(musb->hwvers),
1436 MUSB_HWVERS_MINOR(musb->hwvers),
1437 (musb->hwvers & MUSB_HWVERS_RC) ? "RC" : "");
1438 printk(KERN_DEBUG "%s: %sHDRC RTL version %s %s\n",
1439 musb_driver_name, type, aRevision, aDate);
1440
1441 /* configure ep0 */
1442 musb_configure_ep0(musb);
1443
1444 /* discover endpoint configuration */
1445 musb->nr_endpoints = 1;
1446 musb->epmask = 1;
1447
1448 if (musb->dyn_fifo)
1449 status = ep_config_from_table(musb);
1450 else
1451 status = ep_config_from_hw(musb);
1452
1453 if (status < 0)
1454 return status;
1455
1456 /* finish init, and print endpoint config */
1457 for (i = 0; i < musb->nr_endpoints; i++) {
1458 struct musb_hw_ep *hw_ep = musb->endpoints + i;
1459
1460 hw_ep->fifo = MUSB_FIFO_OFFSET(i) + mbase;
1461 #if defined(CONFIG_USB_MUSB_TUSB6010) || defined (CONFIG_USB_MUSB_TUSB6010_MODULE)
1462 hw_ep->fifo_async = musb->async + 0x400 + MUSB_FIFO_OFFSET(i);
1463 hw_ep->fifo_sync = musb->sync + 0x400 + MUSB_FIFO_OFFSET(i);
1464 hw_ep->fifo_sync_va =
1465 musb->sync_va + 0x400 + MUSB_FIFO_OFFSET(i);
1466
1467 if (i == 0)
1468 hw_ep->conf = mbase - 0x400 + TUSB_EP0_CONF;
1469 else
1470 hw_ep->conf = mbase + 0x400 + (((i - 1) & 0xf) << 2);
1471 #endif
1472
1473 hw_ep->regs = MUSB_EP_OFFSET(i, 0) + mbase;
1474 hw_ep->target_regs = musb_read_target_reg_base(i, mbase);
1475 hw_ep->rx_reinit = 1;
1476 hw_ep->tx_reinit = 1;
1477
1478 if (hw_ep->max_packet_sz_tx) {
1479 dev_dbg(musb->controller,
1480 "%s: hw_ep %d%s, %smax %d\n",
1481 musb_driver_name, i,
1482 hw_ep->is_shared_fifo ? "shared" : "tx",
1483 hw_ep->tx_double_buffered
1484 ? "doublebuffer, " : "",
1485 hw_ep->max_packet_sz_tx);
1486 }
1487 if (hw_ep->max_packet_sz_rx && !hw_ep->is_shared_fifo) {
1488 dev_dbg(musb->controller,
1489 "%s: hw_ep %d%s, %smax %d\n",
1490 musb_driver_name, i,
1491 "rx",
1492 hw_ep->rx_double_buffered
1493 ? "doublebuffer, " : "",
1494 hw_ep->max_packet_sz_rx);
1495 }
1496 if (!(hw_ep->max_packet_sz_tx || hw_ep->max_packet_sz_rx))
1497 dev_dbg(musb->controller, "hw_ep %d not configured\n", i);
1498 }
1499
1500 return 0;
1501 }
1502
1503 /*-------------------------------------------------------------------------*/
1504
1505 /*
1506 * handle all the irqs defined by the HDRC core. for now we expect: other
1507 * irq sources (phy, dma, etc) will be handled first, musb->int_* values
1508 * will be assigned, and the irq will already have been acked.
1509 *
1510 * called in irq context with spinlock held, irqs blocked
1511 */
musb_interrupt(struct musb * musb)1512 irqreturn_t musb_interrupt(struct musb *musb)
1513 {
1514 irqreturn_t retval = IRQ_NONE;
1515 u8 devctl;
1516 int ep_num;
1517 u32 reg;
1518
1519 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
1520
1521 dev_dbg(musb->controller, "** IRQ %s usb%04x tx%04x rx%04x\n",
1522 is_host_active(musb) ? "host" : "peripheral",
1523 musb->int_usb, musb->int_tx, musb->int_rx);
1524
1525 /**
1526 * According to Mentor Graphics' documentation, flowchart on page 98,
1527 * IRQ should be handled as follows:
1528 *
1529 * . Resume IRQ
1530 * . Session Request IRQ
1531 * . VBUS Error IRQ
1532 * . Suspend IRQ
1533 * . Connect IRQ
1534 * . Disconnect IRQ
1535 * . Reset/Babble IRQ
1536 * . SOF IRQ (we're not using this one)
1537 * . Endpoint 0 IRQ
1538 * . TX Endpoints
1539 * . RX Endpoints
1540 *
1541 * We will be following that flowchart in order to avoid any problems
1542 * that might arise with internal Finite State Machine.
1543 */
1544
1545 if (musb->int_usb)
1546 retval |= musb_stage0_irq(musb, musb->int_usb,
1547 devctl);
1548
1549 if (musb->int_tx & 1) {
1550 if (is_host_active(musb))
1551 retval |= musb_h_ep0_irq(musb);
1552 else
1553 retval |= musb_g_ep0_irq(musb);
1554 }
1555
1556 reg = musb->int_tx >> 1;
1557 ep_num = 1;
1558 while (reg) {
1559 if (reg & 1) {
1560 retval = IRQ_HANDLED;
1561 if (is_host_active(musb))
1562 musb_host_tx(musb, ep_num);
1563 else
1564 musb_g_tx(musb, ep_num);
1565 }
1566 reg >>= 1;
1567 ep_num++;
1568 }
1569
1570 reg = musb->int_rx >> 1;
1571 ep_num = 1;
1572 while (reg) {
1573 if (reg & 1) {
1574 retval = IRQ_HANDLED;
1575 if (is_host_active(musb))
1576 musb_host_rx(musb, ep_num);
1577 else
1578 musb_g_rx(musb, ep_num);
1579 }
1580
1581 reg >>= 1;
1582 ep_num++;
1583 }
1584
1585 return retval;
1586 }
1587 EXPORT_SYMBOL_GPL(musb_interrupt);
1588
1589 #ifndef CONFIG_MUSB_PIO_ONLY
1590 static bool use_dma = 1;
1591
1592 /* "modprobe ... use_dma=0" etc */
1593 module_param(use_dma, bool, 0);
1594 MODULE_PARM_DESC(use_dma, "enable/disable use of DMA");
1595
musb_dma_completion(struct musb * musb,u8 epnum,u8 transmit)1596 void musb_dma_completion(struct musb *musb, u8 epnum, u8 transmit)
1597 {
1598 /* called with controller lock already held */
1599
1600 if (!epnum) {
1601 #ifndef CONFIG_USB_TUSB_OMAP_DMA
1602 if (!is_cppi_enabled()) {
1603 /* endpoint 0 */
1604 if (is_host_active(musb))
1605 musb_h_ep0_irq(musb);
1606 else
1607 musb_g_ep0_irq(musb);
1608 }
1609 #endif
1610 } else {
1611 /* endpoints 1..15 */
1612 if (transmit) {
1613 if (is_host_active(musb))
1614 musb_host_tx(musb, epnum);
1615 else
1616 musb_g_tx(musb, epnum);
1617 } else {
1618 /* receive */
1619 if (is_host_active(musb))
1620 musb_host_rx(musb, epnum);
1621 else
1622 musb_g_rx(musb, epnum);
1623 }
1624 }
1625 }
1626 EXPORT_SYMBOL_GPL(musb_dma_completion);
1627
1628 #else
1629 #define use_dma 0
1630 #endif
1631
1632 /*-------------------------------------------------------------------------*/
1633
1634 static ssize_t
musb_mode_show(struct device * dev,struct device_attribute * attr,char * buf)1635 musb_mode_show(struct device *dev, struct device_attribute *attr, char *buf)
1636 {
1637 struct musb *musb = dev_to_musb(dev);
1638 unsigned long flags;
1639 int ret = -EINVAL;
1640
1641 spin_lock_irqsave(&musb->lock, flags);
1642 ret = sprintf(buf, "%s\n", usb_otg_state_string(musb->xceiv->state));
1643 spin_unlock_irqrestore(&musb->lock, flags);
1644
1645 return ret;
1646 }
1647
1648 static ssize_t
musb_mode_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t n)1649 musb_mode_store(struct device *dev, struct device_attribute *attr,
1650 const char *buf, size_t n)
1651 {
1652 struct musb *musb = dev_to_musb(dev);
1653 unsigned long flags;
1654 int status;
1655
1656 spin_lock_irqsave(&musb->lock, flags);
1657 if (sysfs_streq(buf, "host"))
1658 status = musb_platform_set_mode(musb, MUSB_HOST);
1659 else if (sysfs_streq(buf, "peripheral"))
1660 status = musb_platform_set_mode(musb, MUSB_PERIPHERAL);
1661 else if (sysfs_streq(buf, "otg"))
1662 status = musb_platform_set_mode(musb, MUSB_OTG);
1663 else
1664 status = -EINVAL;
1665 spin_unlock_irqrestore(&musb->lock, flags);
1666
1667 return (status == 0) ? n : status;
1668 }
1669 static DEVICE_ATTR(mode, 0644, musb_mode_show, musb_mode_store);
1670
1671 static ssize_t
musb_vbus_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t n)1672 musb_vbus_store(struct device *dev, struct device_attribute *attr,
1673 const char *buf, size_t n)
1674 {
1675 struct musb *musb = dev_to_musb(dev);
1676 unsigned long flags;
1677 unsigned long val;
1678
1679 if (sscanf(buf, "%lu", &val) < 1) {
1680 dev_err(dev, "Invalid VBUS timeout ms value\n");
1681 return -EINVAL;
1682 }
1683
1684 spin_lock_irqsave(&musb->lock, flags);
1685 /* force T(a_wait_bcon) to be zero/unlimited *OR* valid */
1686 musb->a_wait_bcon = val ? max_t(int, val, OTG_TIME_A_WAIT_BCON) : 0 ;
1687 if (musb->xceiv->state == OTG_STATE_A_WAIT_BCON)
1688 musb->is_active = 0;
1689 musb_platform_try_idle(musb, jiffies + msecs_to_jiffies(val));
1690 spin_unlock_irqrestore(&musb->lock, flags);
1691
1692 return n;
1693 }
1694
1695 static ssize_t
musb_vbus_show(struct device * dev,struct device_attribute * attr,char * buf)1696 musb_vbus_show(struct device *dev, struct device_attribute *attr, char *buf)
1697 {
1698 struct musb *musb = dev_to_musb(dev);
1699 unsigned long flags;
1700 unsigned long val;
1701 int vbus;
1702
1703 spin_lock_irqsave(&musb->lock, flags);
1704 val = musb->a_wait_bcon;
1705 /* FIXME get_vbus_status() is normally #defined as false...
1706 * and is effectively TUSB-specific.
1707 */
1708 vbus = musb_platform_get_vbus_status(musb);
1709 spin_unlock_irqrestore(&musb->lock, flags);
1710
1711 return sprintf(buf, "Vbus %s, timeout %lu msec\n",
1712 vbus ? "on" : "off", val);
1713 }
1714 static DEVICE_ATTR(vbus, 0644, musb_vbus_show, musb_vbus_store);
1715
1716 /* Gadget drivers can't know that a host is connected so they might want
1717 * to start SRP, but users can. This allows userspace to trigger SRP.
1718 */
1719 static ssize_t
musb_srp_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t n)1720 musb_srp_store(struct device *dev, struct device_attribute *attr,
1721 const char *buf, size_t n)
1722 {
1723 struct musb *musb = dev_to_musb(dev);
1724 unsigned short srp;
1725
1726 if (sscanf(buf, "%hu", &srp) != 1
1727 || (srp != 1)) {
1728 dev_err(dev, "SRP: Value must be 1\n");
1729 return -EINVAL;
1730 }
1731
1732 if (srp == 1)
1733 musb_g_wakeup(musb);
1734
1735 return n;
1736 }
1737 static DEVICE_ATTR(srp, 0644, NULL, musb_srp_store);
1738
1739 static struct attribute *musb_attributes[] = {
1740 &dev_attr_mode.attr,
1741 &dev_attr_vbus.attr,
1742 &dev_attr_srp.attr,
1743 NULL
1744 };
1745
1746 static const struct attribute_group musb_attr_group = {
1747 .attrs = musb_attributes,
1748 };
1749
1750 /* Only used to provide driver mode change events */
musb_irq_work(struct work_struct * data)1751 static void musb_irq_work(struct work_struct *data)
1752 {
1753 struct musb *musb = container_of(data, struct musb, irq_work);
1754
1755 if (musb->xceiv->state != musb->xceiv_old_state) {
1756 musb->xceiv_old_state = musb->xceiv->state;
1757 sysfs_notify(&musb->controller->kobj, NULL, "mode");
1758 }
1759 }
1760
1761 /* Recover from babble interrupt conditions */
musb_recover_work(struct work_struct * data)1762 static void musb_recover_work(struct work_struct *data)
1763 {
1764 struct musb *musb = container_of(data, struct musb, recover_work.work);
1765 int status, ret;
1766
1767 ret = musb_platform_reset(musb);
1768 if (ret)
1769 return;
1770
1771 usb_phy_vbus_off(musb->xceiv);
1772 usleep_range(100, 200);
1773
1774 usb_phy_vbus_on(musb->xceiv);
1775 usleep_range(100, 200);
1776
1777 /*
1778 * When a babble condition occurs, the musb controller
1779 * removes the session bit and the endpoint config is lost.
1780 */
1781 if (musb->dyn_fifo)
1782 status = ep_config_from_table(musb);
1783 else
1784 status = ep_config_from_hw(musb);
1785
1786 /* start the session again */
1787 if (status == 0)
1788 musb_start(musb);
1789 }
1790
1791 /* --------------------------------------------------------------------------
1792 * Init support
1793 */
1794
allocate_instance(struct device * dev,struct musb_hdrc_config * config,void __iomem * mbase)1795 static struct musb *allocate_instance(struct device *dev,
1796 struct musb_hdrc_config *config, void __iomem *mbase)
1797 {
1798 struct musb *musb;
1799 struct musb_hw_ep *ep;
1800 int epnum;
1801 int ret;
1802
1803 musb = devm_kzalloc(dev, sizeof(*musb), GFP_KERNEL);
1804 if (!musb)
1805 return NULL;
1806
1807 INIT_LIST_HEAD(&musb->control);
1808 INIT_LIST_HEAD(&musb->in_bulk);
1809 INIT_LIST_HEAD(&musb->out_bulk);
1810
1811 musb->vbuserr_retry = VBUSERR_RETRY_COUNT;
1812 musb->a_wait_bcon = OTG_TIME_A_WAIT_BCON;
1813 musb->mregs = mbase;
1814 musb->ctrl_base = mbase;
1815 musb->nIrq = -ENODEV;
1816 musb->config = config;
1817 BUG_ON(musb->config->num_eps > MUSB_C_NUM_EPS);
1818 for (epnum = 0, ep = musb->endpoints;
1819 epnum < musb->config->num_eps;
1820 epnum++, ep++) {
1821 ep->musb = musb;
1822 ep->epnum = epnum;
1823 }
1824
1825 musb->controller = dev;
1826
1827 ret = musb_host_alloc(musb);
1828 if (ret < 0)
1829 goto err_free;
1830
1831 dev_set_drvdata(dev, musb);
1832
1833 return musb;
1834
1835 err_free:
1836 return NULL;
1837 }
1838
musb_free(struct musb * musb)1839 static void musb_free(struct musb *musb)
1840 {
1841 /* this has multiple entry modes. it handles fault cleanup after
1842 * probe(), where things may be partially set up, as well as rmmod
1843 * cleanup after everything's been de-activated.
1844 */
1845
1846 #ifdef CONFIG_SYSFS
1847 sysfs_remove_group(&musb->controller->kobj, &musb_attr_group);
1848 #endif
1849
1850 if (musb->nIrq >= 0) {
1851 if (musb->irq_wake)
1852 disable_irq_wake(musb->nIrq);
1853 free_irq(musb->nIrq, musb);
1854 }
1855
1856 musb_host_free(musb);
1857 }
1858
musb_deassert_reset(struct work_struct * work)1859 static void musb_deassert_reset(struct work_struct *work)
1860 {
1861 struct musb *musb;
1862 unsigned long flags;
1863
1864 musb = container_of(work, struct musb, deassert_reset_work.work);
1865
1866 spin_lock_irqsave(&musb->lock, flags);
1867
1868 if (musb->port1_status & USB_PORT_STAT_RESET)
1869 musb_port_reset(musb, false);
1870
1871 spin_unlock_irqrestore(&musb->lock, flags);
1872 }
1873
1874 /*
1875 * Perform generic per-controller initialization.
1876 *
1877 * @dev: the controller (already clocked, etc)
1878 * @nIrq: IRQ number
1879 * @ctrl: virtual address of controller registers,
1880 * not yet corrected for platform-specific offsets
1881 */
1882 static int
musb_init_controller(struct device * dev,int nIrq,void __iomem * ctrl)1883 musb_init_controller(struct device *dev, int nIrq, void __iomem *ctrl)
1884 {
1885 int status;
1886 struct musb *musb;
1887 struct musb_hdrc_platform_data *plat = dev_get_platdata(dev);
1888
1889 /* The driver might handle more features than the board; OK.
1890 * Fail when the board needs a feature that's not enabled.
1891 */
1892 if (!plat) {
1893 dev_dbg(dev, "no platform_data?\n");
1894 status = -ENODEV;
1895 goto fail0;
1896 }
1897
1898 /* allocate */
1899 musb = allocate_instance(dev, plat->config, ctrl);
1900 if (!musb) {
1901 status = -ENOMEM;
1902 goto fail0;
1903 }
1904
1905 pm_runtime_use_autosuspend(musb->controller);
1906 pm_runtime_set_autosuspend_delay(musb->controller, 200);
1907 pm_runtime_enable(musb->controller);
1908
1909 spin_lock_init(&musb->lock);
1910 musb->board_set_power = plat->set_power;
1911 musb->min_power = plat->min_power;
1912 musb->ops = plat->platform_ops;
1913 musb->port_mode = plat->mode;
1914
1915 /* The musb_platform_init() call:
1916 * - adjusts musb->mregs
1917 * - sets the musb->isr
1918 * - may initialize an integrated transceiver
1919 * - initializes musb->xceiv, usually by otg_get_phy()
1920 * - stops powering VBUS
1921 *
1922 * There are various transceiver configurations. Blackfin,
1923 * DaVinci, TUSB60x0, and others integrate them. OMAP3 uses
1924 * external/discrete ones in various flavors (twl4030 family,
1925 * isp1504, non-OTG, etc) mostly hooking up through ULPI.
1926 */
1927 status = musb_platform_init(musb);
1928 if (status < 0)
1929 goto fail1;
1930
1931 if (!musb->isr) {
1932 status = -ENODEV;
1933 goto fail2;
1934 }
1935
1936 if (!musb->xceiv->io_ops) {
1937 musb->xceiv->io_dev = musb->controller;
1938 musb->xceiv->io_priv = musb->mregs;
1939 musb->xceiv->io_ops = &musb_ulpi_access;
1940 }
1941
1942 pm_runtime_get_sync(musb->controller);
1943
1944 if (use_dma && dev->dma_mask) {
1945 musb->dma_controller = dma_controller_create(musb, musb->mregs);
1946 if (IS_ERR(musb->dma_controller)) {
1947 status = PTR_ERR(musb->dma_controller);
1948 goto fail2_5;
1949 }
1950 }
1951
1952 /* be sure interrupts are disabled before connecting ISR */
1953 musb_platform_disable(musb);
1954 musb_generic_disable(musb);
1955
1956 /* Init IRQ workqueue before request_irq */
1957 INIT_WORK(&musb->irq_work, musb_irq_work);
1958 INIT_DELAYED_WORK(&musb->recover_work, musb_recover_work);
1959 INIT_DELAYED_WORK(&musb->deassert_reset_work, musb_deassert_reset);
1960 INIT_DELAYED_WORK(&musb->finish_resume_work, musb_host_finish_resume);
1961
1962 /* setup musb parts of the core (especially endpoints) */
1963 status = musb_core_init(plat->config->multipoint
1964 ? MUSB_CONTROLLER_MHDRC
1965 : MUSB_CONTROLLER_HDRC, musb);
1966 if (status < 0)
1967 goto fail3;
1968
1969 setup_timer(&musb->otg_timer, musb_otg_timer_func, (unsigned long) musb);
1970
1971 /* attach to the IRQ */
1972 if (request_irq(nIrq, musb->isr, 0, dev_name(dev), musb)) {
1973 dev_err(dev, "request_irq %d failed!\n", nIrq);
1974 status = -ENODEV;
1975 goto fail3;
1976 }
1977 musb->nIrq = nIrq;
1978 /* FIXME this handles wakeup irqs wrong */
1979 if (enable_irq_wake(nIrq) == 0) {
1980 musb->irq_wake = 1;
1981 device_init_wakeup(dev, 1);
1982 } else {
1983 musb->irq_wake = 0;
1984 }
1985
1986 /* program PHY to use external vBus if required */
1987 if (plat->extvbus) {
1988 u8 busctl = musb_read_ulpi_buscontrol(musb->mregs);
1989 busctl |= MUSB_ULPI_USE_EXTVBUS;
1990 musb_write_ulpi_buscontrol(musb->mregs, busctl);
1991 }
1992
1993 if (musb->xceiv->otg->default_a) {
1994 MUSB_HST_MODE(musb);
1995 musb->xceiv->state = OTG_STATE_A_IDLE;
1996 } else {
1997 MUSB_DEV_MODE(musb);
1998 musb->xceiv->state = OTG_STATE_B_IDLE;
1999 }
2000
2001 switch (musb->port_mode) {
2002 case MUSB_PORT_MODE_HOST:
2003 status = musb_host_setup(musb, plat->power);
2004 if (status < 0)
2005 goto fail3;
2006 status = musb_platform_set_mode(musb, MUSB_HOST);
2007 break;
2008 case MUSB_PORT_MODE_GADGET:
2009 status = musb_gadget_setup(musb);
2010 if (status < 0)
2011 goto fail3;
2012 status = musb_platform_set_mode(musb, MUSB_PERIPHERAL);
2013 break;
2014 case MUSB_PORT_MODE_DUAL_ROLE:
2015 status = musb_host_setup(musb, plat->power);
2016 if (status < 0)
2017 goto fail3;
2018 status = musb_gadget_setup(musb);
2019 if (status) {
2020 musb_host_cleanup(musb);
2021 goto fail3;
2022 }
2023 status = musb_platform_set_mode(musb, MUSB_OTG);
2024 break;
2025 default:
2026 dev_err(dev, "unsupported port mode %d\n", musb->port_mode);
2027 break;
2028 }
2029
2030 if (status < 0)
2031 goto fail3;
2032
2033 status = musb_init_debugfs(musb);
2034 if (status < 0)
2035 goto fail4;
2036
2037 status = sysfs_create_group(&musb->controller->kobj, &musb_attr_group);
2038 if (status)
2039 goto fail5;
2040
2041 pm_runtime_put(musb->controller);
2042
2043 return 0;
2044
2045 fail5:
2046 musb_exit_debugfs(musb);
2047
2048 fail4:
2049 musb_gadget_cleanup(musb);
2050 musb_host_cleanup(musb);
2051
2052 fail3:
2053 cancel_work_sync(&musb->irq_work);
2054 cancel_delayed_work_sync(&musb->recover_work);
2055 cancel_delayed_work_sync(&musb->finish_resume_work);
2056 cancel_delayed_work_sync(&musb->deassert_reset_work);
2057 if (musb->dma_controller)
2058 dma_controller_destroy(musb->dma_controller);
2059 fail2_5:
2060 pm_runtime_put_sync(musb->controller);
2061
2062 fail2:
2063 if (musb->irq_wake)
2064 device_init_wakeup(dev, 0);
2065 musb_platform_exit(musb);
2066
2067 fail1:
2068 pm_runtime_disable(musb->controller);
2069 dev_err(musb->controller,
2070 "musb_init_controller failed with status %d\n", status);
2071
2072 musb_free(musb);
2073
2074 fail0:
2075
2076 return status;
2077
2078 }
2079
2080 /*-------------------------------------------------------------------------*/
2081
2082 /* all implementations (PCI bridge to FPGA, VLYNQ, etc) should just
2083 * bridge to a platform device; this driver then suffices.
2084 */
musb_probe(struct platform_device * pdev)2085 static int musb_probe(struct platform_device *pdev)
2086 {
2087 struct device *dev = &pdev->dev;
2088 int irq = platform_get_irq_byname(pdev, "mc");
2089 struct resource *iomem;
2090 void __iomem *base;
2091
2092 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2093 if (!iomem || irq <= 0)
2094 return -ENODEV;
2095
2096 base = devm_ioremap_resource(dev, iomem);
2097 if (IS_ERR(base))
2098 return PTR_ERR(base);
2099
2100 return musb_init_controller(dev, irq, base);
2101 }
2102
musb_remove(struct platform_device * pdev)2103 static int musb_remove(struct platform_device *pdev)
2104 {
2105 struct device *dev = &pdev->dev;
2106 struct musb *musb = dev_to_musb(dev);
2107
2108 /* this gets called on rmmod.
2109 * - Host mode: host may still be active
2110 * - Peripheral mode: peripheral is deactivated (or never-activated)
2111 * - OTG mode: both roles are deactivated (or never-activated)
2112 */
2113 musb_exit_debugfs(musb);
2114 musb_shutdown(pdev);
2115
2116 if (musb->dma_controller)
2117 dma_controller_destroy(musb->dma_controller);
2118
2119 cancel_work_sync(&musb->irq_work);
2120 cancel_delayed_work_sync(&musb->recover_work);
2121 cancel_delayed_work_sync(&musb->finish_resume_work);
2122 cancel_delayed_work_sync(&musb->deassert_reset_work);
2123 musb_free(musb);
2124 device_init_wakeup(dev, 0);
2125 return 0;
2126 }
2127
2128 #ifdef CONFIG_PM
2129
musb_save_context(struct musb * musb)2130 static void musb_save_context(struct musb *musb)
2131 {
2132 int i;
2133 void __iomem *musb_base = musb->mregs;
2134 void __iomem *epio;
2135
2136 musb->context.frame = musb_readw(musb_base, MUSB_FRAME);
2137 musb->context.testmode = musb_readb(musb_base, MUSB_TESTMODE);
2138 musb->context.busctl = musb_read_ulpi_buscontrol(musb->mregs);
2139 musb->context.power = musb_readb(musb_base, MUSB_POWER);
2140 musb->context.intrusbe = musb_readb(musb_base, MUSB_INTRUSBE);
2141 musb->context.index = musb_readb(musb_base, MUSB_INDEX);
2142 musb->context.devctl = musb_readb(musb_base, MUSB_DEVCTL);
2143
2144 for (i = 0; i < musb->config->num_eps; ++i) {
2145 struct musb_hw_ep *hw_ep;
2146
2147 hw_ep = &musb->endpoints[i];
2148 if (!hw_ep)
2149 continue;
2150
2151 epio = hw_ep->regs;
2152 if (!epio)
2153 continue;
2154
2155 musb_writeb(musb_base, MUSB_INDEX, i);
2156 musb->context.index_regs[i].txmaxp =
2157 musb_readw(epio, MUSB_TXMAXP);
2158 musb->context.index_regs[i].txcsr =
2159 musb_readw(epio, MUSB_TXCSR);
2160 musb->context.index_regs[i].rxmaxp =
2161 musb_readw(epio, MUSB_RXMAXP);
2162 musb->context.index_regs[i].rxcsr =
2163 musb_readw(epio, MUSB_RXCSR);
2164
2165 if (musb->dyn_fifo) {
2166 musb->context.index_regs[i].txfifoadd =
2167 musb_read_txfifoadd(musb_base);
2168 musb->context.index_regs[i].rxfifoadd =
2169 musb_read_rxfifoadd(musb_base);
2170 musb->context.index_regs[i].txfifosz =
2171 musb_read_txfifosz(musb_base);
2172 musb->context.index_regs[i].rxfifosz =
2173 musb_read_rxfifosz(musb_base);
2174 }
2175
2176 musb->context.index_regs[i].txtype =
2177 musb_readb(epio, MUSB_TXTYPE);
2178 musb->context.index_regs[i].txinterval =
2179 musb_readb(epio, MUSB_TXINTERVAL);
2180 musb->context.index_regs[i].rxtype =
2181 musb_readb(epio, MUSB_RXTYPE);
2182 musb->context.index_regs[i].rxinterval =
2183 musb_readb(epio, MUSB_RXINTERVAL);
2184
2185 musb->context.index_regs[i].txfunaddr =
2186 musb_read_txfunaddr(musb_base, i);
2187 musb->context.index_regs[i].txhubaddr =
2188 musb_read_txhubaddr(musb_base, i);
2189 musb->context.index_regs[i].txhubport =
2190 musb_read_txhubport(musb_base, i);
2191
2192 musb->context.index_regs[i].rxfunaddr =
2193 musb_read_rxfunaddr(musb_base, i);
2194 musb->context.index_regs[i].rxhubaddr =
2195 musb_read_rxhubaddr(musb_base, i);
2196 musb->context.index_regs[i].rxhubport =
2197 musb_read_rxhubport(musb_base, i);
2198 }
2199 }
2200
musb_restore_context(struct musb * musb)2201 static void musb_restore_context(struct musb *musb)
2202 {
2203 int i;
2204 void __iomem *musb_base = musb->mregs;
2205 void __iomem *ep_target_regs;
2206 void __iomem *epio;
2207 u8 power;
2208
2209 musb_writew(musb_base, MUSB_FRAME, musb->context.frame);
2210 musb_writeb(musb_base, MUSB_TESTMODE, musb->context.testmode);
2211 musb_write_ulpi_buscontrol(musb->mregs, musb->context.busctl);
2212
2213 /* Don't affect SUSPENDM/RESUME bits in POWER reg */
2214 power = musb_readb(musb_base, MUSB_POWER);
2215 power &= MUSB_POWER_SUSPENDM | MUSB_POWER_RESUME;
2216 musb->context.power &= ~(MUSB_POWER_SUSPENDM | MUSB_POWER_RESUME);
2217 power |= musb->context.power;
2218 musb_writeb(musb_base, MUSB_POWER, power);
2219
2220 musb_writew(musb_base, MUSB_INTRTXE, musb->intrtxe);
2221 musb_writew(musb_base, MUSB_INTRRXE, musb->intrrxe);
2222 musb_writeb(musb_base, MUSB_INTRUSBE, musb->context.intrusbe);
2223 musb_writeb(musb_base, MUSB_DEVCTL, musb->context.devctl);
2224
2225 for (i = 0; i < musb->config->num_eps; ++i) {
2226 struct musb_hw_ep *hw_ep;
2227
2228 hw_ep = &musb->endpoints[i];
2229 if (!hw_ep)
2230 continue;
2231
2232 epio = hw_ep->regs;
2233 if (!epio)
2234 continue;
2235
2236 musb_writeb(musb_base, MUSB_INDEX, i);
2237 musb_writew(epio, MUSB_TXMAXP,
2238 musb->context.index_regs[i].txmaxp);
2239 musb_writew(epio, MUSB_TXCSR,
2240 musb->context.index_regs[i].txcsr);
2241 musb_writew(epio, MUSB_RXMAXP,
2242 musb->context.index_regs[i].rxmaxp);
2243 musb_writew(epio, MUSB_RXCSR,
2244 musb->context.index_regs[i].rxcsr);
2245
2246 if (musb->dyn_fifo) {
2247 musb_write_txfifosz(musb_base,
2248 musb->context.index_regs[i].txfifosz);
2249 musb_write_rxfifosz(musb_base,
2250 musb->context.index_regs[i].rxfifosz);
2251 musb_write_txfifoadd(musb_base,
2252 musb->context.index_regs[i].txfifoadd);
2253 musb_write_rxfifoadd(musb_base,
2254 musb->context.index_regs[i].rxfifoadd);
2255 }
2256
2257 musb_writeb(epio, MUSB_TXTYPE,
2258 musb->context.index_regs[i].txtype);
2259 musb_writeb(epio, MUSB_TXINTERVAL,
2260 musb->context.index_regs[i].txinterval);
2261 musb_writeb(epio, MUSB_RXTYPE,
2262 musb->context.index_regs[i].rxtype);
2263 musb_writeb(epio, MUSB_RXINTERVAL,
2264
2265 musb->context.index_regs[i].rxinterval);
2266 musb_write_txfunaddr(musb_base, i,
2267 musb->context.index_regs[i].txfunaddr);
2268 musb_write_txhubaddr(musb_base, i,
2269 musb->context.index_regs[i].txhubaddr);
2270 musb_write_txhubport(musb_base, i,
2271 musb->context.index_regs[i].txhubport);
2272
2273 ep_target_regs =
2274 musb_read_target_reg_base(i, musb_base);
2275
2276 musb_write_rxfunaddr(ep_target_regs,
2277 musb->context.index_regs[i].rxfunaddr);
2278 musb_write_rxhubaddr(ep_target_regs,
2279 musb->context.index_regs[i].rxhubaddr);
2280 musb_write_rxhubport(ep_target_regs,
2281 musb->context.index_regs[i].rxhubport);
2282 }
2283 musb_writeb(musb_base, MUSB_INDEX, musb->context.index);
2284 }
2285
musb_suspend(struct device * dev)2286 static int musb_suspend(struct device *dev)
2287 {
2288 struct musb *musb = dev_to_musb(dev);
2289 unsigned long flags;
2290
2291 spin_lock_irqsave(&musb->lock, flags);
2292
2293 if (is_peripheral_active(musb)) {
2294 /* FIXME force disconnect unless we know USB will wake
2295 * the system up quickly enough to respond ...
2296 */
2297 } else if (is_host_active(musb)) {
2298 /* we know all the children are suspended; sometimes
2299 * they will even be wakeup-enabled.
2300 */
2301 }
2302
2303 musb_save_context(musb);
2304
2305 spin_unlock_irqrestore(&musb->lock, flags);
2306 return 0;
2307 }
2308
musb_resume_noirq(struct device * dev)2309 static int musb_resume_noirq(struct device *dev)
2310 {
2311 struct musb *musb = dev_to_musb(dev);
2312
2313 /*
2314 * For static cmos like DaVinci, register values were preserved
2315 * unless for some reason the whole soc powered down or the USB
2316 * module got reset through the PSC (vs just being disabled).
2317 *
2318 * For the DSPS glue layer though, a full register restore has to
2319 * be done. As it shouldn't harm other platforms, we do it
2320 * unconditionally.
2321 */
2322
2323 musb_restore_context(musb);
2324
2325 return 0;
2326 }
2327
musb_runtime_suspend(struct device * dev)2328 static int musb_runtime_suspend(struct device *dev)
2329 {
2330 struct musb *musb = dev_to_musb(dev);
2331
2332 musb_save_context(musb);
2333
2334 return 0;
2335 }
2336
musb_runtime_resume(struct device * dev)2337 static int musb_runtime_resume(struct device *dev)
2338 {
2339 struct musb *musb = dev_to_musb(dev);
2340 static int first = 1;
2341
2342 /*
2343 * When pm_runtime_get_sync called for the first time in driver
2344 * init, some of the structure is still not initialized which is
2345 * used in restore function. But clock needs to be
2346 * enabled before any register access, so
2347 * pm_runtime_get_sync has to be called.
2348 * Also context restore without save does not make
2349 * any sense
2350 */
2351 if (!first)
2352 musb_restore_context(musb);
2353 first = 0;
2354
2355 return 0;
2356 }
2357
2358 static const struct dev_pm_ops musb_dev_pm_ops = {
2359 .suspend = musb_suspend,
2360 .resume_noirq = musb_resume_noirq,
2361 .runtime_suspend = musb_runtime_suspend,
2362 .runtime_resume = musb_runtime_resume,
2363 };
2364
2365 #define MUSB_DEV_PM_OPS (&musb_dev_pm_ops)
2366 #else
2367 #define MUSB_DEV_PM_OPS NULL
2368 #endif
2369
2370 static struct platform_driver musb_driver = {
2371 .driver = {
2372 .name = (char *)musb_driver_name,
2373 .bus = &platform_bus_type,
2374 .owner = THIS_MODULE,
2375 .pm = MUSB_DEV_PM_OPS,
2376 },
2377 .probe = musb_probe,
2378 .remove = musb_remove,
2379 .shutdown = musb_shutdown,
2380 };
2381
2382 module_platform_driver(musb_driver);
2383