Greg Kroah-Hartman | 5fd54ac | 2017-11-03 11:28:30 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 2 | /* |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3 | * gadget.c - DesignWare USB3 DRD Controller Gadget Framework Link |
| 4 | * |
Alexander A. Klimov | 10623b8 | 2020-07-11 15:58:04 +0200 | [diff] [blame] | 5 | * Copyright (C) 2010-2011 Texas Instruments Incorporated - https://www.ti.com |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 6 | * |
| 7 | * Authors: Felipe Balbi <balbi@ti.com>, |
| 8 | * Sebastian Andrzej Siewior <bigeasy@linutronix.de> |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 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 | |
Felipe Balbi | 80977dc | 2014-08-19 16:37:22 -0500 | [diff] [blame] | 25 | #include "debug.h" |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 26 | #include "core.h" |
| 27 | #include "gadget.h" |
| 28 | #include "io.h" |
| 29 | |
Felipe Balbi | d537010 | 2018-08-14 10:42:43 +0300 | [diff] [blame] | 30 | #define DWC3_ALIGN_FRAME(d, n) (((d)->frame_number + ((d)->interval * (n))) \ |
Felipe Balbi | f62afb4 | 2018-04-11 10:34:34 +0300 | [diff] [blame] | 31 | & ~((d)->interval - 1)) |
| 32 | |
Felipe Balbi | 04a9bfc | 2012-01-02 18:25:43 +0200 | [diff] [blame] | 33 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 34 | * dwc3_gadget_set_test_mode - enables usb2 test modes |
Felipe Balbi | 04a9bfc | 2012-01-02 18:25:43 +0200 | [diff] [blame] | 35 | * @dwc: pointer to our context structure |
| 36 | * @mode: the mode to set (J, K SE0 NAK, Force Enable) |
| 37 | * |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 38 | * Caller should take care of locking. This function will return 0 on |
| 39 | * success or -EINVAL if wrong Test Selector is passed. |
Felipe Balbi | 04a9bfc | 2012-01-02 18:25:43 +0200 | [diff] [blame] | 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) { |
Greg Kroah-Hartman | 62fb45d | 2020-06-18 16:42:06 +0200 | [diff] [blame] | 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: |
Felipe Balbi | 04a9bfc | 2012-01-02 18:25:43 +0200 | [diff] [blame] | 54 | reg |= mode << 1; |
| 55 | break; |
| 56 | default: |
| 57 | return -EINVAL; |
| 58 | } |
| 59 | |
Thinh Nguyen | 5b73821 | 2019-10-23 19:15:43 -0700 | [diff] [blame] | 60 | dwc3_gadget_dctl_write_safe(dwc, reg); |
Felipe Balbi | 04a9bfc | 2012-01-02 18:25:43 +0200 | [diff] [blame] | 61 | |
| 62 | return 0; |
| 63 | } |
| 64 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 65 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 66 | * dwc3_gadget_get_link_state - gets current state of usb link |
Paul Zimmerman | 911f1f8 | 2012-04-27 13:35:15 +0300 | [diff] [blame] | 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 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 82 | * dwc3_gadget_set_link_state - sets usb link to a particular state |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 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 |
Paul Zimmerman | aee63e3 | 2012-02-24 17:32:15 -0800 | [diff] [blame] | 87 | * return 0 on success or -ETIMEDOUT. |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 88 | */ |
| 89 | int dwc3_gadget_set_link_state(struct dwc3 *dwc, enum dwc3_link_state state) |
| 90 | { |
Paul Zimmerman | aee63e3 | 2012-02-24 17:32:15 -0800 | [diff] [blame] | 91 | int retries = 10000; |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 92 | u32 reg; |
| 93 | |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 94 | /* |
| 95 | * Wait until device controller is ready. Only applies to 1.94a and |
| 96 | * later RTL. |
| 97 | */ |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 98 | if (!DWC3_VER_IS_PRIOR(DWC3, 194A)) { |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 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 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 111 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 112 | reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK; |
| 113 | |
Thinh Nguyen | 2e708fa | 2019-10-23 19:15:55 -0700 | [diff] [blame] | 114 | /* set no action before sending new link state change */ |
| 115 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 116 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 117 | /* set requested state */ |
| 118 | reg |= DWC3_DCTL_ULSTCHNGREQ(state); |
| 119 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 120 | |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 121 | /* |
| 122 | * The following code is racy when called from dwc3_gadget_wakeup, |
| 123 | * and is not needed, at least on newer versions |
| 124 | */ |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 125 | if (!DWC3_VER_IS_PRIOR(DWC3, 194A)) |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 126 | return 0; |
| 127 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 128 | /* wait for a change in DSTS */ |
Paul Zimmerman | aed430e | 2012-04-27 12:52:01 +0300 | [diff] [blame] | 129 | retries = 10000; |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 130 | while (--retries) { |
| 131 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 132 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 133 | if (DWC3_DSTS_USBLNKST(reg) == state) |
| 134 | return 0; |
| 135 | |
Paul Zimmerman | aee63e3 | 2012-02-24 17:32:15 -0800 | [diff] [blame] | 136 | udelay(5); |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 137 | } |
| 138 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 139 | return -ETIMEDOUT; |
| 140 | } |
| 141 | |
John Youn | dca0119 | 2016-05-19 17:26:05 -0700 | [diff] [blame] | 142 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 143 | * dwc3_ep_inc_trb - increment a trb index. |
| 144 | * @index: Pointer to the TRB index to increment. |
John Youn | dca0119 | 2016-05-19 17:26:05 -0700 | [diff] [blame] | 145 | * |
| 146 | * The index should never point to the link TRB. After incrementing, |
| 147 | * if it is point to the link TRB, wrap around to the beginning. The |
| 148 | * link TRB is always at the last TRB entry. |
| 149 | */ |
| 150 | static void dwc3_ep_inc_trb(u8 *index) |
| 151 | { |
| 152 | (*index)++; |
| 153 | if (*index == (DWC3_TRB_NUM - 1)) |
| 154 | *index = 0; |
| 155 | } |
| 156 | |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 157 | /** |
| 158 | * dwc3_ep_inc_enq - increment endpoint's enqueue pointer |
| 159 | * @dep: The endpoint whose enqueue pointer we're incrementing |
| 160 | */ |
Felipe Balbi | ef966b9 | 2016-04-05 13:09:51 +0300 | [diff] [blame] | 161 | static void dwc3_ep_inc_enq(struct dwc3_ep *dep) |
Felipe Balbi | 457e84b | 2012-01-18 18:04:09 +0200 | [diff] [blame] | 162 | { |
John Youn | dca0119 | 2016-05-19 17:26:05 -0700 | [diff] [blame] | 163 | dwc3_ep_inc_trb(&dep->trb_enqueue); |
Felipe Balbi | ef966b9 | 2016-04-05 13:09:51 +0300 | [diff] [blame] | 164 | } |
Felipe Balbi | 457e84b | 2012-01-18 18:04:09 +0200 | [diff] [blame] | 165 | |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 166 | /** |
| 167 | * dwc3_ep_inc_deq - increment endpoint's dequeue pointer |
| 168 | * @dep: The endpoint whose enqueue pointer we're incrementing |
| 169 | */ |
Felipe Balbi | ef966b9 | 2016-04-05 13:09:51 +0300 | [diff] [blame] | 170 | static void dwc3_ep_inc_deq(struct dwc3_ep *dep) |
| 171 | { |
John Youn | dca0119 | 2016-05-19 17:26:05 -0700 | [diff] [blame] | 172 | dwc3_ep_inc_trb(&dep->trb_dequeue); |
Felipe Balbi | 457e84b | 2012-01-18 18:04:09 +0200 | [diff] [blame] | 173 | } |
| 174 | |
Wei Yongjun | 6910251 | 2018-03-29 02:20:10 +0000 | [diff] [blame] | 175 | static void dwc3_gadget_del_and_unmap_request(struct dwc3_ep *dep, |
Felipe Balbi | c91815b | 2018-03-26 13:14:47 +0300 | [diff] [blame] | 176 | struct dwc3_request *req, int status) |
| 177 | { |
| 178 | struct dwc3 *dwc = dep->dwc; |
| 179 | |
Felipe Balbi | c91815b | 2018-03-26 13:14:47 +0300 | [diff] [blame] | 180 | list_del(&req->list); |
| 181 | req->remaining = 0; |
Jack Pham | bd674224 | 2019-01-10 12:39:55 -0800 | [diff] [blame] | 182 | req->needs_extra_trb = false; |
Felipe Balbi | c91815b | 2018-03-26 13:14:47 +0300 | [diff] [blame] | 183 | |
| 184 | if (req->request.status == -EINPROGRESS) |
| 185 | req->request.status = status; |
| 186 | |
| 187 | if (req->trb) |
| 188 | usb_gadget_unmap_request_by_dev(dwc->sysdev, |
| 189 | &req->request, req->direction); |
| 190 | |
| 191 | req->trb = NULL; |
| 192 | trace_dwc3_gadget_giveback(req); |
| 193 | |
| 194 | if (dep->number > 1) |
| 195 | pm_runtime_put(dwc->dev); |
| 196 | } |
| 197 | |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 198 | /** |
| 199 | * dwc3_gadget_giveback - call struct usb_request's ->complete callback |
| 200 | * @dep: The endpoint to whom the request belongs to |
| 201 | * @req: The request we're giving back |
| 202 | * @status: completion code for the request |
| 203 | * |
| 204 | * Must be called with controller's lock held and interrupts disabled. This |
| 205 | * function will unmap @req and call its ->complete() callback to notify upper |
| 206 | * layers that it has completed. |
| 207 | */ |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 208 | void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req, |
| 209 | int status) |
| 210 | { |
| 211 | struct dwc3 *dwc = dep->dwc; |
| 212 | |
Felipe Balbi | c91815b | 2018-03-26 13:14:47 +0300 | [diff] [blame] | 213 | dwc3_gadget_del_and_unmap_request(dep, req, status); |
Felipe Balbi | a3af5e3 | 2019-01-11 12:57:09 +0200 | [diff] [blame] | 214 | req->status = DWC3_REQUEST_STATUS_COMPLETED; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 215 | |
| 216 | spin_unlock(&dwc->lock); |
Michal Sojka | 304f7e5 | 2014-09-24 22:43:19 +0200 | [diff] [blame] | 217 | usb_gadget_giveback_request(&dep->endpoint, &req->request); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 218 | spin_lock(&dwc->lock); |
| 219 | } |
| 220 | |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 221 | /** |
| 222 | * dwc3_send_gadget_generic_command - issue a generic command for the controller |
| 223 | * @dwc: pointer to the controller context |
| 224 | * @cmd: the command to be issued |
| 225 | * @param: command parameter |
| 226 | * |
| 227 | * Caller should take care of locking. Issue @cmd with a given @param to @dwc |
| 228 | * and wait for its completion. |
| 229 | */ |
Felipe Balbi | e319bd6 | 2020-08-13 08:35:38 +0300 | [diff] [blame] | 230 | int dwc3_send_gadget_generic_command(struct dwc3 *dwc, unsigned int cmd, |
| 231 | u32 param) |
Felipe Balbi | b09bb64 | 2012-04-24 16:19:11 +0300 | [diff] [blame] | 232 | { |
| 233 | u32 timeout = 500; |
Felipe Balbi | 71f7e70 | 2016-05-23 14:16:19 +0300 | [diff] [blame] | 234 | int status = 0; |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 235 | int ret = 0; |
Felipe Balbi | b09bb64 | 2012-04-24 16:19:11 +0300 | [diff] [blame] | 236 | u32 reg; |
| 237 | |
| 238 | dwc3_writel(dwc->regs, DWC3_DGCMDPAR, param); |
| 239 | dwc3_writel(dwc->regs, DWC3_DGCMD, cmd | DWC3_DGCMD_CMDACT); |
| 240 | |
| 241 | do { |
| 242 | reg = dwc3_readl(dwc->regs, DWC3_DGCMD); |
| 243 | if (!(reg & DWC3_DGCMD_CMDACT)) { |
Felipe Balbi | 71f7e70 | 2016-05-23 14:16:19 +0300 | [diff] [blame] | 244 | status = DWC3_DGCMD_STATUS(reg); |
| 245 | if (status) |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 246 | ret = -EINVAL; |
| 247 | break; |
Felipe Balbi | b09bb64 | 2012-04-24 16:19:11 +0300 | [diff] [blame] | 248 | } |
Janusz Dziedzic | e3aee48 | 2016-11-09 11:01:33 +0100 | [diff] [blame] | 249 | } while (--timeout); |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 250 | |
| 251 | if (!timeout) { |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 252 | ret = -ETIMEDOUT; |
Felipe Balbi | 71f7e70 | 2016-05-23 14:16:19 +0300 | [diff] [blame] | 253 | status = -ETIMEDOUT; |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 254 | } |
| 255 | |
Felipe Balbi | 71f7e70 | 2016-05-23 14:16:19 +0300 | [diff] [blame] | 256 | trace_dwc3_gadget_generic_cmd(cmd, param, status); |
| 257 | |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 258 | return ret; |
Felipe Balbi | b09bb64 | 2012-04-24 16:19:11 +0300 | [diff] [blame] | 259 | } |
| 260 | |
Felipe Balbi | c36d8e9 | 2016-04-04 12:46:33 +0300 | [diff] [blame] | 261 | static int __dwc3_gadget_wakeup(struct dwc3 *dwc); |
| 262 | |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 263 | /** |
| 264 | * dwc3_send_gadget_ep_cmd - issue an endpoint command |
| 265 | * @dep: the endpoint to which the command is going to be issued |
| 266 | * @cmd: the command to be issued |
| 267 | * @params: parameters to the command |
| 268 | * |
| 269 | * Caller should handle locking. This function will issue @cmd with given |
| 270 | * @params to @dep and wait for its completion. |
| 271 | */ |
Felipe Balbi | e319bd6 | 2020-08-13 08:35:38 +0300 | [diff] [blame] | 272 | int dwc3_send_gadget_ep_cmd(struct dwc3_ep *dep, unsigned int cmd, |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 273 | struct dwc3_gadget_ep_cmd_params *params) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 274 | { |
Felipe Balbi | 8897a76 | 2016-09-22 10:56:08 +0300 | [diff] [blame] | 275 | const struct usb_endpoint_descriptor *desc = dep->endpoint.desc; |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 276 | struct dwc3 *dwc = dep->dwc; |
Yu Chen | 1c0e69a | 2020-05-21 16:46:43 +0800 | [diff] [blame] | 277 | u32 timeout = 5000; |
Thinh Nguyen | 87dd961 | 2018-09-11 12:42:05 -0700 | [diff] [blame] | 278 | u32 saved_config = 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 279 | u32 reg; |
| 280 | |
Felipe Balbi | 0933df1 | 2016-05-23 14:02:33 +0300 | [diff] [blame] | 281 | int cmd_status = 0; |
Felipe Balbi | c0ca324 | 2016-04-04 09:11:51 +0300 | [diff] [blame] | 282 | int ret = -EINVAL; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 283 | |
Felipe Balbi | 2b0f11d | 2016-04-04 09:19:17 +0300 | [diff] [blame] | 284 | /* |
Thinh Nguyen | 87dd961 | 2018-09-11 12:42:05 -0700 | [diff] [blame] | 285 | * When operating in USB 2.0 speeds (HS/FS), if GUSB2PHYCFG.ENBLSLPM or |
| 286 | * GUSB2PHYCFG.SUSPHY is set, it must be cleared before issuing an |
| 287 | * endpoint command. |
Felipe Balbi | 2b0f11d | 2016-04-04 09:19:17 +0300 | [diff] [blame] | 288 | * |
Thinh Nguyen | 87dd961 | 2018-09-11 12:42:05 -0700 | [diff] [blame] | 289 | * Save and clear both GUSB2PHYCFG.ENBLSLPM and GUSB2PHYCFG.SUSPHY |
| 290 | * settings. Restore them after the command is completed. |
| 291 | * |
| 292 | * DWC_usb3 3.30a and DWC_usb31 1.90a programming guide section 3.2.2 |
Felipe Balbi | 2b0f11d | 2016-04-04 09:19:17 +0300 | [diff] [blame] | 293 | */ |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 294 | if (dwc->gadget->speed <= USB_SPEED_HIGH) { |
Felipe Balbi | ab2a92e | 2016-05-17 14:55:58 +0300 | [diff] [blame] | 295 | reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0)); |
| 296 | if (unlikely(reg & DWC3_GUSB2PHYCFG_SUSPHY)) { |
Thinh Nguyen | 87dd961 | 2018-09-11 12:42:05 -0700 | [diff] [blame] | 297 | saved_config |= DWC3_GUSB2PHYCFG_SUSPHY; |
Felipe Balbi | ab2a92e | 2016-05-17 14:55:58 +0300 | [diff] [blame] | 298 | reg &= ~DWC3_GUSB2PHYCFG_SUSPHY; |
Felipe Balbi | ab2a92e | 2016-05-17 14:55:58 +0300 | [diff] [blame] | 299 | } |
Thinh Nguyen | 87dd961 | 2018-09-11 12:42:05 -0700 | [diff] [blame] | 300 | |
| 301 | if (reg & DWC3_GUSB2PHYCFG_ENBLSLPM) { |
| 302 | saved_config |= DWC3_GUSB2PHYCFG_ENBLSLPM; |
| 303 | reg &= ~DWC3_GUSB2PHYCFG_ENBLSLPM; |
| 304 | } |
| 305 | |
| 306 | if (saved_config) |
| 307 | dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg); |
Felipe Balbi | 2b0f11d | 2016-04-04 09:19:17 +0300 | [diff] [blame] | 308 | } |
| 309 | |
Felipe Balbi | 5999914 | 2016-09-22 12:25:28 +0300 | [diff] [blame] | 310 | if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_STARTTRANSFER) { |
Thinh Nguyen | b624b32 | 2021-04-19 19:11:12 -0700 | [diff] [blame] | 311 | int link_state; |
Felipe Balbi | c36d8e9 | 2016-04-04 12:46:33 +0300 | [diff] [blame] | 312 | |
Thinh Nguyen | 140e2df | 2021-10-25 16:35:06 -0700 | [diff] [blame^] | 313 | /* |
| 314 | * Initiate remote wakeup if the link state is in U3 when |
| 315 | * operating in SS/SSP or L1/L2 when operating in HS/FS. If the |
| 316 | * link state is in U1/U2, no remote wakeup is needed. The Start |
| 317 | * Transfer command will initiate the link recovery. |
| 318 | */ |
Thinh Nguyen | b624b32 | 2021-04-19 19:11:12 -0700 | [diff] [blame] | 319 | link_state = dwc3_gadget_get_link_state(dwc); |
Thinh Nguyen | 140e2df | 2021-10-25 16:35:06 -0700 | [diff] [blame^] | 320 | switch (link_state) { |
| 321 | case DWC3_LINK_STATE_U2: |
| 322 | if (dwc->gadget->speed >= USB_SPEED_SUPER) |
| 323 | break; |
| 324 | |
| 325 | fallthrough; |
| 326 | case DWC3_LINK_STATE_U3: |
Felipe Balbi | c36d8e9 | 2016-04-04 12:46:33 +0300 | [diff] [blame] | 327 | ret = __dwc3_gadget_wakeup(dwc); |
| 328 | dev_WARN_ONCE(dwc->dev, ret, "wakeup failed --> %d\n", |
| 329 | ret); |
Thinh Nguyen | 140e2df | 2021-10-25 16:35:06 -0700 | [diff] [blame^] | 330 | break; |
Felipe Balbi | c36d8e9 | 2016-04-04 12:46:33 +0300 | [diff] [blame] | 331 | } |
| 332 | } |
| 333 | |
Felipe Balbi | 2eb8801 | 2016-04-12 16:53:39 +0300 | [diff] [blame] | 334 | dwc3_writel(dep->regs, DWC3_DEPCMDPAR0, params->param0); |
| 335 | dwc3_writel(dep->regs, DWC3_DEPCMDPAR1, params->param1); |
| 336 | dwc3_writel(dep->regs, DWC3_DEPCMDPAR2, params->param2); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 337 | |
Felipe Balbi | 8897a76 | 2016-09-22 10:56:08 +0300 | [diff] [blame] | 338 | /* |
| 339 | * Synopsys Databook 2.60a states in section 6.3.2.5.6 of that if we're |
| 340 | * not relying on XferNotReady, we can make use of a special "No |
| 341 | * Response Update Transfer" command where we should clear both CmdAct |
| 342 | * and CmdIOC bits. |
| 343 | * |
| 344 | * With this, we don't need to wait for command completion and can |
| 345 | * straight away issue further commands to the endpoint. |
| 346 | * |
| 347 | * NOTICE: We're making an assumption that control endpoints will never |
| 348 | * make use of Update Transfer command. This is a safe assumption |
| 349 | * because we can never have more than one request at a time with |
| 350 | * Control Endpoints. If anybody changes that assumption, this chunk |
| 351 | * needs to be updated accordingly. |
| 352 | */ |
| 353 | if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_UPDATETRANSFER && |
| 354 | !usb_endpoint_xfer_isoc(desc)) |
| 355 | cmd &= ~(DWC3_DEPCMD_CMDIOC | DWC3_DEPCMD_CMDACT); |
| 356 | else |
| 357 | cmd |= DWC3_DEPCMD_CMDACT; |
| 358 | |
| 359 | dwc3_writel(dep->regs, DWC3_DEPCMD, cmd); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 360 | do { |
Felipe Balbi | 2eb8801 | 2016-04-12 16:53:39 +0300 | [diff] [blame] | 361 | reg = dwc3_readl(dep->regs, DWC3_DEPCMD); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 362 | if (!(reg & DWC3_DEPCMD_CMDACT)) { |
Felipe Balbi | 0933df1 | 2016-05-23 14:02:33 +0300 | [diff] [blame] | 363 | cmd_status = DWC3_DEPCMD_STATUS(reg); |
Konrad Leszczynski | 7b9cc7a | 2016-02-12 15:21:46 +0000 | [diff] [blame] | 364 | |
Konrad Leszczynski | 7b9cc7a | 2016-02-12 15:21:46 +0000 | [diff] [blame] | 365 | switch (cmd_status) { |
| 366 | case 0: |
| 367 | ret = 0; |
Felipe Balbi | c0ca324 | 2016-04-04 09:11:51 +0300 | [diff] [blame] | 368 | break; |
Konrad Leszczynski | 7b9cc7a | 2016-02-12 15:21:46 +0000 | [diff] [blame] | 369 | case DEPEVT_TRANSFER_NO_RESOURCE: |
Thinh Nguyen | f7ac582e | 2020-03-29 16:13:16 -0700 | [diff] [blame] | 370 | dev_WARN(dwc->dev, "No resource for %s\n", |
| 371 | dep->name); |
Konrad Leszczynski | 7b9cc7a | 2016-02-12 15:21:46 +0000 | [diff] [blame] | 372 | ret = -EINVAL; |
| 373 | break; |
| 374 | case DEPEVT_TRANSFER_BUS_EXPIRY: |
| 375 | /* |
| 376 | * SW issues START TRANSFER command to |
| 377 | * isochronous ep with future frame interval. If |
| 378 | * future interval time has already passed when |
| 379 | * core receives the command, it will respond |
| 380 | * with an error status of 'Bus Expiry'. |
| 381 | * |
| 382 | * Instead of always returning -EINVAL, let's |
| 383 | * give a hint to the gadget driver that this is |
| 384 | * the case by returning -EAGAIN. |
| 385 | */ |
Konrad Leszczynski | 7b9cc7a | 2016-02-12 15:21:46 +0000 | [diff] [blame] | 386 | ret = -EAGAIN; |
| 387 | break; |
| 388 | default: |
| 389 | dev_WARN(dwc->dev, "UNKNOWN cmd status\n"); |
| 390 | } |
| 391 | |
Felipe Balbi | c0ca324 | 2016-04-04 09:11:51 +0300 | [diff] [blame] | 392 | break; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 393 | } |
Felipe Balbi | f6bb225 | 2016-05-23 13:53:34 +0300 | [diff] [blame] | 394 | } while (--timeout); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 395 | |
Felipe Balbi | f6bb225 | 2016-05-23 13:53:34 +0300 | [diff] [blame] | 396 | if (timeout == 0) { |
Felipe Balbi | f6bb225 | 2016-05-23 13:53:34 +0300 | [diff] [blame] | 397 | ret = -ETIMEDOUT; |
Felipe Balbi | 0933df1 | 2016-05-23 14:02:33 +0300 | [diff] [blame] | 398 | cmd_status = -ETIMEDOUT; |
Felipe Balbi | f6bb225 | 2016-05-23 13:53:34 +0300 | [diff] [blame] | 399 | } |
Felipe Balbi | c0ca324 | 2016-04-04 09:11:51 +0300 | [diff] [blame] | 400 | |
Felipe Balbi | 0933df1 | 2016-05-23 14:02:33 +0300 | [diff] [blame] | 401 | trace_dwc3_gadget_ep_cmd(dep, cmd, params, cmd_status); |
| 402 | |
Thinh Nguyen | 9bc3395 | 2020-03-29 16:13:04 -0700 | [diff] [blame] | 403 | if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_STARTTRANSFER) { |
| 404 | if (ret == 0) |
| 405 | dep->flags |= DWC3_EP_TRANSFER_STARTED; |
| 406 | |
| 407 | if (ret != -ETIMEDOUT) |
| 408 | dwc3_gadget_ep_get_transfer_index(dep); |
Felipe Balbi | 6cb2e4e | 2016-10-21 13:07:09 +0300 | [diff] [blame] | 409 | } |
| 410 | |
Thinh Nguyen | 87dd961 | 2018-09-11 12:42:05 -0700 | [diff] [blame] | 411 | if (saved_config) { |
Felipe Balbi | 2b0f11d | 2016-04-04 09:19:17 +0300 | [diff] [blame] | 412 | reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0)); |
Thinh Nguyen | 87dd961 | 2018-09-11 12:42:05 -0700 | [diff] [blame] | 413 | reg |= saved_config; |
Felipe Balbi | 2b0f11d | 2016-04-04 09:19:17 +0300 | [diff] [blame] | 414 | dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg); |
| 415 | } |
| 416 | |
Felipe Balbi | c0ca324 | 2016-04-04 09:11:51 +0300 | [diff] [blame] | 417 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 418 | } |
| 419 | |
John Youn | 50c763f | 2016-05-31 17:49:56 -0700 | [diff] [blame] | 420 | static int dwc3_send_clear_stall_ep_cmd(struct dwc3_ep *dep) |
| 421 | { |
| 422 | struct dwc3 *dwc = dep->dwc; |
| 423 | struct dwc3_gadget_ep_cmd_params params; |
| 424 | u32 cmd = DWC3_DEPCMD_CLEARSTALL; |
| 425 | |
| 426 | /* |
| 427 | * As of core revision 2.60a the recommended programming model |
| 428 | * is to set the ClearPendIN bit when issuing a Clear Stall EP |
| 429 | * command for IN endpoints. This is to prevent an issue where |
| 430 | * some (non-compliant) hosts may not send ACK TPs for pending |
| 431 | * IN transfers due to a mishandled error condition. Synopsys |
| 432 | * STAR 9000614252. |
| 433 | */ |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 434 | if (dep->direction && |
| 435 | !DWC3_VER_IS_PRIOR(DWC3, 260A) && |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 436 | (dwc->gadget->speed >= USB_SPEED_SUPER)) |
John Youn | 50c763f | 2016-05-31 17:49:56 -0700 | [diff] [blame] | 437 | cmd |= DWC3_DEPCMD_CLEARPENDIN; |
| 438 | |
| 439 | memset(¶ms, 0, sizeof(params)); |
| 440 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 441 | return dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); |
John Youn | 50c763f | 2016-05-31 17:49:56 -0700 | [diff] [blame] | 442 | } |
| 443 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 444 | static dma_addr_t dwc3_trb_dma_offset(struct dwc3_ep *dep, |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 445 | struct dwc3_trb *trb) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 446 | { |
Paul Zimmerman | c439ef8 | 2011-09-30 10:58:45 +0300 | [diff] [blame] | 447 | u32 offset = (char *) trb - (char *) dep->trb_pool; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 448 | |
| 449 | return dep->trb_pool_dma + offset; |
| 450 | } |
| 451 | |
| 452 | static int dwc3_alloc_trb_pool(struct dwc3_ep *dep) |
| 453 | { |
| 454 | struct dwc3 *dwc = dep->dwc; |
| 455 | |
| 456 | if (dep->trb_pool) |
| 457 | return 0; |
| 458 | |
Arnd Bergmann | d64ff40 | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 459 | dep->trb_pool = dma_alloc_coherent(dwc->sysdev, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 460 | sizeof(struct dwc3_trb) * DWC3_TRB_NUM, |
| 461 | &dep->trb_pool_dma, GFP_KERNEL); |
| 462 | if (!dep->trb_pool) { |
| 463 | dev_err(dep->dwc->dev, "failed to allocate trb pool for %s\n", |
| 464 | dep->name); |
| 465 | return -ENOMEM; |
| 466 | } |
| 467 | |
| 468 | return 0; |
| 469 | } |
| 470 | |
| 471 | static void dwc3_free_trb_pool(struct dwc3_ep *dep) |
| 472 | { |
| 473 | struct dwc3 *dwc = dep->dwc; |
| 474 | |
Arnd Bergmann | d64ff40 | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 475 | dma_free_coherent(dwc->sysdev, sizeof(struct dwc3_trb) * DWC3_TRB_NUM, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 476 | dep->trb_pool, dep->trb_pool_dma); |
| 477 | |
| 478 | dep->trb_pool = NULL; |
| 479 | dep->trb_pool_dma = 0; |
| 480 | } |
| 481 | |
Felipe Balbi | 20d1d43 | 2018-04-09 12:49:02 +0300 | [diff] [blame] | 482 | static int dwc3_gadget_set_xfer_resource(struct dwc3_ep *dep) |
| 483 | { |
| 484 | struct dwc3_gadget_ep_cmd_params params; |
| 485 | |
| 486 | memset(¶ms, 0x00, sizeof(params)); |
| 487 | |
| 488 | params.param0 = DWC3_DEPXFERCFG_NUM_XFER_RES(1); |
| 489 | |
| 490 | return dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETTRANSFRESOURCE, |
| 491 | ¶ms); |
| 492 | } |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 493 | |
| 494 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 495 | * dwc3_gadget_start_config - configure ep resources |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 496 | * @dep: endpoint that is being enabled |
| 497 | * |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 498 | * Issue a %DWC3_DEPCMD_DEPSTARTCFG command to @dep. After the command's |
| 499 | * completion, it will set Transfer Resource for all available endpoints. |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 500 | * |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 501 | * The assignment of transfer resources cannot perfectly follow the data book |
| 502 | * due to the fact that the controller driver does not have all knowledge of the |
| 503 | * configuration in advance. It is given this information piecemeal by the |
| 504 | * composite gadget framework after every SET_CONFIGURATION and |
| 505 | * SET_INTERFACE. Trying to follow the databook programming model in this |
| 506 | * scenario can cause errors. For two reasons: |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 507 | * |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 508 | * 1) The databook says to do %DWC3_DEPCMD_DEPSTARTCFG for every |
| 509 | * %USB_REQ_SET_CONFIGURATION and %USB_REQ_SET_INTERFACE (8.1.5). This is |
| 510 | * incorrect in the scenario of multiple interfaces. |
| 511 | * |
| 512 | * 2) The databook does not mention doing more %DWC3_DEPCMD_DEPXFERCFG for new |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 513 | * endpoint on alt setting (8.1.6). |
| 514 | * |
| 515 | * The following simplified method is used instead: |
| 516 | * |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 517 | * All hardware endpoints can be assigned a transfer resource and this setting |
| 518 | * will stay persistent until either a core reset or hibernation. So whenever we |
| 519 | * do a %DWC3_DEPCMD_DEPSTARTCFG(0) we can go ahead and do |
| 520 | * %DWC3_DEPCMD_DEPXFERCFG for every hardware endpoint as well. We are |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 521 | * guaranteed that there are as many transfer resources as endpoints. |
| 522 | * |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 523 | * This function is called for each endpoint when it is being enabled but is |
| 524 | * triggered only when called for EP0-out, which always happens first, and which |
| 525 | * should only happen in one of the above conditions. |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 526 | */ |
Felipe Balbi | b07c2db | 2018-04-09 12:46:47 +0300 | [diff] [blame] | 527 | static int dwc3_gadget_start_config(struct dwc3_ep *dep) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 528 | { |
| 529 | struct dwc3_gadget_ep_cmd_params params; |
Felipe Balbi | b07c2db | 2018-04-09 12:46:47 +0300 | [diff] [blame] | 530 | struct dwc3 *dwc; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 531 | u32 cmd; |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 532 | int i; |
| 533 | int ret; |
| 534 | |
| 535 | if (dep->number) |
| 536 | return 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 537 | |
| 538 | memset(¶ms, 0x00, sizeof(params)); |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 539 | cmd = DWC3_DEPCMD_DEPSTARTCFG; |
Felipe Balbi | b07c2db | 2018-04-09 12:46:47 +0300 | [diff] [blame] | 540 | dwc = dep->dwc; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 541 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 542 | ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 543 | if (ret) |
| 544 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 545 | |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 546 | for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) { |
| 547 | struct dwc3_ep *dep = dwc->eps[i]; |
| 548 | |
| 549 | if (!dep) |
| 550 | continue; |
| 551 | |
Felipe Balbi | b07c2db | 2018-04-09 12:46:47 +0300 | [diff] [blame] | 552 | ret = dwc3_gadget_set_xfer_resource(dep); |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 553 | if (ret) |
| 554 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 555 | } |
| 556 | |
| 557 | return 0; |
| 558 | } |
| 559 | |
Felipe Balbi | b07c2db | 2018-04-09 12:46:47 +0300 | [diff] [blame] | 560 | static int dwc3_gadget_set_ep_config(struct dwc3_ep *dep, unsigned int action) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 561 | { |
John Youn | 39ebb05 | 2016-11-09 16:36:28 -0800 | [diff] [blame] | 562 | const struct usb_ss_ep_comp_descriptor *comp_desc; |
| 563 | const struct usb_endpoint_descriptor *desc; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 564 | struct dwc3_gadget_ep_cmd_params params; |
Felipe Balbi | b07c2db | 2018-04-09 12:46:47 +0300 | [diff] [blame] | 565 | struct dwc3 *dwc = dep->dwc; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 566 | |
John Youn | 39ebb05 | 2016-11-09 16:36:28 -0800 | [diff] [blame] | 567 | comp_desc = dep->endpoint.comp_desc; |
| 568 | desc = dep->endpoint.desc; |
| 569 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 570 | memset(¶ms, 0x00, sizeof(params)); |
| 571 | |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 572 | params.param0 = DWC3_DEPCFG_EP_TYPE(usb_endpoint_type(desc)) |
Chanho Park | d2e9a13 | 2012-08-31 16:54:07 +0900 | [diff] [blame] | 573 | | DWC3_DEPCFG_MAX_PACKET_SIZE(usb_endpoint_maxp(desc)); |
| 574 | |
| 575 | /* Burst size is only needed in SuperSpeed mode */ |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 576 | if (dwc->gadget->speed >= USB_SPEED_SUPER) { |
Felipe Balbi | 676e349 | 2016-04-26 10:49:07 +0300 | [diff] [blame] | 577 | u32 burst = dep->endpoint.maxburst; |
Felipe Balbi | e319bd6 | 2020-08-13 08:35:38 +0300 | [diff] [blame] | 578 | |
Felipe Balbi | 676e349 | 2016-04-26 10:49:07 +0300 | [diff] [blame] | 579 | params.param0 |= DWC3_DEPCFG_BURST_SIZE(burst - 1); |
Chanho Park | d2e9a13 | 2012-08-31 16:54:07 +0900 | [diff] [blame] | 580 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 581 | |
Felipe Balbi | a2d23f0 | 2018-04-09 12:40:48 +0300 | [diff] [blame] | 582 | params.param0 |= action; |
| 583 | if (action == DWC3_DEPCFG_ACTION_RESTORE) |
Paul Zimmerman | 265b70a | 2013-12-19 12:38:49 -0600 | [diff] [blame] | 584 | params.param2 |= dep->saved_state; |
Paul Zimmerman | 265b70a | 2013-12-19 12:38:49 -0600 | [diff] [blame] | 585 | |
Felipe Balbi | 4bc48c9 | 2016-08-10 16:04:33 +0300 | [diff] [blame] | 586 | if (usb_endpoint_xfer_control(desc)) |
| 587 | params.param1 = DWC3_DEPCFG_XFER_COMPLETE_EN; |
Felipe Balbi | 13fa2e6 | 2016-05-30 13:40:00 +0300 | [diff] [blame] | 588 | |
| 589 | if (dep->number <= 1 || usb_endpoint_xfer_isoc(desc)) |
| 590 | params.param1 |= DWC3_DEPCFG_XFER_NOT_READY_EN; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 591 | |
Felipe Balbi | 18b7ede | 2012-01-02 13:35:41 +0200 | [diff] [blame] | 592 | if (usb_ss_max_streams(comp_desc) && usb_endpoint_xfer_bulk(desc)) { |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 593 | params.param1 |= DWC3_DEPCFG_STREAM_CAPABLE |
Thinh Nguyen | 548f8b3 | 2020-05-05 19:46:45 -0700 | [diff] [blame] | 594 | | DWC3_DEPCFG_XFER_COMPLETE_EN |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 595 | | DWC3_DEPCFG_STREAM_EVENT_EN; |
Felipe Balbi | 879631a | 2011-09-30 10:58:47 +0300 | [diff] [blame] | 596 | dep->stream_capable = true; |
| 597 | } |
| 598 | |
Felipe Balbi | 0b93a4c | 2014-09-04 10:28:10 -0500 | [diff] [blame] | 599 | if (!usb_endpoint_xfer_control(desc)) |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 600 | params.param1 |= DWC3_DEPCFG_XFER_IN_PROGRESS_EN; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 601 | |
| 602 | /* |
| 603 | * We are doing 1:1 mapping for endpoints, meaning |
| 604 | * Physical Endpoints 2 maps to Logical Endpoint 2 and |
| 605 | * so on. We consider the direction bit as part of the physical |
| 606 | * endpoint number. So USB endpoint 0x81 is 0x03. |
| 607 | */ |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 608 | params.param1 |= DWC3_DEPCFG_EP_NUMBER(dep->number); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 609 | |
| 610 | /* |
| 611 | * We must use the lower 16 TX FIFOs even though |
| 612 | * HW might have more |
| 613 | */ |
| 614 | if (dep->direction) |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 615 | params.param0 |= DWC3_DEPCFG_FIFO_NUMBER(dep->number >> 1); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 616 | |
| 617 | if (desc->bInterval) { |
Thinh Nguyen | 6b78b38 | 2021-02-08 13:53:10 -0800 | [diff] [blame] | 618 | u8 bInterval_m1; |
| 619 | |
| 620 | /* |
Thinh Nguyen | f9ddfaa | 2021-04-15 00:41:58 -0700 | [diff] [blame] | 621 | * Valid range for DEPCFG.bInterval_m1 is from 0 to 13. |
| 622 | * |
| 623 | * NOTE: The programming guide incorrectly stated bInterval_m1 |
| 624 | * must be set to 0 when operating in fullspeed. Internally the |
| 625 | * controller does not have this limitation. See DWC_usb3x |
| 626 | * programming guide section 3.2.2.1. |
Thinh Nguyen | 6b78b38 | 2021-02-08 13:53:10 -0800 | [diff] [blame] | 627 | */ |
| 628 | bInterval_m1 = min_t(u8, desc->bInterval - 1, 13); |
Thinh Nguyen | 6b78b38 | 2021-02-08 13:53:10 -0800 | [diff] [blame] | 629 | |
Thinh Nguyen | 5b4cd96 | 2021-02-08 13:53:16 -0800 | [diff] [blame] | 630 | if (usb_endpoint_type(desc) == USB_ENDPOINT_XFER_INT && |
| 631 | dwc->gadget->speed == USB_SPEED_FULL) |
| 632 | dep->interval = desc->bInterval; |
| 633 | else |
| 634 | dep->interval = 1 << (desc->bInterval - 1); |
| 635 | |
Thinh Nguyen | 6b78b38 | 2021-02-08 13:53:10 -0800 | [diff] [blame] | 636 | params.param1 |= DWC3_DEPCFG_BINTERVAL_M1(bInterval_m1); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 637 | } |
| 638 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 639 | return dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETEPCONFIG, ¶ms); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 640 | } |
| 641 | |
Thinh Nguyen | 140ca4c | 2020-05-05 19:47:09 -0700 | [diff] [blame] | 642 | static void dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force, |
| 643 | bool interrupt); |
| 644 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 645 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 646 | * __dwc3_gadget_ep_enable - initializes a hw endpoint |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 647 | * @dep: endpoint to be initialized |
Felipe Balbi | a2d23f0 | 2018-04-09 12:40:48 +0300 | [diff] [blame] | 648 | * @action: one of INIT, MODIFY or RESTORE |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 649 | * |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 650 | * Caller should take care of locking. Execute all necessary commands to |
| 651 | * initialize a HW endpoint so it can be used by a gadget driver. |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 652 | */ |
Felipe Balbi | a2d23f0 | 2018-04-09 12:40:48 +0300 | [diff] [blame] | 653 | static int __dwc3_gadget_ep_enable(struct dwc3_ep *dep, unsigned int action) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 654 | { |
John Youn | 39ebb05 | 2016-11-09 16:36:28 -0800 | [diff] [blame] | 655 | const struct usb_endpoint_descriptor *desc = dep->endpoint.desc; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 656 | struct dwc3 *dwc = dep->dwc; |
John Youn | 39ebb05 | 2016-11-09 16:36:28 -0800 | [diff] [blame] | 657 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 658 | u32 reg; |
Andy Shevchenko | b09e99e | 2014-05-15 15:53:32 +0300 | [diff] [blame] | 659 | int ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 660 | |
| 661 | if (!(dep->flags & DWC3_EP_ENABLED)) { |
Felipe Balbi | b07c2db | 2018-04-09 12:46:47 +0300 | [diff] [blame] | 662 | ret = dwc3_gadget_start_config(dep); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 663 | if (ret) |
| 664 | return ret; |
| 665 | } |
| 666 | |
Felipe Balbi | b07c2db | 2018-04-09 12:46:47 +0300 | [diff] [blame] | 667 | ret = dwc3_gadget_set_ep_config(dep, action); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 668 | if (ret) |
| 669 | return ret; |
| 670 | |
| 671 | if (!(dep->flags & DWC3_EP_ENABLED)) { |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 672 | struct dwc3_trb *trb_st_hw; |
| 673 | struct dwc3_trb *trb_link; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 674 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 675 | dep->type = usb_endpoint_type(desc); |
| 676 | dep->flags |= DWC3_EP_ENABLED; |
| 677 | |
| 678 | reg = dwc3_readl(dwc->regs, DWC3_DALEPENA); |
| 679 | reg |= DWC3_DALEPENA_EP(dep->number); |
| 680 | dwc3_writel(dwc->regs, DWC3_DALEPENA, reg); |
| 681 | |
Felipe Balbi | 36b68aa | 2016-04-05 13:24:36 +0300 | [diff] [blame] | 682 | if (usb_endpoint_xfer_control(desc)) |
Felipe Balbi | 2870e50 | 2016-11-03 13:53:29 +0200 | [diff] [blame] | 683 | goto out; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 684 | |
John Youn | 0d25744 | 2016-05-19 17:26:08 -0700 | [diff] [blame] | 685 | /* Initialize the TRB ring */ |
| 686 | dep->trb_dequeue = 0; |
| 687 | dep->trb_enqueue = 0; |
| 688 | memset(dep->trb_pool, 0, |
| 689 | sizeof(struct dwc3_trb) * DWC3_TRB_NUM); |
| 690 | |
Felipe Balbi | 36b68aa | 2016-04-05 13:24:36 +0300 | [diff] [blame] | 691 | /* Link TRB. The HWO bit is never reset */ |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 692 | trb_st_hw = &dep->trb_pool[0]; |
| 693 | |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 694 | trb_link = &dep->trb_pool[DWC3_TRB_NUM - 1]; |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 695 | trb_link->bpl = lower_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw)); |
| 696 | trb_link->bph = upper_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw)); |
| 697 | trb_link->ctrl |= DWC3_TRBCTL_LINK_TRB; |
| 698 | trb_link->ctrl |= DWC3_TRB_CTRL_HWO; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 699 | } |
| 700 | |
Felipe Balbi | a97ea99 | 2016-09-29 16:28:56 +0300 | [diff] [blame] | 701 | /* |
| 702 | * Issue StartTransfer here with no-op TRB so we can always rely on No |
| 703 | * Response Update Transfer command. |
| 704 | */ |
Thinh Nguyen | 140ca4c | 2020-05-05 19:47:09 -0700 | [diff] [blame] | 705 | if (usb_endpoint_xfer_bulk(desc) || |
Felipe Balbi | 52fcc0b | 2018-03-26 13:19:43 +0300 | [diff] [blame] | 706 | usb_endpoint_xfer_int(desc)) { |
Felipe Balbi | a97ea99 | 2016-09-29 16:28:56 +0300 | [diff] [blame] | 707 | struct dwc3_gadget_ep_cmd_params params; |
| 708 | struct dwc3_trb *trb; |
| 709 | dma_addr_t trb_dma; |
| 710 | u32 cmd; |
| 711 | |
| 712 | memset(¶ms, 0, sizeof(params)); |
| 713 | trb = &dep->trb_pool[0]; |
| 714 | trb_dma = dwc3_trb_dma_offset(dep, trb); |
| 715 | |
| 716 | params.param0 = upper_32_bits(trb_dma); |
| 717 | params.param1 = lower_32_bits(trb_dma); |
| 718 | |
| 719 | cmd = DWC3_DEPCMD_STARTTRANSFER; |
| 720 | |
| 721 | ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); |
| 722 | if (ret < 0) |
| 723 | return ret; |
Thinh Nguyen | 140ca4c | 2020-05-05 19:47:09 -0700 | [diff] [blame] | 724 | |
| 725 | if (dep->stream_capable) { |
| 726 | /* |
| 727 | * For streams, at start, there maybe a race where the |
| 728 | * host primes the endpoint before the function driver |
| 729 | * queues a request to initiate a stream. In that case, |
| 730 | * the controller will not see the prime to generate the |
| 731 | * ERDY and start stream. To workaround this, issue a |
| 732 | * no-op TRB as normal, but end it immediately. As a |
| 733 | * result, when the function driver queues the request, |
| 734 | * the next START_TRANSFER command will cause the |
| 735 | * controller to generate an ERDY to initiate the |
| 736 | * stream. |
| 737 | */ |
| 738 | dwc3_stop_active_transfer(dep, true, true); |
| 739 | |
| 740 | /* |
| 741 | * All stream eps will reinitiate stream on NoStream |
| 742 | * rejection until we can determine that the host can |
| 743 | * prime after the first transfer. |
| 744 | */ |
| 745 | dep->flags |= DWC3_EP_FORCE_RESTART_STREAM; |
| 746 | } |
Felipe Balbi | a97ea99 | 2016-09-29 16:28:56 +0300 | [diff] [blame] | 747 | } |
| 748 | |
Felipe Balbi | 2870e50 | 2016-11-03 13:53:29 +0200 | [diff] [blame] | 749 | out: |
| 750 | trace_dwc3_gadget_ep_enable(dep); |
| 751 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 752 | return 0; |
| 753 | } |
| 754 | |
Sebastian Andrzej Siewior | 624407f | 2011-08-29 13:56:37 +0200 | [diff] [blame] | 755 | static void dwc3_remove_requests(struct dwc3 *dwc, struct dwc3_ep *dep) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 756 | { |
| 757 | struct dwc3_request *req; |
| 758 | |
Felipe Balbi | c5353b2 | 2019-02-13 13:00:54 +0200 | [diff] [blame] | 759 | dwc3_stop_active_transfer(dep, true, false); |
Felipe Balbi | 69450c4 | 2016-05-30 13:37:02 +0300 | [diff] [blame] | 760 | |
Felipe Balbi | 0e14602 | 2016-06-21 10:32:02 +0300 | [diff] [blame] | 761 | /* - giveback all requests to gadget driver */ |
| 762 | while (!list_empty(&dep->started_list)) { |
| 763 | req = next_request(&dep->started_list); |
Sebastian Andrzej Siewior | 624407f | 2011-08-29 13:56:37 +0200 | [diff] [blame] | 764 | |
Felipe Balbi | 0e14602 | 2016-06-21 10:32:02 +0300 | [diff] [blame] | 765 | dwc3_gadget_giveback(dep, req, -ESHUTDOWN); |
Felipe Balbi | ea53b88 | 2012-02-17 12:10:04 +0200 | [diff] [blame] | 766 | } |
| 767 | |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 768 | while (!list_empty(&dep->pending_list)) { |
| 769 | req = next_request(&dep->pending_list); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 770 | |
Sebastian Andrzej Siewior | 624407f | 2011-08-29 13:56:37 +0200 | [diff] [blame] | 771 | dwc3_gadget_giveback(dep, req, -ESHUTDOWN); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 772 | } |
Felipe Balbi | d8eca64 | 2019-10-31 11:07:13 +0200 | [diff] [blame] | 773 | |
| 774 | while (!list_empty(&dep->cancelled_list)) { |
| 775 | req = next_request(&dep->cancelled_list); |
| 776 | |
| 777 | dwc3_gadget_giveback(dep, req, -ESHUTDOWN); |
| 778 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 779 | } |
| 780 | |
| 781 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 782 | * __dwc3_gadget_ep_disable - disables a hw endpoint |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 783 | * @dep: the endpoint to disable |
| 784 | * |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 785 | * This function undoes what __dwc3_gadget_ep_enable did and also removes |
| 786 | * requests which are currently being processed by the hardware and those which |
| 787 | * are not yet scheduled. |
| 788 | * |
Sebastian Andrzej Siewior | 624407f | 2011-08-29 13:56:37 +0200 | [diff] [blame] | 789 | * Caller should take care of locking. |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 790 | */ |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 791 | static int __dwc3_gadget_ep_disable(struct dwc3_ep *dep) |
| 792 | { |
| 793 | struct dwc3 *dwc = dep->dwc; |
| 794 | u32 reg; |
| 795 | |
Felipe Balbi | 2870e50 | 2016-11-03 13:53:29 +0200 | [diff] [blame] | 796 | trace_dwc3_gadget_ep_disable(dep); |
Felipe Balbi | 7eaeac5 | 2015-07-20 14:46:15 -0500 | [diff] [blame] | 797 | |
Felipe Balbi | 687ef98 | 2014-04-16 10:30:33 -0500 | [diff] [blame] | 798 | /* make sure HW endpoint isn't stalled */ |
| 799 | if (dep->flags & DWC3_EP_STALL) |
Felipe Balbi | 7a60855 | 2014-09-24 14:19:52 -0500 | [diff] [blame] | 800 | __dwc3_gadget_ep_set_halt(dep, 0, false); |
Felipe Balbi | 687ef98 | 2014-04-16 10:30:33 -0500 | [diff] [blame] | 801 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 802 | reg = dwc3_readl(dwc->regs, DWC3_DALEPENA); |
| 803 | reg &= ~DWC3_DALEPENA_EP(dep->number); |
| 804 | dwc3_writel(dwc->regs, DWC3_DALEPENA, reg); |
| 805 | |
John Youn | 39ebb05 | 2016-11-09 16:36:28 -0800 | [diff] [blame] | 806 | /* Clear out the ep descriptors for non-ep0 */ |
| 807 | if (dep->number > 1) { |
| 808 | dep->endpoint.comp_desc = NULL; |
| 809 | dep->endpoint.desc = NULL; |
| 810 | } |
| 811 | |
Wesley Cheng | c7bb96a | 2021-03-11 15:59:02 -0800 | [diff] [blame] | 812 | dwc3_remove_requests(dwc, dep); |
| 813 | |
Wesley Cheng | 996a578 | 2021-03-24 11:31:04 -0700 | [diff] [blame] | 814 | dep->stream_capable = false; |
| 815 | dep->type = 0; |
| 816 | dep->flags = 0; |
| 817 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 818 | return 0; |
| 819 | } |
| 820 | |
| 821 | /* -------------------------------------------------------------------------- */ |
| 822 | |
| 823 | static int dwc3_gadget_ep0_enable(struct usb_ep *ep, |
| 824 | const struct usb_endpoint_descriptor *desc) |
| 825 | { |
| 826 | return -EINVAL; |
| 827 | } |
| 828 | |
| 829 | static int dwc3_gadget_ep0_disable(struct usb_ep *ep) |
| 830 | { |
| 831 | return -EINVAL; |
| 832 | } |
| 833 | |
| 834 | /* -------------------------------------------------------------------------- */ |
| 835 | |
| 836 | static int dwc3_gadget_ep_enable(struct usb_ep *ep, |
| 837 | const struct usb_endpoint_descriptor *desc) |
| 838 | { |
| 839 | struct dwc3_ep *dep; |
| 840 | struct dwc3 *dwc; |
| 841 | unsigned long flags; |
| 842 | int ret; |
| 843 | |
| 844 | if (!ep || !desc || desc->bDescriptorType != USB_DT_ENDPOINT) { |
| 845 | pr_debug("dwc3: invalid parameters\n"); |
| 846 | return -EINVAL; |
| 847 | } |
| 848 | |
| 849 | if (!desc->wMaxPacketSize) { |
| 850 | pr_debug("dwc3: missing wMaxPacketSize\n"); |
| 851 | return -EINVAL; |
| 852 | } |
| 853 | |
| 854 | dep = to_dwc3_ep(ep); |
| 855 | dwc = dep->dwc; |
| 856 | |
Felipe Balbi | 95ca961 | 2015-12-10 13:08:20 -0600 | [diff] [blame] | 857 | if (dev_WARN_ONCE(dwc->dev, dep->flags & DWC3_EP_ENABLED, |
| 858 | "%s is already enabled\n", |
| 859 | dep->name)) |
Felipe Balbi | c6f83f3 | 2012-08-15 12:28:29 +0300 | [diff] [blame] | 860 | return 0; |
Felipe Balbi | c6f83f3 | 2012-08-15 12:28:29 +0300 | [diff] [blame] | 861 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 862 | spin_lock_irqsave(&dwc->lock, flags); |
Felipe Balbi | a2d23f0 | 2018-04-09 12:40:48 +0300 | [diff] [blame] | 863 | ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_INIT); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 864 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 865 | |
| 866 | return ret; |
| 867 | } |
| 868 | |
| 869 | static int dwc3_gadget_ep_disable(struct usb_ep *ep) |
| 870 | { |
| 871 | struct dwc3_ep *dep; |
| 872 | struct dwc3 *dwc; |
| 873 | unsigned long flags; |
| 874 | int ret; |
| 875 | |
| 876 | if (!ep) { |
| 877 | pr_debug("dwc3: invalid parameters\n"); |
| 878 | return -EINVAL; |
| 879 | } |
| 880 | |
| 881 | dep = to_dwc3_ep(ep); |
| 882 | dwc = dep->dwc; |
| 883 | |
Felipe Balbi | 95ca961 | 2015-12-10 13:08:20 -0600 | [diff] [blame] | 884 | if (dev_WARN_ONCE(dwc->dev, !(dep->flags & DWC3_EP_ENABLED), |
| 885 | "%s is already disabled\n", |
| 886 | dep->name)) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 887 | return 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 888 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 889 | spin_lock_irqsave(&dwc->lock, flags); |
| 890 | ret = __dwc3_gadget_ep_disable(dep); |
| 891 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 892 | |
| 893 | return ret; |
| 894 | } |
| 895 | |
| 896 | static struct usb_request *dwc3_gadget_ep_alloc_request(struct usb_ep *ep, |
Felipe Balbi | 0bd0f6d | 2018-03-26 16:09:00 +0300 | [diff] [blame] | 897 | gfp_t gfp_flags) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 898 | { |
| 899 | struct dwc3_request *req; |
| 900 | struct dwc3_ep *dep = to_dwc3_ep(ep); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 901 | |
| 902 | req = kzalloc(sizeof(*req), gfp_flags); |
Jingoo Han | 734d5a5 | 2014-07-17 12:45:11 +0900 | [diff] [blame] | 903 | if (!req) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 904 | return NULL; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 905 | |
Felipe Balbi | 31a2f5a | 2018-05-07 15:19:31 +0300 | [diff] [blame] | 906 | req->direction = dep->direction; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 907 | req->epnum = dep->number; |
| 908 | req->dep = dep; |
Felipe Balbi | a3af5e3 | 2019-01-11 12:57:09 +0200 | [diff] [blame] | 909 | req->status = DWC3_REQUEST_STATUS_UNKNOWN; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 910 | |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 911 | trace_dwc3_alloc_request(req); |
| 912 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 913 | return &req->request; |
| 914 | } |
| 915 | |
| 916 | static void dwc3_gadget_ep_free_request(struct usb_ep *ep, |
| 917 | struct usb_request *request) |
| 918 | { |
| 919 | struct dwc3_request *req = to_dwc3_request(request); |
| 920 | |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 921 | trace_dwc3_free_request(req); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 922 | kfree(req); |
| 923 | } |
| 924 | |
Felipe Balbi | 4262691 | 2018-04-09 13:01:43 +0300 | [diff] [blame] | 925 | /** |
| 926 | * dwc3_ep_prev_trb - returns the previous TRB in the ring |
| 927 | * @dep: The endpoint with the TRB ring |
| 928 | * @index: The index of the current TRB in the ring |
| 929 | * |
| 930 | * Returns the TRB prior to the one pointed to by the index. If the |
| 931 | * index is 0, we will wrap backwards, skip the link TRB, and return |
| 932 | * the one just before that. |
| 933 | */ |
| 934 | static struct dwc3_trb *dwc3_ep_prev_trb(struct dwc3_ep *dep, u8 index) |
| 935 | { |
| 936 | u8 tmp = index; |
| 937 | |
| 938 | if (!tmp) |
| 939 | tmp = DWC3_TRB_NUM - 1; |
| 940 | |
| 941 | return &dep->trb_pool[tmp - 1]; |
| 942 | } |
| 943 | |
| 944 | static u32 dwc3_calc_trbs_left(struct dwc3_ep *dep) |
| 945 | { |
Felipe Balbi | 4262691 | 2018-04-09 13:01:43 +0300 | [diff] [blame] | 946 | u8 trbs_left; |
| 947 | |
| 948 | /* |
Thinh Nguyen | 87b2016 | 2021-08-19 03:17:03 +0200 | [diff] [blame] | 949 | * If the enqueue & dequeue are equal then the TRB ring is either full |
| 950 | * or empty. It's considered full when there are DWC3_TRB_NUM-1 of TRBs |
| 951 | * pending to be processed by the driver. |
Felipe Balbi | 4262691 | 2018-04-09 13:01:43 +0300 | [diff] [blame] | 952 | */ |
| 953 | if (dep->trb_enqueue == dep->trb_dequeue) { |
Thinh Nguyen | 87b2016 | 2021-08-19 03:17:03 +0200 | [diff] [blame] | 954 | /* |
| 955 | * If there is any request remained in the started_list at |
| 956 | * this point, that means there is no TRB available. |
| 957 | */ |
| 958 | if (!list_empty(&dep->started_list)) |
Felipe Balbi | 4262691 | 2018-04-09 13:01:43 +0300 | [diff] [blame] | 959 | return 0; |
| 960 | |
| 961 | return DWC3_TRB_NUM - 1; |
| 962 | } |
| 963 | |
| 964 | trbs_left = dep->trb_dequeue - dep->trb_enqueue; |
| 965 | trbs_left &= (DWC3_TRB_NUM - 1); |
| 966 | |
| 967 | if (dep->trb_dequeue < dep->trb_enqueue) |
| 968 | trbs_left--; |
| 969 | |
| 970 | return trbs_left; |
| 971 | } |
Felipe Balbi | 2c78c02 | 2016-08-12 13:13:10 +0300 | [diff] [blame] | 972 | |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 973 | static void __dwc3_prepare_one_trb(struct dwc3_ep *dep, struct dwc3_trb *trb, |
Felipe Balbi | e319bd6 | 2020-08-13 08:35:38 +0300 | [diff] [blame] | 974 | dma_addr_t dma, unsigned int length, unsigned int chain, |
| 975 | unsigned int node, unsigned int stream_id, |
| 976 | unsigned int short_not_ok, unsigned int no_interrupt, |
Thinh Nguyen | f9cc581 | 2020-09-30 17:44:19 -0700 | [diff] [blame] | 977 | unsigned int is_last, bool must_interrupt) |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 978 | { |
Felipe Balbi | 6b9018d | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 979 | struct dwc3 *dwc = dep->dwc; |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 980 | struct usb_gadget *gadget = dwc->gadget; |
Felipe Balbi | 6b9018d | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 981 | enum usb_device_speed speed = gadget->speed; |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 982 | |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 983 | trb->size = DWC3_TRB_SIZE_LENGTH(length); |
| 984 | trb->bpl = lower_32_bits(dma); |
| 985 | trb->bph = upper_32_bits(dma); |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 986 | |
Ido Shayevitz | 16e78db | 2012-03-12 20:25:24 +0200 | [diff] [blame] | 987 | switch (usb_endpoint_type(dep->endpoint.desc)) { |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 988 | case USB_ENDPOINT_XFER_CONTROL: |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 989 | trb->ctrl = DWC3_TRBCTL_CONTROL_SETUP; |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 990 | break; |
| 991 | |
| 992 | case USB_ENDPOINT_XFER_ISOC: |
Felipe Balbi | 6b9018d | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 993 | if (!node) { |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 994 | trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS_FIRST; |
Felipe Balbi | 6b9018d | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 995 | |
Manu Gautam | 40d829f | 2017-07-19 17:07:10 +0530 | [diff] [blame] | 996 | /* |
| 997 | * USB Specification 2.0 Section 5.9.2 states that: "If |
| 998 | * there is only a single transaction in the microframe, |
| 999 | * only a DATA0 data packet PID is used. If there are |
| 1000 | * two transactions per microframe, DATA1 is used for |
| 1001 | * the first transaction data packet and DATA0 is used |
| 1002 | * for the second transaction data packet. If there are |
| 1003 | * three transactions per microframe, DATA2 is used for |
| 1004 | * the first transaction data packet, DATA1 is used for |
| 1005 | * the second, and DATA0 is used for the third." |
| 1006 | * |
| 1007 | * IOW, we should satisfy the following cases: |
| 1008 | * |
| 1009 | * 1) length <= maxpacket |
| 1010 | * - DATA0 |
| 1011 | * |
| 1012 | * 2) maxpacket < length <= (2 * maxpacket) |
| 1013 | * - DATA1, DATA0 |
| 1014 | * |
| 1015 | * 3) (2 * maxpacket) < length <= (3 * maxpacket) |
| 1016 | * - DATA2, DATA1, DATA0 |
| 1017 | */ |
Felipe Balbi | 6b9018d | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 1018 | if (speed == USB_SPEED_HIGH) { |
| 1019 | struct usb_ep *ep = &dep->endpoint; |
Manu Gautam | ec5bb87 | 2017-12-06 12:49:04 +0530 | [diff] [blame] | 1020 | unsigned int mult = 2; |
Manu Gautam | 40d829f | 2017-07-19 17:07:10 +0530 | [diff] [blame] | 1021 | unsigned int maxp = usb_endpoint_maxp(ep->desc); |
| 1022 | |
| 1023 | if (length <= (2 * maxp)) |
| 1024 | mult--; |
| 1025 | |
| 1026 | if (length <= maxp) |
| 1027 | mult--; |
| 1028 | |
| 1029 | trb->size |= DWC3_TRB_SIZE_PCM1(mult); |
Felipe Balbi | 6b9018d | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 1030 | } |
| 1031 | } else { |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 1032 | trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS; |
Felipe Balbi | 6b9018d | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 1033 | } |
Felipe Balbi | ca4d44e | 2016-03-10 13:53:27 +0200 | [diff] [blame] | 1034 | |
| 1035 | /* always enable Interrupt on Missed ISOC */ |
| 1036 | trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI; |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 1037 | break; |
| 1038 | |
| 1039 | case USB_ENDPOINT_XFER_BULK: |
| 1040 | case USB_ENDPOINT_XFER_INT: |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 1041 | trb->ctrl = DWC3_TRBCTL_NORMAL; |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 1042 | break; |
| 1043 | default: |
| 1044 | /* |
| 1045 | * This is only possible with faulty memory because we |
| 1046 | * checked it already :) |
| 1047 | */ |
Felipe Balbi | 0a695d4 | 2016-10-07 11:20:01 +0300 | [diff] [blame] | 1048 | dev_WARN(dwc->dev, "Unknown endpoint type %d\n", |
| 1049 | usb_endpoint_type(dep->endpoint.desc)); |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 1050 | } |
| 1051 | |
Tejas Joglekar | 244add8 | 2018-12-10 16:08:13 +0530 | [diff] [blame] | 1052 | /* |
| 1053 | * Enable Continue on Short Packet |
| 1054 | * when endpoint is not a stream capable |
| 1055 | */ |
Felipe Balbi | c9508c8 | 2016-10-05 14:26:23 +0300 | [diff] [blame] | 1056 | if (usb_endpoint_dir_out(dep->endpoint.desc)) { |
Tejas Joglekar | 244add8 | 2018-12-10 16:08:13 +0530 | [diff] [blame] | 1057 | if (!dep->stream_capable) |
| 1058 | trb->ctrl |= DWC3_TRB_CTRL_CSP; |
Felipe Balbi | f3af365 | 2013-12-13 14:19:33 -0600 | [diff] [blame] | 1059 | |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 1060 | if (short_not_ok) |
Felipe Balbi | c9508c8 | 2016-10-05 14:26:23 +0300 | [diff] [blame] | 1061 | trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI; |
| 1062 | } |
| 1063 | |
Thinh Nguyen | 8dbbe48 | 2020-09-30 17:44:25 -0700 | [diff] [blame] | 1064 | if ((!no_interrupt && !chain) || must_interrupt) |
Felipe Balbi | c9508c8 | 2016-10-05 14:26:23 +0300 | [diff] [blame] | 1065 | trb->ctrl |= DWC3_TRB_CTRL_IOC; |
Felipe Balbi | ca4d44e | 2016-03-10 13:53:27 +0200 | [diff] [blame] | 1066 | |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 1067 | if (chain) |
| 1068 | trb->ctrl |= DWC3_TRB_CTRL_CHN; |
Thinh Nguyen | 3eaecd0 | 2020-05-05 19:46:51 -0700 | [diff] [blame] | 1069 | else if (dep->stream_capable && is_last) |
| 1070 | trb->ctrl |= DWC3_TRB_CTRL_LST; |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 1071 | |
Ido Shayevitz | 16e78db | 2012-03-12 20:25:24 +0200 | [diff] [blame] | 1072 | if (usb_endpoint_xfer_bulk(dep->endpoint.desc) && dep->stream_capable) |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 1073 | trb->ctrl |= DWC3_TRB_CTRL_SID_SOFN(stream_id); |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 1074 | |
| 1075 | trb->ctrl |= DWC3_TRB_CTRL_HWO; |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 1076 | |
Anurag Kumar Vulisha | b7a4fbe | 2018-12-01 16:43:29 +0530 | [diff] [blame] | 1077 | dwc3_ep_inc_enq(dep); |
| 1078 | |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 1079 | trace_dwc3_prepare_trb(dep, trb); |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 1080 | } |
| 1081 | |
John Youn | 361572b | 2016-05-19 17:26:17 -0700 | [diff] [blame] | 1082 | /** |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 1083 | * dwc3_prepare_one_trb - setup one TRB from one request |
| 1084 | * @dep: endpoint for which this request is prepared |
| 1085 | * @req: dwc3_request pointer |
Thinh Nguyen | 5d187c0 | 2020-08-06 19:46:23 -0700 | [diff] [blame] | 1086 | * @trb_length: buffer size of the TRB |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 1087 | * @chain: should this TRB be chained to the next? |
| 1088 | * @node: only for isochronous endpoints. First TRB needs different type. |
Thinh Nguyen | 2b80357 | 2020-09-24 01:21:30 -0700 | [diff] [blame] | 1089 | * @use_bounce_buffer: set to use bounce buffer |
Thinh Nguyen | f9cc581 | 2020-09-30 17:44:19 -0700 | [diff] [blame] | 1090 | * @must_interrupt: set to interrupt on TRB completion |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 1091 | */ |
| 1092 | static void dwc3_prepare_one_trb(struct dwc3_ep *dep, |
Thinh Nguyen | 5d187c0 | 2020-08-06 19:46:23 -0700 | [diff] [blame] | 1093 | struct dwc3_request *req, unsigned int trb_length, |
Thinh Nguyen | f9cc581 | 2020-09-30 17:44:19 -0700 | [diff] [blame] | 1094 | unsigned int chain, unsigned int node, bool use_bounce_buffer, |
| 1095 | bool must_interrupt) |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 1096 | { |
| 1097 | struct dwc3_trb *trb; |
Anurag Kumar Vulisha | a31e63b | 2018-03-27 16:35:20 +0530 | [diff] [blame] | 1098 | dma_addr_t dma; |
Felipe Balbi | e319bd6 | 2020-08-13 08:35:38 +0300 | [diff] [blame] | 1099 | unsigned int stream_id = req->request.stream_id; |
| 1100 | unsigned int short_not_ok = req->request.short_not_ok; |
| 1101 | unsigned int no_interrupt = req->request.no_interrupt; |
| 1102 | unsigned int is_last = req->request.is_last; |
Anurag Kumar Vulisha | a31e63b | 2018-03-27 16:35:20 +0530 | [diff] [blame] | 1103 | |
Thinh Nguyen | 2b80357 | 2020-09-24 01:21:30 -0700 | [diff] [blame] | 1104 | if (use_bounce_buffer) |
| 1105 | dma = dep->dwc->bounce_addr; |
| 1106 | else if (req->request.num_sgs > 0) |
Anurag Kumar Vulisha | a31e63b | 2018-03-27 16:35:20 +0530 | [diff] [blame] | 1107 | dma = sg_dma_address(req->start_sg); |
Thinh Nguyen | 5d187c0 | 2020-08-06 19:46:23 -0700 | [diff] [blame] | 1108 | else |
Anurag Kumar Vulisha | a31e63b | 2018-03-27 16:35:20 +0530 | [diff] [blame] | 1109 | dma = req->request.dma; |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 1110 | |
| 1111 | trb = &dep->trb_pool[dep->trb_enqueue]; |
| 1112 | |
| 1113 | if (!req->trb) { |
| 1114 | dwc3_gadget_move_started_request(req); |
| 1115 | req->trb = trb; |
| 1116 | req->trb_dma = dwc3_trb_dma_offset(dep, trb); |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 1117 | } |
| 1118 | |
Felipe Balbi | 09fe1f8 | 2018-08-01 13:32:07 +0300 | [diff] [blame] | 1119 | req->num_trbs++; |
| 1120 | |
Thinh Nguyen | 5d187c0 | 2020-08-06 19:46:23 -0700 | [diff] [blame] | 1121 | __dwc3_prepare_one_trb(dep, trb, dma, trb_length, chain, node, |
Thinh Nguyen | f9cc581 | 2020-09-30 17:44:19 -0700 | [diff] [blame] | 1122 | stream_id, short_not_ok, no_interrupt, is_last, |
| 1123 | must_interrupt); |
| 1124 | } |
| 1125 | |
| 1126 | static bool dwc3_needs_extra_trb(struct dwc3_ep *dep, struct dwc3_request *req) |
| 1127 | { |
| 1128 | unsigned int maxp = usb_endpoint_maxp(dep->endpoint.desc); |
| 1129 | unsigned int rem = req->request.length % maxp; |
| 1130 | |
| 1131 | if ((req->request.length && req->request.zero && !rem && |
| 1132 | !usb_endpoint_xfer_isoc(dep->endpoint.desc)) || |
| 1133 | (!req->direction && rem)) |
| 1134 | return true; |
| 1135 | |
| 1136 | return false; |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 1137 | } |
| 1138 | |
Thinh Nguyen | cb1b399 | 2020-09-24 01:22:07 -0700 | [diff] [blame] | 1139 | /** |
| 1140 | * dwc3_prepare_last_sg - prepare TRBs for the last SG entry |
| 1141 | * @dep: The endpoint that the request belongs to |
| 1142 | * @req: The request to prepare |
| 1143 | * @entry_length: The last SG entry size |
| 1144 | * @node: Indicates whether this is not the first entry (for isoc only) |
| 1145 | * |
| 1146 | * Return the number of TRBs prepared. |
| 1147 | */ |
| 1148 | static int dwc3_prepare_last_sg(struct dwc3_ep *dep, |
| 1149 | struct dwc3_request *req, unsigned int entry_length, |
| 1150 | unsigned int node) |
| 1151 | { |
| 1152 | unsigned int maxp = usb_endpoint_maxp(dep->endpoint.desc); |
| 1153 | unsigned int rem = req->request.length % maxp; |
| 1154 | unsigned int num_trbs = 1; |
| 1155 | |
Thinh Nguyen | f9cc581 | 2020-09-30 17:44:19 -0700 | [diff] [blame] | 1156 | if (dwc3_needs_extra_trb(dep, req)) |
Thinh Nguyen | cb1b399 | 2020-09-24 01:22:07 -0700 | [diff] [blame] | 1157 | num_trbs++; |
| 1158 | |
| 1159 | if (dwc3_calc_trbs_left(dep) < num_trbs) |
| 1160 | return 0; |
| 1161 | |
| 1162 | req->needs_extra_trb = num_trbs > 1; |
| 1163 | |
| 1164 | /* Prepare a normal TRB */ |
| 1165 | if (req->direction || req->request.length) |
| 1166 | dwc3_prepare_one_trb(dep, req, entry_length, |
Thinh Nguyen | f9cc581 | 2020-09-30 17:44:19 -0700 | [diff] [blame] | 1167 | req->needs_extra_trb, node, false, false); |
Thinh Nguyen | cb1b399 | 2020-09-24 01:22:07 -0700 | [diff] [blame] | 1168 | |
| 1169 | /* Prepare extra TRBs for ZLP and MPS OUT transfer alignment */ |
| 1170 | if ((!req->direction && !req->request.length) || req->needs_extra_trb) |
| 1171 | dwc3_prepare_one_trb(dep, req, |
| 1172 | req->direction ? 0 : maxp - rem, |
Thinh Nguyen | f9cc581 | 2020-09-30 17:44:19 -0700 | [diff] [blame] | 1173 | false, 1, true, false); |
Thinh Nguyen | cb1b399 | 2020-09-24 01:22:07 -0700 | [diff] [blame] | 1174 | |
| 1175 | return num_trbs; |
| 1176 | } |
| 1177 | |
Thinh Nguyen | 7f2958d | 2020-09-24 01:22:14 -0700 | [diff] [blame] | 1178 | static int dwc3_prepare_trbs_sg(struct dwc3_ep *dep, |
Felipe Balbi | 7ae7df4 | 2016-08-24 14:37:22 +0300 | [diff] [blame] | 1179 | struct dwc3_request *req) |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1180 | { |
Anurag Kumar Vulisha | a31e63b | 2018-03-27 16:35:20 +0530 | [diff] [blame] | 1181 | struct scatterlist *sg = req->start_sg; |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1182 | struct scatterlist *s; |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1183 | int i; |
Thinh Nguyen | 5d187c0 | 2020-08-06 19:46:23 -0700 | [diff] [blame] | 1184 | unsigned int length = req->request.length; |
Anurag Kumar Vulisha | c96e672 | 2018-03-27 16:35:21 +0530 | [diff] [blame] | 1185 | unsigned int remaining = req->request.num_mapped_sgs |
| 1186 | - req->num_queued_sgs; |
Thinh Nguyen | 13111fc | 2020-09-24 01:21:49 -0700 | [diff] [blame] | 1187 | unsigned int num_trbs = req->num_trbs; |
Thinh Nguyen | f9cc581 | 2020-09-30 17:44:19 -0700 | [diff] [blame] | 1188 | bool needs_extra_trb = dwc3_needs_extra_trb(dep, req); |
Anurag Kumar Vulisha | c96e672 | 2018-03-27 16:35:21 +0530 | [diff] [blame] | 1189 | |
Thinh Nguyen | 5d187c0 | 2020-08-06 19:46:23 -0700 | [diff] [blame] | 1190 | /* |
| 1191 | * If we resume preparing the request, then get the remaining length of |
| 1192 | * the request and resume where we left off. |
| 1193 | */ |
| 1194 | for_each_sg(req->request.sg, s, req->num_queued_sgs, i) |
| 1195 | length -= sg_dma_len(s); |
| 1196 | |
Anurag Kumar Vulisha | c96e672 | 2018-03-27 16:35:21 +0530 | [diff] [blame] | 1197 | for_each_sg(sg, s, remaining, i) { |
Thinh Nguyen | 8dbbe48 | 2020-09-30 17:44:25 -0700 | [diff] [blame] | 1198 | unsigned int num_trbs_left = dwc3_calc_trbs_left(dep); |
Thinh Nguyen | 5d187c0 | 2020-08-06 19:46:23 -0700 | [diff] [blame] | 1199 | unsigned int trb_length; |
Thinh Nguyen | f9cc581 | 2020-09-30 17:44:19 -0700 | [diff] [blame] | 1200 | bool must_interrupt = false; |
Thinh Nguyen | cb1b399 | 2020-09-24 01:22:07 -0700 | [diff] [blame] | 1201 | bool last_sg = false; |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1202 | |
Thinh Nguyen | 5d187c0 | 2020-08-06 19:46:23 -0700 | [diff] [blame] | 1203 | trb_length = min_t(unsigned int, length, sg_dma_len(s)); |
| 1204 | |
| 1205 | length -= trb_length; |
| 1206 | |
Pratham Pratap | dad2aff | 2020-03-02 21:44:43 +0000 | [diff] [blame] | 1207 | /* |
| 1208 | * IOMMU driver is coalescing the list of sgs which shares a |
| 1209 | * page boundary into one and giving it to USB driver. With |
| 1210 | * this the number of sgs mapped is not equal to the number of |
| 1211 | * sgs passed. So mark the chain bit to false if it isthe last |
| 1212 | * mapped sg. |
| 1213 | */ |
Thinh Nguyen | 5d187c0 | 2020-08-06 19:46:23 -0700 | [diff] [blame] | 1214 | if ((i == remaining - 1) || !length) |
Thinh Nguyen | cb1b399 | 2020-09-24 01:22:07 -0700 | [diff] [blame] | 1215 | last_sg = true; |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1216 | |
Thinh Nguyen | 8dbbe48 | 2020-09-30 17:44:25 -0700 | [diff] [blame] | 1217 | if (!num_trbs_left) |
Thinh Nguyen | 13111fc | 2020-09-24 01:21:49 -0700 | [diff] [blame] | 1218 | break; |
| 1219 | |
Thinh Nguyen | cb1b399 | 2020-09-24 01:22:07 -0700 | [diff] [blame] | 1220 | if (last_sg) { |
| 1221 | if (!dwc3_prepare_last_sg(dep, req, trb_length, i)) |
Thinh Nguyen | f9cc581 | 2020-09-30 17:44:19 -0700 | [diff] [blame] | 1222 | break; |
Felipe Balbi | c6267a5 | 2017-01-05 14:58:46 +0200 | [diff] [blame] | 1223 | } else { |
Thinh Nguyen | f9cc581 | 2020-09-30 17:44:19 -0700 | [diff] [blame] | 1224 | /* |
| 1225 | * Look ahead to check if we have enough TRBs for the |
Thinh Nguyen | 8dbbe48 | 2020-09-30 17:44:25 -0700 | [diff] [blame] | 1226 | * next SG entry. If not, set interrupt on this TRB to |
| 1227 | * resume preparing the next SG entry when more TRBs are |
Thinh Nguyen | f9cc581 | 2020-09-30 17:44:19 -0700 | [diff] [blame] | 1228 | * free. |
| 1229 | */ |
Thinh Nguyen | 8dbbe48 | 2020-09-30 17:44:25 -0700 | [diff] [blame] | 1230 | if (num_trbs_left == 1 || (needs_extra_trb && |
| 1231 | num_trbs_left <= 2 && |
| 1232 | sg_dma_len(sg_next(s)) >= length)) |
Thinh Nguyen | f9cc581 | 2020-09-30 17:44:19 -0700 | [diff] [blame] | 1233 | must_interrupt = true; |
| 1234 | |
| 1235 | dwc3_prepare_one_trb(dep, req, trb_length, 1, i, false, |
| 1236 | must_interrupt); |
Felipe Balbi | c6267a5 | 2017-01-05 14:58:46 +0200 | [diff] [blame] | 1237 | } |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1238 | |
Anurag Kumar Vulisha | a31e63b | 2018-03-27 16:35:20 +0530 | [diff] [blame] | 1239 | /* |
| 1240 | * There can be a situation where all sgs in sglist are not |
| 1241 | * queued because of insufficient trb number. To handle this |
| 1242 | * case, update start_sg to next sg to be queued, so that |
| 1243 | * we have free trbs we can continue queuing from where we |
| 1244 | * previously stopped |
| 1245 | */ |
Thinh Nguyen | cb1b399 | 2020-09-24 01:22:07 -0700 | [diff] [blame] | 1246 | if (!last_sg) |
Anurag Kumar Vulisha | a31e63b | 2018-03-27 16:35:20 +0530 | [diff] [blame] | 1247 | req->start_sg = sg_next(s); |
| 1248 | |
Anurag Kumar Vulisha | c96e672 | 2018-03-27 16:35:21 +0530 | [diff] [blame] | 1249 | req->num_queued_sgs++; |
Thinh Nguyen | adccf17 | 2021-05-12 20:17:09 -0700 | [diff] [blame] | 1250 | req->num_pending_sgs--; |
Anurag Kumar Vulisha | c96e672 | 2018-03-27 16:35:21 +0530 | [diff] [blame] | 1251 | |
Thinh Nguyen | 5d187c0 | 2020-08-06 19:46:23 -0700 | [diff] [blame] | 1252 | /* |
| 1253 | * The number of pending SG entries may not correspond to the |
| 1254 | * number of mapped SG entries. If all the data are queued, then |
| 1255 | * don't include unused SG entries. |
| 1256 | */ |
| 1257 | if (length == 0) { |
Thinh Nguyen | adccf17 | 2021-05-12 20:17:09 -0700 | [diff] [blame] | 1258 | req->num_pending_sgs = 0; |
Thinh Nguyen | 5d187c0 | 2020-08-06 19:46:23 -0700 | [diff] [blame] | 1259 | break; |
| 1260 | } |
| 1261 | |
Thinh Nguyen | 8dbbe48 | 2020-09-30 17:44:25 -0700 | [diff] [blame] | 1262 | if (must_interrupt) |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1263 | break; |
| 1264 | } |
Thinh Nguyen | 13111fc | 2020-09-24 01:21:49 -0700 | [diff] [blame] | 1265 | |
Thinh Nguyen | 30892cb | 2020-09-24 01:22:01 -0700 | [diff] [blame] | 1266 | return req->num_trbs - num_trbs; |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1267 | } |
| 1268 | |
Thinh Nguyen | 7f2958d | 2020-09-24 01:22:14 -0700 | [diff] [blame] | 1269 | static int dwc3_prepare_trbs_linear(struct dwc3_ep *dep, |
Felipe Balbi | 7ae7df4 | 2016-08-24 14:37:22 +0300 | [diff] [blame] | 1270 | struct dwc3_request *req) |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1271 | { |
Thinh Nguyen | cb1b399 | 2020-09-24 01:22:07 -0700 | [diff] [blame] | 1272 | return dwc3_prepare_last_sg(dep, req, req->request.length, 0); |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1273 | } |
| 1274 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1275 | /* |
| 1276 | * dwc3_prepare_trbs - setup TRBs from requests |
| 1277 | * @dep: endpoint for which requests are being prepared |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1278 | * |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 1279 | * The function goes through the requests list and sets up TRBs for the |
| 1280 | * transfers. The function returns once there are no more TRBs available or |
| 1281 | * it runs out of requests. |
Thinh Nguyen | 490410b | 2020-09-24 01:21:55 -0700 | [diff] [blame] | 1282 | * |
| 1283 | * Returns the number of TRBs prepared or negative errno. |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1284 | */ |
Thinh Nguyen | 490410b | 2020-09-24 01:21:55 -0700 | [diff] [blame] | 1285 | static int dwc3_prepare_trbs(struct dwc3_ep *dep) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1286 | { |
Felipe Balbi | 68e823e | 2011-11-28 12:25:01 +0200 | [diff] [blame] | 1287 | struct dwc3_request *req, *n; |
Thinh Nguyen | 490410b | 2020-09-24 01:21:55 -0700 | [diff] [blame] | 1288 | int ret = 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1289 | |
| 1290 | BUILD_BUG_ON_NOT_POWER_OF_2(DWC3_TRB_NUM); |
| 1291 | |
Felipe Balbi | d86c5a6 | 2016-10-25 13:48:52 +0300 | [diff] [blame] | 1292 | /* |
| 1293 | * We can get in a situation where there's a request in the started list |
| 1294 | * but there weren't enough TRBs to fully kick it in the first time |
| 1295 | * around, so it has been waiting for more TRBs to be freed up. |
| 1296 | * |
| 1297 | * In that case, we should check if we have a request with pending_sgs |
| 1298 | * in the started list and prepare TRBs for that request first, |
| 1299 | * otherwise we will prepare TRBs completely out of order and that will |
| 1300 | * break things. |
| 1301 | */ |
| 1302 | list_for_each_entry(req, &dep->started_list, list) { |
Thinh Nguyen | 490410b | 2020-09-24 01:21:55 -0700 | [diff] [blame] | 1303 | if (req->num_pending_sgs > 0) { |
Thinh Nguyen | 7f2958d | 2020-09-24 01:22:14 -0700 | [diff] [blame] | 1304 | ret = dwc3_prepare_trbs_sg(dep, req); |
Thinh Nguyen | 346a15c | 2020-09-30 17:44:32 -0700 | [diff] [blame] | 1305 | if (!ret || req->num_pending_sgs) |
Thinh Nguyen | 490410b | 2020-09-24 01:21:55 -0700 | [diff] [blame] | 1306 | return ret; |
| 1307 | } |
Felipe Balbi | d86c5a6 | 2016-10-25 13:48:52 +0300 | [diff] [blame] | 1308 | |
| 1309 | if (!dwc3_calc_trbs_left(dep)) |
Thinh Nguyen | 490410b | 2020-09-24 01:21:55 -0700 | [diff] [blame] | 1310 | return ret; |
Thinh Nguyen | 63c7bb2 | 2020-05-15 16:40:46 -0700 | [diff] [blame] | 1311 | |
| 1312 | /* |
| 1313 | * Don't prepare beyond a transfer. In DWC_usb32, its transfer |
| 1314 | * burst capability may try to read and use TRBs beyond the |
| 1315 | * active transfer instead of stopping. |
| 1316 | */ |
| 1317 | if (dep->stream_capable && req->request.is_last) |
Thinh Nguyen | 490410b | 2020-09-24 01:21:55 -0700 | [diff] [blame] | 1318 | return ret; |
Felipe Balbi | d86c5a6 | 2016-10-25 13:48:52 +0300 | [diff] [blame] | 1319 | } |
| 1320 | |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 1321 | list_for_each_entry_safe(req, n, &dep->pending_list, list) { |
Felipe Balbi | cdb55b3 | 2017-05-17 13:21:14 +0300 | [diff] [blame] | 1322 | struct dwc3 *dwc = dep->dwc; |
Felipe Balbi | cdb55b3 | 2017-05-17 13:21:14 +0300 | [diff] [blame] | 1323 | |
| 1324 | ret = usb_gadget_map_request_by_dev(dwc->sysdev, &req->request, |
| 1325 | dep->direction); |
| 1326 | if (ret) |
Thinh Nguyen | 490410b | 2020-09-24 01:21:55 -0700 | [diff] [blame] | 1327 | return ret; |
Felipe Balbi | cdb55b3 | 2017-05-17 13:21:14 +0300 | [diff] [blame] | 1328 | |
| 1329 | req->sg = req->request.sg; |
Anurag Kumar Vulisha | a31e63b | 2018-03-27 16:35:20 +0530 | [diff] [blame] | 1330 | req->start_sg = req->sg; |
Anurag Kumar Vulisha | c96e672 | 2018-03-27 16:35:21 +0530 | [diff] [blame] | 1331 | req->num_queued_sgs = 0; |
Felipe Balbi | cdb55b3 | 2017-05-17 13:21:14 +0300 | [diff] [blame] | 1332 | req->num_pending_sgs = req->request.num_mapped_sgs; |
| 1333 | |
Thinh Nguyen | 346a15c | 2020-09-30 17:44:32 -0700 | [diff] [blame] | 1334 | if (req->num_pending_sgs > 0) { |
Thinh Nguyen | 7f2958d | 2020-09-24 01:22:14 -0700 | [diff] [blame] | 1335 | ret = dwc3_prepare_trbs_sg(dep, req); |
Thinh Nguyen | 346a15c | 2020-09-30 17:44:32 -0700 | [diff] [blame] | 1336 | if (req->num_pending_sgs) |
| 1337 | return ret; |
| 1338 | } else { |
Thinh Nguyen | 7f2958d | 2020-09-24 01:22:14 -0700 | [diff] [blame] | 1339 | ret = dwc3_prepare_trbs_linear(dep, req); |
Thinh Nguyen | 346a15c | 2020-09-30 17:44:32 -0700 | [diff] [blame] | 1340 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1341 | |
Thinh Nguyen | 490410b | 2020-09-24 01:21:55 -0700 | [diff] [blame] | 1342 | if (!ret || !dwc3_calc_trbs_left(dep)) |
| 1343 | return ret; |
Thinh Nguyen | aefe3d2 | 2020-05-05 19:47:03 -0700 | [diff] [blame] | 1344 | |
| 1345 | /* |
| 1346 | * Don't prepare beyond a transfer. In DWC_usb32, its transfer |
| 1347 | * burst capability may try to read and use TRBs beyond the |
| 1348 | * active transfer instead of stopping. |
| 1349 | */ |
| 1350 | if (dep->stream_capable && req->request.is_last) |
Thinh Nguyen | 490410b | 2020-09-24 01:21:55 -0700 | [diff] [blame] | 1351 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1352 | } |
Thinh Nguyen | 490410b | 2020-09-24 01:21:55 -0700 | [diff] [blame] | 1353 | |
| 1354 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1355 | } |
| 1356 | |
Thinh Nguyen | 8d99087 | 2020-03-29 16:12:57 -0700 | [diff] [blame] | 1357 | static void dwc3_gadget_ep_cleanup_cancelled_requests(struct dwc3_ep *dep); |
| 1358 | |
Felipe Balbi | 7fdca76 | 2017-09-05 14:41:34 +0300 | [diff] [blame] | 1359 | static int __dwc3_gadget_kick_transfer(struct dwc3_ep *dep) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1360 | { |
| 1361 | struct dwc3_gadget_ep_cmd_params params; |
| 1362 | struct dwc3_request *req; |
Felipe Balbi | 4fae2e3 | 2016-05-12 16:53:59 +0300 | [diff] [blame] | 1363 | int starting; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1364 | int ret; |
| 1365 | u32 cmd; |
| 1366 | |
Thinh Nguyen | d72ecc0 | 2020-09-29 00:18:48 -0700 | [diff] [blame] | 1367 | /* |
| 1368 | * Note that it's normal to have no new TRBs prepared (i.e. ret == 0). |
| 1369 | * This happens when we need to stop and restart a transfer such as in |
| 1370 | * the case of reinitiating a stream or retrying an isoc transfer. |
| 1371 | */ |
Thinh Nguyen | 490410b | 2020-09-24 01:21:55 -0700 | [diff] [blame] | 1372 | ret = dwc3_prepare_trbs(dep); |
Thinh Nguyen | d72ecc0 | 2020-09-29 00:18:48 -0700 | [diff] [blame] | 1373 | if (ret < 0) |
Thinh Nguyen | 490410b | 2020-09-24 01:21:55 -0700 | [diff] [blame] | 1374 | return ret; |
Felipe Balbi | ccb94eb | 2017-09-05 14:28:46 +0300 | [diff] [blame] | 1375 | |
Felipe Balbi | 1912cbc | 2018-03-29 11:08:46 +0300 | [diff] [blame] | 1376 | starting = !(dep->flags & DWC3_EP_TRANSFER_STARTED); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1377 | |
Thinh Nguyen | 2338484 | 2020-09-30 17:44:38 -0700 | [diff] [blame] | 1378 | /* |
| 1379 | * If there's no new TRB prepared and we don't need to restart a |
| 1380 | * transfer, there's no need to update the transfer. |
| 1381 | */ |
| 1382 | if (!ret && !starting) |
| 1383 | return ret; |
| 1384 | |
Felipe Balbi | 4fae2e3 | 2016-05-12 16:53:59 +0300 | [diff] [blame] | 1385 | req = next_request(&dep->started_list); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1386 | if (!req) { |
| 1387 | dep->flags |= DWC3_EP_PENDING_REQUEST; |
| 1388 | return 0; |
| 1389 | } |
| 1390 | |
| 1391 | memset(¶ms, 0, sizeof(params)); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1392 | |
Felipe Balbi | 4fae2e3 | 2016-05-12 16:53:59 +0300 | [diff] [blame] | 1393 | if (starting) { |
Pratyush Anand | 1877d6c | 2013-01-14 15:59:36 +0530 | [diff] [blame] | 1394 | params.param0 = upper_32_bits(req->trb_dma); |
| 1395 | params.param1 = lower_32_bits(req->trb_dma); |
Felipe Balbi | 7fdca76 | 2017-09-05 14:41:34 +0300 | [diff] [blame] | 1396 | cmd = DWC3_DEPCMD_STARTTRANSFER; |
| 1397 | |
Anurag Kumar Vulisha | a735180 | 2018-12-01 16:43:25 +0530 | [diff] [blame] | 1398 | if (dep->stream_capable) |
| 1399 | cmd |= DWC3_DEPCMD_PARAM(req->request.stream_id); |
| 1400 | |
Felipe Balbi | 7fdca76 | 2017-09-05 14:41:34 +0300 | [diff] [blame] | 1401 | if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) |
| 1402 | cmd |= DWC3_DEPCMD_PARAM(dep->frame_number); |
Pratyush Anand | 1877d6c | 2013-01-14 15:59:36 +0530 | [diff] [blame] | 1403 | } else { |
Felipe Balbi | b6b1c6d | 2016-05-30 13:29:35 +0300 | [diff] [blame] | 1404 | cmd = DWC3_DEPCMD_UPDATETRANSFER | |
| 1405 | DWC3_DEPCMD_PARAM(dep->resource_index); |
Pratyush Anand | 1877d6c | 2013-01-14 15:59:36 +0530 | [diff] [blame] | 1406 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1407 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 1408 | ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1409 | if (ret < 0) { |
Thinh Nguyen | 8d99087 | 2020-03-29 16:12:57 -0700 | [diff] [blame] | 1410 | struct dwc3_request *tmp; |
| 1411 | |
| 1412 | if (ret == -EAGAIN) |
| 1413 | return ret; |
| 1414 | |
| 1415 | dwc3_stop_active_transfer(dep, true, true); |
| 1416 | |
| 1417 | list_for_each_entry_safe(req, tmp, &dep->started_list, list) |
| 1418 | dwc3_gadget_move_cancelled_request(req); |
| 1419 | |
| 1420 | /* If ep isn't started, then there's no end transfer pending */ |
| 1421 | if (!(dep->flags & DWC3_EP_END_TRANSFER_PENDING)) |
| 1422 | dwc3_gadget_ep_cleanup_cancelled_requests(dep); |
| 1423 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1424 | return ret; |
| 1425 | } |
| 1426 | |
Thinh Nguyen | e0d1956 | 2020-05-05 19:46:57 -0700 | [diff] [blame] | 1427 | if (dep->stream_capable && req->request.is_last) |
| 1428 | dep->flags |= DWC3_EP_WAIT_TRANSFER_COMPLETE; |
| 1429 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1430 | return 0; |
| 1431 | } |
| 1432 | |
Felipe Balbi | 6cb2e4e | 2016-10-21 13:07:09 +0300 | [diff] [blame] | 1433 | static int __dwc3_gadget_get_frame(struct dwc3 *dwc) |
| 1434 | { |
| 1435 | u32 reg; |
| 1436 | |
| 1437 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 1438 | return DWC3_DSTS_SOFFN(reg); |
| 1439 | } |
| 1440 | |
Thinh Nguyen | d92021f | 2018-11-14 22:56:54 -0800 | [diff] [blame] | 1441 | /** |
| 1442 | * dwc3_gadget_start_isoc_quirk - workaround invalid frame number |
| 1443 | * @dep: isoc endpoint |
| 1444 | * |
| 1445 | * This function tests for the correct combination of BIT[15:14] from the 16-bit |
| 1446 | * microframe number reported by the XferNotReady event for the future frame |
| 1447 | * number to start the isoc transfer. |
| 1448 | * |
| 1449 | * In DWC_usb31 version 1.70a-ea06 and prior, for highspeed and fullspeed |
| 1450 | * isochronous IN, BIT[15:14] of the 16-bit microframe number reported by the |
| 1451 | * XferNotReady event are invalid. The driver uses this number to schedule the |
| 1452 | * isochronous transfer and passes it to the START TRANSFER command. Because |
| 1453 | * this number is invalid, the command may fail. If BIT[15:14] matches the |
| 1454 | * internal 16-bit microframe, the START TRANSFER command will pass and the |
| 1455 | * transfer will start at the scheduled time, if it is off by 1, the command |
| 1456 | * will still pass, but the transfer will start 2 seconds in the future. For all |
| 1457 | * other conditions, the START TRANSFER command will fail with bus-expiry. |
| 1458 | * |
| 1459 | * In order to workaround this issue, we can test for the correct combination of |
| 1460 | * BIT[15:14] by sending START TRANSFER commands with different values of |
| 1461 | * BIT[15:14]: 'b00, 'b01, 'b10, and 'b11. Each combination is 2^14 uframe apart |
| 1462 | * (or 2 seconds). 4 seconds into the future will result in a bus-expiry status. |
| 1463 | * As the result, within the 4 possible combinations for BIT[15:14], there will |
| 1464 | * be 2 successful and 2 failure START COMMAND status. One of the 2 successful |
| 1465 | * command status will result in a 2-second delay start. The smaller BIT[15:14] |
| 1466 | * value is the correct combination. |
| 1467 | * |
| 1468 | * Since there are only 4 outcomes and the results are ordered, we can simply |
| 1469 | * test 2 START TRANSFER commands with BIT[15:14] combinations 'b00 and 'b01 to |
| 1470 | * deduce the smaller successful combination. |
| 1471 | * |
| 1472 | * Let test0 = test status for combination 'b00 and test1 = test status for 'b01 |
| 1473 | * of BIT[15:14]. The correct combination is as follow: |
| 1474 | * |
| 1475 | * if test0 fails and test1 passes, BIT[15:14] is 'b01 |
| 1476 | * if test0 fails and test1 fails, BIT[15:14] is 'b10 |
| 1477 | * if test0 passes and test1 fails, BIT[15:14] is 'b11 |
| 1478 | * if test0 passes and test1 passes, BIT[15:14] is 'b00 |
| 1479 | * |
| 1480 | * Synopsys STAR 9001202023: Wrong microframe number for isochronous IN |
| 1481 | * endpoints. |
| 1482 | */ |
Felipe Balbi | 25abad6 | 2018-08-14 10:41:19 +0300 | [diff] [blame] | 1483 | static int dwc3_gadget_start_isoc_quirk(struct dwc3_ep *dep) |
Pratyush Anand | d6d6ec7 | 2012-05-25 18:54:56 +0530 | [diff] [blame] | 1484 | { |
Thinh Nguyen | d92021f | 2018-11-14 22:56:54 -0800 | [diff] [blame] | 1485 | int cmd_status = 0; |
| 1486 | bool test0; |
| 1487 | bool test1; |
| 1488 | |
| 1489 | while (dep->combo_num < 2) { |
| 1490 | struct dwc3_gadget_ep_cmd_params params; |
| 1491 | u32 test_frame_number; |
| 1492 | u32 cmd; |
| 1493 | |
| 1494 | /* |
| 1495 | * Check if we can start isoc transfer on the next interval or |
| 1496 | * 4 uframes in the future with BIT[15:14] as dep->combo_num |
| 1497 | */ |
Michael Grzeschik | ca14378 | 2020-07-01 20:24:51 +0200 | [diff] [blame] | 1498 | test_frame_number = dep->frame_number & DWC3_FRNUMBER_MASK; |
Thinh Nguyen | d92021f | 2018-11-14 22:56:54 -0800 | [diff] [blame] | 1499 | test_frame_number |= dep->combo_num << 14; |
| 1500 | test_frame_number += max_t(u32, 4, dep->interval); |
| 1501 | |
| 1502 | params.param0 = upper_32_bits(dep->dwc->bounce_addr); |
| 1503 | params.param1 = lower_32_bits(dep->dwc->bounce_addr); |
| 1504 | |
| 1505 | cmd = DWC3_DEPCMD_STARTTRANSFER; |
| 1506 | cmd |= DWC3_DEPCMD_PARAM(test_frame_number); |
| 1507 | cmd_status = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); |
| 1508 | |
| 1509 | /* Redo if some other failure beside bus-expiry is received */ |
| 1510 | if (cmd_status && cmd_status != -EAGAIN) { |
| 1511 | dep->start_cmd_status = 0; |
| 1512 | dep->combo_num = 0; |
Felipe Balbi | 25abad6 | 2018-08-14 10:41:19 +0300 | [diff] [blame] | 1513 | return 0; |
Thinh Nguyen | d92021f | 2018-11-14 22:56:54 -0800 | [diff] [blame] | 1514 | } |
| 1515 | |
| 1516 | /* Store the first test status */ |
| 1517 | if (dep->combo_num == 0) |
| 1518 | dep->start_cmd_status = cmd_status; |
| 1519 | |
| 1520 | dep->combo_num++; |
| 1521 | |
| 1522 | /* |
| 1523 | * End the transfer if the START_TRANSFER command is successful |
| 1524 | * to wait for the next XferNotReady to test the command again |
| 1525 | */ |
| 1526 | if (cmd_status == 0) { |
Felipe Balbi | c5353b2 | 2019-02-13 13:00:54 +0200 | [diff] [blame] | 1527 | dwc3_stop_active_transfer(dep, true, true); |
Felipe Balbi | 25abad6 | 2018-08-14 10:41:19 +0300 | [diff] [blame] | 1528 | return 0; |
Thinh Nguyen | d92021f | 2018-11-14 22:56:54 -0800 | [diff] [blame] | 1529 | } |
Pratyush Anand | d6d6ec7 | 2012-05-25 18:54:56 +0530 | [diff] [blame] | 1530 | } |
| 1531 | |
Thinh Nguyen | d92021f | 2018-11-14 22:56:54 -0800 | [diff] [blame] | 1532 | /* test0 and test1 are both completed at this point */ |
| 1533 | test0 = (dep->start_cmd_status == 0); |
| 1534 | test1 = (cmd_status == 0); |
| 1535 | |
| 1536 | if (!test0 && test1) |
| 1537 | dep->combo_num = 1; |
| 1538 | else if (!test0 && !test1) |
| 1539 | dep->combo_num = 2; |
| 1540 | else if (test0 && !test1) |
| 1541 | dep->combo_num = 3; |
| 1542 | else if (test0 && test1) |
| 1543 | dep->combo_num = 0; |
| 1544 | |
Michael Grzeschik | ca14378 | 2020-07-01 20:24:51 +0200 | [diff] [blame] | 1545 | dep->frame_number &= DWC3_FRNUMBER_MASK; |
Thinh Nguyen | d92021f | 2018-11-14 22:56:54 -0800 | [diff] [blame] | 1546 | dep->frame_number |= dep->combo_num << 14; |
| 1547 | dep->frame_number += max_t(u32, 4, dep->interval); |
| 1548 | |
| 1549 | /* Reinitialize test variables */ |
| 1550 | dep->start_cmd_status = 0; |
| 1551 | dep->combo_num = 0; |
| 1552 | |
Felipe Balbi | 25abad6 | 2018-08-14 10:41:19 +0300 | [diff] [blame] | 1553 | return __dwc3_gadget_kick_transfer(dep); |
Thinh Nguyen | d92021f | 2018-11-14 22:56:54 -0800 | [diff] [blame] | 1554 | } |
| 1555 | |
Felipe Balbi | 25abad6 | 2018-08-14 10:41:19 +0300 | [diff] [blame] | 1556 | static int __dwc3_gadget_start_isoc(struct dwc3_ep *dep) |
Pratyush Anand | d6d6ec7 | 2012-05-25 18:54:56 +0530 | [diff] [blame] | 1557 | { |
Michael Olbrich | c5a7092 | 2020-07-01 20:24:52 +0200 | [diff] [blame] | 1558 | const struct usb_endpoint_descriptor *desc = dep->endpoint.desc; |
Thinh Nguyen | d92021f | 2018-11-14 22:56:54 -0800 | [diff] [blame] | 1559 | struct dwc3 *dwc = dep->dwc; |
Felipe Balbi | d537010 | 2018-08-14 10:42:43 +0300 | [diff] [blame] | 1560 | int ret; |
| 1561 | int i; |
Thinh Nguyen | d92021f | 2018-11-14 22:56:54 -0800 | [diff] [blame] | 1562 | |
Thinh Nguyen | 36f05d3 | 2020-03-29 16:13:10 -0700 | [diff] [blame] | 1563 | if (list_empty(&dep->pending_list) && |
| 1564 | list_empty(&dep->started_list)) { |
Pratyush Anand | d6d6ec7 | 2012-05-25 18:54:56 +0530 | [diff] [blame] | 1565 | dep->flags |= DWC3_EP_PENDING_REQUEST; |
Felipe Balbi | 25abad6 | 2018-08-14 10:41:19 +0300 | [diff] [blame] | 1566 | return -EAGAIN; |
Pratyush Anand | d6d6ec7 | 2012-05-25 18:54:56 +0530 | [diff] [blame] | 1567 | } |
| 1568 | |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 1569 | if (!dwc->dis_start_transfer_quirk && |
| 1570 | (DWC3_VER_IS_PRIOR(DWC31, 170A) || |
| 1571 | DWC3_VER_TYPE_IS_WITHIN(DWC31, 170A, EA01, EA06))) { |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 1572 | if (dwc->gadget->speed <= USB_SPEED_HIGH && dep->direction) |
Felipe Balbi | 25abad6 | 2018-08-14 10:41:19 +0300 | [diff] [blame] | 1573 | return dwc3_gadget_start_isoc_quirk(dep); |
Thinh Nguyen | d92021f | 2018-11-14 22:56:54 -0800 | [diff] [blame] | 1574 | } |
| 1575 | |
Michael Olbrich | c5a7092 | 2020-07-01 20:24:52 +0200 | [diff] [blame] | 1576 | if (desc->bInterval <= 14 && |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 1577 | dwc->gadget->speed >= USB_SPEED_HIGH) { |
Michael Olbrich | c5a7092 | 2020-07-01 20:24:52 +0200 | [diff] [blame] | 1578 | u32 frame = __dwc3_gadget_get_frame(dwc); |
| 1579 | bool rollover = frame < |
| 1580 | (dep->frame_number & DWC3_FRNUMBER_MASK); |
| 1581 | |
| 1582 | /* |
| 1583 | * frame_number is set from XferNotReady and may be already |
| 1584 | * out of date. DSTS only provides the lower 14 bit of the |
| 1585 | * current frame number. So add the upper two bits of |
| 1586 | * frame_number and handle a possible rollover. |
| 1587 | * This will provide the correct frame_number unless more than |
| 1588 | * rollover has happened since XferNotReady. |
| 1589 | */ |
| 1590 | |
| 1591 | dep->frame_number = (dep->frame_number & ~DWC3_FRNUMBER_MASK) | |
| 1592 | frame; |
| 1593 | if (rollover) |
| 1594 | dep->frame_number += BIT(14); |
| 1595 | } |
| 1596 | |
Felipe Balbi | d537010 | 2018-08-14 10:42:43 +0300 | [diff] [blame] | 1597 | for (i = 0; i < DWC3_ISOC_MAX_RETRIES; i++) { |
| 1598 | dep->frame_number = DWC3_ALIGN_FRAME(dep, i + 1); |
| 1599 | |
| 1600 | ret = __dwc3_gadget_kick_transfer(dep); |
| 1601 | if (ret != -EAGAIN) |
| 1602 | break; |
| 1603 | } |
| 1604 | |
Thinh Nguyen | 36f05d3 | 2020-03-29 16:13:10 -0700 | [diff] [blame] | 1605 | /* |
| 1606 | * After a number of unsuccessful start attempts due to bus-expiry |
| 1607 | * status, issue END_TRANSFER command and retry on the next XferNotReady |
| 1608 | * event. |
| 1609 | */ |
| 1610 | if (ret == -EAGAIN) { |
| 1611 | struct dwc3_gadget_ep_cmd_params params; |
| 1612 | u32 cmd; |
| 1613 | |
| 1614 | cmd = DWC3_DEPCMD_ENDTRANSFER | |
| 1615 | DWC3_DEPCMD_CMDIOC | |
| 1616 | DWC3_DEPCMD_PARAM(dep->resource_index); |
| 1617 | |
| 1618 | dep->resource_index = 0; |
| 1619 | memset(¶ms, 0, sizeof(params)); |
| 1620 | |
| 1621 | ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); |
| 1622 | if (!ret) |
| 1623 | dep->flags |= DWC3_EP_END_TRANSFER_PENDING; |
| 1624 | } |
| 1625 | |
Felipe Balbi | d537010 | 2018-08-14 10:42:43 +0300 | [diff] [blame] | 1626 | return ret; |
Pratyush Anand | d6d6ec7 | 2012-05-25 18:54:56 +0530 | [diff] [blame] | 1627 | } |
| 1628 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1629 | static int __dwc3_gadget_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req) |
| 1630 | { |
Felipe Balbi | 0fc9a1b | 2011-12-19 11:32:34 +0200 | [diff] [blame] | 1631 | struct dwc3 *dwc = dep->dwc; |
Felipe Balbi | 0fc9a1b | 2011-12-19 11:32:34 +0200 | [diff] [blame] | 1632 | |
Wesley Cheng | c7bb96a | 2021-03-11 15:59:02 -0800 | [diff] [blame] | 1633 | if (!dep->endpoint.desc || !dwc->pullups_connected || !dwc->connected) { |
Felipe Balbi | 5eb30ce | 2016-11-03 14:07:51 +0200 | [diff] [blame] | 1634 | dev_err(dwc->dev, "%s: can't queue to disabled endpoint\n", |
| 1635 | dep->name); |
Felipe Balbi | bb42398 | 2015-11-16 15:31:21 -0600 | [diff] [blame] | 1636 | return -ESHUTDOWN; |
| 1637 | } |
| 1638 | |
Felipe Balbi | 04fb365 | 2017-05-17 15:57:45 +0300 | [diff] [blame] | 1639 | if (WARN(req->dep != dep, "request %pK belongs to '%s'\n", |
| 1640 | &req->request, req->dep->name)) |
Felipe Balbi | bb42398 | 2015-11-16 15:31:21 -0600 | [diff] [blame] | 1641 | return -EINVAL; |
Felipe Balbi | bb42398 | 2015-11-16 15:31:21 -0600 | [diff] [blame] | 1642 | |
Felipe Balbi | b2b6d60 | 2019-01-11 12:58:52 +0200 | [diff] [blame] | 1643 | if (WARN(req->status < DWC3_REQUEST_STATUS_COMPLETED, |
| 1644 | "%s: request %pK already in flight\n", |
| 1645 | dep->name, &req->request)) |
| 1646 | return -EINVAL; |
| 1647 | |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 1648 | pm_runtime_get(dwc->dev); |
| 1649 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1650 | req->request.actual = 0; |
| 1651 | req->request.status = -EINPROGRESS; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1652 | |
Felipe Balbi | fe84f52 | 2015-09-01 09:01:38 -0500 | [diff] [blame] | 1653 | trace_dwc3_ep_queue(req); |
| 1654 | |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 1655 | list_add_tail(&req->list, &dep->pending_list); |
Felipe Balbi | a3af5e3 | 2019-01-11 12:57:09 +0200 | [diff] [blame] | 1656 | req->status = DWC3_REQUEST_STATUS_QUEUED; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1657 | |
Thinh Nguyen | e0d1956 | 2020-05-05 19:46:57 -0700 | [diff] [blame] | 1658 | if (dep->flags & DWC3_EP_WAIT_TRANSFER_COMPLETE) |
| 1659 | return 0; |
| 1660 | |
Thinh Nguyen | c503672 | 2020-09-02 18:42:58 -0700 | [diff] [blame] | 1661 | /* |
| 1662 | * Start the transfer only after the END_TRANSFER is completed |
| 1663 | * and endpoint STALL is cleared. |
| 1664 | */ |
| 1665 | if ((dep->flags & DWC3_EP_END_TRANSFER_PENDING) || |
| 1666 | (dep->flags & DWC3_EP_WEDGE) || |
| 1667 | (dep->flags & DWC3_EP_STALL)) { |
Thinh Nguyen | da10bcd | 2019-12-18 18:14:50 -0800 | [diff] [blame] | 1668 | dep->flags |= DWC3_EP_DELAY_START; |
| 1669 | return 0; |
| 1670 | } |
| 1671 | |
Felipe Balbi | d889c23 | 2016-09-29 15:44:29 +0300 | [diff] [blame] | 1672 | /* |
| 1673 | * NOTICE: Isochronous endpoints should NEVER be prestarted. We must |
| 1674 | * wait for a XferNotReady event so we will know what's the current |
| 1675 | * (micro-)frame number. |
| 1676 | * |
| 1677 | * Without this trick, we are very, very likely gonna get Bus Expiry |
| 1678 | * errors which will force us issue EndTransfer command. |
| 1679 | */ |
| 1680 | if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) { |
Felipe Balbi | fe990ce | 2018-03-29 13:23:53 +0300 | [diff] [blame] | 1681 | if (!(dep->flags & DWC3_EP_PENDING_REQUEST) && |
| 1682 | !(dep->flags & DWC3_EP_TRANSFER_STARTED)) |
Roger Quadros | f1d6826 | 2017-04-21 15:58:08 +0300 | [diff] [blame] | 1683 | return 0; |
Felipe Balbi | fe990ce | 2018-03-29 13:23:53 +0300 | [diff] [blame] | 1684 | |
| 1685 | if ((dep->flags & DWC3_EP_PENDING_REQUEST)) { |
Felipe Balbi | e319bd6 | 2020-08-13 08:35:38 +0300 | [diff] [blame] | 1686 | if (!(dep->flags & DWC3_EP_TRANSFER_STARTED)) |
Felipe Balbi | 25abad6 | 2018-08-14 10:41:19 +0300 | [diff] [blame] | 1687 | return __dwc3_gadget_start_isoc(dep); |
Felipe Balbi | 08a36b5 | 2016-08-11 14:27:52 +0300 | [diff] [blame] | 1688 | } |
Felipe Balbi | b511e5e | 2012-06-06 12:00:50 +0300 | [diff] [blame] | 1689 | } |
| 1690 | |
Wesley Cheng | 9bd96a2 | 2021-05-07 10:55:19 -0700 | [diff] [blame] | 1691 | __dwc3_gadget_kick_transfer(dep); |
| 1692 | |
| 1693 | return 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1694 | } |
| 1695 | |
| 1696 | static int dwc3_gadget_ep_queue(struct usb_ep *ep, struct usb_request *request, |
| 1697 | gfp_t gfp_flags) |
| 1698 | { |
| 1699 | struct dwc3_request *req = to_dwc3_request(request); |
| 1700 | struct dwc3_ep *dep = to_dwc3_ep(ep); |
| 1701 | struct dwc3 *dwc = dep->dwc; |
| 1702 | |
| 1703 | unsigned long flags; |
| 1704 | |
| 1705 | int ret; |
| 1706 | |
Zhuang Jin Can | fdee4eb | 2014-09-03 14:26:34 +0800 | [diff] [blame] | 1707 | spin_lock_irqsave(&dwc->lock, flags); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1708 | ret = __dwc3_gadget_ep_queue(dep, req); |
| 1709 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1710 | |
| 1711 | return ret; |
| 1712 | } |
| 1713 | |
Felipe Balbi | 7746a8d | 2018-08-01 13:42:29 +0300 | [diff] [blame] | 1714 | static void dwc3_gadget_ep_skip_trbs(struct dwc3_ep *dep, struct dwc3_request *req) |
| 1715 | { |
| 1716 | int i; |
| 1717 | |
Thinh Nguyen | cb11ea5 | 2020-03-05 13:23:55 -0800 | [diff] [blame] | 1718 | /* If req->trb is not set, then the request has not started */ |
| 1719 | if (!req->trb) |
| 1720 | return; |
| 1721 | |
Felipe Balbi | 7746a8d | 2018-08-01 13:42:29 +0300 | [diff] [blame] | 1722 | /* |
| 1723 | * If request was already started, this means we had to |
| 1724 | * stop the transfer. With that we also need to ignore |
| 1725 | * all TRBs used by the request, however TRBs can only |
| 1726 | * be modified after completion of END_TRANSFER |
| 1727 | * command. So what we do here is that we wait for |
| 1728 | * END_TRANSFER completion and only after that, we jump |
| 1729 | * over TRBs by clearing HWO and incrementing dequeue |
| 1730 | * pointer. |
| 1731 | */ |
| 1732 | for (i = 0; i < req->num_trbs; i++) { |
| 1733 | struct dwc3_trb *trb; |
| 1734 | |
Thinh Nguyen | 2dedea0 | 2020-03-05 13:24:01 -0800 | [diff] [blame] | 1735 | trb = &dep->trb_pool[dep->trb_dequeue]; |
Felipe Balbi | 7746a8d | 2018-08-01 13:42:29 +0300 | [diff] [blame] | 1736 | trb->ctrl &= ~DWC3_TRB_CTRL_HWO; |
| 1737 | dwc3_ep_inc_deq(dep); |
| 1738 | } |
Thinh Nguyen | c715276 | 2019-02-12 19:39:27 -0800 | [diff] [blame] | 1739 | |
| 1740 | req->num_trbs = 0; |
Felipe Balbi | 7746a8d | 2018-08-01 13:42:29 +0300 | [diff] [blame] | 1741 | } |
| 1742 | |
Felipe Balbi | d4f1afe | 2018-08-01 13:54:25 +0300 | [diff] [blame] | 1743 | static void dwc3_gadget_ep_cleanup_cancelled_requests(struct dwc3_ep *dep) |
| 1744 | { |
| 1745 | struct dwc3_request *req; |
| 1746 | struct dwc3_request *tmp; |
| 1747 | |
| 1748 | list_for_each_entry_safe(req, tmp, &dep->cancelled_list, list) { |
| 1749 | dwc3_gadget_ep_skip_trbs(dep, req); |
| 1750 | dwc3_gadget_giveback(dep, req, -ECONNRESET); |
| 1751 | } |
| 1752 | } |
| 1753 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1754 | static int dwc3_gadget_ep_dequeue(struct usb_ep *ep, |
| 1755 | struct usb_request *request) |
| 1756 | { |
| 1757 | struct dwc3_request *req = to_dwc3_request(request); |
| 1758 | struct dwc3_request *r = NULL; |
| 1759 | |
| 1760 | struct dwc3_ep *dep = to_dwc3_ep(ep); |
| 1761 | struct dwc3 *dwc = dep->dwc; |
| 1762 | |
| 1763 | unsigned long flags; |
| 1764 | int ret = 0; |
| 1765 | |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 1766 | trace_dwc3_ep_dequeue(req); |
| 1767 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1768 | spin_lock_irqsave(&dwc->lock, flags); |
| 1769 | |
Thinh Nguyen | a7027ca | 2020-03-05 13:24:08 -0800 | [diff] [blame] | 1770 | list_for_each_entry(r, &dep->cancelled_list, list) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1771 | if (r == req) |
Thinh Nguyen | fcd2def | 2020-03-05 13:24:20 -0800 | [diff] [blame] | 1772 | goto out; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1773 | } |
| 1774 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1775 | list_for_each_entry(r, &dep->pending_list, list) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1776 | if (r == req) { |
Thinh Nguyen | fcd2def | 2020-03-05 13:24:20 -0800 | [diff] [blame] | 1777 | dwc3_gadget_giveback(dep, req, -ECONNRESET); |
| 1778 | goto out; |
| 1779 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1780 | } |
| 1781 | |
Thinh Nguyen | fcd2def | 2020-03-05 13:24:20 -0800 | [diff] [blame] | 1782 | list_for_each_entry(r, &dep->started_list, list) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1783 | if (r == req) { |
Thinh Nguyen | a7027ca | 2020-03-05 13:24:08 -0800 | [diff] [blame] | 1784 | struct dwc3_request *t; |
| 1785 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1786 | /* wait until it is processed */ |
Felipe Balbi | c5353b2 | 2019-02-13 13:00:54 +0200 | [diff] [blame] | 1787 | dwc3_stop_active_transfer(dep, true, true); |
Felipe Balbi | cf3113d | 2017-02-17 11:12:44 +0200 | [diff] [blame] | 1788 | |
Thinh Nguyen | a7027ca | 2020-03-05 13:24:08 -0800 | [diff] [blame] | 1789 | /* |
| 1790 | * Remove any started request if the transfer is |
| 1791 | * cancelled. |
| 1792 | */ |
| 1793 | list_for_each_entry_safe(r, t, &dep->started_list, list) |
| 1794 | dwc3_gadget_move_cancelled_request(r); |
Felipe Balbi | cf3113d | 2017-02-17 11:12:44 +0200 | [diff] [blame] | 1795 | |
Thinh Nguyen | 8907a10 | 2021-01-04 22:42:39 -0800 | [diff] [blame] | 1796 | dep->flags &= ~DWC3_EP_WAIT_TRANSFER_COMPLETE; |
| 1797 | |
Thinh Nguyen | fcd2def | 2020-03-05 13:24:20 -0800 | [diff] [blame] | 1798 | goto out; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1799 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1800 | } |
| 1801 | |
Thinh Nguyen | fcd2def | 2020-03-05 13:24:20 -0800 | [diff] [blame] | 1802 | dev_err(dwc->dev, "request %pK was not queued to %s\n", |
| 1803 | request, ep->name); |
| 1804 | ret = -EINVAL; |
| 1805 | out: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1806 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1807 | |
| 1808 | return ret; |
| 1809 | } |
| 1810 | |
Felipe Balbi | 7a60855 | 2014-09-24 14:19:52 -0500 | [diff] [blame] | 1811 | int __dwc3_gadget_ep_set_halt(struct dwc3_ep *dep, int value, int protocol) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1812 | { |
| 1813 | struct dwc3_gadget_ep_cmd_params params; |
| 1814 | struct dwc3 *dwc = dep->dwc; |
Thinh Nguyen | cb11ea5 | 2020-03-05 13:23:55 -0800 | [diff] [blame] | 1815 | struct dwc3_request *req; |
| 1816 | struct dwc3_request *tmp; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1817 | int ret; |
| 1818 | |
Felipe Balbi | 5ad02fb | 2014-09-24 10:48:26 -0500 | [diff] [blame] | 1819 | if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) { |
| 1820 | dev_err(dwc->dev, "%s is of Isochronous type\n", dep->name); |
| 1821 | return -EINVAL; |
| 1822 | } |
| 1823 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1824 | memset(¶ms, 0x00, sizeof(params)); |
| 1825 | |
| 1826 | if (value) { |
Felipe Balbi | 69450c4 | 2016-05-30 13:37:02 +0300 | [diff] [blame] | 1827 | struct dwc3_trb *trb; |
| 1828 | |
Felipe Balbi | e319bd6 | 2020-08-13 08:35:38 +0300 | [diff] [blame] | 1829 | unsigned int transfer_in_flight; |
| 1830 | unsigned int started; |
Felipe Balbi | 69450c4 | 2016-05-30 13:37:02 +0300 | [diff] [blame] | 1831 | |
| 1832 | if (dep->number > 1) |
| 1833 | trb = dwc3_ep_prev_trb(dep, dep->trb_enqueue); |
| 1834 | else |
| 1835 | trb = &dwc->ep0_trb[dep->trb_enqueue]; |
| 1836 | |
| 1837 | transfer_in_flight = trb->ctrl & DWC3_TRB_CTRL_HWO; |
| 1838 | started = !list_empty(&dep->started_list); |
| 1839 | |
| 1840 | if (!protocol && ((dep->direction && transfer_in_flight) || |
| 1841 | (!dep->direction && started))) { |
Felipe Balbi | 7a60855 | 2014-09-24 14:19:52 -0500 | [diff] [blame] | 1842 | return -EAGAIN; |
| 1843 | } |
| 1844 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 1845 | ret = dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETSTALL, |
| 1846 | ¶ms); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1847 | if (ret) |
Dan Carpenter | 3f89204 | 2014-03-07 14:20:22 +0300 | [diff] [blame] | 1848 | dev_err(dwc->dev, "failed to set STALL on %s\n", |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1849 | dep->name); |
| 1850 | else |
| 1851 | dep->flags |= DWC3_EP_STALL; |
| 1852 | } else { |
Thinh Nguyen | cb11ea5 | 2020-03-05 13:23:55 -0800 | [diff] [blame] | 1853 | /* |
| 1854 | * Don't issue CLEAR_STALL command to control endpoints. The |
| 1855 | * controller automatically clears the STALL when it receives |
| 1856 | * the SETUP token. |
| 1857 | */ |
| 1858 | if (dep->number <= 1) { |
| 1859 | dep->flags &= ~(DWC3_EP_STALL | DWC3_EP_WEDGE); |
| 1860 | return 0; |
| 1861 | } |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 1862 | |
Thinh Nguyen | d97c78a | 2020-09-02 18:43:04 -0700 | [diff] [blame] | 1863 | dwc3_stop_active_transfer(dep, true, true); |
| 1864 | |
| 1865 | list_for_each_entry_safe(req, tmp, &dep->started_list, list) |
| 1866 | dwc3_gadget_move_cancelled_request(req); |
| 1867 | |
| 1868 | if (dep->flags & DWC3_EP_END_TRANSFER_PENDING) { |
| 1869 | dep->flags |= DWC3_EP_PENDING_CLEAR_STALL; |
| 1870 | return 0; |
| 1871 | } |
| 1872 | |
| 1873 | dwc3_gadget_ep_cleanup_cancelled_requests(dep); |
| 1874 | |
John Youn | 50c763f | 2016-05-31 17:49:56 -0700 | [diff] [blame] | 1875 | ret = dwc3_send_clear_stall_ep_cmd(dep); |
Thinh Nguyen | cb11ea5 | 2020-03-05 13:23:55 -0800 | [diff] [blame] | 1876 | if (ret) { |
Dan Carpenter | 3f89204 | 2014-03-07 14:20:22 +0300 | [diff] [blame] | 1877 | dev_err(dwc->dev, "failed to clear STALL on %s\n", |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1878 | dep->name); |
Thinh Nguyen | cb11ea5 | 2020-03-05 13:23:55 -0800 | [diff] [blame] | 1879 | return ret; |
| 1880 | } |
| 1881 | |
| 1882 | dep->flags &= ~(DWC3_EP_STALL | DWC3_EP_WEDGE); |
| 1883 | |
Thinh Nguyen | c503672 | 2020-09-02 18:42:58 -0700 | [diff] [blame] | 1884 | if ((dep->flags & DWC3_EP_DELAY_START) && |
| 1885 | !usb_endpoint_xfer_isoc(dep->endpoint.desc)) |
| 1886 | __dwc3_gadget_kick_transfer(dep); |
| 1887 | |
| 1888 | dep->flags &= ~DWC3_EP_DELAY_START; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1889 | } |
Paul Zimmerman | 5275455 | 2011-09-30 10:58:44 +0300 | [diff] [blame] | 1890 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1891 | return ret; |
| 1892 | } |
| 1893 | |
| 1894 | static int dwc3_gadget_ep_set_halt(struct usb_ep *ep, int value) |
| 1895 | { |
| 1896 | struct dwc3_ep *dep = to_dwc3_ep(ep); |
| 1897 | struct dwc3 *dwc = dep->dwc; |
| 1898 | |
| 1899 | unsigned long flags; |
| 1900 | |
| 1901 | int ret; |
| 1902 | |
| 1903 | spin_lock_irqsave(&dwc->lock, flags); |
Felipe Balbi | 7a60855 | 2014-09-24 14:19:52 -0500 | [diff] [blame] | 1904 | ret = __dwc3_gadget_ep_set_halt(dep, value, false); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1905 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1906 | |
| 1907 | return ret; |
| 1908 | } |
| 1909 | |
| 1910 | static int dwc3_gadget_ep_set_wedge(struct usb_ep *ep) |
| 1911 | { |
| 1912 | struct dwc3_ep *dep = to_dwc3_ep(ep); |
Paul Zimmerman | 249a456 | 2012-02-24 17:32:16 -0800 | [diff] [blame] | 1913 | struct dwc3 *dwc = dep->dwc; |
| 1914 | unsigned long flags; |
Felipe Balbi | 95aa4e8 | 2014-09-24 10:50:14 -0500 | [diff] [blame] | 1915 | int ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1916 | |
Paul Zimmerman | 249a456 | 2012-02-24 17:32:16 -0800 | [diff] [blame] | 1917 | spin_lock_irqsave(&dwc->lock, flags); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1918 | dep->flags |= DWC3_EP_WEDGE; |
| 1919 | |
Pratyush Anand | 08f0d96 | 2012-06-25 22:40:43 +0530 | [diff] [blame] | 1920 | if (dep->number == 0 || dep->number == 1) |
Felipe Balbi | 95aa4e8 | 2014-09-24 10:50:14 -0500 | [diff] [blame] | 1921 | ret = __dwc3_gadget_ep0_set_halt(ep, 1); |
Pratyush Anand | 08f0d96 | 2012-06-25 22:40:43 +0530 | [diff] [blame] | 1922 | else |
Felipe Balbi | 7a60855 | 2014-09-24 14:19:52 -0500 | [diff] [blame] | 1923 | ret = __dwc3_gadget_ep_set_halt(dep, 1, false); |
Felipe Balbi | 95aa4e8 | 2014-09-24 10:50:14 -0500 | [diff] [blame] | 1924 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1925 | |
| 1926 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1927 | } |
| 1928 | |
| 1929 | /* -------------------------------------------------------------------------- */ |
| 1930 | |
| 1931 | static struct usb_endpoint_descriptor dwc3_gadget_ep0_desc = { |
| 1932 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 1933 | .bDescriptorType = USB_DT_ENDPOINT, |
| 1934 | .bmAttributes = USB_ENDPOINT_XFER_CONTROL, |
| 1935 | }; |
| 1936 | |
| 1937 | static const struct usb_ep_ops dwc3_gadget_ep0_ops = { |
| 1938 | .enable = dwc3_gadget_ep0_enable, |
| 1939 | .disable = dwc3_gadget_ep0_disable, |
| 1940 | .alloc_request = dwc3_gadget_ep_alloc_request, |
| 1941 | .free_request = dwc3_gadget_ep_free_request, |
| 1942 | .queue = dwc3_gadget_ep0_queue, |
| 1943 | .dequeue = dwc3_gadget_ep_dequeue, |
Pratyush Anand | 08f0d96 | 2012-06-25 22:40:43 +0530 | [diff] [blame] | 1944 | .set_halt = dwc3_gadget_ep0_set_halt, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1945 | .set_wedge = dwc3_gadget_ep_set_wedge, |
| 1946 | }; |
| 1947 | |
| 1948 | static const struct usb_ep_ops dwc3_gadget_ep_ops = { |
| 1949 | .enable = dwc3_gadget_ep_enable, |
| 1950 | .disable = dwc3_gadget_ep_disable, |
| 1951 | .alloc_request = dwc3_gadget_ep_alloc_request, |
| 1952 | .free_request = dwc3_gadget_ep_free_request, |
| 1953 | .queue = dwc3_gadget_ep_queue, |
| 1954 | .dequeue = dwc3_gadget_ep_dequeue, |
| 1955 | .set_halt = dwc3_gadget_ep_set_halt, |
| 1956 | .set_wedge = dwc3_gadget_ep_set_wedge, |
| 1957 | }; |
| 1958 | |
| 1959 | /* -------------------------------------------------------------------------- */ |
| 1960 | |
| 1961 | static int dwc3_gadget_get_frame(struct usb_gadget *g) |
| 1962 | { |
| 1963 | struct dwc3 *dwc = gadget_to_dwc(g); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1964 | |
Felipe Balbi | 6cb2e4e | 2016-10-21 13:07:09 +0300 | [diff] [blame] | 1965 | return __dwc3_gadget_get_frame(dwc); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1966 | } |
| 1967 | |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1968 | static int __dwc3_gadget_wakeup(struct dwc3 *dwc) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1969 | { |
Nicolas Saenz Julienne | d6011f6 | 2016-08-16 10:22:38 +0100 | [diff] [blame] | 1970 | int retries; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1971 | |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1972 | int ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1973 | u32 reg; |
| 1974 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1975 | u8 link_state; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1976 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1977 | /* |
| 1978 | * According to the Databook Remote wakeup request should |
| 1979 | * be issued only when the device is in early suspend state. |
| 1980 | * |
| 1981 | * We can check that via USB Link State bits in DSTS register. |
| 1982 | */ |
| 1983 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 1984 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1985 | link_state = DWC3_DSTS_USBLNKST(reg); |
| 1986 | |
| 1987 | switch (link_state) { |
Thinh Nguyen | d0550cd | 2020-01-31 16:25:50 -0800 | [diff] [blame] | 1988 | case DWC3_LINK_STATE_RESET: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1989 | case DWC3_LINK_STATE_RX_DET: /* in HS, means Early Suspend */ |
| 1990 | case DWC3_LINK_STATE_U3: /* in HS, means SUSPEND */ |
Thinh Nguyen | b624b32 | 2021-04-19 19:11:12 -0700 | [diff] [blame] | 1991 | case DWC3_LINK_STATE_U2: /* in HS, means Sleep (L1) */ |
| 1992 | case DWC3_LINK_STATE_U1: |
Thinh Nguyen | d0550cd | 2020-01-31 16:25:50 -0800 | [diff] [blame] | 1993 | case DWC3_LINK_STATE_RESUME: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1994 | break; |
| 1995 | default: |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1996 | return -EINVAL; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1997 | } |
| 1998 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 1999 | ret = dwc3_gadget_set_link_state(dwc, DWC3_LINK_STATE_RECOV); |
| 2000 | if (ret < 0) { |
| 2001 | dev_err(dwc->dev, "failed to put link in Recovery\n"); |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 2002 | return ret; |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 2003 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2004 | |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 2005 | /* Recent versions do this automatically */ |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 2006 | if (DWC3_VER_IS_PRIOR(DWC3, 194A)) { |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 2007 | /* write zeroes to Link Change Request */ |
Felipe Balbi | fcc023c | 2012-05-24 10:27:56 +0300 | [diff] [blame] | 2008 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 2009 | reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK; |
| 2010 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 2011 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2012 | |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 2013 | /* poll until Link State changes to ON */ |
Nicolas Saenz Julienne | d6011f6 | 2016-08-16 10:22:38 +0100 | [diff] [blame] | 2014 | retries = 20000; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2015 | |
Nicolas Saenz Julienne | d6011f6 | 2016-08-16 10:22:38 +0100 | [diff] [blame] | 2016 | while (retries--) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2017 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 2018 | |
| 2019 | /* in HS, means ON */ |
| 2020 | if (DWC3_DSTS_USBLNKST(reg) == DWC3_LINK_STATE_U0) |
| 2021 | break; |
| 2022 | } |
| 2023 | |
| 2024 | if (DWC3_DSTS_USBLNKST(reg) != DWC3_LINK_STATE_U0) { |
| 2025 | dev_err(dwc->dev, "failed to send remote wakeup\n"); |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 2026 | return -EINVAL; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2027 | } |
| 2028 | |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 2029 | return 0; |
| 2030 | } |
| 2031 | |
| 2032 | static int dwc3_gadget_wakeup(struct usb_gadget *g) |
| 2033 | { |
| 2034 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 2035 | unsigned long flags; |
| 2036 | int ret; |
| 2037 | |
| 2038 | spin_lock_irqsave(&dwc->lock, flags); |
| 2039 | ret = __dwc3_gadget_wakeup(dwc); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2040 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 2041 | |
| 2042 | return ret; |
| 2043 | } |
| 2044 | |
| 2045 | static int dwc3_gadget_set_selfpowered(struct usb_gadget *g, |
| 2046 | int is_selfpowered) |
| 2047 | { |
| 2048 | struct dwc3 *dwc = gadget_to_dwc(g); |
Paul Zimmerman | 249a456 | 2012-02-24 17:32:16 -0800 | [diff] [blame] | 2049 | unsigned long flags; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2050 | |
Paul Zimmerman | 249a456 | 2012-02-24 17:32:16 -0800 | [diff] [blame] | 2051 | spin_lock_irqsave(&dwc->lock, flags); |
Peter Chen | bcdea50 | 2015-01-28 16:32:40 +0800 | [diff] [blame] | 2052 | g->is_selfpowered = !!is_selfpowered; |
Paul Zimmerman | 249a456 | 2012-02-24 17:32:16 -0800 | [diff] [blame] | 2053 | spin_unlock_irqrestore(&dwc->lock, flags); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2054 | |
| 2055 | return 0; |
| 2056 | } |
| 2057 | |
Wesley Cheng | ae7e861 | 2020-09-28 17:20:59 -0700 | [diff] [blame] | 2058 | static void dwc3_stop_active_transfers(struct dwc3 *dwc) |
| 2059 | { |
| 2060 | u32 epnum; |
| 2061 | |
| 2062 | for (epnum = 2; epnum < dwc->num_eps; epnum++) { |
| 2063 | struct dwc3_ep *dep; |
| 2064 | |
| 2065 | dep = dwc->eps[epnum]; |
| 2066 | if (!dep) |
| 2067 | continue; |
| 2068 | |
| 2069 | dwc3_remove_requests(dwc, dep); |
| 2070 | } |
| 2071 | } |
| 2072 | |
Felipe Balbi | 7b2a036 | 2013-12-19 13:43:19 -0600 | [diff] [blame] | 2073 | static int dwc3_gadget_run_stop(struct dwc3 *dwc, int is_on, int suspend) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2074 | { |
| 2075 | u32 reg; |
Sebastian Andrzej Siewior | 61d5824 | 2011-08-29 16:46:38 +0200 | [diff] [blame] | 2076 | u32 timeout = 500; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2077 | |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 2078 | if (pm_runtime_suspended(dwc->dev)) |
| 2079 | return 0; |
| 2080 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2081 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
Felipe Balbi | 8db7ed1 | 2012-01-18 18:32:29 +0200 | [diff] [blame] | 2082 | if (is_on) { |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 2083 | if (DWC3_VER_IS_WITHIN(DWC3, ANY, 187A)) { |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 2084 | reg &= ~DWC3_DCTL_TRGTULST_MASK; |
| 2085 | reg |= DWC3_DCTL_TRGTULST_RX_DET; |
| 2086 | } |
| 2087 | |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 2088 | if (!DWC3_VER_IS_PRIOR(DWC3, 194A)) |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 2089 | reg &= ~DWC3_DCTL_KEEP_CONNECT; |
| 2090 | reg |= DWC3_DCTL_RUN_STOP; |
Felipe Balbi | 7b2a036 | 2013-12-19 13:43:19 -0600 | [diff] [blame] | 2091 | |
| 2092 | if (dwc->has_hibernation) |
| 2093 | reg |= DWC3_DCTL_KEEP_CONNECT; |
| 2094 | |
Felipe Balbi | 9fcb3bd | 2013-02-08 17:55:58 +0200 | [diff] [blame] | 2095 | dwc->pullups_connected = true; |
Felipe Balbi | 8db7ed1 | 2012-01-18 18:32:29 +0200 | [diff] [blame] | 2096 | } else { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2097 | reg &= ~DWC3_DCTL_RUN_STOP; |
Felipe Balbi | 7b2a036 | 2013-12-19 13:43:19 -0600 | [diff] [blame] | 2098 | |
| 2099 | if (dwc->has_hibernation && !suspend) |
| 2100 | reg &= ~DWC3_DCTL_KEEP_CONNECT; |
| 2101 | |
Felipe Balbi | 9fcb3bd | 2013-02-08 17:55:58 +0200 | [diff] [blame] | 2102 | dwc->pullups_connected = false; |
Felipe Balbi | 8db7ed1 | 2012-01-18 18:32:29 +0200 | [diff] [blame] | 2103 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2104 | |
Thinh Nguyen | 5b73821 | 2019-10-23 19:15:43 -0700 | [diff] [blame] | 2105 | dwc3_gadget_dctl_write_safe(dwc, reg); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2106 | |
| 2107 | do { |
| 2108 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
Felipe Balbi | b6d4e16 | 2016-06-09 16:47:05 +0300 | [diff] [blame] | 2109 | reg &= DWC3_DSTS_DEVCTRLHLT; |
| 2110 | } while (--timeout && !(!is_on ^ !reg)); |
Felipe Balbi | f2df679 | 2016-06-09 16:31:34 +0300 | [diff] [blame] | 2111 | |
| 2112 | if (!timeout) |
| 2113 | return -ETIMEDOUT; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2114 | |
Pratyush Anand | 6f17f74 | 2012-07-02 10:21:55 +0530 | [diff] [blame] | 2115 | return 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2116 | } |
| 2117 | |
Wesley Cheng | ae7e861 | 2020-09-28 17:20:59 -0700 | [diff] [blame] | 2118 | static void dwc3_gadget_disable_irq(struct dwc3 *dwc); |
| 2119 | static void __dwc3_gadget_stop(struct dwc3 *dwc); |
Wesley Cheng | dd8363f | 2020-12-29 15:00:37 -0800 | [diff] [blame] | 2120 | static int __dwc3_gadget_start(struct dwc3 *dwc); |
Wesley Cheng | ae7e861 | 2020-09-28 17:20:59 -0700 | [diff] [blame] | 2121 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2122 | static int dwc3_gadget_pullup(struct usb_gadget *g, int is_on) |
| 2123 | { |
| 2124 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 2125 | unsigned long flags; |
Pratyush Anand | 6f17f74 | 2012-07-02 10:21:55 +0530 | [diff] [blame] | 2126 | int ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2127 | |
| 2128 | is_on = !!is_on; |
| 2129 | |
Baolin Wang | bb01473 | 2016-10-14 17:11:33 +0800 | [diff] [blame] | 2130 | /* |
| 2131 | * Per databook, when we want to stop the gadget, if a control transfer |
| 2132 | * is still in process, complete it and get the core into setup phase. |
| 2133 | */ |
| 2134 | if (!is_on && dwc->ep0state != EP0_SETUP_PHASE) { |
| 2135 | reinit_completion(&dwc->ep0_in_setup); |
| 2136 | |
| 2137 | ret = wait_for_completion_timeout(&dwc->ep0_in_setup, |
| 2138 | msecs_to_jiffies(DWC3_PULL_UP_TIMEOUT)); |
Wesley Cheng | 01da7c1 | 2021-08-24 21:28:55 -0700 | [diff] [blame] | 2139 | if (ret == 0) |
| 2140 | dev_warn(dwc->dev, "timed out waiting for SETUP phase\n"); |
Baolin Wang | bb01473 | 2016-10-14 17:11:33 +0800 | [diff] [blame] | 2141 | } |
| 2142 | |
Wesley Cheng | ae7e861 | 2020-09-28 17:20:59 -0700 | [diff] [blame] | 2143 | /* |
Wesley Cheng | 98c83d7 | 2021-08-03 23:24:05 -0700 | [diff] [blame] | 2144 | * Avoid issuing a runtime resume if the device is already in the |
| 2145 | * suspended state during gadget disconnect. DWC3 gadget was already |
| 2146 | * halted/stopped during runtime suspend. |
| 2147 | */ |
| 2148 | if (!is_on) { |
| 2149 | pm_runtime_barrier(dwc->dev); |
| 2150 | if (pm_runtime_suspended(dwc->dev)) |
| 2151 | return 0; |
| 2152 | } |
| 2153 | |
| 2154 | /* |
Wesley Cheng | 395d273 | 2020-12-29 15:05:35 -0800 | [diff] [blame] | 2155 | * Check the return value for successful resume, or error. For a |
| 2156 | * successful resume, the DWC3 runtime PM resume routine will handle |
| 2157 | * the run stop sequence, so avoid duplicate operations here. |
| 2158 | */ |
| 2159 | ret = pm_runtime_get_sync(dwc->dev); |
| 2160 | if (!ret || ret < 0) { |
| 2161 | pm_runtime_put(dwc->dev); |
| 2162 | return 0; |
| 2163 | } |
| 2164 | |
| 2165 | /* |
Wesley Cheng | 9e0677c | 2021-05-20 21:23:57 -0700 | [diff] [blame] | 2166 | * Synchronize and disable any further event handling while controller |
| 2167 | * is being enabled/disabled. |
Wesley Cheng | ae7e861 | 2020-09-28 17:20:59 -0700 | [diff] [blame] | 2168 | */ |
Wesley Cheng | 9e0677c | 2021-05-20 21:23:57 -0700 | [diff] [blame] | 2169 | disable_irq(dwc->irq_gadget); |
Wesley Cheng | ae7e861 | 2020-09-28 17:20:59 -0700 | [diff] [blame] | 2170 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2171 | spin_lock_irqsave(&dwc->lock, flags); |
Wesley Cheng | ae7e861 | 2020-09-28 17:20:59 -0700 | [diff] [blame] | 2172 | |
| 2173 | if (!is_on) { |
| 2174 | u32 count; |
| 2175 | |
Wesley Cheng | c7bb96a | 2021-03-11 15:59:02 -0800 | [diff] [blame] | 2176 | dwc->connected = false; |
Wesley Cheng | ae7e861 | 2020-09-28 17:20:59 -0700 | [diff] [blame] | 2177 | /* |
| 2178 | * In the Synopsis DesignWare Cores USB3 Databook Rev. 3.30a |
| 2179 | * Section 4.1.8 Table 4-7, it states that for a device-initiated |
| 2180 | * disconnect, the SW needs to ensure that it sends "a DEPENDXFER |
| 2181 | * command for any active transfers" before clearing the RunStop |
| 2182 | * bit. |
| 2183 | */ |
| 2184 | dwc3_stop_active_transfers(dwc); |
| 2185 | __dwc3_gadget_stop(dwc); |
| 2186 | |
| 2187 | /* |
| 2188 | * In the Synopsis DesignWare Cores USB3 Databook Rev. 3.30a |
| 2189 | * Section 1.3.4, it mentions that for the DEVCTRLHLT bit, the |
| 2190 | * "software needs to acknowledge the events that are generated |
| 2191 | * (by writing to GEVNTCOUNTn) while it is waiting for this bit |
| 2192 | * to be set to '1'." |
| 2193 | */ |
| 2194 | count = dwc3_readl(dwc->regs, DWC3_GEVNTCOUNT(0)); |
| 2195 | count &= DWC3_GEVNTCOUNT_MASK; |
| 2196 | if (count > 0) { |
| 2197 | dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), count); |
| 2198 | dwc->ev_buf->lpos = (dwc->ev_buf->lpos + count) % |
| 2199 | dwc->ev_buf->length; |
| 2200 | } |
Wesley Cheng | dd8363f | 2020-12-29 15:00:37 -0800 | [diff] [blame] | 2201 | } else { |
| 2202 | __dwc3_gadget_start(dwc); |
Wesley Cheng | ae7e861 | 2020-09-28 17:20:59 -0700 | [diff] [blame] | 2203 | } |
| 2204 | |
Felipe Balbi | 7b2a036 | 2013-12-19 13:43:19 -0600 | [diff] [blame] | 2205 | ret = dwc3_gadget_run_stop(dwc, is_on, false); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2206 | spin_unlock_irqrestore(&dwc->lock, flags); |
Wesley Cheng | 9e0677c | 2021-05-20 21:23:57 -0700 | [diff] [blame] | 2207 | enable_irq(dwc->irq_gadget); |
| 2208 | |
Wesley Cheng | 395d273 | 2020-12-29 15:05:35 -0800 | [diff] [blame] | 2209 | pm_runtime_put(dwc->dev); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2210 | |
Pratyush Anand | 6f17f74 | 2012-07-02 10:21:55 +0530 | [diff] [blame] | 2211 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2212 | } |
| 2213 | |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 2214 | static void dwc3_gadget_enable_irq(struct dwc3 *dwc) |
| 2215 | { |
| 2216 | u32 reg; |
| 2217 | |
| 2218 | /* Enable all but Start and End of Frame IRQs */ |
| 2219 | reg = (DWC3_DEVTEN_VNDRDEVTSTRCVEDEN | |
| 2220 | DWC3_DEVTEN_EVNTOVERFLOWEN | |
| 2221 | DWC3_DEVTEN_CMDCMPLTEN | |
| 2222 | DWC3_DEVTEN_ERRTICERREN | |
| 2223 | DWC3_DEVTEN_WKUPEVTEN | |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 2224 | DWC3_DEVTEN_CONNECTDONEEN | |
| 2225 | DWC3_DEVTEN_USBRSTEN | |
| 2226 | DWC3_DEVTEN_DISCONNEVTEN); |
| 2227 | |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 2228 | if (DWC3_VER_IS_PRIOR(DWC3, 250A)) |
Felipe Balbi | 799e9dc | 2016-09-23 11:20:40 +0300 | [diff] [blame] | 2229 | reg |= DWC3_DEVTEN_ULSTCNGEN; |
| 2230 | |
Jack Pham | 45f37f5 | 2021-04-28 02:01:10 -0700 | [diff] [blame] | 2231 | /* On 2.30a and above this bit enables U3/L2-L1 Suspend Events */ |
| 2232 | if (!DWC3_VER_IS_PRIOR(DWC3, 230A)) |
| 2233 | reg |= DWC3_DEVTEN_EOPFEN; |
| 2234 | |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 2235 | dwc3_writel(dwc->regs, DWC3_DEVTEN, reg); |
| 2236 | } |
| 2237 | |
| 2238 | static void dwc3_gadget_disable_irq(struct dwc3 *dwc) |
| 2239 | { |
| 2240 | /* mask all interrupts */ |
| 2241 | dwc3_writel(dwc->regs, DWC3_DEVTEN, 0x00); |
| 2242 | } |
| 2243 | |
| 2244 | static irqreturn_t dwc3_interrupt(int irq, void *_dwc); |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 2245 | static irqreturn_t dwc3_thread_interrupt(int irq, void *_dwc); |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 2246 | |
Felipe Balbi | 4e99472 | 2016-05-13 14:09:59 +0300 | [diff] [blame] | 2247 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 2248 | * dwc3_gadget_setup_nump - calculate and initialize NUMP field of %DWC3_DCFG |
| 2249 | * @dwc: pointer to our context structure |
Felipe Balbi | 4e99472 | 2016-05-13 14:09:59 +0300 | [diff] [blame] | 2250 | * |
| 2251 | * The following looks like complex but it's actually very simple. In order to |
| 2252 | * calculate the number of packets we can burst at once on OUT transfers, we're |
| 2253 | * gonna use RxFIFO size. |
| 2254 | * |
| 2255 | * To calculate RxFIFO size we need two numbers: |
| 2256 | * MDWIDTH = size, in bits, of the internal memory bus |
| 2257 | * RAM2_DEPTH = depth, in MDWIDTH, of internal RAM2 (where RxFIFO sits) |
| 2258 | * |
| 2259 | * Given these two numbers, the formula is simple: |
| 2260 | * |
| 2261 | * RxFIFO Size = (RAM2_DEPTH * MDWIDTH / 8) - 24 - 16; |
| 2262 | * |
| 2263 | * 24 bytes is for 3x SETUP packets |
| 2264 | * 16 bytes is a clock domain crossing tolerance |
| 2265 | * |
| 2266 | * Given RxFIFO Size, NUMP = RxFIFOSize / 1024; |
| 2267 | */ |
| 2268 | static void dwc3_gadget_setup_nump(struct dwc3 *dwc) |
| 2269 | { |
| 2270 | u32 ram2_depth; |
| 2271 | u32 mdwidth; |
| 2272 | u32 nump; |
| 2273 | u32 reg; |
| 2274 | |
| 2275 | ram2_depth = DWC3_GHWPARAMS7_RAM2_DEPTH(dwc->hwparams.hwparams7); |
| 2276 | mdwidth = DWC3_GHWPARAMS0_MDWIDTH(dwc->hwparams.hwparams0); |
Thinh Nguyen | 4244ba0 | 2020-04-11 19:20:07 -0700 | [diff] [blame] | 2277 | if (DWC3_IP_IS(DWC32)) |
| 2278 | mdwidth += DWC3_GHWPARAMS6_MDWIDTH(dwc->hwparams.hwparams6); |
Felipe Balbi | 4e99472 | 2016-05-13 14:09:59 +0300 | [diff] [blame] | 2279 | |
| 2280 | nump = ((ram2_depth * mdwidth / 8) - 24 - 16) / 1024; |
| 2281 | nump = min_t(u32, nump, 16); |
| 2282 | |
| 2283 | /* update NumP */ |
| 2284 | reg = dwc3_readl(dwc->regs, DWC3_DCFG); |
| 2285 | reg &= ~DWC3_DCFG_NUMP_MASK; |
| 2286 | reg |= nump << DWC3_DCFG_NUMP_SHIFT; |
| 2287 | dwc3_writel(dwc->regs, DWC3_DCFG, reg); |
| 2288 | } |
| 2289 | |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 2290 | static int __dwc3_gadget_start(struct dwc3 *dwc) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2291 | { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2292 | struct dwc3_ep *dep; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2293 | int ret = 0; |
| 2294 | u32 reg; |
| 2295 | |
John Youn | cf40b86 | 2016-11-14 12:32:43 -0800 | [diff] [blame] | 2296 | /* |
| 2297 | * Use IMOD if enabled via dwc->imod_interval. Otherwise, if |
| 2298 | * the core supports IMOD, disable it. |
| 2299 | */ |
| 2300 | if (dwc->imod_interval) { |
| 2301 | dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), dwc->imod_interval); |
| 2302 | dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), DWC3_GEVNTCOUNT_EHB); |
| 2303 | } else if (dwc3_has_imod(dwc)) { |
| 2304 | dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), 0); |
| 2305 | } |
| 2306 | |
Felipe Balbi | 2a58f9c | 2016-04-28 10:56:28 +0300 | [diff] [blame] | 2307 | /* |
| 2308 | * We are telling dwc3 that we want to use DCFG.NUMP as ACK TP's NUMP |
| 2309 | * field instead of letting dwc3 itself calculate that automatically. |
| 2310 | * |
| 2311 | * This way, we maximize the chances that we'll be able to get several |
| 2312 | * bursts of data without going through any sort of endpoint throttling. |
| 2313 | */ |
| 2314 | reg = dwc3_readl(dwc->regs, DWC3_GRXTHRCFG); |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 2315 | if (DWC3_IP_IS(DWC3)) |
Thinh Nguyen | 01b0e2c | 2018-03-16 15:34:13 -0700 | [diff] [blame] | 2316 | reg &= ~DWC3_GRXTHRCFG_PKTCNTSEL; |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 2317 | else |
| 2318 | reg &= ~DWC31_GRXTHRCFG_PKTCNTSEL; |
Thinh Nguyen | 01b0e2c | 2018-03-16 15:34:13 -0700 | [diff] [blame] | 2319 | |
Felipe Balbi | 2a58f9c | 2016-04-28 10:56:28 +0300 | [diff] [blame] | 2320 | dwc3_writel(dwc->regs, DWC3_GRXTHRCFG, reg); |
| 2321 | |
Felipe Balbi | 4e99472 | 2016-05-13 14:09:59 +0300 | [diff] [blame] | 2322 | dwc3_gadget_setup_nump(dwc); |
| 2323 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2324 | /* Start with SuperSpeed Default */ |
| 2325 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512); |
| 2326 | |
| 2327 | dep = dwc->eps[0]; |
Felipe Balbi | a2d23f0 | 2018-04-09 12:40:48 +0300 | [diff] [blame] | 2328 | ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_INIT); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2329 | if (ret) { |
| 2330 | dev_err(dwc->dev, "failed to enable %s\n", dep->name); |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 2331 | goto err0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2332 | } |
| 2333 | |
| 2334 | dep = dwc->eps[1]; |
Felipe Balbi | a2d23f0 | 2018-04-09 12:40:48 +0300 | [diff] [blame] | 2335 | ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_INIT); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2336 | if (ret) { |
| 2337 | dev_err(dwc->dev, "failed to enable %s\n", dep->name); |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 2338 | goto err1; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2339 | } |
| 2340 | |
| 2341 | /* begin to receive SETUP packets */ |
Felipe Balbi | c7fcdeb | 2011-08-27 22:28:36 +0300 | [diff] [blame] | 2342 | dwc->ep0state = EP0_SETUP_PHASE; |
Zeng Tao | 88b1bb1 | 2018-12-26 19:22:00 +0800 | [diff] [blame] | 2343 | dwc->link_state = DWC3_LINK_STATE_SS_DIS; |
Wesley Cheng | 01da7c1 | 2021-08-24 21:28:55 -0700 | [diff] [blame] | 2344 | dwc->delayed_status = false; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2345 | dwc3_ep0_out_start(dwc); |
| 2346 | |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 2347 | dwc3_gadget_enable_irq(dwc); |
| 2348 | |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 2349 | return 0; |
| 2350 | |
| 2351 | err1: |
| 2352 | __dwc3_gadget_ep_disable(dwc->eps[0]); |
| 2353 | |
| 2354 | err0: |
| 2355 | return ret; |
| 2356 | } |
| 2357 | |
| 2358 | static int dwc3_gadget_start(struct usb_gadget *g, |
| 2359 | struct usb_gadget_driver *driver) |
| 2360 | { |
| 2361 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 2362 | unsigned long flags; |
| 2363 | int ret = 0; |
| 2364 | int irq; |
| 2365 | |
Roger Quadros | 9522def | 2016-06-10 14:48:38 +0300 | [diff] [blame] | 2366 | irq = dwc->irq_gadget; |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 2367 | ret = request_threaded_irq(irq, dwc3_interrupt, dwc3_thread_interrupt, |
| 2368 | IRQF_SHARED, "dwc3", dwc->ev_buf); |
| 2369 | if (ret) { |
| 2370 | dev_err(dwc->dev, "failed to request irq #%d --> %d\n", |
| 2371 | irq, ret); |
| 2372 | goto err0; |
| 2373 | } |
| 2374 | |
| 2375 | spin_lock_irqsave(&dwc->lock, flags); |
| 2376 | if (dwc->gadget_driver) { |
| 2377 | dev_err(dwc->dev, "%s is already bound to %s\n", |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 2378 | dwc->gadget->name, |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 2379 | dwc->gadget_driver->driver.name); |
| 2380 | ret = -EBUSY; |
| 2381 | goto err1; |
| 2382 | } |
| 2383 | |
| 2384 | dwc->gadget_driver = driver; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2385 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 2386 | |
| 2387 | return 0; |
| 2388 | |
Felipe Balbi | b0d7ffd | 2013-06-27 10:00:18 +0300 | [diff] [blame] | 2389 | err1: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2390 | spin_unlock_irqrestore(&dwc->lock, flags); |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 2391 | free_irq(irq, dwc); |
Felipe Balbi | b0d7ffd | 2013-06-27 10:00:18 +0300 | [diff] [blame] | 2392 | |
| 2393 | err0: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2394 | return ret; |
| 2395 | } |
| 2396 | |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 2397 | static void __dwc3_gadget_stop(struct dwc3 *dwc) |
| 2398 | { |
| 2399 | dwc3_gadget_disable_irq(dwc); |
| 2400 | __dwc3_gadget_ep_disable(dwc->eps[0]); |
| 2401 | __dwc3_gadget_ep_disable(dwc->eps[1]); |
| 2402 | } |
| 2403 | |
Felipe Balbi | 22835b8 | 2014-10-17 12:05:12 -0500 | [diff] [blame] | 2404 | static int dwc3_gadget_stop(struct usb_gadget *g) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2405 | { |
| 2406 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 2407 | unsigned long flags; |
| 2408 | |
| 2409 | spin_lock_irqsave(&dwc->lock, flags); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2410 | dwc->gadget_driver = NULL; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2411 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 2412 | |
Felipe Balbi | 3f308d1 | 2016-05-16 14:17:06 +0300 | [diff] [blame] | 2413 | free_irq(dwc->irq_gadget, dwc->ev_buf); |
Felipe Balbi | b0d7ffd | 2013-06-27 10:00:18 +0300 | [diff] [blame] | 2414 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2415 | return 0; |
| 2416 | } |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 2417 | |
Anurag Kumar Vulisha | 729dcff | 2019-05-10 12:37:28 +0530 | [diff] [blame] | 2418 | static void dwc3_gadget_config_params(struct usb_gadget *g, |
| 2419 | struct usb_dcd_config_params *params) |
| 2420 | { |
| 2421 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 2422 | |
Thinh Nguyen | 54fb5ba | 2019-08-19 18:36:06 -0700 | [diff] [blame] | 2423 | params->besl_baseline = USB_DEFAULT_BESL_UNSPECIFIED; |
| 2424 | params->besl_deep = USB_DEFAULT_BESL_UNSPECIFIED; |
| 2425 | |
| 2426 | /* Recommended BESL */ |
| 2427 | if (!dwc->dis_enblslpm_quirk) { |
Thinh Nguyen | 17b6370 | 2019-08-29 18:00:16 -0700 | [diff] [blame] | 2428 | /* |
| 2429 | * If the recommended BESL baseline is 0 or if the BESL deep is |
| 2430 | * less than 2, Microsoft's Windows 10 host usb stack will issue |
| 2431 | * a usb reset immediately after it receives the extended BOS |
| 2432 | * descriptor and the enumeration will fail. To maintain |
| 2433 | * compatibility with the Windows' usb stack, let's set the |
| 2434 | * recommended BESL baseline to 1 and clamp the BESL deep to be |
| 2435 | * within 2 to 15. |
| 2436 | */ |
| 2437 | params->besl_baseline = 1; |
Thinh Nguyen | 54fb5ba | 2019-08-19 18:36:06 -0700 | [diff] [blame] | 2438 | if (dwc->is_utmi_l1_suspend) |
Thinh Nguyen | 17b6370 | 2019-08-29 18:00:16 -0700 | [diff] [blame] | 2439 | params->besl_deep = |
| 2440 | clamp_t(u8, dwc->hird_threshold, 2, 15); |
Thinh Nguyen | 54fb5ba | 2019-08-19 18:36:06 -0700 | [diff] [blame] | 2441 | } |
| 2442 | |
Anurag Kumar Vulisha | 729dcff | 2019-05-10 12:37:28 +0530 | [diff] [blame] | 2443 | /* U1 Device exit Latency */ |
| 2444 | if (dwc->dis_u1_entry_quirk) |
| 2445 | params->bU1devExitLat = 0; |
| 2446 | else |
| 2447 | params->bU1devExitLat = DWC3_DEFAULT_U1_DEV_EXIT_LAT; |
| 2448 | |
| 2449 | /* U2 Device exit Latency */ |
| 2450 | if (dwc->dis_u2_entry_quirk) |
| 2451 | params->bU2DevExitLat = 0; |
| 2452 | else |
| 2453 | params->bU2DevExitLat = |
| 2454 | cpu_to_le16(DWC3_DEFAULT_U2_DEV_EXIT_LAT); |
| 2455 | } |
| 2456 | |
Felipe Balbi | 7d8d063 | 2017-06-06 16:05:23 +0300 | [diff] [blame] | 2457 | static void dwc3_gadget_set_speed(struct usb_gadget *g, |
| 2458 | enum usb_device_speed speed) |
| 2459 | { |
| 2460 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 2461 | unsigned long flags; |
| 2462 | u32 reg; |
| 2463 | |
| 2464 | spin_lock_irqsave(&dwc->lock, flags); |
| 2465 | reg = dwc3_readl(dwc->regs, DWC3_DCFG); |
| 2466 | reg &= ~(DWC3_DCFG_SPEED_MASK); |
| 2467 | |
| 2468 | /* |
| 2469 | * WORKAROUND: DWC3 revision < 2.20a have an issue |
| 2470 | * which would cause metastability state on Run/Stop |
| 2471 | * bit if we try to force the IP to USB2-only mode. |
| 2472 | * |
| 2473 | * Because of that, we cannot configure the IP to any |
| 2474 | * speed other than the SuperSpeed |
| 2475 | * |
| 2476 | * Refers to: |
| 2477 | * |
| 2478 | * STAR#9000525659: Clock Domain Crossing on DCTL in |
| 2479 | * USB 2.0 Mode |
| 2480 | */ |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 2481 | if (DWC3_VER_IS_PRIOR(DWC3, 220A) && |
Roger Quadros | 42bf02e | 2017-10-31 15:11:55 +0200 | [diff] [blame] | 2482 | !dwc->dis_metastability_quirk) { |
Felipe Balbi | 7d8d063 | 2017-06-06 16:05:23 +0300 | [diff] [blame] | 2483 | reg |= DWC3_DCFG_SUPERSPEED; |
| 2484 | } else { |
| 2485 | switch (speed) { |
| 2486 | case USB_SPEED_LOW: |
| 2487 | reg |= DWC3_DCFG_LOWSPEED; |
| 2488 | break; |
| 2489 | case USB_SPEED_FULL: |
| 2490 | reg |= DWC3_DCFG_FULLSPEED; |
| 2491 | break; |
| 2492 | case USB_SPEED_HIGH: |
| 2493 | reg |= DWC3_DCFG_HIGHSPEED; |
| 2494 | break; |
| 2495 | case USB_SPEED_SUPER: |
| 2496 | reg |= DWC3_DCFG_SUPERSPEED; |
| 2497 | break; |
| 2498 | case USB_SPEED_SUPER_PLUS: |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 2499 | if (DWC3_IP_IS(DWC3)) |
Thinh Nguyen | 2f3090c | 2018-03-16 15:35:57 -0700 | [diff] [blame] | 2500 | reg |= DWC3_DCFG_SUPERSPEED; |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 2501 | else |
| 2502 | reg |= DWC3_DCFG_SUPERSPEED_PLUS; |
Felipe Balbi | 7d8d063 | 2017-06-06 16:05:23 +0300 | [diff] [blame] | 2503 | break; |
| 2504 | default: |
| 2505 | dev_err(dwc->dev, "invalid speed (%d)\n", speed); |
| 2506 | |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 2507 | if (DWC3_IP_IS(DWC3)) |
Felipe Balbi | 7d8d063 | 2017-06-06 16:05:23 +0300 | [diff] [blame] | 2508 | reg |= DWC3_DCFG_SUPERSPEED; |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 2509 | else |
| 2510 | reg |= DWC3_DCFG_SUPERSPEED_PLUS; |
Felipe Balbi | 7d8d063 | 2017-06-06 16:05:23 +0300 | [diff] [blame] | 2511 | } |
| 2512 | } |
| 2513 | dwc3_writel(dwc->regs, DWC3_DCFG, reg); |
| 2514 | |
| 2515 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 2516 | } |
| 2517 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2518 | static const struct usb_gadget_ops dwc3_gadget_ops = { |
| 2519 | .get_frame = dwc3_gadget_get_frame, |
| 2520 | .wakeup = dwc3_gadget_wakeup, |
| 2521 | .set_selfpowered = dwc3_gadget_set_selfpowered, |
| 2522 | .pullup = dwc3_gadget_pullup, |
| 2523 | .udc_start = dwc3_gadget_start, |
| 2524 | .udc_stop = dwc3_gadget_stop, |
Felipe Balbi | 7d8d063 | 2017-06-06 16:05:23 +0300 | [diff] [blame] | 2525 | .udc_set_speed = dwc3_gadget_set_speed, |
Anurag Kumar Vulisha | 729dcff | 2019-05-10 12:37:28 +0530 | [diff] [blame] | 2526 | .get_config_params = dwc3_gadget_config_params, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2527 | }; |
| 2528 | |
| 2529 | /* -------------------------------------------------------------------------- */ |
| 2530 | |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2531 | static int dwc3_gadget_init_control_endpoint(struct dwc3_ep *dep) |
| 2532 | { |
| 2533 | struct dwc3 *dwc = dep->dwc; |
| 2534 | |
| 2535 | usb_ep_set_maxpacket_limit(&dep->endpoint, 512); |
| 2536 | dep->endpoint.maxburst = 1; |
| 2537 | dep->endpoint.ops = &dwc3_gadget_ep0_ops; |
| 2538 | if (!dep->direction) |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 2539 | dwc->gadget->ep0 = &dep->endpoint; |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2540 | |
| 2541 | dep->endpoint.caps.type_control = true; |
| 2542 | |
| 2543 | return 0; |
| 2544 | } |
| 2545 | |
| 2546 | static int dwc3_gadget_init_in_endpoint(struct dwc3_ep *dep) |
| 2547 | { |
| 2548 | struct dwc3 *dwc = dep->dwc; |
| 2549 | int mdwidth; |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2550 | int size; |
| 2551 | |
| 2552 | mdwidth = DWC3_MDWIDTH(dwc->hwparams.hwparams0); |
Thinh Nguyen | 4244ba0 | 2020-04-11 19:20:07 -0700 | [diff] [blame] | 2553 | if (DWC3_IP_IS(DWC32)) |
| 2554 | mdwidth += DWC3_GHWPARAMS6_MDWIDTH(dwc->hwparams.hwparams6); |
| 2555 | |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2556 | /* MDWIDTH is represented in bits, we need it in bytes */ |
| 2557 | mdwidth /= 8; |
| 2558 | |
| 2559 | size = dwc3_readl(dwc->regs, DWC3_GTXFIFOSIZ(dep->number >> 1)); |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 2560 | if (DWC3_IP_IS(DWC3)) |
Thinh Nguyen | 586f433 | 2020-01-31 16:59:21 -0800 | [diff] [blame] | 2561 | size = DWC3_GTXFIFOSIZ_TXFDEP(size); |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 2562 | else |
| 2563 | size = DWC31_GTXFIFOSIZ_TXFDEP(size); |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2564 | |
| 2565 | /* FIFO Depth is in MDWDITH bytes. Multiply */ |
| 2566 | size *= mdwidth; |
| 2567 | |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2568 | /* |
Thinh Nguyen | d94ea531 | 2020-01-31 16:59:27 -0800 | [diff] [blame] | 2569 | * To meet performance requirement, a minimum TxFIFO size of 3x |
| 2570 | * MaxPacketSize is recommended for endpoints that support burst and a |
| 2571 | * minimum TxFIFO size of 2x MaxPacketSize for endpoints that don't |
| 2572 | * support burst. Use those numbers and we can calculate the max packet |
| 2573 | * limit as below. |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2574 | */ |
Thinh Nguyen | d94ea531 | 2020-01-31 16:59:27 -0800 | [diff] [blame] | 2575 | if (dwc->maximum_speed >= USB_SPEED_SUPER) |
| 2576 | size /= 3; |
| 2577 | else |
| 2578 | size /= 2; |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2579 | |
| 2580 | usb_ep_set_maxpacket_limit(&dep->endpoint, size); |
| 2581 | |
Thinh Nguyen | e0a93d9 | 2020-09-29 15:26:29 -0700 | [diff] [blame] | 2582 | dep->endpoint.max_streams = 16; |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2583 | dep->endpoint.ops = &dwc3_gadget_ep_ops; |
| 2584 | list_add_tail(&dep->endpoint.ep_list, |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 2585 | &dwc->gadget->ep_list); |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2586 | dep->endpoint.caps.type_iso = true; |
| 2587 | dep->endpoint.caps.type_bulk = true; |
| 2588 | dep->endpoint.caps.type_int = true; |
| 2589 | |
| 2590 | return dwc3_alloc_trb_pool(dep); |
| 2591 | } |
| 2592 | |
| 2593 | static int dwc3_gadget_init_out_endpoint(struct dwc3_ep *dep) |
| 2594 | { |
| 2595 | struct dwc3 *dwc = dep->dwc; |
Thinh Nguyen | d94ea531 | 2020-01-31 16:59:27 -0800 | [diff] [blame] | 2596 | int mdwidth; |
| 2597 | int size; |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2598 | |
Thinh Nguyen | d94ea531 | 2020-01-31 16:59:27 -0800 | [diff] [blame] | 2599 | mdwidth = DWC3_MDWIDTH(dwc->hwparams.hwparams0); |
Thinh Nguyen | 4244ba0 | 2020-04-11 19:20:07 -0700 | [diff] [blame] | 2600 | if (DWC3_IP_IS(DWC32)) |
| 2601 | mdwidth += DWC3_GHWPARAMS6_MDWIDTH(dwc->hwparams.hwparams6); |
Thinh Nguyen | d94ea531 | 2020-01-31 16:59:27 -0800 | [diff] [blame] | 2602 | |
| 2603 | /* MDWIDTH is represented in bits, convert to bytes */ |
| 2604 | mdwidth /= 8; |
| 2605 | |
| 2606 | /* All OUT endpoints share a single RxFIFO space */ |
| 2607 | size = dwc3_readl(dwc->regs, DWC3_GRXFIFOSIZ(0)); |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 2608 | if (DWC3_IP_IS(DWC3)) |
Thinh Nguyen | d94ea531 | 2020-01-31 16:59:27 -0800 | [diff] [blame] | 2609 | size = DWC3_GRXFIFOSIZ_RXFDEP(size); |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 2610 | else |
| 2611 | size = DWC31_GRXFIFOSIZ_RXFDEP(size); |
Thinh Nguyen | d94ea531 | 2020-01-31 16:59:27 -0800 | [diff] [blame] | 2612 | |
| 2613 | /* FIFO depth is in MDWDITH bytes */ |
| 2614 | size *= mdwidth; |
| 2615 | |
| 2616 | /* |
| 2617 | * To meet performance requirement, a minimum recommended RxFIFO size |
| 2618 | * is defined as follow: |
| 2619 | * RxFIFO size >= (3 x MaxPacketSize) + |
| 2620 | * (3 x 8 bytes setup packets size) + (16 bytes clock crossing margin) |
| 2621 | * |
| 2622 | * Then calculate the max packet limit as below. |
| 2623 | */ |
| 2624 | size -= (3 * 8) + 16; |
| 2625 | if (size < 0) |
| 2626 | size = 0; |
| 2627 | else |
| 2628 | size /= 3; |
| 2629 | |
| 2630 | usb_ep_set_maxpacket_limit(&dep->endpoint, size); |
Thinh Nguyen | e0a93d9 | 2020-09-29 15:26:29 -0700 | [diff] [blame] | 2631 | dep->endpoint.max_streams = 16; |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2632 | dep->endpoint.ops = &dwc3_gadget_ep_ops; |
| 2633 | list_add_tail(&dep->endpoint.ep_list, |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 2634 | &dwc->gadget->ep_list); |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2635 | dep->endpoint.caps.type_iso = true; |
| 2636 | dep->endpoint.caps.type_bulk = true; |
| 2637 | dep->endpoint.caps.type_int = true; |
| 2638 | |
| 2639 | return dwc3_alloc_trb_pool(dep); |
| 2640 | } |
| 2641 | |
| 2642 | static int dwc3_gadget_init_endpoint(struct dwc3 *dwc, u8 epnum) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2643 | { |
| 2644 | struct dwc3_ep *dep; |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2645 | bool direction = epnum & 1; |
| 2646 | int ret; |
| 2647 | u8 num = epnum >> 1; |
| 2648 | |
| 2649 | dep = kzalloc(sizeof(*dep), GFP_KERNEL); |
| 2650 | if (!dep) |
| 2651 | return -ENOMEM; |
| 2652 | |
| 2653 | dep->dwc = dwc; |
| 2654 | dep->number = epnum; |
| 2655 | dep->direction = direction; |
| 2656 | dep->regs = dwc->regs + DWC3_DEP_BASE(epnum); |
| 2657 | dwc->eps[epnum] = dep; |
Thinh Nguyen | d92021f | 2018-11-14 22:56:54 -0800 | [diff] [blame] | 2658 | dep->combo_num = 0; |
| 2659 | dep->start_cmd_status = 0; |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2660 | |
| 2661 | snprintf(dep->name, sizeof(dep->name), "ep%u%s", num, |
| 2662 | direction ? "in" : "out"); |
| 2663 | |
| 2664 | dep->endpoint.name = dep->name; |
| 2665 | |
| 2666 | if (!(dep->number > 1)) { |
| 2667 | dep->endpoint.desc = &dwc3_gadget_ep0_desc; |
| 2668 | dep->endpoint.comp_desc = NULL; |
| 2669 | } |
| 2670 | |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2671 | if (num == 0) |
| 2672 | ret = dwc3_gadget_init_control_endpoint(dep); |
| 2673 | else if (direction) |
| 2674 | ret = dwc3_gadget_init_in_endpoint(dep); |
| 2675 | else |
| 2676 | ret = dwc3_gadget_init_out_endpoint(dep); |
| 2677 | |
| 2678 | if (ret) |
| 2679 | return ret; |
| 2680 | |
| 2681 | dep->endpoint.caps.dir_in = direction; |
| 2682 | dep->endpoint.caps.dir_out = !direction; |
| 2683 | |
| 2684 | INIT_LIST_HEAD(&dep->pending_list); |
| 2685 | INIT_LIST_HEAD(&dep->started_list); |
Felipe Balbi | d5443bb | 2018-08-01 13:53:29 +0300 | [diff] [blame] | 2686 | INIT_LIST_HEAD(&dep->cancelled_list); |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2687 | |
Jack Pham | e52d43c | 2021-05-29 12:29:32 -0700 | [diff] [blame] | 2688 | dwc3_debugfs_create_endpoint_dir(dep); |
| 2689 | |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2690 | return 0; |
| 2691 | } |
| 2692 | |
| 2693 | static int dwc3_gadget_init_endpoints(struct dwc3 *dwc, u8 total) |
| 2694 | { |
Bryan O'Donoghue | 47d3946 | 2017-01-31 20:58:10 +0000 | [diff] [blame] | 2695 | u8 epnum; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2696 | |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 2697 | INIT_LIST_HEAD(&dwc->gadget->ep_list); |
Bryan O'Donoghue | f3bcfc7 | 2017-01-31 20:58:11 +0000 | [diff] [blame] | 2698 | |
Andy Shevchenko | 46b780d | 2017-06-12 15:11:25 +0300 | [diff] [blame] | 2699 | for (epnum = 0; epnum < total; epnum++) { |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2700 | int ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2701 | |
Felipe Balbi | 8f1c99c | 2018-04-09 11:06:09 +0300 | [diff] [blame] | 2702 | ret = dwc3_gadget_init_endpoint(dwc, epnum); |
| 2703 | if (ret) |
| 2704 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2705 | } |
| 2706 | |
| 2707 | return 0; |
| 2708 | } |
| 2709 | |
| 2710 | static void dwc3_gadget_free_endpoints(struct dwc3 *dwc) |
| 2711 | { |
| 2712 | struct dwc3_ep *dep; |
| 2713 | u8 epnum; |
| 2714 | |
| 2715 | for (epnum = 0; epnum < DWC3_ENDPOINTS_NUM; epnum++) { |
| 2716 | dep = dwc->eps[epnum]; |
Felipe Balbi | 6a1e3ef | 2011-05-05 16:21:59 +0300 | [diff] [blame] | 2717 | if (!dep) |
| 2718 | continue; |
George Cherian | 5bf8fae | 2013-05-27 14:35:49 +0530 | [diff] [blame] | 2719 | /* |
| 2720 | * Physical endpoints 0 and 1 are special; they form the |
| 2721 | * bi-directional USB endpoint 0. |
| 2722 | * |
| 2723 | * For those two physical endpoints, we don't allocate a TRB |
| 2724 | * pool nor do we add them the endpoints list. Due to that, we |
| 2725 | * shouldn't do these two operations otherwise we would end up |
| 2726 | * with all sorts of bugs when removing dwc3.ko. |
| 2727 | */ |
| 2728 | if (epnum != 0 && epnum != 1) { |
| 2729 | dwc3_free_trb_pool(dep); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2730 | list_del(&dep->endpoint.ep_list); |
George Cherian | 5bf8fae | 2013-05-27 14:35:49 +0530 | [diff] [blame] | 2731 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2732 | |
Jack Pham | e52d43c | 2021-05-29 12:29:32 -0700 | [diff] [blame] | 2733 | debugfs_remove_recursive(debugfs_lookup(dep->name, dwc->root)); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2734 | kfree(dep); |
| 2735 | } |
| 2736 | } |
| 2737 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2738 | /* -------------------------------------------------------------------------- */ |
Felipe Balbi | e5caff6 | 2013-02-26 15:11:05 +0200 | [diff] [blame] | 2739 | |
Felipe Balbi | 8f608e8 | 2018-03-27 10:53:29 +0300 | [diff] [blame] | 2740 | static int dwc3_gadget_ep_reclaim_completed_trb(struct dwc3_ep *dep, |
| 2741 | struct dwc3_request *req, struct dwc3_trb *trb, |
| 2742 | const struct dwc3_event_depevt *event, int status, int chain) |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2743 | { |
| 2744 | unsigned int count; |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2745 | |
Felipe Balbi | dc55c67 | 2016-08-12 13:20:32 +0300 | [diff] [blame] | 2746 | dwc3_ep_inc_deq(dep); |
Felipe Balbi | a9c3ca5 | 2016-10-05 14:24:37 +0300 | [diff] [blame] | 2747 | |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 2748 | trace_dwc3_complete_trb(dep, trb); |
Felipe Balbi | 09fe1f8 | 2018-08-01 13:32:07 +0300 | [diff] [blame] | 2749 | req->num_trbs--; |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 2750 | |
Felipe Balbi | e5b36ae | 2016-08-10 11:13:26 +0300 | [diff] [blame] | 2751 | /* |
| 2752 | * If we're in the middle of series of chained TRBs and we |
| 2753 | * receive a short transfer along the way, DWC3 will skip |
| 2754 | * through all TRBs including the last TRB in the chain (the |
| 2755 | * where CHN bit is zero. DWC3 will also avoid clearing HWO |
| 2756 | * bit and SW has to do it manually. |
| 2757 | * |
| 2758 | * We're going to do that here to avoid problems of HW trying |
| 2759 | * to use bogus TRBs for transfers. |
| 2760 | */ |
| 2761 | if (chain && (trb->ctrl & DWC3_TRB_CTRL_HWO)) |
| 2762 | trb->ctrl &= ~DWC3_TRB_CTRL_HWO; |
| 2763 | |
Felipe Balbi | c6267a5 | 2017-01-05 14:58:46 +0200 | [diff] [blame] | 2764 | /* |
Thinh Nguyen | 6abfa0f | 2018-11-15 19:03:27 -0800 | [diff] [blame] | 2765 | * For isochronous transfers, the first TRB in a service interval must |
| 2766 | * have the Isoc-First type. Track and report its interval frame number. |
| 2767 | */ |
| 2768 | if (usb_endpoint_xfer_isoc(dep->endpoint.desc) && |
| 2769 | (trb->ctrl & DWC3_TRBCTL_ISOCHRONOUS_FIRST)) { |
| 2770 | unsigned int frame_number; |
| 2771 | |
| 2772 | frame_number = DWC3_TRB_CTRL_GET_SID_SOFN(trb->ctrl); |
| 2773 | frame_number &= ~(dep->interval - 1); |
| 2774 | req->request.frame_number = frame_number; |
| 2775 | } |
| 2776 | |
| 2777 | /* |
Thinh Nguyen | a2841f4 | 2020-09-24 01:21:36 -0700 | [diff] [blame] | 2778 | * We use bounce buffer for requests that needs extra TRB or OUT ZLP. If |
| 2779 | * this TRB points to the bounce buffer address, it's a MPS alignment |
| 2780 | * TRB. Don't add it to req->remaining calculation. |
Felipe Balbi | c6267a5 | 2017-01-05 14:58:46 +0200 | [diff] [blame] | 2781 | */ |
Thinh Nguyen | a2841f4 | 2020-09-24 01:21:36 -0700 | [diff] [blame] | 2782 | if (trb->bpl == lower_32_bits(dep->dwc->bounce_addr) && |
| 2783 | trb->bph == upper_32_bits(dep->dwc->bounce_addr)) { |
Felipe Balbi | c6267a5 | 2017-01-05 14:58:46 +0200 | [diff] [blame] | 2784 | trb->ctrl &= ~DWC3_TRB_CTRL_HWO; |
| 2785 | return 1; |
| 2786 | } |
| 2787 | |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2788 | count = trb->size & DWC3_TRB_SIZE_MASK; |
Felipe Balbi | e62c5bc5 | 2016-10-25 13:47:21 +0300 | [diff] [blame] | 2789 | req->remaining += count; |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2790 | |
Felipe Balbi | 35b2719 | 2017-03-08 13:56:37 +0200 | [diff] [blame] | 2791 | if ((trb->ctrl & DWC3_TRB_CTRL_HWO) && status != -ESHUTDOWN) |
| 2792 | return 1; |
| 2793 | |
Felipe Balbi | d80fe1b | 2018-04-06 11:04:21 +0300 | [diff] [blame] | 2794 | if (event->status & DEPEVT_STATUS_SHORT && !chain) |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2795 | return 1; |
Felipe Balbi | f99f53f | 2016-08-12 13:19:20 +0300 | [diff] [blame] | 2796 | |
Anurag Kumar Vulisha | 5ee8589 | 2020-01-27 19:30:46 +0000 | [diff] [blame] | 2797 | if ((trb->ctrl & DWC3_TRB_CTRL_IOC) || |
| 2798 | (trb->ctrl & DWC3_TRB_CTRL_LST)) |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2799 | return 1; |
Felipe Balbi | f99f53f | 2016-08-12 13:19:20 +0300 | [diff] [blame] | 2800 | |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2801 | return 0; |
| 2802 | } |
| 2803 | |
Felipe Balbi | d369295 | 2018-03-29 13:32:10 +0300 | [diff] [blame] | 2804 | static int dwc3_gadget_ep_reclaim_trb_sg(struct dwc3_ep *dep, |
| 2805 | struct dwc3_request *req, const struct dwc3_event_depevt *event, |
| 2806 | int status) |
| 2807 | { |
| 2808 | struct dwc3_trb *trb = &dep->trb_pool[dep->trb_dequeue]; |
| 2809 | struct scatterlist *sg = req->sg; |
| 2810 | struct scatterlist *s; |
Thinh Nguyen | adccf17 | 2021-05-12 20:17:09 -0700 | [diff] [blame] | 2811 | unsigned int num_queued = req->num_queued_sgs; |
Felipe Balbi | d369295 | 2018-03-29 13:32:10 +0300 | [diff] [blame] | 2812 | unsigned int i; |
| 2813 | int ret = 0; |
| 2814 | |
Thinh Nguyen | adccf17 | 2021-05-12 20:17:09 -0700 | [diff] [blame] | 2815 | for_each_sg(sg, s, num_queued, i) { |
Felipe Balbi | d369295 | 2018-03-29 13:32:10 +0300 | [diff] [blame] | 2816 | trb = &dep->trb_pool[dep->trb_dequeue]; |
| 2817 | |
Felipe Balbi | d369295 | 2018-03-29 13:32:10 +0300 | [diff] [blame] | 2818 | req->sg = sg_next(s); |
Thinh Nguyen | adccf17 | 2021-05-12 20:17:09 -0700 | [diff] [blame] | 2819 | req->num_queued_sgs--; |
Felipe Balbi | d369295 | 2018-03-29 13:32:10 +0300 | [diff] [blame] | 2820 | |
| 2821 | ret = dwc3_gadget_ep_reclaim_completed_trb(dep, req, |
| 2822 | trb, event, status, true); |
| 2823 | if (ret) |
| 2824 | break; |
| 2825 | } |
| 2826 | |
| 2827 | return ret; |
| 2828 | } |
| 2829 | |
| 2830 | static int dwc3_gadget_ep_reclaim_trb_linear(struct dwc3_ep *dep, |
| 2831 | struct dwc3_request *req, const struct dwc3_event_depevt *event, |
| 2832 | int status) |
| 2833 | { |
| 2834 | struct dwc3_trb *trb = &dep->trb_pool[dep->trb_dequeue]; |
| 2835 | |
| 2836 | return dwc3_gadget_ep_reclaim_completed_trb(dep, req, trb, |
| 2837 | event, status, false); |
| 2838 | } |
| 2839 | |
Felipe Balbi | e0c42ce | 2018-04-06 15:37:30 +0300 | [diff] [blame] | 2840 | static bool dwc3_gadget_ep_request_completed(struct dwc3_request *req) |
| 2841 | { |
Thinh Nguyen | adccf17 | 2021-05-12 20:17:09 -0700 | [diff] [blame] | 2842 | return req->num_pending_sgs == 0 && req->num_queued_sgs == 0; |
Felipe Balbi | e0c42ce | 2018-04-06 15:37:30 +0300 | [diff] [blame] | 2843 | } |
| 2844 | |
Felipe Balbi | f38e35d | 2018-04-06 15:56:35 +0300 | [diff] [blame] | 2845 | static int dwc3_gadget_ep_cleanup_completed_request(struct dwc3_ep *dep, |
| 2846 | const struct dwc3_event_depevt *event, |
| 2847 | struct dwc3_request *req, int status) |
| 2848 | { |
| 2849 | int ret; |
| 2850 | |
Thinh Nguyen | adccf17 | 2021-05-12 20:17:09 -0700 | [diff] [blame] | 2851 | if (req->request.num_mapped_sgs) |
Felipe Balbi | f38e35d | 2018-04-06 15:56:35 +0300 | [diff] [blame] | 2852 | ret = dwc3_gadget_ep_reclaim_trb_sg(dep, req, event, |
| 2853 | status); |
| 2854 | else |
| 2855 | ret = dwc3_gadget_ep_reclaim_trb_linear(dep, req, event, |
| 2856 | status); |
| 2857 | |
Thinh Nguyen | 690e5c2 | 2020-09-24 01:21:24 -0700 | [diff] [blame] | 2858 | req->request.actual = req->request.length - req->remaining; |
| 2859 | |
| 2860 | if (!dwc3_gadget_ep_request_completed(req)) |
| 2861 | goto out; |
| 2862 | |
Felipe Balbi | 1a22ec6 | 2018-08-01 13:15:05 +0300 | [diff] [blame] | 2863 | if (req->needs_extra_trb) { |
Felipe Balbi | f38e35d | 2018-04-06 15:56:35 +0300 | [diff] [blame] | 2864 | ret = dwc3_gadget_ep_reclaim_trb_linear(dep, req, event, |
| 2865 | status); |
Felipe Balbi | 1a22ec6 | 2018-08-01 13:15:05 +0300 | [diff] [blame] | 2866 | req->needs_extra_trb = false; |
Felipe Balbi | f38e35d | 2018-04-06 15:56:35 +0300 | [diff] [blame] | 2867 | } |
| 2868 | |
Felipe Balbi | f38e35d | 2018-04-06 15:56:35 +0300 | [diff] [blame] | 2869 | dwc3_gadget_giveback(dep, req, status); |
| 2870 | |
| 2871 | out: |
| 2872 | return ret; |
| 2873 | } |
| 2874 | |
Felipe Balbi | 12a3a4a | 2018-03-29 11:53:40 +0300 | [diff] [blame] | 2875 | static void dwc3_gadget_ep_cleanup_completed_requests(struct dwc3_ep *dep, |
Felipe Balbi | 8f608e8 | 2018-03-27 10:53:29 +0300 | [diff] [blame] | 2876 | const struct dwc3_event_depevt *event, int status) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2877 | { |
Felipe Balbi | 6afbdb5 | 2018-04-06 15:49:49 +0300 | [diff] [blame] | 2878 | struct dwc3_request *req; |
| 2879 | struct dwc3_request *tmp; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2880 | |
Felipe Balbi | 6afbdb5 | 2018-04-06 15:49:49 +0300 | [diff] [blame] | 2881 | list_for_each_entry_safe(req, tmp, &dep->started_list, list) { |
Felipe Balbi | fee73e6 | 2018-04-06 15:50:29 +0300 | [diff] [blame] | 2882 | int ret; |
Felipe Balbi | e5b36ae | 2016-08-10 11:13:26 +0300 | [diff] [blame] | 2883 | |
Felipe Balbi | f38e35d | 2018-04-06 15:56:35 +0300 | [diff] [blame] | 2884 | ret = dwc3_gadget_ep_cleanup_completed_request(dep, event, |
| 2885 | req, status); |
Felipe Balbi | 58f0218 | 2018-03-29 12:10:31 +0300 | [diff] [blame] | 2886 | if (ret) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2887 | break; |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2888 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2889 | } |
| 2890 | |
Thinh Nguyen | d9feef9 | 2020-03-31 01:40:42 -0700 | [diff] [blame] | 2891 | static bool dwc3_gadget_ep_should_continue(struct dwc3_ep *dep) |
| 2892 | { |
| 2893 | struct dwc3_request *req; |
| 2894 | |
| 2895 | if (!list_empty(&dep->pending_list)) |
| 2896 | return true; |
| 2897 | |
| 2898 | /* |
| 2899 | * We only need to check the first entry of the started list. We can |
| 2900 | * assume the completed requests are removed from the started list. |
| 2901 | */ |
| 2902 | req = next_request(&dep->started_list); |
| 2903 | if (!req) |
| 2904 | return false; |
| 2905 | |
| 2906 | return !dwc3_gadget_ep_request_completed(req); |
| 2907 | } |
| 2908 | |
Felipe Balbi | ee3638b | 2018-03-27 11:26:53 +0300 | [diff] [blame] | 2909 | static void dwc3_gadget_endpoint_frame_from_event(struct dwc3_ep *dep, |
| 2910 | const struct dwc3_event_depevt *event) |
| 2911 | { |
Felipe Balbi | f62afb4 | 2018-04-11 10:34:34 +0300 | [diff] [blame] | 2912 | dep->frame_number = event->parameters; |
Felipe Balbi | ee3638b | 2018-03-27 11:26:53 +0300 | [diff] [blame] | 2913 | } |
| 2914 | |
Thinh Nguyen | 2e6e9e4 | 2020-05-05 19:46:39 -0700 | [diff] [blame] | 2915 | static bool dwc3_gadget_endpoint_trbs_complete(struct dwc3_ep *dep, |
| 2916 | const struct dwc3_event_depevt *event, int status) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2917 | { |
Felipe Balbi | 8f608e8 | 2018-03-27 10:53:29 +0300 | [diff] [blame] | 2918 | struct dwc3 *dwc = dep->dwc; |
Thinh Nguyen | 2e6e9e4 | 2020-05-05 19:46:39 -0700 | [diff] [blame] | 2919 | bool no_started_trb = true; |
Felipe Balbi | 6d8a019 | 2018-03-29 12:49:28 +0300 | [diff] [blame] | 2920 | |
Felipe Balbi | 5f2e797 | 2018-03-29 11:10:45 +0300 | [diff] [blame] | 2921 | dwc3_gadget_ep_cleanup_completed_requests(dep, event, status); |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 2922 | |
Thinh Nguyen | b6842d4 | 2020-05-05 19:46:33 -0700 | [diff] [blame] | 2923 | if (dep->flags & DWC3_EP_END_TRANSFER_PENDING) |
| 2924 | goto out; |
Felipe Balbi | 6d8a019 | 2018-03-29 12:49:28 +0300 | [diff] [blame] | 2925 | |
Michael Grzeschik | f5e46aa | 2020-07-01 20:24:53 +0200 | [diff] [blame] | 2926 | if (usb_endpoint_xfer_isoc(dep->endpoint.desc) && |
| 2927 | list_empty(&dep->started_list) && |
| 2928 | (list_empty(&dep->pending_list) || status == -EXDEV)) |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 2929 | dwc3_stop_active_transfer(dep, true, true); |
Thinh Nguyen | d9feef9 | 2020-03-31 01:40:42 -0700 | [diff] [blame] | 2930 | else if (dwc3_gadget_ep_should_continue(dep)) |
Thinh Nguyen | 2e6e9e4 | 2020-05-05 19:46:39 -0700 | [diff] [blame] | 2931 | if (__dwc3_gadget_kick_transfer(dep) == 0) |
| 2932 | no_started_trb = false; |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 2933 | |
Thinh Nguyen | b6842d4 | 2020-05-05 19:46:33 -0700 | [diff] [blame] | 2934 | out: |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 2935 | /* |
| 2936 | * WORKAROUND: This is the 2nd half of U1/U2 -> U0 workaround. |
| 2937 | * See dwc3_gadget_linksts_change_interrupt() for 1st half. |
| 2938 | */ |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 2939 | if (DWC3_VER_IS_PRIOR(DWC3, 183A)) { |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 2940 | u32 reg; |
| 2941 | int i; |
| 2942 | |
| 2943 | for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) { |
Moiz Sonasath | 348e026 | 2012-08-01 14:08:30 -0500 | [diff] [blame] | 2944 | dep = dwc->eps[i]; |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 2945 | |
| 2946 | if (!(dep->flags & DWC3_EP_ENABLED)) |
| 2947 | continue; |
| 2948 | |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 2949 | if (!list_empty(&dep->started_list)) |
Thinh Nguyen | 2e6e9e4 | 2020-05-05 19:46:39 -0700 | [diff] [blame] | 2950 | return no_started_trb; |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 2951 | } |
| 2952 | |
| 2953 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 2954 | reg |= dwc->u1u2; |
| 2955 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 2956 | |
| 2957 | dwc->u1u2 = 0; |
| 2958 | } |
Thinh Nguyen | 2e6e9e4 | 2020-05-05 19:46:39 -0700 | [diff] [blame] | 2959 | |
| 2960 | return no_started_trb; |
| 2961 | } |
| 2962 | |
| 2963 | static void dwc3_gadget_endpoint_transfer_in_progress(struct dwc3_ep *dep, |
| 2964 | const struct dwc3_event_depevt *event) |
| 2965 | { |
| 2966 | int status = 0; |
| 2967 | |
| 2968 | if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) |
| 2969 | dwc3_gadget_endpoint_frame_from_event(dep, event); |
| 2970 | |
| 2971 | if (event->status & DEPEVT_STATUS_BUSERR) |
| 2972 | status = -ECONNRESET; |
| 2973 | |
| 2974 | if (event->status & DEPEVT_STATUS_MISSED_ISOC) |
| 2975 | status = -EXDEV; |
| 2976 | |
| 2977 | dwc3_gadget_endpoint_trbs_complete(dep, event, status); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2978 | } |
| 2979 | |
Thinh Nguyen | 3eaecd0 | 2020-05-05 19:46:51 -0700 | [diff] [blame] | 2980 | static void dwc3_gadget_endpoint_transfer_complete(struct dwc3_ep *dep, |
| 2981 | const struct dwc3_event_depevt *event) |
| 2982 | { |
| 2983 | int status = 0; |
| 2984 | |
| 2985 | dep->flags &= ~DWC3_EP_TRANSFER_STARTED; |
| 2986 | |
| 2987 | if (event->status & DEPEVT_STATUS_BUSERR) |
| 2988 | status = -ECONNRESET; |
| 2989 | |
Thinh Nguyen | e0d1956 | 2020-05-05 19:46:57 -0700 | [diff] [blame] | 2990 | if (dwc3_gadget_endpoint_trbs_complete(dep, event, status)) |
| 2991 | dep->flags &= ~DWC3_EP_WAIT_TRANSFER_COMPLETE; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2992 | } |
| 2993 | |
Felipe Balbi | 8f608e8 | 2018-03-27 10:53:29 +0300 | [diff] [blame] | 2994 | static void dwc3_gadget_endpoint_transfer_not_ready(struct dwc3_ep *dep, |
| 2995 | const struct dwc3_event_depevt *event) |
Felipe Balbi | 3203386 | 2018-03-27 10:47:48 +0300 | [diff] [blame] | 2996 | { |
Felipe Balbi | ee3638b | 2018-03-27 11:26:53 +0300 | [diff] [blame] | 2997 | dwc3_gadget_endpoint_frame_from_event(dep, event); |
Thinh Nguyen | 36f05d3 | 2020-03-29 16:13:10 -0700 | [diff] [blame] | 2998 | |
| 2999 | /* |
| 3000 | * The XferNotReady event is generated only once before the endpoint |
| 3001 | * starts. It will be generated again when END_TRANSFER command is |
| 3002 | * issued. For some controller versions, the XferNotReady event may be |
| 3003 | * generated while the END_TRANSFER command is still in process. Ignore |
| 3004 | * it and wait for the next XferNotReady event after the command is |
| 3005 | * completed. |
| 3006 | */ |
| 3007 | if (dep->flags & DWC3_EP_END_TRANSFER_PENDING) |
| 3008 | return; |
| 3009 | |
Felipe Balbi | 25abad6 | 2018-08-14 10:41:19 +0300 | [diff] [blame] | 3010 | (void) __dwc3_gadget_start_isoc(dep); |
Felipe Balbi | 3203386 | 2018-03-27 10:47:48 +0300 | [diff] [blame] | 3011 | } |
| 3012 | |
Thinh Nguyen | 8266b08 | 2020-07-30 16:29:03 -0700 | [diff] [blame] | 3013 | static void dwc3_gadget_endpoint_command_complete(struct dwc3_ep *dep, |
| 3014 | const struct dwc3_event_depevt *event) |
| 3015 | { |
| 3016 | u8 cmd = DEPEVT_PARAMETER_CMD(event->parameters); |
| 3017 | |
| 3018 | if (cmd != DWC3_DEPCMD_ENDTRANSFER) |
| 3019 | return; |
| 3020 | |
Thinh Nguyen | 3abf746 | 2021-10-25 16:21:10 -0700 | [diff] [blame] | 3021 | /* |
| 3022 | * The END_TRANSFER command will cause the controller to generate a |
| 3023 | * NoStream Event, and it's not due to the host DP NoStream rejection. |
| 3024 | * Ignore the next NoStream event. |
| 3025 | */ |
| 3026 | if (dep->stream_capable) |
| 3027 | dep->flags |= DWC3_EP_IGNORE_NEXT_NOSTREAM; |
| 3028 | |
Thinh Nguyen | 8266b08 | 2020-07-30 16:29:03 -0700 | [diff] [blame] | 3029 | dep->flags &= ~DWC3_EP_END_TRANSFER_PENDING; |
| 3030 | dep->flags &= ~DWC3_EP_TRANSFER_STARTED; |
| 3031 | dwc3_gadget_ep_cleanup_cancelled_requests(dep); |
| 3032 | |
| 3033 | if (dep->flags & DWC3_EP_PENDING_CLEAR_STALL) { |
| 3034 | struct dwc3 *dwc = dep->dwc; |
| 3035 | |
| 3036 | dep->flags &= ~DWC3_EP_PENDING_CLEAR_STALL; |
| 3037 | if (dwc3_send_clear_stall_ep_cmd(dep)) { |
| 3038 | struct usb_ep *ep0 = &dwc->eps[0]->endpoint; |
| 3039 | |
| 3040 | dev_err(dwc->dev, "failed to clear STALL on %s\n", dep->name); |
| 3041 | if (dwc->delayed_status) |
| 3042 | __dwc3_gadget_ep0_set_halt(ep0, 1); |
| 3043 | return; |
| 3044 | } |
| 3045 | |
| 3046 | dep->flags &= ~(DWC3_EP_STALL | DWC3_EP_WEDGE); |
| 3047 | if (dwc->delayed_status) |
| 3048 | dwc3_ep0_send_delayed_status(dwc); |
| 3049 | } |
| 3050 | |
| 3051 | if ((dep->flags & DWC3_EP_DELAY_START) && |
| 3052 | !usb_endpoint_xfer_isoc(dep->endpoint.desc)) |
| 3053 | __dwc3_gadget_kick_transfer(dep); |
| 3054 | |
| 3055 | dep->flags &= ~DWC3_EP_DELAY_START; |
| 3056 | } |
| 3057 | |
Thinh Nguyen | 140ca4c | 2020-05-05 19:47:09 -0700 | [diff] [blame] | 3058 | static void dwc3_gadget_endpoint_stream_event(struct dwc3_ep *dep, |
| 3059 | const struct dwc3_event_depevt *event) |
| 3060 | { |
| 3061 | struct dwc3 *dwc = dep->dwc; |
| 3062 | |
| 3063 | if (event->status == DEPEVT_STREAMEVT_FOUND) { |
| 3064 | dep->flags |= DWC3_EP_FIRST_STREAM_PRIMED; |
| 3065 | goto out; |
| 3066 | } |
| 3067 | |
| 3068 | /* Note: NoStream rejection event param value is 0 and not 0xFFFF */ |
| 3069 | switch (event->parameters) { |
| 3070 | case DEPEVT_STREAM_PRIME: |
| 3071 | /* |
| 3072 | * If the host can properly transition the endpoint state from |
| 3073 | * idle to prime after a NoStream rejection, there's no need to |
| 3074 | * force restarting the endpoint to reinitiate the stream. To |
| 3075 | * simplify the check, assume the host follows the USB spec if |
| 3076 | * it primed the endpoint more than once. |
| 3077 | */ |
| 3078 | if (dep->flags & DWC3_EP_FORCE_RESTART_STREAM) { |
| 3079 | if (dep->flags & DWC3_EP_FIRST_STREAM_PRIMED) |
| 3080 | dep->flags &= ~DWC3_EP_FORCE_RESTART_STREAM; |
| 3081 | else |
| 3082 | dep->flags |= DWC3_EP_FIRST_STREAM_PRIMED; |
| 3083 | } |
| 3084 | |
| 3085 | break; |
| 3086 | case DEPEVT_STREAM_NOSTREAM: |
| 3087 | if ((dep->flags & DWC3_EP_IGNORE_NEXT_NOSTREAM) || |
| 3088 | !(dep->flags & DWC3_EP_FORCE_RESTART_STREAM) || |
| 3089 | !(dep->flags & DWC3_EP_WAIT_TRANSFER_COMPLETE)) |
| 3090 | break; |
| 3091 | |
| 3092 | /* |
| 3093 | * If the host rejects a stream due to no active stream, by the |
| 3094 | * USB and xHCI spec, the endpoint will be put back to idle |
| 3095 | * state. When the host is ready (buffer added/updated), it will |
| 3096 | * prime the endpoint to inform the usb device controller. This |
| 3097 | * triggers the device controller to issue ERDY to restart the |
| 3098 | * stream. However, some hosts don't follow this and keep the |
| 3099 | * endpoint in the idle state. No prime will come despite host |
| 3100 | * streams are updated, and the device controller will not be |
| 3101 | * triggered to generate ERDY to move the next stream data. To |
| 3102 | * workaround this and maintain compatibility with various |
| 3103 | * hosts, force to reinitate the stream until the host is ready |
| 3104 | * instead of waiting for the host to prime the endpoint. |
| 3105 | */ |
Thinh Nguyen | b10e1c2 | 2020-05-05 19:47:15 -0700 | [diff] [blame] | 3106 | if (DWC3_VER_IS_WITHIN(DWC32, 100A, ANY)) { |
| 3107 | unsigned int cmd = DWC3_DGCMD_SET_ENDPOINT_PRIME; |
| 3108 | |
| 3109 | dwc3_send_gadget_generic_command(dwc, cmd, dep->number); |
| 3110 | } else { |
| 3111 | dep->flags |= DWC3_EP_DELAY_START; |
| 3112 | dwc3_stop_active_transfer(dep, true, true); |
| 3113 | return; |
| 3114 | } |
| 3115 | break; |
Thinh Nguyen | 140ca4c | 2020-05-05 19:47:09 -0700 | [diff] [blame] | 3116 | } |
| 3117 | |
| 3118 | out: |
| 3119 | dep->flags &= ~DWC3_EP_IGNORE_NEXT_NOSTREAM; |
| 3120 | } |
| 3121 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3122 | static void dwc3_endpoint_interrupt(struct dwc3 *dwc, |
| 3123 | const struct dwc3_event_depevt *event) |
| 3124 | { |
| 3125 | struct dwc3_ep *dep; |
| 3126 | u8 epnum = event->endpoint_number; |
| 3127 | |
| 3128 | dep = dwc->eps[epnum]; |
| 3129 | |
Janusz Dziedzic | d7fd41c | 2016-12-08 10:57:34 +0100 | [diff] [blame] | 3130 | if (!(dep->flags & DWC3_EP_ENABLED)) { |
Felipe Balbi | 3aec991 | 2019-01-21 13:08:44 +0200 | [diff] [blame] | 3131 | if (!(dep->flags & DWC3_EP_TRANSFER_STARTED)) |
Janusz Dziedzic | d7fd41c | 2016-12-08 10:57:34 +0100 | [diff] [blame] | 3132 | return; |
| 3133 | |
| 3134 | /* Handle only EPCMDCMPLT when EP disabled */ |
| 3135 | if (event->endpoint_event != DWC3_DEPEVT_EPCMDCMPLT) |
| 3136 | return; |
| 3137 | } |
Felipe Balbi | 3336abb | 2012-06-06 09:19:35 +0300 | [diff] [blame] | 3138 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3139 | if (epnum == 0 || epnum == 1) { |
| 3140 | dwc3_ep0_interrupt(dwc, event); |
| 3141 | return; |
| 3142 | } |
| 3143 | |
| 3144 | switch (event->endpoint_event) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3145 | case DWC3_DEPEVT_XFERINPROGRESS: |
Felipe Balbi | 8f608e8 | 2018-03-27 10:53:29 +0300 | [diff] [blame] | 3146 | dwc3_gadget_endpoint_transfer_in_progress(dep, event); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3147 | break; |
| 3148 | case DWC3_DEPEVT_XFERNOTREADY: |
Felipe Balbi | 8f608e8 | 2018-03-27 10:53:29 +0300 | [diff] [blame] | 3149 | dwc3_gadget_endpoint_transfer_not_ready(dep, event); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3150 | break; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3151 | case DWC3_DEPEVT_EPCMDCMPLT: |
Thinh Nguyen | 8266b08 | 2020-07-30 16:29:03 -0700 | [diff] [blame] | 3152 | dwc3_gadget_endpoint_command_complete(dep, event); |
Baolin Wang | 76a638f | 2016-10-31 19:38:36 +0800 | [diff] [blame] | 3153 | break; |
Felipe Balbi | 742a4ff | 2018-03-26 13:26:56 +0300 | [diff] [blame] | 3154 | case DWC3_DEPEVT_XFERCOMPLETE: |
Thinh Nguyen | 3eaecd0 | 2020-05-05 19:46:51 -0700 | [diff] [blame] | 3155 | dwc3_gadget_endpoint_transfer_complete(dep, event); |
| 3156 | break; |
| 3157 | case DWC3_DEPEVT_STREAMEVT: |
Thinh Nguyen | 140ca4c | 2020-05-05 19:47:09 -0700 | [diff] [blame] | 3158 | dwc3_gadget_endpoint_stream_event(dep, event); |
| 3159 | break; |
Baolin Wang | 76a638f | 2016-10-31 19:38:36 +0800 | [diff] [blame] | 3160 | case DWC3_DEPEVT_RXTXFIFOEVT: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3161 | break; |
| 3162 | } |
| 3163 | } |
| 3164 | |
| 3165 | static void dwc3_disconnect_gadget(struct dwc3 *dwc) |
| 3166 | { |
| 3167 | if (dwc->gadget_driver && dwc->gadget_driver->disconnect) { |
| 3168 | spin_unlock(&dwc->lock); |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3169 | dwc->gadget_driver->disconnect(dwc->gadget); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3170 | spin_lock(&dwc->lock); |
| 3171 | } |
| 3172 | } |
| 3173 | |
Felipe Balbi | bc5ba2e | 2014-02-26 10:17:07 -0600 | [diff] [blame] | 3174 | static void dwc3_suspend_gadget(struct dwc3 *dwc) |
| 3175 | { |
Dan Carpenter | 73a30bf | 2014-03-07 14:19:57 +0300 | [diff] [blame] | 3176 | if (dwc->gadget_driver && dwc->gadget_driver->suspend) { |
Felipe Balbi | bc5ba2e | 2014-02-26 10:17:07 -0600 | [diff] [blame] | 3177 | spin_unlock(&dwc->lock); |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3178 | dwc->gadget_driver->suspend(dwc->gadget); |
Felipe Balbi | bc5ba2e | 2014-02-26 10:17:07 -0600 | [diff] [blame] | 3179 | spin_lock(&dwc->lock); |
| 3180 | } |
| 3181 | } |
| 3182 | |
| 3183 | static void dwc3_resume_gadget(struct dwc3 *dwc) |
| 3184 | { |
Dan Carpenter | 73a30bf | 2014-03-07 14:19:57 +0300 | [diff] [blame] | 3185 | if (dwc->gadget_driver && dwc->gadget_driver->resume) { |
Felipe Balbi | bc5ba2e | 2014-02-26 10:17:07 -0600 | [diff] [blame] | 3186 | spin_unlock(&dwc->lock); |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3187 | dwc->gadget_driver->resume(dwc->gadget); |
Felipe Balbi | 5c7b3b0 | 2015-01-29 10:29:18 -0600 | [diff] [blame] | 3188 | spin_lock(&dwc->lock); |
Felipe Balbi | 8e74475 | 2014-11-06 14:27:53 +0800 | [diff] [blame] | 3189 | } |
| 3190 | } |
| 3191 | |
| 3192 | static void dwc3_reset_gadget(struct dwc3 *dwc) |
| 3193 | { |
| 3194 | if (!dwc->gadget_driver) |
| 3195 | return; |
| 3196 | |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3197 | if (dwc->gadget->speed != USB_SPEED_UNKNOWN) { |
Felipe Balbi | 8e74475 | 2014-11-06 14:27:53 +0800 | [diff] [blame] | 3198 | spin_unlock(&dwc->lock); |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3199 | usb_gadget_udc_reset(dwc->gadget, dwc->gadget_driver); |
Felipe Balbi | bc5ba2e | 2014-02-26 10:17:07 -0600 | [diff] [blame] | 3200 | spin_lock(&dwc->lock); |
| 3201 | } |
| 3202 | } |
| 3203 | |
Felipe Balbi | c5353b2 | 2019-02-13 13:00:54 +0200 | [diff] [blame] | 3204 | static void dwc3_stop_active_transfer(struct dwc3_ep *dep, bool force, |
| 3205 | bool interrupt) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3206 | { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3207 | struct dwc3_gadget_ep_cmd_params params; |
| 3208 | u32 cmd; |
| 3209 | int ret; |
| 3210 | |
Thinh Nguyen | c58d8bf | 2019-12-18 18:14:44 -0800 | [diff] [blame] | 3211 | if (!(dep->flags & DWC3_EP_TRANSFER_STARTED) || |
| 3212 | (dep->flags & DWC3_EP_END_TRANSFER_PENDING)) |
Pratyush Anand | 3daf74d | 2012-06-23 02:23:08 +0530 | [diff] [blame] | 3213 | return; |
| 3214 | |
Pratyush Anand | 5791150 | 2012-07-06 15:19:10 +0530 | [diff] [blame] | 3215 | /* |
| 3216 | * NOTICE: We are violating what the Databook says about the |
| 3217 | * EndTransfer command. Ideally we would _always_ wait for the |
| 3218 | * EndTransfer Command Completion IRQ, but that's causing too |
| 3219 | * much trouble synchronizing between us and gadget driver. |
| 3220 | * |
| 3221 | * We have discussed this with the IP Provider and it was |
Thinh Nguyen | cf2f8b6 | 2019-12-18 18:14:56 -0800 | [diff] [blame] | 3222 | * suggested to giveback all requests here. |
Pratyush Anand | 5791150 | 2012-07-06 15:19:10 +0530 | [diff] [blame] | 3223 | * |
| 3224 | * Note also that a similar handling was tested by Synopsys |
| 3225 | * (thanks a lot Paul) and nothing bad has come out of it. |
Thinh Nguyen | cf2f8b6 | 2019-12-18 18:14:56 -0800 | [diff] [blame] | 3226 | * In short, what we're doing is issuing EndTransfer with |
| 3227 | * CMDIOC bit set and delay kicking transfer until the |
| 3228 | * EndTransfer command had completed. |
John Youn | 06281d4 | 2016-08-22 15:39:13 -0700 | [diff] [blame] | 3229 | * |
| 3230 | * As of IP version 3.10a of the DWC_usb3 IP, the controller |
| 3231 | * supports a mode to work around the above limitation. The |
| 3232 | * software can poll the CMDACT bit in the DEPCMD register |
| 3233 | * after issuing a EndTransfer command. This mode is enabled |
| 3234 | * by writing GUCTL2[14]. This polling is already done in the |
| 3235 | * dwc3_send_gadget_ep_cmd() function so if the mode is |
| 3236 | * enabled, the EndTransfer command will have completed upon |
Thinh Nguyen | cf2f8b6 | 2019-12-18 18:14:56 -0800 | [diff] [blame] | 3237 | * returning from this function. |
John Youn | 06281d4 | 2016-08-22 15:39:13 -0700 | [diff] [blame] | 3238 | * |
| 3239 | * This mode is NOT available on the DWC_usb31 IP. |
Pratyush Anand | 5791150 | 2012-07-06 15:19:10 +0530 | [diff] [blame] | 3240 | */ |
| 3241 | |
Pratyush Anand | 3daf74d | 2012-06-23 02:23:08 +0530 | [diff] [blame] | 3242 | cmd = DWC3_DEPCMD_ENDTRANSFER; |
Paul Zimmerman | b992e68 | 2012-04-27 14:17:35 +0300 | [diff] [blame] | 3243 | cmd |= force ? DWC3_DEPCMD_HIPRI_FORCERM : 0; |
Felipe Balbi | c5353b2 | 2019-02-13 13:00:54 +0200 | [diff] [blame] | 3244 | cmd |= interrupt ? DWC3_DEPCMD_CMDIOC : 0; |
Felipe Balbi | b4996a8 | 2012-06-06 12:04:13 +0300 | [diff] [blame] | 3245 | cmd |= DWC3_DEPCMD_PARAM(dep->resource_index); |
Pratyush Anand | 3daf74d | 2012-06-23 02:23:08 +0530 | [diff] [blame] | 3246 | memset(¶ms, 0, sizeof(params)); |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 3247 | ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); |
Pratyush Anand | 3daf74d | 2012-06-23 02:23:08 +0530 | [diff] [blame] | 3248 | WARN_ON_ONCE(ret); |
Felipe Balbi | b4996a8 | 2012-06-06 12:04:13 +0300 | [diff] [blame] | 3249 | dep->resource_index = 0; |
John Youn | 06281d4 | 2016-08-22 15:39:13 -0700 | [diff] [blame] | 3250 | |
Thinh Nguyen | d3abda5 | 2019-11-27 13:10:47 -0800 | [diff] [blame] | 3251 | if (!interrupt) |
| 3252 | dep->flags &= ~DWC3_EP_TRANSFER_STARTED; |
Thinh Nguyen | c58d8bf | 2019-12-18 18:14:44 -0800 | [diff] [blame] | 3253 | else |
| 3254 | dep->flags |= DWC3_EP_END_TRANSFER_PENDING; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3255 | } |
| 3256 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3257 | static void dwc3_clear_stall_all_ep(struct dwc3 *dwc) |
| 3258 | { |
| 3259 | u32 epnum; |
| 3260 | |
| 3261 | for (epnum = 1; epnum < DWC3_ENDPOINTS_NUM; epnum++) { |
| 3262 | struct dwc3_ep *dep; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3263 | int ret; |
| 3264 | |
| 3265 | dep = dwc->eps[epnum]; |
Felipe Balbi | 6a1e3ef | 2011-05-05 16:21:59 +0300 | [diff] [blame] | 3266 | if (!dep) |
| 3267 | continue; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3268 | |
| 3269 | if (!(dep->flags & DWC3_EP_STALL)) |
| 3270 | continue; |
| 3271 | |
| 3272 | dep->flags &= ~DWC3_EP_STALL; |
| 3273 | |
John Youn | 50c763f | 2016-05-31 17:49:56 -0700 | [diff] [blame] | 3274 | ret = dwc3_send_clear_stall_ep_cmd(dep); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3275 | WARN_ON_ONCE(ret); |
| 3276 | } |
| 3277 | } |
| 3278 | |
| 3279 | static void dwc3_gadget_disconnect_interrupt(struct dwc3 *dwc) |
| 3280 | { |
Felipe Balbi | c4430a2 | 2012-05-24 10:30:01 +0300 | [diff] [blame] | 3281 | int reg; |
| 3282 | |
Thinh Nguyen | 1b6009ea | 2019-10-23 19:15:49 -0700 | [diff] [blame] | 3283 | dwc3_gadget_set_link_state(dwc, DWC3_LINK_STATE_RX_DET); |
| 3284 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3285 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 3286 | reg &= ~DWC3_DCTL_INITU1ENA; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3287 | reg &= ~DWC3_DCTL_INITU2ENA; |
Thinh Nguyen | 5b73821 | 2019-10-23 19:15:43 -0700 | [diff] [blame] | 3288 | dwc3_gadget_dctl_write_safe(dwc, reg); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3289 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3290 | dwc3_disconnect_gadget(dwc); |
| 3291 | |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3292 | dwc->gadget->speed = USB_SPEED_UNKNOWN; |
Felipe Balbi | df62df5 | 2011-10-14 15:11:49 +0300 | [diff] [blame] | 3293 | dwc->setup_packet_pending = false; |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3294 | usb_gadget_set_state(dwc->gadget, USB_STATE_NOTATTACHED); |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 3295 | |
| 3296 | dwc->connected = false; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3297 | } |
| 3298 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3299 | static void dwc3_gadget_reset_interrupt(struct dwc3 *dwc) |
| 3300 | { |
| 3301 | u32 reg; |
| 3302 | |
Felipe Balbi | df62df5 | 2011-10-14 15:11:49 +0300 | [diff] [blame] | 3303 | /* |
Wesley Cheng | 45f879b | 2021-03-19 02:31:25 -0700 | [diff] [blame] | 3304 | * Ideally, dwc3_reset_gadget() would trigger the function |
| 3305 | * drivers to stop any active transfers through ep disable. |
| 3306 | * However, for functions which defer ep disable, such as mass |
| 3307 | * storage, we will need to rely on the call to stop active |
| 3308 | * transfers here, and avoid allowing of request queuing. |
| 3309 | */ |
| 3310 | dwc->connected = false; |
| 3311 | |
| 3312 | /* |
Felipe Balbi | df62df5 | 2011-10-14 15:11:49 +0300 | [diff] [blame] | 3313 | * WORKAROUND: DWC3 revisions <1.88a have an issue which |
| 3314 | * would cause a missing Disconnect Event if there's a |
| 3315 | * pending Setup Packet in the FIFO. |
| 3316 | * |
| 3317 | * There's no suggested workaround on the official Bug |
| 3318 | * report, which states that "unless the driver/application |
| 3319 | * is doing any special handling of a disconnect event, |
| 3320 | * there is no functional issue". |
| 3321 | * |
| 3322 | * Unfortunately, it turns out that we _do_ some special |
| 3323 | * handling of a disconnect event, namely complete all |
| 3324 | * pending transfers, notify gadget driver of the |
| 3325 | * disconnection, and so on. |
| 3326 | * |
| 3327 | * Our suggested workaround is to follow the Disconnect |
| 3328 | * Event steps here, instead, based on a setup_packet_pending |
Felipe Balbi | b5d335e | 2015-11-16 16:20:34 -0600 | [diff] [blame] | 3329 | * flag. Such flag gets set whenever we have a SETUP_PENDING |
| 3330 | * status for EP0 TRBs and gets cleared on XferComplete for the |
Felipe Balbi | df62df5 | 2011-10-14 15:11:49 +0300 | [diff] [blame] | 3331 | * same endpoint. |
| 3332 | * |
| 3333 | * Refers to: |
| 3334 | * |
| 3335 | * STAR#9000466709: RTL: Device : Disconnect event not |
| 3336 | * generated if setup packet pending in FIFO |
| 3337 | */ |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 3338 | if (DWC3_VER_IS_PRIOR(DWC3, 188A)) { |
Felipe Balbi | df62df5 | 2011-10-14 15:11:49 +0300 | [diff] [blame] | 3339 | if (dwc->setup_packet_pending) |
| 3340 | dwc3_gadget_disconnect_interrupt(dwc); |
| 3341 | } |
| 3342 | |
Felipe Balbi | 8e74475 | 2014-11-06 14:27:53 +0800 | [diff] [blame] | 3343 | dwc3_reset_gadget(dwc); |
Wesley Cheng | ae7e861 | 2020-09-28 17:20:59 -0700 | [diff] [blame] | 3344 | /* |
| 3345 | * In the Synopsis DesignWare Cores USB3 Databook Rev. 3.30a |
| 3346 | * Section 4.1.2 Table 4-2, it states that during a USB reset, the SW |
| 3347 | * needs to ensure that it sends "a DEPENDXFER command for any active |
| 3348 | * transfers." |
| 3349 | */ |
| 3350 | dwc3_stop_active_transfers(dwc); |
Wesley Cheng | c7bb96a | 2021-03-11 15:59:02 -0800 | [diff] [blame] | 3351 | dwc->connected = true; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3352 | |
| 3353 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 3354 | reg &= ~DWC3_DCTL_TSTCTRL_MASK; |
Thinh Nguyen | 5b73821 | 2019-10-23 19:15:43 -0700 | [diff] [blame] | 3355 | dwc3_gadget_dctl_write_safe(dwc, reg); |
Gerard Cauvy | 3b63736 | 2012-02-10 12:21:18 +0200 | [diff] [blame] | 3356 | dwc->test_mode = false; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3357 | dwc3_clear_stall_all_ep(dwc); |
| 3358 | |
| 3359 | /* Reset device address to zero */ |
| 3360 | reg = dwc3_readl(dwc->regs, DWC3_DCFG); |
| 3361 | reg &= ~(DWC3_DCFG_DEVADDR_MASK); |
| 3362 | dwc3_writel(dwc->regs, DWC3_DCFG, reg); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3363 | } |
| 3364 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3365 | static void dwc3_gadget_conndone_interrupt(struct dwc3 *dwc) |
| 3366 | { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3367 | struct dwc3_ep *dep; |
| 3368 | int ret; |
| 3369 | u32 reg; |
| 3370 | u8 speed; |
| 3371 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3372 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 3373 | speed = reg & DWC3_DSTS_CONNECTSPD; |
| 3374 | dwc->speed = speed; |
| 3375 | |
John Youn | 5fb6fda | 2016-11-10 17:23:25 -0800 | [diff] [blame] | 3376 | /* |
| 3377 | * RAMClkSel is reset to 0 after USB reset, so it must be reprogrammed |
| 3378 | * each time on Connect Done. |
| 3379 | * |
| 3380 | * Currently we always use the reset value. If any platform |
| 3381 | * wants to set this to a different value, we need to add a |
| 3382 | * setting and update GCTL.RAMCLKSEL here. |
| 3383 | */ |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3384 | |
| 3385 | switch (speed) { |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 3386 | case DWC3_DSTS_SUPERSPEED_PLUS: |
John Youn | 7580862 | 2016-02-05 17:09:13 -0800 | [diff] [blame] | 3387 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512); |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3388 | dwc->gadget->ep0->maxpacket = 512; |
| 3389 | dwc->gadget->speed = USB_SPEED_SUPER_PLUS; |
John Youn | 7580862 | 2016-02-05 17:09:13 -0800 | [diff] [blame] | 3390 | break; |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 3391 | case DWC3_DSTS_SUPERSPEED: |
Felipe Balbi | 05870c5 | 2011-10-14 14:51:38 +0300 | [diff] [blame] | 3392 | /* |
| 3393 | * WORKAROUND: DWC3 revisions <1.90a have an issue which |
| 3394 | * would cause a missing USB3 Reset event. |
| 3395 | * |
| 3396 | * In such situations, we should force a USB3 Reset |
| 3397 | * event by calling our dwc3_gadget_reset_interrupt() |
| 3398 | * routine. |
| 3399 | * |
| 3400 | * Refers to: |
| 3401 | * |
| 3402 | * STAR#9000483510: RTL: SS : USB3 reset event may |
| 3403 | * not be generated always when the link enters poll |
| 3404 | */ |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 3405 | if (DWC3_VER_IS_PRIOR(DWC3, 190A)) |
Felipe Balbi | 05870c5 | 2011-10-14 14:51:38 +0300 | [diff] [blame] | 3406 | dwc3_gadget_reset_interrupt(dwc); |
| 3407 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3408 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512); |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3409 | dwc->gadget->ep0->maxpacket = 512; |
| 3410 | dwc->gadget->speed = USB_SPEED_SUPER; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3411 | break; |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 3412 | case DWC3_DSTS_HIGHSPEED: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3413 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64); |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3414 | dwc->gadget->ep0->maxpacket = 64; |
| 3415 | dwc->gadget->speed = USB_SPEED_HIGH; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3416 | break; |
Roger Quadros | 9418ee1 | 2017-01-03 14:32:09 +0200 | [diff] [blame] | 3417 | case DWC3_DSTS_FULLSPEED: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3418 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64); |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3419 | dwc->gadget->ep0->maxpacket = 64; |
| 3420 | dwc->gadget->speed = USB_SPEED_FULL; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3421 | break; |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 3422 | case DWC3_DSTS_LOWSPEED: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3423 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(8); |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3424 | dwc->gadget->ep0->maxpacket = 8; |
| 3425 | dwc->gadget->speed = USB_SPEED_LOW; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3426 | break; |
| 3427 | } |
| 3428 | |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3429 | dwc->eps[1]->endpoint.maxpacket = dwc->gadget->ep0->maxpacket; |
Thinh Nguyen | 6180026 | 2018-01-12 18:18:05 -0800 | [diff] [blame] | 3430 | |
Pratyush Anand | 2b75835 | 2013-01-14 15:59:31 +0530 | [diff] [blame] | 3431 | /* Enable USB2 LPM Capability */ |
| 3432 | |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 3433 | if (!DWC3_VER_IS_WITHIN(DWC3, ANY, 194A) && |
Thinh Nguyen | 8f7cdbb | 2021-04-13 19:13:18 -0700 | [diff] [blame] | 3434 | !dwc->usb2_gadget_lpm_disable && |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 3435 | (speed != DWC3_DSTS_SUPERSPEED) && |
| 3436 | (speed != DWC3_DSTS_SUPERSPEED_PLUS)) { |
Pratyush Anand | 2b75835 | 2013-01-14 15:59:31 +0530 | [diff] [blame] | 3437 | reg = dwc3_readl(dwc->regs, DWC3_DCFG); |
| 3438 | reg |= DWC3_DCFG_LPM_CAP; |
| 3439 | dwc3_writel(dwc->regs, DWC3_DCFG, reg); |
| 3440 | |
| 3441 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 3442 | reg &= ~(DWC3_DCTL_HIRD_THRES_MASK | DWC3_DCTL_L1_HIBER_EN); |
| 3443 | |
Thinh Nguyen | 16fe4f3 | 2019-08-19 18:35:58 -0700 | [diff] [blame] | 3444 | reg |= DWC3_DCTL_HIRD_THRES(dwc->hird_threshold | |
| 3445 | (dwc->is_utmi_l1_suspend << 4)); |
Pratyush Anand | 2b75835 | 2013-01-14 15:59:31 +0530 | [diff] [blame] | 3446 | |
Huang Rui | 80caf7d | 2014-10-28 19:54:26 +0800 | [diff] [blame] | 3447 | /* |
| 3448 | * When dwc3 revisions >= 2.40a, LPM Erratum is enabled and |
| 3449 | * DCFG.LPMCap is set, core responses with an ACK and the |
| 3450 | * BESL value in the LPM token is less than or equal to LPM |
| 3451 | * NYET threshold. |
| 3452 | */ |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 3453 | WARN_ONCE(DWC3_VER_IS_PRIOR(DWC3, 240A) && dwc->has_lpm_erratum, |
Masanari Iida | 9165dab | 2016-09-17 23:44:17 +0900 | [diff] [blame] | 3454 | "LPM Erratum not available on dwc3 revisions < 2.40a\n"); |
Huang Rui | 80caf7d | 2014-10-28 19:54:26 +0800 | [diff] [blame] | 3455 | |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 3456 | if (dwc->has_lpm_erratum && !DWC3_VER_IS_PRIOR(DWC3, 240A)) |
Thinh Nguyen | 2e487d2 | 2019-04-25 13:55:30 -0700 | [diff] [blame] | 3457 | reg |= DWC3_DCTL_NYET_THRES(dwc->lpm_nyet_threshold); |
Huang Rui | 80caf7d | 2014-10-28 19:54:26 +0800 | [diff] [blame] | 3458 | |
Thinh Nguyen | 5b73821 | 2019-10-23 19:15:43 -0700 | [diff] [blame] | 3459 | dwc3_gadget_dctl_write_safe(dwc, reg); |
Felipe Balbi | 356363b | 2013-12-19 16:37:05 -0600 | [diff] [blame] | 3460 | } else { |
Thinh Nguyen | 8f7cdbb | 2021-04-13 19:13:18 -0700 | [diff] [blame] | 3461 | if (dwc->usb2_gadget_lpm_disable) { |
| 3462 | reg = dwc3_readl(dwc->regs, DWC3_DCFG); |
| 3463 | reg &= ~DWC3_DCFG_LPM_CAP; |
| 3464 | dwc3_writel(dwc->regs, DWC3_DCFG, reg); |
| 3465 | } |
| 3466 | |
Felipe Balbi | 356363b | 2013-12-19 16:37:05 -0600 | [diff] [blame] | 3467 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 3468 | reg &= ~DWC3_DCTL_HIRD_THRES_MASK; |
Thinh Nguyen | 5b73821 | 2019-10-23 19:15:43 -0700 | [diff] [blame] | 3469 | dwc3_gadget_dctl_write_safe(dwc, reg); |
Pratyush Anand | 2b75835 | 2013-01-14 15:59:31 +0530 | [diff] [blame] | 3470 | } |
| 3471 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3472 | dep = dwc->eps[0]; |
Felipe Balbi | a2d23f0 | 2018-04-09 12:40:48 +0300 | [diff] [blame] | 3473 | ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_MODIFY); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3474 | if (ret) { |
| 3475 | dev_err(dwc->dev, "failed to enable %s\n", dep->name); |
| 3476 | return; |
| 3477 | } |
| 3478 | |
| 3479 | dep = dwc->eps[1]; |
Felipe Balbi | a2d23f0 | 2018-04-09 12:40:48 +0300 | [diff] [blame] | 3480 | ret = __dwc3_gadget_ep_enable(dep, DWC3_DEPCFG_ACTION_MODIFY); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3481 | if (ret) { |
| 3482 | dev_err(dwc->dev, "failed to enable %s\n", dep->name); |
| 3483 | return; |
| 3484 | } |
| 3485 | |
| 3486 | /* |
| 3487 | * Configure PHY via GUSB3PIPECTLn if required. |
| 3488 | * |
| 3489 | * Update GTXFIFOSIZn |
| 3490 | * |
| 3491 | * In both cases reset values should be sufficient. |
| 3492 | */ |
| 3493 | } |
| 3494 | |
| 3495 | static void dwc3_gadget_wakeup_interrupt(struct dwc3 *dwc) |
| 3496 | { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3497 | /* |
| 3498 | * TODO take core out of low power mode when that's |
| 3499 | * implemented. |
| 3500 | */ |
| 3501 | |
Jiebing Li | ad14d4e | 2014-12-11 13:26:29 +0800 | [diff] [blame] | 3502 | if (dwc->gadget_driver && dwc->gadget_driver->resume) { |
| 3503 | spin_unlock(&dwc->lock); |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3504 | dwc->gadget_driver->resume(dwc->gadget); |
Jiebing Li | ad14d4e | 2014-12-11 13:26:29 +0800 | [diff] [blame] | 3505 | spin_lock(&dwc->lock); |
| 3506 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3507 | } |
| 3508 | |
| 3509 | static void dwc3_gadget_linksts_change_interrupt(struct dwc3 *dwc, |
| 3510 | unsigned int evtinfo) |
| 3511 | { |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 3512 | enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK; |
Felipe Balbi | 0b0cc1c | 2012-09-18 21:39:24 +0300 | [diff] [blame] | 3513 | unsigned int pwropt; |
| 3514 | |
| 3515 | /* |
| 3516 | * WORKAROUND: DWC3 < 2.50a have an issue when configured without |
| 3517 | * Hibernation mode enabled which would show up when device detects |
| 3518 | * host-initiated U3 exit. |
| 3519 | * |
| 3520 | * In that case, device will generate a Link State Change Interrupt |
| 3521 | * from U3 to RESUME which is only necessary if Hibernation is |
| 3522 | * configured in. |
| 3523 | * |
| 3524 | * There are no functional changes due to such spurious event and we |
| 3525 | * just need to ignore it. |
| 3526 | * |
| 3527 | * Refers to: |
| 3528 | * |
| 3529 | * STAR#9000570034 RTL: SS Resume event generated in non-Hibernation |
| 3530 | * operational mode |
| 3531 | */ |
| 3532 | pwropt = DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1); |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 3533 | if (DWC3_VER_IS_PRIOR(DWC3, 250A) && |
Felipe Balbi | 0b0cc1c | 2012-09-18 21:39:24 +0300 | [diff] [blame] | 3534 | (pwropt != DWC3_GHWPARAMS1_EN_PWROPT_HIB)) { |
| 3535 | if ((dwc->link_state == DWC3_LINK_STATE_U3) && |
| 3536 | (next == DWC3_LINK_STATE_RESUME)) { |
Felipe Balbi | 0b0cc1c | 2012-09-18 21:39:24 +0300 | [diff] [blame] | 3537 | return; |
| 3538 | } |
| 3539 | } |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 3540 | |
| 3541 | /* |
| 3542 | * WORKAROUND: DWC3 Revisions <1.83a have an issue which, depending |
| 3543 | * on the link partner, the USB session might do multiple entry/exit |
| 3544 | * of low power states before a transfer takes place. |
| 3545 | * |
| 3546 | * Due to this problem, we might experience lower throughput. The |
| 3547 | * suggested workaround is to disable DCTL[12:9] bits if we're |
| 3548 | * transitioning from U1/U2 to U0 and enable those bits again |
| 3549 | * after a transfer completes and there are no pending transfers |
| 3550 | * on any of the enabled endpoints. |
| 3551 | * |
| 3552 | * This is the first half of that workaround. |
| 3553 | * |
| 3554 | * Refers to: |
| 3555 | * |
| 3556 | * STAR#9000446952: RTL: Device SS : if U1/U2 ->U0 takes >128us |
| 3557 | * core send LGO_Ux entering U0 |
| 3558 | */ |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 3559 | if (DWC3_VER_IS_PRIOR(DWC3, 183A)) { |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 3560 | if (next == DWC3_LINK_STATE_U0) { |
| 3561 | u32 u1u2; |
| 3562 | u32 reg; |
| 3563 | |
| 3564 | switch (dwc->link_state) { |
| 3565 | case DWC3_LINK_STATE_U1: |
| 3566 | case DWC3_LINK_STATE_U2: |
| 3567 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 3568 | u1u2 = reg & (DWC3_DCTL_INITU2ENA |
| 3569 | | DWC3_DCTL_ACCEPTU2ENA |
| 3570 | | DWC3_DCTL_INITU1ENA |
| 3571 | | DWC3_DCTL_ACCEPTU1ENA); |
| 3572 | |
| 3573 | if (!dwc->u1u2) |
| 3574 | dwc->u1u2 = reg & u1u2; |
| 3575 | |
| 3576 | reg &= ~u1u2; |
| 3577 | |
Thinh Nguyen | 5b73821 | 2019-10-23 19:15:43 -0700 | [diff] [blame] | 3578 | dwc3_gadget_dctl_write_safe(dwc, reg); |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 3579 | break; |
| 3580 | default: |
| 3581 | /* do nothing */ |
| 3582 | break; |
| 3583 | } |
| 3584 | } |
| 3585 | } |
| 3586 | |
Felipe Balbi | bc5ba2e | 2014-02-26 10:17:07 -0600 | [diff] [blame] | 3587 | switch (next) { |
| 3588 | case DWC3_LINK_STATE_U1: |
| 3589 | if (dwc->speed == USB_SPEED_SUPER) |
| 3590 | dwc3_suspend_gadget(dwc); |
| 3591 | break; |
| 3592 | case DWC3_LINK_STATE_U2: |
| 3593 | case DWC3_LINK_STATE_U3: |
| 3594 | dwc3_suspend_gadget(dwc); |
| 3595 | break; |
| 3596 | case DWC3_LINK_STATE_RESUME: |
| 3597 | dwc3_resume_gadget(dwc); |
| 3598 | break; |
| 3599 | default: |
| 3600 | /* do nothing */ |
| 3601 | break; |
| 3602 | } |
| 3603 | |
Felipe Balbi | e57ebc1 | 2014-04-22 13:20:12 -0500 | [diff] [blame] | 3604 | dwc->link_state = next; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3605 | } |
| 3606 | |
Baolin Wang | 72704f8 | 2016-05-16 16:43:53 +0800 | [diff] [blame] | 3607 | static void dwc3_gadget_suspend_interrupt(struct dwc3 *dwc, |
| 3608 | unsigned int evtinfo) |
| 3609 | { |
| 3610 | enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK; |
| 3611 | |
| 3612 | if (dwc->link_state != next && next == DWC3_LINK_STATE_U3) |
| 3613 | dwc3_suspend_gadget(dwc); |
| 3614 | |
| 3615 | dwc->link_state = next; |
| 3616 | } |
| 3617 | |
Felipe Balbi | e1dadd3 | 2014-02-25 14:47:54 -0600 | [diff] [blame] | 3618 | static void dwc3_gadget_hibernation_interrupt(struct dwc3 *dwc, |
| 3619 | unsigned int evtinfo) |
| 3620 | { |
| 3621 | unsigned int is_ss = evtinfo & BIT(4); |
| 3622 | |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 3623 | /* |
Felipe Balbi | e1dadd3 | 2014-02-25 14:47:54 -0600 | [diff] [blame] | 3624 | * WORKAROUND: DWC3 revison 2.20a with hibernation support |
| 3625 | * have a known issue which can cause USB CV TD.9.23 to fail |
| 3626 | * randomly. |
| 3627 | * |
| 3628 | * Because of this issue, core could generate bogus hibernation |
| 3629 | * events which SW needs to ignore. |
| 3630 | * |
| 3631 | * Refers to: |
| 3632 | * |
| 3633 | * STAR#9000546576: Device Mode Hibernation: Issue in USB 2.0 |
| 3634 | * Device Fallback from SuperSpeed |
| 3635 | */ |
| 3636 | if (is_ss ^ (dwc->speed == USB_SPEED_SUPER)) |
| 3637 | return; |
| 3638 | |
| 3639 | /* enter hibernation here */ |
| 3640 | } |
| 3641 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3642 | static void dwc3_gadget_interrupt(struct dwc3 *dwc, |
| 3643 | const struct dwc3_event_devt *event) |
| 3644 | { |
| 3645 | switch (event->type) { |
| 3646 | case DWC3_DEVICE_EVENT_DISCONNECT: |
| 3647 | dwc3_gadget_disconnect_interrupt(dwc); |
| 3648 | break; |
| 3649 | case DWC3_DEVICE_EVENT_RESET: |
| 3650 | dwc3_gadget_reset_interrupt(dwc); |
| 3651 | break; |
| 3652 | case DWC3_DEVICE_EVENT_CONNECT_DONE: |
| 3653 | dwc3_gadget_conndone_interrupt(dwc); |
| 3654 | break; |
| 3655 | case DWC3_DEVICE_EVENT_WAKEUP: |
| 3656 | dwc3_gadget_wakeup_interrupt(dwc); |
| 3657 | break; |
Felipe Balbi | e1dadd3 | 2014-02-25 14:47:54 -0600 | [diff] [blame] | 3658 | case DWC3_DEVICE_EVENT_HIBER_REQ: |
| 3659 | if (dev_WARN_ONCE(dwc->dev, !dwc->has_hibernation, |
| 3660 | "unexpected hibernation event\n")) |
| 3661 | break; |
| 3662 | |
| 3663 | dwc3_gadget_hibernation_interrupt(dwc, event->event_info); |
| 3664 | break; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3665 | case DWC3_DEVICE_EVENT_LINK_STATUS_CHANGE: |
| 3666 | dwc3_gadget_linksts_change_interrupt(dwc, event->event_info); |
| 3667 | break; |
| 3668 | case DWC3_DEVICE_EVENT_EOPF: |
Baolin Wang | 72704f8 | 2016-05-16 16:43:53 +0800 | [diff] [blame] | 3669 | /* It changed to be suspend event for version 2.30a and above */ |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 3670 | if (!DWC3_VER_IS_PRIOR(DWC3, 230A)) { |
Baolin Wang | 72704f8 | 2016-05-16 16:43:53 +0800 | [diff] [blame] | 3671 | /* |
| 3672 | * Ignore suspend event until the gadget enters into |
| 3673 | * USB_STATE_CONFIGURED state. |
| 3674 | */ |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3675 | if (dwc->gadget->state >= USB_STATE_CONFIGURED) |
Baolin Wang | 72704f8 | 2016-05-16 16:43:53 +0800 | [diff] [blame] | 3676 | dwc3_gadget_suspend_interrupt(dwc, |
| 3677 | event->event_info); |
| 3678 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3679 | break; |
| 3680 | case DWC3_DEVICE_EVENT_SOF: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3681 | case DWC3_DEVICE_EVENT_ERRATIC_ERROR: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3682 | case DWC3_DEVICE_EVENT_CMD_CMPL: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3683 | case DWC3_DEVICE_EVENT_OVERFLOW: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3684 | break; |
| 3685 | default: |
Felipe Balbi | e9f2aa8 | 2015-01-27 13:49:28 -0600 | [diff] [blame] | 3686 | dev_WARN(dwc->dev, "UNKNOWN IRQ %d\n", event->type); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3687 | } |
| 3688 | } |
| 3689 | |
| 3690 | static void dwc3_process_event_entry(struct dwc3 *dwc, |
| 3691 | const union dwc3_event *event) |
| 3692 | { |
Felipe Balbi | 43c96be | 2016-09-26 13:23:34 +0300 | [diff] [blame] | 3693 | trace_dwc3_event(event->raw, dwc); |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 3694 | |
Felipe Balbi | dfc5e80 | 2017-04-26 13:44:51 +0300 | [diff] [blame] | 3695 | if (!event->type.is_devspec) |
| 3696 | dwc3_endpoint_interrupt(dwc, &event->depevt); |
| 3697 | else if (event->type.type == DWC3_EVENT_TYPE_DEV) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3698 | dwc3_gadget_interrupt(dwc, &event->devt); |
Felipe Balbi | dfc5e80 | 2017-04-26 13:44:51 +0300 | [diff] [blame] | 3699 | else |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3700 | dev_err(dwc->dev, "UNKNOWN IRQ type %d\n", event->raw); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3701 | } |
| 3702 | |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3703 | static irqreturn_t dwc3_process_event_buf(struct dwc3_event_buffer *evt) |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3704 | { |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3705 | struct dwc3 *dwc = evt->dwc; |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3706 | irqreturn_t ret = IRQ_NONE; |
| 3707 | int left; |
| 3708 | u32 reg; |
| 3709 | |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3710 | left = evt->count; |
| 3711 | |
| 3712 | if (!(evt->flags & DWC3_EVENT_PENDING)) |
| 3713 | return IRQ_NONE; |
| 3714 | |
| 3715 | while (left > 0) { |
| 3716 | union dwc3_event event; |
| 3717 | |
John Youn | ebbb2d5 | 2016-11-15 13:07:02 +0200 | [diff] [blame] | 3718 | event.raw = *(u32 *) (evt->cache + evt->lpos); |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3719 | |
| 3720 | dwc3_process_event_entry(dwc, &event); |
| 3721 | |
| 3722 | /* |
| 3723 | * FIXME we wrap around correctly to the next entry as |
| 3724 | * almost all entries are 4 bytes in size. There is one |
| 3725 | * entry which has 12 bytes which is a regular entry |
| 3726 | * followed by 8 bytes data. ATM I don't know how |
| 3727 | * things are organized if we get next to the a |
| 3728 | * boundary so I worry about that once we try to handle |
| 3729 | * that. |
| 3730 | */ |
Felipe Balbi | caefe6c | 2016-11-15 13:05:23 +0200 | [diff] [blame] | 3731 | evt->lpos = (evt->lpos + 4) % evt->length; |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3732 | left -= 4; |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3733 | } |
| 3734 | |
| 3735 | evt->count = 0; |
| 3736 | evt->flags &= ~DWC3_EVENT_PENDING; |
| 3737 | ret = IRQ_HANDLED; |
| 3738 | |
| 3739 | /* Unmask interrupt */ |
Felipe Balbi | 660e9bd | 2016-03-30 09:26:24 +0300 | [diff] [blame] | 3740 | reg = dwc3_readl(dwc->regs, DWC3_GEVNTSIZ(0)); |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3741 | reg &= ~DWC3_GEVNTSIZ_INTMASK; |
Felipe Balbi | 660e9bd | 2016-03-30 09:26:24 +0300 | [diff] [blame] | 3742 | dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), reg); |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3743 | |
John Youn | cf40b86 | 2016-11-14 12:32:43 -0800 | [diff] [blame] | 3744 | if (dwc->imod_interval) { |
| 3745 | dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), DWC3_GEVNTCOUNT_EHB); |
| 3746 | dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), dwc->imod_interval); |
| 3747 | } |
| 3748 | |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3749 | return ret; |
| 3750 | } |
| 3751 | |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3752 | static irqreturn_t dwc3_thread_interrupt(int irq, void *_evt) |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3753 | { |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3754 | struct dwc3_event_buffer *evt = _evt; |
| 3755 | struct dwc3 *dwc = evt->dwc; |
Felipe Balbi | e5f68b4a | 2015-10-12 13:25:44 -0500 | [diff] [blame] | 3756 | unsigned long flags; |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3757 | irqreturn_t ret = IRQ_NONE; |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3758 | |
Felipe Balbi | e5f68b4a | 2015-10-12 13:25:44 -0500 | [diff] [blame] | 3759 | spin_lock_irqsave(&dwc->lock, flags); |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3760 | ret = dwc3_process_event_buf(evt); |
Felipe Balbi | e5f68b4a | 2015-10-12 13:25:44 -0500 | [diff] [blame] | 3761 | spin_unlock_irqrestore(&dwc->lock, flags); |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3762 | |
| 3763 | return ret; |
| 3764 | } |
| 3765 | |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3766 | static irqreturn_t dwc3_check_event_buf(struct dwc3_event_buffer *evt) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3767 | { |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3768 | struct dwc3 *dwc = evt->dwc; |
John Youn | ebbb2d5 | 2016-11-15 13:07:02 +0200 | [diff] [blame] | 3769 | u32 amount; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3770 | u32 count; |
Felipe Balbi | e8adfc3 | 2013-06-12 21:11:14 +0300 | [diff] [blame] | 3771 | u32 reg; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3772 | |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 3773 | if (pm_runtime_suspended(dwc->dev)) { |
| 3774 | pm_runtime_get(dwc->dev); |
| 3775 | disable_irq_nosync(dwc->irq_gadget); |
| 3776 | dwc->pending_events = true; |
| 3777 | return IRQ_HANDLED; |
| 3778 | } |
| 3779 | |
Thinh Nguyen | d325a1d | 2017-05-11 17:26:47 -0700 | [diff] [blame] | 3780 | /* |
| 3781 | * With PCIe legacy interrupt, test shows that top-half irq handler can |
| 3782 | * be called again after HW interrupt deassertion. Check if bottom-half |
| 3783 | * irq event handler completes before caching new event to prevent |
| 3784 | * losing events. |
| 3785 | */ |
| 3786 | if (evt->flags & DWC3_EVENT_PENDING) |
| 3787 | return IRQ_HANDLED; |
| 3788 | |
Felipe Balbi | 660e9bd | 2016-03-30 09:26:24 +0300 | [diff] [blame] | 3789 | count = dwc3_readl(dwc->regs, DWC3_GEVNTCOUNT(0)); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3790 | count &= DWC3_GEVNTCOUNT_MASK; |
| 3791 | if (!count) |
| 3792 | return IRQ_NONE; |
| 3793 | |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3794 | evt->count = count; |
| 3795 | evt->flags |= DWC3_EVENT_PENDING; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3796 | |
Felipe Balbi | e8adfc3 | 2013-06-12 21:11:14 +0300 | [diff] [blame] | 3797 | /* Mask interrupt */ |
Felipe Balbi | 660e9bd | 2016-03-30 09:26:24 +0300 | [diff] [blame] | 3798 | reg = dwc3_readl(dwc->regs, DWC3_GEVNTSIZ(0)); |
Felipe Balbi | e8adfc3 | 2013-06-12 21:11:14 +0300 | [diff] [blame] | 3799 | reg |= DWC3_GEVNTSIZ_INTMASK; |
Felipe Balbi | 660e9bd | 2016-03-30 09:26:24 +0300 | [diff] [blame] | 3800 | dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), reg); |
Felipe Balbi | e8adfc3 | 2013-06-12 21:11:14 +0300 | [diff] [blame] | 3801 | |
John Youn | ebbb2d5 | 2016-11-15 13:07:02 +0200 | [diff] [blame] | 3802 | amount = min(count, evt->length - evt->lpos); |
| 3803 | memcpy(evt->cache + evt->lpos, evt->buf + evt->lpos, amount); |
| 3804 | |
| 3805 | if (amount < count) |
| 3806 | memcpy(evt->cache, evt->buf, count - amount); |
| 3807 | |
John Youn | 65aca32 | 2016-11-15 13:08:59 +0200 | [diff] [blame] | 3808 | dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), count); |
| 3809 | |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3810 | return IRQ_WAKE_THREAD; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3811 | } |
| 3812 | |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3813 | static irqreturn_t dwc3_interrupt(int irq, void *_evt) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3814 | { |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3815 | struct dwc3_event_buffer *evt = _evt; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3816 | |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3817 | return dwc3_check_event_buf(evt); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3818 | } |
| 3819 | |
Felipe Balbi | 6db3812 | 2016-10-03 11:27:01 +0300 | [diff] [blame] | 3820 | static int dwc3_gadget_get_irq(struct dwc3 *dwc) |
| 3821 | { |
| 3822 | struct platform_device *dwc3_pdev = to_platform_device(dwc->dev); |
| 3823 | int irq; |
| 3824 | |
Hans de Goede | f146b40 | 2019-10-05 23:04:48 +0200 | [diff] [blame] | 3825 | irq = platform_get_irq_byname_optional(dwc3_pdev, "peripheral"); |
Felipe Balbi | 6db3812 | 2016-10-03 11:27:01 +0300 | [diff] [blame] | 3826 | if (irq > 0) |
| 3827 | goto out; |
| 3828 | |
| 3829 | if (irq == -EPROBE_DEFER) |
| 3830 | goto out; |
| 3831 | |
Hans de Goede | f146b40 | 2019-10-05 23:04:48 +0200 | [diff] [blame] | 3832 | irq = platform_get_irq_byname_optional(dwc3_pdev, "dwc_usb3"); |
Felipe Balbi | 6db3812 | 2016-10-03 11:27:01 +0300 | [diff] [blame] | 3833 | if (irq > 0) |
| 3834 | goto out; |
| 3835 | |
| 3836 | if (irq == -EPROBE_DEFER) |
| 3837 | goto out; |
| 3838 | |
| 3839 | irq = platform_get_irq(dwc3_pdev, 0); |
| 3840 | if (irq > 0) |
| 3841 | goto out; |
| 3842 | |
Felipe Balbi | 6db3812 | 2016-10-03 11:27:01 +0300 | [diff] [blame] | 3843 | if (!irq) |
| 3844 | irq = -EINVAL; |
| 3845 | |
| 3846 | out: |
| 3847 | return irq; |
| 3848 | } |
| 3849 | |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3850 | static void dwc_gadget_release(struct device *dev) |
| 3851 | { |
| 3852 | struct usb_gadget *gadget = container_of(dev, struct usb_gadget, dev); |
| 3853 | |
| 3854 | kfree(gadget); |
| 3855 | } |
| 3856 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3857 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 3858 | * dwc3_gadget_init - initializes gadget related registers |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 3859 | * @dwc: pointer to our controller context structure |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3860 | * |
| 3861 | * Returns 0 on success otherwise negative errno. |
| 3862 | */ |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 3863 | int dwc3_gadget_init(struct dwc3 *dwc) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3864 | { |
Felipe Balbi | 6db3812 | 2016-10-03 11:27:01 +0300 | [diff] [blame] | 3865 | int ret; |
| 3866 | int irq; |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3867 | struct device *dev; |
Roger Quadros | 9522def | 2016-06-10 14:48:38 +0300 | [diff] [blame] | 3868 | |
Felipe Balbi | 6db3812 | 2016-10-03 11:27:01 +0300 | [diff] [blame] | 3869 | irq = dwc3_gadget_get_irq(dwc); |
| 3870 | if (irq < 0) { |
| 3871 | ret = irq; |
| 3872 | goto err0; |
Roger Quadros | 9522def | 2016-06-10 14:48:38 +0300 | [diff] [blame] | 3873 | } |
| 3874 | |
| 3875 | dwc->irq_gadget = irq; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3876 | |
Arnd Bergmann | d64ff40 | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 3877 | dwc->ep0_trb = dma_alloc_coherent(dwc->sysdev, |
| 3878 | sizeof(*dwc->ep0_trb) * 2, |
| 3879 | &dwc->ep0_trb_addr, GFP_KERNEL); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3880 | if (!dwc->ep0_trb) { |
| 3881 | dev_err(dwc->dev, "failed to allocate ep0 trb\n"); |
| 3882 | ret = -ENOMEM; |
Felipe Balbi | 7d5e650 | 2017-04-07 13:34:21 +0300 | [diff] [blame] | 3883 | goto err0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3884 | } |
| 3885 | |
Felipe Balbi | 4199c5f | 2017-04-07 14:09:13 +0300 | [diff] [blame] | 3886 | dwc->setup_buf = kzalloc(DWC3_EP0_SETUP_SIZE, GFP_KERNEL); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3887 | if (!dwc->setup_buf) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3888 | ret = -ENOMEM; |
Felipe Balbi | 7d5e650 | 2017-04-07 13:34:21 +0300 | [diff] [blame] | 3889 | goto err1; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3890 | } |
| 3891 | |
Felipe Balbi | 905dc04 | 2017-01-05 14:46:52 +0200 | [diff] [blame] | 3892 | dwc->bounce = dma_alloc_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE, |
| 3893 | &dwc->bounce_addr, GFP_KERNEL); |
| 3894 | if (!dwc->bounce) { |
| 3895 | ret = -ENOMEM; |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 3896 | goto err2; |
Felipe Balbi | 905dc04 | 2017-01-05 14:46:52 +0200 | [diff] [blame] | 3897 | } |
| 3898 | |
Baolin Wang | bb01473 | 2016-10-14 17:11:33 +0800 | [diff] [blame] | 3899 | init_completion(&dwc->ep0_in_setup); |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3900 | dwc->gadget = kzalloc(sizeof(struct usb_gadget), GFP_KERNEL); |
| 3901 | if (!dwc->gadget) { |
| 3902 | ret = -ENOMEM; |
| 3903 | goto err3; |
| 3904 | } |
Baolin Wang | bb01473 | 2016-10-14 17:11:33 +0800 | [diff] [blame] | 3905 | |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3906 | |
| 3907 | usb_initialize_gadget(dwc->dev, dwc->gadget, dwc_gadget_release); |
| 3908 | dev = &dwc->gadget->dev; |
| 3909 | dev->platform_data = dwc; |
| 3910 | dwc->gadget->ops = &dwc3_gadget_ops; |
| 3911 | dwc->gadget->speed = USB_SPEED_UNKNOWN; |
| 3912 | dwc->gadget->sg_supported = true; |
| 3913 | dwc->gadget->name = "dwc3-gadget"; |
Thinh Nguyen | 8f7cdbb | 2021-04-13 19:13:18 -0700 | [diff] [blame] | 3914 | dwc->gadget->lpm_capable = !dwc->usb2_gadget_lpm_disable; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3915 | |
| 3916 | /* |
Ben McCauley | b9e51b2 | 2015-11-16 10:47:24 -0600 | [diff] [blame] | 3917 | * FIXME We might be setting max_speed to <SUPER, however versions |
| 3918 | * <2.20a of dwc3 have an issue with metastability (documented |
| 3919 | * elsewhere in this driver) which tells us we can't set max speed to |
| 3920 | * anything lower than SUPER. |
| 3921 | * |
| 3922 | * Because gadget.max_speed is only used by composite.c and function |
| 3923 | * drivers (i.e. it won't go into dwc3's registers) we are allowing this |
| 3924 | * to happen so we avoid sending SuperSpeed Capability descriptor |
| 3925 | * together with our BOS descriptor as that could confuse host into |
| 3926 | * thinking we can handle super speed. |
| 3927 | * |
| 3928 | * Note that, in fact, we won't even support GetBOS requests when speed |
| 3929 | * is less than super speed because we don't have means, yet, to tell |
| 3930 | * composite.c that we are USB 2.0 + LPM ECN. |
| 3931 | */ |
Thinh Nguyen | 9af21dd | 2020-04-11 19:20:01 -0700 | [diff] [blame] | 3932 | if (DWC3_VER_IS_PRIOR(DWC3, 220A) && |
Roger Quadros | 42bf02e | 2017-10-31 15:11:55 +0200 | [diff] [blame] | 3933 | !dwc->dis_metastability_quirk) |
Felipe Balbi | 5eb30ce | 2016-11-03 14:07:51 +0200 | [diff] [blame] | 3934 | dev_info(dwc->dev, "changing max_speed on rev %08x\n", |
Ben McCauley | b9e51b2 | 2015-11-16 10:47:24 -0600 | [diff] [blame] | 3935 | dwc->revision); |
| 3936 | |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3937 | dwc->gadget->max_speed = dwc->maximum_speed; |
Ben McCauley | b9e51b2 | 2015-11-16 10:47:24 -0600 | [diff] [blame] | 3938 | |
| 3939 | /* |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3940 | * REVISIT: Here we should clear all pending IRQs to be |
| 3941 | * sure we're starting from a well known location. |
| 3942 | */ |
| 3943 | |
Bryan O'Donoghue | f3bcfc7 | 2017-01-31 20:58:11 +0000 | [diff] [blame] | 3944 | ret = dwc3_gadget_init_endpoints(dwc, dwc->num_eps); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3945 | if (ret) |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 3946 | goto err4; |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3947 | |
| 3948 | ret = usb_add_gadget(dwc->gadget); |
| 3949 | if (ret) { |
| 3950 | dev_err(dwc->dev, "failed to add gadget\n"); |
| 3951 | goto err5; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3952 | } |
| 3953 | |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3954 | dwc3_gadget_set_speed(dwc->gadget, dwc->maximum_speed); |
Roger Quadros | 169e3b6 | 2019-01-10 17:04:28 +0200 | [diff] [blame] | 3955 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3956 | return 0; |
Felipe Balbi | 4199c5f | 2017-04-07 14:09:13 +0300 | [diff] [blame] | 3957 | |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3958 | err5: |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 3959 | dwc3_gadget_free_endpoints(dwc); |
Peter Chen | e81a701 | 2020-08-21 10:55:48 +0800 | [diff] [blame] | 3960 | err4: |
| 3961 | usb_put_gadget(dwc->gadget); |
Jack Pham | 851dee5 | 2021-05-28 09:04:05 -0700 | [diff] [blame] | 3962 | dwc->gadget = NULL; |
Felipe Balbi | 7d5e650 | 2017-04-07 13:34:21 +0300 | [diff] [blame] | 3963 | err3: |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 3964 | dma_free_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE, dwc->bounce, |
| 3965 | dwc->bounce_addr); |
Felipe Balbi | 5812b1c | 2011-08-27 22:07:53 +0300 | [diff] [blame] | 3966 | |
Felipe Balbi | 7d5e650 | 2017-04-07 13:34:21 +0300 | [diff] [blame] | 3967 | err2: |
Felipe Balbi | 0fc9a1b | 2011-12-19 11:32:34 +0200 | [diff] [blame] | 3968 | kfree(dwc->setup_buf); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3969 | |
Felipe Balbi | 7d5e650 | 2017-04-07 13:34:21 +0300 | [diff] [blame] | 3970 | err1: |
Arnd Bergmann | d64ff40 | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 3971 | dma_free_coherent(dwc->sysdev, sizeof(*dwc->ep0_trb) * 2, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3972 | dwc->ep0_trb, dwc->ep0_trb_addr); |
| 3973 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3974 | err0: |
| 3975 | return ret; |
| 3976 | } |
| 3977 | |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3978 | /* -------------------------------------------------------------------------- */ |
| 3979 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3980 | void dwc3_gadget_exit(struct dwc3 *dwc) |
| 3981 | { |
Jack Pham | 851dee5 | 2021-05-28 09:04:05 -0700 | [diff] [blame] | 3982 | if (!dwc->gadget) |
| 3983 | return; |
| 3984 | |
Jack Pham | 1ea7750 | 2021-05-01 02:35:58 -0700 | [diff] [blame] | 3985 | usb_del_gadget(dwc->gadget); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3986 | dwc3_gadget_free_endpoints(dwc); |
Jack Pham | 1ea7750 | 2021-05-01 02:35:58 -0700 | [diff] [blame] | 3987 | usb_put_gadget(dwc->gadget); |
Felipe Balbi | 905dc04 | 2017-01-05 14:46:52 +0200 | [diff] [blame] | 3988 | dma_free_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE, dwc->bounce, |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 3989 | dwc->bounce_addr); |
Felipe Balbi | 0fc9a1b | 2011-12-19 11:32:34 +0200 | [diff] [blame] | 3990 | kfree(dwc->setup_buf); |
Arnd Bergmann | d64ff40 | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 3991 | dma_free_coherent(dwc->sysdev, sizeof(*dwc->ep0_trb) * 2, |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 3992 | dwc->ep0_trb, dwc->ep0_trb_addr); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3993 | } |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3994 | |
Felipe Balbi | 0b0231a | 2014-10-07 10:19:23 -0500 | [diff] [blame] | 3995 | int dwc3_gadget_suspend(struct dwc3 *dwc) |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3996 | { |
Roger Quadros | 9772b47 | 2016-04-12 11:33:29 +0300 | [diff] [blame] | 3997 | if (!dwc->gadget_driver) |
| 3998 | return 0; |
| 3999 | |
Roger Quadros | 1551e35 | 2017-02-15 14:16:26 +0200 | [diff] [blame] | 4000 | dwc3_gadget_run_stop(dwc, false, false); |
Felipe Balbi | 9f8a67b | 2016-05-04 15:50:27 +0300 | [diff] [blame] | 4001 | dwc3_disconnect_gadget(dwc); |
| 4002 | __dwc3_gadget_stop(dwc); |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 4003 | |
| 4004 | return 0; |
| 4005 | } |
| 4006 | |
| 4007 | int dwc3_gadget_resume(struct dwc3 *dwc) |
| 4008 | { |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 4009 | int ret; |
| 4010 | |
Roger Quadros | 9772b47 | 2016-04-12 11:33:29 +0300 | [diff] [blame] | 4011 | if (!dwc->gadget_driver) |
| 4012 | return 0; |
| 4013 | |
Felipe Balbi | 9f8a67b | 2016-05-04 15:50:27 +0300 | [diff] [blame] | 4014 | ret = __dwc3_gadget_start(dwc); |
| 4015 | if (ret < 0) |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 4016 | goto err0; |
| 4017 | |
Felipe Balbi | 9f8a67b | 2016-05-04 15:50:27 +0300 | [diff] [blame] | 4018 | ret = dwc3_gadget_run_stop(dwc, true, false); |
| 4019 | if (ret < 0) |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 4020 | goto err1; |
| 4021 | |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 4022 | return 0; |
| 4023 | |
| 4024 | err1: |
Felipe Balbi | 9f8a67b | 2016-05-04 15:50:27 +0300 | [diff] [blame] | 4025 | __dwc3_gadget_stop(dwc); |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 4026 | |
| 4027 | err0: |
| 4028 | return ret; |
| 4029 | } |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 4030 | |
| 4031 | void dwc3_gadget_process_pending_events(struct dwc3 *dwc) |
| 4032 | { |
| 4033 | if (dwc->pending_events) { |
| 4034 | dwc3_interrupt(dwc->irq_gadget, dwc->ev_buf); |
| 4035 | dwc->pending_events = false; |
| 4036 | enable_irq(dwc->irq_gadget); |
| 4037 | } |
| 4038 | } |