blob: 2a82b7145052d65c0d959431a0c2a2f7eb4f02d2 [file] [log] [blame]
Felipe Balbi72246da2011-08-19 18:10:58 +03001/**
2 * ep0.c - DesignWare USB3 DRD Controller Endpoint 0 Handling
3 *
4 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com
Felipe Balbi72246da2011-08-19 18:10:58 +03005 *
6 * Authors: Felipe Balbi <balbi@ti.com>,
7 * Sebastian Andrzej Siewior <bigeasy@linutronix.de>
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions, and the following disclaimer,
14 * without modification.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. The names of the above-listed copyright holders may not be used
19 * to endorse or promote products derived from this software without
20 * specific prior written permission.
21 *
22 * ALTERNATIVELY, this software may be distributed under the terms of the
23 * GNU General Public License ("GPL") version 2, as published by the Free
24 * Software Foundation.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
27 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
28 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
30 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 */
38
39#include <linux/kernel.h>
40#include <linux/slab.h>
41#include <linux/spinlock.h>
42#include <linux/platform_device.h>
43#include <linux/pm_runtime.h>
44#include <linux/interrupt.h>
45#include <linux/io.h>
46#include <linux/list.h>
47#include <linux/dma-mapping.h>
48
49#include <linux/usb/ch9.h>
50#include <linux/usb/gadget.h>
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +010051#include <linux/usb/composite.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030052
53#include "core.h"
54#include "gadget.h"
55#include "io.h"
56
Felipe Balbi788a23f2012-05-21 14:22:41 +030057static void __dwc3_ep0_do_control_status(struct dwc3 *dwc, struct dwc3_ep *dep);
Felipe Balbia0807882012-05-04 13:03:54 +030058static void __dwc3_ep0_do_control_data(struct dwc3 *dwc,
59 struct dwc3_ep *dep, struct dwc3_request *req);
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +010060
Felipe Balbi72246da2011-08-19 18:10:58 +030061static const char *dwc3_ep0_state_string(enum dwc3_ep0_state state)
62{
63 switch (state) {
64 case EP0_UNCONNECTED:
65 return "Unconnected";
Felipe Balbic7fcdeb2011-08-27 22:28:36 +030066 case EP0_SETUP_PHASE:
67 return "Setup Phase";
68 case EP0_DATA_PHASE:
69 return "Data Phase";
70 case EP0_STATUS_PHASE:
71 return "Status Phase";
Felipe Balbi72246da2011-08-19 18:10:58 +030072 default:
73 return "UNKNOWN";
74 }
75}
76
77static int dwc3_ep0_start_trans(struct dwc3 *dwc, u8 epnum, dma_addr_t buf_dma,
Felipe Balbic7fcdeb2011-08-27 22:28:36 +030078 u32 len, u32 type)
Felipe Balbi72246da2011-08-19 18:10:58 +030079{
80 struct dwc3_gadget_ep_cmd_params params;
Felipe Balbif6bafc62012-02-06 11:04:53 +020081 struct dwc3_trb *trb;
Felipe Balbi72246da2011-08-19 18:10:58 +030082 struct dwc3_ep *dep;
83
84 int ret;
85
86 dep = dwc->eps[epnum];
Felipe Balbic7fcdeb2011-08-27 22:28:36 +030087 if (dep->flags & DWC3_EP_BUSY) {
88 dev_vdbg(dwc->dev, "%s: still busy\n", dep->name);
89 return 0;
90 }
Felipe Balbi72246da2011-08-19 18:10:58 +030091
Felipe Balbif6bafc62012-02-06 11:04:53 +020092 trb = dwc->ep0_trb;
Felipe Balbi72246da2011-08-19 18:10:58 +030093
Felipe Balbif6bafc62012-02-06 11:04:53 +020094 trb->bpl = lower_32_bits(buf_dma);
95 trb->bph = upper_32_bits(buf_dma);
96 trb->size = len;
97 trb->ctrl = type;
Felipe Balbi72246da2011-08-19 18:10:58 +030098
Felipe Balbif6bafc62012-02-06 11:04:53 +020099 trb->ctrl |= (DWC3_TRB_CTRL_HWO
100 | DWC3_TRB_CTRL_LST
101 | DWC3_TRB_CTRL_IOC
102 | DWC3_TRB_CTRL_ISP_IMI);
Felipe Balbi72246da2011-08-19 18:10:58 +0300103
104 memset(&params, 0, sizeof(params));
Felipe Balbidc1c70a2011-09-30 10:58:51 +0300105 params.param0 = upper_32_bits(dwc->ep0_trb_addr);
106 params.param1 = lower_32_bits(dwc->ep0_trb_addr);
Felipe Balbi72246da2011-08-19 18:10:58 +0300107
108 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number,
109 DWC3_DEPCMD_STARTTRANSFER, &params);
110 if (ret < 0) {
111 dev_dbg(dwc->dev, "failed to send STARTTRANSFER command\n");
112 return ret;
113 }
114
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300115 dep->flags |= DWC3_EP_BUSY;
Felipe Balbib4996a82012-06-06 12:04:13 +0300116 dep->resource_index = dwc3_gadget_ep_get_transfer_index(dwc,
Felipe Balbi72246da2011-08-19 18:10:58 +0300117 dep->number);
118
Felipe Balbi1ddcb212011-08-30 15:52:17 +0300119 dwc->ep0_next_event = DWC3_EP0_COMPLETE;
120
Felipe Balbi72246da2011-08-19 18:10:58 +0300121 return 0;
122}
123
124static int __dwc3_gadget_ep0_queue(struct dwc3_ep *dep,
125 struct dwc3_request *req)
126{
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +0100127 struct dwc3 *dwc = dep->dwc;
Felipe Balbi72246da2011-08-19 18:10:58 +0300128
129 req->request.actual = 0;
130 req->request.status = -EINPROGRESS;
Felipe Balbi72246da2011-08-19 18:10:58 +0300131 req->epnum = dep->number;
132
133 list_add_tail(&req->list, &dep->request_list);
Felipe Balbi72246da2011-08-19 18:10:58 +0300134
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300135 /*
136 * Gadget driver might not be quick enough to queue a request
137 * before we get a Transfer Not Ready event on this endpoint.
138 *
139 * In that case, we will set DWC3_EP_PENDING_REQUEST. When that
140 * flag is set, it's telling us that as soon as Gadget queues the
141 * required request, we should kick the transfer here because the
142 * IRQ we were waiting for is long gone.
143 */
144 if (dep->flags & DWC3_EP_PENDING_REQUEST) {
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300145 unsigned direction;
Felipe Balbia6829702011-08-27 22:18:09 +0300146
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300147 direction = !!(dep->flags & DWC3_EP0_DIR_IN);
Felipe Balbia6829702011-08-27 22:18:09 +0300148
Felipe Balbi68d8a782011-12-29 06:32:29 +0200149 if (dwc->ep0state != EP0_DATA_PHASE) {
150 dev_WARN(dwc->dev, "Unexpected pending request\n");
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300151 return 0;
152 }
Felipe Balbia6829702011-08-27 22:18:09 +0300153
Felipe Balbia0807882012-05-04 13:03:54 +0300154 __dwc3_ep0_do_control_data(dwc, dwc->eps[direction], req);
155
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300156 dep->flags &= ~(DWC3_EP_PENDING_REQUEST |
157 DWC3_EP0_DIR_IN);
Felipe Balbid9b33c62012-07-19 08:51:13 +0300158
159 return 0;
160 }
161
162 /*
163 * In case gadget driver asked us to delay the STATUS phase,
164 * handle it here.
165 */
166 if (dwc->delayed_status) {
Felipe Balbi7125d582012-07-19 21:05:08 +0300167 unsigned direction;
168
169 direction = !dwc->ep0_expect_in;
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +0100170 dwc->delayed_status = false;
Felipe Balbi68d3e662011-12-08 13:56:27 +0200171
172 if (dwc->ep0state == EP0_STATUS_PHASE)
Felipe Balbi7125d582012-07-19 21:05:08 +0300173 __dwc3_ep0_do_control_status(dwc, dwc->eps[direction]);
Felipe Balbi68d3e662011-12-08 13:56:27 +0200174 else
175 dev_dbg(dwc->dev, "too early for delayed status\n");
Felipe Balbid9b33c62012-07-19 08:51:13 +0300176
177 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300178 }
179
Felipe Balbifca8892a2012-07-19 09:05:35 +0300180 /*
181 * Unfortunately we have uncovered a limitation wrt the Data Phase.
182 *
183 * Section 9.4 says we can wait for the XferNotReady(DATA) event to
184 * come before issueing Start Transfer command, but if we do, we will
185 * miss situations where the host starts another SETUP phase instead of
186 * the DATA phase. Such cases happen at least on TD.7.6 of the Link
187 * Layer Compliance Suite.
188 *
189 * The problem surfaces due to the fact that in case of back-to-back
190 * SETUP packets there will be no XferNotReady(DATA) generated and we
191 * will be stuck waiting for XferNotReady(DATA) forever.
192 *
193 * By looking at tables 9-13 and 9-14 of the Databook, we can see that
194 * it tells us to start Data Phase right away. It also mentions that if
195 * we receive a SETUP phase instead of the DATA phase, core will issue
196 * XferComplete for the DATA phase, before actually initiating it in
197 * the wire, with the TRB's status set to "SETUP_PENDING". Such status
198 * can only be used to print some debugging logs, as the core expects
199 * us to go through to the STATUS phase and start a CONTROL_STATUS TRB,
200 * just so it completes right away, without transferring anything and,
201 * only then, we can go back to the SETUP phase.
202 *
203 * Because of this scenario, SNPS decided to change the programming
204 * model of control transfers and support on-demand transfers only for
205 * the STATUS phase. To fix the issue we have now, we will always wait
206 * for gadget driver to queue the DATA phase's struct usb_request, then
207 * start it right away.
208 *
209 * If we're actually in a 2-stage transfer, we will wait for
210 * XferNotReady(STATUS).
211 */
212 if (dwc->three_stage_setup) {
213 unsigned direction;
214
215 direction = dwc->ep0_expect_in;
216 dwc->ep0state = EP0_DATA_PHASE;
217
218 __dwc3_ep0_do_control_data(dwc, dwc->eps[direction], req);
219
220 dep->flags &= ~DWC3_EP0_DIR_IN;
221 }
222
Felipe Balbi35f75692012-07-19 08:49:01 +0300223 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300224}
225
226int dwc3_gadget_ep0_queue(struct usb_ep *ep, struct usb_request *request,
227 gfp_t gfp_flags)
228{
229 struct dwc3_request *req = to_dwc3_request(request);
230 struct dwc3_ep *dep = to_dwc3_ep(ep);
231 struct dwc3 *dwc = dep->dwc;
232
233 unsigned long flags;
234
235 int ret;
236
Felipe Balbi72246da2011-08-19 18:10:58 +0300237 spin_lock_irqsave(&dwc->lock, flags);
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200238 if (!dep->endpoint.desc) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300239 dev_dbg(dwc->dev, "trying to queue request %p to disabled %s\n",
240 request, dep->name);
241 ret = -ESHUTDOWN;
242 goto out;
243 }
244
245 /* we share one TRB for ep0/1 */
Sebastian Andrzej Siewiorc2da2ff2011-10-20 19:04:16 +0200246 if (!list_empty(&dep->request_list)) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300247 ret = -EBUSY;
248 goto out;
249 }
250
251 dev_vdbg(dwc->dev, "queueing request %p to %s length %d, state '%s'\n",
252 request, dep->name, request->length,
253 dwc3_ep0_state_string(dwc->ep0state));
254
255 ret = __dwc3_gadget_ep0_queue(dep, req);
256
257out:
258 spin_unlock_irqrestore(&dwc->lock, flags);
259
260 return ret;
261}
262
263static void dwc3_ep0_stall_and_restart(struct dwc3 *dwc)
264{
Felipe Balbi2dfe37d2012-07-23 09:07:41 +0300265 struct dwc3_ep *dep;
266
267 /* reinitialize physical ep1 */
268 dep = dwc->eps[1];
269 dep->flags = DWC3_EP_ENABLED;
Felipe Balbid7422202011-09-08 18:17:12 +0300270
Felipe Balbi72246da2011-08-19 18:10:58 +0300271 /* stall is always issued on EP0 */
Felipe Balbi2dfe37d2012-07-23 09:07:41 +0300272 dep = dwc->eps[0];
Sebastian Andrzej Siewiorc2da2ff2011-10-20 19:04:16 +0200273 __dwc3_gadget_ep_set_halt(dep, 1);
274 dep->flags = DWC3_EP_ENABLED;
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +0100275 dwc->delayed_status = false;
Felipe Balbid7422202011-09-08 18:17:12 +0300276
277 if (!list_empty(&dep->request_list)) {
278 struct dwc3_request *req;
279
280 req = next_request(&dep->request_list);
281 dwc3_gadget_giveback(dep, req, -ECONNRESET);
282 }
283
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300284 dwc->ep0state = EP0_SETUP_PHASE;
Felipe Balbi72246da2011-08-19 18:10:58 +0300285 dwc3_ep0_out_start(dwc);
286}
287
Pratyush Anand08f0d962012-06-25 22:40:43 +0530288int dwc3_gadget_ep0_set_halt(struct usb_ep *ep, int value)
289{
290 struct dwc3_ep *dep = to_dwc3_ep(ep);
291 struct dwc3 *dwc = dep->dwc;
292
293 dwc3_ep0_stall_and_restart(dwc);
294
295 return 0;
296}
297
Felipe Balbi72246da2011-08-19 18:10:58 +0300298void dwc3_ep0_out_start(struct dwc3 *dwc)
299{
Felipe Balbi72246da2011-08-19 18:10:58 +0300300 int ret;
301
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300302 ret = dwc3_ep0_start_trans(dwc, 0, dwc->ctrl_req_addr, 8,
303 DWC3_TRBCTL_CONTROL_SETUP);
Felipe Balbi72246da2011-08-19 18:10:58 +0300304 WARN_ON(ret < 0);
305}
306
Felipe Balbi72246da2011-08-19 18:10:58 +0300307static struct dwc3_ep *dwc3_wIndex_to_dep(struct dwc3 *dwc, __le16 wIndex_le)
308{
309 struct dwc3_ep *dep;
310 u32 windex = le16_to_cpu(wIndex_le);
311 u32 epnum;
312
313 epnum = (windex & USB_ENDPOINT_NUMBER_MASK) << 1;
314 if ((windex & USB_ENDPOINT_DIR_MASK) == USB_DIR_IN)
315 epnum |= 1;
316
317 dep = dwc->eps[epnum];
318 if (dep->flags & DWC3_EP_ENABLED)
319 return dep;
320
321 return NULL;
322}
323
Sebastian Andrzej Siewior8ee62702011-10-18 19:13:29 +0200324static void dwc3_ep0_status_cmpl(struct usb_ep *ep, struct usb_request *req)
Felipe Balbi72246da2011-08-19 18:10:58 +0300325{
Felipe Balbi72246da2011-08-19 18:10:58 +0300326}
Felipe Balbi72246da2011-08-19 18:10:58 +0300327/*
328 * ch 9.4.5
329 */
Felipe Balbi25b8ff62011-11-04 12:32:47 +0200330static int dwc3_ep0_handle_status(struct dwc3 *dwc,
331 struct usb_ctrlrequest *ctrl)
Felipe Balbi72246da2011-08-19 18:10:58 +0300332{
333 struct dwc3_ep *dep;
334 u32 recip;
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200335 u32 reg;
Felipe Balbi72246da2011-08-19 18:10:58 +0300336 u16 usb_status = 0;
337 __le16 *response_pkt;
338
339 recip = ctrl->bRequestType & USB_RECIP_MASK;
340 switch (recip) {
341 case USB_RECIP_DEVICE:
342 /*
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200343 * LTM will be set once we know how to set this in HW.
Felipe Balbi72246da2011-08-19 18:10:58 +0300344 */
345 usb_status |= dwc->is_selfpowered << USB_DEVICE_SELF_POWERED;
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200346
347 if (dwc->speed == DWC3_DSTS_SUPERSPEED) {
348 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
349 if (reg & DWC3_DCTL_INITU1ENA)
350 usb_status |= 1 << USB_DEV_STAT_U1_ENABLED;
351 if (reg & DWC3_DCTL_INITU2ENA)
352 usb_status |= 1 << USB_DEV_STAT_U2_ENABLED;
353 }
354
Felipe Balbi72246da2011-08-19 18:10:58 +0300355 break;
356
357 case USB_RECIP_INTERFACE:
358 /*
359 * Function Remote Wake Capable D0
360 * Function Remote Wakeup D1
361 */
362 break;
363
364 case USB_RECIP_ENDPOINT:
365 dep = dwc3_wIndex_to_dep(dwc, ctrl->wIndex);
366 if (!dep)
Felipe Balbi25b8ff62011-11-04 12:32:47 +0200367 return -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300368
369 if (dep->flags & DWC3_EP_STALL)
370 usb_status = 1 << USB_ENDPOINT_HALT;
371 break;
372 default:
373 return -EINVAL;
374 };
375
376 response_pkt = (__le16 *) dwc->setup_buf;
377 *response_pkt = cpu_to_le16(usb_status);
Felipe Balbie2617792011-11-29 10:35:47 +0200378
379 dep = dwc->eps[0];
380 dwc->ep0_usb_req.dep = dep;
Sebastian Andrzej Siewiore0ce0b02011-11-25 12:03:46 +0100381 dwc->ep0_usb_req.request.length = sizeof(*response_pkt);
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +0200382 dwc->ep0_usb_req.request.buf = dwc->setup_buf;
Sebastian Andrzej Siewiore0ce0b02011-11-25 12:03:46 +0100383 dwc->ep0_usb_req.request.complete = dwc3_ep0_status_cmpl;
Felipe Balbie2617792011-11-29 10:35:47 +0200384
385 return __dwc3_gadget_ep0_queue(dep, &dwc->ep0_usb_req);
Felipe Balbi72246da2011-08-19 18:10:58 +0300386}
387
388static int dwc3_ep0_handle_feature(struct dwc3 *dwc,
389 struct usb_ctrlrequest *ctrl, int set)
390{
391 struct dwc3_ep *dep;
392 u32 recip;
393 u32 wValue;
394 u32 wIndex;
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200395 u32 reg;
Felipe Balbi72246da2011-08-19 18:10:58 +0300396 int ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300397
398 wValue = le16_to_cpu(ctrl->wValue);
399 wIndex = le16_to_cpu(ctrl->wIndex);
400 recip = ctrl->bRequestType & USB_RECIP_MASK;
401 switch (recip) {
402 case USB_RECIP_DEVICE:
403
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200404 switch (wValue) {
405 case USB_DEVICE_REMOTE_WAKEUP:
406 break;
Felipe Balbi72246da2011-08-19 18:10:58 +0300407 /*
408 * 9.4.1 says only only for SS, in AddressState only for
409 * default control pipe
410 */
Felipe Balbi72246da2011-08-19 18:10:58 +0300411 case USB_DEVICE_U1_ENABLE:
Felipe Balbi72246da2011-08-19 18:10:58 +0300412 if (dwc->dev_state != DWC3_CONFIGURED_STATE)
413 return -EINVAL;
414 if (dwc->speed != DWC3_DSTS_SUPERSPEED)
415 return -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300416
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200417 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
418 if (set)
419 reg |= DWC3_DCTL_INITU1ENA;
420 else
421 reg &= ~DWC3_DCTL_INITU1ENA;
422 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +0300423 break;
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200424
Felipe Balbi72246da2011-08-19 18:10:58 +0300425 case USB_DEVICE_U2_ENABLE:
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200426 if (dwc->dev_state != DWC3_CONFIGURED_STATE)
427 return -EINVAL;
428 if (dwc->speed != DWC3_DSTS_SUPERSPEED)
429 return -EINVAL;
430
431 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
432 if (set)
433 reg |= DWC3_DCTL_INITU2ENA;
434 else
435 reg &= ~DWC3_DCTL_INITU2ENA;
436 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +0300437 break;
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200438
Felipe Balbi72246da2011-08-19 18:10:58 +0300439 case USB_DEVICE_LTM_ENABLE:
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200440 return -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300441 break;
442
443 case USB_DEVICE_TEST_MODE:
444 if ((wIndex & 0xff) != 0)
445 return -EINVAL;
446 if (!set)
447 return -EINVAL;
448
Gerard Cauvy3b637362012-02-10 12:21:18 +0200449 dwc->test_mode_nr = wIndex >> 8;
450 dwc->test_mode = true;
Gerard Cauvyecb07792012-03-16 16:20:10 +0200451 break;
452 default:
453 return -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300454 }
455 break;
456
457 case USB_RECIP_INTERFACE:
458 switch (wValue) {
459 case USB_INTRF_FUNC_SUSPEND:
460 if (wIndex & USB_INTRF_FUNC_SUSPEND_LP)
461 /* XXX enable Low power suspend */
462 ;
463 if (wIndex & USB_INTRF_FUNC_SUSPEND_RW)
464 /* XXX enable remote wakeup */
465 ;
466 break;
467 default:
468 return -EINVAL;
469 }
470 break;
471
472 case USB_RECIP_ENDPOINT:
473 switch (wValue) {
474 case USB_ENDPOINT_HALT:
Paul Zimmerman1d046792012-02-15 18:56:56 -0800475 dep = dwc3_wIndex_to_dep(dwc, wIndex);
Felipe Balbi72246da2011-08-19 18:10:58 +0300476 if (!dep)
477 return -EINVAL;
478 ret = __dwc3_gadget_ep_set_halt(dep, set);
479 if (ret)
480 return -EINVAL;
481 break;
482 default:
483 return -EINVAL;
484 }
485 break;
486
487 default:
488 return -EINVAL;
489 };
490
Felipe Balbi72246da2011-08-19 18:10:58 +0300491 return 0;
492}
493
494static int dwc3_ep0_set_address(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
495{
Felipe Balbi72246da2011-08-19 18:10:58 +0300496 u32 addr;
497 u32 reg;
498
499 addr = le16_to_cpu(ctrl->wValue);
Felipe Balbif96a6ec2011-10-15 21:37:35 +0300500 if (addr > 127) {
501 dev_dbg(dwc->dev, "invalid device address %d\n", addr);
Felipe Balbi72246da2011-08-19 18:10:58 +0300502 return -EINVAL;
Felipe Balbif96a6ec2011-10-15 21:37:35 +0300503 }
504
505 if (dwc->dev_state == DWC3_CONFIGURED_STATE) {
506 dev_dbg(dwc->dev, "trying to set address when configured\n");
507 return -EINVAL;
508 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300509
Felipe Balbi26460212011-09-30 10:58:36 +0300510 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
511 reg &= ~(DWC3_DCFG_DEVADDR_MASK);
512 reg |= DWC3_DCFG_DEVADDR(addr);
513 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +0300514
Felipe Balbi14cd5922011-12-19 13:01:52 +0200515 if (addr) {
Felipe Balbi26460212011-09-30 10:58:36 +0300516 dwc->dev_state = DWC3_ADDRESS_STATE;
Felipe Balbi14cd5922011-12-19 13:01:52 +0200517 usb_gadget_set_state(&dwc->gadget, USB_STATE_ADDRESS);
518 } else {
Felipe Balbi26460212011-09-30 10:58:36 +0300519 dwc->dev_state = DWC3_DEFAULT_STATE;
Felipe Balbi14cd5922011-12-19 13:01:52 +0200520 usb_gadget_set_state(&dwc->gadget, USB_STATE_DEFAULT);
521 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300522
Felipe Balbi26460212011-09-30 10:58:36 +0300523 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300524}
525
526static int dwc3_ep0_delegate_req(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
527{
528 int ret;
529
530 spin_unlock(&dwc->lock);
531 ret = dwc->gadget_driver->setup(&dwc->gadget, ctrl);
532 spin_lock(&dwc->lock);
533 return ret;
534}
535
536static int dwc3_ep0_set_config(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
537{
538 u32 cfg;
539 int ret;
Pratyush Anande274a312012-07-02 10:21:54 +0530540 u32 reg;
Felipe Balbi72246da2011-08-19 18:10:58 +0300541
Paul Zimmermanb23c8432011-09-30 10:58:42 +0300542 dwc->start_config_issued = false;
Felipe Balbi72246da2011-08-19 18:10:58 +0300543 cfg = le16_to_cpu(ctrl->wValue);
544
545 switch (dwc->dev_state) {
546 case DWC3_DEFAULT_STATE:
547 return -EINVAL;
548 break;
549
550 case DWC3_ADDRESS_STATE:
551 ret = dwc3_ep0_delegate_req(dwc, ctrl);
552 /* if the cfg matches and the cfg is non zero */
Felipe Balbi457e84b2012-01-18 18:04:09 +0200553 if (cfg && (!ret || (ret == USB_GADGET_DELAYED_STATUS))) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300554 dwc->dev_state = DWC3_CONFIGURED_STATE;
Felipe Balbi14cd5922011-12-19 13:01:52 +0200555 usb_gadget_set_state(&dwc->gadget,
556 USB_STATE_CONFIGURED);
557
Pratyush Anande274a312012-07-02 10:21:54 +0530558 /*
559 * Enable transition to U1/U2 state when
560 * nothing is pending from application.
561 */
562 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
563 reg |= (DWC3_DCTL_ACCEPTU1ENA | DWC3_DCTL_ACCEPTU2ENA);
564 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
565
Felipe Balbi457e84b2012-01-18 18:04:09 +0200566 dwc->resize_fifos = true;
567 dev_dbg(dwc->dev, "resize fifos flag SET\n");
568 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300569 break;
570
571 case DWC3_CONFIGURED_STATE:
572 ret = dwc3_ep0_delegate_req(dwc, ctrl);
Felipe Balbi14cd5922011-12-19 13:01:52 +0200573 if (!cfg) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300574 dwc->dev_state = DWC3_ADDRESS_STATE;
Felipe Balbi14cd5922011-12-19 13:01:52 +0200575 usb_gadget_set_state(&dwc->gadget,
576 USB_STATE_ADDRESS);
577 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300578 break;
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +0100579 default:
580 ret = -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300581 }
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +0100582 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300583}
584
Felipe Balbi865e09e2012-04-24 16:19:49 +0300585static void dwc3_ep0_set_sel_cmpl(struct usb_ep *ep, struct usb_request *req)
586{
587 struct dwc3_ep *dep = to_dwc3_ep(ep);
588 struct dwc3 *dwc = dep->dwc;
589
590 u32 param = 0;
591 u32 reg;
592
593 struct timing {
594 u8 u1sel;
595 u8 u1pel;
596 u16 u2sel;
597 u16 u2pel;
598 } __packed timing;
599
600 int ret;
601
602 memcpy(&timing, req->buf, sizeof(timing));
603
604 dwc->u1sel = timing.u1sel;
605 dwc->u1pel = timing.u1pel;
Felipe Balbic8cf7af2012-05-31 11:00:28 +0300606 dwc->u2sel = le16_to_cpu(timing.u2sel);
607 dwc->u2pel = le16_to_cpu(timing.u2pel);
Felipe Balbi865e09e2012-04-24 16:19:49 +0300608
609 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
610 if (reg & DWC3_DCTL_INITU2ENA)
611 param = dwc->u2pel;
612 if (reg & DWC3_DCTL_INITU1ENA)
613 param = dwc->u1pel;
614
615 /*
616 * According to Synopsys Databook, if parameter is
617 * greater than 125, a value of zero should be
618 * programmed in the register.
619 */
620 if (param > 125)
621 param = 0;
622
623 /* now that we have the time, issue DGCMD Set Sel */
624 ret = dwc3_send_gadget_generic_command(dwc,
625 DWC3_DGCMD_SET_PERIODIC_PAR, param);
626 WARN_ON(ret < 0);
627}
628
629static int dwc3_ep0_set_sel(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
630{
631 struct dwc3_ep *dep;
632 u16 wLength;
633 u16 wValue;
634
635 if (dwc->dev_state == DWC3_DEFAULT_STATE)
636 return -EINVAL;
637
638 wValue = le16_to_cpu(ctrl->wValue);
639 wLength = le16_to_cpu(ctrl->wLength);
640
641 if (wLength != 6) {
642 dev_err(dwc->dev, "Set SEL should be 6 bytes, got %d\n",
643 wLength);
644 return -EINVAL;
645 }
646
647 /*
648 * To handle Set SEL we need to receive 6 bytes from Host. So let's
649 * queue a usb_request for 6 bytes.
650 *
651 * Remember, though, this controller can't handle non-wMaxPacketSize
652 * aligned transfers on the OUT direction, so we queue a request for
653 * wMaxPacketSize instead.
654 */
655 dep = dwc->eps[0];
656 dwc->ep0_usb_req.dep = dep;
657 dwc->ep0_usb_req.request.length = dep->endpoint.maxpacket;
658 dwc->ep0_usb_req.request.buf = dwc->setup_buf;
659 dwc->ep0_usb_req.request.complete = dwc3_ep0_set_sel_cmpl;
660
661 return __dwc3_gadget_ep0_queue(dep, &dwc->ep0_usb_req);
662}
663
Felipe Balbic12a0d82012-04-25 10:45:05 +0300664static int dwc3_ep0_set_isoch_delay(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
665{
666 u16 wLength;
667 u16 wValue;
668 u16 wIndex;
669
670 wValue = le16_to_cpu(ctrl->wValue);
671 wLength = le16_to_cpu(ctrl->wLength);
672 wIndex = le16_to_cpu(ctrl->wIndex);
673
674 if (wIndex || wLength)
675 return -EINVAL;
676
677 /*
678 * REVISIT It's unclear from Databook what to do with this
679 * value. For now, just cache it.
680 */
681 dwc->isoch_delay = wValue;
682
683 return 0;
684}
685
Felipe Balbi72246da2011-08-19 18:10:58 +0300686static int dwc3_ep0_std_request(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
687{
688 int ret;
689
690 switch (ctrl->bRequest) {
691 case USB_REQ_GET_STATUS:
692 dev_vdbg(dwc->dev, "USB_REQ_GET_STATUS\n");
693 ret = dwc3_ep0_handle_status(dwc, ctrl);
694 break;
695 case USB_REQ_CLEAR_FEATURE:
696 dev_vdbg(dwc->dev, "USB_REQ_CLEAR_FEATURE\n");
697 ret = dwc3_ep0_handle_feature(dwc, ctrl, 0);
698 break;
699 case USB_REQ_SET_FEATURE:
700 dev_vdbg(dwc->dev, "USB_REQ_SET_FEATURE\n");
701 ret = dwc3_ep0_handle_feature(dwc, ctrl, 1);
702 break;
703 case USB_REQ_SET_ADDRESS:
704 dev_vdbg(dwc->dev, "USB_REQ_SET_ADDRESS\n");
705 ret = dwc3_ep0_set_address(dwc, ctrl);
706 break;
707 case USB_REQ_SET_CONFIGURATION:
708 dev_vdbg(dwc->dev, "USB_REQ_SET_CONFIGURATION\n");
709 ret = dwc3_ep0_set_config(dwc, ctrl);
710 break;
Felipe Balbi865e09e2012-04-24 16:19:49 +0300711 case USB_REQ_SET_SEL:
712 dev_vdbg(dwc->dev, "USB_REQ_SET_SEL\n");
713 ret = dwc3_ep0_set_sel(dwc, ctrl);
714 break;
Felipe Balbic12a0d82012-04-25 10:45:05 +0300715 case USB_REQ_SET_ISOCH_DELAY:
716 dev_vdbg(dwc->dev, "USB_REQ_SET_ISOCH_DELAY\n");
717 ret = dwc3_ep0_set_isoch_delay(dwc, ctrl);
718 break;
Felipe Balbi72246da2011-08-19 18:10:58 +0300719 default:
720 dev_vdbg(dwc->dev, "Forwarding to gadget driver\n");
721 ret = dwc3_ep0_delegate_req(dwc, ctrl);
722 break;
723 };
724
725 return ret;
726}
727
728static void dwc3_ep0_inspect_setup(struct dwc3 *dwc,
729 const struct dwc3_event_depevt *event)
730{
731 struct usb_ctrlrequest *ctrl = dwc->ctrl_req;
Felipe Balbief21ede2012-05-31 10:29:49 +0300732 int ret = -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300733 u32 len;
734
735 if (!dwc->gadget_driver)
Felipe Balbief21ede2012-05-31 10:29:49 +0300736 goto out;
Felipe Balbi72246da2011-08-19 18:10:58 +0300737
738 len = le16_to_cpu(ctrl->wLength);
Felipe Balbi1ddcb212011-08-30 15:52:17 +0300739 if (!len) {
Felipe Balbid95b09b2011-09-30 10:58:37 +0300740 dwc->three_stage_setup = false;
741 dwc->ep0_expect_in = false;
Felipe Balbi1ddcb212011-08-30 15:52:17 +0300742 dwc->ep0_next_event = DWC3_EP0_NRDY_STATUS;
743 } else {
Felipe Balbid95b09b2011-09-30 10:58:37 +0300744 dwc->three_stage_setup = true;
745 dwc->ep0_expect_in = !!(ctrl->bRequestType & USB_DIR_IN);
Felipe Balbi1ddcb212011-08-30 15:52:17 +0300746 dwc->ep0_next_event = DWC3_EP0_NRDY_DATA;
747 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300748
749 if ((ctrl->bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD)
750 ret = dwc3_ep0_std_request(dwc, ctrl);
751 else
752 ret = dwc3_ep0_delegate_req(dwc, ctrl);
753
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +0100754 if (ret == USB_GADGET_DELAYED_STATUS)
755 dwc->delayed_status = true;
756
Felipe Balbief21ede2012-05-31 10:29:49 +0300757out:
758 if (ret < 0)
759 dwc3_ep0_stall_and_restart(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +0300760}
761
762static void dwc3_ep0_complete_data(struct dwc3 *dwc,
763 const struct dwc3_event_depevt *event)
764{
765 struct dwc3_request *r = NULL;
766 struct usb_request *ur;
Felipe Balbif6bafc62012-02-06 11:04:53 +0200767 struct dwc3_trb *trb;
Sebastian Andrzej Siewiorc2da2ff2011-10-20 19:04:16 +0200768 struct dwc3_ep *ep0;
Felipe Balbic611ccb2011-08-27 02:30:33 +0300769 u32 transferred;
Felipe Balbifca8892a2012-07-19 09:05:35 +0300770 u32 status;
Felipe Balbif6bafc62012-02-06 11:04:53 +0200771 u32 length;
Felipe Balbi72246da2011-08-19 18:10:58 +0300772 u8 epnum;
773
774 epnum = event->endpoint_number;
Sebastian Andrzej Siewiorc2da2ff2011-10-20 19:04:16 +0200775 ep0 = dwc->eps[0];
Felipe Balbi72246da2011-08-19 18:10:58 +0300776
Felipe Balbi1ddcb212011-08-30 15:52:17 +0300777 dwc->ep0_next_event = DWC3_EP0_NRDY_STATUS;
778
Sebastian Andrzej Siewiorc2da2ff2011-10-20 19:04:16 +0200779 r = next_request(&ep0->request_list);
Sebastian Andrzej Siewior8ee62702011-10-18 19:13:29 +0200780 ur = &r->request;
Felipe Balbi72246da2011-08-19 18:10:58 +0300781
Felipe Balbif6bafc62012-02-06 11:04:53 +0200782 trb = dwc->ep0_trb;
Felipe Balbifca8892a2012-07-19 09:05:35 +0300783
784 status = DWC3_TRB_SIZE_TRBSTS(trb->size);
785 if (status == DWC3_TRBSTS_SETUP_PENDING) {
786 dev_dbg(dwc->dev, "Setup Pending received\n");
787
788 if (r)
789 dwc3_gadget_giveback(ep0, r, -ECONNRESET);
790
791 return;
792 }
793
Felipe Balbif6bafc62012-02-06 11:04:53 +0200794 length = trb->size & DWC3_TRB_SIZE_MASK;
Felipe Balbi72246da2011-08-19 18:10:58 +0300795
Felipe Balbia6829702011-08-27 22:18:09 +0300796 if (dwc->ep0_bounced) {
Moiz Sonasath566ccdd2012-03-14 00:44:56 -0500797 unsigned transfer_size = ur->length;
798 unsigned maxp = ep0->endpoint.maxpacket;
799
800 transfer_size += (maxp - (transfer_size % maxp));
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300801 transferred = min_t(u32, ur->length,
Moiz Sonasath566ccdd2012-03-14 00:44:56 -0500802 transfer_size - length);
Felipe Balbia6829702011-08-27 22:18:09 +0300803 memcpy(ur->buf, dwc->ep0_bounce, transferred);
Felipe Balbia6829702011-08-27 22:18:09 +0300804 } else {
Felipe Balbif6bafc62012-02-06 11:04:53 +0200805 transferred = ur->length - length;
Felipe Balbia6829702011-08-27 22:18:09 +0300806 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300807
Felipe Balbicd423dd2012-03-21 11:44:00 +0200808 ur->actual += transferred;
809
Felipe Balbi72246da2011-08-19 18:10:58 +0300810 if ((epnum & 1) && ur->actual < ur->length) {
811 /* for some reason we did not get everything out */
812
813 dwc3_ep0_stall_and_restart(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +0300814 } else {
815 /*
816 * handle the case where we have to send a zero packet. This
817 * seems to be case when req.length > maxpacket. Could it be?
818 */
Felipe Balbi72246da2011-08-19 18:10:58 +0300819 if (r)
Sebastian Andrzej Siewiorc2da2ff2011-10-20 19:04:16 +0200820 dwc3_gadget_giveback(ep0, r, 0);
Felipe Balbi72246da2011-08-19 18:10:58 +0300821 }
822}
823
Felipe Balbi85a78102012-05-31 12:32:37 +0300824static void dwc3_ep0_complete_status(struct dwc3 *dwc,
Felipe Balbi72246da2011-08-19 18:10:58 +0300825 const struct dwc3_event_depevt *event)
826{
827 struct dwc3_request *r;
828 struct dwc3_ep *dep;
Felipe Balbifca8892a2012-07-19 09:05:35 +0300829 struct dwc3_trb *trb;
830 u32 status;
Felipe Balbi72246da2011-08-19 18:10:58 +0300831
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300832 dep = dwc->eps[0];
Felipe Balbifca8892a2012-07-19 09:05:35 +0300833 trb = dwc->ep0_trb;
Felipe Balbi72246da2011-08-19 18:10:58 +0300834
835 if (!list_empty(&dep->request_list)) {
836 r = next_request(&dep->request_list);
837
838 dwc3_gadget_giveback(dep, r, 0);
839 }
840
Gerard Cauvy3b637362012-02-10 12:21:18 +0200841 if (dwc->test_mode) {
842 int ret;
843
844 ret = dwc3_gadget_set_test_mode(dwc, dwc->test_mode_nr);
845 if (ret < 0) {
846 dev_dbg(dwc->dev, "Invalid Test #%d\n",
847 dwc->test_mode_nr);
848 dwc3_ep0_stall_and_restart(dwc);
Felipe Balbi5c81aba2012-06-25 19:30:49 +0300849 return;
Gerard Cauvy3b637362012-02-10 12:21:18 +0200850 }
851 }
852
Felipe Balbifca8892a2012-07-19 09:05:35 +0300853 status = DWC3_TRB_SIZE_TRBSTS(trb->size);
854 if (status == DWC3_TRBSTS_SETUP_PENDING)
855 dev_dbg(dwc->dev, "Setup Pending received\n");
856
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300857 dwc->ep0state = EP0_SETUP_PHASE;
Felipe Balbi72246da2011-08-19 18:10:58 +0300858 dwc3_ep0_out_start(dwc);
859}
860
861static void dwc3_ep0_xfer_complete(struct dwc3 *dwc,
862 const struct dwc3_event_depevt *event)
863{
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300864 struct dwc3_ep *dep = dwc->eps[event->endpoint_number];
865
866 dep->flags &= ~DWC3_EP_BUSY;
Felipe Balbib4996a82012-06-06 12:04:13 +0300867 dep->resource_index = 0;
Felipe Balbidf62df52011-10-14 15:11:49 +0300868 dwc->setup_packet_pending = false;
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300869
Felipe Balbi72246da2011-08-19 18:10:58 +0300870 switch (dwc->ep0state) {
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300871 case EP0_SETUP_PHASE:
872 dev_vdbg(dwc->dev, "Inspecting Setup Bytes\n");
Felipe Balbi72246da2011-08-19 18:10:58 +0300873 dwc3_ep0_inspect_setup(dwc, event);
874 break;
875
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300876 case EP0_DATA_PHASE:
877 dev_vdbg(dwc->dev, "Data Phase\n");
Felipe Balbi72246da2011-08-19 18:10:58 +0300878 dwc3_ep0_complete_data(dwc, event);
879 break;
880
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300881 case EP0_STATUS_PHASE:
882 dev_vdbg(dwc->dev, "Status Phase\n");
Felipe Balbi85a78102012-05-31 12:32:37 +0300883 dwc3_ep0_complete_status(dwc, event);
Felipe Balbi72246da2011-08-19 18:10:58 +0300884 break;
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300885 default:
886 WARN(true, "UNKNOWN ep0state %d\n", dwc->ep0state);
Felipe Balbi72246da2011-08-19 18:10:58 +0300887 }
888}
889
Felipe Balbia0807882012-05-04 13:03:54 +0300890static void __dwc3_ep0_do_control_data(struct dwc3 *dwc,
891 struct dwc3_ep *dep, struct dwc3_request *req)
892{
893 int ret;
894
895 req->direction = !!dep->number;
896
897 if (req->request.length == 0) {
898 ret = dwc3_ep0_start_trans(dwc, dep->number,
899 dwc->ctrl_req_addr, 0,
900 DWC3_TRBCTL_CONTROL_DATA);
Felipe Balbic74c6d42012-05-04 13:08:22 +0300901 } else if (!IS_ALIGNED(req->request.length, dep->endpoint.maxpacket)
Felipe Balbia0807882012-05-04 13:03:54 +0300902 && (dep->number == 0)) {
Andrew Mortonc390b032013-03-08 09:42:50 +0200903 u32 transfer_size;
904 u32 maxpacket;
Felipe Balbia0807882012-05-04 13:03:54 +0300905
906 ret = usb_gadget_map_request(&dwc->gadget, &req->request,
907 dep->number);
908 if (ret) {
909 dev_dbg(dwc->dev, "failed to map request\n");
910 return;
911 }
912
913 WARN_ON(req->request.length > DWC3_EP0_BOUNCE_SIZE);
914
Andrew Mortonc390b032013-03-08 09:42:50 +0200915 maxpacket = dep->endpoint.maxpacket;
916 transfer_size = roundup(req->request.length, maxpacket);
Felipe Balbia0807882012-05-04 13:03:54 +0300917
918 dwc->ep0_bounced = true;
919
920 /*
921 * REVISIT in case request length is bigger than
922 * DWC3_EP0_BOUNCE_SIZE we will need two chained
923 * TRBs to handle the transfer.
924 */
925 ret = dwc3_ep0_start_trans(dwc, dep->number,
926 dwc->ep0_bounce_addr, transfer_size,
927 DWC3_TRBCTL_CONTROL_DATA);
928 } else {
929 ret = usb_gadget_map_request(&dwc->gadget, &req->request,
930 dep->number);
931 if (ret) {
932 dev_dbg(dwc->dev, "failed to map request\n");
933 return;
934 }
935
936 ret = dwc3_ep0_start_trans(dwc, dep->number, req->request.dma,
937 req->request.length, DWC3_TRBCTL_CONTROL_DATA);
938 }
939
940 WARN_ON(ret < 0);
941}
942
Sebastian Andrzej Siewiorf0f2b2a2011-11-02 13:30:44 +0100943static int dwc3_ep0_start_control_status(struct dwc3_ep *dep)
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300944{
Sebastian Andrzej Siewiorf0f2b2a2011-11-02 13:30:44 +0100945 struct dwc3 *dwc = dep->dwc;
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300946 u32 type;
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300947
948 type = dwc->three_stage_setup ? DWC3_TRBCTL_CONTROL_STATUS3
949 : DWC3_TRBCTL_CONTROL_STATUS2;
950
Sebastian Andrzej Siewiorf0f2b2a2011-11-02 13:30:44 +0100951 return dwc3_ep0_start_trans(dwc, dep->number,
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300952 dwc->ctrl_req_addr, 0, type);
Sebastian Andrzej Siewiorf0f2b2a2011-11-02 13:30:44 +0100953}
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300954
Felipe Balbi788a23f2012-05-21 14:22:41 +0300955static void __dwc3_ep0_do_control_status(struct dwc3 *dwc, struct dwc3_ep *dep)
Sebastian Andrzej Siewiorf0f2b2a2011-11-02 13:30:44 +0100956{
Felipe Balbi457e84b2012-01-18 18:04:09 +0200957 if (dwc->resize_fifos) {
958 dev_dbg(dwc->dev, "starting to resize fifos\n");
959 dwc3_gadget_resize_tx_fifos(dwc);
960 dwc->resize_fifos = 0;
961 }
962
Sebastian Andrzej Siewiorf0f2b2a2011-11-02 13:30:44 +0100963 WARN_ON(dwc3_ep0_start_control_status(dep));
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300964}
965
Felipe Balbi788a23f2012-05-21 14:22:41 +0300966static void dwc3_ep0_do_control_status(struct dwc3 *dwc,
967 const struct dwc3_event_depevt *event)
968{
969 struct dwc3_ep *dep = dwc->eps[event->endpoint_number];
970
971 __dwc3_ep0_do_control_status(dwc, dep);
972}
973
Felipe Balbi2e3db062012-07-19 09:26:59 +0300974static void dwc3_ep0_end_control_data(struct dwc3 *dwc, struct dwc3_ep *dep)
975{
976 struct dwc3_gadget_ep_cmd_params params;
977 u32 cmd;
978 int ret;
979
980 if (!dep->resource_index)
981 return;
982
983 cmd = DWC3_DEPCMD_ENDTRANSFER;
984 cmd |= DWC3_DEPCMD_CMDIOC;
985 cmd |= DWC3_DEPCMD_PARAM(dep->resource_index);
986 memset(&params, 0, sizeof(params));
987 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, cmd, &params);
988 WARN_ON_ONCE(ret);
989 dep->resource_index = 0;
990}
991
Felipe Balbi72246da2011-08-19 18:10:58 +0300992static void dwc3_ep0_xfernotready(struct dwc3 *dwc,
993 const struct dwc3_event_depevt *event)
994{
Felipe Balbidf62df52011-10-14 15:11:49 +0300995 dwc->setup_packet_pending = true;
996
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300997 switch (event->status) {
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300998 case DEPEVT_STATUS_CONTROL_DATA:
999 dev_vdbg(dwc->dev, "Control Data\n");
Felipe Balbi1ddcb212011-08-30 15:52:17 +03001000
Felipe Balbi55f3fba2011-09-08 18:27:33 +03001001 /*
Felipe Balbi2e3db062012-07-19 09:26:59 +03001002 * We already have a DATA transfer in the controller's cache,
1003 * if we receive a XferNotReady(DATA) we will ignore it, unless
1004 * it's for the wrong direction.
Felipe Balbi55f3fba2011-09-08 18:27:33 +03001005 *
Felipe Balbi2e3db062012-07-19 09:26:59 +03001006 * In that case, we must issue END_TRANSFER command to the Data
1007 * Phase we already have started and issue SetStall on the
1008 * control endpoint.
Felipe Balbi55f3fba2011-09-08 18:27:33 +03001009 */
1010 if (dwc->ep0_expect_in != event->endpoint_number) {
Felipe Balbi2e3db062012-07-19 09:26:59 +03001011 struct dwc3_ep *dep = dwc->eps[dwc->ep0_expect_in];
1012
Felipe Balbi55f3fba2011-09-08 18:27:33 +03001013 dev_vdbg(dwc->dev, "Wrong direction for Data phase\n");
Felipe Balbi2e3db062012-07-19 09:26:59 +03001014 dwc3_ep0_end_control_data(dwc, dep);
Felipe Balbi55f3fba2011-09-08 18:27:33 +03001015 dwc3_ep0_stall_and_restart(dwc);
1016 return;
1017 }
1018
Felipe Balbi72246da2011-08-19 18:10:58 +03001019 break;
Felipe Balbi1ddcb212011-08-30 15:52:17 +03001020
Felipe Balbic7fcdeb2011-08-27 22:28:36 +03001021 case DEPEVT_STATUS_CONTROL_STATUS:
Felipe Balbi77fa6df2012-07-23 09:09:32 +03001022 if (dwc->ep0_next_event != DWC3_EP0_NRDY_STATUS)
1023 return;
1024
Felipe Balbic7fcdeb2011-08-27 22:28:36 +03001025 dev_vdbg(dwc->dev, "Control Status\n");
Felipe Balbi1ddcb212011-08-30 15:52:17 +03001026
Sebastian Andrzej Siewiorf0f2b2a2011-11-02 13:30:44 +01001027 dwc->ep0state = EP0_STATUS_PHASE;
1028
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +01001029 if (dwc->delayed_status) {
1030 WARN_ON_ONCE(event->endpoint_number != 1);
1031 dev_vdbg(dwc->dev, "Mass Storage delayed status\n");
1032 return;
1033 }
1034
Felipe Balbi788a23f2012-05-21 14:22:41 +03001035 dwc3_ep0_do_control_status(dwc, event);
Felipe Balbi72246da2011-08-19 18:10:58 +03001036 }
1037}
1038
1039void dwc3_ep0_interrupt(struct dwc3 *dwc,
Felipe Balbi8becf272011-11-04 12:40:05 +02001040 const struct dwc3_event_depevt *event)
Felipe Balbi72246da2011-08-19 18:10:58 +03001041{
1042 u8 epnum = event->endpoint_number;
1043
1044 dev_dbg(dwc->dev, "%s while ep%d%s in state '%s'\n",
1045 dwc3_ep_event_string(event->endpoint_event),
Sebastian Andrzej Siewiorb147f352011-09-30 10:58:40 +03001046 epnum >> 1, (epnum & 1) ? "in" : "out",
Felipe Balbi72246da2011-08-19 18:10:58 +03001047 dwc3_ep0_state_string(dwc->ep0state));
1048
1049 switch (event->endpoint_event) {
1050 case DWC3_DEPEVT_XFERCOMPLETE:
1051 dwc3_ep0_xfer_complete(dwc, event);
1052 break;
1053
1054 case DWC3_DEPEVT_XFERNOTREADY:
1055 dwc3_ep0_xfernotready(dwc, event);
1056 break;
1057
1058 case DWC3_DEPEVT_XFERINPROGRESS:
1059 case DWC3_DEPEVT_RXTXFIFOEVT:
1060 case DWC3_DEPEVT_STREAMEVT:
1061 case DWC3_DEPEVT_EPCMDCMPLT:
1062 break;
1063 }
1064}