blob: 6203ad38e913d8ab31b50c17b89d5447c5a57274 [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>
Ajay Kumar Gupta8d2421e2012-08-31 11:09:50 +0000102#include <linux/dma-mapping.h>
Felipe Balbi550a7372008-07-24 12:27:36 +0300103
Felipe Balbi550a7372008-07-24 12:27:36 +0300104#include "musb_core.h"
105
David Brownellf7f9d632009-03-31 12:32:12 -0700106#define TA_WAIT_BCON(m) max_t(int, (m)->a_wait_bcon, OTG_TIME_A_WAIT_BCON)
Felipe Balbi550a7372008-07-24 12:27:36 +0300107
108
Felipe Balbi550a7372008-07-24 12:27:36 +0300109#define DRIVER_AUTHOR "Mentor Graphics, Texas Instruments, Nokia"
110#define DRIVER_DESC "Inventra Dual-Role USB Controller Driver"
111
Felipe Balbie8164f62008-08-10 21:22:35 +0300112#define MUSB_VERSION "6.0"
Felipe Balbi550a7372008-07-24 12:27:36 +0300113
114#define DRIVER_INFO DRIVER_DESC ", v" MUSB_VERSION
115
Felipe Balbi05ac10d2010-12-02 08:49:26 +0200116#define MUSB_DRIVER_NAME "musb-hdrc"
Felipe Balbi550a7372008-07-24 12:27:36 +0300117const char musb_driver_name[] = MUSB_DRIVER_NAME;
118
119MODULE_DESCRIPTION(DRIVER_INFO);
120MODULE_AUTHOR(DRIVER_AUTHOR);
121MODULE_LICENSE("GPL");
122MODULE_ALIAS("platform:" MUSB_DRIVER_NAME);
123
124
125/*-------------------------------------------------------------------------*/
126
127static inline struct musb *dev_to_musb(struct device *dev)
128{
Felipe Balbi550a7372008-07-24 12:27:36 +0300129 return dev_get_drvdata(dev);
Felipe Balbi550a7372008-07-24 12:27:36 +0300130}
131
132/*-------------------------------------------------------------------------*/
133
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200134#ifndef CONFIG_BLACKFIN
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200135static int musb_ulpi_read(struct usb_phy *phy, u32 offset)
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200136{
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200137 void __iomem *addr = phy->io_priv;
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200138 int i = 0;
139 u8 r;
140 u8 power;
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200141 int ret;
142
143 pm_runtime_get_sync(phy->io_dev);
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200144
145 /* Make sure the transceiver is not in low power mode */
146 power = musb_readb(addr, MUSB_POWER);
147 power &= ~MUSB_POWER_SUSPENDM;
148 musb_writeb(addr, MUSB_POWER, power);
149
150 /* REVISIT: musbhdrc_ulpi_an.pdf recommends setting the
151 * ULPICarKitControlDisableUTMI after clearing POWER_SUSPENDM.
152 */
153
154 musb_writeb(addr, MUSB_ULPI_REG_ADDR, (u8)offset);
155 musb_writeb(addr, MUSB_ULPI_REG_CONTROL,
156 MUSB_ULPI_REG_REQ | MUSB_ULPI_RDN_WR);
157
158 while (!(musb_readb(addr, MUSB_ULPI_REG_CONTROL)
159 & MUSB_ULPI_REG_CMPLT)) {
160 i++;
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200161 if (i == 10000) {
162 ret = -ETIMEDOUT;
163 goto out;
164 }
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200165
166 }
167 r = musb_readb(addr, MUSB_ULPI_REG_CONTROL);
168 r &= ~MUSB_ULPI_REG_CMPLT;
169 musb_writeb(addr, MUSB_ULPI_REG_CONTROL, r);
170
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200171 ret = musb_readb(addr, MUSB_ULPI_REG_DATA);
172
173out:
174 pm_runtime_put(phy->io_dev);
175
176 return ret;
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200177}
178
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200179static int musb_ulpi_write(struct usb_phy *phy, u32 offset, u32 data)
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200180{
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200181 void __iomem *addr = phy->io_priv;
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200182 int i = 0;
183 u8 r = 0;
184 u8 power;
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200185 int ret = 0;
186
187 pm_runtime_get_sync(phy->io_dev);
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200188
189 /* Make sure the transceiver is not in low power mode */
190 power = musb_readb(addr, MUSB_POWER);
191 power &= ~MUSB_POWER_SUSPENDM;
192 musb_writeb(addr, MUSB_POWER, power);
193
194 musb_writeb(addr, MUSB_ULPI_REG_ADDR, (u8)offset);
195 musb_writeb(addr, MUSB_ULPI_REG_DATA, (u8)data);
196 musb_writeb(addr, MUSB_ULPI_REG_CONTROL, MUSB_ULPI_REG_REQ);
197
198 while (!(musb_readb(addr, MUSB_ULPI_REG_CONTROL)
199 & MUSB_ULPI_REG_CMPLT)) {
200 i++;
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200201 if (i == 10000) {
202 ret = -ETIMEDOUT;
203 goto out;
204 }
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200205 }
206
207 r = musb_readb(addr, MUSB_ULPI_REG_CONTROL);
208 r &= ~MUSB_ULPI_REG_CMPLT;
209 musb_writeb(addr, MUSB_ULPI_REG_CONTROL, r);
210
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200211out:
212 pm_runtime_put(phy->io_dev);
213
214 return ret;
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200215}
216#else
Mike Frysingerf2263db2010-06-24 23:07:08 +0530217#define musb_ulpi_read NULL
218#define musb_ulpi_write NULL
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200219#endif
220
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200221static struct usb_phy_io_ops musb_ulpi_access = {
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200222 .read = musb_ulpi_read,
223 .write = musb_ulpi_write,
224};
225
226/*-------------------------------------------------------------------------*/
227
Felipe Balbi7c925542010-12-01 14:23:48 +0200228#if !defined(CONFIG_USB_MUSB_TUSB6010) && !defined(CONFIG_USB_MUSB_BLACKFIN)
Bryan Wuc6cf8b02008-12-02 21:33:48 +0200229
Felipe Balbi550a7372008-07-24 12:27:36 +0300230/*
231 * Load an endpoint's FIFO
232 */
233void musb_write_fifo(struct musb_hw_ep *hw_ep, u16 len, const u8 *src)
234{
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300235 struct musb *musb = hw_ep->musb;
Felipe Balbi550a7372008-07-24 12:27:36 +0300236 void __iomem *fifo = hw_ep->fifo;
237
Ajay Kumar Gupta603fe2b2012-07-20 11:07:24 +0530238 if (unlikely(len == 0))
239 return;
240
Felipe Balbi550a7372008-07-24 12:27:36 +0300241 prefetch((u8 *)src);
242
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300243 dev_dbg(musb->controller, "%cX ep%d fifo %p count %d buf %p\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300244 'T', hw_ep->epnum, fifo, len, src);
245
246 /* we can't assume unaligned reads work */
247 if (likely((0x01 & (unsigned long) src) == 0)) {
248 u16 index = 0;
249
250 /* best case is 32bit-aligned source address */
251 if ((0x02 & (unsigned long) src) == 0) {
252 if (len >= 4) {
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800253 iowrite32_rep(fifo, src + index, len >> 2);
Felipe Balbi550a7372008-07-24 12:27:36 +0300254 index += len & ~0x03;
255 }
256 if (len & 0x02) {
257 musb_writew(fifo, 0, *(u16 *)&src[index]);
258 index += 2;
259 }
260 } else {
261 if (len >= 2) {
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800262 iowrite16_rep(fifo, src + index, len >> 1);
Felipe Balbi550a7372008-07-24 12:27:36 +0300263 index += len & ~0x01;
264 }
265 }
266 if (len & 0x01)
267 musb_writeb(fifo, 0, src[index]);
268 } else {
269 /* byte aligned */
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800270 iowrite8_rep(fifo, src, len);
Felipe Balbi550a7372008-07-24 12:27:36 +0300271 }
272}
273
Ajay Kumar Gupta843bb1d2010-10-19 10:08:13 +0300274#if !defined(CONFIG_USB_MUSB_AM35X)
Felipe Balbi550a7372008-07-24 12:27:36 +0300275/*
276 * Unload an endpoint's FIFO
277 */
278void musb_read_fifo(struct musb_hw_ep *hw_ep, u16 len, u8 *dst)
279{
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300280 struct musb *musb = hw_ep->musb;
Felipe Balbi550a7372008-07-24 12:27:36 +0300281 void __iomem *fifo = hw_ep->fifo;
282
Ajay Kumar Gupta603fe2b2012-07-20 11:07:24 +0530283 if (unlikely(len == 0))
284 return;
285
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300286 dev_dbg(musb->controller, "%cX ep%d fifo %p count %d buf %p\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300287 'R', hw_ep->epnum, fifo, len, dst);
288
289 /* we can't assume unaligned writes work */
290 if (likely((0x01 & (unsigned long) dst) == 0)) {
291 u16 index = 0;
292
293 /* best case is 32bit-aligned destination address */
294 if ((0x02 & (unsigned long) dst) == 0) {
295 if (len >= 4) {
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800296 ioread32_rep(fifo, dst, len >> 2);
Felipe Balbi550a7372008-07-24 12:27:36 +0300297 index = len & ~0x03;
298 }
299 if (len & 0x02) {
300 *(u16 *)&dst[index] = musb_readw(fifo, 0);
301 index += 2;
302 }
303 } else {
304 if (len >= 2) {
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800305 ioread16_rep(fifo, dst, len >> 1);
Felipe Balbi550a7372008-07-24 12:27:36 +0300306 index = len & ~0x01;
307 }
308 }
309 if (len & 0x01)
310 dst[index] = musb_readb(fifo, 0);
311 } else {
312 /* byte aligned */
Matthew Leach2bf0a8f2012-12-17 15:59:48 -0800313 ioread8_rep(fifo, dst, len);
Felipe Balbi550a7372008-07-24 12:27:36 +0300314 }
315}
Ajay Kumar Gupta843bb1d2010-10-19 10:08:13 +0300316#endif
Felipe Balbi550a7372008-07-24 12:27:36 +0300317
318#endif /* normal PIO */
319
320
321/*-------------------------------------------------------------------------*/
322
323/* for high speed test mode; see USB 2.0 spec 7.1.20 */
324static const u8 musb_test_packet[53] = {
325 /* implicit SYNC then DATA0 to start */
326
327 /* JKJKJKJK x9 */
328 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
329 /* JJKKJJKK x8 */
330 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
331 /* JJJJKKKK x8 */
332 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee,
333 /* JJJJJJJKKKKKKK x8 */
334 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
335 /* JJJJJJJK x8 */
336 0x7f, 0xbf, 0xdf, 0xef, 0xf7, 0xfb, 0xfd,
337 /* JKKKKKKK x10, JK */
338 0xfc, 0x7e, 0xbf, 0xdf, 0xef, 0xf7, 0xfb, 0xfd, 0x7e
339
340 /* implicit CRC16 then EOP to end */
341};
342
343void musb_load_testpacket(struct musb *musb)
344{
345 void __iomem *regs = musb->endpoints[0].regs;
346
347 musb_ep_select(musb->mregs, 0);
348 musb_write_fifo(musb->control_ep,
349 sizeof(musb_test_packet), musb_test_packet);
350 musb_writew(regs, MUSB_CSR0, MUSB_CSR0_TXPKTRDY);
351}
352
353/*-------------------------------------------------------------------------*/
354
Felipe Balbi550a7372008-07-24 12:27:36 +0300355/*
Felipe Balbi550a7372008-07-24 12:27:36 +0300356 * Handles OTG hnp timeouts, such as b_ase0_brst
357 */
Felipe Balbia1565442012-08-07 14:00:50 +0300358static void musb_otg_timer_func(unsigned long data)
Felipe Balbi550a7372008-07-24 12:27:36 +0300359{
360 struct musb *musb = (struct musb *)data;
361 unsigned long flags;
362
363 spin_lock_irqsave(&musb->lock, flags);
David Brownell84e250f2009-03-31 12:30:04 -0700364 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300365 case OTG_STATE_B_WAIT_ACON:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300366 dev_dbg(musb->controller, "HNP: b_wait_acon timeout; back to b_peripheral\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300367 musb_g_disconnect(musb);
David Brownell84e250f2009-03-31 12:30:04 -0700368 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +0300369 musb->is_active = 0;
370 break;
David Brownellab983f2a2009-03-31 12:35:09 -0700371 case OTG_STATE_A_SUSPEND:
Felipe Balbi550a7372008-07-24 12:27:36 +0300372 case OTG_STATE_A_WAIT_BCON:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300373 dev_dbg(musb->controller, "HNP: %s timeout\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200374 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi743411b2010-12-01 13:22:05 +0200375 musb_platform_set_vbus(musb, 0);
David Brownellab983f2a2009-03-31 12:35:09 -0700376 musb->xceiv->state = OTG_STATE_A_WAIT_VFALL;
Felipe Balbi550a7372008-07-24 12:27:36 +0300377 break;
378 default:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300379 dev_dbg(musb->controller, "HNP: Unhandled mode %s\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200380 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300381 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300382 spin_unlock_irqrestore(&musb->lock, flags);
383}
384
Felipe Balbi550a7372008-07-24 12:27:36 +0300385/*
David Brownellf7f9d632009-03-31 12:32:12 -0700386 * Stops the HNP transition. Caller must take care of locking.
Felipe Balbi550a7372008-07-24 12:27:36 +0300387 */
388void musb_hnp_stop(struct musb *musb)
389{
Daniel Mack8b125df2013-04-10 21:55:50 +0200390 struct usb_hcd *hcd = musb->hcd;
Felipe Balbi550a7372008-07-24 12:27:36 +0300391 void __iomem *mbase = musb->mregs;
392 u8 reg;
393
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200394 dev_dbg(musb->controller, "HNP: stop from %s\n",
395 usb_otg_state_string(musb->xceiv->state));
David Brownellab983f2a2009-03-31 12:35:09 -0700396
David Brownell84e250f2009-03-31 12:30:04 -0700397 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300398 case OTG_STATE_A_PERIPHERAL:
Felipe Balbi550a7372008-07-24 12:27:36 +0300399 musb_g_disconnect(musb);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300400 dev_dbg(musb->controller, "HNP: back to %s\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200401 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300402 break;
403 case OTG_STATE_B_HOST:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300404 dev_dbg(musb->controller, "HNP: Disabling HR\n");
Daniel Mack74c2e932013-04-10 21:55:45 +0200405 if (hcd)
406 hcd->self.is_b_host = 0;
David Brownell84e250f2009-03-31 12:30:04 -0700407 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +0300408 MUSB_DEV_MODE(musb);
409 reg = musb_readb(mbase, MUSB_POWER);
410 reg |= MUSB_POWER_SUSPENDM;
411 musb_writeb(mbase, MUSB_POWER, reg);
412 /* REVISIT: Start SESSION_REQUEST here? */
413 break;
414 default:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300415 dev_dbg(musb->controller, "HNP: Stopping in unknown state %s\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200416 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300417 }
418
419 /*
420 * When returning to A state after HNP, avoid hub_port_rebounce(),
421 * which cause occasional OPT A "Did not receive reset after connect"
422 * errors.
423 */
Alan Stern749da5f2010-03-04 17:05:08 -0500424 musb->port1_status &= ~(USB_PORT_STAT_C_CONNECTION << 16);
Felipe Balbi550a7372008-07-24 12:27:36 +0300425}
426
Felipe Balbi550a7372008-07-24 12:27:36 +0300427/*
428 * Interrupt Service Routine to record USB "global" interrupts.
429 * Since these do not happen often and signify things of
430 * paramount importance, it seems OK to check them individually;
431 * the order of the tests is specified in the manual
432 *
433 * @param musb instance pointer
434 * @param int_usb register contents
435 * @param devctl
436 * @param power
437 */
438
Felipe Balbi550a7372008-07-24 12:27:36 +0300439static irqreturn_t musb_stage0_irq(struct musb *musb, u8 int_usb,
Sebastian Andrzej Siewiorb11e94d2012-10-30 19:52:23 +0100440 u8 devctl)
Felipe Balbi550a7372008-07-24 12:27:36 +0300441{
Heikki Krogerusd445b6d2012-02-13 13:24:15 +0200442 struct usb_otg *otg = musb->xceiv->otg;
Felipe Balbi550a7372008-07-24 12:27:36 +0300443 irqreturn_t handled = IRQ_NONE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300444
Sebastian Andrzej Siewiorb11e94d2012-10-30 19:52:23 +0100445 dev_dbg(musb->controller, "<== DevCtl=%02x, int_usb=0x%x\n", devctl,
Felipe Balbi550a7372008-07-24 12:27:36 +0300446 int_usb);
447
448 /* in host mode, the peripheral may issue remote wakeup.
449 * in peripheral mode, the host may resume the link.
450 * spurious RESUME irqs happen too, paired with SUSPEND.
451 */
452 if (int_usb & MUSB_INTR_RESUME) {
453 handled = IRQ_HANDLED;
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200454 dev_dbg(musb->controller, "RESUME (%s)\n", usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300455
456 if (devctl & MUSB_DEVCTL_HM) {
Felipe Balbiaa471452010-03-12 10:27:24 +0200457 void __iomem *mbase = musb->mregs;
Sebastian Andrzej Siewiorb11e94d2012-10-30 19:52:23 +0100458 u8 power;
Felipe Balbiaa471452010-03-12 10:27:24 +0200459
David Brownell84e250f2009-03-31 12:30:04 -0700460 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300461 case OTG_STATE_A_SUSPEND:
462 /* remote wakeup? later, GetPortStatus
463 * will stop RESUME signaling
464 */
465
Sebastian Andrzej Siewiorb11e94d2012-10-30 19:52:23 +0100466 power = musb_readb(musb->mregs, MUSB_POWER);
Felipe Balbi550a7372008-07-24 12:27:36 +0300467 if (power & MUSB_POWER_SUSPENDM) {
468 /* spurious */
469 musb->int_usb &= ~MUSB_INTR_SUSPEND;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300470 dev_dbg(musb->controller, "Spurious SUSPENDM\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300471 break;
472 }
473
474 power &= ~MUSB_POWER_SUSPENDM;
475 musb_writeb(mbase, MUSB_POWER,
476 power | MUSB_POWER_RESUME);
477
478 musb->port1_status |=
479 (USB_PORT_STAT_C_SUSPEND << 16)
480 | MUSB_PORT_STAT_RESUME;
481 musb->rh_timer = jiffies
482 + msecs_to_jiffies(20);
483
David Brownell84e250f2009-03-31 12:30:04 -0700484 musb->xceiv->state = OTG_STATE_A_HOST;
Felipe Balbi550a7372008-07-24 12:27:36 +0300485 musb->is_active = 1;
Daniel Mack0b3eba42013-04-10 21:55:42 +0200486 musb_host_resume_root_hub(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300487 break;
488 case OTG_STATE_B_WAIT_ACON:
David Brownell84e250f2009-03-31 12:30:04 -0700489 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +0300490 musb->is_active = 1;
491 MUSB_DEV_MODE(musb);
492 break;
493 default:
494 WARNING("bogus %s RESUME (%s)\n",
495 "host",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200496 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300497 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300498 } else {
David Brownell84e250f2009-03-31 12:30:04 -0700499 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300500 case OTG_STATE_A_SUSPEND:
501 /* possibly DISCONNECT is upcoming */
David Brownell84e250f2009-03-31 12:30:04 -0700502 musb->xceiv->state = OTG_STATE_A_HOST;
Daniel Mack0b3eba42013-04-10 21:55:42 +0200503 musb_host_resume_root_hub(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300504 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300505 case OTG_STATE_B_WAIT_ACON:
506 case OTG_STATE_B_PERIPHERAL:
507 /* disconnect while suspended? we may
508 * not get a disconnect irq...
509 */
510 if ((devctl & MUSB_DEVCTL_VBUS)
511 != (3 << MUSB_DEVCTL_VBUS_SHIFT)
512 ) {
513 musb->int_usb |= MUSB_INTR_DISCONNECT;
514 musb->int_usb &= ~MUSB_INTR_SUSPEND;
515 break;
516 }
517 musb_g_resume(musb);
518 break;
519 case OTG_STATE_B_IDLE:
520 musb->int_usb &= ~MUSB_INTR_SUSPEND;
521 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300522 default:
523 WARNING("bogus %s RESUME (%s)\n",
524 "peripheral",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200525 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300526 }
527 }
528 }
529
Felipe Balbi550a7372008-07-24 12:27:36 +0300530 /* see manual for the order of the tests */
531 if (int_usb & MUSB_INTR_SESSREQ) {
Felipe Balbiaa471452010-03-12 10:27:24 +0200532 void __iomem *mbase = musb->mregs;
533
Heikki Krogerus19aab562010-10-29 04:23:27 -0500534 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS
535 && (devctl & MUSB_DEVCTL_BDEVICE)) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300536 dev_dbg(musb->controller, "SessReq while on B state\n");
Heikki Krogerusa6038ee2010-09-24 13:44:13 +0300537 return IRQ_HANDLED;
538 }
539
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300540 dev_dbg(musb->controller, "SESSION_REQUEST (%s)\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200541 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300542
543 /* IRQ arrives from ID pin sense or (later, if VBUS power
544 * is removed) SRP. responses are time critical:
545 * - turn on VBUS (with silicon-specific mechanism)
546 * - go through A_WAIT_VRISE
547 * - ... to A_WAIT_BCON.
548 * a_wait_vrise_tmout triggers VBUS_ERROR transitions
549 */
550 musb_writeb(mbase, MUSB_DEVCTL, MUSB_DEVCTL_SESSION);
551 musb->ep0_stage = MUSB_EP0_START;
David Brownell84e250f2009-03-31 12:30:04 -0700552 musb->xceiv->state = OTG_STATE_A_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300553 MUSB_HST_MODE(musb);
Felipe Balbi743411b2010-12-01 13:22:05 +0200554 musb_platform_set_vbus(musb, 1);
Felipe Balbi550a7372008-07-24 12:27:36 +0300555
556 handled = IRQ_HANDLED;
557 }
558
559 if (int_usb & MUSB_INTR_VBUSERROR) {
560 int ignore = 0;
561
562 /* During connection as an A-Device, we may see a short
563 * current spikes causing voltage drop, because of cable
564 * and peripheral capacitance combined with vbus draw.
565 * (So: less common with truly self-powered devices, where
566 * vbus doesn't act like a power supply.)
567 *
568 * Such spikes are short; usually less than ~500 usec, max
569 * of ~2 msec. That is, they're not sustained overcurrent
570 * errors, though they're reported using VBUSERROR irqs.
571 *
572 * Workarounds: (a) hardware: use self powered devices.
573 * (b) software: ignore non-repeated VBUS errors.
574 *
575 * REVISIT: do delays from lots of DEBUG_KERNEL checks
576 * make trouble here, keeping VBUS < 4.4V ?
577 */
David Brownell84e250f2009-03-31 12:30:04 -0700578 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300579 case OTG_STATE_A_HOST:
580 /* recovery is dicey once we've gotten past the
581 * initial stages of enumeration, but if VBUS
582 * stayed ok at the other end of the link, and
583 * another reset is due (at least for high speed,
584 * to redo the chirp etc), it might work OK...
585 */
586 case OTG_STATE_A_WAIT_BCON:
587 case OTG_STATE_A_WAIT_VRISE:
588 if (musb->vbuserr_retry) {
Felipe Balbiaa471452010-03-12 10:27:24 +0200589 void __iomem *mbase = musb->mregs;
590
Felipe Balbi550a7372008-07-24 12:27:36 +0300591 musb->vbuserr_retry--;
592 ignore = 1;
593 devctl |= MUSB_DEVCTL_SESSION;
594 musb_writeb(mbase, MUSB_DEVCTL, devctl);
595 } else {
596 musb->port1_status |=
Alan Stern749da5f2010-03-04 17:05:08 -0500597 USB_PORT_STAT_OVERCURRENT
598 | (USB_PORT_STAT_C_OVERCURRENT << 16);
Felipe Balbi550a7372008-07-24 12:27:36 +0300599 }
600 break;
601 default:
602 break;
603 }
604
Grazvydas Ignotas54485112013-03-10 02:49:28 +0200605 dev_printk(ignore ? KERN_DEBUG : KERN_ERR, musb->controller,
606 "VBUS_ERROR in %s (%02x, %s), retry #%d, port1 %08x\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200607 usb_otg_state_string(musb->xceiv->state),
Felipe Balbi550a7372008-07-24 12:27:36 +0300608 devctl,
609 ({ char *s;
610 switch (devctl & MUSB_DEVCTL_VBUS) {
611 case 0 << MUSB_DEVCTL_VBUS_SHIFT:
612 s = "<SessEnd"; break;
613 case 1 << MUSB_DEVCTL_VBUS_SHIFT:
614 s = "<AValid"; break;
615 case 2 << MUSB_DEVCTL_VBUS_SHIFT:
616 s = "<VBusValid"; break;
617 /* case 3 << MUSB_DEVCTL_VBUS_SHIFT: */
618 default:
619 s = "VALID"; break;
620 }; s; }),
621 VBUSERR_RETRY_COUNT - musb->vbuserr_retry,
622 musb->port1_status);
623
624 /* go through A_WAIT_VFALL then start a new session */
625 if (!ignore)
Felipe Balbi743411b2010-12-01 13:22:05 +0200626 musb_platform_set_vbus(musb, 0);
Felipe Balbi550a7372008-07-24 12:27:36 +0300627 handled = IRQ_HANDLED;
628 }
629
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200630 if (int_usb & MUSB_INTR_SUSPEND) {
Sebastian Andrzej Siewiorb11e94d2012-10-30 19:52:23 +0100631 dev_dbg(musb->controller, "SUSPEND (%s) devctl %02x\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200632 usb_otg_state_string(musb->xceiv->state), devctl);
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200633 handled = IRQ_HANDLED;
634
635 switch (musb->xceiv->state) {
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200636 case OTG_STATE_A_PERIPHERAL:
637 /* We also come here if the cable is removed, since
638 * this silicon doesn't report ID-no-longer-grounded.
639 *
640 * We depend on T(a_wait_bcon) to shut us down, and
641 * hope users don't do anything dicey during this
642 * undesired detour through A_WAIT_BCON.
643 */
644 musb_hnp_stop(musb);
Daniel Mack0b3eba42013-04-10 21:55:42 +0200645 musb_host_resume_root_hub(musb);
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200646 musb_root_disconnect(musb);
647 musb_platform_try_idle(musb, jiffies
648 + msecs_to_jiffies(musb->a_wait_bcon
649 ? : OTG_TIME_A_WAIT_BCON));
650
651 break;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200652 case OTG_STATE_B_IDLE:
653 if (!musb->is_active)
654 break;
655 case OTG_STATE_B_PERIPHERAL:
656 musb_g_suspend(musb);
Felipe Balbi032ec492011-11-24 15:46:26 +0200657 musb->is_active = otg->gadget->b_hnp_enable;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200658 if (musb->is_active) {
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200659 musb->xceiv->state = OTG_STATE_B_WAIT_ACON;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300660 dev_dbg(musb->controller, "HNP: Setting timer for b_ase0_brst\n");
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200661 mod_timer(&musb->otg_timer, jiffies
662 + msecs_to_jiffies(
663 OTG_TIME_B_ASE0_BRST));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200664 }
665 break;
666 case OTG_STATE_A_WAIT_BCON:
667 if (musb->a_wait_bcon != 0)
668 musb_platform_try_idle(musb, jiffies
669 + msecs_to_jiffies(musb->a_wait_bcon));
670 break;
671 case OTG_STATE_A_HOST:
672 musb->xceiv->state = OTG_STATE_A_SUSPEND;
Felipe Balbi032ec492011-11-24 15:46:26 +0200673 musb->is_active = otg->host->b_hnp_enable;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200674 break;
675 case OTG_STATE_B_HOST:
676 /* Transition to B_PERIPHERAL, see 6.8.2.6 p 44 */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300677 dev_dbg(musb->controller, "REVISIT: SUSPEND as B_HOST\n");
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200678 break;
679 default:
680 /* "should not happen" */
681 musb->is_active = 0;
682 break;
683 }
684 }
685
Felipe Balbi550a7372008-07-24 12:27:36 +0300686 if (int_usb & MUSB_INTR_CONNECT) {
Daniel Mack8b125df2013-04-10 21:55:50 +0200687 struct usb_hcd *hcd = musb->hcd;
Felipe Balbi550a7372008-07-24 12:27:36 +0300688
689 handled = IRQ_HANDLED;
690 musb->is_active = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +0300691
692 musb->ep0_stage = MUSB_EP0_START;
693
Felipe Balbi550a7372008-07-24 12:27:36 +0300694 /* flush endpoints when transitioning from Device Mode */
695 if (is_peripheral_active(musb)) {
696 /* REVISIT HNP; just force disconnect */
697 }
Sebastian Andrzej Siewiorb18d26f2012-10-30 19:52:26 +0100698 musb->intrtxe = musb->epmask;
699 musb_writew(musb->mregs, MUSB_INTRTXE, musb->intrtxe);
Sebastian Andrzej Siewioraf5ec142012-10-30 19:52:25 +0100700 musb->intrrxe = musb->epmask & 0xfffe;
701 musb_writew(musb->mregs, MUSB_INTRRXE, musb->intrrxe);
Ajay Kumar Guptad709d222010-07-08 14:03:00 +0530702 musb_writeb(musb->mregs, MUSB_INTRUSBE, 0xf7);
Felipe Balbi550a7372008-07-24 12:27:36 +0300703 musb->port1_status &= ~(USB_PORT_STAT_LOW_SPEED
704 |USB_PORT_STAT_HIGH_SPEED
705 |USB_PORT_STAT_ENABLE
706 );
707 musb->port1_status |= USB_PORT_STAT_CONNECTION
708 |(USB_PORT_STAT_C_CONNECTION << 16);
709
710 /* high vs full speed is just a guess until after reset */
711 if (devctl & MUSB_DEVCTL_LSDEV)
712 musb->port1_status |= USB_PORT_STAT_LOW_SPEED;
713
Felipe Balbi550a7372008-07-24 12:27:36 +0300714 /* indicate new connection to OTG machine */
David Brownell84e250f2009-03-31 12:30:04 -0700715 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300716 case OTG_STATE_B_PERIPHERAL:
717 if (int_usb & MUSB_INTR_SUSPEND) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300718 dev_dbg(musb->controller, "HNP: SUSPEND+CONNECT, now b_host\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300719 int_usb &= ~MUSB_INTR_SUSPEND;
David Brownell1de00da2009-04-02 10:16:11 -0700720 goto b_host;
Felipe Balbi550a7372008-07-24 12:27:36 +0300721 } else
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300722 dev_dbg(musb->controller, "CONNECT as b_peripheral???\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300723 break;
724 case OTG_STATE_B_WAIT_ACON:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300725 dev_dbg(musb->controller, "HNP: CONNECT, now b_host\n");
David Brownell1de00da2009-04-02 10:16:11 -0700726b_host:
David Brownell84e250f2009-03-31 12:30:04 -0700727 musb->xceiv->state = OTG_STATE_B_HOST;
Daniel Mack74c2e932013-04-10 21:55:45 +0200728 if (musb->hcd)
729 musb->hcd->self.is_b_host = 1;
David Brownell1de00da2009-04-02 10:16:11 -0700730 del_timer(&musb->otg_timer);
Felipe Balbi550a7372008-07-24 12:27:36 +0300731 break;
732 default:
733 if ((devctl & MUSB_DEVCTL_VBUS)
734 == (3 << MUSB_DEVCTL_VBUS_SHIFT)) {
David Brownell84e250f2009-03-31 12:30:04 -0700735 musb->xceiv->state = OTG_STATE_A_HOST;
Daniel Mack0b3eba42013-04-10 21:55:42 +0200736 if (hcd)
737 hcd->self.is_b_host = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +0300738 }
739 break;
740 }
David Brownell1de00da2009-04-02 10:16:11 -0700741
Daniel Mack0b3eba42013-04-10 21:55:42 +0200742 musb_host_poke_root_hub(musb);
David Brownell1de00da2009-04-02 10:16:11 -0700743
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300744 dev_dbg(musb->controller, "CONNECT (%s) devctl %02x\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200745 usb_otg_state_string(musb->xceiv->state), devctl);
Felipe Balbi550a7372008-07-24 12:27:36 +0300746 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300747
Felipe Balbi6d349672013-04-29 12:02:24 +0300748 if (int_usb & MUSB_INTR_DISCONNECT) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300749 dev_dbg(musb->controller, "DISCONNECT (%s) as %s, devctl %02x\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200750 usb_otg_state_string(musb->xceiv->state),
Felipe Balbi550a7372008-07-24 12:27:36 +0300751 MUSB_MODE(musb), devctl);
752 handled = IRQ_HANDLED;
753
David Brownell84e250f2009-03-31 12:30:04 -0700754 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300755 case OTG_STATE_A_HOST:
756 case OTG_STATE_A_SUSPEND:
Daniel Mack0b3eba42013-04-10 21:55:42 +0200757 musb_host_resume_root_hub(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300758 musb_root_disconnect(musb);
Felipe Balbi032ec492011-11-24 15:46:26 +0200759 if (musb->a_wait_bcon != 0)
Felipe Balbi550a7372008-07-24 12:27:36 +0300760 musb_platform_try_idle(musb, jiffies
761 + msecs_to_jiffies(musb->a_wait_bcon));
762 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300763 case OTG_STATE_B_HOST:
David Brownellab983f2a2009-03-31 12:35:09 -0700764 /* REVISIT this behaves for "real disconnect"
765 * cases; make sure the other transitions from
766 * from B_HOST act right too. The B_HOST code
767 * in hnp_stop() is currently not used...
768 */
769 musb_root_disconnect(musb);
Daniel Mack74c2e932013-04-10 21:55:45 +0200770 if (musb->hcd)
771 musb->hcd->self.is_b_host = 0;
David Brownellab983f2a2009-03-31 12:35:09 -0700772 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
773 MUSB_DEV_MODE(musb);
774 musb_g_disconnect(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300775 break;
776 case OTG_STATE_A_PERIPHERAL:
777 musb_hnp_stop(musb);
778 musb_root_disconnect(musb);
779 /* FALLTHROUGH */
780 case OTG_STATE_B_WAIT_ACON:
781 /* FALLTHROUGH */
Felipe Balbi550a7372008-07-24 12:27:36 +0300782 case OTG_STATE_B_PERIPHERAL:
783 case OTG_STATE_B_IDLE:
784 musb_g_disconnect(musb);
785 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300786 default:
787 WARNING("unhandled DISCONNECT transition (%s)\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200788 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300789 break;
790 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300791 }
792
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200793 /* mentor saves a bit: bus reset and babble share the same irq.
794 * only host sees babble; only peripheral sees bus reset.
795 */
796 if (int_usb & MUSB_INTR_RESET) {
797 handled = IRQ_HANDLED;
Felipe Balbia04d46d2011-11-24 15:46:27 +0200798 if ((devctl & MUSB_DEVCTL_HM) != 0) {
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200799 /*
800 * Looks like non-HS BABBLE can be ignored, but
801 * HS BABBLE is an error condition. For HS the solution
802 * is to avoid babble in the first place and fix what
803 * caused BABBLE. When HS BABBLE happens we can only
804 * stop the session.
805 */
806 if (devctl & (MUSB_DEVCTL_FSDEV | MUSB_DEVCTL_LSDEV))
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300807 dev_dbg(musb->controller, "BABBLE devctl: %02x\n", devctl);
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200808 else {
809 ERR("Stopping host session -- babble\n");
810 musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
811 }
Felipe Balbia04d46d2011-11-24 15:46:27 +0200812 } else {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300813 dev_dbg(musb->controller, "BUS RESET as %s\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200814 usb_otg_state_string(musb->xceiv->state));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200815 switch (musb->xceiv->state) {
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200816 case OTG_STATE_A_SUSPEND:
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200817 musb_g_reset(musb);
818 /* FALLTHROUGH */
819 case OTG_STATE_A_WAIT_BCON: /* OPT TD.4.7-900ms */
820 /* never use invalid T(a_wait_bcon) */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300821 dev_dbg(musb->controller, "HNP: in %s, %d msec timeout\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200822 usb_otg_state_string(musb->xceiv->state),
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200823 TA_WAIT_BCON(musb));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200824 mod_timer(&musb->otg_timer, jiffies
825 + msecs_to_jiffies(TA_WAIT_BCON(musb)));
826 break;
827 case OTG_STATE_A_PERIPHERAL:
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200828 del_timer(&musb->otg_timer);
829 musb_g_reset(musb);
830 break;
831 case OTG_STATE_B_WAIT_ACON:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300832 dev_dbg(musb->controller, "HNP: RESET (%s), to b_peripheral\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200833 usb_otg_state_string(musb->xceiv->state));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200834 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
835 musb_g_reset(musb);
836 break;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200837 case OTG_STATE_B_IDLE:
838 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
839 /* FALLTHROUGH */
840 case OTG_STATE_B_PERIPHERAL:
841 musb_g_reset(musb);
842 break;
843 default:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300844 dev_dbg(musb->controller, "Unhandled BUS RESET as %s\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +0200845 usb_otg_state_string(musb->xceiv->state));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200846 }
847 }
848 }
849
850#if 0
851/* REVISIT ... this would be for multiplexing periodic endpoints, or
852 * supporting transfer phasing to prevent exceeding ISO bandwidth
853 * limits of a given frame or microframe.
854 *
855 * It's not needed for peripheral side, which dedicates endpoints;
856 * though it _might_ use SOF irqs for other purposes.
857 *
858 * And it's not currently needed for host side, which also dedicates
859 * endpoints, relies on TX/RX interval registers, and isn't claimed
860 * to support ISO transfers yet.
861 */
862 if (int_usb & MUSB_INTR_SOF) {
863 void __iomem *mbase = musb->mregs;
864 struct musb_hw_ep *ep;
865 u8 epnum;
866 u16 frame;
867
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300868 dev_dbg(musb->controller, "START_OF_FRAME\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300869 handled = IRQ_HANDLED;
870
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200871 /* start any periodic Tx transfers waiting for current frame */
872 frame = musb_readw(mbase, MUSB_FRAME);
873 ep = musb->endpoints;
874 for (epnum = 1; (epnum < musb->nr_endpoints)
875 && (musb->epmask >= (1 << epnum));
876 epnum++, ep++) {
877 /*
878 * FIXME handle framecounter wraps (12 bits)
879 * eliminate duplicated StartUrb logic
Felipe Balbi550a7372008-07-24 12:27:36 +0300880 */
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200881 if (ep->dwWaitFrame >= frame) {
882 ep->dwWaitFrame = 0;
883 pr_debug("SOF --> periodic TX%s on %d\n",
884 ep->tx_channel ? " DMA" : "",
885 epnum);
886 if (!ep->tx_channel)
887 musb_h_tx_start(musb, epnum);
888 else
889 cppi_hostdma_start(musb, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +0300890 }
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200891 } /* end of for loop */
Felipe Balbi550a7372008-07-24 12:27:36 +0300892 }
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200893#endif
Felipe Balbi550a7372008-07-24 12:27:36 +0300894
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200895 schedule_work(&musb->irq_work);
Felipe Balbi550a7372008-07-24 12:27:36 +0300896
897 return handled;
898}
899
900/*-------------------------------------------------------------------------*/
901
Felipe Balbi550a7372008-07-24 12:27:36 +0300902static void musb_generic_disable(struct musb *musb)
903{
904 void __iomem *mbase = musb->mregs;
905 u16 temp;
906
907 /* disable interrupts */
908 musb_writeb(mbase, MUSB_INTRUSBE, 0);
Sebastian Andrzej Siewiorb18d26f2012-10-30 19:52:26 +0100909 musb->intrtxe = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +0300910 musb_writew(mbase, MUSB_INTRTXE, 0);
Sebastian Andrzej Siewioraf5ec142012-10-30 19:52:25 +0100911 musb->intrrxe = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +0300912 musb_writew(mbase, MUSB_INTRRXE, 0);
913
914 /* off */
915 musb_writeb(mbase, MUSB_DEVCTL, 0);
916
917 /* flush pending interrupts */
918 temp = musb_readb(mbase, MUSB_INTRUSB);
919 temp = musb_readw(mbase, MUSB_INTRTX);
920 temp = musb_readw(mbase, MUSB_INTRRX);
921
922}
923
924/*
925 * Make the HDRC stop (disable interrupts, etc.);
926 * reversible by musb_start
927 * called on gadget driver unregister
928 * with controller locked, irqs blocked
929 * acts as a NOP unless some role activated the hardware
930 */
931void musb_stop(struct musb *musb)
932{
933 /* stop IRQs, timers, ... */
934 musb_platform_disable(musb);
935 musb_generic_disable(musb);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300936 dev_dbg(musb->controller, "HDRC disabled\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300937
938 /* FIXME
939 * - mark host and/or peripheral drivers unusable/inactive
940 * - disable DMA (and enable it in HdrcStart)
941 * - make sure we can musb_start() after musb_stop(); with
942 * OTG mode, gadget driver module rmmod/modprobe cycles that
943 * - ...
944 */
945 musb_platform_try_idle(musb, 0);
946}
947
948static void musb_shutdown(struct platform_device *pdev)
949{
950 struct musb *musb = dev_to_musb(&pdev->dev);
951 unsigned long flags;
952
Hema HK4f9edd22011-03-22 16:02:12 +0530953 pm_runtime_get_sync(musb->controller);
Grazvydas Ignotas24307ca2012-01-12 15:22:45 +0200954
Daniel Mack2cc65fe2013-04-10 21:55:47 +0200955 musb_host_cleanup(musb);
Grazvydas Ignotas24307ca2012-01-12 15:22:45 +0200956 musb_gadget_cleanup(musb);
957
Felipe Balbi550a7372008-07-24 12:27:36 +0300958 spin_lock_irqsave(&musb->lock, flags);
959 musb_platform_disable(musb);
960 musb_generic_disable(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300961 spin_unlock_irqrestore(&musb->lock, flags);
962
Grazvydas Ignotas120d0742010-10-10 13:52:22 -0500963 musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
964 musb_platform_exit(musb);
Grazvydas Ignotas120d0742010-10-10 13:52:22 -0500965
Hema HK4f9edd22011-03-22 16:02:12 +0530966 pm_runtime_put(musb->controller);
Felipe Balbi550a7372008-07-24 12:27:36 +0300967 /* FIXME power down */
968}
969
970
971/*-------------------------------------------------------------------------*/
972
973/*
974 * The silicon either has hard-wired endpoint configurations, or else
975 * "dynamic fifo" sizing. The driver has support for both, though at this
David Brownellc767c1c2008-09-11 11:53:23 +0300976 * writing only the dynamic sizing is very well tested. Since we switched
977 * away from compile-time hardware parameters, we can no longer rely on
978 * dead code elimination to leave only the relevant one in the object file.
Felipe Balbi550a7372008-07-24 12:27:36 +0300979 *
980 * We don't currently use dynamic fifo setup capability to do anything
981 * more than selecting one of a bunch of predefined configurations.
982 */
Felipe Balbiee34e512011-06-29 12:45:03 +0300983#if defined(CONFIG_USB_MUSB_TUSB6010) \
984 || defined(CONFIG_USB_MUSB_TUSB6010_MODULE) \
985 || defined(CONFIG_USB_MUSB_OMAP2PLUS) \
986 || defined(CONFIG_USB_MUSB_OMAP2PLUS_MODULE) \
987 || defined(CONFIG_USB_MUSB_AM35X) \
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +0530988 || defined(CONFIG_USB_MUSB_AM35X_MODULE) \
989 || defined(CONFIG_USB_MUSB_DSPS) \
990 || defined(CONFIG_USB_MUSB_DSPS_MODULE)
Bill Pembertond3608b62012-11-19 13:24:34 -0500991static ushort fifo_mode = 4;
Felipe Balbiee34e512011-06-29 12:45:03 +0300992#elif defined(CONFIG_USB_MUSB_UX500) \
993 || defined(CONFIG_USB_MUSB_UX500_MODULE)
Bill Pembertond3608b62012-11-19 13:24:34 -0500994static ushort fifo_mode = 5;
Felipe Balbi550a7372008-07-24 12:27:36 +0300995#else
Bill Pembertond3608b62012-11-19 13:24:34 -0500996static ushort fifo_mode = 2;
Felipe Balbi550a7372008-07-24 12:27:36 +0300997#endif
998
999/* "modprobe ... fifo_mode=1" etc */
1000module_param(fifo_mode, ushort, 0);
1001MODULE_PARM_DESC(fifo_mode, "initial endpoint configuration");
1002
Felipe Balbi550a7372008-07-24 12:27:36 +03001003/*
1004 * tables defining fifo_mode values. define more if you like.
1005 * for host side, make sure both halves of ep1 are set up.
1006 */
1007
1008/* mode 0 - fits in 2KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001009static struct musb_fifo_cfg mode_0_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001010{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1011{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1012{ .hw_ep_num = 2, .style = FIFO_RXTX, .maxpacket = 512, },
1013{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1014{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1015};
1016
1017/* mode 1 - fits in 4KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001018static struct musb_fifo_cfg mode_1_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001019{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1020{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1021{ .hw_ep_num = 2, .style = FIFO_RXTX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1022{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1023{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1024};
1025
1026/* mode 2 - fits in 4KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001027static struct musb_fifo_cfg mode_2_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001028{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1029{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1030{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1031{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1032{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1033{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1034};
1035
1036/* mode 3 - fits in 4KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001037static struct musb_fifo_cfg mode_3_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001038{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1039{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1040{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1041{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1042{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1043{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1044};
1045
1046/* mode 4 - fits in 16KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001047static struct musb_fifo_cfg mode_4_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001048{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1049{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1050{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1051{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1052{ .hw_ep_num = 3, .style = FIFO_TX, .maxpacket = 512, },
1053{ .hw_ep_num = 3, .style = FIFO_RX, .maxpacket = 512, },
1054{ .hw_ep_num = 4, .style = FIFO_TX, .maxpacket = 512, },
1055{ .hw_ep_num = 4, .style = FIFO_RX, .maxpacket = 512, },
1056{ .hw_ep_num = 5, .style = FIFO_TX, .maxpacket = 512, },
1057{ .hw_ep_num = 5, .style = FIFO_RX, .maxpacket = 512, },
1058{ .hw_ep_num = 6, .style = FIFO_TX, .maxpacket = 512, },
1059{ .hw_ep_num = 6, .style = FIFO_RX, .maxpacket = 512, },
1060{ .hw_ep_num = 7, .style = FIFO_TX, .maxpacket = 512, },
1061{ .hw_ep_num = 7, .style = FIFO_RX, .maxpacket = 512, },
1062{ .hw_ep_num = 8, .style = FIFO_TX, .maxpacket = 512, },
1063{ .hw_ep_num = 8, .style = FIFO_RX, .maxpacket = 512, },
1064{ .hw_ep_num = 9, .style = FIFO_TX, .maxpacket = 512, },
1065{ .hw_ep_num = 9, .style = FIFO_RX, .maxpacket = 512, },
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001066{ .hw_ep_num = 10, .style = FIFO_TX, .maxpacket = 256, },
1067{ .hw_ep_num = 10, .style = FIFO_RX, .maxpacket = 64, },
1068{ .hw_ep_num = 11, .style = FIFO_TX, .maxpacket = 256, },
1069{ .hw_ep_num = 11, .style = FIFO_RX, .maxpacket = 64, },
1070{ .hw_ep_num = 12, .style = FIFO_TX, .maxpacket = 256, },
1071{ .hw_ep_num = 12, .style = FIFO_RX, .maxpacket = 64, },
1072{ .hw_ep_num = 13, .style = FIFO_RXTX, .maxpacket = 4096, },
Felipe Balbi550a7372008-07-24 12:27:36 +03001073{ .hw_ep_num = 14, .style = FIFO_RXTX, .maxpacket = 1024, },
1074{ .hw_ep_num = 15, .style = FIFO_RXTX, .maxpacket = 1024, },
1075};
1076
Ajay Kumar Gupta3b151522009-12-28 13:40:34 +02001077/* mode 5 - fits in 8KB */
Bill Pembertond3608b62012-11-19 13:24:34 -05001078static struct musb_fifo_cfg mode_5_cfg[] = {
Ajay Kumar Gupta3b151522009-12-28 13:40:34 +02001079{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1080{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1081{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1082{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1083{ .hw_ep_num = 3, .style = FIFO_TX, .maxpacket = 512, },
1084{ .hw_ep_num = 3, .style = FIFO_RX, .maxpacket = 512, },
1085{ .hw_ep_num = 4, .style = FIFO_TX, .maxpacket = 512, },
1086{ .hw_ep_num = 4, .style = FIFO_RX, .maxpacket = 512, },
1087{ .hw_ep_num = 5, .style = FIFO_TX, .maxpacket = 512, },
1088{ .hw_ep_num = 5, .style = FIFO_RX, .maxpacket = 512, },
1089{ .hw_ep_num = 6, .style = FIFO_TX, .maxpacket = 32, },
1090{ .hw_ep_num = 6, .style = FIFO_RX, .maxpacket = 32, },
1091{ .hw_ep_num = 7, .style = FIFO_TX, .maxpacket = 32, },
1092{ .hw_ep_num = 7, .style = FIFO_RX, .maxpacket = 32, },
1093{ .hw_ep_num = 8, .style = FIFO_TX, .maxpacket = 32, },
1094{ .hw_ep_num = 8, .style = FIFO_RX, .maxpacket = 32, },
1095{ .hw_ep_num = 9, .style = FIFO_TX, .maxpacket = 32, },
1096{ .hw_ep_num = 9, .style = FIFO_RX, .maxpacket = 32, },
1097{ .hw_ep_num = 10, .style = FIFO_TX, .maxpacket = 32, },
1098{ .hw_ep_num = 10, .style = FIFO_RX, .maxpacket = 32, },
1099{ .hw_ep_num = 11, .style = FIFO_TX, .maxpacket = 32, },
1100{ .hw_ep_num = 11, .style = FIFO_RX, .maxpacket = 32, },
1101{ .hw_ep_num = 12, .style = FIFO_TX, .maxpacket = 32, },
1102{ .hw_ep_num = 12, .style = FIFO_RX, .maxpacket = 32, },
1103{ .hw_ep_num = 13, .style = FIFO_RXTX, .maxpacket = 512, },
1104{ .hw_ep_num = 14, .style = FIFO_RXTX, .maxpacket = 1024, },
1105{ .hw_ep_num = 15, .style = FIFO_RXTX, .maxpacket = 1024, },
1106};
Felipe Balbi550a7372008-07-24 12:27:36 +03001107
1108/*
1109 * configure a fifo; for non-shared endpoints, this may be called
1110 * once for a tx fifo and once for an rx fifo.
1111 *
1112 * returns negative errno or offset for next fifo.
1113 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001114static int
Felipe Balbi550a7372008-07-24 12:27:36 +03001115fifo_setup(struct musb *musb, struct musb_hw_ep *hw_ep,
Felipe Balbie6c213b2010-03-12 10:29:06 +02001116 const struct musb_fifo_cfg *cfg, u16 offset)
Felipe Balbi550a7372008-07-24 12:27:36 +03001117{
1118 void __iomem *mbase = musb->mregs;
1119 int size = 0;
1120 u16 maxpacket = cfg->maxpacket;
1121 u16 c_off = offset >> 3;
1122 u8 c_size;
1123
1124 /* expect hw_ep has already been zero-initialized */
1125
1126 size = ffs(max(maxpacket, (u16) 8)) - 1;
1127 maxpacket = 1 << size;
1128
1129 c_size = size - 3;
1130 if (cfg->mode == BUF_DOUBLE) {
Felipe Balbica6d1b12008-08-08 12:40:54 +03001131 if ((offset + (maxpacket << 1)) >
1132 (1 << (musb->config->ram_bits + 2)))
Felipe Balbi550a7372008-07-24 12:27:36 +03001133 return -EMSGSIZE;
1134 c_size |= MUSB_FIFOSZ_DPB;
1135 } else {
Felipe Balbica6d1b12008-08-08 12:40:54 +03001136 if ((offset + maxpacket) > (1 << (musb->config->ram_bits + 2)))
Felipe Balbi550a7372008-07-24 12:27:36 +03001137 return -EMSGSIZE;
1138 }
1139
1140 /* configure the FIFO */
1141 musb_writeb(mbase, MUSB_INDEX, hw_ep->epnum);
1142
Felipe Balbi550a7372008-07-24 12:27:36 +03001143 /* EP0 reserved endpoint for control, bidirectional;
1144 * EP1 reserved for bulk, two unidirection halves.
1145 */
1146 if (hw_ep->epnum == 1)
1147 musb->bulk_ep = hw_ep;
1148 /* REVISIT error check: be sure ep0 can both rx and tx ... */
Felipe Balbi550a7372008-07-24 12:27:36 +03001149 switch (cfg->style) {
1150 case FIFO_TX:
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001151 musb_write_txfifosz(mbase, c_size);
1152 musb_write_txfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001153 hw_ep->tx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1154 hw_ep->max_packet_sz_tx = maxpacket;
1155 break;
1156 case FIFO_RX:
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001157 musb_write_rxfifosz(mbase, c_size);
1158 musb_write_rxfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001159 hw_ep->rx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1160 hw_ep->max_packet_sz_rx = maxpacket;
1161 break;
1162 case FIFO_RXTX:
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001163 musb_write_txfifosz(mbase, c_size);
1164 musb_write_txfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001165 hw_ep->rx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1166 hw_ep->max_packet_sz_rx = maxpacket;
1167
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001168 musb_write_rxfifosz(mbase, c_size);
1169 musb_write_rxfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001170 hw_ep->tx_double_buffered = hw_ep->rx_double_buffered;
1171 hw_ep->max_packet_sz_tx = maxpacket;
1172
1173 hw_ep->is_shared_fifo = true;
1174 break;
1175 }
1176
1177 /* NOTE rx and tx endpoint irqs aren't managed separately,
1178 * which happens to be ok
1179 */
1180 musb->epmask |= (1 << hw_ep->epnum);
1181
1182 return offset + (maxpacket << ((c_size & MUSB_FIFOSZ_DPB) ? 1 : 0));
1183}
1184
Bill Pembertond3608b62012-11-19 13:24:34 -05001185static struct musb_fifo_cfg ep0_cfg = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001186 .style = FIFO_RXTX, .maxpacket = 64,
1187};
1188
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001189static int ep_config_from_table(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001190{
Felipe Balbie6c213b2010-03-12 10:29:06 +02001191 const struct musb_fifo_cfg *cfg;
Felipe Balbi550a7372008-07-24 12:27:36 +03001192 unsigned i, n;
1193 int offset;
1194 struct musb_hw_ep *hw_ep = musb->endpoints;
1195
Felipe Balbie6c213b2010-03-12 10:29:06 +02001196 if (musb->config->fifo_cfg) {
1197 cfg = musb->config->fifo_cfg;
1198 n = musb->config->fifo_cfg_size;
1199 goto done;
1200 }
1201
Felipe Balbi550a7372008-07-24 12:27:36 +03001202 switch (fifo_mode) {
1203 default:
1204 fifo_mode = 0;
1205 /* FALLTHROUGH */
1206 case 0:
1207 cfg = mode_0_cfg;
1208 n = ARRAY_SIZE(mode_0_cfg);
1209 break;
1210 case 1:
1211 cfg = mode_1_cfg;
1212 n = ARRAY_SIZE(mode_1_cfg);
1213 break;
1214 case 2:
1215 cfg = mode_2_cfg;
1216 n = ARRAY_SIZE(mode_2_cfg);
1217 break;
1218 case 3:
1219 cfg = mode_3_cfg;
1220 n = ARRAY_SIZE(mode_3_cfg);
1221 break;
1222 case 4:
1223 cfg = mode_4_cfg;
1224 n = ARRAY_SIZE(mode_4_cfg);
1225 break;
Ajay Kumar Gupta3b151522009-12-28 13:40:34 +02001226 case 5:
1227 cfg = mode_5_cfg;
1228 n = ARRAY_SIZE(mode_5_cfg);
1229 break;
Felipe Balbi550a7372008-07-24 12:27:36 +03001230 }
1231
1232 printk(KERN_DEBUG "%s: setup fifo_mode %d\n",
1233 musb_driver_name, fifo_mode);
1234
1235
Felipe Balbie6c213b2010-03-12 10:29:06 +02001236done:
Felipe Balbi550a7372008-07-24 12:27:36 +03001237 offset = fifo_setup(musb, hw_ep, &ep0_cfg, 0);
1238 /* assert(offset > 0) */
1239
1240 /* NOTE: for RTL versions >= 1.400 EPINFO and RAMINFO would
Felipe Balbica6d1b12008-08-08 12:40:54 +03001241 * be better than static musb->config->num_eps and DYN_FIFO_SIZE...
Felipe Balbi550a7372008-07-24 12:27:36 +03001242 */
1243
1244 for (i = 0; i < n; i++) {
1245 u8 epn = cfg->hw_ep_num;
1246
Felipe Balbica6d1b12008-08-08 12:40:54 +03001247 if (epn >= musb->config->num_eps) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001248 pr_debug("%s: invalid ep %d\n",
1249 musb_driver_name, epn);
David Brownellbb1c9ef2008-11-24 13:06:50 +02001250 return -EINVAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001251 }
1252 offset = fifo_setup(musb, hw_ep + epn, cfg++, offset);
1253 if (offset < 0) {
1254 pr_debug("%s: mem overrun, ep %d\n",
1255 musb_driver_name, epn);
Shubhrajyoti Df69dfa12012-08-07 19:56:31 +05301256 return offset;
Felipe Balbi550a7372008-07-24 12:27:36 +03001257 }
1258 epn++;
1259 musb->nr_endpoints = max(epn, musb->nr_endpoints);
1260 }
1261
1262 printk(KERN_DEBUG "%s: %d/%d max ep, %d/%d memory\n",
1263 musb_driver_name,
Felipe Balbica6d1b12008-08-08 12:40:54 +03001264 n + 1, musb->config->num_eps * 2 - 1,
1265 offset, (1 << (musb->config->ram_bits + 2)));
Felipe Balbi550a7372008-07-24 12:27:36 +03001266
Felipe Balbi550a7372008-07-24 12:27:36 +03001267 if (!musb->bulk_ep) {
1268 pr_debug("%s: missing bulk\n", musb_driver_name);
1269 return -EINVAL;
1270 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001271
1272 return 0;
1273}
1274
1275
1276/*
1277 * ep_config_from_hw - when MUSB_C_DYNFIFO_DEF is false
1278 * @param musb the controller
1279 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001280static int ep_config_from_hw(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001281{
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001282 u8 epnum = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001283 struct musb_hw_ep *hw_ep;
Felipe Balbia1565442012-08-07 14:00:50 +03001284 void __iomem *mbase = musb->mregs;
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001285 int ret = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001286
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001287 dev_dbg(musb->controller, "<== static silicon ep config\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001288
1289 /* FIXME pick up ep0 maxpacket size */
1290
Felipe Balbica6d1b12008-08-08 12:40:54 +03001291 for (epnum = 1; epnum < musb->config->num_eps; epnum++) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001292 musb_ep_select(mbase, epnum);
1293 hw_ep = musb->endpoints + epnum;
1294
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001295 ret = musb_read_fifosize(musb, hw_ep, epnum);
1296 if (ret < 0)
Felipe Balbi550a7372008-07-24 12:27:36 +03001297 break;
Felipe Balbi550a7372008-07-24 12:27:36 +03001298
1299 /* FIXME set up hw_ep->{rx,tx}_double_buffered */
1300
Felipe Balbi550a7372008-07-24 12:27:36 +03001301 /* pick an RX/TX endpoint for bulk */
1302 if (hw_ep->max_packet_sz_tx < 512
1303 || hw_ep->max_packet_sz_rx < 512)
1304 continue;
1305
1306 /* REVISIT: this algorithm is lazy, we should at least
1307 * try to pick a double buffered endpoint.
1308 */
1309 if (musb->bulk_ep)
1310 continue;
1311 musb->bulk_ep = hw_ep;
Felipe Balbi550a7372008-07-24 12:27:36 +03001312 }
1313
Felipe Balbi550a7372008-07-24 12:27:36 +03001314 if (!musb->bulk_ep) {
1315 pr_debug("%s: missing bulk\n", musb_driver_name);
1316 return -EINVAL;
1317 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001318
1319 return 0;
1320}
1321
1322enum { MUSB_CONTROLLER_MHDRC, MUSB_CONTROLLER_HDRC, };
1323
1324/* Initialize MUSB (M)HDRC part of the USB hardware subsystem;
1325 * configure endpoints, or take their config from silicon
1326 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001327static int musb_core_init(u16 musb_type, struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001328{
Felipe Balbi550a7372008-07-24 12:27:36 +03001329 u8 reg;
1330 char *type;
Maulik Mankad0ea52ff2009-12-22 16:19:53 +05301331 char aInfo[90], aRevision[32], aDate[12];
Felipe Balbi550a7372008-07-24 12:27:36 +03001332 void __iomem *mbase = musb->mregs;
1333 int status = 0;
1334 int i;
1335
1336 /* log core options (read using indexed model) */
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001337 reg = musb_read_configdata(mbase);
Felipe Balbi550a7372008-07-24 12:27:36 +03001338
1339 strcpy(aInfo, (reg & MUSB_CONFIGDATA_UTMIDW) ? "UTMI-16" : "UTMI-8");
Ajay Kumar Gupta51bf0d02009-12-28 13:40:41 +02001340 if (reg & MUSB_CONFIGDATA_DYNFIFO) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001341 strcat(aInfo, ", dyn FIFOs");
Ajay Kumar Gupta51bf0d02009-12-28 13:40:41 +02001342 musb->dyn_fifo = true;
1343 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001344 if (reg & MUSB_CONFIGDATA_MPRXE) {
1345 strcat(aInfo, ", bulk combine");
Felipe Balbi550a7372008-07-24 12:27:36 +03001346 musb->bulk_combine = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001347 }
1348 if (reg & MUSB_CONFIGDATA_MPTXE) {
1349 strcat(aInfo, ", bulk split");
Felipe Balbi550a7372008-07-24 12:27:36 +03001350 musb->bulk_split = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001351 }
1352 if (reg & MUSB_CONFIGDATA_HBRXE) {
1353 strcat(aInfo, ", HB-ISO Rx");
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001354 musb->hb_iso_rx = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001355 }
1356 if (reg & MUSB_CONFIGDATA_HBTXE) {
1357 strcat(aInfo, ", HB-ISO Tx");
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001358 musb->hb_iso_tx = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001359 }
1360 if (reg & MUSB_CONFIGDATA_SOFTCONE)
1361 strcat(aInfo, ", SoftConn");
1362
1363 printk(KERN_DEBUG "%s: ConfigData=0x%02x (%s)\n",
1364 musb_driver_name, reg, aInfo);
1365
Felipe Balbi550a7372008-07-24 12:27:36 +03001366 aDate[0] = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001367 if (MUSB_CONTROLLER_MHDRC == musb_type) {
1368 musb->is_multipoint = 1;
1369 type = "M";
1370 } else {
1371 musb->is_multipoint = 0;
1372 type = "";
Felipe Balbi550a7372008-07-24 12:27:36 +03001373#ifndef CONFIG_USB_OTG_BLACKLIST_HUB
1374 printk(KERN_ERR
1375 "%s: kernel must blacklist external hubs\n",
1376 musb_driver_name);
1377#endif
Felipe Balbi550a7372008-07-24 12:27:36 +03001378 }
1379
1380 /* log release info */
Anand Gadiyar32c3b942009-11-16 21:09:21 +05301381 musb->hwvers = musb_read_hwvers(mbase);
1382 snprintf(aRevision, 32, "%d.%d%s", MUSB_HWVERS_MAJOR(musb->hwvers),
1383 MUSB_HWVERS_MINOR(musb->hwvers),
1384 (musb->hwvers & MUSB_HWVERS_RC) ? "RC" : "");
Felipe Balbi550a7372008-07-24 12:27:36 +03001385 printk(KERN_DEBUG "%s: %sHDRC RTL version %s %s\n",
1386 musb_driver_name, type, aRevision, aDate);
1387
1388 /* configure ep0 */
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001389 musb_configure_ep0(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001390
1391 /* discover endpoint configuration */
1392 musb->nr_endpoints = 1;
1393 musb->epmask = 1;
1394
Felipe Balbiad517e9e2010-01-21 15:33:54 +02001395 if (musb->dyn_fifo)
1396 status = ep_config_from_table(musb);
1397 else
1398 status = ep_config_from_hw(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001399
1400 if (status < 0)
1401 return status;
1402
1403 /* finish init, and print endpoint config */
1404 for (i = 0; i < musb->nr_endpoints; i++) {
1405 struct musb_hw_ep *hw_ep = musb->endpoints + i;
1406
1407 hw_ep->fifo = MUSB_FIFO_OFFSET(i) + mbase;
Arnd Bergmann9a35f872011-10-02 16:45:47 +02001408#if defined(CONFIG_USB_MUSB_TUSB6010) || defined (CONFIG_USB_MUSB_TUSB6010_MODULE)
Felipe Balbi550a7372008-07-24 12:27:36 +03001409 hw_ep->fifo_async = musb->async + 0x400 + MUSB_FIFO_OFFSET(i);
1410 hw_ep->fifo_sync = musb->sync + 0x400 + MUSB_FIFO_OFFSET(i);
1411 hw_ep->fifo_sync_va =
1412 musb->sync_va + 0x400 + MUSB_FIFO_OFFSET(i);
1413
1414 if (i == 0)
1415 hw_ep->conf = mbase - 0x400 + TUSB_EP0_CONF;
1416 else
1417 hw_ep->conf = mbase + 0x400 + (((i - 1) & 0xf) << 2);
1418#endif
1419
1420 hw_ep->regs = MUSB_EP_OFFSET(i, 0) + mbase;
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001421 hw_ep->target_regs = musb_read_target_reg_base(i, mbase);
Felipe Balbi550a7372008-07-24 12:27:36 +03001422 hw_ep->rx_reinit = 1;
1423 hw_ep->tx_reinit = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001424
1425 if (hw_ep->max_packet_sz_tx) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001426 dev_dbg(musb->controller,
Felipe Balbi550a7372008-07-24 12:27:36 +03001427 "%s: hw_ep %d%s, %smax %d\n",
1428 musb_driver_name, i,
1429 hw_ep->is_shared_fifo ? "shared" : "tx",
1430 hw_ep->tx_double_buffered
1431 ? "doublebuffer, " : "",
1432 hw_ep->max_packet_sz_tx);
1433 }
1434 if (hw_ep->max_packet_sz_rx && !hw_ep->is_shared_fifo) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001435 dev_dbg(musb->controller,
Felipe Balbi550a7372008-07-24 12:27:36 +03001436 "%s: hw_ep %d%s, %smax %d\n",
1437 musb_driver_name, i,
1438 "rx",
1439 hw_ep->rx_double_buffered
1440 ? "doublebuffer, " : "",
1441 hw_ep->max_packet_sz_rx);
1442 }
1443 if (!(hw_ep->max_packet_sz_tx || hw_ep->max_packet_sz_rx))
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001444 dev_dbg(musb->controller, "hw_ep %d not configured\n", i);
Felipe Balbi550a7372008-07-24 12:27:36 +03001445 }
1446
1447 return 0;
1448}
1449
1450/*-------------------------------------------------------------------------*/
1451
Felipe Balbi550a7372008-07-24 12:27:36 +03001452/*
1453 * handle all the irqs defined by the HDRC core. for now we expect: other
1454 * irq sources (phy, dma, etc) will be handled first, musb->int_* values
1455 * will be assigned, and the irq will already have been acked.
1456 *
1457 * called in irq context with spinlock held, irqs blocked
1458 */
1459irqreturn_t musb_interrupt(struct musb *musb)
1460{
1461 irqreturn_t retval = IRQ_NONE;
Sebastian Andrzej Siewiorb11e94d2012-10-30 19:52:23 +01001462 u8 devctl;
Felipe Balbi550a7372008-07-24 12:27:36 +03001463 int ep_num;
1464 u32 reg;
1465
1466 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
Felipe Balbi550a7372008-07-24 12:27:36 +03001467
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001468 dev_dbg(musb->controller, "** IRQ %s usb%04x tx%04x rx%04x\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001469 (devctl & MUSB_DEVCTL_HM) ? "host" : "peripheral",
1470 musb->int_usb, musb->int_tx, musb->int_rx);
1471
1472 /* the core can interrupt us for multiple reasons; docs have
1473 * a generic interrupt flowchart to follow
1474 */
Sergei Shtylyov7d9645f2010-06-24 23:07:06 +05301475 if (musb->int_usb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001476 retval |= musb_stage0_irq(musb, musb->int_usb,
Sebastian Andrzej Siewiorb11e94d2012-10-30 19:52:23 +01001477 devctl);
Felipe Balbi550a7372008-07-24 12:27:36 +03001478
1479 /* "stage 1" is handling endpoint irqs */
1480
1481 /* handle endpoint 0 first */
1482 if (musb->int_tx & 1) {
1483 if (devctl & MUSB_DEVCTL_HM)
1484 retval |= musb_h_ep0_irq(musb);
1485 else
1486 retval |= musb_g_ep0_irq(musb);
1487 }
1488
1489 /* RX on endpoints 1-15 */
1490 reg = musb->int_rx >> 1;
1491 ep_num = 1;
1492 while (reg) {
1493 if (reg & 1) {
1494 /* musb_ep_select(musb->mregs, ep_num); */
1495 /* REVISIT just retval = ep->rx_irq(...) */
1496 retval = IRQ_HANDLED;
Felipe Balbia04d46d2011-11-24 15:46:27 +02001497 if (devctl & MUSB_DEVCTL_HM)
1498 musb_host_rx(musb, ep_num);
1499 else
1500 musb_g_rx(musb, ep_num);
Felipe Balbi550a7372008-07-24 12:27:36 +03001501 }
1502
1503 reg >>= 1;
1504 ep_num++;
1505 }
1506
1507 /* TX on endpoints 1-15 */
1508 reg = musb->int_tx >> 1;
1509 ep_num = 1;
1510 while (reg) {
1511 if (reg & 1) {
1512 /* musb_ep_select(musb->mregs, ep_num); */
1513 /* REVISIT just retval |= ep->tx_irq(...) */
1514 retval = IRQ_HANDLED;
Felipe Balbia04d46d2011-11-24 15:46:27 +02001515 if (devctl & MUSB_DEVCTL_HM)
1516 musb_host_tx(musb, ep_num);
1517 else
1518 musb_g_tx(musb, ep_num);
Felipe Balbi550a7372008-07-24 12:27:36 +03001519 }
1520 reg >>= 1;
1521 ep_num++;
1522 }
1523
Felipe Balbi550a7372008-07-24 12:27:36 +03001524 return retval;
1525}
Felipe Balbi981430a2011-05-11 13:02:23 +03001526EXPORT_SYMBOL_GPL(musb_interrupt);
Felipe Balbi550a7372008-07-24 12:27:36 +03001527
1528#ifndef CONFIG_MUSB_PIO_ONLY
Bill Pembertond3608b62012-11-19 13:24:34 -05001529static bool use_dma = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001530
1531/* "modprobe ... use_dma=0" etc */
1532module_param(use_dma, bool, 0);
1533MODULE_PARM_DESC(use_dma, "enable/disable use of DMA");
1534
1535void musb_dma_completion(struct musb *musb, u8 epnum, u8 transmit)
1536{
1537 u8 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
1538
1539 /* called with controller lock already held */
1540
1541 if (!epnum) {
1542#ifndef CONFIG_USB_TUSB_OMAP_DMA
1543 if (!is_cppi_enabled()) {
1544 /* endpoint 0 */
1545 if (devctl & MUSB_DEVCTL_HM)
1546 musb_h_ep0_irq(musb);
1547 else
1548 musb_g_ep0_irq(musb);
1549 }
1550#endif
1551 } else {
1552 /* endpoints 1..15 */
1553 if (transmit) {
Felipe Balbia04d46d2011-11-24 15:46:27 +02001554 if (devctl & MUSB_DEVCTL_HM)
1555 musb_host_tx(musb, epnum);
1556 else
1557 musb_g_tx(musb, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001558 } else {
1559 /* receive */
Felipe Balbia04d46d2011-11-24 15:46:27 +02001560 if (devctl & MUSB_DEVCTL_HM)
1561 musb_host_rx(musb, epnum);
1562 else
1563 musb_g_rx(musb, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001564 }
1565 }
1566}
Arnd Bergmann9a35f872011-10-02 16:45:47 +02001567EXPORT_SYMBOL_GPL(musb_dma_completion);
Felipe Balbi550a7372008-07-24 12:27:36 +03001568
1569#else
1570#define use_dma 0
1571#endif
1572
1573/*-------------------------------------------------------------------------*/
1574
Felipe Balbi550a7372008-07-24 12:27:36 +03001575static ssize_t
1576musb_mode_show(struct device *dev, struct device_attribute *attr, char *buf)
1577{
1578 struct musb *musb = dev_to_musb(dev);
1579 unsigned long flags;
1580 int ret = -EINVAL;
1581
1582 spin_lock_irqsave(&musb->lock, flags);
Felipe Balbi42c0bf12013-03-07 10:39:57 +02001583 ret = sprintf(buf, "%s\n", usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +03001584 spin_unlock_irqrestore(&musb->lock, flags);
1585
1586 return ret;
1587}
1588
1589static ssize_t
1590musb_mode_store(struct device *dev, struct device_attribute *attr,
1591 const char *buf, size_t n)
1592{
1593 struct musb *musb = dev_to_musb(dev);
1594 unsigned long flags;
David Brownell96a274d2008-11-24 13:06:47 +02001595 int status;
Felipe Balbi550a7372008-07-24 12:27:36 +03001596
1597 spin_lock_irqsave(&musb->lock, flags);
David Brownell96a274d2008-11-24 13:06:47 +02001598 if (sysfs_streq(buf, "host"))
1599 status = musb_platform_set_mode(musb, MUSB_HOST);
1600 else if (sysfs_streq(buf, "peripheral"))
1601 status = musb_platform_set_mode(musb, MUSB_PERIPHERAL);
1602 else if (sysfs_streq(buf, "otg"))
1603 status = musb_platform_set_mode(musb, MUSB_OTG);
1604 else
1605 status = -EINVAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001606 spin_unlock_irqrestore(&musb->lock, flags);
1607
David Brownell96a274d2008-11-24 13:06:47 +02001608 return (status == 0) ? n : status;
Felipe Balbi550a7372008-07-24 12:27:36 +03001609}
1610static DEVICE_ATTR(mode, 0644, musb_mode_show, musb_mode_store);
1611
1612static ssize_t
1613musb_vbus_store(struct device *dev, struct device_attribute *attr,
1614 const char *buf, size_t n)
1615{
1616 struct musb *musb = dev_to_musb(dev);
1617 unsigned long flags;
1618 unsigned long val;
1619
1620 if (sscanf(buf, "%lu", &val) < 1) {
Felipe Balbib3b1cc32009-12-15 11:08:43 +02001621 dev_err(dev, "Invalid VBUS timeout ms value\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001622 return -EINVAL;
1623 }
1624
1625 spin_lock_irqsave(&musb->lock, flags);
David Brownellf7f9d632009-03-31 12:32:12 -07001626 /* force T(a_wait_bcon) to be zero/unlimited *OR* valid */
1627 musb->a_wait_bcon = val ? max_t(int, val, OTG_TIME_A_WAIT_BCON) : 0 ;
David Brownell84e250f2009-03-31 12:30:04 -07001628 if (musb->xceiv->state == OTG_STATE_A_WAIT_BCON)
Felipe Balbi550a7372008-07-24 12:27:36 +03001629 musb->is_active = 0;
1630 musb_platform_try_idle(musb, jiffies + msecs_to_jiffies(val));
1631 spin_unlock_irqrestore(&musb->lock, flags);
1632
1633 return n;
1634}
1635
1636static ssize_t
1637musb_vbus_show(struct device *dev, struct device_attribute *attr, char *buf)
1638{
1639 struct musb *musb = dev_to_musb(dev);
1640 unsigned long flags;
1641 unsigned long val;
1642 int vbus;
1643
1644 spin_lock_irqsave(&musb->lock, flags);
1645 val = musb->a_wait_bcon;
David Brownellf7f9d632009-03-31 12:32:12 -07001646 /* FIXME get_vbus_status() is normally #defined as false...
1647 * and is effectively TUSB-specific.
1648 */
Felipe Balbi550a7372008-07-24 12:27:36 +03001649 vbus = musb_platform_get_vbus_status(musb);
1650 spin_unlock_irqrestore(&musb->lock, flags);
1651
David Brownellf7f9d632009-03-31 12:32:12 -07001652 return sprintf(buf, "Vbus %s, timeout %lu msec\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001653 vbus ? "on" : "off", val);
1654}
1655static DEVICE_ATTR(vbus, 0644, musb_vbus_show, musb_vbus_store);
1656
Felipe Balbi550a7372008-07-24 12:27:36 +03001657/* Gadget drivers can't know that a host is connected so they might want
1658 * to start SRP, but users can. This allows userspace to trigger SRP.
1659 */
1660static ssize_t
1661musb_srp_store(struct device *dev, struct device_attribute *attr,
1662 const char *buf, size_t n)
1663{
1664 struct musb *musb = dev_to_musb(dev);
1665 unsigned short srp;
1666
1667 if (sscanf(buf, "%hu", &srp) != 1
1668 || (srp != 1)) {
Felipe Balbib3b1cc32009-12-15 11:08:43 +02001669 dev_err(dev, "SRP: Value must be 1\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001670 return -EINVAL;
1671 }
1672
1673 if (srp == 1)
1674 musb_g_wakeup(musb);
1675
1676 return n;
1677}
1678static DEVICE_ATTR(srp, 0644, NULL, musb_srp_store);
1679
Felipe Balbi94375752009-12-15 11:08:38 +02001680static struct attribute *musb_attributes[] = {
1681 &dev_attr_mode.attr,
1682 &dev_attr_vbus.attr,
Felipe Balbi94375752009-12-15 11:08:38 +02001683 &dev_attr_srp.attr,
Felipe Balbi94375752009-12-15 11:08:38 +02001684 NULL
1685};
1686
1687static const struct attribute_group musb_attr_group = {
1688 .attrs = musb_attributes,
1689};
1690
Felipe Balbi550a7372008-07-24 12:27:36 +03001691/* Only used to provide driver mode change events */
1692static void musb_irq_work(struct work_struct *data)
1693{
1694 struct musb *musb = container_of(data, struct musb, irq_work);
Felipe Balbi550a7372008-07-24 12:27:36 +03001695
Ajay Kumar Gupta8d2421e2012-08-31 11:09:50 +00001696 if (musb->xceiv->state != musb->xceiv_old_state) {
1697 musb->xceiv_old_state = musb->xceiv->state;
Felipe Balbi550a7372008-07-24 12:27:36 +03001698 sysfs_notify(&musb->controller->kobj, NULL, "mode");
1699 }
1700}
1701
1702/* --------------------------------------------------------------------------
1703 * Init support
1704 */
1705
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001706static struct musb *allocate_instance(struct device *dev,
Felipe Balbica6d1b12008-08-08 12:40:54 +03001707 struct musb_hdrc_config *config, void __iomem *mbase)
Felipe Balbi550a7372008-07-24 12:27:36 +03001708{
1709 struct musb *musb;
1710 struct musb_hw_ep *ep;
1711 int epnum;
Daniel Mack74c2e932013-04-10 21:55:45 +02001712 int ret;
Felipe Balbi550a7372008-07-24 12:27:36 +03001713
Daniel Mack74c2e932013-04-10 21:55:45 +02001714 musb = devm_kzalloc(dev, sizeof(*musb), GFP_KERNEL);
1715 if (!musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001716 return NULL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001717
Felipe Balbi550a7372008-07-24 12:27:36 +03001718 INIT_LIST_HEAD(&musb->control);
1719 INIT_LIST_HEAD(&musb->in_bulk);
1720 INIT_LIST_HEAD(&musb->out_bulk);
1721
Felipe Balbi550a7372008-07-24 12:27:36 +03001722 musb->vbuserr_retry = VBUSERR_RETRY_COUNT;
David Brownellf7f9d632009-03-31 12:32:12 -07001723 musb->a_wait_bcon = OTG_TIME_A_WAIT_BCON;
Felipe Balbi550a7372008-07-24 12:27:36 +03001724 musb->mregs = mbase;
1725 musb->ctrl_base = mbase;
1726 musb->nIrq = -ENODEV;
Felipe Balbica6d1b12008-08-08 12:40:54 +03001727 musb->config = config;
Kevin Hilman02582b92008-09-15 12:09:31 +02001728 BUG_ON(musb->config->num_eps > MUSB_C_NUM_EPS);
Felipe Balbi550a7372008-07-24 12:27:36 +03001729 for (epnum = 0, ep = musb->endpoints;
Felipe Balbica6d1b12008-08-08 12:40:54 +03001730 epnum < musb->config->num_eps;
Felipe Balbi550a7372008-07-24 12:27:36 +03001731 epnum++, ep++) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001732 ep->musb = musb;
1733 ep->epnum = epnum;
1734 }
1735
1736 musb->controller = dev;
Felipe Balbi743411b2010-12-01 13:22:05 +02001737
Daniel Mack74c2e932013-04-10 21:55:45 +02001738 ret = musb_host_alloc(musb);
1739 if (ret < 0)
1740 goto err_free;
1741
1742 dev_set_drvdata(dev, musb);
1743
Felipe Balbi550a7372008-07-24 12:27:36 +03001744 return musb;
Daniel Mack74c2e932013-04-10 21:55:45 +02001745
1746err_free:
1747 return NULL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001748}
1749
1750static void musb_free(struct musb *musb)
1751{
1752 /* this has multiple entry modes. it handles fault cleanup after
1753 * probe(), where things may be partially set up, as well as rmmod
1754 * cleanup after everything's been de-activated.
1755 */
1756
1757#ifdef CONFIG_SYSFS
Felipe Balbi94375752009-12-15 11:08:38 +02001758 sysfs_remove_group(&musb->controller->kobj, &musb_attr_group);
Felipe Balbi550a7372008-07-24 12:27:36 +03001759#endif
1760
Ajay Kumar Gupta97a39892009-01-24 17:56:39 -08001761 if (musb->nIrq >= 0) {
1762 if (musb->irq_wake)
1763 disable_irq_wake(musb->nIrq);
Felipe Balbi550a7372008-07-24 12:27:36 +03001764 free_irq(musb->nIrq, musb);
1765 }
Sebastian Andrzej Siewiorc5340bd2013-10-10 18:26:59 +02001766 cancel_work_sync(&musb->irq_work);
Sebastian Andrzej Siewior6904b842013-06-19 17:38:13 +02001767 if (musb->dma_controller)
Sebastian Andrzej Siewior66c01882013-06-19 17:38:11 +02001768 dma_controller_destroy(musb->dma_controller);
Felipe Balbi550a7372008-07-24 12:27:36 +03001769
Daniel Mack74c2e932013-04-10 21:55:45 +02001770 musb_host_free(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001771}
1772
1773/*
1774 * Perform generic per-controller initialization.
1775 *
Sergei Shtylyov28dd9242012-08-21 21:22:45 +04001776 * @dev: the controller (already clocked, etc)
1777 * @nIrq: IRQ number
1778 * @ctrl: virtual address of controller registers,
Felipe Balbi550a7372008-07-24 12:27:36 +03001779 * not yet corrected for platform-specific offsets
1780 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001781static int
Felipe Balbi550a7372008-07-24 12:27:36 +03001782musb_init_controller(struct device *dev, int nIrq, void __iomem *ctrl)
1783{
1784 int status;
1785 struct musb *musb;
Jingoo Hanc1a7d672013-07-30 17:03:12 +09001786 struct musb_hdrc_platform_data *plat = dev_get_platdata(dev);
Felipe Balbi550a7372008-07-24 12:27:36 +03001787
1788 /* The driver might handle more features than the board; OK.
1789 * Fail when the board needs a feature that's not enabled.
1790 */
1791 if (!plat) {
1792 dev_dbg(dev, "no platform_data?\n");
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001793 status = -ENODEV;
1794 goto fail0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001795 }
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001796
Felipe Balbi550a7372008-07-24 12:27:36 +03001797 /* allocate */
Felipe Balbica6d1b12008-08-08 12:40:54 +03001798 musb = allocate_instance(dev, plat->config, ctrl);
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001799 if (!musb) {
1800 status = -ENOMEM;
1801 goto fail0;
1802 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001803
Hema HK7acc6192011-02-28 14:19:34 +05301804 pm_runtime_use_autosuspend(musb->controller);
1805 pm_runtime_set_autosuspend_delay(musb->controller, 200);
1806 pm_runtime_enable(musb->controller);
1807
Felipe Balbi550a7372008-07-24 12:27:36 +03001808 spin_lock_init(&musb->lock);
Felipe Balbi550a7372008-07-24 12:27:36 +03001809 musb->board_set_power = plat->set_power;
Felipe Balbi550a7372008-07-24 12:27:36 +03001810 musb->min_power = plat->min_power;
Felipe Balbif7ec9432010-12-02 09:48:58 +02001811 musb->ops = plat->platform_ops;
Daniel Mack9ad96e62013-04-10 21:55:48 +02001812 musb->port_mode = plat->mode;
Felipe Balbi550a7372008-07-24 12:27:36 +03001813
David Brownell84e250f2009-03-31 12:30:04 -07001814 /* The musb_platform_init() call:
Philippe De Swertbaef6532012-11-06 15:32:13 +02001815 * - adjusts musb->mregs
1816 * - sets the musb->isr
David Brownell84e250f2009-03-31 12:30:04 -07001817 * - may initialize an integrated tranceiver
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +05301818 * - initializes musb->xceiv, usually by otg_get_phy()
David Brownell84e250f2009-03-31 12:30:04 -07001819 * - stops powering VBUS
David Brownell84e250f2009-03-31 12:30:04 -07001820 *
Joe Perches7c9d4402011-06-23 11:39:20 -07001821 * There are various transceiver configurations. Blackfin,
David Brownell84e250f2009-03-31 12:30:04 -07001822 * DaVinci, TUSB60x0, and others integrate them. OMAP3 uses
1823 * external/discrete ones in various flavors (twl4030 family,
1824 * isp1504, non-OTG, etc) mostly hooking up through ULPI.
Felipe Balbi550a7372008-07-24 12:27:36 +03001825 */
Hema Kalliguddiea65df52010-09-22 19:27:40 -05001826 status = musb_platform_init(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001827 if (status < 0)
Felipe Balbi03491762010-12-02 09:57:08 +02001828 goto fail1;
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001829
Felipe Balbi550a7372008-07-24 12:27:36 +03001830 if (!musb->isr) {
1831 status = -ENODEV;
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02001832 goto fail2;
Felipe Balbi550a7372008-07-24 12:27:36 +03001833 }
1834
Heikki Krogerusffb865b2010-03-25 13:25:28 +02001835 if (!musb->xceiv->io_ops) {
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +02001836 musb->xceiv->io_dev = musb->controller;
Heikki Krogerusffb865b2010-03-25 13:25:28 +02001837 musb->xceiv->io_priv = musb->mregs;
1838 musb->xceiv->io_ops = &musb_ulpi_access;
1839 }
1840
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02001841 pm_runtime_get_sync(musb->controller);
1842
Sebastian Andrzej Siewior66c01882013-06-19 17:38:11 +02001843 if (use_dma && dev->dma_mask)
1844 musb->dma_controller = dma_controller_create(musb, musb->mregs);
Felipe Balbi550a7372008-07-24 12:27:36 +03001845
1846 /* be sure interrupts are disabled before connecting ISR */
1847 musb_platform_disable(musb);
1848 musb_generic_disable(musb);
1849
1850 /* setup musb parts of the core (especially endpoints) */
Felipe Balbica6d1b12008-08-08 12:40:54 +03001851 status = musb_core_init(plat->config->multipoint
Felipe Balbi550a7372008-07-24 12:27:36 +03001852 ? MUSB_CONTROLLER_MHDRC
1853 : MUSB_CONTROLLER_HDRC, musb);
1854 if (status < 0)
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001855 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03001856
David Brownellf7f9d632009-03-31 12:32:12 -07001857 setup_timer(&musb->otg_timer, musb_otg_timer_func, (unsigned long) musb);
David Brownellf7f9d632009-03-31 12:32:12 -07001858
Felipe Balbi550a7372008-07-24 12:27:36 +03001859 /* Init IRQ workqueue before request_irq */
1860 INIT_WORK(&musb->irq_work, musb_irq_work);
1861
1862 /* attach to the IRQ */
Kay Sievers427c4f32008-11-07 01:52:53 +01001863 if (request_irq(nIrq, musb->isr, 0, dev_name(dev), musb)) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001864 dev_err(dev, "request_irq %d failed!\n", nIrq);
1865 status = -ENODEV;
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001866 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03001867 }
1868 musb->nIrq = nIrq;
Felipe Balbi032ec492011-11-24 15:46:26 +02001869 /* FIXME this handles wakeup irqs wrong */
Felipe Balbic48a5152008-11-24 13:06:53 +02001870 if (enable_irq_wake(nIrq) == 0) {
1871 musb->irq_wake = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001872 device_init_wakeup(dev, 1);
Felipe Balbic48a5152008-11-24 13:06:53 +02001873 } else {
1874 musb->irq_wake = 0;
1875 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001876
Felipe Balbi032ec492011-11-24 15:46:26 +02001877 /* program PHY to use external vBus if required */
1878 if (plat->extvbus) {
1879 u8 busctl = musb_read_ulpi_buscontrol(musb->mregs);
1880 busctl |= MUSB_ULPI_USE_EXTVBUS;
1881 musb_write_ulpi_buscontrol(musb->mregs, busctl);
Felipe Balbi550a7372008-07-24 12:27:36 +03001882 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001883
Grazvydas Ignotase5615112013-03-10 02:48:55 +02001884 if (musb->xceiv->otg->default_a) {
1885 MUSB_HST_MODE(musb);
1886 musb->xceiv->state = OTG_STATE_A_IDLE;
1887 } else {
1888 MUSB_DEV_MODE(musb);
1889 musb->xceiv->state = OTG_STATE_B_IDLE;
1890 }
Anand Gadiyar07a8cdd2010-11-18 18:54:17 +05301891
Daniel Mack6c5f6a62013-04-10 21:55:49 +02001892 switch (musb->port_mode) {
1893 case MUSB_PORT_MODE_HOST:
1894 status = musb_host_setup(musb, plat->power);
1895 break;
1896 case MUSB_PORT_MODE_GADGET:
1897 status = musb_gadget_setup(musb);
1898 break;
1899 case MUSB_PORT_MODE_DUAL_ROLE:
1900 status = musb_host_setup(musb, plat->power);
1901 if (status < 0)
1902 goto fail3;
1903 status = musb_gadget_setup(musb);
Sebastian Andrzej Siewior0d2dd7e2013-10-16 12:50:06 +02001904 if (status)
1905 musb_host_cleanup(musb);
Daniel Mack6c5f6a62013-04-10 21:55:49 +02001906 break;
1907 default:
1908 dev_err(dev, "unsupported port mode %d\n", musb->port_mode);
1909 break;
1910 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001911
Sergei Shtylyov461972d2010-03-25 13:14:32 +02001912 if (status < 0)
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001913 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03001914
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02001915 status = musb_init_debugfs(musb);
1916 if (status < 0)
Felipe Balbib0f9da72010-03-25 13:25:18 +02001917 goto fail4;
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02001918
Felipe Balbi94375752009-12-15 11:08:38 +02001919 status = sysfs_create_group(&musb->controller->kobj, &musb_attr_group);
Felipe Balbi28c2c512008-09-11 11:53:25 +03001920 if (status)
Felipe Balbib0f9da72010-03-25 13:25:18 +02001921 goto fail5;
Felipe Balbi28c2c512008-09-11 11:53:25 +03001922
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02001923 pm_runtime_put(musb->controller);
1924
Felipe Balbi28c2c512008-09-11 11:53:25 +03001925 return 0;
1926
Felipe Balbib0f9da72010-03-25 13:25:18 +02001927fail5:
1928 musb_exit_debugfs(musb);
1929
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001930fail4:
Felipe Balbi032ec492011-11-24 15:46:26 +02001931 musb_gadget_cleanup(musb);
Sebastian Andrzej Siewior0d2dd7e2013-10-16 12:50:06 +02001932 musb_host_cleanup(musb);
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001933
1934fail3:
Sebastian Andrzej Siewiorf3ce4d52013-06-19 17:38:14 +02001935 if (musb->dma_controller)
1936 dma_controller_destroy(musb->dma_controller);
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02001937 pm_runtime_put_sync(musb->controller);
1938
1939fail2:
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001940 if (musb->irq_wake)
1941 device_init_wakeup(dev, 0);
Felipe Balbi28c2c512008-09-11 11:53:25 +03001942 musb_platform_exit(musb);
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001943
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001944fail1:
Ming Lei681d1e82013-01-04 23:13:06 +08001945 pm_runtime_disable(musb->controller);
Felipe Balbi28c2c512008-09-11 11:53:25 +03001946 dev_err(musb->controller,
1947 "musb_init_controller failed with status %d\n", status);
1948
Felipe Balbi28c2c512008-09-11 11:53:25 +03001949 musb_free(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001950
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001951fail0:
1952
Felipe Balbi550a7372008-07-24 12:27:36 +03001953 return status;
1954
Felipe Balbi550a7372008-07-24 12:27:36 +03001955}
1956
1957/*-------------------------------------------------------------------------*/
1958
1959/* all implementations (PCI bridge to FPGA, VLYNQ, etc) should just
1960 * bridge to a platform device; this driver then suffices.
1961 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001962static int musb_probe(struct platform_device *pdev)
Felipe Balbi550a7372008-07-24 12:27:36 +03001963{
1964 struct device *dev = &pdev->dev;
Hema Kalliguddifcf173e2010-09-29 11:26:39 -05001965 int irq = platform_get_irq_byname(pdev, "mc");
Felipe Balbi550a7372008-07-24 12:27:36 +03001966 struct resource *iomem;
1967 void __iomem *base;
1968
1969 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Sergei Shtylyov541079d2010-12-10 21:03:29 +03001970 if (!iomem || irq <= 0)
Felipe Balbi550a7372008-07-24 12:27:36 +03001971 return -ENODEV;
1972
Felipe Balbib42f7f32013-02-04 19:04:45 +02001973 base = devm_ioremap_resource(dev, iomem);
1974 if (IS_ERR(base))
1975 return PTR_ERR(base);
Felipe Balbi550a7372008-07-24 12:27:36 +03001976
Felipe Balbib42f7f32013-02-04 19:04:45 +02001977 return musb_init_controller(dev, irq, base);
Felipe Balbi550a7372008-07-24 12:27:36 +03001978}
1979
Bill Pembertonfb4e98a2012-11-19 13:26:20 -05001980static int musb_remove(struct platform_device *pdev)
Felipe Balbi550a7372008-07-24 12:27:36 +03001981{
Ajay Kumar Gupta8d2421e2012-08-31 11:09:50 +00001982 struct device *dev = &pdev->dev;
1983 struct musb *musb = dev_to_musb(dev);
Felipe Balbi550a7372008-07-24 12:27:36 +03001984
1985 /* this gets called on rmmod.
1986 * - Host mode: host may still be active
1987 * - Peripheral mode: peripheral is deactivated (or never-activated)
1988 * - OTG mode: both roles are deactivated (or never-activated)
1989 */
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02001990 musb_exit_debugfs(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001991 musb_shutdown(pdev);
Sergei Shtylyov461972d2010-03-25 13:14:32 +02001992
Felipe Balbi550a7372008-07-24 12:27:36 +03001993 musb_free(musb);
Ajay Kumar Gupta8d2421e2012-08-31 11:09:50 +00001994 device_init_wakeup(dev, 0);
Felipe Balbi550a7372008-07-24 12:27:36 +03001995 return 0;
1996}
1997
1998#ifdef CONFIG_PM
1999
Felipe Balbi3c8a5fc2010-12-02 12:28:39 +02002000static void musb_save_context(struct musb *musb)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002001{
2002 int i;
2003 void __iomem *musb_base = musb->mregs;
Bob Liuae9b2ad2010-09-24 13:44:07 +03002004 void __iomem *epio;
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002005
Felipe Balbi032ec492011-11-24 15:46:26 +02002006 musb->context.frame = musb_readw(musb_base, MUSB_FRAME);
2007 musb->context.testmode = musb_readb(musb_base, MUSB_TESTMODE);
2008 musb->context.busctl = musb_read_ulpi_buscontrol(musb->mregs);
Felipe Balbi74211072010-12-01 13:53:27 +02002009 musb->context.power = musb_readb(musb_base, MUSB_POWER);
Felipe Balbi74211072010-12-01 13:53:27 +02002010 musb->context.intrusbe = musb_readb(musb_base, MUSB_INTRUSBE);
2011 musb->context.index = musb_readb(musb_base, MUSB_INDEX);
2012 musb->context.devctl = musb_readb(musb_base, MUSB_DEVCTL);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002013
Bob Liuae9b2ad2010-09-24 13:44:07 +03002014 for (i = 0; i < musb->config->num_eps; ++i) {
Felipe Balbie4e5b1362011-06-27 15:57:46 +03002015 struct musb_hw_ep *hw_ep;
2016
2017 hw_ep = &musb->endpoints[i];
2018 if (!hw_ep)
2019 continue;
2020
2021 epio = hw_ep->regs;
2022 if (!epio)
2023 continue;
2024
Vikram Panditaea737552011-09-07 09:19:23 -07002025 musb_writeb(musb_base, MUSB_INDEX, i);
Felipe Balbi74211072010-12-01 13:53:27 +02002026 musb->context.index_regs[i].txmaxp =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002027 musb_readw(epio, MUSB_TXMAXP);
Felipe Balbi74211072010-12-01 13:53:27 +02002028 musb->context.index_regs[i].txcsr =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002029 musb_readw(epio, MUSB_TXCSR);
Felipe Balbi74211072010-12-01 13:53:27 +02002030 musb->context.index_regs[i].rxmaxp =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002031 musb_readw(epio, MUSB_RXMAXP);
Felipe Balbi74211072010-12-01 13:53:27 +02002032 musb->context.index_regs[i].rxcsr =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002033 musb_readw(epio, MUSB_RXCSR);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002034
2035 if (musb->dyn_fifo) {
Felipe Balbi74211072010-12-01 13:53:27 +02002036 musb->context.index_regs[i].txfifoadd =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002037 musb_read_txfifoadd(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002038 musb->context.index_regs[i].rxfifoadd =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002039 musb_read_rxfifoadd(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002040 musb->context.index_regs[i].txfifosz =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002041 musb_read_txfifosz(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002042 musb->context.index_regs[i].rxfifosz =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002043 musb_read_rxfifosz(musb_base);
2044 }
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002045
Felipe Balbi032ec492011-11-24 15:46:26 +02002046 musb->context.index_regs[i].txtype =
2047 musb_readb(epio, MUSB_TXTYPE);
2048 musb->context.index_regs[i].txinterval =
2049 musb_readb(epio, MUSB_TXINTERVAL);
2050 musb->context.index_regs[i].rxtype =
2051 musb_readb(epio, MUSB_RXTYPE);
2052 musb->context.index_regs[i].rxinterval =
2053 musb_readb(epio, MUSB_RXINTERVAL);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002054
Felipe Balbi032ec492011-11-24 15:46:26 +02002055 musb->context.index_regs[i].txfunaddr =
2056 musb_read_txfunaddr(musb_base, i);
2057 musb->context.index_regs[i].txhubaddr =
2058 musb_read_txhubaddr(musb_base, i);
2059 musb->context.index_regs[i].txhubport =
2060 musb_read_txhubport(musb_base, i);
2061
2062 musb->context.index_regs[i].rxfunaddr =
2063 musb_read_rxfunaddr(musb_base, i);
2064 musb->context.index_regs[i].rxhubaddr =
2065 musb_read_rxhubaddr(musb_base, i);
2066 musb->context.index_regs[i].rxhubport =
2067 musb_read_rxhubport(musb_base, i);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002068 }
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002069}
2070
Felipe Balbi3c8a5fc2010-12-02 12:28:39 +02002071static void musb_restore_context(struct musb *musb)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002072{
2073 int i;
2074 void __iomem *musb_base = musb->mregs;
2075 void __iomem *ep_target_regs;
Bob Liuae9b2ad2010-09-24 13:44:07 +03002076 void __iomem *epio;
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002077
Felipe Balbi032ec492011-11-24 15:46:26 +02002078 musb_writew(musb_base, MUSB_FRAME, musb->context.frame);
2079 musb_writeb(musb_base, MUSB_TESTMODE, musb->context.testmode);
2080 musb_write_ulpi_buscontrol(musb->mregs, musb->context.busctl);
Felipe Balbi74211072010-12-01 13:53:27 +02002081 musb_writeb(musb_base, MUSB_POWER, musb->context.power);
Sebastian Andrzej Siewiorb18d26f2012-10-30 19:52:26 +01002082 musb_writew(musb_base, MUSB_INTRTXE, musb->intrtxe);
Sebastian Andrzej Siewioraf5ec142012-10-30 19:52:25 +01002083 musb_writew(musb_base, MUSB_INTRRXE, musb->intrrxe);
Felipe Balbi74211072010-12-01 13:53:27 +02002084 musb_writeb(musb_base, MUSB_INTRUSBE, musb->context.intrusbe);
2085 musb_writeb(musb_base, MUSB_DEVCTL, musb->context.devctl);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002086
Bob Liuae9b2ad2010-09-24 13:44:07 +03002087 for (i = 0; i < musb->config->num_eps; ++i) {
Felipe Balbie4e5b1362011-06-27 15:57:46 +03002088 struct musb_hw_ep *hw_ep;
2089
2090 hw_ep = &musb->endpoints[i];
2091 if (!hw_ep)
2092 continue;
2093
2094 epio = hw_ep->regs;
2095 if (!epio)
2096 continue;
2097
Vikram Panditaea737552011-09-07 09:19:23 -07002098 musb_writeb(musb_base, MUSB_INDEX, i);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002099 musb_writew(epio, MUSB_TXMAXP,
Felipe Balbi74211072010-12-01 13:53:27 +02002100 musb->context.index_regs[i].txmaxp);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002101 musb_writew(epio, MUSB_TXCSR,
Felipe Balbi74211072010-12-01 13:53:27 +02002102 musb->context.index_regs[i].txcsr);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002103 musb_writew(epio, MUSB_RXMAXP,
Felipe Balbi74211072010-12-01 13:53:27 +02002104 musb->context.index_regs[i].rxmaxp);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002105 musb_writew(epio, MUSB_RXCSR,
Felipe Balbi74211072010-12-01 13:53:27 +02002106 musb->context.index_regs[i].rxcsr);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002107
2108 if (musb->dyn_fifo) {
2109 musb_write_txfifosz(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002110 musb->context.index_regs[i].txfifosz);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002111 musb_write_rxfifosz(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002112 musb->context.index_regs[i].rxfifosz);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002113 musb_write_txfifoadd(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002114 musb->context.index_regs[i].txfifoadd);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002115 musb_write_rxfifoadd(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002116 musb->context.index_regs[i].rxfifoadd);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002117 }
2118
Felipe Balbi032ec492011-11-24 15:46:26 +02002119 musb_writeb(epio, MUSB_TXTYPE,
Felipe Balbi74211072010-12-01 13:53:27 +02002120 musb->context.index_regs[i].txtype);
Felipe Balbi032ec492011-11-24 15:46:26 +02002121 musb_writeb(epio, MUSB_TXINTERVAL,
Felipe Balbi74211072010-12-01 13:53:27 +02002122 musb->context.index_regs[i].txinterval);
Felipe Balbi032ec492011-11-24 15:46:26 +02002123 musb_writeb(epio, MUSB_RXTYPE,
Felipe Balbi74211072010-12-01 13:53:27 +02002124 musb->context.index_regs[i].rxtype);
Felipe Balbi032ec492011-11-24 15:46:26 +02002125 musb_writeb(epio, MUSB_RXINTERVAL,
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002126
Felipe Balbi032ec492011-11-24 15:46:26 +02002127 musb->context.index_regs[i].rxinterval);
2128 musb_write_txfunaddr(musb_base, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002129 musb->context.index_regs[i].txfunaddr);
Felipe Balbi032ec492011-11-24 15:46:26 +02002130 musb_write_txhubaddr(musb_base, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002131 musb->context.index_regs[i].txhubaddr);
Felipe Balbi032ec492011-11-24 15:46:26 +02002132 musb_write_txhubport(musb_base, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002133 musb->context.index_regs[i].txhubport);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002134
Felipe Balbi032ec492011-11-24 15:46:26 +02002135 ep_target_regs =
2136 musb_read_target_reg_base(i, musb_base);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002137
Felipe Balbi032ec492011-11-24 15:46:26 +02002138 musb_write_rxfunaddr(ep_target_regs,
Felipe Balbi74211072010-12-01 13:53:27 +02002139 musb->context.index_regs[i].rxfunaddr);
Felipe Balbi032ec492011-11-24 15:46:26 +02002140 musb_write_rxhubaddr(ep_target_regs,
Felipe Balbi74211072010-12-01 13:53:27 +02002141 musb->context.index_regs[i].rxhubaddr);
Felipe Balbi032ec492011-11-24 15:46:26 +02002142 musb_write_rxhubport(ep_target_regs,
Felipe Balbi74211072010-12-01 13:53:27 +02002143 musb->context.index_regs[i].rxhubport);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002144 }
Ajay Kumar Gupta3c5fec72011-07-08 15:06:13 +05302145 musb_writeb(musb_base, MUSB_INDEX, musb->context.index);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002146}
2147
Magnus Damm48fea962009-07-08 13:22:56 +02002148static int musb_suspend(struct device *dev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002149{
Felipe Balbi82207962011-06-27 15:57:12 +03002150 struct musb *musb = dev_to_musb(dev);
Felipe Balbi550a7372008-07-24 12:27:36 +03002151 unsigned long flags;
Felipe Balbi550a7372008-07-24 12:27:36 +03002152
Felipe Balbi550a7372008-07-24 12:27:36 +03002153 spin_lock_irqsave(&musb->lock, flags);
2154
2155 if (is_peripheral_active(musb)) {
2156 /* FIXME force disconnect unless we know USB will wake
2157 * the system up quickly enough to respond ...
2158 */
2159 } else if (is_host_active(musb)) {
2160 /* we know all the children are suspended; sometimes
2161 * they will even be wakeup-enabled.
2162 */
2163 }
2164
Felipe Balbi550a7372008-07-24 12:27:36 +03002165 spin_unlock_irqrestore(&musb->lock, flags);
2166 return 0;
2167}
2168
Magnus Damm48fea962009-07-08 13:22:56 +02002169static int musb_resume_noirq(struct device *dev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002170{
Felipe Balbi550a7372008-07-24 12:27:36 +03002171 /* for static cmos like DaVinci, register values were preserved
Kim Kyuwon0ec8fd72009-03-26 18:56:51 -07002172 * unless for some reason the whole soc powered down or the USB
2173 * module got reset through the PSC (vs just being disabled).
Felipe Balbi550a7372008-07-24 12:27:36 +03002174 */
Felipe Balbi550a7372008-07-24 12:27:36 +03002175 return 0;
2176}
2177
Hema HK7acc6192011-02-28 14:19:34 +05302178static int musb_runtime_suspend(struct device *dev)
2179{
2180 struct musb *musb = dev_to_musb(dev);
2181
2182 musb_save_context(musb);
2183
2184 return 0;
2185}
2186
2187static int musb_runtime_resume(struct device *dev)
2188{
2189 struct musb *musb = dev_to_musb(dev);
2190 static int first = 1;
2191
2192 /*
2193 * When pm_runtime_get_sync called for the first time in driver
2194 * init, some of the structure is still not initialized which is
2195 * used in restore function. But clock needs to be
2196 * enabled before any register access, so
2197 * pm_runtime_get_sync has to be called.
2198 * Also context restore without save does not make
2199 * any sense
2200 */
2201 if (!first)
2202 musb_restore_context(musb);
2203 first = 0;
2204
2205 return 0;
2206}
2207
Alexey Dobriyan47145212009-12-14 18:00:08 -08002208static const struct dev_pm_ops musb_dev_pm_ops = {
Magnus Damm48fea962009-07-08 13:22:56 +02002209 .suspend = musb_suspend,
2210 .resume_noirq = musb_resume_noirq,
Hema HK7acc6192011-02-28 14:19:34 +05302211 .runtime_suspend = musb_runtime_suspend,
2212 .runtime_resume = musb_runtime_resume,
Magnus Damm48fea962009-07-08 13:22:56 +02002213};
2214
2215#define MUSB_DEV_PM_OPS (&musb_dev_pm_ops)
Felipe Balbi550a7372008-07-24 12:27:36 +03002216#else
Magnus Damm48fea962009-07-08 13:22:56 +02002217#define MUSB_DEV_PM_OPS NULL
Felipe Balbi550a7372008-07-24 12:27:36 +03002218#endif
2219
2220static struct platform_driver musb_driver = {
2221 .driver = {
2222 .name = (char *)musb_driver_name,
2223 .bus = &platform_bus_type,
2224 .owner = THIS_MODULE,
Magnus Damm48fea962009-07-08 13:22:56 +02002225 .pm = MUSB_DEV_PM_OPS,
Felipe Balbi550a7372008-07-24 12:27:36 +03002226 },
Felipe Balbie9e8c852012-01-26 12:40:23 +02002227 .probe = musb_probe,
Bill Pemberton76904172012-11-19 13:21:08 -05002228 .remove = musb_remove,
Felipe Balbi550a7372008-07-24 12:27:36 +03002229 .shutdown = musb_shutdown,
Felipe Balbi550a7372008-07-24 12:27:36 +03002230};
2231
2232/*-------------------------------------------------------------------------*/
2233
2234static int __init musb_init(void)
2235{
Felipe Balbi550a7372008-07-24 12:27:36 +03002236 if (usb_disabled())
2237 return 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03002238
Felipe Balbie9e8c852012-01-26 12:40:23 +02002239 return platform_driver_register(&musb_driver);
Felipe Balbi550a7372008-07-24 12:27:36 +03002240}
Felipe Balbie9e8c852012-01-26 12:40:23 +02002241module_init(musb_init);
Felipe Balbi550a7372008-07-24 12:27:36 +03002242
2243static void __exit musb_cleanup(void)
2244{
2245 platform_driver_unregister(&musb_driver);
2246}
2247module_exit(musb_cleanup);