ep0.c 26.7 KB
Newer Older
F
Felipe Balbi 已提交
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
static void dwc3_ep0_prepare_one_trb(struct dwc3_ep *dep,
43
		dma_addr_t buf_dma, u32 len, u32 type, bool chain)
44
{
45
	struct dwc3_trb			*trb;
46
	struct dwc3			*dwc;
47

48
	dwc = dep->dwc;
49
	trb = &dwc->ep0_trb[dep->trb_enqueue];
50 51

	if (chain)
52
		dep->trb_enqueue++;
53

54 55 56 57
	trb->bpl = lower_32_bits(buf_dma);
	trb->bph = upper_32_bits(buf_dma);
	trb->size = len;
	trb->ctrl = type;
58

59 60
	trb->ctrl |= (DWC3_TRB_CTRL_HWO
			| DWC3_TRB_CTRL_ISP_IMI);
61

62 63 64 65 66 67
	if (chain)
		trb->ctrl |= DWC3_TRB_CTRL_CHN;
	else
		trb->ctrl |= (DWC3_TRB_CTRL_IOC
				| DWC3_TRB_CTRL_LST);

68 69 70
	trace_dwc3_prepare_trb(dep, trb);
}

71
static int dwc3_ep0_start_trans(struct dwc3_ep *dep)
72 73
{
	struct dwc3_gadget_ep_cmd_params params;
74
	struct dwc3			*dwc;
75 76 77
	int				ret;

	if (dep->flags & DWC3_EP_BUSY)
78 79
		return 0;

80 81
	dwc = dep->dwc;

82
	memset(&params, 0, sizeof(params));
83 84
	params.param0 = upper_32_bits(dwc->ep0_trb_addr);
	params.param1 = lower_32_bits(dwc->ep0_trb_addr);
85

86
	ret = dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_STARTTRANSFER, &params);
87
	if (ret < 0)
88 89
		return ret;

90
	dep->flags |= DWC3_EP_BUSY;
91
	dep->resource_index = dwc3_gadget_ep_get_transfer_index(dep);
92 93
	dwc->ep0_next_event = DWC3_EP0_COMPLETE;

94 95 96 97 98 99
	return 0;
}

static int __dwc3_gadget_ep0_queue(struct dwc3_ep *dep,
		struct dwc3_request *req)
{
100
	struct dwc3		*dwc = dep->dwc;
101 102 103 104 105

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

106
	list_add_tail(&req->list, &dep->pending_list);
107

108 109 110 111 112 113 114 115 116 117 118 119 120 121
	/*
	 * 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);

122 123
		if (dwc->ep0state != EP0_DATA_PHASE) {
			dev_WARN(dwc->dev, "Unexpected pending request\n");
124 125
			return 0;
		}
126

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

129 130
		dep->flags &= ~(DWC3_EP_PENDING_REQUEST |
				DWC3_EP0_DIR_IN);
131 132 133 134 135 136 137 138 139

		return 0;
	}

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

		direction = !dwc->ep0_expect_in;
143
		dwc->delayed_status = false;
144
		usb_gadget_set_state(&dwc->gadget, USB_STATE_CONFIGURED);
145 146

		if (dwc->ep0state == EP0_STATUS_PHASE)
147
			__dwc3_ep0_do_control_status(dwc, dwc->eps[direction]);
148 149

		return 0;
150 151
	}

152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
	/*
	 * 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;
	}

195
	return 0;
196 197 198 199 200 201 202 203 204 205 206 207 208 209
}

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);
210
	if (!dep->endpoint.desc) {
211 212
		dev_err(dwc->dev, "%s: can't queue to disabled endpoint\n",
				dep->name);
213 214 215 216 217
		ret = -ESHUTDOWN;
		goto out;
	}

	/* we share one TRB for ep0/1 */
218
	if (!list_empty(&dep->pending_list)) {
219 220 221 222 223 224 225 226 227 228 229 230 231 232
		ret = -EBUSY;
		goto out;
	}

	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)
{
233 234 235 236 237
	struct dwc3_ep		*dep;

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

239
	/* stall is always issued on EP0 */
240
	dep = dwc->eps[0];
241
	__dwc3_gadget_ep_set_halt(dep, 1, false);
242
	dep->flags = DWC3_EP_ENABLED;
243
	dwc->delayed_status = false;
244

245
	if (!list_empty(&dep->pending_list)) {
246 247
		struct dwc3_request	*req;

248
		req = next_request(&dep->pending_list);
249 250 251
		dwc3_gadget_giveback(dep, req, -ECONNRESET);
	}

252
	dwc->ep0state = EP0_SETUP_PHASE;
253 254 255
	dwc3_ep0_out_start(dwc);
}

256
int __dwc3_gadget_ep0_set_halt(struct usb_ep *ep, int value)
257 258 259 260 261 262 263 264 265
{
	struct dwc3_ep			*dep = to_dwc3_ep(ep);
	struct dwc3			*dwc = dep->dwc;

	dwc3_ep0_stall_and_restart(dwc);

	return 0;
}

266 267 268 269 270 271 272 273 274 275 276 277 278 279
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;
}

280 281
void dwc3_ep0_out_start(struct dwc3 *dwc)
{
282
	struct dwc3_ep			*dep;
283 284
	int				ret;

285 286
	complete(&dwc->ep0_in_setup);

287 288
	dep = dwc->eps[0];
	dwc3_ep0_prepare_one_trb(dep, dwc->ep0_trb_addr, 8,
289
			DWC3_TRBCTL_CONTROL_SETUP, false);
290
	ret = dwc3_ep0_start_trans(dep);
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
	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;
}

311
static void dwc3_ep0_status_cmpl(struct usb_ep *ep, struct usb_request *req)
312 313 314 315 316
{
}
/*
 * ch 9.4.5
 */
317 318
static int dwc3_ep0_handle_status(struct dwc3 *dwc,
		struct usb_ctrlrequest *ctrl)
319 320 321
{
	struct dwc3_ep		*dep;
	u32			recip;
322
	u32			value;
323
	u32			reg;
324 325 326
	u16			usb_status = 0;
	__le16			*response_pkt;

327 328 329 330 331
	/* We don't support PTM_STATUS */
	value = le16_to_cpu(ctrl->wValue);
	if (value != 0)
		return -EINVAL;

332 333 334 335
	recip = ctrl->bRequestType & USB_RECIP_MASK;
	switch (recip) {
	case USB_RECIP_DEVICE:
		/*
336
		 * LTM will be set once we know how to set this in HW.
337
		 */
338
		usb_status |= dwc->gadget.is_selfpowered;
339

340 341
		if ((dwc->speed == DWC3_DSTS_SUPERSPEED) ||
		    (dwc->speed == DWC3_DSTS_SUPERSPEED_PLUS)) {
342 343 344 345 346 347 348
			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;
		}

349 350 351 352 353 354 355 356 357 358 359 360
		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)
361
			return -EINVAL;
362 363 364 365 366 367

		if (dep->flags & DWC3_EP_STALL)
			usb_status = 1 << USB_ENDPOINT_HALT;
		break;
	default:
		return -EINVAL;
J
Joe Perches 已提交
368
	}
369 370 371

	response_pkt = (__le16 *) dwc->setup_buf;
	*response_pkt = cpu_to_le16(usb_status);
372 373 374

	dep = dwc->eps[0];
	dwc->ep0_usb_req.dep = dep;
375
	dwc->ep0_usb_req.request.length = sizeof(*response_pkt);
376
	dwc->ep0_usb_req.request.buf = dwc->setup_buf;
377
	dwc->ep0_usb_req.request.complete = dwc3_ep0_status_cmpl;
378 379

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

382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
static int dwc3_ep0_handle_u1(struct dwc3 *dwc, enum usb_device_state state,
		int set)
{
	u32 reg;

	if (state != USB_STATE_CONFIGURED)
		return -EINVAL;
	if ((dwc->speed != DWC3_DSTS_SUPERSPEED) &&
			(dwc->speed != DWC3_DSTS_SUPERSPEED_PLUS))
		return -EINVAL;

	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);

	return 0;
}

static int dwc3_ep0_handle_u2(struct dwc3 *dwc, enum usb_device_state state,
		int set)
{
	u32 reg;


	if (state != USB_STATE_CONFIGURED)
		return -EINVAL;
	if ((dwc->speed != DWC3_DSTS_SUPERSPEED) &&
			(dwc->speed != DWC3_DSTS_SUPERSPEED_PLUS))
		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);

	return 0;
}

static int dwc3_ep0_handle_test(struct dwc3 *dwc, enum usb_device_state state,
		u32 wIndex, int set)
{
	if ((wIndex & 0xff) != 0)
		return -EINVAL;
	if (!set)
		return -EINVAL;

	switch (wIndex >> 8) {
	case TEST_J:
	case TEST_K:
	case TEST_SE0_NAK:
	case TEST_PACKET:
	case TEST_FORCE_EN:
		dwc->test_mode_nr = wIndex >> 8;
		dwc->test_mode = true;
		break;
	default:
		return -EINVAL;
	}

	return 0;
}

static int dwc3_ep0_handle_device(struct dwc3 *dwc,
450 451
		struct usb_ctrlrequest *ctrl, int set)
{
452
	enum usb_device_state	state;
453 454
	u32			wValue;
	u32			wIndex;
455
	int			ret = 0;
456 457 458

	wValue = le16_to_cpu(ctrl->wValue);
	wIndex = le16_to_cpu(ctrl->wIndex);
459 460
	state = dwc->gadget.state;

461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
	switch (wValue) {
	case USB_DEVICE_REMOTE_WAKEUP:
		break;
	/*
	 * 9.4.1 says only only for SS, in AddressState only for
	 * default control pipe
	 */
	case USB_DEVICE_U1_ENABLE:
		ret = dwc3_ep0_handle_u1(dwc, state, set);
		break;
	case USB_DEVICE_U2_ENABLE:
		ret = dwc3_ep0_handle_u2(dwc, state, set);
		break;
	case USB_DEVICE_LTM_ENABLE:
		ret = -EINVAL;
		break;
	case USB_DEVICE_TEST_MODE:
		ret = dwc3_ep0_handle_test(dwc, state, wIndex, set);
		break;
	default:
		ret = -EINVAL;
	}
483

484 485
	return ret;
}
486

487 488 489 490 491 492 493
static int dwc3_ep0_handle_intf(struct dwc3 *dwc,
		struct usb_ctrlrequest *ctrl, int set)
{
	enum usb_device_state	state;
	u32			wValue;
	u32			wIndex;
	int			ret = 0;
494

495 496 497
	wValue = le16_to_cpu(ctrl->wValue);
	wIndex = le16_to_cpu(ctrl->wIndex);
	state = dwc->gadget.state;
498

499 500
	switch (wValue) {
	case USB_INTRF_FUNC_SUSPEND:
501 502 503 504 505 506 507
		/*
		 * REVISIT: Ideally we would enable some low power mode here,
		 * however it's unclear what we should be doing here.
		 *
		 * For now, we're not doing anything, just making sure we return
		 * 0 so USB Command Verifier tests pass without any errors.
		 */
508 509 510 511
		break;
	default:
		ret = -EINVAL;
	}
512

513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532
	return ret;
}

static int dwc3_ep0_handle_endpoint(struct dwc3 *dwc,
		struct usb_ctrlrequest *ctrl, int set)
{
	struct dwc3_ep		*dep;
	enum usb_device_state	state;
	u32			wValue;
	u32			wIndex;
	int			ret;

	wValue = le16_to_cpu(ctrl->wValue);
	wIndex = le16_to_cpu(ctrl->wIndex);
	state = dwc->gadget.state;

	switch (wValue) {
	case USB_ENDPOINT_HALT:
		dep = dwc3_wIndex_to_dep(dwc, ctrl->wIndex);
		if (!dep)
533
			return -EINVAL;
534

535
		if (set == 0 && (dep->flags & DWC3_EP_WEDGE))
536
			break;
537 538 539

		ret = __dwc3_gadget_ep_set_halt(dep, set, true);
		if (ret)
540
			return -EINVAL;
541
		break;
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
	default:
		return -EINVAL;
	}

	return 0;
}

static int dwc3_ep0_handle_feature(struct dwc3 *dwc,
		struct usb_ctrlrequest *ctrl, int set)
{
	u32			recip;
	int			ret;
	enum usb_device_state	state;

	recip = ctrl->bRequestType & USB_RECIP_MASK;
	state = dwc->gadget.state;
558

559 560 561 562
	switch (recip) {
	case USB_RECIP_DEVICE:
		ret = dwc3_ep0_handle_device(dwc, ctrl, set);
		break;
563
	case USB_RECIP_INTERFACE:
564
		ret = dwc3_ep0_handle_intf(dwc, ctrl, set);
565 566
		break;
	case USB_RECIP_ENDPOINT:
567
		ret = dwc3_ep0_handle_endpoint(dwc, ctrl, set);
568 569
		break;
	default:
570
		ret = -EINVAL;
J
Joe Perches 已提交
571
	}
572

573
	return ret;
574 575 576 577
}

static int dwc3_ep0_set_address(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
{
578
	enum usb_device_state state = dwc->gadget.state;
579 580 581 582
	u32 addr;
	u32 reg;

	addr = le16_to_cpu(ctrl->wValue);
583
	if (addr > 127) {
584
		dev_err(dwc->dev, "invalid device address %d\n", addr);
585
		return -EINVAL;
586 587
	}

588
	if (state == USB_STATE_CONFIGURED) {
589
		dev_err(dwc->dev, "can't SetAddress() from Configured State\n");
590 591
		return -EINVAL;
	}
592

593 594 595 596
	reg = dwc3_readl(dwc->regs, DWC3_DCFG);
	reg &= ~(DWC3_DCFG_DEVADDR_MASK);
	reg |= DWC3_DCFG_DEVADDR(addr);
	dwc3_writel(dwc->regs, DWC3_DCFG, reg);
597

598
	if (addr)
599
		usb_gadget_set_state(&dwc->gadget, USB_STATE_ADDRESS);
600
	else
601
		usb_gadget_set_state(&dwc->gadget, USB_STATE_DEFAULT);
602

603
	return 0;
604 605 606 607 608 609 610 611 612 613 614 615 616 617
}

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)
{
618
	enum usb_device_state state = dwc->gadget.state;
619 620
	u32 cfg;
	int ret;
621
	u32 reg;
622 623 624

	cfg = le16_to_cpu(ctrl->wValue);

625 626
	switch (state) {
	case USB_STATE_DEFAULT:
627 628
		return -EINVAL;

629
	case USB_STATE_ADDRESS:
630 631
		ret = dwc3_ep0_delegate_req(dwc, ctrl);
		/* if the cfg matches and the cfg is non zero */
632
		if (cfg && (!ret || (ret == USB_GADGET_DELAYED_STATUS))) {
633 634 635 636 637 638 639 640 641 642

			/*
			 * 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);
643

644 645 646 647 648 649 650
			/*
			 * 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);
651
		}
652 653
		break;

654
	case USB_STATE_CONFIGURED:
655
		ret = dwc3_ep0_delegate_req(dwc, ctrl);
656
		if (!cfg && !ret)
657 658
			usb_gadget_set_state(&dwc->gadget,
					USB_STATE_ADDRESS);
659
		break;
660 661
	default:
		ret = -EINVAL;
662
	}
663
	return ret;
664 665
}

666 667 668 669 670 671 672 673 674 675 676
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;
677 678
		__le16	u2sel;
		__le16	u2pel;
679 680 681 682 683 684 685 686
	} __packed timing;

	int		ret;

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

	dwc->u1sel = timing.u1sel;
	dwc->u1pel = timing.u1pel;
687 688
	dwc->u2sel = le16_to_cpu(timing.u2sel);
	dwc->u2pel = le16_to_cpu(timing.u2pel);
689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712

	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;
713
	enum usb_device_state state = dwc->gadget.state;
714 715 716
	u16		wLength;
	u16		wValue;

717
	if (state == USB_STATE_DEFAULT)
718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
		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);
}

746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
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;
}

768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
static int dwc3_ep0_std_request(struct dwc3 *dwc, struct usb_ctrlrequest *ctrl)
{
	int ret;

	switch (ctrl->bRequest) {
	case USB_REQ_GET_STATUS:
		ret = dwc3_ep0_handle_status(dwc, ctrl);
		break;
	case USB_REQ_CLEAR_FEATURE:
		ret = dwc3_ep0_handle_feature(dwc, ctrl, 0);
		break;
	case USB_REQ_SET_FEATURE:
		ret = dwc3_ep0_handle_feature(dwc, ctrl, 1);
		break;
	case USB_REQ_SET_ADDRESS:
		ret = dwc3_ep0_set_address(dwc, ctrl);
		break;
	case USB_REQ_SET_CONFIGURATION:
		ret = dwc3_ep0_set_config(dwc, ctrl);
		break;
788 789 790
	case USB_REQ_SET_SEL:
		ret = dwc3_ep0_set_sel(dwc, ctrl);
		break;
791 792 793
	case USB_REQ_SET_ISOCH_DELAY:
		ret = dwc3_ep0_set_isoch_delay(dwc, ctrl);
		break;
794 795 796
	default:
		ret = dwc3_ep0_delegate_req(dwc, ctrl);
		break;
J
Joe Perches 已提交
797
	}
798 799 800 801 802 803 804

	return ret;
}

static void dwc3_ep0_inspect_setup(struct dwc3 *dwc,
		const struct dwc3_event_depevt *event)
{
805
	struct usb_ctrlrequest *ctrl = (void *) dwc->ep0_trb;
806
	int ret = -EINVAL;
807 808 809
	u32 len;

	if (!dwc->gadget_driver)
810
		goto out;
811

812 813
	trace_dwc3_ctrl_req(ctrl);

814
	len = le16_to_cpu(ctrl->wLength);
815
	if (!len) {
816 817
		dwc->three_stage_setup = false;
		dwc->ep0_expect_in = false;
818 819
		dwc->ep0_next_event = DWC3_EP0_NRDY_STATUS;
	} else {
820 821
		dwc->three_stage_setup = true;
		dwc->ep0_expect_in = !!(ctrl->bRequestType & USB_DIR_IN);
822 823
		dwc->ep0_next_event = DWC3_EP0_NRDY_DATA;
	}
824 825 826 827 828 829

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

830 831 832
	if (ret == USB_GADGET_DELAYED_STATUS)
		dwc->delayed_status = true;

833 834 835
out:
	if (ret < 0)
		dwc3_ep0_stall_and_restart(dwc);
836 837 838 839 840 841 842
}

static void dwc3_ep0_complete_data(struct dwc3 *dwc,
		const struct dwc3_event_depevt *event)
{
	struct dwc3_request	*r = NULL;
	struct usb_request	*ur;
843
	struct dwc3_trb		*trb;
844
	struct dwc3_ep		*ep0;
845 846 847 848
	unsigned		maxp;
	unsigned		remaining_ur_length;
	void			*buf;
	u32			transferred = 0;
849
	u32			status;
850
	u32			length;
851 852 853
	u8			epnum;

	epnum = event->endpoint_number;
854
	ep0 = dwc->eps[0];
855

856
	dwc->ep0_next_event = DWC3_EP0_NRDY_STATUS;
857
	trb = dwc->ep0_trb;
F
Felipe Balbi 已提交
858 859
	trace_dwc3_complete_trb(ep0, trb);

860
	r = next_request(&ep0->pending_list);
F
Felipe Balbi 已提交
861 862 863
	if (!r)
		return;

864 865
	status = DWC3_TRB_SIZE_TRBSTS(trb->size);
	if (status == DWC3_TRBSTS_SETUP_PENDING) {
866
		dwc->setup_packet_pending = true;
867 868 869 870 871 872
		if (r)
			dwc3_gadget_giveback(ep0, r, -ECONNRESET);

		return;
	}

873
	ur = &r->request;
874 875
	buf = ur->buf;
	remaining_ur_length = ur->length;
876

877
	length = trb->size & DWC3_TRB_SIZE_MASK;
878
	maxp = ep0->endpoint.maxpacket;
879 880
	transferred = ur->length - length;
	ur->actual += transferred;
881

F
Felipe Balbi 已提交
882 883
	if ((IS_ALIGNED(ur->length, ep0->endpoint.maxpacket) &&
	     ur->length && ur->zero) || dwc->ep0_bounced) {
884 885
		trb++;
		trb->ctrl &= ~DWC3_TRB_CTRL_HWO;
F
Felipe Balbi 已提交
886
		trace_dwc3_complete_trb(ep0, trb);
887 888
		ep0->trb_enqueue = 0;
		dwc->ep0_bounced = false;
889
	}
890

F
Felipe Balbi 已提交
891
	if ((epnum & 1) && ur->actual < ur->length)
892
		dwc3_ep0_stall_and_restart(dwc);
F
Felipe Balbi 已提交
893
	else
894
		dwc3_gadget_giveback(ep0, r, 0);
895 896
}

897
static void dwc3_ep0_complete_status(struct dwc3 *dwc,
898 899 900 901
		const struct dwc3_event_depevt *event)
{
	struct dwc3_request	*r;
	struct dwc3_ep		*dep;
902 903
	struct dwc3_trb		*trb;
	u32			status;
904

905
	dep = dwc->eps[0];
906
	trb = dwc->ep0_trb;
907

F
Felipe Balbi 已提交
908 909
	trace_dwc3_complete_trb(dep, trb);

910 911
	if (!list_empty(&dep->pending_list)) {
		r = next_request(&dep->pending_list);
912 913 914 915

		dwc3_gadget_giveback(dep, r, 0);
	}

916 917 918 919 920
	if (dwc->test_mode) {
		int ret;

		ret = dwc3_gadget_set_test_mode(dwc, dwc->test_mode_nr);
		if (ret < 0) {
921
			dev_err(dwc->dev, "invalid test #%d\n",
922 923
					dwc->test_mode_nr);
			dwc3_ep0_stall_and_restart(dwc);
924
			return;
925 926 927
		}
	}

928
	status = DWC3_TRB_SIZE_TRBSTS(trb->size);
929
	if (status == DWC3_TRBSTS_SETUP_PENDING)
930
		dwc->setup_packet_pending = true;
931

932
	dwc->ep0state = EP0_SETUP_PHASE;
933 934 935 936 937 938
	dwc3_ep0_out_start(dwc);
}

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

	dep->flags &= ~DWC3_EP_BUSY;
942
	dep->resource_index = 0;
943
	dwc->setup_packet_pending = false;
944

945
	switch (dwc->ep0state) {
946
	case EP0_SETUP_PHASE:
947 948 949
		dwc3_ep0_inspect_setup(dwc, event);
		break;

950
	case EP0_DATA_PHASE:
951 952 953
		dwc3_ep0_complete_data(dwc, event);
		break;

954
	case EP0_STATUS_PHASE:
955
		dwc3_ep0_complete_status(dwc, event);
956
		break;
957 958 959 960
	default:
		WARN(true, "UNKNOWN ep0state %d\n", dwc->ep0state);
	}
}
961

962 963
static void __dwc3_ep0_do_control_data(struct dwc3 *dwc,
		struct dwc3_ep *dep, struct dwc3_request *req)
964 965 966
{
	int			ret;

967
	req->direction = !!dep->number;
968 969

	if (req->request.length == 0) {
970
		dwc3_ep0_prepare_one_trb(dep, dwc->ep0_trb_addr, 0,
971
				DWC3_TRBCTL_CONTROL_DATA, false);
972
		ret = dwc3_ep0_start_trans(dep);
973
	} else if (!IS_ALIGNED(req->request.length, dep->endpoint.maxpacket)
974
			&& (dep->number == 0)) {
975
		u32	maxpacket;
976
		u32	rem;
977

978 979
		ret = usb_gadget_map_request_by_dev(dwc->sysdev,
				&req->request, dep->number);
980
		if (ret)
981
			return;
982

983
		maxpacket = dep->endpoint.maxpacket;
984
		rem = req->request.length % maxpacket;
985 986
		dwc->ep0_bounced = true;

987 988 989 990 991 992 993 994 995 996
		/* prepare normal TRB */
		dwc3_ep0_prepare_one_trb(dep, req->request.dma,
					 req->request.length,
					 DWC3_TRBCTL_CONTROL_DATA,
					 true);

		/* Now prepare one extra TRB to align transfer size */
		dwc3_ep0_prepare_one_trb(dep, dwc->bounce_addr,
					 maxpacket - rem,
					 DWC3_TRBCTL_CONTROL_DATA,
997 998
					 false);
		ret = dwc3_ep0_start_trans(dep);
F
Felipe Balbi 已提交
999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
	} else if (IS_ALIGNED(req->request.length, dep->endpoint.maxpacket) &&
		   req->request.length && req->request.zero) {
		u32	maxpacket;
		u32	rem;

		ret = usb_gadget_map_request_by_dev(dwc->sysdev,
				&req->request, dep->number);
		if (ret)
			return;

		maxpacket = dep->endpoint.maxpacket;
		rem = req->request.length % maxpacket;

		/* prepare normal TRB */
		dwc3_ep0_prepare_one_trb(dep, req->request.dma,
					 req->request.length,
					 DWC3_TRBCTL_CONTROL_DATA,
					 true);

		/* Now prepare one extra TRB to align transfer size */
		dwc3_ep0_prepare_one_trb(dep, dwc->bounce_addr,
					 0, DWC3_TRBCTL_CONTROL_DATA,
					 false);
		ret = dwc3_ep0_start_trans(dep);
1023
	} else {
1024 1025
		ret = usb_gadget_map_request_by_dev(dwc->sysdev,
				&req->request, dep->number);
1026
		if (ret)
1027
			return;
1028

1029
		dwc3_ep0_prepare_one_trb(dep, req->request.dma,
1030 1031
				req->request.length, DWC3_TRBCTL_CONTROL_DATA,
				false);
1032
		ret = dwc3_ep0_start_trans(dep);
1033 1034 1035
	}

	WARN_ON(ret < 0);
1036 1037
}

1038
static int dwc3_ep0_start_control_status(struct dwc3_ep *dep)
1039
{
1040
	struct dwc3		*dwc = dep->dwc;
1041
	u32			type;
1042

1043 1044 1045
	type = dwc->three_stage_setup ? DWC3_TRBCTL_CONTROL_STATUS3
		: DWC3_TRBCTL_CONTROL_STATUS2;

1046 1047
	dwc3_ep0_prepare_one_trb(dep, dwc->ep0_trb_addr, 0, type, false);
	return dwc3_ep0_start_trans(dep);
1048
}
1049

1050
static void __dwc3_ep0_do_control_status(struct dwc3 *dwc, struct dwc3_ep *dep)
1051 1052
{
	WARN_ON(dwc3_ep0_start_control_status(dep));
1053 1054
}

1055 1056 1057 1058 1059 1060 1061 1062
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);
}

1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
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));
1076
	ret = dwc3_send_gadget_ep_cmd(dep, cmd, &params);
1077 1078 1079 1080
	WARN_ON_ONCE(ret);
	dep->resource_index = 0;
}

1081 1082 1083 1084 1085
static void dwc3_ep0_xfernotready(struct dwc3 *dwc,
		const struct dwc3_event_depevt *event)
{
	switch (event->status) {
	case DEPEVT_STATUS_CONTROL_DATA:
1086
		/*
1087 1088 1089
		 * 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.
1090
		 *
1091 1092 1093
		 * In that case, we must issue END_TRANSFER command to the Data
		 * Phase we already have started and issue SetStall on the
		 * control endpoint.
1094 1095
		 */
		if (dwc->ep0_expect_in != event->endpoint_number) {
1096 1097
			struct dwc3_ep	*dep = dwc->eps[dwc->ep0_expect_in];

1098
			dev_err(dwc->dev, "unexpected direction for Data Phase\n");
1099
			dwc3_ep0_end_control_data(dwc, dep);
1100 1101 1102 1103
			dwc3_ep0_stall_and_restart(dwc);
			return;
		}

1104
		break;
1105

1106
	case DEPEVT_STATUS_CONTROL_STATUS:
1107 1108 1109
		if (dwc->ep0_next_event != DWC3_EP0_NRDY_STATUS)
			return;

1110 1111
		dwc->ep0state = EP0_STATUS_PHASE;

1112
		if (dwc->delayed_status) {
1113 1114
			struct dwc3_ep *dep = dwc->eps[0];

1115
			WARN_ON_ONCE(event->endpoint_number != 1);
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127
			/*
			 * We should handle the delay STATUS phase here if the
			 * request for handling delay STATUS has been queued
			 * into the list.
			 */
			if (!list_empty(&dep->pending_list)) {
				dwc->delayed_status = false;
				usb_gadget_set_state(&dwc->gadget,
						     USB_STATE_CONFIGURED);
				dwc3_ep0_do_control_status(dwc, event);
			}

1128 1129 1130
			return;
		}

1131
		dwc3_ep0_do_control_status(dwc, event);
1132 1133 1134 1135
	}
}

void dwc3_ep0_interrupt(struct dwc3 *dwc,
F
Felipe Balbi 已提交
1136
		const struct dwc3_event_depevt *event)
1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
{
	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;
	}
}