blob: d4aa779339f1c8ed9af9573d1eb92f80ee22f3c0 [file] [log] [blame]
Felipe Balbi550a7372008-07-24 12:27:36 +03001/*
2 * MUSB OTG driver peripheral support
3 *
4 * Copyright 2005 Mentor Graphics Corporation
5 * Copyright (C) 2005-2006 by Texas Instruments
6 * Copyright (C) 2006-2007 Nokia Corporation
Sergei Shtylyovcea83242009-11-18 22:51:18 +03007 * Copyright (C) 2009 MontaVista Software, Inc. <source@mvista.com>
Felipe Balbi550a7372008-07-24 12:27:36 +03008 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 * 02110-1301 USA
22 *
23 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
24 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
26 * NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
29 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
30 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 *
34 */
35
36#include <linux/kernel.h>
37#include <linux/list.h>
38#include <linux/timer.h>
39#include <linux/module.h>
40#include <linux/smp.h>
41#include <linux/spinlock.h>
42#include <linux/delay.h>
Felipe Balbi550a7372008-07-24 12:27:36 +030043#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Felipe Balbi550a7372008-07-24 12:27:36 +030045
46#include "musb_core.h"
47
48
Felipe Balbi550a7372008-07-24 12:27:36 +030049/* ----------------------------------------------------------------------- */
50
Mian Yousaf Kaukabc65bfa62011-01-04 12:47:02 +010051#define is_buffer_mapped(req) (is_dma_capable() && \
52 (req->map_state != UN_MAPPED))
53
Hema Kalliguddi92d27112010-11-15 04:24:01 -060054/* Maps the buffer to dma */
55
56static inline void map_dma_buffer(struct musb_request *request,
Mian Yousaf Kaukabc65bfa62011-01-04 12:47:02 +010057 struct musb *musb, struct musb_ep *musb_ep)
Hema Kalliguddi92d27112010-11-15 04:24:01 -060058{
Mian Yousaf Kaukab5f5761c2011-01-04 12:47:03 +010059 int compatible = true;
60 struct dma_controller *dma = musb->dma_controller;
61
Mian Yousaf Kaukabc65bfa62011-01-04 12:47:02 +010062 request->map_state = UN_MAPPED;
63
64 if (!is_dma_capable() || !musb_ep->dma)
65 return;
66
Mian Yousaf Kaukab5f5761c2011-01-04 12:47:03 +010067 /* Check if DMA engine can handle this request.
68 * DMA code must reject the USB request explicitly.
69 * Default behaviour is to map the request.
70 */
71 if (dma->is_compatible)
72 compatible = dma->is_compatible(musb_ep->dma,
73 musb_ep->packet_sz, request->request.buf,
74 request->request.length);
75 if (!compatible)
76 return;
77
Hema Kalliguddi92d27112010-11-15 04:24:01 -060078 if (request->request.dma == DMA_ADDR_INVALID) {
Sebastian Andrzej Siewior7b360f42013-08-13 19:35:43 +020079 dma_addr_t dma_addr;
80 int ret;
81
82 dma_addr = dma_map_single(
Hema Kalliguddi92d27112010-11-15 04:24:01 -060083 musb->controller,
84 request->request.buf,
85 request->request.length,
86 request->tx
87 ? DMA_TO_DEVICE
88 : DMA_FROM_DEVICE);
Sebastian Andrzej Siewior7b360f42013-08-13 19:35:43 +020089 ret = dma_mapping_error(musb->controller, dma_addr);
90 if (ret)
91 return;
92
93 request->request.dma = dma_addr;
Mian Yousaf Kaukabc65bfa62011-01-04 12:47:02 +010094 request->map_state = MUSB_MAPPED;
Hema Kalliguddi92d27112010-11-15 04:24:01 -060095 } else {
96 dma_sync_single_for_device(musb->controller,
97 request->request.dma,
98 request->request.length,
99 request->tx
100 ? DMA_TO_DEVICE
101 : DMA_FROM_DEVICE);
Mian Yousaf Kaukabc65bfa62011-01-04 12:47:02 +0100102 request->map_state = PRE_MAPPED;
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600103 }
104}
105
106/* Unmap the buffer from dma and maps it back to cpu */
107static inline void unmap_dma_buffer(struct musb_request *request,
108 struct musb *musb)
109{
Kishon Vijay Abraham I06d9db72013-03-15 18:58:50 +0530110 struct musb_ep *musb_ep = request->ep;
111
112 if (!is_buffer_mapped(request) || !musb_ep->dma)
Mian Yousaf Kaukabc65bfa62011-01-04 12:47:02 +0100113 return;
114
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600115 if (request->request.dma == DMA_ADDR_INVALID) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300116 dev_vdbg(musb->controller,
117 "not unmapping a never mapped buffer\n");
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600118 return;
119 }
Mian Yousaf Kaukabc65bfa62011-01-04 12:47:02 +0100120 if (request->map_state == MUSB_MAPPED) {
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600121 dma_unmap_single(musb->controller,
122 request->request.dma,
123 request->request.length,
124 request->tx
125 ? DMA_TO_DEVICE
126 : DMA_FROM_DEVICE);
127 request->request.dma = DMA_ADDR_INVALID;
Mian Yousaf Kaukabc65bfa62011-01-04 12:47:02 +0100128 } else { /* PRE_MAPPED */
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600129 dma_sync_single_for_cpu(musb->controller,
130 request->request.dma,
131 request->request.length,
132 request->tx
133 ? DMA_TO_DEVICE
134 : DMA_FROM_DEVICE);
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600135 }
Mian Yousaf Kaukabc65bfa62011-01-04 12:47:02 +0100136 request->map_state = UN_MAPPED;
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600137}
138
Felipe Balbi550a7372008-07-24 12:27:36 +0300139/*
140 * Immediately complete a request.
141 *
142 * @param request the request to complete
143 * @param status the status to complete the request with
144 * Context: controller locked, IRQs blocked.
145 */
146void musb_g_giveback(
147 struct musb_ep *ep,
148 struct usb_request *request,
149 int status)
150__releases(ep->musb->lock)
151__acquires(ep->musb->lock)
152{
153 struct musb_request *req;
154 struct musb *musb;
155 int busy = ep->busy;
156
157 req = to_musb_request(request);
158
Felipe Balbiad1adb82011-02-16 12:40:05 +0200159 list_del(&req->list);
Felipe Balbi550a7372008-07-24 12:27:36 +0300160 if (req->request.status == -EINPROGRESS)
161 req->request.status = status;
162 musb = req->musb;
163
164 ep->busy = 1;
165 spin_unlock(&musb->lock);
Kishon Vijay Abraham I06d9db72013-03-15 18:58:50 +0530166
167 if (!dma_mapping_error(&musb->g.dev, request->dma))
168 unmap_dma_buffer(req, musb);
169
Felipe Balbi550a7372008-07-24 12:27:36 +0300170 if (request->status == 0)
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300171 dev_dbg(musb->controller, "%s done request %p, %d/%d\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300172 ep->end_point.name, request,
173 req->request.actual, req->request.length);
174 else
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300175 dev_dbg(musb->controller, "%s request %p, %d/%d fault %d\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300176 ep->end_point.name, request,
177 req->request.actual, req->request.length,
178 request->status);
179 req->request.complete(&req->ep->end_point, &req->request);
180 spin_lock(&musb->lock);
181 ep->busy = busy;
182}
183
184/* ----------------------------------------------------------------------- */
185
186/*
187 * Abort requests queued to an endpoint using the status. Synchronous.
188 * caller locked controller and blocked irqs, and selected this ep.
189 */
190static void nuke(struct musb_ep *ep, const int status)
191{
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300192 struct musb *musb = ep->musb;
Felipe Balbi550a7372008-07-24 12:27:36 +0300193 struct musb_request *req = NULL;
194 void __iomem *epio = ep->musb->endpoints[ep->current_epnum].regs;
195
196 ep->busy = 1;
197
198 if (is_dma_capable() && ep->dma) {
199 struct dma_controller *c = ep->musb->dma_controller;
200 int value;
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700201
Felipe Balbi550a7372008-07-24 12:27:36 +0300202 if (ep->is_in) {
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700203 /*
204 * The programming guide says that we must not clear
205 * the DMAMODE bit before DMAENAB, so we only
206 * clear it in the second write...
207 */
Felipe Balbi550a7372008-07-24 12:27:36 +0300208 musb_writew(epio, MUSB_TXCSR,
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700209 MUSB_TXCSR_DMAMODE | MUSB_TXCSR_FLUSHFIFO);
Felipe Balbi550a7372008-07-24 12:27:36 +0300210 musb_writew(epio, MUSB_TXCSR,
211 0 | MUSB_TXCSR_FLUSHFIFO);
212 } else {
213 musb_writew(epio, MUSB_RXCSR,
214 0 | MUSB_RXCSR_FLUSHFIFO);
215 musb_writew(epio, MUSB_RXCSR,
216 0 | MUSB_RXCSR_FLUSHFIFO);
217 }
218
219 value = c->channel_abort(ep->dma);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300220 dev_dbg(musb->controller, "%s: abort DMA --> %d\n",
221 ep->name, value);
Felipe Balbi550a7372008-07-24 12:27:36 +0300222 c->channel_release(ep->dma);
223 ep->dma = NULL;
224 }
225
Felipe Balbiad1adb82011-02-16 12:40:05 +0200226 while (!list_empty(&ep->req_list)) {
227 req = list_first_entry(&ep->req_list, struct musb_request, list);
Felipe Balbi550a7372008-07-24 12:27:36 +0300228 musb_g_giveback(ep, &req->request, status);
229 }
230}
231
232/* ----------------------------------------------------------------------- */
233
234/* Data transfers - pure PIO, pure DMA, or mixed mode */
235
236/*
237 * This assumes the separate CPPI engine is responding to DMA requests
238 * from the usb core ... sequenced a bit differently from mentor dma.
239 */
240
241static inline int max_ep_writesize(struct musb *musb, struct musb_ep *ep)
242{
243 if (can_bulk_split(musb, ep->type))
244 return ep->hw_ep->max_packet_sz_tx;
245 else
246 return ep->packet_sz;
247}
248
Felipe Balbi550a7372008-07-24 12:27:36 +0300249/*
250 * An endpoint is transmitting data. This can be called either from
251 * the IRQ routine or from ep.queue() to kickstart a request on an
252 * endpoint.
253 *
254 * Context: controller locked, IRQs blocked, endpoint selected
255 */
256static void txstate(struct musb *musb, struct musb_request *req)
257{
258 u8 epnum = req->epnum;
259 struct musb_ep *musb_ep;
260 void __iomem *epio = musb->endpoints[epnum].regs;
261 struct usb_request *request;
262 u16 fifo_count = 0, csr;
263 int use_dma = 0;
264
265 musb_ep = req->ep;
266
Vikram Panditaabf710e2012-05-18 13:48:04 -0700267 /* Check if EP is disabled */
268 if (!musb_ep->desc) {
269 dev_dbg(musb->controller, "ep:%s disabled - ignore request\n",
270 musb_ep->end_point.name);
271 return;
272 }
273
Felipe Balbi550a7372008-07-24 12:27:36 +0300274 /* we shouldn't get here while DMA is active ... but we do ... */
275 if (dma_channel_status(musb_ep->dma) == MUSB_DMA_STATUS_BUSY) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300276 dev_dbg(musb->controller, "dma pending...\n");
Felipe Balbi550a7372008-07-24 12:27:36 +0300277 return;
278 }
279
280 /* read TXCSR before */
281 csr = musb_readw(epio, MUSB_TXCSR);
282
283 request = &req->request;
284 fifo_count = min(max_ep_writesize(musb, musb_ep),
285 (int)(request->length - request->actual));
286
287 if (csr & MUSB_TXCSR_TXPKTRDY) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300288 dev_dbg(musb->controller, "%s old packet still ready , txcsr %03x\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300289 musb_ep->end_point.name, csr);
290 return;
291 }
292
293 if (csr & MUSB_TXCSR_P_SENDSTALL) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300294 dev_dbg(musb->controller, "%s stalling, txcsr %03x\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300295 musb_ep->end_point.name, csr);
296 return;
297 }
298
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300299 dev_dbg(musb->controller, "hw_ep%d, maxpacket %d, fifo count %d, txcsr %03x\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300300 epnum, musb_ep->packet_sz, fifo_count,
301 csr);
302
303#ifndef CONFIG_MUSB_PIO_ONLY
Mian Yousaf Kaukabc65bfa62011-01-04 12:47:02 +0100304 if (is_buffer_mapped(req)) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300305 struct dma_controller *c = musb->dma_controller;
Ming Lei66af83d2010-09-20 10:32:06 +0300306 size_t request_size;
307
308 /* setup DMA, then program endpoint CSR */
309 request_size = min_t(size_t, request->length - request->actual,
310 musb_ep->dma->max_len);
Felipe Balbi550a7372008-07-24 12:27:36 +0300311
Ajay Kumar Guptad17d5352012-07-20 11:07:23 +0530312 use_dma = (request->dma != DMA_ADDR_INVALID && request_size);
Felipe Balbi550a7372008-07-24 12:27:36 +0300313
314 /* MUSB_TXCSR_P_ISO is still set correctly */
315
Mian Yousaf Kaukaba48ff902011-03-22 15:55:56 +0100316#if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_UX500_DMA)
Felipe Balbi550a7372008-07-24 12:27:36 +0300317 {
Anand Gadiyard1043a22009-04-02 12:07:08 -0700318 if (request_size < musb_ep->packet_sz)
Felipe Balbi550a7372008-07-24 12:27:36 +0300319 musb_ep->dma->desired_mode = 0;
320 else
321 musb_ep->dma->desired_mode = 1;
322
323 use_dma = use_dma && c->channel_program(
324 musb_ep->dma, musb_ep->packet_sz,
325 musb_ep->dma->desired_mode,
Cliff Cai796a83f2009-12-21 21:18:02 -0500326 request->dma + request->actual, request_size);
Felipe Balbi550a7372008-07-24 12:27:36 +0300327 if (use_dma) {
328 if (musb_ep->dma->desired_mode == 0) {
Sergei Shtylyovb6e434a2009-03-26 18:27:47 -0700329 /*
330 * We must not clear the DMAMODE bit
331 * before the DMAENAB bit -- and the
332 * latter doesn't always get cleared
333 * before we get here...
334 */
335 csr &= ~(MUSB_TXCSR_AUTOSET
336 | MUSB_TXCSR_DMAENAB);
337 musb_writew(epio, MUSB_TXCSR, csr
338 | MUSB_TXCSR_P_WZC_BITS);
339 csr &= ~MUSB_TXCSR_DMAMODE;
Felipe Balbi550a7372008-07-24 12:27:36 +0300340 csr |= (MUSB_TXCSR_DMAENAB |
341 MUSB_TXCSR_MODE);
342 /* against programming guide */
Ming Leif11d8932010-09-24 13:44:04 +0300343 } else {
344 csr |= (MUSB_TXCSR_DMAENAB
Felipe Balbi550a7372008-07-24 12:27:36 +0300345 | MUSB_TXCSR_DMAMODE
346 | MUSB_TXCSR_MODE);
supriya karanthbb3a2ef2012-12-06 11:12:48 +0530347 /*
348 * Enable Autoset according to table
349 * below
350 * bulk_split hb_mult Autoset_Enable
351 * 0 0 Yes(Normal)
352 * 0 >0 No(High BW ISO)
353 * 1 0 Yes(HS bulk)
354 * 1 >0 Yes(FS bulk)
355 */
356 if (!musb_ep->hb_mult ||
357 (musb_ep->hb_mult &&
358 can_bulk_split(musb,
359 musb_ep->type)))
Ming Leif11d8932010-09-24 13:44:04 +0300360 csr |= MUSB_TXCSR_AUTOSET;
361 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300362 csr &= ~MUSB_TXCSR_P_UNDERRUN;
Ming Leif11d8932010-09-24 13:44:04 +0300363
Felipe Balbi550a7372008-07-24 12:27:36 +0300364 musb_writew(epio, MUSB_TXCSR, csr);
365 }
366 }
367
Felipe Balbi550a7372008-07-24 12:27:36 +0300368#endif
Sebastian Andrzej Siewiorfc525752013-08-13 19:38:23 +0200369 if (is_cppi_enabled()) {
370 /* program endpoint CSR first, then setup DMA */
371 csr &= ~(MUSB_TXCSR_P_UNDERRUN | MUSB_TXCSR_TXPKTRDY);
372 csr |= MUSB_TXCSR_DMAENAB | MUSB_TXCSR_DMAMODE |
373 MUSB_TXCSR_MODE;
374 musb_writew(epio, MUSB_TXCSR, (MUSB_TXCSR_P_WZC_BITS &
375 ~MUSB_TXCSR_P_UNDERRUN) | csr);
376
377 /* ensure writebuffer is empty */
378 csr = musb_readw(epio, MUSB_TXCSR);
379
380 /*
381 * NOTE host side sets DMAENAB later than this; both are
382 * OK since the transfer dma glue (between CPPI and
383 * Mentor fifos) just tells CPPI it could start. Data
384 * only moves to the USB TX fifo when both fifos are
385 * ready.
386 */
387 /*
388 * "mode" is irrelevant here; handle terminating ZLPs
389 * like PIO does, since the hardware RNDIS mode seems
390 * unreliable except for the
391 * last-packet-is-already-short case.
392 */
393 use_dma = use_dma && c->channel_program(
394 musb_ep->dma, musb_ep->packet_sz,
395 0,
396 request->dma + request->actual,
397 request_size);
398 if (!use_dma) {
399 c->channel_release(musb_ep->dma);
400 musb_ep->dma = NULL;
401 csr &= ~MUSB_TXCSR_DMAENAB;
402 musb_writew(epio, MUSB_TXCSR, csr);
403 /* invariant: prequest->buf is non-null */
404 }
405 } else if (tusb_dma_omap())
406 use_dma = use_dma && c->channel_program(
407 musb_ep->dma, musb_ep->packet_sz,
408 request->zero,
409 request->dma + request->actual,
410 request_size);
Felipe Balbi550a7372008-07-24 12:27:36 +0300411 }
412#endif
413
414 if (!use_dma) {
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600415 /*
416 * Unmap the dma buffer back to cpu if dma channel
417 * programming fails
418 */
Mian Yousaf Kaukabc65bfa62011-01-04 12:47:02 +0100419 unmap_dma_buffer(req, musb);
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600420
Felipe Balbi550a7372008-07-24 12:27:36 +0300421 musb_write_fifo(musb_ep->hw_ep, fifo_count,
422 (u8 *) (request->buf + request->actual));
423 request->actual += fifo_count;
424 csr |= MUSB_TXCSR_TXPKTRDY;
425 csr &= ~MUSB_TXCSR_P_UNDERRUN;
426 musb_writew(epio, MUSB_TXCSR, csr);
427 }
428
429 /* host may already have the data when this message shows... */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300430 dev_dbg(musb->controller, "%s TX/IN %s len %d/%d, txcsr %04x, fifo %d/%d\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300431 musb_ep->end_point.name, use_dma ? "dma" : "pio",
432 request->actual, request->length,
433 musb_readw(epio, MUSB_TXCSR),
434 fifo_count,
435 musb_readw(epio, MUSB_TXMAXP));
436}
437
438/*
439 * FIFO state update (e.g. data ready).
440 * Called from IRQ, with controller locked.
441 */
442void musb_g_tx(struct musb *musb, u8 epnum)
443{
444 u16 csr;
Felipe Balbiad1adb82011-02-16 12:40:05 +0200445 struct musb_request *req;
Felipe Balbi550a7372008-07-24 12:27:36 +0300446 struct usb_request *request;
447 u8 __iomem *mbase = musb->mregs;
448 struct musb_ep *musb_ep = &musb->endpoints[epnum].ep_in;
449 void __iomem *epio = musb->endpoints[epnum].regs;
450 struct dma_channel *dma;
451
452 musb_ep_select(mbase, epnum);
Felipe Balbiad1adb82011-02-16 12:40:05 +0200453 req = next_request(musb_ep);
454 request = &req->request;
Felipe Balbi550a7372008-07-24 12:27:36 +0300455
456 csr = musb_readw(epio, MUSB_TXCSR);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300457 dev_dbg(musb->controller, "<== %s, txcsr %04x\n", musb_ep->end_point.name, csr);
Felipe Balbi550a7372008-07-24 12:27:36 +0300458
459 dma = is_dma_capable() ? musb_ep->dma : NULL;
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300460
461 /*
462 * REVISIT: for high bandwidth, MUSB_TXCSR_P_INCOMPTX
463 * probably rates reporting as a host error.
464 */
465 if (csr & MUSB_TXCSR_P_SENTSTALL) {
466 csr |= MUSB_TXCSR_P_WZC_BITS;
467 csr &= ~MUSB_TXCSR_P_SENTSTALL;
468 musb_writew(epio, MUSB_TXCSR, csr);
469 return;
470 }
471
472 if (csr & MUSB_TXCSR_P_UNDERRUN) {
473 /* We NAKed, no big deal... little reason to care. */
474 csr |= MUSB_TXCSR_P_WZC_BITS;
475 csr &= ~(MUSB_TXCSR_P_UNDERRUN | MUSB_TXCSR_TXPKTRDY);
476 musb_writew(epio, MUSB_TXCSR, csr);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300477 dev_vdbg(musb->controller, "underrun on ep%d, req %p\n",
478 epnum, request);
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300479 }
480
481 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
482 /*
483 * SHOULD NOT HAPPEN... has with CPPI though, after
484 * changing SENDSTALL (and other cases); harmless?
Felipe Balbi550a7372008-07-24 12:27:36 +0300485 */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300486 dev_dbg(musb->controller, "%s dma still busy?\n", musb_ep->end_point.name);
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300487 return;
488 }
489
490 if (request) {
491 u8 is_dma = 0;
492
493 if (dma && (csr & MUSB_TXCSR_DMAENAB)) {
494 is_dma = 1;
Felipe Balbi550a7372008-07-24 12:27:36 +0300495 csr |= MUSB_TXCSR_P_WZC_BITS;
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300496 csr &= ~(MUSB_TXCSR_DMAENAB | MUSB_TXCSR_P_UNDERRUN |
Mian Yousaf Kaukab100d4a92011-03-15 16:24:24 +0100497 MUSB_TXCSR_TXPKTRDY | MUSB_TXCSR_AUTOSET);
Felipe Balbi550a7372008-07-24 12:27:36 +0300498 musb_writew(epio, MUSB_TXCSR, csr);
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300499 /* Ensure writebuffer is empty. */
500 csr = musb_readw(epio, MUSB_TXCSR);
501 request->actual += musb_ep->dma->actual_len;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300502 dev_dbg(musb->controller, "TXCSR%d %04x, DMA off, len %zu, req %p\n",
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300503 epnum, csr, musb_ep->dma->actual_len, request);
Felipe Balbi550a7372008-07-24 12:27:36 +0300504 }
505
Ming Leie7379aa2010-09-24 13:44:14 +0300506 /*
507 * First, maybe a terminating short packet. Some DMA
508 * engines might handle this by themselves.
509 */
510 if ((request->zero && request->length
511 && (request->length % musb_ep->packet_sz == 0)
512 && (request->actual == request->length))
Mian Yousaf Kaukaba48ff902011-03-22 15:55:56 +0100513#if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_UX500_DMA)
Ming Leie7379aa2010-09-24 13:44:14 +0300514 || (is_dma && (!dma->desired_mode ||
515 (request->actual &
516 (musb_ep->packet_sz - 1))))
Felipe Balbi550a7372008-07-24 12:27:36 +0300517#endif
Ming Leie7379aa2010-09-24 13:44:14 +0300518 ) {
519 /*
520 * On DMA completion, FIFO may not be
521 * available yet...
522 */
523 if (csr & MUSB_TXCSR_TXPKTRDY)
524 return;
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300525
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300526 dev_dbg(musb->controller, "sending zero pkt\n");
Ming Leie7379aa2010-09-24 13:44:14 +0300527 musb_writew(epio, MUSB_TXCSR, MUSB_TXCSR_MODE
528 | MUSB_TXCSR_TXPKTRDY);
529 request->zero = 0;
530 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300531
Ming Leie7379aa2010-09-24 13:44:14 +0300532 if (request->actual == request->length) {
533 musb_g_giveback(musb_ep, request, 0);
Supriya Karanth39287072012-02-17 14:54:52 +0530534 /*
535 * In the giveback function the MUSB lock is
536 * released and acquired after sometime. During
537 * this time period the INDEX register could get
538 * changed by the gadget_queue function especially
539 * on SMP systems. Reselect the INDEX to be sure
540 * we are reading/modifying the right registers
541 */
542 musb_ep_select(mbase, epnum);
Felipe Balbiad1adb82011-02-16 12:40:05 +0200543 req = musb_ep->desc ? next_request(musb_ep) : NULL;
544 if (!req) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300545 dev_dbg(musb->controller, "%s idle now\n",
Ming Leie7379aa2010-09-24 13:44:14 +0300546 musb_ep->end_point.name);
547 return;
Sergei Shtylyov95962a72009-12-16 20:38:31 +0300548 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300549 }
550
Felipe Balbiad1adb82011-02-16 12:40:05 +0200551 txstate(musb, req);
Sergei Shtylyov7723de72009-11-18 22:55:28 +0300552 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300553}
554
555/* ------------------------------------------------------------ */
556
Felipe Balbi550a7372008-07-24 12:27:36 +0300557/*
558 * Context: controller locked, IRQs blocked, endpoint selected
559 */
560static void rxstate(struct musb *musb, struct musb_request *req)
561{
Felipe Balbi550a7372008-07-24 12:27:36 +0300562 const u8 epnum = req->epnum;
563 struct usb_request *request = &req->request;
Ming Leibd2e74d2010-09-20 10:32:01 +0300564 struct musb_ep *musb_ep;
Felipe Balbi550a7372008-07-24 12:27:36 +0300565 void __iomem *epio = musb->endpoints[epnum].regs;
Sergei Shtylyovf0443af2012-07-16 23:25:04 +0400566 unsigned len = 0;
567 u16 fifo_count;
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300568 u16 csr = musb_readw(epio, MUSB_RXCSR);
Ming Leibd2e74d2010-09-20 10:32:01 +0300569 struct musb_hw_ep *hw_ep = &musb->endpoints[epnum];
Anand Gadiyar0ae52d52011-07-19 22:11:58 -0700570 u8 use_mode_1;
Ming Leibd2e74d2010-09-20 10:32:01 +0300571
572 if (hw_ep->is_shared_fifo)
573 musb_ep = &hw_ep->ep_in;
574 else
575 musb_ep = &hw_ep->ep_out;
576
Sergei Shtylyovf0443af2012-07-16 23:25:04 +0400577 fifo_count = musb_ep->packet_sz;
Felipe Balbi550a7372008-07-24 12:27:36 +0300578
Vikram Panditaabf710e2012-05-18 13:48:04 -0700579 /* Check if EP is disabled */
580 if (!musb_ep->desc) {
581 dev_dbg(musb->controller, "ep:%s disabled - ignore request\n",
582 musb_ep->end_point.name);
583 return;
584 }
585
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300586 /* We shouldn't get here while DMA is active, but we do... */
587 if (dma_channel_status(musb_ep->dma) == MUSB_DMA_STATUS_BUSY) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300588 dev_dbg(musb->controller, "DMA pending...\n");
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300589 return;
590 }
591
592 if (csr & MUSB_RXCSR_P_SENDSTALL) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300593 dev_dbg(musb->controller, "%s stalling, RXCSR %04x\n",
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300594 musb_ep->end_point.name, csr);
595 return;
596 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300597
Mian Yousaf Kaukabc65bfa62011-01-04 12:47:02 +0100598 if (is_cppi_enabled() && is_buffer_mapped(req)) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300599 struct dma_controller *c = musb->dma_controller;
600 struct dma_channel *channel = musb_ep->dma;
601
602 /* NOTE: CPPI won't actually stop advancing the DMA
603 * queue after short packet transfers, so this is almost
604 * always going to run as IRQ-per-packet DMA so that
605 * faults will be handled correctly.
606 */
607 if (c->channel_program(channel,
608 musb_ep->packet_sz,
609 !request->short_not_ok,
610 request->dma + request->actual,
611 request->length - request->actual)) {
612
613 /* make sure that if an rxpkt arrived after the irq,
614 * the cppi engine will be ready to take it as soon
615 * as DMA is enabled
616 */
617 csr &= ~(MUSB_RXCSR_AUTOCLEAR
618 | MUSB_RXCSR_DMAMODE);
619 csr |= MUSB_RXCSR_DMAENAB | MUSB_RXCSR_P_WZC_BITS;
620 musb_writew(epio, MUSB_RXCSR, csr);
621 return;
622 }
623 }
624
625 if (csr & MUSB_RXCSR_RXPKTRDY) {
Sergei Shtylyovf0443af2012-07-16 23:25:04 +0400626 fifo_count = musb_readw(epio, MUSB_RXCOUNT);
Anand Gadiyar0ae52d52011-07-19 22:11:58 -0700627
628 /*
Felipe Balbi00a89182012-10-26 09:55:31 +0300629 * Enable Mode 1 on RX transfers only when short_not_ok flag
630 * is set. Currently short_not_ok flag is set only from
631 * file_storage and f_mass_storage drivers
Anand Gadiyar0ae52d52011-07-19 22:11:58 -0700632 */
Felipe Balbi00a89182012-10-26 09:55:31 +0300633
634 if (request->short_not_ok && fifo_count == musb_ep->packet_sz)
Anand Gadiyar0ae52d52011-07-19 22:11:58 -0700635 use_mode_1 = 1;
636 else
637 use_mode_1 = 0;
638
Felipe Balbi550a7372008-07-24 12:27:36 +0300639 if (request->actual < request->length) {
640#ifdef CONFIG_USB_INVENTRA_DMA
Mian Yousaf Kaukabc65bfa62011-01-04 12:47:02 +0100641 if (is_buffer_mapped(req)) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300642 struct dma_controller *c;
643 struct dma_channel *channel;
644 int use_dma = 0;
Felipe Balbi37730ec2013-02-06 10:19:15 +0200645 unsigned int transfer_size;
Felipe Balbi550a7372008-07-24 12:27:36 +0300646
647 c = musb->dma_controller;
648 channel = musb_ep->dma;
649
Felipe Balbi00a89182012-10-26 09:55:31 +0300650 /* We use DMA Req mode 0 in rx_csr, and DMA controller operates in
651 * mode 0 only. So we do not get endpoint interrupts due to DMA
652 * completion. We only get interrupts from DMA controller.
653 *
654 * We could operate in DMA mode 1 if we knew the size of the tranfer
655 * in advance. For mass storage class, request->length = what the host
656 * sends, so that'd work. But for pretty much everything else,
657 * request->length is routinely more than what the host sends. For
658 * most these gadgets, end of is signified either by a short packet,
659 * or filling the last byte of the buffer. (Sending extra data in
660 * that last pckate should trigger an overflow fault.) But in mode 1,
661 * we don't get DMA completion interrupt for short packets.
662 *
663 * Theoretically, we could enable DMAReq irq (MUSB_RXCSR_DMAMODE = 1),
664 * to get endpoint interrupt on every DMA req, but that didn't seem
665 * to work reliably.
666 *
667 * REVISIT an updated g_file_storage can set req->short_not_ok, which
668 * then becomes usable as a runtime "use mode 1" hint...
669 */
670
Anand Gadiyar0ae52d52011-07-19 22:11:58 -0700671 /* Experimental: Mode1 works with mass storage use cases */
672 if (use_mode_1) {
Ming Lei9001d802010-09-25 05:50:43 -0500673 csr |= MUSB_RXCSR_AUTOCLEAR;
Anand Gadiyar0ae52d52011-07-19 22:11:58 -0700674 musb_writew(epio, MUSB_RXCSR, csr);
675 csr |= MUSB_RXCSR_DMAENAB;
676 musb_writew(epio, MUSB_RXCSR, csr);
677
678 /*
679 * this special sequence (enabling and then
680 * disabling MUSB_RXCSR_DMAMODE) is required
681 * to get DMAReq to activate
682 */
683 musb_writew(epio, MUSB_RXCSR,
684 csr | MUSB_RXCSR_DMAMODE);
685 musb_writew(epio, MUSB_RXCSR, csr);
686
Felipe Balbi37730ec2013-02-06 10:19:15 +0200687 transfer_size = min_t(unsigned int,
688 request->length -
689 request->actual,
Roger Quadros660fa882012-08-07 16:26:32 +0300690 channel->max_len);
691 musb_ep->dma->desired_mode = 1;
Anand Gadiyar0ae52d52011-07-19 22:11:58 -0700692 } else {
693 if (!musb_ep->hb_mult &&
694 musb_ep->hw_ep->rx_double_buffered)
695 csr |= MUSB_RXCSR_AUTOCLEAR;
696 csr |= MUSB_RXCSR_DMAENAB;
697 musb_writew(epio, MUSB_RXCSR, csr);
Felipe Balbi550a7372008-07-24 12:27:36 +0300698
Roger Quadros660fa882012-08-07 16:26:32 +0300699 transfer_size = min(request->length - request->actual,
Sergei Shtylyovf0443af2012-07-16 23:25:04 +0400700 (unsigned)fifo_count);
Roger Quadros660fa882012-08-07 16:26:32 +0300701 musb_ep->dma->desired_mode = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +0300702 }
703
Roger Quadros660fa882012-08-07 16:26:32 +0300704 use_dma = c->channel_program(
705 channel,
706 musb_ep->packet_sz,
707 channel->desired_mode,
708 request->dma
709 + request->actual,
710 transfer_size);
711
Felipe Balbi550a7372008-07-24 12:27:36 +0300712 if (use_dma)
713 return;
714 }
Mian Yousaf Kaukaba48ff902011-03-22 15:55:56 +0100715#elif defined(CONFIG_USB_UX500_DMA)
716 if ((is_buffer_mapped(req)) &&
717 (request->actual < request->length)) {
718
719 struct dma_controller *c;
720 struct dma_channel *channel;
Felipe Balbi37730ec2013-02-06 10:19:15 +0200721 unsigned int transfer_size = 0;
Mian Yousaf Kaukaba48ff902011-03-22 15:55:56 +0100722
723 c = musb->dma_controller;
724 channel = musb_ep->dma;
725
726 /* In case first packet is short */
Sergei Shtylyovf0443af2012-07-16 23:25:04 +0400727 if (fifo_count < musb_ep->packet_sz)
728 transfer_size = fifo_count;
Mian Yousaf Kaukaba48ff902011-03-22 15:55:56 +0100729 else if (request->short_not_ok)
Felipe Balbi37730ec2013-02-06 10:19:15 +0200730 transfer_size = min_t(unsigned int,
731 request->length -
Mian Yousaf Kaukaba48ff902011-03-22 15:55:56 +0100732 request->actual,
733 channel->max_len);
734 else
Felipe Balbi37730ec2013-02-06 10:19:15 +0200735 transfer_size = min_t(unsigned int,
736 request->length -
Mian Yousaf Kaukaba48ff902011-03-22 15:55:56 +0100737 request->actual,
Sergei Shtylyovf0443af2012-07-16 23:25:04 +0400738 (unsigned)fifo_count);
Mian Yousaf Kaukaba48ff902011-03-22 15:55:56 +0100739
740 csr &= ~MUSB_RXCSR_DMAMODE;
741 csr |= (MUSB_RXCSR_DMAENAB |
742 MUSB_RXCSR_AUTOCLEAR);
743
744 musb_writew(epio, MUSB_RXCSR, csr);
745
746 if (transfer_size <= musb_ep->packet_sz) {
747 musb_ep->dma->desired_mode = 0;
748 } else {
749 musb_ep->dma->desired_mode = 1;
750 /* Mode must be set after DMAENAB */
751 csr |= MUSB_RXCSR_DMAMODE;
752 musb_writew(epio, MUSB_RXCSR, csr);
753 }
754
755 if (c->channel_program(channel,
756 musb_ep->packet_sz,
757 channel->desired_mode,
758 request->dma
759 + request->actual,
760 transfer_size))
761
762 return;
763 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300764#endif /* Mentor's DMA */
765
Sergei Shtylyovf0443af2012-07-16 23:25:04 +0400766 len = request->length - request->actual;
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300767 dev_dbg(musb->controller, "%s OUT/RX pio fifo %d/%d, maxpacket %d\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300768 musb_ep->end_point.name,
Sergei Shtylyovf0443af2012-07-16 23:25:04 +0400769 fifo_count, len,
Felipe Balbi550a7372008-07-24 12:27:36 +0300770 musb_ep->packet_sz);
771
Felipe Balbic2c96322009-02-21 15:29:42 -0800772 fifo_count = min_t(unsigned, len, fifo_count);
Felipe Balbi550a7372008-07-24 12:27:36 +0300773
774#ifdef CONFIG_USB_TUSB_OMAP_DMA
Mian Yousaf Kaukabc65bfa62011-01-04 12:47:02 +0100775 if (tusb_dma_omap() && is_buffer_mapped(req)) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300776 struct dma_controller *c = musb->dma_controller;
777 struct dma_channel *channel = musb_ep->dma;
778 u32 dma_addr = request->dma + request->actual;
779 int ret;
780
781 ret = c->channel_program(channel,
782 musb_ep->packet_sz,
783 channel->desired_mode,
784 dma_addr,
785 fifo_count);
786 if (ret)
787 return;
788 }
789#endif
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600790 /*
791 * Unmap the dma buffer back to cpu if dma channel
792 * programming fails. This buffer is mapped if the
793 * channel allocation is successful
794 */
Mian Yousaf Kaukabc65bfa62011-01-04 12:47:02 +0100795 if (is_buffer_mapped(req)) {
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600796 unmap_dma_buffer(req, musb);
797
Ming Leie75df372010-11-16 23:37:37 +0800798 /*
799 * Clear DMAENAB and AUTOCLEAR for the
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600800 * PIO mode transfer
801 */
Ming Leie75df372010-11-16 23:37:37 +0800802 csr &= ~(MUSB_RXCSR_DMAENAB | MUSB_RXCSR_AUTOCLEAR);
Hema Kalliguddi92d27112010-11-15 04:24:01 -0600803 musb_writew(epio, MUSB_RXCSR, csr);
804 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300805
806 musb_read_fifo(musb_ep->hw_ep, fifo_count, (u8 *)
807 (request->buf + request->actual));
808 request->actual += fifo_count;
809
810 /* REVISIT if we left anything in the fifo, flush
811 * it and report -EOVERFLOW
812 */
813
814 /* ack the read! */
815 csr |= MUSB_RXCSR_P_WZC_BITS;
816 csr &= ~MUSB_RXCSR_RXPKTRDY;
817 musb_writew(epio, MUSB_RXCSR, csr);
818 }
819 }
820
821 /* reach the end or short packet detected */
Sergei Shtylyovf0443af2012-07-16 23:25:04 +0400822 if (request->actual == request->length ||
823 fifo_count < musb_ep->packet_sz)
Felipe Balbi550a7372008-07-24 12:27:36 +0300824 musb_g_giveback(musb_ep, request, 0);
825}
826
827/*
828 * Data ready for a request; called from IRQ
829 */
830void musb_g_rx(struct musb *musb, u8 epnum)
831{
832 u16 csr;
Felipe Balbiad1adb82011-02-16 12:40:05 +0200833 struct musb_request *req;
Felipe Balbi550a7372008-07-24 12:27:36 +0300834 struct usb_request *request;
835 void __iomem *mbase = musb->mregs;
Ming Leibd2e74d2010-09-20 10:32:01 +0300836 struct musb_ep *musb_ep;
Felipe Balbi550a7372008-07-24 12:27:36 +0300837 void __iomem *epio = musb->endpoints[epnum].regs;
838 struct dma_channel *dma;
Ming Leibd2e74d2010-09-20 10:32:01 +0300839 struct musb_hw_ep *hw_ep = &musb->endpoints[epnum];
840
841 if (hw_ep->is_shared_fifo)
842 musb_ep = &hw_ep->ep_in;
843 else
844 musb_ep = &hw_ep->ep_out;
Felipe Balbi550a7372008-07-24 12:27:36 +0300845
846 musb_ep_select(mbase, epnum);
847
Felipe Balbiad1adb82011-02-16 12:40:05 +0200848 req = next_request(musb_ep);
849 if (!req)
Maulik Mankad0abdc362009-12-22 16:18:19 +0530850 return;
Felipe Balbi550a7372008-07-24 12:27:36 +0300851
Felipe Balbiad1adb82011-02-16 12:40:05 +0200852 request = &req->request;
853
Felipe Balbi550a7372008-07-24 12:27:36 +0300854 csr = musb_readw(epio, MUSB_RXCSR);
855 dma = is_dma_capable() ? musb_ep->dma : NULL;
856
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300857 dev_dbg(musb->controller, "<== %s, rxcsr %04x%s %p\n", musb_ep->end_point.name,
Felipe Balbi550a7372008-07-24 12:27:36 +0300858 csr, dma ? " (dma)" : "", request);
859
860 if (csr & MUSB_RXCSR_P_SENTSTALL) {
Felipe Balbi550a7372008-07-24 12:27:36 +0300861 csr |= MUSB_RXCSR_P_WZC_BITS;
862 csr &= ~MUSB_RXCSR_P_SENTSTALL;
863 musb_writew(epio, MUSB_RXCSR, csr);
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300864 return;
Felipe Balbi550a7372008-07-24 12:27:36 +0300865 }
866
867 if (csr & MUSB_RXCSR_P_OVERRUN) {
868 /* csr |= MUSB_RXCSR_P_WZC_BITS; */
869 csr &= ~MUSB_RXCSR_P_OVERRUN;
870 musb_writew(epio, MUSB_RXCSR, csr);
871
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300872 dev_dbg(musb->controller, "%s iso overrun on %p\n", musb_ep->name, request);
Sergei Shtylyov43467862010-09-24 13:44:12 +0300873 if (request->status == -EINPROGRESS)
Felipe Balbi550a7372008-07-24 12:27:36 +0300874 request->status = -EOVERFLOW;
875 }
876 if (csr & MUSB_RXCSR_INCOMPRX) {
877 /* REVISIT not necessarily an error */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300878 dev_dbg(musb->controller, "%s, incomprx\n", musb_ep->end_point.name);
Felipe Balbi550a7372008-07-24 12:27:36 +0300879 }
880
881 if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) {
882 /* "should not happen"; likely RXPKTRDY pending for DMA */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300883 dev_dbg(musb->controller, "%s busy, csr %04x\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300884 musb_ep->end_point.name, csr);
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300885 return;
Felipe Balbi550a7372008-07-24 12:27:36 +0300886 }
887
888 if (dma && (csr & MUSB_RXCSR_DMAENAB)) {
889 csr &= ~(MUSB_RXCSR_AUTOCLEAR
890 | MUSB_RXCSR_DMAENAB
891 | MUSB_RXCSR_DMAMODE);
892 musb_writew(epio, MUSB_RXCSR,
893 MUSB_RXCSR_P_WZC_BITS | csr);
894
895 request->actual += musb_ep->dma->actual_len;
896
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300897 dev_dbg(musb->controller, "RXCSR%d %04x, dma off, %04x, len %zu, req %p\n",
Felipe Balbi550a7372008-07-24 12:27:36 +0300898 epnum, csr,
899 musb_readw(epio, MUSB_RXCSR),
900 musb_ep->dma->actual_len, request);
901
Mian Yousaf Kaukaba48ff902011-03-22 15:55:56 +0100902#if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_TUSB_OMAP_DMA) || \
903 defined(CONFIG_USB_UX500_DMA)
Felipe Balbi550a7372008-07-24 12:27:36 +0300904 /* Autoclear doesn't clear RxPktRdy for short packets */
Ming Lei9001d802010-09-25 05:50:43 -0500905 if ((dma->desired_mode == 0 && !hw_ep->rx_double_buffered)
Felipe Balbi550a7372008-07-24 12:27:36 +0300906 || (dma->actual_len
907 & (musb_ep->packet_sz - 1))) {
908 /* ack the read! */
909 csr &= ~MUSB_RXCSR_RXPKTRDY;
910 musb_writew(epio, MUSB_RXCSR, csr);
911 }
912
913 /* incomplete, and not short? wait for next IN packet */
914 if ((request->actual < request->length)
915 && (musb_ep->dma->actual_len
Ming Lei9001d802010-09-25 05:50:43 -0500916 == musb_ep->packet_sz)) {
917 /* In double buffer case, continue to unload fifo if
918 * there is Rx packet in FIFO.
919 **/
920 csr = musb_readw(epio, MUSB_RXCSR);
921 if ((csr & MUSB_RXCSR_RXPKTRDY) &&
922 hw_ep->rx_double_buffered)
923 goto exit;
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300924 return;
Ming Lei9001d802010-09-25 05:50:43 -0500925 }
Felipe Balbi550a7372008-07-24 12:27:36 +0300926#endif
927 musb_g_giveback(musb_ep, request, 0);
Supriya Karanth39287072012-02-17 14:54:52 +0530928 /*
929 * In the giveback function the MUSB lock is
930 * released and acquired after sometime. During
931 * this time period the INDEX register could get
932 * changed by the gadget_queue function especially
933 * on SMP systems. Reselect the INDEX to be sure
934 * we are reading/modifying the right registers
935 */
936 musb_ep_select(mbase, epnum);
Felipe Balbi550a7372008-07-24 12:27:36 +0300937
Felipe Balbiad1adb82011-02-16 12:40:05 +0200938 req = next_request(musb_ep);
939 if (!req)
Sergei Shtylyovcea83242009-11-18 22:51:18 +0300940 return;
Felipe Balbi550a7372008-07-24 12:27:36 +0300941 }
Mian Yousaf Kaukaba48ff902011-03-22 15:55:56 +0100942#if defined(CONFIG_USB_INVENTRA_DMA) || defined(CONFIG_USB_TUSB_OMAP_DMA) || \
943 defined(CONFIG_USB_UX500_DMA)
Ming Lei9001d802010-09-25 05:50:43 -0500944exit:
Ajay Kumar Guptabb324b02010-11-22 14:22:41 +0530945#endif
Sergei Shtylyov43467862010-09-24 13:44:12 +0300946 /* Analyze request */
Felipe Balbiad1adb82011-02-16 12:40:05 +0200947 rxstate(musb, req);
Felipe Balbi550a7372008-07-24 12:27:36 +0300948}
949
950/* ------------------------------------------------------------ */
951
952static int musb_gadget_enable(struct usb_ep *ep,
953 const struct usb_endpoint_descriptor *desc)
954{
955 unsigned long flags;
956 struct musb_ep *musb_ep;
957 struct musb_hw_ep *hw_ep;
958 void __iomem *regs;
959 struct musb *musb;
960 void __iomem *mbase;
961 u8 epnum;
962 u16 csr;
963 unsigned tmp;
964 int status = -EINVAL;
965
966 if (!ep || !desc)
967 return -EINVAL;
968
969 musb_ep = to_musb_ep(ep);
970 hw_ep = musb_ep->hw_ep;
971 regs = hw_ep->regs;
972 musb = musb_ep->musb;
973 mbase = musb->mregs;
974 epnum = musb_ep->current_epnum;
975
976 spin_lock_irqsave(&musb->lock, flags);
977
978 if (musb_ep->desc) {
979 status = -EBUSY;
980 goto fail;
981 }
Julia Lawall96bcd092009-01-24 17:57:24 -0800982 musb_ep->type = usb_endpoint_type(desc);
Felipe Balbi550a7372008-07-24 12:27:36 +0300983
984 /* check direction and (later) maxpacket size against endpoint */
Julia Lawall96bcd092009-01-24 17:57:24 -0800985 if (usb_endpoint_num(desc) != epnum)
Felipe Balbi550a7372008-07-24 12:27:36 +0300986 goto fail;
987
988 /* REVISIT this rules out high bandwidth periodic transfers */
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700989 tmp = usb_endpoint_maxp(desc);
Ming Leif11d8932010-09-24 13:44:04 +0300990 if (tmp & ~0x07ff) {
991 int ok;
992
993 if (usb_endpoint_dir_in(desc))
994 ok = musb->hb_iso_tx;
995 else
996 ok = musb->hb_iso_rx;
997
998 if (!ok) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +0300999 dev_dbg(musb->controller, "no support for high bandwidth ISO\n");
Ming Leif11d8932010-09-24 13:44:04 +03001000 goto fail;
1001 }
1002 musb_ep->hb_mult = (tmp >> 11) & 3;
1003 } else {
1004 musb_ep->hb_mult = 0;
1005 }
1006
1007 musb_ep->packet_sz = tmp & 0x7ff;
1008 tmp = musb_ep->packet_sz * (musb_ep->hb_mult + 1);
Felipe Balbi550a7372008-07-24 12:27:36 +03001009
1010 /* enable the interrupts for the endpoint, set the endpoint
1011 * packet size (or fail), set the mode, clear the fifo
1012 */
1013 musb_ep_select(mbase, epnum);
Julia Lawall96bcd092009-01-24 17:57:24 -08001014 if (usb_endpoint_dir_in(desc)) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001015
1016 if (hw_ep->is_shared_fifo)
1017 musb_ep->is_in = 1;
1018 if (!musb_ep->is_in)
1019 goto fail;
Ming Leif11d8932010-09-24 13:44:04 +03001020
1021 if (tmp > hw_ep->max_packet_sz_tx) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001022 dev_dbg(musb->controller, "packet size beyond hardware FIFO size\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001023 goto fail;
Ming Leif11d8932010-09-24 13:44:04 +03001024 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001025
Sebastian Andrzej Siewiorb18d26f2012-10-30 19:52:26 +01001026 musb->intrtxe |= (1 << epnum);
1027 musb_writew(mbase, MUSB_INTRTXE, musb->intrtxe);
Felipe Balbi550a7372008-07-24 12:27:36 +03001028
1029 /* REVISIT if can_bulk_split(), use by updating "tmp";
1030 * likewise high bandwidth periodic tx
1031 */
Cliff Cai9f445cb2010-01-28 20:44:18 -05001032 /* Set TXMAXP with the FIFO size of the endpoint
Ming Lei31c99092010-10-19 19:08:25 -05001033 * to disable double buffering mode.
Cliff Cai9f445cb2010-01-28 20:44:18 -05001034 */
supriya karanthbb3a2ef2012-12-06 11:12:48 +05301035 if (musb->double_buffer_not_ok) {
Felipe Balbi06624812011-01-21 13:39:20 +08001036 musb_writew(regs, MUSB_TXMAXP, hw_ep->max_packet_sz_tx);
supriya karanthbb3a2ef2012-12-06 11:12:48 +05301037 } else {
1038 if (can_bulk_split(musb, musb_ep->type))
1039 musb_ep->hb_mult = (hw_ep->max_packet_sz_tx /
1040 musb_ep->packet_sz) - 1;
Felipe Balbi06624812011-01-21 13:39:20 +08001041 musb_writew(regs, MUSB_TXMAXP, musb_ep->packet_sz
1042 | (musb_ep->hb_mult << 11));
supriya karanthbb3a2ef2012-12-06 11:12:48 +05301043 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001044
1045 csr = MUSB_TXCSR_MODE | MUSB_TXCSR_CLRDATATOG;
1046 if (musb_readw(regs, MUSB_TXCSR)
1047 & MUSB_TXCSR_FIFONOTEMPTY)
1048 csr |= MUSB_TXCSR_FLUSHFIFO;
1049 if (musb_ep->type == USB_ENDPOINT_XFER_ISOC)
1050 csr |= MUSB_TXCSR_P_ISO;
1051
1052 /* set twice in case of double buffering */
1053 musb_writew(regs, MUSB_TXCSR, csr);
1054 /* REVISIT may be inappropriate w/o FIFONOTEMPTY ... */
1055 musb_writew(regs, MUSB_TXCSR, csr);
1056
1057 } else {
Felipe Balbi550a7372008-07-24 12:27:36 +03001058
1059 if (hw_ep->is_shared_fifo)
1060 musb_ep->is_in = 0;
1061 if (musb_ep->is_in)
1062 goto fail;
Ming Leif11d8932010-09-24 13:44:04 +03001063
1064 if (tmp > hw_ep->max_packet_sz_rx) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001065 dev_dbg(musb->controller, "packet size beyond hardware FIFO size\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001066 goto fail;
Ming Leif11d8932010-09-24 13:44:04 +03001067 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001068
Sebastian Andrzej Siewioraf5ec142012-10-30 19:52:25 +01001069 musb->intrrxe |= (1 << epnum);
1070 musb_writew(mbase, MUSB_INTRRXE, musb->intrrxe);
Felipe Balbi550a7372008-07-24 12:27:36 +03001071
1072 /* REVISIT if can_bulk_combine() use by updating "tmp"
1073 * likewise high bandwidth periodic rx
1074 */
Cliff Cai9f445cb2010-01-28 20:44:18 -05001075 /* Set RXMAXP with the FIFO size of the endpoint
1076 * to disable double buffering mode.
1077 */
Felipe Balbi06624812011-01-21 13:39:20 +08001078 if (musb->double_buffer_not_ok)
1079 musb_writew(regs, MUSB_RXMAXP, hw_ep->max_packet_sz_tx);
1080 else
1081 musb_writew(regs, MUSB_RXMAXP, musb_ep->packet_sz
1082 | (musb_ep->hb_mult << 11));
Felipe Balbi550a7372008-07-24 12:27:36 +03001083
1084 /* force shared fifo to OUT-only mode */
1085 if (hw_ep->is_shared_fifo) {
1086 csr = musb_readw(regs, MUSB_TXCSR);
1087 csr &= ~(MUSB_TXCSR_MODE | MUSB_TXCSR_TXPKTRDY);
1088 musb_writew(regs, MUSB_TXCSR, csr);
1089 }
1090
1091 csr = MUSB_RXCSR_FLUSHFIFO | MUSB_RXCSR_CLRDATATOG;
1092 if (musb_ep->type == USB_ENDPOINT_XFER_ISOC)
1093 csr |= MUSB_RXCSR_P_ISO;
1094 else if (musb_ep->type == USB_ENDPOINT_XFER_INT)
1095 csr |= MUSB_RXCSR_DISNYET;
1096
1097 /* set twice in case of double buffering */
1098 musb_writew(regs, MUSB_RXCSR, csr);
1099 musb_writew(regs, MUSB_RXCSR, csr);
1100 }
1101
1102 /* NOTE: all the I/O code _should_ work fine without DMA, in case
1103 * for some reason you run out of channels here.
1104 */
1105 if (is_dma_capable() && musb->dma_controller) {
1106 struct dma_controller *c = musb->dma_controller;
1107
1108 musb_ep->dma = c->channel_alloc(c, hw_ep,
1109 (desc->bEndpointAddress & USB_DIR_IN));
1110 } else
1111 musb_ep->dma = NULL;
1112
1113 musb_ep->desc = desc;
1114 musb_ep->busy = 0;
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001115 musb_ep->wedged = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001116 status = 0;
1117
1118 pr_debug("%s periph: enabled %s for %s %s, %smaxpacket %d\n",
1119 musb_driver_name, musb_ep->end_point.name,
1120 ({ char *s; switch (musb_ep->type) {
1121 case USB_ENDPOINT_XFER_BULK: s = "bulk"; break;
1122 case USB_ENDPOINT_XFER_INT: s = "int"; break;
1123 default: s = "iso"; break;
Joe Perches2b84f922013-10-08 16:01:37 -07001124 } s; }),
Felipe Balbi550a7372008-07-24 12:27:36 +03001125 musb_ep->is_in ? "IN" : "OUT",
1126 musb_ep->dma ? "dma, " : "",
1127 musb_ep->packet_sz);
1128
1129 schedule_work(&musb->irq_work);
1130
1131fail:
1132 spin_unlock_irqrestore(&musb->lock, flags);
1133 return status;
1134}
1135
1136/*
1137 * Disable an endpoint flushing all requests queued.
1138 */
1139static int musb_gadget_disable(struct usb_ep *ep)
1140{
1141 unsigned long flags;
1142 struct musb *musb;
1143 u8 epnum;
1144 struct musb_ep *musb_ep;
1145 void __iomem *epio;
1146 int status = 0;
1147
1148 musb_ep = to_musb_ep(ep);
1149 musb = musb_ep->musb;
1150 epnum = musb_ep->current_epnum;
1151 epio = musb->endpoints[epnum].regs;
1152
1153 spin_lock_irqsave(&musb->lock, flags);
1154 musb_ep_select(musb->mregs, epnum);
1155
1156 /* zero the endpoint sizes */
1157 if (musb_ep->is_in) {
Sebastian Andrzej Siewiorb18d26f2012-10-30 19:52:26 +01001158 musb->intrtxe &= ~(1 << epnum);
1159 musb_writew(musb->mregs, MUSB_INTRTXE, musb->intrtxe);
Felipe Balbi550a7372008-07-24 12:27:36 +03001160 musb_writew(epio, MUSB_TXMAXP, 0);
1161 } else {
Sebastian Andrzej Siewioraf5ec142012-10-30 19:52:25 +01001162 musb->intrrxe &= ~(1 << epnum);
1163 musb_writew(musb->mregs, MUSB_INTRRXE, musb->intrrxe);
Felipe Balbi550a7372008-07-24 12:27:36 +03001164 musb_writew(epio, MUSB_RXMAXP, 0);
1165 }
1166
1167 musb_ep->desc = NULL;
Grazvydas Ignotas08f75bf2012-05-26 00:21:33 +03001168 musb_ep->end_point.desc = NULL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001169
1170 /* abort all pending DMA and requests */
1171 nuke(musb_ep, -ESHUTDOWN);
1172
1173 schedule_work(&musb->irq_work);
1174
1175 spin_unlock_irqrestore(&(musb->lock), flags);
1176
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001177 dev_dbg(musb->controller, "%s\n", musb_ep->end_point.name);
Felipe Balbi550a7372008-07-24 12:27:36 +03001178
1179 return status;
1180}
1181
1182/*
1183 * Allocate a request for an endpoint.
1184 * Reused by ep0 code.
1185 */
1186struct usb_request *musb_alloc_request(struct usb_ep *ep, gfp_t gfp_flags)
1187{
1188 struct musb_ep *musb_ep = to_musb_ep(ep);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001189 struct musb *musb = musb_ep->musb;
Felipe Balbi550a7372008-07-24 12:27:36 +03001190 struct musb_request *request = NULL;
1191
1192 request = kzalloc(sizeof *request, gfp_flags);
Felipe Balbi0607f862010-12-01 11:03:54 +02001193 if (!request) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001194 dev_dbg(musb->controller, "not enough memory\n");
Felipe Balbi0607f862010-12-01 11:03:54 +02001195 return NULL;
Felipe Balbi550a7372008-07-24 12:27:36 +03001196 }
1197
Felipe Balbi0607f862010-12-01 11:03:54 +02001198 request->request.dma = DMA_ADDR_INVALID;
1199 request->epnum = musb_ep->current_epnum;
1200 request->ep = musb_ep;
1201
Felipe Balbi550a7372008-07-24 12:27:36 +03001202 return &request->request;
1203}
1204
1205/*
1206 * Free a request
1207 * Reused by ep0 code.
1208 */
1209void musb_free_request(struct usb_ep *ep, struct usb_request *req)
1210{
1211 kfree(to_musb_request(req));
1212}
1213
1214static LIST_HEAD(buffers);
1215
1216struct free_record {
1217 struct list_head list;
1218 struct device *dev;
1219 unsigned bytes;
1220 dma_addr_t dma;
1221};
1222
1223/*
1224 * Context: controller locked, IRQs blocked.
1225 */
Sergei Shtylyova666e3e2010-09-11 13:23:12 -05001226void musb_ep_restart(struct musb *musb, struct musb_request *req)
Felipe Balbi550a7372008-07-24 12:27:36 +03001227{
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001228 dev_dbg(musb->controller, "<== %s request %p len %u on hw_ep%d\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001229 req->tx ? "TX/IN" : "RX/OUT",
1230 &req->request, req->request.length, req->epnum);
1231
1232 musb_ep_select(musb->mregs, req->epnum);
1233 if (req->tx)
1234 txstate(musb, req);
1235 else
1236 rxstate(musb, req);
1237}
1238
1239static int musb_gadget_queue(struct usb_ep *ep, struct usb_request *req,
1240 gfp_t gfp_flags)
1241{
1242 struct musb_ep *musb_ep;
1243 struct musb_request *request;
1244 struct musb *musb;
1245 int status = 0;
1246 unsigned long lockflags;
1247
1248 if (!ep || !req)
1249 return -EINVAL;
1250 if (!req->buf)
1251 return -ENODATA;
1252
1253 musb_ep = to_musb_ep(ep);
1254 musb = musb_ep->musb;
1255
1256 request = to_musb_request(req);
1257 request->musb = musb;
1258
1259 if (request->ep != musb_ep)
1260 return -EINVAL;
1261
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001262 dev_dbg(musb->controller, "<== to %s request=%p\n", ep->name, req);
Felipe Balbi550a7372008-07-24 12:27:36 +03001263
1264 /* request is mine now... */
1265 request->request.actual = 0;
1266 request->request.status = -EINPROGRESS;
1267 request->epnum = musb_ep->current_epnum;
1268 request->tx = musb_ep->is_in;
1269
Mian Yousaf Kaukabc65bfa62011-01-04 12:47:02 +01001270 map_dma_buffer(request, musb, musb_ep);
Felipe Balbi550a7372008-07-24 12:27:36 +03001271
1272 spin_lock_irqsave(&musb->lock, lockflags);
1273
1274 /* don't queue if the ep is down */
1275 if (!musb_ep->desc) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001276 dev_dbg(musb->controller, "req %p queued to %s while ep %s\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03001277 req, ep->name, "disabled");
1278 status = -ESHUTDOWN;
Sebastian Andrzej Siewior23a53d92013-06-19 17:38:15 +02001279 unmap_dma_buffer(request, musb);
1280 goto unlock;
Felipe Balbi550a7372008-07-24 12:27:36 +03001281 }
1282
1283 /* add request to the list */
Felipe Balbiad1adb82011-02-16 12:40:05 +02001284 list_add_tail(&request->list, &musb_ep->req_list);
Felipe Balbi550a7372008-07-24 12:27:36 +03001285
1286 /* it this is the head of the queue, start i/o ... */
Felipe Balbiad1adb82011-02-16 12:40:05 +02001287 if (!musb_ep->busy && &request->list == musb_ep->req_list.next)
Felipe Balbi550a7372008-07-24 12:27:36 +03001288 musb_ep_restart(musb, request);
1289
Sebastian Andrzej Siewior23a53d92013-06-19 17:38:15 +02001290unlock:
Felipe Balbi550a7372008-07-24 12:27:36 +03001291 spin_unlock_irqrestore(&musb->lock, lockflags);
1292 return status;
1293}
1294
1295static int musb_gadget_dequeue(struct usb_ep *ep, struct usb_request *request)
1296{
1297 struct musb_ep *musb_ep = to_musb_ep(ep);
Felipe Balbi4cbbf082011-02-28 10:44:50 +02001298 struct musb_request *req = to_musb_request(request);
1299 struct musb_request *r;
Felipe Balbi550a7372008-07-24 12:27:36 +03001300 unsigned long flags;
1301 int status = 0;
1302 struct musb *musb = musb_ep->musb;
1303
1304 if (!ep || !request || to_musb_request(request)->ep != musb_ep)
1305 return -EINVAL;
1306
1307 spin_lock_irqsave(&musb->lock, flags);
1308
1309 list_for_each_entry(r, &musb_ep->req_list, list) {
Felipe Balbi4cbbf082011-02-28 10:44:50 +02001310 if (r == req)
Felipe Balbi550a7372008-07-24 12:27:36 +03001311 break;
1312 }
Felipe Balbi4cbbf082011-02-28 10:44:50 +02001313 if (r != req) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001314 dev_dbg(musb->controller, "request %p not queued to %s\n", request, ep->name);
Felipe Balbi550a7372008-07-24 12:27:36 +03001315 status = -EINVAL;
1316 goto done;
1317 }
1318
1319 /* if the hardware doesn't have the request, easy ... */
Felipe Balbi3d5ad132011-03-22 11:38:49 +02001320 if (musb_ep->req_list.next != &req->list || musb_ep->busy)
Felipe Balbi550a7372008-07-24 12:27:36 +03001321 musb_g_giveback(musb_ep, request, -ECONNRESET);
1322
1323 /* ... else abort the dma transfer ... */
1324 else if (is_dma_capable() && musb_ep->dma) {
1325 struct dma_controller *c = musb->dma_controller;
1326
1327 musb_ep_select(musb->mregs, musb_ep->current_epnum);
1328 if (c->channel_abort)
1329 status = c->channel_abort(musb_ep->dma);
1330 else
1331 status = -EBUSY;
1332 if (status == 0)
1333 musb_g_giveback(musb_ep, request, -ECONNRESET);
1334 } else {
1335 /* NOTE: by sticking to easily tested hardware/driver states,
1336 * we leave counting of in-flight packets imprecise.
1337 */
1338 musb_g_giveback(musb_ep, request, -ECONNRESET);
1339 }
1340
1341done:
1342 spin_unlock_irqrestore(&musb->lock, flags);
1343 return status;
1344}
1345
1346/*
1347 * Set or clear the halt bit of an endpoint. A halted enpoint won't tx/rx any
1348 * data but will queue requests.
1349 *
1350 * exported to ep0 code
1351 */
Felipe Balbi1b6c3b02009-12-04 15:47:46 +02001352static int musb_gadget_set_halt(struct usb_ep *ep, int value)
Felipe Balbi550a7372008-07-24 12:27:36 +03001353{
1354 struct musb_ep *musb_ep = to_musb_ep(ep);
1355 u8 epnum = musb_ep->current_epnum;
1356 struct musb *musb = musb_ep->musb;
1357 void __iomem *epio = musb->endpoints[epnum].regs;
1358 void __iomem *mbase;
1359 unsigned long flags;
1360 u16 csr;
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001361 struct musb_request *request;
Felipe Balbi550a7372008-07-24 12:27:36 +03001362 int status = 0;
1363
1364 if (!ep)
1365 return -EINVAL;
1366 mbase = musb->mregs;
1367
1368 spin_lock_irqsave(&musb->lock, flags);
1369
1370 if ((USB_ENDPOINT_XFER_ISOC == musb_ep->type)) {
1371 status = -EINVAL;
1372 goto done;
1373 }
1374
1375 musb_ep_select(mbase, epnum);
1376
Felipe Balbiad1adb82011-02-16 12:40:05 +02001377 request = next_request(musb_ep);
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001378 if (value) {
1379 if (request) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001380 dev_dbg(musb->controller, "request in progress, cannot halt %s\n",
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001381 ep->name);
1382 status = -EAGAIN;
1383 goto done;
Felipe Balbi550a7372008-07-24 12:27:36 +03001384 }
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001385 /* Cannot portably stall with non-empty FIFO */
1386 if (musb_ep->is_in) {
1387 csr = musb_readw(epio, MUSB_TXCSR);
1388 if (csr & MUSB_TXCSR_FIFONOTEMPTY) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001389 dev_dbg(musb->controller, "FIFO busy, cannot halt %s\n", ep->name);
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001390 status = -EAGAIN;
1391 goto done;
1392 }
1393 }
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001394 } else
1395 musb_ep->wedged = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001396
1397 /* set/clear the stall and toggle bits */
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001398 dev_dbg(musb->controller, "%s: %s stall\n", ep->name, value ? "set" : "clear");
Felipe Balbi550a7372008-07-24 12:27:36 +03001399 if (musb_ep->is_in) {
1400 csr = musb_readw(epio, MUSB_TXCSR);
Felipe Balbi550a7372008-07-24 12:27:36 +03001401 csr |= MUSB_TXCSR_P_WZC_BITS
1402 | MUSB_TXCSR_CLRDATATOG;
1403 if (value)
1404 csr |= MUSB_TXCSR_P_SENDSTALL;
1405 else
1406 csr &= ~(MUSB_TXCSR_P_SENDSTALL
1407 | MUSB_TXCSR_P_SENTSTALL);
1408 csr &= ~MUSB_TXCSR_TXPKTRDY;
1409 musb_writew(epio, MUSB_TXCSR, csr);
1410 } else {
1411 csr = musb_readw(epio, MUSB_RXCSR);
1412 csr |= MUSB_RXCSR_P_WZC_BITS
1413 | MUSB_RXCSR_FLUSHFIFO
1414 | MUSB_RXCSR_CLRDATATOG;
1415 if (value)
1416 csr |= MUSB_RXCSR_P_SENDSTALL;
1417 else
1418 csr &= ~(MUSB_RXCSR_P_SENDSTALL
1419 | MUSB_RXCSR_P_SENTSTALL);
1420 musb_writew(epio, MUSB_RXCSR, csr);
1421 }
1422
Felipe Balbi550a7372008-07-24 12:27:36 +03001423 /* maybe start the first request in the queue */
1424 if (!musb_ep->busy && !value && request) {
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001425 dev_dbg(musb->controller, "restarting the request\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001426 musb_ep_restart(musb, request);
1427 }
1428
Sergei Shtylyovcea83242009-11-18 22:51:18 +03001429done:
Felipe Balbi550a7372008-07-24 12:27:36 +03001430 spin_unlock_irqrestore(&musb->lock, flags);
1431 return status;
1432}
1433
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001434/*
1435 * Sets the halt feature with the clear requests ignored
1436 */
Felipe Balbi1b6c3b02009-12-04 15:47:46 +02001437static int musb_gadget_set_wedge(struct usb_ep *ep)
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001438{
1439 struct musb_ep *musb_ep = to_musb_ep(ep);
1440
1441 if (!ep)
1442 return -EINVAL;
1443
1444 musb_ep->wedged = 1;
1445
1446 return usb_ep_set_halt(ep);
1447}
1448
Felipe Balbi550a7372008-07-24 12:27:36 +03001449static int musb_gadget_fifo_status(struct usb_ep *ep)
1450{
1451 struct musb_ep *musb_ep = to_musb_ep(ep);
1452 void __iomem *epio = musb_ep->hw_ep->regs;
1453 int retval = -EINVAL;
1454
1455 if (musb_ep->desc && !musb_ep->is_in) {
1456 struct musb *musb = musb_ep->musb;
1457 int epnum = musb_ep->current_epnum;
1458 void __iomem *mbase = musb->mregs;
1459 unsigned long flags;
1460
1461 spin_lock_irqsave(&musb->lock, flags);
1462
1463 musb_ep_select(mbase, epnum);
1464 /* FIXME return zero unless RXPKTRDY is set */
1465 retval = musb_readw(epio, MUSB_RXCOUNT);
1466
1467 spin_unlock_irqrestore(&musb->lock, flags);
1468 }
1469 return retval;
1470}
1471
1472static void musb_gadget_fifo_flush(struct usb_ep *ep)
1473{
1474 struct musb_ep *musb_ep = to_musb_ep(ep);
1475 struct musb *musb = musb_ep->musb;
1476 u8 epnum = musb_ep->current_epnum;
1477 void __iomem *epio = musb->endpoints[epnum].regs;
1478 void __iomem *mbase;
1479 unsigned long flags;
Sebastian Andrzej Siewiorb18d26f2012-10-30 19:52:26 +01001480 u16 csr;
Felipe Balbi550a7372008-07-24 12:27:36 +03001481
1482 mbase = musb->mregs;
1483
1484 spin_lock_irqsave(&musb->lock, flags);
1485 musb_ep_select(mbase, (u8) epnum);
1486
1487 /* disable interrupts */
Sebastian Andrzej Siewiorb18d26f2012-10-30 19:52:26 +01001488 musb_writew(mbase, MUSB_INTRTXE, musb->intrtxe & ~(1 << epnum));
Felipe Balbi550a7372008-07-24 12:27:36 +03001489
1490 if (musb_ep->is_in) {
1491 csr = musb_readw(epio, MUSB_TXCSR);
1492 if (csr & MUSB_TXCSR_FIFONOTEMPTY) {
1493 csr |= MUSB_TXCSR_FLUSHFIFO | MUSB_TXCSR_P_WZC_BITS;
Yauheni Kaliuta4858f062011-06-08 17:12:02 +03001494 /*
1495 * Setting both TXPKTRDY and FLUSHFIFO makes controller
1496 * to interrupt current FIFO loading, but not flushing
1497 * the already loaded ones.
1498 */
1499 csr &= ~MUSB_TXCSR_TXPKTRDY;
Felipe Balbi550a7372008-07-24 12:27:36 +03001500 musb_writew(epio, MUSB_TXCSR, csr);
1501 /* REVISIT may be inappropriate w/o FIFONOTEMPTY ... */
1502 musb_writew(epio, MUSB_TXCSR, csr);
1503 }
1504 } else {
1505 csr = musb_readw(epio, MUSB_RXCSR);
1506 csr |= MUSB_RXCSR_FLUSHFIFO | MUSB_RXCSR_P_WZC_BITS;
1507 musb_writew(epio, MUSB_RXCSR, csr);
1508 musb_writew(epio, MUSB_RXCSR, csr);
1509 }
1510
1511 /* re-enable interrupt */
Sebastian Andrzej Siewiorb18d26f2012-10-30 19:52:26 +01001512 musb_writew(mbase, MUSB_INTRTXE, musb->intrtxe);
Felipe Balbi550a7372008-07-24 12:27:36 +03001513 spin_unlock_irqrestore(&musb->lock, flags);
1514}
1515
1516static const struct usb_ep_ops musb_ep_ops = {
1517 .enable = musb_gadget_enable,
1518 .disable = musb_gadget_disable,
1519 .alloc_request = musb_alloc_request,
1520 .free_request = musb_free_request,
1521 .queue = musb_gadget_queue,
1522 .dequeue = musb_gadget_dequeue,
1523 .set_halt = musb_gadget_set_halt,
Sergei Shtylyov47e97602009-11-18 22:51:51 +03001524 .set_wedge = musb_gadget_set_wedge,
Felipe Balbi550a7372008-07-24 12:27:36 +03001525 .fifo_status = musb_gadget_fifo_status,
1526 .fifo_flush = musb_gadget_fifo_flush
1527};
1528
1529/* ----------------------------------------------------------------------- */
1530
1531static int musb_gadget_get_frame(struct usb_gadget *gadget)
1532{
1533 struct musb *musb = gadget_to_musb(gadget);
1534
1535 return (int)musb_readw(musb->mregs, MUSB_FRAME);
1536}
1537
1538static int musb_gadget_wakeup(struct usb_gadget *gadget)
1539{
1540 struct musb *musb = gadget_to_musb(gadget);
1541 void __iomem *mregs = musb->mregs;
1542 unsigned long flags;
1543 int status = -EINVAL;
1544 u8 power, devctl;
1545 int retries;
1546
1547 spin_lock_irqsave(&musb->lock, flags);
1548
David Brownell84e250f2009-03-31 12:30:04 -07001549 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001550 case OTG_STATE_B_PERIPHERAL:
1551 /* NOTE: OTG state machine doesn't include B_SUSPENDED;
1552 * that's part of the standard usb 1.1 state machine, and
1553 * doesn't affect OTG transitions.
1554 */
1555 if (musb->may_wakeup && musb->is_suspended)
1556 break;
1557 goto done;
1558 case OTG_STATE_B_IDLE:
1559 /* Start SRP ... OTG not required. */
1560 devctl = musb_readb(mregs, MUSB_DEVCTL);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001561 dev_dbg(musb->controller, "Sending SRP: devctl: %02x\n", devctl);
Felipe Balbi550a7372008-07-24 12:27:36 +03001562 devctl |= MUSB_DEVCTL_SESSION;
1563 musb_writeb(mregs, MUSB_DEVCTL, devctl);
1564 devctl = musb_readb(mregs, MUSB_DEVCTL);
1565 retries = 100;
1566 while (!(devctl & MUSB_DEVCTL_SESSION)) {
1567 devctl = musb_readb(mregs, MUSB_DEVCTL);
1568 if (retries-- < 1)
1569 break;
1570 }
1571 retries = 10000;
1572 while (devctl & MUSB_DEVCTL_SESSION) {
1573 devctl = musb_readb(mregs, MUSB_DEVCTL);
1574 if (retries-- < 1)
1575 break;
1576 }
1577
Hema HK86205432011-03-22 16:54:22 +05301578 spin_unlock_irqrestore(&musb->lock, flags);
Heikki Krogerus6e13c652012-02-13 13:24:20 +02001579 otg_start_srp(musb->xceiv->otg);
Hema HK86205432011-03-22 16:54:22 +05301580 spin_lock_irqsave(&musb->lock, flags);
1581
Felipe Balbi550a7372008-07-24 12:27:36 +03001582 /* Block idling for at least 1s */
1583 musb_platform_try_idle(musb,
1584 jiffies + msecs_to_jiffies(1 * HZ));
1585
1586 status = 0;
1587 goto done;
1588 default:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001589 dev_dbg(musb->controller, "Unhandled wake: %s\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +02001590 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +03001591 goto done;
1592 }
1593
1594 status = 0;
1595
1596 power = musb_readb(mregs, MUSB_POWER);
1597 power |= MUSB_POWER_RESUME;
1598 musb_writeb(mregs, MUSB_POWER, power);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001599 dev_dbg(musb->controller, "issue wakeup\n");
Felipe Balbi550a7372008-07-24 12:27:36 +03001600
1601 /* FIXME do this next chunk in a timer callback, no udelay */
1602 mdelay(2);
1603
1604 power = musb_readb(mregs, MUSB_POWER);
1605 power &= ~MUSB_POWER_RESUME;
1606 musb_writeb(mregs, MUSB_POWER, power);
1607done:
1608 spin_unlock_irqrestore(&musb->lock, flags);
1609 return status;
1610}
1611
1612static int
1613musb_gadget_set_self_powered(struct usb_gadget *gadget, int is_selfpowered)
1614{
1615 struct musb *musb = gadget_to_musb(gadget);
1616
1617 musb->is_self_powered = !!is_selfpowered;
1618 return 0;
1619}
1620
1621static void musb_pullup(struct musb *musb, int is_on)
1622{
1623 u8 power;
1624
1625 power = musb_readb(musb->mregs, MUSB_POWER);
1626 if (is_on)
1627 power |= MUSB_POWER_SOFTCONN;
1628 else
1629 power &= ~MUSB_POWER_SOFTCONN;
1630
1631 /* FIXME if on, HdrcStart; if off, HdrcStop */
1632
Sebastian Andrzej Siewiore71eb392011-06-23 14:26:16 +02001633 dev_dbg(musb->controller, "gadget D+ pullup %s\n",
1634 is_on ? "on" : "off");
Felipe Balbi550a7372008-07-24 12:27:36 +03001635 musb_writeb(musb->mregs, MUSB_POWER, power);
1636}
1637
1638#if 0
1639static int musb_gadget_vbus_session(struct usb_gadget *gadget, int is_active)
1640{
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001641 dev_dbg(musb->controller, "<= %s =>\n", __func__);
Felipe Balbi550a7372008-07-24 12:27:36 +03001642
1643 /*
1644 * FIXME iff driver's softconnect flag is set (as it is during probe,
1645 * though that can clear it), just musb_pullup().
1646 */
1647
1648 return -EINVAL;
1649}
1650#endif
1651
1652static int musb_gadget_vbus_draw(struct usb_gadget *gadget, unsigned mA)
1653{
1654 struct musb *musb = gadget_to_musb(gadget);
1655
David Brownell84e250f2009-03-31 12:30:04 -07001656 if (!musb->xceiv->set_power)
Felipe Balbi550a7372008-07-24 12:27:36 +03001657 return -EOPNOTSUPP;
Heikki Krogerusb96d3b02012-02-13 13:24:18 +02001658 return usb_phy_set_power(musb->xceiv, mA);
Felipe Balbi550a7372008-07-24 12:27:36 +03001659}
1660
1661static int musb_gadget_pullup(struct usb_gadget *gadget, int is_on)
1662{
1663 struct musb *musb = gadget_to_musb(gadget);
1664 unsigned long flags;
1665
1666 is_on = !!is_on;
1667
John Stultz93e098a2011-07-20 17:09:34 -07001668 pm_runtime_get_sync(musb->controller);
1669
Felipe Balbi550a7372008-07-24 12:27:36 +03001670 /* NOTE: this assumes we are sensing vbus; we'd rather
1671 * not pullup unless the B-session is active.
1672 */
1673 spin_lock_irqsave(&musb->lock, flags);
1674 if (is_on != musb->softconnect) {
1675 musb->softconnect = is_on;
1676 musb_pullup(musb, is_on);
1677 }
1678 spin_unlock_irqrestore(&musb->lock, flags);
John Stultz93e098a2011-07-20 17:09:34 -07001679
1680 pm_runtime_put(musb->controller);
1681
Felipe Balbi550a7372008-07-24 12:27:36 +03001682 return 0;
1683}
1684
Sebastian Andrzej Siewiore71eb392011-06-23 14:26:16 +02001685static int musb_gadget_start(struct usb_gadget *g,
1686 struct usb_gadget_driver *driver);
1687static int musb_gadget_stop(struct usb_gadget *g,
1688 struct usb_gadget_driver *driver);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001689
Felipe Balbi550a7372008-07-24 12:27:36 +03001690static const struct usb_gadget_ops musb_gadget_operations = {
1691 .get_frame = musb_gadget_get_frame,
1692 .wakeup = musb_gadget_wakeup,
1693 .set_selfpowered = musb_gadget_set_self_powered,
1694 /* .vbus_session = musb_gadget_vbus_session, */
1695 .vbus_draw = musb_gadget_vbus_draw,
1696 .pullup = musb_gadget_pullup,
Sebastian Andrzej Siewiore71eb392011-06-23 14:26:16 +02001697 .udc_start = musb_gadget_start,
1698 .udc_stop = musb_gadget_stop,
Felipe Balbi550a7372008-07-24 12:27:36 +03001699};
1700
1701/* ----------------------------------------------------------------------- */
1702
1703/* Registration */
1704
1705/* Only this registration code "knows" the rule (from USB standards)
1706 * about there being only one external upstream port. It assumes
1707 * all peripheral ports are external...
1708 */
Felipe Balbi550a7372008-07-24 12:27:36 +03001709
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001710static void
Felipe Balbi550a7372008-07-24 12:27:36 +03001711init_peripheral_ep(struct musb *musb, struct musb_ep *ep, u8 epnum, int is_in)
1712{
1713 struct musb_hw_ep *hw_ep = musb->endpoints + epnum;
1714
1715 memset(ep, 0, sizeof *ep);
1716
1717 ep->current_epnum = epnum;
1718 ep->musb = musb;
1719 ep->hw_ep = hw_ep;
1720 ep->is_in = is_in;
1721
1722 INIT_LIST_HEAD(&ep->req_list);
1723
1724 sprintf(ep->name, "ep%d%s", epnum,
1725 (!epnum || hw_ep->is_shared_fifo) ? "" : (
1726 is_in ? "in" : "out"));
1727 ep->end_point.name = ep->name;
1728 INIT_LIST_HEAD(&ep->end_point.ep_list);
1729 if (!epnum) {
Robert Baldygae117e742013-12-13 12:23:38 +01001730 usb_ep_set_maxpacket_limit(&ep->end_point, 64);
Felipe Balbi550a7372008-07-24 12:27:36 +03001731 ep->end_point.ops = &musb_g_ep0_ops;
1732 musb->g.ep0 = &ep->end_point;
1733 } else {
1734 if (is_in)
Robert Baldygae117e742013-12-13 12:23:38 +01001735 usb_ep_set_maxpacket_limit(&ep->end_point, hw_ep->max_packet_sz_tx);
Felipe Balbi550a7372008-07-24 12:27:36 +03001736 else
Robert Baldygae117e742013-12-13 12:23:38 +01001737 usb_ep_set_maxpacket_limit(&ep->end_point, hw_ep->max_packet_sz_rx);
Felipe Balbi550a7372008-07-24 12:27:36 +03001738 ep->end_point.ops = &musb_ep_ops;
1739 list_add_tail(&ep->end_point.ep_list, &musb->g.ep_list);
1740 }
1741}
1742
1743/*
1744 * Initialize the endpoints exposed to peripheral drivers, with backlinks
1745 * to the rest of the driver state.
1746 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001747static inline void musb_g_init_endpoints(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001748{
1749 u8 epnum;
1750 struct musb_hw_ep *hw_ep;
1751 unsigned count = 0;
1752
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001753 /* initialize endpoint list just once */
Felipe Balbi550a7372008-07-24 12:27:36 +03001754 INIT_LIST_HEAD(&(musb->g.ep_list));
1755
1756 for (epnum = 0, hw_ep = musb->endpoints;
1757 epnum < musb->nr_endpoints;
1758 epnum++, hw_ep++) {
1759 if (hw_ep->is_shared_fifo /* || !epnum */) {
1760 init_peripheral_ep(musb, &hw_ep->ep_in, epnum, 0);
1761 count++;
1762 } else {
1763 if (hw_ep->max_packet_sz_tx) {
1764 init_peripheral_ep(musb, &hw_ep->ep_in,
1765 epnum, 1);
1766 count++;
1767 }
1768 if (hw_ep->max_packet_sz_rx) {
1769 init_peripheral_ep(musb, &hw_ep->ep_out,
1770 epnum, 0);
1771 count++;
1772 }
1773 }
1774 }
1775}
1776
1777/* called once during driver setup to initialize and link into
1778 * the driver model; memory is zeroed.
1779 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001780int musb_gadget_setup(struct musb *musb)
Felipe Balbi550a7372008-07-24 12:27:36 +03001781{
1782 int status;
1783
1784 /* REVISIT minor race: if (erroneously) setting up two
1785 * musb peripherals at the same time, only the bus lock
1786 * is probably held.
1787 */
Felipe Balbi550a7372008-07-24 12:27:36 +03001788
1789 musb->g.ops = &musb_gadget_operations;
Michal Nazarewiczd327ab52011-11-19 18:27:37 +01001790 musb->g.max_speed = USB_SPEED_HIGH;
Felipe Balbi550a7372008-07-24 12:27:36 +03001791 musb->g.speed = USB_SPEED_UNKNOWN;
1792
Bin Liu1374a4302013-09-17 12:43:13 -05001793 MUSB_DEV_MODE(musb);
1794 musb->xceiv->otg->default_a = 0;
1795 musb->xceiv->state = OTG_STATE_B_IDLE;
1796
Felipe Balbi550a7372008-07-24 12:27:36 +03001797 /* this "gadget" abstracts/virtualizes the controller */
Felipe Balbi550a7372008-07-24 12:27:36 +03001798 musb->g.name = musb_driver_name;
Apelete Seketelifd3923a2013-11-19 23:18:20 +01001799#if IS_ENABLED(CONFIG_USB_MUSB_DUAL_ROLE)
Felipe Balbi032ec492011-11-24 15:46:26 +02001800 musb->g.is_otg = 1;
Apelete Seketelifd3923a2013-11-19 23:18:20 +01001801#elif IS_ENABLED(CONFIG_USB_MUSB_GADGET)
1802 musb->g.is_otg = 0;
1803#endif
Felipe Balbi550a7372008-07-24 12:27:36 +03001804
1805 musb_g_init_endpoints(musb);
1806
1807 musb->is_active = 0;
1808 musb_platform_try_idle(musb, 0);
1809
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001810 status = usb_add_gadget_udc(musb->controller, &musb->g);
1811 if (status)
1812 goto err;
1813
1814 return 0;
1815err:
Sebastian Andrzej Siewior6193d692011-08-10 11:01:57 +02001816 musb->g.dev.parent = NULL;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001817 device_unregister(&musb->g.dev);
Felipe Balbi550a7372008-07-24 12:27:36 +03001818 return status;
1819}
1820
1821void musb_gadget_cleanup(struct musb *musb)
1822{
Sebastian Andrzej Siewior90474282013-08-20 18:35:44 +02001823 if (musb->port_mode == MUSB_PORT_MODE_HOST)
1824 return;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001825 usb_del_gadget_udc(&musb->g);
Felipe Balbi550a7372008-07-24 12:27:36 +03001826}
1827
1828/*
1829 * Register the gadget driver. Used by gadget drivers when
1830 * registering themselves with the controller.
1831 *
1832 * -EINVAL something went wrong (not driver)
1833 * -EBUSY another gadget is already using the controller
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001834 * -ENOMEM no memory to perform the operation
Felipe Balbi550a7372008-07-24 12:27:36 +03001835 *
1836 * @param driver the gadget driver
1837 * @return <0 if error, 0 if everything is fine
1838 */
Sebastian Andrzej Siewiore71eb392011-06-23 14:26:16 +02001839static int musb_gadget_start(struct usb_gadget *g,
1840 struct usb_gadget_driver *driver)
Felipe Balbi550a7372008-07-24 12:27:36 +03001841{
Sebastian Andrzej Siewiore71eb392011-06-23 14:26:16 +02001842 struct musb *musb = gadget_to_musb(g);
Heikki Krogerusd445b6d2012-02-13 13:24:15 +02001843 struct usb_otg *otg = musb->xceiv->otg;
Felipe Balbi63eed2b2011-01-17 10:34:38 +02001844 unsigned long flags;
Felipe Balbi032ec492011-11-24 15:46:26 +02001845 int retval = 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001846
Felipe Balbi032ec492011-11-24 15:46:26 +02001847 if (driver->max_speed < USB_SPEED_HIGH) {
1848 retval = -EINVAL;
1849 goto err;
1850 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001851
Hema HK7acc6192011-02-28 14:19:34 +05301852 pm_runtime_get_sync(musb->controller);
1853
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03001854 dev_dbg(musb->controller, "registering driver %s\n", driver->function);
Felipe Balbi550a7372008-07-24 12:27:36 +03001855
Sebastian Andrzej Siewiore71eb392011-06-23 14:26:16 +02001856 musb->softconnect = 0;
Felipe Balbi63eed2b2011-01-17 10:34:38 +02001857 musb->gadget_driver = driver;
Felipe Balbi63eed2b2011-01-17 10:34:38 +02001858
1859 spin_lock_irqsave(&musb->lock, flags);
Greg Kroah-Hartman43e699c2013-10-14 13:06:15 -07001860 musb->is_active = 1;
Felipe Balbi63eed2b2011-01-17 10:34:38 +02001861
Heikki Krogerus6e13c652012-02-13 13:24:20 +02001862 otg_set_peripheral(otg, &musb->g);
Felipe Balbi63eed2b2011-01-17 10:34:38 +02001863 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +03001864 spin_unlock_irqrestore(&musb->lock, flags);
1865
Sebastian Andrzej Siewior001dd842013-10-11 10:38:13 +02001866 musb_start(musb);
1867
Felipe Balbi032ec492011-11-24 15:46:26 +02001868 /* REVISIT: funcall to other code, which also
1869 * handles power budgeting ... this way also
1870 * ensures HdrcStart is indirectly called.
1871 */
Grazvydas Ignotasb65ae0f2013-03-24 17:36:55 +02001872 if (musb->xceiv->last_event == USB_EVENT_ID)
1873 musb_platform_set_vbus(musb, 1);
Felipe Balbi032ec492011-11-24 15:46:26 +02001874
Jarkko Nikulacdefce12011-04-29 16:17:35 +03001875 if (musb->xceiv->last_event == USB_EVENT_NONE)
1876 pm_runtime_put(musb->controller);
Felipe Balbi550a7372008-07-24 12:27:36 +03001877
Felipe Balbi63eed2b2011-01-17 10:34:38 +02001878 return 0;
1879
Felipe Balbi032ec492011-11-24 15:46:26 +02001880err:
Felipe Balbi550a7372008-07-24 12:27:36 +03001881 return retval;
1882}
Felipe Balbi550a7372008-07-24 12:27:36 +03001883
1884static void stop_activity(struct musb *musb, struct usb_gadget_driver *driver)
1885{
1886 int i;
1887 struct musb_hw_ep *hw_ep;
1888
1889 /* don't disconnect if it's not connected */
1890 if (musb->g.speed == USB_SPEED_UNKNOWN)
1891 driver = NULL;
1892 else
1893 musb->g.speed = USB_SPEED_UNKNOWN;
1894
1895 /* deactivate the hardware */
1896 if (musb->softconnect) {
1897 musb->softconnect = 0;
1898 musb_pullup(musb, 0);
1899 }
1900 musb_stop(musb);
1901
1902 /* killing any outstanding requests will quiesce the driver;
1903 * then report disconnect
1904 */
1905 if (driver) {
1906 for (i = 0, hw_ep = musb->endpoints;
1907 i < musb->nr_endpoints;
1908 i++, hw_ep++) {
1909 musb_ep_select(musb->mregs, i);
1910 if (hw_ep->is_shared_fifo /* || !epnum */) {
1911 nuke(&hw_ep->ep_in, -ESHUTDOWN);
1912 } else {
1913 if (hw_ep->max_packet_sz_tx)
1914 nuke(&hw_ep->ep_in, -ESHUTDOWN);
1915 if (hw_ep->max_packet_sz_rx)
1916 nuke(&hw_ep->ep_out, -ESHUTDOWN);
1917 }
1918 }
Felipe Balbi550a7372008-07-24 12:27:36 +03001919 }
1920}
1921
1922/*
1923 * Unregister the gadget driver. Used by gadget drivers when
1924 * unregistering themselves from the controller.
1925 *
1926 * @param driver the gadget driver to unregister
1927 */
Sebastian Andrzej Siewiore71eb392011-06-23 14:26:16 +02001928static int musb_gadget_stop(struct usb_gadget *g,
1929 struct usb_gadget_driver *driver)
Felipe Balbi550a7372008-07-24 12:27:36 +03001930{
Sebastian Andrzej Siewiore71eb392011-06-23 14:26:16 +02001931 struct musb *musb = gadget_to_musb(g);
Felipe Balbi63eed2b2011-01-17 10:34:38 +02001932 unsigned long flags;
Felipe Balbi550a7372008-07-24 12:27:36 +03001933
Hema HK7acc6192011-02-28 14:19:34 +05301934 if (musb->xceiv->last_event == USB_EVENT_NONE)
1935 pm_runtime_get_sync(musb->controller);
1936
Felipe Balbi63eed2b2011-01-17 10:34:38 +02001937 /*
1938 * REVISIT always use otg_set_peripheral() here too;
Felipe Balbi550a7372008-07-24 12:27:36 +03001939 * this needs to shut down the OTG engine.
1940 */
1941
1942 spin_lock_irqsave(&musb->lock, flags);
1943
Felipe Balbi550a7372008-07-24 12:27:36 +03001944 musb_hnp_stop(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03001945
Felipe Balbi63eed2b2011-01-17 10:34:38 +02001946 (void) musb_gadget_vbus_draw(&musb->g, 0);
Felipe Balbi550a7372008-07-24 12:27:36 +03001947
Felipe Balbi63eed2b2011-01-17 10:34:38 +02001948 musb->xceiv->state = OTG_STATE_UNDEFINED;
1949 stop_activity(musb, driver);
Heikki Krogerus6e13c652012-02-13 13:24:20 +02001950 otg_set_peripheral(musb->xceiv->otg, NULL);
Felipe Balbi550a7372008-07-24 12:27:36 +03001951
Maarten ter Huurneb130f032013-08-19 08:24:08 +02001952 dev_dbg(musb->controller, "unregistering driver %s\n",
1953 driver ? driver->function : "(removed)");
Felipe Balbi550a7372008-07-24 12:27:36 +03001954
Felipe Balbi63eed2b2011-01-17 10:34:38 +02001955 musb->is_active = 0;
Grazvydas Ignotase21de102013-03-10 02:49:14 +02001956 musb->gadget_driver = NULL;
Felipe Balbi63eed2b2011-01-17 10:34:38 +02001957 musb_platform_try_idle(musb, 0);
Felipe Balbi550a7372008-07-24 12:27:36 +03001958 spin_unlock_irqrestore(&musb->lock, flags);
1959
Felipe Balbi032ec492011-11-24 15:46:26 +02001960 /*
1961 * FIXME we need to be able to register another
1962 * gadget driver here and have everything work;
1963 * that currently misbehaves.
1964 */
Felipe Balbi63eed2b2011-01-17 10:34:38 +02001965
Hema HK7acc6192011-02-28 14:19:34 +05301966 pm_runtime_put(musb->controller);
1967
Felipe Balbi63eed2b2011-01-17 10:34:38 +02001968 return 0;
Felipe Balbi550a7372008-07-24 12:27:36 +03001969}
Felipe Balbi550a7372008-07-24 12:27:36 +03001970
1971/* ----------------------------------------------------------------------- */
1972
1973/* lifecycle operations called through plat_uds.c */
1974
1975void musb_g_resume(struct musb *musb)
1976{
1977 musb->is_suspended = 0;
David Brownell84e250f2009-03-31 12:30:04 -07001978 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +03001979 case OTG_STATE_B_IDLE:
1980 break;
1981 case OTG_STATE_B_WAIT_ACON:
1982 case OTG_STATE_B_PERIPHERAL:
1983 musb->is_active = 1;
1984 if (musb->gadget_driver && musb->gadget_driver->resume) {
1985 spin_unlock(&musb->lock);
1986 musb->gadget_driver->resume(&musb->g);
1987 spin_lock(&musb->lock);
1988 }
1989 break;
1990 default:
1991 WARNING("unhandled RESUME transition (%s)\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +02001992 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +03001993 }
1994}
1995
1996/* called when SOF packets stop for 3+ msec */
1997void musb_g_suspend(struct musb *musb)
1998{
1999 u8 devctl;
2000
2001 devctl = musb_readb(musb->mregs, MUSB_DEVCTL);
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03002002 dev_dbg(musb->controller, "devctl %02x\n", devctl);
Felipe Balbi550a7372008-07-24 12:27:36 +03002003
David Brownell84e250f2009-03-31 12:30:04 -07002004 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +03002005 case OTG_STATE_B_IDLE:
2006 if ((devctl & MUSB_DEVCTL_VBUS) == MUSB_DEVCTL_VBUS)
David Brownell84e250f2009-03-31 12:30:04 -07002007 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03002008 break;
2009 case OTG_STATE_B_PERIPHERAL:
2010 musb->is_suspended = 1;
2011 if (musb->gadget_driver && musb->gadget_driver->suspend) {
2012 spin_unlock(&musb->lock);
2013 musb->gadget_driver->suspend(&musb->g);
2014 spin_lock(&musb->lock);
2015 }
2016 break;
2017 default:
2018 /* REVISIT if B_HOST, clear DEVCTL.HOSTREQ;
2019 * A_PERIPHERAL may need care too
2020 */
2021 WARNING("unhandled SUSPEND transition (%s)\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +02002022 usb_otg_state_string(musb->xceiv->state));
Felipe Balbi550a7372008-07-24 12:27:36 +03002023 }
2024}
2025
2026/* Called during SRP */
2027void musb_g_wakeup(struct musb *musb)
2028{
2029 musb_gadget_wakeup(&musb->g);
2030}
2031
2032/* called when VBUS drops below session threshold, and in other cases */
2033void musb_g_disconnect(struct musb *musb)
2034{
2035 void __iomem *mregs = musb->mregs;
2036 u8 devctl = musb_readb(mregs, MUSB_DEVCTL);
2037
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03002038 dev_dbg(musb->controller, "devctl %02x\n", devctl);
Felipe Balbi550a7372008-07-24 12:27:36 +03002039
2040 /* clear HR */
2041 musb_writeb(mregs, MUSB_DEVCTL, devctl & MUSB_DEVCTL_SESSION);
2042
2043 /* don't draw vbus until new b-default session */
2044 (void) musb_gadget_vbus_draw(&musb->g, 0);
2045
2046 musb->g.speed = USB_SPEED_UNKNOWN;
2047 if (musb->gadget_driver && musb->gadget_driver->disconnect) {
2048 spin_unlock(&musb->lock);
2049 musb->gadget_driver->disconnect(&musb->g);
2050 spin_lock(&musb->lock);
2051 }
2052
David Brownell84e250f2009-03-31 12:30:04 -07002053 switch (musb->xceiv->state) {
Felipe Balbi550a7372008-07-24 12:27:36 +03002054 default:
Felipe Balbi5c8a86e2011-05-11 12:44:08 +03002055 dev_dbg(musb->controller, "Unhandled disconnect %s, setting a_idle\n",
Felipe Balbi42c0bf12013-03-07 10:39:57 +02002056 usb_otg_state_string(musb->xceiv->state));
David Brownell84e250f2009-03-31 12:30:04 -07002057 musb->xceiv->state = OTG_STATE_A_IDLE;
David Brownellab983f2a2009-03-31 12:35:09 -07002058 MUSB_HST_MODE(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03002059 break;
2060 case OTG_STATE_A_PERIPHERAL:
David Brownell1de00da2009-04-02 10:16:11 -07002061 musb->xceiv->state = OTG_STATE_A_WAIT_BCON;
David Brownellab983f2a2009-03-31 12:35:09 -07002062 MUSB_HST_MODE(musb);
Felipe Balbi550a7372008-07-24 12:27:36 +03002063 break;
2064 case OTG_STATE_B_WAIT_ACON:
2065 case OTG_STATE_B_HOST:
Felipe Balbi550a7372008-07-24 12:27:36 +03002066 case OTG_STATE_B_PERIPHERAL:
2067 case OTG_STATE_B_IDLE:
David Brownell84e250f2009-03-31 12:30:04 -07002068 musb->xceiv->state = OTG_STATE_B_IDLE;
Felipe Balbi550a7372008-07-24 12:27:36 +03002069 break;
2070 case OTG_STATE_B_SRP_INIT:
2071 break;
2072 }
2073
2074 musb->is_active = 0;
2075}
2076
2077void musb_g_reset(struct musb *musb)
2078__releases(musb->lock)
2079__acquires(musb->lock)
2080{
2081 void __iomem *mbase = musb->mregs;
2082 u8 devctl = musb_readb(mbase, MUSB_DEVCTL);
2083 u8 power;
2084
Sebastian Andrzej Siewior515ba292012-10-30 19:52:24 +01002085 dev_dbg(musb->controller, "<== %s driver '%s'\n",
Felipe Balbi550a7372008-07-24 12:27:36 +03002086 (devctl & MUSB_DEVCTL_BDEVICE)
2087 ? "B-Device" : "A-Device",
Felipe Balbi550a7372008-07-24 12:27:36 +03002088 musb->gadget_driver
2089 ? musb->gadget_driver->driver.name
2090 : NULL
2091 );
2092
2093 /* report disconnect, if we didn't already (flushing EP state) */
2094 if (musb->g.speed != USB_SPEED_UNKNOWN)
2095 musb_g_disconnect(musb);
2096
2097 /* clear HR */
2098 else if (devctl & MUSB_DEVCTL_HR)
2099 musb_writeb(mbase, MUSB_DEVCTL, MUSB_DEVCTL_SESSION);
2100
2101
2102 /* what speed did we negotiate? */
2103 power = musb_readb(mbase, MUSB_POWER);
2104 musb->g.speed = (power & MUSB_POWER_HSMODE)
2105 ? USB_SPEED_HIGH : USB_SPEED_FULL;
2106
2107 /* start in USB_STATE_DEFAULT */
2108 musb->is_active = 1;
2109 musb->is_suspended = 0;
2110 MUSB_DEV_MODE(musb);
2111 musb->address = 0;
2112 musb->ep0_state = MUSB_EP0_STAGE_SETUP;
2113
2114 musb->may_wakeup = 0;
2115 musb->g.b_hnp_enable = 0;
2116 musb->g.a_alt_hnp_support = 0;
2117 musb->g.a_hnp_support = 0;
2118
2119 /* Normal reset, as B-Device;
2120 * or else after HNP, as A-Device
2121 */
Apelete Seketeli23db9fd2013-12-19 21:42:27 +01002122 if (!musb->g.is_otg) {
2123 /* USB device controllers that are not OTG compatible
2124 * may not have DEVCTL register in silicon.
2125 * In that case, do not rely on devctl for setting
2126 * peripheral mode.
2127 */
2128 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
2129 musb->g.is_a_peripheral = 0;
2130 } else if (devctl & MUSB_DEVCTL_BDEVICE) {
David Brownell84e250f2009-03-31 12:30:04 -07002131 musb->xceiv->state = OTG_STATE_B_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03002132 musb->g.is_a_peripheral = 0;
Felipe Balbi032ec492011-11-24 15:46:26 +02002133 } else {
David Brownell84e250f2009-03-31 12:30:04 -07002134 musb->xceiv->state = OTG_STATE_A_PERIPHERAL;
Felipe Balbi550a7372008-07-24 12:27:36 +03002135 musb->g.is_a_peripheral = 1;
Felipe Balbi032ec492011-11-24 15:46:26 +02002136 }
Felipe Balbi550a7372008-07-24 12:27:36 +03002137
2138 /* start with default limits on VBUS power draw */
Felipe Balbi032ec492011-11-24 15:46:26 +02002139 (void) musb_gadget_vbus_draw(&musb->g, 8);
Felipe Balbi550a7372008-07-24 12:27:36 +03002140}