blob: 69711e43ac6b2e1073269a36b0607b984b70f6ca [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 */
357void musb_otg_timer_func(unsigned long data)
358{
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);
652 musb->is_active = is_otg_enabled(musb)
Heikki Krogerusd445b6d2012-02-13 13:24:15 +0200653 && otg->gadget->b_hnp_enable;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200654 if (musb->is_active) {
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200655 musb->xceiv->state = OTG_STATE_B_WAIT_ACON;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300656 dev_dbg(musb->controller, "HNP: Setting timer for b_ase0_brst\n");
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200657 mod_timer(&musb->otg_timer, jiffies
658 + msecs_to_jiffies(
659 OTG_TIME_B_ASE0_BRST));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200660 }
661 break;
662 case OTG_STATE_A_WAIT_BCON:
663 if (musb->a_wait_bcon != 0)
664 musb_platform_try_idle(musb, jiffies
665 + msecs_to_jiffies(musb->a_wait_bcon));
666 break;
667 case OTG_STATE_A_HOST:
668 musb->xceiv->state = OTG_STATE_A_SUSPEND;
669 musb->is_active = is_otg_enabled(musb)
Heikki Krogerusd445b6d2012-02-13 13:24:15 +0200670 && otg->host->b_hnp_enable;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200671 break;
672 case OTG_STATE_B_HOST:
673 /* Transition to B_PERIPHERAL, see 6.8.2.6 p 44 */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300674 dev_dbg(musb->controller, "REVISIT: SUSPEND as B_HOST\n");
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200675 break;
676 default:
677 /* "should not happen" */
678 musb->is_active = 0;
679 break;
680 }
681 }
682
Felipe Balbi550a7372008-07-24 12:27:36 +0300683 if (int_usb & MUSB_INTR_CONNECT) {
684 struct usb_hcd *hcd = musb_to_hcd(musb);
685
686 handled = IRQ_HANDLED;
687 musb->is_active = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +0300688
689 musb->ep0_stage = MUSB_EP0_START;
690
Felipe Balbi550a7372008-07-24 12:27:36 +0300691 /* flush endpoints when transitioning from Device Mode */
692 if (is_peripheral_active(musb)) {
693 /* REVISIT HNP; just force disconnect */
694 }
Ajay Kumar Guptad709d222010-07-08 14:03:00 +0530695 musb_writew(musb->mregs, MUSB_INTRTXE, musb->epmask);
696 musb_writew(musb->mregs, MUSB_INTRRXE, musb->epmask & 0xfffe);
697 musb_writeb(musb->mregs, MUSB_INTRUSBE, 0xf7);
Felipe Balbi550a7372008-07-24 12:27:36 +0300698 musb->port1_status &= ~(USB_PORT_STAT_LOW_SPEED
699 |USB_PORT_STAT_HIGH_SPEED
700 |USB_PORT_STAT_ENABLE
701 );
702 musb->port1_status |= USB_PORT_STAT_CONNECTION
703 |(USB_PORT_STAT_C_CONNECTION << 16);
704
705 /* high vs full speed is just a guess until after reset */
706 if (devctl & MUSB_DEVCTL_LSDEV)
707 musb->port1_status |= USB_PORT_STAT_LOW_SPEED;
708
Felipe Balbi550a7372008-07-24 12:27:36 +0300709 /* indicate new connection to OTG machine */
David Brownell84e250f2009-03-31 12:30:04 -0700710 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300711 case OTG_STATE_B_PERIPHERAL:
712 if (int_usb & MUSB_INTR_SUSPEND) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300713 dev_dbg(musb->controller, "HNP: SUSPEND+CONNECT, now b_host\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300714 int_usb &= ~MUSB_INTR_SUSPEND;
David Brownell1de00da2009-04-02 10:16:11 -0700715 goto b_host;
Felipe Balbi550a7372008-07-24 12:27:36 +0300716 } else
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300717 dev_dbg(musb->controller, "CONNECT as b_peripheral???\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300718 break;
719 case OTG_STATE_B_WAIT_ACON:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300720 dev_dbg(musb->controller, "HNP: CONNECT, now b_host\n");
David Brownell1de00da2009-04-02 10:16:11 -0700721b_host:
David Brownell84e250f2009-03-31 12:30:04 -0700722 musb->xceiv->state = OTG_STATE_B_HOST;
Felipe Balbi550a7372008-07-24 12:27:36 +0300723 hcd->self.is_b_host = 1;
David Brownell1de00da2009-04-02 10:16:11 -0700724 musb->ignore_disconnect = 0;
725 del_timer(&musb->otg_timer);
Felipe Balbi550a7372008-07-24 12:27:36 +0300726 break;
727 default:
728 if ((devctl & MUSB_DEVCTL_VBUS)
729 == (3 << MUSB_DEVCTL_VBUS_SHIFT)) {
David Brownell84e250f2009-03-31 12:30:04 -0700730 musb->xceiv->state = OTG_STATE_A_HOST;
Felipe Balbi550a7372008-07-24 12:27:36 +0300731 hcd->self.is_b_host = 0;
732 }
733 break;
734 }
David Brownell1de00da2009-04-02 10:16:11 -0700735
736 /* poke the root hub */
737 MUSB_HST_MODE(musb);
738 if (hcd->status_urb)
739 usb_hcd_poll_rh_status(hcd);
740 else
741 usb_hcd_resume_root_hub(hcd);
742
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300743 dev_dbg(musb->controller, "CONNECT (%s) devctl %02x\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200744 otg_state_string(musb->xceiv->state), devctl);
Felipe Balbi550a7372008-07-24 12:27:36 +0300745 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300746
Felipe Balbi550a7372008-07-24 12:27:36 +0300747 if ((int_usb & MUSB_INTR_DISCONNECT) && !musb->ignore_disconnect) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300748 dev_dbg(musb->controller, "DISCONNECT (%s) as %s, devctl %02x\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200749 otg_state_string(musb->xceiv->state),
Felipe Balbi550a7372008-07-24 12:27:36 +0300750 MUSB_MODE(musb), devctl);
751 handled = IRQ_HANDLED;
752
David Brownell84e250f2009-03-31 12:30:04 -0700753 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300754 case OTG_STATE_A_HOST:
755 case OTG_STATE_A_SUSPEND:
Anand Gadiyar5c23c902009-02-21 15:31:40 -0800756 usb_hcd_resume_root_hub(musb_to_hcd(musb));
Felipe Balbi550a7372008-07-24 12:27:36 +0300757 musb_root_disconnect(musb);
Ajay Kumar Gupta74382172009-02-24 15:29:04 -0800758 if (musb->a_wait_bcon != 0 && is_otg_enabled(musb))
Felipe Balbi550a7372008-07-24 12:27:36 +0300759 musb_platform_try_idle(musb, jiffies
760 + msecs_to_jiffies(musb->a_wait_bcon));
761 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300762 case OTG_STATE_B_HOST:
David Brownellab983f2a2009-03-31 12:35:09 -0700763 /* REVISIT this behaves for "real disconnect"
764 * cases; make sure the other transitions from
765 * from B_HOST act right too. The B_HOST code
766 * in hnp_stop() is currently not used...
767 */
768 musb_root_disconnect(musb);
769 musb_to_hcd(musb)->self.is_b_host = 0;
770 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
771 MUSB_DEV_MODE(musb);
772 musb_g_disconnect(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +0300773 break;
774 case OTG_STATE_A_PERIPHERAL:
775 musb_hnp_stop(musb);
776 musb_root_disconnect(musb);
777 /* FALLTHROUGH */
778 case OTG_STATE_B_WAIT_ACON:
779 /* FALLTHROUGH */
Felipe Balbi550a7372008-07-24 12:27:36 +0300780 case OTG_STATE_B_PERIPHERAL:
781 case OTG_STATE_B_IDLE:
782 musb_g_disconnect(musb);
783 break;
Felipe Balbi550a7372008-07-24 12:27:36 +0300784 default:
785 WARNING("unhandled DISCONNECT transition (%s)\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200786 otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +0300787 break;
788 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300789 }
790
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200791 /* mentor saves a bit: bus reset and babble share the same irq.
792 * only host sees babble; only peripheral sees bus reset.
793 */
794 if (int_usb & MUSB_INTR_RESET) {
795 handled = IRQ_HANDLED;
796 if (is_host_capable() && (devctl & MUSB_DEVCTL_HM) != 0) {
797 /*
798 * Looks like non-HS BABBLE can be ignored, but
799 * HS BABBLE is an error condition. For HS the solution
800 * is to avoid babble in the first place and fix what
801 * caused BABBLE. When HS BABBLE happens we can only
802 * stop the session.
803 */
804 if (devctl & (MUSB_DEVCTL_FSDEV | MUSB_DEVCTL_LSDEV))
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300805 dev_dbg(musb->controller, "BABBLE devctl: %02x\n", devctl);
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200806 else {
807 ERR("Stopping host session -- babble\n");
808 musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
809 }
810 } else if (is_peripheral_capable()) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300811 dev_dbg(musb->controller, "BUS RESET as %s\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200812 otg_state_string(musb->xceiv->state));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200813 switch (musb->xceiv->state) {
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200814 case OTG_STATE_A_SUSPEND:
815 /* We need to ignore disconnect on suspend
816 * otherwise tusb 2.0 won't reconnect after a
817 * power cycle, which breaks otg compliance.
818 */
819 musb->ignore_disconnect = 1;
820 musb_g_reset(musb);
821 /* FALLTHROUGH */
822 case OTG_STATE_A_WAIT_BCON: /* OPT TD.4.7-900ms */
823 /* never use invalid T(a_wait_bcon) */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300824 dev_dbg(musb->controller, "HNP: in %s, %d msec timeout\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200825 otg_state_string(musb->xceiv->state),
826 TA_WAIT_BCON(musb));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200827 mod_timer(&musb->otg_timer, jiffies
828 + msecs_to_jiffies(TA_WAIT_BCON(musb)));
829 break;
830 case OTG_STATE_A_PERIPHERAL:
831 musb->ignore_disconnect = 0;
832 del_timer(&musb->otg_timer);
833 musb_g_reset(musb);
834 break;
835 case OTG_STATE_B_WAIT_ACON:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300836 dev_dbg(musb->controller, "HNP: RESET (%s), to b_peripheral\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200837 otg_state_string(musb->xceiv->state));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200838 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
839 musb_g_reset(musb);
840 break;
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200841 case OTG_STATE_B_IDLE:
842 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
843 /* FALLTHROUGH */
844 case OTG_STATE_B_PERIPHERAL:
845 musb_g_reset(musb);
846 break;
847 default:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300848 dev_dbg(musb->controller, "Unhandled BUS RESET as %s\n",
Anatolij Gustschin3df00452011-05-05 12:11:21 +0200849 otg_state_string(musb->xceiv->state));
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200850 }
851 }
852 }
853
854#if 0
855/* REVISIT ... this would be for multiplexing periodic endpoints, or
856 * supporting transfer phasing to prevent exceeding ISO bandwidth
857 * limits of a given frame or microframe.
858 *
859 * It's not needed for peripheral side, which dedicates endpoints;
860 * though it _might_ use SOF irqs for other purposes.
861 *
862 * And it's not currently needed for host side, which also dedicates
863 * endpoints, relies on TX/RX interval registers, and isn't claimed
864 * to support ISO transfers yet.
865 */
866 if (int_usb & MUSB_INTR_SOF) {
867 void __iomem *mbase = musb->mregs;
868 struct musb_hw_ep *ep;
869 u8 epnum;
870 u16 frame;
871
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300872 dev_dbg(musb->controller, "START_OF_FRAME\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300873 handled = IRQ_HANDLED;
874
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200875 /* start any periodic Tx transfers waiting for current frame */
876 frame = musb_readw(mbase, MUSB_FRAME);
877 ep = musb->endpoints;
878 for (epnum = 1; (epnum < musb->nr_endpoints)
879 && (musb->epmask >= (1 << epnum));
880 epnum++, ep++) {
881 /*
882 * FIXME handle framecounter wraps (12 bits)
883 * eliminate duplicated StartUrb logic
Felipe Balbi550a7372008-07-24 12:27:36 +0300884 */
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200885 if (ep->dwWaitFrame >= frame) {
886 ep->dwWaitFrame = 0;
887 pr_debug("SOF --> periodic TX%s on %d\n",
888 ep->tx_channel ? " DMA" : "",
889 epnum);
890 if (!ep->tx_channel)
891 musb_h_tx_start(musb, epnum);
892 else
893 cppi_hostdma_start(musb, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +0300894 }
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200895 } /* end of for loop */
Felipe Balbi550a7372008-07-24 12:27:36 +0300896 }
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200897#endif
Felipe Balbi550a7372008-07-24 12:27:36 +0300898
Arnaud Mandy1c25fda2009-12-28 13:40:40 +0200899 schedule_work(&musb->irq_work);
Felipe Balbi550a7372008-07-24 12:27:36 +0300900
901 return handled;
902}
903
904/*-------------------------------------------------------------------------*/
905
906/*
907* Program the HDRC to start (enable interrupts, dma, etc.).
908*/
909void musb_start(struct musb *musb)
910{
911 void __iomem *regs = musb->mregs;
912 u8 devctl = musb_readb(regs, MUSB_DEVCTL);
913
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300914 dev_dbg(musb->controller, "<== devctl %02x\n", devctl);
Felipe Balbi550a7372008-07-24 12:27:36 +0300915
916 /* Set INT enable registers, enable interrupts */
917 musb_writew(regs, MUSB_INTRTXE, musb->epmask);
918 musb_writew(regs, MUSB_INTRRXE, musb->epmask & 0xfffe);
919 musb_writeb(regs, MUSB_INTRUSBE, 0xf7);
920
921 musb_writeb(regs, MUSB_TESTMODE, 0);
922
923 /* put into basic highspeed mode and start session */
924 musb_writeb(regs, MUSB_POWER, MUSB_POWER_ISOUPDATE
Felipe Balbi550a7372008-07-24 12:27:36 +0300925 | MUSB_POWER_HSENAB
926 /* ENSUSPEND wedges tusb */
927 /* | MUSB_POWER_ENSUSPEND */
928 );
929
930 musb->is_active = 0;
931 devctl = musb_readb(regs, MUSB_DEVCTL);
932 devctl &= ~MUSB_DEVCTL_SESSION;
933
934 if (is_otg_enabled(musb)) {
935 /* session started after:
936 * (a) ID-grounded irq, host mode;
937 * (b) vbus present/connect IRQ, peripheral mode;
938 * (c) peripheral initiates, using SRP
939 */
940 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS)
941 musb->is_active = 1;
942 else
943 devctl |= MUSB_DEVCTL_SESSION;
944
945 } else if (is_host_enabled(musb)) {
946 /* assume ID pin is hard-wired to ground */
947 devctl |= MUSB_DEVCTL_SESSION;
948
949 } else /* peripheral is enabled */ {
950 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS)
951 musb->is_active = 1;
952 }
953 musb_platform_enable(musb);
954 musb_writeb(regs, MUSB_DEVCTL, devctl);
955}
956
957
958static void musb_generic_disable(struct musb *musb)
959{
960 void __iomem *mbase = musb->mregs;
961 u16 temp;
962
963 /* disable interrupts */
964 musb_writeb(mbase, MUSB_INTRUSBE, 0);
965 musb_writew(mbase, MUSB_INTRTXE, 0);
966 musb_writew(mbase, MUSB_INTRRXE, 0);
967
968 /* off */
969 musb_writeb(mbase, MUSB_DEVCTL, 0);
970
971 /* flush pending interrupts */
972 temp = musb_readb(mbase, MUSB_INTRUSB);
973 temp = musb_readw(mbase, MUSB_INTRTX);
974 temp = musb_readw(mbase, MUSB_INTRRX);
975
976}
977
978/*
979 * Make the HDRC stop (disable interrupts, etc.);
980 * reversible by musb_start
981 * called on gadget driver unregister
982 * with controller locked, irqs blocked
983 * acts as a NOP unless some role activated the hardware
984 */
985void musb_stop(struct musb *musb)
986{
987 /* stop IRQs, timers, ... */
988 musb_platform_disable(musb);
989 musb_generic_disable(musb);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300990 dev_dbg(musb->controller, "HDRC disabled\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300991
992 /* FIXME
993 * - mark host and/or peripheral drivers unusable/inactive
994 * - disable DMA (and enable it in HdrcStart)
995 * - make sure we can musb_start() after musb_stop(); with
996 * OTG mode, gadget driver module rmmod/modprobe cycles that
997 * - ...
998 */
999 musb_platform_try_idle(musb, 0);
1000}
1001
1002static void musb_shutdown(struct platform_device *pdev)
1003{
1004 struct musb *musb = dev_to_musb(&pdev->dev);
1005 unsigned long flags;
1006
Hema HK4f9edd22011-03-22 16:02:12 +05301007 pm_runtime_get_sync(musb->controller);
Grazvydas Ignotas24307ca2012-01-12 15:22:45 +02001008
1009 musb_gadget_cleanup(musb);
1010
Felipe Balbi550a7372008-07-24 12:27:36 +03001011 spin_lock_irqsave(&musb->lock, flags);
1012 musb_platform_disable(musb);
1013 musb_generic_disable(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001014 spin_unlock_irqrestore(&musb->lock, flags);
1015
Grazvydas Ignotas120d0742010-10-10 13:52:22 -05001016 if (!is_otg_enabled(musb) && is_host_enabled(musb))
1017 usb_remove_hcd(musb_to_hcd(musb));
1018 musb_writeb(musb->mregs, MUSB_DEVCTL, 0);
1019 musb_platform_exit(musb);
Grazvydas Ignotas120d0742010-10-10 13:52:22 -05001020
Hema HK4f9edd22011-03-22 16:02:12 +05301021 pm_runtime_put(musb->controller);
Felipe Balbi550a7372008-07-24 12:27:36 +03001022 /* FIXME power down */
1023}
1024
1025
1026/*-------------------------------------------------------------------------*/
1027
1028/*
1029 * The silicon either has hard-wired endpoint configurations, or else
1030 * "dynamic fifo" sizing. The driver has support for both, though at this
David Brownellc767c1c2008-09-11 11:53:23 +03001031 * writing only the dynamic sizing is very well tested. Since we switched
1032 * away from compile-time hardware parameters, we can no longer rely on
1033 * dead code elimination to leave only the relevant one in the object file.
Felipe Balbi550a7372008-07-24 12:27:36 +03001034 *
1035 * We don't currently use dynamic fifo setup capability to do anything
1036 * more than selecting one of a bunch of predefined configurations.
1037 */
Felipe Balbiee34e512011-06-29 12:45:03 +03001038#if defined(CONFIG_USB_MUSB_TUSB6010) \
1039 || defined(CONFIG_USB_MUSB_TUSB6010_MODULE) \
1040 || defined(CONFIG_USB_MUSB_OMAP2PLUS) \
1041 || defined(CONFIG_USB_MUSB_OMAP2PLUS_MODULE) \
1042 || defined(CONFIG_USB_MUSB_AM35X) \
Ajay Kumar Gupta9ecb8872012-03-12 19:30:22 +05301043 || defined(CONFIG_USB_MUSB_AM35X_MODULE) \
1044 || defined(CONFIG_USB_MUSB_DSPS) \
1045 || defined(CONFIG_USB_MUSB_DSPS_MODULE)
Felipe Balbie9e8c852012-01-26 12:40:23 +02001046static ushort __devinitdata fifo_mode = 4;
Felipe Balbiee34e512011-06-29 12:45:03 +03001047#elif defined(CONFIG_USB_MUSB_UX500) \
1048 || defined(CONFIG_USB_MUSB_UX500_MODULE)
Felipe Balbie9e8c852012-01-26 12:40:23 +02001049static ushort __devinitdata fifo_mode = 5;
Felipe Balbi550a7372008-07-24 12:27:36 +03001050#else
Felipe Balbie9e8c852012-01-26 12:40:23 +02001051static ushort __devinitdata fifo_mode = 2;
Felipe Balbi550a7372008-07-24 12:27:36 +03001052#endif
1053
1054/* "modprobe ... fifo_mode=1" etc */
1055module_param(fifo_mode, ushort, 0);
1056MODULE_PARM_DESC(fifo_mode, "initial endpoint configuration");
1057
Felipe Balbi550a7372008-07-24 12:27:36 +03001058/*
1059 * tables defining fifo_mode values. define more if you like.
1060 * for host side, make sure both halves of ep1 are set up.
1061 */
1062
1063/* mode 0 - fits in 2KB */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001064static struct musb_fifo_cfg __devinitdata mode_0_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001065{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1066{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1067{ .hw_ep_num = 2, .style = FIFO_RXTX, .maxpacket = 512, },
1068{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1069{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1070};
1071
1072/* mode 1 - fits in 4KB */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001073static struct musb_fifo_cfg __devinitdata mode_1_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001074{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1075{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1076{ .hw_ep_num = 2, .style = FIFO_RXTX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1077{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1078{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1079};
1080
1081/* mode 2 - fits in 4KB */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001082static struct musb_fifo_cfg __devinitdata mode_2_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001083{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1084{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1085{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1086{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1087{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1088{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1089};
1090
1091/* mode 3 - fits in 4KB */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001092static struct musb_fifo_cfg __devinitdata mode_3_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001093{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1094{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, .mode = BUF_DOUBLE, },
1095{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1096{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1097{ .hw_ep_num = 3, .style = FIFO_RXTX, .maxpacket = 256, },
1098{ .hw_ep_num = 4, .style = FIFO_RXTX, .maxpacket = 256, },
1099};
1100
1101/* mode 4 - fits in 16KB */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001102static struct musb_fifo_cfg __devinitdata mode_4_cfg[] = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001103{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1104{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1105{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1106{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1107{ .hw_ep_num = 3, .style = FIFO_TX, .maxpacket = 512, },
1108{ .hw_ep_num = 3, .style = FIFO_RX, .maxpacket = 512, },
1109{ .hw_ep_num = 4, .style = FIFO_TX, .maxpacket = 512, },
1110{ .hw_ep_num = 4, .style = FIFO_RX, .maxpacket = 512, },
1111{ .hw_ep_num = 5, .style = FIFO_TX, .maxpacket = 512, },
1112{ .hw_ep_num = 5, .style = FIFO_RX, .maxpacket = 512, },
1113{ .hw_ep_num = 6, .style = FIFO_TX, .maxpacket = 512, },
1114{ .hw_ep_num = 6, .style = FIFO_RX, .maxpacket = 512, },
1115{ .hw_ep_num = 7, .style = FIFO_TX, .maxpacket = 512, },
1116{ .hw_ep_num = 7, .style = FIFO_RX, .maxpacket = 512, },
1117{ .hw_ep_num = 8, .style = FIFO_TX, .maxpacket = 512, },
1118{ .hw_ep_num = 8, .style = FIFO_RX, .maxpacket = 512, },
1119{ .hw_ep_num = 9, .style = FIFO_TX, .maxpacket = 512, },
1120{ .hw_ep_num = 9, .style = FIFO_RX, .maxpacket = 512, },
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001121{ .hw_ep_num = 10, .style = FIFO_TX, .maxpacket = 256, },
1122{ .hw_ep_num = 10, .style = FIFO_RX, .maxpacket = 64, },
1123{ .hw_ep_num = 11, .style = FIFO_TX, .maxpacket = 256, },
1124{ .hw_ep_num = 11, .style = FIFO_RX, .maxpacket = 64, },
1125{ .hw_ep_num = 12, .style = FIFO_TX, .maxpacket = 256, },
1126{ .hw_ep_num = 12, .style = FIFO_RX, .maxpacket = 64, },
1127{ .hw_ep_num = 13, .style = FIFO_RXTX, .maxpacket = 4096, },
Felipe Balbi550a7372008-07-24 12:27:36 +03001128{ .hw_ep_num = 14, .style = FIFO_RXTX, .maxpacket = 1024, },
1129{ .hw_ep_num = 15, .style = FIFO_RXTX, .maxpacket = 1024, },
1130};
1131
Ajay Kumar Gupta3b151522009-12-28 13:40:34 +02001132/* mode 5 - fits in 8KB */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001133static struct musb_fifo_cfg __devinitdata mode_5_cfg[] = {
Ajay Kumar Gupta3b151522009-12-28 13:40:34 +02001134{ .hw_ep_num = 1, .style = FIFO_TX, .maxpacket = 512, },
1135{ .hw_ep_num = 1, .style = FIFO_RX, .maxpacket = 512, },
1136{ .hw_ep_num = 2, .style = FIFO_TX, .maxpacket = 512, },
1137{ .hw_ep_num = 2, .style = FIFO_RX, .maxpacket = 512, },
1138{ .hw_ep_num = 3, .style = FIFO_TX, .maxpacket = 512, },
1139{ .hw_ep_num = 3, .style = FIFO_RX, .maxpacket = 512, },
1140{ .hw_ep_num = 4, .style = FIFO_TX, .maxpacket = 512, },
1141{ .hw_ep_num = 4, .style = FIFO_RX, .maxpacket = 512, },
1142{ .hw_ep_num = 5, .style = FIFO_TX, .maxpacket = 512, },
1143{ .hw_ep_num = 5, .style = FIFO_RX, .maxpacket = 512, },
1144{ .hw_ep_num = 6, .style = FIFO_TX, .maxpacket = 32, },
1145{ .hw_ep_num = 6, .style = FIFO_RX, .maxpacket = 32, },
1146{ .hw_ep_num = 7, .style = FIFO_TX, .maxpacket = 32, },
1147{ .hw_ep_num = 7, .style = FIFO_RX, .maxpacket = 32, },
1148{ .hw_ep_num = 8, .style = FIFO_TX, .maxpacket = 32, },
1149{ .hw_ep_num = 8, .style = FIFO_RX, .maxpacket = 32, },
1150{ .hw_ep_num = 9, .style = FIFO_TX, .maxpacket = 32, },
1151{ .hw_ep_num = 9, .style = FIFO_RX, .maxpacket = 32, },
1152{ .hw_ep_num = 10, .style = FIFO_TX, .maxpacket = 32, },
1153{ .hw_ep_num = 10, .style = FIFO_RX, .maxpacket = 32, },
1154{ .hw_ep_num = 11, .style = FIFO_TX, .maxpacket = 32, },
1155{ .hw_ep_num = 11, .style = FIFO_RX, .maxpacket = 32, },
1156{ .hw_ep_num = 12, .style = FIFO_TX, .maxpacket = 32, },
1157{ .hw_ep_num = 12, .style = FIFO_RX, .maxpacket = 32, },
1158{ .hw_ep_num = 13, .style = FIFO_RXTX, .maxpacket = 512, },
1159{ .hw_ep_num = 14, .style = FIFO_RXTX, .maxpacket = 1024, },
1160{ .hw_ep_num = 15, .style = FIFO_RXTX, .maxpacket = 1024, },
1161};
Felipe Balbi550a7372008-07-24 12:27:36 +03001162
1163/*
1164 * configure a fifo; for non-shared endpoints, this may be called
1165 * once for a tx fifo and once for an rx fifo.
1166 *
1167 * returns negative errno or offset for next fifo.
1168 */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001169static int __devinit
Felipe Balbi550a7372008-07-24 12:27:36 +03001170fifo_setup(struct musb *musb, struct musb_hw_ep *hw_ep,
Felipe Balbie6c213b2010-03-12 10:29:06 +02001171 const struct musb_fifo_cfg *cfg, u16 offset)
Felipe Balbi550a7372008-07-24 12:27:36 +03001172{
1173 void __iomem *mbase = musb->mregs;
1174 int size = 0;
1175 u16 maxpacket = cfg->maxpacket;
1176 u16 c_off = offset >> 3;
1177 u8 c_size;
1178
1179 /* expect hw_ep has already been zero-initialized */
1180
1181 size = ffs(max(maxpacket, (u16) 8)) - 1;
1182 maxpacket = 1 << size;
1183
1184 c_size = size - 3;
1185 if (cfg->mode == BUF_DOUBLE) {
Felipe Balbica6d1b12008-08-08 12:40:54 +03001186 if ((offset + (maxpacket << 1)) >
1187 (1 << (musb->config->ram_bits + 2)))
Felipe Balbi550a7372008-07-24 12:27:36 +03001188 return -EMSGSIZE;
1189 c_size |= MUSB_FIFOSZ_DPB;
1190 } else {
Felipe Balbica6d1b12008-08-08 12:40:54 +03001191 if ((offset + maxpacket) > (1 << (musb->config->ram_bits + 2)))
Felipe Balbi550a7372008-07-24 12:27:36 +03001192 return -EMSGSIZE;
1193 }
1194
1195 /* configure the FIFO */
1196 musb_writeb(mbase, MUSB_INDEX, hw_ep->epnum);
1197
Felipe Balbi550a7372008-07-24 12:27:36 +03001198 /* EP0 reserved endpoint for control, bidirectional;
1199 * EP1 reserved for bulk, two unidirection halves.
1200 */
1201 if (hw_ep->epnum == 1)
1202 musb->bulk_ep = hw_ep;
1203 /* REVISIT error check: be sure ep0 can both rx and tx ... */
Felipe Balbi550a7372008-07-24 12:27:36 +03001204 switch (cfg->style) {
1205 case FIFO_TX:
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001206 musb_write_txfifosz(mbase, c_size);
1207 musb_write_txfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001208 hw_ep->tx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1209 hw_ep->max_packet_sz_tx = maxpacket;
1210 break;
1211 case FIFO_RX:
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001212 musb_write_rxfifosz(mbase, c_size);
1213 musb_write_rxfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001214 hw_ep->rx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1215 hw_ep->max_packet_sz_rx = maxpacket;
1216 break;
1217 case FIFO_RXTX:
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001218 musb_write_txfifosz(mbase, c_size);
1219 musb_write_txfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001220 hw_ep->rx_double_buffered = !!(c_size & MUSB_FIFOSZ_DPB);
1221 hw_ep->max_packet_sz_rx = maxpacket;
1222
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001223 musb_write_rxfifosz(mbase, c_size);
1224 musb_write_rxfifoadd(mbase, c_off);
Felipe Balbi550a7372008-07-24 12:27:36 +03001225 hw_ep->tx_double_buffered = hw_ep->rx_double_buffered;
1226 hw_ep->max_packet_sz_tx = maxpacket;
1227
1228 hw_ep->is_shared_fifo = true;
1229 break;
1230 }
1231
1232 /* NOTE rx and tx endpoint irqs aren't managed separately,
1233 * which happens to be ok
1234 */
1235 musb->epmask |= (1 << hw_ep->epnum);
1236
1237 return offset + (maxpacket << ((c_size & MUSB_FIFOSZ_DPB) ? 1 : 0));
1238}
1239
Felipe Balbie9e8c852012-01-26 12:40:23 +02001240static struct musb_fifo_cfg __devinitdata ep0_cfg = {
Felipe Balbi550a7372008-07-24 12:27:36 +03001241 .style = FIFO_RXTX, .maxpacket = 64,
1242};
1243
Felipe Balbie9e8c852012-01-26 12:40:23 +02001244static int __devinit ep_config_from_table(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001245{
Felipe Balbie6c213b2010-03-12 10:29:06 +02001246 const struct musb_fifo_cfg *cfg;
Felipe Balbi550a7372008-07-24 12:27:36 +03001247 unsigned i, n;
1248 int offset;
1249 struct musb_hw_ep *hw_ep = musb->endpoints;
1250
Felipe Balbie6c213b2010-03-12 10:29:06 +02001251 if (musb->config->fifo_cfg) {
1252 cfg = musb->config->fifo_cfg;
1253 n = musb->config->fifo_cfg_size;
1254 goto done;
1255 }
1256
Felipe Balbi550a7372008-07-24 12:27:36 +03001257 switch (fifo_mode) {
1258 default:
1259 fifo_mode = 0;
1260 /* FALLTHROUGH */
1261 case 0:
1262 cfg = mode_0_cfg;
1263 n = ARRAY_SIZE(mode_0_cfg);
1264 break;
1265 case 1:
1266 cfg = mode_1_cfg;
1267 n = ARRAY_SIZE(mode_1_cfg);
1268 break;
1269 case 2:
1270 cfg = mode_2_cfg;
1271 n = ARRAY_SIZE(mode_2_cfg);
1272 break;
1273 case 3:
1274 cfg = mode_3_cfg;
1275 n = ARRAY_SIZE(mode_3_cfg);
1276 break;
1277 case 4:
1278 cfg = mode_4_cfg;
1279 n = ARRAY_SIZE(mode_4_cfg);
1280 break;
Ajay Kumar Gupta3b151522009-12-28 13:40:34 +02001281 case 5:
1282 cfg = mode_5_cfg;
1283 n = ARRAY_SIZE(mode_5_cfg);
1284 break;
Felipe Balbi550a7372008-07-24 12:27:36 +03001285 }
1286
1287 printk(KERN_DEBUG "%s: setup fifo_mode %d\n",
1288 musb_driver_name, fifo_mode);
1289
1290
Felipe Balbie6c213b2010-03-12 10:29:06 +02001291done:
Felipe Balbi550a7372008-07-24 12:27:36 +03001292 offset = fifo_setup(musb, hw_ep, &ep0_cfg, 0);
1293 /* assert(offset > 0) */
1294
1295 /* NOTE: for RTL versions >= 1.400 EPINFO and RAMINFO would
Felipe Balbica6d1b12008-08-08 12:40:54 +03001296 * be better than static musb->config->num_eps and DYN_FIFO_SIZE...
Felipe Balbi550a7372008-07-24 12:27:36 +03001297 */
1298
1299 for (i = 0; i < n; i++) {
1300 u8 epn = cfg->hw_ep_num;
1301
Felipe Balbica6d1b12008-08-08 12:40:54 +03001302 if (epn >= musb->config->num_eps) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001303 pr_debug("%s: invalid ep %d\n",
1304 musb_driver_name, epn);
David Brownellbb1c9ef2008-11-24 13:06:50 +02001305 return -EINVAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001306 }
1307 offset = fifo_setup(musb, hw_ep + epn, cfg++, offset);
1308 if (offset < 0) {
1309 pr_debug("%s: mem overrun, ep %d\n",
1310 musb_driver_name, epn);
1311 return -EINVAL;
1312 }
1313 epn++;
1314 musb->nr_endpoints = max(epn, musb->nr_endpoints);
1315 }
1316
1317 printk(KERN_DEBUG "%s: %d/%d max ep, %d/%d memory\n",
1318 musb_driver_name,
Felipe Balbica6d1b12008-08-08 12:40:54 +03001319 n + 1, musb->config->num_eps * 2 - 1,
1320 offset, (1 << (musb->config->ram_bits + 2)));
Felipe Balbi550a7372008-07-24 12:27:36 +03001321
Felipe Balbi550a7372008-07-24 12:27:36 +03001322 if (!musb->bulk_ep) {
1323 pr_debug("%s: missing bulk\n", musb_driver_name);
1324 return -EINVAL;
1325 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001326
1327 return 0;
1328}
1329
1330
1331/*
1332 * ep_config_from_hw - when MUSB_C_DYNFIFO_DEF is false
1333 * @param musb the controller
1334 */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001335static int __devinit ep_config_from_hw(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001336{
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001337 u8 epnum = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001338 struct musb_hw_ep *hw_ep;
1339 void *mbase = musb->mregs;
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001340 int ret = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001341
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001342 dev_dbg(musb->controller, "<== static silicon ep config\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001343
1344 /* FIXME pick up ep0 maxpacket size */
1345
Felipe Balbica6d1b12008-08-08 12:40:54 +03001346 for (epnum = 1; epnum < musb->config->num_eps; epnum++) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001347 musb_ep_select(mbase, epnum);
1348 hw_ep = musb->endpoints + epnum;
1349
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001350 ret = musb_read_fifosize(musb, hw_ep, epnum);
1351 if (ret < 0)
Felipe Balbi550a7372008-07-24 12:27:36 +03001352 break;
Felipe Balbi550a7372008-07-24 12:27:36 +03001353
1354 /* FIXME set up hw_ep->{rx,tx}_double_buffered */
1355
Felipe Balbi550a7372008-07-24 12:27:36 +03001356 /* pick an RX/TX endpoint for bulk */
1357 if (hw_ep->max_packet_sz_tx < 512
1358 || hw_ep->max_packet_sz_rx < 512)
1359 continue;
1360
1361 /* REVISIT: this algorithm is lazy, we should at least
1362 * try to pick a double buffered endpoint.
1363 */
1364 if (musb->bulk_ep)
1365 continue;
1366 musb->bulk_ep = hw_ep;
Felipe Balbi550a7372008-07-24 12:27:36 +03001367 }
1368
Felipe Balbi550a7372008-07-24 12:27:36 +03001369 if (!musb->bulk_ep) {
1370 pr_debug("%s: missing bulk\n", musb_driver_name);
1371 return -EINVAL;
1372 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001373
1374 return 0;
1375}
1376
1377enum { MUSB_CONTROLLER_MHDRC, MUSB_CONTROLLER_HDRC, };
1378
1379/* Initialize MUSB (M)HDRC part of the USB hardware subsystem;
1380 * configure endpoints, or take their config from silicon
1381 */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001382static int __devinit musb_core_init(u16 musb_type, struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001383{
Felipe Balbi550a7372008-07-24 12:27:36 +03001384 u8 reg;
1385 char *type;
Maulik Mankad0ea52ff2009-12-22 16:19:53 +05301386 char aInfo[90], aRevision[32], aDate[12];
Felipe Balbi550a7372008-07-24 12:27:36 +03001387 void __iomem *mbase = musb->mregs;
1388 int status = 0;
1389 int i;
1390
1391 /* log core options (read using indexed model) */
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001392 reg = musb_read_configdata(mbase);
Felipe Balbi550a7372008-07-24 12:27:36 +03001393
1394 strcpy(aInfo, (reg & MUSB_CONFIGDATA_UTMIDW) ? "UTMI-16" : "UTMI-8");
Ajay Kumar Gupta51bf0d02009-12-28 13:40:41 +02001395 if (reg & MUSB_CONFIGDATA_DYNFIFO) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001396 strcat(aInfo, ", dyn FIFOs");
Ajay Kumar Gupta51bf0d02009-12-28 13:40:41 +02001397 musb->dyn_fifo = true;
1398 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001399 if (reg & MUSB_CONFIGDATA_MPRXE) {
1400 strcat(aInfo, ", bulk combine");
Felipe Balbi550a7372008-07-24 12:27:36 +03001401 musb->bulk_combine = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001402 }
1403 if (reg & MUSB_CONFIGDATA_MPTXE) {
1404 strcat(aInfo, ", bulk split");
Felipe Balbi550a7372008-07-24 12:27:36 +03001405 musb->bulk_split = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001406 }
1407 if (reg & MUSB_CONFIGDATA_HBRXE) {
1408 strcat(aInfo, ", HB-ISO Rx");
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001409 musb->hb_iso_rx = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001410 }
1411 if (reg & MUSB_CONFIGDATA_HBTXE) {
1412 strcat(aInfo, ", HB-ISO Tx");
Ajay Kumar Guptaa483d702009-04-03 16:16:17 -07001413 musb->hb_iso_tx = true;
Felipe Balbi550a7372008-07-24 12:27:36 +03001414 }
1415 if (reg & MUSB_CONFIGDATA_SOFTCONE)
1416 strcat(aInfo, ", SoftConn");
1417
1418 printk(KERN_DEBUG "%s: ConfigData=0x%02x (%s)\n",
1419 musb_driver_name, reg, aInfo);
1420
Felipe Balbi550a7372008-07-24 12:27:36 +03001421 aDate[0] = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001422 if (MUSB_CONTROLLER_MHDRC == musb_type) {
1423 musb->is_multipoint = 1;
1424 type = "M";
1425 } else {
1426 musb->is_multipoint = 0;
1427 type = "";
Felipe Balbi550a7372008-07-24 12:27:36 +03001428#ifndef CONFIG_USB_OTG_BLACKLIST_HUB
1429 printk(KERN_ERR
1430 "%s: kernel must blacklist external hubs\n",
1431 musb_driver_name);
1432#endif
Felipe Balbi550a7372008-07-24 12:27:36 +03001433 }
1434
1435 /* log release info */
Anand Gadiyar32c3b942009-11-16 21:09:21 +05301436 musb->hwvers = musb_read_hwvers(mbase);
1437 snprintf(aRevision, 32, "%d.%d%s", MUSB_HWVERS_MAJOR(musb->hwvers),
1438 MUSB_HWVERS_MINOR(musb->hwvers),
1439 (musb->hwvers & MUSB_HWVERS_RC) ? "RC" : "");
Felipe Balbi550a7372008-07-24 12:27:36 +03001440 printk(KERN_DEBUG "%s: %sHDRC RTL version %s %s\n",
1441 musb_driver_name, type, aRevision, aDate);
1442
1443 /* configure ep0 */
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001444 musb_configure_ep0(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001445
1446 /* discover endpoint configuration */
1447 musb->nr_endpoints = 1;
1448 musb->epmask = 1;
1449
Felipe Balbiad517e9e2010-01-21 15:33:54 +02001450 if (musb->dyn_fifo)
1451 status = ep_config_from_table(musb);
1452 else
1453 status = ep_config_from_hw(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001454
1455 if (status < 0)
1456 return status;
1457
1458 /* finish init, and print endpoint config */
1459 for (i = 0; i < musb->nr_endpoints; i++) {
1460 struct musb_hw_ep *hw_ep = musb->endpoints + i;
1461
1462 hw_ep->fifo = MUSB_FIFO_OFFSET(i) + mbase;
Arnd Bergmann9a35f872011-10-02 16:45:47 +02001463#if defined(CONFIG_USB_MUSB_TUSB6010) || defined (CONFIG_USB_MUSB_TUSB6010_MODULE)
Felipe Balbi550a7372008-07-24 12:27:36 +03001464 hw_ep->fifo_async = musb->async + 0x400 + MUSB_FIFO_OFFSET(i);
1465 hw_ep->fifo_sync = musb->sync + 0x400 + MUSB_FIFO_OFFSET(i);
1466 hw_ep->fifo_sync_va =
1467 musb->sync_va + 0x400 + MUSB_FIFO_OFFSET(i);
1468
1469 if (i == 0)
1470 hw_ep->conf = mbase - 0x400 + TUSB_EP0_CONF;
1471 else
1472 hw_ep->conf = mbase + 0x400 + (((i - 1) & 0xf) << 2);
1473#endif
1474
1475 hw_ep->regs = MUSB_EP_OFFSET(i, 0) + mbase;
Bryan Wuc6cf8b02008-12-02 21:33:48 +02001476 hw_ep->target_regs = musb_read_target_reg_base(i, mbase);
Felipe Balbi550a7372008-07-24 12:27:36 +03001477 hw_ep->rx_reinit = 1;
1478 hw_ep->tx_reinit = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001479
1480 if (hw_ep->max_packet_sz_tx) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001481 dev_dbg(musb->controller,
Felipe Balbi550a7372008-07-24 12:27:36 +03001482 "%s: hw_ep %d%s, %smax %d\n",
1483 musb_driver_name, i,
1484 hw_ep->is_shared_fifo ? "shared" : "tx",
1485 hw_ep->tx_double_buffered
1486 ? "doublebuffer, " : "",
1487 hw_ep->max_packet_sz_tx);
1488 }
1489 if (hw_ep->max_packet_sz_rx && !hw_ep->is_shared_fifo) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001490 dev_dbg(musb->controller,
Felipe Balbi550a7372008-07-24 12:27:36 +03001491 "%s: hw_ep %d%s, %smax %d\n",
1492 musb_driver_name, i,
1493 "rx",
1494 hw_ep->rx_double_buffered
1495 ? "doublebuffer, " : "",
1496 hw_ep->max_packet_sz_rx);
1497 }
1498 if (!(hw_ep->max_packet_sz_tx || hw_ep->max_packet_sz_rx))
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001499 dev_dbg(musb->controller, "hw_ep %d not configured\n", i);
Felipe Balbi550a7372008-07-24 12:27:36 +03001500 }
1501
1502 return 0;
1503}
1504
1505/*-------------------------------------------------------------------------*/
1506
Tony Lindgren59b479e2011-01-27 16:39:40 -08001507#if defined(CONFIG_SOC_OMAP2430) || defined(CONFIG_SOC_OMAP3430) || \
Mian Yousaf Kaukabd0678592011-11-01 08:37:40 +01001508 defined(CONFIG_ARCH_OMAP4) || defined(CONFIG_ARCH_U8500)
Felipe Balbi550a7372008-07-24 12:27:36 +03001509
1510static irqreturn_t generic_interrupt(int irq, void *__hci)
1511{
1512 unsigned long flags;
1513 irqreturn_t retval = IRQ_NONE;
1514 struct musb *musb = __hci;
1515
1516 spin_lock_irqsave(&musb->lock, flags);
1517
1518 musb->int_usb = musb_readb(musb->mregs, MUSB_INTRUSB);
1519 musb->int_tx = musb_readw(musb->mregs, MUSB_INTRTX);
1520 musb->int_rx = musb_readw(musb->mregs, MUSB_INTRRX);
1521
1522 if (musb->int_usb || musb->int_tx || musb->int_rx)
1523 retval = musb_interrupt(musb);
1524
1525 spin_unlock_irqrestore(&musb->lock, flags);
1526
Sergei Shtylyova5073b52009-03-27 12:52:43 -07001527 return retval;
Felipe Balbi550a7372008-07-24 12:27:36 +03001528}
1529
1530#else
1531#define generic_interrupt NULL
1532#endif
1533
1534/*
1535 * handle all the irqs defined by the HDRC core. for now we expect: other
1536 * irq sources (phy, dma, etc) will be handled first, musb->int_* values
1537 * will be assigned, and the irq will already have been acked.
1538 *
1539 * called in irq context with spinlock held, irqs blocked
1540 */
1541irqreturn_t musb_interrupt(struct musb *musb)
1542{
1543 irqreturn_t retval = IRQ_NONE;
1544 u8 devctl, power;
1545 int ep_num;
1546 u32 reg;
1547
1548 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
1549 power = musb_readb(musb->mregs, MUSB_POWER);
1550
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001551 dev_dbg(musb->controller, "** IRQ %s usb%04x tx%04x rx%04x\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001552 (devctl & MUSB_DEVCTL_HM) ? "host" : "peripheral",
1553 musb->int_usb, musb->int_tx, musb->int_rx);
1554
1555 /* the core can interrupt us for multiple reasons; docs have
1556 * a generic interrupt flowchart to follow
1557 */
Sergei Shtylyov7d9645f2010-06-24 23:07:06 +05301558 if (musb->int_usb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001559 retval |= musb_stage0_irq(musb, musb->int_usb,
1560 devctl, power);
1561
1562 /* "stage 1" is handling endpoint irqs */
1563
1564 /* handle endpoint 0 first */
1565 if (musb->int_tx & 1) {
1566 if (devctl & MUSB_DEVCTL_HM)
1567 retval |= musb_h_ep0_irq(musb);
1568 else
1569 retval |= musb_g_ep0_irq(musb);
1570 }
1571
1572 /* RX on endpoints 1-15 */
1573 reg = musb->int_rx >> 1;
1574 ep_num = 1;
1575 while (reg) {
1576 if (reg & 1) {
1577 /* musb_ep_select(musb->mregs, ep_num); */
1578 /* REVISIT just retval = ep->rx_irq(...) */
1579 retval = IRQ_HANDLED;
1580 if (devctl & MUSB_DEVCTL_HM) {
1581 if (is_host_capable())
1582 musb_host_rx(musb, ep_num);
1583 } else {
1584 if (is_peripheral_capable())
1585 musb_g_rx(musb, ep_num);
1586 }
1587 }
1588
1589 reg >>= 1;
1590 ep_num++;
1591 }
1592
1593 /* TX on endpoints 1-15 */
1594 reg = musb->int_tx >> 1;
1595 ep_num = 1;
1596 while (reg) {
1597 if (reg & 1) {
1598 /* musb_ep_select(musb->mregs, ep_num); */
1599 /* REVISIT just retval |= ep->tx_irq(...) */
1600 retval = IRQ_HANDLED;
1601 if (devctl & MUSB_DEVCTL_HM) {
1602 if (is_host_capable())
1603 musb_host_tx(musb, ep_num);
1604 } else {
1605 if (is_peripheral_capable())
1606 musb_g_tx(musb, ep_num);
1607 }
1608 }
1609 reg >>= 1;
1610 ep_num++;
1611 }
1612
Felipe Balbi550a7372008-07-24 12:27:36 +03001613 return retval;
1614}
Felipe Balbi981430a2011-05-11 13:02:23 +03001615EXPORT_SYMBOL_GPL(musb_interrupt);
Felipe Balbi550a7372008-07-24 12:27:36 +03001616
1617#ifndef CONFIG_MUSB_PIO_ONLY
Felipe Balbie9e8c852012-01-26 12:40:23 +02001618static bool __devinitdata use_dma = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001619
1620/* "modprobe ... use_dma=0" etc */
1621module_param(use_dma, bool, 0);
1622MODULE_PARM_DESC(use_dma, "enable/disable use of DMA");
1623
1624void musb_dma_completion(struct musb *musb, u8 epnum, u8 transmit)
1625{
1626 u8 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
1627
1628 /* called with controller lock already held */
1629
1630 if (!epnum) {
1631#ifndef CONFIG_USB_TUSB_OMAP_DMA
1632 if (!is_cppi_enabled()) {
1633 /* endpoint 0 */
1634 if (devctl & MUSB_DEVCTL_HM)
1635 musb_h_ep0_irq(musb);
1636 else
1637 musb_g_ep0_irq(musb);
1638 }
1639#endif
1640 } else {
1641 /* endpoints 1..15 */
1642 if (transmit) {
1643 if (devctl & MUSB_DEVCTL_HM) {
1644 if (is_host_capable())
1645 musb_host_tx(musb, epnum);
1646 } else {
1647 if (is_peripheral_capable())
1648 musb_g_tx(musb, epnum);
1649 }
1650 } else {
1651 /* receive */
1652 if (devctl & MUSB_DEVCTL_HM) {
1653 if (is_host_capable())
1654 musb_host_rx(musb, epnum);
1655 } else {
1656 if (is_peripheral_capable())
1657 musb_g_rx(musb, epnum);
1658 }
1659 }
1660 }
1661}
Arnd Bergmann9a35f872011-10-02 16:45:47 +02001662EXPORT_SYMBOL_GPL(musb_dma_completion);
Felipe Balbi550a7372008-07-24 12:27:36 +03001663
1664#else
1665#define use_dma 0
1666#endif
1667
1668/*-------------------------------------------------------------------------*/
1669
1670#ifdef CONFIG_SYSFS
1671
1672static ssize_t
1673musb_mode_show(struct device *dev, struct device_attribute *attr, char *buf)
1674{
1675 struct musb *musb = dev_to_musb(dev);
1676 unsigned long flags;
1677 int ret = -EINVAL;
1678
1679 spin_lock_irqsave(&musb->lock, flags);
Anatolij Gustschin3df00452011-05-05 12:11:21 +02001680 ret = sprintf(buf, "%s\n", otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +03001681 spin_unlock_irqrestore(&musb->lock, flags);
1682
1683 return ret;
1684}
1685
1686static ssize_t
1687musb_mode_store(struct device *dev, struct device_attribute *attr,
1688 const char *buf, size_t n)
1689{
1690 struct musb *musb = dev_to_musb(dev);
1691 unsigned long flags;
David Brownell96a274d2008-11-24 13:06:47 +02001692 int status;
Felipe Balbi550a7372008-07-24 12:27:36 +03001693
1694 spin_lock_irqsave(&musb->lock, flags);
David Brownell96a274d2008-11-24 13:06:47 +02001695 if (sysfs_streq(buf, "host"))
1696 status = musb_platform_set_mode(musb, MUSB_HOST);
1697 else if (sysfs_streq(buf, "peripheral"))
1698 status = musb_platform_set_mode(musb, MUSB_PERIPHERAL);
1699 else if (sysfs_streq(buf, "otg"))
1700 status = musb_platform_set_mode(musb, MUSB_OTG);
1701 else
1702 status = -EINVAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001703 spin_unlock_irqrestore(&musb->lock, flags);
1704
David Brownell96a274d2008-11-24 13:06:47 +02001705 return (status == 0) ? n : status;
Felipe Balbi550a7372008-07-24 12:27:36 +03001706}
1707static DEVICE_ATTR(mode, 0644, musb_mode_show, musb_mode_store);
1708
1709static ssize_t
1710musb_vbus_store(struct device *dev, struct device_attribute *attr,
1711 const char *buf, size_t n)
1712{
1713 struct musb *musb = dev_to_musb(dev);
1714 unsigned long flags;
1715 unsigned long val;
1716
1717 if (sscanf(buf, "%lu", &val) < 1) {
Felipe Balbib3b1cc32009-12-15 11:08:43 +02001718 dev_err(dev, "Invalid VBUS timeout ms value\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001719 return -EINVAL;
1720 }
1721
1722 spin_lock_irqsave(&musb->lock, flags);
David Brownellf7f9d632009-03-31 12:32:12 -07001723 /* force T(a_wait_bcon) to be zero/unlimited *OR* valid */
1724 musb->a_wait_bcon = val ? max_t(int, val, OTG_TIME_A_WAIT_BCON) : 0 ;
David Brownell84e250f2009-03-31 12:30:04 -07001725 if (musb->xceiv->state == OTG_STATE_A_WAIT_BCON)
Felipe Balbi550a7372008-07-24 12:27:36 +03001726 musb->is_active = 0;
1727 musb_platform_try_idle(musb, jiffies + msecs_to_jiffies(val));
1728 spin_unlock_irqrestore(&musb->lock, flags);
1729
1730 return n;
1731}
1732
1733static ssize_t
1734musb_vbus_show(struct device *dev, struct device_attribute *attr, char *buf)
1735{
1736 struct musb *musb = dev_to_musb(dev);
1737 unsigned long flags;
1738 unsigned long val;
1739 int vbus;
1740
1741 spin_lock_irqsave(&musb->lock, flags);
1742 val = musb->a_wait_bcon;
David Brownellf7f9d632009-03-31 12:32:12 -07001743 /* FIXME get_vbus_status() is normally #defined as false...
1744 * and is effectively TUSB-specific.
1745 */
Felipe Balbi550a7372008-07-24 12:27:36 +03001746 vbus = musb_platform_get_vbus_status(musb);
1747 spin_unlock_irqrestore(&musb->lock, flags);
1748
David Brownellf7f9d632009-03-31 12:32:12 -07001749 return sprintf(buf, "Vbus %s, timeout %lu msec\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001750 vbus ? "on" : "off", val);
1751}
1752static DEVICE_ATTR(vbus, 0644, musb_vbus_show, musb_vbus_store);
1753
Felipe Balbi550a7372008-07-24 12:27:36 +03001754/* Gadget drivers can't know that a host is connected so they might want
1755 * to start SRP, but users can. This allows userspace to trigger SRP.
1756 */
1757static ssize_t
1758musb_srp_store(struct device *dev, struct device_attribute *attr,
1759 const char *buf, size_t n)
1760{
1761 struct musb *musb = dev_to_musb(dev);
1762 unsigned short srp;
1763
1764 if (sscanf(buf, "%hu", &srp) != 1
1765 || (srp != 1)) {
Felipe Balbib3b1cc32009-12-15 11:08:43 +02001766 dev_err(dev, "SRP: Value must be 1\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001767 return -EINVAL;
1768 }
1769
1770 if (srp == 1)
1771 musb_g_wakeup(musb);
1772
1773 return n;
1774}
1775static DEVICE_ATTR(srp, 0644, NULL, musb_srp_store);
1776
Felipe Balbi94375752009-12-15 11:08:38 +02001777static struct attribute *musb_attributes[] = {
1778 &dev_attr_mode.attr,
1779 &dev_attr_vbus.attr,
Felipe Balbi94375752009-12-15 11:08:38 +02001780 &dev_attr_srp.attr,
Felipe Balbi94375752009-12-15 11:08:38 +02001781 NULL
1782};
1783
1784static const struct attribute_group musb_attr_group = {
1785 .attrs = musb_attributes,
1786};
1787
Felipe Balbi550a7372008-07-24 12:27:36 +03001788#endif /* sysfs */
1789
1790/* Only used to provide driver mode change events */
1791static void musb_irq_work(struct work_struct *data)
1792{
1793 struct musb *musb = container_of(data, struct musb, irq_work);
1794 static int old_state;
1795
David Brownell84e250f2009-03-31 12:30:04 -07001796 if (musb->xceiv->state != old_state) {
1797 old_state = musb->xceiv->state;
Felipe Balbi550a7372008-07-24 12:27:36 +03001798 sysfs_notify(&musb->controller->kobj, NULL, "mode");
1799 }
1800}
1801
1802/* --------------------------------------------------------------------------
1803 * Init support
1804 */
1805
Felipe Balbie9e8c852012-01-26 12:40:23 +02001806static struct musb *__devinit
Felipe Balbica6d1b12008-08-08 12:40:54 +03001807allocate_instance(struct device *dev,
1808 struct musb_hdrc_config *config, void __iomem *mbase)
Felipe Balbi550a7372008-07-24 12:27:36 +03001809{
1810 struct musb *musb;
1811 struct musb_hw_ep *ep;
1812 int epnum;
Felipe Balbi550a7372008-07-24 12:27:36 +03001813 struct usb_hcd *hcd;
1814
Kay Sievers427c4f32008-11-07 01:52:53 +01001815 hcd = usb_create_hcd(&musb_hc_driver, dev, dev_name(dev));
Felipe Balbi550a7372008-07-24 12:27:36 +03001816 if (!hcd)
1817 return NULL;
1818 /* usbcore sets dev->driver_data to hcd, and sometimes uses that... */
1819
1820 musb = hcd_to_musb(hcd);
1821 INIT_LIST_HEAD(&musb->control);
1822 INIT_LIST_HEAD(&musb->in_bulk);
1823 INIT_LIST_HEAD(&musb->out_bulk);
1824
1825 hcd->uses_new_polling = 1;
Felipe Balbiec95d352011-02-24 10:36:53 +02001826 hcd->has_tt = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001827
1828 musb->vbuserr_retry = VBUSERR_RETRY_COUNT;
David Brownellf7f9d632009-03-31 12:32:12 -07001829 musb->a_wait_bcon = OTG_TIME_A_WAIT_BCON;
Ming Lei456bb162010-12-21 21:16:11 +08001830 dev_set_drvdata(dev, musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001831 musb->mregs = mbase;
1832 musb->ctrl_base = mbase;
1833 musb->nIrq = -ENODEV;
Felipe Balbica6d1b12008-08-08 12:40:54 +03001834 musb->config = config;
Kevin Hilman02582b92008-09-15 12:09:31 +02001835 BUG_ON(musb->config->num_eps > MUSB_C_NUM_EPS);
Felipe Balbi550a7372008-07-24 12:27:36 +03001836 for (epnum = 0, ep = musb->endpoints;
Felipe Balbica6d1b12008-08-08 12:40:54 +03001837 epnum < musb->config->num_eps;
Felipe Balbi550a7372008-07-24 12:27:36 +03001838 epnum++, ep++) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001839 ep->musb = musb;
1840 ep->epnum = epnum;
1841 }
1842
1843 musb->controller = dev;
Felipe Balbi743411b2010-12-01 13:22:05 +02001844
Felipe Balbi550a7372008-07-24 12:27:36 +03001845 return musb;
1846}
1847
1848static void musb_free(struct musb *musb)
1849{
1850 /* this has multiple entry modes. it handles fault cleanup after
1851 * probe(), where things may be partially set up, as well as rmmod
1852 * cleanup after everything's been de-activated.
1853 */
1854
1855#ifdef CONFIG_SYSFS
Felipe Balbi94375752009-12-15 11:08:38 +02001856 sysfs_remove_group(&musb->controller->kobj, &musb_attr_group);
Felipe Balbi550a7372008-07-24 12:27:36 +03001857#endif
1858
Ajay Kumar Gupta97a39892009-01-24 17:56:39 -08001859 if (musb->nIrq >= 0) {
1860 if (musb->irq_wake)
1861 disable_irq_wake(musb->nIrq);
Felipe Balbi550a7372008-07-24 12:27:36 +03001862 free_irq(musb->nIrq, musb);
1863 }
1864 if (is_dma_capable() && musb->dma_controller) {
1865 struct dma_controller *c = musb->dma_controller;
1866
1867 (void) c->stop(c);
1868 dma_controller_destroy(c);
1869 }
1870
Felipe Balbi550a7372008-07-24 12:27:36 +03001871 kfree(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001872}
1873
1874/*
1875 * Perform generic per-controller initialization.
1876 *
1877 * @pDevice: the controller (already clocked, etc)
1878 * @nIrq: irq
1879 * @mregs: virtual address of controller registers,
1880 * not yet corrected for platform-specific offsets
1881 */
Felipe Balbie9e8c852012-01-26 12:40:23 +02001882static int __devinit
Felipe Balbi550a7372008-07-24 12:27:36 +03001883musb_init_controller(struct device *dev, int nIrq, void __iomem *ctrl)
1884{
1885 int status;
1886 struct musb *musb;
1887 struct musb_hdrc_platform_data *plat = dev->platform_data;
1888
1889 /* The driver might handle more features than the board; OK.
1890 * Fail when the board needs a feature that's not enabled.
1891 */
1892 if (!plat) {
1893 dev_dbg(dev, "no platform_data?\n");
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001894 status = -ENODEV;
1895 goto fail0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001896 }
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001897
Felipe Balbi550a7372008-07-24 12:27:36 +03001898 /* allocate */
Felipe Balbica6d1b12008-08-08 12:40:54 +03001899 musb = allocate_instance(dev, plat->config, ctrl);
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001900 if (!musb) {
1901 status = -ENOMEM;
1902 goto fail0;
1903 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001904
Hema HK7acc6192011-02-28 14:19:34 +05301905 pm_runtime_use_autosuspend(musb->controller);
1906 pm_runtime_set_autosuspend_delay(musb->controller, 200);
1907 pm_runtime_enable(musb->controller);
1908
Felipe Balbi550a7372008-07-24 12:27:36 +03001909 spin_lock_init(&musb->lock);
1910 musb->board_mode = plat->mode;
1911 musb->board_set_power = plat->set_power;
Felipe Balbi550a7372008-07-24 12:27:36 +03001912 musb->min_power = plat->min_power;
Felipe Balbif7ec9432010-12-02 09:48:58 +02001913 musb->ops = plat->platform_ops;
Felipe Balbi550a7372008-07-24 12:27:36 +03001914
David Brownell84e250f2009-03-31 12:30:04 -07001915 /* The musb_platform_init() call:
1916 * - adjusts musb->mregs and musb->isr if needed,
1917 * - may initialize an integrated tranceiver
Kishon Vijay Abraham I721002e2012-06-22 17:02:45 +05301918 * - initializes musb->xceiv, usually by otg_get_phy()
David Brownell84e250f2009-03-31 12:30:04 -07001919 * - stops powering VBUS
David Brownell84e250f2009-03-31 12:30:04 -07001920 *
Joe Perches7c9d4402011-06-23 11:39:20 -07001921 * There are various transceiver configurations. Blackfin,
David Brownell84e250f2009-03-31 12:30:04 -07001922 * DaVinci, TUSB60x0, and others integrate them. OMAP3 uses
1923 * external/discrete ones in various flavors (twl4030 family,
1924 * isp1504, non-OTG, etc) mostly hooking up through ULPI.
Felipe Balbi550a7372008-07-24 12:27:36 +03001925 */
1926 musb->isr = generic_interrupt;
Hema Kalliguddiea65df52010-09-22 19:27:40 -05001927 status = musb_platform_init(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001928 if (status < 0)
Felipe Balbi03491762010-12-02 09:57:08 +02001929 goto fail1;
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001930
Felipe Balbi550a7372008-07-24 12:27:36 +03001931 if (!musb->isr) {
1932 status = -ENODEV;
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02001933 goto fail2;
Felipe Balbi550a7372008-07-24 12:27:36 +03001934 }
1935
Heikki Krogerusffb865b2010-03-25 13:25:28 +02001936 if (!musb->xceiv->io_ops) {
Grazvydas Ignotasbf070bc2012-03-21 16:35:52 +02001937 musb->xceiv->io_dev = musb->controller;
Heikki Krogerusffb865b2010-03-25 13:25:28 +02001938 musb->xceiv->io_priv = musb->mregs;
1939 musb->xceiv->io_ops = &musb_ulpi_access;
1940 }
1941
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02001942 pm_runtime_get_sync(musb->controller);
1943
Felipe Balbi550a7372008-07-24 12:27:36 +03001944#ifndef CONFIG_MUSB_PIO_ONLY
1945 if (use_dma && dev->dma_mask) {
1946 struct dma_controller *c;
1947
1948 c = dma_controller_create(musb, musb->mregs);
1949 musb->dma_controller = c;
1950 if (c)
1951 (void) c->start(c);
1952 }
1953#endif
1954 /* ideally this would be abstracted in platform setup */
1955 if (!is_dma_capable() || !musb->dma_controller)
1956 dev->dma_mask = NULL;
1957
1958 /* be sure interrupts are disabled before connecting ISR */
1959 musb_platform_disable(musb);
1960 musb_generic_disable(musb);
1961
1962 /* setup musb parts of the core (especially endpoints) */
Felipe Balbica6d1b12008-08-08 12:40:54 +03001963 status = musb_core_init(plat->config->multipoint
Felipe Balbi550a7372008-07-24 12:27:36 +03001964 ? MUSB_CONTROLLER_MHDRC
1965 : MUSB_CONTROLLER_HDRC, musb);
1966 if (status < 0)
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001967 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03001968
David Brownellf7f9d632009-03-31 12:32:12 -07001969 setup_timer(&musb->otg_timer, musb_otg_timer_func, (unsigned long) musb);
David Brownellf7f9d632009-03-31 12:32:12 -07001970
Felipe Balbi550a7372008-07-24 12:27:36 +03001971 /* Init IRQ workqueue before request_irq */
1972 INIT_WORK(&musb->irq_work, musb_irq_work);
1973
1974 /* attach to the IRQ */
Kay Sievers427c4f32008-11-07 01:52:53 +01001975 if (request_irq(nIrq, musb->isr, 0, dev_name(dev), musb)) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001976 dev_err(dev, "request_irq %d failed!\n", nIrq);
1977 status = -ENODEV;
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02001978 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03001979 }
1980 musb->nIrq = nIrq;
1981/* FIXME this handles wakeup irqs wrong */
Felipe Balbic48a5152008-11-24 13:06:53 +02001982 if (enable_irq_wake(nIrq) == 0) {
1983 musb->irq_wake = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +03001984 device_init_wakeup(dev, 1);
Felipe Balbic48a5152008-11-24 13:06:53 +02001985 } else {
1986 musb->irq_wake = 0;
1987 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001988
David Brownell84e250f2009-03-31 12:30:04 -07001989 /* host side needs more setup */
1990 if (is_host_enabled(musb)) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001991 struct usb_hcd *hcd = musb_to_hcd(musb);
1992
Heikki Krogerus6e13c652012-02-13 13:24:20 +02001993 otg_set_host(musb->xceiv->otg, &hcd->self);
David Brownell84e250f2009-03-31 12:30:04 -07001994
1995 if (is_otg_enabled(musb))
Felipe Balbi550a7372008-07-24 12:27:36 +03001996 hcd->self.otg_port = 1;
Heikki Krogerusd445b6d2012-02-13 13:24:15 +02001997 musb->xceiv->otg->host = &hcd->self;
Felipe Balbi550a7372008-07-24 12:27:36 +03001998 hcd->power_budget = 2 * (plat->power ? : 250);
Ajay Kumar Gupta5fc4e772009-12-28 13:40:42 +02001999
2000 /* program PHY to use external vBus if required */
2001 if (plat->extvbus) {
Mike Frysingeradb3ee42010-03-12 10:27:21 +02002002 u8 busctl = musb_read_ulpi_buscontrol(musb->mregs);
Ajay Kumar Gupta5fc4e772009-12-28 13:40:42 +02002003 busctl |= MUSB_ULPI_USE_EXTVBUS;
Mike Frysingeradb3ee42010-03-12 10:27:21 +02002004 musb_write_ulpi_buscontrol(musb->mregs, busctl);
Ajay Kumar Gupta5fc4e772009-12-28 13:40:42 +02002005 }
Felipe Balbi550a7372008-07-24 12:27:36 +03002006 }
Felipe Balbi550a7372008-07-24 12:27:36 +03002007
2008 /* For the host-only role, we can activate right away.
2009 * (We expect the ID pin to be forcibly grounded!!)
2010 * Otherwise, wait till the gadget driver hooks up.
2011 */
2012 if (!is_otg_enabled(musb) && is_host_enabled(musb)) {
Anand Gadiyar07a8cdd2010-11-18 18:54:17 +05302013 struct usb_hcd *hcd = musb_to_hcd(musb);
2014
Felipe Balbi550a7372008-07-24 12:27:36 +03002015 MUSB_HST_MODE(musb);
Heikki Krogerusd445b6d2012-02-13 13:24:15 +02002016 musb->xceiv->otg->default_a = 1;
David Brownell84e250f2009-03-31 12:30:04 -07002017 musb->xceiv->state = OTG_STATE_A_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +03002018
Felipe Balbicd704692012-02-29 16:46:23 +02002019 status = usb_add_hcd(musb_to_hcd(musb), 0, 0);
Felipe Balbi550a7372008-07-24 12:27:36 +03002020
Anand Gadiyar07a8cdd2010-11-18 18:54:17 +05302021 hcd->self.uses_pio_for_control = 1;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03002022 dev_dbg(musb->controller, "%s mode, status %d, devctl %02x %c\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03002023 "HOST", status,
2024 musb_readb(musb->mregs, MUSB_DEVCTL),
2025 (musb_readb(musb->mregs, MUSB_DEVCTL)
2026 & MUSB_DEVCTL_BDEVICE
2027 ? 'B' : 'A'));
2028
2029 } else /* peripheral is enabled */ {
2030 MUSB_DEV_MODE(musb);
Heikki Krogerusd445b6d2012-02-13 13:24:15 +02002031 musb->xceiv->otg->default_a = 0;
David Brownell84e250f2009-03-31 12:30:04 -07002032 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +03002033
2034 status = musb_gadget_setup(musb);
2035
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03002036 dev_dbg(musb->controller, "%s mode, status %d, dev%02x\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03002037 is_otg_enabled(musb) ? "OTG" : "PERIPHERAL",
2038 status,
2039 musb_readb(musb->mregs, MUSB_DEVCTL));
2040
2041 }
Sergei Shtylyov461972d2010-03-25 13:14:32 +02002042 if (status < 0)
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002043 goto fail3;
Felipe Balbi550a7372008-07-24 12:27:36 +03002044
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02002045 status = musb_init_debugfs(musb);
2046 if (status < 0)
Felipe Balbib0f9da72010-03-25 13:25:18 +02002047 goto fail4;
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02002048
Felipe Balbi550a7372008-07-24 12:27:36 +03002049#ifdef CONFIG_SYSFS
Felipe Balbi94375752009-12-15 11:08:38 +02002050 status = sysfs_create_group(&musb->controller->kobj, &musb_attr_group);
Felipe Balbi28c2c512008-09-11 11:53:25 +03002051 if (status)
Felipe Balbib0f9da72010-03-25 13:25:18 +02002052 goto fail5;
Sergei Shtylyov461972d2010-03-25 13:14:32 +02002053#endif
Felipe Balbi28c2c512008-09-11 11:53:25 +03002054
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02002055 pm_runtime_put(musb->controller);
2056
Felipe Balbiab3bbfa2010-01-21 15:33:58 +02002057 dev_info(dev, "USB %s mode controller at %p using %s, IRQ %d\n",
2058 ({char *s;
2059 switch (musb->board_mode) {
2060 case MUSB_HOST: s = "Host"; break;
2061 case MUSB_PERIPHERAL: s = "Peripheral"; break;
2062 default: s = "OTG"; break;
2063 }; s; }),
2064 ctrl,
2065 (is_dma_capable() && musb->dma_controller)
2066 ? "DMA" : "PIO",
2067 musb->nIrq);
2068
Felipe Balbi28c2c512008-09-11 11:53:25 +03002069 return 0;
2070
Felipe Balbib0f9da72010-03-25 13:25:18 +02002071fail5:
2072 musb_exit_debugfs(musb);
2073
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002074fail4:
2075 if (!is_otg_enabled(musb) && is_host_enabled(musb))
2076 usb_remove_hcd(musb_to_hcd(musb));
2077 else
2078 musb_gadget_cleanup(musb);
2079
2080fail3:
Grazvydas Ignotasc04352a2012-02-04 19:43:51 +02002081 pm_runtime_put_sync(musb->controller);
2082
2083fail2:
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002084 if (musb->irq_wake)
2085 device_init_wakeup(dev, 0);
Felipe Balbi28c2c512008-09-11 11:53:25 +03002086 musb_platform_exit(musb);
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002087
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002088fail1:
Felipe Balbi28c2c512008-09-11 11:53:25 +03002089 dev_err(musb->controller,
2090 "musb_init_controller failed with status %d\n", status);
2091
Felipe Balbi28c2c512008-09-11 11:53:25 +03002092 musb_free(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03002093
Sergei Shtylyov34e2beb2010-03-25 13:14:33 +02002094fail0:
2095
Felipe Balbi550a7372008-07-24 12:27:36 +03002096 return status;
2097
Felipe Balbi550a7372008-07-24 12:27:36 +03002098}
2099
2100/*-------------------------------------------------------------------------*/
2101
2102/* all implementations (PCI bridge to FPGA, VLYNQ, etc) should just
2103 * bridge to a platform device; this driver then suffices.
2104 */
2105
2106#ifndef CONFIG_MUSB_PIO_ONLY
2107static u64 *orig_dma_mask;
2108#endif
2109
Felipe Balbie9e8c852012-01-26 12:40:23 +02002110static int __devinit musb_probe(struct platform_device *pdev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002111{
2112 struct device *dev = &pdev->dev;
Hema Kalliguddifcf173e2010-09-29 11:26:39 -05002113 int irq = platform_get_irq_byname(pdev, "mc");
Felipe Balbida5108e2010-01-21 15:33:57 +02002114 int status;
Felipe Balbi550a7372008-07-24 12:27:36 +03002115 struct resource *iomem;
2116 void __iomem *base;
2117
2118 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Sergei Shtylyov541079d2010-12-10 21:03:29 +03002119 if (!iomem || irq <= 0)
Felipe Balbi550a7372008-07-24 12:27:36 +03002120 return -ENODEV;
2121
Felipe Balbi195e9e42009-12-15 11:08:42 +02002122 base = ioremap(iomem->start, resource_size(iomem));
Felipe Balbi550a7372008-07-24 12:27:36 +03002123 if (!base) {
2124 dev_err(dev, "ioremap failed\n");
2125 return -ENOMEM;
2126 }
2127
2128#ifndef CONFIG_MUSB_PIO_ONLY
2129 /* clobbered by use_dma=n */
2130 orig_dma_mask = dev->dma_mask;
2131#endif
Felipe Balbida5108e2010-01-21 15:33:57 +02002132 status = musb_init_controller(dev, irq, base);
2133 if (status < 0)
2134 iounmap(base);
2135
2136 return status;
Felipe Balbi550a7372008-07-24 12:27:36 +03002137}
2138
Felipe Balbie9e8c852012-01-26 12:40:23 +02002139static int __devexit musb_remove(struct platform_device *pdev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002140{
2141 struct musb *musb = dev_to_musb(&pdev->dev);
2142 void __iomem *ctrl_base = musb->ctrl_base;
2143
2144 /* this gets called on rmmod.
2145 * - Host mode: host may still be active
2146 * - Peripheral mode: peripheral is deactivated (or never-activated)
2147 * - OTG mode: both roles are deactivated (or never-activated)
2148 */
Felipe Balbi7f7f9e22010-03-12 10:29:11 +02002149 musb_exit_debugfs(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03002150 musb_shutdown(pdev);
Sergei Shtylyov461972d2010-03-25 13:14:32 +02002151
Felipe Balbi550a7372008-07-24 12:27:36 +03002152 musb_free(musb);
2153 iounmap(ctrl_base);
2154 device_init_wakeup(&pdev->dev, 0);
2155#ifndef CONFIG_MUSB_PIO_ONLY
2156 pdev->dev.dma_mask = orig_dma_mask;
2157#endif
2158 return 0;
2159}
2160
2161#ifdef CONFIG_PM
2162
Felipe Balbi3c8a5fc2010-12-02 12:28:39 +02002163static void musb_save_context(struct musb *musb)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002164{
2165 int i;
2166 void __iomem *musb_base = musb->mregs;
Bob Liuae9b2ad2010-09-24 13:44:07 +03002167 void __iomem *epio;
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002168
2169 if (is_host_enabled(musb)) {
Felipe Balbi74211072010-12-01 13:53:27 +02002170 musb->context.frame = musb_readw(musb_base, MUSB_FRAME);
2171 musb->context.testmode = musb_readb(musb_base, MUSB_TESTMODE);
2172 musb->context.busctl = musb_read_ulpi_buscontrol(musb->mregs);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002173 }
Felipe Balbi74211072010-12-01 13:53:27 +02002174 musb->context.power = musb_readb(musb_base, MUSB_POWER);
2175 musb->context.intrtxe = musb_readw(musb_base, MUSB_INTRTXE);
2176 musb->context.intrrxe = musb_readw(musb_base, MUSB_INTRRXE);
2177 musb->context.intrusbe = musb_readb(musb_base, MUSB_INTRUSBE);
2178 musb->context.index = musb_readb(musb_base, MUSB_INDEX);
2179 musb->context.devctl = musb_readb(musb_base, MUSB_DEVCTL);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002180
Bob Liuae9b2ad2010-09-24 13:44:07 +03002181 for (i = 0; i < musb->config->num_eps; ++i) {
Felipe Balbie4e5b1362011-06-27 15:57:46 +03002182 struct musb_hw_ep *hw_ep;
2183
2184 hw_ep = &musb->endpoints[i];
2185 if (!hw_ep)
2186 continue;
2187
2188 epio = hw_ep->regs;
2189 if (!epio)
2190 continue;
2191
Vikram Panditaea737552011-09-07 09:19:23 -07002192 musb_writeb(musb_base, MUSB_INDEX, i);
Felipe Balbi74211072010-12-01 13:53:27 +02002193 musb->context.index_regs[i].txmaxp =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002194 musb_readw(epio, MUSB_TXMAXP);
Felipe Balbi74211072010-12-01 13:53:27 +02002195 musb->context.index_regs[i].txcsr =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002196 musb_readw(epio, MUSB_TXCSR);
Felipe Balbi74211072010-12-01 13:53:27 +02002197 musb->context.index_regs[i].rxmaxp =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002198 musb_readw(epio, MUSB_RXMAXP);
Felipe Balbi74211072010-12-01 13:53:27 +02002199 musb->context.index_regs[i].rxcsr =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002200 musb_readw(epio, MUSB_RXCSR);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002201
2202 if (musb->dyn_fifo) {
Felipe Balbi74211072010-12-01 13:53:27 +02002203 musb->context.index_regs[i].txfifoadd =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002204 musb_read_txfifoadd(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002205 musb->context.index_regs[i].rxfifoadd =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002206 musb_read_rxfifoadd(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002207 musb->context.index_regs[i].txfifosz =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002208 musb_read_txfifosz(musb_base);
Felipe Balbi74211072010-12-01 13:53:27 +02002209 musb->context.index_regs[i].rxfifosz =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002210 musb_read_rxfifosz(musb_base);
2211 }
2212 if (is_host_enabled(musb)) {
Felipe Balbi74211072010-12-01 13:53:27 +02002213 musb->context.index_regs[i].txtype =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002214 musb_readb(epio, MUSB_TXTYPE);
Felipe Balbi74211072010-12-01 13:53:27 +02002215 musb->context.index_regs[i].txinterval =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002216 musb_readb(epio, MUSB_TXINTERVAL);
Felipe Balbi74211072010-12-01 13:53:27 +02002217 musb->context.index_regs[i].rxtype =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002218 musb_readb(epio, MUSB_RXTYPE);
Felipe Balbi74211072010-12-01 13:53:27 +02002219 musb->context.index_regs[i].rxinterval =
Bob Liuae9b2ad2010-09-24 13:44:07 +03002220 musb_readb(epio, MUSB_RXINTERVAL);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002221
Felipe Balbi74211072010-12-01 13:53:27 +02002222 musb->context.index_regs[i].txfunaddr =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002223 musb_read_txfunaddr(musb_base, i);
Felipe Balbi74211072010-12-01 13:53:27 +02002224 musb->context.index_regs[i].txhubaddr =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002225 musb_read_txhubaddr(musb_base, i);
Felipe Balbi74211072010-12-01 13:53:27 +02002226 musb->context.index_regs[i].txhubport =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002227 musb_read_txhubport(musb_base, i);
2228
Felipe Balbi74211072010-12-01 13:53:27 +02002229 musb->context.index_regs[i].rxfunaddr =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002230 musb_read_rxfunaddr(musb_base, i);
Felipe Balbi74211072010-12-01 13:53:27 +02002231 musb->context.index_regs[i].rxhubaddr =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002232 musb_read_rxhubaddr(musb_base, i);
Felipe Balbi74211072010-12-01 13:53:27 +02002233 musb->context.index_regs[i].rxhubport =
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002234 musb_read_rxhubport(musb_base, i);
2235 }
2236 }
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002237}
2238
Felipe Balbi3c8a5fc2010-12-02 12:28:39 +02002239static void musb_restore_context(struct musb *musb)
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002240{
2241 int i;
2242 void __iomem *musb_base = musb->mregs;
2243 void __iomem *ep_target_regs;
Bob Liuae9b2ad2010-09-24 13:44:07 +03002244 void __iomem *epio;
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002245
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002246 if (is_host_enabled(musb)) {
Felipe Balbi74211072010-12-01 13:53:27 +02002247 musb_writew(musb_base, MUSB_FRAME, musb->context.frame);
2248 musb_writeb(musb_base, MUSB_TESTMODE, musb->context.testmode);
2249 musb_write_ulpi_buscontrol(musb->mregs, musb->context.busctl);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002250 }
Felipe Balbi74211072010-12-01 13:53:27 +02002251 musb_writeb(musb_base, MUSB_POWER, musb->context.power);
2252 musb_writew(musb_base, MUSB_INTRTXE, musb->context.intrtxe);
2253 musb_writew(musb_base, MUSB_INTRRXE, musb->context.intrrxe);
2254 musb_writeb(musb_base, MUSB_INTRUSBE, musb->context.intrusbe);
2255 musb_writeb(musb_base, MUSB_DEVCTL, musb->context.devctl);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002256
Bob Liuae9b2ad2010-09-24 13:44:07 +03002257 for (i = 0; i < musb->config->num_eps; ++i) {
Felipe Balbie4e5b1362011-06-27 15:57:46 +03002258 struct musb_hw_ep *hw_ep;
2259
2260 hw_ep = &musb->endpoints[i];
2261 if (!hw_ep)
2262 continue;
2263
2264 epio = hw_ep->regs;
2265 if (!epio)
2266 continue;
2267
Vikram Panditaea737552011-09-07 09:19:23 -07002268 musb_writeb(musb_base, MUSB_INDEX, i);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002269 musb_writew(epio, MUSB_TXMAXP,
Felipe Balbi74211072010-12-01 13:53:27 +02002270 musb->context.index_regs[i].txmaxp);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002271 musb_writew(epio, MUSB_TXCSR,
Felipe Balbi74211072010-12-01 13:53:27 +02002272 musb->context.index_regs[i].txcsr);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002273 musb_writew(epio, MUSB_RXMAXP,
Felipe Balbi74211072010-12-01 13:53:27 +02002274 musb->context.index_regs[i].rxmaxp);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002275 musb_writew(epio, MUSB_RXCSR,
Felipe Balbi74211072010-12-01 13:53:27 +02002276 musb->context.index_regs[i].rxcsr);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002277
2278 if (musb->dyn_fifo) {
2279 musb_write_txfifosz(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002280 musb->context.index_regs[i].txfifosz);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002281 musb_write_rxfifosz(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002282 musb->context.index_regs[i].rxfifosz);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002283 musb_write_txfifoadd(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002284 musb->context.index_regs[i].txfifoadd);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002285 musb_write_rxfifoadd(musb_base,
Felipe Balbi74211072010-12-01 13:53:27 +02002286 musb->context.index_regs[i].rxfifoadd);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002287 }
2288
2289 if (is_host_enabled(musb)) {
Bob Liuae9b2ad2010-09-24 13:44:07 +03002290 musb_writeb(epio, MUSB_TXTYPE,
Felipe Balbi74211072010-12-01 13:53:27 +02002291 musb->context.index_regs[i].txtype);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002292 musb_writeb(epio, MUSB_TXINTERVAL,
Felipe Balbi74211072010-12-01 13:53:27 +02002293 musb->context.index_regs[i].txinterval);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002294 musb_writeb(epio, MUSB_RXTYPE,
Felipe Balbi74211072010-12-01 13:53:27 +02002295 musb->context.index_regs[i].rxtype);
Bob Liuae9b2ad2010-09-24 13:44:07 +03002296 musb_writeb(epio, MUSB_RXINTERVAL,
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002297
Felipe Balbi74211072010-12-01 13:53:27 +02002298 musb->context.index_regs[i].rxinterval);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002299 musb_write_txfunaddr(musb_base, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002300 musb->context.index_regs[i].txfunaddr);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002301 musb_write_txhubaddr(musb_base, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002302 musb->context.index_regs[i].txhubaddr);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002303 musb_write_txhubport(musb_base, i,
Felipe Balbi74211072010-12-01 13:53:27 +02002304 musb->context.index_regs[i].txhubport);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002305
2306 ep_target_regs =
2307 musb_read_target_reg_base(i, musb_base);
2308
2309 musb_write_rxfunaddr(ep_target_regs,
Felipe Balbi74211072010-12-01 13:53:27 +02002310 musb->context.index_regs[i].rxfunaddr);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002311 musb_write_rxhubaddr(ep_target_regs,
Felipe Balbi74211072010-12-01 13:53:27 +02002312 musb->context.index_regs[i].rxhubaddr);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002313 musb_write_rxhubport(ep_target_regs,
Felipe Balbi74211072010-12-01 13:53:27 +02002314 musb->context.index_regs[i].rxhubport);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002315 }
2316 }
Ajay Kumar Gupta3c5fec72011-07-08 15:06:13 +05302317 musb_writeb(musb_base, MUSB_INDEX, musb->context.index);
Ajay Kumar Gupta4f712e02010-01-21 15:33:52 +02002318}
2319
Magnus Damm48fea962009-07-08 13:22:56 +02002320static int musb_suspend(struct device *dev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002321{
Felipe Balbi82207962011-06-27 15:57:12 +03002322 struct musb *musb = dev_to_musb(dev);
Felipe Balbi550a7372008-07-24 12:27:36 +03002323 unsigned long flags;
Felipe Balbi550a7372008-07-24 12:27:36 +03002324
Felipe Balbi550a7372008-07-24 12:27:36 +03002325 spin_lock_irqsave(&musb->lock, flags);
2326
2327 if (is_peripheral_active(musb)) {
2328 /* FIXME force disconnect unless we know USB will wake
2329 * the system up quickly enough to respond ...
2330 */
2331 } else if (is_host_active(musb)) {
2332 /* we know all the children are suspended; sometimes
2333 * they will even be wakeup-enabled.
2334 */
2335 }
2336
Felipe Balbi550a7372008-07-24 12:27:36 +03002337 spin_unlock_irqrestore(&musb->lock, flags);
2338 return 0;
2339}
2340
Magnus Damm48fea962009-07-08 13:22:56 +02002341static int musb_resume_noirq(struct device *dev)
Felipe Balbi550a7372008-07-24 12:27:36 +03002342{
Felipe Balbi550a7372008-07-24 12:27:36 +03002343 /* for static cmos like DaVinci, register values were preserved
Kim Kyuwon0ec8fd72009-03-26 18:56:51 -07002344 * unless for some reason the whole soc powered down or the USB
2345 * module got reset through the PSC (vs just being disabled).
Felipe Balbi550a7372008-07-24 12:27:36 +03002346 */
Felipe Balbi550a7372008-07-24 12:27:36 +03002347 return 0;
2348}
2349
Hema HK7acc6192011-02-28 14:19:34 +05302350static int musb_runtime_suspend(struct device *dev)
2351{
2352 struct musb *musb = dev_to_musb(dev);
2353
2354 musb_save_context(musb);
2355
2356 return 0;
2357}
2358
2359static int musb_runtime_resume(struct device *dev)
2360{
2361 struct musb *musb = dev_to_musb(dev);
2362 static int first = 1;
2363
2364 /*
2365 * When pm_runtime_get_sync called for the first time in driver
2366 * init, some of the structure is still not initialized which is
2367 * used in restore function. But clock needs to be
2368 * enabled before any register access, so
2369 * pm_runtime_get_sync has to be called.
2370 * Also context restore without save does not make
2371 * any sense
2372 */
2373 if (!first)
2374 musb_restore_context(musb);
2375 first = 0;
2376
2377 return 0;
2378}
2379
Alexey Dobriyan47145212009-12-14 18:00:08 -08002380static const struct dev_pm_ops musb_dev_pm_ops = {
Magnus Damm48fea962009-07-08 13:22:56 +02002381 .suspend = musb_suspend,
2382 .resume_noirq = musb_resume_noirq,
Hema HK7acc6192011-02-28 14:19:34 +05302383 .runtime_suspend = musb_runtime_suspend,
2384 .runtime_resume = musb_runtime_resume,
Magnus Damm48fea962009-07-08 13:22:56 +02002385};
2386
2387#define MUSB_DEV_PM_OPS (&musb_dev_pm_ops)
Felipe Balbi550a7372008-07-24 12:27:36 +03002388#else
Magnus Damm48fea962009-07-08 13:22:56 +02002389#define MUSB_DEV_PM_OPS NULL
Felipe Balbi550a7372008-07-24 12:27:36 +03002390#endif
2391
2392static struct platform_driver musb_driver = {
2393 .driver = {
2394 .name = (char *)musb_driver_name,
2395 .bus = &platform_bus_type,
2396 .owner = THIS_MODULE,
Magnus Damm48fea962009-07-08 13:22:56 +02002397 .pm = MUSB_DEV_PM_OPS,
Felipe Balbi550a7372008-07-24 12:27:36 +03002398 },
Felipe Balbie9e8c852012-01-26 12:40:23 +02002399 .probe = musb_probe,
2400 .remove = __devexit_p(musb_remove),
Felipe Balbi550a7372008-07-24 12:27:36 +03002401 .shutdown = musb_shutdown,
Felipe Balbi550a7372008-07-24 12:27:36 +03002402};
2403
2404/*-------------------------------------------------------------------------*/
2405
2406static int __init musb_init(void)
2407{
Felipe Balbi550a7372008-07-24 12:27:36 +03002408 if (usb_disabled())
2409 return 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03002410
2411 pr_info("%s: version " MUSB_VERSION ", "
Felipe Balbi550a7372008-07-24 12:27:36 +03002412 "?dma?"
Felipe Balbi550a7372008-07-24 12:27:36 +03002413 ", "
Felipe Balbi62285962011-06-22 17:28:09 +03002414 "otg (peripheral+host)",
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03002415 musb_driver_name);
Felipe Balbie9e8c852012-01-26 12:40:23 +02002416 return platform_driver_register(&musb_driver);
Felipe Balbi550a7372008-07-24 12:27:36 +03002417}
Felipe Balbie9e8c852012-01-26 12:40:23 +02002418module_init(musb_init);
Felipe Balbi550a7372008-07-24 12:27:36 +03002419
2420static void __exit musb_cleanup(void)
2421{
2422 platform_driver_unregister(&musb_driver);
2423}
2424module_exit(musb_cleanup);