blob: 74fc3069cb42c2aab7f7d173cf6f42c73c0fb133 [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;
Maulik Mankad0ea52ff2009-12-22 16:19:53 +05301451 char aInfo[90], aRevision[32], aDate[12];
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 aDate[0] = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001486 if (MUSB_CONTROLLER_MHDRC == musb_type) {
1487 musb->is_multipoint = 1;
1488 type = "M";
1489 } else {
1490 musb->is_multipoint = 0;
1491 type = "";
Felipe Balbi550a7372008-07-24 12:27:36 +03001492#ifndef CONFIG_USB_OTG_BLACKLIST_HUB
Rasmus Villemoes3ff4b572015-11-27 11:38:21 +01001493 pr_err("%s: kernel must blacklist external hubs\n",
1494 musb_driver_name);
Felipe Balbi550a7372008-07-24 12:27:36 +03001495#endif
Felipe Balbi550a7372008-07-24 12:27:36 +03001496 }
1497
1498 /* log release info */
Anand Gadiyar32c3b942009-11-16 21:09:21 +05301499 musb->hwvers = musb_read_hwvers(mbase);
1500 snprintf(aRevision, 32, "%d.%d%s", MUSB_HWVERS_MAJOR(musb->hwvers),
1501 MUSB_HWVERS_MINOR(musb->hwvers),
1502 (musb->hwvers & MUSB_HWVERS_RC) ? "RC" : "");
Rasmus Villemoes3ff4b572015-11-27 11:38:21 +01001503 pr_debug("%s: %sHDRC RTL version %s %s\n",
1504 musb_driver_name, type, aRevision, aDate);
Felipe Balbi550a7372008-07-24 12:27:36 +03001505
1506 /* configure ep0 */
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001507 musb_configure_ep0(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001508
1509 /* discover endpoint configuration */
1510 musb->nr_endpoints = 1;
1511 musb->epmask = 1;
1512
Felipe Balbiad517e9e2010-01-21 15:33:54 +02001513 if (musb->dyn_fifo)
1514 status = ep_config_from_table(musb);
1515 else
1516 status = ep_config_from_hw(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001517
1518 if (status < 0)
1519 return status;
1520
1521 /* finish init, and print endpoint config */
1522 for (i = 0; i < musb->nr_endpoints; i++) {
1523 struct musb_hw_ep *hw_ep = musb->endpoints + i;
1524
Tony Lindgren1b40fc52014-11-24 11:05:02 -08001525 hw_ep->fifo = musb->io.fifo_offset(i) + mbase;
Tony Lindgrenebf39922014-11-24 11:05:06 -08001526#if IS_ENABLED(CONFIG_USB_MUSB_TUSB6010)
Tony Lindgren1b40fc52014-11-24 11:05:02 -08001527 if (musb->io.quirks & MUSB_IN_TUSB) {
1528 hw_ep->fifo_async = musb->async + 0x400 +
1529 musb->io.fifo_offset(i);
1530 hw_ep->fifo_sync = musb->sync + 0x400 +
1531 musb->io.fifo_offset(i);
1532 hw_ep->fifo_sync_va =
1533 musb->sync_va + 0x400 + musb->io.fifo_offset(i);
Felipe Balbi550a7372008-07-24 12:27:36 +03001534
Tony Lindgren1b40fc52014-11-24 11:05:02 -08001535 if (i == 0)
1536 hw_ep->conf = mbase - 0x400 + TUSB_EP0_CONF;
1537 else
1538 hw_ep->conf = mbase + 0x400 +
1539 (((i - 1) & 0xf) << 2);
1540 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001541#endif
1542
Tony Lindgrend026e9c2014-11-24 11:05:03 -08001543 hw_ep->regs = musb->io.ep_offset(i, 0) + mbase;
Felipe Balbi550a7372008-07-24 12:27:36 +03001544 hw_ep->rx_reinit = 1;
1545 hw_ep->tx_reinit = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001546
1547 if (hw_ep->max_packet_sz_tx) {
Bin Liub99d3652016-06-30 12:12:22 -05001548 musb_dbg(musb, "%s: hw_ep %d%s, %smax %d",
Felipe Balbi550a7372008-07-24 12:27:36 +03001549 musb_driver_name, i,
1550 hw_ep->is_shared_fifo ? "shared" : "tx",
1551 hw_ep->tx_double_buffered
1552 ? "doublebuffer, " : "",
1553 hw_ep->max_packet_sz_tx);
1554 }
1555 if (hw_ep->max_packet_sz_rx && !hw_ep->is_shared_fifo) {
Bin Liub99d3652016-06-30 12:12:22 -05001556 musb_dbg(musb, "%s: hw_ep %d%s, %smax %d",
Felipe Balbi550a7372008-07-24 12:27:36 +03001557 musb_driver_name, i,
1558 "rx",
1559 hw_ep->rx_double_buffered
1560 ? "doublebuffer, " : "",
1561 hw_ep->max_packet_sz_rx);
1562 }
1563 if (!(hw_ep->max_packet_sz_tx || hw_ep->max_packet_sz_rx))
Bin Liub99d3652016-06-30 12:12:22 -05001564 musb_dbg(musb, "hw_ep %d not configured", i);
Felipe Balbi550a7372008-07-24 12:27:36 +03001565 }
1566
1567 return 0;
1568}
1569
1570/*-------------------------------------------------------------------------*/
1571
Felipe Balbi550a7372008-07-24 12:27:36 +03001572/*
1573 * handle all the irqs defined by the HDRC core. for now we expect: other
1574 * irq sources (phy, dma, etc) will be handled first, musb->int_* values
1575 * will be assigned, and the irq will already have been acked.
1576 *
1577 * called in irq context with spinlock held, irqs blocked
1578 */
1579irqreturn_t musb_interrupt(struct musb *musb)
1580{
1581 irqreturn_t retval = IRQ_NONE;
Felipe Balbi31a0ede2013-12-30 12:42:38 -06001582 unsigned long status;
1583 unsigned long epnum;
Sebastian Andrzej Siewiorb11e94d2012-10-30 19:52:23 +01001584 u8 devctl;
Felipe Balbi31a0ede2013-12-30 12:42:38 -06001585
1586 if (!musb->int_usb && !musb->int_tx && !musb->int_rx)
1587 return IRQ_NONE;
Felipe Balbi550a7372008-07-24 12:27:36 +03001588
1589 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
Felipe Balbi550a7372008-07-24 12:27:36 +03001590
Bin Liucfb9a1b2016-06-30 12:12:25 -05001591 trace_musb_isr(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001592
Felipe Balbie3c93e12013-12-30 12:33:53 -06001593 /**
1594 * According to Mentor Graphics' documentation, flowchart on page 98,
1595 * IRQ should be handled as follows:
1596 *
1597 * . Resume IRQ
1598 * . Session Request IRQ
1599 * . VBUS Error IRQ
1600 * . Suspend IRQ
1601 * . Connect IRQ
1602 * . Disconnect IRQ
1603 * . Reset/Babble IRQ
1604 * . SOF IRQ (we're not using this one)
1605 * . Endpoint 0 IRQ
1606 * . TX Endpoints
1607 * . RX Endpoints
1608 *
1609 * We will be following that flowchart in order to avoid any problems
1610 * that might arise with internal Finite State Machine.
Felipe Balbi550a7372008-07-24 12:27:36 +03001611 */
Felipe Balbie3c93e12013-12-30 12:33:53 -06001612
Sergei Shtylyov7d9645f2010-06-24 23:07:06 +05301613 if (musb->int_usb)
Felipe Balbi31a0ede2013-12-30 12:42:38 -06001614 retval |= musb_stage0_irq(musb, musb->int_usb, devctl);
Felipe Balbi550a7372008-07-24 12:27:36 +03001615
Felipe Balbi550a7372008-07-24 12:27:36 +03001616 if (musb->int_tx & 1) {
Daniel Mackc03da382014-05-26 14:52:36 +02001617 if (is_host_active(musb))
Felipe Balbi550a7372008-07-24 12:27:36 +03001618 retval |= musb_h_ep0_irq(musb);
1619 else
1620 retval |= musb_g_ep0_irq(musb);
Felipe Balbi31a0ede2013-12-30 12:42:38 -06001621
1622 /* we have just handled endpoint 0 IRQ, clear it */
1623 musb->int_tx &= ~BIT(0);
Felipe Balbi550a7372008-07-24 12:27:36 +03001624 }
1625
Felipe Balbi31a0ede2013-12-30 12:42:38 -06001626 status = musb->int_tx;
1627
1628 for_each_set_bit(epnum, &status, 16) {
1629 retval = IRQ_HANDLED;
1630 if (is_host_active(musb))
1631 musb_host_tx(musb, epnum);
1632 else
1633 musb_g_tx(musb, epnum);
Felipe Balbie3c93e12013-12-30 12:33:53 -06001634 }
1635
Felipe Balbi31a0ede2013-12-30 12:42:38 -06001636 status = musb->int_rx;
Felipe Balbi550a7372008-07-24 12:27:36 +03001637
Felipe Balbi31a0ede2013-12-30 12:42:38 -06001638 for_each_set_bit(epnum, &status, 16) {
1639 retval = IRQ_HANDLED;
1640 if (is_host_active(musb))
1641 musb_host_rx(musb, epnum);
1642 else
1643 musb_g_rx(musb, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001644 }
1645
Felipe Balbi550a7372008-07-24 12:27:36 +03001646 return retval;
1647}
Felipe Balbi981430a2011-05-11 13:02:23 +03001648EXPORT_SYMBOL_GPL(musb_interrupt);
Felipe Balbi550a7372008-07-24 12:27:36 +03001649
1650#ifndef CONFIG_MUSB_PIO_ONLY
Bill Pembertond3608b62012-11-19 13:24:34 -05001651static bool use_dma = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001652
1653/* "modprobe ... use_dma=0" etc */
Bin Liu51676c82015-11-13 15:45:24 -06001654module_param(use_dma, bool, 0644);
Felipe Balbi550a7372008-07-24 12:27:36 +03001655MODULE_PARM_DESC(use_dma, "enable/disable use of DMA");
1656
1657void musb_dma_completion(struct musb *musb, u8 epnum, u8 transmit)
1658{
Felipe Balbi550a7372008-07-24 12:27:36 +03001659 /* called with controller lock already held */
1660
1661 if (!epnum) {
Tony Lindgrenf8e9f34f2015-05-01 12:29:27 -07001662 if (!is_cppi_enabled(musb)) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001663 /* endpoint 0 */
Daniel Mackc03da382014-05-26 14:52:36 +02001664 if (is_host_active(musb))
Felipe Balbi550a7372008-07-24 12:27:36 +03001665 musb_h_ep0_irq(musb);
1666 else
1667 musb_g_ep0_irq(musb);
1668 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001669 } else {
1670 /* endpoints 1..15 */
1671 if (transmit) {
Daniel Mackc03da382014-05-26 14:52:36 +02001672 if (is_host_active(musb))
Felipe Balbia04d46d2011-11-24 15:46:27 +02001673 musb_host_tx(musb, epnum);
1674 else
1675 musb_g_tx(musb, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001676 } else {
1677 /* receive */
Daniel Mackc03da382014-05-26 14:52:36 +02001678 if (is_host_active(musb))
Felipe Balbia04d46d2011-11-24 15:46:27 +02001679 musb_host_rx(musb, epnum);
1680 else
1681 musb_g_rx(musb, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001682 }
1683 }
1684}
Arnd Bergmann9a35f872011-10-02 16:45:47 +02001685EXPORT_SYMBOL_GPL(musb_dma_completion);
Felipe Balbi550a7372008-07-24 12:27:36 +03001686
1687#else
1688#define use_dma 0
1689#endif
1690
Tony Lindgren12b7db22016-05-31 10:05:19 -05001691static int (*musb_phy_callback)(enum musb_vbus_id_status status);
Tony Lindgren80555552015-11-30 21:37:12 -08001692
1693/*
1694 * musb_mailbox - optional phy notifier function
1695 * @status phy state change
1696 *
1697 * Optionally gets called from the USB PHY. Note that the USB PHY must be
1698 * disabled at the point the phy_callback is registered or unregistered.
1699 */
Tony Lindgren12b7db22016-05-31 10:05:19 -05001700int musb_mailbox(enum musb_vbus_id_status status)
Tony Lindgren80555552015-11-30 21:37:12 -08001701{
1702 if (musb_phy_callback)
Tony Lindgren12b7db22016-05-31 10:05:19 -05001703 return musb_phy_callback(status);
Tony Lindgren80555552015-11-30 21:37:12 -08001704
Tony Lindgren12b7db22016-05-31 10:05:19 -05001705 return -ENODEV;
Tony Lindgren80555552015-11-30 21:37:12 -08001706};
1707EXPORT_SYMBOL_GPL(musb_mailbox);
1708
Felipe Balbi550a7372008-07-24 12:27:36 +03001709/*-------------------------------------------------------------------------*/
1710
Felipe Balbi550a7372008-07-24 12:27:36 +03001711static ssize_t
1712musb_mode_show(struct device *dev, struct device_attribute *attr, char *buf)
1713{
1714 struct musb *musb = dev_to_musb(dev);
1715 unsigned long flags;
1716 int ret = -EINVAL;
1717
1718 spin_lock_irqsave(&musb->lock, flags);
Antoine Tenarte47d9252014-10-30 18:41:13 +01001719 ret = sprintf(buf, "%s\n", usb_otg_state_string(musb->xceiv->otg->state));
Felipe Balbi550a7372008-07-24 12:27:36 +03001720 spin_unlock_irqrestore(&musb->lock, flags);
1721
1722 return ret;
1723}
1724
1725static ssize_t
1726musb_mode_store(struct device *dev, struct device_attribute *attr,
1727 const char *buf, size_t n)
1728{
1729 struct musb *musb = dev_to_musb(dev);
1730 unsigned long flags;
David Brownell96a274d2008-11-24 13:06:47 +02001731 int status;
Felipe Balbi550a7372008-07-24 12:27:36 +03001732
1733 spin_lock_irqsave(&musb->lock, flags);
David Brownell96a274d2008-11-24 13:06:47 +02001734 if (sysfs_streq(buf, "host"))
1735 status = musb_platform_set_mode(musb, MUSB_HOST);
1736 else if (sysfs_streq(buf, "peripheral"))
1737 status = musb_platform_set_mode(musb, MUSB_PERIPHERAL);
1738 else if (sysfs_streq(buf, "otg"))
1739 status = musb_platform_set_mode(musb, MUSB_OTG);
1740 else
1741 status = -EINVAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001742 spin_unlock_irqrestore(&musb->lock, flags);
1743
David Brownell96a274d2008-11-24 13:06:47 +02001744 return (status == 0) ? n : status;
Felipe Balbi550a7372008-07-24 12:27:36 +03001745}
1746static DEVICE_ATTR(mode, 0644, musb_mode_show, musb_mode_store);
1747
1748static ssize_t
1749musb_vbus_store(struct device *dev, struct device_attribute *attr,
1750 const char *buf, size_t n)
1751{
1752 struct musb *musb = dev_to_musb(dev);
1753 unsigned long flags;
1754 unsigned long val;
1755
1756 if (sscanf(buf, "%lu", &val) < 1) {
Felipe Balbib3b1cc32009-12-15 11:08:43 +02001757 dev_err(dev, "Invalid VBUS timeout ms value\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001758 return -EINVAL;
1759 }
1760
1761 spin_lock_irqsave(&musb->lock, flags);
David Brownellf7f9d632009-03-31 12:32:12 -07001762 /* force T(a_wait_bcon) to be zero/unlimited *OR* valid */
1763 musb->a_wait_bcon = val ? max_t(int, val, OTG_TIME_A_WAIT_BCON) : 0 ;
Antoine Tenarte47d9252014-10-30 18:41:13 +01001764 if (musb->xceiv->otg->state == OTG_STATE_A_WAIT_BCON)
Felipe Balbi550a7372008-07-24 12:27:36 +03001765 musb->is_active = 0;
1766 musb_platform_try_idle(musb, jiffies + msecs_to_jiffies(val));
1767 spin_unlock_irqrestore(&musb->lock, flags);
1768
1769 return n;
1770}
1771
1772static ssize_t
1773musb_vbus_show(struct device *dev, struct device_attribute *attr, char *buf)
1774{
1775 struct musb *musb = dev_to_musb(dev);
1776 unsigned long flags;
1777 unsigned long val;
1778 int vbus;
Roman Alyautdin3bbafac2015-10-12 17:14:32 +03001779 u8 devctl;
Felipe Balbi550a7372008-07-24 12:27:36 +03001780
1781 spin_lock_irqsave(&musb->lock, flags);
1782 val = musb->a_wait_bcon;
1783 vbus = musb_platform_get_vbus_status(musb);
Roman Alyautdin3bbafac2015-10-12 17:14:32 +03001784 if (vbus < 0) {
1785 /* Use default MUSB method by means of DEVCTL register */
1786 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
1787 if ((devctl & MUSB_DEVCTL_VBUS)
1788 == (3 << MUSB_DEVCTL_VBUS_SHIFT))
1789 vbus = 1;
1790 else
1791 vbus = 0;
1792 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001793 spin_unlock_irqrestore(&musb->lock, flags);
1794
David Brownellf7f9d632009-03-31 12:32:12 -07001795 return sprintf(buf, "Vbus %s, timeout %lu msec\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001796 vbus ? "on" : "off", val);
1797}
1798static DEVICE_ATTR(vbus, 0644, musb_vbus_show, musb_vbus_store);
1799
Felipe Balbi550a7372008-07-24 12:27:36 +03001800/* Gadget drivers can't know that a host is connected so they might want
1801 * to start SRP, but users can. This allows userspace to trigger SRP.
1802 */
1803static ssize_t
1804musb_srp_store(struct device *dev, struct device_attribute *attr,
1805 const char *buf, size_t n)
1806{
1807 struct musb *musb = dev_to_musb(dev);
1808 unsigned short srp;
1809
1810 if (sscanf(buf, "%hu", &srp) != 1
1811 || (srp != 1)) {
Felipe Balbib3b1cc32009-12-15 11:08:43 +02001812 dev_err(dev, "SRP: Value must be 1\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001813 return -EINVAL;
1814 }
1815
1816 if (srp == 1)
1817 musb_g_wakeup(musb);
1818
1819 return n;
1820}
1821static DEVICE_ATTR(srp, 0644, NULL, musb_srp_store);
1822
Felipe Balbi94375752009-12-15 11:08:38 +02001823static struct attribute *musb_attributes[] = {
1824 &dev_attr_mode.attr,
1825 &dev_attr_vbus.attr,
Felipe Balbi94375752009-12-15 11:08:38 +02001826 &dev_attr_srp.attr,
Felipe Balbi94375752009-12-15 11:08:38 +02001827 NULL
1828};
1829
1830static const struct attribute_group musb_attr_group = {
1831 .attrs = musb_attributes,
1832};
1833
Felipe Balbi550a7372008-07-24 12:27:36 +03001834/* Only used to provide driver mode change events */
1835static void musb_irq_work(struct work_struct *data)
1836{
1837 struct musb *musb = container_of(data, struct musb, irq_work);
Felipe Balbi550a7372008-07-24 12:27:36 +03001838
Antoine Tenarte47d9252014-10-30 18:41:13 +01001839 if (musb->xceiv->otg->state != musb->xceiv_old_state) {
1840 musb->xceiv_old_state = musb->xceiv->otg->state;
Felipe Balbi550a7372008-07-24 12:27:36 +03001841 sysfs_notify(&musb->controller->kobj, NULL, "mode");
1842 }
1843}
1844
Felipe Balbi83b8f5b2015-02-26 14:27:12 -06001845static void musb_recover_from_babble(struct musb *musb)
Daniel Mackca88fc22014-04-02 13:58:28 +02001846{
Felipe Balbib4dc38f2015-02-26 14:02:35 -06001847 int ret;
1848 u8 devctl;
Daniel Mackca88fc22014-04-02 13:58:28 +02001849
Felipe Balbi02443362015-02-26 14:42:19 -06001850 musb_disable_interrupts(musb);
1851
Felipe Balbi83b8f5b2015-02-26 14:27:12 -06001852 /*
1853 * wait at least 320 cycles of 60MHz clock. That's 5.3us, we will give
1854 * it some slack and wait for 10us.
1855 */
1856 udelay(10);
1857
Felipe Balbib28a6432015-02-26 14:20:58 -06001858 ret = musb_platform_recover(musb);
Felipe Balbiba7ee8b2015-02-26 11:31:49 -06001859 if (ret) {
1860 musb_enable_interrupts(musb);
George Cheriand871c622014-07-16 18:22:11 +05301861 return;
Felipe Balbiba7ee8b2015-02-26 11:31:49 -06001862 }
Daniel Mackca88fc22014-04-02 13:58:28 +02001863
Felipe Balbib4dc38f2015-02-26 14:02:35 -06001864 /* drop session bit */
1865 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
1866 devctl &= ~MUSB_DEVCTL_SESSION;
1867 musb_writeb(musb->mregs, MUSB_DEVCTL, devctl);
Daniel Mackca88fc22014-04-02 13:58:28 +02001868
Felipe Balbib4dc38f2015-02-26 14:02:35 -06001869 /* tell usbcore about it */
1870 musb_root_disconnect(musb);
Daniel Mackca88fc22014-04-02 13:58:28 +02001871
1872 /*
George Cheriand871c622014-07-16 18:22:11 +05301873 * When a babble condition occurs, the musb controller
1874 * removes the session bit and the endpoint config is lost.
Daniel Mackca88fc22014-04-02 13:58:28 +02001875 */
1876 if (musb->dyn_fifo)
Felipe Balbib4dc38f2015-02-26 14:02:35 -06001877 ret = ep_config_from_table(musb);
Daniel Mackca88fc22014-04-02 13:58:28 +02001878 else
Felipe Balbib4dc38f2015-02-26 14:02:35 -06001879 ret = ep_config_from_hw(musb);
Daniel Mackca88fc22014-04-02 13:58:28 +02001880
Felipe Balbib4dc38f2015-02-26 14:02:35 -06001881 /* restart session */
1882 if (ret == 0)
Daniel Mackca88fc22014-04-02 13:58:28 +02001883 musb_start(musb);
1884}
1885
Felipe Balbi550a7372008-07-24 12:27:36 +03001886/* --------------------------------------------------------------------------
1887 * Init support
1888 */
1889
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001890static struct musb *allocate_instance(struct device *dev,
Petr Kulhavyead22ca2016-02-24 16:27:16 +01001891 const struct musb_hdrc_config *config, void __iomem *mbase)
Felipe Balbi550a7372008-07-24 12:27:36 +03001892{
1893 struct musb *musb;
1894 struct musb_hw_ep *ep;
1895 int epnum;
Daniel Mack74c2e932013-04-10 21:55:45 +02001896 int ret;
Felipe Balbi550a7372008-07-24 12:27:36 +03001897
Daniel Mack74c2e932013-04-10 21:55:45 +02001898 musb = devm_kzalloc(dev, sizeof(*musb), GFP_KERNEL);
1899 if (!musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001900 return NULL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001901
Felipe Balbi550a7372008-07-24 12:27:36 +03001902 INIT_LIST_HEAD(&musb->control);
1903 INIT_LIST_HEAD(&musb->in_bulk);
1904 INIT_LIST_HEAD(&musb->out_bulk);
1905
Felipe Balbi550a7372008-07-24 12:27:36 +03001906 musb->vbuserr_retry = VBUSERR_RETRY_COUNT;
David Brownellf7f9d632009-03-31 12:32:12 -07001907 musb->a_wait_bcon = OTG_TIME_A_WAIT_BCON;
Felipe Balbi550a7372008-07-24 12:27:36 +03001908 musb->mregs = mbase;
1909 musb->ctrl_base = mbase;
1910 musb->nIrq = -ENODEV;
Felipe Balbica6d1b12008-08-08 12:40:54 +03001911 musb->config = config;
Kevin Hilman02582b92008-09-15 12:09:31 +02001912 BUG_ON(musb->config->num_eps > MUSB_C_NUM_EPS);
Felipe Balbi550a7372008-07-24 12:27:36 +03001913 for (epnum = 0, ep = musb->endpoints;
Felipe Balbica6d1b12008-08-08 12:40:54 +03001914 epnum < musb->config->num_eps;
Felipe Balbi550a7372008-07-24 12:27:36 +03001915 epnum++, ep++) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001916 ep->musb = musb;
1917 ep->epnum = epnum;
1918 }
1919
1920 musb->controller = dev;
Felipe Balbi743411b2010-12-01 13:22:05 +02001921
Daniel Mack74c2e932013-04-10 21:55:45 +02001922 ret = musb_host_alloc(musb);
1923 if (ret < 0)
1924 goto err_free;
1925
1926 dev_set_drvdata(dev, musb);
1927
Felipe Balbi550a7372008-07-24 12:27:36 +03001928 return musb;
Daniel Mack74c2e932013-04-10 21:55:45 +02001929
1930err_free:
1931 return NULL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001932}
1933
1934static void musb_free(struct musb *musb)
1935{
1936 /* this has multiple entry modes. it handles fault cleanup after
1937 * probe(), where things may be partially set up, as well as rmmod
1938 * cleanup after everything's been de-activated.
1939 */
1940
1941#ifdef CONFIG_SYSFS
Felipe Balbi94375752009-12-15 11:08:38 +02001942 sysfs_remove_group(&musb->controller->kobj, &musb_attr_group);
Felipe Balbi550a7372008-07-24 12:27:36 +03001943#endif
1944
Ajay Kumar Gupta97a39892009-01-24 17:56:39 -08001945 if (musb->nIrq >= 0) {
1946 if (musb->irq_wake)
1947 disable_irq_wake(musb->nIrq);
Felipe Balbi550a7372008-07-24 12:27:36 +03001948 free_irq(musb->nIrq, musb);
1949 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001950
Daniel Mack74c2e932013-04-10 21:55:45 +02001951 musb_host_free(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001952}
1953
Daniel Mack8ed1fb72013-12-18 20:23:46 +01001954static void musb_deassert_reset(struct work_struct *work)
1955{
1956 struct musb *musb;
1957 unsigned long flags;
1958
1959 musb = container_of(work, struct musb, deassert_reset_work.work);
1960
1961 spin_lock_irqsave(&musb->lock, flags);
1962
1963 if (musb->port1_status & USB_PORT_STAT_RESET)
1964 musb_port_reset(musb, false);
1965
1966 spin_unlock_irqrestore(&musb->lock, flags);
1967}
1968
Felipe Balbi550a7372008-07-24 12:27:36 +03001969/*
1970 * Perform generic per-controller initialization.
1971 *
Sergei Shtylyov28dd9242012-08-21 21:22:45 +04001972 * @dev: the controller (already clocked, etc)
1973 * @nIrq: IRQ number
1974 * @ctrl: virtual address of controller registers,
Felipe Balbi550a7372008-07-24 12:27:36 +03001975 * not yet corrected for platform-specific offsets
1976 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001977static int
Felipe Balbi550a7372008-07-24 12:27:36 +03001978musb_init_controller(struct device *dev, int nIrq, void __iomem *ctrl)
1979{
1980 int status;
1981 struct musb *musb;
Jingoo Hanc1a7d672013-07-30 17:03:12 +09001982 struct musb_hdrc_platform_data *plat = dev_get_platdata(dev);
Felipe Balbi550a7372008-07-24 12:27:36 +03001983
1984 /* The driver might handle more features than the board; OK.
1985 * Fail when the board needs a feature that's not enabled.
1986 */
1987 if (!plat) {
Bin Liub99d3652016-06-30 12:12:22 -05001988 dev_err(dev, "no platform_data?\n");
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001989 status = -ENODEV;
1990 goto fail0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001991 }
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001992
Felipe Balbi550a7372008-07-24 12:27:36 +03001993 /* allocate */
Felipe Balbica6d1b12008-08-08 12:40:54 +03001994 musb = allocate_instance(dev, plat->config, ctrl);
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001995 if (!musb) {
1996 status = -ENOMEM;
1997 goto fail0;
1998 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001999
2000 spin_lock_init(&musb->lock);
Felipe Balbi550a7372008-07-24 12:27:36 +03002001 musb->board_set_power = plat->set_power;
Felipe Balbi550a7372008-07-24 12:27:36 +03002002 musb->min_power = plat->min_power;
Felipe Balbif7ec9432010-12-02 09:48:58 +02002003 musb->ops = plat->platform_ops;
Daniel Mack9ad96e62013-04-10 21:55:48 +02002004 musb->port_mode = plat->mode;
Felipe Balbi550a7372008-07-24 12:27:36 +03002005
Tony Lindgren1b40fc52014-11-24 11:05:02 -08002006 /*
2007 * Initialize the default IO functions. At least omap2430 needs
2008 * these early. We initialize the platform specific IO functions
2009 * later on.
2010 */
2011 musb_readb = musb_default_readb;
2012 musb_writeb = musb_default_writeb;
2013 musb_readw = musb_default_readw;
2014 musb_writew = musb_default_writew;
2015 musb_readl = musb_default_readl;
2016 musb_writel = musb_default_writel;
2017
David Brownell84e250f2009-03-31 12:30:04 -07002018 /* The musb_platform_init() call:
Philippe De Swertbaef6532012-11-06 15:32:13 +02002019 * - adjusts musb->mregs
2020 * - sets the musb->isr
Rahul Bedarkar5ae477b2014-01-02 19:27:47 +05302021 * - may initialize an integrated transceiver
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +05302022 * - initializes musb->xceiv, usually by otg_get_phy()
David Brownell84e250f2009-03-31 12:30:04 -07002023 * - stops powering VBUS
David Brownell84e250f2009-03-31 12:30:04 -07002024 *
Joe Perches7c9d4402011-06-23 11:39:20 -07002025 * There are various transceiver configurations. Blackfin,
David Brownell84e250f2009-03-31 12:30:04 -07002026 * DaVinci, TUSB60x0, and others integrate them. OMAP3 uses
2027 * external/discrete ones in various flavors (twl4030 family,
2028 * isp1504, non-OTG, etc) mostly hooking up through ULPI.
Felipe Balbi550a7372008-07-24 12:27:36 +03002029 */
Hema Kalliguddiea65df52010-09-22 19:27:40 -05002030 status = musb_platform_init(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03002031 if (status < 0)
Felipe Balbi03491762010-12-02 09:57:08 +02002032 goto fail1;
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002033
Felipe Balbi550a7372008-07-24 12:27:36 +03002034 if (!musb->isr) {
2035 status = -ENODEV;
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02002036 goto fail2;
Felipe Balbi550a7372008-07-24 12:27:36 +03002037 }
2038
Tony Lindgren1b40fc52014-11-24 11:05:02 -08002039 if (musb->ops->quirks)
2040 musb->io.quirks = musb->ops->quirks;
2041
Ben Hutchingsda96cfc2015-05-24 04:27:32 +01002042 /* Most devices use indexed offset or flat offset */
Tony Lindgrend026e9c2014-11-24 11:05:03 -08002043 if (musb->io.quirks & MUSB_INDEXED_EP) {
2044 musb->io.ep_offset = musb_indexed_ep_offset;
2045 musb->io.ep_select = musb_indexed_ep_select;
2046 } else {
2047 musb->io.ep_offset = musb_flat_ep_offset;
2048 musb->io.ep_select = musb_flat_ep_select;
2049 }
Hans de Goede47a82732015-03-20 20:11:14 +01002050 /* And override them with platform specific ops if specified. */
2051 if (musb->ops->ep_offset)
2052 musb->io.ep_offset = musb->ops->ep_offset;
2053 if (musb->ops->ep_select)
2054 musb->io.ep_select = musb->ops->ep_select;
Tony Lindgrend026e9c2014-11-24 11:05:03 -08002055
Ben Hutchingsda96cfc2015-05-24 04:27:32 +01002056 /* At least tusb6010 has its own offsets */
2057 if (musb->ops->ep_offset)
2058 musb->io.ep_offset = musb->ops->ep_offset;
2059 if (musb->ops->ep_select)
2060 musb->io.ep_select = musb->ops->ep_select;
2061
Tony Lindgren8a77f052014-11-24 11:05:04 -08002062 if (musb->ops->fifo_mode)
2063 fifo_mode = musb->ops->fifo_mode;
2064 else
2065 fifo_mode = 4;
2066
Tony Lindgren1b40fc52014-11-24 11:05:02 -08002067 if (musb->ops->fifo_offset)
2068 musb->io.fifo_offset = musb->ops->fifo_offset;
2069 else
2070 musb->io.fifo_offset = musb_default_fifo_offset;
2071
Hans de Goede6cc2af62015-03-20 20:11:12 +01002072 if (musb->ops->busctl_offset)
2073 musb->io.busctl_offset = musb->ops->busctl_offset;
2074 else
2075 musb->io.busctl_offset = musb_default_busctl_offset;
2076
Tony Lindgren1b40fc52014-11-24 11:05:02 -08002077 if (musb->ops->readb)
2078 musb_readb = musb->ops->readb;
2079 if (musb->ops->writeb)
2080 musb_writeb = musb->ops->writeb;
2081 if (musb->ops->readw)
2082 musb_readw = musb->ops->readw;
2083 if (musb->ops->writew)
2084 musb_writew = musb->ops->writew;
2085 if (musb->ops->readl)
2086 musb_readl = musb->ops->readl;
2087 if (musb->ops->writel)
2088 musb_writel = musb->ops->writel;
2089
Tony Lindgren7f6283e2015-05-01 12:29:28 -07002090#ifndef CONFIG_MUSB_PIO_ONLY
2091 if (!musb->ops->dma_init || !musb->ops->dma_exit) {
2092 dev_err(dev, "DMA controller not set\n");
Aaro Koskinen7d32cde2015-11-23 21:50:11 +02002093 status = -ENODEV;
Tony Lindgren7f6283e2015-05-01 12:29:28 -07002094 goto fail2;
2095 }
2096 musb_dma_controller_create = musb->ops->dma_init;
2097 musb_dma_controller_destroy = musb->ops->dma_exit;
2098#endif
2099
Tony Lindgren1b40fc52014-11-24 11:05:02 -08002100 if (musb->ops->read_fifo)
2101 musb->io.read_fifo = musb->ops->read_fifo;
2102 else
2103 musb->io.read_fifo = musb_default_read_fifo;
2104
2105 if (musb->ops->write_fifo)
2106 musb->io.write_fifo = musb->ops->write_fifo;
2107 else
2108 musb->io.write_fifo = musb_default_write_fifo;
2109
Heikki Krogerusffb865b2010-03-25 13:25:28 +02002110 if (!musb->xceiv->io_ops) {
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +02002111 musb->xceiv->io_dev = musb->controller;
Heikki Krogerusffb865b2010-03-25 13:25:28 +02002112 musb->xceiv->io_priv = musb->mregs;
2113 musb->xceiv->io_ops = &musb_ulpi_access;
2114 }
2115
Tony Lindgren80555552015-11-30 21:37:12 -08002116 if (musb->ops->phy_callback)
2117 musb_phy_callback = musb->ops->phy_callback;
2118
Tony Lindgrenf730f202016-05-31 10:05:12 -05002119 /*
2120 * We need musb_read/write functions initialized for PM.
2121 * Note that at least 2430 glue needs autosuspend delay
2122 * somewhere above 300 ms for the hardware to idle properly
2123 * after disconnecting the cable in host mode. Let's use
2124 * 500 ms for some margin.
2125 */
2126 pm_runtime_use_autosuspend(musb->controller);
2127 pm_runtime_set_autosuspend_delay(musb->controller, 500);
2128 pm_runtime_enable(musb->controller);
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02002129 pm_runtime_get_sync(musb->controller);
2130
Uwe Kleine-König39cee202015-12-18 12:02:04 +01002131 status = usb_phy_init(musb->xceiv);
2132 if (status < 0)
2133 goto err_usb_phy_init;
2134
Sebastian Andrzej Siewior48054142013-10-16 12:50:08 +02002135 if (use_dma && dev->dma_mask) {
Tony Lindgren7f6283e2015-05-01 12:29:28 -07002136 musb->dma_controller =
2137 musb_dma_controller_create(musb, musb->mregs);
Sebastian Andrzej Siewior48054142013-10-16 12:50:08 +02002138 if (IS_ERR(musb->dma_controller)) {
2139 status = PTR_ERR(musb->dma_controller);
2140 goto fail2_5;
2141 }
2142 }
Felipe Balbi550a7372008-07-24 12:27:36 +03002143
2144 /* be sure interrupts are disabled before connecting ISR */
2145 musb_platform_disable(musb);
2146 musb_generic_disable(musb);
2147
Sebastian Andrzej Siewior66fadea2013-11-06 09:25:27 +01002148 /* Init IRQ workqueue before request_irq */
2149 INIT_WORK(&musb->irq_work, musb_irq_work);
Daniel Mack8ed1fb72013-12-18 20:23:46 +01002150 INIT_DELAYED_WORK(&musb->deassert_reset_work, musb_deassert_reset);
2151 INIT_DELAYED_WORK(&musb->finish_resume_work, musb_host_finish_resume);
Sebastian Andrzej Siewior66fadea2013-11-06 09:25:27 +01002152
Felipe Balbi550a7372008-07-24 12:27:36 +03002153 /* setup musb parts of the core (especially endpoints) */
Felipe Balbica6d1b12008-08-08 12:40:54 +03002154 status = musb_core_init(plat->config->multipoint
Felipe Balbi550a7372008-07-24 12:27:36 +03002155 ? MUSB_CONTROLLER_MHDRC
2156 : MUSB_CONTROLLER_HDRC, musb);
2157 if (status < 0)
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002158 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03002159
David Brownellf7f9d632009-03-31 12:32:12 -07002160 setup_timer(&musb->otg_timer, musb_otg_timer_func, (unsigned long) musb);
David Brownellf7f9d632009-03-31 12:32:12 -07002161
Felipe Balbi550a7372008-07-24 12:27:36 +03002162 /* attach to the IRQ */
Kay Sievers427c4f32008-11-07 01:52:53 +01002163 if (request_irq(nIrq, musb->isr, 0, dev_name(dev), musb)) {
Felipe Balbi550a7372008-07-24 12:27:36 +03002164 dev_err(dev, "request_irq %d failed!\n", nIrq);
2165 status = -ENODEV;
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002166 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03002167 }
2168 musb->nIrq = nIrq;
Felipe Balbi032ec492011-11-24 15:46:26 +02002169 /* FIXME this handles wakeup irqs wrong */
Felipe Balbic48a5152008-11-24 13:06:53 +02002170 if (enable_irq_wake(nIrq) == 0) {
2171 musb->irq_wake = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03002172 device_init_wakeup(dev, 1);
Felipe Balbic48a5152008-11-24 13:06:53 +02002173 } else {
2174 musb->irq_wake = 0;
2175 }
Felipe Balbi550a7372008-07-24 12:27:36 +03002176
Felipe Balbi032ec492011-11-24 15:46:26 +02002177 /* program PHY to use external vBus if required */
2178 if (plat->extvbus) {
2179 u8 busctl = musb_read_ulpi_buscontrol(musb->mregs);
2180 busctl |= MUSB_ULPI_USE_EXTVBUS;
2181 musb_write_ulpi_buscontrol(musb->mregs, busctl);
Felipe Balbi550a7372008-07-24 12:27:36 +03002182 }
Felipe Balbi550a7372008-07-24 12:27:36 +03002183
Grazvydas Ignotase5615112013-03-10 02:48:55 +02002184 if (musb->xceiv->otg->default_a) {
2185 MUSB_HST_MODE(musb);
Antoine Tenarte47d9252014-10-30 18:41:13 +01002186 musb->xceiv->otg->state = OTG_STATE_A_IDLE;
Grazvydas Ignotase5615112013-03-10 02:48:55 +02002187 } else {
2188 MUSB_DEV_MODE(musb);
Antoine Tenarte47d9252014-10-30 18:41:13 +01002189 musb->xceiv->otg->state = OTG_STATE_B_IDLE;
Grazvydas Ignotase5615112013-03-10 02:48:55 +02002190 }
Anand Gadiyar07a8cdd2010-11-18 18:54:17 +05302191
Daniel Mack6c5f6a62013-04-10 21:55:49 +02002192 switch (musb->port_mode) {
2193 case MUSB_PORT_MODE_HOST:
2194 status = musb_host_setup(musb, plat->power);
Felipe Balbi2df67612013-10-29 12:17:17 -05002195 if (status < 0)
2196 goto fail3;
2197 status = musb_platform_set_mode(musb, MUSB_HOST);
Daniel Mack6c5f6a62013-04-10 21:55:49 +02002198 break;
2199 case MUSB_PORT_MODE_GADGET:
2200 status = musb_gadget_setup(musb);
Felipe Balbi2df67612013-10-29 12:17:17 -05002201 if (status < 0)
2202 goto fail3;
2203 status = musb_platform_set_mode(musb, MUSB_PERIPHERAL);
Daniel Mack6c5f6a62013-04-10 21:55:49 +02002204 break;
2205 case MUSB_PORT_MODE_DUAL_ROLE:
2206 status = musb_host_setup(musb, plat->power);
2207 if (status < 0)
2208 goto fail3;
2209 status = musb_gadget_setup(musb);
Felipe Balbi2df67612013-10-29 12:17:17 -05002210 if (status) {
Sebastian Andrzej Siewior0d2dd7e2013-10-16 12:50:06 +02002211 musb_host_cleanup(musb);
Felipe Balbi2df67612013-10-29 12:17:17 -05002212 goto fail3;
2213 }
2214 status = musb_platform_set_mode(musb, MUSB_OTG);
Daniel Mack6c5f6a62013-04-10 21:55:49 +02002215 break;
2216 default:
2217 dev_err(dev, "unsupported port mode %d\n", musb->port_mode);
2218 break;
2219 }
Felipe Balbi550a7372008-07-24 12:27:36 +03002220
Sergei Shtylyov461972d2010-03-25 13:14:32 +02002221 if (status < 0)
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002222 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03002223
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02002224 status = musb_init_debugfs(musb);
2225 if (status < 0)
Felipe Balbib0f9da72010-03-25 13:25:18 +02002226 goto fail4;
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02002227
Felipe Balbi94375752009-12-15 11:08:38 +02002228 status = sysfs_create_group(&musb->controller->kobj, &musb_attr_group);
Felipe Balbi28c2c512008-09-11 11:53:25 +03002229 if (status)
Felipe Balbib0f9da72010-03-25 13:25:18 +02002230 goto fail5;
Felipe Balbi28c2c512008-09-11 11:53:25 +03002231
Tony Lindgren7099dbc2016-05-31 10:05:11 -05002232 pm_runtime_mark_last_busy(musb->controller);
2233 pm_runtime_put_autosuspend(musb->controller);
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02002234
Felipe Balbi28c2c512008-09-11 11:53:25 +03002235 return 0;
2236
Felipe Balbib0f9da72010-03-25 13:25:18 +02002237fail5:
2238 musb_exit_debugfs(musb);
2239
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002240fail4:
Felipe Balbi032ec492011-11-24 15:46:26 +02002241 musb_gadget_cleanup(musb);
Sebastian Andrzej Siewior0d2dd7e2013-10-16 12:50:06 +02002242 musb_host_cleanup(musb);
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002243
2244fail3:
Sebastian Andrzej Siewior66fadea2013-11-06 09:25:27 +01002245 cancel_work_sync(&musb->irq_work);
Daniel Mack8ed1fb72013-12-18 20:23:46 +01002246 cancel_delayed_work_sync(&musb->finish_resume_work);
2247 cancel_delayed_work_sync(&musb->deassert_reset_work);
Sebastian Andrzej Siewiorf3ce4d52013-06-19 17:38:14 +02002248 if (musb->dma_controller)
Tony Lindgren7f6283e2015-05-01 12:29:28 -07002249 musb_dma_controller_destroy(musb->dma_controller);
Uwe Kleine-König39cee202015-12-18 12:02:04 +01002250
Sebastian Andrzej Siewior48054142013-10-16 12:50:08 +02002251fail2_5:
Uwe Kleine-König39cee202015-12-18 12:02:04 +01002252 usb_phy_shutdown(musb->xceiv);
2253
2254err_usb_phy_init:
Tony Lindgren7099dbc2016-05-31 10:05:11 -05002255 pm_runtime_dont_use_autosuspend(musb->controller);
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02002256 pm_runtime_put_sync(musb->controller);
Tony Lindgrenf730f202016-05-31 10:05:12 -05002257 pm_runtime_disable(musb->controller);
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02002258
2259fail2:
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002260 if (musb->irq_wake)
2261 device_init_wakeup(dev, 0);
Felipe Balbi28c2c512008-09-11 11:53:25 +03002262 musb_platform_exit(musb);
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002263
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002264fail1:
Felipe Balbi28c2c512008-09-11 11:53:25 +03002265 dev_err(musb->controller,
2266 "musb_init_controller failed with status %d\n", status);
2267
Felipe Balbi28c2c512008-09-11 11:53:25 +03002268 musb_free(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03002269
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002270fail0:
2271
Felipe Balbi550a7372008-07-24 12:27:36 +03002272 return status;
2273
Felipe Balbi550a7372008-07-24 12:27:36 +03002274}
2275
2276/*-------------------------------------------------------------------------*/
2277
2278/* all implementations (PCI bridge to FPGA, VLYNQ, etc) should just
2279 * bridge to a platform device; this driver then suffices.
2280 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05002281static int musb_probe(struct platform_device *pdev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002282{
2283 struct device *dev = &pdev->dev;
Hema Kalliguddifcf173e2010-09-29 11:26:39 -05002284 int irq = platform_get_irq_byname(pdev, "mc");
Felipe Balbi550a7372008-07-24 12:27:36 +03002285 struct resource *iomem;
2286 void __iomem *base;
2287
Varka Bhadram1f79b262014-10-29 21:30:19 +05302288 if (irq <= 0)
Felipe Balbi550a7372008-07-24 12:27:36 +03002289 return -ENODEV;
2290
Varka Bhadram1f79b262014-10-29 21:30:19 +05302291 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Felipe Balbib42f7f32013-02-04 19:04:45 +02002292 base = devm_ioremap_resource(dev, iomem);
2293 if (IS_ERR(base))
2294 return PTR_ERR(base);
Felipe Balbi550a7372008-07-24 12:27:36 +03002295
Felipe Balbib42f7f32013-02-04 19:04:45 +02002296 return musb_init_controller(dev, irq, base);
Felipe Balbi550a7372008-07-24 12:27:36 +03002297}
2298
Bill Pembertonfb4e98a2012-11-19 13:26:20 -05002299static int musb_remove(struct platform_device *pdev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002300{
Ajay Kumar Gupta8d2421e2012-08-31 11:09:50 +00002301 struct device *dev = &pdev->dev;
2302 struct musb *musb = dev_to_musb(dev);
Tony Lindgren302f6802016-05-31 10:05:10 -05002303 unsigned long flags;
Felipe Balbi550a7372008-07-24 12:27:36 +03002304
2305 /* this gets called on rmmod.
2306 * - Host mode: host may still be active
2307 * - Peripheral mode: peripheral is deactivated (or never-activated)
2308 * - OTG mode: both roles are deactivated (or never-activated)
2309 */
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02002310 musb_exit_debugfs(musb);
Tony Lindgren302f6802016-05-31 10:05:10 -05002311
Tony Lindgrenf730f202016-05-31 10:05:12 -05002312 cancel_work_sync(&musb->irq_work);
2313 cancel_delayed_work_sync(&musb->finish_resume_work);
2314 cancel_delayed_work_sync(&musb->deassert_reset_work);
Tony Lindgren302f6802016-05-31 10:05:10 -05002315 pm_runtime_get_sync(musb->controller);
2316 musb_host_cleanup(musb);
2317 musb_gadget_cleanup(musb);
2318 spin_lock_irqsave(&musb->lock, flags);
2319 musb_platform_disable(musb);
2320 musb_generic_disable(musb);
2321 spin_unlock_irqrestore(&musb->lock, flags);
2322 musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
Tony Lindgren7099dbc2016-05-31 10:05:11 -05002323 pm_runtime_dont_use_autosuspend(musb->controller);
2324 pm_runtime_put_sync(musb->controller);
2325 pm_runtime_disable(musb->controller);
Tony Lindgrenf730f202016-05-31 10:05:12 -05002326 musb_platform_exit(musb);
2327 musb_phy_callback = NULL;
2328 if (musb->dma_controller)
2329 musb_dma_controller_destroy(musb->dma_controller);
2330 usb_phy_shutdown(musb->xceiv);
Felipe Balbi550a7372008-07-24 12:27:36 +03002331 musb_free(musb);
Ajay Kumar Gupta8d2421e2012-08-31 11:09:50 +00002332 device_init_wakeup(dev, 0);
Felipe Balbi550a7372008-07-24 12:27:36 +03002333 return 0;
2334}
2335
2336#ifdef CONFIG_PM
2337
Felipe Balbi3c8a5fc2010-12-02 12:28:39 +02002338static void musb_save_context(struct musb *musb)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002339{
2340 int i;
2341 void __iomem *musb_base = musb->mregs;
Bob Liuae9b2ad2010-09-24 13:44:07 +03002342 void __iomem *epio;
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002343
Felipe Balbi032ec492011-11-24 15:46:26 +02002344 musb->context.frame = musb_readw(musb_base, MUSB_FRAME);
2345 musb->context.testmode = musb_readb(musb_base, MUSB_TESTMODE);
2346 musb->context.busctl = musb_read_ulpi_buscontrol(musb->mregs);
Felipe Balbi74211072010-12-01 13:53:27 +02002347 musb->context.power = musb_readb(musb_base, MUSB_POWER);
Felipe Balbi74211072010-12-01 13:53:27 +02002348 musb->context.intrusbe = musb_readb(musb_base, MUSB_INTRUSBE);
2349 musb->context.index = musb_readb(musb_base, MUSB_INDEX);
2350 musb->context.devctl = musb_readb(musb_base, MUSB_DEVCTL);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002351
Bob Liuae9b2ad2010-09-24 13:44:07 +03002352 for (i = 0; i < musb->config->num_eps; ++i) {
Felipe Balbie4e5b1362011-06-27 15:57:46 +03002353 struct musb_hw_ep *hw_ep;
2354
2355 hw_ep = &musb->endpoints[i];
2356 if (!hw_ep)
2357 continue;
2358
2359 epio = hw_ep->regs;
2360 if (!epio)
2361 continue;
2362
Vikram Panditaea737552011-09-07 09:19:23 -07002363 musb_writeb(musb_base, MUSB_INDEX, i);
Felipe Balbi74211072010-12-01 13:53:27 +02002364 musb->context.index_regs[i].txmaxp =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002365 musb_readw(epio, MUSB_TXMAXP);
Felipe Balbi74211072010-12-01 13:53:27 +02002366 musb->context.index_regs[i].txcsr =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002367 musb_readw(epio, MUSB_TXCSR);
Felipe Balbi74211072010-12-01 13:53:27 +02002368 musb->context.index_regs[i].rxmaxp =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002369 musb_readw(epio, MUSB_RXMAXP);
Felipe Balbi74211072010-12-01 13:53:27 +02002370 musb->context.index_regs[i].rxcsr =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002371 musb_readw(epio, MUSB_RXCSR);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002372
2373 if (musb->dyn_fifo) {
Felipe Balbi74211072010-12-01 13:53:27 +02002374 musb->context.index_regs[i].txfifoadd =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002375 musb_read_txfifoadd(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002376 musb->context.index_regs[i].rxfifoadd =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002377 musb_read_rxfifoadd(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002378 musb->context.index_regs[i].txfifosz =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002379 musb_read_txfifosz(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002380 musb->context.index_regs[i].rxfifosz =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002381 musb_read_rxfifosz(musb_base);
2382 }
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002383
Felipe Balbi032ec492011-11-24 15:46:26 +02002384 musb->context.index_regs[i].txtype =
2385 musb_readb(epio, MUSB_TXTYPE);
2386 musb->context.index_regs[i].txinterval =
2387 musb_readb(epio, MUSB_TXINTERVAL);
2388 musb->context.index_regs[i].rxtype =
2389 musb_readb(epio, MUSB_RXTYPE);
2390 musb->context.index_regs[i].rxinterval =
2391 musb_readb(epio, MUSB_RXINTERVAL);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002392
Felipe Balbi032ec492011-11-24 15:46:26 +02002393 musb->context.index_regs[i].txfunaddr =
Hans de Goede6cc2af62015-03-20 20:11:12 +01002394 musb_read_txfunaddr(musb, i);
Felipe Balbi032ec492011-11-24 15:46:26 +02002395 musb->context.index_regs[i].txhubaddr =
Hans de Goede6cc2af62015-03-20 20:11:12 +01002396 musb_read_txhubaddr(musb, i);
Felipe Balbi032ec492011-11-24 15:46:26 +02002397 musb->context.index_regs[i].txhubport =
Hans de Goede6cc2af62015-03-20 20:11:12 +01002398 musb_read_txhubport(musb, i);
Felipe Balbi032ec492011-11-24 15:46:26 +02002399
2400 musb->context.index_regs[i].rxfunaddr =
Hans de Goede6cc2af62015-03-20 20:11:12 +01002401 musb_read_rxfunaddr(musb, i);
Felipe Balbi032ec492011-11-24 15:46:26 +02002402 musb->context.index_regs[i].rxhubaddr =
Hans de Goede6cc2af62015-03-20 20:11:12 +01002403 musb_read_rxhubaddr(musb, i);
Felipe Balbi032ec492011-11-24 15:46:26 +02002404 musb->context.index_regs[i].rxhubport =
Hans de Goede6cc2af62015-03-20 20:11:12 +01002405 musb_read_rxhubport(musb, i);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002406 }
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002407}
2408
Felipe Balbi3c8a5fc2010-12-02 12:28:39 +02002409static void musb_restore_context(struct musb *musb)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002410{
2411 int i;
2412 void __iomem *musb_base = musb->mregs;
Bob Liuae9b2ad2010-09-24 13:44:07 +03002413 void __iomem *epio;
Roger Quadros33f8d752014-02-04 15:29:33 +02002414 u8 power;
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002415
Felipe Balbi032ec492011-11-24 15:46:26 +02002416 musb_writew(musb_base, MUSB_FRAME, musb->context.frame);
2417 musb_writeb(musb_base, MUSB_TESTMODE, musb->context.testmode);
2418 musb_write_ulpi_buscontrol(musb->mregs, musb->context.busctl);
Roger Quadros33f8d752014-02-04 15:29:33 +02002419
2420 /* Don't affect SUSPENDM/RESUME bits in POWER reg */
2421 power = musb_readb(musb_base, MUSB_POWER);
2422 power &= MUSB_POWER_SUSPENDM | MUSB_POWER_RESUME;
2423 musb->context.power &= ~(MUSB_POWER_SUSPENDM | MUSB_POWER_RESUME);
2424 power |= musb->context.power;
2425 musb_writeb(musb_base, MUSB_POWER, power);
2426
Sebastian Andrzej Siewiorb18d26f2012-10-30 19:52:26 +01002427 musb_writew(musb_base, MUSB_INTRTXE, musb->intrtxe);
Sebastian Andrzej Siewioraf5ec142012-10-30 19:52:25 +01002428 musb_writew(musb_base, MUSB_INTRRXE, musb->intrrxe);
Felipe Balbi74211072010-12-01 13:53:27 +02002429 musb_writeb(musb_base, MUSB_INTRUSBE, musb->context.intrusbe);
Bin Liu84ac5d12016-05-31 10:05:24 -05002430 if (musb->context.devctl & MUSB_DEVCTL_SESSION)
2431 musb_writeb(musb_base, MUSB_DEVCTL, musb->context.devctl);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002432
Bob Liuae9b2ad2010-09-24 13:44:07 +03002433 for (i = 0; i < musb->config->num_eps; ++i) {
Felipe Balbie4e5b1362011-06-27 15:57:46 +03002434 struct musb_hw_ep *hw_ep;
2435
2436 hw_ep = &musb->endpoints[i];
2437 if (!hw_ep)
2438 continue;
2439
2440 epio = hw_ep->regs;
2441 if (!epio)
2442 continue;
2443
Vikram Panditaea737552011-09-07 09:19:23 -07002444 musb_writeb(musb_base, MUSB_INDEX, i);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002445 musb_writew(epio, MUSB_TXMAXP,
Felipe Balbi74211072010-12-01 13:53:27 +02002446 musb->context.index_regs[i].txmaxp);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002447 musb_writew(epio, MUSB_TXCSR,
Felipe Balbi74211072010-12-01 13:53:27 +02002448 musb->context.index_regs[i].txcsr);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002449 musb_writew(epio, MUSB_RXMAXP,
Felipe Balbi74211072010-12-01 13:53:27 +02002450 musb->context.index_regs[i].rxmaxp);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002451 musb_writew(epio, MUSB_RXCSR,
Felipe Balbi74211072010-12-01 13:53:27 +02002452 musb->context.index_regs[i].rxcsr);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002453
2454 if (musb->dyn_fifo) {
2455 musb_write_txfifosz(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002456 musb->context.index_regs[i].txfifosz);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002457 musb_write_rxfifosz(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002458 musb->context.index_regs[i].rxfifosz);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002459 musb_write_txfifoadd(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002460 musb->context.index_regs[i].txfifoadd);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002461 musb_write_rxfifoadd(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002462 musb->context.index_regs[i].rxfifoadd);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002463 }
2464
Felipe Balbi032ec492011-11-24 15:46:26 +02002465 musb_writeb(epio, MUSB_TXTYPE,
Felipe Balbi74211072010-12-01 13:53:27 +02002466 musb->context.index_regs[i].txtype);
Felipe Balbi032ec492011-11-24 15:46:26 +02002467 musb_writeb(epio, MUSB_TXINTERVAL,
Felipe Balbi74211072010-12-01 13:53:27 +02002468 musb->context.index_regs[i].txinterval);
Felipe Balbi032ec492011-11-24 15:46:26 +02002469 musb_writeb(epio, MUSB_RXTYPE,
Felipe Balbi74211072010-12-01 13:53:27 +02002470 musb->context.index_regs[i].rxtype);
Felipe Balbi032ec492011-11-24 15:46:26 +02002471 musb_writeb(epio, MUSB_RXINTERVAL,
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002472
Felipe Balbi032ec492011-11-24 15:46:26 +02002473 musb->context.index_regs[i].rxinterval);
Hans de Goede6cc2af62015-03-20 20:11:12 +01002474 musb_write_txfunaddr(musb, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002475 musb->context.index_regs[i].txfunaddr);
Hans de Goede6cc2af62015-03-20 20:11:12 +01002476 musb_write_txhubaddr(musb, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002477 musb->context.index_regs[i].txhubaddr);
Hans de Goede6cc2af62015-03-20 20:11:12 +01002478 musb_write_txhubport(musb, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002479 musb->context.index_regs[i].txhubport);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002480
Hans de Goede6cc2af62015-03-20 20:11:12 +01002481 musb_write_rxfunaddr(musb, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002482 musb->context.index_regs[i].rxfunaddr);
Hans de Goede6cc2af62015-03-20 20:11:12 +01002483 musb_write_rxhubaddr(musb, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002484 musb->context.index_regs[i].rxhubaddr);
Hans de Goede6cc2af62015-03-20 20:11:12 +01002485 musb_write_rxhubport(musb, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002486 musb->context.index_regs[i].rxhubport);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002487 }
Ajay Kumar Gupta3c5fec72011-07-08 15:06:13 +05302488 musb_writeb(musb_base, MUSB_INDEX, musb->context.index);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002489}
2490
Magnus Damm48fea962009-07-08 13:22:56 +02002491static int musb_suspend(struct device *dev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002492{
Felipe Balbi82207962011-06-27 15:57:12 +03002493 struct musb *musb = dev_to_musb(dev);
Felipe Balbi550a7372008-07-24 12:27:36 +03002494 unsigned long flags;
Felipe Balbi550a7372008-07-24 12:27:36 +03002495
Pascal Huerst6fc6f4b2015-09-03 10:50:58 +02002496 musb_platform_disable(musb);
2497 musb_generic_disable(musb);
2498
Felipe Balbi550a7372008-07-24 12:27:36 +03002499 spin_lock_irqsave(&musb->lock, flags);
2500
2501 if (is_peripheral_active(musb)) {
2502 /* FIXME force disconnect unless we know USB will wake
2503 * the system up quickly enough to respond ...
2504 */
2505 } else if (is_host_active(musb)) {
2506 /* we know all the children are suspended; sometimes
2507 * they will even be wakeup-enabled.
2508 */
2509 }
2510
Daniel Mackc3384122013-11-25 22:26:40 +01002511 musb_save_context(musb);
2512
Felipe Balbi550a7372008-07-24 12:27:36 +03002513 spin_unlock_irqrestore(&musb->lock, flags);
2514 return 0;
2515}
2516
Sebastian Andrzej Siewior3e87d9a2014-10-27 10:49:42 +01002517static int musb_resume(struct device *dev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002518{
Daniel Mackc3384122013-11-25 22:26:40 +01002519 struct musb *musb = dev_to_musb(dev);
Sebastian Andrzej Siewiorb87fd2f2014-10-27 19:06:18 +01002520 u8 devctl;
2521 u8 mask;
Daniel Mackc3384122013-11-25 22:26:40 +01002522
2523 /*
2524 * For static cmos like DaVinci, register values were preserved
Kim Kyuwon0ec8fd72009-03-26 18:56:51 -07002525 * unless for some reason the whole soc powered down or the USB
2526 * module got reset through the PSC (vs just being disabled).
Daniel Mackc3384122013-11-25 22:26:40 +01002527 *
2528 * For the DSPS glue layer though, a full register restore has to
2529 * be done. As it shouldn't harm other platforms, we do it
2530 * unconditionally.
Felipe Balbi550a7372008-07-24 12:27:36 +03002531 */
Daniel Mackc3384122013-11-25 22:26:40 +01002532
2533 musb_restore_context(musb);
2534
Sebastian Andrzej Siewiorb87fd2f2014-10-27 19:06:18 +01002535 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
2536 mask = MUSB_DEVCTL_BDEVICE | MUSB_DEVCTL_FSDEV | MUSB_DEVCTL_LSDEV;
2537 if ((devctl & mask) != (musb->context.devctl & mask))
2538 musb->port1_status = 0;
Sebastian Andrzej Siewiorbaadd522014-10-27 19:06:19 +01002539 if (musb->need_finish_resume) {
2540 musb->need_finish_resume = 0;
2541 schedule_delayed_work(&musb->finish_resume_work,
Felipe Balbi309be232015-02-13 14:46:27 -06002542 msecs_to_jiffies(USB_RESUME_TIMEOUT));
Sebastian Andrzej Siewiorbaadd522014-10-27 19:06:19 +01002543 }
Sebastian Andrzej Siewiora1fc1922014-11-13 18:33:08 +01002544
2545 /*
2546 * The USB HUB code expects the device to be in RPM_ACTIVE once it came
2547 * out of suspend
2548 */
2549 pm_runtime_disable(dev);
2550 pm_runtime_set_active(dev);
2551 pm_runtime_enable(dev);
Pascal Huerst6fc6f4b2015-09-03 10:50:58 +02002552
2553 musb_start(musb);
2554
Felipe Balbi550a7372008-07-24 12:27:36 +03002555 return 0;
2556}
2557
Hema HK7acc6192011-02-28 14:19:34 +05302558static int musb_runtime_suspend(struct device *dev)
2559{
2560 struct musb *musb = dev_to_musb(dev);
2561
2562 musb_save_context(musb);
2563
2564 return 0;
2565}
2566
2567static int musb_runtime_resume(struct device *dev)
2568{
2569 struct musb *musb = dev_to_musb(dev);
2570 static int first = 1;
2571
2572 /*
2573 * When pm_runtime_get_sync called for the first time in driver
2574 * init, some of the structure is still not initialized which is
2575 * used in restore function. But clock needs to be
2576 * enabled before any register access, so
2577 * pm_runtime_get_sync has to be called.
2578 * Also context restore without save does not make
2579 * any sense
2580 */
2581 if (!first)
2582 musb_restore_context(musb);
2583 first = 0;
2584
Bin Liu9298b4a2015-02-03 11:02:10 -06002585 if (musb->need_finish_resume) {
2586 musb->need_finish_resume = 0;
2587 schedule_delayed_work(&musb->finish_resume_work,
Felipe Balbi309be232015-02-13 14:46:27 -06002588 msecs_to_jiffies(USB_RESUME_TIMEOUT));
Bin Liu9298b4a2015-02-03 11:02:10 -06002589 }
2590
Hema HK7acc6192011-02-28 14:19:34 +05302591 return 0;
2592}
2593
Alexey Dobriyan47145212009-12-14 18:00:08 -08002594static const struct dev_pm_ops musb_dev_pm_ops = {
Magnus Damm48fea962009-07-08 13:22:56 +02002595 .suspend = musb_suspend,
Sebastian Andrzej Siewior3e87d9a2014-10-27 10:49:42 +01002596 .resume = musb_resume,
Hema HK7acc6192011-02-28 14:19:34 +05302597 .runtime_suspend = musb_runtime_suspend,
2598 .runtime_resume = musb_runtime_resume,
Magnus Damm48fea962009-07-08 13:22:56 +02002599};
2600
2601#define MUSB_DEV_PM_OPS (&musb_dev_pm_ops)
Felipe Balbi550a7372008-07-24 12:27:36 +03002602#else
Magnus Damm48fea962009-07-08 13:22:56 +02002603#define MUSB_DEV_PM_OPS NULL
Felipe Balbi550a7372008-07-24 12:27:36 +03002604#endif
2605
2606static struct platform_driver musb_driver = {
2607 .driver = {
2608 .name = (char *)musb_driver_name,
2609 .bus = &platform_bus_type,
Magnus Damm48fea962009-07-08 13:22:56 +02002610 .pm = MUSB_DEV_PM_OPS,
Felipe Balbi550a7372008-07-24 12:27:36 +03002611 },
Felipe Balbie9e8c852012-01-26 12:40:23 +02002612 .probe = musb_probe,
Bill Pemberton76904172012-11-19 13:21:08 -05002613 .remove = musb_remove,
Felipe Balbi550a7372008-07-24 12:27:36 +03002614};
2615
Ezequiel Garcia89f836a2013-12-26 09:24:52 -03002616module_platform_driver(musb_driver);