blob: a1aa75eb51e27f3c8149be899d36d41bf228b697 [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
86 * - platform_data is mostly for board-specific informarion
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>
96#include <linux/init.h>
97#include <linux/list.h>
98#include <linux/kobject.h>
Mike Frysinger93039612011-05-25 08:13:24 -040099#include <linux/prefetch.h>
Felipe Balbi550a7372008-07-24 12:27:36 +0300100#include <linux/platform_device.h>
101#include <linux/io.h>
B, Ravi65b3d522012-08-31 11:09:49 +0000102#include <linux/idr.h>
Ajay Kumar Gupta8d2421e2012-08-31 11:09:50 +0000103#include <linux/dma-mapping.h>
Felipe Balbi550a7372008-07-24 12:27:36 +0300104
Felipe Balbi550a7372008-07-24 12:27:36 +0300105#include "musb_core.h"
106
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
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200136static int musb_ulpi_read(struct usb_phy *phy, u32 offset)
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
155 musb_writeb(addr, MUSB_ULPI_REG_ADDR, (u8)offset);
156 musb_writeb(addr, MUSB_ULPI_REG_CONTROL,
157 MUSB_ULPI_REG_REQ | MUSB_ULPI_RDN_WR);
158
159 while (!(musb_readb(addr, MUSB_ULPI_REG_CONTROL)
160 & MUSB_ULPI_REG_CMPLT)) {
161 i++;
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
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200180static int musb_ulpi_write(struct usb_phy *phy, u32 offset, u32 data)
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
195 musb_writeb(addr, MUSB_ULPI_REG_ADDR, (u8)offset);
196 musb_writeb(addr, MUSB_ULPI_REG_DATA, (u8)data);
197 musb_writeb(addr, MUSB_ULPI_REG_CONTROL, MUSB_ULPI_REG_REQ);
198
199 while (!(musb_readb(addr, MUSB_ULPI_REG_CONTROL)
200 & MUSB_ULPI_REG_CMPLT)) {
201 i++;
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
Felipe Balbi7c925542010-12-01 14:23:48 +0200229#if !defined(CONFIG_USB_MUSB_TUSB6010) && !defined(CONFIG_USB_MUSB_BLACKFIN)
Bryan Wuc6cf8b02008-12-02 21:33:48 +0200230
Felipe Balbi550a7372008-07-24 12:27:36 +0300231/*
232 * Load an endpoint's FIFO
233 */
234void musb_write_fifo(struct musb_hw_ep *hw_ep, u16 len, const u8 *src)
235{
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300236 struct musb *musb = hw_ep->musb;
Felipe Balbi550a7372008-07-24 12:27:36 +0300237 void __iomem *fifo = hw_ep->fifo;
238
Ajay Kumar Gupta603fe2b2012-07-20 11:07:24 +0530239 if (unlikely(len == 0))
240 return;
241
Felipe Balbi550a7372008-07-24 12:27:36 +0300242 prefetch((u8 *)src);
243
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300244 dev_dbg(musb->controller, "%cX ep%d fifo %p count %d buf %p\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300245 'T', hw_ep->epnum, fifo, len, src);
246
247 /* we can't assume unaligned reads work */
248 if (likely((0x01 & (unsigned long) src) == 0)) {
249 u16 index = 0;
250
251 /* best case is 32bit-aligned source address */
252 if ((0x02 & (unsigned long) src) == 0) {
253 if (len >= 4) {
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800254 iowrite32_rep(fifo, src + index, len >> 2);
Felipe Balbi550a7372008-07-24 12:27:36 +0300255 index += len & ~0x03;
256 }
257 if (len & 0x02) {
258 musb_writew(fifo, 0, *(u16 *)&src[index]);
259 index += 2;
260 }
261 } else {
262 if (len >= 2) {
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800263 iowrite16_rep(fifo, src + index, len >> 1);
Felipe Balbi550a7372008-07-24 12:27:36 +0300264 index += len & ~0x01;
265 }
266 }
267 if (len & 0x01)
268 musb_writeb(fifo, 0, src[index]);
269 } else {
270 /* byte aligned */
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800271 iowrite8_rep(fifo, src, len);
Felipe Balbi550a7372008-07-24 12:27:36 +0300272 }
273}
274
Ajay Kumar Gupta843bb1d2010-10-19 10:08:13 +0300275#if !defined(CONFIG_USB_MUSB_AM35X)
Felipe Balbi550a7372008-07-24 12:27:36 +0300276/*
277 * Unload an endpoint's FIFO
278 */
279void musb_read_fifo(struct musb_hw_ep *hw_ep, u16 len, u8 *dst)
280{
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300281 struct musb *musb = hw_ep->musb;
Felipe Balbi550a7372008-07-24 12:27:36 +0300282 void __iomem *fifo = hw_ep->fifo;
283
Ajay Kumar Gupta603fe2b2012-07-20 11:07:24 +0530284 if (unlikely(len == 0))
285 return;
286
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300287 dev_dbg(musb->controller, "%cX ep%d fifo %p count %d buf %p\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300288 'R', hw_ep->epnum, fifo, len, dst);
289
290 /* we can't assume unaligned writes work */
291 if (likely((0x01 & (unsigned long) dst) == 0)) {
292 u16 index = 0;
293
294 /* best case is 32bit-aligned destination address */
295 if ((0x02 & (unsigned long) dst) == 0) {
296 if (len >= 4) {
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800297 ioread32_rep(fifo, dst, len >> 2);
Felipe Balbi550a7372008-07-24 12:27:36 +0300298 index = len & ~0x03;
299 }
300 if (len & 0x02) {
301 *(u16 *)&dst[index] = musb_readw(fifo, 0);
302 index += 2;
303 }
304 } else {
305 if (len >= 2) {
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800306 ioread16_rep(fifo, dst, len >> 1);
Felipe Balbi550a7372008-07-24 12:27:36 +0300307 index = len & ~0x01;
308 }
309 }
310 if (len & 0x01)
311 dst[index] = musb_readb(fifo, 0);
312 } else {
313 /* byte aligned */
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800314 ioread8_rep(fifo, dst, len);
Felipe Balbi550a7372008-07-24 12:27:36 +0300315 }
316}
Ajay Kumar Gupta843bb1d2010-10-19 10:08:13 +0300317#endif
Felipe Balbi550a7372008-07-24 12:27:36 +0300318
319#endif /* normal PIO */
320
321
322/*-------------------------------------------------------------------------*/
323
324/* for high speed test mode; see USB 2.0 spec 7.1.20 */
325static const u8 musb_test_packet[53] = {
326 /* implicit SYNC then DATA0 to start */
327
328 /* JKJKJKJK x9 */
329 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
330 /* JJKKJJKK x8 */
331 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
332 /* JJJJKKKK x8 */
333 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee,
334 /* JJJJJJJKKKKKKK x8 */
335 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
336 /* JJJJJJJK x8 */
337 0x7f, 0xbf, 0xdf, 0xef, 0xf7, 0xfb, 0xfd,
338 /* JKKKKKKK x10, JK */
339 0xfc, 0x7e, 0xbf, 0xdf, 0xef, 0xf7, 0xfb, 0xfd, 0x7e
340
341 /* implicit CRC16 then EOP to end */
342};
343
344void musb_load_testpacket(struct musb *musb)
345{
346 void __iomem *regs = musb->endpoints[0].regs;
347
348 musb_ep_select(musb->mregs, 0);
349 musb_write_fifo(musb->control_ep,
350 sizeof(musb_test_packet), musb_test_packet);
351 musb_writew(regs, MUSB_CSR0, MUSB_CSR0_TXPKTRDY);
352}
353
354/*-------------------------------------------------------------------------*/
355
Felipe Balbi550a7372008-07-24 12:27:36 +0300356/*
Felipe Balbi550a7372008-07-24 12:27:36 +0300357 * Handles OTG hnp timeouts, such as b_ase0_brst
358 */
Felipe Balbia1565442012-08-07 14:00:50 +0300359static void musb_otg_timer_func(unsigned long data)
Felipe Balbi550a7372008-07-24 12:27:36 +0300360{
361 struct musb *musb = (struct musb *)data;
362 unsigned long flags;
363
364 spin_lock_irqsave(&musb->lock, flags);
David Brownell84e250f2009-03-31 12:30:04 -0700365 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300366 case OTG_STATE_B_WAIT_ACON:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300367 dev_dbg(musb->controller, "HNP: b_wait_acon timeout; back to b_peripheral\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300368 musb_g_disconnect(musb);
David Brownell84e250f2009-03-31 12:30:04 -0700369 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +0300370 musb->is_active = 0;
371 break;
David Brownellab983f2a2009-03-31 12:35:09 -0700372 case OTG_STATE_A_SUSPEND:
Felipe Balbi550a7372008-07-24 12:27:36 +0300373 case OTG_STATE_A_WAIT_BCON:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300374 dev_dbg(musb->controller, "HNP: %s timeout\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200375 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi743411b2010-12-01 13:22:05 +0200376 musb_platform_set_vbus(musb, 0);
David Brownellab983f2a2009-03-31 12:35:09 -0700377 musb->xceiv->state = OTG_STATE_A_WAIT_VFALL;
Felipe Balbi550a7372008-07-24 12:27:36 +0300378 break;
379 default:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300380 dev_dbg(musb->controller, "HNP: Unhandled mode %s\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200381 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300382 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300383 spin_unlock_irqrestore(&musb->lock, flags);
384}
385
Felipe Balbi550a7372008-07-24 12:27:36 +0300386/*
David Brownellf7f9d632009-03-31 12:32:12 -0700387 * Stops the HNP transition. Caller must take care of locking.
Felipe Balbi550a7372008-07-24 12:27:36 +0300388 */
389void musb_hnp_stop(struct musb *musb)
390{
391 struct usb_hcd *hcd = musb_to_hcd(musb);
392 void __iomem *mbase = musb->mregs;
393 u8 reg;
394
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200395 dev_dbg(musb->controller, "HNP: stop from %s\n",
396 usb_otg_state_string(musb->xceiv->state));
David Brownellab983f2a2009-03-31 12:35:09 -0700397
David Brownell84e250f2009-03-31 12:30:04 -0700398 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300399 case OTG_STATE_A_PERIPHERAL:
Felipe Balbi550a7372008-07-24 12:27:36 +0300400 musb_g_disconnect(musb);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300401 dev_dbg(musb->controller, "HNP: back to %s\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200402 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300403 break;
404 case OTG_STATE_B_HOST:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300405 dev_dbg(musb->controller, "HNP: Disabling HR\n");
Daniel Mack74c2e932013-04-10 21:55:45 +0200406 if (hcd)
407 hcd->self.is_b_host = 0;
David Brownell84e250f2009-03-31 12:30:04 -0700408 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +0300409 MUSB_DEV_MODE(musb);
410 reg = musb_readb(mbase, MUSB_POWER);
411 reg |= MUSB_POWER_SUSPENDM;
412 musb_writeb(mbase, MUSB_POWER, reg);
413 /* REVISIT: Start SESSION_REQUEST here? */
414 break;
415 default:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300416 dev_dbg(musb->controller, "HNP: Stopping in unknown state %s\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200417 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300418 }
419
420 /*
421 * When returning to A state after HNP, avoid hub_port_rebounce(),
422 * which cause occasional OPT A "Did not receive reset after connect"
423 * errors.
424 */
Alan Stern749da5f2010-03-04 17:05:08 -0500425 musb->port1_status &= ~(USB_PORT_STAT_C_CONNECTION << 16);
Felipe Balbi550a7372008-07-24 12:27:36 +0300426}
427
Felipe Balbi550a7372008-07-24 12:27:36 +0300428/*
429 * Interrupt Service Routine to record USB "global" interrupts.
430 * Since these do not happen often and signify things of
431 * paramount importance, it seems OK to check them individually;
432 * the order of the tests is specified in the manual
433 *
434 * @param musb instance pointer
435 * @param int_usb register contents
436 * @param devctl
437 * @param power
438 */
439
Felipe Balbi550a7372008-07-24 12:27:36 +0300440static irqreturn_t musb_stage0_irq(struct musb *musb, u8 int_usb,
Sebastian Andrzej Siewiorb11e94d2012-10-30 19:52:23 +0100441 u8 devctl)
Felipe Balbi550a7372008-07-24 12:27:36 +0300442{
Heikki Krogerusd445b6d2012-02-13 13:24:15 +0200443 struct usb_otg *otg = musb->xceiv->otg;
Felipe Balbi550a7372008-07-24 12:27:36 +0300444 irqreturn_t handled = IRQ_NONE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300445
Sebastian Andrzej Siewiorb11e94d2012-10-30 19:52:23 +0100446 dev_dbg(musb->controller, "<== DevCtl=%02x, int_usb=0x%x\n", devctl,
Felipe Balbi550a7372008-07-24 12:27:36 +0300447 int_usb);
448
449 /* in host mode, the peripheral may issue remote wakeup.
450 * in peripheral mode, the host may resume the link.
451 * spurious RESUME irqs happen too, paired with SUSPEND.
452 */
453 if (int_usb & MUSB_INTR_RESUME) {
454 handled = IRQ_HANDLED;
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200455 dev_dbg(musb->controller, "RESUME (%s)\n", usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300456
457 if (devctl & MUSB_DEVCTL_HM) {
Felipe Balbiaa471452010-03-12 10:27:24 +0200458 void __iomem *mbase = musb->mregs;
Sebastian Andrzej Siewiorb11e94d2012-10-30 19:52:23 +0100459 u8 power;
Felipe Balbiaa471452010-03-12 10:27:24 +0200460
David Brownell84e250f2009-03-31 12:30:04 -0700461 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300462 case OTG_STATE_A_SUSPEND:
463 /* remote wakeup? later, GetPortStatus
464 * will stop RESUME signaling
465 */
466
Sebastian Andrzej Siewiorb11e94d2012-10-30 19:52:23 +0100467 power = musb_readb(musb->mregs, MUSB_POWER);
Felipe Balbi550a7372008-07-24 12:27:36 +0300468 if (power & MUSB_POWER_SUSPENDM) {
469 /* spurious */
470 musb->int_usb &= ~MUSB_INTR_SUSPEND;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300471 dev_dbg(musb->controller, "Spurious SUSPENDM\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300472 break;
473 }
474
475 power &= ~MUSB_POWER_SUSPENDM;
476 musb_writeb(mbase, MUSB_POWER,
477 power | MUSB_POWER_RESUME);
478
479 musb->port1_status |=
480 (USB_PORT_STAT_C_SUSPEND << 16)
481 | MUSB_PORT_STAT_RESUME;
482 musb->rh_timer = jiffies
483 + msecs_to_jiffies(20);
484
David Brownell84e250f2009-03-31 12:30:04 -0700485 musb->xceiv->state = OTG_STATE_A_HOST;
Felipe Balbi550a7372008-07-24 12:27:36 +0300486 musb->is_active = 1;
Daniel Mack0b3eba42013-04-10 21:55:42 +0200487 musb_host_resume_root_hub(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300488 break;
489 case OTG_STATE_B_WAIT_ACON:
David Brownell84e250f2009-03-31 12:30:04 -0700490 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +0300491 musb->is_active = 1;
492 MUSB_DEV_MODE(musb);
493 break;
494 default:
495 WARNING("bogus %s RESUME (%s)\n",
496 "host",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200497 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300498 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300499 } else {
David Brownell84e250f2009-03-31 12:30:04 -0700500 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300501 case OTG_STATE_A_SUSPEND:
502 /* possibly DISCONNECT is upcoming */
David Brownell84e250f2009-03-31 12:30:04 -0700503 musb->xceiv->state = OTG_STATE_A_HOST;
Daniel Mack0b3eba42013-04-10 21:55:42 +0200504 musb_host_resume_root_hub(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300505 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300506 case OTG_STATE_B_WAIT_ACON:
507 case OTG_STATE_B_PERIPHERAL:
508 /* disconnect while suspended? we may
509 * not get a disconnect irq...
510 */
511 if ((devctl & MUSB_DEVCTL_VBUS)
512 != (3 << MUSB_DEVCTL_VBUS_SHIFT)
513 ) {
514 musb->int_usb |= MUSB_INTR_DISCONNECT;
515 musb->int_usb &= ~MUSB_INTR_SUSPEND;
516 break;
517 }
518 musb_g_resume(musb);
519 break;
520 case OTG_STATE_B_IDLE:
521 musb->int_usb &= ~MUSB_INTR_SUSPEND;
522 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300523 default:
524 WARNING("bogus %s RESUME (%s)\n",
525 "peripheral",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200526 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300527 }
528 }
529 }
530
Felipe Balbi550a7372008-07-24 12:27:36 +0300531 /* see manual for the order of the tests */
532 if (int_usb & MUSB_INTR_SESSREQ) {
Felipe Balbiaa471452010-03-12 10:27:24 +0200533 void __iomem *mbase = musb->mregs;
534
Heikki Krogerus19aab562010-10-29 04:23:27 -0500535 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS
536 && (devctl & MUSB_DEVCTL_BDEVICE)) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300537 dev_dbg(musb->controller, "SessReq while on B state\n");
Heikki Krogerusa6038ee2010-09-24 13:44:13 +0300538 return IRQ_HANDLED;
539 }
540
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300541 dev_dbg(musb->controller, "SESSION_REQUEST (%s)\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200542 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300543
544 /* IRQ arrives from ID pin sense or (later, if VBUS power
545 * is removed) SRP. responses are time critical:
546 * - turn on VBUS (with silicon-specific mechanism)
547 * - go through A_WAIT_VRISE
548 * - ... to A_WAIT_BCON.
549 * a_wait_vrise_tmout triggers VBUS_ERROR transitions
550 */
551 musb_writeb(mbase, MUSB_DEVCTL, MUSB_DEVCTL_SESSION);
552 musb->ep0_stage = MUSB_EP0_START;
David Brownell84e250f2009-03-31 12:30:04 -0700553 musb->xceiv->state = OTG_STATE_A_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300554 MUSB_HST_MODE(musb);
Felipe Balbi743411b2010-12-01 13:22:05 +0200555 musb_platform_set_vbus(musb, 1);
Felipe Balbi550a7372008-07-24 12:27:36 +0300556
557 handled = IRQ_HANDLED;
558 }
559
560 if (int_usb & MUSB_INTR_VBUSERROR) {
561 int ignore = 0;
562
563 /* During connection as an A-Device, we may see a short
564 * current spikes causing voltage drop, because of cable
565 * and peripheral capacitance combined with vbus draw.
566 * (So: less common with truly self-powered devices, where
567 * vbus doesn't act like a power supply.)
568 *
569 * Such spikes are short; usually less than ~500 usec, max
570 * of ~2 msec. That is, they're not sustained overcurrent
571 * errors, though they're reported using VBUSERROR irqs.
572 *
573 * Workarounds: (a) hardware: use self powered devices.
574 * (b) software: ignore non-repeated VBUS errors.
575 *
576 * REVISIT: do delays from lots of DEBUG_KERNEL checks
577 * make trouble here, keeping VBUS < 4.4V ?
578 */
David Brownell84e250f2009-03-31 12:30:04 -0700579 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300580 case OTG_STATE_A_HOST:
581 /* recovery is dicey once we've gotten past the
582 * initial stages of enumeration, but if VBUS
583 * stayed ok at the other end of the link, and
584 * another reset is due (at least for high speed,
585 * to redo the chirp etc), it might work OK...
586 */
587 case OTG_STATE_A_WAIT_BCON:
588 case OTG_STATE_A_WAIT_VRISE:
589 if (musb->vbuserr_retry) {
Felipe Balbiaa471452010-03-12 10:27:24 +0200590 void __iomem *mbase = musb->mregs;
591
Felipe Balbi550a7372008-07-24 12:27:36 +0300592 musb->vbuserr_retry--;
593 ignore = 1;
594 devctl |= MUSB_DEVCTL_SESSION;
595 musb_writeb(mbase, MUSB_DEVCTL, devctl);
596 } else {
597 musb->port1_status |=
Alan Stern749da5f2010-03-04 17:05:08 -0500598 USB_PORT_STAT_OVERCURRENT
599 | (USB_PORT_STAT_C_OVERCURRENT << 16);
Felipe Balbi550a7372008-07-24 12:27:36 +0300600 }
601 break;
602 default:
603 break;
604 }
605
Grazvydas Ignotas54485112013-03-10 02:49:28 +0200606 dev_printk(ignore ? KERN_DEBUG : KERN_ERR, musb->controller,
607 "VBUS_ERROR in %s (%02x, %s), retry #%d, port1 %08x\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200608 usb_otg_state_string(musb->xceiv->state),
Felipe Balbi550a7372008-07-24 12:27:36 +0300609 devctl,
610 ({ char *s;
611 switch (devctl & MUSB_DEVCTL_VBUS) {
612 case 0 << MUSB_DEVCTL_VBUS_SHIFT:
613 s = "<SessEnd"; break;
614 case 1 << MUSB_DEVCTL_VBUS_SHIFT:
615 s = "<AValid"; break;
616 case 2 << MUSB_DEVCTL_VBUS_SHIFT:
617 s = "<VBusValid"; break;
618 /* case 3 << MUSB_DEVCTL_VBUS_SHIFT: */
619 default:
620 s = "VALID"; break;
621 }; s; }),
622 VBUSERR_RETRY_COUNT - musb->vbuserr_retry,
623 musb->port1_status);
624
625 /* go through A_WAIT_VFALL then start a new session */
626 if (!ignore)
Felipe Balbi743411b2010-12-01 13:22:05 +0200627 musb_platform_set_vbus(musb, 0);
Felipe Balbi550a7372008-07-24 12:27:36 +0300628 handled = IRQ_HANDLED;
629 }
630
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200631 if (int_usb & MUSB_INTR_SUSPEND) {
Sebastian Andrzej Siewiorb11e94d2012-10-30 19:52:23 +0100632 dev_dbg(musb->controller, "SUSPEND (%s) devctl %02x\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200633 usb_otg_state_string(musb->xceiv->state), devctl);
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200634 handled = IRQ_HANDLED;
635
636 switch (musb->xceiv->state) {
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200637 case OTG_STATE_A_PERIPHERAL:
638 /* We also come here if the cable is removed, since
639 * this silicon doesn't report ID-no-longer-grounded.
640 *
641 * We depend on T(a_wait_bcon) to shut us down, and
642 * hope users don't do anything dicey during this
643 * undesired detour through A_WAIT_BCON.
644 */
645 musb_hnp_stop(musb);
Daniel Mack0b3eba42013-04-10 21:55:42 +0200646 musb_host_resume_root_hub(musb);
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200647 musb_root_disconnect(musb);
648 musb_platform_try_idle(musb, jiffies
649 + msecs_to_jiffies(musb->a_wait_bcon
650 ? : OTG_TIME_A_WAIT_BCON));
651
652 break;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200653 case OTG_STATE_B_IDLE:
654 if (!musb->is_active)
655 break;
656 case OTG_STATE_B_PERIPHERAL:
657 musb_g_suspend(musb);
Felipe Balbi032ec492011-11-24 15:46:26 +0200658 musb->is_active = otg->gadget->b_hnp_enable;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200659 if (musb->is_active) {
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200660 musb->xceiv->state = OTG_STATE_B_WAIT_ACON;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300661 dev_dbg(musb->controller, "HNP: Setting timer for b_ase0_brst\n");
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200662 mod_timer(&musb->otg_timer, jiffies
663 + msecs_to_jiffies(
664 OTG_TIME_B_ASE0_BRST));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200665 }
666 break;
667 case OTG_STATE_A_WAIT_BCON:
668 if (musb->a_wait_bcon != 0)
669 musb_platform_try_idle(musb, jiffies
670 + msecs_to_jiffies(musb->a_wait_bcon));
671 break;
672 case OTG_STATE_A_HOST:
673 musb->xceiv->state = OTG_STATE_A_SUSPEND;
Felipe Balbi032ec492011-11-24 15:46:26 +0200674 musb->is_active = otg->host->b_hnp_enable;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200675 break;
676 case OTG_STATE_B_HOST:
677 /* Transition to B_PERIPHERAL, see 6.8.2.6 p 44 */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300678 dev_dbg(musb->controller, "REVISIT: SUSPEND as B_HOST\n");
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200679 break;
680 default:
681 /* "should not happen" */
682 musb->is_active = 0;
683 break;
684 }
685 }
686
Felipe Balbi550a7372008-07-24 12:27:36 +0300687 if (int_usb & MUSB_INTR_CONNECT) {
688 struct usb_hcd *hcd = musb_to_hcd(musb);
689
690 handled = IRQ_HANDLED;
691 musb->is_active = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +0300692
693 musb->ep0_stage = MUSB_EP0_START;
694
Felipe Balbi550a7372008-07-24 12:27:36 +0300695 /* flush endpoints when transitioning from Device Mode */
696 if (is_peripheral_active(musb)) {
697 /* REVISIT HNP; just force disconnect */
698 }
Sebastian Andrzej Siewiorb18d26f2012-10-30 19:52:26 +0100699 musb->intrtxe = musb->epmask;
700 musb_writew(musb->mregs, MUSB_INTRTXE, musb->intrtxe);
Sebastian Andrzej Siewioraf5ec142012-10-30 19:52:25 +0100701 musb->intrrxe = musb->epmask & 0xfffe;
702 musb_writew(musb->mregs, MUSB_INTRRXE, musb->intrrxe);
Ajay Kumar Guptad709d222010-07-08 14:03:00 +0530703 musb_writeb(musb->mregs, MUSB_INTRUSBE, 0xf7);
Felipe Balbi550a7372008-07-24 12:27:36 +0300704 musb->port1_status &= ~(USB_PORT_STAT_LOW_SPEED
705 |USB_PORT_STAT_HIGH_SPEED
706 |USB_PORT_STAT_ENABLE
707 );
708 musb->port1_status |= USB_PORT_STAT_CONNECTION
709 |(USB_PORT_STAT_C_CONNECTION << 16);
710
711 /* high vs full speed is just a guess until after reset */
712 if (devctl & MUSB_DEVCTL_LSDEV)
713 musb->port1_status |= USB_PORT_STAT_LOW_SPEED;
714
Felipe Balbi550a7372008-07-24 12:27:36 +0300715 /* indicate new connection to OTG machine */
David Brownell84e250f2009-03-31 12:30:04 -0700716 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300717 case OTG_STATE_B_PERIPHERAL:
718 if (int_usb & MUSB_INTR_SUSPEND) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300719 dev_dbg(musb->controller, "HNP: SUSPEND+CONNECT, now b_host\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300720 int_usb &= ~MUSB_INTR_SUSPEND;
David Brownell1de00da2009-04-02 10:16:11 -0700721 goto b_host;
Felipe Balbi550a7372008-07-24 12:27:36 +0300722 } else
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300723 dev_dbg(musb->controller, "CONNECT as b_peripheral???\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300724 break;
725 case OTG_STATE_B_WAIT_ACON:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300726 dev_dbg(musb->controller, "HNP: CONNECT, now b_host\n");
David Brownell1de00da2009-04-02 10:16:11 -0700727b_host:
David Brownell84e250f2009-03-31 12:30:04 -0700728 musb->xceiv->state = OTG_STATE_B_HOST;
Daniel Mack74c2e932013-04-10 21:55:45 +0200729 if (musb->hcd)
730 musb->hcd->self.is_b_host = 1;
David Brownell1de00da2009-04-02 10:16:11 -0700731 del_timer(&musb->otg_timer);
Felipe Balbi550a7372008-07-24 12:27:36 +0300732 break;
733 default:
734 if ((devctl & MUSB_DEVCTL_VBUS)
735 == (3 << MUSB_DEVCTL_VBUS_SHIFT)) {
David Brownell84e250f2009-03-31 12:30:04 -0700736 musb->xceiv->state = OTG_STATE_A_HOST;
Daniel Mack0b3eba42013-04-10 21:55:42 +0200737 if (hcd)
738 hcd->self.is_b_host = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +0300739 }
740 break;
741 }
David Brownell1de00da2009-04-02 10:16:11 -0700742
Daniel Mack0b3eba42013-04-10 21:55:42 +0200743 musb_host_poke_root_hub(musb);
David Brownell1de00da2009-04-02 10:16:11 -0700744
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300745 dev_dbg(musb->controller, "CONNECT (%s) devctl %02x\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200746 usb_otg_state_string(musb->xceiv->state), devctl);
Felipe Balbi550a7372008-07-24 12:27:36 +0300747 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300748
Felipe Balbi6d349672013-04-29 12:02:24 +0300749 if (int_usb & MUSB_INTR_DISCONNECT) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300750 dev_dbg(musb->controller, "DISCONNECT (%s) as %s, devctl %02x\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200751 usb_otg_state_string(musb->xceiv->state),
Felipe Balbi550a7372008-07-24 12:27:36 +0300752 MUSB_MODE(musb), devctl);
753 handled = IRQ_HANDLED;
754
David Brownell84e250f2009-03-31 12:30:04 -0700755 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300756 case OTG_STATE_A_HOST:
757 case OTG_STATE_A_SUSPEND:
Daniel Mack0b3eba42013-04-10 21:55:42 +0200758 musb_host_resume_root_hub(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300759 musb_root_disconnect(musb);
Felipe Balbi032ec492011-11-24 15:46:26 +0200760 if (musb->a_wait_bcon != 0)
Felipe Balbi550a7372008-07-24 12:27:36 +0300761 musb_platform_try_idle(musb, jiffies
762 + msecs_to_jiffies(musb->a_wait_bcon));
763 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300764 case OTG_STATE_B_HOST:
David Brownellab983f2a2009-03-31 12:35:09 -0700765 /* REVISIT this behaves for "real disconnect"
766 * cases; make sure the other transitions from
767 * from B_HOST act right too. The B_HOST code
768 * in hnp_stop() is currently not used...
769 */
770 musb_root_disconnect(musb);
Daniel Mack74c2e932013-04-10 21:55:45 +0200771 if (musb->hcd)
772 musb->hcd->self.is_b_host = 0;
David Brownellab983f2a2009-03-31 12:35:09 -0700773 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
774 MUSB_DEV_MODE(musb);
775 musb_g_disconnect(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300776 break;
777 case OTG_STATE_A_PERIPHERAL:
778 musb_hnp_stop(musb);
779 musb_root_disconnect(musb);
780 /* FALLTHROUGH */
781 case OTG_STATE_B_WAIT_ACON:
782 /* FALLTHROUGH */
Felipe Balbi550a7372008-07-24 12:27:36 +0300783 case OTG_STATE_B_PERIPHERAL:
784 case OTG_STATE_B_IDLE:
785 musb_g_disconnect(musb);
786 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300787 default:
788 WARNING("unhandled DISCONNECT transition (%s)\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200789 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300790 break;
791 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300792 }
793
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200794 /* mentor saves a bit: bus reset and babble share the same irq.
795 * only host sees babble; only peripheral sees bus reset.
796 */
797 if (int_usb & MUSB_INTR_RESET) {
798 handled = IRQ_HANDLED;
Felipe Balbia04d46d2011-11-24 15:46:27 +0200799 if ((devctl & MUSB_DEVCTL_HM) != 0) {
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200800 /*
801 * Looks like non-HS BABBLE can be ignored, but
802 * HS BABBLE is an error condition. For HS the solution
803 * is to avoid babble in the first place and fix what
804 * caused BABBLE. When HS BABBLE happens we can only
805 * stop the session.
806 */
807 if (devctl & (MUSB_DEVCTL_FSDEV | MUSB_DEVCTL_LSDEV))
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300808 dev_dbg(musb->controller, "BABBLE devctl: %02x\n", devctl);
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200809 else {
810 ERR("Stopping host session -- babble\n");
811 musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
812 }
Felipe Balbia04d46d2011-11-24 15:46:27 +0200813 } else {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300814 dev_dbg(musb->controller, "BUS RESET as %s\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200815 usb_otg_state_string(musb->xceiv->state));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200816 switch (musb->xceiv->state) {
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200817 case OTG_STATE_A_SUSPEND:
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200818 musb_g_reset(musb);
819 /* FALLTHROUGH */
820 case OTG_STATE_A_WAIT_BCON: /* OPT TD.4.7-900ms */
821 /* never use invalid T(a_wait_bcon) */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300822 dev_dbg(musb->controller, "HNP: in %s, %d msec timeout\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200823 usb_otg_state_string(musb->xceiv->state),
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200824 TA_WAIT_BCON(musb));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200825 mod_timer(&musb->otg_timer, jiffies
826 + msecs_to_jiffies(TA_WAIT_BCON(musb)));
827 break;
828 case OTG_STATE_A_PERIPHERAL:
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200829 del_timer(&musb->otg_timer);
830 musb_g_reset(musb);
831 break;
832 case OTG_STATE_B_WAIT_ACON:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300833 dev_dbg(musb->controller, "HNP: RESET (%s), to b_peripheral\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200834 usb_otg_state_string(musb->xceiv->state));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200835 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
836 musb_g_reset(musb);
837 break;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200838 case OTG_STATE_B_IDLE:
839 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
840 /* FALLTHROUGH */
841 case OTG_STATE_B_PERIPHERAL:
842 musb_g_reset(musb);
843 break;
844 default:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300845 dev_dbg(musb->controller, "Unhandled BUS RESET as %s\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200846 usb_otg_state_string(musb->xceiv->state));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200847 }
848 }
849 }
850
851#if 0
852/* REVISIT ... this would be for multiplexing periodic endpoints, or
853 * supporting transfer phasing to prevent exceeding ISO bandwidth
854 * limits of a given frame or microframe.
855 *
856 * It's not needed for peripheral side, which dedicates endpoints;
857 * though it _might_ use SOF irqs for other purposes.
858 *
859 * And it's not currently needed for host side, which also dedicates
860 * endpoints, relies on TX/RX interval registers, and isn't claimed
861 * to support ISO transfers yet.
862 */
863 if (int_usb & MUSB_INTR_SOF) {
864 void __iomem *mbase = musb->mregs;
865 struct musb_hw_ep *ep;
866 u8 epnum;
867 u16 frame;
868
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300869 dev_dbg(musb->controller, "START_OF_FRAME\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300870 handled = IRQ_HANDLED;
871
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200872 /* start any periodic Tx transfers waiting for current frame */
873 frame = musb_readw(mbase, MUSB_FRAME);
874 ep = musb->endpoints;
875 for (epnum = 1; (epnum < musb->nr_endpoints)
876 && (musb->epmask >= (1 << epnum));
877 epnum++, ep++) {
878 /*
879 * FIXME handle framecounter wraps (12 bits)
880 * eliminate duplicated StartUrb logic
Felipe Balbi550a7372008-07-24 12:27:36 +0300881 */
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200882 if (ep->dwWaitFrame >= frame) {
883 ep->dwWaitFrame = 0;
884 pr_debug("SOF --> periodic TX%s on %d\n",
885 ep->tx_channel ? " DMA" : "",
886 epnum);
887 if (!ep->tx_channel)
888 musb_h_tx_start(musb, epnum);
889 else
890 cppi_hostdma_start(musb, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +0300891 }
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200892 } /* end of for loop */
Felipe Balbi550a7372008-07-24 12:27:36 +0300893 }
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200894#endif
Felipe Balbi550a7372008-07-24 12:27:36 +0300895
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200896 schedule_work(&musb->irq_work);
Felipe Balbi550a7372008-07-24 12:27:36 +0300897
898 return handled;
899}
900
901/*-------------------------------------------------------------------------*/
902
Felipe Balbi550a7372008-07-24 12:27:36 +0300903static void musb_generic_disable(struct musb *musb)
904{
905 void __iomem *mbase = musb->mregs;
906 u16 temp;
907
908 /* disable interrupts */
909 musb_writeb(mbase, MUSB_INTRUSBE, 0);
Sebastian Andrzej Siewiorb18d26f2012-10-30 19:52:26 +0100910 musb->intrtxe = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +0300911 musb_writew(mbase, MUSB_INTRTXE, 0);
Sebastian Andrzej Siewioraf5ec142012-10-30 19:52:25 +0100912 musb->intrrxe = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +0300913 musb_writew(mbase, MUSB_INTRRXE, 0);
914
915 /* off */
916 musb_writeb(mbase, MUSB_DEVCTL, 0);
917
918 /* flush pending interrupts */
919 temp = musb_readb(mbase, MUSB_INTRUSB);
920 temp = musb_readw(mbase, MUSB_INTRTX);
921 temp = musb_readw(mbase, MUSB_INTRRX);
922
923}
924
925/*
926 * Make the HDRC stop (disable interrupts, etc.);
927 * reversible by musb_start
928 * called on gadget driver unregister
929 * with controller locked, irqs blocked
930 * acts as a NOP unless some role activated the hardware
931 */
932void musb_stop(struct musb *musb)
933{
934 /* stop IRQs, timers, ... */
935 musb_platform_disable(musb);
936 musb_generic_disable(musb);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300937 dev_dbg(musb->controller, "HDRC disabled\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300938
939 /* FIXME
940 * - mark host and/or peripheral drivers unusable/inactive
941 * - disable DMA (and enable it in HdrcStart)
942 * - make sure we can musb_start() after musb_stop(); with
943 * OTG mode, gadget driver module rmmod/modprobe cycles that
944 * - ...
945 */
946 musb_platform_try_idle(musb, 0);
947}
948
949static void musb_shutdown(struct platform_device *pdev)
950{
951 struct musb *musb = dev_to_musb(&pdev->dev);
952 unsigned long flags;
953
Hema HK4f9edd22011-03-22 16:02:12 +0530954 pm_runtime_get_sync(musb->controller);
Grazvydas Ignotas24307ca2012-01-12 15:22:45 +0200955
Daniel Mack2cc65fe2013-04-10 21:55:47 +0200956 musb_host_cleanup(musb);
Grazvydas Ignotas24307ca2012-01-12 15:22:45 +0200957 musb_gadget_cleanup(musb);
958
Felipe Balbi550a7372008-07-24 12:27:36 +0300959 spin_lock_irqsave(&musb->lock, flags);
960 musb_platform_disable(musb);
961 musb_generic_disable(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300962 spin_unlock_irqrestore(&musb->lock, flags);
963
Grazvydas Ignotas120d0742010-10-10 13:52:22 -0500964 musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
965 musb_platform_exit(musb);
Grazvydas Ignotas120d0742010-10-10 13:52:22 -0500966
Hema HK4f9edd22011-03-22 16:02:12 +0530967 pm_runtime_put(musb->controller);
Felipe Balbi550a7372008-07-24 12:27:36 +0300968 /* FIXME power down */
969}
970
971
972/*-------------------------------------------------------------------------*/
973
974/*
975 * The silicon either has hard-wired endpoint configurations, or else
976 * "dynamic fifo" sizing. The driver has support for both, though at this
David Brownellc767c1c2008-09-11 11:53:23 +0300977 * writing only the dynamic sizing is very well tested. Since we switched
978 * away from compile-time hardware parameters, we can no longer rely on
979 * dead code elimination to leave only the relevant one in the object file.
Felipe Balbi550a7372008-07-24 12:27:36 +0300980 *
981 * We don't currently use dynamic fifo setup capability to do anything
982 * more than selecting one of a bunch of predefined configurations.
983 */
Felipe Balbiee34e512011-06-29 12:45:03 +0300984#if defined(CONFIG_USB_MUSB_TUSB6010) \
985 || defined(CONFIG_USB_MUSB_TUSB6010_MODULE) \
986 || defined(CONFIG_USB_MUSB_OMAP2PLUS) \
987 || defined(CONFIG_USB_MUSB_OMAP2PLUS_MODULE) \
988 || defined(CONFIG_USB_MUSB_AM35X) \
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530989 || defined(CONFIG_USB_MUSB_AM35X_MODULE) \
990 || defined(CONFIG_USB_MUSB_DSPS) \
991 || defined(CONFIG_USB_MUSB_DSPS_MODULE)
Bill Pembertond3608b62012-11-19 13:24:34 -0500992static ushort fifo_mode = 4;
Felipe Balbiee34e512011-06-29 12:45:03 +0300993#elif defined(CONFIG_USB_MUSB_UX500) \
994 || defined(CONFIG_USB_MUSB_UX500_MODULE)
Bill Pembertond3608b62012-11-19 13:24:34 -0500995static ushort fifo_mode = 5;
Felipe Balbi550a7372008-07-24 12:27:36 +0300996#else
Bill Pembertond3608b62012-11-19 13:24:34 -0500997static ushort fifo_mode = 2;
Felipe Balbi550a7372008-07-24 12:27:36 +0300998#endif
999
1000/* "modprobe ... fifo_mode=1" etc */
1001module_param(fifo_mode, ushort, 0);
1002MODULE_PARM_DESC(fifo_mode, "initial endpoint configuration");
1003
Felipe Balbi550a7372008-07-24 12:27:36 +03001004/*
1005 * tables defining fifo_mode values. define more if you like.
1006 * for host side, make sure both halves of ep1 are set up.
1007 */
1008
1009/* mode 0 - fits in 2KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001010static struct musb_fifo_cfg mode_0_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001011{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1012{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1013{ .hw_ep_num = 2, .style = FIFO_RXTX, .maxpacket = 512, },
1014{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1015{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1016};
1017
1018/* mode 1 - fits in 4KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001019static struct musb_fifo_cfg mode_1_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001020{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1021{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1022{ .hw_ep_num = 2, .style = FIFO_RXTX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1023{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1024{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1025};
1026
1027/* mode 2 - fits in 4KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001028static struct musb_fifo_cfg mode_2_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001029{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1030{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1031{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1032{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1033{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1034{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1035};
1036
1037/* mode 3 - fits in 4KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001038static struct musb_fifo_cfg mode_3_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001039{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1040{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1041{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1042{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1043{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1044{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1045};
1046
1047/* mode 4 - fits in 16KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001048static struct musb_fifo_cfg mode_4_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001049{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1050{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1051{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1052{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1053{ .hw_ep_num = 3, .style = FIFO_TX, .maxpacket = 512, },
1054{ .hw_ep_num = 3, .style = FIFO_RX, .maxpacket = 512, },
1055{ .hw_ep_num = 4, .style = FIFO_TX, .maxpacket = 512, },
1056{ .hw_ep_num = 4, .style = FIFO_RX, .maxpacket = 512, },
1057{ .hw_ep_num = 5, .style = FIFO_TX, .maxpacket = 512, },
1058{ .hw_ep_num = 5, .style = FIFO_RX, .maxpacket = 512, },
1059{ .hw_ep_num = 6, .style = FIFO_TX, .maxpacket = 512, },
1060{ .hw_ep_num = 6, .style = FIFO_RX, .maxpacket = 512, },
1061{ .hw_ep_num = 7, .style = FIFO_TX, .maxpacket = 512, },
1062{ .hw_ep_num = 7, .style = FIFO_RX, .maxpacket = 512, },
1063{ .hw_ep_num = 8, .style = FIFO_TX, .maxpacket = 512, },
1064{ .hw_ep_num = 8, .style = FIFO_RX, .maxpacket = 512, },
1065{ .hw_ep_num = 9, .style = FIFO_TX, .maxpacket = 512, },
1066{ .hw_ep_num = 9, .style = FIFO_RX, .maxpacket = 512, },
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001067{ .hw_ep_num = 10, .style = FIFO_TX, .maxpacket = 256, },
1068{ .hw_ep_num = 10, .style = FIFO_RX, .maxpacket = 64, },
1069{ .hw_ep_num = 11, .style = FIFO_TX, .maxpacket = 256, },
1070{ .hw_ep_num = 11, .style = FIFO_RX, .maxpacket = 64, },
1071{ .hw_ep_num = 12, .style = FIFO_TX, .maxpacket = 256, },
1072{ .hw_ep_num = 12, .style = FIFO_RX, .maxpacket = 64, },
1073{ .hw_ep_num = 13, .style = FIFO_RXTX, .maxpacket = 4096, },
Felipe Balbi550a7372008-07-24 12:27:36 +03001074{ .hw_ep_num = 14, .style = FIFO_RXTX, .maxpacket = 1024, },
1075{ .hw_ep_num = 15, .style = FIFO_RXTX, .maxpacket = 1024, },
1076};
1077
Ajay Kumar Gupta3b151522009-12-28 13:40:34 +02001078/* mode 5 - fits in 8KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001079static struct musb_fifo_cfg mode_5_cfg[] = {
Ajay Kumar Gupta3b151522009-12-28 13:40:34 +02001080{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1081{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1082{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1083{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1084{ .hw_ep_num = 3, .style = FIFO_TX, .maxpacket = 512, },
1085{ .hw_ep_num = 3, .style = FIFO_RX, .maxpacket = 512, },
1086{ .hw_ep_num = 4, .style = FIFO_TX, .maxpacket = 512, },
1087{ .hw_ep_num = 4, .style = FIFO_RX, .maxpacket = 512, },
1088{ .hw_ep_num = 5, .style = FIFO_TX, .maxpacket = 512, },
1089{ .hw_ep_num = 5, .style = FIFO_RX, .maxpacket = 512, },
1090{ .hw_ep_num = 6, .style = FIFO_TX, .maxpacket = 32, },
1091{ .hw_ep_num = 6, .style = FIFO_RX, .maxpacket = 32, },
1092{ .hw_ep_num = 7, .style = FIFO_TX, .maxpacket = 32, },
1093{ .hw_ep_num = 7, .style = FIFO_RX, .maxpacket = 32, },
1094{ .hw_ep_num = 8, .style = FIFO_TX, .maxpacket = 32, },
1095{ .hw_ep_num = 8, .style = FIFO_RX, .maxpacket = 32, },
1096{ .hw_ep_num = 9, .style = FIFO_TX, .maxpacket = 32, },
1097{ .hw_ep_num = 9, .style = FIFO_RX, .maxpacket = 32, },
1098{ .hw_ep_num = 10, .style = FIFO_TX, .maxpacket = 32, },
1099{ .hw_ep_num = 10, .style = FIFO_RX, .maxpacket = 32, },
1100{ .hw_ep_num = 11, .style = FIFO_TX, .maxpacket = 32, },
1101{ .hw_ep_num = 11, .style = FIFO_RX, .maxpacket = 32, },
1102{ .hw_ep_num = 12, .style = FIFO_TX, .maxpacket = 32, },
1103{ .hw_ep_num = 12, .style = FIFO_RX, .maxpacket = 32, },
1104{ .hw_ep_num = 13, .style = FIFO_RXTX, .maxpacket = 512, },
1105{ .hw_ep_num = 14, .style = FIFO_RXTX, .maxpacket = 1024, },
1106{ .hw_ep_num = 15, .style = FIFO_RXTX, .maxpacket = 1024, },
1107};
Felipe Balbi550a7372008-07-24 12:27:36 +03001108
1109/*
1110 * configure a fifo; for non-shared endpoints, this may be called
1111 * once for a tx fifo and once for an rx fifo.
1112 *
1113 * returns negative errno or offset for next fifo.
1114 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001115static int
Felipe Balbi550a7372008-07-24 12:27:36 +03001116fifo_setup(struct musb *musb, struct musb_hw_ep *hw_ep,
Felipe Balbie6c213b2010-03-12 10:29:06 +02001117 const struct musb_fifo_cfg *cfg, u16 offset)
Felipe Balbi550a7372008-07-24 12:27:36 +03001118{
1119 void __iomem *mbase = musb->mregs;
1120 int size = 0;
1121 u16 maxpacket = cfg->maxpacket;
1122 u16 c_off = offset >> 3;
1123 u8 c_size;
1124
1125 /* expect hw_ep has already been zero-initialized */
1126
1127 size = ffs(max(maxpacket, (u16) 8)) - 1;
1128 maxpacket = 1 << size;
1129
1130 c_size = size - 3;
1131 if (cfg->mode == BUF_DOUBLE) {
Felipe Balbica6d1b12008-08-08 12:40:54 +03001132 if ((offset + (maxpacket << 1)) >
1133 (1 << (musb->config->ram_bits + 2)))
Felipe Balbi550a7372008-07-24 12:27:36 +03001134 return -EMSGSIZE;
1135 c_size |= MUSB_FIFOSZ_DPB;
1136 } else {
Felipe Balbica6d1b12008-08-08 12:40:54 +03001137 if ((offset + maxpacket) > (1 << (musb->config->ram_bits + 2)))
Felipe Balbi550a7372008-07-24 12:27:36 +03001138 return -EMSGSIZE;
1139 }
1140
1141 /* configure the FIFO */
1142 musb_writeb(mbase, MUSB_INDEX, hw_ep->epnum);
1143
Felipe Balbi550a7372008-07-24 12:27:36 +03001144 /* EP0 reserved endpoint for control, bidirectional;
1145 * EP1 reserved for bulk, two unidirection halves.
1146 */
1147 if (hw_ep->epnum == 1)
1148 musb->bulk_ep = hw_ep;
1149 /* REVISIT error check: be sure ep0 can both rx and tx ... */
Felipe Balbi550a7372008-07-24 12:27:36 +03001150 switch (cfg->style) {
1151 case FIFO_TX:
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001152 musb_write_txfifosz(mbase, c_size);
1153 musb_write_txfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001154 hw_ep->tx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1155 hw_ep->max_packet_sz_tx = maxpacket;
1156 break;
1157 case FIFO_RX:
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001158 musb_write_rxfifosz(mbase, c_size);
1159 musb_write_rxfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001160 hw_ep->rx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1161 hw_ep->max_packet_sz_rx = maxpacket;
1162 break;
1163 case FIFO_RXTX:
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001164 musb_write_txfifosz(mbase, c_size);
1165 musb_write_txfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001166 hw_ep->rx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1167 hw_ep->max_packet_sz_rx = maxpacket;
1168
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001169 musb_write_rxfifosz(mbase, c_size);
1170 musb_write_rxfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001171 hw_ep->tx_double_buffered = hw_ep->rx_double_buffered;
1172 hw_ep->max_packet_sz_tx = maxpacket;
1173
1174 hw_ep->is_shared_fifo = true;
1175 break;
1176 }
1177
1178 /* NOTE rx and tx endpoint irqs aren't managed separately,
1179 * which happens to be ok
1180 */
1181 musb->epmask |= (1 << hw_ep->epnum);
1182
1183 return offset + (maxpacket << ((c_size & MUSB_FIFOSZ_DPB) ? 1 : 0));
1184}
1185
Bill Pembertond3608b62012-11-19 13:24:34 -05001186static struct musb_fifo_cfg ep0_cfg = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001187 .style = FIFO_RXTX, .maxpacket = 64,
1188};
1189
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001190static int ep_config_from_table(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001191{
Felipe Balbie6c213b2010-03-12 10:29:06 +02001192 const struct musb_fifo_cfg *cfg;
Felipe Balbi550a7372008-07-24 12:27:36 +03001193 unsigned i, n;
1194 int offset;
1195 struct musb_hw_ep *hw_ep = musb->endpoints;
1196
Felipe Balbie6c213b2010-03-12 10:29:06 +02001197 if (musb->config->fifo_cfg) {
1198 cfg = musb->config->fifo_cfg;
1199 n = musb->config->fifo_cfg_size;
1200 goto done;
1201 }
1202
Felipe Balbi550a7372008-07-24 12:27:36 +03001203 switch (fifo_mode) {
1204 default:
1205 fifo_mode = 0;
1206 /* FALLTHROUGH */
1207 case 0:
1208 cfg = mode_0_cfg;
1209 n = ARRAY_SIZE(mode_0_cfg);
1210 break;
1211 case 1:
1212 cfg = mode_1_cfg;
1213 n = ARRAY_SIZE(mode_1_cfg);
1214 break;
1215 case 2:
1216 cfg = mode_2_cfg;
1217 n = ARRAY_SIZE(mode_2_cfg);
1218 break;
1219 case 3:
1220 cfg = mode_3_cfg;
1221 n = ARRAY_SIZE(mode_3_cfg);
1222 break;
1223 case 4:
1224 cfg = mode_4_cfg;
1225 n = ARRAY_SIZE(mode_4_cfg);
1226 break;
Ajay Kumar Gupta3b151522009-12-28 13:40:34 +02001227 case 5:
1228 cfg = mode_5_cfg;
1229 n = ARRAY_SIZE(mode_5_cfg);
1230 break;
Felipe Balbi550a7372008-07-24 12:27:36 +03001231 }
1232
1233 printk(KERN_DEBUG "%s: setup fifo_mode %d\n",
1234 musb_driver_name, fifo_mode);
1235
1236
Felipe Balbie6c213b2010-03-12 10:29:06 +02001237done:
Felipe Balbi550a7372008-07-24 12:27:36 +03001238 offset = fifo_setup(musb, hw_ep, &ep0_cfg, 0);
1239 /* assert(offset > 0) */
1240
1241 /* NOTE: for RTL versions >= 1.400 EPINFO and RAMINFO would
Felipe Balbica6d1b12008-08-08 12:40:54 +03001242 * be better than static musb->config->num_eps and DYN_FIFO_SIZE...
Felipe Balbi550a7372008-07-24 12:27:36 +03001243 */
1244
1245 for (i = 0; i < n; i++) {
1246 u8 epn = cfg->hw_ep_num;
1247
Felipe Balbica6d1b12008-08-08 12:40:54 +03001248 if (epn >= musb->config->num_eps) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001249 pr_debug("%s: invalid ep %d\n",
1250 musb_driver_name, epn);
David Brownellbb1c9ef2008-11-24 13:06:50 +02001251 return -EINVAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001252 }
1253 offset = fifo_setup(musb, hw_ep + epn, cfg++, offset);
1254 if (offset < 0) {
1255 pr_debug("%s: mem overrun, ep %d\n",
1256 musb_driver_name, epn);
Shubhrajyoti Df69dfa12012-08-07 19:56:31 +05301257 return offset;
Felipe Balbi550a7372008-07-24 12:27:36 +03001258 }
1259 epn++;
1260 musb->nr_endpoints = max(epn, musb->nr_endpoints);
1261 }
1262
1263 printk(KERN_DEBUG "%s: %d/%d max ep, %d/%d memory\n",
1264 musb_driver_name,
Felipe Balbica6d1b12008-08-08 12:40:54 +03001265 n + 1, musb->config->num_eps * 2 - 1,
1266 offset, (1 << (musb->config->ram_bits + 2)));
Felipe Balbi550a7372008-07-24 12:27:36 +03001267
Felipe Balbi550a7372008-07-24 12:27:36 +03001268 if (!musb->bulk_ep) {
1269 pr_debug("%s: missing bulk\n", musb_driver_name);
1270 return -EINVAL;
1271 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001272
1273 return 0;
1274}
1275
1276
1277/*
1278 * ep_config_from_hw - when MUSB_C_DYNFIFO_DEF is false
1279 * @param musb the controller
1280 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001281static int ep_config_from_hw(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001282{
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001283 u8 epnum = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001284 struct musb_hw_ep *hw_ep;
Felipe Balbia1565442012-08-07 14:00:50 +03001285 void __iomem *mbase = musb->mregs;
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001286 int ret = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001287
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001288 dev_dbg(musb->controller, "<== static silicon ep config\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001289
1290 /* FIXME pick up ep0 maxpacket size */
1291
Felipe Balbica6d1b12008-08-08 12:40:54 +03001292 for (epnum = 1; epnum < musb->config->num_eps; epnum++) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001293 musb_ep_select(mbase, epnum);
1294 hw_ep = musb->endpoints + epnum;
1295
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001296 ret = musb_read_fifosize(musb, hw_ep, epnum);
1297 if (ret < 0)
Felipe Balbi550a7372008-07-24 12:27:36 +03001298 break;
Felipe Balbi550a7372008-07-24 12:27:36 +03001299
1300 /* FIXME set up hw_ep->{rx,tx}_double_buffered */
1301
Felipe Balbi550a7372008-07-24 12:27:36 +03001302 /* pick an RX/TX endpoint for bulk */
1303 if (hw_ep->max_packet_sz_tx < 512
1304 || hw_ep->max_packet_sz_rx < 512)
1305 continue;
1306
1307 /* REVISIT: this algorithm is lazy, we should at least
1308 * try to pick a double buffered endpoint.
1309 */
1310 if (musb->bulk_ep)
1311 continue;
1312 musb->bulk_ep = hw_ep;
Felipe Balbi550a7372008-07-24 12:27:36 +03001313 }
1314
Felipe Balbi550a7372008-07-24 12:27:36 +03001315 if (!musb->bulk_ep) {
1316 pr_debug("%s: missing bulk\n", musb_driver_name);
1317 return -EINVAL;
1318 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001319
1320 return 0;
1321}
1322
1323enum { MUSB_CONTROLLER_MHDRC, MUSB_CONTROLLER_HDRC, };
1324
1325/* Initialize MUSB (M)HDRC part of the USB hardware subsystem;
1326 * configure endpoints, or take their config from silicon
1327 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001328static int musb_core_init(u16 musb_type, struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001329{
Felipe Balbi550a7372008-07-24 12:27:36 +03001330 u8 reg;
1331 char *type;
Maulik Mankad0ea52ff2009-12-22 16:19:53 +05301332 char aInfo[90], aRevision[32], aDate[12];
Felipe Balbi550a7372008-07-24 12:27:36 +03001333 void __iomem *mbase = musb->mregs;
1334 int status = 0;
1335 int i;
1336
1337 /* log core options (read using indexed model) */
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001338 reg = musb_read_configdata(mbase);
Felipe Balbi550a7372008-07-24 12:27:36 +03001339
1340 strcpy(aInfo, (reg & MUSB_CONFIGDATA_UTMIDW) ? "UTMI-16" : "UTMI-8");
Ajay Kumar Gupta51bf0d02009-12-28 13:40:41 +02001341 if (reg & MUSB_CONFIGDATA_DYNFIFO) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001342 strcat(aInfo, ", dyn FIFOs");
Ajay Kumar Gupta51bf0d02009-12-28 13:40:41 +02001343 musb->dyn_fifo = true;
1344 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001345 if (reg & MUSB_CONFIGDATA_MPRXE) {
1346 strcat(aInfo, ", bulk combine");
Felipe Balbi550a7372008-07-24 12:27:36 +03001347 musb->bulk_combine = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001348 }
1349 if (reg & MUSB_CONFIGDATA_MPTXE) {
1350 strcat(aInfo, ", bulk split");
Felipe Balbi550a7372008-07-24 12:27:36 +03001351 musb->bulk_split = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001352 }
1353 if (reg & MUSB_CONFIGDATA_HBRXE) {
1354 strcat(aInfo, ", HB-ISO Rx");
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001355 musb->hb_iso_rx = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001356 }
1357 if (reg & MUSB_CONFIGDATA_HBTXE) {
1358 strcat(aInfo, ", HB-ISO Tx");
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001359 musb->hb_iso_tx = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001360 }
1361 if (reg & MUSB_CONFIGDATA_SOFTCONE)
1362 strcat(aInfo, ", SoftConn");
1363
1364 printk(KERN_DEBUG "%s: ConfigData=0x%02x (%s)\n",
1365 musb_driver_name, reg, aInfo);
1366
Felipe Balbi550a7372008-07-24 12:27:36 +03001367 aDate[0] = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001368 if (MUSB_CONTROLLER_MHDRC == musb_type) {
1369 musb->is_multipoint = 1;
1370 type = "M";
1371 } else {
1372 musb->is_multipoint = 0;
1373 type = "";
Felipe Balbi550a7372008-07-24 12:27:36 +03001374#ifndef CONFIG_USB_OTG_BLACKLIST_HUB
1375 printk(KERN_ERR
1376 "%s: kernel must blacklist external hubs\n",
1377 musb_driver_name);
1378#endif
Felipe Balbi550a7372008-07-24 12:27:36 +03001379 }
1380
1381 /* log release info */
Anand Gadiyar32c3b942009-11-16 21:09:21 +05301382 musb->hwvers = musb_read_hwvers(mbase);
1383 snprintf(aRevision, 32, "%d.%d%s", MUSB_HWVERS_MAJOR(musb->hwvers),
1384 MUSB_HWVERS_MINOR(musb->hwvers),
1385 (musb->hwvers & MUSB_HWVERS_RC) ? "RC" : "");
Felipe Balbi550a7372008-07-24 12:27:36 +03001386 printk(KERN_DEBUG "%s: %sHDRC RTL version %s %s\n",
1387 musb_driver_name, type, aRevision, aDate);
1388
1389 /* configure ep0 */
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001390 musb_configure_ep0(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001391
1392 /* discover endpoint configuration */
1393 musb->nr_endpoints = 1;
1394 musb->epmask = 1;
1395
Felipe Balbiad517e9e2010-01-21 15:33:54 +02001396 if (musb->dyn_fifo)
1397 status = ep_config_from_table(musb);
1398 else
1399 status = ep_config_from_hw(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001400
1401 if (status < 0)
1402 return status;
1403
1404 /* finish init, and print endpoint config */
1405 for (i = 0; i < musb->nr_endpoints; i++) {
1406 struct musb_hw_ep *hw_ep = musb->endpoints + i;
1407
1408 hw_ep->fifo = MUSB_FIFO_OFFSET(i) + mbase;
Arnd Bergmann9a35f872011-10-02 16:45:47 +02001409#if defined(CONFIG_USB_MUSB_TUSB6010) || defined (CONFIG_USB_MUSB_TUSB6010_MODULE)
Felipe Balbi550a7372008-07-24 12:27:36 +03001410 hw_ep->fifo_async = musb->async + 0x400 + MUSB_FIFO_OFFSET(i);
1411 hw_ep->fifo_sync = musb->sync + 0x400 + MUSB_FIFO_OFFSET(i);
1412 hw_ep->fifo_sync_va =
1413 musb->sync_va + 0x400 + MUSB_FIFO_OFFSET(i);
1414
1415 if (i == 0)
1416 hw_ep->conf = mbase - 0x400 + TUSB_EP0_CONF;
1417 else
1418 hw_ep->conf = mbase + 0x400 + (((i - 1) & 0xf) << 2);
1419#endif
1420
1421 hw_ep->regs = MUSB_EP_OFFSET(i, 0) + mbase;
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001422 hw_ep->target_regs = musb_read_target_reg_base(i, mbase);
Felipe Balbi550a7372008-07-24 12:27:36 +03001423 hw_ep->rx_reinit = 1;
1424 hw_ep->tx_reinit = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001425
1426 if (hw_ep->max_packet_sz_tx) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001427 dev_dbg(musb->controller,
Felipe Balbi550a7372008-07-24 12:27:36 +03001428 "%s: hw_ep %d%s, %smax %d\n",
1429 musb_driver_name, i,
1430 hw_ep->is_shared_fifo ? "shared" : "tx",
1431 hw_ep->tx_double_buffered
1432 ? "doublebuffer, " : "",
1433 hw_ep->max_packet_sz_tx);
1434 }
1435 if (hw_ep->max_packet_sz_rx && !hw_ep->is_shared_fifo) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001436 dev_dbg(musb->controller,
Felipe Balbi550a7372008-07-24 12:27:36 +03001437 "%s: hw_ep %d%s, %smax %d\n",
1438 musb_driver_name, i,
1439 "rx",
1440 hw_ep->rx_double_buffered
1441 ? "doublebuffer, " : "",
1442 hw_ep->max_packet_sz_rx);
1443 }
1444 if (!(hw_ep->max_packet_sz_tx || hw_ep->max_packet_sz_rx))
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001445 dev_dbg(musb->controller, "hw_ep %d not configured\n", i);
Felipe Balbi550a7372008-07-24 12:27:36 +03001446 }
1447
1448 return 0;
1449}
1450
1451/*-------------------------------------------------------------------------*/
1452
Felipe Balbi550a7372008-07-24 12:27:36 +03001453/*
1454 * handle all the irqs defined by the HDRC core. for now we expect: other
1455 * irq sources (phy, dma, etc) will be handled first, musb->int_* values
1456 * will be assigned, and the irq will already have been acked.
1457 *
1458 * called in irq context with spinlock held, irqs blocked
1459 */
1460irqreturn_t musb_interrupt(struct musb *musb)
1461{
1462 irqreturn_t retval = IRQ_NONE;
Sebastian Andrzej Siewiorb11e94d2012-10-30 19:52:23 +01001463 u8 devctl;
Felipe Balbi550a7372008-07-24 12:27:36 +03001464 int ep_num;
1465 u32 reg;
1466
1467 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
Felipe Balbi550a7372008-07-24 12:27:36 +03001468
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001469 dev_dbg(musb->controller, "** IRQ %s usb%04x tx%04x rx%04x\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001470 (devctl & MUSB_DEVCTL_HM) ? "host" : "peripheral",
1471 musb->int_usb, musb->int_tx, musb->int_rx);
1472
1473 /* the core can interrupt us for multiple reasons; docs have
1474 * a generic interrupt flowchart to follow
1475 */
Sergei Shtylyov7d9645f2010-06-24 23:07:06 +05301476 if (musb->int_usb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001477 retval |= musb_stage0_irq(musb, musb->int_usb,
Sebastian Andrzej Siewiorb11e94d2012-10-30 19:52:23 +01001478 devctl);
Felipe Balbi550a7372008-07-24 12:27:36 +03001479
1480 /* "stage 1" is handling endpoint irqs */
1481
1482 /* handle endpoint 0 first */
1483 if (musb->int_tx & 1) {
1484 if (devctl & MUSB_DEVCTL_HM)
1485 retval |= musb_h_ep0_irq(musb);
1486 else
1487 retval |= musb_g_ep0_irq(musb);
1488 }
1489
1490 /* RX on endpoints 1-15 */
1491 reg = musb->int_rx >> 1;
1492 ep_num = 1;
1493 while (reg) {
1494 if (reg & 1) {
1495 /* musb_ep_select(musb->mregs, ep_num); */
1496 /* REVISIT just retval = ep->rx_irq(...) */
1497 retval = IRQ_HANDLED;
Felipe Balbia04d46d2011-11-24 15:46:27 +02001498 if (devctl & MUSB_DEVCTL_HM)
1499 musb_host_rx(musb, ep_num);
1500 else
1501 musb_g_rx(musb, ep_num);
Felipe Balbi550a7372008-07-24 12:27:36 +03001502 }
1503
1504 reg >>= 1;
1505 ep_num++;
1506 }
1507
1508 /* TX on endpoints 1-15 */
1509 reg = musb->int_tx >> 1;
1510 ep_num = 1;
1511 while (reg) {
1512 if (reg & 1) {
1513 /* musb_ep_select(musb->mregs, ep_num); */
1514 /* REVISIT just retval |= ep->tx_irq(...) */
1515 retval = IRQ_HANDLED;
Felipe Balbia04d46d2011-11-24 15:46:27 +02001516 if (devctl & MUSB_DEVCTL_HM)
1517 musb_host_tx(musb, ep_num);
1518 else
1519 musb_g_tx(musb, ep_num);
Felipe Balbi550a7372008-07-24 12:27:36 +03001520 }
1521 reg >>= 1;
1522 ep_num++;
1523 }
1524
Felipe Balbi550a7372008-07-24 12:27:36 +03001525 return retval;
1526}
Felipe Balbi981430a2011-05-11 13:02:23 +03001527EXPORT_SYMBOL_GPL(musb_interrupt);
Felipe Balbi550a7372008-07-24 12:27:36 +03001528
1529#ifndef CONFIG_MUSB_PIO_ONLY
Bill Pembertond3608b62012-11-19 13:24:34 -05001530static bool use_dma = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001531
1532/* "modprobe ... use_dma=0" etc */
1533module_param(use_dma, bool, 0);
1534MODULE_PARM_DESC(use_dma, "enable/disable use of DMA");
1535
1536void musb_dma_completion(struct musb *musb, u8 epnum, u8 transmit)
1537{
1538 u8 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
1539
1540 /* called with controller lock already held */
1541
1542 if (!epnum) {
1543#ifndef CONFIG_USB_TUSB_OMAP_DMA
1544 if (!is_cppi_enabled()) {
1545 /* endpoint 0 */
1546 if (devctl & MUSB_DEVCTL_HM)
1547 musb_h_ep0_irq(musb);
1548 else
1549 musb_g_ep0_irq(musb);
1550 }
1551#endif
1552 } else {
1553 /* endpoints 1..15 */
1554 if (transmit) {
Felipe Balbia04d46d2011-11-24 15:46:27 +02001555 if (devctl & MUSB_DEVCTL_HM)
1556 musb_host_tx(musb, epnum);
1557 else
1558 musb_g_tx(musb, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001559 } else {
1560 /* receive */
Felipe Balbia04d46d2011-11-24 15:46:27 +02001561 if (devctl & MUSB_DEVCTL_HM)
1562 musb_host_rx(musb, epnum);
1563 else
1564 musb_g_rx(musb, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001565 }
1566 }
1567}
Arnd Bergmann9a35f872011-10-02 16:45:47 +02001568EXPORT_SYMBOL_GPL(musb_dma_completion);
Felipe Balbi550a7372008-07-24 12:27:36 +03001569
1570#else
1571#define use_dma 0
1572#endif
1573
1574/*-------------------------------------------------------------------------*/
1575
Felipe Balbi550a7372008-07-24 12:27:36 +03001576static ssize_t
1577musb_mode_show(struct device *dev, struct device_attribute *attr, char *buf)
1578{
1579 struct musb *musb = dev_to_musb(dev);
1580 unsigned long flags;
1581 int ret = -EINVAL;
1582
1583 spin_lock_irqsave(&musb->lock, flags);
Felipe Balbi42c0bf12013-03-07 10:39:57 +02001584 ret = sprintf(buf, "%s\n", usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +03001585 spin_unlock_irqrestore(&musb->lock, flags);
1586
1587 return ret;
1588}
1589
1590static ssize_t
1591musb_mode_store(struct device *dev, struct device_attribute *attr,
1592 const char *buf, size_t n)
1593{
1594 struct musb *musb = dev_to_musb(dev);
1595 unsigned long flags;
David Brownell96a274d2008-11-24 13:06:47 +02001596 int status;
Felipe Balbi550a7372008-07-24 12:27:36 +03001597
1598 spin_lock_irqsave(&musb->lock, flags);
David Brownell96a274d2008-11-24 13:06:47 +02001599 if (sysfs_streq(buf, "host"))
1600 status = musb_platform_set_mode(musb, MUSB_HOST);
1601 else if (sysfs_streq(buf, "peripheral"))
1602 status = musb_platform_set_mode(musb, MUSB_PERIPHERAL);
1603 else if (sysfs_streq(buf, "otg"))
1604 status = musb_platform_set_mode(musb, MUSB_OTG);
1605 else
1606 status = -EINVAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001607 spin_unlock_irqrestore(&musb->lock, flags);
1608
David Brownell96a274d2008-11-24 13:06:47 +02001609 return (status == 0) ? n : status;
Felipe Balbi550a7372008-07-24 12:27:36 +03001610}
1611static DEVICE_ATTR(mode, 0644, musb_mode_show, musb_mode_store);
1612
1613static ssize_t
1614musb_vbus_store(struct device *dev, struct device_attribute *attr,
1615 const char *buf, size_t n)
1616{
1617 struct musb *musb = dev_to_musb(dev);
1618 unsigned long flags;
1619 unsigned long val;
1620
1621 if (sscanf(buf, "%lu", &val) < 1) {
Felipe Balbib3b1cc32009-12-15 11:08:43 +02001622 dev_err(dev, "Invalid VBUS timeout ms value\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001623 return -EINVAL;
1624 }
1625
1626 spin_lock_irqsave(&musb->lock, flags);
David Brownellf7f9d632009-03-31 12:32:12 -07001627 /* force T(a_wait_bcon) to be zero/unlimited *OR* valid */
1628 musb->a_wait_bcon = val ? max_t(int, val, OTG_TIME_A_WAIT_BCON) : 0 ;
David Brownell84e250f2009-03-31 12:30:04 -07001629 if (musb->xceiv->state == OTG_STATE_A_WAIT_BCON)
Felipe Balbi550a7372008-07-24 12:27:36 +03001630 musb->is_active = 0;
1631 musb_platform_try_idle(musb, jiffies + msecs_to_jiffies(val));
1632 spin_unlock_irqrestore(&musb->lock, flags);
1633
1634 return n;
1635}
1636
1637static ssize_t
1638musb_vbus_show(struct device *dev, struct device_attribute *attr, char *buf)
1639{
1640 struct musb *musb = dev_to_musb(dev);
1641 unsigned long flags;
1642 unsigned long val;
1643 int vbus;
1644
1645 spin_lock_irqsave(&musb->lock, flags);
1646 val = musb->a_wait_bcon;
David Brownellf7f9d632009-03-31 12:32:12 -07001647 /* FIXME get_vbus_status() is normally #defined as false...
1648 * and is effectively TUSB-specific.
1649 */
Felipe Balbi550a7372008-07-24 12:27:36 +03001650 vbus = musb_platform_get_vbus_status(musb);
1651 spin_unlock_irqrestore(&musb->lock, flags);
1652
David Brownellf7f9d632009-03-31 12:32:12 -07001653 return sprintf(buf, "Vbus %s, timeout %lu msec\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001654 vbus ? "on" : "off", val);
1655}
1656static DEVICE_ATTR(vbus, 0644, musb_vbus_show, musb_vbus_store);
1657
Felipe Balbi550a7372008-07-24 12:27:36 +03001658/* Gadget drivers can't know that a host is connected so they might want
1659 * to start SRP, but users can. This allows userspace to trigger SRP.
1660 */
1661static ssize_t
1662musb_srp_store(struct device *dev, struct device_attribute *attr,
1663 const char *buf, size_t n)
1664{
1665 struct musb *musb = dev_to_musb(dev);
1666 unsigned short srp;
1667
1668 if (sscanf(buf, "%hu", &srp) != 1
1669 || (srp != 1)) {
Felipe Balbib3b1cc32009-12-15 11:08:43 +02001670 dev_err(dev, "SRP: Value must be 1\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001671 return -EINVAL;
1672 }
1673
1674 if (srp == 1)
1675 musb_g_wakeup(musb);
1676
1677 return n;
1678}
1679static DEVICE_ATTR(srp, 0644, NULL, musb_srp_store);
1680
Felipe Balbi94375752009-12-15 11:08:38 +02001681static struct attribute *musb_attributes[] = {
1682 &dev_attr_mode.attr,
1683 &dev_attr_vbus.attr,
Felipe Balbi94375752009-12-15 11:08:38 +02001684 &dev_attr_srp.attr,
Felipe Balbi94375752009-12-15 11:08:38 +02001685 NULL
1686};
1687
1688static const struct attribute_group musb_attr_group = {
1689 .attrs = musb_attributes,
1690};
1691
Felipe Balbi550a7372008-07-24 12:27:36 +03001692/* Only used to provide driver mode change events */
1693static void musb_irq_work(struct work_struct *data)
1694{
1695 struct musb *musb = container_of(data, struct musb, irq_work);
Felipe Balbi550a7372008-07-24 12:27:36 +03001696
Ajay Kumar Gupta8d2421e2012-08-31 11:09:50 +00001697 if (musb->xceiv->state != musb->xceiv_old_state) {
1698 musb->xceiv_old_state = musb->xceiv->state;
Felipe Balbi550a7372008-07-24 12:27:36 +03001699 sysfs_notify(&musb->controller->kobj, NULL, "mode");
1700 }
1701}
1702
1703/* --------------------------------------------------------------------------
1704 * Init support
1705 */
1706
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001707static struct musb *allocate_instance(struct device *dev,
Felipe Balbica6d1b12008-08-08 12:40:54 +03001708 struct musb_hdrc_config *config, void __iomem *mbase)
Felipe Balbi550a7372008-07-24 12:27:36 +03001709{
1710 struct musb *musb;
1711 struct musb_hw_ep *ep;
1712 int epnum;
Daniel Mack74c2e932013-04-10 21:55:45 +02001713 int ret;
Felipe Balbi550a7372008-07-24 12:27:36 +03001714
Daniel Mack74c2e932013-04-10 21:55:45 +02001715 musb = devm_kzalloc(dev, sizeof(*musb), GFP_KERNEL);
1716 if (!musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001717 return NULL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001718
Felipe Balbi550a7372008-07-24 12:27:36 +03001719 INIT_LIST_HEAD(&musb->control);
1720 INIT_LIST_HEAD(&musb->in_bulk);
1721 INIT_LIST_HEAD(&musb->out_bulk);
1722
Felipe Balbi550a7372008-07-24 12:27:36 +03001723 musb->vbuserr_retry = VBUSERR_RETRY_COUNT;
David Brownellf7f9d632009-03-31 12:32:12 -07001724 musb->a_wait_bcon = OTG_TIME_A_WAIT_BCON;
Felipe Balbi550a7372008-07-24 12:27:36 +03001725 musb->mregs = mbase;
1726 musb->ctrl_base = mbase;
1727 musb->nIrq = -ENODEV;
Felipe Balbica6d1b12008-08-08 12:40:54 +03001728 musb->config = config;
Kevin Hilman02582b92008-09-15 12:09:31 +02001729 BUG_ON(musb->config->num_eps > MUSB_C_NUM_EPS);
Felipe Balbi550a7372008-07-24 12:27:36 +03001730 for (epnum = 0, ep = musb->endpoints;
Felipe Balbica6d1b12008-08-08 12:40:54 +03001731 epnum < musb->config->num_eps;
Felipe Balbi550a7372008-07-24 12:27:36 +03001732 epnum++, ep++) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001733 ep->musb = musb;
1734 ep->epnum = epnum;
1735 }
1736
1737 musb->controller = dev;
Felipe Balbi743411b2010-12-01 13:22:05 +02001738
Daniel Mack74c2e932013-04-10 21:55:45 +02001739 ret = musb_host_alloc(musb);
1740 if (ret < 0)
1741 goto err_free;
1742
1743 dev_set_drvdata(dev, musb);
1744
Felipe Balbi550a7372008-07-24 12:27:36 +03001745 return musb;
Daniel Mack74c2e932013-04-10 21:55:45 +02001746
1747err_free:
1748 return NULL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001749}
1750
1751static void musb_free(struct musb *musb)
1752{
1753 /* this has multiple entry modes. it handles fault cleanup after
1754 * probe(), where things may be partially set up, as well as rmmod
1755 * cleanup after everything's been de-activated.
1756 */
1757
1758#ifdef CONFIG_SYSFS
Felipe Balbi94375752009-12-15 11:08:38 +02001759 sysfs_remove_group(&musb->controller->kobj, &musb_attr_group);
Felipe Balbi550a7372008-07-24 12:27:36 +03001760#endif
1761
Ajay Kumar Gupta97a39892009-01-24 17:56:39 -08001762 if (musb->nIrq >= 0) {
1763 if (musb->irq_wake)
1764 disable_irq_wake(musb->nIrq);
Felipe Balbi550a7372008-07-24 12:27:36 +03001765 free_irq(musb->nIrq, musb);
1766 }
1767 if (is_dma_capable() && musb->dma_controller) {
1768 struct dma_controller *c = musb->dma_controller;
1769
1770 (void) c->stop(c);
1771 dma_controller_destroy(c);
1772 }
1773
Daniel Mack74c2e932013-04-10 21:55:45 +02001774 musb_host_free(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001775}
1776
1777/*
1778 * Perform generic per-controller initialization.
1779 *
Sergei Shtylyov28dd9242012-08-21 21:22:45 +04001780 * @dev: the controller (already clocked, etc)
1781 * @nIrq: IRQ number
1782 * @ctrl: virtual address of controller registers,
Felipe Balbi550a7372008-07-24 12:27:36 +03001783 * not yet corrected for platform-specific offsets
1784 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001785static int
Felipe Balbi550a7372008-07-24 12:27:36 +03001786musb_init_controller(struct device *dev, int nIrq, void __iomem *ctrl)
1787{
1788 int status;
1789 struct musb *musb;
1790 struct musb_hdrc_platform_data *plat = dev->platform_data;
1791
1792 /* The driver might handle more features than the board; OK.
1793 * Fail when the board needs a feature that's not enabled.
1794 */
1795 if (!plat) {
1796 dev_dbg(dev, "no platform_data?\n");
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001797 status = -ENODEV;
1798 goto fail0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001799 }
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001800
Felipe Balbi550a7372008-07-24 12:27:36 +03001801 /* allocate */
Felipe Balbica6d1b12008-08-08 12:40:54 +03001802 musb = allocate_instance(dev, plat->config, ctrl);
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001803 if (!musb) {
1804 status = -ENOMEM;
1805 goto fail0;
1806 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001807
Hema HK7acc6192011-02-28 14:19:34 +05301808 pm_runtime_use_autosuspend(musb->controller);
1809 pm_runtime_set_autosuspend_delay(musb->controller, 200);
1810 pm_runtime_enable(musb->controller);
1811
Felipe Balbi550a7372008-07-24 12:27:36 +03001812 spin_lock_init(&musb->lock);
Felipe Balbi550a7372008-07-24 12:27:36 +03001813 musb->board_set_power = plat->set_power;
Felipe Balbi550a7372008-07-24 12:27:36 +03001814 musb->min_power = plat->min_power;
Felipe Balbif7ec9432010-12-02 09:48:58 +02001815 musb->ops = plat->platform_ops;
Daniel Mack9ad96e62013-04-10 21:55:48 +02001816 musb->port_mode = plat->mode;
Felipe Balbi550a7372008-07-24 12:27:36 +03001817
David Brownell84e250f2009-03-31 12:30:04 -07001818 /* The musb_platform_init() call:
Philippe De Swertbaef6532012-11-06 15:32:13 +02001819 * - adjusts musb->mregs
1820 * - sets the musb->isr
David Brownell84e250f2009-03-31 12:30:04 -07001821 * - may initialize an integrated tranceiver
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +05301822 * - initializes musb->xceiv, usually by otg_get_phy()
David Brownell84e250f2009-03-31 12:30:04 -07001823 * - stops powering VBUS
David Brownell84e250f2009-03-31 12:30:04 -07001824 *
Joe Perches7c9d4402011-06-23 11:39:20 -07001825 * There are various transceiver configurations. Blackfin,
David Brownell84e250f2009-03-31 12:30:04 -07001826 * DaVinci, TUSB60x0, and others integrate them. OMAP3 uses
1827 * external/discrete ones in various flavors (twl4030 family,
1828 * isp1504, non-OTG, etc) mostly hooking up through ULPI.
Felipe Balbi550a7372008-07-24 12:27:36 +03001829 */
Hema Kalliguddiea65df52010-09-22 19:27:40 -05001830 status = musb_platform_init(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001831 if (status < 0)
Felipe Balbi03491762010-12-02 09:57:08 +02001832 goto fail1;
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001833
Felipe Balbi550a7372008-07-24 12:27:36 +03001834 if (!musb->isr) {
1835 status = -ENODEV;
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02001836 goto fail2;
Felipe Balbi550a7372008-07-24 12:27:36 +03001837 }
1838
Heikki Krogerusffb865b2010-03-25 13:25:28 +02001839 if (!musb->xceiv->io_ops) {
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +02001840 musb->xceiv->io_dev = musb->controller;
Heikki Krogerusffb865b2010-03-25 13:25:28 +02001841 musb->xceiv->io_priv = musb->mregs;
1842 musb->xceiv->io_ops = &musb_ulpi_access;
1843 }
1844
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02001845 pm_runtime_get_sync(musb->controller);
1846
Felipe Balbi550a7372008-07-24 12:27:36 +03001847#ifndef CONFIG_MUSB_PIO_ONLY
1848 if (use_dma && dev->dma_mask) {
1849 struct dma_controller *c;
1850
1851 c = dma_controller_create(musb, musb->mregs);
1852 musb->dma_controller = c;
1853 if (c)
1854 (void) c->start(c);
1855 }
1856#endif
1857 /* ideally this would be abstracted in platform setup */
1858 if (!is_dma_capable() || !musb->dma_controller)
1859 dev->dma_mask = NULL;
1860
1861 /* be sure interrupts are disabled before connecting ISR */
1862 musb_platform_disable(musb);
1863 musb_generic_disable(musb);
1864
1865 /* setup musb parts of the core (especially endpoints) */
Felipe Balbica6d1b12008-08-08 12:40:54 +03001866 status = musb_core_init(plat->config->multipoint
Felipe Balbi550a7372008-07-24 12:27:36 +03001867 ? MUSB_CONTROLLER_MHDRC
1868 : MUSB_CONTROLLER_HDRC, musb);
1869 if (status < 0)
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001870 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03001871
David Brownellf7f9d632009-03-31 12:32:12 -07001872 setup_timer(&musb->otg_timer, musb_otg_timer_func, (unsigned long) musb);
David Brownellf7f9d632009-03-31 12:32:12 -07001873
Felipe Balbi550a7372008-07-24 12:27:36 +03001874 /* Init IRQ workqueue before request_irq */
1875 INIT_WORK(&musb->irq_work, musb_irq_work);
1876
1877 /* attach to the IRQ */
Kay Sievers427c4f32008-11-07 01:52:53 +01001878 if (request_irq(nIrq, musb->isr, 0, dev_name(dev), musb)) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001879 dev_err(dev, "request_irq %d failed!\n", nIrq);
1880 status = -ENODEV;
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001881 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03001882 }
1883 musb->nIrq = nIrq;
Felipe Balbi032ec492011-11-24 15:46:26 +02001884 /* FIXME this handles wakeup irqs wrong */
Felipe Balbic48a5152008-11-24 13:06:53 +02001885 if (enable_irq_wake(nIrq) == 0) {
1886 musb->irq_wake = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001887 device_init_wakeup(dev, 1);
Felipe Balbic48a5152008-11-24 13:06:53 +02001888 } else {
1889 musb->irq_wake = 0;
1890 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001891
Felipe Balbi032ec492011-11-24 15:46:26 +02001892 /* program PHY to use external vBus if required */
1893 if (plat->extvbus) {
1894 u8 busctl = musb_read_ulpi_buscontrol(musb->mregs);
1895 busctl |= MUSB_ULPI_USE_EXTVBUS;
1896 musb_write_ulpi_buscontrol(musb->mregs, busctl);
Felipe Balbi550a7372008-07-24 12:27:36 +03001897 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001898
Grazvydas Ignotase5615112013-03-10 02:48:55 +02001899 if (musb->xceiv->otg->default_a) {
1900 MUSB_HST_MODE(musb);
1901 musb->xceiv->state = OTG_STATE_A_IDLE;
1902 } else {
1903 MUSB_DEV_MODE(musb);
1904 musb->xceiv->state = OTG_STATE_B_IDLE;
1905 }
Anand Gadiyar07a8cdd2010-11-18 18:54:17 +05301906
Daniel Mack2cc65fe2013-04-10 21:55:47 +02001907 status = musb_host_setup(musb, plat->power);
1908 if (status < 0)
1909 goto fail3;
1910
Felipe Balbi032ec492011-11-24 15:46:26 +02001911 status = musb_gadget_setup(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001912
Sergei Shtylyov461972d2010-03-25 13:14:32 +02001913 if (status < 0)
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001914 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03001915
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02001916 status = musb_init_debugfs(musb);
1917 if (status < 0)
Felipe Balbib0f9da72010-03-25 13:25:18 +02001918 goto fail4;
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02001919
Felipe Balbi94375752009-12-15 11:08:38 +02001920 status = sysfs_create_group(&musb->controller->kobj, &musb_attr_group);
Felipe Balbi28c2c512008-09-11 11:53:25 +03001921 if (status)
Felipe Balbib0f9da72010-03-25 13:25:18 +02001922 goto fail5;
Felipe Balbi28c2c512008-09-11 11:53:25 +03001923
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02001924 pm_runtime_put(musb->controller);
1925
Felipe Balbi28c2c512008-09-11 11:53:25 +03001926 return 0;
1927
Felipe Balbib0f9da72010-03-25 13:25:18 +02001928fail5:
1929 musb_exit_debugfs(musb);
1930
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001931fail4:
Felipe Balbi032ec492011-11-24 15:46:26 +02001932 musb_gadget_cleanup(musb);
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001933
1934fail3:
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02001935 pm_runtime_put_sync(musb->controller);
1936
1937fail2:
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001938 if (musb->irq_wake)
1939 device_init_wakeup(dev, 0);
Felipe Balbi28c2c512008-09-11 11:53:25 +03001940 musb_platform_exit(musb);
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001941
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001942fail1:
Ming Lei681d1e82013-01-04 23:13:06 +08001943 pm_runtime_disable(musb->controller);
Felipe Balbi28c2c512008-09-11 11:53:25 +03001944 dev_err(musb->controller,
1945 "musb_init_controller failed with status %d\n", status);
1946
Felipe Balbi28c2c512008-09-11 11:53:25 +03001947 musb_free(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001948
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001949fail0:
1950
Felipe Balbi550a7372008-07-24 12:27:36 +03001951 return status;
1952
Felipe Balbi550a7372008-07-24 12:27:36 +03001953}
1954
1955/*-------------------------------------------------------------------------*/
1956
1957/* all implementations (PCI bridge to FPGA, VLYNQ, etc) should just
1958 * bridge to a platform device; this driver then suffices.
1959 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001960static int musb_probe(struct platform_device *pdev)
Felipe Balbi550a7372008-07-24 12:27:36 +03001961{
1962 struct device *dev = &pdev->dev;
Hema Kalliguddifcf173e2010-09-29 11:26:39 -05001963 int irq = platform_get_irq_byname(pdev, "mc");
Felipe Balbi550a7372008-07-24 12:27:36 +03001964 struct resource *iomem;
1965 void __iomem *base;
1966
1967 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Sergei Shtylyov541079d2010-12-10 21:03:29 +03001968 if (!iomem || irq <= 0)
Felipe Balbi550a7372008-07-24 12:27:36 +03001969 return -ENODEV;
1970
Felipe Balbib42f7f32013-02-04 19:04:45 +02001971 base = devm_ioremap_resource(dev, iomem);
1972 if (IS_ERR(base))
1973 return PTR_ERR(base);
Felipe Balbi550a7372008-07-24 12:27:36 +03001974
Felipe Balbib42f7f32013-02-04 19:04:45 +02001975 return musb_init_controller(dev, irq, base);
Felipe Balbi550a7372008-07-24 12:27:36 +03001976}
1977
Bill Pembertonfb4e98a2012-11-19 13:26:20 -05001978static int musb_remove(struct platform_device *pdev)
Felipe Balbi550a7372008-07-24 12:27:36 +03001979{
Ajay Kumar Gupta8d2421e2012-08-31 11:09:50 +00001980 struct device *dev = &pdev->dev;
1981 struct musb *musb = dev_to_musb(dev);
Felipe Balbi550a7372008-07-24 12:27:36 +03001982
1983 /* this gets called on rmmod.
1984 * - Host mode: host may still be active
1985 * - Peripheral mode: peripheral is deactivated (or never-activated)
1986 * - OTG mode: both roles are deactivated (or never-activated)
1987 */
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02001988 musb_exit_debugfs(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001989 musb_shutdown(pdev);
Sergei Shtylyov461972d2010-03-25 13:14:32 +02001990
Felipe Balbi550a7372008-07-24 12:27:36 +03001991 musb_free(musb);
Ajay Kumar Gupta8d2421e2012-08-31 11:09:50 +00001992 device_init_wakeup(dev, 0);
Felipe Balbi550a7372008-07-24 12:27:36 +03001993#ifndef CONFIG_MUSB_PIO_ONLY
Ajay Kumar Gupta8d2421e2012-08-31 11:09:50 +00001994 dma_set_mask(dev, *dev->parent->dma_mask);
Felipe Balbi550a7372008-07-24 12:27:36 +03001995#endif
1996 return 0;
1997}
1998
1999#ifdef CONFIG_PM
2000
Felipe Balbi3c8a5fc2010-12-02 12:28:39 +02002001static void musb_save_context(struct musb *musb)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002002{
2003 int i;
2004 void __iomem *musb_base = musb->mregs;
Bob Liuae9b2ad2010-09-24 13:44:07 +03002005 void __iomem *epio;
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002006
Felipe Balbi032ec492011-11-24 15:46:26 +02002007 musb->context.frame = musb_readw(musb_base, MUSB_FRAME);
2008 musb->context.testmode = musb_readb(musb_base, MUSB_TESTMODE);
2009 musb->context.busctl = musb_read_ulpi_buscontrol(musb->mregs);
Felipe Balbi74211072010-12-01 13:53:27 +02002010 musb->context.power = musb_readb(musb_base, MUSB_POWER);
Felipe Balbi74211072010-12-01 13:53:27 +02002011 musb->context.intrusbe = musb_readb(musb_base, MUSB_INTRUSBE);
2012 musb->context.index = musb_readb(musb_base, MUSB_INDEX);
2013 musb->context.devctl = musb_readb(musb_base, MUSB_DEVCTL);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002014
Bob Liuae9b2ad2010-09-24 13:44:07 +03002015 for (i = 0; i < musb->config->num_eps; ++i) {
Felipe Balbie4e5b1362011-06-27 15:57:46 +03002016 struct musb_hw_ep *hw_ep;
2017
2018 hw_ep = &musb->endpoints[i];
2019 if (!hw_ep)
2020 continue;
2021
2022 epio = hw_ep->regs;
2023 if (!epio)
2024 continue;
2025
Vikram Panditaea737552011-09-07 09:19:23 -07002026 musb_writeb(musb_base, MUSB_INDEX, i);
Felipe Balbi74211072010-12-01 13:53:27 +02002027 musb->context.index_regs[i].txmaxp =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002028 musb_readw(epio, MUSB_TXMAXP);
Felipe Balbi74211072010-12-01 13:53:27 +02002029 musb->context.index_regs[i].txcsr =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002030 musb_readw(epio, MUSB_TXCSR);
Felipe Balbi74211072010-12-01 13:53:27 +02002031 musb->context.index_regs[i].rxmaxp =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002032 musb_readw(epio, MUSB_RXMAXP);
Felipe Balbi74211072010-12-01 13:53:27 +02002033 musb->context.index_regs[i].rxcsr =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002034 musb_readw(epio, MUSB_RXCSR);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002035
2036 if (musb->dyn_fifo) {
Felipe Balbi74211072010-12-01 13:53:27 +02002037 musb->context.index_regs[i].txfifoadd =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002038 musb_read_txfifoadd(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002039 musb->context.index_regs[i].rxfifoadd =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002040 musb_read_rxfifoadd(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002041 musb->context.index_regs[i].txfifosz =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002042 musb_read_txfifosz(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002043 musb->context.index_regs[i].rxfifosz =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002044 musb_read_rxfifosz(musb_base);
2045 }
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002046
Felipe Balbi032ec492011-11-24 15:46:26 +02002047 musb->context.index_regs[i].txtype =
2048 musb_readb(epio, MUSB_TXTYPE);
2049 musb->context.index_regs[i].txinterval =
2050 musb_readb(epio, MUSB_TXINTERVAL);
2051 musb->context.index_regs[i].rxtype =
2052 musb_readb(epio, MUSB_RXTYPE);
2053 musb->context.index_regs[i].rxinterval =
2054 musb_readb(epio, MUSB_RXINTERVAL);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002055
Felipe Balbi032ec492011-11-24 15:46:26 +02002056 musb->context.index_regs[i].txfunaddr =
2057 musb_read_txfunaddr(musb_base, i);
2058 musb->context.index_regs[i].txhubaddr =
2059 musb_read_txhubaddr(musb_base, i);
2060 musb->context.index_regs[i].txhubport =
2061 musb_read_txhubport(musb_base, i);
2062
2063 musb->context.index_regs[i].rxfunaddr =
2064 musb_read_rxfunaddr(musb_base, i);
2065 musb->context.index_regs[i].rxhubaddr =
2066 musb_read_rxhubaddr(musb_base, i);
2067 musb->context.index_regs[i].rxhubport =
2068 musb_read_rxhubport(musb_base, i);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002069 }
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002070}
2071
Felipe Balbi3c8a5fc2010-12-02 12:28:39 +02002072static void musb_restore_context(struct musb *musb)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002073{
2074 int i;
2075 void __iomem *musb_base = musb->mregs;
2076 void __iomem *ep_target_regs;
Bob Liuae9b2ad2010-09-24 13:44:07 +03002077 void __iomem *epio;
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002078
Felipe Balbi032ec492011-11-24 15:46:26 +02002079 musb_writew(musb_base, MUSB_FRAME, musb->context.frame);
2080 musb_writeb(musb_base, MUSB_TESTMODE, musb->context.testmode);
2081 musb_write_ulpi_buscontrol(musb->mregs, musb->context.busctl);
Felipe Balbi74211072010-12-01 13:53:27 +02002082 musb_writeb(musb_base, MUSB_POWER, musb->context.power);
Sebastian Andrzej Siewiorb18d26f2012-10-30 19:52:26 +01002083 musb_writew(musb_base, MUSB_INTRTXE, musb->intrtxe);
Sebastian Andrzej Siewioraf5ec142012-10-30 19:52:25 +01002084 musb_writew(musb_base, MUSB_INTRRXE, musb->intrrxe);
Felipe Balbi74211072010-12-01 13:53:27 +02002085 musb_writeb(musb_base, MUSB_INTRUSBE, musb->context.intrusbe);
2086 musb_writeb(musb_base, MUSB_DEVCTL, musb->context.devctl);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002087
Bob Liuae9b2ad2010-09-24 13:44:07 +03002088 for (i = 0; i < musb->config->num_eps; ++i) {
Felipe Balbie4e5b1362011-06-27 15:57:46 +03002089 struct musb_hw_ep *hw_ep;
2090
2091 hw_ep = &musb->endpoints[i];
2092 if (!hw_ep)
2093 continue;
2094
2095 epio = hw_ep->regs;
2096 if (!epio)
2097 continue;
2098
Vikram Panditaea737552011-09-07 09:19:23 -07002099 musb_writeb(musb_base, MUSB_INDEX, i);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002100 musb_writew(epio, MUSB_TXMAXP,
Felipe Balbi74211072010-12-01 13:53:27 +02002101 musb->context.index_regs[i].txmaxp);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002102 musb_writew(epio, MUSB_TXCSR,
Felipe Balbi74211072010-12-01 13:53:27 +02002103 musb->context.index_regs[i].txcsr);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002104 musb_writew(epio, MUSB_RXMAXP,
Felipe Balbi74211072010-12-01 13:53:27 +02002105 musb->context.index_regs[i].rxmaxp);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002106 musb_writew(epio, MUSB_RXCSR,
Felipe Balbi74211072010-12-01 13:53:27 +02002107 musb->context.index_regs[i].rxcsr);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002108
2109 if (musb->dyn_fifo) {
2110 musb_write_txfifosz(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002111 musb->context.index_regs[i].txfifosz);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002112 musb_write_rxfifosz(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002113 musb->context.index_regs[i].rxfifosz);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002114 musb_write_txfifoadd(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002115 musb->context.index_regs[i].txfifoadd);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002116 musb_write_rxfifoadd(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002117 musb->context.index_regs[i].rxfifoadd);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002118 }
2119
Felipe Balbi032ec492011-11-24 15:46:26 +02002120 musb_writeb(epio, MUSB_TXTYPE,
Felipe Balbi74211072010-12-01 13:53:27 +02002121 musb->context.index_regs[i].txtype);
Felipe Balbi032ec492011-11-24 15:46:26 +02002122 musb_writeb(epio, MUSB_TXINTERVAL,
Felipe Balbi74211072010-12-01 13:53:27 +02002123 musb->context.index_regs[i].txinterval);
Felipe Balbi032ec492011-11-24 15:46:26 +02002124 musb_writeb(epio, MUSB_RXTYPE,
Felipe Balbi74211072010-12-01 13:53:27 +02002125 musb->context.index_regs[i].rxtype);
Felipe Balbi032ec492011-11-24 15:46:26 +02002126 musb_writeb(epio, MUSB_RXINTERVAL,
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002127
Felipe Balbi032ec492011-11-24 15:46:26 +02002128 musb->context.index_regs[i].rxinterval);
2129 musb_write_txfunaddr(musb_base, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002130 musb->context.index_regs[i].txfunaddr);
Felipe Balbi032ec492011-11-24 15:46:26 +02002131 musb_write_txhubaddr(musb_base, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002132 musb->context.index_regs[i].txhubaddr);
Felipe Balbi032ec492011-11-24 15:46:26 +02002133 musb_write_txhubport(musb_base, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002134 musb->context.index_regs[i].txhubport);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002135
Felipe Balbi032ec492011-11-24 15:46:26 +02002136 ep_target_regs =
2137 musb_read_target_reg_base(i, musb_base);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002138
Felipe Balbi032ec492011-11-24 15:46:26 +02002139 musb_write_rxfunaddr(ep_target_regs,
Felipe Balbi74211072010-12-01 13:53:27 +02002140 musb->context.index_regs[i].rxfunaddr);
Felipe Balbi032ec492011-11-24 15:46:26 +02002141 musb_write_rxhubaddr(ep_target_regs,
Felipe Balbi74211072010-12-01 13:53:27 +02002142 musb->context.index_regs[i].rxhubaddr);
Felipe Balbi032ec492011-11-24 15:46:26 +02002143 musb_write_rxhubport(ep_target_regs,
Felipe Balbi74211072010-12-01 13:53:27 +02002144 musb->context.index_regs[i].rxhubport);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002145 }
Ajay Kumar Gupta3c5fec72011-07-08 15:06:13 +05302146 musb_writeb(musb_base, MUSB_INDEX, musb->context.index);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002147}
2148
Magnus Damm48fea962009-07-08 13:22:56 +02002149static int musb_suspend(struct device *dev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002150{
Felipe Balbi82207962011-06-27 15:57:12 +03002151 struct musb *musb = dev_to_musb(dev);
Felipe Balbi550a7372008-07-24 12:27:36 +03002152 unsigned long flags;
Felipe Balbi550a7372008-07-24 12:27:36 +03002153
Felipe Balbi550a7372008-07-24 12:27:36 +03002154 spin_lock_irqsave(&musb->lock, flags);
2155
2156 if (is_peripheral_active(musb)) {
2157 /* FIXME force disconnect unless we know USB will wake
2158 * the system up quickly enough to respond ...
2159 */
2160 } else if (is_host_active(musb)) {
2161 /* we know all the children are suspended; sometimes
2162 * they will even be wakeup-enabled.
2163 */
2164 }
2165
Felipe Balbi550a7372008-07-24 12:27:36 +03002166 spin_unlock_irqrestore(&musb->lock, flags);
2167 return 0;
2168}
2169
Magnus Damm48fea962009-07-08 13:22:56 +02002170static int musb_resume_noirq(struct device *dev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002171{
Felipe Balbi550a7372008-07-24 12:27:36 +03002172 /* for static cmos like DaVinci, register values were preserved
Kim Kyuwon0ec8fd72009-03-26 18:56:51 -07002173 * unless for some reason the whole soc powered down or the USB
2174 * module got reset through the PSC (vs just being disabled).
Felipe Balbi550a7372008-07-24 12:27:36 +03002175 */
Felipe Balbi550a7372008-07-24 12:27:36 +03002176 return 0;
2177}
2178
Hema HK7acc6192011-02-28 14:19:34 +05302179static int musb_runtime_suspend(struct device *dev)
2180{
2181 struct musb *musb = dev_to_musb(dev);
2182
2183 musb_save_context(musb);
2184
2185 return 0;
2186}
2187
2188static int musb_runtime_resume(struct device *dev)
2189{
2190 struct musb *musb = dev_to_musb(dev);
2191 static int first = 1;
2192
2193 /*
2194 * When pm_runtime_get_sync called for the first time in driver
2195 * init, some of the structure is still not initialized which is
2196 * used in restore function. But clock needs to be
2197 * enabled before any register access, so
2198 * pm_runtime_get_sync has to be called.
2199 * Also context restore without save does not make
2200 * any sense
2201 */
2202 if (!first)
2203 musb_restore_context(musb);
2204 first = 0;
2205
2206 return 0;
2207}
2208
Alexey Dobriyan47145212009-12-14 18:00:08 -08002209static const struct dev_pm_ops musb_dev_pm_ops = {
Magnus Damm48fea962009-07-08 13:22:56 +02002210 .suspend = musb_suspend,
2211 .resume_noirq = musb_resume_noirq,
Hema HK7acc6192011-02-28 14:19:34 +05302212 .runtime_suspend = musb_runtime_suspend,
2213 .runtime_resume = musb_runtime_resume,
Magnus Damm48fea962009-07-08 13:22:56 +02002214};
2215
2216#define MUSB_DEV_PM_OPS (&musb_dev_pm_ops)
Felipe Balbi550a7372008-07-24 12:27:36 +03002217#else
Magnus Damm48fea962009-07-08 13:22:56 +02002218#define MUSB_DEV_PM_OPS NULL
Felipe Balbi550a7372008-07-24 12:27:36 +03002219#endif
2220
2221static struct platform_driver musb_driver = {
2222 .driver = {
2223 .name = (char *)musb_driver_name,
2224 .bus = &platform_bus_type,
2225 .owner = THIS_MODULE,
Magnus Damm48fea962009-07-08 13:22:56 +02002226 .pm = MUSB_DEV_PM_OPS,
Felipe Balbi550a7372008-07-24 12:27:36 +03002227 },
Felipe Balbie9e8c852012-01-26 12:40:23 +02002228 .probe = musb_probe,
Bill Pemberton76904172012-11-19 13:21:08 -05002229 .remove = musb_remove,
Felipe Balbi550a7372008-07-24 12:27:36 +03002230 .shutdown = musb_shutdown,
Felipe Balbi550a7372008-07-24 12:27:36 +03002231};
2232
2233/*-------------------------------------------------------------------------*/
2234
2235static int __init musb_init(void)
2236{
Felipe Balbi550a7372008-07-24 12:27:36 +03002237 if (usb_disabled())
2238 return 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03002239
Felipe Balbie9e8c852012-01-26 12:40:23 +02002240 return platform_driver_register(&musb_driver);
Felipe Balbi550a7372008-07-24 12:27:36 +03002241}
Felipe Balbie9e8c852012-01-26 12:40:23 +02002242module_init(musb_init);
Felipe Balbi550a7372008-07-24 12:27:36 +03002243
2244static void __exit musb_cleanup(void)
2245{
2246 platform_driver_unregister(&musb_driver);
2247}
2248module_exit(musb_cleanup);