]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/usb/musb/plat_uds.c
musb_hdrc: Fix SRP locking
[linux-2.6-omap-h63xx.git] / drivers / usb / musb / plat_uds.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  *      - <asm/arch/hdrc_cnf.h> for SOC or family details
86  *      - platform_device for addressing, irq, and platform_data
87  *      - platform_data is mostly for board-specific informarion
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/platform_device.h>
100
101 #include <asm/io.h>
102
103 #ifdef  CONFIG_ARM
104 #include <asm/arch/hardware.h>
105 #include <asm/arch/memory.h>
106 #include <asm/mach-types.h>
107 #endif
108
109 #include "musbdefs.h"
110
111
112 #ifdef CONFIG_ARCH_DAVINCI
113 #include "davinci.h"
114 #endif
115
116
117
118 #if MUSB_DEBUG > 0
119 unsigned debug = MUSB_DEBUG;
120 module_param(debug, uint, 0);
121 MODULE_PARM_DESC(debug, "initial debug message level");
122
123 #define MUSB_VERSION_SUFFIX     "/dbg"
124 #else
125
126 const char *otg_state_string(struct musb *musb)
127 {
128         static char buf[8];
129
130         snprintf(buf, sizeof buf, "otg-%d", musb->xceiv.state);
131         return buf;
132 }
133 #endif
134
135 #define DRIVER_AUTHOR "Mentor Graphics, Texas Instruments, Nokia"
136 #define DRIVER_DESC "Inventra Dual-Role USB Controller Driver"
137
138 #define MUSB_VERSION_BASE "2.2a/db-0.5.2"
139
140 #ifndef MUSB_VERSION_SUFFIX
141 #define MUSB_VERSION_SUFFIX     ""
142 #endif
143 #define MUSB_VERSION    MUSB_VERSION_BASE MUSB_VERSION_SUFFIX
144
145 #define DRIVER_INFO DRIVER_DESC ", v" MUSB_VERSION
146
147 const char musb_driver_name[] = "musb_hdrc";
148
149 MODULE_DESCRIPTION(DRIVER_INFO);
150 MODULE_AUTHOR(DRIVER_AUTHOR);
151 MODULE_LICENSE("GPL");
152
153
154 /*-------------------------------------------------------------------------*/
155
156 static inline struct musb *dev_to_musb(struct device *dev)
157 {
158 #ifdef CONFIG_USB_MUSB_HDRC_HCD
159         /* usbcore insists dev->driver_data is a "struct hcd *" */
160         return hcd_to_musb(dev_get_drvdata(dev));
161 #else
162         return dev_get_drvdata(dev);
163 #endif
164 }
165
166 /*-------------------------------------------------------------------------*/
167
168 #ifndef CONFIG_USB_TUSB6010
169 /*
170  * Load an endpoint's FIFO
171  */
172 void musb_write_fifo(struct musb_hw_ep *hw_ep, u16 len, const u8 *src)
173 {
174         void __iomem *fifo = hw_ep->fifo;
175
176         prefetch((u8 *)src);
177
178         DBG(4, "%cX ep%d fifo %p count %d buf %p\n",
179                         'T', hw_ep->epnum, fifo, len, src);
180
181         /* we can't assume unaligned reads work */
182         if (likely((0x01 & (unsigned long) src) == 0)) {
183                 u16     index = 0;
184
185                 /* best case is 32bit-aligned source address */
186                 if ((0x02 & (unsigned long) src) == 0) {
187                         if (len >= 4) {
188                                 writesl(fifo, src + index, len >> 2);
189                                 index += len & ~0x03;
190                         }
191                         if (len & 0x02) {
192                                 musb_writew(fifo, 0, *(u16*)&src[index]);
193                                 index += 2;
194                         }
195                 } else {
196                         if (len >= 2) {
197                                 writesw(fifo, src + index, len >> 1);
198                                 index += len & ~0x01;
199                         }
200                 }
201                 if (len & 0x01)
202                         musb_writeb(fifo, 0, src[index]);
203         } else  {
204                 /* byte aligned */
205                 writesb(fifo, src, len);
206         }
207 }
208
209 /*
210  * Unload an endpoint's FIFO
211  */
212 void musb_read_fifo(struct musb_hw_ep *hw_ep, u16 len, u8 *dst)
213 {
214         void __iomem *fifo = hw_ep->fifo;
215
216         DBG(4, "%cX ep%d fifo %p count %d buf %p\n",
217                         'R', hw_ep->epnum, fifo, len, dst);
218
219         /* we can't assume unaligned writes work */
220         if (likely((0x01 & (unsigned long) dst) == 0)) {
221                 u16     index = 0;
222
223                 /* best case is 32bit-aligned destination address */
224                 if ((0x02 & (unsigned long) dst) == 0) {
225                         if (len >= 4) {
226                                 readsl(fifo, dst, len >> 2);
227                                 index = len & ~0x03;
228                         }
229                         if (len & 0x02) {
230                                 *(u16*)&dst[index] = musb_readw(fifo, 0);
231                                 index += 2;
232                         }
233                 } else {
234                         if (len >= 2) {
235                                 readsw(fifo, dst, len >> 1);
236                                 index = len & ~0x01;
237                         }
238                 }
239                 if (len & 0x01)
240                         dst[index] = musb_readb(fifo, 0);
241         } else  {
242                 /* byte aligned */
243                 readsb(fifo, dst, len);
244         }
245 }
246
247 #endif  /* normal PIO */
248
249
250 /*-------------------------------------------------------------------------*/
251
252 /* for high speed test mode; see USB 2.0 spec 7.1.20 */
253 static const u8 musb_test_packet[53] = {
254         /* implicit SYNC then DATA0 to start */
255
256         /* JKJKJKJK x9 */
257         0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
258         /* JJKKJJKK x8 */
259         0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
260         /* JJJJKKKK x8 */
261         0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee,
262         /* JJJJJJJKKKKKKK x8 */
263         0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
264         /* JJJJJJJK x8 */
265         0x7f, 0xbf, 0xdf, 0xef, 0xf7, 0xfb, 0xfd,
266         /* JKKKKKKK x10, JK */
267         0xfc, 0x7e, 0xbf, 0xdf, 0xef, 0xf7, 0xfb, 0xfd, 0x7e
268
269         /* implicit CRC16 then EOP to end */
270 };
271
272 void musb_load_testpacket(struct musb *musb)
273 {
274         void __iomem    *regs = musb->endpoints[0].regs;
275
276         musb_ep_select(musb->mregs, 0);
277         musb_write_fifo(musb->control_ep,
278                         sizeof(musb_test_packet), musb_test_packet);
279         musb_writew(regs, MUSB_CSR0, MUSB_CSR0_TXPKTRDY);
280 }
281
282 /*-------------------------------------------------------------------------*/
283
284 #ifdef  CONFIG_USB_MUSB_OTG
285
286 /*
287  * See also USB_OTG_1-3.pdf 6.6.5 Timers
288  * REVISIT: Are the other timers done in the hardware?
289  */
290 #define TB_ASE0_BRST            100     /* Min 3.125 ms */
291
292 /*
293  * Handles OTG hnp timeouts, such as b_ase0_brst
294  */
295 void musb_otg_timer_func(unsigned long data)
296 {
297         struct musb     *musb = (struct musb *)data;
298         unsigned long   flags;
299
300         spin_lock_irqsave(&musb->lock, flags);
301         if (musb->xceiv.state == OTG_STATE_B_WAIT_ACON) {
302                 DBG(1, "HNP: B_WAIT_ACON timeout, going back to B_PERIPHERAL\n");
303                 musb_g_disconnect(musb);
304                 musb->xceiv.state = OTG_STATE_B_PERIPHERAL;
305                 musb->is_active = 0;
306         }
307         spin_unlock_irqrestore(&musb->lock, flags);
308 }
309
310 static DEFINE_TIMER(musb_otg_timer, musb_otg_timer_func, 0, 0);
311
312 /*
313  * Stops the B-device HNP state. Caller must take care of locking.
314  */
315 void musb_hnp_stop(struct musb *musb)
316 {
317         struct usb_hcd  *hcd = musb_to_hcd(musb);
318         void __iomem    *mbase = musb->mregs;
319         u8      reg;
320
321         switch (musb->xceiv.state) {
322         case OTG_STATE_A_PERIPHERAL:
323         case OTG_STATE_A_WAIT_VFALL:
324                 DBG(1, "HNP: Switching back to A-host\n");
325                 musb_g_disconnect(musb);
326                 musb_root_disconnect(musb);
327                 musb->xceiv.state = OTG_STATE_A_IDLE;
328                 musb->is_active = 0;
329                 break;
330         case OTG_STATE_B_HOST:
331                 DBG(1, "HNP: Disabling HR\n");
332                 hcd->self.is_b_host = 0;
333                 musb->xceiv.state = OTG_STATE_B_PERIPHERAL;
334                 reg = musb_readb(mbase, MUSB_POWER);
335                 reg |= MUSB_POWER_SUSPENDM;
336                 musb_writeb(mbase, MUSB_POWER, reg);
337                 /* REVISIT: Start SESSION_REQUEST here? */
338                 break;
339         default:
340                 DBG(1, "HNP: Stopping in unknown state %s\n",
341                         otg_state_string(musb));
342         }
343 }
344
345 #endif
346
347 /*
348  * Interrupt Service Routine to record USB "global" interrupts.
349  * Since these do not happen often and signify things of
350  * paramount importance, it seems OK to check them individually;
351  * the order of the tests is specified in the manual
352  *
353  * @param musb instance pointer
354  * @param int_usb register contents
355  * @param devctl
356  * @param power
357  */
358
359 #define STAGE0_MASK (MUSB_INTR_RESUME | MUSB_INTR_SESSREQ \
360                 | MUSB_INTR_VBUSERROR | MUSB_INTR_CONNECT \
361                 | MUSB_INTR_RESET )
362
363 static irqreturn_t musb_stage0_irq(struct musb * musb, u8 int_usb,
364                                 u8 devctl, u8 power)
365 {
366         irqreturn_t handled = IRQ_NONE;
367 #ifdef CONFIG_USB_MUSB_HDRC_HCD
368         void __iomem *mbase = musb->mregs;
369 #endif
370
371         DBG(3, "<== Power=%02x, DevCtl=%02x, int_usb=0x%x\n", power, devctl,
372                 int_usb);
373
374         /* in host mode, the peripheral may issue remote wakeup.
375          * in peripheral mode, the host may resume the link.
376          * spurious RESUME irqs happen too, paired with SUSPEND.
377          */
378         if (int_usb & MUSB_INTR_RESUME) {
379                 handled = IRQ_HANDLED;
380                 DBG(3, "RESUME (%s)\n", otg_state_string(musb));
381
382                 if (devctl & MUSB_DEVCTL_HM) {
383 #ifdef CONFIG_USB_MUSB_HDRC_HCD
384                         switch (musb->xceiv.state) {
385                         case OTG_STATE_A_SUSPEND:
386                                 /* remote wakeup?  later, GetPortStatus
387                                  * will stop RESUME signaling
388                                  */
389
390                                 if (power & MUSB_POWER_SUSPENDM) {
391                                         /* spurious */
392                                         musb->int_usb &= ~MUSB_INTR_SUSPEND;
393                                         DBG(2, "Spurious SUSPENDM\n");
394                                         break;
395                                 }
396
397                                 power &= ~MUSB_POWER_SUSPENDM;
398                                 musb_writeb(mbase, MUSB_POWER,
399                                                 power | MUSB_POWER_RESUME);
400
401                                 musb->port1_status |=
402                                                 (USB_PORT_STAT_C_SUSPEND << 16)
403                                                 | MUSB_PORT_STAT_RESUME;
404                                 musb->rh_timer = jiffies
405                                                 + msecs_to_jiffies(20);
406
407                                 musb->xceiv.state = OTG_STATE_A_HOST;
408                                 musb->is_active = 1;
409                                 usb_hcd_resume_root_hub(musb_to_hcd(musb));
410                                 break;
411                         case OTG_STATE_B_WAIT_ACON:
412                                 musb->xceiv.state = OTG_STATE_B_PERIPHERAL;
413                                 musb->is_active = 1;
414                                 MUSB_DEV_MODE(musb);
415                                 break;
416                         default:
417                                 WARN("bogus %s RESUME (%s)\n",
418                                         "host",
419                                         otg_state_string(musb));
420                         }
421 #endif
422                 } else {
423                         switch (musb->xceiv.state) {
424 #ifdef CONFIG_USB_MUSB_HDRC_HCD
425                         case OTG_STATE_A_SUSPEND:
426                                 /* possibly DISCONNECT is upcoming */
427                                 musb->xceiv.state = OTG_STATE_A_HOST;
428                                 usb_hcd_resume_root_hub(musb_to_hcd(musb));
429                                 break;
430 #endif
431 #ifdef CONFIG_USB_GADGET_MUSB_HDRC
432                         case OTG_STATE_B_WAIT_ACON:
433                         case OTG_STATE_B_PERIPHERAL:
434                                 /* disconnect while suspended?  we may
435                                  * not get a disconnect irq...
436                                  */
437                                 if ((devctl & MUSB_DEVCTL_VBUS)
438                                                 != (3 << MUSB_DEVCTL_VBUS_SHIFT)) {
439                                         musb->int_usb |= MUSB_INTR_DISCONNECT;
440                                         musb->int_usb &= ~MUSB_INTR_SUSPEND;
441                                         break;
442                                 }
443                                 musb_g_resume(musb);
444                                 break;
445                         case OTG_STATE_B_IDLE:
446                                 musb->int_usb &= ~MUSB_INTR_SUSPEND;
447                                 break;
448 #endif
449                         default:
450                                 WARN("bogus %s RESUME (%s)\n",
451                                         "peripheral",
452                                         otg_state_string(musb));
453                         }
454                 }
455         }
456
457 #ifdef CONFIG_USB_MUSB_HDRC_HCD
458         /* see manual for the order of the tests */
459         if (int_usb & MUSB_INTR_SESSREQ) {
460                 DBG(1, "SESSION_REQUEST (%s)\n", otg_state_string(musb));
461
462                 /* IRQ arrives from ID pin sense or (later, if VBUS power
463                  * is removed) SRP.  responses are time critical:
464                  *  - turn on VBUS (with silicon-specific mechanism)
465                  *  - go through A_WAIT_VRISE
466                  *  - ... to A_WAIT_BCON.
467                  * a_wait_vrise_tmout triggers VBUS_ERROR transitions
468                  */
469                 musb_writeb(mbase, MUSB_DEVCTL, MUSB_DEVCTL_SESSION);
470                 musb->ep0_stage = MUSB_EP0_START;
471                 musb->xceiv.state = OTG_STATE_A_IDLE;
472                 MUSB_HST_MODE(musb);
473                 musb_set_vbus(musb, 1);
474
475                 handled = IRQ_HANDLED;
476         }
477
478         if (int_usb & MUSB_INTR_VBUSERROR) {
479                 int     ignore = 0;
480
481                 /* During connection as an A-Device, we may see a short
482                  * current spikes causing voltage drop, because of cable
483                  * and peripheral capacitance combined with vbus draw.
484                  * (So: less common with truly self-powered devices, where
485                  * vbus doesn't act like a power supply.)
486                  *
487                  * Such spikes are short; usually less than ~500 usec, max
488                  * of ~2 msec.  That is, they're not sustained overcurrent
489                  * errors, though they're reported using VBUSERROR irqs.
490                  *
491                  * Workarounds:  (a) hardware: use self powered devices.
492                  * (b) software:  ignore non-repeated VBUS errors.
493                  *
494                  * REVISIT:  do delays from lots of DEBUG_KERNEL checks
495                  * make trouble here, keeping VBUS < 4.4V ?
496                  */
497                 switch (musb->xceiv.state) {
498                 case OTG_STATE_A_HOST:
499                         /* recovery is dicey once we've gotten past the
500                          * initial stages of enumeration, but if VBUS
501                          * stayed ok at the other end of the link, and
502                          * another reset is due (at least for high speed,
503                          * to redo the chirp etc), it might work OK...
504                          */
505                 case OTG_STATE_A_WAIT_BCON:
506                 case OTG_STATE_A_WAIT_VRISE:
507                         if (musb->vbuserr_retry) {
508                                 musb->vbuserr_retry--;
509                                 ignore = 1;
510                                 devctl |= MUSB_DEVCTL_SESSION;
511                                 musb_writeb(mbase, MUSB_DEVCTL, devctl);
512                         } else {
513                                 musb->port1_status |=
514                                           (1 << USB_PORT_FEAT_OVER_CURRENT)
515                                         | (1 << USB_PORT_FEAT_C_OVER_CURRENT);
516                         }
517                         break;
518                 default:
519                         break;
520                 }
521
522                 DBG(1, "VBUS_ERROR in %s (%02x, %s), retry #%d, port1 %08x\n",
523                                 otg_state_string(musb),
524                                 devctl,
525                                 ({ char *s;
526                                 switch (devctl & MUSB_DEVCTL_VBUS) {
527                                 case 0 << MUSB_DEVCTL_VBUS_SHIFT:
528                                         s = "<SessEnd"; break;
529                                 case 1 << MUSB_DEVCTL_VBUS_SHIFT:
530                                         s = "<AValid"; break;
531                                 case 2 << MUSB_DEVCTL_VBUS_SHIFT:
532                                         s = "<VBusValid"; break;
533                                 //case 3 << MUSB_DEVCTL_VBUS_SHIFT:
534                                 default:
535                                         s = "VALID"; break;
536                                 }; s; }),
537                                 VBUSERR_RETRY_COUNT - musb->vbuserr_retry,
538                                 musb->port1_status);
539
540                 /* go through A_WAIT_VFALL then start a new session */
541                 if (!ignore)
542                         musb_set_vbus(musb, 0);
543                 handled = IRQ_HANDLED;
544         }
545
546         if (int_usb & MUSB_INTR_CONNECT) {
547                 struct usb_hcd *hcd = musb_to_hcd(musb);
548
549                 handled = IRQ_HANDLED;
550                 musb->is_active = 1;
551                 set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
552
553                 musb->ep0_stage = MUSB_EP0_START;
554
555 #ifdef CONFIG_USB_MUSB_OTG
556                 /* flush endpoints when transitioning from Device Mode */
557                 if (is_peripheral_active(musb)) {
558                         // REVISIT HNP; just force disconnect
559                 }
560                 musb->delay_port_power_off = FALSE;
561                 musb_writew(mbase, MUSB_INTRTXE, musb->epmask);
562                 musb_writew(mbase, MUSB_INTRRXE, musb->epmask & 0xfffe);
563                 musb_writeb(mbase, MUSB_INTRUSBE, 0xf7);
564 #endif
565                 musb->port1_status &= ~(USB_PORT_STAT_LOW_SPEED
566                                         |USB_PORT_STAT_HIGH_SPEED
567                                         |USB_PORT_STAT_ENABLE
568                                         );
569                 musb->port1_status |= USB_PORT_STAT_CONNECTION
570                                         |(USB_PORT_STAT_C_CONNECTION << 16);
571
572                 /* high vs full speed is just a guess until after reset */
573                 if (devctl & MUSB_DEVCTL_LSDEV)
574                         musb->port1_status |= USB_PORT_STAT_LOW_SPEED;
575
576                 if (hcd->status_urb)
577                         usb_hcd_poll_rh_status(hcd);
578                 else
579                         usb_hcd_resume_root_hub(hcd);
580
581                 MUSB_HST_MODE(musb);
582
583                 /* indicate new connection to OTG machine */
584                 switch (musb->xceiv.state) {
585                 case OTG_STATE_B_WAIT_ACON:
586                         DBG(1, "HNP: Waiting to switch to b_host state\n");
587                         musb->xceiv.state = OTG_STATE_B_HOST;
588                         hcd->self.is_b_host = 1;
589                         break;
590                 default:
591                         if ((devctl & MUSB_DEVCTL_VBUS)
592                                         == (3 << MUSB_DEVCTL_VBUS_SHIFT)) {
593                                 musb->xceiv.state = OTG_STATE_A_HOST;
594                                 hcd->self.is_b_host = 0;
595                         }
596                         break;
597                 }
598                 DBG(1, "CONNECT (%s) devctl %02x\n",
599                                 otg_state_string(musb), devctl);
600         }
601 #endif  /* CONFIG_USB_MUSB_HDRC_HCD */
602
603         /* mentor saves a bit: bus reset and babble share the same irq.
604          * only host sees babble; only peripheral sees bus reset.
605          */
606         if (int_usb & MUSB_INTR_RESET) {
607                 if (devctl & MUSB_DEVCTL_HM) {
608                         /*
609                          * Looks like non-HS BABBLE can be ignored, but
610                          * HS BABBLE is an error condition. For HS the solution
611                          * is to avoid babble in the first place and fix whatever
612                          * causes BABBLE. When HS BABBLE happens we can only stop
613                          * the session.
614                          */
615                         if (devctl & (MUSB_DEVCTL_FSDEV | MUSB_DEVCTL_LSDEV))
616                                 DBG(1, "BABBLE devctl: %02x\n", devctl);
617                         else {
618                                 ERR("Stopping host session because of babble\n");
619                                 musb_writeb(mbase, MUSB_DEVCTL, 0);
620                         }
621                 } else {
622                         DBG(1, "BUS RESET\n");
623
624                         musb_g_reset(musb);
625                         schedule_work(&musb->irq_work);
626                 }
627
628                 handled = IRQ_HANDLED;
629         }
630
631         return handled;
632 }
633
634 /*
635  * Interrupt Service Routine to record USB "global" interrupts.
636  * Since these do not happen often and signify things of
637  * paramount importance, it seems OK to check them individually;
638  * the order of the tests is specified in the manual
639  *
640  * @param musb instance pointer
641  * @param int_usb register contents
642  * @param devctl
643  * @param power
644  */
645 static irqreturn_t musb_stage2_irq(struct musb * musb, u8 int_usb,
646                                 u8 devctl, u8 power)
647 {
648         irqreturn_t handled = IRQ_NONE;
649
650 #if 0
651 /* REVISIT ... this would be for multiplexing periodic endpoints, or
652  * supporting transfer phasing to prevent exceeding ISO bandwidth
653  * limits of a given frame or microframe.
654  *
655  * It's not needed for peripheral side, which dedicates endpoints;
656  * though it _might_ use SOF irqs for other purposes.
657  *
658  * And it's not currently needed for host side, which also dedicates
659  * endpoints, relies on TX/RX interval registers, and isn't claimed
660  * to support ISO transfers yet.
661  */
662         if (int_usb & MUSB_INTR_SOF) {
663                 void __iomem *mbase = musb->mregs;
664                 struct musb_hw_ep       *ep;
665                 u8 epnum;
666                 u16 frame;
667
668                 DBG(6, "START_OF_FRAME\n");
669                 handled = IRQ_HANDLED;
670
671                 /* start any periodic Tx transfers waiting for current frame */
672                 frame = musb_readw(mbase, MUSB_FRAME);
673                 ep = musb->endpoints;
674                 for (epnum = 1; (epnum < musb->nr_endpoints)
675                                         && (musb->epmask >= (1 << epnum));
676                                 epnum++, ep++) {
677                         // FIXME handle framecounter wraps (12 bits)
678                         // eliminate duplicated StartUrb logic
679                         if (ep->dwWaitFrame >= frame) {
680                                 ep->dwWaitFrame = 0;
681                                 printk("SOF --> periodic TX%s on %d\n",
682                                         ep->tx_channel ? " DMA" : "",
683                                         epnum);
684                                 if (!ep->tx_channel)
685                                         musb_h_tx_start(musb, epnum);
686                                 else
687                                         cppi_hostdma_start(musb, epnum);
688                         }
689                 }               /* end of for loop */
690         }
691 #endif
692
693         if ((int_usb & MUSB_INTR_DISCONNECT) && !musb->ignore_disconnect) {
694                 DBG(1, "DISCONNECT (%s) as %s, devctl %02x\n",
695                                 otg_state_string(musb),
696                                 MUSB_MODE(musb), devctl);
697                 handled = IRQ_HANDLED;
698
699                 switch (musb->xceiv.state) {
700 #ifdef CONFIG_USB_MUSB_HDRC_HCD
701                 case OTG_STATE_A_HOST:
702                 case OTG_STATE_A_SUSPEND:
703                         musb_root_disconnect(musb);
704                         if (musb->a_wait_bcon != 0)
705                                 musb_platform_try_idle(musb, jiffies
706                                         + msecs_to_jiffies(musb->a_wait_bcon));
707                         break;
708 #endif  /* HOST */
709 #ifdef CONFIG_USB_MUSB_OTG
710                 case OTG_STATE_B_HOST:
711                         musb_hnp_stop(musb);
712                         break;
713                         /* FALLTHROUGH */
714                 case OTG_STATE_A_PERIPHERAL:
715                         musb_root_disconnect(musb);
716                         /* FALLTHROUGH */
717                 case OTG_STATE_B_WAIT_ACON:
718 #endif  /* OTG */
719 #ifdef CONFIG_USB_GADGET_MUSB_HDRC
720                 case OTG_STATE_B_PERIPHERAL:
721                 case OTG_STATE_B_IDLE:
722                         musb_g_disconnect(musb);
723                         break;
724 #endif  /* GADGET */
725                 default:
726                         WARN("unhandled DISCONNECT transition (%s)\n",
727                                 otg_state_string(musb));
728                         break;
729                 }
730
731                 schedule_work(&musb->irq_work);
732         }
733
734         if (int_usb & MUSB_INTR_SUSPEND) {
735                 DBG(1, "SUSPEND (%s) devctl %02x power %02x\n",
736                                 otg_state_string(musb), devctl, power);
737                 handled = IRQ_HANDLED;
738
739                 switch (musb->xceiv.state) {
740 #ifdef  CONFIG_USB_MUSB_OTG
741                 case OTG_STATE_A_PERIPHERAL:
742                         musb_hnp_stop(musb);
743                         break;
744 #endif
745                 case OTG_STATE_B_PERIPHERAL:
746                         musb_g_suspend(musb);
747                         musb->is_active = is_otg_enabled(musb)
748                                         && musb->xceiv.gadget->b_hnp_enable;
749                         if (musb->is_active) {
750                                 musb->xceiv.state = OTG_STATE_B_WAIT_ACON;
751 #ifdef  CONFIG_USB_MUSB_OTG
752                                 DBG(1, "HNP: Setting timer for b_ase0_brst\n");
753                                 musb_otg_timer.data = (unsigned long)musb;
754                                 mod_timer(&musb_otg_timer, jiffies
755                                         + msecs_to_jiffies(TB_ASE0_BRST));
756 #endif
757                         }
758                         break;
759                 case OTG_STATE_A_WAIT_BCON:
760                         if (musb->a_wait_bcon != 0)
761                                 musb_platform_try_idle(musb, jiffies
762                                         + msecs_to_jiffies(musb->a_wait_bcon));
763                         break;
764                 case OTG_STATE_A_HOST:
765                         musb->xceiv.state = OTG_STATE_A_SUSPEND;
766                         musb->is_active = is_otg_enabled(musb)
767                                         && musb->xceiv.host->b_hnp_enable;
768                         break;
769                 case OTG_STATE_B_HOST:
770                         /* Transition to B_PERIPHERAL, see 6.8.2.6 p 44 */
771                         DBG(1, "REVISIT: SUSPEND as B_HOST\n");
772                         break;
773                 default:
774                         /* "should not happen" */
775                         musb->is_active = 0;
776                         break;
777                 }
778         }
779
780
781         return handled;
782 }
783
784 /*-------------------------------------------------------------------------*/
785
786 /*
787 * Program the HDRC to start (enable interrupts, dma, etc.).
788 */
789 void musb_start(struct musb *musb)
790 {
791         void __iomem    *regs = musb->mregs;
792         u8              devctl = musb_readb(regs, MUSB_DEVCTL);
793
794         DBG(2, "<== devctl %02x\n", devctl);
795
796         /*  Set INT enable registers, enable interrupts */
797         musb_writew(regs, MUSB_INTRTXE, musb->epmask);
798         musb_writew(regs, MUSB_INTRRXE, musb->epmask & 0xfffe);
799         musb_writeb(regs, MUSB_INTRUSBE, 0xf7);
800
801         musb_writeb(regs, MUSB_TESTMODE, 0);
802
803         /* put into basic highspeed mode and start session */
804         musb_writeb(regs, MUSB_POWER, MUSB_POWER_ISOUPDATE
805                                                 | MUSB_POWER_SOFTCONN
806                                                 | MUSB_POWER_HSENAB
807                                                 /* ENSUSPEND wedges tusb */
808                                                 // | MUSB_POWER_ENSUSPEND
809                                                 );
810
811         musb->is_active = 0;
812         devctl = musb_readb(regs, MUSB_DEVCTL);
813         devctl &= ~MUSB_DEVCTL_SESSION;
814
815         if (is_otg_enabled(musb)) {
816                 /* session started after:
817                  * (a) ID-grounded irq, host mode;
818                  * (b) vbus present/connect IRQ, peripheral mode;
819                  * (c) peripheral initiates, using SRP
820                  */
821                 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS)
822                         musb->is_active = 1;
823                 else
824                         devctl |= MUSB_DEVCTL_SESSION;
825
826         } else if (is_host_enabled(musb)) {
827                 /* assume ID pin is hard-wired to ground */
828                 devctl |= MUSB_DEVCTL_SESSION;
829
830         } else /* peripheral is enabled */ {
831                 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS)
832                         musb->is_active = 1;
833         }
834         musb_platform_enable(musb);
835         musb_writeb(regs, MUSB_DEVCTL, devctl);
836 }
837
838
839 static void musb_generic_disable(struct musb *musb)
840 {
841         void __iomem    *mbase = musb->mregs;
842         u16     temp;
843
844         /* disable interrupts */
845         musb_writeb(mbase, MUSB_INTRUSBE, 0);
846         musb_writew(mbase, MUSB_INTRTXE, 0);
847         musb_writew(mbase, MUSB_INTRRXE, 0);
848
849         /* off */
850         musb_writeb(mbase, MUSB_DEVCTL, 0);
851
852         /*  flush pending interrupts */
853         temp = musb_readb(mbase, MUSB_INTRUSB);
854         temp = musb_readw(mbase, MUSB_INTRTX);
855         temp = musb_readw(mbase, MUSB_INTRRX);
856
857 }
858
859 /*
860  * Make the HDRC stop (disable interrupts, etc.);
861  * reversible by musb_start
862  * called on gadget driver unregister
863  * with controller locked, irqs blocked
864  * acts as a NOP unless some role activated the hardware
865  */
866 void musb_stop(struct musb *musb)
867 {
868         /* stop IRQs, timers, ... */
869         musb_platform_disable(musb);
870         musb_generic_disable(musb);
871         DBG(3, "HDRC disabled\n");
872
873         /* FIXME
874          *  - mark host and/or peripheral drivers unusable/inactive
875          *  - disable DMA (and enable it in HdrcStart)
876          *  - make sure we can musb_start() after musb_stop(); with
877          *    OTG mode, gadget driver module rmmod/modprobe cycles that
878          *  - ...
879          */
880         musb_platform_try_idle(musb, 0);
881 }
882
883 static void musb_shutdown(struct platform_device *pdev)
884 {
885         struct musb     *musb = dev_to_musb(&pdev->dev);
886         unsigned long   flags;
887
888         spin_lock_irqsave(&musb->lock, flags);
889         musb_platform_disable(musb);
890         musb_generic_disable(musb);
891         if (musb->clock) {
892                 clk_put(musb->clock);
893                 musb->clock = NULL;
894         }
895         spin_unlock_irqrestore(&musb->lock, flags);
896
897         /* FIXME power down */
898 }
899
900
901 /*-------------------------------------------------------------------------*/
902
903 /*
904  * The silicon either has hard-wired endpoint configurations, or else
905  * "dynamic fifo" sizing.  The driver has support for both, though at this
906  * writing only the dynamic sizing is very well tested.   We use normal
907  * idioms to so both modes are compile-tested, but dead code elimination
908  * leaves only the relevant one in the object file.
909  *
910  * We don't currently use dynamic fifo setup capability to do anything
911  * more than selecting one of a bunch of predefined configurations.
912  */
913 #ifdef MUSB_C_DYNFIFO_DEF
914 #define can_dynfifo()   1
915 #else
916 #define can_dynfifo()   0
917 #endif
918
919 #ifdef CONFIG_USB_TUSB6010
920 static ushort __initdata fifo_mode = 4;
921 #else
922 static ushort __initdata fifo_mode = 2;
923 #endif
924
925 /* "modprobe ... fifo_mode=1" etc */
926 module_param(fifo_mode, ushort, 0);
927 MODULE_PARM_DESC(fifo_mode, "initial endpoint configuration");
928
929
930 #define DYN_FIFO_SIZE (1<<(MUSB_C_RAM_BITS+2))
931
932 enum fifo_style { FIFO_RXTX, FIFO_TX, FIFO_RX } __attribute__ ((packed));
933 enum buf_mode { BUF_SINGLE, BUF_DOUBLE } __attribute__ ((packed));
934
935 struct fifo_cfg {
936         u8              hw_ep_num;
937         enum fifo_style style;
938         enum buf_mode   mode;
939         u16             maxpacket;
940 };
941
942 /*
943  * tables defining fifo_mode values.  define more if you like.
944  * for host side, make sure both halves of ep1 are set up.
945  */
946
947 /* mode 0 - fits in 2KB */
948 static struct fifo_cfg __initdata mode_0_cfg[] = {
949 { .hw_ep_num = 1, .style = FIFO_TX,   .maxpacket = 512, },
950 { .hw_ep_num = 1, .style = FIFO_RX,   .maxpacket = 512, },
951 { .hw_ep_num = 2, .style = FIFO_RXTX, .maxpacket = 512, },
952 { .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
953 { .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
954 };
955
956 /* mode 1 - fits in 4KB */
957 static struct fifo_cfg __initdata mode_1_cfg[] = {
958 { .hw_ep_num = 1, .style = FIFO_TX,   .maxpacket = 512, .mode = BUF_DOUBLE, },
959 { .hw_ep_num = 1, .style = FIFO_RX,   .maxpacket = 512, .mode = BUF_DOUBLE, },
960 { .hw_ep_num = 2, .style = FIFO_RXTX, .maxpacket = 512, .mode = BUF_DOUBLE, },
961 { .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
962 { .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
963 };
964
965 /* mode 2 - fits in 4KB */
966 static struct fifo_cfg __initdata mode_2_cfg[] = {
967 { .hw_ep_num = 1, .style = FIFO_TX,   .maxpacket = 512, },
968 { .hw_ep_num = 1, .style = FIFO_RX,   .maxpacket = 512, },
969 { .hw_ep_num = 2, .style = FIFO_TX,   .maxpacket = 512, },
970 { .hw_ep_num = 2, .style = FIFO_RX,   .maxpacket = 512, },
971 { .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
972 { .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
973 };
974
975 /* mode 3 - fits in 4KB */
976 static struct fifo_cfg __initdata mode_3_cfg[] = {
977 { .hw_ep_num = 1, .style = FIFO_TX,   .maxpacket = 512, .mode = BUF_DOUBLE, },
978 { .hw_ep_num = 1, .style = FIFO_RX,   .maxpacket = 512, .mode = BUF_DOUBLE, },
979 { .hw_ep_num = 2, .style = FIFO_TX,   .maxpacket = 512, },
980 { .hw_ep_num = 2, .style = FIFO_RX,   .maxpacket = 512, },
981 { .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
982 { .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
983 };
984
985 /* mode 4 - fits in 16KB */
986 static struct fifo_cfg __initdata mode_4_cfg[] = {
987 { .hw_ep_num =  1, .style = FIFO_TX,   .maxpacket = 512, },
988 { .hw_ep_num =  1, .style = FIFO_RX,   .maxpacket = 512, },
989 { .hw_ep_num =  2, .style = FIFO_TX,   .maxpacket = 512, },
990 { .hw_ep_num =  2, .style = FIFO_RX,   .maxpacket = 512, },
991 { .hw_ep_num =  3, .style = FIFO_TX,   .maxpacket = 512, },
992 { .hw_ep_num =  3, .style = FIFO_RX,   .maxpacket = 512, },
993 { .hw_ep_num =  4, .style = FIFO_TX,   .maxpacket = 512, },
994 { .hw_ep_num =  4, .style = FIFO_RX,   .maxpacket = 512, },
995 { .hw_ep_num =  5, .style = FIFO_TX,   .maxpacket = 512, },
996 { .hw_ep_num =  5, .style = FIFO_RX,   .maxpacket = 512, },
997 { .hw_ep_num =  6, .style = FIFO_TX,   .maxpacket = 512, },
998 { .hw_ep_num =  6, .style = FIFO_RX,   .maxpacket = 512, },
999 { .hw_ep_num =  7, .style = FIFO_TX,   .maxpacket = 512, },
1000 { .hw_ep_num =  7, .style = FIFO_RX,   .maxpacket = 512, },
1001 { .hw_ep_num =  8, .style = FIFO_TX,   .maxpacket = 512, },
1002 { .hw_ep_num =  8, .style = FIFO_RX,   .maxpacket = 512, },
1003 { .hw_ep_num =  9, .style = FIFO_TX,   .maxpacket = 512, },
1004 { .hw_ep_num =  9, .style = FIFO_RX,   .maxpacket = 512, },
1005 { .hw_ep_num = 10, .style = FIFO_TX,   .maxpacket = 512, },
1006 { .hw_ep_num = 10, .style = FIFO_RX,   .maxpacket = 512, },
1007 { .hw_ep_num = 11, .style = FIFO_TX,   .maxpacket = 512, },
1008 { .hw_ep_num = 11, .style = FIFO_RX,   .maxpacket = 512, },
1009 { .hw_ep_num = 12, .style = FIFO_TX,   .maxpacket = 512, },
1010 { .hw_ep_num = 12, .style = FIFO_RX,   .maxpacket = 512, },
1011 { .hw_ep_num = 13, .style = FIFO_TX,   .maxpacket = 512, },
1012 { .hw_ep_num = 13, .style = FIFO_RX,   .maxpacket = 512, },
1013 { .hw_ep_num = 14, .style = FIFO_RXTX, .maxpacket = 1024, },
1014 { .hw_ep_num = 15, .style = FIFO_RXTX, .maxpacket = 1024, },
1015 };
1016
1017
1018 /*
1019  * configure a fifo; for non-shared endpoints, this may be called
1020  * once for a tx fifo and once for an rx fifo.
1021  *
1022  * returns negative errno or offset for next fifo.
1023  */
1024 static int __init
1025 fifo_setup(struct musb *musb, struct musb_hw_ep  *hw_ep,
1026                 const struct fifo_cfg *cfg, u16 offset)
1027 {
1028         void __iomem    *mbase = musb->mregs;
1029         int     size = 0;
1030         u16     maxpacket = cfg->maxpacket;
1031         u16     c_off = offset >> 3;
1032         u8      c_size;
1033
1034         /* expect hw_ep has already been zero-initialized */
1035
1036         size = ffs(max(maxpacket, (u16) 8)) - 1;
1037         maxpacket = 1 << size;
1038
1039         c_size = size - 3;
1040         if (cfg->mode == BUF_DOUBLE) {
1041                 if ((offset + (maxpacket << 1)) > DYN_FIFO_SIZE)
1042                         return -EMSGSIZE;
1043                 c_size |= MUSB_FIFOSZ_DPB;
1044         } else {
1045                 if ((offset + maxpacket) > DYN_FIFO_SIZE)
1046                         return -EMSGSIZE;
1047         }
1048
1049         /* configure the FIFO */
1050         musb_writeb(mbase, MUSB_INDEX, hw_ep->epnum);
1051
1052 #ifdef CONFIG_USB_MUSB_HDRC_HCD
1053         /* EP0 reserved endpoint for control, bidirectional;
1054          * EP1 reserved for bulk, two unidirection halves.
1055          */
1056         if (hw_ep->epnum == 1)
1057                 musb->bulk_ep = hw_ep;
1058         /* REVISIT error check:  be sure ep0 can both rx and tx ... */
1059 #endif
1060         switch (cfg->style) {
1061         case FIFO_TX:
1062                 musb_writeb(mbase, MUSB_TXFIFOSZ, c_size);
1063                 musb_writew(mbase, MUSB_TXFIFOADD, c_off);
1064                 hw_ep->tx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1065                 hw_ep->max_packet_sz_tx = maxpacket;
1066                 break;
1067         case FIFO_RX:
1068                 musb_writeb(mbase, MUSB_RXFIFOSZ, c_size);
1069                 musb_writew(mbase, MUSB_RXFIFOADD, c_off);
1070                 hw_ep->rx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1071                 hw_ep->max_packet_sz_rx = maxpacket;
1072                 break;
1073         case FIFO_RXTX:
1074                 musb_writeb(mbase, MUSB_TXFIFOSZ, c_size);
1075                 musb_writew(mbase, MUSB_TXFIFOADD, c_off);
1076                 hw_ep->rx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1077                 hw_ep->max_packet_sz_rx = maxpacket;
1078
1079                 musb_writeb(mbase, MUSB_RXFIFOSZ, c_size);
1080                 musb_writew(mbase, MUSB_RXFIFOADD, c_off);
1081                 hw_ep->tx_double_buffered = hw_ep->rx_double_buffered;
1082                 hw_ep->max_packet_sz_tx = maxpacket;
1083
1084                 hw_ep->is_shared_fifo = TRUE;
1085                 break;
1086         }
1087
1088         /* NOTE rx and tx endpoint irqs aren't managed separately,
1089          * which happens to be ok
1090          */
1091         musb->epmask |= (1 << hw_ep->epnum);
1092
1093         return offset + (maxpacket << ((c_size & MUSB_FIFOSZ_DPB) ? 1 : 0));
1094 }
1095
1096 static struct fifo_cfg __initdata ep0_cfg = {
1097         .style = FIFO_RXTX, .maxpacket = 64,
1098 };
1099
1100 static int __init ep_config_from_table(struct musb *musb)
1101 {
1102         const struct fifo_cfg   *cfg;
1103         unsigned                i, n;
1104         int                     offset;
1105         struct musb_hw_ep       *hw_ep = musb->endpoints;
1106
1107         switch (fifo_mode) {
1108         default:
1109                 fifo_mode = 0;
1110                 /* FALLTHROUGH */
1111         case 0:
1112                 cfg = mode_0_cfg;
1113                 n = ARRAY_SIZE(mode_0_cfg);
1114                 break;
1115         case 1:
1116                 cfg = mode_1_cfg;
1117                 n = ARRAY_SIZE(mode_1_cfg);
1118                 break;
1119         case 2:
1120                 cfg = mode_2_cfg;
1121                 n = ARRAY_SIZE(mode_2_cfg);
1122                 break;
1123         case 3:
1124                 cfg = mode_3_cfg;
1125                 n = ARRAY_SIZE(mode_3_cfg);
1126                 break;
1127         case 4:
1128                 cfg = mode_4_cfg;
1129                 n = ARRAY_SIZE(mode_4_cfg);
1130                 break;
1131         }
1132
1133         printk(KERN_DEBUG "%s: setup fifo_mode %d\n",
1134                         musb_driver_name, fifo_mode);
1135
1136
1137         offset = fifo_setup(musb, hw_ep, &ep0_cfg, 0);
1138         // assert(offset > 0)
1139
1140         /* NOTE:  for RTL versions >= 1.400 EPINFO and RAMINFO would
1141          * be better than static MUSB_C_NUM_EPS and DYN_FIFO_SIZE...
1142          */
1143
1144         for (i = 0; i < n; i++) {
1145                 u8      epn = cfg->hw_ep_num;
1146
1147                 if (epn >= MUSB_C_NUM_EPS) {
1148                         pr_debug( "%s: invalid ep %d\n",
1149                                         musb_driver_name, epn);
1150                         continue;
1151                 }
1152                 offset = fifo_setup(musb, hw_ep + epn, cfg++, offset);
1153                 if (offset < 0) {
1154                         pr_debug( "%s: mem overrun, ep %d\n",
1155                                         musb_driver_name, epn);
1156                         return -EINVAL;
1157                 }
1158                 epn++;
1159                 musb->nr_endpoints = max(epn, musb->nr_endpoints);
1160         }
1161
1162         printk(KERN_DEBUG "%s: %d/%d max ep, %d/%d memory\n",
1163                         musb_driver_name,
1164                         n + 1, MUSB_C_NUM_EPS * 2 - 1,
1165                         offset, DYN_FIFO_SIZE);
1166
1167 #ifdef CONFIG_USB_MUSB_HDRC_HCD
1168         if (!musb->bulk_ep) {
1169                 pr_debug( "%s: missing bulk\n", musb_driver_name);
1170                 return -EINVAL;
1171         }
1172 #endif
1173
1174         return 0;
1175 }
1176
1177
1178 /*
1179  * ep_config_from_hw - when MUSB_C_DYNFIFO_DEF is false
1180  * @param musb the controller
1181  */
1182 static int __init ep_config_from_hw(struct musb *musb)
1183 {
1184         u8 epnum = 0, reg;
1185         struct musb_hw_ep *hw_ep;
1186         void *mbase = musb->mregs;
1187
1188         DBG(2, "<== static silicon ep config\n");
1189
1190         /* FIXME pick up ep0 maxpacket size */
1191
1192         for (epnum = 1; epnum < MUSB_C_NUM_EPS; epnum++) {
1193                 musb_ep_select(mbase, epnum);
1194                 hw_ep = musb->endpoints + epnum;
1195
1196                 /* read from core using indexed model */
1197                 reg = musb_readb(hw_ep->regs, 0x10 + MUSB_FIFOSIZE);
1198                 if (!reg) {
1199                         /* 0's returned when no more endpoints */
1200                         break;
1201                 }
1202                 musb->nr_endpoints++;
1203                 musb->epmask |= (1 << epnum);
1204
1205                 hw_ep->max_packet_sz_tx = 1 << (reg & 0x0f);
1206
1207                 /* shared TX/RX FIFO? */
1208                 if ((reg & 0xf0) == 0xf0) {
1209                         hw_ep->max_packet_sz_rx = hw_ep->max_packet_sz_tx;
1210                         hw_ep->is_shared_fifo = TRUE;
1211                         continue;
1212                 } else {
1213                         hw_ep->max_packet_sz_rx = 1 << ((reg & 0xf0) >> 4);
1214                         hw_ep->is_shared_fifo = FALSE;
1215                 }
1216
1217                 /* FIXME set up hw_ep->{rx,tx}_double_buffered */
1218
1219 #ifdef CONFIG_USB_MUSB_HDRC_HCD
1220                 /* pick an RX/TX endpoint for bulk */
1221                 if (hw_ep->max_packet_sz_tx < 512
1222                                 || hw_ep->max_packet_sz_rx < 512)
1223                         continue;
1224
1225                 /* REVISIT:  this algorithm is lazy, we should at least
1226                  * try to pick a double buffered endpoint.
1227                  */
1228                 if (musb->bulk_ep)
1229                         continue;
1230                 musb->bulk_ep = hw_ep;
1231 #endif
1232         }
1233
1234 #ifdef CONFIG_USB_MUSB_HDRC_HCD
1235         if (!musb->bulk_ep) {
1236                 pr_debug( "%s: missing bulk\n", musb_driver_name);
1237                 return -EINVAL;
1238         }
1239 #endif
1240
1241         return 0;
1242 }
1243
1244 enum { MUSB_CONTROLLER_MHDRC, MUSB_CONTROLLER_HDRC, };
1245
1246 /* Initialize MUSB (M)HDRC part of the USB hardware subsystem;
1247  * configure endpoints, or take their config from silicon
1248  */
1249 static int __init musb_core_init(u16 musb_type, struct musb *musb)
1250 {
1251 #ifdef MUSB_AHB_ID
1252         u32 data;
1253 #endif
1254         u8 reg;
1255         char *type;
1256         u16 hwvers, rev_major, rev_minor;
1257         char aInfo[78], aRevision[32], aDate[12];
1258         void __iomem    *mbase = musb->mregs;
1259         int             status = 0;
1260         int             i;
1261
1262         /* log core options (read using indexed model) */
1263         musb_ep_select(mbase, 0);
1264         reg = musb_readb(mbase, 0x10 + MUSB_CONFIGDATA);
1265
1266         strcpy(aInfo, (reg & MUSB_CONFIGDATA_UTMIDW) ? "UTMI-16" : "UTMI-8");
1267         if (reg & MUSB_CONFIGDATA_DYNFIFO) {
1268                 strcat(aInfo, ", dyn FIFOs");
1269         }
1270         if (reg & MUSB_CONFIGDATA_MPRXE) {
1271                 strcat(aInfo, ", bulk combine");
1272 #ifdef C_MP_RX
1273                 musb->bulk_combine = TRUE;
1274 #else
1275                 strcat(aInfo, " (X)");          /* no driver support */
1276 #endif
1277         }
1278         if (reg & MUSB_CONFIGDATA_MPTXE) {
1279                 strcat(aInfo, ", bulk split");
1280 #ifdef C_MP_TX
1281                 musb->bulk_split = TRUE;
1282 #else
1283                 strcat(aInfo, " (X)");          /* no driver support */
1284 #endif
1285         }
1286         if (reg & MUSB_CONFIGDATA_HBRXE) {
1287                 strcat(aInfo, ", HB-ISO Rx");
1288                 strcat(aInfo, " (X)");          /* no driver support */
1289         }
1290         if (reg & MUSB_CONFIGDATA_HBTXE) {
1291                 strcat(aInfo, ", HB-ISO Tx");
1292                 strcat(aInfo, " (X)");          /* no driver support */
1293         }
1294         if (reg & MUSB_CONFIGDATA_SOFTCONE) {
1295                 strcat(aInfo, ", SoftConn");
1296         }
1297
1298         printk(KERN_DEBUG "%s: ConfigData=0x%02x (%s)\n",
1299                         musb_driver_name, reg, aInfo);
1300
1301 #ifdef MUSB_AHB_ID
1302         data = musb_readl(mbase, 0x404);
1303         sprintf(aDate, "%04d-%02x-%02x", (data & 0xffff),
1304                 (data >> 16) & 0xff, (data >> 24) & 0xff);
1305         /* FIXME ID2 and ID3 are unused */
1306         data = musb_readl(mbase, 0x408);
1307         printk("ID2=%lx\n", (long unsigned)data);
1308         data = musb_readl(mbase, 0x40c);
1309         printk("ID3=%lx\n", (long unsigned)data);
1310         reg = musb_readb(mbase, 0x400);
1311         musb_type = ('M' == reg) ? MUSB_CONTROLLER_MHDRC : MUSB_CONTROLLER_HDRC;
1312 #else
1313         aDate[0] = 0;
1314 #endif
1315         if (MUSB_CONTROLLER_MHDRC == musb_type) {
1316                 musb->is_multipoint = 1;
1317                 type = "M";
1318         } else {
1319                 musb->is_multipoint = 0;
1320                 type = "";
1321 #ifdef CONFIG_USB_MUSB_HDRC_HCD
1322 #ifndef CONFIG_USB_OTG_BLACKLIST_HUB
1323                 printk(KERN_ERR
1324                         "%s: kernel must blacklist external hubs\n",
1325                         musb_driver_name);
1326 #endif
1327 #endif
1328         }
1329
1330         /* log release info */
1331         hwvers = musb_readw(mbase, MUSB_HWVERS);
1332         rev_major = (hwvers >> 10) & 0x1f;
1333         rev_minor = hwvers & 0x3ff;
1334         snprintf(aRevision, 32, "%d.%d%s", rev_major,
1335                 rev_minor, (hwvers & 0x8000) ? "RC" : "");
1336         printk(KERN_DEBUG "%s: %sHDRC RTL version %s %s\n",
1337                         musb_driver_name, type, aRevision, aDate);
1338
1339         /* configure ep0 */
1340         musb->endpoints[0].max_packet_sz_tx = MUSB_EP0_FIFOSIZE;
1341         musb->endpoints[0].max_packet_sz_rx = MUSB_EP0_FIFOSIZE;
1342
1343         /* discover endpoint configuration */
1344         musb->nr_endpoints = 1;
1345         musb->epmask = 1;
1346
1347         if (reg & MUSB_CONFIGDATA_DYNFIFO) {
1348                 if (can_dynfifo())
1349                         status = ep_config_from_table(musb);
1350                 else {
1351                         ERR("reconfigure software for Dynamic FIFOs\n");
1352                         status = -ENODEV;
1353                 }
1354         } else {
1355                 if (!can_dynfifo())
1356                         status = ep_config_from_hw(musb);
1357                 else {
1358                         ERR("reconfigure software for static FIFOs\n");
1359                         return -ENODEV;
1360                 }
1361         }
1362
1363         if (status < 0)
1364                 return status;
1365
1366         /* finish init, and print endpoint config */
1367         for (i = 0; i < musb->nr_endpoints; i++) {
1368                 struct musb_hw_ep       *hw_ep = musb->endpoints + i;
1369
1370                 hw_ep->fifo = MUSB_FIFO_OFFSET(i) + mbase;
1371 #ifdef CONFIG_USB_TUSB6010
1372                 hw_ep->fifo_async = musb->async + 0x400 + MUSB_FIFO_OFFSET(i);
1373                 hw_ep->fifo_sync = musb->sync + 0x400 + MUSB_FIFO_OFFSET(i);
1374                 hw_ep->fifo_sync_va =
1375                         musb->sync_va + 0x400 + MUSB_FIFO_OFFSET(i);
1376
1377                 if (i == 0)
1378                         hw_ep->conf = mbase - 0x400 + TUSB_EP0_CONF;
1379                 else
1380                         hw_ep->conf = mbase + 0x400 + (((i - 1) & 0xf) << 2);
1381 #endif
1382
1383                 hw_ep->regs = MUSB_EP_OFFSET(i, 0) + mbase;
1384 #ifdef CONFIG_USB_MUSB_HDRC_HCD
1385                 hw_ep->target_regs = MUSB_BUSCTL_OFFSET(i, 0) + mbase;
1386                 hw_ep->rx_reinit = 1;
1387                 hw_ep->tx_reinit = 1;
1388 #endif
1389
1390                 if (hw_ep->max_packet_sz_tx) {
1391                         printk(KERN_DEBUG
1392                                 "%s: hw_ep %d%s, %smax %d\n",
1393                                 musb_driver_name, i,
1394                                 hw_ep->is_shared_fifo ? "shared" : "tx",
1395                                 hw_ep->tx_double_buffered
1396                                         ? "doublebuffer, " : "",
1397                                 hw_ep->max_packet_sz_tx);
1398                 }
1399                 if (hw_ep->max_packet_sz_rx && !hw_ep->is_shared_fifo) {
1400                         printk(KERN_DEBUG
1401                                 "%s: hw_ep %d%s, %smax %d\n",
1402                                 musb_driver_name, i,
1403                                 "rx",
1404                                 hw_ep->rx_double_buffered
1405                                         ? "doublebuffer, " : "",
1406                                 hw_ep->max_packet_sz_rx);
1407                 }
1408                 if (!(hw_ep->max_packet_sz_tx || hw_ep->max_packet_sz_rx))
1409                         DBG(1, "hw_ep %d not configured\n", i);
1410         }
1411
1412         return 0;
1413 }
1414
1415 /*-------------------------------------------------------------------------*/
1416
1417 #if defined(CONFIG_ARCH_OMAP2430) || defined(CONFIG_ARCH_OMAP3430)
1418
1419 static irqreturn_t generic_interrupt(int irq, void *__hci)
1420 {
1421         unsigned long   flags;
1422         irqreturn_t     retval = IRQ_NONE;
1423         struct musb     *musb = __hci;
1424
1425         spin_lock_irqsave(&musb->lock, flags);
1426
1427         musb->int_usb = musb_readb(musb->mregs, MUSB_INTRUSB);
1428         musb->int_tx = musb_readw(musb->mregs, MUSB_INTRTX);
1429         musb->int_rx = musb_readw(musb->mregs, MUSB_INTRRX);
1430
1431         if (musb->int_usb || musb->int_tx || musb->int_rx)
1432                 retval = musb_interrupt(musb);
1433
1434         spin_unlock_irqrestore(&musb->lock, flags);
1435
1436         /* REVISIT we sometimes get spurious IRQs on g_ep0
1437          * not clear why...
1438          */
1439         if (retval != IRQ_HANDLED)
1440                 DBG(5, "spurious?\n");
1441
1442         return IRQ_HANDLED;
1443 }
1444
1445 #else
1446 #define generic_interrupt       NULL
1447 #endif
1448
1449 /*
1450  * handle all the irqs defined by the HDRC core. for now we expect:  other
1451  * irq sources (phy, dma, etc) will be handled first, musb->int_* values
1452  * will be assigned, and the irq will already have been acked.
1453  *
1454  * called in irq context with spinlock held, irqs blocked
1455  */
1456 irqreturn_t musb_interrupt(struct musb *musb)
1457 {
1458         irqreturn_t     retval = IRQ_NONE;
1459         u8              devctl, power;
1460         int             ep_num;
1461         u32             reg;
1462
1463         devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
1464         power = musb_readb(musb->mregs, MUSB_POWER);
1465
1466         DBG(4, "** IRQ %s usb%04x tx%04x rx%04x\n",
1467                 (devctl & MUSB_DEVCTL_HM) ? "host" : "peripheral",
1468                 musb->int_usb, musb->int_tx, musb->int_rx);
1469
1470         /* the core can interrupt us for multiple reasons; docs have
1471          * a generic interrupt flowchart to follow
1472          */
1473         if (musb->int_usb & STAGE0_MASK)
1474                 retval |= musb_stage0_irq(musb, musb->int_usb,
1475                                 devctl, power);
1476
1477         /* "stage 1" is handling endpoint irqs */
1478
1479         /* handle endpoint 0 first */
1480         if (musb->int_tx & 1) {
1481                 if (devctl & MUSB_DEVCTL_HM)
1482                         retval |= musb_h_ep0_irq(musb);
1483                 else
1484                         retval |= musb_g_ep0_irq(musb);
1485         }
1486
1487         /* RX on endpoints 1-15 */
1488         reg = musb->int_rx >> 1;
1489         ep_num = 1;
1490         while (reg) {
1491                 if (reg & 1) {
1492                         // musb_ep_select(musb->mregs, ep_num);
1493                         /* REVISIT just retval = ep->rx_irq(...) */
1494                         retval = IRQ_HANDLED;
1495                         if (devctl & MUSB_DEVCTL_HM) {
1496                                 if (is_host_capable())
1497                                         musb_host_rx(musb, ep_num);
1498                         } else {
1499                                 if (is_peripheral_capable())
1500                                         musb_g_rx(musb, ep_num);
1501                         }
1502                 }
1503
1504                 reg >>= 1;
1505                 ep_num++;
1506         }
1507
1508         /* TX on endpoints 1-15 */
1509         reg = musb->int_tx >> 1;
1510         ep_num = 1;
1511         while (reg) {
1512                 if (reg & 1) {
1513                         // musb_ep_select(musb->mregs, ep_num);
1514                         /* REVISIT just retval |= ep->tx_irq(...) */
1515                         retval = IRQ_HANDLED;
1516                         if (devctl & MUSB_DEVCTL_HM) {
1517                                 if (is_host_capable())
1518                                         musb_host_tx(musb, ep_num);
1519                         } else {
1520                                 if (is_peripheral_capable())
1521                                         musb_g_tx(musb, ep_num);
1522                         }
1523                 }
1524                 reg >>= 1;
1525                 ep_num++;
1526         }
1527
1528         /* finish handling "global" interrupts after handling fifos */
1529         if (musb->int_usb)
1530                 retval |= musb_stage2_irq(musb,
1531                                 musb->int_usb, devctl, power);
1532
1533         return retval;
1534 }
1535
1536
1537 #ifndef CONFIG_USB_INVENTRA_FIFO
1538 static int __initdata use_dma = 1;
1539
1540 /* "modprobe ... use_dma=0" etc */
1541 module_param(use_dma, bool, 0);
1542 MODULE_PARM_DESC(use_dma, "enable/disable use of DMA");
1543
1544 void musb_dma_completion(struct musb *musb, u8 epnum, u8 transmit)
1545 {
1546         u8      devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
1547
1548         /* called with controller lock already held */
1549
1550         if (!epnum) {
1551 #ifndef CONFIG_USB_TUSB_OMAP_DMA
1552                 if (!is_cppi_enabled()) {
1553                         /* endpoint 0 */
1554                         if (devctl & MUSB_DEVCTL_HM)
1555                                 musb_h_ep0_irq(musb);
1556                         else
1557                                 musb_g_ep0_irq(musb);
1558                 }
1559 #endif
1560         } else {
1561                 /* endpoints 1..15 */
1562                 if (transmit) {
1563                         if (devctl & MUSB_DEVCTL_HM) {
1564                                 if (is_host_capable())
1565                                         musb_host_tx(musb, epnum);
1566                         } else {
1567                                 if (is_peripheral_capable())
1568                                         musb_g_tx(musb, epnum);
1569                         }
1570                 } else {
1571                         /* receive */
1572                         if (devctl & MUSB_DEVCTL_HM) {
1573                                 if (is_host_capable())
1574                                         musb_host_rx(musb, epnum);
1575                         } else {
1576                                 if (is_peripheral_capable())
1577                                         musb_g_rx(musb, epnum);
1578                         }
1579                 }
1580         }
1581 }
1582
1583 #else
1584 #define use_dma                 0
1585 #endif
1586
1587 /*-------------------------------------------------------------------------*/
1588
1589 #ifdef CONFIG_SYSFS
1590
1591 static ssize_t
1592 musb_mode_show(struct device *dev, struct device_attribute *attr, char *buf)
1593 {
1594         struct musb *musb = dev_to_musb(dev);
1595         unsigned long flags;
1596         int ret = -EINVAL;
1597
1598         spin_lock_irqsave(&musb->lock, flags);
1599         ret = sprintf(buf, "%s\n", otg_state_string(musb));
1600         spin_unlock_irqrestore(&musb->lock, flags);
1601
1602         return ret;
1603 }
1604
1605 static ssize_t
1606 musb_mode_store(struct device *dev, struct device_attribute *attr,
1607                 const char *buf, size_t n)
1608 {
1609         struct musb     *musb = dev_to_musb(dev);
1610         unsigned long   flags;
1611
1612         spin_lock_irqsave(&musb->lock, flags);
1613         if (!strncmp(buf, "host", 4))
1614                 musb_platform_set_mode(musb, MUSB_HOST);
1615         if (!strncmp(buf, "peripheral", 10))
1616                 musb_platform_set_mode(musb, MUSB_PERIPHERAL);
1617         if (!strncmp(buf, "otg", 3))
1618                 musb_platform_set_mode(musb, MUSB_OTG);
1619         spin_unlock_irqrestore(&musb->lock, flags);
1620
1621         return n;
1622 }
1623 static DEVICE_ATTR(mode, 0644, musb_mode_show, musb_mode_store);
1624
1625 static ssize_t
1626 musb_cable_show(struct device *dev, struct device_attribute *attr, char *buf)
1627 {
1628         struct musb *musb = dev_to_musb(dev);
1629         char *v1= "", *v2 = "?";
1630         unsigned long flags;
1631         int vbus;
1632
1633         spin_lock_irqsave(&musb->lock, flags);
1634 #if defined(CONFIG_USB_TUSB6010) && !defined(CONFIG_USB_MUSB_OTG)
1635         /* REVISIT: connect-A != connect-B ... */
1636         vbus = musb_platform_get_vbus_status(musb);
1637         if (vbus)
1638                 v2 = "connected";
1639         else
1640                 v2 = "disconnected";
1641 #else
1642         /* NOTE: board-specific issues, like too-big capacitors keeping
1643          * VBUS high for a long time after power has been removed, can
1644          * cause temporary false indications of a connection.
1645          */
1646         vbus = musb_readb(musb->mregs, MUSB_DEVCTL);
1647         if (vbus & 0x10) {
1648                 /* REVISIT retest on real OTG hardware */
1649                 switch (musb->board_mode) {
1650                 case MUSB_HOST:
1651                         v2 = "A";
1652                         break;
1653                 case MUSB_PERIPHERAL:
1654                         v2 = "B";
1655                         break;
1656                 case MUSB_OTG:
1657                         v1 = "Mini-";
1658                         v2 = (vbus & MUSB_DEVCTL_BDEVICE) ? "B" : "A";
1659                         break;
1660                 }
1661         } else  /* VBUS level below A-Valid */
1662                 v2 = "disconnected";
1663 #endif
1664         musb_platform_try_idle(musb, 0);
1665         spin_unlock_irqrestore(&musb->lock, flags);
1666
1667         return sprintf(buf, "%s%s\n", v1, v2);
1668 }
1669 static DEVICE_ATTR(cable, S_IRUGO, musb_cable_show, NULL);
1670
1671 static ssize_t
1672 musb_vbus_store(struct device *dev, struct device_attribute *attr,
1673                 const char *buf, size_t n)
1674 {
1675         struct musb     *musb = dev_to_musb(dev);
1676         unsigned long   flags;
1677         unsigned long   val;
1678
1679         spin_lock_irqsave(&musb->lock, flags);
1680         if (sscanf(buf, "%lu", &val) < 1) {
1681                 printk(KERN_ERR "Invalid VBUS timeout ms value\n");
1682                 return -EINVAL;
1683         }
1684         musb->a_wait_bcon = val;
1685         if (musb->xceiv.state == OTG_STATE_A_WAIT_BCON)
1686                 musb->is_active = 0;
1687         musb_platform_try_idle(musb, jiffies + msecs_to_jiffies(val));
1688         spin_unlock_irqrestore(&musb->lock, flags);
1689
1690         return n;
1691 }
1692
1693 static ssize_t
1694 musb_vbus_show(struct device *dev, struct device_attribute *attr, char *buf)
1695 {
1696         struct musb     *musb = dev_to_musb(dev);
1697         unsigned long   flags;
1698         unsigned long   val;
1699
1700         spin_lock_irqsave(&musb->lock, flags);
1701         val = musb->a_wait_bcon;
1702         spin_unlock_irqrestore(&musb->lock, flags);
1703
1704         return sprintf(buf, "%lu\n", val);
1705 }
1706 static DEVICE_ATTR(vbus, 0644, musb_vbus_show, musb_vbus_store);
1707
1708 static ssize_t
1709 musb_srp_store(struct device *dev, struct device_attribute *attr,
1710                 const char *buf, size_t n)
1711 {
1712         struct musb     *musb=dev_to_musb(dev);
1713         unsigned short  srp;
1714
1715         if (sscanf(buf, "%hu", &srp) != 1
1716                         || (srp != 1)) {
1717                 printk (KERN_ERR "SRP: Value must be 1\n");
1718                 return -EINVAL;
1719         }
1720
1721         if (srp == 1)
1722                 musb_g_wakeup(musb);
1723
1724         return n;
1725 }
1726 static DEVICE_ATTR(srp, 0644, NULL, musb_srp_store);
1727 #endif
1728
1729 /* Only used to provide cable state change events */
1730 static void musb_irq_work(struct work_struct *data)
1731 {
1732         struct musb *musb = container_of(data, struct musb, irq_work);
1733
1734         sysfs_notify(&musb->controller->kobj, NULL, "cable");
1735 }
1736
1737 /* --------------------------------------------------------------------------
1738  * Init support
1739  */
1740
1741 static struct musb *__init
1742 allocate_instance(struct device *dev, void __iomem *mbase)
1743 {
1744         struct musb             *musb;
1745         struct musb_hw_ep       *ep;
1746         int                     epnum;
1747 #ifdef CONFIG_USB_MUSB_HDRC_HCD
1748         struct usb_hcd  *hcd;
1749
1750         hcd = usb_create_hcd(&musb_hc_driver, dev, dev->bus_id);
1751         if (!hcd)
1752                 return NULL;
1753         /* usbcore sets dev->driver_data to hcd, and sometimes uses that... */
1754
1755         musb = hcd_to_musb(hcd);
1756         INIT_LIST_HEAD(&musb->control);
1757         INIT_LIST_HEAD(&musb->in_bulk);
1758         INIT_LIST_HEAD(&musb->out_bulk);
1759
1760         hcd->uses_new_polling = 1;
1761
1762         musb->vbuserr_retry = VBUSERR_RETRY_COUNT;
1763 #else
1764         musb = kzalloc(sizeof *musb, GFP_KERNEL);
1765         if (!musb)
1766                 return NULL;
1767         dev_set_drvdata(dev, musb);
1768
1769 #endif
1770
1771         musb->mregs = mbase;
1772         musb->ctrl_base = mbase;
1773         musb->nIrq = -ENODEV;
1774         for (epnum = 0, ep = musb->endpoints;
1775                         epnum < MUSB_C_NUM_EPS;
1776                         epnum++, ep++) {
1777
1778                 ep->musb = musb;
1779                 ep->epnum = epnum;
1780         }
1781
1782         musb->controller = dev;
1783         return musb;
1784 }
1785
1786 static void musb_free(struct musb *musb)
1787 {
1788         /* this has multiple entry modes. it handles fault cleanup after
1789          * probe(), where things may be partially set up, as well as rmmod
1790          * cleanup after everything's been de-activated.
1791          */
1792
1793 #ifdef CONFIG_SYSFS
1794         device_remove_file(musb->controller, &dev_attr_mode);
1795         device_remove_file(musb->controller, &dev_attr_cable);
1796         device_remove_file(musb->controller, &dev_attr_vbus);
1797 #ifdef CONFIG_USB_MUSB_OTG
1798         device_remove_file(musb->controller, &dev_attr_srp);
1799 #endif
1800 #endif
1801
1802 #ifdef CONFIG_USB_GADGET_MUSB_HDRC
1803         musb_gadget_cleanup(musb);
1804 #endif
1805
1806         if (musb->nIrq >= 0) {
1807                 disable_irq_wake(musb->nIrq);
1808                 free_irq(musb->nIrq, musb);
1809         }
1810         if (is_dma_capable() && musb->dma_controller) {
1811                 struct dma_controller   *c = musb->dma_controller;
1812
1813                 (void) c->stop(c->private_data);
1814                 dma_controller_destroy(c);
1815         }
1816
1817         musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
1818         musb_platform_exit(musb);
1819         musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
1820
1821         if (musb->clock) {
1822                 clk_disable(musb->clock);
1823                 clk_put(musb->clock);
1824         }
1825
1826 #ifdef CONFIG_USB_MUSB_HDRC_HCD
1827         usb_put_hcd(musb_to_hcd(musb));
1828 #else
1829         kfree(musb);
1830 #endif
1831 }
1832
1833 /*
1834  * Perform generic per-controller initialization.
1835  *
1836  * @pDevice: the controller (already clocked, etc)
1837  * @nIrq: irq
1838  * @mregs: virtual address of controller registers,
1839  *      not yet corrected for platform-specific offsets
1840  */
1841 static int __init
1842 musb_init_controller(struct device *dev, int nIrq, void __iomem *ctrl)
1843 {
1844         int                     status;
1845         struct musb             *musb;
1846         struct musb_hdrc_platform_data *plat = dev->platform_data;
1847
1848         /* The driver might handle more features than the board; OK.
1849          * Fail when the board needs a feature that's not enabled.
1850          */
1851         if (!plat) {
1852                 dev_dbg(dev, "no platform_data?\n");
1853                 return -ENODEV;
1854         }
1855         switch (plat->mode) {
1856         case MUSB_HOST:
1857 #ifdef CONFIG_USB_MUSB_HDRC_HCD
1858                 break;
1859 #else
1860                 goto bad_config;
1861 #endif
1862         case MUSB_PERIPHERAL:
1863 #ifdef CONFIG_USB_GADGET_MUSB_HDRC
1864                 break;
1865 #else
1866                 goto bad_config;
1867 #endif
1868         case MUSB_OTG:
1869 #ifdef CONFIG_USB_MUSB_OTG
1870                 break;
1871 #else
1872         bad_config:
1873 #endif
1874         default:
1875                 dev_err(dev, "incompatible Kconfig role setting\n");
1876                 return -EINVAL;
1877         }
1878
1879         /* allocate */
1880         musb = allocate_instance(dev, ctrl);
1881         if (!musb)
1882                 return -ENOMEM;
1883
1884         spin_lock_init(&musb->lock);
1885         musb->board_mode = plat->mode;
1886         musb->board_set_power = plat->set_power;
1887         musb->set_clock = plat->set_clock;
1888         musb->min_power = plat->min_power;
1889
1890         /* Clock usage is chip-specific ... functional clock (DaVinci,
1891          * OMAP2430), or PHY ref (some TUSB6010 boards).  All this core
1892          * code does is make sure a clock handle is available; platform
1893          * code manages it during start/stop and suspend/resume.
1894          */
1895         if (plat->clock) {
1896                 musb->clock = clk_get(dev, plat->clock);
1897                 if (IS_ERR(musb->clock)) {
1898                         status = PTR_ERR(musb->clock);
1899                         musb->clock = NULL;
1900                         goto fail;
1901                 }
1902         }
1903
1904         /* assume vbus is off */
1905
1906         /* platform adjusts musb->mregs and musb->isr if needed,
1907          * and activates clocks
1908          */
1909         musb->isr = generic_interrupt;
1910         status = musb_platform_init(musb);
1911
1912         if (status < 0)
1913                 goto fail;
1914         if (!musb->isr) {
1915                 status = -ENODEV;
1916                 goto fail2;
1917         }
1918
1919 #ifndef CONFIG_USB_INVENTRA_FIFO
1920         if (use_dma && dev->dma_mask) {
1921                 struct dma_controller   *c;
1922
1923                 c = dma_controller_create(musb, musb->mregs);
1924                 musb->dma_controller = c;
1925                 if (c)
1926                         (void) c->start(c->private_data);
1927         }
1928 #endif
1929         /* ideally this would be abstracted in platform setup */
1930         if (!is_dma_capable() || !musb->dma_controller)
1931                 dev->dma_mask = NULL;
1932
1933         /* be sure interrupts are disabled before connecting ISR */
1934         musb_platform_disable(musb);
1935         musb_generic_disable(musb);
1936
1937         /* setup musb parts of the core (especially endpoints) */
1938         status = musb_core_init(plat->multipoint
1939                         ? MUSB_CONTROLLER_MHDRC
1940                         : MUSB_CONTROLLER_HDRC, musb);
1941         if (status < 0)
1942                 goto fail2;
1943
1944         /* attach to the IRQ */
1945         if (request_irq (nIrq, musb->isr, 0, dev->bus_id, musb)) {
1946                 dev_err(dev, "request_irq %d failed!\n", nIrq);
1947                 status = -ENODEV;
1948                 goto fail2;
1949         }
1950         musb->nIrq = nIrq;
1951 // FIXME this handles wakeup irqs wrong
1952         if (enable_irq_wake(nIrq) == 0)
1953                 device_init_wakeup(dev, 1);
1954
1955         pr_info("%s: USB %s mode controller at %p using %s, IRQ %d\n",
1956                         musb_driver_name,
1957                         ({char *s;
1958                         switch (musb->board_mode) {
1959                         case MUSB_HOST:         s = "Host"; break;
1960                         case MUSB_PERIPHERAL:   s = "Peripheral"; break;
1961                         default:                s = "OTG"; break;
1962                         }; s; }),
1963                         ctrl,
1964                         (is_dma_capable() && musb->dma_controller)
1965                                 ? "DMA" : "PIO",
1966                         musb->nIrq);
1967
1968 #ifdef CONFIG_USB_MUSB_HDRC_HCD
1969         /* host side needs more setup, except for no-host modes */
1970         if (musb->board_mode != MUSB_PERIPHERAL) {
1971                 struct usb_hcd  *hcd = musb_to_hcd(musb);
1972
1973                 if (musb->board_mode == MUSB_OTG)
1974                         hcd->self.otg_port = 1;
1975                 musb->xceiv.host = &hcd->self;
1976                 hcd->power_budget = 2 * (plat->power ? : 250);
1977         }
1978 #endif                          /* CONFIG_USB_MUSB_HDRC_HCD */
1979
1980         /* For the host-only role, we can activate right away.
1981          * (We expect the ID pin to be forcibly grounded!!)
1982          * Otherwise, wait till the gadget driver hooks up.
1983          */
1984         if (!is_otg_enabled(musb) && is_host_enabled(musb)) {
1985                 MUSB_HST_MODE(musb);
1986                 musb->xceiv.default_a = 1;
1987                 musb->xceiv.state = OTG_STATE_A_IDLE;
1988
1989                 status = usb_add_hcd(musb_to_hcd(musb), -1, 0);
1990
1991                 DBG(1, "%s mode, status %d, devctl %02x %c\n",
1992                         "HOST", status,
1993                         musb_readb(musb->mregs, MUSB_DEVCTL),
1994                         (musb_readb(musb->mregs, MUSB_DEVCTL)
1995                                         & MUSB_DEVCTL_BDEVICE
1996                                 ? 'B' : 'A'));
1997
1998         } else /* peripheral is enabled */ {
1999                 MUSB_DEV_MODE(musb);
2000                 musb->xceiv.default_a = 0;
2001                 musb->xceiv.state = OTG_STATE_B_IDLE;
2002
2003                 status = musb_gadget_setup(musb);
2004
2005                 DBG(1, "%s mode, status %d, dev%02x\n",
2006                         is_otg_enabled(musb) ? "OTG" : "PERIPHERAL",
2007                         status,
2008                         musb_readb(musb->mregs, MUSB_DEVCTL));
2009
2010         }
2011
2012         if (status == 0)
2013                 musb_debug_create("driver/musb_hdrc", musb);
2014         else {
2015 fail:
2016                 if (musb->clock)
2017                         clk_put(musb->clock);
2018                 device_init_wakeup(dev, 0);
2019                 musb_free(musb);
2020                 return status;
2021         }
2022
2023         INIT_WORK(&musb->irq_work, musb_irq_work);
2024
2025 #ifdef CONFIG_SYSFS
2026         status = device_create_file(dev, &dev_attr_mode);
2027         status = device_create_file(dev, &dev_attr_cable);
2028         status = device_create_file(dev, &dev_attr_vbus);
2029 #ifdef CONFIG_USB_MUSB_OTG
2030         status = device_create_file(dev, &dev_attr_srp);
2031 #endif /* CONFIG_USB_MUSB_OTG */
2032         status = 0;
2033 #endif
2034
2035         return status;
2036
2037 fail2:
2038         musb_platform_exit(musb);
2039         goto fail;
2040 }
2041
2042 /*-------------------------------------------------------------------------*/
2043
2044 /* all implementations (PCI bridge to FPGA, VLYNQ, etc) should just
2045  * bridge to a platform device; this driver then suffices.
2046  */
2047
2048 #ifndef CONFIG_USB_INVENTRA_FIFO
2049 static u64      *orig_dma_mask;
2050 #endif
2051
2052 static int __init musb_probe(struct platform_device *pdev)
2053 {
2054         struct device   *dev = &pdev->dev;
2055         int             irq = platform_get_irq(pdev, 0);
2056         struct resource *iomem;
2057         void __iomem    *base;
2058
2059         iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2060         if (!iomem || irq == 0)
2061                 return -ENODEV;
2062
2063         base = ioremap(iomem->start, iomem->end - iomem->start + 1);
2064         if (!base) {
2065                 dev_err(dev, "ioremap failed\n");
2066                 return -ENOMEM;
2067         }
2068
2069 #ifndef CONFIG_USB_INVENTRA_FIFO
2070         /* clobbered by use_dma=n */
2071         orig_dma_mask = dev->dma_mask;
2072 #endif
2073         return musb_init_controller(dev, irq, base);
2074 }
2075
2076 static int __devexit musb_remove(struct platform_device *pdev)
2077 {
2078         struct musb     *musb = dev_to_musb(&pdev->dev);
2079         void __iomem    *ctrl_base = musb->ctrl_base;
2080
2081         /* this gets called on rmmod.
2082          *  - Host mode: host may still be active
2083          *  - Peripheral mode: peripheral is deactivated (or never-activated)
2084          *  - OTG mode: both roles are deactivated (or never-activated)
2085          */
2086         musb_shutdown(pdev);
2087         musb_debug_delete("driver/musb_hdrc", musb);
2088 #ifdef CONFIG_USB_MUSB_HDRC_HCD
2089         if (musb->board_mode == MUSB_HOST)
2090                 usb_remove_hcd(musb_to_hcd(musb));
2091 #endif
2092         musb_free(musb);
2093         iounmap(ctrl_base);
2094         device_init_wakeup(&pdev->dev, 0);
2095 #ifndef CONFIG_USB_INVENTRA_FIFO
2096         pdev->dev.dma_mask = orig_dma_mask;
2097 #endif
2098         return 0;
2099 }
2100
2101 #ifdef  CONFIG_PM
2102
2103 static int musb_suspend(struct platform_device *pdev, pm_message_t message)
2104 {
2105         unsigned long   flags;
2106         struct musb     *musb = dev_to_musb(&pdev->dev);
2107
2108         if (!musb->clock)
2109                 return 0;
2110
2111         spin_lock_irqsave(&musb->lock, flags);
2112
2113         if (is_peripheral_active(musb)) {
2114                 /* FIXME force disconnect unless we know USB will wake
2115                  * the system up quickly enough to respond ...
2116                  */
2117         } else if (is_host_active(musb)) {
2118                 /* we know all the children are suspended; sometimes
2119                  * they will even be wakeup-enabled.
2120                  */
2121         }
2122
2123         if (musb->set_clock)
2124                 musb->set_clock(musb->clock, 0);
2125         else
2126                 clk_disable(musb->clock);
2127         spin_unlock_irqrestore(&musb->lock, flags);
2128         return 0;
2129 }
2130
2131 static int musb_resume(struct platform_device *pdev)
2132 {
2133         unsigned long   flags;
2134         struct musb     *musb = dev_to_musb(&pdev->dev);
2135
2136         if (!musb->clock)
2137                 return 0;
2138
2139         spin_lock_irqsave(&musb->lock, flags);
2140
2141         if (musb->set_clock)
2142                 musb->set_clock(musb->clock, 1);
2143         else
2144                 clk_enable(musb->clock);
2145
2146         /* for static cmos like DaVinci, register values were preserved
2147          * unless for some reason the whole soc powered down and we're
2148          * not treating that as a whole-system restart (e.g. swsusp)
2149          */
2150         spin_unlock_irqrestore(&musb->lock, flags);
2151         return 0;
2152 }
2153
2154 #else
2155 #define musb_suspend    NULL
2156 #define musb_resume     NULL
2157 #endif
2158
2159 static struct platform_driver musb_driver = {
2160         .driver = {
2161                 .name           = (char *)musb_driver_name,
2162                 .bus            = &platform_bus_type,
2163                 .owner          = THIS_MODULE,
2164         },
2165         .remove         = __devexit_p(musb_remove),
2166         .shutdown       = musb_shutdown,
2167         .suspend        = musb_suspend,
2168         .resume         = musb_resume,
2169 };
2170
2171 /*-------------------------------------------------------------------------*/
2172
2173 static int __init musb_init(void)
2174 {
2175 #ifdef CONFIG_USB_MUSB_HDRC_HCD
2176         if (usb_disabled())
2177                 return 0;
2178 #endif
2179
2180         pr_info("%s: version " MUSB_VERSION ", "
2181 #ifdef CONFIG_USB_INVENTRA_FIFO
2182                 "pio"
2183 #elif defined(CONFIG_USB_TI_CPPI_DMA)
2184                 "cppi-dma"
2185 #elif defined(CONFIG_USB_INVENTRA_DMA)
2186                 "musb-dma"
2187 #elif defined(CONFIG_USB_TUSB_OMAP_DMA)
2188                 "tusb-omap-dma"
2189 #else
2190                 "?dma?"
2191 #endif
2192                 ", "
2193 #ifdef CONFIG_USB_MUSB_OTG
2194                 "otg (peripheral+host)"
2195 #elif defined(CONFIG_USB_GADGET_MUSB_HDRC)
2196                 "peripheral"
2197 #elif defined(CONFIG_USB_MUSB_HDRC_HCD)
2198                 "host"
2199 #endif
2200                 ", debug=%d\n",
2201                 musb_driver_name, debug);
2202         return platform_driver_probe(&musb_driver, musb_probe);
2203 }
2204
2205 /* make us init after usbcore and before usb
2206  * gadget and host-side drivers start to register
2207  */
2208 subsys_initcall(musb_init);
2209
2210 static void __exit musb_cleanup(void)
2211 {
2212         platform_driver_unregister(&musb_driver);
2213 }
2214 module_exit(musb_cleanup);