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