1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * gadget.c - DesignWare USB3 DRD Controller Gadget Framework Link 4 * 5 * Copyright (C) 2010-2011 Texas Instruments Incorporated - https://www.ti.com 6 * 7 * Authors: Felipe Balbi <balbi@ti.com>, 8 * Sebastian Andrzej Siewior <bigeasy@linutronix.de> 9 */ 10 11 #include <linux/kernel.h> 12 #include <linux/delay.h> 13 #include <linux/slab.h> 14 #include <linux/spinlock.h> 15 #include <linux/platform_device.h> 16 #include <linux/pm_runtime.h> 17 #include <linux/interrupt.h> 18 #include <linux/io.h> 19 #include <linux/list.h> 20 #include <linux/dma-mapping.h> 21 22 #include <linux/usb/ch9.h> 23 #include <linux/usb/gadget.h> 24 25 #include "debug.h" 26 #include "core.h" 27 #include "gadget.h" 28 #include "io.h" 29 30 #define DWC3_ALIGN_FRAME(d, n) (((d)->frame_number + ((d)->interval * (n))) \ 31 & ~((d)->interval - 1)) 32 33 /** 34 * dwc3_gadget_set_test_mode - enables usb2 test modes 35 * @dwc: pointer to our context structure 36 * @mode: the mode to set (J, K SE0 NAK, Force Enable) 37 * 38 * Caller should take care of locking. This function will return 0 on 39 * success or -EINVAL if wrong Test Selector is passed. 40 */ 41 int dwc3_gadget_set_test_mode(struct dwc3 *dwc, int mode) 42 { 43 u32 reg; 44 45 reg = dwc3_readl(dwc->regs, DWC3_DCTL); 46 reg &= ~DWC3_DCTL_TSTCTRL_MASK; 47 48 switch (mode) { 49 case USB_TEST_J: 50 case USB_TEST_K: 51 case USB_TEST_SE0_NAK: 52 case USB_TEST_PACKET: 53 case USB_TEST_FORCE_ENABLE: 54 reg |= mode << 1; 55 break; 56 default: 57 return -EINVAL; 58 } 59 60 dwc3_gadget_dctl_write_safe(dwc, reg); 61 62 return 0; 63 } 64 65 /** 66 * dwc3_gadget_get_link_state - gets current state of usb link 67 * @dwc: pointer to our context structure 68 * 69 * Caller should take care of locking. This function will 70 * return the link state on success (>= 0) or -ETIMEDOUT. 71 */ 72 int dwc3_gadget_get_link_state(struct dwc3 *dwc) 73 { 74 u32 reg; 75 76 reg = dwc3_readl(dwc->regs, DWC3_DSTS); 77 78 return DWC3_DSTS_USBLNKST(reg); 79 } 80 81 /** 82 * dwc3_gadget_set_link_state - sets usb link to a particular state 83 * @dwc: pointer to our context structure 84 * @state: the state to put link into 85 * 86 * Caller should take care of locking. This function will 87 * return 0 on success or -ETIMEDOUT. 88 */ 89 int dwc3_gadget_set_link_state(struct dwc3 *dwc, enum dwc3_link_state state) 90 { 91 int retries = 10000; 92 u32 reg; 93 94 /* 95 * Wait until device controller is ready. Only applies to 1.94a and 96 * later RTL. 97 */ 98 if (!DWC3_VER_IS_PRIOR(DWC3, 194A)) { 99 while (--retries) { 100 reg = dwc3_readl(dwc->regs, DWC3_DSTS); 101 if (reg & DWC3_DSTS_DCNRD) 102 udelay(5); 103 else 104 break; 105 } 106 107 if (retries <= 0) 108 return -ETIMEDOUT; 109 } 110 111 reg = dwc3_readl(dwc->regs, DWC3_DCTL); 112 reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK; 113 114 /* set no action before sending new link state change */ 115 dwc3_writel(dwc->regs, DWC3_DCTL, reg); 116 117 /* set requested state */ 118 reg |= DWC3_DCTL_ULSTCHNGREQ(state); 119 dwc3_writel(dwc->regs, DWC3_DCTL, reg); 120 121 /* 122 * The following code is racy when called from dwc3_gadget_wakeup, 123 * and is not needed, at least on newer versions 124 */ 125 if (!DWC3_VER_IS_PRIOR(DWC3, 194A)) 126 return 0; 127 128 /* wait for a change in DSTS */ 129 retries = 10000; 130 while (--retries) { 131 reg = dwc3_readl(dwc->regs, DWC3_DSTS); 132 133 if (DWC3_DSTS_USBLNKST(reg) == state) 134 return 0; 135 136 udelay(5); 137 } 138 139 return -ETIMEDOUT; 140 } 141 142 static void dwc3_ep0_reset_state(struct dwc3 *dwc) 143 { 144 unsigned int dir; 145 146 if (dwc->ep0state != EP0_SETUP_PHASE) { 147 dir = !!dwc->ep0_expect_in; 148 if (dwc->ep0state == EP0_DATA_PHASE) 149 dwc3_ep0_end_control_data(dwc, dwc->eps[dir]); 150 else 151 dwc3_ep0_end_control_data(dwc, dwc->eps[!dir]); 152 153 dwc->eps[0]->trb_enqueue = 0; 154 dwc->eps[1]->trb_enqueue = 0; 155 156 dwc3_ep0_stall_and_restart(dwc); 157 } 158 } 159 160 /** 161 * dwc3_ep_inc_trb - increment a trb index. 162 * @index: Pointer to the TRB index to increment. 163 * 164 * The index should never point to the link TRB. After incrementing, 165 * if it is point to the link TRB, wrap around to the beginning. The 166 * link TRB is always at the last TRB entry. 167 */ 168 static void dwc3_ep_inc_trb(u8 *index) 169 { 170 (*index)++; 171 if (*index == (DWC3_TRB_NUM - 1)) 172 *index = 0; 173 } 174 175 /** 176 * dwc3_ep_inc_enq - increment endpoint's enqueue pointer 177 * @dep: The endpoint whose enqueue pointer we're incrementing 178 */ 179 static void dwc3_ep_inc_enq(struct dwc3_ep *dep) 180 { 181 dwc3_ep_inc_trb(&dep->trb_enqueue); 182 } 183 184 /** 185 * dwc3_ep_inc_deq - increment endpoint's dequeue pointer 186 * @dep: The endpoint whose enqueue pointer we're incrementing 187 */ 188 static void dwc3_ep_inc_deq(struct dwc3_ep *dep) 189 { 190 dwc3_ep_inc_trb(&dep->trb_dequeue); 191 } 192 193 static void dwc3_gadget_del_and_unmap_request(struct dwc3_ep *dep, 194 struct dwc3_request *req, int status) 195 { 196 struct dwc3 *dwc = dep->dwc; 197 198 list_del(&req->list); 199 req->remaining = 0; 200 req->needs_extra_trb = false; 201 req->num_trbs = 0; 202 203 if (req->request.status == -EINPROGRESS) 204 req->request.status = status; 205 206 if (req->trb) 207 usb_gadget_unmap_request_by_dev(dwc->sysdev, 208 &req->request, req->direction); 209 210 req->trb = NULL; 211 trace_dwc3_gadget_giveback(req); 212 213 if (dep->number > 1) 214 pm_runtime_put(dwc->dev); 215 } 216 217 /** 218 * dwc3_gadget_giveback - call struct usb_request's ->complete callback 219 * @dep: The endpoint to whom the request belongs to 220 * @req: The request we're giving back 221 * @status: completion code for the request 222 * 223 * Must be called with controller's lock held and interrupts disabled. This 224 * function will unmap @req and call its ->complete() callback to notify upper 225 * layers that it has completed. 226 */ 227 void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req, 228 int status) 229 { 230 struct dwc3 *dwc = dep->dwc; 231 232 dwc3_gadget_del_and_unmap_request(dep, req, status); 233 req->status = DWC3_REQUEST_STATUS_COMPLETED; 234 235 spin_unlock(&dwc->lock); 236 usb_gadget_giveback_request(&dep->endpoint, &req->request); 237 spin_lock(&dwc->lock); 238 } 239 240 /** 241 * dwc3_send_gadget_generic_command - issue a generic command for the controller 242 * @dwc: pointer to the controller context 243 * @cmd: the command to be issued 244 * @param: command parameter 245 * 246 * Caller should take care of locking. Issue @cmd with a given @param to @dwc 247 * and wait for its completion. 248 */ 249 int dwc3_send_gadget_generic_command(struct dwc3 *dwc, unsigned int cmd, 250 u32 param) 251 { 252 u32 timeout = 500; 253 int status = 0; 254 int ret = 0; 255 u32 reg; 256 257 dwc3_writel(dwc->regs, DWC3_DGCMDPAR, param); 258 dwc3_writel(dwc->regs, DWC3_DGCMD, cmd | DWC3_DGCMD_CMDACT); 259 260 do { 261 reg = dwc3_readl(dwc->regs, DWC3_DGCMD); 262 if (!(reg & DWC3_DGCMD_CMDACT)) { 263 status = DWC3_DGCMD_STATUS(reg); 264 if (status) 265 ret = -EINVAL; 266 break; 267 } 268 } while (--timeout); 269 270 if (!timeout) { 271 ret = -ETIMEDOUT; 272 status = -ETIMEDOUT; 273 } 274 275 trace_dwc3_gadget_generic_cmd(cmd, param, status); 276 277 return ret; 278 } 279 280 static int __dwc3_gadget_wakeup(struct dwc3 *dwc, bool async); 281 282 /** 283 * dwc3_send_gadget_ep_cmd - issue an endpoint command 284 * @dep: the endpoint to which the command is going to be issued 285 * @cmd: the command to be issued 286 * @params: parameters to the command 287 * 288 * Caller should handle locking. This function will issue @cmd with given 289 * @params to @dep and wait for its completion. 290 * 291 * According to the programming guide, if the link state is in L1/L2/U3, 292 * then sending the Start Transfer command may not complete. The 293 * programming guide suggested to bring the link state back to ON/U0 by 294 * performing remote wakeup prior to sending the command. However, don't 295 * initiate remote wakeup when the user/function does not send wakeup 296 * request via wakeup ops. Send the command when it's allowed. 297 * 298 * Notes: 299 * For L1 link state, issuing a command requires the clearing of 300 * GUSB2PHYCFG.SUSPENDUSB2, which turns on the signal required to complete 301 * the given command (usually within 50us). This should happen within the 302 * command timeout set by driver. No additional step is needed. 303 * 304 * For L2 or U3 link state, the gadget is in USB suspend. Care should be 305 * taken when sending Start Transfer command to ensure that it's done after 306 * USB resume. 307 */ 308 int dwc3_send_gadget_ep_cmd(struct dwc3_ep *dep, unsigned int cmd, 309 struct dwc3_gadget_ep_cmd_params *params) 310 { 311 const struct usb_endpoint_descriptor *desc = dep->endpoint.desc; 312 struct dwc3 *dwc = dep->dwc; 313 u32 timeout = 5000; 314 u32 saved_config = 0; 315 u32 reg; 316 317 int cmd_status = 0; 318 int ret = -EINVAL; 319 320 /* 321 * When operating in USB 2.0 speeds (HS/FS), if GUSB2PHYCFG.ENBLSLPM or 322 * GUSB2PHYCFG.SUSPHY is set, it must be cleared before issuing an 323 * endpoint command. 324 * 325 * Save and clear both GUSB2PHYCFG.ENBLSLPM and GUSB2PHYCFG.SUSPHY 326 * settings. Restore them after the command is completed. 327 * 328 * DWC_usb3 3.30a and DWC_usb31 1.90a programming guide section 3.2.2 329 */ 330 if (dwc->gadget->speed <= USB_SPEED_HIGH || 331 DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_ENDTRANSFER) { 332 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0)); 333 if (unlikely(reg & DWC3_GUSB2PHYCFG_SUSPHY)) { 334 saved_config |= DWC3_GUSB2PHYCFG_SUSPHY; 335 reg &= ~DWC3_GUSB2PHYCFG_SUSPHY; 336 } 337 338 if (reg & DWC3_GUSB2PHYCFG_ENBLSLPM) { 339 saved_config |= DWC3_GUSB2PHYCFG_ENBLSLPM; 340 reg &= ~DWC3_GUSB2PHYCFG_ENBLSLPM; 341 } 342 343 if (saved_config) 344 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg); 345 } 346 347 /* 348 * For some commands such as Update Transfer command, DEPCMDPARn 349 * registers are reserved. Since the driver often sends Update Transfer 350 * command, don't write to DEPCMDPARn to avoid register write delays and 351 * improve performance. 352 */ 353 if (DWC3_DEPCMD_CMD(cmd) != DWC3_DEPCMD_UPDATETRANSFER) { 354 dwc3_writel(dep->regs, DWC3_DEPCMDPAR0, params->param0); 355 dwc3_writel(dep->regs, DWC3_DEPCMDPAR1, params->param1); 356 dwc3_writel(dep->regs, DWC3_DEPCMDPAR2, params->param2); 357 } 358 359 /* 360 * Synopsys Databook 2.60a states in section 6.3.2.5.6 of that if we're 361 * not relying on XferNotReady, we can make use of a special "No 362 * Response Update Transfer" command where we should clear both CmdAct 363 * and CmdIOC bits. 364 * 365 * With this, we don't need to wait for command completion and can 366 * straight away issue further commands to the endpoint. 367 * 368 * NOTICE: We're making an assumption that control endpoints will never 369 * make use of Update Transfer command. This is a safe assumption 370 * because we can never have more than one request at a time with 371 * Control Endpoints. If anybody changes that assumption, this chunk 372 * needs to be updated accordingly. 373 */ 374 if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_UPDATETRANSFER && 375 !usb_endpoint_xfer_isoc(desc)) 376 cmd &= ~(DWC3_DEPCMD_CMDIOC | DWC3_DEPCMD_CMDACT); 377 else 378 cmd |= DWC3_DEPCMD_CMDACT; 379 380 dwc3_writel(dep->regs, DWC3_DEPCMD, cmd); 381 382 if (!(cmd & DWC3_DEPCMD_CMDACT) || 383 (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_ENDTRANSFER && 384 !(cmd & DWC3_DEPCMD_CMDIOC))) { 385 ret = 0; 386 goto skip_status; 387 } 388 389 do { 390 reg = dwc3_readl(dep->regs, DWC3_DEPCMD); 391 if (!(reg & DWC3_DEPCMD_CMDACT)) { 392 cmd_status = DWC3_DEPCMD_STATUS(reg); 393 394 switch (cmd_status) { 395 case 0: 396 ret = 0; 397 break; 398 case DEPEVT_TRANSFER_NO_RESOURCE: 399 dev_WARN(dwc->dev, "No resource for %s\n", 400 dep->name); 401 ret = -EINVAL; 402 break; 403 case DEPEVT_TRANSFER_BUS_EXPIRY: 404 /* 405 * SW issues START TRANSFER command to 406 * isochronous ep with future frame interval. If 407 * future interval time has already passed when 408 * core receives the command, it will respond 409 * with an error status of 'Bus Expiry'. 410 * 411 * Instead of always returning -EINVAL, let's 412 * give a hint to the gadget driver that this is 413 * the case by returning -EAGAIN. 414 */ 415 ret = -EAGAIN; 416 break; 417 default: 418 dev_WARN(dwc->dev, "UNKNOWN cmd status\n"); 419 } 420 421 break; 422 } 423 } while (--timeout); 424 425 if (timeout == 0) { 426 ret = -ETIMEDOUT; 427 cmd_status = -ETIMEDOUT; 428 } 429 430 skip_status: 431 trace_dwc3_gadget_ep_cmd(dep, cmd, params, cmd_status); 432 433 if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_STARTTRANSFER) { 434 if (ret == 0) 435 dep->flags |= DWC3_EP_TRANSFER_STARTED; 436 437 if (ret != -ETIMEDOUT) 438 dwc3_gadget_ep_get_transfer_index(dep); 439 } 440 441 if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_ENDTRANSFER && 442 !(cmd & DWC3_DEPCMD_CMDIOC)) 443 mdelay(1); 444 445 if (saved_config) { 446 reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0)); 447 reg |= saved_config; 448 dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg); 449 } 450 451 return ret; 452 } 453 454 static int dwc3_send_clear_stall_ep_cmd(struct dwc3_ep *dep) 455 { 456 struct dwc3 *dwc = dep->dwc; 457 struct dwc3_gadget_ep_cmd_params params; 458 u32 cmd = DWC3_DEPCMD_CLEARSTALL; 459 460 /* 461 * As of core revision 2.60a the recommended programming model 462 * is to set the ClearPendIN bit when issuing a Clear Stall EP 463 * command for IN endpoints. This is to prevent an issue where 464 * some (non-compliant) hosts may not send ACK TPs for pending 465 * IN transfers due to a mishandled error condition. Synopsys 466 * STAR 9000614252. 467 */ 468 if (dep->direction && 469 !DWC3_VER_IS_PRIOR(DWC3, 260A) && 470 (dwc->gadget->speed >= USB_SPEED_SUPER)) 471 cmd |= DWC3_DEPCMD_CLEARPENDIN; 472 473 memset(¶ms, 0, sizeof(params)); 474 475 return dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); 476 } 477 478 static dma_addr_t dwc3_trb_dma_offset(struct dwc3_ep *dep, 479 struct dwc3_trb *trb) 480 { 481 u32 offset = (char *) trb - (char *) dep->trb_pool; 482 483 return dep->trb_pool_dma + offset; 484 } 485 486 static int dwc3_alloc_trb_pool(struct dwc3_ep *dep) 487 { 488 struct dwc3 *dwc = dep->dwc; 489 490 if (dep->trb_pool) 491 return 0; 492 493 dep->trb_pool = dma_alloc_coherent(dwc->sysdev, 494 sizeof(struct dwc3_trb) * DWC3_TRB_NUM, 495 &dep->trb_pool_dma, GFP_KERNEL); 496 if (!dep->trb_pool) { 497 dev_err(dep->dwc->dev, "failed to allocate trb pool for %s\n", 498 dep->name); 499 return -ENOMEM; 500 } 501 502 return 0; 503 } 504 505 static void dwc3_free_trb_pool(struct dwc3_ep *dep) 506 { 507 struct dwc3 *dwc = dep->dwc; 508 509 dma_free_coherent(dwc->sysdev, sizeof(struct dwc3_trb) * DWC3_TRB_NUM, 510 dep->trb_pool, dep->trb_pool_dma); 511 512 dep->trb_pool = NULL; 513 dep->trb_pool_dma = 0; 514 } 515 516 static int dwc3_gadget_set_xfer_resource(struct dwc3_ep *dep) 517 { 518 struct dwc3_gadget_ep_cmd_params params; 519 520 memset(¶ms, 0x00, sizeof(params)); 521 522 params.param0 = DWC3_DEPXFERCFG_NUM_XFER_RES(1); 523 524 return dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETTRANSFRESOURCE, 525 ¶ms); 526 } 527 528 /** 529 * dwc3_gadget_start_config - configure ep resources 530 * @dep: endpoint that is being enabled 531 * 532 * Issue a %DWC3_DEPCMD_DEPSTARTCFG command to @dep. After the command's 533 * completion, it will set Transfer Resource for all available endpoints. 534 * 535 * The assignment of transfer resources cannot perfectly follow the data book 536 * due to the fact that the controller driver does not have all knowledge of the 537 * configuration in advance. It is given this information piecemeal by the 538 * composite gadget framework after every SET_CONFIGURATION and 539 * SET_INTERFACE. Trying to follow the databook programming model in this 540 * scenario can cause errors. For two reasons: 541 * 542 * 1) The databook says to do %DWC3_DEPCMD_DEPSTARTCFG for every 543 * %USB_REQ_SET_CONFIGURATION and %USB_REQ_SET_INTERFACE (8.1.5). This is 544 * incorrect in the scenario of multiple interfaces. 545 * 546 * 2) The databook does not mention doing more %DWC3_DEPCMD_DEPXFERCFG for new 547 * endpoint on alt setting (8.1.6). 548 * 549 * The following simplified method is used instead: 550 * 551 * All hardware endpoints can be assigned a transfer resource and this setting 552 * will stay persistent until either a core reset or hibernation. So whenever we 553 * do a %DWC3_DEPCMD_DEPSTARTCFG(0) we can go ahead and do 554 * %DWC3_DEPCMD_DEPXFERCFG for every hardware endpoint as well. We are 555 * guaranteed that there are as many transfer resources as endpoints. 556 * 557 * This function is called for each endpoint when it is being enabled but is 558 * triggered only when called for EP0-out, which always happens first, and which 559 * should only happen in one of the above conditions. 560 */ 561 static int dwc3_gadget_start_config(struct dwc3_ep *dep) 562 { 563 struct dwc3_gadget_ep_cmd_params params; 564 struct dwc3 *dwc; 565 u32 cmd; 566 int i; 567 int ret; 568 569 if (dep->number) 570 return 0; 571 572 memset(¶ms, 0x00, sizeof(params)); 573 cmd = DWC3_DEPCMD_DEPSTARTCFG; 574 dwc = dep->dwc; 575 576 ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); 577 if (ret) 578 return ret; 579 580 for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) { 581 struct dwc3_ep *dep = dwc->eps[i]; 582 583 if (!dep) 584 continue; 585 586 ret = dwc3_gadget_set_xfer_resource(dep); 587 if (ret) 588 return ret; 589 } 590 591 return 0; 592 } 593 594 static int dwc3_gadget_set_ep_config(struct dwc3_ep *dep, unsigned int action) 595 { 596 const struct usb_ss_ep_comp_descriptor *comp_desc; 597 const struct usb_endpoint_descriptor *desc; 598 struct dwc3_gadget_ep_cmd_params params; 599 struct dwc3 *dwc = dep->dwc; 600 601 comp_desc = dep->endpoint.comp_desc; 602 desc = dep->endpoint.desc; 603 604 memset(¶ms, 0x00, sizeof(params)); 605 606 params.param0 = DWC3_DEPCFG_EP_TYPE(usb_endpoint_type(desc)) 607 | DWC3_DEPCFG_MAX_PACKET_SIZE(usb_endpoint_maxp(desc)); 608 609 /* Burst size is only needed in SuperSpeed mode */ 610 if (dwc->gadget->speed >= USB_SPEED_SUPER) { 611 u32 burst = dep->endpoint.maxburst; 612 613 params.param0 |= DWC3_DEPCFG_BURST_SIZE(burst - 1); 614 } 615 616 params.param0 |= action; 617 if (action == DWC3_DEPCFG_ACTION_RESTORE) 618 params.param2 |= dep->saved_state; 619 620 if (usb_endpoint_xfer_control(desc)) 621 params.param1 = DWC3_DEPCFG_XFER_COMPLETE_EN; 622 623 if (dep->number <= 1 || usb_endpoint_xfer_isoc(desc)) 624 params.param1 |= DWC3_DEPCFG_XFER_NOT_READY_EN; 625 626 if (usb_ss_max_streams(comp_desc) && usb_endpoint_xfer_bulk(desc)) { 627 params.param1 |= DWC3_DEPCFG_STREAM_CAPABLE 628 | DWC3_DEPCFG_XFER_COMPLETE_EN 629 | DWC3_DEPCFG_STREAM_EVENT_EN; 630 dep->stream_capable = true; 631 } 632 633 if (!usb_endpoint_xfer_control(desc)) 634 params.param1 |= DWC3_DEPCFG_XFER_IN_PROGRESS_EN; 635 636 /* 637 * We are doing 1:1 mapping for endpoints, meaning 638 * Physical Endpoints 2 maps to Logical Endpoint 2 and 639 * so on. We consider the direction bit as part of the physical 640 * endpoint number. So USB endpoint 0x81 is 0x03. 641 */ 642 params.param1 |= DWC3_DEPCFG_EP_NUMBER(dep->number); 643 644 /* 645 * We must use the lower 16 TX FIFOs even though 646 * HW might have more 647 */ 648 if (dep->direction) 649 params.param0 |= DWC3_DEPCFG_FIFO_NUMBER(dep->number >> 1); 650 651 if (desc->bInterval) { 652 u8 bInterval_m1; 653 654 /* 655 * Valid range for DEPCFG.bInterval_m1 is from 0 to 13. 656 * 657 * NOTE: The programming guide incorrectly stated bInterval_m1 658 * must be set to 0 when operating in fullspeed. Internally the 659 * controller does not have this limitation. See DWC_usb3x 660 * programming guide section 3.2.2.1. 661 */ 662 bInterval_m1 = min_t(u8, desc->bInterval - 1, 13); 663 664 if (usb_endpoint_type(desc) == USB_ENDPOINT_XFER_INT && 665 dwc->gadget->speed == USB_SPEED_FULL) 666 dep->interval = desc->bInterval; 667 else 668 dep->interval = 1 << (desc->bInterval - 1); 669 670 params.param1 |= DWC3_DEPCFG_BINTERVAL_M1(bInterval_m1); 671 } 672 673 return dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETEPCONFIG, ¶ms); 674 } 675 676 /** 677 * dwc3_gadget_calc_tx_fifo_size - calculates the txfifo size value 678 * @dwc: pointer to the DWC3 context 679 * @mult: multiplier to be used when calculating the fifo_size 680 * 681 * Calculates the size value based on the equation below: 682 * 683 * DWC3 revision 280A and prior: 684 * fifo_size = mult * (max_packet / mdwidth) + 1; 685 * 686 * DWC3 revision 290A and onwards: 687 * fifo_size = mult * ((max_packet + mdwidth)/mdwidth + 1) + 1 688 * 689 * The max packet size is set to 1024, as the txfifo requirements mainly apply 690 * to super speed USB use cases. However, it is safe to overestimate the fifo 691 * allocations for other scenarios, i.e. high speed USB. 692 */ 693 static int dwc3_gadget_calc_tx_fifo_size(struct dwc3 *dwc, int mult) 694 { 695 int max_packet = 1024; 696 int fifo_size; 697 int mdwidth; 698 699 mdwidth = dwc3_mdwidth(dwc); 700 701 /* MDWIDTH is represented in bits, we need it in bytes */ 702 mdwidth >>= 3; 703 704 if (DWC3_VER_IS_PRIOR(DWC3, 290A)) 705 fifo_size = mult * (max_packet / mdwidth) + 1; 706 else 707 fifo_size = mult * ((max_packet + mdwidth) / mdwidth) + 1; 708 return fifo_size; 709 } 710 711 /** 712 * dwc3_gadget_clear_tx_fifos - Clears txfifo allocation 713 * @dwc: pointer to the DWC3 context 714 * 715 * Iterates through all the endpoint registers and clears the previous txfifo 716 * allocations. 717 */ 718 void dwc3_gadget_clear_tx_fifos(struct dwc3 *dwc) 719 { 720 struct dwc3_ep *dep; 721 int fifo_depth; 722 int size; 723 int num; 724 725 if (!dwc->do_fifo_resize) 726 return; 727 728 /* Read ep0IN related TXFIFO size */ 729 dep = dwc->eps[1]; 730 size = dwc3_readl(dwc->regs, DWC3_GTXFIFOSIZ(0)); 731 if (DWC3_IP_IS(DWC3)) 732 fifo_depth = DWC3_GTXFIFOSIZ_TXFDEP(size); 733 else 734 fifo_depth = DWC31_GTXFIFOSIZ_TXFDEP(size); 735 736 dwc->last_fifo_depth = fifo_depth; 737 /* Clear existing TXFIFO for all IN eps except ep0 */ 738 for (num = 3; num < min_t(int, dwc->num_eps, DWC3_ENDPOINTS_NUM); 739 num += 2) { 740 dep = dwc->eps[num]; 741 /* Don't change TXFRAMNUM on usb31 version */ 742 size = DWC3_IP_IS(DWC3) ? 0 : 743 dwc3_readl(dwc->regs, DWC3_GTXFIFOSIZ(num >> 1)) & 744 DWC31_GTXFIFOSIZ_TXFRAMNUM; 745 746 dwc3_writel(dwc->regs, DWC3_GTXFIFOSIZ(num >> 1), size); 747 dep->flags &= ~DWC3_EP_TXFIFO_RESIZED; 748 } 749 dwc->num_ep_resized = 0; 750 } 751 752 /* 753 * dwc3_gadget_resize_tx_fifos - reallocate fifo spaces for current use-case 754 * @dwc: pointer to our context structure 755 * 756 * This function will a best effort FIFO allocation in order 757 * to improve FIFO usage and throughput, while still allowing 758 * us to enable as many endpoints as possible. 759 * 760 * Keep in mind that this operation will be highly dependent 761 * on the configured size for RAM1 - which contains TxFifo -, 762 * the amount of endpoints enabled on coreConsultant tool, and 763 * the width of the Master Bus. 764 * 765 * In general, FIFO depths are represented with the following equation: 766 * 767 * fifo_size = mult * ((max_packet + mdwidth)/mdwidth + 1) + 1 768 * 769 * In conjunction with dwc3_gadget_check_config(), this resizing logic will 770 * ensure that all endpoints will have enough internal memory for one max 771 * packet per endpoint. 772 */ 773 static int dwc3_gadget_resize_tx_fifos(struct dwc3_ep *dep) 774 { 775 struct dwc3 *dwc = dep->dwc; 776 int fifo_0_start; 777 int ram1_depth; 778 int fifo_size; 779 int min_depth; 780 int num_in_ep; 781 int remaining; 782 int num_fifos = 1; 783 int fifo; 784 int tmp; 785 786 if (!dwc->do_fifo_resize) 787 return 0; 788 789 /* resize IN endpoints except ep0 */ 790 if (!usb_endpoint_dir_in(dep->endpoint.desc) || dep->number <= 1) 791 return 0; 792 793 /* bail if already resized */ 794 if (dep->flags & DWC3_EP_TXFIFO_RESIZED) 795 return 0; 796 797 ram1_depth = DWC3_RAM1_DEPTH(dwc->hwparams.hwparams7); 798 799 if ((dep->endpoint.maxburst > 1 && 800 usb_endpoint_xfer_bulk(dep->endpoint.desc)) || 801 usb_endpoint_xfer_isoc(dep->endpoint.desc)) 802 num_fifos = 3; 803 804 if (dep->endpoint.maxburst > 6 && 805 (usb_endpoint_xfer_bulk(dep->endpoint.desc) || 806 usb_endpoint_xfer_isoc(dep->endpoint.desc)) && DWC3_IP_IS(DWC31)) 807 num_fifos = dwc->tx_fifo_resize_max_num; 808 809 /* FIFO size for a single buffer */ 810 fifo = dwc3_gadget_calc_tx_fifo_size(dwc, 1); 811 812 /* Calculate the number of remaining EPs w/o any FIFO */ 813 num_in_ep = dwc->max_cfg_eps; 814 num_in_ep -= dwc->num_ep_resized; 815 816 /* Reserve at least one FIFO for the number of IN EPs */ 817 min_depth = num_in_ep * (fifo + 1); 818 remaining = ram1_depth - min_depth - dwc->last_fifo_depth; 819 remaining = max_t(int, 0, remaining); 820 /* 821 * We've already reserved 1 FIFO per EP, so check what we can fit in 822 * addition to it. If there is not enough remaining space, allocate 823 * all the remaining space to the EP. 824 */ 825 fifo_size = (num_fifos - 1) * fifo; 826 if (remaining < fifo_size) 827 fifo_size = remaining; 828 829 fifo_size += fifo; 830 /* Last increment according to the TX FIFO size equation */ 831 fifo_size++; 832 833 /* Check if TXFIFOs start at non-zero addr */ 834 tmp = dwc3_readl(dwc->regs, DWC3_GTXFIFOSIZ(0)); 835 fifo_0_start = DWC3_GTXFIFOSIZ_TXFSTADDR(tmp); 836 837 fifo_size |= (fifo_0_start + (dwc->last_fifo_depth << 16)); 838 if (DWC3_IP_IS(DWC3)) 839 dwc->last_fifo_depth += DWC3_GTXFIFOSIZ_TXFDEP(fifo_size); 840 else 841 dwc->last_fifo_depth += DWC31_GTXFIFOSIZ_TXFDEP(fifo_size); 842 843 /* Check fifo size allocation doesn't exceed available RAM size. */ 844 if (dwc->last_fifo_depth >= ram1_depth) { 845 dev_err(dwc->dev, "Fifosize(%d) > RAM size(%d) %s depth:%d\n", 846 dwc->last_fifo_depth, ram1_depth, 847 dep->endpoint.name, fifo_size); 848 if (DWC3_IP_IS(DWC3)) 849 fifo_size = DWC3_GTXFIFOSIZ_TXFDEP(fifo_size); 850 else 851 fifo_size = DWC31_GTXFIFOSIZ_TXFDEP(fifo_size); 852 853 dwc->last_fifo_depth -= fifo_size; 854 return -ENOMEM; 855 } 856 857 dwc3_writel(dwc->regs, DWC3_GTXFIFOSIZ(dep->number >> 1), fifo_size); 858 dep->flags |= DWC3_EP_TXFIFO_RESIZED; 859 dwc->num_ep_resized++; 860 861 return 0; 862 } 863 864 /** 865 * __dwc3_gadget_ep_enable - initializes a hw endpoint 866 * @dep: endpoint to be initialized 867 * @action: one of INIT, MODIFY or RESTORE 868 * 869 * Caller should take care of locking. Execute all necessary commands to 870 * initialize a HW endpoint so it can be used by a gadget driver. 871 */ 872 static int __dwc3_gadget_ep_enable(struct dwc3_ep *dep, unsigned int action) 873 { 874 const struct usb_endpoint_descriptor *desc = dep->endpoint.desc; 875 struct dwc3 *dwc = dep->dwc; 876 877 u32 reg; 878 int ret; 879 880 if (!(dep->flags & DWC3_EP_ENABLED)) { 881 ret = dwc3_gadget_resize_tx_fifos(dep); 882 if (ret) 883 return ret; 884 885 ret = dwc3_gadget_start_config(dep); 886 if (ret) 887 return ret; 888 } 889 890 ret = dwc3_gadget_set_ep_config(dep, action); 891 if (ret) 892 return ret; 893 894 if (!(dep->flags & DWC3_EP_ENABLED)) { 895 struct dwc3_trb *trb_st_hw; 896 struct dwc3_trb *trb_link; 897 898 dep->type = usb_endpoint_type(desc); 899 dep->flags |= DWC3_EP_ENABLED; 900 901 reg = dwc3_readl(dwc->regs, DWC3_DALEPENA); 902 reg |= DWC3_DALEPENA_EP(dep->number); 903 dwc3_writel(dwc->regs, DWC3_DALEPENA, reg); 904 905 dep->trb_dequeue = 0; 906 dep->trb_enqueue = 0; 907 908 if (usb_endpoint_xfer_control(desc)) 909 goto out; 910 911 /* Initialize the TRB ring */ 912 memset(dep->trb_pool, 0, 913 sizeof(struct dwc3_trb) * DWC3_TRB_NUM); 914 915 /* Link TRB. The HWO bit is never reset */ 916 trb_st_hw = &dep->trb_pool[0]; 917 918 trb_link = &dep->trb_pool[DWC3_TRB_NUM - 1]; 919 trb_link->bpl = lower_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw)); 920 trb_link->bph = upper_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw)); 921 trb_link->ctrl |= DWC3_TRBCTL_LINK_TRB; 922 trb_link->ctrl |= DWC3_TRB_CTRL_HWO; 923 } 924 925 /* 926 * Issue StartTransfer here with no-op TRB so we can always rely on No 927 * Response Update Transfer command. 928 */ 929 if (usb_endpoint_xfer_bulk(desc) || 930 usb_endpoint_xfer_int(desc)) { 931 struct dwc3_gadget_ep_cmd_params params; 932 struct dwc3_trb *trb; 933 dma_addr_t trb_dma; 934 u32 cmd; 935 936 memset(¶ms, 0, sizeof(params)); 937 trb = &dep->trb_pool[0]; 938 trb_dma = dwc3_trb_dma_offset(dep, trb); 939 940 params.param0 = upper_32_bits(trb_dma); 941 params.param1 = lower_32_bits(trb_dma); 942 943 cmd = DWC3_DEPCMD_STARTTRANSFER; 944 945 ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); 946 if (ret < 0) 947 return ret; 948 949 if (dep->stream_capable) { 950 /* 951 * For streams, at start, there maybe a race where the 952 * host primes the endpoint before the function driver 953 * queues a request to initiate a stream. In that case, 954 * the controller will not see the prime to generate the 955 * ERDY and start stream. To workaround this, issue a 956 * no-op TRB as normal, but end it immediately. As a 957 * result, when the function driver queues the request, 958 * the next START_TRANSFER command will cause the 959 * controller to generate an ERDY to initiate the 960 * stream. 961 */ 962 dwc3_stop_active_transfer(dep, true, true); 963 964 /* 965 * All stream eps will reinitiate stream on NoStream 966 * rejection until we can determine that the host can 967 * prime after the first transfer. 968 * 969 * However, if the controller is capable of 970 * TXF_FLUSH_BYPASS, then IN direction endpoints will 971 * automatically restart the stream without the driver 972 * initiation. 973 */ 974 if (!dep->direction || 975 !(dwc->hwparams.hwparams9 & 976 DWC3_GHWPARAMS9_DEV_TXF_FLUSH_BYPASS)) 977 dep->flags |= DWC3_EP_FORCE_RESTART_STREAM; 978 } 979 } 980 981 out: 982 trace_dwc3_gadget_ep_enable(dep); 983 984 return 0; 985 } 986 987 void dwc3_remove_requests(struct dwc3 *dwc, struct dwc3_ep *dep, int status) 988 { 989 struct dwc3_request *req; 990 991 dwc3_stop_active_transfer(dep, true, false); 992 993 /* If endxfer is delayed, avoid unmapping requests */ 994 if (dep->flags & DWC3_EP_DELAY_STOP) 995 return; 996 997 /* - giveback all requests to gadget driver */ 998 while (!list_empty(&dep->started_list)) { 999 req = next_request(&dep->started_list); 1000 1001 dwc3_gadget_giveback(dep, req, status); 1002 } 1003 1004 while (!list_empty(&dep->pending_list)) { 1005 req = next_request(&dep->pending_list); 1006 1007 dwc3_gadget_giveback(dep, req, status); 1008 } 1009 1010 while (!list_empty(&dep->cancelled_list)) { 1011 req = next_request(&dep->cancelled_list); 1012 1013 dwc3_gadget_giveback(dep, req, status); 1014 } 1015 } 1016 1017 /** 1018 * __dwc3_gadget_ep_disable - disables a hw endpoint 1019 * @dep: the endpoint to disable 1020 * 1021 * This function undoes what __dwc3_gadget_ep_enable did and also removes 1022 * requests which are currently being processed by the hardware and those which 1023 * are not yet scheduled. 1024 * 1025 * Caller should take care of locking. 1026 */ 1027 static int __dwc3_gadget_ep_disable(struct dwc3_ep *dep) 1028 { 1029 struct dwc3 *dwc = dep->dwc; 1030 u32 reg; 1031 u32 mask; 1032 1033 trace_dwc3_gadget_ep_disable(dep); 1034 1035 /* make sure HW endpoint isn't stalled */ 1036 if (dep->flags & DWC3_EP_STALL) 1037 __dwc3_gadget_ep_set_halt(dep, 0, false); 1038 1039 reg = dwc3_readl(dwc->regs, DWC3_DALEPENA); 1040 reg &= ~DWC3_DALEPENA_EP(dep->number); 1041 dwc3_writel(dwc->regs, DWC3_DALEPENA, reg); 1042 1043 dwc3_remove_requests(dwc, dep, -ESHUTDOWN); 1044 1045 dep->stream_capable = false; 1046 dep->type = 0; 1047 mask = DWC3_EP_TXFIFO_RESIZED; 1048 /* 1049 * dwc3_remove_requests() can exit early if DWC3 EP delayed stop is 1050 * set. Do not clear DEP flags, so that the end transfer command will 1051 * be reattempted during the next SETUP stage. 1052 */ 1053 if (dep->flags & DWC3_EP_DELAY_STOP) 1054 mask |= (DWC3_EP_DELAY_STOP | DWC3_EP_TRANSFER_STARTED); 1055 dep->flags &= mask; 1056 1057 /* Clear out the ep descriptors for non-ep0 */ 1058 if (dep->number > 1) { 1059 dep->endpoint.comp_desc = NULL; 1060 dep->endpoint.desc = NULL; 1061 } 1062 1063 return 0; 1064 } 1065 1066 /* -------------------------------------------------------------------------- */ 1067 1068 static int dwc3_gadget_ep0_enable(struct usb_ep *ep, 1069 const struct usb_endpoint_descriptor *desc) 1070 { 1071 return -EINVAL; 1072 } 1073 1074 static int dwc3_gadget_ep0_disable(struct usb_ep *ep) 1075 { 1076 return -EINVAL; 1077 } 1078 1079 /* -------------------------------------------------------------------------- */ 1080 1081 static int dwc3_gadget_ep_enable(struct usb_ep *ep, 1082 const struct usb_endpoint_descriptor *desc) 1083 { 1084 struct dwc3_ep *dep; 1085 struct dwc3 *dwc; 1086 unsigned long flags; 1087 int ret; 1088 1089 if (!ep || !desc || desc->bDescriptorType != USB_DT_ENDPOINT) { 1090 pr_debug("dwc3: invalid parameters\n"); 1091 return -EINVAL; 1092 } 1093 1094 if (!desc->wMaxPacketSize) { 1095 pr_debug("dwc3: missing wMaxPacketSize\n"); 1096 return -EINVAL; 1097 } 1098 1099 dep = to_dwc3_ep(ep); 1100 dwc = dep->dwc; 1101 1102 if (dev_WARN_ONCE(dwc->dev, dep->flags & DWC3_EP_ENABLED, 1103 "%s is already enabled\n", 1104 dep->name)) 1105 return 0; 1106 1107 spin_lock_irqsave(&dwc->lock, flags); 1108 ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_INIT); 1109 spin_unlock_irqrestore(&dwc->lock, flags); 1110 1111 return ret; 1112 } 1113 1114 static int dwc3_gadget_ep_disable(struct usb_ep *ep) 1115 { 1116 struct dwc3_ep *dep; 1117 struct dwc3 *dwc; 1118 unsigned long flags; 1119 int ret; 1120 1121 if (!ep) { 1122 pr_debug("dwc3: invalid parameters\n"); 1123 return -EINVAL; 1124 } 1125 1126 dep = to_dwc3_ep(ep); 1127 dwc = dep->dwc; 1128 1129 if (dev_WARN_ONCE(dwc->dev, !(dep->flags & DWC3_EP_ENABLED), 1130 "%s is already disabled\n", 1131 dep->name)) 1132 return 0; 1133 1134 spin_lock_irqsave(&dwc->lock, flags); 1135 ret = __dwc3_gadget_ep_disable(dep); 1136 spin_unlock_irqrestore(&dwc->lock, flags); 1137 1138 return ret; 1139 } 1140 1141 static struct usb_request *dwc3_gadget_ep_alloc_request(struct usb_ep *ep, 1142 gfp_t gfp_flags) 1143 { 1144 struct dwc3_request *req; 1145 struct dwc3_ep *dep = to_dwc3_ep(ep); 1146 1147 req = kzalloc(sizeof(*req), gfp_flags); 1148 if (!req) 1149 return NULL; 1150 1151 req->direction = dep->direction; 1152 req->epnum = dep->number; 1153 req->dep = dep; 1154 req->status = DWC3_REQUEST_STATUS_UNKNOWN; 1155 1156 trace_dwc3_alloc_request(req); 1157 1158 return &req->request; 1159 } 1160 1161 static void dwc3_gadget_ep_free_request(struct usb_ep *ep, 1162 struct usb_request *request) 1163 { 1164 struct dwc3_request *req = to_dwc3_request(request); 1165 1166 trace_dwc3_free_request(req); 1167 kfree(req); 1168 } 1169 1170 /** 1171 * dwc3_ep_prev_trb - returns the previous TRB in the ring 1172 * @dep: The endpoint with the TRB ring 1173 * @index: The index of the current TRB in the ring 1174 * 1175 * Returns the TRB prior to the one pointed to by the index. If the 1176 * index is 0, we will wrap backwards, skip the link TRB, and return 1177 * the one just before that. 1178 */ 1179 static struct dwc3_trb *dwc3_ep_prev_trb(struct dwc3_ep *dep, u8 index) 1180 { 1181 u8 tmp = index; 1182 1183 if (!tmp) 1184 tmp = DWC3_TRB_NUM - 1; 1185 1186 return &dep->trb_pool[tmp - 1]; 1187 } 1188 1189 static u32 dwc3_calc_trbs_left(struct dwc3_ep *dep) 1190 { 1191 u8 trbs_left; 1192 1193 /* 1194 * If the enqueue & dequeue are equal then the TRB ring is either full 1195 * or empty. It's considered full when there are DWC3_TRB_NUM-1 of TRBs 1196 * pending to be processed by the driver. 1197 */ 1198 if (dep->trb_enqueue == dep->trb_dequeue) { 1199 struct dwc3_request *req; 1200 1201 /* 1202 * If there is any request remained in the started_list with 1203 * active TRBs at this point, then there is no TRB available. 1204 */ 1205 req = next_request(&dep->started_list); 1206 if (req && req->num_trbs) 1207 return 0; 1208 1209 return DWC3_TRB_NUM - 1; 1210 } 1211 1212 trbs_left = dep->trb_dequeue - dep->trb_enqueue; 1213 trbs_left &= (DWC3_TRB_NUM - 1); 1214 1215 if (dep->trb_dequeue < dep->trb_enqueue) 1216 trbs_left--; 1217 1218 return trbs_left; 1219 } 1220 1221 /** 1222 * dwc3_prepare_one_trb - setup one TRB from one request 1223 * @dep: endpoint for which this request is prepared 1224 * @req: dwc3_request pointer 1225 * @trb_length: buffer size of the TRB 1226 * @chain: should this TRB be chained to the next? 1227 * @node: only for isochronous endpoints. First TRB needs different type. 1228 * @use_bounce_buffer: set to use bounce buffer 1229 * @must_interrupt: set to interrupt on TRB completion 1230 */ 1231 static void dwc3_prepare_one_trb(struct dwc3_ep *dep, 1232 struct dwc3_request *req, unsigned int trb_length, 1233 unsigned int chain, unsigned int node, bool use_bounce_buffer, 1234 bool must_interrupt) 1235 { 1236 struct dwc3_trb *trb; 1237 dma_addr_t dma; 1238 unsigned int stream_id = req->request.stream_id; 1239 unsigned int short_not_ok = req->request.short_not_ok; 1240 unsigned int no_interrupt = req->request.no_interrupt; 1241 unsigned int is_last = req->request.is_last; 1242 struct dwc3 *dwc = dep->dwc; 1243 struct usb_gadget *gadget = dwc->gadget; 1244 enum usb_device_speed speed = gadget->speed; 1245 1246 if (use_bounce_buffer) 1247 dma = dep->dwc->bounce_addr; 1248 else if (req->request.num_sgs > 0) 1249 dma = sg_dma_address(req->start_sg); 1250 else 1251 dma = req->request.dma; 1252 1253 trb = &dep->trb_pool[dep->trb_enqueue]; 1254 1255 if (!req->trb) { 1256 dwc3_gadget_move_started_request(req); 1257 req->trb = trb; 1258 req->trb_dma = dwc3_trb_dma_offset(dep, trb); 1259 } 1260 1261 req->num_trbs++; 1262 1263 trb->size = DWC3_TRB_SIZE_LENGTH(trb_length); 1264 trb->bpl = lower_32_bits(dma); 1265 trb->bph = upper_32_bits(dma); 1266 1267 switch (usb_endpoint_type(dep->endpoint.desc)) { 1268 case USB_ENDPOINT_XFER_CONTROL: 1269 trb->ctrl = DWC3_TRBCTL_CONTROL_SETUP; 1270 break; 1271 1272 case USB_ENDPOINT_XFER_ISOC: 1273 if (!node) { 1274 trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS_FIRST; 1275 1276 /* 1277 * USB Specification 2.0 Section 5.9.2 states that: "If 1278 * there is only a single transaction in the microframe, 1279 * only a DATA0 data packet PID is used. If there are 1280 * two transactions per microframe, DATA1 is used for 1281 * the first transaction data packet and DATA0 is used 1282 * for the second transaction data packet. If there are 1283 * three transactions per microframe, DATA2 is used for 1284 * the first transaction data packet, DATA1 is used for 1285 * the second, and DATA0 is used for the third." 1286 * 1287 * IOW, we should satisfy the following cases: 1288 * 1289 * 1) length <= maxpacket 1290 * - DATA0 1291 * 1292 * 2) maxpacket < length <= (2 * maxpacket) 1293 * - DATA1, DATA0 1294 * 1295 * 3) (2 * maxpacket) < length <= (3 * maxpacket) 1296 * - DATA2, DATA1, DATA0 1297 */ 1298 if (speed == USB_SPEED_HIGH) { 1299 struct usb_ep *ep = &dep->endpoint; 1300 unsigned int mult = 2; 1301 unsigned int maxp = usb_endpoint_maxp(ep->desc); 1302 1303 if (req->request.length <= (2 * maxp)) 1304 mult--; 1305 1306 if (req->request.length <= maxp) 1307 mult--; 1308 1309 trb->size |= DWC3_TRB_SIZE_PCM1(mult); 1310 } 1311 } else { 1312 trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS; 1313 } 1314 1315 if (!no_interrupt && !chain) 1316 trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI; 1317 break; 1318 1319 case USB_ENDPOINT_XFER_BULK: 1320 case USB_ENDPOINT_XFER_INT: 1321 trb->ctrl = DWC3_TRBCTL_NORMAL; 1322 break; 1323 default: 1324 /* 1325 * This is only possible with faulty memory because we 1326 * checked it already :) 1327 */ 1328 dev_WARN(dwc->dev, "Unknown endpoint type %d\n", 1329 usb_endpoint_type(dep->endpoint.desc)); 1330 } 1331 1332 /* 1333 * Enable Continue on Short Packet 1334 * when endpoint is not a stream capable 1335 */ 1336 if (usb_endpoint_dir_out(dep->endpoint.desc)) { 1337 if (!dep->stream_capable) 1338 trb->ctrl |= DWC3_TRB_CTRL_CSP; 1339 1340 if (short_not_ok) 1341 trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI; 1342 } 1343 1344 /* All TRBs setup for MST must set CSP=1 when LST=0 */ 1345 if (dep->stream_capable && DWC3_MST_CAPABLE(&dwc->hwparams)) 1346 trb->ctrl |= DWC3_TRB_CTRL_CSP; 1347 1348 if ((!no_interrupt && !chain) || must_interrupt) 1349 trb->ctrl |= DWC3_TRB_CTRL_IOC; 1350 1351 if (chain) 1352 trb->ctrl |= DWC3_TRB_CTRL_CHN; 1353 else if (dep->stream_capable && is_last && 1354 !DWC3_MST_CAPABLE(&dwc->hwparams)) 1355 trb->ctrl |= DWC3_TRB_CTRL_LST; 1356 1357 if (usb_endpoint_xfer_bulk(dep->endpoint.desc) && dep->stream_capable) 1358 trb->ctrl |= DWC3_TRB_CTRL_SID_SOFN(stream_id); 1359 1360 /* 1361 * As per data book 4.2.3.2TRB Control Bit Rules section 1362 * 1363 * The controller autonomously checks the HWO field of a TRB to determine if the 1364 * entire TRB is valid. Therefore, software must ensure that the rest of the TRB 1365 * is valid before setting the HWO field to '1'. In most systems, this means that 1366 * software must update the fourth DWORD of a TRB last. 1367 * 1368 * However there is a possibility of CPU re-ordering here which can cause 1369 * controller to observe the HWO bit set prematurely. 1370 * Add a write memory barrier to prevent CPU re-ordering. 1371 */ 1372 wmb(); 1373 trb->ctrl |= DWC3_TRB_CTRL_HWO; 1374 1375 dwc3_ep_inc_enq(dep); 1376 1377 trace_dwc3_prepare_trb(dep, trb); 1378 } 1379 1380 static bool dwc3_needs_extra_trb(struct dwc3_ep *dep, struct dwc3_request *req) 1381 { 1382 unsigned int maxp = usb_endpoint_maxp(dep->endpoint.desc); 1383 unsigned int rem = req->request.length % maxp; 1384 1385 if ((req->request.length && req->request.zero && !rem && 1386 !usb_endpoint_xfer_isoc(dep->endpoint.desc)) || 1387 (!req->direction && rem)) 1388 return true; 1389 1390 return false; 1391 } 1392 1393 /** 1394 * dwc3_prepare_last_sg - prepare TRBs for the last SG entry 1395 * @dep: The endpoint that the request belongs to 1396 * @req: The request to prepare 1397 * @entry_length: The last SG entry size 1398 * @node: Indicates whether this is not the first entry (for isoc only) 1399 * 1400 * Return the number of TRBs prepared. 1401 */ 1402 static int dwc3_prepare_last_sg(struct dwc3_ep *dep, 1403 struct dwc3_request *req, unsigned int entry_length, 1404 unsigned int node) 1405 { 1406 unsigned int maxp = usb_endpoint_maxp(dep->endpoint.desc); 1407 unsigned int rem = req->request.length % maxp; 1408 unsigned int num_trbs = 1; 1409 1410 if (dwc3_needs_extra_trb(dep, req)) 1411 num_trbs++; 1412 1413 if (dwc3_calc_trbs_left(dep) < num_trbs) 1414 return 0; 1415 1416 req->needs_extra_trb = num_trbs > 1; 1417 1418 /* Prepare a normal TRB */ 1419 if (req->direction || req->request.length) 1420 dwc3_prepare_one_trb(dep, req, entry_length, 1421 req->needs_extra_trb, node, false, false); 1422 1423 /* Prepare extra TRBs for ZLP and MPS OUT transfer alignment */ 1424 if ((!req->direction && !req->request.length) || req->needs_extra_trb) 1425 dwc3_prepare_one_trb(dep, req, 1426 req->direction ? 0 : maxp - rem, 1427 false, 1, true, false); 1428 1429 return num_trbs; 1430 } 1431 1432 static int dwc3_prepare_trbs_sg(struct dwc3_ep *dep, 1433 struct dwc3_request *req) 1434 { 1435 struct scatterlist *sg = req->start_sg; 1436 struct scatterlist *s; 1437 int i; 1438 unsigned int length = req->request.length; 1439 unsigned int remaining = req->num_pending_sgs; 1440 unsigned int num_queued_sgs = req->request.num_mapped_sgs - remaining; 1441 unsigned int num_trbs = req->num_trbs; 1442 bool needs_extra_trb = dwc3_needs_extra_trb(dep, req); 1443 1444 /* 1445 * If we resume preparing the request, then get the remaining length of 1446 * the request and resume where we left off. 1447 */ 1448 for_each_sg(req->request.sg, s, num_queued_sgs, i) 1449 length -= sg_dma_len(s); 1450 1451 for_each_sg(sg, s, remaining, i) { 1452 unsigned int num_trbs_left = dwc3_calc_trbs_left(dep); 1453 unsigned int trb_length; 1454 bool must_interrupt = false; 1455 bool last_sg = false; 1456 1457 trb_length = min_t(unsigned int, length, sg_dma_len(s)); 1458 1459 length -= trb_length; 1460 1461 /* 1462 * IOMMU driver is coalescing the list of sgs which shares a 1463 * page boundary into one and giving it to USB driver. With 1464 * this the number of sgs mapped is not equal to the number of 1465 * sgs passed. So mark the chain bit to false if it isthe last 1466 * mapped sg. 1467 */ 1468 if ((i == remaining - 1) || !length) 1469 last_sg = true; 1470 1471 if (!num_trbs_left) 1472 break; 1473 1474 if (last_sg) { 1475 if (!dwc3_prepare_last_sg(dep, req, trb_length, i)) 1476 break; 1477 } else { 1478 /* 1479 * Look ahead to check if we have enough TRBs for the 1480 * next SG entry. If not, set interrupt on this TRB to 1481 * resume preparing the next SG entry when more TRBs are 1482 * free. 1483 */ 1484 if (num_trbs_left == 1 || (needs_extra_trb && 1485 num_trbs_left <= 2 && 1486 sg_dma_len(sg_next(s)) >= length)) { 1487 struct dwc3_request *r; 1488 1489 /* Check if previous requests already set IOC */ 1490 list_for_each_entry(r, &dep->started_list, list) { 1491 if (r != req && !r->request.no_interrupt) 1492 break; 1493 1494 if (r == req) 1495 must_interrupt = true; 1496 } 1497 } 1498 1499 dwc3_prepare_one_trb(dep, req, trb_length, 1, i, false, 1500 must_interrupt); 1501 } 1502 1503 /* 1504 * There can be a situation where all sgs in sglist are not 1505 * queued because of insufficient trb number. To handle this 1506 * case, update start_sg to next sg to be queued, so that 1507 * we have free trbs we can continue queuing from where we 1508 * previously stopped 1509 */ 1510 if (!last_sg) 1511 req->start_sg = sg_next(s); 1512 1513 req->num_queued_sgs++; 1514 req->num_pending_sgs--; 1515 1516 /* 1517 * The number of pending SG entries may not correspond to the 1518 * number of mapped SG entries. If all the data are queued, then 1519 * don't include unused SG entries. 1520 */ 1521 if (length == 0) { 1522 req->num_pending_sgs = 0; 1523 break; 1524 } 1525 1526 if (must_interrupt) 1527 break; 1528 } 1529 1530 return req->num_trbs - num_trbs; 1531 } 1532 1533 static int dwc3_prepare_trbs_linear(struct dwc3_ep *dep, 1534 struct dwc3_request *req) 1535 { 1536 return dwc3_prepare_last_sg(dep, req, req->request.length, 0); 1537 } 1538 1539 /* 1540 * dwc3_prepare_trbs - setup TRBs from requests 1541 * @dep: endpoint for which requests are being prepared 1542 * 1543 * The function goes through the requests list and sets up TRBs for the 1544 * transfers. The function returns once there are no more TRBs available or 1545 * it runs out of requests. 1546 * 1547 * Returns the number of TRBs prepared or negative errno. 1548 */ 1549 static int dwc3_prepare_trbs(struct dwc3_ep *dep) 1550 { 1551 struct dwc3_request *req, *n; 1552 int ret = 0; 1553 1554 BUILD_BUG_ON_NOT_POWER_OF_2(DWC3_TRB_NUM); 1555 1556 /* 1557 * We can get in a situation where there's a request in the started list 1558 * but there weren't enough TRBs to fully kick it in the first time 1559 * around, so it has been waiting for more TRBs to be freed up. 1560 * 1561 * In that case, we should check if we have a request with pending_sgs 1562 * in the started list and prepare TRBs for that request first, 1563 * otherwise we will prepare TRBs completely out of order and that will 1564 * break things. 1565 */ 1566 list_for_each_entry(req, &dep->started_list, list) { 1567 if (req->num_pending_sgs > 0) { 1568 ret = dwc3_prepare_trbs_sg(dep, req); 1569 if (!ret || req->num_pending_sgs) 1570 return ret; 1571 } 1572 1573 if (!dwc3_calc_trbs_left(dep)) 1574 return ret; 1575 1576 /* 1577 * Don't prepare beyond a transfer. In DWC_usb32, its transfer 1578 * burst capability may try to read and use TRBs beyond the 1579 * active transfer instead of stopping. 1580 */ 1581 if (dep->stream_capable && req->request.is_last && 1582 !DWC3_MST_CAPABLE(&dep->dwc->hwparams)) 1583 return ret; 1584 } 1585 1586 list_for_each_entry_safe(req, n, &dep->pending_list, list) { 1587 struct dwc3 *dwc = dep->dwc; 1588 1589 ret = usb_gadget_map_request_by_dev(dwc->sysdev, &req->request, 1590 dep->direction); 1591 if (ret) 1592 return ret; 1593 1594 req->sg = req->request.sg; 1595 req->start_sg = req->sg; 1596 req->num_queued_sgs = 0; 1597 req->num_pending_sgs = req->request.num_mapped_sgs; 1598 1599 if (req->num_pending_sgs > 0) { 1600 ret = dwc3_prepare_trbs_sg(dep, req); 1601 if (req->num_pending_sgs) 1602 return ret; 1603 } else { 1604 ret = dwc3_prepare_trbs_linear(dep, req); 1605 } 1606 1607 if (!ret || !dwc3_calc_trbs_left(dep)) 1608 return ret; 1609 1610 /* 1611 * Don't prepare beyond a transfer. In DWC_usb32, its transfer 1612 * burst capability may try to read and use TRBs beyond the 1613 * active transfer instead of stopping. 1614 */ 1615 if (dep->stream_capable && req->request.is_last && 1616 !DWC3_MST_CAPABLE(&dwc->hwparams)) 1617 return ret; 1618 } 1619 1620 return ret; 1621 } 1622 1623 static void dwc3_gadget_ep_cleanup_cancelled_requests(struct dwc3_ep *dep); 1624 1625 static int __dwc3_gadget_kick_transfer(struct dwc3_ep *dep) 1626 { 1627 struct dwc3_gadget_ep_cmd_params params; 1628 struct dwc3_request *req; 1629 int starting; 1630 int ret; 1631 u32 cmd; 1632 1633 /* 1634 * Note that it's normal to have no new TRBs prepared (i.e. ret == 0). 1635 * This happens when we need to stop and restart a transfer such as in 1636 * the case of reinitiating a stream or retrying an isoc transfer. 1637 */ 1638 ret = dwc3_prepare_trbs(dep); 1639 if (ret < 0) 1640 return ret; 1641 1642 starting = !(dep->flags & DWC3_EP_TRANSFER_STARTED); 1643 1644 /* 1645 * If there's no new TRB prepared and we don't need to restart a 1646 * transfer, there's no need to update the transfer. 1647 */ 1648 if (!ret && !starting) 1649 return ret; 1650 1651 req = next_request(&dep->started_list); 1652 if (!req) { 1653 dep->flags |= DWC3_EP_PENDING_REQUEST; 1654 return 0; 1655 } 1656 1657 memset(¶ms, 0, sizeof(params)); 1658 1659 if (starting) { 1660 params.param0 = upper_32_bits(req->trb_dma); 1661 params.param1 = lower_32_bits(req->trb_dma); 1662 cmd = DWC3_DEPCMD_STARTTRANSFER; 1663 1664 if (dep->stream_capable) 1665 cmd |= DWC3_DEPCMD_PARAM(req->request.stream_id); 1666 1667 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) 1668 cmd |= DWC3_DEPCMD_PARAM(dep->frame_number); 1669 } else { 1670 cmd = DWC3_DEPCMD_UPDATETRANSFER | 1671 DWC3_DEPCMD_PARAM(dep->resource_index); 1672 } 1673 1674 ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); 1675 if (ret < 0) { 1676 struct dwc3_request *tmp; 1677 1678 if (ret == -EAGAIN) 1679 return ret; 1680 1681 dwc3_stop_active_transfer(dep, true, true); 1682 1683 list_for_each_entry_safe(req, tmp, &dep->started_list, list) 1684 dwc3_gadget_move_cancelled_request(req, DWC3_REQUEST_STATUS_DEQUEUED); 1685 1686 /* If ep isn't started, then there's no end transfer pending */ 1687 if (!(dep->flags & DWC3_EP_END_TRANSFER_PENDING)) 1688 dwc3_gadget_ep_cleanup_cancelled_requests(dep); 1689 1690 return ret; 1691 } 1692 1693 if (dep->stream_capable && req->request.is_last && 1694 !DWC3_MST_CAPABLE(&dep->dwc->hwparams)) 1695 dep->flags |= DWC3_EP_WAIT_TRANSFER_COMPLETE; 1696 1697 return 0; 1698 } 1699 1700 static int __dwc3_gadget_get_frame(struct dwc3 *dwc) 1701 { 1702 u32 reg; 1703 1704 reg = dwc3_readl(dwc->regs, DWC3_DSTS); 1705 return DWC3_DSTS_SOFFN(reg); 1706 } 1707 1708 /** 1709 * __dwc3_stop_active_transfer - stop the current active transfer 1710 * @dep: isoc endpoint 1711 * @force: set forcerm bit in the command 1712 * @interrupt: command complete interrupt after End Transfer command 1713 * 1714 * When setting force, the ForceRM bit will be set. In that case 1715 * the controller won't update the TRB progress on command 1716 * completion. It also won't clear the HWO bit in the TRB. 1717 * The command will also not complete immediately in that case. 1718 */ 1719 static int __dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force, bool interrupt) 1720 { 1721 struct dwc3_gadget_ep_cmd_params params; 1722 u32 cmd; 1723 int ret; 1724 1725 cmd = DWC3_DEPCMD_ENDTRANSFER; 1726 cmd |= force ? DWC3_DEPCMD_HIPRI_FORCERM : 0; 1727 cmd |= interrupt ? DWC3_DEPCMD_CMDIOC : 0; 1728 cmd |= DWC3_DEPCMD_PARAM(dep->resource_index); 1729 memset(¶ms, 0, sizeof(params)); 1730 ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); 1731 /* 1732 * If the End Transfer command was timed out while the device is 1733 * not in SETUP phase, it's possible that an incoming Setup packet 1734 * may prevent the command's completion. Let's retry when the 1735 * ep0state returns to EP0_SETUP_PHASE. 1736 */ 1737 if (ret == -ETIMEDOUT && dep->dwc->ep0state != EP0_SETUP_PHASE) { 1738 dep->flags |= DWC3_EP_DELAY_STOP; 1739 return 0; 1740 } 1741 WARN_ON_ONCE(ret); 1742 dep->resource_index = 0; 1743 1744 if (!interrupt) 1745 dep->flags &= ~DWC3_EP_TRANSFER_STARTED; 1746 else if (!ret) 1747 dep->flags |= DWC3_EP_END_TRANSFER_PENDING; 1748 1749 dep->flags &= ~DWC3_EP_DELAY_STOP; 1750 return ret; 1751 } 1752 1753 /** 1754 * dwc3_gadget_start_isoc_quirk - workaround invalid frame number 1755 * @dep: isoc endpoint 1756 * 1757 * This function tests for the correct combination of BIT[15:14] from the 16-bit 1758 * microframe number reported by the XferNotReady event for the future frame 1759 * number to start the isoc transfer. 1760 * 1761 * In DWC_usb31 version 1.70a-ea06 and prior, for highspeed and fullspeed 1762 * isochronous IN, BIT[15:14] of the 16-bit microframe number reported by the 1763 * XferNotReady event are invalid. The driver uses this number to schedule the 1764 * isochronous transfer and passes it to the START TRANSFER command. Because 1765 * this number is invalid, the command may fail. If BIT[15:14] matches the 1766 * internal 16-bit microframe, the START TRANSFER command will pass and the 1767 * transfer will start at the scheduled time, if it is off by 1, the command 1768 * will still pass, but the transfer will start 2 seconds in the future. For all 1769 * other conditions, the START TRANSFER command will fail with bus-expiry. 1770 * 1771 * In order to workaround this issue, we can test for the correct combination of 1772 * BIT[15:14] by sending START TRANSFER commands with different values of 1773 * BIT[15:14]: 'b00, 'b01, 'b10, and 'b11. Each combination is 2^14 uframe apart 1774 * (or 2 seconds). 4 seconds into the future will result in a bus-expiry status. 1775 * As the result, within the 4 possible combinations for BIT[15:14], there will 1776 * be 2 successful and 2 failure START COMMAND status. One of the 2 successful 1777 * command status will result in a 2-second delay start. The smaller BIT[15:14] 1778 * value is the correct combination. 1779 * 1780 * Since there are only 4 outcomes and the results are ordered, we can simply 1781 * test 2 START TRANSFER commands with BIT[15:14] combinations 'b00 and 'b01 to 1782 * deduce the smaller successful combination. 1783 * 1784 * Let test0 = test status for combination 'b00 and test1 = test status for 'b01 1785 * of BIT[15:14]. The correct combination is as follow: 1786 * 1787 * if test0 fails and test1 passes, BIT[15:14] is 'b01 1788 * if test0 fails and test1 fails, BIT[15:14] is 'b10 1789 * if test0 passes and test1 fails, BIT[15:14] is 'b11 1790 * if test0 passes and test1 passes, BIT[15:14] is 'b00 1791 * 1792 * Synopsys STAR 9001202023: Wrong microframe number for isochronous IN 1793 * endpoints. 1794 */ 1795 static int dwc3_gadget_start_isoc_quirk(struct dwc3_ep *dep) 1796 { 1797 int cmd_status = 0; 1798 bool test0; 1799 bool test1; 1800 1801 while (dep->combo_num < 2) { 1802 struct dwc3_gadget_ep_cmd_params params; 1803 u32 test_frame_number; 1804 u32 cmd; 1805 1806 /* 1807 * Check if we can start isoc transfer on the next interval or 1808 * 4 uframes in the future with BIT[15:14] as dep->combo_num 1809 */ 1810 test_frame_number = dep->frame_number & DWC3_FRNUMBER_MASK; 1811 test_frame_number |= dep->combo_num << 14; 1812 test_frame_number += max_t(u32, 4, dep->interval); 1813 1814 params.param0 = upper_32_bits(dep->dwc->bounce_addr); 1815 params.param1 = lower_32_bits(dep->dwc->bounce_addr); 1816 1817 cmd = DWC3_DEPCMD_STARTTRANSFER; 1818 cmd |= DWC3_DEPCMD_PARAM(test_frame_number); 1819 cmd_status = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); 1820 1821 /* Redo if some other failure beside bus-expiry is received */ 1822 if (cmd_status && cmd_status != -EAGAIN) { 1823 dep->start_cmd_status = 0; 1824 dep->combo_num = 0; 1825 return 0; 1826 } 1827 1828 /* Store the first test status */ 1829 if (dep->combo_num == 0) 1830 dep->start_cmd_status = cmd_status; 1831 1832 dep->combo_num++; 1833 1834 /* 1835 * End the transfer if the START_TRANSFER command is successful 1836 * to wait for the next XferNotReady to test the command again 1837 */ 1838 if (cmd_status == 0) { 1839 dwc3_stop_active_transfer(dep, true, true); 1840 return 0; 1841 } 1842 } 1843 1844 /* test0 and test1 are both completed at this point */ 1845 test0 = (dep->start_cmd_status == 0); 1846 test1 = (cmd_status == 0); 1847 1848 if (!test0 && test1) 1849 dep->combo_num = 1; 1850 else if (!test0 && !test1) 1851 dep->combo_num = 2; 1852 else if (test0 && !test1) 1853 dep->combo_num = 3; 1854 else if (test0 && test1) 1855 dep->combo_num = 0; 1856 1857 dep->frame_number &= DWC3_FRNUMBER_MASK; 1858 dep->frame_number |= dep->combo_num << 14; 1859 dep->frame_number += max_t(u32, 4, dep->interval); 1860 1861 /* Reinitialize test variables */ 1862 dep->start_cmd_status = 0; 1863 dep->combo_num = 0; 1864 1865 return __dwc3_gadget_kick_transfer(dep); 1866 } 1867 1868 static int __dwc3_gadget_start_isoc(struct dwc3_ep *dep) 1869 { 1870 const struct usb_endpoint_descriptor *desc = dep->endpoint.desc; 1871 struct dwc3 *dwc = dep->dwc; 1872 int ret; 1873 int i; 1874 1875 if (list_empty(&dep->pending_list) && 1876 list_empty(&dep->started_list)) { 1877 dep->flags |= DWC3_EP_PENDING_REQUEST; 1878 return -EAGAIN; 1879 } 1880 1881 if (!dwc->dis_start_transfer_quirk && 1882 (DWC3_VER_IS_PRIOR(DWC31, 170A) || 1883 DWC3_VER_TYPE_IS_WITHIN(DWC31, 170A, EA01, EA06))) { 1884 if (dwc->gadget->speed <= USB_SPEED_HIGH && dep->direction) 1885 return dwc3_gadget_start_isoc_quirk(dep); 1886 } 1887 1888 if (desc->bInterval <= 14 && 1889 dwc->gadget->speed >= USB_SPEED_HIGH) { 1890 u32 frame = __dwc3_gadget_get_frame(dwc); 1891 bool rollover = frame < 1892 (dep->frame_number & DWC3_FRNUMBER_MASK); 1893 1894 /* 1895 * frame_number is set from XferNotReady and may be already 1896 * out of date. DSTS only provides the lower 14 bit of the 1897 * current frame number. So add the upper two bits of 1898 * frame_number and handle a possible rollover. 1899 * This will provide the correct frame_number unless more than 1900 * rollover has happened since XferNotReady. 1901 */ 1902 1903 dep->frame_number = (dep->frame_number & ~DWC3_FRNUMBER_MASK) | 1904 frame; 1905 if (rollover) 1906 dep->frame_number += BIT(14); 1907 } 1908 1909 for (i = 0; i < DWC3_ISOC_MAX_RETRIES; i++) { 1910 int future_interval = i + 1; 1911 1912 /* Give the controller at least 500us to schedule transfers */ 1913 if (desc->bInterval < 3) 1914 future_interval += 3 - desc->bInterval; 1915 1916 dep->frame_number = DWC3_ALIGN_FRAME(dep, future_interval); 1917 1918 ret = __dwc3_gadget_kick_transfer(dep); 1919 if (ret != -EAGAIN) 1920 break; 1921 } 1922 1923 /* 1924 * After a number of unsuccessful start attempts due to bus-expiry 1925 * status, issue END_TRANSFER command and retry on the next XferNotReady 1926 * event. 1927 */ 1928 if (ret == -EAGAIN) 1929 ret = __dwc3_stop_active_transfer(dep, false, true); 1930 1931 return ret; 1932 } 1933 1934 static int __dwc3_gadget_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req) 1935 { 1936 struct dwc3 *dwc = dep->dwc; 1937 1938 if (!dep->endpoint.desc || !dwc->pullups_connected || !dwc->connected) { 1939 dev_dbg(dwc->dev, "%s: can't queue to disabled endpoint\n", 1940 dep->name); 1941 return -ESHUTDOWN; 1942 } 1943 1944 if (WARN(req->dep != dep, "request %pK belongs to '%s'\n", 1945 &req->request, req->dep->name)) 1946 return -EINVAL; 1947 1948 if (WARN(req->status < DWC3_REQUEST_STATUS_COMPLETED, 1949 "%s: request %pK already in flight\n", 1950 dep->name, &req->request)) 1951 return -EINVAL; 1952 1953 pm_runtime_get(dwc->dev); 1954 1955 req->request.actual = 0; 1956 req->request.status = -EINPROGRESS; 1957 1958 trace_dwc3_ep_queue(req); 1959 1960 list_add_tail(&req->list, &dep->pending_list); 1961 req->status = DWC3_REQUEST_STATUS_QUEUED; 1962 1963 if (dep->flags & DWC3_EP_WAIT_TRANSFER_COMPLETE) 1964 return 0; 1965 1966 /* 1967 * Start the transfer only after the END_TRANSFER is completed 1968 * and endpoint STALL is cleared. 1969 */ 1970 if ((dep->flags & DWC3_EP_END_TRANSFER_PENDING) || 1971 (dep->flags & DWC3_EP_WEDGE) || 1972 (dep->flags & DWC3_EP_DELAY_STOP) || 1973 (dep->flags & DWC3_EP_STALL)) { 1974 dep->flags |= DWC3_EP_DELAY_START; 1975 return 0; 1976 } 1977 1978 /* 1979 * NOTICE: Isochronous endpoints should NEVER be prestarted. We must 1980 * wait for a XferNotReady event so we will know what's the current 1981 * (micro-)frame number. 1982 * 1983 * Without this trick, we are very, very likely gonna get Bus Expiry 1984 * errors which will force us issue EndTransfer command. 1985 */ 1986 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) { 1987 if (!(dep->flags & DWC3_EP_TRANSFER_STARTED)) { 1988 if ((dep->flags & DWC3_EP_PENDING_REQUEST)) 1989 return __dwc3_gadget_start_isoc(dep); 1990 1991 return 0; 1992 } 1993 } 1994 1995 __dwc3_gadget_kick_transfer(dep); 1996 1997 return 0; 1998 } 1999 2000 static int dwc3_gadget_ep_queue(struct usb_ep *ep, struct usb_request *request, 2001 gfp_t gfp_flags) 2002 { 2003 struct dwc3_request *req = to_dwc3_request(request); 2004 struct dwc3_ep *dep = to_dwc3_ep(ep); 2005 struct dwc3 *dwc = dep->dwc; 2006 2007 unsigned long flags; 2008 2009 int ret; 2010 2011 spin_lock_irqsave(&dwc->lock, flags); 2012 ret = __dwc3_gadget_ep_queue(dep, req); 2013 spin_unlock_irqrestore(&dwc->lock, flags); 2014 2015 return ret; 2016 } 2017 2018 static void dwc3_gadget_ep_skip_trbs(struct dwc3_ep *dep, struct dwc3_request *req) 2019 { 2020 int i; 2021 2022 /* If req->trb is not set, then the request has not started */ 2023 if (!req->trb) 2024 return; 2025 2026 /* 2027 * If request was already started, this means we had to 2028 * stop the transfer. With that we also need to ignore 2029 * all TRBs used by the request, however TRBs can only 2030 * be modified after completion of END_TRANSFER 2031 * command. So what we do here is that we wait for 2032 * END_TRANSFER completion and only after that, we jump 2033 * over TRBs by clearing HWO and incrementing dequeue 2034 * pointer. 2035 */ 2036 for (i = 0; i < req->num_trbs; i++) { 2037 struct dwc3_trb *trb; 2038 2039 trb = &dep->trb_pool[dep->trb_dequeue]; 2040 trb->ctrl &= ~DWC3_TRB_CTRL_HWO; 2041 dwc3_ep_inc_deq(dep); 2042 } 2043 2044 req->num_trbs = 0; 2045 } 2046 2047 static void dwc3_gadget_ep_cleanup_cancelled_requests(struct dwc3_ep *dep) 2048 { 2049 struct dwc3_request *req; 2050 struct dwc3 *dwc = dep->dwc; 2051 2052 while (!list_empty(&dep->cancelled_list)) { 2053 req = next_request(&dep->cancelled_list); 2054 dwc3_gadget_ep_skip_trbs(dep, req); 2055 switch (req->status) { 2056 case DWC3_REQUEST_STATUS_DISCONNECTED: 2057 dwc3_gadget_giveback(dep, req, -ESHUTDOWN); 2058 break; 2059 case DWC3_REQUEST_STATUS_DEQUEUED: 2060 dwc3_gadget_giveback(dep, req, -ECONNRESET); 2061 break; 2062 case DWC3_REQUEST_STATUS_STALLED: 2063 dwc3_gadget_giveback(dep, req, -EPIPE); 2064 break; 2065 default: 2066 dev_err(dwc->dev, "request cancelled with wrong reason:%d\n", req->status); 2067 dwc3_gadget_giveback(dep, req, -ECONNRESET); 2068 break; 2069 } 2070 /* 2071 * The endpoint is disabled, let the dwc3_remove_requests() 2072 * handle the cleanup. 2073 */ 2074 if (!dep->endpoint.desc) 2075 break; 2076 } 2077 } 2078 2079 static int dwc3_gadget_ep_dequeue(struct usb_ep *ep, 2080 struct usb_request *request) 2081 { 2082 struct dwc3_request *req = to_dwc3_request(request); 2083 struct dwc3_request *r = NULL; 2084 2085 struct dwc3_ep *dep = to_dwc3_ep(ep); 2086 struct dwc3 *dwc = dep->dwc; 2087 2088 unsigned long flags; 2089 int ret = 0; 2090 2091 trace_dwc3_ep_dequeue(req); 2092 2093 spin_lock_irqsave(&dwc->lock, flags); 2094 2095 list_for_each_entry(r, &dep->cancelled_list, list) { 2096 if (r == req) 2097 goto out; 2098 } 2099 2100 list_for_each_entry(r, &dep->pending_list, list) { 2101 if (r == req) { 2102 /* 2103 * Explicitly check for EP0/1 as dequeue for those 2104 * EPs need to be handled differently. Control EP 2105 * only deals with one USB req, and giveback will 2106 * occur during dwc3_ep0_stall_and_restart(). EP0 2107 * requests are never added to started_list. 2108 */ 2109 if (dep->number > 1) 2110 dwc3_gadget_giveback(dep, req, -ECONNRESET); 2111 else 2112 dwc3_ep0_reset_state(dwc); 2113 goto out; 2114 } 2115 } 2116 2117 list_for_each_entry(r, &dep->started_list, list) { 2118 if (r == req) { 2119 struct dwc3_request *t; 2120 2121 /* wait until it is processed */ 2122 dwc3_stop_active_transfer(dep, true, true); 2123 2124 /* 2125 * Remove any started request if the transfer is 2126 * cancelled. 2127 */ 2128 list_for_each_entry_safe(r, t, &dep->started_list, list) 2129 dwc3_gadget_move_cancelled_request(r, 2130 DWC3_REQUEST_STATUS_DEQUEUED); 2131 2132 dep->flags &= ~DWC3_EP_WAIT_TRANSFER_COMPLETE; 2133 2134 goto out; 2135 } 2136 } 2137 2138 dev_err(dwc->dev, "request %pK was not queued to %s\n", 2139 request, ep->name); 2140 ret = -EINVAL; 2141 out: 2142 spin_unlock_irqrestore(&dwc->lock, flags); 2143 2144 return ret; 2145 } 2146 2147 int __dwc3_gadget_ep_set_halt(struct dwc3_ep *dep, int value, int protocol) 2148 { 2149 struct dwc3_gadget_ep_cmd_params params; 2150 struct dwc3 *dwc = dep->dwc; 2151 struct dwc3_request *req; 2152 struct dwc3_request *tmp; 2153 int ret; 2154 2155 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) { 2156 dev_err(dwc->dev, "%s is of Isochronous type\n", dep->name); 2157 return -EINVAL; 2158 } 2159 2160 memset(¶ms, 0x00, sizeof(params)); 2161 2162 if (value) { 2163 struct dwc3_trb *trb; 2164 2165 unsigned int transfer_in_flight; 2166 unsigned int started; 2167 2168 if (dep->number > 1) 2169 trb = dwc3_ep_prev_trb(dep, dep->trb_enqueue); 2170 else 2171 trb = &dwc->ep0_trb[dep->trb_enqueue]; 2172 2173 transfer_in_flight = trb->ctrl & DWC3_TRB_CTRL_HWO; 2174 started = !list_empty(&dep->started_list); 2175 2176 if (!protocol && ((dep->direction && transfer_in_flight) || 2177 (!dep->direction && started))) { 2178 return -EAGAIN; 2179 } 2180 2181 ret = dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETSTALL, 2182 ¶ms); 2183 if (ret) 2184 dev_err(dwc->dev, "failed to set STALL on %s\n", 2185 dep->name); 2186 else 2187 dep->flags |= DWC3_EP_STALL; 2188 } else { 2189 /* 2190 * Don't issue CLEAR_STALL command to control endpoints. The 2191 * controller automatically clears the STALL when it receives 2192 * the SETUP token. 2193 */ 2194 if (dep->number <= 1) { 2195 dep->flags &= ~(DWC3_EP_STALL | DWC3_EP_WEDGE); 2196 return 0; 2197 } 2198 2199 dwc3_stop_active_transfer(dep, true, true); 2200 2201 list_for_each_entry_safe(req, tmp, &dep->started_list, list) 2202 dwc3_gadget_move_cancelled_request(req, DWC3_REQUEST_STATUS_STALLED); 2203 2204 if (dep->flags & DWC3_EP_END_TRANSFER_PENDING || 2205 (dep->flags & DWC3_EP_DELAY_STOP)) { 2206 dep->flags |= DWC3_EP_PENDING_CLEAR_STALL; 2207 if (protocol) 2208 dwc->clear_stall_protocol = dep->number; 2209 2210 return 0; 2211 } 2212 2213 dwc3_gadget_ep_cleanup_cancelled_requests(dep); 2214 2215 ret = dwc3_send_clear_stall_ep_cmd(dep); 2216 if (ret) { 2217 dev_err(dwc->dev, "failed to clear STALL on %s\n", 2218 dep->name); 2219 return ret; 2220 } 2221 2222 dep->flags &= ~(DWC3_EP_STALL | DWC3_EP_WEDGE); 2223 2224 if ((dep->flags & DWC3_EP_DELAY_START) && 2225 !usb_endpoint_xfer_isoc(dep->endpoint.desc)) 2226 __dwc3_gadget_kick_transfer(dep); 2227 2228 dep->flags &= ~DWC3_EP_DELAY_START; 2229 } 2230 2231 return ret; 2232 } 2233 2234 static int dwc3_gadget_ep_set_halt(struct usb_ep *ep, int value) 2235 { 2236 struct dwc3_ep *dep = to_dwc3_ep(ep); 2237 struct dwc3 *dwc = dep->dwc; 2238 2239 unsigned long flags; 2240 2241 int ret; 2242 2243 spin_lock_irqsave(&dwc->lock, flags); 2244 ret = __dwc3_gadget_ep_set_halt(dep, value, false); 2245 spin_unlock_irqrestore(&dwc->lock, flags); 2246 2247 return ret; 2248 } 2249 2250 static int dwc3_gadget_ep_set_wedge(struct usb_ep *ep) 2251 { 2252 struct dwc3_ep *dep = to_dwc3_ep(ep); 2253 struct dwc3 *dwc = dep->dwc; 2254 unsigned long flags; 2255 int ret; 2256 2257 spin_lock_irqsave(&dwc->lock, flags); 2258 dep->flags |= DWC3_EP_WEDGE; 2259 2260 if (dep->number == 0 || dep->number == 1) 2261 ret = __dwc3_gadget_ep0_set_halt(ep, 1); 2262 else 2263 ret = __dwc3_gadget_ep_set_halt(dep, 1, false); 2264 spin_unlock_irqrestore(&dwc->lock, flags); 2265 2266 return ret; 2267 } 2268 2269 /* -------------------------------------------------------------------------- */ 2270 2271 static struct usb_endpoint_descriptor dwc3_gadget_ep0_desc = { 2272 .bLength = USB_DT_ENDPOINT_SIZE, 2273 .bDescriptorType = USB_DT_ENDPOINT, 2274 .bmAttributes = USB_ENDPOINT_XFER_CONTROL, 2275 }; 2276 2277 static const struct usb_ep_ops dwc3_gadget_ep0_ops = { 2278 .enable = dwc3_gadget_ep0_enable, 2279 .disable = dwc3_gadget_ep0_disable, 2280 .alloc_request = dwc3_gadget_ep_alloc_request, 2281 .free_request = dwc3_gadget_ep_free_request, 2282 .queue = dwc3_gadget_ep0_queue, 2283 .dequeue = dwc3_gadget_ep_dequeue, 2284 .set_halt = dwc3_gadget_ep0_set_halt, 2285 .set_wedge = dwc3_gadget_ep_set_wedge, 2286 }; 2287 2288 static const struct usb_ep_ops dwc3_gadget_ep_ops = { 2289 .enable = dwc3_gadget_ep_enable, 2290 .disable = dwc3_gadget_ep_disable, 2291 .alloc_request = dwc3_gadget_ep_alloc_request, 2292 .free_request = dwc3_gadget_ep_free_request, 2293 .queue = dwc3_gadget_ep_queue, 2294 .dequeue = dwc3_gadget_ep_dequeue, 2295 .set_halt = dwc3_gadget_ep_set_halt, 2296 .set_wedge = dwc3_gadget_ep_set_wedge, 2297 }; 2298 2299 /* -------------------------------------------------------------------------- */ 2300 2301 static void dwc3_gadget_enable_linksts_evts(struct dwc3 *dwc, bool set) 2302 { 2303 u32 reg; 2304 2305 if (DWC3_VER_IS_PRIOR(DWC3, 250A)) 2306 return; 2307 2308 reg = dwc3_readl(dwc->regs, DWC3_DEVTEN); 2309 if (set) 2310 reg |= DWC3_DEVTEN_ULSTCNGEN; 2311 else 2312 reg &= ~DWC3_DEVTEN_ULSTCNGEN; 2313 2314 dwc3_writel(dwc->regs, DWC3_DEVTEN, reg); 2315 } 2316 2317 static int dwc3_gadget_get_frame(struct usb_gadget *g) 2318 { 2319 struct dwc3 *dwc = gadget_to_dwc(g); 2320 2321 return __dwc3_gadget_get_frame(dwc); 2322 } 2323 2324 static int __dwc3_gadget_wakeup(struct dwc3 *dwc, bool async) 2325 { 2326 int retries; 2327 2328 int ret; 2329 u32 reg; 2330 2331 u8 link_state; 2332 2333 /* 2334 * According to the Databook Remote wakeup request should 2335 * be issued only when the device is in early suspend state. 2336 * 2337 * We can check that via USB Link State bits in DSTS register. 2338 */ 2339 reg = dwc3_readl(dwc->regs, DWC3_DSTS); 2340 2341 link_state = DWC3_DSTS_USBLNKST(reg); 2342 2343 switch (link_state) { 2344 case DWC3_LINK_STATE_RESET: 2345 case DWC3_LINK_STATE_RX_DET: /* in HS, means Early Suspend */ 2346 case DWC3_LINK_STATE_U3: /* in HS, means SUSPEND */ 2347 case DWC3_LINK_STATE_U2: /* in HS, means Sleep (L1) */ 2348 case DWC3_LINK_STATE_U1: 2349 case DWC3_LINK_STATE_RESUME: 2350 break; 2351 default: 2352 return -EINVAL; 2353 } 2354 2355 if (async) 2356 dwc3_gadget_enable_linksts_evts(dwc, true); 2357 2358 ret = dwc3_gadget_set_link_state(dwc, DWC3_LINK_STATE_RECOV); 2359 if (ret < 0) { 2360 dev_err(dwc->dev, "failed to put link in Recovery\n"); 2361 dwc3_gadget_enable_linksts_evts(dwc, false); 2362 return ret; 2363 } 2364 2365 /* Recent versions do this automatically */ 2366 if (DWC3_VER_IS_PRIOR(DWC3, 194A)) { 2367 /* write zeroes to Link Change Request */ 2368 reg = dwc3_readl(dwc->regs, DWC3_DCTL); 2369 reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK; 2370 dwc3_writel(dwc->regs, DWC3_DCTL, reg); 2371 } 2372 2373 /* 2374 * Since link status change events are enabled we will receive 2375 * an U0 event when wakeup is successful. So bail out. 2376 */ 2377 if (async) 2378 return 0; 2379 2380 /* poll until Link State changes to ON */ 2381 retries = 20000; 2382 2383 while (retries--) { 2384 reg = dwc3_readl(dwc->regs, DWC3_DSTS); 2385 2386 /* in HS, means ON */ 2387 if (DWC3_DSTS_USBLNKST(reg) == DWC3_LINK_STATE_U0) 2388 break; 2389 } 2390 2391 if (DWC3_DSTS_USBLNKST(reg) != DWC3_LINK_STATE_U0) { 2392 dev_err(dwc->dev, "failed to send remote wakeup\n"); 2393 return -EINVAL; 2394 } 2395 2396 return 0; 2397 } 2398 2399 static int dwc3_gadget_wakeup(struct usb_gadget *g) 2400 { 2401 struct dwc3 *dwc = gadget_to_dwc(g); 2402 unsigned long flags; 2403 int ret; 2404 2405 if (!dwc->wakeup_configured) { 2406 dev_err(dwc->dev, "remote wakeup not configured\n"); 2407 return -EINVAL; 2408 } 2409 2410 spin_lock_irqsave(&dwc->lock, flags); 2411 if (!dwc->gadget->wakeup_armed) { 2412 dev_err(dwc->dev, "not armed for remote wakeup\n"); 2413 spin_unlock_irqrestore(&dwc->lock, flags); 2414 return -EINVAL; 2415 } 2416 ret = __dwc3_gadget_wakeup(dwc, true); 2417 2418 spin_unlock_irqrestore(&dwc->lock, flags); 2419 2420 return ret; 2421 } 2422 2423 static void dwc3_resume_gadget(struct dwc3 *dwc); 2424 2425 static int dwc3_gadget_func_wakeup(struct usb_gadget *g, int intf_id) 2426 { 2427 struct dwc3 *dwc = gadget_to_dwc(g); 2428 unsigned long flags; 2429 int ret; 2430 int link_state; 2431 2432 if (!dwc->wakeup_configured) { 2433 dev_err(dwc->dev, "remote wakeup not configured\n"); 2434 return -EINVAL; 2435 } 2436 2437 spin_lock_irqsave(&dwc->lock, flags); 2438 /* 2439 * If the link is in U3, signal for remote wakeup and wait for the 2440 * link to transition to U0 before sending device notification. 2441 */ 2442 link_state = dwc3_gadget_get_link_state(dwc); 2443 if (link_state == DWC3_LINK_STATE_U3) { 2444 ret = __dwc3_gadget_wakeup(dwc, false); 2445 if (ret) { 2446 spin_unlock_irqrestore(&dwc->lock, flags); 2447 return -EINVAL; 2448 } 2449 dwc3_resume_gadget(dwc); 2450 dwc->suspended = false; 2451 dwc->link_state = DWC3_LINK_STATE_U0; 2452 } 2453 2454 ret = dwc3_send_gadget_generic_command(dwc, DWC3_DGCMD_DEV_NOTIFICATION, 2455 DWC3_DGCMDPAR_DN_FUNC_WAKE | 2456 DWC3_DGCMDPAR_INTF_SEL(intf_id)); 2457 if (ret) 2458 dev_err(dwc->dev, "function remote wakeup failed, ret:%d\n", ret); 2459 2460 spin_unlock_irqrestore(&dwc->lock, flags); 2461 2462 return ret; 2463 } 2464 2465 static int dwc3_gadget_set_remote_wakeup(struct usb_gadget *g, int set) 2466 { 2467 struct dwc3 *dwc = gadget_to_dwc(g); 2468 unsigned long flags; 2469 2470 spin_lock_irqsave(&dwc->lock, flags); 2471 dwc->wakeup_configured = !!set; 2472 spin_unlock_irqrestore(&dwc->lock, flags); 2473 2474 return 0; 2475 } 2476 2477 static int dwc3_gadget_set_selfpowered(struct usb_gadget *g, 2478 int is_selfpowered) 2479 { 2480 struct dwc3 *dwc = gadget_to_dwc(g); 2481 unsigned long flags; 2482 2483 spin_lock_irqsave(&dwc->lock, flags); 2484 g->is_selfpowered = !!is_selfpowered; 2485 spin_unlock_irqrestore(&dwc->lock, flags); 2486 2487 return 0; 2488 } 2489 2490 static void dwc3_stop_active_transfers(struct dwc3 *dwc) 2491 { 2492 u32 epnum; 2493 2494 for (epnum = 2; epnum < dwc->num_eps; epnum++) { 2495 struct dwc3_ep *dep; 2496 2497 dep = dwc->eps[epnum]; 2498 if (!dep) 2499 continue; 2500 2501 dwc3_remove_requests(dwc, dep, -ESHUTDOWN); 2502 } 2503 } 2504 2505 static void __dwc3_gadget_set_ssp_rate(struct dwc3 *dwc) 2506 { 2507 enum usb_ssp_rate ssp_rate = dwc->gadget_ssp_rate; 2508 u32 reg; 2509 2510 if (ssp_rate == USB_SSP_GEN_UNKNOWN) 2511 ssp_rate = dwc->max_ssp_rate; 2512 2513 reg = dwc3_readl(dwc->regs, DWC3_DCFG); 2514 reg &= ~DWC3_DCFG_SPEED_MASK; 2515 reg &= ~DWC3_DCFG_NUMLANES(~0); 2516 2517 if (ssp_rate == USB_SSP_GEN_1x2) 2518 reg |= DWC3_DCFG_SUPERSPEED; 2519 else if (dwc->max_ssp_rate != USB_SSP_GEN_1x2) 2520 reg |= DWC3_DCFG_SUPERSPEED_PLUS; 2521 2522 if (ssp_rate != USB_SSP_GEN_2x1 && 2523 dwc->max_ssp_rate != USB_SSP_GEN_2x1) 2524 reg |= DWC3_DCFG_NUMLANES(1); 2525 2526 dwc3_writel(dwc->regs, DWC3_DCFG, reg); 2527 } 2528 2529 static void __dwc3_gadget_set_speed(struct dwc3 *dwc) 2530 { 2531 enum usb_device_speed speed; 2532 u32 reg; 2533 2534 speed = dwc->gadget_max_speed; 2535 if (speed == USB_SPEED_UNKNOWN || speed > dwc->maximum_speed) 2536 speed = dwc->maximum_speed; 2537 2538 if (speed == USB_SPEED_SUPER_PLUS && 2539 DWC3_IP_IS(DWC32)) { 2540 __dwc3_gadget_set_ssp_rate(dwc); 2541 return; 2542 } 2543 2544 reg = dwc3_readl(dwc->regs, DWC3_DCFG); 2545 reg &= ~(DWC3_DCFG_SPEED_MASK); 2546 2547 /* 2548 * WORKAROUND: DWC3 revision < 2.20a have an issue 2549 * which would cause metastability state on Run/Stop 2550 * bit if we try to force the IP to USB2-only mode. 2551 * 2552 * Because of that, we cannot configure the IP to any 2553 * speed other than the SuperSpeed 2554 * 2555 * Refers to: 2556 * 2557 * STAR#9000525659: Clock Domain Crossing on DCTL in 2558 * USB 2.0 Mode 2559 */ 2560 if (DWC3_VER_IS_PRIOR(DWC3, 220A) && 2561 !dwc->dis_metastability_quirk) { 2562 reg |= DWC3_DCFG_SUPERSPEED; 2563 } else { 2564 switch (speed) { 2565 case USB_SPEED_FULL: 2566 reg |= DWC3_DCFG_FULLSPEED; 2567 break; 2568 case USB_SPEED_HIGH: 2569 reg |= DWC3_DCFG_HIGHSPEED; 2570 break; 2571 case USB_SPEED_SUPER: 2572 reg |= DWC3_DCFG_SUPERSPEED; 2573 break; 2574 case USB_SPEED_SUPER_PLUS: 2575 if (DWC3_IP_IS(DWC3)) 2576 reg |= DWC3_DCFG_SUPERSPEED; 2577 else 2578 reg |= DWC3_DCFG_SUPERSPEED_PLUS; 2579 break; 2580 default: 2581 dev_err(dwc->dev, "invalid speed (%d)\n", speed); 2582 2583 if (DWC3_IP_IS(DWC3)) 2584 reg |= DWC3_DCFG_SUPERSPEED; 2585 else 2586 reg |= DWC3_DCFG_SUPERSPEED_PLUS; 2587 } 2588 } 2589 2590 if (DWC3_IP_IS(DWC32) && 2591 speed > USB_SPEED_UNKNOWN && 2592 speed < USB_SPEED_SUPER_PLUS) 2593 reg &= ~DWC3_DCFG_NUMLANES(~0); 2594 2595 dwc3_writel(dwc->regs, DWC3_DCFG, reg); 2596 } 2597 2598 static int dwc3_gadget_run_stop(struct dwc3 *dwc, int is_on) 2599 { 2600 u32 reg; 2601 u32 timeout = 2000; 2602 2603 if (pm_runtime_suspended(dwc->dev)) 2604 return 0; 2605 2606 reg = dwc3_readl(dwc->regs, DWC3_DCTL); 2607 if (is_on) { 2608 if (DWC3_VER_IS_WITHIN(DWC3, ANY, 187A)) { 2609 reg &= ~DWC3_DCTL_TRGTULST_MASK; 2610 reg |= DWC3_DCTL_TRGTULST_RX_DET; 2611 } 2612 2613 if (!DWC3_VER_IS_PRIOR(DWC3, 194A)) 2614 reg &= ~DWC3_DCTL_KEEP_CONNECT; 2615 reg |= DWC3_DCTL_RUN_STOP; 2616 2617 __dwc3_gadget_set_speed(dwc); 2618 dwc->pullups_connected = true; 2619 } else { 2620 reg &= ~DWC3_DCTL_RUN_STOP; 2621 2622 dwc->pullups_connected = false; 2623 } 2624 2625 dwc3_gadget_dctl_write_safe(dwc, reg); 2626 2627 do { 2628 usleep_range(1000, 2000); 2629 reg = dwc3_readl(dwc->regs, DWC3_DSTS); 2630 reg &= DWC3_DSTS_DEVCTRLHLT; 2631 } while (--timeout && !(!is_on ^ !reg)); 2632 2633 if (!timeout) 2634 return -ETIMEDOUT; 2635 2636 return 0; 2637 } 2638 2639 static void dwc3_gadget_disable_irq(struct dwc3 *dwc); 2640 static void __dwc3_gadget_stop(struct dwc3 *dwc); 2641 static int __dwc3_gadget_start(struct dwc3 *dwc); 2642 2643 static int dwc3_gadget_soft_disconnect(struct dwc3 *dwc) 2644 { 2645 unsigned long flags; 2646 int ret; 2647 2648 spin_lock_irqsave(&dwc->lock, flags); 2649 if (!dwc->pullups_connected) { 2650 spin_unlock_irqrestore(&dwc->lock, flags); 2651 return 0; 2652 } 2653 2654 dwc->connected = false; 2655 2656 /* 2657 * Attempt to end pending SETUP status phase, and not wait for the 2658 * function to do so. 2659 */ 2660 if (dwc->delayed_status) 2661 dwc3_ep0_send_delayed_status(dwc); 2662 2663 /* 2664 * In the Synopsys DesignWare Cores USB3 Databook Rev. 3.30a 2665 * Section 4.1.8 Table 4-7, it states that for a device-initiated 2666 * disconnect, the SW needs to ensure that it sends "a DEPENDXFER 2667 * command for any active transfers" before clearing the RunStop 2668 * bit. 2669 */ 2670 dwc3_stop_active_transfers(dwc); 2671 spin_unlock_irqrestore(&dwc->lock, flags); 2672 2673 /* 2674 * Per databook, when we want to stop the gadget, if a control transfer 2675 * is still in process, complete it and get the core into setup phase. 2676 * In case the host is unresponsive to a SETUP transaction, forcefully 2677 * stall the transfer, and move back to the SETUP phase, so that any 2678 * pending endxfers can be executed. 2679 */ 2680 if (dwc->ep0state != EP0_SETUP_PHASE) { 2681 reinit_completion(&dwc->ep0_in_setup); 2682 2683 ret = wait_for_completion_timeout(&dwc->ep0_in_setup, 2684 msecs_to_jiffies(DWC3_PULL_UP_TIMEOUT)); 2685 if (ret == 0) { 2686 dev_warn(dwc->dev, "wait for SETUP phase timed out\n"); 2687 spin_lock_irqsave(&dwc->lock, flags); 2688 dwc3_ep0_reset_state(dwc); 2689 spin_unlock_irqrestore(&dwc->lock, flags); 2690 } 2691 } 2692 2693 /* 2694 * Note: if the GEVNTCOUNT indicates events in the event buffer, the 2695 * driver needs to acknowledge them before the controller can halt. 2696 * Simply let the interrupt handler acknowledges and handle the 2697 * remaining event generated by the controller while polling for 2698 * DSTS.DEVCTLHLT. 2699 */ 2700 ret = dwc3_gadget_run_stop(dwc, false); 2701 2702 /* 2703 * Stop the gadget after controller is halted, so that if needed, the 2704 * events to update EP0 state can still occur while the run/stop 2705 * routine polls for the halted state. DEVTEN is cleared as part of 2706 * gadget stop. 2707 */ 2708 spin_lock_irqsave(&dwc->lock, flags); 2709 __dwc3_gadget_stop(dwc); 2710 spin_unlock_irqrestore(&dwc->lock, flags); 2711 2712 return ret; 2713 } 2714 2715 static int dwc3_gadget_soft_connect(struct dwc3 *dwc) 2716 { 2717 int ret; 2718 2719 /* 2720 * In the Synopsys DWC_usb31 1.90a programming guide section 2721 * 4.1.9, it specifies that for a reconnect after a 2722 * device-initiated disconnect requires a core soft reset 2723 * (DCTL.CSftRst) before enabling the run/stop bit. 2724 */ 2725 ret = dwc3_core_soft_reset(dwc); 2726 if (ret) 2727 return ret; 2728 2729 dwc3_event_buffers_setup(dwc); 2730 __dwc3_gadget_start(dwc); 2731 return dwc3_gadget_run_stop(dwc, true); 2732 } 2733 2734 static int dwc3_gadget_pullup(struct usb_gadget *g, int is_on) 2735 { 2736 struct dwc3 *dwc = gadget_to_dwc(g); 2737 int ret; 2738 2739 is_on = !!is_on; 2740 2741 dwc->softconnect = is_on; 2742 2743 /* 2744 * Avoid issuing a runtime resume if the device is already in the 2745 * suspended state during gadget disconnect. DWC3 gadget was already 2746 * halted/stopped during runtime suspend. 2747 */ 2748 if (!is_on) { 2749 pm_runtime_barrier(dwc->dev); 2750 if (pm_runtime_suspended(dwc->dev)) 2751 return 0; 2752 } 2753 2754 /* 2755 * Check the return value for successful resume, or error. For a 2756 * successful resume, the DWC3 runtime PM resume routine will handle 2757 * the run stop sequence, so avoid duplicate operations here. 2758 */ 2759 ret = pm_runtime_get_sync(dwc->dev); 2760 if (!ret || ret < 0) { 2761 pm_runtime_put(dwc->dev); 2762 if (ret < 0) 2763 pm_runtime_set_suspended(dwc->dev); 2764 return ret; 2765 } 2766 2767 if (dwc->pullups_connected == is_on) { 2768 pm_runtime_put(dwc->dev); 2769 return 0; 2770 } 2771 2772 synchronize_irq(dwc->irq_gadget); 2773 2774 if (!is_on) 2775 ret = dwc3_gadget_soft_disconnect(dwc); 2776 else 2777 ret = dwc3_gadget_soft_connect(dwc); 2778 2779 pm_runtime_put(dwc->dev); 2780 2781 return ret; 2782 } 2783 2784 static void dwc3_gadget_enable_irq(struct dwc3 *dwc) 2785 { 2786 u32 reg; 2787 2788 /* Enable all but Start and End of Frame IRQs */ 2789 reg = (DWC3_DEVTEN_EVNTOVERFLOWEN | 2790 DWC3_DEVTEN_CMDCMPLTEN | 2791 DWC3_DEVTEN_ERRTICERREN | 2792 DWC3_DEVTEN_WKUPEVTEN | 2793 DWC3_DEVTEN_CONNECTDONEEN | 2794 DWC3_DEVTEN_USBRSTEN | 2795 DWC3_DEVTEN_DISCONNEVTEN); 2796 2797 if (DWC3_VER_IS_PRIOR(DWC3, 250A)) 2798 reg |= DWC3_DEVTEN_ULSTCNGEN; 2799 2800 /* On 2.30a and above this bit enables U3/L2-L1 Suspend Events */ 2801 if (!DWC3_VER_IS_PRIOR(DWC3, 230A)) 2802 reg |= DWC3_DEVTEN_U3L2L1SUSPEN; 2803 2804 dwc3_writel(dwc->regs, DWC3_DEVTEN, reg); 2805 } 2806 2807 static void dwc3_gadget_disable_irq(struct dwc3 *dwc) 2808 { 2809 /* mask all interrupts */ 2810 dwc3_writel(dwc->regs, DWC3_DEVTEN, 0x00); 2811 } 2812 2813 static irqreturn_t dwc3_interrupt(int irq, void *_dwc); 2814 static irqreturn_t dwc3_thread_interrupt(int irq, void *_dwc); 2815 2816 /** 2817 * dwc3_gadget_setup_nump - calculate and initialize NUMP field of %DWC3_DCFG 2818 * @dwc: pointer to our context structure 2819 * 2820 * The following looks like complex but it's actually very simple. In order to 2821 * calculate the number of packets we can burst at once on OUT transfers, we're 2822 * gonna use RxFIFO size. 2823 * 2824 * To calculate RxFIFO size we need two numbers: 2825 * MDWIDTH = size, in bits, of the internal memory bus 2826 * RAM2_DEPTH = depth, in MDWIDTH, of internal RAM2 (where RxFIFO sits) 2827 * 2828 * Given these two numbers, the formula is simple: 2829 * 2830 * RxFIFO Size = (RAM2_DEPTH * MDWIDTH / 8) - 24 - 16; 2831 * 2832 * 24 bytes is for 3x SETUP packets 2833 * 16 bytes is a clock domain crossing tolerance 2834 * 2835 * Given RxFIFO Size, NUMP = RxFIFOSize / 1024; 2836 */ 2837 static void dwc3_gadget_setup_nump(struct dwc3 *dwc) 2838 { 2839 u32 ram2_depth; 2840 u32 mdwidth; 2841 u32 nump; 2842 u32 reg; 2843 2844 ram2_depth = DWC3_GHWPARAMS7_RAM2_DEPTH(dwc->hwparams.hwparams7); 2845 mdwidth = dwc3_mdwidth(dwc); 2846 2847 nump = ((ram2_depth * mdwidth / 8) - 24 - 16) / 1024; 2848 nump = min_t(u32, nump, 16); 2849 2850 /* update NumP */ 2851 reg = dwc3_readl(dwc->regs, DWC3_DCFG); 2852 reg &= ~DWC3_DCFG_NUMP_MASK; 2853 reg |= nump << DWC3_DCFG_NUMP_SHIFT; 2854 dwc3_writel(dwc->regs, DWC3_DCFG, reg); 2855 } 2856 2857 static int __dwc3_gadget_start(struct dwc3 *dwc) 2858 { 2859 struct dwc3_ep *dep; 2860 int ret = 0; 2861 u32 reg; 2862 2863 /* 2864 * Use IMOD if enabled via dwc->imod_interval. Otherwise, if 2865 * the core supports IMOD, disable it. 2866 */ 2867 if (dwc->imod_interval) { 2868 dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), dwc->imod_interval); 2869 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), DWC3_GEVNTCOUNT_EHB); 2870 } else if (dwc3_has_imod(dwc)) { 2871 dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), 0); 2872 } 2873 2874 /* 2875 * We are telling dwc3 that we want to use DCFG.NUMP as ACK TP's NUMP 2876 * field instead of letting dwc3 itself calculate that automatically. 2877 * 2878 * This way, we maximize the chances that we'll be able to get several 2879 * bursts of data without going through any sort of endpoint throttling. 2880 */ 2881 reg = dwc3_readl(dwc->regs, DWC3_GRXTHRCFG); 2882 if (DWC3_IP_IS(DWC3)) 2883 reg &= ~DWC3_GRXTHRCFG_PKTCNTSEL; 2884 else 2885 reg &= ~DWC31_GRXTHRCFG_PKTCNTSEL; 2886 2887 dwc3_writel(dwc->regs, DWC3_GRXTHRCFG, reg); 2888 2889 dwc3_gadget_setup_nump(dwc); 2890 2891 /* 2892 * Currently the controller handles single stream only. So, Ignore 2893 * Packet Pending bit for stream selection and don't search for another 2894 * stream if the host sends Data Packet with PP=0 (for OUT direction) or 2895 * ACK with NumP=0 and PP=0 (for IN direction). This slightly improves 2896 * the stream performance. 2897 */ 2898 reg = dwc3_readl(dwc->regs, DWC3_DCFG); 2899 reg |= DWC3_DCFG_IGNSTRMPP; 2900 dwc3_writel(dwc->regs, DWC3_DCFG, reg); 2901 2902 /* Enable MST by default if the device is capable of MST */ 2903 if (DWC3_MST_CAPABLE(&dwc->hwparams)) { 2904 reg = dwc3_readl(dwc->regs, DWC3_DCFG1); 2905 reg &= ~DWC3_DCFG1_DIS_MST_ENH; 2906 dwc3_writel(dwc->regs, DWC3_DCFG1, reg); 2907 } 2908 2909 /* Start with SuperSpeed Default */ 2910 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512); 2911 2912 dep = dwc->eps[0]; 2913 dep->flags = 0; 2914 ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_INIT); 2915 if (ret) { 2916 dev_err(dwc->dev, "failed to enable %s\n", dep->name); 2917 goto err0; 2918 } 2919 2920 dep = dwc->eps[1]; 2921 dep->flags = 0; 2922 ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_INIT); 2923 if (ret) { 2924 dev_err(dwc->dev, "failed to enable %s\n", dep->name); 2925 goto err1; 2926 } 2927 2928 /* begin to receive SETUP packets */ 2929 dwc->ep0state = EP0_SETUP_PHASE; 2930 dwc->ep0_bounced = false; 2931 dwc->link_state = DWC3_LINK_STATE_SS_DIS; 2932 dwc->delayed_status = false; 2933 dwc3_ep0_out_start(dwc); 2934 2935 dwc3_gadget_enable_irq(dwc); 2936 dwc3_enable_susphy(dwc, true); 2937 2938 return 0; 2939 2940 err1: 2941 __dwc3_gadget_ep_disable(dwc->eps[0]); 2942 2943 err0: 2944 return ret; 2945 } 2946 2947 static int dwc3_gadget_start(struct usb_gadget *g, 2948 struct usb_gadget_driver *driver) 2949 { 2950 struct dwc3 *dwc = gadget_to_dwc(g); 2951 unsigned long flags; 2952 int ret; 2953 int irq; 2954 2955 irq = dwc->irq_gadget; 2956 ret = request_threaded_irq(irq, dwc3_interrupt, dwc3_thread_interrupt, 2957 IRQF_SHARED, "dwc3", dwc->ev_buf); 2958 if (ret) { 2959 dev_err(dwc->dev, "failed to request irq #%d --> %d\n", 2960 irq, ret); 2961 return ret; 2962 } 2963 2964 spin_lock_irqsave(&dwc->lock, flags); 2965 dwc->gadget_driver = driver; 2966 spin_unlock_irqrestore(&dwc->lock, flags); 2967 2968 if (dwc->sys_wakeup) 2969 device_wakeup_enable(dwc->sysdev); 2970 2971 return 0; 2972 } 2973 2974 static void __dwc3_gadget_stop(struct dwc3 *dwc) 2975 { 2976 dwc3_gadget_disable_irq(dwc); 2977 __dwc3_gadget_ep_disable(dwc->eps[0]); 2978 __dwc3_gadget_ep_disable(dwc->eps[1]); 2979 } 2980 2981 static int dwc3_gadget_stop(struct usb_gadget *g) 2982 { 2983 struct dwc3 *dwc = gadget_to_dwc(g); 2984 unsigned long flags; 2985 2986 if (dwc->sys_wakeup) 2987 device_wakeup_disable(dwc->sysdev); 2988 2989 spin_lock_irqsave(&dwc->lock, flags); 2990 dwc->gadget_driver = NULL; 2991 dwc->max_cfg_eps = 0; 2992 spin_unlock_irqrestore(&dwc->lock, flags); 2993 2994 free_irq(dwc->irq_gadget, dwc->ev_buf); 2995 2996 return 0; 2997 } 2998 2999 static void dwc3_gadget_config_params(struct usb_gadget *g, 3000 struct usb_dcd_config_params *params) 3001 { 3002 struct dwc3 *dwc = gadget_to_dwc(g); 3003 3004 params->besl_baseline = USB_DEFAULT_BESL_UNSPECIFIED; 3005 params->besl_deep = USB_DEFAULT_BESL_UNSPECIFIED; 3006 3007 /* Recommended BESL */ 3008 if (!dwc->dis_enblslpm_quirk) { 3009 /* 3010 * If the recommended BESL baseline is 0 or if the BESL deep is 3011 * less than 2, Microsoft's Windows 10 host usb stack will issue 3012 * a usb reset immediately after it receives the extended BOS 3013 * descriptor and the enumeration will fail. To maintain 3014 * compatibility with the Windows' usb stack, let's set the 3015 * recommended BESL baseline to 1 and clamp the BESL deep to be 3016 * within 2 to 15. 3017 */ 3018 params->besl_baseline = 1; 3019 if (dwc->is_utmi_l1_suspend) 3020 params->besl_deep = 3021 clamp_t(u8, dwc->hird_threshold, 2, 15); 3022 } 3023 3024 /* U1 Device exit Latency */ 3025 if (dwc->dis_u1_entry_quirk) 3026 params->bU1devExitLat = 0; 3027 else 3028 params->bU1devExitLat = DWC3_DEFAULT_U1_DEV_EXIT_LAT; 3029 3030 /* U2 Device exit Latency */ 3031 if (dwc->dis_u2_entry_quirk) 3032 params->bU2DevExitLat = 0; 3033 else 3034 params->bU2DevExitLat = 3035 cpu_to_le16(DWC3_DEFAULT_U2_DEV_EXIT_LAT); 3036 } 3037 3038 static void dwc3_gadget_set_speed(struct usb_gadget *g, 3039 enum usb_device_speed speed) 3040 { 3041 struct dwc3 *dwc = gadget_to_dwc(g); 3042 unsigned long flags; 3043 3044 spin_lock_irqsave(&dwc->lock, flags); 3045 dwc->gadget_max_speed = speed; 3046 spin_unlock_irqrestore(&dwc->lock, flags); 3047 } 3048 3049 static void dwc3_gadget_set_ssp_rate(struct usb_gadget *g, 3050 enum usb_ssp_rate rate) 3051 { 3052 struct dwc3 *dwc = gadget_to_dwc(g); 3053 unsigned long flags; 3054 3055 spin_lock_irqsave(&dwc->lock, flags); 3056 dwc->gadget_max_speed = USB_SPEED_SUPER_PLUS; 3057 dwc->gadget_ssp_rate = rate; 3058 spin_unlock_irqrestore(&dwc->lock, flags); 3059 } 3060 3061 static int dwc3_gadget_vbus_draw(struct usb_gadget *g, unsigned int mA) 3062 { 3063 struct dwc3 *dwc = gadget_to_dwc(g); 3064 union power_supply_propval val = {0}; 3065 int ret; 3066 3067 if (dwc->usb2_phy) 3068 return usb_phy_set_power(dwc->usb2_phy, mA); 3069 3070 if (!dwc->usb_psy) 3071 return -EOPNOTSUPP; 3072 3073 val.intval = 1000 * mA; 3074 ret = power_supply_set_property(dwc->usb_psy, POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT, &val); 3075 3076 return ret; 3077 } 3078 3079 /** 3080 * dwc3_gadget_check_config - ensure dwc3 can support the USB configuration 3081 * @g: pointer to the USB gadget 3082 * 3083 * Used to record the maximum number of endpoints being used in a USB composite 3084 * device. (across all configurations) This is to be used in the calculation 3085 * of the TXFIFO sizes when resizing internal memory for individual endpoints. 3086 * It will help ensured that the resizing logic reserves enough space for at 3087 * least one max packet. 3088 */ 3089 static int dwc3_gadget_check_config(struct usb_gadget *g) 3090 { 3091 struct dwc3 *dwc = gadget_to_dwc(g); 3092 struct usb_ep *ep; 3093 int fifo_size = 0; 3094 int ram1_depth; 3095 int ep_num = 0; 3096 3097 if (!dwc->do_fifo_resize) 3098 return 0; 3099 3100 list_for_each_entry(ep, &g->ep_list, ep_list) { 3101 /* Only interested in the IN endpoints */ 3102 if (ep->claimed && (ep->address & USB_DIR_IN)) 3103 ep_num++; 3104 } 3105 3106 if (ep_num <= dwc->max_cfg_eps) 3107 return 0; 3108 3109 /* Update the max number of eps in the composition */ 3110 dwc->max_cfg_eps = ep_num; 3111 3112 fifo_size = dwc3_gadget_calc_tx_fifo_size(dwc, dwc->max_cfg_eps); 3113 /* Based on the equation, increment by one for every ep */ 3114 fifo_size += dwc->max_cfg_eps; 3115 3116 /* Check if we can fit a single fifo per endpoint */ 3117 ram1_depth = DWC3_RAM1_DEPTH(dwc->hwparams.hwparams7); 3118 if (fifo_size > ram1_depth) 3119 return -ENOMEM; 3120 3121 return 0; 3122 } 3123 3124 static void dwc3_gadget_async_callbacks(struct usb_gadget *g, bool enable) 3125 { 3126 struct dwc3 *dwc = gadget_to_dwc(g); 3127 unsigned long flags; 3128 3129 spin_lock_irqsave(&dwc->lock, flags); 3130 dwc->async_callbacks = enable; 3131 spin_unlock_irqrestore(&dwc->lock, flags); 3132 } 3133 3134 static const struct usb_gadget_ops dwc3_gadget_ops = { 3135 .get_frame = dwc3_gadget_get_frame, 3136 .wakeup = dwc3_gadget_wakeup, 3137 .func_wakeup = dwc3_gadget_func_wakeup, 3138 .set_remote_wakeup = dwc3_gadget_set_remote_wakeup, 3139 .set_selfpowered = dwc3_gadget_set_selfpowered, 3140 .pullup = dwc3_gadget_pullup, 3141 .udc_start = dwc3_gadget_start, 3142 .udc_stop = dwc3_gadget_stop, 3143 .udc_set_speed = dwc3_gadget_set_speed, 3144 .udc_set_ssp_rate = dwc3_gadget_set_ssp_rate, 3145 .get_config_params = dwc3_gadget_config_params, 3146 .vbus_draw = dwc3_gadget_vbus_draw, 3147 .check_config = dwc3_gadget_check_config, 3148 .udc_async_callbacks = dwc3_gadget_async_callbacks, 3149 }; 3150 3151 /* -------------------------------------------------------------------------- */ 3152 3153 static int dwc3_gadget_init_control_endpoint(struct dwc3_ep *dep) 3154 { 3155 struct dwc3 *dwc = dep->dwc; 3156 3157 usb_ep_set_maxpacket_limit(&dep->endpoint, 512); 3158 dep->endpoint.maxburst = 1; 3159 dep->endpoint.ops = &dwc3_gadget_ep0_ops; 3160 if (!dep->direction) 3161 dwc->gadget->ep0 = &dep->endpoint; 3162 3163 dep->endpoint.caps.type_control = true; 3164 3165 return 0; 3166 } 3167 3168 static int dwc3_gadget_init_in_endpoint(struct dwc3_ep *dep) 3169 { 3170 struct dwc3 *dwc = dep->dwc; 3171 u32 mdwidth; 3172 int size; 3173 int maxpacket; 3174 3175 mdwidth = dwc3_mdwidth(dwc); 3176 3177 /* MDWIDTH is represented in bits, we need it in bytes */ 3178 mdwidth /= 8; 3179 3180 size = dwc3_readl(dwc->regs, DWC3_GTXFIFOSIZ(dep->number >> 1)); 3181 if (DWC3_IP_IS(DWC3)) 3182 size = DWC3_GTXFIFOSIZ_TXFDEP(size); 3183 else 3184 size = DWC31_GTXFIFOSIZ_TXFDEP(size); 3185 3186 /* 3187 * maxpacket size is determined as part of the following, after assuming 3188 * a mult value of one maxpacket: 3189 * DWC3 revision 280A and prior: 3190 * fifo_size = mult * (max_packet / mdwidth) + 1; 3191 * maxpacket = mdwidth * (fifo_size - 1); 3192 * 3193 * DWC3 revision 290A and onwards: 3194 * fifo_size = mult * ((max_packet + mdwidth)/mdwidth + 1) + 1 3195 * maxpacket = mdwidth * ((fifo_size - 1) - 1) - mdwidth; 3196 */ 3197 if (DWC3_VER_IS_PRIOR(DWC3, 290A)) 3198 maxpacket = mdwidth * (size - 1); 3199 else 3200 maxpacket = mdwidth * ((size - 1) - 1) - mdwidth; 3201 3202 /* Functionally, space for one max packet is sufficient */ 3203 size = min_t(int, maxpacket, 1024); 3204 usb_ep_set_maxpacket_limit(&dep->endpoint, size); 3205 3206 dep->endpoint.max_streams = 16; 3207 dep->endpoint.ops = &dwc3_gadget_ep_ops; 3208 list_add_tail(&dep->endpoint.ep_list, 3209 &dwc->gadget->ep_list); 3210 dep->endpoint.caps.type_iso = true; 3211 dep->endpoint.caps.type_bulk = true; 3212 dep->endpoint.caps.type_int = true; 3213 3214 return dwc3_alloc_trb_pool(dep); 3215 } 3216 3217 static int dwc3_gadget_init_out_endpoint(struct dwc3_ep *dep) 3218 { 3219 struct dwc3 *dwc = dep->dwc; 3220 u32 mdwidth; 3221 int size; 3222 3223 mdwidth = dwc3_mdwidth(dwc); 3224 3225 /* MDWIDTH is represented in bits, convert to bytes */ 3226 mdwidth /= 8; 3227 3228 /* All OUT endpoints share a single RxFIFO space */ 3229 size = dwc3_readl(dwc->regs, DWC3_GRXFIFOSIZ(0)); 3230 if (DWC3_IP_IS(DWC3)) 3231 size = DWC3_GRXFIFOSIZ_RXFDEP(size); 3232 else 3233 size = DWC31_GRXFIFOSIZ_RXFDEP(size); 3234 3235 /* FIFO depth is in MDWDITH bytes */ 3236 size *= mdwidth; 3237 3238 /* 3239 * To meet performance requirement, a minimum recommended RxFIFO size 3240 * is defined as follow: 3241 * RxFIFO size >= (3 x MaxPacketSize) + 3242 * (3 x 8 bytes setup packets size) + (16 bytes clock crossing margin) 3243 * 3244 * Then calculate the max packet limit as below. 3245 */ 3246 size -= (3 * 8) + 16; 3247 if (size < 0) 3248 size = 0; 3249 else 3250 size /= 3; 3251 3252 usb_ep_set_maxpacket_limit(&dep->endpoint, size); 3253 dep->endpoint.max_streams = 16; 3254 dep->endpoint.ops = &dwc3_gadget_ep_ops; 3255 list_add_tail(&dep->endpoint.ep_list, 3256 &dwc->gadget->ep_list); 3257 dep->endpoint.caps.type_iso = true; 3258 dep->endpoint.caps.type_bulk = true; 3259 dep->endpoint.caps.type_int = true; 3260 3261 return dwc3_alloc_trb_pool(dep); 3262 } 3263 3264 static int dwc3_gadget_init_endpoint(struct dwc3 *dwc, u8 epnum) 3265 { 3266 struct dwc3_ep *dep; 3267 bool direction = epnum & 1; 3268 int ret; 3269 u8 num = epnum >> 1; 3270 3271 dep = kzalloc(sizeof(*dep), GFP_KERNEL); 3272 if (!dep) 3273 return -ENOMEM; 3274 3275 dep->dwc = dwc; 3276 dep->number = epnum; 3277 dep->direction = direction; 3278 dep->regs = dwc->regs + DWC3_DEP_BASE(epnum); 3279 dwc->eps[epnum] = dep; 3280 dep->combo_num = 0; 3281 dep->start_cmd_status = 0; 3282 3283 snprintf(dep->name, sizeof(dep->name), "ep%u%s", num, 3284 direction ? "in" : "out"); 3285 3286 dep->endpoint.name = dep->name; 3287 3288 if (!(dep->number > 1)) { 3289 dep->endpoint.desc = &dwc3_gadget_ep0_desc; 3290 dep->endpoint.comp_desc = NULL; 3291 } 3292 3293 if (num == 0) 3294 ret = dwc3_gadget_init_control_endpoint(dep); 3295 else if (direction) 3296 ret = dwc3_gadget_init_in_endpoint(dep); 3297 else 3298 ret = dwc3_gadget_init_out_endpoint(dep); 3299 3300 if (ret) 3301 return ret; 3302 3303 dep->endpoint.caps.dir_in = direction; 3304 dep->endpoint.caps.dir_out = !direction; 3305 3306 INIT_LIST_HEAD(&dep->pending_list); 3307 INIT_LIST_HEAD(&dep->started_list); 3308 INIT_LIST_HEAD(&dep->cancelled_list); 3309 3310 dwc3_debugfs_create_endpoint_dir(dep); 3311 3312 return 0; 3313 } 3314 3315 static int dwc3_gadget_init_endpoints(struct dwc3 *dwc, u8 total) 3316 { 3317 u8 epnum; 3318 3319 INIT_LIST_HEAD(&dwc->gadget->ep_list); 3320 3321 for (epnum = 0; epnum < total; epnum++) { 3322 int ret; 3323 3324 ret = dwc3_gadget_init_endpoint(dwc, epnum); 3325 if (ret) 3326 return ret; 3327 } 3328 3329 return 0; 3330 } 3331 3332 static void dwc3_gadget_free_endpoints(struct dwc3 *dwc) 3333 { 3334 struct dwc3_ep *dep; 3335 u8 epnum; 3336 3337 for (epnum = 0; epnum < DWC3_ENDPOINTS_NUM; epnum++) { 3338 dep = dwc->eps[epnum]; 3339 if (!dep) 3340 continue; 3341 /* 3342 * Physical endpoints 0 and 1 are special; they form the 3343 * bi-directional USB endpoint 0. 3344 * 3345 * For those two physical endpoints, we don't allocate a TRB 3346 * pool nor do we add them the endpoints list. Due to that, we 3347 * shouldn't do these two operations otherwise we would end up 3348 * with all sorts of bugs when removing dwc3.ko. 3349 */ 3350 if (epnum != 0 && epnum != 1) { 3351 dwc3_free_trb_pool(dep); 3352 list_del(&dep->endpoint.ep_list); 3353 } 3354 3355 dwc3_debugfs_remove_endpoint_dir(dep); 3356 kfree(dep); 3357 } 3358 } 3359 3360 /* -------------------------------------------------------------------------- */ 3361 3362 static int dwc3_gadget_ep_reclaim_completed_trb(struct dwc3_ep *dep, 3363 struct dwc3_request *req, struct dwc3_trb *trb, 3364 const struct dwc3_event_depevt *event, int status, int chain) 3365 { 3366 unsigned int count; 3367 3368 dwc3_ep_inc_deq(dep); 3369 3370 trace_dwc3_complete_trb(dep, trb); 3371 req->num_trbs--; 3372 3373 /* 3374 * If we're in the middle of series of chained TRBs and we 3375 * receive a short transfer along the way, DWC3 will skip 3376 * through all TRBs including the last TRB in the chain (the 3377 * where CHN bit is zero. DWC3 will also avoid clearing HWO 3378 * bit and SW has to do it manually. 3379 * 3380 * We're going to do that here to avoid problems of HW trying 3381 * to use bogus TRBs for transfers. 3382 */ 3383 if (chain && (trb->ctrl & DWC3_TRB_CTRL_HWO)) 3384 trb->ctrl &= ~DWC3_TRB_CTRL_HWO; 3385 3386 /* 3387 * For isochronous transfers, the first TRB in a service interval must 3388 * have the Isoc-First type. Track and report its interval frame number. 3389 */ 3390 if (usb_endpoint_xfer_isoc(dep->endpoint.desc) && 3391 (trb->ctrl & DWC3_TRBCTL_ISOCHRONOUS_FIRST)) { 3392 unsigned int frame_number; 3393 3394 frame_number = DWC3_TRB_CTRL_GET_SID_SOFN(trb->ctrl); 3395 frame_number &= ~(dep->interval - 1); 3396 req->request.frame_number = frame_number; 3397 } 3398 3399 /* 3400 * We use bounce buffer for requests that needs extra TRB or OUT ZLP. If 3401 * this TRB points to the bounce buffer address, it's a MPS alignment 3402 * TRB. Don't add it to req->remaining calculation. 3403 */ 3404 if (trb->bpl == lower_32_bits(dep->dwc->bounce_addr) && 3405 trb->bph == upper_32_bits(dep->dwc->bounce_addr)) { 3406 trb->ctrl &= ~DWC3_TRB_CTRL_HWO; 3407 return 1; 3408 } 3409 3410 count = trb->size & DWC3_TRB_SIZE_MASK; 3411 req->remaining += count; 3412 3413 if ((trb->ctrl & DWC3_TRB_CTRL_HWO) && status != -ESHUTDOWN) 3414 return 1; 3415 3416 if (event->status & DEPEVT_STATUS_SHORT && !chain) 3417 return 1; 3418 3419 if ((trb->ctrl & DWC3_TRB_CTRL_ISP_IMI) && 3420 DWC3_TRB_SIZE_TRBSTS(trb->size) == DWC3_TRBSTS_MISSED_ISOC) 3421 return 1; 3422 3423 if ((trb->ctrl & DWC3_TRB_CTRL_IOC) || 3424 (trb->ctrl & DWC3_TRB_CTRL_LST)) 3425 return 1; 3426 3427 return 0; 3428 } 3429 3430 static int dwc3_gadget_ep_reclaim_trb_sg(struct dwc3_ep *dep, 3431 struct dwc3_request *req, const struct dwc3_event_depevt *event, 3432 int status) 3433 { 3434 struct dwc3_trb *trb = &dep->trb_pool[dep->trb_dequeue]; 3435 struct scatterlist *sg = req->sg; 3436 struct scatterlist *s; 3437 unsigned int num_queued = req->num_queued_sgs; 3438 unsigned int i; 3439 int ret = 0; 3440 3441 for_each_sg(sg, s, num_queued, i) { 3442 trb = &dep->trb_pool[dep->trb_dequeue]; 3443 3444 req->sg = sg_next(s); 3445 req->num_queued_sgs--; 3446 3447 ret = dwc3_gadget_ep_reclaim_completed_trb(dep, req, 3448 trb, event, status, true); 3449 if (ret) 3450 break; 3451 } 3452 3453 return ret; 3454 } 3455 3456 static int dwc3_gadget_ep_reclaim_trb_linear(struct dwc3_ep *dep, 3457 struct dwc3_request *req, const struct dwc3_event_depevt *event, 3458 int status) 3459 { 3460 struct dwc3_trb *trb = &dep->trb_pool[dep->trb_dequeue]; 3461 3462 return dwc3_gadget_ep_reclaim_completed_trb(dep, req, trb, 3463 event, status, false); 3464 } 3465 3466 static bool dwc3_gadget_ep_request_completed(struct dwc3_request *req) 3467 { 3468 return req->num_pending_sgs == 0 && req->num_queued_sgs == 0; 3469 } 3470 3471 static int dwc3_gadget_ep_cleanup_completed_request(struct dwc3_ep *dep, 3472 const struct dwc3_event_depevt *event, 3473 struct dwc3_request *req, int status) 3474 { 3475 int request_status; 3476 int ret; 3477 3478 if (req->request.num_mapped_sgs) 3479 ret = dwc3_gadget_ep_reclaim_trb_sg(dep, req, event, 3480 status); 3481 else 3482 ret = dwc3_gadget_ep_reclaim_trb_linear(dep, req, event, 3483 status); 3484 3485 req->request.actual = req->request.length - req->remaining; 3486 3487 if (!dwc3_gadget_ep_request_completed(req)) 3488 goto out; 3489 3490 if (req->needs_extra_trb) { 3491 ret = dwc3_gadget_ep_reclaim_trb_linear(dep, req, event, 3492 status); 3493 req->needs_extra_trb = false; 3494 } 3495 3496 /* 3497 * The event status only reflects the status of the TRB with IOC set. 3498 * For the requests that don't set interrupt on completion, the driver 3499 * needs to check and return the status of the completed TRBs associated 3500 * with the request. Use the status of the last TRB of the request. 3501 */ 3502 if (req->request.no_interrupt) { 3503 struct dwc3_trb *trb; 3504 3505 trb = dwc3_ep_prev_trb(dep, dep->trb_dequeue); 3506 switch (DWC3_TRB_SIZE_TRBSTS(trb->size)) { 3507 case DWC3_TRBSTS_MISSED_ISOC: 3508 /* Isoc endpoint only */ 3509 request_status = -EXDEV; 3510 break; 3511 case DWC3_TRB_STS_XFER_IN_PROG: 3512 /* Applicable when End Transfer with ForceRM=0 */ 3513 case DWC3_TRBSTS_SETUP_PENDING: 3514 /* Control endpoint only */ 3515 case DWC3_TRBSTS_OK: 3516 default: 3517 request_status = 0; 3518 break; 3519 } 3520 } else { 3521 request_status = status; 3522 } 3523 3524 dwc3_gadget_giveback(dep, req, request_status); 3525 3526 out: 3527 return ret; 3528 } 3529 3530 static void dwc3_gadget_ep_cleanup_completed_requests(struct dwc3_ep *dep, 3531 const struct dwc3_event_depevt *event, int status) 3532 { 3533 struct dwc3_request *req; 3534 3535 while (!list_empty(&dep->started_list)) { 3536 int ret; 3537 3538 req = next_request(&dep->started_list); 3539 ret = dwc3_gadget_ep_cleanup_completed_request(dep, event, 3540 req, status); 3541 if (ret) 3542 break; 3543 /* 3544 * The endpoint is disabled, let the dwc3_remove_requests() 3545 * handle the cleanup. 3546 */ 3547 if (!dep->endpoint.desc) 3548 break; 3549 } 3550 } 3551 3552 static bool dwc3_gadget_ep_should_continue(struct dwc3_ep *dep) 3553 { 3554 struct dwc3_request *req; 3555 struct dwc3 *dwc = dep->dwc; 3556 3557 if (!dep->endpoint.desc || !dwc->pullups_connected || 3558 !dwc->connected) 3559 return false; 3560 3561 if (!list_empty(&dep->pending_list)) 3562 return true; 3563 3564 /* 3565 * We only need to check the first entry of the started list. We can 3566 * assume the completed requests are removed from the started list. 3567 */ 3568 req = next_request(&dep->started_list); 3569 if (!req) 3570 return false; 3571 3572 return !dwc3_gadget_ep_request_completed(req); 3573 } 3574 3575 static void dwc3_gadget_endpoint_frame_from_event(struct dwc3_ep *dep, 3576 const struct dwc3_event_depevt *event) 3577 { 3578 dep->frame_number = event->parameters; 3579 } 3580 3581 static bool dwc3_gadget_endpoint_trbs_complete(struct dwc3_ep *dep, 3582 const struct dwc3_event_depevt *event, int status) 3583 { 3584 struct dwc3 *dwc = dep->dwc; 3585 bool no_started_trb = true; 3586 3587 dwc3_gadget_ep_cleanup_completed_requests(dep, event, status); 3588 3589 if (dep->flags & DWC3_EP_END_TRANSFER_PENDING) 3590 goto out; 3591 3592 if (!dep->endpoint.desc) 3593 return no_started_trb; 3594 3595 if (usb_endpoint_xfer_isoc(dep->endpoint.desc) && 3596 list_empty(&dep->started_list) && 3597 (list_empty(&dep->pending_list) || status == -EXDEV)) 3598 dwc3_stop_active_transfer(dep, true, true); 3599 else if (dwc3_gadget_ep_should_continue(dep)) 3600 if (__dwc3_gadget_kick_transfer(dep) == 0) 3601 no_started_trb = false; 3602 3603 out: 3604 /* 3605 * WORKAROUND: This is the 2nd half of U1/U2 -> U0 workaround. 3606 * See dwc3_gadget_linksts_change_interrupt() for 1st half. 3607 */ 3608 if (DWC3_VER_IS_PRIOR(DWC3, 183A)) { 3609 u32 reg; 3610 int i; 3611 3612 for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) { 3613 dep = dwc->eps[i]; 3614 3615 if (!(dep->flags & DWC3_EP_ENABLED)) 3616 continue; 3617 3618 if (!list_empty(&dep->started_list)) 3619 return no_started_trb; 3620 } 3621 3622 reg = dwc3_readl(dwc->regs, DWC3_DCTL); 3623 reg |= dwc->u1u2; 3624 dwc3_writel(dwc->regs, DWC3_DCTL, reg); 3625 3626 dwc->u1u2 = 0; 3627 } 3628 3629 return no_started_trb; 3630 } 3631 3632 static void dwc3_gadget_endpoint_transfer_in_progress(struct dwc3_ep *dep, 3633 const struct dwc3_event_depevt *event) 3634 { 3635 int status = 0; 3636 3637 if (!dep->endpoint.desc) 3638 return; 3639 3640 if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) 3641 dwc3_gadget_endpoint_frame_from_event(dep, event); 3642 3643 if (event->status & DEPEVT_STATUS_BUSERR) 3644 status = -ECONNRESET; 3645 3646 if (event->status & DEPEVT_STATUS_MISSED_ISOC) 3647 status = -EXDEV; 3648 3649 dwc3_gadget_endpoint_trbs_complete(dep, event, status); 3650 } 3651 3652 static void dwc3_gadget_endpoint_transfer_complete(struct dwc3_ep *dep, 3653 const struct dwc3_event_depevt *event) 3654 { 3655 int status = 0; 3656 3657 dep->flags &= ~DWC3_EP_TRANSFER_STARTED; 3658 3659 if (event->status & DEPEVT_STATUS_BUSERR) 3660 status = -ECONNRESET; 3661 3662 if (dwc3_gadget_endpoint_trbs_complete(dep, event, status)) 3663 dep->flags &= ~DWC3_EP_WAIT_TRANSFER_COMPLETE; 3664 } 3665 3666 static void dwc3_gadget_endpoint_transfer_not_ready(struct dwc3_ep *dep, 3667 const struct dwc3_event_depevt *event) 3668 { 3669 dwc3_gadget_endpoint_frame_from_event(dep, event); 3670 3671 /* 3672 * The XferNotReady event is generated only once before the endpoint 3673 * starts. It will be generated again when END_TRANSFER command is 3674 * issued. For some controller versions, the XferNotReady event may be 3675 * generated while the END_TRANSFER command is still in process. Ignore 3676 * it and wait for the next XferNotReady event after the command is 3677 * completed. 3678 */ 3679 if (dep->flags & DWC3_EP_END_TRANSFER_PENDING) 3680 return; 3681 3682 (void) __dwc3_gadget_start_isoc(dep); 3683 } 3684 3685 static void dwc3_gadget_endpoint_command_complete(struct dwc3_ep *dep, 3686 const struct dwc3_event_depevt *event) 3687 { 3688 u8 cmd = DEPEVT_PARAMETER_CMD(event->parameters); 3689 3690 if (cmd != DWC3_DEPCMD_ENDTRANSFER) 3691 return; 3692 3693 /* 3694 * The END_TRANSFER command will cause the controller to generate a 3695 * NoStream Event, and it's not due to the host DP NoStream rejection. 3696 * Ignore the next NoStream event. 3697 */ 3698 if (dep->stream_capable) 3699 dep->flags |= DWC3_EP_IGNORE_NEXT_NOSTREAM; 3700 3701 dep->flags &= ~DWC3_EP_END_TRANSFER_PENDING; 3702 dep->flags &= ~DWC3_EP_TRANSFER_STARTED; 3703 dwc3_gadget_ep_cleanup_cancelled_requests(dep); 3704 3705 if (dep->flags & DWC3_EP_PENDING_CLEAR_STALL) { 3706 struct dwc3 *dwc = dep->dwc; 3707 3708 dep->flags &= ~DWC3_EP_PENDING_CLEAR_STALL; 3709 if (dwc3_send_clear_stall_ep_cmd(dep)) { 3710 struct usb_ep *ep0 = &dwc->eps[0]->endpoint; 3711 3712 dev_err(dwc->dev, "failed to clear STALL on %s\n", dep->name); 3713 if (dwc->delayed_status) 3714 __dwc3_gadget_ep0_set_halt(ep0, 1); 3715 return; 3716 } 3717 3718 dep->flags &= ~(DWC3_EP_STALL | DWC3_EP_WEDGE); 3719 if (dwc->clear_stall_protocol == dep->number) 3720 dwc3_ep0_send_delayed_status(dwc); 3721 } 3722 3723 if ((dep->flags & DWC3_EP_DELAY_START) && 3724 !usb_endpoint_xfer_isoc(dep->endpoint.desc)) 3725 __dwc3_gadget_kick_transfer(dep); 3726 3727 dep->flags &= ~DWC3_EP_DELAY_START; 3728 } 3729 3730 static void dwc3_gadget_endpoint_stream_event(struct dwc3_ep *dep, 3731 const struct dwc3_event_depevt *event) 3732 { 3733 struct dwc3 *dwc = dep->dwc; 3734 3735 if (event->status == DEPEVT_STREAMEVT_FOUND) { 3736 dep->flags |= DWC3_EP_FIRST_STREAM_PRIMED; 3737 goto out; 3738 } 3739 3740 /* Note: NoStream rejection event param value is 0 and not 0xFFFF */ 3741 switch (event->parameters) { 3742 case DEPEVT_STREAM_PRIME: 3743 /* 3744 * If the host can properly transition the endpoint state from 3745 * idle to prime after a NoStream rejection, there's no need to 3746 * force restarting the endpoint to reinitiate the stream. To 3747 * simplify the check, assume the host follows the USB spec if 3748 * it primed the endpoint more than once. 3749 */ 3750 if (dep->flags & DWC3_EP_FORCE_RESTART_STREAM) { 3751 if (dep->flags & DWC3_EP_FIRST_STREAM_PRIMED) 3752 dep->flags &= ~DWC3_EP_FORCE_RESTART_STREAM; 3753 else 3754 dep->flags |= DWC3_EP_FIRST_STREAM_PRIMED; 3755 } 3756 3757 break; 3758 case DEPEVT_STREAM_NOSTREAM: 3759 if ((dep->flags & DWC3_EP_IGNORE_NEXT_NOSTREAM) || 3760 !(dep->flags & DWC3_EP_FORCE_RESTART_STREAM) || 3761 (!DWC3_MST_CAPABLE(&dwc->hwparams) && 3762 !(dep->flags & DWC3_EP_WAIT_TRANSFER_COMPLETE))) 3763 break; 3764 3765 /* 3766 * If the host rejects a stream due to no active stream, by the 3767 * USB and xHCI spec, the endpoint will be put back to idle 3768 * state. When the host is ready (buffer added/updated), it will 3769 * prime the endpoint to inform the usb device controller. This 3770 * triggers the device controller to issue ERDY to restart the 3771 * stream. However, some hosts don't follow this and keep the 3772 * endpoint in the idle state. No prime will come despite host 3773 * streams are updated, and the device controller will not be 3774 * triggered to generate ERDY to move the next stream data. To 3775 * workaround this and maintain compatibility with various 3776 * hosts, force to reinitiate the stream until the host is ready 3777 * instead of waiting for the host to prime the endpoint. 3778 */ 3779 if (DWC3_VER_IS_WITHIN(DWC32, 100A, ANY)) { 3780 unsigned int cmd = DWC3_DGCMD_SET_ENDPOINT_PRIME; 3781 3782 dwc3_send_gadget_generic_command(dwc, cmd, dep->number); 3783 } else { 3784 dep->flags |= DWC3_EP_DELAY_START; 3785 dwc3_stop_active_transfer(dep, true, true); 3786 return; 3787 } 3788 break; 3789 } 3790 3791 out: 3792 dep->flags &= ~DWC3_EP_IGNORE_NEXT_NOSTREAM; 3793 } 3794 3795 static void dwc3_endpoint_interrupt(struct dwc3 *dwc, 3796 const struct dwc3_event_depevt *event) 3797 { 3798 struct dwc3_ep *dep; 3799 u8 epnum = event->endpoint_number; 3800 3801 dep = dwc->eps[epnum]; 3802 3803 if (!(dep->flags & DWC3_EP_ENABLED)) { 3804 if ((epnum > 1) && !(dep->flags & DWC3_EP_TRANSFER_STARTED)) 3805 return; 3806 3807 /* Handle only EPCMDCMPLT when EP disabled */ 3808 if ((event->endpoint_event != DWC3_DEPEVT_EPCMDCMPLT) && 3809 !(epnum <= 1 && event->endpoint_event == DWC3_DEPEVT_XFERCOMPLETE)) 3810 return; 3811 } 3812 3813 if (epnum == 0 || epnum == 1) { 3814 dwc3_ep0_interrupt(dwc, event); 3815 return; 3816 } 3817 3818 switch (event->endpoint_event) { 3819 case DWC3_DEPEVT_XFERINPROGRESS: 3820 dwc3_gadget_endpoint_transfer_in_progress(dep, event); 3821 break; 3822 case DWC3_DEPEVT_XFERNOTREADY: 3823 dwc3_gadget_endpoint_transfer_not_ready(dep, event); 3824 break; 3825 case DWC3_DEPEVT_EPCMDCMPLT: 3826 dwc3_gadget_endpoint_command_complete(dep, event); 3827 break; 3828 case DWC3_DEPEVT_XFERCOMPLETE: 3829 dwc3_gadget_endpoint_transfer_complete(dep, event); 3830 break; 3831 case DWC3_DEPEVT_STREAMEVT: 3832 dwc3_gadget_endpoint_stream_event(dep, event); 3833 break; 3834 case DWC3_DEPEVT_RXTXFIFOEVT: 3835 break; 3836 default: 3837 dev_err(dwc->dev, "unknown endpoint event %d\n", event->endpoint_event); 3838 break; 3839 } 3840 } 3841 3842 static void dwc3_disconnect_gadget(struct dwc3 *dwc) 3843 { 3844 if (dwc->async_callbacks && dwc->gadget_driver->disconnect) { 3845 spin_unlock(&dwc->lock); 3846 dwc->gadget_driver->disconnect(dwc->gadget); 3847 spin_lock(&dwc->lock); 3848 } 3849 } 3850 3851 static void dwc3_suspend_gadget(struct dwc3 *dwc) 3852 { 3853 if (dwc->async_callbacks && dwc->gadget_driver->suspend) { 3854 spin_unlock(&dwc->lock); 3855 dwc->gadget_driver->suspend(dwc->gadget); 3856 spin_lock(&dwc->lock); 3857 } 3858 } 3859 3860 static void dwc3_resume_gadget(struct dwc3 *dwc) 3861 { 3862 if (dwc->async_callbacks && dwc->gadget_driver->resume) { 3863 spin_unlock(&dwc->lock); 3864 dwc->gadget_driver->resume(dwc->gadget); 3865 spin_lock(&dwc->lock); 3866 } 3867 } 3868 3869 static void dwc3_reset_gadget(struct dwc3 *dwc) 3870 { 3871 if (!dwc->gadget_driver) 3872 return; 3873 3874 if (dwc->async_callbacks && dwc->gadget->speed != USB_SPEED_UNKNOWN) { 3875 spin_unlock(&dwc->lock); 3876 usb_gadget_udc_reset(dwc->gadget, dwc->gadget_driver); 3877 spin_lock(&dwc->lock); 3878 } 3879 } 3880 3881 void dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force, 3882 bool interrupt) 3883 { 3884 struct dwc3 *dwc = dep->dwc; 3885 3886 /* 3887 * Only issue End Transfer command to the control endpoint of a started 3888 * Data Phase. Typically we should only do so in error cases such as 3889 * invalid/unexpected direction as described in the control transfer 3890 * flow of the programming guide. 3891 */ 3892 if (dep->number <= 1 && dwc->ep0state != EP0_DATA_PHASE) 3893 return; 3894 3895 if (interrupt && (dep->flags & DWC3_EP_DELAY_STOP)) 3896 return; 3897 3898 if (!(dep->flags & DWC3_EP_TRANSFER_STARTED) || 3899 (dep->flags & DWC3_EP_END_TRANSFER_PENDING)) 3900 return; 3901 3902 /* 3903 * If a Setup packet is received but yet to DMA out, the controller will 3904 * not process the End Transfer command of any endpoint. Polling of its 3905 * DEPCMD.CmdAct may block setting up TRB for Setup packet, causing a 3906 * timeout. Delay issuing the End Transfer command until the Setup TRB is 3907 * prepared. 3908 */ 3909 if (dwc->ep0state != EP0_SETUP_PHASE && !dwc->delayed_status) { 3910 dep->flags |= DWC3_EP_DELAY_STOP; 3911 return; 3912 } 3913 3914 /* 3915 * NOTICE: We are violating what the Databook says about the 3916 * EndTransfer command. Ideally we would _always_ wait for the 3917 * EndTransfer Command Completion IRQ, but that's causing too 3918 * much trouble synchronizing between us and gadget driver. 3919 * 3920 * We have discussed this with the IP Provider and it was 3921 * suggested to giveback all requests here. 3922 * 3923 * Note also that a similar handling was tested by Synopsys 3924 * (thanks a lot Paul) and nothing bad has come out of it. 3925 * In short, what we're doing is issuing EndTransfer with 3926 * CMDIOC bit set and delay kicking transfer until the 3927 * EndTransfer command had completed. 3928 * 3929 * As of IP version 3.10a of the DWC_usb3 IP, the controller 3930 * supports a mode to work around the above limitation. The 3931 * software can poll the CMDACT bit in the DEPCMD register 3932 * after issuing a EndTransfer command. This mode is enabled 3933 * by writing GUCTL2[14]. This polling is already done in the 3934 * dwc3_send_gadget_ep_cmd() function so if the mode is 3935 * enabled, the EndTransfer command will have completed upon 3936 * returning from this function. 3937 * 3938 * This mode is NOT available on the DWC_usb31 IP. In this 3939 * case, if the IOC bit is not set, then delay by 1ms 3940 * after issuing the EndTransfer command. This allows for the 3941 * controller to handle the command completely before DWC3 3942 * remove requests attempts to unmap USB request buffers. 3943 */ 3944 3945 __dwc3_stop_active_transfer(dep, force, interrupt); 3946 } 3947 3948 static void dwc3_clear_stall_all_ep(struct dwc3 *dwc) 3949 { 3950 u32 epnum; 3951 3952 for (epnum = 1; epnum < DWC3_ENDPOINTS_NUM; epnum++) { 3953 struct dwc3_ep *dep; 3954 int ret; 3955 3956 dep = dwc->eps[epnum]; 3957 if (!dep) 3958 continue; 3959 3960 if (!(dep->flags & DWC3_EP_STALL)) 3961 continue; 3962 3963 dep->flags &= ~DWC3_EP_STALL; 3964 3965 ret = dwc3_send_clear_stall_ep_cmd(dep); 3966 WARN_ON_ONCE(ret); 3967 } 3968 } 3969 3970 static void dwc3_gadget_disconnect_interrupt(struct dwc3 *dwc) 3971 { 3972 int reg; 3973 3974 dwc->suspended = false; 3975 3976 dwc3_gadget_set_link_state(dwc, DWC3_LINK_STATE_RX_DET); 3977 3978 reg = dwc3_readl(dwc->regs, DWC3_DCTL); 3979 reg &= ~DWC3_DCTL_INITU1ENA; 3980 reg &= ~DWC3_DCTL_INITU2ENA; 3981 dwc3_gadget_dctl_write_safe(dwc, reg); 3982 3983 dwc->connected = false; 3984 3985 dwc3_disconnect_gadget(dwc); 3986 3987 dwc->gadget->speed = USB_SPEED_UNKNOWN; 3988 dwc->setup_packet_pending = false; 3989 dwc->gadget->wakeup_armed = false; 3990 dwc3_gadget_enable_linksts_evts(dwc, false); 3991 usb_gadget_set_state(dwc->gadget, USB_STATE_NOTATTACHED); 3992 3993 dwc3_ep0_reset_state(dwc); 3994 3995 /* 3996 * Request PM idle to address condition where usage count is 3997 * already decremented to zero, but waiting for the disconnect 3998 * interrupt to set dwc->connected to FALSE. 3999 */ 4000 pm_request_idle(dwc->dev); 4001 } 4002 4003 static void dwc3_gadget_reset_interrupt(struct dwc3 *dwc) 4004 { 4005 u32 reg; 4006 4007 dwc->suspended = false; 4008 4009 /* 4010 * Ideally, dwc3_reset_gadget() would trigger the function 4011 * drivers to stop any active transfers through ep disable. 4012 * However, for functions which defer ep disable, such as mass 4013 * storage, we will need to rely on the call to stop active 4014 * transfers here, and avoid allowing of request queuing. 4015 */ 4016 dwc->connected = false; 4017 4018 /* 4019 * WORKAROUND: DWC3 revisions <1.88a have an issue which 4020 * would cause a missing Disconnect Event if there's a 4021 * pending Setup Packet in the FIFO. 4022 * 4023 * There's no suggested workaround on the official Bug 4024 * report, which states that "unless the driver/application 4025 * is doing any special handling of a disconnect event, 4026 * there is no functional issue". 4027 * 4028 * Unfortunately, it turns out that we _do_ some special 4029 * handling of a disconnect event, namely complete all 4030 * pending transfers, notify gadget driver of the 4031 * disconnection, and so on. 4032 * 4033 * Our suggested workaround is to follow the Disconnect 4034 * Event steps here, instead, based on a setup_packet_pending 4035 * flag. Such flag gets set whenever we have a SETUP_PENDING 4036 * status for EP0 TRBs and gets cleared on XferComplete for the 4037 * same endpoint. 4038 * 4039 * Refers to: 4040 * 4041 * STAR#9000466709: RTL: Device : Disconnect event not 4042 * generated if setup packet pending in FIFO 4043 */ 4044 if (DWC3_VER_IS_PRIOR(DWC3, 188A)) { 4045 if (dwc->setup_packet_pending) 4046 dwc3_gadget_disconnect_interrupt(dwc); 4047 } 4048 4049 dwc3_reset_gadget(dwc); 4050 4051 /* 4052 * From SNPS databook section 8.1.2, the EP0 should be in setup 4053 * phase. So ensure that EP0 is in setup phase by issuing a stall 4054 * and restart if EP0 is not in setup phase. 4055 */ 4056 dwc3_ep0_reset_state(dwc); 4057 4058 /* 4059 * In the Synopsis DesignWare Cores USB3 Databook Rev. 3.30a 4060 * Section 4.1.2 Table 4-2, it states that during a USB reset, the SW 4061 * needs to ensure that it sends "a DEPENDXFER command for any active 4062 * transfers." 4063 */ 4064 dwc3_stop_active_transfers(dwc); 4065 dwc->connected = true; 4066 4067 reg = dwc3_readl(dwc->regs, DWC3_DCTL); 4068 reg &= ~DWC3_DCTL_TSTCTRL_MASK; 4069 dwc3_gadget_dctl_write_safe(dwc, reg); 4070 dwc->test_mode = false; 4071 dwc->gadget->wakeup_armed = false; 4072 dwc3_gadget_enable_linksts_evts(dwc, false); 4073 dwc3_clear_stall_all_ep(dwc); 4074 4075 /* Reset device address to zero */ 4076 reg = dwc3_readl(dwc->regs, DWC3_DCFG); 4077 reg &= ~(DWC3_DCFG_DEVADDR_MASK); 4078 dwc3_writel(dwc->regs, DWC3_DCFG, reg); 4079 } 4080 4081 static void dwc3_gadget_conndone_interrupt(struct dwc3 *dwc) 4082 { 4083 struct dwc3_ep *dep; 4084 int ret; 4085 u32 reg; 4086 u8 lanes = 1; 4087 u8 speed; 4088 4089 if (!dwc->softconnect) 4090 return; 4091 4092 reg = dwc3_readl(dwc->regs, DWC3_DSTS); 4093 speed = reg & DWC3_DSTS_CONNECTSPD; 4094 dwc->speed = speed; 4095 4096 if (DWC3_IP_IS(DWC32)) 4097 lanes = DWC3_DSTS_CONNLANES(reg) + 1; 4098 4099 dwc->gadget->ssp_rate = USB_SSP_GEN_UNKNOWN; 4100 4101 /* 4102 * RAMClkSel is reset to 0 after USB reset, so it must be reprogrammed 4103 * each time on Connect Done. 4104 * 4105 * Currently we always use the reset value. If any platform 4106 * wants to set this to a different value, we need to add a 4107 * setting and update GCTL.RAMCLKSEL here. 4108 */ 4109 4110 switch (speed) { 4111 case DWC3_DSTS_SUPERSPEED_PLUS: 4112 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512); 4113 dwc->gadget->ep0->maxpacket = 512; 4114 dwc->gadget->speed = USB_SPEED_SUPER_PLUS; 4115 4116 if (lanes > 1) 4117 dwc->gadget->ssp_rate = USB_SSP_GEN_2x2; 4118 else 4119 dwc->gadget->ssp_rate = USB_SSP_GEN_2x1; 4120 break; 4121 case DWC3_DSTS_SUPERSPEED: 4122 /* 4123 * WORKAROUND: DWC3 revisions <1.90a have an issue which 4124 * would cause a missing USB3 Reset event. 4125 * 4126 * In such situations, we should force a USB3 Reset 4127 * event by calling our dwc3_gadget_reset_interrupt() 4128 * routine. 4129 * 4130 * Refers to: 4131 * 4132 * STAR#9000483510: RTL: SS : USB3 reset event may 4133 * not be generated always when the link enters poll 4134 */ 4135 if (DWC3_VER_IS_PRIOR(DWC3, 190A)) 4136 dwc3_gadget_reset_interrupt(dwc); 4137 4138 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512); 4139 dwc->gadget->ep0->maxpacket = 512; 4140 dwc->gadget->speed = USB_SPEED_SUPER; 4141 4142 if (lanes > 1) { 4143 dwc->gadget->speed = USB_SPEED_SUPER_PLUS; 4144 dwc->gadget->ssp_rate = USB_SSP_GEN_1x2; 4145 } 4146 break; 4147 case DWC3_DSTS_HIGHSPEED: 4148 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64); 4149 dwc->gadget->ep0->maxpacket = 64; 4150 dwc->gadget->speed = USB_SPEED_HIGH; 4151 break; 4152 case DWC3_DSTS_FULLSPEED: 4153 dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64); 4154 dwc->gadget->ep0->maxpacket = 64; 4155 dwc->gadget->speed = USB_SPEED_FULL; 4156 break; 4157 } 4158 4159 dwc->eps[1]->endpoint.maxpacket = dwc->gadget->ep0->maxpacket; 4160 4161 /* Enable USB2 LPM Capability */ 4162 4163 if (!DWC3_VER_IS_WITHIN(DWC3, ANY, 194A) && 4164 !dwc->usb2_gadget_lpm_disable && 4165 (speed != DWC3_DSTS_SUPERSPEED) && 4166 (speed != DWC3_DSTS_SUPERSPEED_PLUS)) { 4167 reg = dwc3_readl(dwc->regs, DWC3_DCFG); 4168 reg |= DWC3_DCFG_LPM_CAP; 4169 dwc3_writel(dwc->regs, DWC3_DCFG, reg); 4170 4171 reg = dwc3_readl(dwc->regs, DWC3_DCTL); 4172 reg &= ~(DWC3_DCTL_HIRD_THRES_MASK | DWC3_DCTL_L1_HIBER_EN); 4173 4174 reg |= DWC3_DCTL_HIRD_THRES(dwc->hird_threshold | 4175 (dwc->is_utmi_l1_suspend << 4)); 4176 4177 /* 4178 * When dwc3 revisions >= 2.40a, LPM Erratum is enabled and 4179 * DCFG.LPMCap is set, core responses with an ACK and the 4180 * BESL value in the LPM token is less than or equal to LPM 4181 * NYET threshold. 4182 */ 4183 WARN_ONCE(DWC3_VER_IS_PRIOR(DWC3, 240A) && dwc->has_lpm_erratum, 4184 "LPM Erratum not available on dwc3 revisions < 2.40a\n"); 4185 4186 if (dwc->has_lpm_erratum && !DWC3_VER_IS_PRIOR(DWC3, 240A)) 4187 reg |= DWC3_DCTL_NYET_THRES(dwc->lpm_nyet_threshold); 4188 4189 dwc3_gadget_dctl_write_safe(dwc, reg); 4190 } else { 4191 if (dwc->usb2_gadget_lpm_disable) { 4192 reg = dwc3_readl(dwc->regs, DWC3_DCFG); 4193 reg &= ~DWC3_DCFG_LPM_CAP; 4194 dwc3_writel(dwc->regs, DWC3_DCFG, reg); 4195 } 4196 4197 reg = dwc3_readl(dwc->regs, DWC3_DCTL); 4198 reg &= ~DWC3_DCTL_HIRD_THRES_MASK; 4199 dwc3_gadget_dctl_write_safe(dwc, reg); 4200 } 4201 4202 dep = dwc->eps[0]; 4203 ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_MODIFY); 4204 if (ret) { 4205 dev_err(dwc->dev, "failed to enable %s\n", dep->name); 4206 return; 4207 } 4208 4209 dep = dwc->eps[1]; 4210 ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_MODIFY); 4211 if (ret) { 4212 dev_err(dwc->dev, "failed to enable %s\n", dep->name); 4213 return; 4214 } 4215 4216 /* 4217 * Configure PHY via GUSB3PIPECTLn if required. 4218 * 4219 * Update GTXFIFOSIZn 4220 * 4221 * In both cases reset values should be sufficient. 4222 */ 4223 } 4224 4225 static void dwc3_gadget_wakeup_interrupt(struct dwc3 *dwc, unsigned int evtinfo) 4226 { 4227 dwc->suspended = false; 4228 4229 /* 4230 * TODO take core out of low power mode when that's 4231 * implemented. 4232 */ 4233 4234 if (dwc->async_callbacks && dwc->gadget_driver->resume) { 4235 spin_unlock(&dwc->lock); 4236 dwc->gadget_driver->resume(dwc->gadget); 4237 spin_lock(&dwc->lock); 4238 } 4239 4240 dwc->link_state = evtinfo & DWC3_LINK_STATE_MASK; 4241 } 4242 4243 static void dwc3_gadget_linksts_change_interrupt(struct dwc3 *dwc, 4244 unsigned int evtinfo) 4245 { 4246 enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK; 4247 unsigned int pwropt; 4248 4249 /* 4250 * WORKAROUND: DWC3 < 2.50a have an issue when configured without 4251 * Hibernation mode enabled which would show up when device detects 4252 * host-initiated U3 exit. 4253 * 4254 * In that case, device will generate a Link State Change Interrupt 4255 * from U3 to RESUME which is only necessary if Hibernation is 4256 * configured in. 4257 * 4258 * There are no functional changes due to such spurious event and we 4259 * just need to ignore it. 4260 * 4261 * Refers to: 4262 * 4263 * STAR#9000570034 RTL: SS Resume event generated in non-Hibernation 4264 * operational mode 4265 */ 4266 pwropt = DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1); 4267 if (DWC3_VER_IS_PRIOR(DWC3, 250A) && 4268 (pwropt != DWC3_GHWPARAMS1_EN_PWROPT_HIB)) { 4269 if ((dwc->link_state == DWC3_LINK_STATE_U3) && 4270 (next == DWC3_LINK_STATE_RESUME)) { 4271 return; 4272 } 4273 } 4274 4275 /* 4276 * WORKAROUND: DWC3 Revisions <1.83a have an issue which, depending 4277 * on the link partner, the USB session might do multiple entry/exit 4278 * of low power states before a transfer takes place. 4279 * 4280 * Due to this problem, we might experience lower throughput. The 4281 * suggested workaround is to disable DCTL[12:9] bits if we're 4282 * transitioning from U1/U2 to U0 and enable those bits again 4283 * after a transfer completes and there are no pending transfers 4284 * on any of the enabled endpoints. 4285 * 4286 * This is the first half of that workaround. 4287 * 4288 * Refers to: 4289 * 4290 * STAR#9000446952: RTL: Device SS : if U1/U2 ->U0 takes >128us 4291 * core send LGO_Ux entering U0 4292 */ 4293 if (DWC3_VER_IS_PRIOR(DWC3, 183A)) { 4294 if (next == DWC3_LINK_STATE_U0) { 4295 u32 u1u2; 4296 u32 reg; 4297 4298 switch (dwc->link_state) { 4299 case DWC3_LINK_STATE_U1: 4300 case DWC3_LINK_STATE_U2: 4301 reg = dwc3_readl(dwc->regs, DWC3_DCTL); 4302 u1u2 = reg & (DWC3_DCTL_INITU2ENA 4303 | DWC3_DCTL_ACCEPTU2ENA 4304 | DWC3_DCTL_INITU1ENA 4305 | DWC3_DCTL_ACCEPTU1ENA); 4306 4307 if (!dwc->u1u2) 4308 dwc->u1u2 = reg & u1u2; 4309 4310 reg &= ~u1u2; 4311 4312 dwc3_gadget_dctl_write_safe(dwc, reg); 4313 break; 4314 default: 4315 /* do nothing */ 4316 break; 4317 } 4318 } 4319 } 4320 4321 switch (next) { 4322 case DWC3_LINK_STATE_U0: 4323 if (dwc->gadget->wakeup_armed) { 4324 dwc3_gadget_enable_linksts_evts(dwc, false); 4325 dwc3_resume_gadget(dwc); 4326 dwc->suspended = false; 4327 } 4328 break; 4329 case DWC3_LINK_STATE_U1: 4330 if (dwc->speed == USB_SPEED_SUPER) 4331 dwc3_suspend_gadget(dwc); 4332 break; 4333 case DWC3_LINK_STATE_U2: 4334 case DWC3_LINK_STATE_U3: 4335 dwc3_suspend_gadget(dwc); 4336 break; 4337 case DWC3_LINK_STATE_RESUME: 4338 dwc3_resume_gadget(dwc); 4339 break; 4340 default: 4341 /* do nothing */ 4342 break; 4343 } 4344 4345 dwc->link_state = next; 4346 } 4347 4348 static void dwc3_gadget_suspend_interrupt(struct dwc3 *dwc, 4349 unsigned int evtinfo) 4350 { 4351 enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK; 4352 4353 if (!dwc->suspended && next == DWC3_LINK_STATE_U3) { 4354 dwc->suspended = true; 4355 dwc3_suspend_gadget(dwc); 4356 } 4357 4358 dwc->link_state = next; 4359 } 4360 4361 static void dwc3_gadget_interrupt(struct dwc3 *dwc, 4362 const struct dwc3_event_devt *event) 4363 { 4364 switch (event->type) { 4365 case DWC3_DEVICE_EVENT_DISCONNECT: 4366 dwc3_gadget_disconnect_interrupt(dwc); 4367 break; 4368 case DWC3_DEVICE_EVENT_RESET: 4369 dwc3_gadget_reset_interrupt(dwc); 4370 break; 4371 case DWC3_DEVICE_EVENT_CONNECT_DONE: 4372 dwc3_gadget_conndone_interrupt(dwc); 4373 break; 4374 case DWC3_DEVICE_EVENT_WAKEUP: 4375 dwc3_gadget_wakeup_interrupt(dwc, event->event_info); 4376 break; 4377 case DWC3_DEVICE_EVENT_HIBER_REQ: 4378 dev_WARN_ONCE(dwc->dev, true, "unexpected hibernation event\n"); 4379 break; 4380 case DWC3_DEVICE_EVENT_LINK_STATUS_CHANGE: 4381 dwc3_gadget_linksts_change_interrupt(dwc, event->event_info); 4382 break; 4383 case DWC3_DEVICE_EVENT_SUSPEND: 4384 /* It changed to be suspend event for version 2.30a and above */ 4385 if (!DWC3_VER_IS_PRIOR(DWC3, 230A)) 4386 dwc3_gadget_suspend_interrupt(dwc, event->event_info); 4387 break; 4388 case DWC3_DEVICE_EVENT_SOF: 4389 case DWC3_DEVICE_EVENT_ERRATIC_ERROR: 4390 case DWC3_DEVICE_EVENT_CMD_CMPL: 4391 case DWC3_DEVICE_EVENT_OVERFLOW: 4392 break; 4393 default: 4394 dev_WARN(dwc->dev, "UNKNOWN IRQ %d\n", event->type); 4395 } 4396 } 4397 4398 static void dwc3_process_event_entry(struct dwc3 *dwc, 4399 const union dwc3_event *event) 4400 { 4401 trace_dwc3_event(event->raw, dwc); 4402 4403 if (!event->type.is_devspec) 4404 dwc3_endpoint_interrupt(dwc, &event->depevt); 4405 else if (event->type.type == DWC3_EVENT_TYPE_DEV) 4406 dwc3_gadget_interrupt(dwc, &event->devt); 4407 else 4408 dev_err(dwc->dev, "UNKNOWN IRQ type %d\n", event->raw); 4409 } 4410 4411 static irqreturn_t dwc3_process_event_buf(struct dwc3_event_buffer *evt) 4412 { 4413 struct dwc3 *dwc = evt->dwc; 4414 irqreturn_t ret = IRQ_NONE; 4415 int left; 4416 4417 left = evt->count; 4418 4419 if (!(evt->flags & DWC3_EVENT_PENDING)) 4420 return IRQ_NONE; 4421 4422 while (left > 0) { 4423 union dwc3_event event; 4424 4425 event.raw = *(u32 *) (evt->cache + evt->lpos); 4426 4427 dwc3_process_event_entry(dwc, &event); 4428 4429 /* 4430 * FIXME we wrap around correctly to the next entry as 4431 * almost all entries are 4 bytes in size. There is one 4432 * entry which has 12 bytes which is a regular entry 4433 * followed by 8 bytes data. ATM I don't know how 4434 * things are organized if we get next to the a 4435 * boundary so I worry about that once we try to handle 4436 * that. 4437 */ 4438 evt->lpos = (evt->lpos + 4) % evt->length; 4439 left -= 4; 4440 } 4441 4442 evt->count = 0; 4443 ret = IRQ_HANDLED; 4444 4445 /* Unmask interrupt */ 4446 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), 4447 DWC3_GEVNTSIZ_SIZE(evt->length)); 4448 4449 if (dwc->imod_interval) { 4450 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), DWC3_GEVNTCOUNT_EHB); 4451 dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), dwc->imod_interval); 4452 } 4453 4454 /* Keep the clearing of DWC3_EVENT_PENDING at the end */ 4455 evt->flags &= ~DWC3_EVENT_PENDING; 4456 4457 return ret; 4458 } 4459 4460 static irqreturn_t dwc3_thread_interrupt(int irq, void *_evt) 4461 { 4462 struct dwc3_event_buffer *evt = _evt; 4463 struct dwc3 *dwc = evt->dwc; 4464 unsigned long flags; 4465 irqreturn_t ret = IRQ_NONE; 4466 4467 local_bh_disable(); 4468 spin_lock_irqsave(&dwc->lock, flags); 4469 ret = dwc3_process_event_buf(evt); 4470 spin_unlock_irqrestore(&dwc->lock, flags); 4471 local_bh_enable(); 4472 4473 return ret; 4474 } 4475 4476 static irqreturn_t dwc3_check_event_buf(struct dwc3_event_buffer *evt) 4477 { 4478 struct dwc3 *dwc = evt->dwc; 4479 u32 amount; 4480 u32 count; 4481 4482 if (pm_runtime_suspended(dwc->dev)) { 4483 dwc->pending_events = true; 4484 /* 4485 * Trigger runtime resume. The get() function will be balanced 4486 * after processing the pending events in dwc3_process_pending 4487 * events(). 4488 */ 4489 pm_runtime_get(dwc->dev); 4490 disable_irq_nosync(dwc->irq_gadget); 4491 return IRQ_HANDLED; 4492 } 4493 4494 /* 4495 * With PCIe legacy interrupt, test shows that top-half irq handler can 4496 * be called again after HW interrupt deassertion. Check if bottom-half 4497 * irq event handler completes before caching new event to prevent 4498 * losing events. 4499 */ 4500 if (evt->flags & DWC3_EVENT_PENDING) 4501 return IRQ_HANDLED; 4502 4503 count = dwc3_readl(dwc->regs, DWC3_GEVNTCOUNT(0)); 4504 count &= DWC3_GEVNTCOUNT_MASK; 4505 if (!count) 4506 return IRQ_NONE; 4507 4508 evt->count = count; 4509 evt->flags |= DWC3_EVENT_PENDING; 4510 4511 /* Mask interrupt */ 4512 dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), 4513 DWC3_GEVNTSIZ_INTMASK | DWC3_GEVNTSIZ_SIZE(evt->length)); 4514 4515 amount = min(count, evt->length - evt->lpos); 4516 memcpy(evt->cache + evt->lpos, evt->buf + evt->lpos, amount); 4517 4518 if (amount < count) 4519 memcpy(evt->cache, evt->buf, count - amount); 4520 4521 dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), count); 4522 4523 return IRQ_WAKE_THREAD; 4524 } 4525 4526 static irqreturn_t dwc3_interrupt(int irq, void *_evt) 4527 { 4528 struct dwc3_event_buffer *evt = _evt; 4529 4530 return dwc3_check_event_buf(evt); 4531 } 4532 4533 static int dwc3_gadget_get_irq(struct dwc3 *dwc) 4534 { 4535 struct platform_device *dwc3_pdev = to_platform_device(dwc->dev); 4536 int irq; 4537 4538 irq = platform_get_irq_byname_optional(dwc3_pdev, "peripheral"); 4539 if (irq > 0) 4540 goto out; 4541 4542 if (irq == -EPROBE_DEFER) 4543 goto out; 4544 4545 irq = platform_get_irq_byname_optional(dwc3_pdev, "dwc_usb3"); 4546 if (irq > 0) 4547 goto out; 4548 4549 if (irq == -EPROBE_DEFER) 4550 goto out; 4551 4552 irq = platform_get_irq(dwc3_pdev, 0); 4553 4554 out: 4555 return irq; 4556 } 4557 4558 static void dwc_gadget_release(struct device *dev) 4559 { 4560 struct usb_gadget *gadget = container_of(dev, struct usb_gadget, dev); 4561 4562 kfree(gadget); 4563 } 4564 4565 /** 4566 * dwc3_gadget_init - initializes gadget related registers 4567 * @dwc: pointer to our controller context structure 4568 * 4569 * Returns 0 on success otherwise negative errno. 4570 */ 4571 int dwc3_gadget_init(struct dwc3 *dwc) 4572 { 4573 int ret; 4574 int irq; 4575 struct device *dev; 4576 4577 irq = dwc3_gadget_get_irq(dwc); 4578 if (irq < 0) { 4579 ret = irq; 4580 goto err0; 4581 } 4582 4583 dwc->irq_gadget = irq; 4584 4585 dwc->ep0_trb = dma_alloc_coherent(dwc->sysdev, 4586 sizeof(*dwc->ep0_trb) * 2, 4587 &dwc->ep0_trb_addr, GFP_KERNEL); 4588 if (!dwc->ep0_trb) { 4589 dev_err(dwc->dev, "failed to allocate ep0 trb\n"); 4590 ret = -ENOMEM; 4591 goto err0; 4592 } 4593 4594 dwc->setup_buf = kzalloc(DWC3_EP0_SETUP_SIZE, GFP_KERNEL); 4595 if (!dwc->setup_buf) { 4596 ret = -ENOMEM; 4597 goto err1; 4598 } 4599 4600 dwc->bounce = dma_alloc_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE, 4601 &dwc->bounce_addr, GFP_KERNEL); 4602 if (!dwc->bounce) { 4603 ret = -ENOMEM; 4604 goto err2; 4605 } 4606 4607 init_completion(&dwc->ep0_in_setup); 4608 dwc->gadget = kzalloc(sizeof(struct usb_gadget), GFP_KERNEL); 4609 if (!dwc->gadget) { 4610 ret = -ENOMEM; 4611 goto err3; 4612 } 4613 4614 4615 usb_initialize_gadget(dwc->dev, dwc->gadget, dwc_gadget_release); 4616 dev = &dwc->gadget->dev; 4617 dev->platform_data = dwc; 4618 dwc->gadget->ops = &dwc3_gadget_ops; 4619 dwc->gadget->speed = USB_SPEED_UNKNOWN; 4620 dwc->gadget->ssp_rate = USB_SSP_GEN_UNKNOWN; 4621 dwc->gadget->sg_supported = true; 4622 dwc->gadget->name = "dwc3-gadget"; 4623 dwc->gadget->lpm_capable = !dwc->usb2_gadget_lpm_disable; 4624 dwc->gadget->wakeup_capable = true; 4625 4626 /* 4627 * FIXME We might be setting max_speed to <SUPER, however versions 4628 * <2.20a of dwc3 have an issue with metastability (documented 4629 * elsewhere in this driver) which tells us we can't set max speed to 4630 * anything lower than SUPER. 4631 * 4632 * Because gadget.max_speed is only used by composite.c and function 4633 * drivers (i.e. it won't go into dwc3's registers) we are allowing this 4634 * to happen so we avoid sending SuperSpeed Capability descriptor 4635 * together with our BOS descriptor as that could confuse host into 4636 * thinking we can handle super speed. 4637 * 4638 * Note that, in fact, we won't even support GetBOS requests when speed 4639 * is less than super speed because we don't have means, yet, to tell 4640 * composite.c that we are USB 2.0 + LPM ECN. 4641 */ 4642 if (DWC3_VER_IS_PRIOR(DWC3, 220A) && 4643 !dwc->dis_metastability_quirk) 4644 dev_info(dwc->dev, "changing max_speed on rev %08x\n", 4645 dwc->revision); 4646 4647 dwc->gadget->max_speed = dwc->maximum_speed; 4648 dwc->gadget->max_ssp_rate = dwc->max_ssp_rate; 4649 4650 /* 4651 * REVISIT: Here we should clear all pending IRQs to be 4652 * sure we're starting from a well known location. 4653 */ 4654 4655 ret = dwc3_gadget_init_endpoints(dwc, dwc->num_eps); 4656 if (ret) 4657 goto err4; 4658 4659 ret = usb_add_gadget(dwc->gadget); 4660 if (ret) { 4661 dev_err(dwc->dev, "failed to add gadget\n"); 4662 goto err5; 4663 } 4664 4665 if (DWC3_IP_IS(DWC32) && dwc->maximum_speed == USB_SPEED_SUPER_PLUS) 4666 dwc3_gadget_set_ssp_rate(dwc->gadget, dwc->max_ssp_rate); 4667 else 4668 dwc3_gadget_set_speed(dwc->gadget, dwc->maximum_speed); 4669 4670 /* No system wakeup if no gadget driver bound */ 4671 if (dwc->sys_wakeup) 4672 device_wakeup_disable(dwc->sysdev); 4673 4674 return 0; 4675 4676 err5: 4677 dwc3_gadget_free_endpoints(dwc); 4678 err4: 4679 usb_put_gadget(dwc->gadget); 4680 dwc->gadget = NULL; 4681 err3: 4682 dma_free_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE, dwc->bounce, 4683 dwc->bounce_addr); 4684 4685 err2: 4686 kfree(dwc->setup_buf); 4687 4688 err1: 4689 dma_free_coherent(dwc->sysdev, sizeof(*dwc->ep0_trb) * 2, 4690 dwc->ep0_trb, dwc->ep0_trb_addr); 4691 4692 err0: 4693 return ret; 4694 } 4695 4696 /* -------------------------------------------------------------------------- */ 4697 4698 void dwc3_gadget_exit(struct dwc3 *dwc) 4699 { 4700 if (!dwc->gadget) 4701 return; 4702 4703 dwc3_enable_susphy(dwc, false); 4704 usb_del_gadget(dwc->gadget); 4705 dwc3_gadget_free_endpoints(dwc); 4706 usb_put_gadget(dwc->gadget); 4707 dma_free_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE, dwc->bounce, 4708 dwc->bounce_addr); 4709 kfree(dwc->setup_buf); 4710 dma_free_coherent(dwc->sysdev, sizeof(*dwc->ep0_trb) * 2, 4711 dwc->ep0_trb, dwc->ep0_trb_addr); 4712 } 4713 4714 int dwc3_gadget_suspend(struct dwc3 *dwc) 4715 { 4716 unsigned long flags; 4717 int ret; 4718 4719 ret = dwc3_gadget_soft_disconnect(dwc); 4720 if (ret) 4721 goto err; 4722 4723 spin_lock_irqsave(&dwc->lock, flags); 4724 if (dwc->gadget_driver) 4725 dwc3_disconnect_gadget(dwc); 4726 spin_unlock_irqrestore(&dwc->lock, flags); 4727 4728 return 0; 4729 4730 err: 4731 /* 4732 * Attempt to reset the controller's state. Likely no 4733 * communication can be established until the host 4734 * performs a port reset. 4735 */ 4736 if (dwc->softconnect) 4737 dwc3_gadget_soft_connect(dwc); 4738 4739 return ret; 4740 } 4741 4742 int dwc3_gadget_resume(struct dwc3 *dwc) 4743 { 4744 if (!dwc->gadget_driver || !dwc->softconnect) 4745 return 0; 4746 4747 return dwc3_gadget_soft_connect(dwc); 4748 } 4749