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