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