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