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