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