blob: 4bc2ad8352a73e0e9b5844c344cd4f16ddc402cb [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>
102
Felipe Balbi550a7372008-07-24 12:27:36 +0300103#include "musb_core.h"
104
David Brownellf7f9d632009-03-31 12:32:12 -0700105#define TA_WAIT_BCON(m) max_t(int, (m)->a_wait_bcon, OTG_TIME_A_WAIT_BCON)
Felipe Balbi550a7372008-07-24 12:27:36 +0300106
107
Felipe Balbi550a7372008-07-24 12:27:36 +0300108#define DRIVER_AUTHOR "Mentor Graphics, Texas Instruments, Nokia"
109#define DRIVER_DESC "Inventra Dual-Role USB Controller Driver"
110
Felipe Balbie8164f62008-08-10 21:22:35 +0300111#define MUSB_VERSION "6.0"
Felipe Balbi550a7372008-07-24 12:27:36 +0300112
113#define DRIVER_INFO DRIVER_DESC ", v" MUSB_VERSION
114
Felipe Balbi05ac10d2010-12-02 08:49:26 +0200115#define MUSB_DRIVER_NAME "musb-hdrc"
Felipe Balbi550a7372008-07-24 12:27:36 +0300116const char musb_driver_name[] = MUSB_DRIVER_NAME;
117
118MODULE_DESCRIPTION(DRIVER_INFO);
119MODULE_AUTHOR(DRIVER_AUTHOR);
120MODULE_LICENSE("GPL");
121MODULE_ALIAS("platform:" MUSB_DRIVER_NAME);
122
123
124/*-------------------------------------------------------------------------*/
125
126static inline struct musb *dev_to_musb(struct device *dev)
127{
Felipe Balbi550a7372008-07-24 12:27:36 +0300128 return dev_get_drvdata(dev);
Felipe Balbi550a7372008-07-24 12:27:36 +0300129}
130
131/*-------------------------------------------------------------------------*/
132
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200133#ifndef CONFIG_BLACKFIN
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200134static int musb_ulpi_read(struct usb_phy *phy, u32 offset)
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200135{
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200136 void __iomem *addr = phy->io_priv;
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200137 int i = 0;
138 u8 r;
139 u8 power;
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200140 int ret;
141
142 pm_runtime_get_sync(phy->io_dev);
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200143
144 /* Make sure the transceiver is not in low power mode */
145 power = musb_readb(addr, MUSB_POWER);
146 power &= ~MUSB_POWER_SUSPENDM;
147 musb_writeb(addr, MUSB_POWER, power);
148
149 /* REVISIT: musbhdrc_ulpi_an.pdf recommends setting the
150 * ULPICarKitControlDisableUTMI after clearing POWER_SUSPENDM.
151 */
152
153 musb_writeb(addr, MUSB_ULPI_REG_ADDR, (u8)offset);
154 musb_writeb(addr, MUSB_ULPI_REG_CONTROL,
155 MUSB_ULPI_REG_REQ | MUSB_ULPI_RDN_WR);
156
157 while (!(musb_readb(addr, MUSB_ULPI_REG_CONTROL)
158 & MUSB_ULPI_REG_CMPLT)) {
159 i++;
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200160 if (i == 10000) {
161 ret = -ETIMEDOUT;
162 goto out;
163 }
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200164
165 }
166 r = musb_readb(addr, MUSB_ULPI_REG_CONTROL);
167 r &= ~MUSB_ULPI_REG_CMPLT;
168 musb_writeb(addr, MUSB_ULPI_REG_CONTROL, r);
169
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200170 ret = musb_readb(addr, MUSB_ULPI_REG_DATA);
171
172out:
173 pm_runtime_put(phy->io_dev);
174
175 return ret;
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200176}
177
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200178static int musb_ulpi_write(struct usb_phy *phy, u32 offset, u32 data)
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200179{
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200180 void __iomem *addr = phy->io_priv;
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200181 int i = 0;
182 u8 r = 0;
183 u8 power;
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200184 int ret = 0;
185
186 pm_runtime_get_sync(phy->io_dev);
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200187
188 /* Make sure the transceiver is not in low power mode */
189 power = musb_readb(addr, MUSB_POWER);
190 power &= ~MUSB_POWER_SUSPENDM;
191 musb_writeb(addr, MUSB_POWER, power);
192
193 musb_writeb(addr, MUSB_ULPI_REG_ADDR, (u8)offset);
194 musb_writeb(addr, MUSB_ULPI_REG_DATA, (u8)data);
195 musb_writeb(addr, MUSB_ULPI_REG_CONTROL, MUSB_ULPI_REG_REQ);
196
197 while (!(musb_readb(addr, MUSB_ULPI_REG_CONTROL)
198 & MUSB_ULPI_REG_CMPLT)) {
199 i++;
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200200 if (i == 10000) {
201 ret = -ETIMEDOUT;
202 goto out;
203 }
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200204 }
205
206 r = musb_readb(addr, MUSB_ULPI_REG_CONTROL);
207 r &= ~MUSB_ULPI_REG_CMPLT;
208 musb_writeb(addr, MUSB_ULPI_REG_CONTROL, r);
209
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +0200210out:
211 pm_runtime_put(phy->io_dev);
212
213 return ret;
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200214}
215#else
Mike Frysingerf2263db2010-06-24 23:07:08 +0530216#define musb_ulpi_read NULL
217#define musb_ulpi_write NULL
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200218#endif
219
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200220static struct usb_phy_io_ops musb_ulpi_access = {
Heikki Krogerusffb865b2010-03-25 13:25:28 +0200221 .read = musb_ulpi_read,
222 .write = musb_ulpi_write,
223};
224
225/*-------------------------------------------------------------------------*/
226
Felipe Balbi7c925542010-12-01 14:23:48 +0200227#if !defined(CONFIG_USB_MUSB_TUSB6010) && !defined(CONFIG_USB_MUSB_BLACKFIN)
Bryan Wuc6cf8b02008-12-02 21:33:48 +0200228
Felipe Balbi550a7372008-07-24 12:27:36 +0300229/*
230 * Load an endpoint's FIFO
231 */
232void musb_write_fifo(struct musb_hw_ep *hw_ep, u16 len, const u8 *src)
233{
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300234 struct musb *musb = hw_ep->musb;
Felipe Balbi550a7372008-07-24 12:27:36 +0300235 void __iomem *fifo = hw_ep->fifo;
236
Ajay Kumar Gupta603fe2b2012-07-20 11:07:24 +0530237 if (unlikely(len == 0))
238 return;
239
Felipe Balbi550a7372008-07-24 12:27:36 +0300240 prefetch((u8 *)src);
241
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300242 dev_dbg(musb->controller, "%cX ep%d fifo %p count %d buf %p\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300243 'T', hw_ep->epnum, fifo, len, src);
244
245 /* we can't assume unaligned reads work */
246 if (likely((0x01 & (unsigned long) src) == 0)) {
247 u16 index = 0;
248
249 /* best case is 32bit-aligned source address */
250 if ((0x02 & (unsigned long) src) == 0) {
251 if (len >= 4) {
252 writesl(fifo, src + index, len >> 2);
253 index += len & ~0x03;
254 }
255 if (len & 0x02) {
256 musb_writew(fifo, 0, *(u16 *)&src[index]);
257 index += 2;
258 }
259 } else {
260 if (len >= 2) {
261 writesw(fifo, src + index, len >> 1);
262 index += len & ~0x01;
263 }
264 }
265 if (len & 0x01)
266 musb_writeb(fifo, 0, src[index]);
267 } else {
268 /* byte aligned */
269 writesb(fifo, src, len);
270 }
271}
272
Ajay Kumar Gupta843bb1d2010-10-19 10:08:13 +0300273#if !defined(CONFIG_USB_MUSB_AM35X)
Felipe Balbi550a7372008-07-24 12:27:36 +0300274/*
275 * Unload an endpoint's FIFO
276 */
277void musb_read_fifo(struct musb_hw_ep *hw_ep, u16 len, u8 *dst)
278{
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300279 struct musb *musb = hw_ep->musb;
Felipe Balbi550a7372008-07-24 12:27:36 +0300280 void __iomem *fifo = hw_ep->fifo;
281
Ajay Kumar Gupta603fe2b2012-07-20 11:07:24 +0530282 if (unlikely(len == 0))
283 return;
284
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300285 dev_dbg(musb->controller, "%cX ep%d fifo %p count %d buf %p\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300286 'R', hw_ep->epnum, fifo, len, dst);
287
288 /* we can't assume unaligned writes work */
289 if (likely((0x01 & (unsigned long) dst) == 0)) {
290 u16 index = 0;
291
292 /* best case is 32bit-aligned destination address */
293 if ((0x02 & (unsigned long) dst) == 0) {
294 if (len >= 4) {
295 readsl(fifo, dst, len >> 2);
296 index = len & ~0x03;
297 }
298 if (len & 0x02) {
299 *(u16 *)&dst[index] = musb_readw(fifo, 0);
300 index += 2;
301 }
302 } else {
303 if (len >= 2) {
304 readsw(fifo, dst, len >> 1);
305 index = len & ~0x01;
306 }
307 }
308 if (len & 0x01)
309 dst[index] = musb_readb(fifo, 0);
310 } else {
311 /* byte aligned */
312 readsb(fifo, dst, len);
313 }
314}
Ajay Kumar Gupta843bb1d2010-10-19 10:08:13 +0300315#endif
Felipe Balbi550a7372008-07-24 12:27:36 +0300316
317#endif /* normal PIO */
318
319
320/*-------------------------------------------------------------------------*/
321
322/* for high speed test mode; see USB 2.0 spec 7.1.20 */
323static const u8 musb_test_packet[53] = {
324 /* implicit SYNC then DATA0 to start */
325
326 /* JKJKJKJK x9 */
327 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
328 /* JJKKJJKK x8 */
329 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
330 /* JJJJKKKK x8 */
331 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee,
332 /* JJJJJJJKKKKKKK x8 */
333 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
334 /* JJJJJJJK x8 */
335 0x7f, 0xbf, 0xdf, 0xef, 0xf7, 0xfb, 0xfd,
336 /* JKKKKKKK x10, JK */
337 0xfc, 0x7e, 0xbf, 0xdf, 0xef, 0xf7, 0xfb, 0xfd, 0x7e
338
339 /* implicit CRC16 then EOP to end */
340};
341
342void musb_load_testpacket(struct musb *musb)
343{
344 void __iomem *regs = musb->endpoints[0].regs;
345
346 musb_ep_select(musb->mregs, 0);
347 musb_write_fifo(musb->control_ep,
348 sizeof(musb_test_packet), musb_test_packet);
349 musb_writew(regs, MUSB_CSR0, MUSB_CSR0_TXPKTRDY);
350}
351
352/*-------------------------------------------------------------------------*/
353
Felipe Balbi550a7372008-07-24 12:27:36 +0300354/*
Felipe Balbi550a7372008-07-24 12:27:36 +0300355 * Handles OTG hnp timeouts, such as b_ase0_brst
356 */
Felipe Balbia1565442012-08-07 14:00:50 +0300357static void musb_otg_timer_func(unsigned long data)
Felipe Balbi550a7372008-07-24 12:27:36 +0300358{
359 struct musb *musb = (struct musb *)data;
360 unsigned long flags;
361
362 spin_lock_irqsave(&musb->lock, flags);
David Brownell84e250f2009-03-31 12:30:04 -0700363 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300364 case OTG_STATE_B_WAIT_ACON:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300365 dev_dbg(musb->controller, "HNP: b_wait_acon timeout; back to b_peripheral\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300366 musb_g_disconnect(musb);
David Brownell84e250f2009-03-31 12:30:04 -0700367 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +0300368 musb->is_active = 0;
369 break;
David Brownellab983f2a2009-03-31 12:35:09 -0700370 case OTG_STATE_A_SUSPEND:
Felipe Balbi550a7372008-07-24 12:27:36 +0300371 case OTG_STATE_A_WAIT_BCON:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300372 dev_dbg(musb->controller, "HNP: %s timeout\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200373 otg_state_string(musb->xceiv->state));
Felipe Balbi743411b2010-12-01 13:22:05 +0200374 musb_platform_set_vbus(musb, 0);
David Brownellab983f2a2009-03-31 12:35:09 -0700375 musb->xceiv->state = OTG_STATE_A_WAIT_VFALL;
Felipe Balbi550a7372008-07-24 12:27:36 +0300376 break;
377 default:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300378 dev_dbg(musb->controller, "HNP: Unhandled mode %s\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200379 otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300380 }
381 musb->ignore_disconnect = 0;
382 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{
390 struct usb_hcd *hcd = musb_to_hcd(musb);
391 void __iomem *mbase = musb->mregs;
392 u8 reg;
393
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300394 dev_dbg(musb->controller, "HNP: stop from %s\n", otg_state_string(musb->xceiv->state));
David Brownellab983f2a2009-03-31 12:35:09 -0700395
David Brownell84e250f2009-03-31 12:30:04 -0700396 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300397 case OTG_STATE_A_PERIPHERAL:
Felipe Balbi550a7372008-07-24 12:27:36 +0300398 musb_g_disconnect(musb);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300399 dev_dbg(musb->controller, "HNP: back to %s\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200400 otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300401 break;
402 case OTG_STATE_B_HOST:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300403 dev_dbg(musb->controller, "HNP: Disabling HR\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300404 hcd->self.is_b_host = 0;
David Brownell84e250f2009-03-31 12:30:04 -0700405 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +0300406 MUSB_DEV_MODE(musb);
407 reg = musb_readb(mbase, MUSB_POWER);
408 reg |= MUSB_POWER_SUSPENDM;
409 musb_writeb(mbase, MUSB_POWER, reg);
410 /* REVISIT: Start SESSION_REQUEST here? */
411 break;
412 default:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300413 dev_dbg(musb->controller, "HNP: Stopping in unknown state %s\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200414 otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300415 }
416
417 /*
418 * When returning to A state after HNP, avoid hub_port_rebounce(),
419 * which cause occasional OPT A "Did not receive reset after connect"
420 * errors.
421 */
Alan Stern749da5f2010-03-04 17:05:08 -0500422 musb->port1_status &= ~(USB_PORT_STAT_C_CONNECTION << 16);
Felipe Balbi550a7372008-07-24 12:27:36 +0300423}
424
Felipe Balbi550a7372008-07-24 12:27:36 +0300425/*
426 * Interrupt Service Routine to record USB "global" interrupts.
427 * Since these do not happen often and signify things of
428 * paramount importance, it seems OK to check them individually;
429 * the order of the tests is specified in the manual
430 *
431 * @param musb instance pointer
432 * @param int_usb register contents
433 * @param devctl
434 * @param power
435 */
436
Felipe Balbi550a7372008-07-24 12:27:36 +0300437static irqreturn_t musb_stage0_irq(struct musb *musb, u8 int_usb,
438 u8 devctl, u8 power)
439{
Heikki Krogerusd445b6d2012-02-13 13:24:15 +0200440 struct usb_otg *otg = musb->xceiv->otg;
Felipe Balbi550a7372008-07-24 12:27:36 +0300441 irqreturn_t handled = IRQ_NONE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300442
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300443 dev_dbg(musb->controller, "<== Power=%02x, DevCtl=%02x, int_usb=0x%x\n", power, devctl,
Felipe Balbi550a7372008-07-24 12:27:36 +0300444 int_usb);
445
446 /* in host mode, the peripheral may issue remote wakeup.
447 * in peripheral mode, the host may resume the link.
448 * spurious RESUME irqs happen too, paired with SUSPEND.
449 */
450 if (int_usb & MUSB_INTR_RESUME) {
451 handled = IRQ_HANDLED;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300452 dev_dbg(musb->controller, "RESUME (%s)\n", otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300453
454 if (devctl & MUSB_DEVCTL_HM) {
Felipe Balbiaa471452010-03-12 10:27:24 +0200455 void __iomem *mbase = musb->mregs;
456
David Brownell84e250f2009-03-31 12:30:04 -0700457 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300458 case OTG_STATE_A_SUSPEND:
459 /* remote wakeup? later, GetPortStatus
460 * will stop RESUME signaling
461 */
462
463 if (power & MUSB_POWER_SUSPENDM) {
464 /* spurious */
465 musb->int_usb &= ~MUSB_INTR_SUSPEND;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300466 dev_dbg(musb->controller, "Spurious SUSPENDM\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300467 break;
468 }
469
470 power &= ~MUSB_POWER_SUSPENDM;
471 musb_writeb(mbase, MUSB_POWER,
472 power | MUSB_POWER_RESUME);
473
474 musb->port1_status |=
475 (USB_PORT_STAT_C_SUSPEND << 16)
476 | MUSB_PORT_STAT_RESUME;
477 musb->rh_timer = jiffies
478 + msecs_to_jiffies(20);
479
David Brownell84e250f2009-03-31 12:30:04 -0700480 musb->xceiv->state = OTG_STATE_A_HOST;
Felipe Balbi550a7372008-07-24 12:27:36 +0300481 musb->is_active = 1;
482 usb_hcd_resume_root_hub(musb_to_hcd(musb));
483 break;
484 case OTG_STATE_B_WAIT_ACON:
David Brownell84e250f2009-03-31 12:30:04 -0700485 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +0300486 musb->is_active = 1;
487 MUSB_DEV_MODE(musb);
488 break;
489 default:
490 WARNING("bogus %s RESUME (%s)\n",
491 "host",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200492 otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300493 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300494 } else {
David Brownell84e250f2009-03-31 12:30:04 -0700495 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300496 case OTG_STATE_A_SUSPEND:
497 /* possibly DISCONNECT is upcoming */
David Brownell84e250f2009-03-31 12:30:04 -0700498 musb->xceiv->state = OTG_STATE_A_HOST;
Felipe Balbi550a7372008-07-24 12:27:36 +0300499 usb_hcd_resume_root_hub(musb_to_hcd(musb));
500 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300501 case OTG_STATE_B_WAIT_ACON:
502 case OTG_STATE_B_PERIPHERAL:
503 /* disconnect while suspended? we may
504 * not get a disconnect irq...
505 */
506 if ((devctl & MUSB_DEVCTL_VBUS)
507 != (3 << MUSB_DEVCTL_VBUS_SHIFT)
508 ) {
509 musb->int_usb |= MUSB_INTR_DISCONNECT;
510 musb->int_usb &= ~MUSB_INTR_SUSPEND;
511 break;
512 }
513 musb_g_resume(musb);
514 break;
515 case OTG_STATE_B_IDLE:
516 musb->int_usb &= ~MUSB_INTR_SUSPEND;
517 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300518 default:
519 WARNING("bogus %s RESUME (%s)\n",
520 "peripheral",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200521 otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300522 }
523 }
524 }
525
Felipe Balbi550a7372008-07-24 12:27:36 +0300526 /* see manual for the order of the tests */
527 if (int_usb & MUSB_INTR_SESSREQ) {
Felipe Balbiaa471452010-03-12 10:27:24 +0200528 void __iomem *mbase = musb->mregs;
529
Heikki Krogerus19aab562010-10-29 04:23:27 -0500530 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS
531 && (devctl & MUSB_DEVCTL_BDEVICE)) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300532 dev_dbg(musb->controller, "SessReq while on B state\n");
Heikki Krogerusa6038ee2010-09-24 13:44:13 +0300533 return IRQ_HANDLED;
534 }
535
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300536 dev_dbg(musb->controller, "SESSION_REQUEST (%s)\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200537 otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300538
539 /* IRQ arrives from ID pin sense or (later, if VBUS power
540 * is removed) SRP. responses are time critical:
541 * - turn on VBUS (with silicon-specific mechanism)
542 * - go through A_WAIT_VRISE
543 * - ... to A_WAIT_BCON.
544 * a_wait_vrise_tmout triggers VBUS_ERROR transitions
545 */
546 musb_writeb(mbase, MUSB_DEVCTL, MUSB_DEVCTL_SESSION);
547 musb->ep0_stage = MUSB_EP0_START;
David Brownell84e250f2009-03-31 12:30:04 -0700548 musb->xceiv->state = OTG_STATE_A_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300549 MUSB_HST_MODE(musb);
Felipe Balbi743411b2010-12-01 13:22:05 +0200550 musb_platform_set_vbus(musb, 1);
Felipe Balbi550a7372008-07-24 12:27:36 +0300551
552 handled = IRQ_HANDLED;
553 }
554
555 if (int_usb & MUSB_INTR_VBUSERROR) {
556 int ignore = 0;
557
558 /* During connection as an A-Device, we may see a short
559 * current spikes causing voltage drop, because of cable
560 * and peripheral capacitance combined with vbus draw.
561 * (So: less common with truly self-powered devices, where
562 * vbus doesn't act like a power supply.)
563 *
564 * Such spikes are short; usually less than ~500 usec, max
565 * of ~2 msec. That is, they're not sustained overcurrent
566 * errors, though they're reported using VBUSERROR irqs.
567 *
568 * Workarounds: (a) hardware: use self powered devices.
569 * (b) software: ignore non-repeated VBUS errors.
570 *
571 * REVISIT: do delays from lots of DEBUG_KERNEL checks
572 * make trouble here, keeping VBUS < 4.4V ?
573 */
David Brownell84e250f2009-03-31 12:30:04 -0700574 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300575 case OTG_STATE_A_HOST:
576 /* recovery is dicey once we've gotten past the
577 * initial stages of enumeration, but if VBUS
578 * stayed ok at the other end of the link, and
579 * another reset is due (at least for high speed,
580 * to redo the chirp etc), it might work OK...
581 */
582 case OTG_STATE_A_WAIT_BCON:
583 case OTG_STATE_A_WAIT_VRISE:
584 if (musb->vbuserr_retry) {
Felipe Balbiaa471452010-03-12 10:27:24 +0200585 void __iomem *mbase = musb->mregs;
586
Felipe Balbi550a7372008-07-24 12:27:36 +0300587 musb->vbuserr_retry--;
588 ignore = 1;
589 devctl |= MUSB_DEVCTL_SESSION;
590 musb_writeb(mbase, MUSB_DEVCTL, devctl);
591 } else {
592 musb->port1_status |=
Alan Stern749da5f2010-03-04 17:05:08 -0500593 USB_PORT_STAT_OVERCURRENT
594 | (USB_PORT_STAT_C_OVERCURRENT << 16);
Felipe Balbi550a7372008-07-24 12:27:36 +0300595 }
596 break;
597 default:
598 break;
599 }
600
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300601 dev_dbg(musb->controller, "VBUS_ERROR in %s (%02x, %s), retry #%d, port1 %08x\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200602 otg_state_string(musb->xceiv->state),
Felipe Balbi550a7372008-07-24 12:27:36 +0300603 devctl,
604 ({ char *s;
605 switch (devctl & MUSB_DEVCTL_VBUS) {
606 case 0 << MUSB_DEVCTL_VBUS_SHIFT:
607 s = "<SessEnd"; break;
608 case 1 << MUSB_DEVCTL_VBUS_SHIFT:
609 s = "<AValid"; break;
610 case 2 << MUSB_DEVCTL_VBUS_SHIFT:
611 s = "<VBusValid"; break;
612 /* case 3 << MUSB_DEVCTL_VBUS_SHIFT: */
613 default:
614 s = "VALID"; break;
615 }; s; }),
616 VBUSERR_RETRY_COUNT - musb->vbuserr_retry,
617 musb->port1_status);
618
619 /* go through A_WAIT_VFALL then start a new session */
620 if (!ignore)
Felipe Balbi743411b2010-12-01 13:22:05 +0200621 musb_platform_set_vbus(musb, 0);
Felipe Balbi550a7372008-07-24 12:27:36 +0300622 handled = IRQ_HANDLED;
623 }
624
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200625 if (int_usb & MUSB_INTR_SUSPEND) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300626 dev_dbg(musb->controller, "SUSPEND (%s) devctl %02x power %02x\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200627 otg_state_string(musb->xceiv->state), devctl, power);
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200628 handled = IRQ_HANDLED;
629
630 switch (musb->xceiv->state) {
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200631 case OTG_STATE_A_PERIPHERAL:
632 /* We also come here if the cable is removed, since
633 * this silicon doesn't report ID-no-longer-grounded.
634 *
635 * We depend on T(a_wait_bcon) to shut us down, and
636 * hope users don't do anything dicey during this
637 * undesired detour through A_WAIT_BCON.
638 */
639 musb_hnp_stop(musb);
640 usb_hcd_resume_root_hub(musb_to_hcd(musb));
641 musb_root_disconnect(musb);
642 musb_platform_try_idle(musb, jiffies
643 + msecs_to_jiffies(musb->a_wait_bcon
644 ? : OTG_TIME_A_WAIT_BCON));
645
646 break;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200647 case OTG_STATE_B_IDLE:
648 if (!musb->is_active)
649 break;
650 case OTG_STATE_B_PERIPHERAL:
651 musb_g_suspend(musb);
Felipe Balbi032ec492011-11-24 15:46:26 +0200652 musb->is_active = otg->gadget->b_hnp_enable;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200653 if (musb->is_active) {
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200654 musb->xceiv->state = OTG_STATE_B_WAIT_ACON;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300655 dev_dbg(musb->controller, "HNP: Setting timer for b_ase0_brst\n");
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200656 mod_timer(&musb->otg_timer, jiffies
657 + msecs_to_jiffies(
658 OTG_TIME_B_ASE0_BRST));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200659 }
660 break;
661 case OTG_STATE_A_WAIT_BCON:
662 if (musb->a_wait_bcon != 0)
663 musb_platform_try_idle(musb, jiffies
664 + msecs_to_jiffies(musb->a_wait_bcon));
665 break;
666 case OTG_STATE_A_HOST:
667 musb->xceiv->state = OTG_STATE_A_SUSPEND;
Felipe Balbi032ec492011-11-24 15:46:26 +0200668 musb->is_active = otg->host->b_hnp_enable;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200669 break;
670 case OTG_STATE_B_HOST:
671 /* Transition to B_PERIPHERAL, see 6.8.2.6 p 44 */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300672 dev_dbg(musb->controller, "REVISIT: SUSPEND as B_HOST\n");
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200673 break;
674 default:
675 /* "should not happen" */
676 musb->is_active = 0;
677 break;
678 }
679 }
680
Felipe Balbi550a7372008-07-24 12:27:36 +0300681 if (int_usb & MUSB_INTR_CONNECT) {
682 struct usb_hcd *hcd = musb_to_hcd(musb);
683
684 handled = IRQ_HANDLED;
685 musb->is_active = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +0300686
687 musb->ep0_stage = MUSB_EP0_START;
688
Felipe Balbi550a7372008-07-24 12:27:36 +0300689 /* flush endpoints when transitioning from Device Mode */
690 if (is_peripheral_active(musb)) {
691 /* REVISIT HNP; just force disconnect */
692 }
Ajay Kumar Guptad709d222010-07-08 14:03:00 +0530693 musb_writew(musb->mregs, MUSB_INTRTXE, musb->epmask);
694 musb_writew(musb->mregs, MUSB_INTRRXE, musb->epmask & 0xfffe);
695 musb_writeb(musb->mregs, MUSB_INTRUSBE, 0xf7);
Felipe Balbi550a7372008-07-24 12:27:36 +0300696 musb->port1_status &= ~(USB_PORT_STAT_LOW_SPEED
697 |USB_PORT_STAT_HIGH_SPEED
698 |USB_PORT_STAT_ENABLE
699 );
700 musb->port1_status |= USB_PORT_STAT_CONNECTION
701 |(USB_PORT_STAT_C_CONNECTION << 16);
702
703 /* high vs full speed is just a guess until after reset */
704 if (devctl & MUSB_DEVCTL_LSDEV)
705 musb->port1_status |= USB_PORT_STAT_LOW_SPEED;
706
Felipe Balbi550a7372008-07-24 12:27:36 +0300707 /* indicate new connection to OTG machine */
David Brownell84e250f2009-03-31 12:30:04 -0700708 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300709 case OTG_STATE_B_PERIPHERAL:
710 if (int_usb & MUSB_INTR_SUSPEND) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300711 dev_dbg(musb->controller, "HNP: SUSPEND+CONNECT, now b_host\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300712 int_usb &= ~MUSB_INTR_SUSPEND;
David Brownell1de00da2009-04-02 10:16:11 -0700713 goto b_host;
Felipe Balbi550a7372008-07-24 12:27:36 +0300714 } else
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300715 dev_dbg(musb->controller, "CONNECT as b_peripheral???\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300716 break;
717 case OTG_STATE_B_WAIT_ACON:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300718 dev_dbg(musb->controller, "HNP: CONNECT, now b_host\n");
David Brownell1de00da2009-04-02 10:16:11 -0700719b_host:
David Brownell84e250f2009-03-31 12:30:04 -0700720 musb->xceiv->state = OTG_STATE_B_HOST;
Felipe Balbi550a7372008-07-24 12:27:36 +0300721 hcd->self.is_b_host = 1;
David Brownell1de00da2009-04-02 10:16:11 -0700722 musb->ignore_disconnect = 0;
723 del_timer(&musb->otg_timer);
Felipe Balbi550a7372008-07-24 12:27:36 +0300724 break;
725 default:
726 if ((devctl & MUSB_DEVCTL_VBUS)
727 == (3 << MUSB_DEVCTL_VBUS_SHIFT)) {
David Brownell84e250f2009-03-31 12:30:04 -0700728 musb->xceiv->state = OTG_STATE_A_HOST;
Felipe Balbi550a7372008-07-24 12:27:36 +0300729 hcd->self.is_b_host = 0;
730 }
731 break;
732 }
David Brownell1de00da2009-04-02 10:16:11 -0700733
734 /* poke the root hub */
735 MUSB_HST_MODE(musb);
736 if (hcd->status_urb)
737 usb_hcd_poll_rh_status(hcd);
738 else
739 usb_hcd_resume_root_hub(hcd);
740
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300741 dev_dbg(musb->controller, "CONNECT (%s) devctl %02x\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200742 otg_state_string(musb->xceiv->state), devctl);
Felipe Balbi550a7372008-07-24 12:27:36 +0300743 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300744
Felipe Balbi550a7372008-07-24 12:27:36 +0300745 if ((int_usb & MUSB_INTR_DISCONNECT) && !musb->ignore_disconnect) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300746 dev_dbg(musb->controller, "DISCONNECT (%s) as %s, devctl %02x\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200747 otg_state_string(musb->xceiv->state),
Felipe Balbi550a7372008-07-24 12:27:36 +0300748 MUSB_MODE(musb), devctl);
749 handled = IRQ_HANDLED;
750
David Brownell84e250f2009-03-31 12:30:04 -0700751 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300752 case OTG_STATE_A_HOST:
753 case OTG_STATE_A_SUSPEND:
Anand Gadiyar5c23c902009-02-21 15:31:40 -0800754 usb_hcd_resume_root_hub(musb_to_hcd(musb));
Felipe Balbi550a7372008-07-24 12:27:36 +0300755 musb_root_disconnect(musb);
Felipe Balbi032ec492011-11-24 15:46:26 +0200756 if (musb->a_wait_bcon != 0)
Felipe Balbi550a7372008-07-24 12:27:36 +0300757 musb_platform_try_idle(musb, jiffies
758 + msecs_to_jiffies(musb->a_wait_bcon));
759 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300760 case OTG_STATE_B_HOST:
David Brownellab983f2a2009-03-31 12:35:09 -0700761 /* REVISIT this behaves for "real disconnect"
762 * cases; make sure the other transitions from
763 * from B_HOST act right too. The B_HOST code
764 * in hnp_stop() is currently not used...
765 */
766 musb_root_disconnect(musb);
767 musb_to_hcd(musb)->self.is_b_host = 0;
768 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
769 MUSB_DEV_MODE(musb);
770 musb_g_disconnect(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300771 break;
772 case OTG_STATE_A_PERIPHERAL:
773 musb_hnp_stop(musb);
774 musb_root_disconnect(musb);
775 /* FALLTHROUGH */
776 case OTG_STATE_B_WAIT_ACON:
777 /* FALLTHROUGH */
Felipe Balbi550a7372008-07-24 12:27:36 +0300778 case OTG_STATE_B_PERIPHERAL:
779 case OTG_STATE_B_IDLE:
780 musb_g_disconnect(musb);
781 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300782 default:
783 WARNING("unhandled DISCONNECT transition (%s)\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200784 otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300785 break;
786 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300787 }
788
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200789 /* mentor saves a bit: bus reset and babble share the same irq.
790 * only host sees babble; only peripheral sees bus reset.
791 */
792 if (int_usb & MUSB_INTR_RESET) {
793 handled = IRQ_HANDLED;
Felipe Balbia04d46d2011-11-24 15:46:27 +0200794 if ((devctl & MUSB_DEVCTL_HM) != 0) {
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200795 /*
796 * Looks like non-HS BABBLE can be ignored, but
797 * HS BABBLE is an error condition. For HS the solution
798 * is to avoid babble in the first place and fix what
799 * caused BABBLE. When HS BABBLE happens we can only
800 * stop the session.
801 */
802 if (devctl & (MUSB_DEVCTL_FSDEV | MUSB_DEVCTL_LSDEV))
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300803 dev_dbg(musb->controller, "BABBLE devctl: %02x\n", devctl);
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200804 else {
805 ERR("Stopping host session -- babble\n");
806 musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
807 }
Felipe Balbia04d46d2011-11-24 15:46:27 +0200808 } else {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300809 dev_dbg(musb->controller, "BUS RESET as %s\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200810 otg_state_string(musb->xceiv->state));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200811 switch (musb->xceiv->state) {
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200812 case OTG_STATE_A_SUSPEND:
813 /* We need to ignore disconnect on suspend
814 * otherwise tusb 2.0 won't reconnect after a
815 * power cycle, which breaks otg compliance.
816 */
817 musb->ignore_disconnect = 1;
818 musb_g_reset(musb);
819 /* FALLTHROUGH */
820 case OTG_STATE_A_WAIT_BCON: /* OPT TD.4.7-900ms */
821 /* never use invalid T(a_wait_bcon) */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300822 dev_dbg(musb->controller, "HNP: in %s, %d msec timeout\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200823 otg_state_string(musb->xceiv->state),
824 TA_WAIT_BCON(musb));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200825 mod_timer(&musb->otg_timer, jiffies
826 + msecs_to_jiffies(TA_WAIT_BCON(musb)));
827 break;
828 case OTG_STATE_A_PERIPHERAL:
829 musb->ignore_disconnect = 0;
830 del_timer(&musb->otg_timer);
831 musb_g_reset(musb);
832 break;
833 case OTG_STATE_B_WAIT_ACON:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300834 dev_dbg(musb->controller, "HNP: RESET (%s), to b_peripheral\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200835 otg_state_string(musb->xceiv->state));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200836 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
837 musb_g_reset(musb);
838 break;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200839 case OTG_STATE_B_IDLE:
840 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
841 /* FALLTHROUGH */
842 case OTG_STATE_B_PERIPHERAL:
843 musb_g_reset(musb);
844 break;
845 default:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300846 dev_dbg(musb->controller, "Unhandled BUS RESET as %s\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200847 otg_state_string(musb->xceiv->state));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200848 }
849 }
850 }
851
852#if 0
853/* REVISIT ... this would be for multiplexing periodic endpoints, or
854 * supporting transfer phasing to prevent exceeding ISO bandwidth
855 * limits of a given frame or microframe.
856 *
857 * It's not needed for peripheral side, which dedicates endpoints;
858 * though it _might_ use SOF irqs for other purposes.
859 *
860 * And it's not currently needed for host side, which also dedicates
861 * endpoints, relies on TX/RX interval registers, and isn't claimed
862 * to support ISO transfers yet.
863 */
864 if (int_usb & MUSB_INTR_SOF) {
865 void __iomem *mbase = musb->mregs;
866 struct musb_hw_ep *ep;
867 u8 epnum;
868 u16 frame;
869
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300870 dev_dbg(musb->controller, "START_OF_FRAME\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300871 handled = IRQ_HANDLED;
872
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200873 /* start any periodic Tx transfers waiting for current frame */
874 frame = musb_readw(mbase, MUSB_FRAME);
875 ep = musb->endpoints;
876 for (epnum = 1; (epnum < musb->nr_endpoints)
877 && (musb->epmask >= (1 << epnum));
878 epnum++, ep++) {
879 /*
880 * FIXME handle framecounter wraps (12 bits)
881 * eliminate duplicated StartUrb logic
Felipe Balbi550a7372008-07-24 12:27:36 +0300882 */
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200883 if (ep->dwWaitFrame >= frame) {
884 ep->dwWaitFrame = 0;
885 pr_debug("SOF --> periodic TX%s on %d\n",
886 ep->tx_channel ? " DMA" : "",
887 epnum);
888 if (!ep->tx_channel)
889 musb_h_tx_start(musb, epnum);
890 else
891 cppi_hostdma_start(musb, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +0300892 }
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200893 } /* end of for loop */
Felipe Balbi550a7372008-07-24 12:27:36 +0300894 }
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200895#endif
Felipe Balbi550a7372008-07-24 12:27:36 +0300896
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200897 schedule_work(&musb->irq_work);
Felipe Balbi550a7372008-07-24 12:27:36 +0300898
899 return handled;
900}
901
902/*-------------------------------------------------------------------------*/
903
904/*
905* Program the HDRC to start (enable interrupts, dma, etc.).
906*/
907void musb_start(struct musb *musb)
908{
909 void __iomem *regs = musb->mregs;
910 u8 devctl = musb_readb(regs, MUSB_DEVCTL);
911
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300912 dev_dbg(musb->controller, "<== devctl %02x\n", devctl);
Felipe Balbi550a7372008-07-24 12:27:36 +0300913
914 /* Set INT enable registers, enable interrupts */
915 musb_writew(regs, MUSB_INTRTXE, musb->epmask);
916 musb_writew(regs, MUSB_INTRRXE, musb->epmask & 0xfffe);
917 musb_writeb(regs, MUSB_INTRUSBE, 0xf7);
918
919 musb_writeb(regs, MUSB_TESTMODE, 0);
920
921 /* put into basic highspeed mode and start session */
922 musb_writeb(regs, MUSB_POWER, MUSB_POWER_ISOUPDATE
Felipe Balbi550a7372008-07-24 12:27:36 +0300923 | MUSB_POWER_HSENAB
924 /* ENSUSPEND wedges tusb */
925 /* | MUSB_POWER_ENSUSPEND */
926 );
927
928 musb->is_active = 0;
929 devctl = musb_readb(regs, MUSB_DEVCTL);
930 devctl &= ~MUSB_DEVCTL_SESSION;
931
Felipe Balbi032ec492011-11-24 15:46:26 +0200932 /* session started after:
933 * (a) ID-grounded irq, host mode;
934 * (b) vbus present/connect IRQ, peripheral mode;
935 * (c) peripheral initiates, using SRP
936 */
937 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS)
938 musb->is_active = 1;
939 else
Felipe Balbi550a7372008-07-24 12:27:36 +0300940 devctl |= MUSB_DEVCTL_SESSION;
941
Felipe Balbi550a7372008-07-24 12:27:36 +0300942 musb_platform_enable(musb);
943 musb_writeb(regs, MUSB_DEVCTL, devctl);
944}
945
946
947static void musb_generic_disable(struct musb *musb)
948{
949 void __iomem *mbase = musb->mregs;
950 u16 temp;
951
952 /* disable interrupts */
953 musb_writeb(mbase, MUSB_INTRUSBE, 0);
954 musb_writew(mbase, MUSB_INTRTXE, 0);
955 musb_writew(mbase, MUSB_INTRRXE, 0);
956
957 /* off */
958 musb_writeb(mbase, MUSB_DEVCTL, 0);
959
960 /* flush pending interrupts */
961 temp = musb_readb(mbase, MUSB_INTRUSB);
962 temp = musb_readw(mbase, MUSB_INTRTX);
963 temp = musb_readw(mbase, MUSB_INTRRX);
964
965}
966
967/*
968 * Make the HDRC stop (disable interrupts, etc.);
969 * reversible by musb_start
970 * called on gadget driver unregister
971 * with controller locked, irqs blocked
972 * acts as a NOP unless some role activated the hardware
973 */
974void musb_stop(struct musb *musb)
975{
976 /* stop IRQs, timers, ... */
977 musb_platform_disable(musb);
978 musb_generic_disable(musb);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300979 dev_dbg(musb->controller, "HDRC disabled\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300980
981 /* FIXME
982 * - mark host and/or peripheral drivers unusable/inactive
983 * - disable DMA (and enable it in HdrcStart)
984 * - make sure we can musb_start() after musb_stop(); with
985 * OTG mode, gadget driver module rmmod/modprobe cycles that
986 * - ...
987 */
988 musb_platform_try_idle(musb, 0);
989}
990
991static void musb_shutdown(struct platform_device *pdev)
992{
993 struct musb *musb = dev_to_musb(&pdev->dev);
994 unsigned long flags;
995
Hema HK4f9edd22011-03-22 16:02:12 +0530996 pm_runtime_get_sync(musb->controller);
Grazvydas Ignotas24307ca2012-01-12 15:22:45 +0200997
998 musb_gadget_cleanup(musb);
999
Felipe Balbi550a7372008-07-24 12:27:36 +03001000 spin_lock_irqsave(&musb->lock, flags);
1001 musb_platform_disable(musb);
1002 musb_generic_disable(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001003 spin_unlock_irqrestore(&musb->lock, flags);
1004
Grazvydas Ignotas120d0742010-10-10 13:52:22 -05001005 musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
1006 musb_platform_exit(musb);
Grazvydas Ignotas120d0742010-10-10 13:52:22 -05001007
Hema HK4f9edd22011-03-22 16:02:12 +05301008 pm_runtime_put(musb->controller);
Felipe Balbi550a7372008-07-24 12:27:36 +03001009 /* FIXME power down */
1010}
1011
1012
1013/*-------------------------------------------------------------------------*/
1014
1015/*
1016 * The silicon either has hard-wired endpoint configurations, or else
1017 * "dynamic fifo" sizing. The driver has support for both, though at this
David Brownellc767c1c2008-09-11 11:53:23 +03001018 * writing only the dynamic sizing is very well tested. Since we switched
1019 * away from compile-time hardware parameters, we can no longer rely on
1020 * dead code elimination to leave only the relevant one in the object file.
Felipe Balbi550a7372008-07-24 12:27:36 +03001021 *
1022 * We don't currently use dynamic fifo setup capability to do anything
1023 * more than selecting one of a bunch of predefined configurations.
1024 */
Felipe Balbiee34e512011-06-29 12:45:03 +03001025#if defined(CONFIG_USB_MUSB_TUSB6010) \
1026 || defined(CONFIG_USB_MUSB_TUSB6010_MODULE) \
1027 || defined(CONFIG_USB_MUSB_OMAP2PLUS) \
1028 || defined(CONFIG_USB_MUSB_OMAP2PLUS_MODULE) \
1029 || defined(CONFIG_USB_MUSB_AM35X) \
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +05301030 || defined(CONFIG_USB_MUSB_AM35X_MODULE) \
1031 || defined(CONFIG_USB_MUSB_DSPS) \
1032 || defined(CONFIG_USB_MUSB_DSPS_MODULE)
Felipe Balbie9e8c852012-01-26 12:40:23 +02001033static ushort __devinitdata fifo_mode = 4;
Felipe Balbiee34e512011-06-29 12:45:03 +03001034#elif defined(CONFIG_USB_MUSB_UX500) \
1035 || defined(CONFIG_USB_MUSB_UX500_MODULE)
Felipe Balbie9e8c852012-01-26 12:40:23 +02001036static ushort __devinitdata fifo_mode = 5;
Felipe Balbi550a7372008-07-24 12:27:36 +03001037#else
Felipe Balbie9e8c852012-01-26 12:40:23 +02001038static ushort __devinitdata fifo_mode = 2;
Felipe Balbi550a7372008-07-24 12:27:36 +03001039#endif
1040
1041/* "modprobe ... fifo_mode=1" etc */
1042module_param(fifo_mode, ushort, 0);
1043MODULE_PARM_DESC(fifo_mode, "initial endpoint configuration");
1044
Felipe Balbi550a7372008-07-24 12:27:36 +03001045/*
1046 * tables defining fifo_mode values. define more if you like.
1047 * for host side, make sure both halves of ep1 are set up.
1048 */
1049
1050/* mode 0 - fits in 2KB */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001051static struct musb_fifo_cfg __devinitdata mode_0_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001052{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1053{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1054{ .hw_ep_num = 2, .style = FIFO_RXTX, .maxpacket = 512, },
1055{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1056{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1057};
1058
1059/* mode 1 - fits in 4KB */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001060static struct musb_fifo_cfg __devinitdata mode_1_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001061{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1062{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1063{ .hw_ep_num = 2, .style = FIFO_RXTX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1064{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1065{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1066};
1067
1068/* mode 2 - fits in 4KB */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001069static struct musb_fifo_cfg __devinitdata mode_2_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001070{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1071{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1072{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1073{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1074{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1075{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1076};
1077
1078/* mode 3 - fits in 4KB */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001079static struct musb_fifo_cfg __devinitdata mode_3_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001080{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1081{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1082{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1083{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1084{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1085{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1086};
1087
1088/* mode 4 - fits in 16KB */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001089static struct musb_fifo_cfg __devinitdata mode_4_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001090{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1091{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1092{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1093{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1094{ .hw_ep_num = 3, .style = FIFO_TX, .maxpacket = 512, },
1095{ .hw_ep_num = 3, .style = FIFO_RX, .maxpacket = 512, },
1096{ .hw_ep_num = 4, .style = FIFO_TX, .maxpacket = 512, },
1097{ .hw_ep_num = 4, .style = FIFO_RX, .maxpacket = 512, },
1098{ .hw_ep_num = 5, .style = FIFO_TX, .maxpacket = 512, },
1099{ .hw_ep_num = 5, .style = FIFO_RX, .maxpacket = 512, },
1100{ .hw_ep_num = 6, .style = FIFO_TX, .maxpacket = 512, },
1101{ .hw_ep_num = 6, .style = FIFO_RX, .maxpacket = 512, },
1102{ .hw_ep_num = 7, .style = FIFO_TX, .maxpacket = 512, },
1103{ .hw_ep_num = 7, .style = FIFO_RX, .maxpacket = 512, },
1104{ .hw_ep_num = 8, .style = FIFO_TX, .maxpacket = 512, },
1105{ .hw_ep_num = 8, .style = FIFO_RX, .maxpacket = 512, },
1106{ .hw_ep_num = 9, .style = FIFO_TX, .maxpacket = 512, },
1107{ .hw_ep_num = 9, .style = FIFO_RX, .maxpacket = 512, },
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001108{ .hw_ep_num = 10, .style = FIFO_TX, .maxpacket = 256, },
1109{ .hw_ep_num = 10, .style = FIFO_RX, .maxpacket = 64, },
1110{ .hw_ep_num = 11, .style = FIFO_TX, .maxpacket = 256, },
1111{ .hw_ep_num = 11, .style = FIFO_RX, .maxpacket = 64, },
1112{ .hw_ep_num = 12, .style = FIFO_TX, .maxpacket = 256, },
1113{ .hw_ep_num = 12, .style = FIFO_RX, .maxpacket = 64, },
1114{ .hw_ep_num = 13, .style = FIFO_RXTX, .maxpacket = 4096, },
Felipe Balbi550a7372008-07-24 12:27:36 +03001115{ .hw_ep_num = 14, .style = FIFO_RXTX, .maxpacket = 1024, },
1116{ .hw_ep_num = 15, .style = FIFO_RXTX, .maxpacket = 1024, },
1117};
1118
Ajay Kumar Gupta3b151522009-12-28 13:40:34 +02001119/* mode 5 - fits in 8KB */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001120static struct musb_fifo_cfg __devinitdata mode_5_cfg[] = {
Ajay Kumar Gupta3b151522009-12-28 13:40:34 +02001121{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1122{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1123{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1124{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1125{ .hw_ep_num = 3, .style = FIFO_TX, .maxpacket = 512, },
1126{ .hw_ep_num = 3, .style = FIFO_RX, .maxpacket = 512, },
1127{ .hw_ep_num = 4, .style = FIFO_TX, .maxpacket = 512, },
1128{ .hw_ep_num = 4, .style = FIFO_RX, .maxpacket = 512, },
1129{ .hw_ep_num = 5, .style = FIFO_TX, .maxpacket = 512, },
1130{ .hw_ep_num = 5, .style = FIFO_RX, .maxpacket = 512, },
1131{ .hw_ep_num = 6, .style = FIFO_TX, .maxpacket = 32, },
1132{ .hw_ep_num = 6, .style = FIFO_RX, .maxpacket = 32, },
1133{ .hw_ep_num = 7, .style = FIFO_TX, .maxpacket = 32, },
1134{ .hw_ep_num = 7, .style = FIFO_RX, .maxpacket = 32, },
1135{ .hw_ep_num = 8, .style = FIFO_TX, .maxpacket = 32, },
1136{ .hw_ep_num = 8, .style = FIFO_RX, .maxpacket = 32, },
1137{ .hw_ep_num = 9, .style = FIFO_TX, .maxpacket = 32, },
1138{ .hw_ep_num = 9, .style = FIFO_RX, .maxpacket = 32, },
1139{ .hw_ep_num = 10, .style = FIFO_TX, .maxpacket = 32, },
1140{ .hw_ep_num = 10, .style = FIFO_RX, .maxpacket = 32, },
1141{ .hw_ep_num = 11, .style = FIFO_TX, .maxpacket = 32, },
1142{ .hw_ep_num = 11, .style = FIFO_RX, .maxpacket = 32, },
1143{ .hw_ep_num = 12, .style = FIFO_TX, .maxpacket = 32, },
1144{ .hw_ep_num = 12, .style = FIFO_RX, .maxpacket = 32, },
1145{ .hw_ep_num = 13, .style = FIFO_RXTX, .maxpacket = 512, },
1146{ .hw_ep_num = 14, .style = FIFO_RXTX, .maxpacket = 1024, },
1147{ .hw_ep_num = 15, .style = FIFO_RXTX, .maxpacket = 1024, },
1148};
Felipe Balbi550a7372008-07-24 12:27:36 +03001149
1150/*
1151 * configure a fifo; for non-shared endpoints, this may be called
1152 * once for a tx fifo and once for an rx fifo.
1153 *
1154 * returns negative errno or offset for next fifo.
1155 */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001156static int __devinit
Felipe Balbi550a7372008-07-24 12:27:36 +03001157fifo_setup(struct musb *musb, struct musb_hw_ep *hw_ep,
Felipe Balbie6c213b2010-03-12 10:29:06 +02001158 const struct musb_fifo_cfg *cfg, u16 offset)
Felipe Balbi550a7372008-07-24 12:27:36 +03001159{
1160 void __iomem *mbase = musb->mregs;
1161 int size = 0;
1162 u16 maxpacket = cfg->maxpacket;
1163 u16 c_off = offset >> 3;
1164 u8 c_size;
1165
1166 /* expect hw_ep has already been zero-initialized */
1167
1168 size = ffs(max(maxpacket, (u16) 8)) - 1;
1169 maxpacket = 1 << size;
1170
1171 c_size = size - 3;
1172 if (cfg->mode == BUF_DOUBLE) {
Felipe Balbica6d1b12008-08-08 12:40:54 +03001173 if ((offset + (maxpacket << 1)) >
1174 (1 << (musb->config->ram_bits + 2)))
Felipe Balbi550a7372008-07-24 12:27:36 +03001175 return -EMSGSIZE;
1176 c_size |= MUSB_FIFOSZ_DPB;
1177 } else {
Felipe Balbica6d1b12008-08-08 12:40:54 +03001178 if ((offset + maxpacket) > (1 << (musb->config->ram_bits + 2)))
Felipe Balbi550a7372008-07-24 12:27:36 +03001179 return -EMSGSIZE;
1180 }
1181
1182 /* configure the FIFO */
1183 musb_writeb(mbase, MUSB_INDEX, hw_ep->epnum);
1184
Felipe Balbi550a7372008-07-24 12:27:36 +03001185 /* EP0 reserved endpoint for control, bidirectional;
1186 * EP1 reserved for bulk, two unidirection halves.
1187 */
1188 if (hw_ep->epnum == 1)
1189 musb->bulk_ep = hw_ep;
1190 /* REVISIT error check: be sure ep0 can both rx and tx ... */
Felipe Balbi550a7372008-07-24 12:27:36 +03001191 switch (cfg->style) {
1192 case FIFO_TX:
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001193 musb_write_txfifosz(mbase, c_size);
1194 musb_write_txfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001195 hw_ep->tx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1196 hw_ep->max_packet_sz_tx = maxpacket;
1197 break;
1198 case FIFO_RX:
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001199 musb_write_rxfifosz(mbase, c_size);
1200 musb_write_rxfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001201 hw_ep->rx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1202 hw_ep->max_packet_sz_rx = maxpacket;
1203 break;
1204 case FIFO_RXTX:
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001205 musb_write_txfifosz(mbase, c_size);
1206 musb_write_txfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001207 hw_ep->rx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1208 hw_ep->max_packet_sz_rx = maxpacket;
1209
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001210 musb_write_rxfifosz(mbase, c_size);
1211 musb_write_rxfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001212 hw_ep->tx_double_buffered = hw_ep->rx_double_buffered;
1213 hw_ep->max_packet_sz_tx = maxpacket;
1214
1215 hw_ep->is_shared_fifo = true;
1216 break;
1217 }
1218
1219 /* NOTE rx and tx endpoint irqs aren't managed separately,
1220 * which happens to be ok
1221 */
1222 musb->epmask |= (1 << hw_ep->epnum);
1223
1224 return offset + (maxpacket << ((c_size & MUSB_FIFOSZ_DPB) ? 1 : 0));
1225}
1226
Felipe Balbie9e8c852012-01-26 12:40:23 +02001227static struct musb_fifo_cfg __devinitdata ep0_cfg = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001228 .style = FIFO_RXTX, .maxpacket = 64,
1229};
1230
Felipe Balbie9e8c852012-01-26 12:40:23 +02001231static int __devinit ep_config_from_table(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001232{
Felipe Balbie6c213b2010-03-12 10:29:06 +02001233 const struct musb_fifo_cfg *cfg;
Felipe Balbi550a7372008-07-24 12:27:36 +03001234 unsigned i, n;
1235 int offset;
1236 struct musb_hw_ep *hw_ep = musb->endpoints;
1237
Felipe Balbie6c213b2010-03-12 10:29:06 +02001238 if (musb->config->fifo_cfg) {
1239 cfg = musb->config->fifo_cfg;
1240 n = musb->config->fifo_cfg_size;
1241 goto done;
1242 }
1243
Felipe Balbi550a7372008-07-24 12:27:36 +03001244 switch (fifo_mode) {
1245 default:
1246 fifo_mode = 0;
1247 /* FALLTHROUGH */
1248 case 0:
1249 cfg = mode_0_cfg;
1250 n = ARRAY_SIZE(mode_0_cfg);
1251 break;
1252 case 1:
1253 cfg = mode_1_cfg;
1254 n = ARRAY_SIZE(mode_1_cfg);
1255 break;
1256 case 2:
1257 cfg = mode_2_cfg;
1258 n = ARRAY_SIZE(mode_2_cfg);
1259 break;
1260 case 3:
1261 cfg = mode_3_cfg;
1262 n = ARRAY_SIZE(mode_3_cfg);
1263 break;
1264 case 4:
1265 cfg = mode_4_cfg;
1266 n = ARRAY_SIZE(mode_4_cfg);
1267 break;
Ajay Kumar Gupta3b151522009-12-28 13:40:34 +02001268 case 5:
1269 cfg = mode_5_cfg;
1270 n = ARRAY_SIZE(mode_5_cfg);
1271 break;
Felipe Balbi550a7372008-07-24 12:27:36 +03001272 }
1273
1274 printk(KERN_DEBUG "%s: setup fifo_mode %d\n",
1275 musb_driver_name, fifo_mode);
1276
1277
Felipe Balbie6c213b2010-03-12 10:29:06 +02001278done:
Felipe Balbi550a7372008-07-24 12:27:36 +03001279 offset = fifo_setup(musb, hw_ep, &ep0_cfg, 0);
1280 /* assert(offset > 0) */
1281
1282 /* NOTE: for RTL versions >= 1.400 EPINFO and RAMINFO would
Felipe Balbica6d1b12008-08-08 12:40:54 +03001283 * be better than static musb->config->num_eps and DYN_FIFO_SIZE...
Felipe Balbi550a7372008-07-24 12:27:36 +03001284 */
1285
1286 for (i = 0; i < n; i++) {
1287 u8 epn = cfg->hw_ep_num;
1288
Felipe Balbica6d1b12008-08-08 12:40:54 +03001289 if (epn >= musb->config->num_eps) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001290 pr_debug("%s: invalid ep %d\n",
1291 musb_driver_name, epn);
David Brownellbb1c9ef2008-11-24 13:06:50 +02001292 return -EINVAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001293 }
1294 offset = fifo_setup(musb, hw_ep + epn, cfg++, offset);
1295 if (offset < 0) {
1296 pr_debug("%s: mem overrun, ep %d\n",
1297 musb_driver_name, epn);
1298 return -EINVAL;
1299 }
1300 epn++;
1301 musb->nr_endpoints = max(epn, musb->nr_endpoints);
1302 }
1303
1304 printk(KERN_DEBUG "%s: %d/%d max ep, %d/%d memory\n",
1305 musb_driver_name,
Felipe Balbica6d1b12008-08-08 12:40:54 +03001306 n + 1, musb->config->num_eps * 2 - 1,
1307 offset, (1 << (musb->config->ram_bits + 2)));
Felipe Balbi550a7372008-07-24 12:27:36 +03001308
Felipe Balbi550a7372008-07-24 12:27:36 +03001309 if (!musb->bulk_ep) {
1310 pr_debug("%s: missing bulk\n", musb_driver_name);
1311 return -EINVAL;
1312 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001313
1314 return 0;
1315}
1316
1317
1318/*
1319 * ep_config_from_hw - when MUSB_C_DYNFIFO_DEF is false
1320 * @param musb the controller
1321 */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001322static int __devinit ep_config_from_hw(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001323{
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001324 u8 epnum = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001325 struct musb_hw_ep *hw_ep;
Felipe Balbia1565442012-08-07 14:00:50 +03001326 void __iomem *mbase = musb->mregs;
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001327 int ret = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001328
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001329 dev_dbg(musb->controller, "<== static silicon ep config\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001330
1331 /* FIXME pick up ep0 maxpacket size */
1332
Felipe Balbica6d1b12008-08-08 12:40:54 +03001333 for (epnum = 1; epnum < musb->config->num_eps; epnum++) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001334 musb_ep_select(mbase, epnum);
1335 hw_ep = musb->endpoints + epnum;
1336
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001337 ret = musb_read_fifosize(musb, hw_ep, epnum);
1338 if (ret < 0)
Felipe Balbi550a7372008-07-24 12:27:36 +03001339 break;
Felipe Balbi550a7372008-07-24 12:27:36 +03001340
1341 /* FIXME set up hw_ep->{rx,tx}_double_buffered */
1342
Felipe Balbi550a7372008-07-24 12:27:36 +03001343 /* pick an RX/TX endpoint for bulk */
1344 if (hw_ep->max_packet_sz_tx < 512
1345 || hw_ep->max_packet_sz_rx < 512)
1346 continue;
1347
1348 /* REVISIT: this algorithm is lazy, we should at least
1349 * try to pick a double buffered endpoint.
1350 */
1351 if (musb->bulk_ep)
1352 continue;
1353 musb->bulk_ep = hw_ep;
Felipe Balbi550a7372008-07-24 12:27:36 +03001354 }
1355
Felipe Balbi550a7372008-07-24 12:27:36 +03001356 if (!musb->bulk_ep) {
1357 pr_debug("%s: missing bulk\n", musb_driver_name);
1358 return -EINVAL;
1359 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001360
1361 return 0;
1362}
1363
1364enum { MUSB_CONTROLLER_MHDRC, MUSB_CONTROLLER_HDRC, };
1365
1366/* Initialize MUSB (M)HDRC part of the USB hardware subsystem;
1367 * configure endpoints, or take their config from silicon
1368 */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001369static int __devinit musb_core_init(u16 musb_type, struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001370{
Felipe Balbi550a7372008-07-24 12:27:36 +03001371 u8 reg;
1372 char *type;
Maulik Mankad0ea52ff2009-12-22 16:19:53 +05301373 char aInfo[90], aRevision[32], aDate[12];
Felipe Balbi550a7372008-07-24 12:27:36 +03001374 void __iomem *mbase = musb->mregs;
1375 int status = 0;
1376 int i;
1377
1378 /* log core options (read using indexed model) */
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001379 reg = musb_read_configdata(mbase);
Felipe Balbi550a7372008-07-24 12:27:36 +03001380
1381 strcpy(aInfo, (reg & MUSB_CONFIGDATA_UTMIDW) ? "UTMI-16" : "UTMI-8");
Ajay Kumar Gupta51bf0d02009-12-28 13:40:41 +02001382 if (reg & MUSB_CONFIGDATA_DYNFIFO) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001383 strcat(aInfo, ", dyn FIFOs");
Ajay Kumar Gupta51bf0d02009-12-28 13:40:41 +02001384 musb->dyn_fifo = true;
1385 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001386 if (reg & MUSB_CONFIGDATA_MPRXE) {
1387 strcat(aInfo, ", bulk combine");
Felipe Balbi550a7372008-07-24 12:27:36 +03001388 musb->bulk_combine = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001389 }
1390 if (reg & MUSB_CONFIGDATA_MPTXE) {
1391 strcat(aInfo, ", bulk split");
Felipe Balbi550a7372008-07-24 12:27:36 +03001392 musb->bulk_split = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001393 }
1394 if (reg & MUSB_CONFIGDATA_HBRXE) {
1395 strcat(aInfo, ", HB-ISO Rx");
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001396 musb->hb_iso_rx = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001397 }
1398 if (reg & MUSB_CONFIGDATA_HBTXE) {
1399 strcat(aInfo, ", HB-ISO Tx");
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001400 musb->hb_iso_tx = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001401 }
1402 if (reg & MUSB_CONFIGDATA_SOFTCONE)
1403 strcat(aInfo, ", SoftConn");
1404
1405 printk(KERN_DEBUG "%s: ConfigData=0x%02x (%s)\n",
1406 musb_driver_name, reg, aInfo);
1407
Felipe Balbi550a7372008-07-24 12:27:36 +03001408 aDate[0] = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001409 if (MUSB_CONTROLLER_MHDRC == musb_type) {
1410 musb->is_multipoint = 1;
1411 type = "M";
1412 } else {
1413 musb->is_multipoint = 0;
1414 type = "";
Felipe Balbi550a7372008-07-24 12:27:36 +03001415#ifndef CONFIG_USB_OTG_BLACKLIST_HUB
1416 printk(KERN_ERR
1417 "%s: kernel must blacklist external hubs\n",
1418 musb_driver_name);
1419#endif
Felipe Balbi550a7372008-07-24 12:27:36 +03001420 }
1421
1422 /* log release info */
Anand Gadiyar32c3b942009-11-16 21:09:21 +05301423 musb->hwvers = musb_read_hwvers(mbase);
1424 snprintf(aRevision, 32, "%d.%d%s", MUSB_HWVERS_MAJOR(musb->hwvers),
1425 MUSB_HWVERS_MINOR(musb->hwvers),
1426 (musb->hwvers & MUSB_HWVERS_RC) ? "RC" : "");
Felipe Balbi550a7372008-07-24 12:27:36 +03001427 printk(KERN_DEBUG "%s: %sHDRC RTL version %s %s\n",
1428 musb_driver_name, type, aRevision, aDate);
1429
1430 /* configure ep0 */
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001431 musb_configure_ep0(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001432
1433 /* discover endpoint configuration */
1434 musb->nr_endpoints = 1;
1435 musb->epmask = 1;
1436
Felipe Balbiad517e9e2010-01-21 15:33:54 +02001437 if (musb->dyn_fifo)
1438 status = ep_config_from_table(musb);
1439 else
1440 status = ep_config_from_hw(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001441
1442 if (status < 0)
1443 return status;
1444
1445 /* finish init, and print endpoint config */
1446 for (i = 0; i < musb->nr_endpoints; i++) {
1447 struct musb_hw_ep *hw_ep = musb->endpoints + i;
1448
1449 hw_ep->fifo = MUSB_FIFO_OFFSET(i) + mbase;
Arnd Bergmann9a35f872011-10-02 16:45:47 +02001450#if defined(CONFIG_USB_MUSB_TUSB6010) || defined (CONFIG_USB_MUSB_TUSB6010_MODULE)
Felipe Balbi550a7372008-07-24 12:27:36 +03001451 hw_ep->fifo_async = musb->async + 0x400 + MUSB_FIFO_OFFSET(i);
1452 hw_ep->fifo_sync = musb->sync + 0x400 + MUSB_FIFO_OFFSET(i);
1453 hw_ep->fifo_sync_va =
1454 musb->sync_va + 0x400 + MUSB_FIFO_OFFSET(i);
1455
1456 if (i == 0)
1457 hw_ep->conf = mbase - 0x400 + TUSB_EP0_CONF;
1458 else
1459 hw_ep->conf = mbase + 0x400 + (((i - 1) & 0xf) << 2);
1460#endif
1461
1462 hw_ep->regs = MUSB_EP_OFFSET(i, 0) + mbase;
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001463 hw_ep->target_regs = musb_read_target_reg_base(i, mbase);
Felipe Balbi550a7372008-07-24 12:27:36 +03001464 hw_ep->rx_reinit = 1;
1465 hw_ep->tx_reinit = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001466
1467 if (hw_ep->max_packet_sz_tx) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001468 dev_dbg(musb->controller,
Felipe Balbi550a7372008-07-24 12:27:36 +03001469 "%s: hw_ep %d%s, %smax %d\n",
1470 musb_driver_name, i,
1471 hw_ep->is_shared_fifo ? "shared" : "tx",
1472 hw_ep->tx_double_buffered
1473 ? "doublebuffer, " : "",
1474 hw_ep->max_packet_sz_tx);
1475 }
1476 if (hw_ep->max_packet_sz_rx && !hw_ep->is_shared_fifo) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001477 dev_dbg(musb->controller,
Felipe Balbi550a7372008-07-24 12:27:36 +03001478 "%s: hw_ep %d%s, %smax %d\n",
1479 musb_driver_name, i,
1480 "rx",
1481 hw_ep->rx_double_buffered
1482 ? "doublebuffer, " : "",
1483 hw_ep->max_packet_sz_rx);
1484 }
1485 if (!(hw_ep->max_packet_sz_tx || hw_ep->max_packet_sz_rx))
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001486 dev_dbg(musb->controller, "hw_ep %d not configured\n", i);
Felipe Balbi550a7372008-07-24 12:27:36 +03001487 }
1488
1489 return 0;
1490}
1491
1492/*-------------------------------------------------------------------------*/
1493
Tony Lindgren59b479e2011-01-27 16:39:40 -08001494#if defined(CONFIG_SOC_OMAP2430) || defined(CONFIG_SOC_OMAP3430) || \
Mian Yousaf Kaukabd0678592011-11-01 08:37:40 +01001495 defined(CONFIG_ARCH_OMAP4) || defined(CONFIG_ARCH_U8500)
Felipe Balbi550a7372008-07-24 12:27:36 +03001496
1497static irqreturn_t generic_interrupt(int irq, void *__hci)
1498{
1499 unsigned long flags;
1500 irqreturn_t retval = IRQ_NONE;
1501 struct musb *musb = __hci;
1502
1503 spin_lock_irqsave(&musb->lock, flags);
1504
1505 musb->int_usb = musb_readb(musb->mregs, MUSB_INTRUSB);
1506 musb->int_tx = musb_readw(musb->mregs, MUSB_INTRTX);
1507 musb->int_rx = musb_readw(musb->mregs, MUSB_INTRRX);
1508
1509 if (musb->int_usb || musb->int_tx || musb->int_rx)
1510 retval = musb_interrupt(musb);
1511
1512 spin_unlock_irqrestore(&musb->lock, flags);
1513
Sergei Shtylyova5073b52009-03-27 12:52:43 -07001514 return retval;
Felipe Balbi550a7372008-07-24 12:27:36 +03001515}
1516
1517#else
1518#define generic_interrupt NULL
1519#endif
1520
1521/*
1522 * handle all the irqs defined by the HDRC core. for now we expect: other
1523 * irq sources (phy, dma, etc) will be handled first, musb->int_* values
1524 * will be assigned, and the irq will already have been acked.
1525 *
1526 * called in irq context with spinlock held, irqs blocked
1527 */
1528irqreturn_t musb_interrupt(struct musb *musb)
1529{
1530 irqreturn_t retval = IRQ_NONE;
1531 u8 devctl, power;
1532 int ep_num;
1533 u32 reg;
1534
1535 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
1536 power = musb_readb(musb->mregs, MUSB_POWER);
1537
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001538 dev_dbg(musb->controller, "** IRQ %s usb%04x tx%04x rx%04x\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001539 (devctl & MUSB_DEVCTL_HM) ? "host" : "peripheral",
1540 musb->int_usb, musb->int_tx, musb->int_rx);
1541
1542 /* the core can interrupt us for multiple reasons; docs have
1543 * a generic interrupt flowchart to follow
1544 */
Sergei Shtylyov7d9645f2010-06-24 23:07:06 +05301545 if (musb->int_usb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001546 retval |= musb_stage0_irq(musb, musb->int_usb,
1547 devctl, power);
1548
1549 /* "stage 1" is handling endpoint irqs */
1550
1551 /* handle endpoint 0 first */
1552 if (musb->int_tx & 1) {
1553 if (devctl & MUSB_DEVCTL_HM)
1554 retval |= musb_h_ep0_irq(musb);
1555 else
1556 retval |= musb_g_ep0_irq(musb);
1557 }
1558
1559 /* RX on endpoints 1-15 */
1560 reg = musb->int_rx >> 1;
1561 ep_num = 1;
1562 while (reg) {
1563 if (reg & 1) {
1564 /* musb_ep_select(musb->mregs, ep_num); */
1565 /* REVISIT just retval = ep->rx_irq(...) */
1566 retval = IRQ_HANDLED;
Felipe Balbia04d46d2011-11-24 15:46:27 +02001567 if (devctl & MUSB_DEVCTL_HM)
1568 musb_host_rx(musb, ep_num);
1569 else
1570 musb_g_rx(musb, ep_num);
Felipe Balbi550a7372008-07-24 12:27:36 +03001571 }
1572
1573 reg >>= 1;
1574 ep_num++;
1575 }
1576
1577 /* TX on endpoints 1-15 */
1578 reg = musb->int_tx >> 1;
1579 ep_num = 1;
1580 while (reg) {
1581 if (reg & 1) {
1582 /* musb_ep_select(musb->mregs, ep_num); */
1583 /* REVISIT just retval |= ep->tx_irq(...) */
1584 retval = IRQ_HANDLED;
Felipe Balbia04d46d2011-11-24 15:46:27 +02001585 if (devctl & MUSB_DEVCTL_HM)
1586 musb_host_tx(musb, ep_num);
1587 else
1588 musb_g_tx(musb, ep_num);
Felipe Balbi550a7372008-07-24 12:27:36 +03001589 }
1590 reg >>= 1;
1591 ep_num++;
1592 }
1593
Felipe Balbi550a7372008-07-24 12:27:36 +03001594 return retval;
1595}
Felipe Balbi981430a2011-05-11 13:02:23 +03001596EXPORT_SYMBOL_GPL(musb_interrupt);
Felipe Balbi550a7372008-07-24 12:27:36 +03001597
1598#ifndef CONFIG_MUSB_PIO_ONLY
Felipe Balbie9e8c852012-01-26 12:40:23 +02001599static bool __devinitdata use_dma = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001600
1601/* "modprobe ... use_dma=0" etc */
1602module_param(use_dma, bool, 0);
1603MODULE_PARM_DESC(use_dma, "enable/disable use of DMA");
1604
1605void musb_dma_completion(struct musb *musb, u8 epnum, u8 transmit)
1606{
1607 u8 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
1608
1609 /* called with controller lock already held */
1610
1611 if (!epnum) {
1612#ifndef CONFIG_USB_TUSB_OMAP_DMA
1613 if (!is_cppi_enabled()) {
1614 /* endpoint 0 */
1615 if (devctl & MUSB_DEVCTL_HM)
1616 musb_h_ep0_irq(musb);
1617 else
1618 musb_g_ep0_irq(musb);
1619 }
1620#endif
1621 } else {
1622 /* endpoints 1..15 */
1623 if (transmit) {
Felipe Balbia04d46d2011-11-24 15:46:27 +02001624 if (devctl & MUSB_DEVCTL_HM)
1625 musb_host_tx(musb, epnum);
1626 else
1627 musb_g_tx(musb, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001628 } else {
1629 /* receive */
Felipe Balbia04d46d2011-11-24 15:46:27 +02001630 if (devctl & MUSB_DEVCTL_HM)
1631 musb_host_rx(musb, epnum);
1632 else
1633 musb_g_rx(musb, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +03001634 }
1635 }
1636}
Arnd Bergmann9a35f872011-10-02 16:45:47 +02001637EXPORT_SYMBOL_GPL(musb_dma_completion);
Felipe Balbi550a7372008-07-24 12:27:36 +03001638
1639#else
1640#define use_dma 0
1641#endif
1642
1643/*-------------------------------------------------------------------------*/
1644
1645#ifdef CONFIG_SYSFS
1646
1647static ssize_t
1648musb_mode_show(struct device *dev, struct device_attribute *attr, char *buf)
1649{
1650 struct musb *musb = dev_to_musb(dev);
1651 unsigned long flags;
1652 int ret = -EINVAL;
1653
1654 spin_lock_irqsave(&musb->lock, flags);
Anatolij Gustschin3df00452011-05-05 12:11:21 +02001655 ret = sprintf(buf, "%s\n", otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +03001656 spin_unlock_irqrestore(&musb->lock, flags);
1657
1658 return ret;
1659}
1660
1661static ssize_t
1662musb_mode_store(struct device *dev, struct device_attribute *attr,
1663 const char *buf, size_t n)
1664{
1665 struct musb *musb = dev_to_musb(dev);
1666 unsigned long flags;
David Brownell96a274d2008-11-24 13:06:47 +02001667 int status;
Felipe Balbi550a7372008-07-24 12:27:36 +03001668
1669 spin_lock_irqsave(&musb->lock, flags);
David Brownell96a274d2008-11-24 13:06:47 +02001670 if (sysfs_streq(buf, "host"))
1671 status = musb_platform_set_mode(musb, MUSB_HOST);
1672 else if (sysfs_streq(buf, "peripheral"))
1673 status = musb_platform_set_mode(musb, MUSB_PERIPHERAL);
1674 else if (sysfs_streq(buf, "otg"))
1675 status = musb_platform_set_mode(musb, MUSB_OTG);
1676 else
1677 status = -EINVAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001678 spin_unlock_irqrestore(&musb->lock, flags);
1679
David Brownell96a274d2008-11-24 13:06:47 +02001680 return (status == 0) ? n : status;
Felipe Balbi550a7372008-07-24 12:27:36 +03001681}
1682static DEVICE_ATTR(mode, 0644, musb_mode_show, musb_mode_store);
1683
1684static ssize_t
1685musb_vbus_store(struct device *dev, struct device_attribute *attr,
1686 const char *buf, size_t n)
1687{
1688 struct musb *musb = dev_to_musb(dev);
1689 unsigned long flags;
1690 unsigned long val;
1691
1692 if (sscanf(buf, "%lu", &val) < 1) {
Felipe Balbib3b1cc32009-12-15 11:08:43 +02001693 dev_err(dev, "Invalid VBUS timeout ms value\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001694 return -EINVAL;
1695 }
1696
1697 spin_lock_irqsave(&musb->lock, flags);
David Brownellf7f9d632009-03-31 12:32:12 -07001698 /* force T(a_wait_bcon) to be zero/unlimited *OR* valid */
1699 musb->a_wait_bcon = val ? max_t(int, val, OTG_TIME_A_WAIT_BCON) : 0 ;
David Brownell84e250f2009-03-31 12:30:04 -07001700 if (musb->xceiv->state == OTG_STATE_A_WAIT_BCON)
Felipe Balbi550a7372008-07-24 12:27:36 +03001701 musb->is_active = 0;
1702 musb_platform_try_idle(musb, jiffies + msecs_to_jiffies(val));
1703 spin_unlock_irqrestore(&musb->lock, flags);
1704
1705 return n;
1706}
1707
1708static ssize_t
1709musb_vbus_show(struct device *dev, struct device_attribute *attr, char *buf)
1710{
1711 struct musb *musb = dev_to_musb(dev);
1712 unsigned long flags;
1713 unsigned long val;
1714 int vbus;
1715
1716 spin_lock_irqsave(&musb->lock, flags);
1717 val = musb->a_wait_bcon;
David Brownellf7f9d632009-03-31 12:32:12 -07001718 /* FIXME get_vbus_status() is normally #defined as false...
1719 * and is effectively TUSB-specific.
1720 */
Felipe Balbi550a7372008-07-24 12:27:36 +03001721 vbus = musb_platform_get_vbus_status(musb);
1722 spin_unlock_irqrestore(&musb->lock, flags);
1723
David Brownellf7f9d632009-03-31 12:32:12 -07001724 return sprintf(buf, "Vbus %s, timeout %lu msec\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001725 vbus ? "on" : "off", val);
1726}
1727static DEVICE_ATTR(vbus, 0644, musb_vbus_show, musb_vbus_store);
1728
Felipe Balbi550a7372008-07-24 12:27:36 +03001729/* Gadget drivers can't know that a host is connected so they might want
1730 * to start SRP, but users can. This allows userspace to trigger SRP.
1731 */
1732static ssize_t
1733musb_srp_store(struct device *dev, struct device_attribute *attr,
1734 const char *buf, size_t n)
1735{
1736 struct musb *musb = dev_to_musb(dev);
1737 unsigned short srp;
1738
1739 if (sscanf(buf, "%hu", &srp) != 1
1740 || (srp != 1)) {
Felipe Balbib3b1cc32009-12-15 11:08:43 +02001741 dev_err(dev, "SRP: Value must be 1\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001742 return -EINVAL;
1743 }
1744
1745 if (srp == 1)
1746 musb_g_wakeup(musb);
1747
1748 return n;
1749}
1750static DEVICE_ATTR(srp, 0644, NULL, musb_srp_store);
1751
Felipe Balbi94375752009-12-15 11:08:38 +02001752static struct attribute *musb_attributes[] = {
1753 &dev_attr_mode.attr,
1754 &dev_attr_vbus.attr,
Felipe Balbi94375752009-12-15 11:08:38 +02001755 &dev_attr_srp.attr,
Felipe Balbi94375752009-12-15 11:08:38 +02001756 NULL
1757};
1758
1759static const struct attribute_group musb_attr_group = {
1760 .attrs = musb_attributes,
1761};
1762
Felipe Balbi550a7372008-07-24 12:27:36 +03001763#endif /* sysfs */
1764
1765/* Only used to provide driver mode change events */
1766static void musb_irq_work(struct work_struct *data)
1767{
1768 struct musb *musb = container_of(data, struct musb, irq_work);
1769 static int old_state;
1770
David Brownell84e250f2009-03-31 12:30:04 -07001771 if (musb->xceiv->state != old_state) {
1772 old_state = musb->xceiv->state;
Felipe Balbi550a7372008-07-24 12:27:36 +03001773 sysfs_notify(&musb->controller->kobj, NULL, "mode");
1774 }
1775}
1776
1777/* --------------------------------------------------------------------------
1778 * Init support
1779 */
1780
Felipe Balbie9e8c852012-01-26 12:40:23 +02001781static struct musb *__devinit
Felipe Balbica6d1b12008-08-08 12:40:54 +03001782allocate_instance(struct device *dev,
1783 struct musb_hdrc_config *config, void __iomem *mbase)
Felipe Balbi550a7372008-07-24 12:27:36 +03001784{
1785 struct musb *musb;
1786 struct musb_hw_ep *ep;
1787 int epnum;
Felipe Balbi550a7372008-07-24 12:27:36 +03001788 struct usb_hcd *hcd;
1789
Kay Sievers427c4f32008-11-07 01:52:53 +01001790 hcd = usb_create_hcd(&musb_hc_driver, dev, dev_name(dev));
Felipe Balbi550a7372008-07-24 12:27:36 +03001791 if (!hcd)
1792 return NULL;
1793 /* usbcore sets dev->driver_data to hcd, and sometimes uses that... */
1794
1795 musb = hcd_to_musb(hcd);
1796 INIT_LIST_HEAD(&musb->control);
1797 INIT_LIST_HEAD(&musb->in_bulk);
1798 INIT_LIST_HEAD(&musb->out_bulk);
1799
1800 hcd->uses_new_polling = 1;
Felipe Balbiec95d352011-02-24 10:36:53 +02001801 hcd->has_tt = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001802
1803 musb->vbuserr_retry = VBUSERR_RETRY_COUNT;
David Brownellf7f9d632009-03-31 12:32:12 -07001804 musb->a_wait_bcon = OTG_TIME_A_WAIT_BCON;
Ming Lei456bb162010-12-21 21:16:11 +08001805 dev_set_drvdata(dev, musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001806 musb->mregs = mbase;
1807 musb->ctrl_base = mbase;
1808 musb->nIrq = -ENODEV;
Felipe Balbica6d1b12008-08-08 12:40:54 +03001809 musb->config = config;
Kevin Hilman02582b92008-09-15 12:09:31 +02001810 BUG_ON(musb->config->num_eps > MUSB_C_NUM_EPS);
Felipe Balbi550a7372008-07-24 12:27:36 +03001811 for (epnum = 0, ep = musb->endpoints;
Felipe Balbica6d1b12008-08-08 12:40:54 +03001812 epnum < musb->config->num_eps;
Felipe Balbi550a7372008-07-24 12:27:36 +03001813 epnum++, ep++) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001814 ep->musb = musb;
1815 ep->epnum = epnum;
1816 }
1817
1818 musb->controller = dev;
Felipe Balbi743411b2010-12-01 13:22:05 +02001819
Felipe Balbi550a7372008-07-24 12:27:36 +03001820 return musb;
1821}
1822
1823static void musb_free(struct musb *musb)
1824{
1825 /* this has multiple entry modes. it handles fault cleanup after
1826 * probe(), where things may be partially set up, as well as rmmod
1827 * cleanup after everything's been de-activated.
1828 */
1829
1830#ifdef CONFIG_SYSFS
Felipe Balbi94375752009-12-15 11:08:38 +02001831 sysfs_remove_group(&musb->controller->kobj, &musb_attr_group);
Felipe Balbi550a7372008-07-24 12:27:36 +03001832#endif
1833
Ajay Kumar Gupta97a39892009-01-24 17:56:39 -08001834 if (musb->nIrq >= 0) {
1835 if (musb->irq_wake)
1836 disable_irq_wake(musb->nIrq);
Felipe Balbi550a7372008-07-24 12:27:36 +03001837 free_irq(musb->nIrq, musb);
1838 }
1839 if (is_dma_capable() && musb->dma_controller) {
1840 struct dma_controller *c = musb->dma_controller;
1841
1842 (void) c->stop(c);
1843 dma_controller_destroy(c);
1844 }
1845
Brian Downingdecadac2012-08-04 18:32:19 -05001846 usb_put_hcd(musb_to_hcd(musb));
Felipe Balbi550a7372008-07-24 12:27:36 +03001847}
1848
1849/*
1850 * Perform generic per-controller initialization.
1851 *
1852 * @pDevice: the controller (already clocked, etc)
1853 * @nIrq: irq
1854 * @mregs: virtual address of controller registers,
1855 * not yet corrected for platform-specific offsets
1856 */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001857static int __devinit
Felipe Balbi550a7372008-07-24 12:27:36 +03001858musb_init_controller(struct device *dev, int nIrq, void __iomem *ctrl)
1859{
1860 int status;
1861 struct musb *musb;
1862 struct musb_hdrc_platform_data *plat = dev->platform_data;
Felipe Balbi032ec492011-11-24 15:46:26 +02001863 struct usb_hcd *hcd;
Felipe Balbi550a7372008-07-24 12:27:36 +03001864
1865 /* The driver might handle more features than the board; OK.
1866 * Fail when the board needs a feature that's not enabled.
1867 */
1868 if (!plat) {
1869 dev_dbg(dev, "no platform_data?\n");
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001870 status = -ENODEV;
1871 goto fail0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001872 }
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001873
Felipe Balbi550a7372008-07-24 12:27:36 +03001874 /* allocate */
Felipe Balbica6d1b12008-08-08 12:40:54 +03001875 musb = allocate_instance(dev, plat->config, ctrl);
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001876 if (!musb) {
1877 status = -ENOMEM;
1878 goto fail0;
1879 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001880
Hema HK7acc6192011-02-28 14:19:34 +05301881 pm_runtime_use_autosuspend(musb->controller);
1882 pm_runtime_set_autosuspend_delay(musb->controller, 200);
1883 pm_runtime_enable(musb->controller);
1884
Felipe Balbi550a7372008-07-24 12:27:36 +03001885 spin_lock_init(&musb->lock);
Felipe Balbi550a7372008-07-24 12:27:36 +03001886 musb->board_set_power = plat->set_power;
Felipe Balbi550a7372008-07-24 12:27:36 +03001887 musb->min_power = plat->min_power;
Felipe Balbif7ec9432010-12-02 09:48:58 +02001888 musb->ops = plat->platform_ops;
Felipe Balbi550a7372008-07-24 12:27:36 +03001889
David Brownell84e250f2009-03-31 12:30:04 -07001890 /* The musb_platform_init() call:
1891 * - adjusts musb->mregs and musb->isr if needed,
1892 * - may initialize an integrated tranceiver
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +05301893 * - initializes musb->xceiv, usually by otg_get_phy()
David Brownell84e250f2009-03-31 12:30:04 -07001894 * - stops powering VBUS
David Brownell84e250f2009-03-31 12:30:04 -07001895 *
Joe Perches7c9d4402011-06-23 11:39:20 -07001896 * There are various transceiver configurations. Blackfin,
David Brownell84e250f2009-03-31 12:30:04 -07001897 * DaVinci, TUSB60x0, and others integrate them. OMAP3 uses
1898 * external/discrete ones in various flavors (twl4030 family,
1899 * isp1504, non-OTG, etc) mostly hooking up through ULPI.
Felipe Balbi550a7372008-07-24 12:27:36 +03001900 */
1901 musb->isr = generic_interrupt;
Hema Kalliguddiea65df52010-09-22 19:27:40 -05001902 status = musb_platform_init(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001903 if (status < 0)
Felipe Balbi03491762010-12-02 09:57:08 +02001904 goto fail1;
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001905
Felipe Balbi550a7372008-07-24 12:27:36 +03001906 if (!musb->isr) {
1907 status = -ENODEV;
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02001908 goto fail2;
Felipe Balbi550a7372008-07-24 12:27:36 +03001909 }
1910
Heikki Krogerusffb865b2010-03-25 13:25:28 +02001911 if (!musb->xceiv->io_ops) {
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +02001912 musb->xceiv->io_dev = musb->controller;
Heikki Krogerusffb865b2010-03-25 13:25:28 +02001913 musb->xceiv->io_priv = musb->mregs;
1914 musb->xceiv->io_ops = &musb_ulpi_access;
1915 }
1916
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02001917 pm_runtime_get_sync(musb->controller);
1918
Felipe Balbi550a7372008-07-24 12:27:36 +03001919#ifndef CONFIG_MUSB_PIO_ONLY
1920 if (use_dma && dev->dma_mask) {
1921 struct dma_controller *c;
1922
1923 c = dma_controller_create(musb, musb->mregs);
1924 musb->dma_controller = c;
1925 if (c)
1926 (void) c->start(c);
1927 }
1928#endif
1929 /* ideally this would be abstracted in platform setup */
1930 if (!is_dma_capable() || !musb->dma_controller)
1931 dev->dma_mask = NULL;
1932
1933 /* be sure interrupts are disabled before connecting ISR */
1934 musb_platform_disable(musb);
1935 musb_generic_disable(musb);
1936
1937 /* setup musb parts of the core (especially endpoints) */
Felipe Balbica6d1b12008-08-08 12:40:54 +03001938 status = musb_core_init(plat->config->multipoint
Felipe Balbi550a7372008-07-24 12:27:36 +03001939 ? MUSB_CONTROLLER_MHDRC
1940 : MUSB_CONTROLLER_HDRC, musb);
1941 if (status < 0)
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001942 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03001943
David Brownellf7f9d632009-03-31 12:32:12 -07001944 setup_timer(&musb->otg_timer, musb_otg_timer_func, (unsigned long) musb);
David Brownellf7f9d632009-03-31 12:32:12 -07001945
Felipe Balbi550a7372008-07-24 12:27:36 +03001946 /* Init IRQ workqueue before request_irq */
1947 INIT_WORK(&musb->irq_work, musb_irq_work);
1948
1949 /* attach to the IRQ */
Kay Sievers427c4f32008-11-07 01:52:53 +01001950 if (request_irq(nIrq, musb->isr, 0, dev_name(dev), musb)) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001951 dev_err(dev, "request_irq %d failed!\n", nIrq);
1952 status = -ENODEV;
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001953 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03001954 }
1955 musb->nIrq = nIrq;
Felipe Balbi032ec492011-11-24 15:46:26 +02001956 /* FIXME this handles wakeup irqs wrong */
Felipe Balbic48a5152008-11-24 13:06:53 +02001957 if (enable_irq_wake(nIrq) == 0) {
1958 musb->irq_wake = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001959 device_init_wakeup(dev, 1);
Felipe Balbic48a5152008-11-24 13:06:53 +02001960 } else {
1961 musb->irq_wake = 0;
1962 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001963
David Brownell84e250f2009-03-31 12:30:04 -07001964 /* host side needs more setup */
Felipe Balbi032ec492011-11-24 15:46:26 +02001965 hcd = musb_to_hcd(musb);
1966 otg_set_host(musb->xceiv->otg, &hcd->self);
1967 hcd->self.otg_port = 1;
1968 musb->xceiv->otg->host = &hcd->self;
1969 hcd->power_budget = 2 * (plat->power ? : 250);
Felipe Balbi550a7372008-07-24 12:27:36 +03001970
Felipe Balbi032ec492011-11-24 15:46:26 +02001971 /* program PHY to use external vBus if required */
1972 if (plat->extvbus) {
1973 u8 busctl = musb_read_ulpi_buscontrol(musb->mregs);
1974 busctl |= MUSB_ULPI_USE_EXTVBUS;
1975 musb_write_ulpi_buscontrol(musb->mregs, busctl);
Felipe Balbi550a7372008-07-24 12:27:36 +03001976 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001977
Felipe Balbi032ec492011-11-24 15:46:26 +02001978 MUSB_DEV_MODE(musb);
1979 musb->xceiv->otg->default_a = 0;
1980 musb->xceiv->state = OTG_STATE_B_IDLE;
Anand Gadiyar07a8cdd2010-11-18 18:54:17 +05301981
Felipe Balbi032ec492011-11-24 15:46:26 +02001982 status = musb_gadget_setup(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001983
Sergei Shtylyov461972d2010-03-25 13:14:32 +02001984 if (status < 0)
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001985 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03001986
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02001987 status = musb_init_debugfs(musb);
1988 if (status < 0)
Felipe Balbib0f9da72010-03-25 13:25:18 +02001989 goto fail4;
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02001990
Felipe Balbi550a7372008-07-24 12:27:36 +03001991#ifdef CONFIG_SYSFS
Felipe Balbi94375752009-12-15 11:08:38 +02001992 status = sysfs_create_group(&musb->controller->kobj, &musb_attr_group);
Felipe Balbi28c2c512008-09-11 11:53:25 +03001993 if (status)
Felipe Balbib0f9da72010-03-25 13:25:18 +02001994 goto fail5;
Sergei Shtylyov461972d2010-03-25 13:14:32 +02001995#endif
Felipe Balbi28c2c512008-09-11 11:53:25 +03001996
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02001997 pm_runtime_put(musb->controller);
1998
Felipe Balbi28c2c512008-09-11 11:53:25 +03001999 return 0;
2000
Felipe Balbib0f9da72010-03-25 13:25:18 +02002001fail5:
2002 musb_exit_debugfs(musb);
2003
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002004fail4:
Felipe Balbi032ec492011-11-24 15:46:26 +02002005 musb_gadget_cleanup(musb);
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002006
2007fail3:
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02002008 pm_runtime_put_sync(musb->controller);
2009
2010fail2:
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002011 if (musb->irq_wake)
2012 device_init_wakeup(dev, 0);
Felipe Balbi28c2c512008-09-11 11:53:25 +03002013 musb_platform_exit(musb);
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002014
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002015fail1:
Felipe Balbi28c2c512008-09-11 11:53:25 +03002016 dev_err(musb->controller,
2017 "musb_init_controller failed with status %d\n", status);
2018
Felipe Balbi28c2c512008-09-11 11:53:25 +03002019 musb_free(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03002020
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002021fail0:
2022
Felipe Balbi550a7372008-07-24 12:27:36 +03002023 return status;
2024
Felipe Balbi550a7372008-07-24 12:27:36 +03002025}
2026
2027/*-------------------------------------------------------------------------*/
2028
2029/* all implementations (PCI bridge to FPGA, VLYNQ, etc) should just
2030 * bridge to a platform device; this driver then suffices.
2031 */
2032
2033#ifndef CONFIG_MUSB_PIO_ONLY
2034static u64 *orig_dma_mask;
2035#endif
2036
Felipe Balbie9e8c852012-01-26 12:40:23 +02002037static int __devinit musb_probe(struct platform_device *pdev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002038{
2039 struct device *dev = &pdev->dev;
Hema Kalliguddifcf173e2010-09-29 11:26:39 -05002040 int irq = platform_get_irq_byname(pdev, "mc");
Felipe Balbida5108e2010-01-21 15:33:57 +02002041 int status;
Felipe Balbi550a7372008-07-24 12:27:36 +03002042 struct resource *iomem;
2043 void __iomem *base;
2044
2045 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Sergei Shtylyov541079d2010-12-10 21:03:29 +03002046 if (!iomem || irq <= 0)
Felipe Balbi550a7372008-07-24 12:27:36 +03002047 return -ENODEV;
2048
Felipe Balbi195e9e42009-12-15 11:08:42 +02002049 base = ioremap(iomem->start, resource_size(iomem));
Felipe Balbi550a7372008-07-24 12:27:36 +03002050 if (!base) {
2051 dev_err(dev, "ioremap failed\n");
2052 return -ENOMEM;
2053 }
2054
2055#ifndef CONFIG_MUSB_PIO_ONLY
2056 /* clobbered by use_dma=n */
2057 orig_dma_mask = dev->dma_mask;
2058#endif
Felipe Balbida5108e2010-01-21 15:33:57 +02002059 status = musb_init_controller(dev, irq, base);
2060 if (status < 0)
2061 iounmap(base);
2062
2063 return status;
Felipe Balbi550a7372008-07-24 12:27:36 +03002064}
2065
Felipe Balbie9e8c852012-01-26 12:40:23 +02002066static int __devexit musb_remove(struct platform_device *pdev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002067{
2068 struct musb *musb = dev_to_musb(&pdev->dev);
2069 void __iomem *ctrl_base = musb->ctrl_base;
2070
2071 /* this gets called on rmmod.
2072 * - Host mode: host may still be active
2073 * - Peripheral mode: peripheral is deactivated (or never-activated)
2074 * - OTG mode: both roles are deactivated (or never-activated)
2075 */
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02002076 musb_exit_debugfs(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03002077 musb_shutdown(pdev);
Sergei Shtylyov461972d2010-03-25 13:14:32 +02002078
Felipe Balbi550a7372008-07-24 12:27:36 +03002079 musb_free(musb);
2080 iounmap(ctrl_base);
2081 device_init_wakeup(&pdev->dev, 0);
2082#ifndef CONFIG_MUSB_PIO_ONLY
2083 pdev->dev.dma_mask = orig_dma_mask;
2084#endif
2085 return 0;
2086}
2087
2088#ifdef CONFIG_PM
2089
Felipe Balbi3c8a5fc2010-12-02 12:28:39 +02002090static void musb_save_context(struct musb *musb)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002091{
2092 int i;
2093 void __iomem *musb_base = musb->mregs;
Bob Liuae9b2ad2010-09-24 13:44:07 +03002094 void __iomem *epio;
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002095
Felipe Balbi032ec492011-11-24 15:46:26 +02002096 musb->context.frame = musb_readw(musb_base, MUSB_FRAME);
2097 musb->context.testmode = musb_readb(musb_base, MUSB_TESTMODE);
2098 musb->context.busctl = musb_read_ulpi_buscontrol(musb->mregs);
Felipe Balbi74211072010-12-01 13:53:27 +02002099 musb->context.power = musb_readb(musb_base, MUSB_POWER);
2100 musb->context.intrtxe = musb_readw(musb_base, MUSB_INTRTXE);
2101 musb->context.intrrxe = musb_readw(musb_base, MUSB_INTRRXE);
2102 musb->context.intrusbe = musb_readb(musb_base, MUSB_INTRUSBE);
2103 musb->context.index = musb_readb(musb_base, MUSB_INDEX);
2104 musb->context.devctl = musb_readb(musb_base, MUSB_DEVCTL);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002105
Bob Liuae9b2ad2010-09-24 13:44:07 +03002106 for (i = 0; i < musb->config->num_eps; ++i) {
Felipe Balbie4e5b1362011-06-27 15:57:46 +03002107 struct musb_hw_ep *hw_ep;
2108
2109 hw_ep = &musb->endpoints[i];
2110 if (!hw_ep)
2111 continue;
2112
2113 epio = hw_ep->regs;
2114 if (!epio)
2115 continue;
2116
Vikram Panditaea737552011-09-07 09:19:23 -07002117 musb_writeb(musb_base, MUSB_INDEX, i);
Felipe Balbi74211072010-12-01 13:53:27 +02002118 musb->context.index_regs[i].txmaxp =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002119 musb_readw(epio, MUSB_TXMAXP);
Felipe Balbi74211072010-12-01 13:53:27 +02002120 musb->context.index_regs[i].txcsr =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002121 musb_readw(epio, MUSB_TXCSR);
Felipe Balbi74211072010-12-01 13:53:27 +02002122 musb->context.index_regs[i].rxmaxp =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002123 musb_readw(epio, MUSB_RXMAXP);
Felipe Balbi74211072010-12-01 13:53:27 +02002124 musb->context.index_regs[i].rxcsr =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002125 musb_readw(epio, MUSB_RXCSR);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002126
2127 if (musb->dyn_fifo) {
Felipe Balbi74211072010-12-01 13:53:27 +02002128 musb->context.index_regs[i].txfifoadd =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002129 musb_read_txfifoadd(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002130 musb->context.index_regs[i].rxfifoadd =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002131 musb_read_rxfifoadd(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002132 musb->context.index_regs[i].txfifosz =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002133 musb_read_txfifosz(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002134 musb->context.index_regs[i].rxfifosz =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002135 musb_read_rxfifosz(musb_base);
2136 }
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002137
Felipe Balbi032ec492011-11-24 15:46:26 +02002138 musb->context.index_regs[i].txtype =
2139 musb_readb(epio, MUSB_TXTYPE);
2140 musb->context.index_regs[i].txinterval =
2141 musb_readb(epio, MUSB_TXINTERVAL);
2142 musb->context.index_regs[i].rxtype =
2143 musb_readb(epio, MUSB_RXTYPE);
2144 musb->context.index_regs[i].rxinterval =
2145 musb_readb(epio, MUSB_RXINTERVAL);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002146
Felipe Balbi032ec492011-11-24 15:46:26 +02002147 musb->context.index_regs[i].txfunaddr =
2148 musb_read_txfunaddr(musb_base, i);
2149 musb->context.index_regs[i].txhubaddr =
2150 musb_read_txhubaddr(musb_base, i);
2151 musb->context.index_regs[i].txhubport =
2152 musb_read_txhubport(musb_base, i);
2153
2154 musb->context.index_regs[i].rxfunaddr =
2155 musb_read_rxfunaddr(musb_base, i);
2156 musb->context.index_regs[i].rxhubaddr =
2157 musb_read_rxhubaddr(musb_base, i);
2158 musb->context.index_regs[i].rxhubport =
2159 musb_read_rxhubport(musb_base, i);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002160 }
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002161}
2162
Felipe Balbi3c8a5fc2010-12-02 12:28:39 +02002163static void musb_restore_context(struct musb *musb)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002164{
2165 int i;
2166 void __iomem *musb_base = musb->mregs;
2167 void __iomem *ep_target_regs;
Bob Liuae9b2ad2010-09-24 13:44:07 +03002168 void __iomem *epio;
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002169
Felipe Balbi032ec492011-11-24 15:46:26 +02002170 musb_writew(musb_base, MUSB_FRAME, musb->context.frame);
2171 musb_writeb(musb_base, MUSB_TESTMODE, musb->context.testmode);
2172 musb_write_ulpi_buscontrol(musb->mregs, musb->context.busctl);
Felipe Balbi74211072010-12-01 13:53:27 +02002173 musb_writeb(musb_base, MUSB_POWER, musb->context.power);
2174 musb_writew(musb_base, MUSB_INTRTXE, musb->context.intrtxe);
2175 musb_writew(musb_base, MUSB_INTRRXE, musb->context.intrrxe);
2176 musb_writeb(musb_base, MUSB_INTRUSBE, musb->context.intrusbe);
2177 musb_writeb(musb_base, MUSB_DEVCTL, musb->context.devctl);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002178
Bob Liuae9b2ad2010-09-24 13:44:07 +03002179 for (i = 0; i < musb->config->num_eps; ++i) {
Felipe Balbie4e5b1362011-06-27 15:57:46 +03002180 struct musb_hw_ep *hw_ep;
2181
2182 hw_ep = &musb->endpoints[i];
2183 if (!hw_ep)
2184 continue;
2185
2186 epio = hw_ep->regs;
2187 if (!epio)
2188 continue;
2189
Vikram Panditaea737552011-09-07 09:19:23 -07002190 musb_writeb(musb_base, MUSB_INDEX, i);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002191 musb_writew(epio, MUSB_TXMAXP,
Felipe Balbi74211072010-12-01 13:53:27 +02002192 musb->context.index_regs[i].txmaxp);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002193 musb_writew(epio, MUSB_TXCSR,
Felipe Balbi74211072010-12-01 13:53:27 +02002194 musb->context.index_regs[i].txcsr);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002195 musb_writew(epio, MUSB_RXMAXP,
Felipe Balbi74211072010-12-01 13:53:27 +02002196 musb->context.index_regs[i].rxmaxp);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002197 musb_writew(epio, MUSB_RXCSR,
Felipe Balbi74211072010-12-01 13:53:27 +02002198 musb->context.index_regs[i].rxcsr);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002199
2200 if (musb->dyn_fifo) {
2201 musb_write_txfifosz(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002202 musb->context.index_regs[i].txfifosz);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002203 musb_write_rxfifosz(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002204 musb->context.index_regs[i].rxfifosz);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002205 musb_write_txfifoadd(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002206 musb->context.index_regs[i].txfifoadd);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002207 musb_write_rxfifoadd(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002208 musb->context.index_regs[i].rxfifoadd);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002209 }
2210
Felipe Balbi032ec492011-11-24 15:46:26 +02002211 musb_writeb(epio, MUSB_TXTYPE,
Felipe Balbi74211072010-12-01 13:53:27 +02002212 musb->context.index_regs[i].txtype);
Felipe Balbi032ec492011-11-24 15:46:26 +02002213 musb_writeb(epio, MUSB_TXINTERVAL,
Felipe Balbi74211072010-12-01 13:53:27 +02002214 musb->context.index_regs[i].txinterval);
Felipe Balbi032ec492011-11-24 15:46:26 +02002215 musb_writeb(epio, MUSB_RXTYPE,
Felipe Balbi74211072010-12-01 13:53:27 +02002216 musb->context.index_regs[i].rxtype);
Felipe Balbi032ec492011-11-24 15:46:26 +02002217 musb_writeb(epio, MUSB_RXINTERVAL,
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002218
Felipe Balbi032ec492011-11-24 15:46:26 +02002219 musb->context.index_regs[i].rxinterval);
2220 musb_write_txfunaddr(musb_base, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002221 musb->context.index_regs[i].txfunaddr);
Felipe Balbi032ec492011-11-24 15:46:26 +02002222 musb_write_txhubaddr(musb_base, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002223 musb->context.index_regs[i].txhubaddr);
Felipe Balbi032ec492011-11-24 15:46:26 +02002224 musb_write_txhubport(musb_base, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002225 musb->context.index_regs[i].txhubport);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002226
Felipe Balbi032ec492011-11-24 15:46:26 +02002227 ep_target_regs =
2228 musb_read_target_reg_base(i, musb_base);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002229
Felipe Balbi032ec492011-11-24 15:46:26 +02002230 musb_write_rxfunaddr(ep_target_regs,
Felipe Balbi74211072010-12-01 13:53:27 +02002231 musb->context.index_regs[i].rxfunaddr);
Felipe Balbi032ec492011-11-24 15:46:26 +02002232 musb_write_rxhubaddr(ep_target_regs,
Felipe Balbi74211072010-12-01 13:53:27 +02002233 musb->context.index_regs[i].rxhubaddr);
Felipe Balbi032ec492011-11-24 15:46:26 +02002234 musb_write_rxhubport(ep_target_regs,
Felipe Balbi74211072010-12-01 13:53:27 +02002235 musb->context.index_regs[i].rxhubport);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002236 }
Ajay Kumar Gupta3c5fec72011-07-08 15:06:13 +05302237 musb_writeb(musb_base, MUSB_INDEX, musb->context.index);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002238}
2239
Magnus Damm48fea962009-07-08 13:22:56 +02002240static int musb_suspend(struct device *dev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002241{
Felipe Balbi82207962011-06-27 15:57:12 +03002242 struct musb *musb = dev_to_musb(dev);
Felipe Balbi550a7372008-07-24 12:27:36 +03002243 unsigned long flags;
Felipe Balbi550a7372008-07-24 12:27:36 +03002244
Felipe Balbi550a7372008-07-24 12:27:36 +03002245 spin_lock_irqsave(&musb->lock, flags);
2246
2247 if (is_peripheral_active(musb)) {
2248 /* FIXME force disconnect unless we know USB will wake
2249 * the system up quickly enough to respond ...
2250 */
2251 } else if (is_host_active(musb)) {
2252 /* we know all the children are suspended; sometimes
2253 * they will even be wakeup-enabled.
2254 */
2255 }
2256
Felipe Balbi550a7372008-07-24 12:27:36 +03002257 spin_unlock_irqrestore(&musb->lock, flags);
2258 return 0;
2259}
2260
Magnus Damm48fea962009-07-08 13:22:56 +02002261static int musb_resume_noirq(struct device *dev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002262{
Felipe Balbi550a7372008-07-24 12:27:36 +03002263 /* for static cmos like DaVinci, register values were preserved
Kim Kyuwon0ec8fd72009-03-26 18:56:51 -07002264 * unless for some reason the whole soc powered down or the USB
2265 * module got reset through the PSC (vs just being disabled).
Felipe Balbi550a7372008-07-24 12:27:36 +03002266 */
Felipe Balbi550a7372008-07-24 12:27:36 +03002267 return 0;
2268}
2269
Hema HK7acc6192011-02-28 14:19:34 +05302270static int musb_runtime_suspend(struct device *dev)
2271{
2272 struct musb *musb = dev_to_musb(dev);
2273
2274 musb_save_context(musb);
2275
2276 return 0;
2277}
2278
2279static int musb_runtime_resume(struct device *dev)
2280{
2281 struct musb *musb = dev_to_musb(dev);
2282 static int first = 1;
2283
2284 /*
2285 * When pm_runtime_get_sync called for the first time in driver
2286 * init, some of the structure is still not initialized which is
2287 * used in restore function. But clock needs to be
2288 * enabled before any register access, so
2289 * pm_runtime_get_sync has to be called.
2290 * Also context restore without save does not make
2291 * any sense
2292 */
2293 if (!first)
2294 musb_restore_context(musb);
2295 first = 0;
2296
2297 return 0;
2298}
2299
Alexey Dobriyan47145212009-12-14 18:00:08 -08002300static const struct dev_pm_ops musb_dev_pm_ops = {
Magnus Damm48fea962009-07-08 13:22:56 +02002301 .suspend = musb_suspend,
2302 .resume_noirq = musb_resume_noirq,
Hema HK7acc6192011-02-28 14:19:34 +05302303 .runtime_suspend = musb_runtime_suspend,
2304 .runtime_resume = musb_runtime_resume,
Magnus Damm48fea962009-07-08 13:22:56 +02002305};
2306
2307#define MUSB_DEV_PM_OPS (&musb_dev_pm_ops)
Felipe Balbi550a7372008-07-24 12:27:36 +03002308#else
Magnus Damm48fea962009-07-08 13:22:56 +02002309#define MUSB_DEV_PM_OPS NULL
Felipe Balbi550a7372008-07-24 12:27:36 +03002310#endif
2311
2312static struct platform_driver musb_driver = {
2313 .driver = {
2314 .name = (char *)musb_driver_name,
2315 .bus = &platform_bus_type,
2316 .owner = THIS_MODULE,
Magnus Damm48fea962009-07-08 13:22:56 +02002317 .pm = MUSB_DEV_PM_OPS,
Felipe Balbi550a7372008-07-24 12:27:36 +03002318 },
Felipe Balbie9e8c852012-01-26 12:40:23 +02002319 .probe = musb_probe,
2320 .remove = __devexit_p(musb_remove),
Felipe Balbi550a7372008-07-24 12:27:36 +03002321 .shutdown = musb_shutdown,
Felipe Balbi550a7372008-07-24 12:27:36 +03002322};
2323
2324/*-------------------------------------------------------------------------*/
2325
2326static int __init musb_init(void)
2327{
Felipe Balbi550a7372008-07-24 12:27:36 +03002328 if (usb_disabled())
2329 return 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03002330
2331 pr_info("%s: version " MUSB_VERSION ", "
Felipe Balbi550a7372008-07-24 12:27:36 +03002332 "?dma?"
Felipe Balbi550a7372008-07-24 12:27:36 +03002333 ", "
Felipe Balbi62285962011-06-22 17:28:09 +03002334 "otg (peripheral+host)",
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03002335 musb_driver_name);
Felipe Balbie9e8c852012-01-26 12:40:23 +02002336 return platform_driver_register(&musb_driver);
Felipe Balbi550a7372008-07-24 12:27:36 +03002337}
Felipe Balbie9e8c852012-01-26 12:40:23 +02002338module_init(musb_init);
Felipe Balbi550a7372008-07-24 12:27:36 +03002339
2340static void __exit musb_cleanup(void)
2341{
2342 platform_driver_unregister(&musb_driver);
2343}
2344module_exit(musb_cleanup);