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