blob: 21a352079bc25fdd0fe33ddba1a3191b29b812f0 [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 *
Felipe Balbi5945f782013-06-30 14:15:11 +03009 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 of
11 * the License as published by the Free Software Foundation.
Felipe Balbi72246da2011-08-19 18:10:58 +030012 *
Felipe Balbi5945f782013-06-30 14:15:11 +030013 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
Felipe Balbi72246da2011-08-19 18:10:58 +030017 */
18
19#include <linux/kernel.h>
20#include <linux/slab.h>
21#include <linux/spinlock.h>
22#include <linux/platform_device.h>
23#include <linux/pm_runtime.h>
24#include <linux/interrupt.h>
25#include <linux/io.h>
26#include <linux/list.h>
27#include <linux/dma-mapping.h>
28
29#include <linux/usb/ch9.h>
30#include <linux/usb/gadget.h>
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +010031#include <linux/usb/composite.h>
Felipe Balbi72246da2011-08-19 18:10:58 +030032
33#include "core.h"
34#include "gadget.h"
35#include "io.h"
36
Felipe Balbi788a23f2012-05-21 14:22:41 +030037static void __dwc3_ep0_do_control_status(struct dwc3 *dwc, struct dwc3_ep *dep);
Felipe Balbia0807882012-05-04 13:03:54 +030038static void __dwc3_ep0_do_control_data(struct dwc3 *dwc,
39 struct dwc3_ep *dep, struct dwc3_request *req);
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +010040
Felipe Balbi72246da2011-08-19 18:10:58 +030041static const char *dwc3_ep0_state_string(enum dwc3_ep0_state state)
42{
43 switch (state) {
44 case EP0_UNCONNECTED:
45 return "Unconnected";
Felipe Balbic7fcdeb2011-08-27 22:28:36 +030046 case EP0_SETUP_PHASE:
47 return "Setup Phase";
48 case EP0_DATA_PHASE:
49 return "Data Phase";
50 case EP0_STATUS_PHASE:
51 return "Status Phase";
Felipe Balbi72246da2011-08-19 18:10:58 +030052 default:
53 return "UNKNOWN";
54 }
55}
56
57static int dwc3_ep0_start_trans(struct dwc3 *dwc, u8 epnum, dma_addr_t buf_dma,
Felipe Balbic7fcdeb2011-08-27 22:28:36 +030058 u32 len, u32 type)
Felipe Balbi72246da2011-08-19 18:10:58 +030059{
60 struct dwc3_gadget_ep_cmd_params params;
Felipe Balbif6bafc62012-02-06 11:04:53 +020061 struct dwc3_trb *trb;
Felipe Balbi72246da2011-08-19 18:10:58 +030062 struct dwc3_ep *dep;
63
64 int ret;
65
66 dep = dwc->eps[epnum];
Felipe Balbic7fcdeb2011-08-27 22:28:36 +030067 if (dep->flags & DWC3_EP_BUSY) {
68 dev_vdbg(dwc->dev, "%s: still busy\n", dep->name);
69 return 0;
70 }
Felipe Balbi72246da2011-08-19 18:10:58 +030071
Felipe Balbif6bafc62012-02-06 11:04:53 +020072 trb = dwc->ep0_trb;
Felipe Balbi72246da2011-08-19 18:10:58 +030073
Felipe Balbif6bafc62012-02-06 11:04:53 +020074 trb->bpl = lower_32_bits(buf_dma);
75 trb->bph = upper_32_bits(buf_dma);
76 trb->size = len;
77 trb->ctrl = type;
Felipe Balbi72246da2011-08-19 18:10:58 +030078
Felipe Balbif6bafc62012-02-06 11:04:53 +020079 trb->ctrl |= (DWC3_TRB_CTRL_HWO
80 | DWC3_TRB_CTRL_LST
81 | DWC3_TRB_CTRL_IOC
82 | DWC3_TRB_CTRL_ISP_IMI);
Felipe Balbi72246da2011-08-19 18:10:58 +030083
84 memset(&params, 0, sizeof(params));
Felipe Balbidc1c70a2011-09-30 10:58:51 +030085 params.param0 = upper_32_bits(dwc->ep0_trb_addr);
86 params.param1 = lower_32_bits(dwc->ep0_trb_addr);
Felipe Balbi72246da2011-08-19 18:10:58 +030087
88 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number,
89 DWC3_DEPCMD_STARTTRANSFER, &params);
90 if (ret < 0) {
91 dev_dbg(dwc->dev, "failed to send STARTTRANSFER command\n");
92 return ret;
93 }
94
Felipe Balbic7fcdeb2011-08-27 22:28:36 +030095 dep->flags |= DWC3_EP_BUSY;
Felipe Balbib4996a82012-06-06 12:04:13 +030096 dep->resource_index = dwc3_gadget_ep_get_transfer_index(dwc,
Felipe Balbi72246da2011-08-19 18:10:58 +030097 dep->number);
98
Felipe Balbi1ddcb212011-08-30 15:52:17 +030099 dwc->ep0_next_event = DWC3_EP0_COMPLETE;
100
Felipe Balbi72246da2011-08-19 18:10:58 +0300101 return 0;
102}
103
104static int __dwc3_gadget_ep0_queue(struct dwc3_ep *dep,
105 struct dwc3_request *req)
106{
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +0100107 struct dwc3 *dwc = dep->dwc;
Felipe Balbi72246da2011-08-19 18:10:58 +0300108
109 req->request.actual = 0;
110 req->request.status = -EINPROGRESS;
Felipe Balbi72246da2011-08-19 18:10:58 +0300111 req->epnum = dep->number;
112
113 list_add_tail(&req->list, &dep->request_list);
Felipe Balbi72246da2011-08-19 18:10:58 +0300114
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300115 /*
116 * Gadget driver might not be quick enough to queue a request
117 * before we get a Transfer Not Ready event on this endpoint.
118 *
119 * In that case, we will set DWC3_EP_PENDING_REQUEST. When that
120 * flag is set, it's telling us that as soon as Gadget queues the
121 * required request, we should kick the transfer here because the
122 * IRQ we were waiting for is long gone.
123 */
124 if (dep->flags & DWC3_EP_PENDING_REQUEST) {
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300125 unsigned direction;
Felipe Balbia6829702011-08-27 22:18:09 +0300126
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300127 direction = !!(dep->flags & DWC3_EP0_DIR_IN);
Felipe Balbia6829702011-08-27 22:18:09 +0300128
Felipe Balbi68d8a782011-12-29 06:32:29 +0200129 if (dwc->ep0state != EP0_DATA_PHASE) {
130 dev_WARN(dwc->dev, "Unexpected pending request\n");
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300131 return 0;
132 }
Felipe Balbia6829702011-08-27 22:18:09 +0300133
Felipe Balbia0807882012-05-04 13:03:54 +0300134 __dwc3_ep0_do_control_data(dwc, dwc->eps[direction], req);
135
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300136 dep->flags &= ~(DWC3_EP_PENDING_REQUEST |
137 DWC3_EP0_DIR_IN);
Felipe Balbid9b33c62012-07-19 08:51:13 +0300138
139 return 0;
140 }
141
142 /*
143 * In case gadget driver asked us to delay the STATUS phase,
144 * handle it here.
145 */
146 if (dwc->delayed_status) {
Felipe Balbi7125d582012-07-19 21:05:08 +0300147 unsigned direction;
148
149 direction = !dwc->ep0_expect_in;
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +0100150 dwc->delayed_status = false;
Felipe Balbi7c812902013-07-22 12:41:47 +0300151 usb_gadget_set_state(&dwc->gadget, USB_STATE_CONFIGURED);
Felipe Balbi68d3e662011-12-08 13:56:27 +0200152
153 if (dwc->ep0state == EP0_STATUS_PHASE)
Felipe Balbi7125d582012-07-19 21:05:08 +0300154 __dwc3_ep0_do_control_status(dwc, dwc->eps[direction]);
Felipe Balbi68d3e662011-12-08 13:56:27 +0200155 else
156 dev_dbg(dwc->dev, "too early for delayed status\n");
Felipe Balbid9b33c62012-07-19 08:51:13 +0300157
158 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300159 }
160
Felipe Balbifca88922012-07-19 09:05:35 +0300161 /*
162 * Unfortunately we have uncovered a limitation wrt the Data Phase.
163 *
164 * Section 9.4 says we can wait for the XferNotReady(DATA) event to
165 * come before issueing Start Transfer command, but if we do, we will
166 * miss situations where the host starts another SETUP phase instead of
167 * the DATA phase. Such cases happen at least on TD.7.6 of the Link
168 * Layer Compliance Suite.
169 *
170 * The problem surfaces due to the fact that in case of back-to-back
171 * SETUP packets there will be no XferNotReady(DATA) generated and we
172 * will be stuck waiting for XferNotReady(DATA) forever.
173 *
174 * By looking at tables 9-13 and 9-14 of the Databook, we can see that
175 * it tells us to start Data Phase right away. It also mentions that if
176 * we receive a SETUP phase instead of the DATA phase, core will issue
177 * XferComplete for the DATA phase, before actually initiating it in
178 * the wire, with the TRB's status set to "SETUP_PENDING". Such status
179 * can only be used to print some debugging logs, as the core expects
180 * us to go through to the STATUS phase and start a CONTROL_STATUS TRB,
181 * just so it completes right away, without transferring anything and,
182 * only then, we can go back to the SETUP phase.
183 *
184 * Because of this scenario, SNPS decided to change the programming
185 * model of control transfers and support on-demand transfers only for
186 * the STATUS phase. To fix the issue we have now, we will always wait
187 * for gadget driver to queue the DATA phase's struct usb_request, then
188 * start it right away.
189 *
190 * If we're actually in a 2-stage transfer, we will wait for
191 * XferNotReady(STATUS).
192 */
193 if (dwc->three_stage_setup) {
194 unsigned direction;
195
196 direction = dwc->ep0_expect_in;
197 dwc->ep0state = EP0_DATA_PHASE;
198
199 __dwc3_ep0_do_control_data(dwc, dwc->eps[direction], req);
200
201 dep->flags &= ~DWC3_EP0_DIR_IN;
202 }
203
Felipe Balbi35f75692012-07-19 08:49:01 +0300204 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300205}
206
207int dwc3_gadget_ep0_queue(struct usb_ep *ep, struct usb_request *request,
208 gfp_t gfp_flags)
209{
210 struct dwc3_request *req = to_dwc3_request(request);
211 struct dwc3_ep *dep = to_dwc3_ep(ep);
212 struct dwc3 *dwc = dep->dwc;
213
214 unsigned long flags;
215
216 int ret;
217
Felipe Balbi72246da2011-08-19 18:10:58 +0300218 spin_lock_irqsave(&dwc->lock, flags);
Ido Shayevitz16e78db2012-03-12 20:25:24 +0200219 if (!dep->endpoint.desc) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300220 dev_dbg(dwc->dev, "trying to queue request %p to disabled %s\n",
221 request, dep->name);
222 ret = -ESHUTDOWN;
223 goto out;
224 }
225
226 /* we share one TRB for ep0/1 */
Sebastian Andrzej Siewiorc2da2ff2011-10-20 19:04:16 +0200227 if (!list_empty(&dep->request_list)) {
Felipe Balbi72246da2011-08-19 18:10:58 +0300228 ret = -EBUSY;
229 goto out;
230 }
231
232 dev_vdbg(dwc->dev, "queueing request %p to %s length %d, state '%s'\n",
233 request, dep->name, request->length,
234 dwc3_ep0_state_string(dwc->ep0state));
235
236 ret = __dwc3_gadget_ep0_queue(dep, req);
237
238out:
239 spin_unlock_irqrestore(&dwc->lock, flags);
240
241 return ret;
242}
243
244static void dwc3_ep0_stall_and_restart(struct dwc3 *dwc)
245{
Felipe Balbi2dfe37d2012-07-23 09:07:41 +0300246 struct dwc3_ep *dep;
247
248 /* reinitialize physical ep1 */
249 dep = dwc->eps[1];
250 dep->flags = DWC3_EP_ENABLED;
Felipe Balbid7422202011-09-08 18:17:12 +0300251
Felipe Balbi72246da2011-08-19 18:10:58 +0300252 /* stall is always issued on EP0 */
Felipe Balbi2dfe37d2012-07-23 09:07:41 +0300253 dep = dwc->eps[0];
Sebastian Andrzej Siewiorc2da2ff2011-10-20 19:04:16 +0200254 __dwc3_gadget_ep_set_halt(dep, 1);
255 dep->flags = DWC3_EP_ENABLED;
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +0100256 dwc->delayed_status = false;
Felipe Balbid7422202011-09-08 18:17:12 +0300257
258 if (!list_empty(&dep->request_list)) {
259 struct dwc3_request *req;
260
261 req = next_request(&dep->request_list);
262 dwc3_gadget_giveback(dep, req, -ECONNRESET);
263 }
264
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300265 dwc->ep0state = EP0_SETUP_PHASE;
Felipe Balbi72246da2011-08-19 18:10:58 +0300266 dwc3_ep0_out_start(dwc);
267}
268
Pratyush Anand08f0d962012-06-25 22:40:43 +0530269int dwc3_gadget_ep0_set_halt(struct usb_ep *ep, int value)
270{
271 struct dwc3_ep *dep = to_dwc3_ep(ep);
272 struct dwc3 *dwc = dep->dwc;
273
274 dwc3_ep0_stall_and_restart(dwc);
275
276 return 0;
277}
278
Felipe Balbi72246da2011-08-19 18:10:58 +0300279void dwc3_ep0_out_start(struct dwc3 *dwc)
280{
Felipe Balbi72246da2011-08-19 18:10:58 +0300281 int ret;
282
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300283 ret = dwc3_ep0_start_trans(dwc, 0, dwc->ctrl_req_addr, 8,
284 DWC3_TRBCTL_CONTROL_SETUP);
Felipe Balbi72246da2011-08-19 18:10:58 +0300285 WARN_ON(ret < 0);
286}
287
Felipe Balbi72246da2011-08-19 18:10:58 +0300288static struct dwc3_ep *dwc3_wIndex_to_dep(struct dwc3 *dwc, __le16 wIndex_le)
289{
290 struct dwc3_ep *dep;
291 u32 windex = le16_to_cpu(wIndex_le);
292 u32 epnum;
293
294 epnum = (windex & USB_ENDPOINT_NUMBER_MASK) << 1;
295 if ((windex & USB_ENDPOINT_DIR_MASK) == USB_DIR_IN)
296 epnum |= 1;
297
298 dep = dwc->eps[epnum];
299 if (dep->flags & DWC3_EP_ENABLED)
300 return dep;
301
302 return NULL;
303}
304
Sebastian Andrzej Siewior8ee62702011-10-18 19:13:29 +0200305static void dwc3_ep0_status_cmpl(struct usb_ep *ep, struct usb_request *req)
Felipe Balbi72246da2011-08-19 18:10:58 +0300306{
Felipe Balbi72246da2011-08-19 18:10:58 +0300307}
Felipe Balbi72246da2011-08-19 18:10:58 +0300308/*
309 * ch 9.4.5
310 */
Felipe Balbi25b8ff62011-11-04 12:32:47 +0200311static int dwc3_ep0_handle_status(struct dwc3 *dwc,
312 struct usb_ctrlrequest *ctrl)
Felipe Balbi72246da2011-08-19 18:10:58 +0300313{
314 struct dwc3_ep *dep;
315 u32 recip;
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200316 u32 reg;
Felipe Balbi72246da2011-08-19 18:10:58 +0300317 u16 usb_status = 0;
318 __le16 *response_pkt;
319
320 recip = ctrl->bRequestType & USB_RECIP_MASK;
321 switch (recip) {
322 case USB_RECIP_DEVICE:
323 /*
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200324 * LTM will be set once we know how to set this in HW.
Felipe Balbi72246da2011-08-19 18:10:58 +0300325 */
326 usb_status |= dwc->is_selfpowered << USB_DEVICE_SELF_POWERED;
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200327
328 if (dwc->speed == DWC3_DSTS_SUPERSPEED) {
329 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
330 if (reg & DWC3_DCTL_INITU1ENA)
331 usb_status |= 1 << USB_DEV_STAT_U1_ENABLED;
332 if (reg & DWC3_DCTL_INITU2ENA)
333 usb_status |= 1 << USB_DEV_STAT_U2_ENABLED;
334 }
335
Felipe Balbi72246da2011-08-19 18:10:58 +0300336 break;
337
338 case USB_RECIP_INTERFACE:
339 /*
340 * Function Remote Wake Capable D0
341 * Function Remote Wakeup D1
342 */
343 break;
344
345 case USB_RECIP_ENDPOINT:
346 dep = dwc3_wIndex_to_dep(dwc, ctrl->wIndex);
347 if (!dep)
Felipe Balbi25b8ff62011-11-04 12:32:47 +0200348 return -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300349
350 if (dep->flags & DWC3_EP_STALL)
351 usb_status = 1 << USB_ENDPOINT_HALT;
352 break;
353 default:
354 return -EINVAL;
Joe Perches2b84f922013-10-08 16:01:37 -0700355 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300356
357 response_pkt = (__le16 *) dwc->setup_buf;
358 *response_pkt = cpu_to_le16(usb_status);
Felipe Balbie2617792011-11-29 10:35:47 +0200359
360 dep = dwc->eps[0];
361 dwc->ep0_usb_req.dep = dep;
Sebastian Andrzej Siewiore0ce0b02011-11-25 12:03:46 +0100362 dwc->ep0_usb_req.request.length = sizeof(*response_pkt);
Felipe Balbi0fc9a1b2011-12-19 11:32:34 +0200363 dwc->ep0_usb_req.request.buf = dwc->setup_buf;
Sebastian Andrzej Siewiore0ce0b02011-11-25 12:03:46 +0100364 dwc->ep0_usb_req.request.complete = dwc3_ep0_status_cmpl;
Felipe Balbie2617792011-11-29 10:35:47 +0200365
366 return __dwc3_gadget_ep0_queue(dep, &dwc->ep0_usb_req);
Felipe Balbi72246da2011-08-19 18:10:58 +0300367}
368
369static int dwc3_ep0_handle_feature(struct dwc3 *dwc,
370 struct usb_ctrlrequest *ctrl, int set)
371{
372 struct dwc3_ep *dep;
373 u32 recip;
374 u32 wValue;
375 u32 wIndex;
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200376 u32 reg;
Felipe Balbi72246da2011-08-19 18:10:58 +0300377 int ret;
Felipe Balbifdba5aa2013-01-25 11:28:19 +0200378 enum usb_device_state state;
Felipe Balbi72246da2011-08-19 18:10:58 +0300379
380 wValue = le16_to_cpu(ctrl->wValue);
381 wIndex = le16_to_cpu(ctrl->wIndex);
382 recip = ctrl->bRequestType & USB_RECIP_MASK;
Felipe Balbifdba5aa2013-01-25 11:28:19 +0200383 state = dwc->gadget.state;
384
Felipe Balbi72246da2011-08-19 18:10:58 +0300385 switch (recip) {
386 case USB_RECIP_DEVICE:
387
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200388 switch (wValue) {
389 case USB_DEVICE_REMOTE_WAKEUP:
390 break;
Felipe Balbi72246da2011-08-19 18:10:58 +0300391 /*
392 * 9.4.1 says only only for SS, in AddressState only for
393 * default control pipe
394 */
Felipe Balbi72246da2011-08-19 18:10:58 +0300395 case USB_DEVICE_U1_ENABLE:
Felipe Balbifdba5aa2013-01-25 11:28:19 +0200396 if (state != USB_STATE_CONFIGURED)
Felipe Balbi72246da2011-08-19 18:10:58 +0300397 return -EINVAL;
398 if (dwc->speed != DWC3_DSTS_SUPERSPEED)
399 return -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300400
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200401 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
402 if (set)
403 reg |= DWC3_DCTL_INITU1ENA;
404 else
405 reg &= ~DWC3_DCTL_INITU1ENA;
406 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +0300407 break;
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200408
Felipe Balbi72246da2011-08-19 18:10:58 +0300409 case USB_DEVICE_U2_ENABLE:
Felipe Balbifdba5aa2013-01-25 11:28:19 +0200410 if (state != USB_STATE_CONFIGURED)
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200411 return -EINVAL;
412 if (dwc->speed != DWC3_DSTS_SUPERSPEED)
413 return -EINVAL;
414
415 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
416 if (set)
417 reg |= DWC3_DCTL_INITU2ENA;
418 else
419 reg &= ~DWC3_DCTL_INITU2ENA;
420 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +0300421 break;
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200422
Felipe Balbi72246da2011-08-19 18:10:58 +0300423 case USB_DEVICE_LTM_ENABLE:
Sebastian Andrzej Siewiore6a3b5e2011-09-13 17:54:39 +0200424 return -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300425 break;
426
427 case USB_DEVICE_TEST_MODE:
428 if ((wIndex & 0xff) != 0)
429 return -EINVAL;
430 if (!set)
431 return -EINVAL;
432
Gerard Cauvy3b637362012-02-10 12:21:18 +0200433 dwc->test_mode_nr = wIndex >> 8;
434 dwc->test_mode = true;
Gerard Cauvyecb07792012-03-16 16:20:10 +0200435 break;
436 default:
437 return -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300438 }
439 break;
440
441 case USB_RECIP_INTERFACE:
442 switch (wValue) {
443 case USB_INTRF_FUNC_SUSPEND:
444 if (wIndex & USB_INTRF_FUNC_SUSPEND_LP)
445 /* XXX enable Low power suspend */
446 ;
447 if (wIndex & USB_INTRF_FUNC_SUSPEND_RW)
448 /* XXX enable remote wakeup */
449 ;
450 break;
451 default:
452 return -EINVAL;
453 }
454 break;
455
456 case USB_RECIP_ENDPOINT:
457 switch (wValue) {
458 case USB_ENDPOINT_HALT:
Paul Zimmerman1d046792012-02-15 18:56:56 -0800459 dep = dwc3_wIndex_to_dep(dwc, wIndex);
Felipe Balbi72246da2011-08-19 18:10:58 +0300460 if (!dep)
461 return -EINVAL;
Alan Sterna535d812013-11-01 12:05:12 -0400462 if (set == 0 && (dep->flags & DWC3_EP_WEDGE))
463 break;
Felipe Balbi72246da2011-08-19 18:10:58 +0300464 ret = __dwc3_gadget_ep_set_halt(dep, set);
465 if (ret)
466 return -EINVAL;
467 break;
468 default:
469 return -EINVAL;
470 }
471 break;
472
473 default:
474 return -EINVAL;
Joe Perches2b84f922013-10-08 16:01:37 -0700475 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300476
Felipe Balbi72246da2011-08-19 18:10:58 +0300477 return 0;
478}
479
480static int dwc3_ep0_set_address(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
481{
Felipe Balbifdba5aa2013-01-25 11:28:19 +0200482 enum usb_device_state state = dwc->gadget.state;
Felipe Balbi72246da2011-08-19 18:10:58 +0300483 u32 addr;
484 u32 reg;
485
486 addr = le16_to_cpu(ctrl->wValue);
Felipe Balbif96a6ec2011-10-15 21:37:35 +0300487 if (addr > 127) {
488 dev_dbg(dwc->dev, "invalid device address %d\n", addr);
Felipe Balbi72246da2011-08-19 18:10:58 +0300489 return -EINVAL;
Felipe Balbif96a6ec2011-10-15 21:37:35 +0300490 }
491
Felipe Balbifdba5aa2013-01-25 11:28:19 +0200492 if (state == USB_STATE_CONFIGURED) {
Felipe Balbif96a6ec2011-10-15 21:37:35 +0300493 dev_dbg(dwc->dev, "trying to set address when configured\n");
494 return -EINVAL;
495 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300496
Felipe Balbi26460212011-09-30 10:58:36 +0300497 reg = dwc3_readl(dwc->regs, DWC3_DCFG);
498 reg &= ~(DWC3_DCFG_DEVADDR_MASK);
499 reg |= DWC3_DCFG_DEVADDR(addr);
500 dwc3_writel(dwc->regs, DWC3_DCFG, reg);
Felipe Balbi72246da2011-08-19 18:10:58 +0300501
Felipe Balbifdba5aa2013-01-25 11:28:19 +0200502 if (addr)
Felipe Balbi14cd5922011-12-19 13:01:52 +0200503 usb_gadget_set_state(&dwc->gadget, USB_STATE_ADDRESS);
Felipe Balbifdba5aa2013-01-25 11:28:19 +0200504 else
Felipe Balbi14cd5922011-12-19 13:01:52 +0200505 usb_gadget_set_state(&dwc->gadget, USB_STATE_DEFAULT);
Felipe Balbi72246da2011-08-19 18:10:58 +0300506
Felipe Balbi26460212011-09-30 10:58:36 +0300507 return 0;
Felipe Balbi72246da2011-08-19 18:10:58 +0300508}
509
510static int dwc3_ep0_delegate_req(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
511{
512 int ret;
513
514 spin_unlock(&dwc->lock);
515 ret = dwc->gadget_driver->setup(&dwc->gadget, ctrl);
516 spin_lock(&dwc->lock);
517 return ret;
518}
519
520static int dwc3_ep0_set_config(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
521{
Felipe Balbifdba5aa2013-01-25 11:28:19 +0200522 enum usb_device_state state = dwc->gadget.state;
Felipe Balbi72246da2011-08-19 18:10:58 +0300523 u32 cfg;
524 int ret;
Pratyush Anande274a312012-07-02 10:21:54 +0530525 u32 reg;
Felipe Balbi72246da2011-08-19 18:10:58 +0300526
Paul Zimmermanb23c8432011-09-30 10:58:42 +0300527 dwc->start_config_issued = false;
Felipe Balbi72246da2011-08-19 18:10:58 +0300528 cfg = le16_to_cpu(ctrl->wValue);
529
Felipe Balbifdba5aa2013-01-25 11:28:19 +0200530 switch (state) {
531 case USB_STATE_DEFAULT:
Felipe Balbi72246da2011-08-19 18:10:58 +0300532 return -EINVAL;
533 break;
534
Felipe Balbifdba5aa2013-01-25 11:28:19 +0200535 case USB_STATE_ADDRESS:
Felipe Balbi72246da2011-08-19 18:10:58 +0300536 ret = dwc3_ep0_delegate_req(dwc, ctrl);
537 /* if the cfg matches and the cfg is non zero */
Felipe Balbi457e84b2012-01-18 18:04:09 +0200538 if (cfg && (!ret || (ret == USB_GADGET_DELAYED_STATUS))) {
Felipe Balbi7c812902013-07-22 12:41:47 +0300539
540 /*
541 * only change state if set_config has already
542 * been processed. If gadget driver returns
543 * USB_GADGET_DELAYED_STATUS, we will wait
544 * to change the state on the next usb_ep_queue()
545 */
546 if (ret == 0)
547 usb_gadget_set_state(&dwc->gadget,
548 USB_STATE_CONFIGURED);
Felipe Balbi14cd5922011-12-19 13:01:52 +0200549
Pratyush Anande274a312012-07-02 10:21:54 +0530550 /*
551 * Enable transition to U1/U2 state when
552 * nothing is pending from application.
553 */
554 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
555 reg |= (DWC3_DCTL_ACCEPTU1ENA | DWC3_DCTL_ACCEPTU2ENA);
556 dwc3_writel(dwc->regs, DWC3_DCTL, reg);
557
Felipe Balbi457e84b2012-01-18 18:04:09 +0200558 dwc->resize_fifos = true;
559 dev_dbg(dwc->dev, "resize fifos flag SET\n");
560 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300561 break;
562
Felipe Balbifdba5aa2013-01-25 11:28:19 +0200563 case USB_STATE_CONFIGURED:
Felipe Balbi72246da2011-08-19 18:10:58 +0300564 ret = dwc3_ep0_delegate_req(dwc, ctrl);
Felipe Balbi7a42d832013-07-22 12:31:31 +0300565 if (!cfg && !ret)
Felipe Balbi14cd5922011-12-19 13:01:52 +0200566 usb_gadget_set_state(&dwc->gadget,
567 USB_STATE_ADDRESS);
Felipe Balbi72246da2011-08-19 18:10:58 +0300568 break;
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +0100569 default:
570 ret = -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300571 }
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +0100572 return ret;
Felipe Balbi72246da2011-08-19 18:10:58 +0300573}
574
Felipe Balbi865e09e2012-04-24 16:19:49 +0300575static void dwc3_ep0_set_sel_cmpl(struct usb_ep *ep, struct usb_request *req)
576{
577 struct dwc3_ep *dep = to_dwc3_ep(ep);
578 struct dwc3 *dwc = dep->dwc;
579
580 u32 param = 0;
581 u32 reg;
582
583 struct timing {
584 u8 u1sel;
585 u8 u1pel;
586 u16 u2sel;
587 u16 u2pel;
588 } __packed timing;
589
590 int ret;
591
592 memcpy(&timing, req->buf, sizeof(timing));
593
594 dwc->u1sel = timing.u1sel;
595 dwc->u1pel = timing.u1pel;
Felipe Balbic8cf7af2012-05-31 11:00:28 +0300596 dwc->u2sel = le16_to_cpu(timing.u2sel);
597 dwc->u2pel = le16_to_cpu(timing.u2pel);
Felipe Balbi865e09e2012-04-24 16:19:49 +0300598
599 reg = dwc3_readl(dwc->regs, DWC3_DCTL);
600 if (reg & DWC3_DCTL_INITU2ENA)
601 param = dwc->u2pel;
602 if (reg & DWC3_DCTL_INITU1ENA)
603 param = dwc->u1pel;
604
605 /*
606 * According to Synopsys Databook, if parameter is
607 * greater than 125, a value of zero should be
608 * programmed in the register.
609 */
610 if (param > 125)
611 param = 0;
612
613 /* now that we have the time, issue DGCMD Set Sel */
614 ret = dwc3_send_gadget_generic_command(dwc,
615 DWC3_DGCMD_SET_PERIODIC_PAR, param);
616 WARN_ON(ret < 0);
617}
618
619static int dwc3_ep0_set_sel(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
620{
621 struct dwc3_ep *dep;
Felipe Balbifdba5aa2013-01-25 11:28:19 +0200622 enum usb_device_state state = dwc->gadget.state;
Felipe Balbi865e09e2012-04-24 16:19:49 +0300623 u16 wLength;
624 u16 wValue;
625
Felipe Balbifdba5aa2013-01-25 11:28:19 +0200626 if (state == USB_STATE_DEFAULT)
Felipe Balbi865e09e2012-04-24 16:19:49 +0300627 return -EINVAL;
628
629 wValue = le16_to_cpu(ctrl->wValue);
630 wLength = le16_to_cpu(ctrl->wLength);
631
632 if (wLength != 6) {
633 dev_err(dwc->dev, "Set SEL should be 6 bytes, got %d\n",
634 wLength);
635 return -EINVAL;
636 }
637
638 /*
639 * To handle Set SEL we need to receive 6 bytes from Host. So let's
640 * queue a usb_request for 6 bytes.
641 *
642 * Remember, though, this controller can't handle non-wMaxPacketSize
643 * aligned transfers on the OUT direction, so we queue a request for
644 * wMaxPacketSize instead.
645 */
646 dep = dwc->eps[0];
647 dwc->ep0_usb_req.dep = dep;
648 dwc->ep0_usb_req.request.length = dep->endpoint.maxpacket;
649 dwc->ep0_usb_req.request.buf = dwc->setup_buf;
650 dwc->ep0_usb_req.request.complete = dwc3_ep0_set_sel_cmpl;
651
652 return __dwc3_gadget_ep0_queue(dep, &dwc->ep0_usb_req);
653}
654
Felipe Balbic12a0d82012-04-25 10:45:05 +0300655static int dwc3_ep0_set_isoch_delay(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
656{
657 u16 wLength;
658 u16 wValue;
659 u16 wIndex;
660
661 wValue = le16_to_cpu(ctrl->wValue);
662 wLength = le16_to_cpu(ctrl->wLength);
663 wIndex = le16_to_cpu(ctrl->wIndex);
664
665 if (wIndex || wLength)
666 return -EINVAL;
667
668 /*
669 * REVISIT It's unclear from Databook what to do with this
670 * value. For now, just cache it.
671 */
672 dwc->isoch_delay = wValue;
673
674 return 0;
675}
676
Felipe Balbi72246da2011-08-19 18:10:58 +0300677static int dwc3_ep0_std_request(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
678{
679 int ret;
680
681 switch (ctrl->bRequest) {
682 case USB_REQ_GET_STATUS:
683 dev_vdbg(dwc->dev, "USB_REQ_GET_STATUS\n");
684 ret = dwc3_ep0_handle_status(dwc, ctrl);
685 break;
686 case USB_REQ_CLEAR_FEATURE:
687 dev_vdbg(dwc->dev, "USB_REQ_CLEAR_FEATURE\n");
688 ret = dwc3_ep0_handle_feature(dwc, ctrl, 0);
689 break;
690 case USB_REQ_SET_FEATURE:
691 dev_vdbg(dwc->dev, "USB_REQ_SET_FEATURE\n");
692 ret = dwc3_ep0_handle_feature(dwc, ctrl, 1);
693 break;
694 case USB_REQ_SET_ADDRESS:
695 dev_vdbg(dwc->dev, "USB_REQ_SET_ADDRESS\n");
696 ret = dwc3_ep0_set_address(dwc, ctrl);
697 break;
698 case USB_REQ_SET_CONFIGURATION:
699 dev_vdbg(dwc->dev, "USB_REQ_SET_CONFIGURATION\n");
700 ret = dwc3_ep0_set_config(dwc, ctrl);
701 break;
Felipe Balbi865e09e2012-04-24 16:19:49 +0300702 case USB_REQ_SET_SEL:
703 dev_vdbg(dwc->dev, "USB_REQ_SET_SEL\n");
704 ret = dwc3_ep0_set_sel(dwc, ctrl);
705 break;
Felipe Balbic12a0d82012-04-25 10:45:05 +0300706 case USB_REQ_SET_ISOCH_DELAY:
707 dev_vdbg(dwc->dev, "USB_REQ_SET_ISOCH_DELAY\n");
708 ret = dwc3_ep0_set_isoch_delay(dwc, ctrl);
709 break;
Felipe Balbi72246da2011-08-19 18:10:58 +0300710 default:
711 dev_vdbg(dwc->dev, "Forwarding to gadget driver\n");
712 ret = dwc3_ep0_delegate_req(dwc, ctrl);
713 break;
Joe Perches2b84f922013-10-08 16:01:37 -0700714 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300715
716 return ret;
717}
718
719static void dwc3_ep0_inspect_setup(struct dwc3 *dwc,
720 const struct dwc3_event_depevt *event)
721{
722 struct usb_ctrlrequest *ctrl = dwc->ctrl_req;
Felipe Balbief21ede2012-05-31 10:29:49 +0300723 int ret = -EINVAL;
Felipe Balbi72246da2011-08-19 18:10:58 +0300724 u32 len;
725
726 if (!dwc->gadget_driver)
Felipe Balbief21ede2012-05-31 10:29:49 +0300727 goto out;
Felipe Balbi72246da2011-08-19 18:10:58 +0300728
729 len = le16_to_cpu(ctrl->wLength);
Felipe Balbi1ddcb212011-08-30 15:52:17 +0300730 if (!len) {
Felipe Balbid95b09b2011-09-30 10:58:37 +0300731 dwc->three_stage_setup = false;
732 dwc->ep0_expect_in = false;
Felipe Balbi1ddcb212011-08-30 15:52:17 +0300733 dwc->ep0_next_event = DWC3_EP0_NRDY_STATUS;
734 } else {
Felipe Balbid95b09b2011-09-30 10:58:37 +0300735 dwc->three_stage_setup = true;
736 dwc->ep0_expect_in = !!(ctrl->bRequestType & USB_DIR_IN);
Felipe Balbi1ddcb212011-08-30 15:52:17 +0300737 dwc->ep0_next_event = DWC3_EP0_NRDY_DATA;
738 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300739
740 if ((ctrl->bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD)
741 ret = dwc3_ep0_std_request(dwc, ctrl);
742 else
743 ret = dwc3_ep0_delegate_req(dwc, ctrl);
744
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +0100745 if (ret == USB_GADGET_DELAYED_STATUS)
746 dwc->delayed_status = true;
747
Felipe Balbief21ede2012-05-31 10:29:49 +0300748out:
749 if (ret < 0)
750 dwc3_ep0_stall_and_restart(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +0300751}
752
753static void dwc3_ep0_complete_data(struct dwc3 *dwc,
754 const struct dwc3_event_depevt *event)
755{
756 struct dwc3_request *r = NULL;
757 struct usb_request *ur;
Felipe Balbif6bafc62012-02-06 11:04:53 +0200758 struct dwc3_trb *trb;
Sebastian Andrzej Siewiorc2da2ff2011-10-20 19:04:16 +0200759 struct dwc3_ep *ep0;
Felipe Balbic611ccb2011-08-27 02:30:33 +0300760 u32 transferred;
Felipe Balbifca88922012-07-19 09:05:35 +0300761 u32 status;
Felipe Balbif6bafc62012-02-06 11:04:53 +0200762 u32 length;
Felipe Balbi72246da2011-08-19 18:10:58 +0300763 u8 epnum;
764
765 epnum = event->endpoint_number;
Sebastian Andrzej Siewiorc2da2ff2011-10-20 19:04:16 +0200766 ep0 = dwc->eps[0];
Felipe Balbi72246da2011-08-19 18:10:58 +0300767
Felipe Balbi1ddcb212011-08-30 15:52:17 +0300768 dwc->ep0_next_event = DWC3_EP0_NRDY_STATUS;
769
Sebastian Andrzej Siewiorc2da2ff2011-10-20 19:04:16 +0200770 r = next_request(&ep0->request_list);
Sebastian Andrzej Siewior8ee62702011-10-18 19:13:29 +0200771 ur = &r->request;
Felipe Balbi72246da2011-08-19 18:10:58 +0300772
Felipe Balbif6bafc62012-02-06 11:04:53 +0200773 trb = dwc->ep0_trb;
Felipe Balbifca88922012-07-19 09:05:35 +0300774
775 status = DWC3_TRB_SIZE_TRBSTS(trb->size);
776 if (status == DWC3_TRBSTS_SETUP_PENDING) {
777 dev_dbg(dwc->dev, "Setup Pending received\n");
778
779 if (r)
780 dwc3_gadget_giveback(ep0, r, -ECONNRESET);
781
782 return;
783 }
784
Felipe Balbif6bafc62012-02-06 11:04:53 +0200785 length = trb->size & DWC3_TRB_SIZE_MASK;
Felipe Balbi72246da2011-08-19 18:10:58 +0300786
Felipe Balbia6829702011-08-27 22:18:09 +0300787 if (dwc->ep0_bounced) {
Moiz Sonasath566ccdd2012-03-14 00:44:56 -0500788 unsigned transfer_size = ur->length;
789 unsigned maxp = ep0->endpoint.maxpacket;
790
791 transfer_size += (maxp - (transfer_size % maxp));
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300792 transferred = min_t(u32, ur->length,
Moiz Sonasath566ccdd2012-03-14 00:44:56 -0500793 transfer_size - length);
Felipe Balbia6829702011-08-27 22:18:09 +0300794 memcpy(ur->buf, dwc->ep0_bounce, transferred);
Felipe Balbia6829702011-08-27 22:18:09 +0300795 } else {
Felipe Balbif6bafc62012-02-06 11:04:53 +0200796 transferred = ur->length - length;
Felipe Balbia6829702011-08-27 22:18:09 +0300797 }
Felipe Balbi72246da2011-08-19 18:10:58 +0300798
Felipe Balbicd423dd2012-03-21 11:44:00 +0200799 ur->actual += transferred;
800
Felipe Balbi72246da2011-08-19 18:10:58 +0300801 if ((epnum & 1) && ur->actual < ur->length) {
802 /* for some reason we did not get everything out */
803
804 dwc3_ep0_stall_and_restart(dwc);
Felipe Balbi72246da2011-08-19 18:10:58 +0300805 } else {
806 /*
807 * handle the case where we have to send a zero packet. This
808 * seems to be case when req.length > maxpacket. Could it be?
809 */
Felipe Balbi72246da2011-08-19 18:10:58 +0300810 if (r)
Sebastian Andrzej Siewiorc2da2ff2011-10-20 19:04:16 +0200811 dwc3_gadget_giveback(ep0, r, 0);
Felipe Balbi72246da2011-08-19 18:10:58 +0300812 }
813}
814
Felipe Balbi85a78102012-05-31 12:32:37 +0300815static void dwc3_ep0_complete_status(struct dwc3 *dwc,
Felipe Balbi72246da2011-08-19 18:10:58 +0300816 const struct dwc3_event_depevt *event)
817{
818 struct dwc3_request *r;
819 struct dwc3_ep *dep;
Felipe Balbifca88922012-07-19 09:05:35 +0300820 struct dwc3_trb *trb;
821 u32 status;
Felipe Balbi72246da2011-08-19 18:10:58 +0300822
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300823 dep = dwc->eps[0];
Felipe Balbifca88922012-07-19 09:05:35 +0300824 trb = dwc->ep0_trb;
Felipe Balbi72246da2011-08-19 18:10:58 +0300825
826 if (!list_empty(&dep->request_list)) {
827 r = next_request(&dep->request_list);
828
829 dwc3_gadget_giveback(dep, r, 0);
830 }
831
Gerard Cauvy3b637362012-02-10 12:21:18 +0200832 if (dwc->test_mode) {
833 int ret;
834
835 ret = dwc3_gadget_set_test_mode(dwc, dwc->test_mode_nr);
836 if (ret < 0) {
837 dev_dbg(dwc->dev, "Invalid Test #%d\n",
838 dwc->test_mode_nr);
839 dwc3_ep0_stall_and_restart(dwc);
Felipe Balbi5c81aba2012-06-25 19:30:49 +0300840 return;
Gerard Cauvy3b637362012-02-10 12:21:18 +0200841 }
842 }
843
Felipe Balbifca88922012-07-19 09:05:35 +0300844 status = DWC3_TRB_SIZE_TRBSTS(trb->size);
845 if (status == DWC3_TRBSTS_SETUP_PENDING)
846 dev_dbg(dwc->dev, "Setup Pending received\n");
847
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300848 dwc->ep0state = EP0_SETUP_PHASE;
Felipe Balbi72246da2011-08-19 18:10:58 +0300849 dwc3_ep0_out_start(dwc);
850}
851
852static void dwc3_ep0_xfer_complete(struct dwc3 *dwc,
853 const struct dwc3_event_depevt *event)
854{
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300855 struct dwc3_ep *dep = dwc->eps[event->endpoint_number];
856
857 dep->flags &= ~DWC3_EP_BUSY;
Felipe Balbib4996a82012-06-06 12:04:13 +0300858 dep->resource_index = 0;
Felipe Balbidf62df52011-10-14 15:11:49 +0300859 dwc->setup_packet_pending = false;
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300860
Felipe Balbi72246da2011-08-19 18:10:58 +0300861 switch (dwc->ep0state) {
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300862 case EP0_SETUP_PHASE:
863 dev_vdbg(dwc->dev, "Inspecting Setup Bytes\n");
Felipe Balbi72246da2011-08-19 18:10:58 +0300864 dwc3_ep0_inspect_setup(dwc, event);
865 break;
866
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300867 case EP0_DATA_PHASE:
868 dev_vdbg(dwc->dev, "Data Phase\n");
Felipe Balbi72246da2011-08-19 18:10:58 +0300869 dwc3_ep0_complete_data(dwc, event);
870 break;
871
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300872 case EP0_STATUS_PHASE:
873 dev_vdbg(dwc->dev, "Status Phase\n");
Felipe Balbi85a78102012-05-31 12:32:37 +0300874 dwc3_ep0_complete_status(dwc, event);
Felipe Balbi72246da2011-08-19 18:10:58 +0300875 break;
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300876 default:
877 WARN(true, "UNKNOWN ep0state %d\n", dwc->ep0state);
Felipe Balbi72246da2011-08-19 18:10:58 +0300878 }
879}
880
Felipe Balbia0807882012-05-04 13:03:54 +0300881static void __dwc3_ep0_do_control_data(struct dwc3 *dwc,
882 struct dwc3_ep *dep, struct dwc3_request *req)
883{
884 int ret;
885
886 req->direction = !!dep->number;
887
888 if (req->request.length == 0) {
889 ret = dwc3_ep0_start_trans(dwc, dep->number,
890 dwc->ctrl_req_addr, 0,
891 DWC3_TRBCTL_CONTROL_DATA);
Felipe Balbic74c6d42012-05-04 13:08:22 +0300892 } else if (!IS_ALIGNED(req->request.length, dep->endpoint.maxpacket)
Felipe Balbia0807882012-05-04 13:03:54 +0300893 && (dep->number == 0)) {
Andrew Mortonc390b032013-03-08 09:42:50 +0200894 u32 transfer_size;
895 u32 maxpacket;
Felipe Balbia0807882012-05-04 13:03:54 +0300896
897 ret = usb_gadget_map_request(&dwc->gadget, &req->request,
898 dep->number);
899 if (ret) {
900 dev_dbg(dwc->dev, "failed to map request\n");
901 return;
902 }
903
904 WARN_ON(req->request.length > DWC3_EP0_BOUNCE_SIZE);
905
Andrew Mortonc390b032013-03-08 09:42:50 +0200906 maxpacket = dep->endpoint.maxpacket;
907 transfer_size = roundup(req->request.length, maxpacket);
Felipe Balbia0807882012-05-04 13:03:54 +0300908
909 dwc->ep0_bounced = true;
910
911 /*
912 * REVISIT in case request length is bigger than
913 * DWC3_EP0_BOUNCE_SIZE we will need two chained
914 * TRBs to handle the transfer.
915 */
916 ret = dwc3_ep0_start_trans(dwc, dep->number,
917 dwc->ep0_bounce_addr, transfer_size,
918 DWC3_TRBCTL_CONTROL_DATA);
919 } else {
920 ret = usb_gadget_map_request(&dwc->gadget, &req->request,
921 dep->number);
922 if (ret) {
923 dev_dbg(dwc->dev, "failed to map request\n");
924 return;
925 }
926
927 ret = dwc3_ep0_start_trans(dwc, dep->number, req->request.dma,
928 req->request.length, DWC3_TRBCTL_CONTROL_DATA);
929 }
930
931 WARN_ON(ret < 0);
932}
933
Sebastian Andrzej Siewiorf0f2b2a2011-11-02 13:30:44 +0100934static int dwc3_ep0_start_control_status(struct dwc3_ep *dep)
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300935{
Sebastian Andrzej Siewiorf0f2b2a2011-11-02 13:30:44 +0100936 struct dwc3 *dwc = dep->dwc;
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300937 u32 type;
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300938
939 type = dwc->three_stage_setup ? DWC3_TRBCTL_CONTROL_STATUS3
940 : DWC3_TRBCTL_CONTROL_STATUS2;
941
Sebastian Andrzej Siewiorf0f2b2a2011-11-02 13:30:44 +0100942 return dwc3_ep0_start_trans(dwc, dep->number,
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300943 dwc->ctrl_req_addr, 0, type);
Sebastian Andrzej Siewiorf0f2b2a2011-11-02 13:30:44 +0100944}
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300945
Felipe Balbi788a23f2012-05-21 14:22:41 +0300946static void __dwc3_ep0_do_control_status(struct dwc3 *dwc, struct dwc3_ep *dep)
Sebastian Andrzej Siewiorf0f2b2a2011-11-02 13:30:44 +0100947{
Felipe Balbi457e84b2012-01-18 18:04:09 +0200948 if (dwc->resize_fifos) {
949 dev_dbg(dwc->dev, "starting to resize fifos\n");
950 dwc3_gadget_resize_tx_fifos(dwc);
951 dwc->resize_fifos = 0;
952 }
953
Sebastian Andrzej Siewiorf0f2b2a2011-11-02 13:30:44 +0100954 WARN_ON(dwc3_ep0_start_control_status(dep));
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300955}
956
Felipe Balbi788a23f2012-05-21 14:22:41 +0300957static void dwc3_ep0_do_control_status(struct dwc3 *dwc,
958 const struct dwc3_event_depevt *event)
959{
960 struct dwc3_ep *dep = dwc->eps[event->endpoint_number];
961
962 __dwc3_ep0_do_control_status(dwc, dep);
963}
964
Felipe Balbi2e3db062012-07-19 09:26:59 +0300965static void dwc3_ep0_end_control_data(struct dwc3 *dwc, struct dwc3_ep *dep)
966{
967 struct dwc3_gadget_ep_cmd_params params;
968 u32 cmd;
969 int ret;
970
971 if (!dep->resource_index)
972 return;
973
974 cmd = DWC3_DEPCMD_ENDTRANSFER;
975 cmd |= DWC3_DEPCMD_CMDIOC;
976 cmd |= DWC3_DEPCMD_PARAM(dep->resource_index);
977 memset(&params, 0, sizeof(params));
978 ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, cmd, &params);
979 WARN_ON_ONCE(ret);
980 dep->resource_index = 0;
981}
982
Felipe Balbi72246da2011-08-19 18:10:58 +0300983static void dwc3_ep0_xfernotready(struct dwc3 *dwc,
984 const struct dwc3_event_depevt *event)
985{
Felipe Balbidf62df52011-10-14 15:11:49 +0300986 dwc->setup_packet_pending = true;
987
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300988 switch (event->status) {
Felipe Balbic7fcdeb2011-08-27 22:28:36 +0300989 case DEPEVT_STATUS_CONTROL_DATA:
990 dev_vdbg(dwc->dev, "Control Data\n");
Felipe Balbi1ddcb212011-08-30 15:52:17 +0300991
Felipe Balbi55f3fba2011-09-08 18:27:33 +0300992 /*
Felipe Balbi2e3db062012-07-19 09:26:59 +0300993 * We already have a DATA transfer in the controller's cache,
994 * if we receive a XferNotReady(DATA) we will ignore it, unless
995 * it's for the wrong direction.
Felipe Balbi55f3fba2011-09-08 18:27:33 +0300996 *
Felipe Balbi2e3db062012-07-19 09:26:59 +0300997 * In that case, we must issue END_TRANSFER command to the Data
998 * Phase we already have started and issue SetStall on the
999 * control endpoint.
Felipe Balbi55f3fba2011-09-08 18:27:33 +03001000 */
1001 if (dwc->ep0_expect_in != event->endpoint_number) {
Felipe Balbi2e3db062012-07-19 09:26:59 +03001002 struct dwc3_ep *dep = dwc->eps[dwc->ep0_expect_in];
1003
Felipe Balbi55f3fba2011-09-08 18:27:33 +03001004 dev_vdbg(dwc->dev, "Wrong direction for Data phase\n");
Felipe Balbi2e3db062012-07-19 09:26:59 +03001005 dwc3_ep0_end_control_data(dwc, dep);
Felipe Balbi55f3fba2011-09-08 18:27:33 +03001006 dwc3_ep0_stall_and_restart(dwc);
1007 return;
1008 }
1009
Felipe Balbi72246da2011-08-19 18:10:58 +03001010 break;
Felipe Balbi1ddcb212011-08-30 15:52:17 +03001011
Felipe Balbic7fcdeb2011-08-27 22:28:36 +03001012 case DEPEVT_STATUS_CONTROL_STATUS:
Felipe Balbi77fa6df2012-07-23 09:09:32 +03001013 if (dwc->ep0_next_event != DWC3_EP0_NRDY_STATUS)
1014 return;
1015
Felipe Balbic7fcdeb2011-08-27 22:28:36 +03001016 dev_vdbg(dwc->dev, "Control Status\n");
Felipe Balbi1ddcb212011-08-30 15:52:17 +03001017
Sebastian Andrzej Siewiorf0f2b2a2011-11-02 13:30:44 +01001018 dwc->ep0state = EP0_STATUS_PHASE;
1019
Sebastian Andrzej Siewior5bdb1dc2011-11-02 13:30:45 +01001020 if (dwc->delayed_status) {
1021 WARN_ON_ONCE(event->endpoint_number != 1);
1022 dev_vdbg(dwc->dev, "Mass Storage delayed status\n");
1023 return;
1024 }
1025
Felipe Balbi788a23f2012-05-21 14:22:41 +03001026 dwc3_ep0_do_control_status(dwc, event);
Felipe Balbi72246da2011-08-19 18:10:58 +03001027 }
1028}
1029
1030void dwc3_ep0_interrupt(struct dwc3 *dwc,
Felipe Balbi8becf272011-11-04 12:40:05 +02001031 const struct dwc3_event_depevt *event)
Felipe Balbi72246da2011-08-19 18:10:58 +03001032{
1033 u8 epnum = event->endpoint_number;
1034
1035 dev_dbg(dwc->dev, "%s while ep%d%s in state '%s'\n",
1036 dwc3_ep_event_string(event->endpoint_event),
Sebastian Andrzej Siewiorb147f352011-09-30 10:58:40 +03001037 epnum >> 1, (epnum & 1) ? "in" : "out",
Felipe Balbi72246da2011-08-19 18:10:58 +03001038 dwc3_ep0_state_string(dwc->ep0state));
1039
1040 switch (event->endpoint_event) {
1041 case DWC3_DEPEVT_XFERCOMPLETE:
1042 dwc3_ep0_xfer_complete(dwc, event);
1043 break;
1044
1045 case DWC3_DEPEVT_XFERNOTREADY:
1046 dwc3_ep0_xfernotready(dwc, event);
1047 break;
1048
1049 case DWC3_DEPEVT_XFERINPROGRESS:
1050 case DWC3_DEPEVT_RXTXFIFOEVT:
1051 case DWC3_DEPEVT_STREAMEVT:
1052 case DWC3_DEPEVT_EPCMDCMPLT:
1053 break;
1054 }
1055}