blob: 27dadc0d9114bf14d6034906153d7f1df60be4a5 [file] [log] [blame]
Felipe Balbi550a7372008-07-24 12:27:36 +03001/*
2 * MUSB OTG driver core code
3 *
4 * Copyright 2005 Mentor Graphics Corporation
5 * Copyright (C) 2005-2006 by Texas Instruments
6 * Copyright (C) 2006-2007 Nokia Corporation
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 *
22 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
23 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
25 * NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
28 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
29 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 *
33 */
34
35/*
36 * Inventra (Multipoint) Dual-Role Controller Driver for Linux.
37 *
38 * This consists of a Host Controller Driver (HCD) and a peripheral
39 * controller driver implementing the "Gadget" API; OTG support is
40 * in the works. These are normal Linux-USB controller drivers which
41 * use IRQs and have no dedicated thread.
42 *
43 * This version of the driver has only been used with products from
44 * Texas Instruments. Those products integrate the Inventra logic
45 * with other DMA, IRQ, and bus modules, as well as other logic that
46 * needs to be reflected in this driver.
47 *
48 *
49 * NOTE: the original Mentor code here was pretty much a collection
50 * of mechanisms that don't seem to have been fully integrated/working
51 * for *any* Linux kernel version. This version aims at Linux 2.6.now,
52 * Key open issues include:
53 *
54 * - Lack of host-side transaction scheduling, for all transfer types.
55 * The hardware doesn't do it; instead, software must.
56 *
57 * This is not an issue for OTG devices that don't support external
58 * hubs, but for more "normal" USB hosts it's a user issue that the
59 * "multipoint" support doesn't scale in the expected ways. That
60 * includes DaVinci EVM in a common non-OTG mode.
61 *
62 * * Control and bulk use dedicated endpoints, and there's as
63 * yet no mechanism to either (a) reclaim the hardware when
64 * peripherals are NAKing, which gets complicated with bulk
65 * endpoints, or (b) use more than a single bulk endpoint in
66 * each direction.
67 *
68 * RESULT: one device may be perceived as blocking another one.
69 *
70 * * Interrupt and isochronous will dynamically allocate endpoint
71 * hardware, but (a) there's no record keeping for bandwidth;
72 * (b) in the common case that few endpoints are available, there
73 * is no mechanism to reuse endpoints to talk to multiple devices.
74 *
75 * RESULT: At one extreme, bandwidth can be overcommitted in
76 * some hardware configurations, no faults will be reported.
77 * At the other extreme, the bandwidth capabilities which do
78 * exist tend to be severely undercommitted. You can't yet hook
79 * up both a keyboard and a mouse to an external USB hub.
80 */
81
82/*
83 * This gets many kinds of configuration information:
84 * - Kconfig for everything user-configurable
Felipe Balbi550a7372008-07-24 12:27:36 +030085 * - platform_device for addressing, irq, and platform_data
Rahul Bedarkar5ae477b2014-01-02 19:27:47 +053086 * - platform_data is mostly for board-specific information
David Brownellc767c1c2008-09-11 11:53:23 +030087 * (plus recentrly, SOC or family details)
Felipe Balbi550a7372008-07-24 12:27:36 +030088 *
89 * Most of the conditional compilation will (someday) vanish.
90 */
91
92#include <linux/module.h>
93#include <linux/kernel.h>
94#include <linux/sched.h>
95#include <linux/slab.h>
Felipe Balbi550a7372008-07-24 12:27:36 +030096#include <linux/list.h>
97#include <linux/kobject.h>
Mike Frysinger93039612011-05-25 08:13:24 -040098#include <linux/prefetch.h>
Felipe Balbi550a7372008-07-24 12:27:36 +030099#include <linux/platform_device.h>
100#include <linux/io.h>
Ajay Kumar Gupta8d2421e2012-08-31 11:09:50 +0000101#include <linux/dma-mapping.h>
Felipe Balbi309be232015-02-13 14:46:27 -0600102#include <linux/usb.h>
Felipe Balbi550a7372008-07-24 12:27:36 +0300103
Felipe Balbi550a7372008-07-24 12:27:36 +0300104#include "musb_core.h"
Bin Liuc74173f2016-06-30 12:12:24 -0500105#include "musb_trace.h"
Felipe Balbi550a7372008-07-24 12:27:36 +0300106
David Brownellf7f9d632009-03-31 12:32:12 -0700107#define TA_WAIT_BCON(m) max_t(int, (m)->a_wait_bcon, OTG_TIME_A_WAIT_BCON)
Felipe Balbi550a7372008-07-24 12:27:36 +0300108
109
Felipe Balbi550a7372008-07-24 12:27:36 +0300110#define DRIVER_AUTHOR "Mentor Graphics, Texas Instruments, Nokia"
111#define DRIVER_DESC "Inventra Dual-Role USB Controller Driver"
112
Felipe Balbie8164f62008-08-10 21:22:35 +0300113#define MUSB_VERSION "6.0"
Felipe Balbi550a7372008-07-24 12:27:36 +0300114
115#define DRIVER_INFO DRIVER_DESC ", v" MUSB_VERSION
116
Felipe Balbi05ac10d2010-12-02 08:49:26 +0200117#define MUSB_DRIVER_NAME "musb-hdrc"
Felipe Balbi550a7372008-07-24 12:27:36 +0300118const char musb_driver_name[] = MUSB_DRIVER_NAME;
119
120MODULE_DESCRIPTION(DRIVER_INFO);
121MODULE_AUTHOR(DRIVER_AUTHOR);
122MODULE_LICENSE("GPL");
123MODULE_ALIAS("platform:" MUSB_DRIVER_NAME);
124
125
126/*-------------------------------------------------------------------------*/
127
128static inline struct musb *dev_to_musb(struct device *dev)
129{
Felipe Balbi550a7372008-07-24 12:27:36 +0300130 return dev_get_drvdata(dev);
Felipe Balbi550a7372008-07-24 12:27:36 +0300131}
132
133/*-------------------------------------------------------------------------*/
134
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200135#ifndef CONFIG_BLACKFIN
Uwe Kleine-König705e63d2015-10-23 09:53:50 +0200136static int musb_ulpi_read(struct usb_phy *phy, u32 reg)
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200137{
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200138 void __iomem *addr = phy->io_priv;
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200139 int i = 0;
140 u8 r;
141 u8 power;
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200142 int ret;
143
144 pm_runtime_get_sync(phy->io_dev);
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200145
146 /* Make sure the transceiver is not in low power mode */
147 power = musb_readb(addr, MUSB_POWER);
148 power &= ~MUSB_POWER_SUSPENDM;
149 musb_writeb(addr, MUSB_POWER, power);
150
151 /* REVISIT: musbhdrc_ulpi_an.pdf recommends setting the
152 * ULPICarKitControlDisableUTMI after clearing POWER_SUSPENDM.
153 */
154
Uwe Kleine-König705e63d2015-10-23 09:53:50 +0200155 musb_writeb(addr, MUSB_ULPI_REG_ADDR, (u8)reg);
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200156 musb_writeb(addr, MUSB_ULPI_REG_CONTROL,
157 MUSB_ULPI_REG_REQ | MUSB_ULPI_RDN_WR);
158
159 while (!(musb_readb(addr, MUSB_ULPI_REG_CONTROL)
160 & MUSB_ULPI_REG_CMPLT)) {
161 i++;
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200162 if (i == 10000) {
163 ret = -ETIMEDOUT;
164 goto out;
165 }
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200166
167 }
168 r = musb_readb(addr, MUSB_ULPI_REG_CONTROL);
169 r &= ~MUSB_ULPI_REG_CMPLT;
170 musb_writeb(addr, MUSB_ULPI_REG_CONTROL, r);
171
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200172 ret = musb_readb(addr, MUSB_ULPI_REG_DATA);
173
174out:
175 pm_runtime_put(phy->io_dev);
176
177 return ret;
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200178}
179
Uwe Kleine-König705e63d2015-10-23 09:53:50 +0200180static int musb_ulpi_write(struct usb_phy *phy, u32 val, u32 reg)
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200181{
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200182 void __iomem *addr = phy->io_priv;
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200183 int i = 0;
184 u8 r = 0;
185 u8 power;
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200186 int ret = 0;
187
188 pm_runtime_get_sync(phy->io_dev);
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200189
190 /* Make sure the transceiver is not in low power mode */
191 power = musb_readb(addr, MUSB_POWER);
192 power &= ~MUSB_POWER_SUSPENDM;
193 musb_writeb(addr, MUSB_POWER, power);
194
Uwe Kleine-König705e63d2015-10-23 09:53:50 +0200195 musb_writeb(addr, MUSB_ULPI_REG_ADDR, (u8)reg);
196 musb_writeb(addr, MUSB_ULPI_REG_DATA, (u8)val);
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200197 musb_writeb(addr, MUSB_ULPI_REG_CONTROL, MUSB_ULPI_REG_REQ);
198
199 while (!(musb_readb(addr, MUSB_ULPI_REG_CONTROL)
200 & MUSB_ULPI_REG_CMPLT)) {
201 i++;
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200202 if (i == 10000) {
203 ret = -ETIMEDOUT;
204 goto out;
205 }
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200206 }
207
208 r = musb_readb(addr, MUSB_ULPI_REG_CONTROL);
209 r &= ~MUSB_ULPI_REG_CMPLT;
210 musb_writeb(addr, MUSB_ULPI_REG_CONTROL, r);
211
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200212out:
213 pm_runtime_put(phy->io_dev);
214
215 return ret;
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200216}
217#else
Mike Frysingerf2263db2010-06-24 23:07:08 +0530218#define musb_ulpi_read NULL
219#define musb_ulpi_write NULL
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200220#endif
221
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200222static struct usb_phy_io_ops musb_ulpi_access = {
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200223 .read = musb_ulpi_read,
224 .write = musb_ulpi_write,
225};
226
227/*-------------------------------------------------------------------------*/
228
Tony Lindgren1b40fc52014-11-24 11:05:02 -0800229static u32 musb_default_fifo_offset(u8 epnum)
230{
231 return 0x20 + (epnum * 4);
232}
233
Tony Lindgrend026e9c2014-11-24 11:05:03 -0800234/* "flat" mapping: each endpoint has its own i/o address */
235static void musb_flat_ep_select(void __iomem *mbase, u8 epnum)
236{
237}
238
239static u32 musb_flat_ep_offset(u8 epnum, u16 offset)
240{
241 return 0x100 + (0x10 * epnum) + offset;
242}
243
244/* "indexed" mapping: INDEX register controls register bank select */
245static void musb_indexed_ep_select(void __iomem *mbase, u8 epnum)
246{
247 musb_writeb(mbase, MUSB_INDEX, epnum);
248}
249
250static u32 musb_indexed_ep_offset(u8 epnum, u16 offset)
251{
252 return 0x10 + offset;
253}
254
Hans de Goede6cc2af62015-03-20 20:11:12 +0100255static u32 musb_default_busctl_offset(u8 epnum, u16 offset)
256{
257 return 0x80 + (0x08 * epnum) + offset;
258}
259
Tony Lindgren1b40fc52014-11-24 11:05:02 -0800260static u8 musb_default_readb(const void __iomem *addr, unsigned offset)
261{
Bin Liuc74173f2016-06-30 12:12:24 -0500262 u8 data = __raw_readb(addr + offset);
263
264 trace_musb_readb(__builtin_return_address(0), addr, offset, data);
265 return data;
Tony Lindgren1b40fc52014-11-24 11:05:02 -0800266}
267
268static void musb_default_writeb(void __iomem *addr, unsigned offset, u8 data)
269{
Bin Liuc74173f2016-06-30 12:12:24 -0500270 trace_musb_writeb(__builtin_return_address(0), addr, offset, data);
Tony Lindgren1b40fc52014-11-24 11:05:02 -0800271 __raw_writeb(data, addr + offset);
272}
273
274static u16 musb_default_readw(const void __iomem *addr, unsigned offset)
275{
Bin Liuc74173f2016-06-30 12:12:24 -0500276 u16 data = __raw_readw(addr + offset);
277
278 trace_musb_readw(__builtin_return_address(0), addr, offset, data);
279 return data;
Tony Lindgren1b40fc52014-11-24 11:05:02 -0800280}
281
282static void musb_default_writew(void __iomem *addr, unsigned offset, u16 data)
283{
Bin Liuc74173f2016-06-30 12:12:24 -0500284 trace_musb_writew(__builtin_return_address(0), addr, offset, data);
Tony Lindgren1b40fc52014-11-24 11:05:02 -0800285 __raw_writew(data, addr + offset);
286}
287
288static u32 musb_default_readl(const void __iomem *addr, unsigned offset)
289{
Bin Liuc74173f2016-06-30 12:12:24 -0500290 u32 data = __raw_readl(addr + offset);
291
292 trace_musb_readl(__builtin_return_address(0), addr, offset, data);
293 return data;
Tony Lindgren1b40fc52014-11-24 11:05:02 -0800294}
295
296static void musb_default_writel(void __iomem *addr, unsigned offset, u32 data)
297{
Bin Liuc74173f2016-06-30 12:12:24 -0500298 trace_musb_writel(__builtin_return_address(0), addr, offset, data);
Tony Lindgren1b40fc52014-11-24 11:05:02 -0800299 __raw_writel(data, addr + offset);
300}
Bryan Wuc6cf8b02008-12-02 21:33:48 +0200301
Felipe Balbi550a7372008-07-24 12:27:36 +0300302/*
303 * Load an endpoint's FIFO
304 */
Tony Lindgren1b40fc52014-11-24 11:05:02 -0800305static void musb_default_write_fifo(struct musb_hw_ep *hw_ep, u16 len,
306 const u8 *src)
Felipe Balbi550a7372008-07-24 12:27:36 +0300307{
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300308 struct musb *musb = hw_ep->musb;
Felipe Balbi550a7372008-07-24 12:27:36 +0300309 void __iomem *fifo = hw_ep->fifo;
310
Ajay Kumar Gupta603fe2b2012-07-20 11:07:24 +0530311 if (unlikely(len == 0))
312 return;
313
Felipe Balbi550a7372008-07-24 12:27:36 +0300314 prefetch((u8 *)src);
315
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300316 dev_dbg(musb->controller, "%cX ep%d fifo %p count %d buf %p\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300317 'T', hw_ep->epnum, fifo, len, src);
318
319 /* we can't assume unaligned reads work */
320 if (likely((0x01 & (unsigned long) src) == 0)) {
321 u16 index = 0;
322
323 /* best case is 32bit-aligned source address */
324 if ((0x02 & (unsigned long) src) == 0) {
325 if (len >= 4) {
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800326 iowrite32_rep(fifo, src + index, len >> 2);
Felipe Balbi550a7372008-07-24 12:27:36 +0300327 index += len & ~0x03;
328 }
329 if (len & 0x02) {
Hans de Goedebe780382015-03-20 20:11:13 +0100330 __raw_writew(*(u16 *)&src[index], fifo);
Felipe Balbi550a7372008-07-24 12:27:36 +0300331 index += 2;
332 }
333 } else {
334 if (len >= 2) {
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800335 iowrite16_rep(fifo, src + index, len >> 1);
Felipe Balbi550a7372008-07-24 12:27:36 +0300336 index += len & ~0x01;
337 }
338 }
339 if (len & 0x01)
Hans de Goedebe780382015-03-20 20:11:13 +0100340 __raw_writeb(src[index], fifo);
Felipe Balbi550a7372008-07-24 12:27:36 +0300341 } else {
342 /* byte aligned */
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800343 iowrite8_rep(fifo, src, len);
Felipe Balbi550a7372008-07-24 12:27:36 +0300344 }
345}
346
347/*
348 * Unload an endpoint's FIFO
349 */
Tony Lindgren1b40fc52014-11-24 11:05:02 -0800350static void musb_default_read_fifo(struct musb_hw_ep *hw_ep, u16 len, u8 *dst)
Felipe Balbi550a7372008-07-24 12:27:36 +0300351{
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300352 struct musb *musb = hw_ep->musb;
Felipe Balbi550a7372008-07-24 12:27:36 +0300353 void __iomem *fifo = hw_ep->fifo;
354
Ajay Kumar Gupta603fe2b2012-07-20 11:07:24 +0530355 if (unlikely(len == 0))
356 return;
357
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300358 dev_dbg(musb->controller, "%cX ep%d fifo %p count %d buf %p\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300359 'R', hw_ep->epnum, fifo, len, dst);
360
361 /* we can't assume unaligned writes work */
362 if (likely((0x01 & (unsigned long) dst) == 0)) {
363 u16 index = 0;
364
365 /* best case is 32bit-aligned destination address */
366 if ((0x02 & (unsigned long) dst) == 0) {
367 if (len >= 4) {
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800368 ioread32_rep(fifo, dst, len >> 2);
Felipe Balbi550a7372008-07-24 12:27:36 +0300369 index = len & ~0x03;
370 }
371 if (len & 0x02) {
Hans de Goedebe780382015-03-20 20:11:13 +0100372 *(u16 *)&dst[index] = __raw_readw(fifo);
Felipe Balbi550a7372008-07-24 12:27:36 +0300373 index += 2;
374 }
375 } else {
376 if (len >= 2) {
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800377 ioread16_rep(fifo, dst, len >> 1);
Felipe Balbi550a7372008-07-24 12:27:36 +0300378 index = len & ~0x01;
379 }
380 }
381 if (len & 0x01)
Hans de Goedebe780382015-03-20 20:11:13 +0100382 dst[index] = __raw_readb(fifo);
Felipe Balbi550a7372008-07-24 12:27:36 +0300383 } else {
384 /* byte aligned */
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800385 ioread8_rep(fifo, dst, len);
Felipe Balbi550a7372008-07-24 12:27:36 +0300386 }
387}
388
Tony Lindgren1b40fc52014-11-24 11:05:02 -0800389/*
390 * Old style IO functions
391 */
392u8 (*musb_readb)(const void __iomem *addr, unsigned offset);
393EXPORT_SYMBOL_GPL(musb_readb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300394
Tony Lindgren1b40fc52014-11-24 11:05:02 -0800395void (*musb_writeb)(void __iomem *addr, unsigned offset, u8 data);
396EXPORT_SYMBOL_GPL(musb_writeb);
397
398u16 (*musb_readw)(const void __iomem *addr, unsigned offset);
399EXPORT_SYMBOL_GPL(musb_readw);
400
401void (*musb_writew)(void __iomem *addr, unsigned offset, u16 data);
402EXPORT_SYMBOL_GPL(musb_writew);
403
404u32 (*musb_readl)(const void __iomem *addr, unsigned offset);
405EXPORT_SYMBOL_GPL(musb_readl);
406
407void (*musb_writel)(void __iomem *addr, unsigned offset, u32 data);
408EXPORT_SYMBOL_GPL(musb_writel);
409
Tony Lindgren7f6283e2015-05-01 12:29:28 -0700410#ifndef CONFIG_MUSB_PIO_ONLY
411struct dma_controller *
412(*musb_dma_controller_create)(struct musb *musb, void __iomem *base);
413EXPORT_SYMBOL(musb_dma_controller_create);
414
415void (*musb_dma_controller_destroy)(struct dma_controller *c);
416EXPORT_SYMBOL(musb_dma_controller_destroy);
417#endif
418
Tony Lindgren1b40fc52014-11-24 11:05:02 -0800419/*
420 * New style IO functions
421 */
422void musb_read_fifo(struct musb_hw_ep *hw_ep, u16 len, u8 *dst)
423{
424 return hw_ep->musb->io.read_fifo(hw_ep, len, dst);
425}
426
427void musb_write_fifo(struct musb_hw_ep *hw_ep, u16 len, const u8 *src)
428{
429 return hw_ep->musb->io.write_fifo(hw_ep, len, src);
430}
Felipe Balbi550a7372008-07-24 12:27:36 +0300431
432/*-------------------------------------------------------------------------*/
433
434/* for high speed test mode; see USB 2.0 spec 7.1.20 */
435static const u8 musb_test_packet[53] = {
436 /* implicit SYNC then DATA0 to start */
437
438 /* JKJKJKJK x9 */
439 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
440 /* JJKKJJKK x8 */
441 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
442 /* JJJJKKKK x8 */
443 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee,
444 /* JJJJJJJKKKKKKK x8 */
445 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
446 /* JJJJJJJK x8 */
447 0x7f, 0xbf, 0xdf, 0xef, 0xf7, 0xfb, 0xfd,
448 /* JKKKKKKK x10, JK */
449 0xfc, 0x7e, 0xbf, 0xdf, 0xef, 0xf7, 0xfb, 0xfd, 0x7e
450
451 /* implicit CRC16 then EOP to end */
452};
453
454void musb_load_testpacket(struct musb *musb)
455{
456 void __iomem *regs = musb->endpoints[0].regs;
457
458 musb_ep_select(musb->mregs, 0);
459 musb_write_fifo(musb->control_ep,
460 sizeof(musb_test_packet), musb_test_packet);
461 musb_writew(regs, MUSB_CSR0, MUSB_CSR0_TXPKTRDY);
462}
463
464/*-------------------------------------------------------------------------*/
465
Felipe Balbi550a7372008-07-24 12:27:36 +0300466/*
Felipe Balbi550a7372008-07-24 12:27:36 +0300467 * Handles OTG hnp timeouts, such as b_ase0_brst
468 */
Felipe Balbia1565442012-08-07 14:00:50 +0300469static void musb_otg_timer_func(unsigned long data)
Felipe Balbi550a7372008-07-24 12:27:36 +0300470{
471 struct musb *musb = (struct musb *)data;
472 unsigned long flags;
473
474 spin_lock_irqsave(&musb->lock, flags);
Antoine Tenarte47d9252014-10-30 18:41:13 +0100475 switch (musb->xceiv->otg->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300476 case OTG_STATE_B_WAIT_ACON:
Bin Liub99d3652016-06-30 12:12:22 -0500477 musb_dbg(musb,
478 "HNP: b_wait_acon timeout; back to b_peripheral");
Felipe Balbi550a7372008-07-24 12:27:36 +0300479 musb_g_disconnect(musb);
Antoine Tenarte47d9252014-10-30 18:41:13 +0100480 musb->xceiv->otg->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +0300481 musb->is_active = 0;
482 break;
David Brownellab983f2a2009-03-31 12:35:09 -0700483 case OTG_STATE_A_SUSPEND:
Felipe Balbi550a7372008-07-24 12:27:36 +0300484 case OTG_STATE_A_WAIT_BCON:
Bin Liub99d3652016-06-30 12:12:22 -0500485 musb_dbg(musb, "HNP: %s timeout",
Antoine Tenarte47d9252014-10-30 18:41:13 +0100486 usb_otg_state_string(musb->xceiv->otg->state));
Felipe Balbi743411b2010-12-01 13:22:05 +0200487 musb_platform_set_vbus(musb, 0);
Antoine Tenarte47d9252014-10-30 18:41:13 +0100488 musb->xceiv->otg->state = OTG_STATE_A_WAIT_VFALL;
Felipe Balbi550a7372008-07-24 12:27:36 +0300489 break;
490 default:
Bin Liub99d3652016-06-30 12:12:22 -0500491 musb_dbg(musb, "HNP: Unhandled mode %s",
Antoine Tenarte47d9252014-10-30 18:41:13 +0100492 usb_otg_state_string(musb->xceiv->otg->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300493 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300494 spin_unlock_irqrestore(&musb->lock, flags);
495}
496
Felipe Balbi550a7372008-07-24 12:27:36 +0300497/*
David Brownellf7f9d632009-03-31 12:32:12 -0700498 * Stops the HNP transition. Caller must take care of locking.
Felipe Balbi550a7372008-07-24 12:27:36 +0300499 */
500void musb_hnp_stop(struct musb *musb)
501{
Daniel Mack8b125df2013-04-10 21:55:50 +0200502 struct usb_hcd *hcd = musb->hcd;
Felipe Balbi550a7372008-07-24 12:27:36 +0300503 void __iomem *mbase = musb->mregs;
504 u8 reg;
505
Bin Liub99d3652016-06-30 12:12:22 -0500506 musb_dbg(musb, "HNP: stop from %s",
Antoine Tenarte47d9252014-10-30 18:41:13 +0100507 usb_otg_state_string(musb->xceiv->otg->state));
David Brownellab983f2a2009-03-31 12:35:09 -0700508
Antoine Tenarte47d9252014-10-30 18:41:13 +0100509 switch (musb->xceiv->otg->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300510 case OTG_STATE_A_PERIPHERAL:
Felipe Balbi550a7372008-07-24 12:27:36 +0300511 musb_g_disconnect(musb);
Bin Liub99d3652016-06-30 12:12:22 -0500512 musb_dbg(musb, "HNP: back to %s",
Antoine Tenarte47d9252014-10-30 18:41:13 +0100513 usb_otg_state_string(musb->xceiv->otg->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300514 break;
515 case OTG_STATE_B_HOST:
Bin Liub99d3652016-06-30 12:12:22 -0500516 musb_dbg(musb, "HNP: Disabling HR");
Daniel Mack74c2e932013-04-10 21:55:45 +0200517 if (hcd)
518 hcd->self.is_b_host = 0;
Antoine Tenarte47d9252014-10-30 18:41:13 +0100519 musb->xceiv->otg->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +0300520 MUSB_DEV_MODE(musb);
521 reg = musb_readb(mbase, MUSB_POWER);
522 reg |= MUSB_POWER_SUSPENDM;
523 musb_writeb(mbase, MUSB_POWER, reg);
524 /* REVISIT: Start SESSION_REQUEST here? */
525 break;
526 default:
Bin Liub99d3652016-06-30 12:12:22 -0500527 musb_dbg(musb, "HNP: Stopping in unknown state %s",
Antoine Tenarte47d9252014-10-30 18:41:13 +0100528 usb_otg_state_string(musb->xceiv->otg->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300529 }
530
531 /*
532 * When returning to A state after HNP, avoid hub_port_rebounce(),
533 * which cause occasional OPT A "Did not receive reset after connect"
534 * errors.
535 */
Alan Stern749da5f2010-03-04 17:05:08 -0500536 musb->port1_status &= ~(USB_PORT_STAT_C_CONNECTION << 16);
Felipe Balbi550a7372008-07-24 12:27:36 +0300537}
538
Felipe Balbi83b8f5b2015-02-26 14:27:12 -0600539static void musb_recover_from_babble(struct musb *musb);
Felipe Balbie1eb3eb2015-02-26 11:26:09 -0600540
Felipe Balbi550a7372008-07-24 12:27:36 +0300541/*
542 * Interrupt Service Routine to record USB "global" interrupts.
543 * Since these do not happen often and signify things of
544 * paramount importance, it seems OK to check them individually;
545 * the order of the tests is specified in the manual
546 *
547 * @param musb instance pointer
548 * @param int_usb register contents
549 * @param devctl
550 * @param power
551 */
552
Felipe Balbi550a7372008-07-24 12:27:36 +0300553static irqreturn_t musb_stage0_irq(struct musb *musb, u8 int_usb,
Sebastian Andrzej Siewiorb11e94d2012-10-30 19:52:23 +0100554 u8 devctl)
Felipe Balbi550a7372008-07-24 12:27:36 +0300555{
556 irqreturn_t handled = IRQ_NONE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300557
Bin Liub99d3652016-06-30 12:12:22 -0500558 musb_dbg(musb, "<== DevCtl=%02x, int_usb=0x%x", devctl, int_usb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300559
560 /* in host mode, the peripheral may issue remote wakeup.
561 * in peripheral mode, the host may resume the link.
562 * spurious RESUME irqs happen too, paired with SUSPEND.
563 */
564 if (int_usb & MUSB_INTR_RESUME) {
565 handled = IRQ_HANDLED;
Bin Liub99d3652016-06-30 12:12:22 -0500566 musb_dbg(musb, "RESUME (%s)",
Felipe Balbi0acff6b2015-02-25 14:14:15 -0600567 usb_otg_state_string(musb->xceiv->otg->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300568
569 if (devctl & MUSB_DEVCTL_HM) {
Antoine Tenarte47d9252014-10-30 18:41:13 +0100570 switch (musb->xceiv->otg->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300571 case OTG_STATE_A_SUSPEND:
572 /* remote wakeup? later, GetPortStatus
573 * will stop RESUME signaling
574 */
575
Felipe Balbi550a7372008-07-24 12:27:36 +0300576 musb->port1_status |=
577 (USB_PORT_STAT_C_SUSPEND << 16)
578 | MUSB_PORT_STAT_RESUME;
Daniel Mack30d361b2014-01-15 14:09:49 +0100579 musb->rh_timer = jiffies
Felipe Balbi309be232015-02-13 14:46:27 -0600580 + msecs_to_jiffies(USB_RESUME_TIMEOUT);
Sebastian Andrzej Siewiorbaadd522014-10-27 19:06:19 +0100581 musb->need_finish_resume = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +0300582
Antoine Tenarte47d9252014-10-30 18:41:13 +0100583 musb->xceiv->otg->state = OTG_STATE_A_HOST;
Felipe Balbi550a7372008-07-24 12:27:36 +0300584 musb->is_active = 1;
Bin Liu9298b4a2015-02-03 11:02:10 -0600585 musb_host_resume_root_hub(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300586 break;
587 case OTG_STATE_B_WAIT_ACON:
Antoine Tenarte47d9252014-10-30 18:41:13 +0100588 musb->xceiv->otg->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +0300589 musb->is_active = 1;
590 MUSB_DEV_MODE(musb);
591 break;
592 default:
593 WARNING("bogus %s RESUME (%s)\n",
594 "host",
Antoine Tenarte47d9252014-10-30 18:41:13 +0100595 usb_otg_state_string(musb->xceiv->otg->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300596 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300597 } else {
Antoine Tenarte47d9252014-10-30 18:41:13 +0100598 switch (musb->xceiv->otg->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300599 case OTG_STATE_A_SUSPEND:
600 /* possibly DISCONNECT is upcoming */
Antoine Tenarte47d9252014-10-30 18:41:13 +0100601 musb->xceiv->otg->state = OTG_STATE_A_HOST;
Daniel Mack0b3eba42013-04-10 21:55:42 +0200602 musb_host_resume_root_hub(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300603 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300604 case OTG_STATE_B_WAIT_ACON:
605 case OTG_STATE_B_PERIPHERAL:
606 /* disconnect while suspended? we may
607 * not get a disconnect irq...
608 */
609 if ((devctl & MUSB_DEVCTL_VBUS)
610 != (3 << MUSB_DEVCTL_VBUS_SHIFT)
611 ) {
612 musb->int_usb |= MUSB_INTR_DISCONNECT;
613 musb->int_usb &= ~MUSB_INTR_SUSPEND;
614 break;
615 }
616 musb_g_resume(musb);
617 break;
618 case OTG_STATE_B_IDLE:
619 musb->int_usb &= ~MUSB_INTR_SUSPEND;
620 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300621 default:
622 WARNING("bogus %s RESUME (%s)\n",
623 "peripheral",
Antoine Tenarte47d9252014-10-30 18:41:13 +0100624 usb_otg_state_string(musb->xceiv->otg->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300625 }
626 }
627 }
628
Felipe Balbi550a7372008-07-24 12:27:36 +0300629 /* see manual for the order of the tests */
630 if (int_usb & MUSB_INTR_SESSREQ) {
Felipe Balbiaa471452010-03-12 10:27:24 +0200631 void __iomem *mbase = musb->mregs;
632
Heikki Krogerus19aab562010-10-29 04:23:27 -0500633 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS
634 && (devctl & MUSB_DEVCTL_BDEVICE)) {
Bin Liub99d3652016-06-30 12:12:22 -0500635 musb_dbg(musb, "SessReq while on B state");
Heikki Krogerusa6038ee2010-09-24 13:44:13 +0300636 return IRQ_HANDLED;
637 }
638
Bin Liub99d3652016-06-30 12:12:22 -0500639 musb_dbg(musb, "SESSION_REQUEST (%s)",
Antoine Tenarte47d9252014-10-30 18:41:13 +0100640 usb_otg_state_string(musb->xceiv->otg->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300641
642 /* IRQ arrives from ID pin sense or (later, if VBUS power
643 * is removed) SRP. responses are time critical:
644 * - turn on VBUS (with silicon-specific mechanism)
645 * - go through A_WAIT_VRISE
646 * - ... to A_WAIT_BCON.
647 * a_wait_vrise_tmout triggers VBUS_ERROR transitions
648 */
649 musb_writeb(mbase, MUSB_DEVCTL, MUSB_DEVCTL_SESSION);
650 musb->ep0_stage = MUSB_EP0_START;
Antoine Tenarte47d9252014-10-30 18:41:13 +0100651 musb->xceiv->otg->state = OTG_STATE_A_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300652 MUSB_HST_MODE(musb);
Felipe Balbi743411b2010-12-01 13:22:05 +0200653 musb_platform_set_vbus(musb, 1);
Felipe Balbi550a7372008-07-24 12:27:36 +0300654
655 handled = IRQ_HANDLED;
656 }
657
658 if (int_usb & MUSB_INTR_VBUSERROR) {
659 int ignore = 0;
660
661 /* During connection as an A-Device, we may see a short
662 * current spikes causing voltage drop, because of cable
663 * and peripheral capacitance combined with vbus draw.
664 * (So: less common with truly self-powered devices, where
665 * vbus doesn't act like a power supply.)
666 *
667 * Such spikes are short; usually less than ~500 usec, max
668 * of ~2 msec. That is, they're not sustained overcurrent
669 * errors, though they're reported using VBUSERROR irqs.
670 *
671 * Workarounds: (a) hardware: use self powered devices.
672 * (b) software: ignore non-repeated VBUS errors.
673 *
674 * REVISIT: do delays from lots of DEBUG_KERNEL checks
675 * make trouble here, keeping VBUS < 4.4V ?
676 */
Antoine Tenarte47d9252014-10-30 18:41:13 +0100677 switch (musb->xceiv->otg->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300678 case OTG_STATE_A_HOST:
679 /* recovery is dicey once we've gotten past the
680 * initial stages of enumeration, but if VBUS
681 * stayed ok at the other end of the link, and
682 * another reset is due (at least for high speed,
683 * to redo the chirp etc), it might work OK...
684 */
685 case OTG_STATE_A_WAIT_BCON:
686 case OTG_STATE_A_WAIT_VRISE:
687 if (musb->vbuserr_retry) {
Felipe Balbiaa471452010-03-12 10:27:24 +0200688 void __iomem *mbase = musb->mregs;
689
Felipe Balbi550a7372008-07-24 12:27:36 +0300690 musb->vbuserr_retry--;
691 ignore = 1;
692 devctl |= MUSB_DEVCTL_SESSION;
693 musb_writeb(mbase, MUSB_DEVCTL, devctl);
694 } else {
695 musb->port1_status |=
Alan Stern749da5f2010-03-04 17:05:08 -0500696 USB_PORT_STAT_OVERCURRENT
697 | (USB_PORT_STAT_C_OVERCURRENT << 16);
Felipe Balbi550a7372008-07-24 12:27:36 +0300698 }
699 break;
700 default:
701 break;
702 }
703
Grazvydas Ignotas54485112013-03-10 02:49:28 +0200704 dev_printk(ignore ? KERN_DEBUG : KERN_ERR, musb->controller,
705 "VBUS_ERROR in %s (%02x, %s), retry #%d, port1 %08x\n",
Antoine Tenarte47d9252014-10-30 18:41:13 +0100706 usb_otg_state_string(musb->xceiv->otg->state),
Felipe Balbi550a7372008-07-24 12:27:36 +0300707 devctl,
708 ({ char *s;
709 switch (devctl & MUSB_DEVCTL_VBUS) {
710 case 0 << MUSB_DEVCTL_VBUS_SHIFT:
711 s = "<SessEnd"; break;
712 case 1 << MUSB_DEVCTL_VBUS_SHIFT:
713 s = "<AValid"; break;
714 case 2 << MUSB_DEVCTL_VBUS_SHIFT:
715 s = "<VBusValid"; break;
716 /* case 3 << MUSB_DEVCTL_VBUS_SHIFT: */
717 default:
718 s = "VALID"; break;
Joe Perches2b84f922013-10-08 16:01:37 -0700719 } s; }),
Felipe Balbi550a7372008-07-24 12:27:36 +0300720 VBUSERR_RETRY_COUNT - musb->vbuserr_retry,
721 musb->port1_status);
722
723 /* go through A_WAIT_VFALL then start a new session */
724 if (!ignore)
Felipe Balbi743411b2010-12-01 13:22:05 +0200725 musb_platform_set_vbus(musb, 0);
Felipe Balbi550a7372008-07-24 12:27:36 +0300726 handled = IRQ_HANDLED;
727 }
728
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200729 if (int_usb & MUSB_INTR_SUSPEND) {
Bin Liub99d3652016-06-30 12:12:22 -0500730 musb_dbg(musb, "SUSPEND (%s) devctl %02x",
Antoine Tenarte47d9252014-10-30 18:41:13 +0100731 usb_otg_state_string(musb->xceiv->otg->state), devctl);
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200732 handled = IRQ_HANDLED;
733
Antoine Tenarte47d9252014-10-30 18:41:13 +0100734 switch (musb->xceiv->otg->state) {
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200735 case OTG_STATE_A_PERIPHERAL:
736 /* We also come here if the cable is removed, since
737 * this silicon doesn't report ID-no-longer-grounded.
738 *
739 * We depend on T(a_wait_bcon) to shut us down, and
740 * hope users don't do anything dicey during this
741 * undesired detour through A_WAIT_BCON.
742 */
743 musb_hnp_stop(musb);
Daniel Mack0b3eba42013-04-10 21:55:42 +0200744 musb_host_resume_root_hub(musb);
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200745 musb_root_disconnect(musb);
746 musb_platform_try_idle(musb, jiffies
747 + msecs_to_jiffies(musb->a_wait_bcon
748 ? : OTG_TIME_A_WAIT_BCON));
749
750 break;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200751 case OTG_STATE_B_IDLE:
752 if (!musb->is_active)
753 break;
754 case OTG_STATE_B_PERIPHERAL:
755 musb_g_suspend(musb);
Felipe Balbieee3f152014-02-25 10:58:43 -0600756 musb->is_active = musb->g.b_hnp_enable;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200757 if (musb->is_active) {
Antoine Tenarte47d9252014-10-30 18:41:13 +0100758 musb->xceiv->otg->state = OTG_STATE_B_WAIT_ACON;
Bin Liub99d3652016-06-30 12:12:22 -0500759 musb_dbg(musb, "HNP: Setting timer for b_ase0_brst");
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200760 mod_timer(&musb->otg_timer, jiffies
761 + msecs_to_jiffies(
762 OTG_TIME_B_ASE0_BRST));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200763 }
764 break;
765 case OTG_STATE_A_WAIT_BCON:
766 if (musb->a_wait_bcon != 0)
767 musb_platform_try_idle(musb, jiffies
768 + msecs_to_jiffies(musb->a_wait_bcon));
769 break;
770 case OTG_STATE_A_HOST:
Antoine Tenarte47d9252014-10-30 18:41:13 +0100771 musb->xceiv->otg->state = OTG_STATE_A_SUSPEND;
Felipe Balbieee3f152014-02-25 10:58:43 -0600772 musb->is_active = musb->hcd->self.b_hnp_enable;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200773 break;
774 case OTG_STATE_B_HOST:
775 /* Transition to B_PERIPHERAL, see 6.8.2.6 p 44 */
Bin Liub99d3652016-06-30 12:12:22 -0500776 musb_dbg(musb, "REVISIT: SUSPEND as B_HOST");
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200777 break;
778 default:
779 /* "should not happen" */
780 musb->is_active = 0;
781 break;
782 }
783 }
784
Felipe Balbi550a7372008-07-24 12:27:36 +0300785 if (int_usb & MUSB_INTR_CONNECT) {
Daniel Mack8b125df2013-04-10 21:55:50 +0200786 struct usb_hcd *hcd = musb->hcd;
Felipe Balbi550a7372008-07-24 12:27:36 +0300787
788 handled = IRQ_HANDLED;
789 musb->is_active = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +0300790
791 musb->ep0_stage = MUSB_EP0_START;
792
Sebastian Andrzej Siewiorb18d26f2012-10-30 19:52:26 +0100793 musb->intrtxe = musb->epmask;
794 musb_writew(musb->mregs, MUSB_INTRTXE, musb->intrtxe);
Sebastian Andrzej Siewioraf5ec142012-10-30 19:52:25 +0100795 musb->intrrxe = musb->epmask & 0xfffe;
796 musb_writew(musb->mregs, MUSB_INTRRXE, musb->intrrxe);
Ajay Kumar Guptad709d222010-07-08 14:03:00 +0530797 musb_writeb(musb->mregs, MUSB_INTRUSBE, 0xf7);
Felipe Balbi550a7372008-07-24 12:27:36 +0300798 musb->port1_status &= ~(USB_PORT_STAT_LOW_SPEED
799 |USB_PORT_STAT_HIGH_SPEED
800 |USB_PORT_STAT_ENABLE
801 );
802 musb->port1_status |= USB_PORT_STAT_CONNECTION
803 |(USB_PORT_STAT_C_CONNECTION << 16);
804
805 /* high vs full speed is just a guess until after reset */
806 if (devctl & MUSB_DEVCTL_LSDEV)
807 musb->port1_status |= USB_PORT_STAT_LOW_SPEED;
808
Felipe Balbi550a7372008-07-24 12:27:36 +0300809 /* indicate new connection to OTG machine */
Antoine Tenarte47d9252014-10-30 18:41:13 +0100810 switch (musb->xceiv->otg->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300811 case OTG_STATE_B_PERIPHERAL:
812 if (int_usb & MUSB_INTR_SUSPEND) {
Bin Liub99d3652016-06-30 12:12:22 -0500813 musb_dbg(musb, "HNP: SUSPEND+CONNECT, now b_host");
Felipe Balbi550a7372008-07-24 12:27:36 +0300814 int_usb &= ~MUSB_INTR_SUSPEND;
David Brownell1de00da2009-04-02 10:16:11 -0700815 goto b_host;
Felipe Balbi550a7372008-07-24 12:27:36 +0300816 } else
Bin Liub99d3652016-06-30 12:12:22 -0500817 musb_dbg(musb, "CONNECT as b_peripheral???");
Felipe Balbi550a7372008-07-24 12:27:36 +0300818 break;
819 case OTG_STATE_B_WAIT_ACON:
Bin Liub99d3652016-06-30 12:12:22 -0500820 musb_dbg(musb, "HNP: CONNECT, now b_host");
David Brownell1de00da2009-04-02 10:16:11 -0700821b_host:
Antoine Tenarte47d9252014-10-30 18:41:13 +0100822 musb->xceiv->otg->state = OTG_STATE_B_HOST;
Daniel Mack74c2e932013-04-10 21:55:45 +0200823 if (musb->hcd)
824 musb->hcd->self.is_b_host = 1;
David Brownell1de00da2009-04-02 10:16:11 -0700825 del_timer(&musb->otg_timer);
Felipe Balbi550a7372008-07-24 12:27:36 +0300826 break;
827 default:
828 if ((devctl & MUSB_DEVCTL_VBUS)
829 == (3 << MUSB_DEVCTL_VBUS_SHIFT)) {
Antoine Tenarte47d9252014-10-30 18:41:13 +0100830 musb->xceiv->otg->state = OTG_STATE_A_HOST;
Daniel Mack0b3eba42013-04-10 21:55:42 +0200831 if (hcd)
832 hcd->self.is_b_host = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +0300833 }
834 break;
835 }
David Brownell1de00da2009-04-02 10:16:11 -0700836
Daniel Mack0b3eba42013-04-10 21:55:42 +0200837 musb_host_poke_root_hub(musb);
David Brownell1de00da2009-04-02 10:16:11 -0700838
Bin Liub99d3652016-06-30 12:12:22 -0500839 musb_dbg(musb, "CONNECT (%s) devctl %02x",
Antoine Tenarte47d9252014-10-30 18:41:13 +0100840 usb_otg_state_string(musb->xceiv->otg->state), devctl);
Felipe Balbi550a7372008-07-24 12:27:36 +0300841 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300842
Felipe Balbi6d349672013-04-29 12:02:24 +0300843 if (int_usb & MUSB_INTR_DISCONNECT) {
Bin Liub99d3652016-06-30 12:12:22 -0500844 musb_dbg(musb, "DISCONNECT (%s) as %s, devctl %02x",
Antoine Tenarte47d9252014-10-30 18:41:13 +0100845 usb_otg_state_string(musb->xceiv->otg->state),
Felipe Balbi550a7372008-07-24 12:27:36 +0300846 MUSB_MODE(musb), devctl);
847 handled = IRQ_HANDLED;
848
Antoine Tenarte47d9252014-10-30 18:41:13 +0100849 switch (musb->xceiv->otg->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300850 case OTG_STATE_A_HOST:
851 case OTG_STATE_A_SUSPEND:
Daniel Mack0b3eba42013-04-10 21:55:42 +0200852 musb_host_resume_root_hub(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300853 musb_root_disconnect(musb);
Felipe Balbi032ec492011-11-24 15:46:26 +0200854 if (musb->a_wait_bcon != 0)
Felipe Balbi550a7372008-07-24 12:27:36 +0300855 musb_platform_try_idle(musb, jiffies
856 + msecs_to_jiffies(musb->a_wait_bcon));
857 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300858 case OTG_STATE_B_HOST:
David Brownellab983f2a2009-03-31 12:35:09 -0700859 /* REVISIT this behaves for "real disconnect"
860 * cases; make sure the other transitions from
861 * from B_HOST act right too. The B_HOST code
862 * in hnp_stop() is currently not used...
863 */
864 musb_root_disconnect(musb);
Daniel Mack74c2e932013-04-10 21:55:45 +0200865 if (musb->hcd)
866 musb->hcd->self.is_b_host = 0;
Antoine Tenarte47d9252014-10-30 18:41:13 +0100867 musb->xceiv->otg->state = OTG_STATE_B_PERIPHERAL;
David Brownellab983f2a2009-03-31 12:35:09 -0700868 MUSB_DEV_MODE(musb);
869 musb_g_disconnect(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300870 break;
871 case OTG_STATE_A_PERIPHERAL:
872 musb_hnp_stop(musb);
873 musb_root_disconnect(musb);
874 /* FALLTHROUGH */
875 case OTG_STATE_B_WAIT_ACON:
876 /* FALLTHROUGH */
Felipe Balbi550a7372008-07-24 12:27:36 +0300877 case OTG_STATE_B_PERIPHERAL:
878 case OTG_STATE_B_IDLE:
879 musb_g_disconnect(musb);
880 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300881 default:
882 WARNING("unhandled DISCONNECT transition (%s)\n",
Antoine Tenarte47d9252014-10-30 18:41:13 +0100883 usb_otg_state_string(musb->xceiv->otg->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300884 break;
885 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300886 }
887
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200888 /* mentor saves a bit: bus reset and babble share the same irq.
889 * only host sees babble; only peripheral sees bus reset.
890 */
891 if (int_usb & MUSB_INTR_RESET) {
892 handled = IRQ_HANDLED;
Felipe Balbi896f7ea2015-02-25 14:03:23 -0600893 if (devctl & MUSB_DEVCTL_HM) {
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200894 /*
Felipe Balbi34754de2015-02-26 14:43:57 -0600895 * When BABBLE happens what we can depends on which
Felipe Balbi28378d52015-02-26 10:54:27 -0600896 * platform MUSB is running, because some platforms
897 * implemented proprietary means for 'recovering' from
898 * Babble conditions. One such platform is AM335x. In
Felipe Balbi34754de2015-02-26 14:43:57 -0600899 * most cases, however, the only thing we can do is
900 * drop the session.
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200901 */
Felipe Balbi34754de2015-02-26 14:43:57 -0600902 dev_err(musb->controller, "Babble\n");
Felipe Balbid0fc0a22015-02-25 14:07:52 -0600903
Felipe Balbi34754de2015-02-26 14:43:57 -0600904 if (is_host_active(musb))
905 musb_recover_from_babble(musb);
Felipe Balbia04d46d2011-11-24 15:46:27 +0200906 } else {
Bin Liub99d3652016-06-30 12:12:22 -0500907 musb_dbg(musb, "BUS RESET as %s",
Antoine Tenarte47d9252014-10-30 18:41:13 +0100908 usb_otg_state_string(musb->xceiv->otg->state));
909 switch (musb->xceiv->otg->state) {
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200910 case OTG_STATE_A_SUSPEND:
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200911 musb_g_reset(musb);
912 /* FALLTHROUGH */
913 case OTG_STATE_A_WAIT_BCON: /* OPT TD.4.7-900ms */
914 /* never use invalid T(a_wait_bcon) */
Bin Liub99d3652016-06-30 12:12:22 -0500915 musb_dbg(musb, "HNP: in %s, %d msec timeout",
Antoine Tenarte47d9252014-10-30 18:41:13 +0100916 usb_otg_state_string(musb->xceiv->otg->state),
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200917 TA_WAIT_BCON(musb));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200918 mod_timer(&musb->otg_timer, jiffies
919 + msecs_to_jiffies(TA_WAIT_BCON(musb)));
920 break;
921 case OTG_STATE_A_PERIPHERAL:
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200922 del_timer(&musb->otg_timer);
923 musb_g_reset(musb);
924 break;
925 case OTG_STATE_B_WAIT_ACON:
Bin Liub99d3652016-06-30 12:12:22 -0500926 musb_dbg(musb, "HNP: RESET (%s), to b_peripheral",
Antoine Tenarte47d9252014-10-30 18:41:13 +0100927 usb_otg_state_string(musb->xceiv->otg->state));
928 musb->xceiv->otg->state = OTG_STATE_B_PERIPHERAL;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200929 musb_g_reset(musb);
930 break;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200931 case OTG_STATE_B_IDLE:
Antoine Tenarte47d9252014-10-30 18:41:13 +0100932 musb->xceiv->otg->state = OTG_STATE_B_PERIPHERAL;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200933 /* FALLTHROUGH */
934 case OTG_STATE_B_PERIPHERAL:
935 musb_g_reset(musb);
936 break;
937 default:
Bin Liub99d3652016-06-30 12:12:22 -0500938 musb_dbg(musb, "Unhandled BUS RESET as %s",
Antoine Tenarte47d9252014-10-30 18:41:13 +0100939 usb_otg_state_string(musb->xceiv->otg->state));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200940 }
941 }
942 }
943
944#if 0
945/* REVISIT ... this would be for multiplexing periodic endpoints, or
946 * supporting transfer phasing to prevent exceeding ISO bandwidth
947 * limits of a given frame or microframe.
948 *
949 * It's not needed for peripheral side, which dedicates endpoints;
950 * though it _might_ use SOF irqs for other purposes.
951 *
952 * And it's not currently needed for host side, which also dedicates
953 * endpoints, relies on TX/RX interval registers, and isn't claimed
954 * to support ISO transfers yet.
955 */
956 if (int_usb & MUSB_INTR_SOF) {
957 void __iomem *mbase = musb->mregs;
958 struct musb_hw_ep *ep;
959 u8 epnum;
960 u16 frame;
961
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300962 dev_dbg(musb->controller, "START_OF_FRAME\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300963 handled = IRQ_HANDLED;
964
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200965 /* start any periodic Tx transfers waiting for current frame */
966 frame = musb_readw(mbase, MUSB_FRAME);
967 ep = musb->endpoints;
968 for (epnum = 1; (epnum < musb->nr_endpoints)
969 && (musb->epmask >= (1 << epnum));
970 epnum++, ep++) {
971 /*
972 * FIXME handle framecounter wraps (12 bits)
973 * eliminate duplicated StartUrb logic
Felipe Balbi550a7372008-07-24 12:27:36 +0300974 */
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200975 if (ep->dwWaitFrame >= frame) {
976 ep->dwWaitFrame = 0;
977 pr_debug("SOF --> periodic TX%s on %d\n",
978 ep->tx_channel ? " DMA" : "",
979 epnum);
980 if (!ep->tx_channel)
981 musb_h_tx_start(musb, epnum);
982 else
983 cppi_hostdma_start(musb, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +0300984 }
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200985 } /* end of for loop */
Felipe Balbi550a7372008-07-24 12:27:36 +0300986 }
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200987#endif
Felipe Balbi550a7372008-07-24 12:27:36 +0300988
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200989 schedule_work(&musb->irq_work);
Felipe Balbi550a7372008-07-24 12:27:36 +0300990
991 return handled;
992}
993
994/*-------------------------------------------------------------------------*/
995
Felipe Balbie1eb3eb2015-02-26 11:26:09 -0600996static void musb_disable_interrupts(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +0300997{
998 void __iomem *mbase = musb->mregs;
999 u16 temp;
1000
1001 /* disable interrupts */
1002 musb_writeb(mbase, MUSB_INTRUSBE, 0);
Sebastian Andrzej Siewiorb18d26f2012-10-30 19:52:26 +01001003 musb->intrtxe = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001004 musb_writew(mbase, MUSB_INTRTXE, 0);
Sebastian Andrzej Siewioraf5ec142012-10-30 19:52:25 +01001005 musb->intrrxe = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001006 musb_writew(mbase, MUSB_INTRRXE, 0);
1007
Felipe Balbi550a7372008-07-24 12:27:36 +03001008 /* flush pending interrupts */
1009 temp = musb_readb(mbase, MUSB_INTRUSB);
1010 temp = musb_readw(mbase, MUSB_INTRTX);
1011 temp = musb_readw(mbase, MUSB_INTRRX);
Felipe Balbie1eb3eb2015-02-26 11:26:09 -06001012}
Felipe Balbi550a7372008-07-24 12:27:36 +03001013
Felipe Balbie1eb3eb2015-02-26 11:26:09 -06001014static void musb_enable_interrupts(struct musb *musb)
1015{
1016 void __iomem *regs = musb->mregs;
1017
1018 /* Set INT enable registers, enable interrupts */
1019 musb->intrtxe = musb->epmask;
1020 musb_writew(regs, MUSB_INTRTXE, musb->intrtxe);
1021 musb->intrrxe = musb->epmask & 0xfffe;
1022 musb_writew(regs, MUSB_INTRRXE, musb->intrrxe);
1023 musb_writeb(regs, MUSB_INTRUSBE, 0xf7);
1024
1025}
1026
1027static void musb_generic_disable(struct musb *musb)
1028{
1029 void __iomem *mbase = musb->mregs;
1030
1031 musb_disable_interrupts(musb);
1032
1033 /* off */
1034 musb_writeb(mbase, MUSB_DEVCTL, 0);
Felipe Balbi550a7372008-07-24 12:27:36 +03001035}
1036
1037/*
Sebastian Andrzej Siewior001dd842013-10-11 10:38:13 +02001038 * Program the HDRC to start (enable interrupts, dma, etc.).
1039 */
1040void musb_start(struct musb *musb)
1041{
1042 void __iomem *regs = musb->mregs;
1043 u8 devctl = musb_readb(regs, MUSB_DEVCTL);
Bin Liu9b753762015-09-09 13:17:23 -05001044 u8 power;
Sebastian Andrzej Siewior001dd842013-10-11 10:38:13 +02001045
Bin Liub99d3652016-06-30 12:12:22 -05001046 musb_dbg(musb, "<== devctl %02x", devctl);
Sebastian Andrzej Siewior001dd842013-10-11 10:38:13 +02001047
Felipe Balbie1eb3eb2015-02-26 11:26:09 -06001048 musb_enable_interrupts(musb);
Sebastian Andrzej Siewior001dd842013-10-11 10:38:13 +02001049 musb_writeb(regs, MUSB_TESTMODE, 0);
1050
Bin Liu9b753762015-09-09 13:17:23 -05001051 power = MUSB_POWER_ISOUPDATE;
1052 /*
1053 * treating UNKNOWN as unspecified maximum speed, in which case
1054 * we will default to high-speed.
1055 */
1056 if (musb->config->maximum_speed == USB_SPEED_HIGH ||
1057 musb->config->maximum_speed == USB_SPEED_UNKNOWN)
1058 power |= MUSB_POWER_HSENAB;
1059 musb_writeb(regs, MUSB_POWER, power);
Sebastian Andrzej Siewior001dd842013-10-11 10:38:13 +02001060
1061 musb->is_active = 0;
1062 devctl = musb_readb(regs, MUSB_DEVCTL);
1063 devctl &= ~MUSB_DEVCTL_SESSION;
1064
1065 /* session started after:
1066 * (a) ID-grounded irq, host mode;
1067 * (b) vbus present/connect IRQ, peripheral mode;
1068 * (c) peripheral initiates, using SRP
1069 */
1070 if (musb->port_mode != MUSB_PORT_MODE_HOST &&
Bin Liu40af1772015-09-14 09:12:34 -05001071 musb->xceiv->otg->state != OTG_STATE_A_WAIT_BCON &&
Sebastian Andrzej Siewior001dd842013-10-11 10:38:13 +02001072 (devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS) {
1073 musb->is_active = 1;
1074 } else {
1075 devctl |= MUSB_DEVCTL_SESSION;
1076 }
1077
1078 musb_platform_enable(musb);
1079 musb_writeb(regs, MUSB_DEVCTL, devctl);
1080}
1081
1082/*
Felipe Balbi550a7372008-07-24 12:27:36 +03001083 * Make the HDRC stop (disable interrupts, etc.);
1084 * reversible by musb_start
1085 * called on gadget driver unregister
1086 * with controller locked, irqs blocked
1087 * acts as a NOP unless some role activated the hardware
1088 */
1089void musb_stop(struct musb *musb)
1090{
1091 /* stop IRQs, timers, ... */
1092 musb_platform_disable(musb);
1093 musb_generic_disable(musb);
Bin Liub99d3652016-06-30 12:12:22 -05001094 musb_dbg(musb, "HDRC disabled");
Felipe Balbi550a7372008-07-24 12:27:36 +03001095
1096 /* FIXME
1097 * - mark host and/or peripheral drivers unusable/inactive
1098 * - disable DMA (and enable it in HdrcStart)
1099 * - make sure we can musb_start() after musb_stop(); with
1100 * OTG mode, gadget driver module rmmod/modprobe cycles that
1101 * - ...
1102 */
1103 musb_platform_try_idle(musb, 0);
1104}
1105
Felipe Balbi550a7372008-07-24 12:27:36 +03001106/*-------------------------------------------------------------------------*/
1107
1108/*
1109 * The silicon either has hard-wired endpoint configurations, or else
1110 * "dynamic fifo" sizing. The driver has support for both, though at this
David Brownellc767c1c2008-09-11 11:53:23 +03001111 * writing only the dynamic sizing is very well tested. Since we switched
1112 * away from compile-time hardware parameters, we can no longer rely on
1113 * dead code elimination to leave only the relevant one in the object file.
Felipe Balbi550a7372008-07-24 12:27:36 +03001114 *
1115 * We don't currently use dynamic fifo setup capability to do anything
1116 * more than selecting one of a bunch of predefined configurations.
1117 */
Tony Lindgren8a77f052014-11-24 11:05:04 -08001118static ushort fifo_mode;
Felipe Balbi550a7372008-07-24 12:27:36 +03001119
1120/* "modprobe ... fifo_mode=1" etc */
1121module_param(fifo_mode, ushort, 0);
1122MODULE_PARM_DESC(fifo_mode, "initial endpoint configuration");
1123
Felipe Balbi550a7372008-07-24 12:27:36 +03001124/*
1125 * tables defining fifo_mode values. define more if you like.
1126 * for host side, make sure both halves of ep1 are set up.
1127 */
1128
1129/* mode 0 - fits in 2KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001130static struct musb_fifo_cfg mode_0_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001131{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1132{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1133{ .hw_ep_num = 2, .style = FIFO_RXTX, .maxpacket = 512, },
1134{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1135{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1136};
1137
1138/* mode 1 - fits in 4KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001139static struct musb_fifo_cfg mode_1_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001140{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1141{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1142{ .hw_ep_num = 2, .style = FIFO_RXTX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1143{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1144{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1145};
1146
1147/* mode 2 - fits in 4KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001148static struct musb_fifo_cfg mode_2_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001149{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1150{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1151{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1152{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1153{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1154{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1155};
1156
1157/* mode 3 - fits in 4KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001158static struct musb_fifo_cfg mode_3_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001159{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1160{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1161{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1162{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1163{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1164{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1165};
1166
1167/* mode 4 - fits in 16KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001168static struct musb_fifo_cfg mode_4_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001169{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1170{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1171{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1172{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1173{ .hw_ep_num = 3, .style = FIFO_TX, .maxpacket = 512, },
1174{ .hw_ep_num = 3, .style = FIFO_RX, .maxpacket = 512, },
1175{ .hw_ep_num = 4, .style = FIFO_TX, .maxpacket = 512, },
1176{ .hw_ep_num = 4, .style = FIFO_RX, .maxpacket = 512, },
1177{ .hw_ep_num = 5, .style = FIFO_TX, .maxpacket = 512, },
1178{ .hw_ep_num = 5, .style = FIFO_RX, .maxpacket = 512, },
1179{ .hw_ep_num = 6, .style = FIFO_TX, .maxpacket = 512, },
1180{ .hw_ep_num = 6, .style = FIFO_RX, .maxpacket = 512, },
1181{ .hw_ep_num = 7, .style = FIFO_TX, .maxpacket = 512, },
1182{ .hw_ep_num = 7, .style = FIFO_RX, .maxpacket = 512, },
1183{ .hw_ep_num = 8, .style = FIFO_TX, .maxpacket = 512, },
1184{ .hw_ep_num = 8, .style = FIFO_RX, .maxpacket = 512, },
1185{ .hw_ep_num = 9, .style = FIFO_TX, .maxpacket = 512, },
1186{ .hw_ep_num = 9, .style = FIFO_RX, .maxpacket = 512, },
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001187{ .hw_ep_num = 10, .style = FIFO_TX, .maxpacket = 256, },
1188{ .hw_ep_num = 10, .style = FIFO_RX, .maxpacket = 64, },
1189{ .hw_ep_num = 11, .style = FIFO_TX, .maxpacket = 256, },
1190{ .hw_ep_num = 11, .style = FIFO_RX, .maxpacket = 64, },
1191{ .hw_ep_num = 12, .style = FIFO_TX, .maxpacket = 256, },
1192{ .hw_ep_num = 12, .style = FIFO_RX, .maxpacket = 64, },
1193{ .hw_ep_num = 13, .style = FIFO_RXTX, .maxpacket = 4096, },
Felipe Balbi550a7372008-07-24 12:27:36 +03001194{ .hw_ep_num = 14, .style = FIFO_RXTX, .maxpacket = 1024, },
1195{ .hw_ep_num = 15, .style = FIFO_RXTX, .maxpacket = 1024, },
1196};
1197
Ajay Kumar Gupta3b151522009-12-28 13:40:34 +02001198/* mode 5 - fits in 8KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001199static struct musb_fifo_cfg mode_5_cfg[] = {
Ajay Kumar Gupta3b151522009-12-28 13:40:34 +02001200{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1201{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1202{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1203{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1204{ .hw_ep_num = 3, .style = FIFO_TX, .maxpacket = 512, },
1205{ .hw_ep_num = 3, .style = FIFO_RX, .maxpacket = 512, },
1206{ .hw_ep_num = 4, .style = FIFO_TX, .maxpacket = 512, },
1207{ .hw_ep_num = 4, .style = FIFO_RX, .maxpacket = 512, },
1208{ .hw_ep_num = 5, .style = FIFO_TX, .maxpacket = 512, },
1209{ .hw_ep_num = 5, .style = FIFO_RX, .maxpacket = 512, },
1210{ .hw_ep_num = 6, .style = FIFO_TX, .maxpacket = 32, },
1211{ .hw_ep_num = 6, .style = FIFO_RX, .maxpacket = 32, },
1212{ .hw_ep_num = 7, .style = FIFO_TX, .maxpacket = 32, },
1213{ .hw_ep_num = 7, .style = FIFO_RX, .maxpacket = 32, },
1214{ .hw_ep_num = 8, .style = FIFO_TX, .maxpacket = 32, },
1215{ .hw_ep_num = 8, .style = FIFO_RX, .maxpacket = 32, },
1216{ .hw_ep_num = 9, .style = FIFO_TX, .maxpacket = 32, },
1217{ .hw_ep_num = 9, .style = FIFO_RX, .maxpacket = 32, },
1218{ .hw_ep_num = 10, .style = FIFO_TX, .maxpacket = 32, },
1219{ .hw_ep_num = 10, .style = FIFO_RX, .maxpacket = 32, },
1220{ .hw_ep_num = 11, .style = FIFO_TX, .maxpacket = 32, },
1221{ .hw_ep_num = 11, .style = FIFO_RX, .maxpacket = 32, },
1222{ .hw_ep_num = 12, .style = FIFO_TX, .maxpacket = 32, },
1223{ .hw_ep_num = 12, .style = FIFO_RX, .maxpacket = 32, },
1224{ .hw_ep_num = 13, .style = FIFO_RXTX, .maxpacket = 512, },
1225{ .hw_ep_num = 14, .style = FIFO_RXTX, .maxpacket = 1024, },
1226{ .hw_ep_num = 15, .style = FIFO_RXTX, .maxpacket = 1024, },
1227};
Felipe Balbi550a7372008-07-24 12:27:36 +03001228
1229/*
1230 * configure a fifo; for non-shared endpoints, this may be called
1231 * once for a tx fifo and once for an rx fifo.
1232 *
1233 * returns negative errno or offset for next fifo.
1234 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001235static int
Felipe Balbi550a7372008-07-24 12:27:36 +03001236fifo_setup(struct musb *musb, struct musb_hw_ep *hw_ep,
Felipe Balbie6c213b2010-03-12 10:29:06 +02001237 const struct musb_fifo_cfg *cfg, u16 offset)
Felipe Balbi550a7372008-07-24 12:27:36 +03001238{
1239 void __iomem *mbase = musb->mregs;
1240 int size = 0;
1241 u16 maxpacket = cfg->maxpacket;
1242 u16 c_off = offset >> 3;
1243 u8 c_size;
1244
1245 /* expect hw_ep has already been zero-initialized */
1246
1247 size = ffs(max(maxpacket, (u16) 8)) - 1;
1248 maxpacket = 1 << size;
1249
1250 c_size = size - 3;
1251 if (cfg->mode == BUF_DOUBLE) {
Felipe Balbica6d1b12008-08-08 12:40:54 +03001252 if ((offset + (maxpacket << 1)) >
1253 (1 << (musb->config->ram_bits + 2)))
Felipe Balbi550a7372008-07-24 12:27:36 +03001254 return -EMSGSIZE;
1255 c_size |= MUSB_FIFOSZ_DPB;
1256 } else {
Felipe Balbica6d1b12008-08-08 12:40:54 +03001257 if ((offset + maxpacket) > (1 << (musb->config->ram_bits + 2)))
Felipe Balbi550a7372008-07-24 12:27:36 +03001258 return -EMSGSIZE;
1259 }
1260
1261 /* configure the FIFO */
1262 musb_writeb(mbase, MUSB_INDEX, hw_ep->epnum);
1263
Felipe Balbi550a7372008-07-24 12:27:36 +03001264 /* EP0 reserved endpoint for control, bidirectional;
Rahul Bedarkar5ae477b2014-01-02 19:27:47 +05301265 * EP1 reserved for bulk, two unidirectional halves.
Felipe Balbi550a7372008-07-24 12:27:36 +03001266 */
1267 if (hw_ep->epnum == 1)
1268 musb->bulk_ep = hw_ep;
1269 /* REVISIT error check: be sure ep0 can both rx and tx ... */
Felipe Balbi550a7372008-07-24 12:27:36 +03001270 switch (cfg->style) {
1271 case FIFO_TX:
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001272 musb_write_txfifosz(mbase, c_size);
1273 musb_write_txfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001274 hw_ep->tx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1275 hw_ep->max_packet_sz_tx = maxpacket;
1276 break;
1277 case FIFO_RX:
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001278 musb_write_rxfifosz(mbase, c_size);
1279 musb_write_rxfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001280 hw_ep->rx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1281 hw_ep->max_packet_sz_rx = maxpacket;
1282 break;
1283 case FIFO_RXTX:
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001284 musb_write_txfifosz(mbase, c_size);
1285 musb_write_txfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001286 hw_ep->rx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1287 hw_ep->max_packet_sz_rx = maxpacket;
1288
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001289 musb_write_rxfifosz(mbase, c_size);
1290 musb_write_rxfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001291 hw_ep->tx_double_buffered = hw_ep->rx_double_buffered;
1292 hw_ep->max_packet_sz_tx = maxpacket;
1293
1294 hw_ep->is_shared_fifo = true;
1295 break;
1296 }
1297
1298 /* NOTE rx and tx endpoint irqs aren't managed separately,
1299 * which happens to be ok
1300 */
1301 musb->epmask |= (1 << hw_ep->epnum);
1302
1303 return offset + (maxpacket << ((c_size & MUSB_FIFOSZ_DPB) ? 1 : 0));
1304}
1305
Bill Pembertond3608b62012-11-19 13:24:34 -05001306static struct musb_fifo_cfg ep0_cfg = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001307 .style = FIFO_RXTX, .maxpacket = 64,
1308};
1309
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001310static int ep_config_from_table(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001311{
Felipe Balbie6c213b2010-03-12 10:29:06 +02001312 const struct musb_fifo_cfg *cfg;
Felipe Balbi550a7372008-07-24 12:27:36 +03001313 unsigned i, n;
1314 int offset;
1315 struct musb_hw_ep *hw_ep = musb->endpoints;
1316
Felipe Balbie6c213b2010-03-12 10:29:06 +02001317 if (musb->config->fifo_cfg) {
1318 cfg = musb->config->fifo_cfg;
1319 n = musb->config->fifo_cfg_size;
1320 goto done;
1321 }
1322
Felipe Balbi550a7372008-07-24 12:27:36 +03001323 switch (fifo_mode) {
1324 default:
1325 fifo_mode = 0;
1326 /* FALLTHROUGH */
1327 case 0:
1328 cfg = mode_0_cfg;
1329 n = ARRAY_SIZE(mode_0_cfg);
1330 break;
1331 case 1:
1332 cfg = mode_1_cfg;
1333 n = ARRAY_SIZE(mode_1_cfg);
1334 break;
1335 case 2:
1336 cfg = mode_2_cfg;
1337 n = ARRAY_SIZE(mode_2_cfg);
1338 break;
1339 case 3:
1340 cfg = mode_3_cfg;
1341 n = ARRAY_SIZE(mode_3_cfg);
1342 break;
1343 case 4:
1344 cfg = mode_4_cfg;
1345 n = ARRAY_SIZE(mode_4_cfg);
1346 break;
Ajay Kumar Gupta3b151522009-12-28 13:40:34 +02001347 case 5:
1348 cfg = mode_5_cfg;
1349 n = ARRAY_SIZE(mode_5_cfg);
1350 break;
Felipe Balbi550a7372008-07-24 12:27:36 +03001351 }
1352
Rasmus Villemoes3ff4b572015-11-27 11:38:21 +01001353 pr_debug("%s: setup fifo_mode %d\n", musb_driver_name, fifo_mode);
Felipe Balbi550a7372008-07-24 12:27:36 +03001354
1355
Felipe Balbie6c213b2010-03-12 10:29:06 +02001356done:
Felipe Balbi550a7372008-07-24 12:27:36 +03001357 offset = fifo_setup(musb, hw_ep, &ep0_cfg, 0);
1358 /* assert(offset > 0) */
1359
1360 /* NOTE: for RTL versions >= 1.400 EPINFO and RAMINFO would
Felipe Balbica6d1b12008-08-08 12:40:54 +03001361 * be better than static musb->config->num_eps and DYN_FIFO_SIZE...
Felipe Balbi550a7372008-07-24 12:27:36 +03001362 */
1363
1364 for (i = 0; i < n; i++) {
1365 u8 epn = cfg->hw_ep_num;
1366
Felipe Balbica6d1b12008-08-08 12:40:54 +03001367 if (epn >= musb->config->num_eps) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001368 pr_debug("%s: invalid ep %d\n",
1369 musb_driver_name, epn);
David Brownellbb1c9ef2008-11-24 13:06:50 +02001370 return -EINVAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001371 }
1372 offset = fifo_setup(musb, hw_ep + epn, cfg++, offset);
1373 if (offset < 0) {
1374 pr_debug("%s: mem overrun, ep %d\n",
1375 musb_driver_name, epn);
Shubhrajyoti Df69dfa12012-08-07 19:56:31 +05301376 return offset;
Felipe Balbi550a7372008-07-24 12:27:36 +03001377 }
1378 epn++;
1379 musb->nr_endpoints = max(epn, musb->nr_endpoints);
1380 }
1381
Rasmus Villemoes3ff4b572015-11-27 11:38:21 +01001382 pr_debug("%s: %d/%d max ep, %d/%d memory\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001383 musb_driver_name,
Felipe Balbica6d1b12008-08-08 12:40:54 +03001384 n + 1, musb->config->num_eps * 2 - 1,
1385 offset, (1 << (musb->config->ram_bits + 2)));
Felipe Balbi550a7372008-07-24 12:27:36 +03001386
Felipe Balbi550a7372008-07-24 12:27:36 +03001387 if (!musb->bulk_ep) {
1388 pr_debug("%s: missing bulk\n", musb_driver_name);
1389 return -EINVAL;
1390 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001391
1392 return 0;
1393}
1394
1395
1396/*
1397 * ep_config_from_hw - when MUSB_C_DYNFIFO_DEF is false
1398 * @param musb the controller
1399 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001400static int ep_config_from_hw(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001401{
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001402 u8 epnum = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001403 struct musb_hw_ep *hw_ep;
Felipe Balbia1565442012-08-07 14:00:50 +03001404 void __iomem *mbase = musb->mregs;
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001405 int ret = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001406
Bin Liub99d3652016-06-30 12:12:22 -05001407 musb_dbg(musb, "<== static silicon ep config");
Felipe Balbi550a7372008-07-24 12:27:36 +03001408
1409 /* FIXME pick up ep0 maxpacket size */
1410
Felipe Balbica6d1b12008-08-08 12:40:54 +03001411 for (epnum = 1; epnum < musb->config->num_eps; epnum++) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001412 musb_ep_select(mbase, epnum);
1413 hw_ep = musb->endpoints + epnum;
1414
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001415 ret = musb_read_fifosize(musb, hw_ep, epnum);
1416 if (ret < 0)
Felipe Balbi550a7372008-07-24 12:27:36 +03001417 break;
Felipe Balbi550a7372008-07-24 12:27:36 +03001418
1419 /* FIXME set up hw_ep->{rx,tx}_double_buffered */
1420
Felipe Balbi550a7372008-07-24 12:27:36 +03001421 /* pick an RX/TX endpoint for bulk */
1422 if (hw_ep->max_packet_sz_tx < 512
1423 || hw_ep->max_packet_sz_rx < 512)
1424 continue;
1425
1426 /* REVISIT: this algorithm is lazy, we should at least
1427 * try to pick a double buffered endpoint.
1428 */
1429 if (musb->bulk_ep)
1430 continue;
1431 musb->bulk_ep = hw_ep;
Felipe Balbi550a7372008-07-24 12:27:36 +03001432 }
1433
Felipe Balbi550a7372008-07-24 12:27:36 +03001434 if (!musb->bulk_ep) {
1435 pr_debug("%s: missing bulk\n", musb_driver_name);
1436 return -EINVAL;
1437 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001438
1439 return 0;
1440}
1441
1442enum { MUSB_CONTROLLER_MHDRC, MUSB_CONTROLLER_HDRC, };
1443
1444/* Initialize MUSB (M)HDRC part of the USB hardware subsystem;
1445 * configure endpoints, or take their config from silicon
1446 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001447static int musb_core_init(u16 musb_type, struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001448{
Felipe Balbi550a7372008-07-24 12:27:36 +03001449 u8 reg;
1450 char *type;
Rasmus Villemoes21b031f2016-09-12 21:48:36 -05001451 char aInfo[90];
Felipe Balbi550a7372008-07-24 12:27:36 +03001452 void __iomem *mbase = musb->mregs;
1453 int status = 0;
1454 int i;
1455
1456 /* log core options (read using indexed model) */
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001457 reg = musb_read_configdata(mbase);
Felipe Balbi550a7372008-07-24 12:27:36 +03001458
1459 strcpy(aInfo, (reg & MUSB_CONFIGDATA_UTMIDW) ? "UTMI-16" : "UTMI-8");
Ajay Kumar Gupta51bf0d02009-12-28 13:40:41 +02001460 if (reg & MUSB_CONFIGDATA_DYNFIFO) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001461 strcat(aInfo, ", dyn FIFOs");
Ajay Kumar Gupta51bf0d02009-12-28 13:40:41 +02001462 musb->dyn_fifo = true;
1463 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001464 if (reg & MUSB_CONFIGDATA_MPRXE) {
1465 strcat(aInfo, ", bulk combine");
Felipe Balbi550a7372008-07-24 12:27:36 +03001466 musb->bulk_combine = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001467 }
1468 if (reg & MUSB_CONFIGDATA_MPTXE) {
1469 strcat(aInfo, ", bulk split");
Felipe Balbi550a7372008-07-24 12:27:36 +03001470 musb->bulk_split = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001471 }
1472 if (reg & MUSB_CONFIGDATA_HBRXE) {
1473 strcat(aInfo, ", HB-ISO Rx");
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001474 musb->hb_iso_rx = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001475 }
1476 if (reg & MUSB_CONFIGDATA_HBTXE) {
1477 strcat(aInfo, ", HB-ISO Tx");
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001478 musb->hb_iso_tx = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001479 }
1480 if (reg & MUSB_CONFIGDATA_SOFTCONE)
1481 strcat(aInfo, ", SoftConn");
1482
Rasmus Villemoes3ff4b572015-11-27 11:38:21 +01001483 pr_debug("%s: ConfigData=0x%02x (%s)\n", musb_driver_name, reg, aInfo);
Felipe Balbi550a7372008-07-24 12:27:36 +03001484
Felipe Balbi550a7372008-07-24 12:27:36 +03001485 if (MUSB_CONTROLLER_MHDRC == musb_type) {
1486 musb->is_multipoint = 1;
1487 type = "M";
1488 } else {
1489 musb->is_multipoint = 0;
1490 type = "";
Felipe Balbi550a7372008-07-24 12:27:36 +03001491#ifndef CONFIG_USB_OTG_BLACKLIST_HUB
Rasmus Villemoes3ff4b572015-11-27 11:38:21 +01001492 pr_err("%s: kernel must blacklist external hubs\n",
1493 musb_driver_name);
Felipe Balbi550a7372008-07-24 12:27:36 +03001494#endif
Felipe Balbi550a7372008-07-24 12:27:36 +03001495 }
1496
1497 /* log release info */
Anand Gadiyar32c3b942009-11-16 21:09:21 +05301498 musb->hwvers = musb_read_hwvers(mbase);
Rasmus Villemoes21b031f2016-09-12 21:48:36 -05001499 pr_debug("%s: %sHDRC RTL version %d.%d%s\n",
1500 musb_driver_name, type, MUSB_HWVERS_MAJOR(musb->hwvers),
1501 MUSB_HWVERS_MINOR(musb->hwvers),
1502 (musb->hwvers & MUSB_HWVERS_RC) ? "RC" : "");
Felipe Balbi550a7372008-07-24 12:27:36 +03001503
1504 /* configure ep0 */
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001505 musb_configure_ep0(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001506
1507 /* discover endpoint configuration */
1508 musb->nr_endpoints = 1;
1509 musb->epmask = 1;
1510
Felipe Balbiad517e9e2010-01-21 15:33:54 +02001511 if (musb->dyn_fifo)
1512 status = ep_config_from_table(musb);
1513 else
1514 status = ep_config_from_hw(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001515
1516 if (status < 0)
1517 return status;
1518
1519 /* finish init, and print endpoint config */
1520 for (i = 0; i < musb->nr_endpoints; i++) {
1521 struct musb_hw_ep *hw_ep = musb->endpoints + i;
1522
Tony Lindgren1b40fc52014-11-24 11:05:02 -08001523 hw_ep->fifo = musb->io.fifo_offset(i) + mbase;
Tony Lindgrenebf39922014-11-24 11:05:06 -08001524#if IS_ENABLED(CONFIG_USB_MUSB_TUSB6010)
Tony Lindgren1b40fc52014-11-24 11:05:02 -08001525 if (musb->io.quirks & MUSB_IN_TUSB) {
1526 hw_ep->fifo_async = musb->async + 0x400 +
1527 musb->io.fifo_offset(i);
1528 hw_ep->fifo_sync = musb->sync + 0x400 +
1529 musb->io.fifo_offset(i);
1530 hw_ep->fifo_sync_va =
1531 musb->sync_va + 0x400 + musb->io.fifo_offset(i);
Felipe Balbi550a7372008-07-24 12:27:36 +03001532
Tony Lindgren1b40fc52014-11-24 11:05:02 -08001533 if (i == 0)
1534 hw_ep->conf = mbase - 0x400 + TUSB_EP0_CONF;
1535 else
1536 hw_ep->conf = mbase + 0x400 +
1537 (((i - 1) & 0xf) << 2);
1538 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001539#endif
1540
Tony Lindgrend026e9c2014-11-24 11:05:03 -08001541 hw_ep->regs = musb->io.ep_offset(i, 0) + mbase;
Felipe Balbi550a7372008-07-24 12:27:36 +03001542 hw_ep->rx_reinit = 1;
1543 hw_ep->tx_reinit = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001544
1545 if (hw_ep->max_packet_sz_tx) {
Bin Liub99d3652016-06-30 12:12:22 -05001546 musb_dbg(musb, "%s: hw_ep %d%s, %smax %d",
Felipe Balbi550a7372008-07-24 12:27:36 +03001547 musb_driver_name, i,
1548 hw_ep->is_shared_fifo ? "shared" : "tx",
1549 hw_ep->tx_double_buffered
1550 ? "doublebuffer, " : "",
1551 hw_ep->max_packet_sz_tx);
1552 }
1553 if (hw_ep->max_packet_sz_rx && !hw_ep->is_shared_fifo) {
Bin Liub99d3652016-06-30 12:12:22 -05001554 musb_dbg(musb, "%s: hw_ep %d%s, %smax %d",
Felipe Balbi550a7372008-07-24 12:27:36 +03001555 musb_driver_name, i,
1556 "rx",
1557 hw_ep->rx_double_buffered
1558 ? "doublebuffer, " : "",
1559 hw_ep->max_packet_sz_rx);
1560 }
1561 if (!(hw_ep->max_packet_sz_tx || hw_ep->max_packet_sz_rx))
Bin Liub99d3652016-06-30 12:12:22 -05001562 musb_dbg(musb, "hw_ep %d not configured", i);
Felipe Balbi550a7372008-07-24 12:27:36 +03001563 }
1564
1565 return 0;
1566}
1567
1568/*-------------------------------------------------------------------------*/
1569
Felipe Balbi550a7372008-07-24 12:27:36 +03001570/*
1571 * handle all the irqs defined by the HDRC core. for now we expect: other
1572 * irq sources (phy, dma, etc) will be handled first, musb->int_* values
1573 * will be assigned, and the irq will already have been acked.
1574 *
1575 * called in irq context with spinlock held, irqs blocked
1576 */
1577irqreturn_t musb_interrupt(struct musb *musb)
1578{
1579 irqreturn_t retval = IRQ_NONE;
Felipe Balbi31a0ede2013-12-30 12:42:38 -06001580 unsigned long status;
1581 unsigned long epnum;
Sebastian Andrzej Siewiorb11e94d2012-10-30 19:52:23 +01001582 u8 devctl;
Felipe Balbi31a0ede2013-12-30 12:42:38 -06001583
1584 if (!musb->int_usb && !musb->int_tx && !musb->int_rx)
1585 return IRQ_NONE;
Felipe Balbi550a7372008-07-24 12:27:36 +03001586
1587 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
Felipe Balbi550a7372008-07-24 12:27:36 +03001588
Bin Liucfb9a1b2016-06-30 12:12:25 -05001589 trace_musb_isr(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001590
Felipe Balbie3c93e12013-12-30 12:33:53 -06001591 /**
1592 * According to Mentor Graphics' documentation, flowchart on page 98,
1593 * IRQ should be handled as follows:
1594 *
1595 * . Resume IRQ
1596 * . Session Request IRQ
1597 * . VBUS Error IRQ
1598 * . Suspend IRQ
1599 * . Connect IRQ
1600 * . Disconnect IRQ
1601 * . Reset/Babble IRQ
1602 * . SOF IRQ (we're not using this one)
1603 * . Endpoint 0 IRQ
1604 * . TX Endpoints
1605 * . RX Endpoints
1606 *
1607 * We will be following that flowchart in order to avoid any problems
1608 * that might arise with internal Finite State Machine.
Felipe Balbi550a7372008-07-24 12:27:36 +03001609 */
Felipe Balbie3c93e12013-12-30 12:33:53 -06001610
Sergei Shtylyov7d9645f2010-06-24 23:07:06 +05301611 if (musb->int_usb)
Felipe Balbi31a0ede2013-12-30 12:42:38 -06001612 retval |= musb_stage0_irq(musb, musb->int_usb, devctl);
Felipe Balbi550a7372008-07-24 12:27:36 +03001613
Felipe Balbi550a7372008-07-24 12:27:36 +03001614 if (musb->int_tx & 1) {
Daniel Mackc03da382014-05-26 14:52:36 +02001615 if (is_host_active(musb))
Felipe Balbi550a7372008-07-24 12:27:36 +03001616 retval |= musb_h_ep0_irq(musb);
1617 else
1618 retval |= musb_g_ep0_irq(musb);
Felipe Balbi31a0ede2013-12-30 12:42:38 -06001619
1620 /* we have just handled endpoint 0 IRQ, clear it */
1621 musb->int_tx &= ~BIT(0);
Felipe Balbi550a7372008-07-24 12:27:36 +03001622 }
1623
Felipe Balbi31a0ede2013-12-30 12:42:38 -06001624 status = musb->int_tx;
1625
1626 for_each_set_bit(epnum, &status, 16) {
1627 retval = IRQ_HANDLED;
1628 if (is_host_active(musb))
1629 musb_host_tx(musb, epnum);
1630 else
1631 musb_g_tx(musb, epnum);
Felipe Balbie3c93e12013-12-30 12:33:53 -06001632 }
1633
Felipe Balbi31a0ede2013-12-30 12:42:38 -06001634 status = musb->int_rx;
Felipe Balbi550a7372008-07-24 12:27:36 +03001635
Felipe Balbi31a0ede2013-12-30 12:42:38 -06001636 for_each_set_bit(epnum, &status, 16) {
1637 retval = IRQ_HANDLED;
1638 if (is_host_active(musb))
1639 musb_host_rx(musb, epnum);
1640 else
1641 musb_g_rx(musb, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001642 }
1643
Felipe Balbi550a7372008-07-24 12:27:36 +03001644 return retval;
1645}
Felipe Balbi981430a2011-05-11 13:02:23 +03001646EXPORT_SYMBOL_GPL(musb_interrupt);
Felipe Balbi550a7372008-07-24 12:27:36 +03001647
1648#ifndef CONFIG_MUSB_PIO_ONLY
Bill Pembertond3608b62012-11-19 13:24:34 -05001649static bool use_dma = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001650
1651/* "modprobe ... use_dma=0" etc */
Bin Liu51676c82015-11-13 15:45:24 -06001652module_param(use_dma, bool, 0644);
Felipe Balbi550a7372008-07-24 12:27:36 +03001653MODULE_PARM_DESC(use_dma, "enable/disable use of DMA");
1654
1655void musb_dma_completion(struct musb *musb, u8 epnum, u8 transmit)
1656{
Felipe Balbi550a7372008-07-24 12:27:36 +03001657 /* called with controller lock already held */
1658
1659 if (!epnum) {
Tony Lindgrenf8e9f34f2015-05-01 12:29:27 -07001660 if (!is_cppi_enabled(musb)) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001661 /* endpoint 0 */
Daniel Mackc03da382014-05-26 14:52:36 +02001662 if (is_host_active(musb))
Felipe Balbi550a7372008-07-24 12:27:36 +03001663 musb_h_ep0_irq(musb);
1664 else
1665 musb_g_ep0_irq(musb);
1666 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001667 } else {
1668 /* endpoints 1..15 */
1669 if (transmit) {
Daniel Mackc03da382014-05-26 14:52:36 +02001670 if (is_host_active(musb))
Felipe Balbia04d46d2011-11-24 15:46:27 +02001671 musb_host_tx(musb, epnum);
1672 else
1673 musb_g_tx(musb, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001674 } else {
1675 /* receive */
Daniel Mackc03da382014-05-26 14:52:36 +02001676 if (is_host_active(musb))
Felipe Balbia04d46d2011-11-24 15:46:27 +02001677 musb_host_rx(musb, epnum);
1678 else
1679 musb_g_rx(musb, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001680 }
1681 }
1682}
Arnd Bergmann9a35f872011-10-02 16:45:47 +02001683EXPORT_SYMBOL_GPL(musb_dma_completion);
Felipe Balbi550a7372008-07-24 12:27:36 +03001684
1685#else
1686#define use_dma 0
1687#endif
1688
Tony Lindgren12b7db22016-05-31 10:05:19 -05001689static int (*musb_phy_callback)(enum musb_vbus_id_status status);
Tony Lindgren80555552015-11-30 21:37:12 -08001690
1691/*
1692 * musb_mailbox - optional phy notifier function
1693 * @status phy state change
1694 *
1695 * Optionally gets called from the USB PHY. Note that the USB PHY must be
1696 * disabled at the point the phy_callback is registered or unregistered.
1697 */
Tony Lindgren12b7db22016-05-31 10:05:19 -05001698int musb_mailbox(enum musb_vbus_id_status status)
Tony Lindgren80555552015-11-30 21:37:12 -08001699{
1700 if (musb_phy_callback)
Tony Lindgren12b7db22016-05-31 10:05:19 -05001701 return musb_phy_callback(status);
Tony Lindgren80555552015-11-30 21:37:12 -08001702
Tony Lindgren12b7db22016-05-31 10:05:19 -05001703 return -ENODEV;
Tony Lindgren80555552015-11-30 21:37:12 -08001704};
1705EXPORT_SYMBOL_GPL(musb_mailbox);
1706
Felipe Balbi550a7372008-07-24 12:27:36 +03001707/*-------------------------------------------------------------------------*/
1708
Felipe Balbi550a7372008-07-24 12:27:36 +03001709static ssize_t
1710musb_mode_show(struct device *dev, struct device_attribute *attr, char *buf)
1711{
1712 struct musb *musb = dev_to_musb(dev);
1713 unsigned long flags;
1714 int ret = -EINVAL;
1715
1716 spin_lock_irqsave(&musb->lock, flags);
Antoine Tenarte47d9252014-10-30 18:41:13 +01001717 ret = sprintf(buf, "%s\n", usb_otg_state_string(musb->xceiv->otg->state));
Felipe Balbi550a7372008-07-24 12:27:36 +03001718 spin_unlock_irqrestore(&musb->lock, flags);
1719
1720 return ret;
1721}
1722
1723static ssize_t
1724musb_mode_store(struct device *dev, struct device_attribute *attr,
1725 const char *buf, size_t n)
1726{
1727 struct musb *musb = dev_to_musb(dev);
1728 unsigned long flags;
David Brownell96a274d2008-11-24 13:06:47 +02001729 int status;
Felipe Balbi550a7372008-07-24 12:27:36 +03001730
1731 spin_lock_irqsave(&musb->lock, flags);
David Brownell96a274d2008-11-24 13:06:47 +02001732 if (sysfs_streq(buf, "host"))
1733 status = musb_platform_set_mode(musb, MUSB_HOST);
1734 else if (sysfs_streq(buf, "peripheral"))
1735 status = musb_platform_set_mode(musb, MUSB_PERIPHERAL);
1736 else if (sysfs_streq(buf, "otg"))
1737 status = musb_platform_set_mode(musb, MUSB_OTG);
1738 else
1739 status = -EINVAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001740 spin_unlock_irqrestore(&musb->lock, flags);
1741
David Brownell96a274d2008-11-24 13:06:47 +02001742 return (status == 0) ? n : status;
Felipe Balbi550a7372008-07-24 12:27:36 +03001743}
1744static DEVICE_ATTR(mode, 0644, musb_mode_show, musb_mode_store);
1745
1746static ssize_t
1747musb_vbus_store(struct device *dev, struct device_attribute *attr,
1748 const char *buf, size_t n)
1749{
1750 struct musb *musb = dev_to_musb(dev);
1751 unsigned long flags;
1752 unsigned long val;
1753
1754 if (sscanf(buf, "%lu", &val) < 1) {
Felipe Balbib3b1cc32009-12-15 11:08:43 +02001755 dev_err(dev, "Invalid VBUS timeout ms value\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001756 return -EINVAL;
1757 }
1758
1759 spin_lock_irqsave(&musb->lock, flags);
David Brownellf7f9d632009-03-31 12:32:12 -07001760 /* force T(a_wait_bcon) to be zero/unlimited *OR* valid */
1761 musb->a_wait_bcon = val ? max_t(int, val, OTG_TIME_A_WAIT_BCON) : 0 ;
Antoine Tenarte47d9252014-10-30 18:41:13 +01001762 if (musb->xceiv->otg->state == OTG_STATE_A_WAIT_BCON)
Felipe Balbi550a7372008-07-24 12:27:36 +03001763 musb->is_active = 0;
1764 musb_platform_try_idle(musb, jiffies + msecs_to_jiffies(val));
1765 spin_unlock_irqrestore(&musb->lock, flags);
1766
1767 return n;
1768}
1769
1770static ssize_t
1771musb_vbus_show(struct device *dev, struct device_attribute *attr, char *buf)
1772{
1773 struct musb *musb = dev_to_musb(dev);
1774 unsigned long flags;
1775 unsigned long val;
1776 int vbus;
Roman Alyautdin3bbafac2015-10-12 17:14:32 +03001777 u8 devctl;
Felipe Balbi550a7372008-07-24 12:27:36 +03001778
1779 spin_lock_irqsave(&musb->lock, flags);
1780 val = musb->a_wait_bcon;
1781 vbus = musb_platform_get_vbus_status(musb);
Roman Alyautdin3bbafac2015-10-12 17:14:32 +03001782 if (vbus < 0) {
1783 /* Use default MUSB method by means of DEVCTL register */
1784 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
1785 if ((devctl & MUSB_DEVCTL_VBUS)
1786 == (3 << MUSB_DEVCTL_VBUS_SHIFT))
1787 vbus = 1;
1788 else
1789 vbus = 0;
1790 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001791 spin_unlock_irqrestore(&musb->lock, flags);
1792
David Brownellf7f9d632009-03-31 12:32:12 -07001793 return sprintf(buf, "Vbus %s, timeout %lu msec\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001794 vbus ? "on" : "off", val);
1795}
1796static DEVICE_ATTR(vbus, 0644, musb_vbus_show, musb_vbus_store);
1797
Felipe Balbi550a7372008-07-24 12:27:36 +03001798/* Gadget drivers can't know that a host is connected so they might want
1799 * to start SRP, but users can. This allows userspace to trigger SRP.
1800 */
1801static ssize_t
1802musb_srp_store(struct device *dev, struct device_attribute *attr,
1803 const char *buf, size_t n)
1804{
1805 struct musb *musb = dev_to_musb(dev);
1806 unsigned short srp;
1807
1808 if (sscanf(buf, "%hu", &srp) != 1
1809 || (srp != 1)) {
Felipe Balbib3b1cc32009-12-15 11:08:43 +02001810 dev_err(dev, "SRP: Value must be 1\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001811 return -EINVAL;
1812 }
1813
1814 if (srp == 1)
1815 musb_g_wakeup(musb);
1816
1817 return n;
1818}
1819static DEVICE_ATTR(srp, 0644, NULL, musb_srp_store);
1820
Felipe Balbi94375752009-12-15 11:08:38 +02001821static struct attribute *musb_attributes[] = {
1822 &dev_attr_mode.attr,
1823 &dev_attr_vbus.attr,
Felipe Balbi94375752009-12-15 11:08:38 +02001824 &dev_attr_srp.attr,
Felipe Balbi94375752009-12-15 11:08:38 +02001825 NULL
1826};
1827
1828static const struct attribute_group musb_attr_group = {
1829 .attrs = musb_attributes,
1830};
1831
Tony Lindgren467d5c92016-09-12 21:48:28 -05001832#define MUSB_QUIRK_B_INVALID_VBUS_91 (MUSB_DEVCTL_BDEVICE | \
1833 (2 << MUSB_DEVCTL_VBUS_SHIFT) | \
1834 MUSB_DEVCTL_SESSION)
1835#define MUSB_QUIRK_A_DISCONNECT_19 ((3 << MUSB_DEVCTL_VBUS_SHIFT) | \
1836 MUSB_DEVCTL_SESSION)
1837
1838/*
1839 * Check the musb devctl session bit to determine if we want to
1840 * allow PM runtime for the device. In general, we want to keep things
1841 * active when the session bit is set except after host disconnect.
1842 *
1843 * Only called from musb_irq_work. If this ever needs to get called
1844 * elsewhere, proper locking must be implemented for musb->session.
1845 */
1846static void musb_pm_runtime_check_session(struct musb *musb)
1847{
1848 u8 devctl, s;
1849 int error;
1850
1851 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
1852
1853 /* Handle session status quirks first */
1854 s = MUSB_DEVCTL_FSDEV | MUSB_DEVCTL_LSDEV |
1855 MUSB_DEVCTL_HR;
1856 switch (devctl & ~s) {
1857 case MUSB_QUIRK_B_INVALID_VBUS_91:
Tony Lindgren2b9a8c42016-09-22 15:58:30 -05001858 if (!musb->session && !musb->quirk_invalid_vbus) {
1859 musb->quirk_invalid_vbus = true;
1860 musb_dbg(musb,
1861 "First invalid vbus, assume no session");
1862 return;
1863 }
1864 break;
Tony Lindgren467d5c92016-09-12 21:48:28 -05001865 case MUSB_QUIRK_A_DISCONNECT_19:
1866 if (!musb->session)
1867 break;
1868 musb_dbg(musb, "Allow PM on possible host mode disconnect");
1869 pm_runtime_mark_last_busy(musb->controller);
1870 pm_runtime_put_autosuspend(musb->controller);
1871 musb->session = false;
1872 return;
1873 default:
1874 break;
1875 }
1876
1877 /* No need to do anything if session has not changed */
1878 s = devctl & MUSB_DEVCTL_SESSION;
1879 if (s == musb->session)
1880 return;
1881
1882 /* Block PM or allow PM? */
1883 if (s) {
1884 musb_dbg(musb, "Block PM on active session: %02x", devctl);
1885 error = pm_runtime_get_sync(musb->controller);
1886 if (error < 0)
1887 dev_err(musb->controller, "Could not enable: %i\n",
1888 error);
1889 } else {
1890 musb_dbg(musb, "Allow PM with no session: %02x", devctl);
Tony Lindgren2b9a8c42016-09-22 15:58:30 -05001891 musb->quirk_invalid_vbus = false;
Tony Lindgren467d5c92016-09-12 21:48:28 -05001892 pm_runtime_mark_last_busy(musb->controller);
1893 pm_runtime_put_autosuspend(musb->controller);
1894 }
1895
1896 musb->session = s;
1897}
1898
Felipe Balbi550a7372008-07-24 12:27:36 +03001899/* Only used to provide driver mode change events */
1900static void musb_irq_work(struct work_struct *data)
1901{
1902 struct musb *musb = container_of(data, struct musb, irq_work);
Felipe Balbi550a7372008-07-24 12:27:36 +03001903
Tony Lindgren467d5c92016-09-12 21:48:28 -05001904 musb_pm_runtime_check_session(musb);
1905
Antoine Tenarte47d9252014-10-30 18:41:13 +01001906 if (musb->xceiv->otg->state != musb->xceiv_old_state) {
1907 musb->xceiv_old_state = musb->xceiv->otg->state;
Felipe Balbi550a7372008-07-24 12:27:36 +03001908 sysfs_notify(&musb->controller->kobj, NULL, "mode");
1909 }
1910}
1911
Felipe Balbi83b8f5b2015-02-26 14:27:12 -06001912static void musb_recover_from_babble(struct musb *musb)
Daniel Mackca88fc22014-04-02 13:58:28 +02001913{
Felipe Balbib4dc38f2015-02-26 14:02:35 -06001914 int ret;
1915 u8 devctl;
Daniel Mackca88fc22014-04-02 13:58:28 +02001916
Felipe Balbi02443362015-02-26 14:42:19 -06001917 musb_disable_interrupts(musb);
1918
Felipe Balbi83b8f5b2015-02-26 14:27:12 -06001919 /*
1920 * wait at least 320 cycles of 60MHz clock. That's 5.3us, we will give
1921 * it some slack and wait for 10us.
1922 */
1923 udelay(10);
1924
Felipe Balbib28a6432015-02-26 14:20:58 -06001925 ret = musb_platform_recover(musb);
Felipe Balbiba7ee8b2015-02-26 11:31:49 -06001926 if (ret) {
1927 musb_enable_interrupts(musb);
George Cheriand871c622014-07-16 18:22:11 +05301928 return;
Felipe Balbiba7ee8b2015-02-26 11:31:49 -06001929 }
Daniel Mackca88fc22014-04-02 13:58:28 +02001930
Felipe Balbib4dc38f2015-02-26 14:02:35 -06001931 /* drop session bit */
1932 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
1933 devctl &= ~MUSB_DEVCTL_SESSION;
1934 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
Daniel Mackca88fc22014-04-02 13:58:28 +02001935
Felipe Balbib4dc38f2015-02-26 14:02:35 -06001936 /* tell usbcore about it */
1937 musb_root_disconnect(musb);
Daniel Mackca88fc22014-04-02 13:58:28 +02001938
1939 /*
George Cheriand871c622014-07-16 18:22:11 +05301940 * When a babble condition occurs, the musb controller
1941 * removes the session bit and the endpoint config is lost.
Daniel Mackca88fc22014-04-02 13:58:28 +02001942 */
1943 if (musb->dyn_fifo)
Felipe Balbib4dc38f2015-02-26 14:02:35 -06001944 ret = ep_config_from_table(musb);
Daniel Mackca88fc22014-04-02 13:58:28 +02001945 else
Felipe Balbib4dc38f2015-02-26 14:02:35 -06001946 ret = ep_config_from_hw(musb);
Daniel Mackca88fc22014-04-02 13:58:28 +02001947
Felipe Balbib4dc38f2015-02-26 14:02:35 -06001948 /* restart session */
1949 if (ret == 0)
Daniel Mackca88fc22014-04-02 13:58:28 +02001950 musb_start(musb);
1951}
1952
Felipe Balbi550a7372008-07-24 12:27:36 +03001953/* --------------------------------------------------------------------------
1954 * Init support
1955 */
1956
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001957static struct musb *allocate_instance(struct device *dev,
Petr Kulhavyead22ca2016-02-24 16:27:16 +01001958 const struct musb_hdrc_config *config, void __iomem *mbase)
Felipe Balbi550a7372008-07-24 12:27:36 +03001959{
1960 struct musb *musb;
1961 struct musb_hw_ep *ep;
1962 int epnum;
Daniel Mack74c2e932013-04-10 21:55:45 +02001963 int ret;
Felipe Balbi550a7372008-07-24 12:27:36 +03001964
Daniel Mack74c2e932013-04-10 21:55:45 +02001965 musb = devm_kzalloc(dev, sizeof(*musb), GFP_KERNEL);
1966 if (!musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001967 return NULL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001968
Felipe Balbi550a7372008-07-24 12:27:36 +03001969 INIT_LIST_HEAD(&musb->control);
1970 INIT_LIST_HEAD(&musb->in_bulk);
1971 INIT_LIST_HEAD(&musb->out_bulk);
1972
Felipe Balbi550a7372008-07-24 12:27:36 +03001973 musb->vbuserr_retry = VBUSERR_RETRY_COUNT;
David Brownellf7f9d632009-03-31 12:32:12 -07001974 musb->a_wait_bcon = OTG_TIME_A_WAIT_BCON;
Felipe Balbi550a7372008-07-24 12:27:36 +03001975 musb->mregs = mbase;
1976 musb->ctrl_base = mbase;
1977 musb->nIrq = -ENODEV;
Felipe Balbica6d1b12008-08-08 12:40:54 +03001978 musb->config = config;
Kevin Hilman02582b92008-09-15 12:09:31 +02001979 BUG_ON(musb->config->num_eps > MUSB_C_NUM_EPS);
Felipe Balbi550a7372008-07-24 12:27:36 +03001980 for (epnum = 0, ep = musb->endpoints;
Felipe Balbica6d1b12008-08-08 12:40:54 +03001981 epnum < musb->config->num_eps;
Felipe Balbi550a7372008-07-24 12:27:36 +03001982 epnum++, ep++) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001983 ep->musb = musb;
1984 ep->epnum = epnum;
1985 }
1986
1987 musb->controller = dev;
Felipe Balbi743411b2010-12-01 13:22:05 +02001988
Daniel Mack74c2e932013-04-10 21:55:45 +02001989 ret = musb_host_alloc(musb);
1990 if (ret < 0)
1991 goto err_free;
1992
1993 dev_set_drvdata(dev, musb);
1994
Felipe Balbi550a7372008-07-24 12:27:36 +03001995 return musb;
Daniel Mack74c2e932013-04-10 21:55:45 +02001996
1997err_free:
1998 return NULL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001999}
2000
2001static void musb_free(struct musb *musb)
2002{
2003 /* this has multiple entry modes. it handles fault cleanup after
2004 * probe(), where things may be partially set up, as well as rmmod
2005 * cleanup after everything's been de-activated.
2006 */
2007
2008#ifdef CONFIG_SYSFS
Felipe Balbi94375752009-12-15 11:08:38 +02002009 sysfs_remove_group(&musb->controller->kobj, &musb_attr_group);
Felipe Balbi550a7372008-07-24 12:27:36 +03002010#endif
2011
Ajay Kumar Gupta97a39892009-01-24 17:56:39 -08002012 if (musb->nIrq >= 0) {
2013 if (musb->irq_wake)
2014 disable_irq_wake(musb->nIrq);
Felipe Balbi550a7372008-07-24 12:27:36 +03002015 free_irq(musb->nIrq, musb);
2016 }
Felipe Balbi550a7372008-07-24 12:27:36 +03002017
Daniel Mack74c2e932013-04-10 21:55:45 +02002018 musb_host_free(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03002019}
2020
Daniel Mack8ed1fb72013-12-18 20:23:46 +01002021static void musb_deassert_reset(struct work_struct *work)
2022{
2023 struct musb *musb;
2024 unsigned long flags;
2025
2026 musb = container_of(work, struct musb, deassert_reset_work.work);
2027
2028 spin_lock_irqsave(&musb->lock, flags);
2029
2030 if (musb->port1_status & USB_PORT_STAT_RESET)
2031 musb_port_reset(musb, false);
2032
2033 spin_unlock_irqrestore(&musb->lock, flags);
2034}
2035
Felipe Balbi550a7372008-07-24 12:27:36 +03002036/*
2037 * Perform generic per-controller initialization.
2038 *
Sergei Shtylyov28dd9242012-08-21 21:22:45 +04002039 * @dev: the controller (already clocked, etc)
2040 * @nIrq: IRQ number
2041 * @ctrl: virtual address of controller registers,
Felipe Balbi550a7372008-07-24 12:27:36 +03002042 * not yet corrected for platform-specific offsets
2043 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05002044static int
Felipe Balbi550a7372008-07-24 12:27:36 +03002045musb_init_controller(struct device *dev, int nIrq, void __iomem *ctrl)
2046{
2047 int status;
2048 struct musb *musb;
Jingoo Hanc1a7d672013-07-30 17:03:12 +09002049 struct musb_hdrc_platform_data *plat = dev_get_platdata(dev);
Felipe Balbi550a7372008-07-24 12:27:36 +03002050
2051 /* The driver might handle more features than the board; OK.
2052 * Fail when the board needs a feature that's not enabled.
2053 */
2054 if (!plat) {
Bin Liub99d3652016-06-30 12:12:22 -05002055 dev_err(dev, "no platform_data?\n");
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002056 status = -ENODEV;
2057 goto fail0;
Felipe Balbi550a7372008-07-24 12:27:36 +03002058 }
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002059
Felipe Balbi550a7372008-07-24 12:27:36 +03002060 /* allocate */
Felipe Balbica6d1b12008-08-08 12:40:54 +03002061 musb = allocate_instance(dev, plat->config, ctrl);
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002062 if (!musb) {
2063 status = -ENOMEM;
2064 goto fail0;
2065 }
Felipe Balbi550a7372008-07-24 12:27:36 +03002066
2067 spin_lock_init(&musb->lock);
Felipe Balbi550a7372008-07-24 12:27:36 +03002068 musb->board_set_power = plat->set_power;
Felipe Balbi550a7372008-07-24 12:27:36 +03002069 musb->min_power = plat->min_power;
Felipe Balbif7ec9432010-12-02 09:48:58 +02002070 musb->ops = plat->platform_ops;
Daniel Mack9ad96e62013-04-10 21:55:48 +02002071 musb->port_mode = plat->mode;
Felipe Balbi550a7372008-07-24 12:27:36 +03002072
Tony Lindgren1b40fc52014-11-24 11:05:02 -08002073 /*
2074 * Initialize the default IO functions. At least omap2430 needs
2075 * these early. We initialize the platform specific IO functions
2076 * later on.
2077 */
2078 musb_readb = musb_default_readb;
2079 musb_writeb = musb_default_writeb;
2080 musb_readw = musb_default_readw;
2081 musb_writew = musb_default_writew;
2082 musb_readl = musb_default_readl;
2083 musb_writel = musb_default_writel;
2084
David Brownell84e250f2009-03-31 12:30:04 -07002085 /* The musb_platform_init() call:
Philippe De Swertbaef6532012-11-06 15:32:13 +02002086 * - adjusts musb->mregs
2087 * - sets the musb->isr
Rahul Bedarkar5ae477b2014-01-02 19:27:47 +05302088 * - may initialize an integrated transceiver
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +05302089 * - initializes musb->xceiv, usually by otg_get_phy()
David Brownell84e250f2009-03-31 12:30:04 -07002090 * - stops powering VBUS
David Brownell84e250f2009-03-31 12:30:04 -07002091 *
Joe Perches7c9d4402011-06-23 11:39:20 -07002092 * There are various transceiver configurations. Blackfin,
David Brownell84e250f2009-03-31 12:30:04 -07002093 * DaVinci, TUSB60x0, and others integrate them. OMAP3 uses
2094 * external/discrete ones in various flavors (twl4030 family,
2095 * isp1504, non-OTG, etc) mostly hooking up through ULPI.
Felipe Balbi550a7372008-07-24 12:27:36 +03002096 */
Hema Kalliguddiea65df52010-09-22 19:27:40 -05002097 status = musb_platform_init(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03002098 if (status < 0)
Felipe Balbi03491762010-12-02 09:57:08 +02002099 goto fail1;
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002100
Felipe Balbi550a7372008-07-24 12:27:36 +03002101 if (!musb->isr) {
2102 status = -ENODEV;
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02002103 goto fail2;
Felipe Balbi550a7372008-07-24 12:27:36 +03002104 }
2105
Tony Lindgren1b40fc52014-11-24 11:05:02 -08002106 if (musb->ops->quirks)
2107 musb->io.quirks = musb->ops->quirks;
2108
Ben Hutchingsda96cfc2015-05-24 04:27:32 +01002109 /* Most devices use indexed offset or flat offset */
Tony Lindgrend026e9c2014-11-24 11:05:03 -08002110 if (musb->io.quirks & MUSB_INDEXED_EP) {
2111 musb->io.ep_offset = musb_indexed_ep_offset;
2112 musb->io.ep_select = musb_indexed_ep_select;
2113 } else {
2114 musb->io.ep_offset = musb_flat_ep_offset;
2115 musb->io.ep_select = musb_flat_ep_select;
2116 }
Hans de Goede47a82732015-03-20 20:11:14 +01002117 /* And override them with platform specific ops if specified. */
2118 if (musb->ops->ep_offset)
2119 musb->io.ep_offset = musb->ops->ep_offset;
2120 if (musb->ops->ep_select)
2121 musb->io.ep_select = musb->ops->ep_select;
Tony Lindgrend026e9c2014-11-24 11:05:03 -08002122
Ben Hutchingsda96cfc2015-05-24 04:27:32 +01002123 /* At least tusb6010 has its own offsets */
2124 if (musb->ops->ep_offset)
2125 musb->io.ep_offset = musb->ops->ep_offset;
2126 if (musb->ops->ep_select)
2127 musb->io.ep_select = musb->ops->ep_select;
2128
Tony Lindgren8a77f052014-11-24 11:05:04 -08002129 if (musb->ops->fifo_mode)
2130 fifo_mode = musb->ops->fifo_mode;
2131 else
2132 fifo_mode = 4;
2133
Tony Lindgren1b40fc52014-11-24 11:05:02 -08002134 if (musb->ops->fifo_offset)
2135 musb->io.fifo_offset = musb->ops->fifo_offset;
2136 else
2137 musb->io.fifo_offset = musb_default_fifo_offset;
2138
Hans de Goede6cc2af62015-03-20 20:11:12 +01002139 if (musb->ops->busctl_offset)
2140 musb->io.busctl_offset = musb->ops->busctl_offset;
2141 else
2142 musb->io.busctl_offset = musb_default_busctl_offset;
2143
Tony Lindgren1b40fc52014-11-24 11:05:02 -08002144 if (musb->ops->readb)
2145 musb_readb = musb->ops->readb;
2146 if (musb->ops->writeb)
2147 musb_writeb = musb->ops->writeb;
2148 if (musb->ops->readw)
2149 musb_readw = musb->ops->readw;
2150 if (musb->ops->writew)
2151 musb_writew = musb->ops->writew;
2152 if (musb->ops->readl)
2153 musb_readl = musb->ops->readl;
2154 if (musb->ops->writel)
2155 musb_writel = musb->ops->writel;
2156
Tony Lindgren7f6283e2015-05-01 12:29:28 -07002157#ifndef CONFIG_MUSB_PIO_ONLY
2158 if (!musb->ops->dma_init || !musb->ops->dma_exit) {
2159 dev_err(dev, "DMA controller not set\n");
Aaro Koskinen7d32cde2015-11-23 21:50:11 +02002160 status = -ENODEV;
Tony Lindgren7f6283e2015-05-01 12:29:28 -07002161 goto fail2;
2162 }
2163 musb_dma_controller_create = musb->ops->dma_init;
2164 musb_dma_controller_destroy = musb->ops->dma_exit;
2165#endif
2166
Tony Lindgren1b40fc52014-11-24 11:05:02 -08002167 if (musb->ops->read_fifo)
2168 musb->io.read_fifo = musb->ops->read_fifo;
2169 else
2170 musb->io.read_fifo = musb_default_read_fifo;
2171
2172 if (musb->ops->write_fifo)
2173 musb->io.write_fifo = musb->ops->write_fifo;
2174 else
2175 musb->io.write_fifo = musb_default_write_fifo;
2176
Heikki Krogerusffb865b2010-03-25 13:25:28 +02002177 if (!musb->xceiv->io_ops) {
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +02002178 musb->xceiv->io_dev = musb->controller;
Heikki Krogerusffb865b2010-03-25 13:25:28 +02002179 musb->xceiv->io_priv = musb->mregs;
2180 musb->xceiv->io_ops = &musb_ulpi_access;
2181 }
2182
Tony Lindgren80555552015-11-30 21:37:12 -08002183 if (musb->ops->phy_callback)
2184 musb_phy_callback = musb->ops->phy_callback;
2185
Tony Lindgrenf730f202016-05-31 10:05:12 -05002186 /*
2187 * We need musb_read/write functions initialized for PM.
2188 * Note that at least 2430 glue needs autosuspend delay
2189 * somewhere above 300 ms for the hardware to idle properly
2190 * after disconnecting the cable in host mode. Let's use
2191 * 500 ms for some margin.
2192 */
2193 pm_runtime_use_autosuspend(musb->controller);
2194 pm_runtime_set_autosuspend_delay(musb->controller, 500);
2195 pm_runtime_enable(musb->controller);
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02002196 pm_runtime_get_sync(musb->controller);
2197
Uwe Kleine-König39cee202015-12-18 12:02:04 +01002198 status = usb_phy_init(musb->xceiv);
2199 if (status < 0)
2200 goto err_usb_phy_init;
2201
Sebastian Andrzej Siewior48054142013-10-16 12:50:08 +02002202 if (use_dma && dev->dma_mask) {
Tony Lindgren7f6283e2015-05-01 12:29:28 -07002203 musb->dma_controller =
2204 musb_dma_controller_create(musb, musb->mregs);
Sebastian Andrzej Siewior48054142013-10-16 12:50:08 +02002205 if (IS_ERR(musb->dma_controller)) {
2206 status = PTR_ERR(musb->dma_controller);
2207 goto fail2_5;
2208 }
2209 }
Felipe Balbi550a7372008-07-24 12:27:36 +03002210
2211 /* be sure interrupts are disabled before connecting ISR */
2212 musb_platform_disable(musb);
2213 musb_generic_disable(musb);
2214
Sebastian Andrzej Siewior66fadea2013-11-06 09:25:27 +01002215 /* Init IRQ workqueue before request_irq */
2216 INIT_WORK(&musb->irq_work, musb_irq_work);
Daniel Mack8ed1fb72013-12-18 20:23:46 +01002217 INIT_DELAYED_WORK(&musb->deassert_reset_work, musb_deassert_reset);
2218 INIT_DELAYED_WORK(&musb->finish_resume_work, musb_host_finish_resume);
Sebastian Andrzej Siewior66fadea2013-11-06 09:25:27 +01002219
Felipe Balbi550a7372008-07-24 12:27:36 +03002220 /* setup musb parts of the core (especially endpoints) */
Felipe Balbica6d1b12008-08-08 12:40:54 +03002221 status = musb_core_init(plat->config->multipoint
Felipe Balbi550a7372008-07-24 12:27:36 +03002222 ? MUSB_CONTROLLER_MHDRC
2223 : MUSB_CONTROLLER_HDRC, musb);
2224 if (status < 0)
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002225 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03002226
David Brownellf7f9d632009-03-31 12:32:12 -07002227 setup_timer(&musb->otg_timer, musb_otg_timer_func, (unsigned long) musb);
David Brownellf7f9d632009-03-31 12:32:12 -07002228
Felipe Balbi550a7372008-07-24 12:27:36 +03002229 /* attach to the IRQ */
Kay Sievers427c4f32008-11-07 01:52:53 +01002230 if (request_irq(nIrq, musb->isr, 0, dev_name(dev), musb)) {
Felipe Balbi550a7372008-07-24 12:27:36 +03002231 dev_err(dev, "request_irq %d failed!\n", nIrq);
2232 status = -ENODEV;
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002233 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03002234 }
2235 musb->nIrq = nIrq;
Felipe Balbi032ec492011-11-24 15:46:26 +02002236 /* FIXME this handles wakeup irqs wrong */
Felipe Balbic48a5152008-11-24 13:06:53 +02002237 if (enable_irq_wake(nIrq) == 0) {
2238 musb->irq_wake = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03002239 device_init_wakeup(dev, 1);
Felipe Balbic48a5152008-11-24 13:06:53 +02002240 } else {
2241 musb->irq_wake = 0;
2242 }
Felipe Balbi550a7372008-07-24 12:27:36 +03002243
Felipe Balbi032ec492011-11-24 15:46:26 +02002244 /* program PHY to use external vBus if required */
2245 if (plat->extvbus) {
2246 u8 busctl = musb_read_ulpi_buscontrol(musb->mregs);
2247 busctl |= MUSB_ULPI_USE_EXTVBUS;
2248 musb_write_ulpi_buscontrol(musb->mregs, busctl);
Felipe Balbi550a7372008-07-24 12:27:36 +03002249 }
Felipe Balbi550a7372008-07-24 12:27:36 +03002250
Grazvydas Ignotase5615112013-03-10 02:48:55 +02002251 if (musb->xceiv->otg->default_a) {
2252 MUSB_HST_MODE(musb);
Antoine Tenarte47d9252014-10-30 18:41:13 +01002253 musb->xceiv->otg->state = OTG_STATE_A_IDLE;
Grazvydas Ignotase5615112013-03-10 02:48:55 +02002254 } else {
2255 MUSB_DEV_MODE(musb);
Antoine Tenarte47d9252014-10-30 18:41:13 +01002256 musb->xceiv->otg->state = OTG_STATE_B_IDLE;
Grazvydas Ignotase5615112013-03-10 02:48:55 +02002257 }
Anand Gadiyar07a8cdd2010-11-18 18:54:17 +05302258
Daniel Mack6c5f6a62013-04-10 21:55:49 +02002259 switch (musb->port_mode) {
2260 case MUSB_PORT_MODE_HOST:
2261 status = musb_host_setup(musb, plat->power);
Felipe Balbi2df67612013-10-29 12:17:17 -05002262 if (status < 0)
2263 goto fail3;
2264 status = musb_platform_set_mode(musb, MUSB_HOST);
Daniel Mack6c5f6a62013-04-10 21:55:49 +02002265 break;
2266 case MUSB_PORT_MODE_GADGET:
2267 status = musb_gadget_setup(musb);
Felipe Balbi2df67612013-10-29 12:17:17 -05002268 if (status < 0)
2269 goto fail3;
2270 status = musb_platform_set_mode(musb, MUSB_PERIPHERAL);
Daniel Mack6c5f6a62013-04-10 21:55:49 +02002271 break;
2272 case MUSB_PORT_MODE_DUAL_ROLE:
2273 status = musb_host_setup(musb, plat->power);
2274 if (status < 0)
2275 goto fail3;
2276 status = musb_gadget_setup(musb);
Felipe Balbi2df67612013-10-29 12:17:17 -05002277 if (status) {
Sebastian Andrzej Siewior0d2dd7e2013-10-16 12:50:06 +02002278 musb_host_cleanup(musb);
Felipe Balbi2df67612013-10-29 12:17:17 -05002279 goto fail3;
2280 }
2281 status = musb_platform_set_mode(musb, MUSB_OTG);
Daniel Mack6c5f6a62013-04-10 21:55:49 +02002282 break;
2283 default:
2284 dev_err(dev, "unsupported port mode %d\n", musb->port_mode);
2285 break;
2286 }
Felipe Balbi550a7372008-07-24 12:27:36 +03002287
Sergei Shtylyov461972d2010-03-25 13:14:32 +02002288 if (status < 0)
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002289 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03002290
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02002291 status = musb_init_debugfs(musb);
2292 if (status < 0)
Felipe Balbib0f9da72010-03-25 13:25:18 +02002293 goto fail4;
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02002294
Felipe Balbi94375752009-12-15 11:08:38 +02002295 status = sysfs_create_group(&musb->controller->kobj, &musb_attr_group);
Felipe Balbi28c2c512008-09-11 11:53:25 +03002296 if (status)
Felipe Balbib0f9da72010-03-25 13:25:18 +02002297 goto fail5;
Felipe Balbi28c2c512008-09-11 11:53:25 +03002298
Tony Lindgren7099dbc2016-05-31 10:05:11 -05002299 pm_runtime_mark_last_busy(musb->controller);
2300 pm_runtime_put_autosuspend(musb->controller);
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02002301
Felipe Balbi28c2c512008-09-11 11:53:25 +03002302 return 0;
2303
Felipe Balbib0f9da72010-03-25 13:25:18 +02002304fail5:
2305 musb_exit_debugfs(musb);
2306
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002307fail4:
Felipe Balbi032ec492011-11-24 15:46:26 +02002308 musb_gadget_cleanup(musb);
Sebastian Andrzej Siewior0d2dd7e2013-10-16 12:50:06 +02002309 musb_host_cleanup(musb);
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002310
2311fail3:
Sebastian Andrzej Siewior66fadea2013-11-06 09:25:27 +01002312 cancel_work_sync(&musb->irq_work);
Daniel Mack8ed1fb72013-12-18 20:23:46 +01002313 cancel_delayed_work_sync(&musb->finish_resume_work);
2314 cancel_delayed_work_sync(&musb->deassert_reset_work);
Sebastian Andrzej Siewiorf3ce4d52013-06-19 17:38:14 +02002315 if (musb->dma_controller)
Tony Lindgren7f6283e2015-05-01 12:29:28 -07002316 musb_dma_controller_destroy(musb->dma_controller);
Uwe Kleine-König39cee202015-12-18 12:02:04 +01002317
Sebastian Andrzej Siewior48054142013-10-16 12:50:08 +02002318fail2_5:
Uwe Kleine-König39cee202015-12-18 12:02:04 +01002319 usb_phy_shutdown(musb->xceiv);
2320
2321err_usb_phy_init:
Tony Lindgren7099dbc2016-05-31 10:05:11 -05002322 pm_runtime_dont_use_autosuspend(musb->controller);
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02002323 pm_runtime_put_sync(musb->controller);
Tony Lindgrenf730f202016-05-31 10:05:12 -05002324 pm_runtime_disable(musb->controller);
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02002325
2326fail2:
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002327 if (musb->irq_wake)
2328 device_init_wakeup(dev, 0);
Felipe Balbi28c2c512008-09-11 11:53:25 +03002329 musb_platform_exit(musb);
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002330
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002331fail1:
Felipe Balbi28c2c512008-09-11 11:53:25 +03002332 dev_err(musb->controller,
2333 "musb_init_controller failed with status %d\n", status);
2334
Felipe Balbi28c2c512008-09-11 11:53:25 +03002335 musb_free(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03002336
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002337fail0:
2338
Felipe Balbi550a7372008-07-24 12:27:36 +03002339 return status;
2340
Felipe Balbi550a7372008-07-24 12:27:36 +03002341}
2342
2343/*-------------------------------------------------------------------------*/
2344
2345/* all implementations (PCI bridge to FPGA, VLYNQ, etc) should just
2346 * bridge to a platform device; this driver then suffices.
2347 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05002348static int musb_probe(struct platform_device *pdev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002349{
2350 struct device *dev = &pdev->dev;
Hema Kalliguddifcf173e2010-09-29 11:26:39 -05002351 int irq = platform_get_irq_byname(pdev, "mc");
Felipe Balbi550a7372008-07-24 12:27:36 +03002352 struct resource *iomem;
2353 void __iomem *base;
2354
Varka Bhadram1f79b262014-10-29 21:30:19 +05302355 if (irq <= 0)
Felipe Balbi550a7372008-07-24 12:27:36 +03002356 return -ENODEV;
2357
Varka Bhadram1f79b262014-10-29 21:30:19 +05302358 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Felipe Balbib42f7f32013-02-04 19:04:45 +02002359 base = devm_ioremap_resource(dev, iomem);
2360 if (IS_ERR(base))
2361 return PTR_ERR(base);
Felipe Balbi550a7372008-07-24 12:27:36 +03002362
Felipe Balbib42f7f32013-02-04 19:04:45 +02002363 return musb_init_controller(dev, irq, base);
Felipe Balbi550a7372008-07-24 12:27:36 +03002364}
2365
Bill Pembertonfb4e98a2012-11-19 13:26:20 -05002366static int musb_remove(struct platform_device *pdev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002367{
Ajay Kumar Gupta8d2421e2012-08-31 11:09:50 +00002368 struct device *dev = &pdev->dev;
2369 struct musb *musb = dev_to_musb(dev);
Tony Lindgren302f6802016-05-31 10:05:10 -05002370 unsigned long flags;
Felipe Balbi550a7372008-07-24 12:27:36 +03002371
2372 /* this gets called on rmmod.
2373 * - Host mode: host may still be active
2374 * - Peripheral mode: peripheral is deactivated (or never-activated)
2375 * - OTG mode: both roles are deactivated (or never-activated)
2376 */
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02002377 musb_exit_debugfs(musb);
Tony Lindgren302f6802016-05-31 10:05:10 -05002378
Tony Lindgrenf730f202016-05-31 10:05:12 -05002379 cancel_work_sync(&musb->irq_work);
2380 cancel_delayed_work_sync(&musb->finish_resume_work);
2381 cancel_delayed_work_sync(&musb->deassert_reset_work);
Tony Lindgren302f6802016-05-31 10:05:10 -05002382 pm_runtime_get_sync(musb->controller);
2383 musb_host_cleanup(musb);
2384 musb_gadget_cleanup(musb);
2385 spin_lock_irqsave(&musb->lock, flags);
2386 musb_platform_disable(musb);
2387 musb_generic_disable(musb);
2388 spin_unlock_irqrestore(&musb->lock, flags);
2389 musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
Tony Lindgren7099dbc2016-05-31 10:05:11 -05002390 pm_runtime_dont_use_autosuspend(musb->controller);
2391 pm_runtime_put_sync(musb->controller);
2392 pm_runtime_disable(musb->controller);
Tony Lindgrenf730f202016-05-31 10:05:12 -05002393 musb_platform_exit(musb);
2394 musb_phy_callback = NULL;
2395 if (musb->dma_controller)
2396 musb_dma_controller_destroy(musb->dma_controller);
2397 usb_phy_shutdown(musb->xceiv);
Felipe Balbi550a7372008-07-24 12:27:36 +03002398 musb_free(musb);
Ajay Kumar Gupta8d2421e2012-08-31 11:09:50 +00002399 device_init_wakeup(dev, 0);
Felipe Balbi550a7372008-07-24 12:27:36 +03002400 return 0;
2401}
2402
2403#ifdef CONFIG_PM
2404
Felipe Balbi3c8a5fc2010-12-02 12:28:39 +02002405static void musb_save_context(struct musb *musb)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002406{
2407 int i;
2408 void __iomem *musb_base = musb->mregs;
Bob Liuae9b2ad2010-09-24 13:44:07 +03002409 void __iomem *epio;
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002410
Felipe Balbi032ec492011-11-24 15:46:26 +02002411 musb->context.frame = musb_readw(musb_base, MUSB_FRAME);
2412 musb->context.testmode = musb_readb(musb_base, MUSB_TESTMODE);
2413 musb->context.busctl = musb_read_ulpi_buscontrol(musb->mregs);
Felipe Balbi74211072010-12-01 13:53:27 +02002414 musb->context.power = musb_readb(musb_base, MUSB_POWER);
Felipe Balbi74211072010-12-01 13:53:27 +02002415 musb->context.intrusbe = musb_readb(musb_base, MUSB_INTRUSBE);
2416 musb->context.index = musb_readb(musb_base, MUSB_INDEX);
2417 musb->context.devctl = musb_readb(musb_base, MUSB_DEVCTL);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002418
Bob Liuae9b2ad2010-09-24 13:44:07 +03002419 for (i = 0; i < musb->config->num_eps; ++i) {
Felipe Balbie4e5b1362011-06-27 15:57:46 +03002420 struct musb_hw_ep *hw_ep;
2421
2422 hw_ep = &musb->endpoints[i];
2423 if (!hw_ep)
2424 continue;
2425
2426 epio = hw_ep->regs;
2427 if (!epio)
2428 continue;
2429
Vikram Panditaea737552011-09-07 09:19:23 -07002430 musb_writeb(musb_base, MUSB_INDEX, i);
Felipe Balbi74211072010-12-01 13:53:27 +02002431 musb->context.index_regs[i].txmaxp =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002432 musb_readw(epio, MUSB_TXMAXP);
Felipe Balbi74211072010-12-01 13:53:27 +02002433 musb->context.index_regs[i].txcsr =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002434 musb_readw(epio, MUSB_TXCSR);
Felipe Balbi74211072010-12-01 13:53:27 +02002435 musb->context.index_regs[i].rxmaxp =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002436 musb_readw(epio, MUSB_RXMAXP);
Felipe Balbi74211072010-12-01 13:53:27 +02002437 musb->context.index_regs[i].rxcsr =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002438 musb_readw(epio, MUSB_RXCSR);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002439
2440 if (musb->dyn_fifo) {
Felipe Balbi74211072010-12-01 13:53:27 +02002441 musb->context.index_regs[i].txfifoadd =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002442 musb_read_txfifoadd(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002443 musb->context.index_regs[i].rxfifoadd =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002444 musb_read_rxfifoadd(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002445 musb->context.index_regs[i].txfifosz =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002446 musb_read_txfifosz(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002447 musb->context.index_regs[i].rxfifosz =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002448 musb_read_rxfifosz(musb_base);
2449 }
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002450
Felipe Balbi032ec492011-11-24 15:46:26 +02002451 musb->context.index_regs[i].txtype =
2452 musb_readb(epio, MUSB_TXTYPE);
2453 musb->context.index_regs[i].txinterval =
2454 musb_readb(epio, MUSB_TXINTERVAL);
2455 musb->context.index_regs[i].rxtype =
2456 musb_readb(epio, MUSB_RXTYPE);
2457 musb->context.index_regs[i].rxinterval =
2458 musb_readb(epio, MUSB_RXINTERVAL);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002459
Felipe Balbi032ec492011-11-24 15:46:26 +02002460 musb->context.index_regs[i].txfunaddr =
Hans de Goede6cc2af62015-03-20 20:11:12 +01002461 musb_read_txfunaddr(musb, i);
Felipe Balbi032ec492011-11-24 15:46:26 +02002462 musb->context.index_regs[i].txhubaddr =
Hans de Goede6cc2af62015-03-20 20:11:12 +01002463 musb_read_txhubaddr(musb, i);
Felipe Balbi032ec492011-11-24 15:46:26 +02002464 musb->context.index_regs[i].txhubport =
Hans de Goede6cc2af62015-03-20 20:11:12 +01002465 musb_read_txhubport(musb, i);
Felipe Balbi032ec492011-11-24 15:46:26 +02002466
2467 musb->context.index_regs[i].rxfunaddr =
Hans de Goede6cc2af62015-03-20 20:11:12 +01002468 musb_read_rxfunaddr(musb, i);
Felipe Balbi032ec492011-11-24 15:46:26 +02002469 musb->context.index_regs[i].rxhubaddr =
Hans de Goede6cc2af62015-03-20 20:11:12 +01002470 musb_read_rxhubaddr(musb, i);
Felipe Balbi032ec492011-11-24 15:46:26 +02002471 musb->context.index_regs[i].rxhubport =
Hans de Goede6cc2af62015-03-20 20:11:12 +01002472 musb_read_rxhubport(musb, i);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002473 }
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002474}
2475
Felipe Balbi3c8a5fc2010-12-02 12:28:39 +02002476static void musb_restore_context(struct musb *musb)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002477{
2478 int i;
2479 void __iomem *musb_base = musb->mregs;
Bob Liuae9b2ad2010-09-24 13:44:07 +03002480 void __iomem *epio;
Roger Quadros33f8d752014-02-04 15:29:33 +02002481 u8 power;
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002482
Felipe Balbi032ec492011-11-24 15:46:26 +02002483 musb_writew(musb_base, MUSB_FRAME, musb->context.frame);
2484 musb_writeb(musb_base, MUSB_TESTMODE, musb->context.testmode);
2485 musb_write_ulpi_buscontrol(musb->mregs, musb->context.busctl);
Roger Quadros33f8d752014-02-04 15:29:33 +02002486
2487 /* Don't affect SUSPENDM/RESUME bits in POWER reg */
2488 power = musb_readb(musb_base, MUSB_POWER);
2489 power &= MUSB_POWER_SUSPENDM | MUSB_POWER_RESUME;
2490 musb->context.power &= ~(MUSB_POWER_SUSPENDM | MUSB_POWER_RESUME);
2491 power |= musb->context.power;
2492 musb_writeb(musb_base, MUSB_POWER, power);
2493
Sebastian Andrzej Siewiorb18d26f2012-10-30 19:52:26 +01002494 musb_writew(musb_base, MUSB_INTRTXE, musb->intrtxe);
Sebastian Andrzej Siewioraf5ec142012-10-30 19:52:25 +01002495 musb_writew(musb_base, MUSB_INTRRXE, musb->intrrxe);
Felipe Balbi74211072010-12-01 13:53:27 +02002496 musb_writeb(musb_base, MUSB_INTRUSBE, musb->context.intrusbe);
Bin Liu84ac5d12016-05-31 10:05:24 -05002497 if (musb->context.devctl & MUSB_DEVCTL_SESSION)
2498 musb_writeb(musb_base, MUSB_DEVCTL, musb->context.devctl);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002499
Bob Liuae9b2ad2010-09-24 13:44:07 +03002500 for (i = 0; i < musb->config->num_eps; ++i) {
Felipe Balbie4e5b1362011-06-27 15:57:46 +03002501 struct musb_hw_ep *hw_ep;
2502
2503 hw_ep = &musb->endpoints[i];
2504 if (!hw_ep)
2505 continue;
2506
2507 epio = hw_ep->regs;
2508 if (!epio)
2509 continue;
2510
Vikram Panditaea737552011-09-07 09:19:23 -07002511 musb_writeb(musb_base, MUSB_INDEX, i);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002512 musb_writew(epio, MUSB_TXMAXP,
Felipe Balbi74211072010-12-01 13:53:27 +02002513 musb->context.index_regs[i].txmaxp);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002514 musb_writew(epio, MUSB_TXCSR,
Felipe Balbi74211072010-12-01 13:53:27 +02002515 musb->context.index_regs[i].txcsr);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002516 musb_writew(epio, MUSB_RXMAXP,
Felipe Balbi74211072010-12-01 13:53:27 +02002517 musb->context.index_regs[i].rxmaxp);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002518 musb_writew(epio, MUSB_RXCSR,
Felipe Balbi74211072010-12-01 13:53:27 +02002519 musb->context.index_regs[i].rxcsr);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002520
2521 if (musb->dyn_fifo) {
2522 musb_write_txfifosz(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002523 musb->context.index_regs[i].txfifosz);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002524 musb_write_rxfifosz(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002525 musb->context.index_regs[i].rxfifosz);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002526 musb_write_txfifoadd(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002527 musb->context.index_regs[i].txfifoadd);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002528 musb_write_rxfifoadd(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002529 musb->context.index_regs[i].rxfifoadd);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002530 }
2531
Felipe Balbi032ec492011-11-24 15:46:26 +02002532 musb_writeb(epio, MUSB_TXTYPE,
Felipe Balbi74211072010-12-01 13:53:27 +02002533 musb->context.index_regs[i].txtype);
Felipe Balbi032ec492011-11-24 15:46:26 +02002534 musb_writeb(epio, MUSB_TXINTERVAL,
Felipe Balbi74211072010-12-01 13:53:27 +02002535 musb->context.index_regs[i].txinterval);
Felipe Balbi032ec492011-11-24 15:46:26 +02002536 musb_writeb(epio, MUSB_RXTYPE,
Felipe Balbi74211072010-12-01 13:53:27 +02002537 musb->context.index_regs[i].rxtype);
Felipe Balbi032ec492011-11-24 15:46:26 +02002538 musb_writeb(epio, MUSB_RXINTERVAL,
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002539
Felipe Balbi032ec492011-11-24 15:46:26 +02002540 musb->context.index_regs[i].rxinterval);
Hans de Goede6cc2af62015-03-20 20:11:12 +01002541 musb_write_txfunaddr(musb, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002542 musb->context.index_regs[i].txfunaddr);
Hans de Goede6cc2af62015-03-20 20:11:12 +01002543 musb_write_txhubaddr(musb, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002544 musb->context.index_regs[i].txhubaddr);
Hans de Goede6cc2af62015-03-20 20:11:12 +01002545 musb_write_txhubport(musb, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002546 musb->context.index_regs[i].txhubport);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002547
Hans de Goede6cc2af62015-03-20 20:11:12 +01002548 musb_write_rxfunaddr(musb, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002549 musb->context.index_regs[i].rxfunaddr);
Hans de Goede6cc2af62015-03-20 20:11:12 +01002550 musb_write_rxhubaddr(musb, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002551 musb->context.index_regs[i].rxhubaddr);
Hans de Goede6cc2af62015-03-20 20:11:12 +01002552 musb_write_rxhubport(musb, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002553 musb->context.index_regs[i].rxhubport);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002554 }
Ajay Kumar Gupta3c5fec72011-07-08 15:06:13 +05302555 musb_writeb(musb_base, MUSB_INDEX, musb->context.index);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002556}
2557
Magnus Damm48fea962009-07-08 13:22:56 +02002558static int musb_suspend(struct device *dev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002559{
Felipe Balbi82207962011-06-27 15:57:12 +03002560 struct musb *musb = dev_to_musb(dev);
Felipe Balbi550a7372008-07-24 12:27:36 +03002561 unsigned long flags;
Felipe Balbi550a7372008-07-24 12:27:36 +03002562
Pascal Huerst6fc6f4b2015-09-03 10:50:58 +02002563 musb_platform_disable(musb);
2564 musb_generic_disable(musb);
2565
Felipe Balbi550a7372008-07-24 12:27:36 +03002566 spin_lock_irqsave(&musb->lock, flags);
2567
2568 if (is_peripheral_active(musb)) {
2569 /* FIXME force disconnect unless we know USB will wake
2570 * the system up quickly enough to respond ...
2571 */
2572 } else if (is_host_active(musb)) {
2573 /* we know all the children are suspended; sometimes
2574 * they will even be wakeup-enabled.
2575 */
2576 }
2577
Daniel Mackc3384122013-11-25 22:26:40 +01002578 musb_save_context(musb);
2579
Felipe Balbi550a7372008-07-24 12:27:36 +03002580 spin_unlock_irqrestore(&musb->lock, flags);
2581 return 0;
2582}
2583
Sebastian Andrzej Siewior3e87d9a2014-10-27 10:49:42 +01002584static int musb_resume(struct device *dev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002585{
Daniel Mackc3384122013-11-25 22:26:40 +01002586 struct musb *musb = dev_to_musb(dev);
Sebastian Andrzej Siewiorb87fd2f2014-10-27 19:06:18 +01002587 u8 devctl;
2588 u8 mask;
Daniel Mackc3384122013-11-25 22:26:40 +01002589
2590 /*
2591 * For static cmos like DaVinci, register values were preserved
Kim Kyuwon0ec8fd72009-03-26 18:56:51 -07002592 * unless for some reason the whole soc powered down or the USB
2593 * module got reset through the PSC (vs just being disabled).
Daniel Mackc3384122013-11-25 22:26:40 +01002594 *
2595 * For the DSPS glue layer though, a full register restore has to
2596 * be done. As it shouldn't harm other platforms, we do it
2597 * unconditionally.
Felipe Balbi550a7372008-07-24 12:27:36 +03002598 */
Daniel Mackc3384122013-11-25 22:26:40 +01002599
2600 musb_restore_context(musb);
2601
Sebastian Andrzej Siewiorb87fd2f2014-10-27 19:06:18 +01002602 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
2603 mask = MUSB_DEVCTL_BDEVICE | MUSB_DEVCTL_FSDEV | MUSB_DEVCTL_LSDEV;
2604 if ((devctl & mask) != (musb->context.devctl & mask))
2605 musb->port1_status = 0;
Sebastian Andrzej Siewiorbaadd522014-10-27 19:06:19 +01002606 if (musb->need_finish_resume) {
2607 musb->need_finish_resume = 0;
2608 schedule_delayed_work(&musb->finish_resume_work,
Felipe Balbi309be232015-02-13 14:46:27 -06002609 msecs_to_jiffies(USB_RESUME_TIMEOUT));
Sebastian Andrzej Siewiorbaadd522014-10-27 19:06:19 +01002610 }
Sebastian Andrzej Siewiora1fc1922014-11-13 18:33:08 +01002611
2612 /*
2613 * The USB HUB code expects the device to be in RPM_ACTIVE once it came
2614 * out of suspend
2615 */
2616 pm_runtime_disable(dev);
2617 pm_runtime_set_active(dev);
2618 pm_runtime_enable(dev);
Pascal Huerst6fc6f4b2015-09-03 10:50:58 +02002619
2620 musb_start(musb);
2621
Felipe Balbi550a7372008-07-24 12:27:36 +03002622 return 0;
2623}
2624
Hema HK7acc6192011-02-28 14:19:34 +05302625static int musb_runtime_suspend(struct device *dev)
2626{
2627 struct musb *musb = dev_to_musb(dev);
2628
2629 musb_save_context(musb);
2630
2631 return 0;
2632}
2633
2634static int musb_runtime_resume(struct device *dev)
2635{
2636 struct musb *musb = dev_to_musb(dev);
2637 static int first = 1;
2638
2639 /*
2640 * When pm_runtime_get_sync called for the first time in driver
2641 * init, some of the structure is still not initialized which is
2642 * used in restore function. But clock needs to be
2643 * enabled before any register access, so
2644 * pm_runtime_get_sync has to be called.
2645 * Also context restore without save does not make
2646 * any sense
2647 */
2648 if (!first)
2649 musb_restore_context(musb);
2650 first = 0;
2651
Bin Liu9298b4a2015-02-03 11:02:10 -06002652 if (musb->need_finish_resume) {
2653 musb->need_finish_resume = 0;
2654 schedule_delayed_work(&musb->finish_resume_work,
Felipe Balbi309be232015-02-13 14:46:27 -06002655 msecs_to_jiffies(USB_RESUME_TIMEOUT));
Bin Liu9298b4a2015-02-03 11:02:10 -06002656 }
2657
Hema HK7acc6192011-02-28 14:19:34 +05302658 return 0;
2659}
2660
Alexey Dobriyan47145212009-12-14 18:00:08 -08002661static const struct dev_pm_ops musb_dev_pm_ops = {
Magnus Damm48fea962009-07-08 13:22:56 +02002662 .suspend = musb_suspend,
Sebastian Andrzej Siewior3e87d9a2014-10-27 10:49:42 +01002663 .resume = musb_resume,
Hema HK7acc6192011-02-28 14:19:34 +05302664 .runtime_suspend = musb_runtime_suspend,
2665 .runtime_resume = musb_runtime_resume,
Magnus Damm48fea962009-07-08 13:22:56 +02002666};
2667
2668#define MUSB_DEV_PM_OPS (&musb_dev_pm_ops)
Felipe Balbi550a7372008-07-24 12:27:36 +03002669#else
Magnus Damm48fea962009-07-08 13:22:56 +02002670#define MUSB_DEV_PM_OPS NULL
Felipe Balbi550a7372008-07-24 12:27:36 +03002671#endif
2672
2673static struct platform_driver musb_driver = {
2674 .driver = {
2675 .name = (char *)musb_driver_name,
2676 .bus = &platform_bus_type,
Magnus Damm48fea962009-07-08 13:22:56 +02002677 .pm = MUSB_DEV_PM_OPS,
Felipe Balbi550a7372008-07-24 12:27:36 +03002678 },
Felipe Balbie9e8c852012-01-26 12:40:23 +02002679 .probe = musb_probe,
Bill Pemberton76904172012-11-19 13:21:08 -05002680 .remove = musb_remove,
Felipe Balbi550a7372008-07-24 12:27:36 +03002681};
2682
Ezequiel Garcia89f836a2013-12-26 09:24:52 -03002683module_platform_driver(musb_driver);