ep0.c 26.6 KB
Newer Older
1 2 3 4 5 6 7 8
/**
 * ep0.c - DesignWare USB3 DRD Controller Endpoint 0 Handling
 *
 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com
 *
 * Authors: Felipe Balbi <balbi@ti.com>,
 *	    Sebastian Andrzej Siewior <bigeasy@linutronix.de>
 *
F
Felipe Balbi 已提交
9 10 11
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2  of
 * the License as published by the Free Software Foundation.
12
 *
F
Felipe Balbi 已提交
13 14 15 16
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
17 18 19 20 21 22 23 24 25 26 27 28 29 30
 */

#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/platform_device.h>
#include <linux/pm_runtime.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/list.h>
#include <linux/dma-mapping.h>

#include <linux/usb/ch9.h>
#include <linux/usb/gadget.h>
31
#include <linux/usb/composite.h>
32 33

#include "core.h"
34
#include "debug.h"
35 36 37
#include "gadget.h"
#include "io.h"

38
static void __dwc3_ep0_do_control_status(struct dwc3 *dwc, struct dwc3_ep *dep);
39 40
static void __dwc3_ep0_do_control_data(struct dwc3 *dwc,
		struct dwc3_ep *dep, struct dwc3_request *req);
41

42 43 44 45 46
static const char *dwc3_ep0_state_string(enum dwc3_ep0_state state)
{
	switch (state) {
	case EP0_UNCONNECTED:
		return "Unconnected";
47 48 49 50 51 52
	case EP0_SETUP_PHASE:
		return "Setup Phase";
	case EP0_DATA_PHASE:
		return "Data Phase";
	case EP0_STATUS_PHASE:
		return "Status Phase";
53 54 55 56 57 58
	default:
		return "UNKNOWN";
	}
}

static int dwc3_ep0_start_trans(struct dwc3 *dwc, u8 epnum, dma_addr_t buf_dma,
59
		u32 len, u32 type, bool chain)
60 61
{
	struct dwc3_gadget_ep_cmd_params params;
62
	struct dwc3_trb			*trb;
63 64 65 66 67
	struct dwc3_ep			*dep;

	int				ret;

	dep = dwc->eps[epnum];
68
	if (dep->flags & DWC3_EP_BUSY) {
69
		dwc3_trace(trace_dwc3_ep0, "%s still busy", dep->name);
70 71
		return 0;
	}
72

73 74 75 76
	trb = &dwc->ep0_trb[dep->free_slot];

	if (chain)
		dep->free_slot++;
77

78 79 80 81
	trb->bpl = lower_32_bits(buf_dma);
	trb->bph = upper_32_bits(buf_dma);
	trb->size = len;
	trb->ctrl = type;
82

83 84
	trb->ctrl |= (DWC3_TRB_CTRL_HWO
			| DWC3_TRB_CTRL_ISP_IMI);
85

86 87 88 89 90 91 92 93 94
	if (chain)
		trb->ctrl |= DWC3_TRB_CTRL_CHN;
	else
		trb->ctrl |= (DWC3_TRB_CTRL_IOC
				| DWC3_TRB_CTRL_LST);

	if (chain)
		return 0;

95
	memset(&params, 0, sizeof(params));
96 97
	params.param0 = upper_32_bits(dwc->ep0_trb_addr);
	params.param1 = lower_32_bits(dwc->ep0_trb_addr);
98

F
Felipe Balbi 已提交
99 100
	trace_dwc3_prepare_trb(dep, trb);

101 102 103
	ret = dwc3_send_gadget_ep_cmd(dwc, dep->number,
			DWC3_DEPCMD_STARTTRANSFER, &params);
	if (ret < 0) {
104 105
		dwc3_trace(trace_dwc3_ep0, "%s STARTTRANSFER failed",
				dep->name);
106 107 108
		return ret;
	}

109
	dep->flags |= DWC3_EP_BUSY;
110
	dep->resource_index = dwc3_gadget_ep_get_transfer_index(dwc,
111 112
			dep->number);

113 114
	dwc->ep0_next_event = DWC3_EP0_COMPLETE;

115 116 117 118 119 120
	return 0;
}

static int __dwc3_gadget_ep0_queue(struct dwc3_ep *dep,
		struct dwc3_request *req)
{
121
	struct dwc3		*dwc = dep->dwc;
122 123 124 125 126 127

	req->request.actual	= 0;
	req->request.status	= -EINPROGRESS;
	req->epnum		= dep->number;

	list_add_tail(&req->list, &dep->request_list);
128

129 130 131 132 133 134 135 136 137 138 139 140 141 142
	/*
	 * Gadget driver might not be quick enough to queue a request
	 * before we get a Transfer Not Ready event on this endpoint.
	 *
	 * In that case, we will set DWC3_EP_PENDING_REQUEST. When that
	 * flag is set, it's telling us that as soon as Gadget queues the
	 * required request, we should kick the transfer here because the
	 * IRQ we were waiting for is long gone.
	 */
	if (dep->flags & DWC3_EP_PENDING_REQUEST) {
		unsigned	direction;

		direction = !!(dep->flags & DWC3_EP0_DIR_IN);

143 144
		if (dwc->ep0state != EP0_DATA_PHASE) {
			dev_WARN(dwc->dev, "Unexpected pending request\n");
145 146
			return 0;
		}
147

148 149
		__dwc3_ep0_do_control_data(dwc, dwc->eps[direction], req);

150 151
		dep->flags &= ~(DWC3_EP_PENDING_REQUEST |
				DWC3_EP0_DIR_IN);
152 153 154 155 156 157 158 159 160

		return 0;
	}

	/*
	 * In case gadget driver asked us to delay the STATUS phase,
	 * handle it here.
	 */
	if (dwc->delayed_status) {
161 162 163
		unsigned	direction;

		direction = !dwc->ep0_expect_in;
164
		dwc->delayed_status = false;
165
		usb_gadget_set_state(&dwc->gadget, USB_STATE_CONFIGURED);
166 167

		if (dwc->ep0state == EP0_STATUS_PHASE)
168
			__dwc3_ep0_do_control_status(dwc, dwc->eps[direction]);
169
		else
170 171
			dwc3_trace(trace_dwc3_ep0,
					"too early for delayed status");
172 173

		return 0;
174 175
	}

176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
	/*
	 * Unfortunately we have uncovered a limitation wrt the Data Phase.
	 *
	 * Section 9.4 says we can wait for the XferNotReady(DATA) event to
	 * come before issueing Start Transfer command, but if we do, we will
	 * miss situations where the host starts another SETUP phase instead of
	 * the DATA phase.  Such cases happen at least on TD.7.6 of the Link
	 * Layer Compliance Suite.
	 *
	 * The problem surfaces due to the fact that in case of back-to-back
	 * SETUP packets there will be no XferNotReady(DATA) generated and we
	 * will be stuck waiting for XferNotReady(DATA) forever.
	 *
	 * By looking at tables 9-13 and 9-14 of the Databook, we can see that
	 * it tells us to start Data Phase right away. It also mentions that if
	 * we receive a SETUP phase instead of the DATA phase, core will issue
	 * XferComplete for the DATA phase, before actually initiating it in
	 * the wire, with the TRB's status set to "SETUP_PENDING". Such status
	 * can only be used to print some debugging logs, as the core expects
	 * us to go through to the STATUS phase and start a CONTROL_STATUS TRB,
	 * just so it completes right away, without transferring anything and,
	 * only then, we can go back to the SETUP phase.
	 *
	 * Because of this scenario, SNPS decided to change the programming
	 * model of control transfers and support on-demand transfers only for
	 * the STATUS phase. To fix the issue we have now, we will always wait
	 * for gadget driver to queue the DATA phase's struct usb_request, then
	 * start it right away.
	 *
	 * If we're actually in a 2-stage transfer, we will wait for
	 * XferNotReady(STATUS).
	 */
	if (dwc->three_stage_setup) {
		unsigned        direction;

		direction = dwc->ep0_expect_in;
		dwc->ep0state = EP0_DATA_PHASE;

		__dwc3_ep0_do_control_data(dwc, dwc->eps[direction], req);

		dep->flags &= ~DWC3_EP0_DIR_IN;
	}

219
	return 0;
220 221 222 223 224 225 226 227 228 229 230 231 232 233
}

int dwc3_gadget_ep0_queue(struct usb_ep *ep, struct usb_request *request,
		gfp_t gfp_flags)
{
	struct dwc3_request		*req = to_dwc3_request(request);
	struct dwc3_ep			*dep = to_dwc3_ep(ep);
	struct dwc3			*dwc = dep->dwc;

	unsigned long			flags;

	int				ret;

	spin_lock_irqsave(&dwc->lock, flags);
234
	if (!dep->endpoint.desc) {
235 236
		dwc3_trace(trace_dwc3_ep0,
				"trying to queue request %p to disabled %s",
237 238 239 240 241 242
				request, dep->name);
		ret = -ESHUTDOWN;
		goto out;
	}

	/* we share one TRB for ep0/1 */
243
	if (!list_empty(&dep->request_list)) {
244 245 246 247
		ret = -EBUSY;
		goto out;
	}

248 249
	dwc3_trace(trace_dwc3_ep0,
			"queueing request %p to %s length %d state '%s'",
250 251 252 253 254 255 256 257 258 259 260 261 262
			request, dep->name, request->length,
			dwc3_ep0_state_string(dwc->ep0state));

	ret = __dwc3_gadget_ep0_queue(dep, req);

out:
	spin_unlock_irqrestore(&dwc->lock, flags);

	return ret;
}

static void dwc3_ep0_stall_and_restart(struct dwc3 *dwc)
{
263 264 265 266 267
	struct dwc3_ep		*dep;

	/* reinitialize physical ep1 */
	dep = dwc->eps[1];
	dep->flags = DWC3_EP_ENABLED;
268

269
	/* stall is always issued on EP0 */
270
	dep = dwc->eps[0];
271
	__dwc3_gadget_ep_set_halt(dep, 1, false);
272
	dep->flags = DWC3_EP_ENABLED;
273
	dwc->delayed_status = false;
274 275 276 277 278 279 280 281

	if (!list_empty(&dep->request_list)) {
		struct dwc3_request	*req;

		req = next_request(&dep->request_list);
		dwc3_gadget_giveback(dep, req, -ECONNRESET);
	}

282
	dwc->ep0state = EP0_SETUP_PHASE;
283 284 285
	dwc3_ep0_out_start(dwc);
}

286
int __dwc3_gadget_ep0_set_halt(struct usb_ep *ep, int value)
287 288 289 290 291 292 293 294 295
{
	struct dwc3_ep			*dep = to_dwc3_ep(ep);
	struct dwc3			*dwc = dep->dwc;

	dwc3_ep0_stall_and_restart(dwc);

	return 0;
}

296 297 298 299 300 301 302 303 304 305 306 307 308 309
int dwc3_gadget_ep0_set_halt(struct usb_ep *ep, int value)
{
	struct dwc3_ep			*dep = to_dwc3_ep(ep);
	struct dwc3			*dwc = dep->dwc;
	unsigned long			flags;
	int				ret;

	spin_lock_irqsave(&dwc->lock, flags);
	ret = __dwc3_gadget_ep0_set_halt(ep, value);
	spin_unlock_irqrestore(&dwc->lock, flags);

	return ret;
}

310 311 312 313
void dwc3_ep0_out_start(struct dwc3 *dwc)
{
	int				ret;

314
	ret = dwc3_ep0_start_trans(dwc, 0, dwc->ctrl_req_addr, 8,
315
			DWC3_TRBCTL_CONTROL_SETUP, false);
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
	WARN_ON(ret < 0);
}

static struct dwc3_ep *dwc3_wIndex_to_dep(struct dwc3 *dwc, __le16 wIndex_le)
{
	struct dwc3_ep		*dep;
	u32			windex = le16_to_cpu(wIndex_le);
	u32			epnum;

	epnum = (windex & USB_ENDPOINT_NUMBER_MASK) << 1;
	if ((windex & USB_ENDPOINT_DIR_MASK) == USB_DIR_IN)
		epnum |= 1;

	dep = dwc->eps[epnum];
	if (dep->flags & DWC3_EP_ENABLED)
		return dep;

	return NULL;
}

336
static void dwc3_ep0_status_cmpl(struct usb_ep *ep, struct usb_request *req)
337 338 339 340 341
{
}
/*
 * ch 9.4.5
 */
342 343
static int dwc3_ep0_handle_status(struct dwc3 *dwc,
		struct usb_ctrlrequest *ctrl)
344 345 346
{
	struct dwc3_ep		*dep;
	u32			recip;
347
	u32			reg;
348 349 350 351 352 353 354
	u16			usb_status = 0;
	__le16			*response_pkt;

	recip = ctrl->bRequestType & USB_RECIP_MASK;
	switch (recip) {
	case USB_RECIP_DEVICE:
		/*
355
		 * LTM will be set once we know how to set this in HW.
356
		 */
357
		usb_status |= dwc->gadget.is_selfpowered;
358

359 360
		if ((dwc->speed == DWC3_DSTS_SUPERSPEED) ||
		    (dwc->speed == DWC3_DSTS_SUPERSPEED_PLUS)) {
361 362 363 364 365 366 367
			reg = dwc3_readl(dwc->regs, DWC3_DCTL);
			if (reg & DWC3_DCTL_INITU1ENA)
				usb_status |= 1 << USB_DEV_STAT_U1_ENABLED;
			if (reg & DWC3_DCTL_INITU2ENA)
				usb_status |= 1 << USB_DEV_STAT_U2_ENABLED;
		}

368 369 370 371 372 373 374 375 376 377 378 379
		break;

	case USB_RECIP_INTERFACE:
		/*
		 * Function Remote Wake Capable	D0
		 * Function Remote Wakeup	D1
		 */
		break;

	case USB_RECIP_ENDPOINT:
		dep = dwc3_wIndex_to_dep(dwc, ctrl->wIndex);
		if (!dep)
380
			return -EINVAL;
381 382 383 384 385 386

		if (dep->flags & DWC3_EP_STALL)
			usb_status = 1 << USB_ENDPOINT_HALT;
		break;
	default:
		return -EINVAL;
J
Joe Perches 已提交
387
	}
388 389 390

	response_pkt = (__le16 *) dwc->setup_buf;
	*response_pkt = cpu_to_le16(usb_status);
391 392 393

	dep = dwc->eps[0];
	dwc->ep0_usb_req.dep = dep;
394
	dwc->ep0_usb_req.request.length = sizeof(*response_pkt);
395
	dwc->ep0_usb_req.request.buf = dwc->setup_buf;
396
	dwc->ep0_usb_req.request.complete = dwc3_ep0_status_cmpl;
397 398

	return __dwc3_gadget_ep0_queue(dep, &dwc->ep0_usb_req);
399 400 401 402 403 404 405 406 407
}

static int dwc3_ep0_handle_feature(struct dwc3 *dwc,
		struct usb_ctrlrequest *ctrl, int set)
{
	struct dwc3_ep		*dep;
	u32			recip;
	u32			wValue;
	u32			wIndex;
408
	u32			reg;
409
	int			ret;
410
	enum usb_device_state	state;
411 412 413 414

	wValue = le16_to_cpu(ctrl->wValue);
	wIndex = le16_to_cpu(ctrl->wIndex);
	recip = ctrl->bRequestType & USB_RECIP_MASK;
415 416
	state = dwc->gadget.state;

417 418 419
	switch (recip) {
	case USB_RECIP_DEVICE:

420 421 422
		switch (wValue) {
		case USB_DEVICE_REMOTE_WAKEUP:
			break;
423 424 425 426 427
		/*
		 * 9.4.1 says only only for SS, in AddressState only for
		 * default control pipe
		 */
		case USB_DEVICE_U1_ENABLE:
428
			if (state != USB_STATE_CONFIGURED)
429
				return -EINVAL;
430 431
			if ((dwc->speed != DWC3_DSTS_SUPERSPEED) &&
			    (dwc->speed != DWC3_DSTS_SUPERSPEED_PLUS))
432 433
				return -EINVAL;

434 435 436 437 438 439
			reg = dwc3_readl(dwc->regs, DWC3_DCTL);
			if (set)
				reg |= DWC3_DCTL_INITU1ENA;
			else
				reg &= ~DWC3_DCTL_INITU1ENA;
			dwc3_writel(dwc->regs, DWC3_DCTL, reg);
440
			break;
441

442
		case USB_DEVICE_U2_ENABLE:
443
			if (state != USB_STATE_CONFIGURED)
444
				return -EINVAL;
445 446
			if ((dwc->speed != DWC3_DSTS_SUPERSPEED) &&
			    (dwc->speed != DWC3_DSTS_SUPERSPEED_PLUS))
447 448 449 450 451 452 453 454
				return -EINVAL;

			reg = dwc3_readl(dwc->regs, DWC3_DCTL);
			if (set)
				reg |= DWC3_DCTL_INITU2ENA;
			else
				reg &= ~DWC3_DCTL_INITU2ENA;
			dwc3_writel(dwc->regs, DWC3_DCTL, reg);
455
			break;
456

457
		case USB_DEVICE_LTM_ENABLE:
458
			return -EINVAL;
459 460 461 462 463 464 465

		case USB_DEVICE_TEST_MODE:
			if ((wIndex & 0xff) != 0)
				return -EINVAL;
			if (!set)
				return -EINVAL;

466 467
			dwc->test_mode_nr = wIndex >> 8;
			dwc->test_mode = true;
468 469 470
			break;
		default:
			return -EINVAL;
471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
		}
		break;

	case USB_RECIP_INTERFACE:
		switch (wValue) {
		case USB_INTRF_FUNC_SUSPEND:
			if (wIndex & USB_INTRF_FUNC_SUSPEND_LP)
				/* XXX enable Low power suspend */
				;
			if (wIndex & USB_INTRF_FUNC_SUSPEND_RW)
				/* XXX enable remote wakeup */
				;
			break;
		default:
			return -EINVAL;
		}
		break;

	case USB_RECIP_ENDPOINT:
		switch (wValue) {
		case USB_ENDPOINT_HALT:
492
			dep = dwc3_wIndex_to_dep(dwc, wIndex);
493 494
			if (!dep)
				return -EINVAL;
495 496
			if (set == 0 && (dep->flags & DWC3_EP_WEDGE))
				break;
497
			ret = __dwc3_gadget_ep_set_halt(dep, set, true);
498 499 500 501 502 503 504 505 506 507
			if (ret)
				return -EINVAL;
			break;
		default:
			return -EINVAL;
		}
		break;

	default:
		return -EINVAL;
J
Joe Perches 已提交
508
	}
509 510 511 512 513 514

	return 0;
}

static int dwc3_ep0_set_address(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
{
515
	enum usb_device_state state = dwc->gadget.state;
516 517 518 519
	u32 addr;
	u32 reg;

	addr = le16_to_cpu(ctrl->wValue);
520
	if (addr > 127) {
521
		dwc3_trace(trace_dwc3_ep0, "invalid device address %d", addr);
522
		return -EINVAL;
523 524
	}

525
	if (state == USB_STATE_CONFIGURED) {
526 527
		dwc3_trace(trace_dwc3_ep0,
				"trying to set address when configured");
528 529
		return -EINVAL;
	}
530

531 532 533 534
	reg = dwc3_readl(dwc->regs, DWC3_DCFG);
	reg &= ~(DWC3_DCFG_DEVADDR_MASK);
	reg |= DWC3_DCFG_DEVADDR(addr);
	dwc3_writel(dwc->regs, DWC3_DCFG, reg);
535

536
	if (addr)
537
		usb_gadget_set_state(&dwc->gadget, USB_STATE_ADDRESS);
538
	else
539
		usb_gadget_set_state(&dwc->gadget, USB_STATE_DEFAULT);
540

541
	return 0;
542 543 544 545 546 547 548 549 550 551 552 553 554 555
}

static int dwc3_ep0_delegate_req(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
{
	int ret;

	spin_unlock(&dwc->lock);
	ret = dwc->gadget_driver->setup(&dwc->gadget, ctrl);
	spin_lock(&dwc->lock);
	return ret;
}

static int dwc3_ep0_set_config(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
{
556
	enum usb_device_state state = dwc->gadget.state;
557 558
	u32 cfg;
	int ret;
559
	u32 reg;
560 561 562

	cfg = le16_to_cpu(ctrl->wValue);

563 564
	switch (state) {
	case USB_STATE_DEFAULT:
565 566
		return -EINVAL;

567
	case USB_STATE_ADDRESS:
568 569
		ret = dwc3_ep0_delegate_req(dwc, ctrl);
		/* if the cfg matches and the cfg is non zero */
570
		if (cfg && (!ret || (ret == USB_GADGET_DELAYED_STATUS))) {
571 572 573 574 575 576 577 578 579 580

			/*
			 * only change state if set_config has already
			 * been processed. If gadget driver returns
			 * USB_GADGET_DELAYED_STATUS, we will wait
			 * to change the state on the next usb_ep_queue()
			 */
			if (ret == 0)
				usb_gadget_set_state(&dwc->gadget,
						USB_STATE_CONFIGURED);
581

582 583 584 585 586 587 588
			/*
			 * Enable transition to U1/U2 state when
			 * nothing is pending from application.
			 */
			reg = dwc3_readl(dwc->regs, DWC3_DCTL);
			reg |= (DWC3_DCTL_ACCEPTU1ENA | DWC3_DCTL_ACCEPTU2ENA);
			dwc3_writel(dwc->regs, DWC3_DCTL, reg);
589
		}
590 591
		break;

592
	case USB_STATE_CONFIGURED:
593
		ret = dwc3_ep0_delegate_req(dwc, ctrl);
594
		if (!cfg && !ret)
595 596
			usb_gadget_set_state(&dwc->gadget,
					USB_STATE_ADDRESS);
597
		break;
598 599
	default:
		ret = -EINVAL;
600
	}
601
	return ret;
602 603
}

604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
static void dwc3_ep0_set_sel_cmpl(struct usb_ep *ep, struct usb_request *req)
{
	struct dwc3_ep	*dep = to_dwc3_ep(ep);
	struct dwc3	*dwc = dep->dwc;

	u32		param = 0;
	u32		reg;

	struct timing {
		u8	u1sel;
		u8	u1pel;
		u16	u2sel;
		u16	u2pel;
	} __packed timing;

	int		ret;

	memcpy(&timing, req->buf, sizeof(timing));

	dwc->u1sel = timing.u1sel;
	dwc->u1pel = timing.u1pel;
625 626
	dwc->u2sel = le16_to_cpu(timing.u2sel);
	dwc->u2pel = le16_to_cpu(timing.u2pel);
627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650

	reg = dwc3_readl(dwc->regs, DWC3_DCTL);
	if (reg & DWC3_DCTL_INITU2ENA)
		param = dwc->u2pel;
	if (reg & DWC3_DCTL_INITU1ENA)
		param = dwc->u1pel;

	/*
	 * According to Synopsys Databook, if parameter is
	 * greater than 125, a value of zero should be
	 * programmed in the register.
	 */
	if (param > 125)
		param = 0;

	/* now that we have the time, issue DGCMD Set Sel */
	ret = dwc3_send_gadget_generic_command(dwc,
			DWC3_DGCMD_SET_PERIODIC_PAR, param);
	WARN_ON(ret < 0);
}

static int dwc3_ep0_set_sel(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
{
	struct dwc3_ep	*dep;
651
	enum usb_device_state state = dwc->gadget.state;
652 653 654
	u16		wLength;
	u16		wValue;

655
	if (state == USB_STATE_DEFAULT)
656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
		return -EINVAL;

	wValue = le16_to_cpu(ctrl->wValue);
	wLength = le16_to_cpu(ctrl->wLength);

	if (wLength != 6) {
		dev_err(dwc->dev, "Set SEL should be 6 bytes, got %d\n",
				wLength);
		return -EINVAL;
	}

	/*
	 * To handle Set SEL we need to receive 6 bytes from Host. So let's
	 * queue a usb_request for 6 bytes.
	 *
	 * Remember, though, this controller can't handle non-wMaxPacketSize
	 * aligned transfers on the OUT direction, so we queue a request for
	 * wMaxPacketSize instead.
	 */
	dep = dwc->eps[0];
	dwc->ep0_usb_req.dep = dep;
	dwc->ep0_usb_req.request.length = dep->endpoint.maxpacket;
	dwc->ep0_usb_req.request.buf = dwc->setup_buf;
	dwc->ep0_usb_req.request.complete = dwc3_ep0_set_sel_cmpl;

	return __dwc3_gadget_ep0_queue(dep, &dwc->ep0_usb_req);
}

684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
static int dwc3_ep0_set_isoch_delay(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
{
	u16		wLength;
	u16		wValue;
	u16		wIndex;

	wValue = le16_to_cpu(ctrl->wValue);
	wLength = le16_to_cpu(ctrl->wLength);
	wIndex = le16_to_cpu(ctrl->wIndex);

	if (wIndex || wLength)
		return -EINVAL;

	/*
	 * REVISIT It's unclear from Databook what to do with this
	 * value. For now, just cache it.
	 */
	dwc->isoch_delay = wValue;

	return 0;
}

706 707 708 709 710 711
static int dwc3_ep0_std_request(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
{
	int ret;

	switch (ctrl->bRequest) {
	case USB_REQ_GET_STATUS:
712
		dwc3_trace(trace_dwc3_ep0, "USB_REQ_GET_STATUS");
713 714 715
		ret = dwc3_ep0_handle_status(dwc, ctrl);
		break;
	case USB_REQ_CLEAR_FEATURE:
716
		dwc3_trace(trace_dwc3_ep0, "USB_REQ_CLEAR_FEATURE");
717 718 719
		ret = dwc3_ep0_handle_feature(dwc, ctrl, 0);
		break;
	case USB_REQ_SET_FEATURE:
720
		dwc3_trace(trace_dwc3_ep0, "USB_REQ_SET_FEATURE");
721 722 723
		ret = dwc3_ep0_handle_feature(dwc, ctrl, 1);
		break;
	case USB_REQ_SET_ADDRESS:
724
		dwc3_trace(trace_dwc3_ep0, "USB_REQ_SET_ADDRESS");
725 726 727
		ret = dwc3_ep0_set_address(dwc, ctrl);
		break;
	case USB_REQ_SET_CONFIGURATION:
728
		dwc3_trace(trace_dwc3_ep0, "USB_REQ_SET_CONFIGURATION");
729 730
		ret = dwc3_ep0_set_config(dwc, ctrl);
		break;
731
	case USB_REQ_SET_SEL:
732
		dwc3_trace(trace_dwc3_ep0, "USB_REQ_SET_SEL");
733 734
		ret = dwc3_ep0_set_sel(dwc, ctrl);
		break;
735
	case USB_REQ_SET_ISOCH_DELAY:
736
		dwc3_trace(trace_dwc3_ep0, "USB_REQ_SET_ISOCH_DELAY");
737 738
		ret = dwc3_ep0_set_isoch_delay(dwc, ctrl);
		break;
739
	default:
740
		dwc3_trace(trace_dwc3_ep0, "Forwarding to gadget driver");
741 742
		ret = dwc3_ep0_delegate_req(dwc, ctrl);
		break;
J
Joe Perches 已提交
743
	}
744 745 746 747 748 749 750 751

	return ret;
}

static void dwc3_ep0_inspect_setup(struct dwc3 *dwc,
		const struct dwc3_event_depevt *event)
{
	struct usb_ctrlrequest *ctrl = dwc->ctrl_req;
752
	int ret = -EINVAL;
753 754 755
	u32 len;

	if (!dwc->gadget_driver)
756
		goto out;
757

758 759
	trace_dwc3_ctrl_req(ctrl);

760
	len = le16_to_cpu(ctrl->wLength);
761
	if (!len) {
762 763
		dwc->three_stage_setup = false;
		dwc->ep0_expect_in = false;
764 765
		dwc->ep0_next_event = DWC3_EP0_NRDY_STATUS;
	} else {
766 767
		dwc->three_stage_setup = true;
		dwc->ep0_expect_in = !!(ctrl->bRequestType & USB_DIR_IN);
768 769
		dwc->ep0_next_event = DWC3_EP0_NRDY_DATA;
	}
770 771 772 773 774 775

	if ((ctrl->bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD)
		ret = dwc3_ep0_std_request(dwc, ctrl);
	else
		ret = dwc3_ep0_delegate_req(dwc, ctrl);

776 777 778
	if (ret == USB_GADGET_DELAYED_STATUS)
		dwc->delayed_status = true;

779 780 781
out:
	if (ret < 0)
		dwc3_ep0_stall_and_restart(dwc);
782 783 784 785 786 787 788
}

static void dwc3_ep0_complete_data(struct dwc3 *dwc,
		const struct dwc3_event_depevt *event)
{
	struct dwc3_request	*r = NULL;
	struct usb_request	*ur;
789
	struct dwc3_trb		*trb;
790
	struct dwc3_ep		*ep0;
791 792 793 794 795
	unsigned		transfer_size = 0;
	unsigned		maxp;
	unsigned		remaining_ur_length;
	void			*buf;
	u32			transferred = 0;
796
	u32			status;
797
	u32			length;
798 799 800
	u8			epnum;

	epnum = event->endpoint_number;
801
	ep0 = dwc->eps[0];
802

803 804
	dwc->ep0_next_event = DWC3_EP0_NRDY_STATUS;

805
	trb = dwc->ep0_trb;
806

F
Felipe Balbi 已提交
807 808
	trace_dwc3_complete_trb(ep0, trb);

F
Felipe Balbi 已提交
809 810 811 812
	r = next_request(&ep0->request_list);
	if (!r)
		return;

813 814
	status = DWC3_TRB_SIZE_TRBSTS(trb->size);
	if (status == DWC3_TRBSTS_SETUP_PENDING) {
815 816
		dwc->setup_packet_pending = true;

817
		dwc3_trace(trace_dwc3_ep0, "Setup Pending received");
818 819 820 821 822 823 824

		if (r)
			dwc3_gadget_giveback(ep0, r, -ECONNRESET);

		return;
	}

825
	ur = &r->request;
826 827
	buf = ur->buf;
	remaining_ur_length = ur->length;
828

829
	length = trb->size & DWC3_TRB_SIZE_MASK;
830

831 832
	maxp = ep0->endpoint.maxpacket;

833
	if (dwc->ep0_bounced) {
834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850
		/*
		 * Handle the first TRB before handling the bounce buffer if
		 * the request length is greater than the bounce buffer size
		 */
		if (ur->length > DWC3_EP0_BOUNCE_SIZE) {
			transfer_size = ALIGN(ur->length - maxp, maxp);
			transferred = transfer_size - length;
			buf = (u8 *)buf + transferred;
			ur->actual += transferred;
			remaining_ur_length -= transferred;

			trb++;
			length = trb->size & DWC3_TRB_SIZE_MASK;

			ep0->free_slot = 0;
		}

851 852
		transfer_size = roundup((ur->length - transfer_size),
					maxp);
853

854 855 856
		transferred = min_t(u32, remaining_ur_length,
				    transfer_size - length);
		memcpy(buf, dwc->ep0_bounce, transferred);
857
	} else {
858
		transferred = ur->length - length;
859
	}
860

861 862
	ur->actual += transferred;

863 864 865 866 867
	if ((epnum & 1) && ur->actual < ur->length) {
		/* for some reason we did not get everything out */

		dwc3_ep0_stall_and_restart(dwc);
	} else {
868 869 870 871 872 873 874 875 876 877
		dwc3_gadget_giveback(ep0, r, 0);

		if (IS_ALIGNED(ur->length, ep0->endpoint.maxpacket) &&
				ur->length && ur->zero) {
			int ret;

			dwc->ep0_next_event = DWC3_EP0_COMPLETE;

			ret = dwc3_ep0_start_trans(dwc, epnum,
					dwc->ctrl_req_addr, 0,
878
					DWC3_TRBCTL_CONTROL_DATA, false);
879 880
			WARN_ON(ret < 0);
		}
881 882 883
	}
}

884
static void dwc3_ep0_complete_status(struct dwc3 *dwc,
885 886 887 888
		const struct dwc3_event_depevt *event)
{
	struct dwc3_request	*r;
	struct dwc3_ep		*dep;
889 890
	struct dwc3_trb		*trb;
	u32			status;
891

892
	dep = dwc->eps[0];
893
	trb = dwc->ep0_trb;
894

F
Felipe Balbi 已提交
895 896
	trace_dwc3_complete_trb(dep, trb);

897 898 899 900 901 902
	if (!list_empty(&dep->request_list)) {
		r = next_request(&dep->request_list);

		dwc3_gadget_giveback(dep, r, 0);
	}

903 904 905 906 907
	if (dwc->test_mode) {
		int ret;

		ret = dwc3_gadget_set_test_mode(dwc, dwc->test_mode_nr);
		if (ret < 0) {
908
			dwc3_trace(trace_dwc3_ep0, "Invalid Test #%d",
909 910
					dwc->test_mode_nr);
			dwc3_ep0_stall_and_restart(dwc);
911
			return;
912 913 914
		}
	}

915
	status = DWC3_TRB_SIZE_TRBSTS(trb->size);
916 917
	if (status == DWC3_TRBSTS_SETUP_PENDING) {
		dwc->setup_packet_pending = true;
918
		dwc3_trace(trace_dwc3_ep0, "Setup Pending received");
919
	}
920

921
	dwc->ep0state = EP0_SETUP_PHASE;
922 923 924 925 926 927
	dwc3_ep0_out_start(dwc);
}

static void dwc3_ep0_xfer_complete(struct dwc3 *dwc,
			const struct dwc3_event_depevt *event)
{
928 929 930
	struct dwc3_ep		*dep = dwc->eps[event->endpoint_number];

	dep->flags &= ~DWC3_EP_BUSY;
931
	dep->resource_index = 0;
932
	dwc->setup_packet_pending = false;
933

934
	switch (dwc->ep0state) {
935
	case EP0_SETUP_PHASE:
936
		dwc3_trace(trace_dwc3_ep0, "Setup Phase");
937 938 939
		dwc3_ep0_inspect_setup(dwc, event);
		break;

940
	case EP0_DATA_PHASE:
941
		dwc3_trace(trace_dwc3_ep0, "Data Phase");
942 943 944
		dwc3_ep0_complete_data(dwc, event);
		break;

945
	case EP0_STATUS_PHASE:
946
		dwc3_trace(trace_dwc3_ep0, "Status Phase");
947
		dwc3_ep0_complete_status(dwc, event);
948
		break;
949 950 951 952
	default:
		WARN(true, "UNKNOWN ep0state %d\n", dwc->ep0state);
	}
}
953

954 955
static void __dwc3_ep0_do_control_data(struct dwc3 *dwc,
		struct dwc3_ep *dep, struct dwc3_request *req)
956 957 958
{
	int			ret;

959
	req->direction = !!dep->number;
960 961

	if (req->request.length == 0) {
962
		ret = dwc3_ep0_start_trans(dwc, dep->number,
963
				dwc->ctrl_req_addr, 0,
964
				DWC3_TRBCTL_CONTROL_DATA, false);
965
	} else if (!IS_ALIGNED(req->request.length, dep->endpoint.maxpacket)
966
			&& (dep->number == 0)) {
967
		u32	transfer_size = 0;
968
		u32	maxpacket;
969

970
		ret = usb_gadget_map_request(&dwc->gadget, &req->request,
971
				dep->number);
972
		if (ret) {
973
			dwc3_trace(trace_dwc3_ep0, "failed to map request\n");
974 975
			return;
		}
976

977
		maxpacket = dep->endpoint.maxpacket;
978

979 980 981 982 983 984 985 986
		if (req->request.length > DWC3_EP0_BOUNCE_SIZE) {
			transfer_size = ALIGN(req->request.length - maxpacket,
					      maxpacket);
			ret = dwc3_ep0_start_trans(dwc, dep->number,
						   req->request.dma,
						   transfer_size,
						   DWC3_TRBCTL_CONTROL_DATA,
						   true);
987 988
		}

989 990 991
		transfer_size = roundup((req->request.length - transfer_size),
					maxpacket);

992 993
		dwc->ep0_bounced = true;

994 995
		ret = dwc3_ep0_start_trans(dwc, dep->number,
				dwc->ep0_bounce_addr, transfer_size,
996
				DWC3_TRBCTL_CONTROL_DATA, false);
997
	} else {
998
		ret = usb_gadget_map_request(&dwc->gadget, &req->request,
999
				dep->number);
1000
		if (ret) {
1001
			dwc3_trace(trace_dwc3_ep0, "failed to map request\n");
1002 1003
			return;
		}
1004

1005
		ret = dwc3_ep0_start_trans(dwc, dep->number, req->request.dma,
1006 1007
				req->request.length, DWC3_TRBCTL_CONTROL_DATA,
				false);
1008 1009 1010
	}

	WARN_ON(ret < 0);
1011 1012
}

1013
static int dwc3_ep0_start_control_status(struct dwc3_ep *dep)
1014
{
1015
	struct dwc3		*dwc = dep->dwc;
1016
	u32			type;
1017

1018 1019 1020
	type = dwc->three_stage_setup ? DWC3_TRBCTL_CONTROL_STATUS3
		: DWC3_TRBCTL_CONTROL_STATUS2;

1021
	return dwc3_ep0_start_trans(dwc, dep->number,
1022
			dwc->ctrl_req_addr, 0, type, false);
1023
}
1024

1025
static void __dwc3_ep0_do_control_status(struct dwc3 *dwc, struct dwc3_ep *dep)
1026 1027
{
	WARN_ON(dwc3_ep0_start_control_status(dep));
1028 1029
}

1030 1031 1032 1033 1034 1035 1036 1037
static void dwc3_ep0_do_control_status(struct dwc3 *dwc,
		const struct dwc3_event_depevt *event)
{
	struct dwc3_ep		*dep = dwc->eps[event->endpoint_number];

	__dwc3_ep0_do_control_status(dwc, dep);
}

1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
static void dwc3_ep0_end_control_data(struct dwc3 *dwc, struct dwc3_ep *dep)
{
	struct dwc3_gadget_ep_cmd_params params;
	u32			cmd;
	int			ret;

	if (!dep->resource_index)
		return;

	cmd = DWC3_DEPCMD_ENDTRANSFER;
	cmd |= DWC3_DEPCMD_CMDIOC;
	cmd |= DWC3_DEPCMD_PARAM(dep->resource_index);
	memset(&params, 0, sizeof(params));
	ret = dwc3_send_gadget_ep_cmd(dwc, dep->number, cmd, &params);
	WARN_ON_ONCE(ret);
	dep->resource_index = 0;
}

1056 1057 1058 1059 1060
static void dwc3_ep0_xfernotready(struct dwc3 *dwc,
		const struct dwc3_event_depevt *event)
{
	switch (event->status) {
	case DEPEVT_STATUS_CONTROL_DATA:
1061
		dwc3_trace(trace_dwc3_ep0, "Control Data");
1062

1063
		/*
1064 1065 1066
		 * We already have a DATA transfer in the controller's cache,
		 * if we receive a XferNotReady(DATA) we will ignore it, unless
		 * it's for the wrong direction.
1067
		 *
1068 1069 1070
		 * In that case, we must issue END_TRANSFER command to the Data
		 * Phase we already have started and issue SetStall on the
		 * control endpoint.
1071 1072
		 */
		if (dwc->ep0_expect_in != event->endpoint_number) {
1073 1074
			struct dwc3_ep	*dep = dwc->eps[dwc->ep0_expect_in];

1075 1076
			dwc3_trace(trace_dwc3_ep0,
					"Wrong direction for Data phase");
1077
			dwc3_ep0_end_control_data(dwc, dep);
1078 1079 1080 1081
			dwc3_ep0_stall_and_restart(dwc);
			return;
		}

1082
		break;
1083

1084
	case DEPEVT_STATUS_CONTROL_STATUS:
1085 1086 1087
		if (dwc->ep0_next_event != DWC3_EP0_NRDY_STATUS)
			return;

1088
		dwc3_trace(trace_dwc3_ep0, "Control Status");
1089

1090 1091
		dwc->ep0state = EP0_STATUS_PHASE;

1092 1093
		if (dwc->delayed_status) {
			WARN_ON_ONCE(event->endpoint_number != 1);
1094
			dwc3_trace(trace_dwc3_ep0, "Delayed Status");
1095 1096 1097
			return;
		}

1098
		dwc3_ep0_do_control_status(dwc, event);
1099 1100 1101 1102
	}
}

void dwc3_ep0_interrupt(struct dwc3 *dwc,
F
Felipe Balbi 已提交
1103
		const struct dwc3_event_depevt *event)
1104 1105 1106
{
	u8			epnum = event->endpoint_number;

1107
	dwc3_trace(trace_dwc3_ep0, "%s while ep%d%s in state '%s'",
1108
			dwc3_ep_event_string(event->endpoint_event),
1109
			epnum >> 1, (epnum & 1) ? "in" : "out",
1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127
			dwc3_ep0_state_string(dwc->ep0state));

	switch (event->endpoint_event) {
	case DWC3_DEPEVT_XFERCOMPLETE:
		dwc3_ep0_xfer_complete(dwc, event);
		break;

	case DWC3_DEPEVT_XFERNOTREADY:
		dwc3_ep0_xfernotready(dwc, event);
		break;

	case DWC3_DEPEVT_XFERINPROGRESS:
	case DWC3_DEPEVT_RXTXFIFOEVT:
	case DWC3_DEPEVT_STREAMEVT:
	case DWC3_DEPEVT_EPCMDCMPLT:
		break;
	}
}