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 | * |
| 5 | * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://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 | 04a9bfc | 2012-01-02 18:25:43 +0200 | [diff] [blame] | 30 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 31 | * dwc3_gadget_set_test_mode - enables usb2 test modes |
Felipe Balbi | 04a9bfc | 2012-01-02 18:25:43 +0200 | [diff] [blame] | 32 | * @dwc: pointer to our context structure |
| 33 | * @mode: the mode to set (J, K SE0 NAK, Force Enable) |
| 34 | * |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 35 | * Caller should take care of locking. This function will return 0 on |
| 36 | * success or -EINVAL if wrong Test Selector is passed. |
Felipe Balbi | 04a9bfc | 2012-01-02 18:25:43 +0200 | [diff] [blame] | 37 | */ |
| 38 | int dwc3_gadget_set_test_mode(struct dwc3 *dwc, int mode) |
| 39 | { |
| 40 | u32 reg; |
| 41 | |
| 42 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 43 | reg &= ~DWC3_DCTL_TSTCTRL_MASK; |
| 44 | |
| 45 | switch (mode) { |
| 46 | case TEST_J: |
| 47 | case TEST_K: |
| 48 | case TEST_SE0_NAK: |
| 49 | case TEST_PACKET: |
| 50 | case TEST_FORCE_EN: |
| 51 | reg |= mode << 1; |
| 52 | break; |
| 53 | default: |
| 54 | return -EINVAL; |
| 55 | } |
| 56 | |
| 57 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 58 | |
| 59 | return 0; |
| 60 | } |
| 61 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 62 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 63 | * dwc3_gadget_get_link_state - gets current state of usb link |
Paul Zimmerman | 911f1f8 | 2012-04-27 13:35:15 +0300 | [diff] [blame] | 64 | * @dwc: pointer to our context structure |
| 65 | * |
| 66 | * Caller should take care of locking. This function will |
| 67 | * return the link state on success (>= 0) or -ETIMEDOUT. |
| 68 | */ |
| 69 | int dwc3_gadget_get_link_state(struct dwc3 *dwc) |
| 70 | { |
| 71 | u32 reg; |
| 72 | |
| 73 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 74 | |
| 75 | return DWC3_DSTS_USBLNKST(reg); |
| 76 | } |
| 77 | |
| 78 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 79 | * dwc3_gadget_set_link_state - sets usb link to a particular state |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 80 | * @dwc: pointer to our context structure |
| 81 | * @state: the state to put link into |
| 82 | * |
| 83 | * Caller should take care of locking. This function will |
Paul Zimmerman | aee63e3 | 2012-02-24 17:32:15 -0800 | [diff] [blame] | 84 | * return 0 on success or -ETIMEDOUT. |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 85 | */ |
| 86 | int dwc3_gadget_set_link_state(struct dwc3 *dwc, enum dwc3_link_state state) |
| 87 | { |
Paul Zimmerman | aee63e3 | 2012-02-24 17:32:15 -0800 | [diff] [blame] | 88 | int retries = 10000; |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 89 | u32 reg; |
| 90 | |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 91 | /* |
| 92 | * Wait until device controller is ready. Only applies to 1.94a and |
| 93 | * later RTL. |
| 94 | */ |
| 95 | if (dwc->revision >= DWC3_REVISION_194A) { |
| 96 | while (--retries) { |
| 97 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 98 | if (reg & DWC3_DSTS_DCNRD) |
| 99 | udelay(5); |
| 100 | else |
| 101 | break; |
| 102 | } |
| 103 | |
| 104 | if (retries <= 0) |
| 105 | return -ETIMEDOUT; |
| 106 | } |
| 107 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 108 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 109 | reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK; |
| 110 | |
| 111 | /* set requested state */ |
| 112 | reg |= DWC3_DCTL_ULSTCHNGREQ(state); |
| 113 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 114 | |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 115 | /* |
| 116 | * The following code is racy when called from dwc3_gadget_wakeup, |
| 117 | * and is not needed, at least on newer versions |
| 118 | */ |
| 119 | if (dwc->revision >= DWC3_REVISION_194A) |
| 120 | return 0; |
| 121 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 122 | /* wait for a change in DSTS */ |
Paul Zimmerman | aed430e | 2012-04-27 12:52:01 +0300 | [diff] [blame] | 123 | retries = 10000; |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 124 | while (--retries) { |
| 125 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 126 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 127 | if (DWC3_DSTS_USBLNKST(reg) == state) |
| 128 | return 0; |
| 129 | |
Paul Zimmerman | aee63e3 | 2012-02-24 17:32:15 -0800 | [diff] [blame] | 130 | udelay(5); |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 131 | } |
| 132 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 133 | return -ETIMEDOUT; |
| 134 | } |
| 135 | |
John Youn | dca0119 | 2016-05-19 17:26:05 -0700 | [diff] [blame] | 136 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 137 | * dwc3_ep_inc_trb - increment a trb index. |
| 138 | * @index: Pointer to the TRB index to increment. |
John Youn | dca0119 | 2016-05-19 17:26:05 -0700 | [diff] [blame] | 139 | * |
| 140 | * The index should never point to the link TRB. After incrementing, |
| 141 | * if it is point to the link TRB, wrap around to the beginning. The |
| 142 | * link TRB is always at the last TRB entry. |
| 143 | */ |
| 144 | static void dwc3_ep_inc_trb(u8 *index) |
| 145 | { |
| 146 | (*index)++; |
| 147 | if (*index == (DWC3_TRB_NUM - 1)) |
| 148 | *index = 0; |
| 149 | } |
| 150 | |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 151 | /** |
| 152 | * dwc3_ep_inc_enq - increment endpoint's enqueue pointer |
| 153 | * @dep: The endpoint whose enqueue pointer we're incrementing |
| 154 | */ |
Felipe Balbi | ef966b9 | 2016-04-05 13:09:51 +0300 | [diff] [blame] | 155 | static void dwc3_ep_inc_enq(struct dwc3_ep *dep) |
Felipe Balbi | 457e84b | 2012-01-18 18:04:09 +0200 | [diff] [blame] | 156 | { |
John Youn | dca0119 | 2016-05-19 17:26:05 -0700 | [diff] [blame] | 157 | dwc3_ep_inc_trb(&dep->trb_enqueue); |
Felipe Balbi | ef966b9 | 2016-04-05 13:09:51 +0300 | [diff] [blame] | 158 | } |
Felipe Balbi | 457e84b | 2012-01-18 18:04:09 +0200 | [diff] [blame] | 159 | |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 160 | /** |
| 161 | * dwc3_ep_inc_deq - increment endpoint's dequeue pointer |
| 162 | * @dep: The endpoint whose enqueue pointer we're incrementing |
| 163 | */ |
Felipe Balbi | ef966b9 | 2016-04-05 13:09:51 +0300 | [diff] [blame] | 164 | static void dwc3_ep_inc_deq(struct dwc3_ep *dep) |
| 165 | { |
John Youn | dca0119 | 2016-05-19 17:26:05 -0700 | [diff] [blame] | 166 | dwc3_ep_inc_trb(&dep->trb_dequeue); |
Felipe Balbi | 457e84b | 2012-01-18 18:04:09 +0200 | [diff] [blame] | 167 | } |
| 168 | |
Felipe Balbi | c91815b | 2018-03-26 13:14:47 +0300 | [diff] [blame] | 169 | void dwc3_gadget_del_and_unmap_request(struct dwc3_ep *dep, |
| 170 | struct dwc3_request *req, int status) |
| 171 | { |
| 172 | struct dwc3 *dwc = dep->dwc; |
| 173 | |
| 174 | req->started = false; |
| 175 | list_del(&req->list); |
| 176 | req->remaining = 0; |
| 177 | |
| 178 | if (req->request.status == -EINPROGRESS) |
| 179 | req->request.status = status; |
| 180 | |
| 181 | if (req->trb) |
| 182 | usb_gadget_unmap_request_by_dev(dwc->sysdev, |
| 183 | &req->request, req->direction); |
| 184 | |
| 185 | req->trb = NULL; |
| 186 | trace_dwc3_gadget_giveback(req); |
| 187 | |
| 188 | if (dep->number > 1) |
| 189 | pm_runtime_put(dwc->dev); |
| 190 | } |
| 191 | |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 192 | /** |
| 193 | * dwc3_gadget_giveback - call struct usb_request's ->complete callback |
| 194 | * @dep: The endpoint to whom the request belongs to |
| 195 | * @req: The request we're giving back |
| 196 | * @status: completion code for the request |
| 197 | * |
| 198 | * Must be called with controller's lock held and interrupts disabled. This |
| 199 | * function will unmap @req and call its ->complete() callback to notify upper |
| 200 | * layers that it has completed. |
| 201 | */ |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 202 | void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req, |
| 203 | int status) |
| 204 | { |
| 205 | struct dwc3 *dwc = dep->dwc; |
| 206 | |
Felipe Balbi | c91815b | 2018-03-26 13:14:47 +0300 | [diff] [blame] | 207 | dwc3_gadget_del_and_unmap_request(dep, req, status); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 208 | |
| 209 | spin_unlock(&dwc->lock); |
Michal Sojka | 304f7e5 | 2014-09-24 22:43:19 +0200 | [diff] [blame] | 210 | usb_gadget_giveback_request(&dep->endpoint, &req->request); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 211 | spin_lock(&dwc->lock); |
| 212 | } |
| 213 | |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 214 | /** |
| 215 | * dwc3_send_gadget_generic_command - issue a generic command for the controller |
| 216 | * @dwc: pointer to the controller context |
| 217 | * @cmd: the command to be issued |
| 218 | * @param: command parameter |
| 219 | * |
| 220 | * Caller should take care of locking. Issue @cmd with a given @param to @dwc |
| 221 | * and wait for its completion. |
| 222 | */ |
Felipe Balbi | 3ece0ec | 2014-09-05 09:47:44 -0500 | [diff] [blame] | 223 | int dwc3_send_gadget_generic_command(struct dwc3 *dwc, unsigned cmd, u32 param) |
Felipe Balbi | b09bb64 | 2012-04-24 16:19:11 +0300 | [diff] [blame] | 224 | { |
| 225 | u32 timeout = 500; |
Felipe Balbi | 71f7e70 | 2016-05-23 14:16:19 +0300 | [diff] [blame] | 226 | int status = 0; |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 227 | int ret = 0; |
Felipe Balbi | b09bb64 | 2012-04-24 16:19:11 +0300 | [diff] [blame] | 228 | u32 reg; |
| 229 | |
| 230 | dwc3_writel(dwc->regs, DWC3_DGCMDPAR, param); |
| 231 | dwc3_writel(dwc->regs, DWC3_DGCMD, cmd | DWC3_DGCMD_CMDACT); |
| 232 | |
| 233 | do { |
| 234 | reg = dwc3_readl(dwc->regs, DWC3_DGCMD); |
| 235 | if (!(reg & DWC3_DGCMD_CMDACT)) { |
Felipe Balbi | 71f7e70 | 2016-05-23 14:16:19 +0300 | [diff] [blame] | 236 | status = DWC3_DGCMD_STATUS(reg); |
| 237 | if (status) |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 238 | ret = -EINVAL; |
| 239 | break; |
Felipe Balbi | b09bb64 | 2012-04-24 16:19:11 +0300 | [diff] [blame] | 240 | } |
Janusz Dziedzic | e3aee48 | 2016-11-09 11:01:33 +0100 | [diff] [blame] | 241 | } while (--timeout); |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 242 | |
| 243 | if (!timeout) { |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 244 | ret = -ETIMEDOUT; |
Felipe Balbi | 71f7e70 | 2016-05-23 14:16:19 +0300 | [diff] [blame] | 245 | status = -ETIMEDOUT; |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 246 | } |
| 247 | |
Felipe Balbi | 71f7e70 | 2016-05-23 14:16:19 +0300 | [diff] [blame] | 248 | trace_dwc3_gadget_generic_cmd(cmd, param, status); |
| 249 | |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 250 | return ret; |
Felipe Balbi | b09bb64 | 2012-04-24 16:19:11 +0300 | [diff] [blame] | 251 | } |
| 252 | |
Felipe Balbi | c36d8e9 | 2016-04-04 12:46:33 +0300 | [diff] [blame] | 253 | static int __dwc3_gadget_wakeup(struct dwc3 *dwc); |
| 254 | |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 255 | /** |
| 256 | * dwc3_send_gadget_ep_cmd - issue an endpoint command |
| 257 | * @dep: the endpoint to which the command is going to be issued |
| 258 | * @cmd: the command to be issued |
| 259 | * @params: parameters to the command |
| 260 | * |
| 261 | * Caller should handle locking. This function will issue @cmd with given |
| 262 | * @params to @dep and wait for its completion. |
| 263 | */ |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 264 | int dwc3_send_gadget_ep_cmd(struct dwc3_ep *dep, unsigned cmd, |
| 265 | struct dwc3_gadget_ep_cmd_params *params) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 266 | { |
Felipe Balbi | 8897a76 | 2016-09-22 10:56:08 +0300 | [diff] [blame] | 267 | const struct usb_endpoint_descriptor *desc = dep->endpoint.desc; |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 268 | struct dwc3 *dwc = dep->dwc; |
Vincent Pelletier | 8722e09 | 2017-11-30 15:31:06 +0000 | [diff] [blame] | 269 | u32 timeout = 1000; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 270 | u32 reg; |
| 271 | |
Felipe Balbi | 0933df1 | 2016-05-23 14:02:33 +0300 | [diff] [blame] | 272 | int cmd_status = 0; |
Felipe Balbi | 2b0f11d | 2016-04-04 09:19:17 +0300 | [diff] [blame] | 273 | int susphy = false; |
Felipe Balbi | c0ca324 | 2016-04-04 09:11:51 +0300 | [diff] [blame] | 274 | int ret = -EINVAL; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 275 | |
Felipe Balbi | 2b0f11d | 2016-04-04 09:19:17 +0300 | [diff] [blame] | 276 | /* |
| 277 | * Synopsys Databook 2.60a states, on section 6.3.2.5.[1-8], that if |
| 278 | * we're issuing an endpoint command, we must check if |
| 279 | * GUSB2PHYCFG.SUSPHY bit is set. If it is, then we need to clear it. |
| 280 | * |
| 281 | * We will also set SUSPHY bit to what it was before returning as stated |
| 282 | * by the same section on Synopsys databook. |
| 283 | */ |
Felipe Balbi | ab2a92e | 2016-05-17 14:55:58 +0300 | [diff] [blame] | 284 | if (dwc->gadget.speed <= USB_SPEED_HIGH) { |
| 285 | reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0)); |
| 286 | if (unlikely(reg & DWC3_GUSB2PHYCFG_SUSPHY)) { |
| 287 | susphy = true; |
| 288 | reg &= ~DWC3_GUSB2PHYCFG_SUSPHY; |
| 289 | dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg); |
| 290 | } |
Felipe Balbi | 2b0f11d | 2016-04-04 09:19:17 +0300 | [diff] [blame] | 291 | } |
| 292 | |
Felipe Balbi | 5999914 | 2016-09-22 12:25:28 +0300 | [diff] [blame] | 293 | if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_STARTTRANSFER) { |
Felipe Balbi | c36d8e9 | 2016-04-04 12:46:33 +0300 | [diff] [blame] | 294 | int needs_wakeup; |
| 295 | |
| 296 | needs_wakeup = (dwc->link_state == DWC3_LINK_STATE_U1 || |
| 297 | dwc->link_state == DWC3_LINK_STATE_U2 || |
| 298 | dwc->link_state == DWC3_LINK_STATE_U3); |
| 299 | |
| 300 | if (unlikely(needs_wakeup)) { |
| 301 | ret = __dwc3_gadget_wakeup(dwc); |
| 302 | dev_WARN_ONCE(dwc->dev, ret, "wakeup failed --> %d\n", |
| 303 | ret); |
| 304 | } |
| 305 | } |
| 306 | |
Felipe Balbi | 2eb8801 | 2016-04-12 16:53:39 +0300 | [diff] [blame] | 307 | dwc3_writel(dep->regs, DWC3_DEPCMDPAR0, params->param0); |
| 308 | dwc3_writel(dep->regs, DWC3_DEPCMDPAR1, params->param1); |
| 309 | dwc3_writel(dep->regs, DWC3_DEPCMDPAR2, params->param2); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 310 | |
Felipe Balbi | 8897a76 | 2016-09-22 10:56:08 +0300 | [diff] [blame] | 311 | /* |
| 312 | * Synopsys Databook 2.60a states in section 6.3.2.5.6 of that if we're |
| 313 | * not relying on XferNotReady, we can make use of a special "No |
| 314 | * Response Update Transfer" command where we should clear both CmdAct |
| 315 | * and CmdIOC bits. |
| 316 | * |
| 317 | * With this, we don't need to wait for command completion and can |
| 318 | * straight away issue further commands to the endpoint. |
| 319 | * |
| 320 | * NOTICE: We're making an assumption that control endpoints will never |
| 321 | * make use of Update Transfer command. This is a safe assumption |
| 322 | * because we can never have more than one request at a time with |
| 323 | * Control Endpoints. If anybody changes that assumption, this chunk |
| 324 | * needs to be updated accordingly. |
| 325 | */ |
| 326 | if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_UPDATETRANSFER && |
| 327 | !usb_endpoint_xfer_isoc(desc)) |
| 328 | cmd &= ~(DWC3_DEPCMD_CMDIOC | DWC3_DEPCMD_CMDACT); |
| 329 | else |
| 330 | cmd |= DWC3_DEPCMD_CMDACT; |
| 331 | |
| 332 | dwc3_writel(dep->regs, DWC3_DEPCMD, cmd); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 333 | do { |
Felipe Balbi | 2eb8801 | 2016-04-12 16:53:39 +0300 | [diff] [blame] | 334 | reg = dwc3_readl(dep->regs, DWC3_DEPCMD); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 335 | if (!(reg & DWC3_DEPCMD_CMDACT)) { |
Felipe Balbi | 0933df1 | 2016-05-23 14:02:33 +0300 | [diff] [blame] | 336 | cmd_status = DWC3_DEPCMD_STATUS(reg); |
Konrad Leszczynski | 7b9cc7a | 2016-02-12 15:21:46 +0000 | [diff] [blame] | 337 | |
Konrad Leszczynski | 7b9cc7a | 2016-02-12 15:21:46 +0000 | [diff] [blame] | 338 | switch (cmd_status) { |
| 339 | case 0: |
| 340 | ret = 0; |
Felipe Balbi | c0ca324 | 2016-04-04 09:11:51 +0300 | [diff] [blame] | 341 | break; |
Konrad Leszczynski | 7b9cc7a | 2016-02-12 15:21:46 +0000 | [diff] [blame] | 342 | case DEPEVT_TRANSFER_NO_RESOURCE: |
Konrad Leszczynski | 7b9cc7a | 2016-02-12 15:21:46 +0000 | [diff] [blame] | 343 | ret = -EINVAL; |
| 344 | break; |
| 345 | case DEPEVT_TRANSFER_BUS_EXPIRY: |
| 346 | /* |
| 347 | * SW issues START TRANSFER command to |
| 348 | * isochronous ep with future frame interval. If |
| 349 | * future interval time has already passed when |
| 350 | * core receives the command, it will respond |
| 351 | * with an error status of 'Bus Expiry'. |
| 352 | * |
| 353 | * Instead of always returning -EINVAL, let's |
| 354 | * give a hint to the gadget driver that this is |
| 355 | * the case by returning -EAGAIN. |
| 356 | */ |
Konrad Leszczynski | 7b9cc7a | 2016-02-12 15:21:46 +0000 | [diff] [blame] | 357 | ret = -EAGAIN; |
| 358 | break; |
| 359 | default: |
| 360 | dev_WARN(dwc->dev, "UNKNOWN cmd status\n"); |
| 361 | } |
| 362 | |
Felipe Balbi | c0ca324 | 2016-04-04 09:11:51 +0300 | [diff] [blame] | 363 | break; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 364 | } |
Felipe Balbi | f6bb225 | 2016-05-23 13:53:34 +0300 | [diff] [blame] | 365 | } while (--timeout); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 366 | |
Felipe Balbi | f6bb225 | 2016-05-23 13:53:34 +0300 | [diff] [blame] | 367 | if (timeout == 0) { |
Felipe Balbi | f6bb225 | 2016-05-23 13:53:34 +0300 | [diff] [blame] | 368 | ret = -ETIMEDOUT; |
Felipe Balbi | 0933df1 | 2016-05-23 14:02:33 +0300 | [diff] [blame] | 369 | cmd_status = -ETIMEDOUT; |
Felipe Balbi | f6bb225 | 2016-05-23 13:53:34 +0300 | [diff] [blame] | 370 | } |
Felipe Balbi | c0ca324 | 2016-04-04 09:11:51 +0300 | [diff] [blame] | 371 | |
Felipe Balbi | 0933df1 | 2016-05-23 14:02:33 +0300 | [diff] [blame] | 372 | trace_dwc3_gadget_ep_cmd(dep, cmd, params, cmd_status); |
| 373 | |
Felipe Balbi | 6cb2e4e | 2016-10-21 13:07:09 +0300 | [diff] [blame] | 374 | if (ret == 0) { |
| 375 | switch (DWC3_DEPCMD_CMD(cmd)) { |
| 376 | case DWC3_DEPCMD_STARTTRANSFER: |
| 377 | dep->flags |= DWC3_EP_TRANSFER_STARTED; |
| 378 | break; |
| 379 | case DWC3_DEPCMD_ENDTRANSFER: |
| 380 | dep->flags &= ~DWC3_EP_TRANSFER_STARTED; |
| 381 | break; |
| 382 | default: |
| 383 | /* nothing */ |
| 384 | break; |
| 385 | } |
| 386 | } |
| 387 | |
Felipe Balbi | 2b0f11d | 2016-04-04 09:19:17 +0300 | [diff] [blame] | 388 | if (unlikely(susphy)) { |
| 389 | reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0)); |
| 390 | reg |= DWC3_GUSB2PHYCFG_SUSPHY; |
| 391 | dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg); |
| 392 | } |
| 393 | |
Felipe Balbi | c0ca324 | 2016-04-04 09:11:51 +0300 | [diff] [blame] | 394 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 395 | } |
| 396 | |
John Youn | 50c763f | 2016-05-31 17:49:56 -0700 | [diff] [blame] | 397 | static int dwc3_send_clear_stall_ep_cmd(struct dwc3_ep *dep) |
| 398 | { |
| 399 | struct dwc3 *dwc = dep->dwc; |
| 400 | struct dwc3_gadget_ep_cmd_params params; |
| 401 | u32 cmd = DWC3_DEPCMD_CLEARSTALL; |
| 402 | |
| 403 | /* |
| 404 | * As of core revision 2.60a the recommended programming model |
| 405 | * is to set the ClearPendIN bit when issuing a Clear Stall EP |
| 406 | * command for IN endpoints. This is to prevent an issue where |
| 407 | * some (non-compliant) hosts may not send ACK TPs for pending |
| 408 | * IN transfers due to a mishandled error condition. Synopsys |
| 409 | * STAR 9000614252. |
| 410 | */ |
Lu Baolu | 5e6c88d | 2016-09-09 12:51:27 +0800 | [diff] [blame] | 411 | if (dep->direction && (dwc->revision >= DWC3_REVISION_260A) && |
| 412 | (dwc->gadget.speed >= USB_SPEED_SUPER)) |
John Youn | 50c763f | 2016-05-31 17:49:56 -0700 | [diff] [blame] | 413 | cmd |= DWC3_DEPCMD_CLEARPENDIN; |
| 414 | |
| 415 | memset(¶ms, 0, sizeof(params)); |
| 416 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 417 | return dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); |
John Youn | 50c763f | 2016-05-31 17:49:56 -0700 | [diff] [blame] | 418 | } |
| 419 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 420 | static dma_addr_t dwc3_trb_dma_offset(struct dwc3_ep *dep, |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 421 | struct dwc3_trb *trb) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 422 | { |
Paul Zimmerman | c439ef8 | 2011-09-30 10:58:45 +0300 | [diff] [blame] | 423 | u32 offset = (char *) trb - (char *) dep->trb_pool; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 424 | |
| 425 | return dep->trb_pool_dma + offset; |
| 426 | } |
| 427 | |
| 428 | static int dwc3_alloc_trb_pool(struct dwc3_ep *dep) |
| 429 | { |
| 430 | struct dwc3 *dwc = dep->dwc; |
| 431 | |
| 432 | if (dep->trb_pool) |
| 433 | return 0; |
| 434 | |
Arnd Bergmann | d64ff40 | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 435 | dep->trb_pool = dma_alloc_coherent(dwc->sysdev, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 436 | sizeof(struct dwc3_trb) * DWC3_TRB_NUM, |
| 437 | &dep->trb_pool_dma, GFP_KERNEL); |
| 438 | if (!dep->trb_pool) { |
| 439 | dev_err(dep->dwc->dev, "failed to allocate trb pool for %s\n", |
| 440 | dep->name); |
| 441 | return -ENOMEM; |
| 442 | } |
| 443 | |
| 444 | return 0; |
| 445 | } |
| 446 | |
| 447 | static void dwc3_free_trb_pool(struct dwc3_ep *dep) |
| 448 | { |
| 449 | struct dwc3 *dwc = dep->dwc; |
| 450 | |
Arnd Bergmann | d64ff40 | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 451 | dma_free_coherent(dwc->sysdev, sizeof(struct dwc3_trb) * DWC3_TRB_NUM, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 452 | dep->trb_pool, dep->trb_pool_dma); |
| 453 | |
| 454 | dep->trb_pool = NULL; |
| 455 | dep->trb_pool_dma = 0; |
| 456 | } |
| 457 | |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 458 | static int dwc3_gadget_set_xfer_resource(struct dwc3 *dwc, struct dwc3_ep *dep); |
| 459 | |
| 460 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 461 | * dwc3_gadget_start_config - configure ep resources |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 462 | * @dwc: pointer to our controller context structure |
| 463 | * @dep: endpoint that is being enabled |
| 464 | * |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 465 | * Issue a %DWC3_DEPCMD_DEPSTARTCFG command to @dep. After the command's |
| 466 | * completion, it will set Transfer Resource for all available endpoints. |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 467 | * |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 468 | * The assignment of transfer resources cannot perfectly follow the data book |
| 469 | * due to the fact that the controller driver does not have all knowledge of the |
| 470 | * configuration in advance. It is given this information piecemeal by the |
| 471 | * composite gadget framework after every SET_CONFIGURATION and |
| 472 | * SET_INTERFACE. Trying to follow the databook programming model in this |
| 473 | * scenario can cause errors. For two reasons: |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 474 | * |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 475 | * 1) The databook says to do %DWC3_DEPCMD_DEPSTARTCFG for every |
| 476 | * %USB_REQ_SET_CONFIGURATION and %USB_REQ_SET_INTERFACE (8.1.5). This is |
| 477 | * incorrect in the scenario of multiple interfaces. |
| 478 | * |
| 479 | * 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] | 480 | * endpoint on alt setting (8.1.6). |
| 481 | * |
| 482 | * The following simplified method is used instead: |
| 483 | * |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 484 | * All hardware endpoints can be assigned a transfer resource and this setting |
| 485 | * will stay persistent until either a core reset or hibernation. So whenever we |
| 486 | * do a %DWC3_DEPCMD_DEPSTARTCFG(0) we can go ahead and do |
| 487 | * %DWC3_DEPCMD_DEPXFERCFG for every hardware endpoint as well. We are |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 488 | * guaranteed that there are as many transfer resources as endpoints. |
| 489 | * |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 490 | * This function is called for each endpoint when it is being enabled but is |
| 491 | * triggered only when called for EP0-out, which always happens first, and which |
| 492 | * should only happen in one of the above conditions. |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 493 | */ |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 494 | static int dwc3_gadget_start_config(struct dwc3 *dwc, struct dwc3_ep *dep) |
| 495 | { |
| 496 | struct dwc3_gadget_ep_cmd_params params; |
| 497 | u32 cmd; |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 498 | int i; |
| 499 | int ret; |
| 500 | |
| 501 | if (dep->number) |
| 502 | return 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 503 | |
| 504 | memset(¶ms, 0x00, sizeof(params)); |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 505 | cmd = DWC3_DEPCMD_DEPSTARTCFG; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 506 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 507 | ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 508 | if (ret) |
| 509 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 510 | |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 511 | for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) { |
| 512 | struct dwc3_ep *dep = dwc->eps[i]; |
| 513 | |
| 514 | if (!dep) |
| 515 | continue; |
| 516 | |
| 517 | ret = dwc3_gadget_set_xfer_resource(dwc, dep); |
| 518 | if (ret) |
| 519 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 520 | } |
| 521 | |
| 522 | return 0; |
| 523 | } |
| 524 | |
| 525 | static int dwc3_gadget_set_ep_config(struct dwc3 *dwc, struct dwc3_ep *dep, |
Felipe Balbi | 21e64bf | 2016-06-02 12:37:31 +0300 | [diff] [blame] | 526 | bool modify, bool restore) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 527 | { |
John Youn | 39ebb05 | 2016-11-09 16:36:28 -0800 | [diff] [blame] | 528 | const struct usb_ss_ep_comp_descriptor *comp_desc; |
| 529 | const struct usb_endpoint_descriptor *desc; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 530 | struct dwc3_gadget_ep_cmd_params params; |
| 531 | |
Felipe Balbi | 21e64bf | 2016-06-02 12:37:31 +0300 | [diff] [blame] | 532 | if (dev_WARN_ONCE(dwc->dev, modify && restore, |
| 533 | "Can't modify and restore\n")) |
| 534 | return -EINVAL; |
| 535 | |
John Youn | 39ebb05 | 2016-11-09 16:36:28 -0800 | [diff] [blame] | 536 | comp_desc = dep->endpoint.comp_desc; |
| 537 | desc = dep->endpoint.desc; |
| 538 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 539 | memset(¶ms, 0x00, sizeof(params)); |
| 540 | |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 541 | params.param0 = DWC3_DEPCFG_EP_TYPE(usb_endpoint_type(desc)) |
Chanho Park | d2e9a13 | 2012-08-31 16:54:07 +0900 | [diff] [blame] | 542 | | DWC3_DEPCFG_MAX_PACKET_SIZE(usb_endpoint_maxp(desc)); |
| 543 | |
| 544 | /* Burst size is only needed in SuperSpeed mode */ |
John Youn | ee5cd41 | 2016-02-05 17:08:45 -0800 | [diff] [blame] | 545 | if (dwc->gadget.speed >= USB_SPEED_SUPER) { |
Felipe Balbi | 676e349 | 2016-04-26 10:49:07 +0300 | [diff] [blame] | 546 | u32 burst = dep->endpoint.maxburst; |
Felipe Balbi | 676e349 | 2016-04-26 10:49:07 +0300 | [diff] [blame] | 547 | params.param0 |= DWC3_DEPCFG_BURST_SIZE(burst - 1); |
Chanho Park | d2e9a13 | 2012-08-31 16:54:07 +0900 | [diff] [blame] | 548 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 549 | |
Felipe Balbi | 21e64bf | 2016-06-02 12:37:31 +0300 | [diff] [blame] | 550 | if (modify) { |
| 551 | params.param0 |= DWC3_DEPCFG_ACTION_MODIFY; |
| 552 | } else if (restore) { |
Paul Zimmerman | 265b70a | 2013-12-19 12:38:49 -0600 | [diff] [blame] | 553 | params.param0 |= DWC3_DEPCFG_ACTION_RESTORE; |
| 554 | params.param2 |= dep->saved_state; |
Felipe Balbi | 21e64bf | 2016-06-02 12:37:31 +0300 | [diff] [blame] | 555 | } else { |
| 556 | params.param0 |= DWC3_DEPCFG_ACTION_INIT; |
Paul Zimmerman | 265b70a | 2013-12-19 12:38:49 -0600 | [diff] [blame] | 557 | } |
| 558 | |
Felipe Balbi | 4bc48c9 | 2016-08-10 16:04:33 +0300 | [diff] [blame] | 559 | if (usb_endpoint_xfer_control(desc)) |
| 560 | params.param1 = DWC3_DEPCFG_XFER_COMPLETE_EN; |
Felipe Balbi | 13fa2e6 | 2016-05-30 13:40:00 +0300 | [diff] [blame] | 561 | |
| 562 | if (dep->number <= 1 || usb_endpoint_xfer_isoc(desc)) |
| 563 | params.param1 |= DWC3_DEPCFG_XFER_NOT_READY_EN; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 564 | |
Felipe Balbi | 18b7ede | 2012-01-02 13:35:41 +0200 | [diff] [blame] | 565 | if (usb_ss_max_streams(comp_desc) && usb_endpoint_xfer_bulk(desc)) { |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 566 | params.param1 |= DWC3_DEPCFG_STREAM_CAPABLE |
| 567 | | DWC3_DEPCFG_STREAM_EVENT_EN; |
Felipe Balbi | 879631a | 2011-09-30 10:58:47 +0300 | [diff] [blame] | 568 | dep->stream_capable = true; |
| 569 | } |
| 570 | |
Felipe Balbi | 0b93a4c | 2014-09-04 10:28:10 -0500 | [diff] [blame] | 571 | if (!usb_endpoint_xfer_control(desc)) |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 572 | params.param1 |= DWC3_DEPCFG_XFER_IN_PROGRESS_EN; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 573 | |
| 574 | /* |
| 575 | * We are doing 1:1 mapping for endpoints, meaning |
| 576 | * Physical Endpoints 2 maps to Logical Endpoint 2 and |
| 577 | * so on. We consider the direction bit as part of the physical |
| 578 | * endpoint number. So USB endpoint 0x81 is 0x03. |
| 579 | */ |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 580 | params.param1 |= DWC3_DEPCFG_EP_NUMBER(dep->number); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 581 | |
| 582 | /* |
| 583 | * We must use the lower 16 TX FIFOs even though |
| 584 | * HW might have more |
| 585 | */ |
| 586 | if (dep->direction) |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 587 | params.param0 |= DWC3_DEPCFG_FIFO_NUMBER(dep->number >> 1); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 588 | |
| 589 | if (desc->bInterval) { |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 590 | params.param1 |= DWC3_DEPCFG_BINTERVAL_M1(desc->bInterval - 1); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 591 | dep->interval = 1 << (desc->bInterval - 1); |
| 592 | } |
| 593 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 594 | return dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETEPCONFIG, ¶ms); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 595 | } |
| 596 | |
| 597 | static int dwc3_gadget_set_xfer_resource(struct dwc3 *dwc, struct dwc3_ep *dep) |
| 598 | { |
| 599 | struct dwc3_gadget_ep_cmd_params params; |
| 600 | |
| 601 | memset(¶ms, 0x00, sizeof(params)); |
| 602 | |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 603 | params.param0 = DWC3_DEPXFERCFG_NUM_XFER_RES(1); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 604 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 605 | return dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETTRANSFRESOURCE, |
| 606 | ¶ms); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 607 | } |
| 608 | |
| 609 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 610 | * __dwc3_gadget_ep_enable - initializes a hw endpoint |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 611 | * @dep: endpoint to be initialized |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 612 | * @modify: if true, modify existing endpoint configuration |
| 613 | * @restore: if true, restore endpoint configuration from scratch buffer |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 614 | * |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 615 | * Caller should take care of locking. Execute all necessary commands to |
| 616 | * 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] | 617 | */ |
| 618 | static int __dwc3_gadget_ep_enable(struct dwc3_ep *dep, |
Felipe Balbi | 21e64bf | 2016-06-02 12:37:31 +0300 | [diff] [blame] | 619 | bool modify, bool restore) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 620 | { |
John Youn | 39ebb05 | 2016-11-09 16:36:28 -0800 | [diff] [blame] | 621 | const struct usb_endpoint_descriptor *desc = dep->endpoint.desc; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 622 | struct dwc3 *dwc = dep->dwc; |
John Youn | 39ebb05 | 2016-11-09 16:36:28 -0800 | [diff] [blame] | 623 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 624 | u32 reg; |
Andy Shevchenko | b09e99e | 2014-05-15 15:53:32 +0300 | [diff] [blame] | 625 | int ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 626 | |
| 627 | if (!(dep->flags & DWC3_EP_ENABLED)) { |
| 628 | ret = dwc3_gadget_start_config(dwc, dep); |
| 629 | if (ret) |
| 630 | return ret; |
| 631 | } |
| 632 | |
John Youn | 39ebb05 | 2016-11-09 16:36:28 -0800 | [diff] [blame] | 633 | ret = dwc3_gadget_set_ep_config(dwc, dep, modify, restore); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 634 | if (ret) |
| 635 | return ret; |
| 636 | |
| 637 | if (!(dep->flags & DWC3_EP_ENABLED)) { |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 638 | struct dwc3_trb *trb_st_hw; |
| 639 | struct dwc3_trb *trb_link; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 640 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 641 | dep->type = usb_endpoint_type(desc); |
| 642 | dep->flags |= DWC3_EP_ENABLED; |
Baolin Wang | 76a638f | 2016-10-31 19:38:36 +0800 | [diff] [blame] | 643 | dep->flags &= ~DWC3_EP_END_TRANSFER_PENDING; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 644 | |
| 645 | reg = dwc3_readl(dwc->regs, DWC3_DALEPENA); |
| 646 | reg |= DWC3_DALEPENA_EP(dep->number); |
| 647 | dwc3_writel(dwc->regs, DWC3_DALEPENA, reg); |
| 648 | |
Baolin Wang | 76a638f | 2016-10-31 19:38:36 +0800 | [diff] [blame] | 649 | init_waitqueue_head(&dep->wait_end_transfer); |
| 650 | |
Felipe Balbi | 36b68aa | 2016-04-05 13:24:36 +0300 | [diff] [blame] | 651 | if (usb_endpoint_xfer_control(desc)) |
Felipe Balbi | 2870e50 | 2016-11-03 13:53:29 +0200 | [diff] [blame] | 652 | goto out; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 653 | |
John Youn | 0d25744 | 2016-05-19 17:26:08 -0700 | [diff] [blame] | 654 | /* Initialize the TRB ring */ |
| 655 | dep->trb_dequeue = 0; |
| 656 | dep->trb_enqueue = 0; |
| 657 | memset(dep->trb_pool, 0, |
| 658 | sizeof(struct dwc3_trb) * DWC3_TRB_NUM); |
| 659 | |
Felipe Balbi | 36b68aa | 2016-04-05 13:24:36 +0300 | [diff] [blame] | 660 | /* Link TRB. The HWO bit is never reset */ |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 661 | trb_st_hw = &dep->trb_pool[0]; |
| 662 | |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 663 | trb_link = &dep->trb_pool[DWC3_TRB_NUM - 1]; |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 664 | trb_link->bpl = lower_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw)); |
| 665 | trb_link->bph = upper_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw)); |
| 666 | trb_link->ctrl |= DWC3_TRBCTL_LINK_TRB; |
| 667 | trb_link->ctrl |= DWC3_TRB_CTRL_HWO; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 668 | } |
| 669 | |
Felipe Balbi | a97ea99 | 2016-09-29 16:28:56 +0300 | [diff] [blame] | 670 | /* |
| 671 | * Issue StartTransfer here with no-op TRB so we can always rely on No |
| 672 | * Response Update Transfer command. |
| 673 | */ |
Felipe Balbi | 52fcc0b | 2018-03-26 13:19:43 +0300 | [diff] [blame] | 674 | if (usb_endpoint_xfer_bulk(desc) || |
| 675 | usb_endpoint_xfer_int(desc)) { |
Felipe Balbi | a97ea99 | 2016-09-29 16:28:56 +0300 | [diff] [blame] | 676 | struct dwc3_gadget_ep_cmd_params params; |
| 677 | struct dwc3_trb *trb; |
| 678 | dma_addr_t trb_dma; |
| 679 | u32 cmd; |
| 680 | |
| 681 | memset(¶ms, 0, sizeof(params)); |
| 682 | trb = &dep->trb_pool[0]; |
| 683 | trb_dma = dwc3_trb_dma_offset(dep, trb); |
| 684 | |
| 685 | params.param0 = upper_32_bits(trb_dma); |
| 686 | params.param1 = lower_32_bits(trb_dma); |
| 687 | |
| 688 | cmd = DWC3_DEPCMD_STARTTRANSFER; |
| 689 | |
| 690 | ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); |
| 691 | if (ret < 0) |
| 692 | return ret; |
| 693 | |
| 694 | dep->flags |= DWC3_EP_BUSY; |
| 695 | |
| 696 | dep->resource_index = dwc3_gadget_ep_get_transfer_index(dep); |
| 697 | WARN_ON_ONCE(!dep->resource_index); |
| 698 | } |
| 699 | |
Felipe Balbi | 2870e50 | 2016-11-03 13:53:29 +0200 | [diff] [blame] | 700 | out: |
| 701 | trace_dwc3_gadget_ep_enable(dep); |
| 702 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 703 | return 0; |
| 704 | } |
| 705 | |
Paul Zimmerman | b992e68 | 2012-04-27 14:17:35 +0300 | [diff] [blame] | 706 | static void dwc3_stop_active_transfer(struct dwc3 *dwc, u32 epnum, bool force); |
Sebastian Andrzej Siewior | 624407f | 2011-08-29 13:56:37 +0200 | [diff] [blame] | 707 | static void dwc3_remove_requests(struct dwc3 *dwc, struct dwc3_ep *dep) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 708 | { |
| 709 | struct dwc3_request *req; |
| 710 | |
Felipe Balbi | 0e14602 | 2016-06-21 10:32:02 +0300 | [diff] [blame] | 711 | dwc3_stop_active_transfer(dwc, dep->number, true); |
Felipe Balbi | 69450c4 | 2016-05-30 13:37:02 +0300 | [diff] [blame] | 712 | |
Felipe Balbi | 0e14602 | 2016-06-21 10:32:02 +0300 | [diff] [blame] | 713 | /* - giveback all requests to gadget driver */ |
| 714 | while (!list_empty(&dep->started_list)) { |
| 715 | req = next_request(&dep->started_list); |
Sebastian Andrzej Siewior | 624407f | 2011-08-29 13:56:37 +0200 | [diff] [blame] | 716 | |
Felipe Balbi | 0e14602 | 2016-06-21 10:32:02 +0300 | [diff] [blame] | 717 | dwc3_gadget_giveback(dep, req, -ESHUTDOWN); |
Felipe Balbi | ea53b88 | 2012-02-17 12:10:04 +0200 | [diff] [blame] | 718 | } |
| 719 | |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 720 | while (!list_empty(&dep->pending_list)) { |
| 721 | req = next_request(&dep->pending_list); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 722 | |
Sebastian Andrzej Siewior | 624407f | 2011-08-29 13:56:37 +0200 | [diff] [blame] | 723 | dwc3_gadget_giveback(dep, req, -ESHUTDOWN); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 724 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 725 | } |
| 726 | |
| 727 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 728 | * __dwc3_gadget_ep_disable - disables a hw endpoint |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 729 | * @dep: the endpoint to disable |
| 730 | * |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 731 | * This function undoes what __dwc3_gadget_ep_enable did and also removes |
| 732 | * requests which are currently being processed by the hardware and those which |
| 733 | * are not yet scheduled. |
| 734 | * |
Sebastian Andrzej Siewior | 624407f | 2011-08-29 13:56:37 +0200 | [diff] [blame] | 735 | * Caller should take care of locking. |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 736 | */ |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 737 | static int __dwc3_gadget_ep_disable(struct dwc3_ep *dep) |
| 738 | { |
| 739 | struct dwc3 *dwc = dep->dwc; |
| 740 | u32 reg; |
| 741 | |
Felipe Balbi | 2870e50 | 2016-11-03 13:53:29 +0200 | [diff] [blame] | 742 | trace_dwc3_gadget_ep_disable(dep); |
Felipe Balbi | 7eaeac5 | 2015-07-20 14:46:15 -0500 | [diff] [blame] | 743 | |
Sebastian Andrzej Siewior | 624407f | 2011-08-29 13:56:37 +0200 | [diff] [blame] | 744 | dwc3_remove_requests(dwc, dep); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 745 | |
Felipe Balbi | 687ef98 | 2014-04-16 10:30:33 -0500 | [diff] [blame] | 746 | /* make sure HW endpoint isn't stalled */ |
| 747 | if (dep->flags & DWC3_EP_STALL) |
Felipe Balbi | 7a60855 | 2014-09-24 14:19:52 -0500 | [diff] [blame] | 748 | __dwc3_gadget_ep_set_halt(dep, 0, false); |
Felipe Balbi | 687ef98 | 2014-04-16 10:30:33 -0500 | [diff] [blame] | 749 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 750 | reg = dwc3_readl(dwc->regs, DWC3_DALEPENA); |
| 751 | reg &= ~DWC3_DALEPENA_EP(dep->number); |
| 752 | dwc3_writel(dwc->regs, DWC3_DALEPENA, reg); |
| 753 | |
Felipe Balbi | 879631a | 2011-09-30 10:58:47 +0300 | [diff] [blame] | 754 | dep->stream_capable = false; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 755 | dep->type = 0; |
Baolin Wang | 76a638f | 2016-10-31 19:38:36 +0800 | [diff] [blame] | 756 | dep->flags &= DWC3_EP_END_TRANSFER_PENDING; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 757 | |
John Youn | 39ebb05 | 2016-11-09 16:36:28 -0800 | [diff] [blame] | 758 | /* Clear out the ep descriptors for non-ep0 */ |
| 759 | if (dep->number > 1) { |
| 760 | dep->endpoint.comp_desc = NULL; |
| 761 | dep->endpoint.desc = NULL; |
| 762 | } |
| 763 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 764 | return 0; |
| 765 | } |
| 766 | |
| 767 | /* -------------------------------------------------------------------------- */ |
| 768 | |
| 769 | static int dwc3_gadget_ep0_enable(struct usb_ep *ep, |
| 770 | const struct usb_endpoint_descriptor *desc) |
| 771 | { |
| 772 | return -EINVAL; |
| 773 | } |
| 774 | |
| 775 | static int dwc3_gadget_ep0_disable(struct usb_ep *ep) |
| 776 | { |
| 777 | return -EINVAL; |
| 778 | } |
| 779 | |
| 780 | /* -------------------------------------------------------------------------- */ |
| 781 | |
| 782 | static int dwc3_gadget_ep_enable(struct usb_ep *ep, |
| 783 | const struct usb_endpoint_descriptor *desc) |
| 784 | { |
| 785 | struct dwc3_ep *dep; |
| 786 | struct dwc3 *dwc; |
| 787 | unsigned long flags; |
| 788 | int ret; |
| 789 | |
| 790 | if (!ep || !desc || desc->bDescriptorType != USB_DT_ENDPOINT) { |
| 791 | pr_debug("dwc3: invalid parameters\n"); |
| 792 | return -EINVAL; |
| 793 | } |
| 794 | |
| 795 | if (!desc->wMaxPacketSize) { |
| 796 | pr_debug("dwc3: missing wMaxPacketSize\n"); |
| 797 | return -EINVAL; |
| 798 | } |
| 799 | |
| 800 | dep = to_dwc3_ep(ep); |
| 801 | dwc = dep->dwc; |
| 802 | |
Felipe Balbi | 95ca961 | 2015-12-10 13:08:20 -0600 | [diff] [blame] | 803 | if (dev_WARN_ONCE(dwc->dev, dep->flags & DWC3_EP_ENABLED, |
| 804 | "%s is already enabled\n", |
| 805 | dep->name)) |
Felipe Balbi | c6f83f3 | 2012-08-15 12:28:29 +0300 | [diff] [blame] | 806 | return 0; |
Felipe Balbi | c6f83f3 | 2012-08-15 12:28:29 +0300 | [diff] [blame] | 807 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 808 | spin_lock_irqsave(&dwc->lock, flags); |
John Youn | 39ebb05 | 2016-11-09 16:36:28 -0800 | [diff] [blame] | 809 | ret = __dwc3_gadget_ep_enable(dep, false, false); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 810 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 811 | |
| 812 | return ret; |
| 813 | } |
| 814 | |
| 815 | static int dwc3_gadget_ep_disable(struct usb_ep *ep) |
| 816 | { |
| 817 | struct dwc3_ep *dep; |
| 818 | struct dwc3 *dwc; |
| 819 | unsigned long flags; |
| 820 | int ret; |
| 821 | |
| 822 | if (!ep) { |
| 823 | pr_debug("dwc3: invalid parameters\n"); |
| 824 | return -EINVAL; |
| 825 | } |
| 826 | |
| 827 | dep = to_dwc3_ep(ep); |
| 828 | dwc = dep->dwc; |
| 829 | |
Felipe Balbi | 95ca961 | 2015-12-10 13:08:20 -0600 | [diff] [blame] | 830 | if (dev_WARN_ONCE(dwc->dev, !(dep->flags & DWC3_EP_ENABLED), |
| 831 | "%s is already disabled\n", |
| 832 | dep->name)) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 833 | return 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 834 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 835 | spin_lock_irqsave(&dwc->lock, flags); |
| 836 | ret = __dwc3_gadget_ep_disable(dep); |
| 837 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 838 | |
| 839 | return ret; |
| 840 | } |
| 841 | |
| 842 | 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] | 843 | gfp_t gfp_flags) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 844 | { |
| 845 | struct dwc3_request *req; |
| 846 | struct dwc3_ep *dep = to_dwc3_ep(ep); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 847 | |
| 848 | req = kzalloc(sizeof(*req), gfp_flags); |
Jingoo Han | 734d5a5 | 2014-07-17 12:45:11 +0900 | [diff] [blame] | 849 | if (!req) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 850 | return NULL; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 851 | |
| 852 | req->epnum = dep->number; |
| 853 | req->dep = dep; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 854 | |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 855 | trace_dwc3_alloc_request(req); |
| 856 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 857 | return &req->request; |
| 858 | } |
| 859 | |
| 860 | static void dwc3_gadget_ep_free_request(struct usb_ep *ep, |
| 861 | struct usb_request *request) |
| 862 | { |
| 863 | struct dwc3_request *req = to_dwc3_request(request); |
| 864 | |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 865 | trace_dwc3_free_request(req); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 866 | kfree(req); |
| 867 | } |
| 868 | |
Felipe Balbi | 2c78c02 | 2016-08-12 13:13:10 +0300 | [diff] [blame] | 869 | static u32 dwc3_calc_trbs_left(struct dwc3_ep *dep); |
| 870 | |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 871 | static void __dwc3_prepare_one_trb(struct dwc3_ep *dep, struct dwc3_trb *trb, |
| 872 | dma_addr_t dma, unsigned length, unsigned chain, unsigned node, |
| 873 | unsigned stream_id, unsigned short_not_ok, unsigned no_interrupt) |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 874 | { |
Felipe Balbi | 6b9018d | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 875 | struct dwc3 *dwc = dep->dwc; |
| 876 | struct usb_gadget *gadget = &dwc->gadget; |
| 877 | enum usb_device_speed speed = gadget->speed; |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 878 | |
Felipe Balbi | ef966b9 | 2016-04-05 13:09:51 +0300 | [diff] [blame] | 879 | dwc3_ep_inc_enq(dep); |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 880 | |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 881 | trb->size = DWC3_TRB_SIZE_LENGTH(length); |
| 882 | trb->bpl = lower_32_bits(dma); |
| 883 | trb->bph = upper_32_bits(dma); |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 884 | |
Ido Shayevitz | 16e78db | 2012-03-12 20:25:24 +0200 | [diff] [blame] | 885 | switch (usb_endpoint_type(dep->endpoint.desc)) { |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 886 | case USB_ENDPOINT_XFER_CONTROL: |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 887 | trb->ctrl = DWC3_TRBCTL_CONTROL_SETUP; |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 888 | break; |
| 889 | |
| 890 | case USB_ENDPOINT_XFER_ISOC: |
Felipe Balbi | 6b9018d | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 891 | if (!node) { |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 892 | trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS_FIRST; |
Felipe Balbi | 6b9018d | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 893 | |
Manu Gautam | 40d829f | 2017-07-19 17:07:10 +0530 | [diff] [blame] | 894 | /* |
| 895 | * USB Specification 2.0 Section 5.9.2 states that: "If |
| 896 | * there is only a single transaction in the microframe, |
| 897 | * only a DATA0 data packet PID is used. If there are |
| 898 | * two transactions per microframe, DATA1 is used for |
| 899 | * the first transaction data packet and DATA0 is used |
| 900 | * for the second transaction data packet. If there are |
| 901 | * three transactions per microframe, DATA2 is used for |
| 902 | * the first transaction data packet, DATA1 is used for |
| 903 | * the second, and DATA0 is used for the third." |
| 904 | * |
| 905 | * IOW, we should satisfy the following cases: |
| 906 | * |
| 907 | * 1) length <= maxpacket |
| 908 | * - DATA0 |
| 909 | * |
| 910 | * 2) maxpacket < length <= (2 * maxpacket) |
| 911 | * - DATA1, DATA0 |
| 912 | * |
| 913 | * 3) (2 * maxpacket) < length <= (3 * maxpacket) |
| 914 | * - DATA2, DATA1, DATA0 |
| 915 | */ |
Felipe Balbi | 6b9018d | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 916 | if (speed == USB_SPEED_HIGH) { |
| 917 | struct usb_ep *ep = &dep->endpoint; |
Manu Gautam | ec5bb87 | 2017-12-06 12:49:04 +0530 | [diff] [blame] | 918 | unsigned int mult = 2; |
Manu Gautam | 40d829f | 2017-07-19 17:07:10 +0530 | [diff] [blame] | 919 | unsigned int maxp = usb_endpoint_maxp(ep->desc); |
| 920 | |
| 921 | if (length <= (2 * maxp)) |
| 922 | mult--; |
| 923 | |
| 924 | if (length <= maxp) |
| 925 | mult--; |
| 926 | |
| 927 | trb->size |= DWC3_TRB_SIZE_PCM1(mult); |
Felipe Balbi | 6b9018d | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 928 | } |
| 929 | } else { |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 930 | trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS; |
Felipe Balbi | 6b9018d | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 931 | } |
Felipe Balbi | ca4d44e | 2016-03-10 13:53:27 +0200 | [diff] [blame] | 932 | |
| 933 | /* always enable Interrupt on Missed ISOC */ |
| 934 | trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI; |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 935 | break; |
| 936 | |
| 937 | case USB_ENDPOINT_XFER_BULK: |
| 938 | case USB_ENDPOINT_XFER_INT: |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 939 | trb->ctrl = DWC3_TRBCTL_NORMAL; |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 940 | break; |
| 941 | default: |
| 942 | /* |
| 943 | * This is only possible with faulty memory because we |
| 944 | * checked it already :) |
| 945 | */ |
Felipe Balbi | 0a695d4 | 2016-10-07 11:20:01 +0300 | [diff] [blame] | 946 | dev_WARN(dwc->dev, "Unknown endpoint type %d\n", |
| 947 | usb_endpoint_type(dep->endpoint.desc)); |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 948 | } |
| 949 | |
Felipe Balbi | ca4d44e | 2016-03-10 13:53:27 +0200 | [diff] [blame] | 950 | /* always enable Continue on Short Packet */ |
Felipe Balbi | c9508c8 | 2016-10-05 14:26:23 +0300 | [diff] [blame] | 951 | if (usb_endpoint_dir_out(dep->endpoint.desc)) { |
Felipe Balbi | 58f2903 | 2016-10-06 17:10:39 +0300 | [diff] [blame] | 952 | trb->ctrl |= DWC3_TRB_CTRL_CSP; |
Felipe Balbi | f3af365 | 2013-12-13 14:19:33 -0600 | [diff] [blame] | 953 | |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 954 | if (short_not_ok) |
Felipe Balbi | c9508c8 | 2016-10-05 14:26:23 +0300 | [diff] [blame] | 955 | trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI; |
| 956 | } |
| 957 | |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 958 | if ((!no_interrupt && !chain) || |
Felipe Balbi | 2c78c02 | 2016-08-12 13:13:10 +0300 | [diff] [blame] | 959 | (dwc3_calc_trbs_left(dep) == 0)) |
Felipe Balbi | c9508c8 | 2016-10-05 14:26:23 +0300 | [diff] [blame] | 960 | trb->ctrl |= DWC3_TRB_CTRL_IOC; |
Felipe Balbi | ca4d44e | 2016-03-10 13:53:27 +0200 | [diff] [blame] | 961 | |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 962 | if (chain) |
| 963 | trb->ctrl |= DWC3_TRB_CTRL_CHN; |
| 964 | |
Ido Shayevitz | 16e78db | 2012-03-12 20:25:24 +0200 | [diff] [blame] | 965 | if (usb_endpoint_xfer_bulk(dep->endpoint.desc) && dep->stream_capable) |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 966 | trb->ctrl |= DWC3_TRB_CTRL_SID_SOFN(stream_id); |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 967 | |
| 968 | trb->ctrl |= DWC3_TRB_CTRL_HWO; |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 969 | |
| 970 | trace_dwc3_prepare_trb(dep, trb); |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 971 | } |
| 972 | |
John Youn | 361572b | 2016-05-19 17:26:17 -0700 | [diff] [blame] | 973 | /** |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 974 | * dwc3_prepare_one_trb - setup one TRB from one request |
| 975 | * @dep: endpoint for which this request is prepared |
| 976 | * @req: dwc3_request pointer |
| 977 | * @chain: should this TRB be chained to the next? |
| 978 | * @node: only for isochronous endpoints. First TRB needs different type. |
| 979 | */ |
| 980 | static void dwc3_prepare_one_trb(struct dwc3_ep *dep, |
| 981 | struct dwc3_request *req, unsigned chain, unsigned node) |
| 982 | { |
| 983 | struct dwc3_trb *trb; |
Anurag Kumar Vulisha | a31e63b | 2018-03-27 16:35:20 +0530 | [diff] [blame] | 984 | unsigned int length; |
| 985 | dma_addr_t dma; |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 986 | unsigned stream_id = req->request.stream_id; |
| 987 | unsigned short_not_ok = req->request.short_not_ok; |
| 988 | unsigned no_interrupt = req->request.no_interrupt; |
Anurag Kumar Vulisha | a31e63b | 2018-03-27 16:35:20 +0530 | [diff] [blame] | 989 | |
| 990 | if (req->request.num_sgs > 0) { |
| 991 | length = sg_dma_len(req->start_sg); |
| 992 | dma = sg_dma_address(req->start_sg); |
| 993 | } else { |
| 994 | length = req->request.length; |
| 995 | dma = req->request.dma; |
| 996 | } |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 997 | |
| 998 | trb = &dep->trb_pool[dep->trb_enqueue]; |
| 999 | |
| 1000 | if (!req->trb) { |
| 1001 | dwc3_gadget_move_started_request(req); |
| 1002 | req->trb = trb; |
| 1003 | req->trb_dma = dwc3_trb_dma_offset(dep, trb); |
Felipe Balbi | e49d3cf | 2017-01-05 14:40:53 +0200 | [diff] [blame] | 1004 | } |
| 1005 | |
| 1006 | __dwc3_prepare_one_trb(dep, trb, dma, length, chain, node, |
| 1007 | stream_id, short_not_ok, no_interrupt); |
| 1008 | } |
| 1009 | |
| 1010 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 1011 | * dwc3_ep_prev_trb - returns the previous TRB in the ring |
John Youn | 361572b | 2016-05-19 17:26:17 -0700 | [diff] [blame] | 1012 | * @dep: The endpoint with the TRB ring |
| 1013 | * @index: The index of the current TRB in the ring |
| 1014 | * |
| 1015 | * Returns the TRB prior to the one pointed to by the index. If the |
| 1016 | * index is 0, we will wrap backwards, skip the link TRB, and return |
| 1017 | * the one just before that. |
| 1018 | */ |
| 1019 | static struct dwc3_trb *dwc3_ep_prev_trb(struct dwc3_ep *dep, u8 index) |
| 1020 | { |
Felipe Balbi | 45438a0 | 2016-08-11 12:26:59 +0300 | [diff] [blame] | 1021 | u8 tmp = index; |
John Youn | 361572b | 2016-05-19 17:26:17 -0700 | [diff] [blame] | 1022 | |
Felipe Balbi | 45438a0 | 2016-08-11 12:26:59 +0300 | [diff] [blame] | 1023 | if (!tmp) |
| 1024 | tmp = DWC3_TRB_NUM - 1; |
| 1025 | |
| 1026 | return &dep->trb_pool[tmp - 1]; |
John Youn | 361572b | 2016-05-19 17:26:17 -0700 | [diff] [blame] | 1027 | } |
| 1028 | |
Felipe Balbi | c423357 | 2016-05-12 14:08:34 +0300 | [diff] [blame] | 1029 | static u32 dwc3_calc_trbs_left(struct dwc3_ep *dep) |
| 1030 | { |
| 1031 | struct dwc3_trb *tmp; |
John Youn | 32db3d9 | 2016-05-19 17:26:12 -0700 | [diff] [blame] | 1032 | u8 trbs_left; |
Felipe Balbi | c423357 | 2016-05-12 14:08:34 +0300 | [diff] [blame] | 1033 | |
| 1034 | /* |
| 1035 | * If enqueue & dequeue are equal than it is either full or empty. |
| 1036 | * |
| 1037 | * One way to know for sure is if the TRB right before us has HWO bit |
| 1038 | * set or not. If it has, then we're definitely full and can't fit any |
| 1039 | * more transfers in our ring. |
| 1040 | */ |
| 1041 | if (dep->trb_enqueue == dep->trb_dequeue) { |
John Youn | 361572b | 2016-05-19 17:26:17 -0700 | [diff] [blame] | 1042 | tmp = dwc3_ep_prev_trb(dep, dep->trb_enqueue); |
Felipe Balbi | 202adaf | 2017-05-17 13:19:06 +0300 | [diff] [blame] | 1043 | if (tmp->ctrl & DWC3_TRB_CTRL_HWO) |
John Youn | 361572b | 2016-05-19 17:26:17 -0700 | [diff] [blame] | 1044 | return 0; |
Felipe Balbi | c423357 | 2016-05-12 14:08:34 +0300 | [diff] [blame] | 1045 | |
| 1046 | return DWC3_TRB_NUM - 1; |
| 1047 | } |
| 1048 | |
John Youn | 9d7aba7 | 2016-08-26 18:43:01 -0700 | [diff] [blame] | 1049 | trbs_left = dep->trb_dequeue - dep->trb_enqueue; |
John Youn | 3de2685f | 2016-05-23 11:32:45 -0700 | [diff] [blame] | 1050 | trbs_left &= (DWC3_TRB_NUM - 1); |
John Youn | 32db3d9 | 2016-05-19 17:26:12 -0700 | [diff] [blame] | 1051 | |
John Youn | 9d7aba7 | 2016-08-26 18:43:01 -0700 | [diff] [blame] | 1052 | if (dep->trb_dequeue < dep->trb_enqueue) |
| 1053 | trbs_left--; |
| 1054 | |
John Youn | 32db3d9 | 2016-05-19 17:26:12 -0700 | [diff] [blame] | 1055 | return trbs_left; |
Felipe Balbi | c423357 | 2016-05-12 14:08:34 +0300 | [diff] [blame] | 1056 | } |
| 1057 | |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1058 | static void dwc3_prepare_one_trb_sg(struct dwc3_ep *dep, |
Felipe Balbi | 7ae7df4 | 2016-08-24 14:37:22 +0300 | [diff] [blame] | 1059 | struct dwc3_request *req) |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1060 | { |
Anurag Kumar Vulisha | a31e63b | 2018-03-27 16:35:20 +0530 | [diff] [blame] | 1061 | struct scatterlist *sg = req->start_sg; |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1062 | struct scatterlist *s; |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1063 | int i; |
| 1064 | |
Anurag Kumar Vulisha | c96e672 | 2018-03-27 16:35:21 +0530 | [diff] [blame] | 1065 | unsigned int remaining = req->request.num_mapped_sgs |
| 1066 | - req->num_queued_sgs; |
| 1067 | |
| 1068 | for_each_sg(sg, s, remaining, i) { |
Felipe Balbi | c6267a5 | 2017-01-05 14:58:46 +0200 | [diff] [blame] | 1069 | unsigned int length = req->request.length; |
| 1070 | unsigned int maxp = usb_endpoint_maxp(dep->endpoint.desc); |
| 1071 | unsigned int rem = length % maxp; |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1072 | unsigned chain = true; |
| 1073 | |
Felipe Balbi | 4bc48c9 | 2016-08-10 16:04:33 +0300 | [diff] [blame] | 1074 | if (sg_is_last(s)) |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1075 | chain = false; |
| 1076 | |
Felipe Balbi | c6267a5 | 2017-01-05 14:58:46 +0200 | [diff] [blame] | 1077 | if (rem && usb_endpoint_dir_out(dep->endpoint.desc) && !chain) { |
| 1078 | struct dwc3 *dwc = dep->dwc; |
| 1079 | struct dwc3_trb *trb; |
| 1080 | |
| 1081 | req->unaligned = true; |
| 1082 | |
| 1083 | /* prepare normal TRB */ |
| 1084 | dwc3_prepare_one_trb(dep, req, true, i); |
| 1085 | |
| 1086 | /* Now prepare one extra TRB to align transfer size */ |
| 1087 | trb = &dep->trb_pool[dep->trb_enqueue]; |
| 1088 | __dwc3_prepare_one_trb(dep, trb, dwc->bounce_addr, |
| 1089 | maxp - rem, false, 0, |
| 1090 | req->request.stream_id, |
| 1091 | req->request.short_not_ok, |
| 1092 | req->request.no_interrupt); |
| 1093 | } else { |
| 1094 | dwc3_prepare_one_trb(dep, req, chain, i); |
| 1095 | } |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1096 | |
Anurag Kumar Vulisha | a31e63b | 2018-03-27 16:35:20 +0530 | [diff] [blame] | 1097 | /* |
| 1098 | * There can be a situation where all sgs in sglist are not |
| 1099 | * queued because of insufficient trb number. To handle this |
| 1100 | * case, update start_sg to next sg to be queued, so that |
| 1101 | * we have free trbs we can continue queuing from where we |
| 1102 | * previously stopped |
| 1103 | */ |
| 1104 | if (chain) |
| 1105 | req->start_sg = sg_next(s); |
| 1106 | |
Anurag Kumar Vulisha | c96e672 | 2018-03-27 16:35:21 +0530 | [diff] [blame] | 1107 | req->num_queued_sgs++; |
| 1108 | |
Felipe Balbi | 7ae7df4 | 2016-08-24 14:37:22 +0300 | [diff] [blame] | 1109 | if (!dwc3_calc_trbs_left(dep)) |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1110 | break; |
| 1111 | } |
| 1112 | } |
| 1113 | |
| 1114 | static void dwc3_prepare_one_trb_linear(struct dwc3_ep *dep, |
Felipe Balbi | 7ae7df4 | 2016-08-24 14:37:22 +0300 | [diff] [blame] | 1115 | struct dwc3_request *req) |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1116 | { |
Felipe Balbi | c6267a5 | 2017-01-05 14:58:46 +0200 | [diff] [blame] | 1117 | unsigned int length = req->request.length; |
| 1118 | unsigned int maxp = usb_endpoint_maxp(dep->endpoint.desc); |
| 1119 | unsigned int rem = length % maxp; |
| 1120 | |
| 1121 | if (rem && usb_endpoint_dir_out(dep->endpoint.desc)) { |
| 1122 | struct dwc3 *dwc = dep->dwc; |
| 1123 | struct dwc3_trb *trb; |
| 1124 | |
| 1125 | req->unaligned = true; |
| 1126 | |
| 1127 | /* prepare normal TRB */ |
| 1128 | dwc3_prepare_one_trb(dep, req, true, 0); |
| 1129 | |
| 1130 | /* Now prepare one extra TRB to align transfer size */ |
| 1131 | trb = &dep->trb_pool[dep->trb_enqueue]; |
| 1132 | __dwc3_prepare_one_trb(dep, trb, dwc->bounce_addr, maxp - rem, |
| 1133 | false, 0, req->request.stream_id, |
| 1134 | req->request.short_not_ok, |
| 1135 | req->request.no_interrupt); |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 1136 | } else if (req->request.zero && req->request.length && |
| 1137 | (IS_ALIGNED(req->request.length,dep->endpoint.maxpacket))) { |
| 1138 | struct dwc3 *dwc = dep->dwc; |
| 1139 | struct dwc3_trb *trb; |
| 1140 | |
| 1141 | req->zero = true; |
| 1142 | |
| 1143 | /* prepare normal TRB */ |
| 1144 | dwc3_prepare_one_trb(dep, req, true, 0); |
| 1145 | |
| 1146 | /* Now prepare one extra TRB to handle ZLP */ |
| 1147 | trb = &dep->trb_pool[dep->trb_enqueue]; |
| 1148 | __dwc3_prepare_one_trb(dep, trb, dwc->bounce_addr, 0, |
| 1149 | false, 0, req->request.stream_id, |
| 1150 | req->request.short_not_ok, |
| 1151 | req->request.no_interrupt); |
Felipe Balbi | c6267a5 | 2017-01-05 14:58:46 +0200 | [diff] [blame] | 1152 | } else { |
| 1153 | dwc3_prepare_one_trb(dep, req, false, 0); |
| 1154 | } |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1155 | } |
| 1156 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1157 | /* |
| 1158 | * dwc3_prepare_trbs - setup TRBs from requests |
| 1159 | * @dep: endpoint for which requests are being prepared |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1160 | * |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 1161 | * The function goes through the requests list and sets up TRBs for the |
| 1162 | * transfers. The function returns once there are no more TRBs available or |
| 1163 | * it runs out of requests. |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1164 | */ |
Felipe Balbi | c423357 | 2016-05-12 14:08:34 +0300 | [diff] [blame] | 1165 | static void dwc3_prepare_trbs(struct dwc3_ep *dep) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1166 | { |
Felipe Balbi | 68e823e | 2011-11-28 12:25:01 +0200 | [diff] [blame] | 1167 | struct dwc3_request *req, *n; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1168 | |
| 1169 | BUILD_BUG_ON_NOT_POWER_OF_2(DWC3_TRB_NUM); |
| 1170 | |
Felipe Balbi | d86c5a6 | 2016-10-25 13:48:52 +0300 | [diff] [blame] | 1171 | /* |
| 1172 | * We can get in a situation where there's a request in the started list |
| 1173 | * but there weren't enough TRBs to fully kick it in the first time |
| 1174 | * around, so it has been waiting for more TRBs to be freed up. |
| 1175 | * |
| 1176 | * In that case, we should check if we have a request with pending_sgs |
| 1177 | * in the started list and prepare TRBs for that request first, |
| 1178 | * otherwise we will prepare TRBs completely out of order and that will |
| 1179 | * break things. |
| 1180 | */ |
| 1181 | list_for_each_entry(req, &dep->started_list, list) { |
| 1182 | if (req->num_pending_sgs > 0) |
| 1183 | dwc3_prepare_one_trb_sg(dep, req); |
| 1184 | |
| 1185 | if (!dwc3_calc_trbs_left(dep)) |
| 1186 | return; |
| 1187 | } |
| 1188 | |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 1189 | list_for_each_entry_safe(req, n, &dep->pending_list, list) { |
Felipe Balbi | cdb55b3 | 2017-05-17 13:21:14 +0300 | [diff] [blame] | 1190 | struct dwc3 *dwc = dep->dwc; |
| 1191 | int ret; |
| 1192 | |
| 1193 | ret = usb_gadget_map_request_by_dev(dwc->sysdev, &req->request, |
| 1194 | dep->direction); |
| 1195 | if (ret) |
| 1196 | return; |
| 1197 | |
| 1198 | req->sg = req->request.sg; |
Anurag Kumar Vulisha | a31e63b | 2018-03-27 16:35:20 +0530 | [diff] [blame] | 1199 | req->start_sg = req->sg; |
Anurag Kumar Vulisha | c96e672 | 2018-03-27 16:35:21 +0530 | [diff] [blame] | 1200 | req->num_queued_sgs = 0; |
Felipe Balbi | cdb55b3 | 2017-05-17 13:21:14 +0300 | [diff] [blame] | 1201 | req->num_pending_sgs = req->request.num_mapped_sgs; |
| 1202 | |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 1203 | if (req->num_pending_sgs > 0) |
Felipe Balbi | 7ae7df4 | 2016-08-24 14:37:22 +0300 | [diff] [blame] | 1204 | dwc3_prepare_one_trb_sg(dep, req); |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1205 | else |
Felipe Balbi | 7ae7df4 | 2016-08-24 14:37:22 +0300 | [diff] [blame] | 1206 | dwc3_prepare_one_trb_linear(dep, req); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1207 | |
Felipe Balbi | 7ae7df4 | 2016-08-24 14:37:22 +0300 | [diff] [blame] | 1208 | if (!dwc3_calc_trbs_left(dep)) |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1209 | return; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1210 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1211 | } |
| 1212 | |
Felipe Balbi | 7fdca76 | 2017-09-05 14:41:34 +0300 | [diff] [blame] | 1213 | static int __dwc3_gadget_kick_transfer(struct dwc3_ep *dep) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1214 | { |
| 1215 | struct dwc3_gadget_ep_cmd_params params; |
| 1216 | struct dwc3_request *req; |
Felipe Balbi | 4fae2e3 | 2016-05-12 16:53:59 +0300 | [diff] [blame] | 1217 | int starting; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1218 | int ret; |
| 1219 | u32 cmd; |
| 1220 | |
Felipe Balbi | ccb94eb | 2017-09-05 14:28:46 +0300 | [diff] [blame] | 1221 | if (!dwc3_calc_trbs_left(dep)) |
| 1222 | return 0; |
| 1223 | |
Felipe Balbi | 4fae2e3 | 2016-05-12 16:53:59 +0300 | [diff] [blame] | 1224 | starting = !(dep->flags & DWC3_EP_BUSY); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1225 | |
Felipe Balbi | 4fae2e3 | 2016-05-12 16:53:59 +0300 | [diff] [blame] | 1226 | dwc3_prepare_trbs(dep); |
| 1227 | req = next_request(&dep->started_list); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1228 | if (!req) { |
| 1229 | dep->flags |= DWC3_EP_PENDING_REQUEST; |
| 1230 | return 0; |
| 1231 | } |
| 1232 | |
| 1233 | memset(¶ms, 0, sizeof(params)); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1234 | |
Felipe Balbi | 4fae2e3 | 2016-05-12 16:53:59 +0300 | [diff] [blame] | 1235 | if (starting) { |
Pratyush Anand | 1877d6c | 2013-01-14 15:59:36 +0530 | [diff] [blame] | 1236 | params.param0 = upper_32_bits(req->trb_dma); |
| 1237 | params.param1 = lower_32_bits(req->trb_dma); |
Felipe Balbi | 7fdca76 | 2017-09-05 14:41:34 +0300 | [diff] [blame] | 1238 | cmd = DWC3_DEPCMD_STARTTRANSFER; |
| 1239 | |
| 1240 | if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) |
| 1241 | cmd |= DWC3_DEPCMD_PARAM(dep->frame_number); |
Pratyush Anand | 1877d6c | 2013-01-14 15:59:36 +0530 | [diff] [blame] | 1242 | } else { |
Felipe Balbi | b6b1c6d | 2016-05-30 13:29:35 +0300 | [diff] [blame] | 1243 | cmd = DWC3_DEPCMD_UPDATETRANSFER | |
| 1244 | DWC3_DEPCMD_PARAM(dep->resource_index); |
Pratyush Anand | 1877d6c | 2013-01-14 15:59:36 +0530 | [diff] [blame] | 1245 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1246 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 1247 | ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1248 | if (ret < 0) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1249 | /* |
| 1250 | * FIXME we need to iterate over the list of requests |
| 1251 | * here and stop, unmap, free and del each of the linked |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 1252 | * requests instead of what we do now. |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1253 | */ |
Janusz Dziedzic | ce3fc8b | 2016-11-09 11:01:32 +0100 | [diff] [blame] | 1254 | if (req->trb) |
| 1255 | memset(req->trb, 0, sizeof(struct dwc3_trb)); |
Felipe Balbi | c91815b | 2018-03-26 13:14:47 +0300 | [diff] [blame] | 1256 | dwc3_gadget_del_and_unmap_request(dep, req, ret); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1257 | return ret; |
| 1258 | } |
| 1259 | |
| 1260 | dep->flags |= DWC3_EP_BUSY; |
Felipe Balbi | 25b8ff6 | 2011-11-04 12:32:47 +0200 | [diff] [blame] | 1261 | |
Felipe Balbi | 4fae2e3 | 2016-05-12 16:53:59 +0300 | [diff] [blame] | 1262 | if (starting) { |
Felipe Balbi | 2eb8801 | 2016-04-12 16:53:39 +0300 | [diff] [blame] | 1263 | dep->resource_index = dwc3_gadget_ep_get_transfer_index(dep); |
Felipe Balbi | b4996a8 | 2012-06-06 12:04:13 +0300 | [diff] [blame] | 1264 | WARN_ON_ONCE(!dep->resource_index); |
Paul Zimmerman | f898ae0 | 2012-03-29 18:16:54 +0000 | [diff] [blame] | 1265 | } |
Felipe Balbi | 25b8ff6 | 2011-11-04 12:32:47 +0200 | [diff] [blame] | 1266 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1267 | return 0; |
| 1268 | } |
| 1269 | |
Felipe Balbi | 6cb2e4e | 2016-10-21 13:07:09 +0300 | [diff] [blame] | 1270 | static int __dwc3_gadget_get_frame(struct dwc3 *dwc) |
| 1271 | { |
| 1272 | u32 reg; |
| 1273 | |
| 1274 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 1275 | return DWC3_DSTS_SOFFN(reg); |
| 1276 | } |
| 1277 | |
Pratyush Anand | d6d6ec7 | 2012-05-25 18:54:56 +0530 | [diff] [blame] | 1278 | static void __dwc3_gadget_start_isoc(struct dwc3 *dwc, |
| 1279 | struct dwc3_ep *dep, u32 cur_uf) |
| 1280 | { |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 1281 | if (list_empty(&dep->pending_list)) { |
Felipe Balbi | 5eb30ce | 2016-11-03 14:07:51 +0200 | [diff] [blame] | 1282 | dev_info(dwc->dev, "%s: ran out of requests\n", |
Felipe Balbi | 7381528 | 2015-01-27 13:48:14 -0600 | [diff] [blame] | 1283 | dep->name); |
Pratyush Anand | f4a53c5 | 2012-08-30 12:21:43 +0530 | [diff] [blame] | 1284 | dep->flags |= DWC3_EP_PENDING_REQUEST; |
Pratyush Anand | d6d6ec7 | 2012-05-25 18:54:56 +0530 | [diff] [blame] | 1285 | return; |
| 1286 | } |
| 1287 | |
John Youn | af771d7 | 2017-01-26 11:58:40 -0800 | [diff] [blame] | 1288 | /* |
| 1289 | * Schedule the first trb for one interval in the future or at |
| 1290 | * least 4 microframes. |
| 1291 | */ |
Felipe Balbi | 502a37b | 2017-09-05 14:36:13 +0300 | [diff] [blame] | 1292 | dep->frame_number = cur_uf + max_t(u32, 4, dep->interval); |
Felipe Balbi | 7fdca76 | 2017-09-05 14:41:34 +0300 | [diff] [blame] | 1293 | __dwc3_gadget_kick_transfer(dep); |
Pratyush Anand | d6d6ec7 | 2012-05-25 18:54:56 +0530 | [diff] [blame] | 1294 | } |
| 1295 | |
| 1296 | static void dwc3_gadget_start_isoc(struct dwc3 *dwc, |
| 1297 | struct dwc3_ep *dep, const struct dwc3_event_depevt *event) |
| 1298 | { |
| 1299 | u32 cur_uf, mask; |
| 1300 | |
| 1301 | mask = ~(dep->interval - 1); |
| 1302 | cur_uf = event->parameters & mask; |
| 1303 | |
| 1304 | __dwc3_gadget_start_isoc(dwc, dep, cur_uf); |
| 1305 | } |
| 1306 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1307 | static int __dwc3_gadget_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req) |
| 1308 | { |
Felipe Balbi | 0fc9a1b | 2011-12-19 11:32:34 +0200 | [diff] [blame] | 1309 | struct dwc3 *dwc = dep->dwc; |
Felipe Balbi | 0fc9a1b | 2011-12-19 11:32:34 +0200 | [diff] [blame] | 1310 | |
Felipe Balbi | bb42398 | 2015-11-16 15:31:21 -0600 | [diff] [blame] | 1311 | if (!dep->endpoint.desc) { |
Felipe Balbi | 5eb30ce | 2016-11-03 14:07:51 +0200 | [diff] [blame] | 1312 | dev_err(dwc->dev, "%s: can't queue to disabled endpoint\n", |
| 1313 | dep->name); |
Felipe Balbi | bb42398 | 2015-11-16 15:31:21 -0600 | [diff] [blame] | 1314 | return -ESHUTDOWN; |
| 1315 | } |
| 1316 | |
Felipe Balbi | 04fb365 | 2017-05-17 15:57:45 +0300 | [diff] [blame] | 1317 | if (WARN(req->dep != dep, "request %pK belongs to '%s'\n", |
| 1318 | &req->request, req->dep->name)) |
Felipe Balbi | bb42398 | 2015-11-16 15:31:21 -0600 | [diff] [blame] | 1319 | return -EINVAL; |
Felipe Balbi | bb42398 | 2015-11-16 15:31:21 -0600 | [diff] [blame] | 1320 | |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 1321 | pm_runtime_get(dwc->dev); |
| 1322 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1323 | req->request.actual = 0; |
| 1324 | req->request.status = -EINPROGRESS; |
| 1325 | req->direction = dep->direction; |
| 1326 | req->epnum = dep->number; |
| 1327 | |
Felipe Balbi | fe84f52 | 2015-09-01 09:01:38 -0500 | [diff] [blame] | 1328 | trace_dwc3_ep_queue(req); |
| 1329 | |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 1330 | list_add_tail(&req->list, &dep->pending_list); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1331 | |
Felipe Balbi | d889c23 | 2016-09-29 15:44:29 +0300 | [diff] [blame] | 1332 | /* |
| 1333 | * NOTICE: Isochronous endpoints should NEVER be prestarted. We must |
| 1334 | * wait for a XferNotReady event so we will know what's the current |
| 1335 | * (micro-)frame number. |
| 1336 | * |
| 1337 | * Without this trick, we are very, very likely gonna get Bus Expiry |
| 1338 | * errors which will force us issue EndTransfer command. |
| 1339 | */ |
| 1340 | if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) { |
Felipe Balbi | 6cb2e4e | 2016-10-21 13:07:09 +0300 | [diff] [blame] | 1341 | if ((dep->flags & DWC3_EP_PENDING_REQUEST)) { |
| 1342 | if (dep->flags & DWC3_EP_TRANSFER_STARTED) { |
| 1343 | dwc3_stop_active_transfer(dwc, dep->number, true); |
| 1344 | dep->flags = DWC3_EP_ENABLED; |
| 1345 | } else { |
| 1346 | u32 cur_uf; |
| 1347 | |
| 1348 | cur_uf = __dwc3_gadget_get_frame(dwc); |
| 1349 | __dwc3_gadget_start_isoc(dwc, dep, cur_uf); |
Janusz Dziedzic | 87aba10 | 2016-11-09 11:01:34 +0100 | [diff] [blame] | 1350 | dep->flags &= ~DWC3_EP_PENDING_REQUEST; |
Felipe Balbi | 6cb2e4e | 2016-10-21 13:07:09 +0300 | [diff] [blame] | 1351 | } |
Roger Quadros | f1d6826 | 2017-04-21 15:58:08 +0300 | [diff] [blame] | 1352 | return 0; |
Felipe Balbi | 08a36b5 | 2016-08-11 14:27:52 +0300 | [diff] [blame] | 1353 | } |
Roger Quadros | f1d6826 | 2017-04-21 15:58:08 +0300 | [diff] [blame] | 1354 | |
| 1355 | if ((dep->flags & DWC3_EP_BUSY) && |
Felipe Balbi | 64e0108 | 2017-09-05 14:32:55 +0300 | [diff] [blame] | 1356 | !(dep->flags & DWC3_EP_MISSED_ISOC)) |
| 1357 | goto out; |
Roger Quadros | f1d6826 | 2017-04-21 15:58:08 +0300 | [diff] [blame] | 1358 | |
Felipe Balbi | 64e0108 | 2017-09-05 14:32:55 +0300 | [diff] [blame] | 1359 | return 0; |
Felipe Balbi | b511e5e | 2012-06-06 12:00:50 +0300 | [diff] [blame] | 1360 | } |
| 1361 | |
Roger Quadros | f1d6826 | 2017-04-21 15:58:08 +0300 | [diff] [blame] | 1362 | out: |
Felipe Balbi | 7fdca76 | 2017-09-05 14:41:34 +0300 | [diff] [blame] | 1363 | return __dwc3_gadget_kick_transfer(dep); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1364 | } |
| 1365 | |
| 1366 | static int dwc3_gadget_ep_queue(struct usb_ep *ep, struct usb_request *request, |
| 1367 | gfp_t gfp_flags) |
| 1368 | { |
| 1369 | struct dwc3_request *req = to_dwc3_request(request); |
| 1370 | struct dwc3_ep *dep = to_dwc3_ep(ep); |
| 1371 | struct dwc3 *dwc = dep->dwc; |
| 1372 | |
| 1373 | unsigned long flags; |
| 1374 | |
| 1375 | int ret; |
| 1376 | |
Zhuang Jin Can | fdee4eb | 2014-09-03 14:26:34 +0800 | [diff] [blame] | 1377 | spin_lock_irqsave(&dwc->lock, flags); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1378 | ret = __dwc3_gadget_ep_queue(dep, req); |
| 1379 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1380 | |
| 1381 | return ret; |
| 1382 | } |
| 1383 | |
| 1384 | static int dwc3_gadget_ep_dequeue(struct usb_ep *ep, |
| 1385 | struct usb_request *request) |
| 1386 | { |
| 1387 | struct dwc3_request *req = to_dwc3_request(request); |
| 1388 | struct dwc3_request *r = NULL; |
| 1389 | |
| 1390 | struct dwc3_ep *dep = to_dwc3_ep(ep); |
| 1391 | struct dwc3 *dwc = dep->dwc; |
| 1392 | |
| 1393 | unsigned long flags; |
| 1394 | int ret = 0; |
| 1395 | |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 1396 | trace_dwc3_ep_dequeue(req); |
| 1397 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1398 | spin_lock_irqsave(&dwc->lock, flags); |
| 1399 | |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 1400 | list_for_each_entry(r, &dep->pending_list, list) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1401 | if (r == req) |
| 1402 | break; |
| 1403 | } |
| 1404 | |
| 1405 | if (r != req) { |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 1406 | list_for_each_entry(r, &dep->started_list, list) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1407 | if (r == req) |
| 1408 | break; |
| 1409 | } |
| 1410 | if (r == req) { |
| 1411 | /* wait until it is processed */ |
Paul Zimmerman | b992e68 | 2012-04-27 14:17:35 +0300 | [diff] [blame] | 1412 | dwc3_stop_active_transfer(dwc, dep->number, true); |
Felipe Balbi | cf3113d | 2017-02-17 11:12:44 +0200 | [diff] [blame] | 1413 | |
| 1414 | /* |
| 1415 | * If request was already started, this means we had to |
| 1416 | * stop the transfer. With that we also need to ignore |
| 1417 | * all TRBs used by the request, however TRBs can only |
| 1418 | * be modified after completion of END_TRANSFER |
| 1419 | * command. So what we do here is that we wait for |
| 1420 | * END_TRANSFER completion and only after that, we jump |
| 1421 | * over TRBs by clearing HWO and incrementing dequeue |
| 1422 | * pointer. |
| 1423 | * |
| 1424 | * Note that we have 2 possible types of transfers here: |
| 1425 | * |
| 1426 | * i) Linear buffer request |
| 1427 | * ii) SG-list based request |
| 1428 | * |
| 1429 | * SG-list based requests will have r->num_pending_sgs |
| 1430 | * set to a valid number (> 0). Linear requests, |
| 1431 | * normally use a single TRB. |
| 1432 | * |
| 1433 | * For each of these two cases, if r->unaligned flag is |
| 1434 | * set, one extra TRB has been used to align transfer |
| 1435 | * size to wMaxPacketSize. |
| 1436 | * |
| 1437 | * All of these cases need to be taken into |
| 1438 | * consideration so we don't mess up our TRB ring |
| 1439 | * pointers. |
| 1440 | */ |
| 1441 | wait_event_lock_irq(dep->wait_end_transfer, |
| 1442 | !(dep->flags & DWC3_EP_END_TRANSFER_PENDING), |
| 1443 | dwc->lock); |
| 1444 | |
| 1445 | if (!r->trb) |
| 1446 | goto out1; |
| 1447 | |
| 1448 | if (r->num_pending_sgs) { |
| 1449 | struct dwc3_trb *trb; |
| 1450 | int i = 0; |
| 1451 | |
| 1452 | for (i = 0; i < r->num_pending_sgs; i++) { |
| 1453 | trb = r->trb + i; |
| 1454 | trb->ctrl &= ~DWC3_TRB_CTRL_HWO; |
| 1455 | dwc3_ep_inc_deq(dep); |
| 1456 | } |
| 1457 | |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 1458 | if (r->unaligned || r->zero) { |
Felipe Balbi | cf3113d | 2017-02-17 11:12:44 +0200 | [diff] [blame] | 1459 | trb = r->trb + r->num_pending_sgs + 1; |
| 1460 | trb->ctrl &= ~DWC3_TRB_CTRL_HWO; |
| 1461 | dwc3_ep_inc_deq(dep); |
| 1462 | } |
| 1463 | } else { |
| 1464 | struct dwc3_trb *trb = r->trb; |
| 1465 | |
| 1466 | trb->ctrl &= ~DWC3_TRB_CTRL_HWO; |
| 1467 | dwc3_ep_inc_deq(dep); |
| 1468 | |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 1469 | if (r->unaligned || r->zero) { |
Felipe Balbi | cf3113d | 2017-02-17 11:12:44 +0200 | [diff] [blame] | 1470 | trb = r->trb + 1; |
| 1471 | trb->ctrl &= ~DWC3_TRB_CTRL_HWO; |
| 1472 | dwc3_ep_inc_deq(dep); |
| 1473 | } |
| 1474 | } |
Pratyush Anand | e8d4e8b | 2012-06-15 11:54:00 +0530 | [diff] [blame] | 1475 | goto out1; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1476 | } |
Felipe Balbi | 04fb365 | 2017-05-17 15:57:45 +0300 | [diff] [blame] | 1477 | dev_err(dwc->dev, "request %pK was not queued to %s\n", |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1478 | request, ep->name); |
| 1479 | ret = -EINVAL; |
| 1480 | goto out0; |
| 1481 | } |
| 1482 | |
Pratyush Anand | e8d4e8b | 2012-06-15 11:54:00 +0530 | [diff] [blame] | 1483 | out1: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1484 | /* giveback the request */ |
Felipe Balbi | 0bd0f6d | 2018-03-26 16:09:00 +0300 | [diff] [blame] | 1485 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1486 | dwc3_gadget_giveback(dep, req, -ECONNRESET); |
| 1487 | |
| 1488 | out0: |
| 1489 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1490 | |
| 1491 | return ret; |
| 1492 | } |
| 1493 | |
Felipe Balbi | 7a60855 | 2014-09-24 14:19:52 -0500 | [diff] [blame] | 1494 | 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] | 1495 | { |
| 1496 | struct dwc3_gadget_ep_cmd_params params; |
| 1497 | struct dwc3 *dwc = dep->dwc; |
| 1498 | int ret; |
| 1499 | |
Felipe Balbi | 5ad02fb | 2014-09-24 10:48:26 -0500 | [diff] [blame] | 1500 | if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) { |
| 1501 | dev_err(dwc->dev, "%s is of Isochronous type\n", dep->name); |
| 1502 | return -EINVAL; |
| 1503 | } |
| 1504 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1505 | memset(¶ms, 0x00, sizeof(params)); |
| 1506 | |
| 1507 | if (value) { |
Felipe Balbi | 69450c4 | 2016-05-30 13:37:02 +0300 | [diff] [blame] | 1508 | struct dwc3_trb *trb; |
| 1509 | |
| 1510 | unsigned transfer_in_flight; |
| 1511 | unsigned started; |
| 1512 | |
Felipe Balbi | ffb80fc | 2017-01-19 13:38:42 +0200 | [diff] [blame] | 1513 | if (dep->flags & DWC3_EP_STALL) |
| 1514 | return 0; |
| 1515 | |
Felipe Balbi | 69450c4 | 2016-05-30 13:37:02 +0300 | [diff] [blame] | 1516 | if (dep->number > 1) |
| 1517 | trb = dwc3_ep_prev_trb(dep, dep->trb_enqueue); |
| 1518 | else |
| 1519 | trb = &dwc->ep0_trb[dep->trb_enqueue]; |
| 1520 | |
| 1521 | transfer_in_flight = trb->ctrl & DWC3_TRB_CTRL_HWO; |
| 1522 | started = !list_empty(&dep->started_list); |
| 1523 | |
| 1524 | if (!protocol && ((dep->direction && transfer_in_flight) || |
| 1525 | (!dep->direction && started))) { |
Felipe Balbi | 7a60855 | 2014-09-24 14:19:52 -0500 | [diff] [blame] | 1526 | return -EAGAIN; |
| 1527 | } |
| 1528 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 1529 | ret = dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETSTALL, |
| 1530 | ¶ms); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1531 | if (ret) |
Dan Carpenter | 3f89204 | 2014-03-07 14:20:22 +0300 | [diff] [blame] | 1532 | dev_err(dwc->dev, "failed to set STALL on %s\n", |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1533 | dep->name); |
| 1534 | else |
| 1535 | dep->flags |= DWC3_EP_STALL; |
| 1536 | } else { |
Felipe Balbi | ffb80fc | 2017-01-19 13:38:42 +0200 | [diff] [blame] | 1537 | if (!(dep->flags & DWC3_EP_STALL)) |
| 1538 | return 0; |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 1539 | |
John Youn | 50c763f | 2016-05-31 17:49:56 -0700 | [diff] [blame] | 1540 | ret = dwc3_send_clear_stall_ep_cmd(dep); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1541 | if (ret) |
Dan Carpenter | 3f89204 | 2014-03-07 14:20:22 +0300 | [diff] [blame] | 1542 | dev_err(dwc->dev, "failed to clear STALL on %s\n", |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1543 | dep->name); |
| 1544 | else |
Alan Stern | a535d81 | 2013-11-01 12:05:12 -0400 | [diff] [blame] | 1545 | dep->flags &= ~(DWC3_EP_STALL | DWC3_EP_WEDGE); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1546 | } |
Paul Zimmerman | 5275455 | 2011-09-30 10:58:44 +0300 | [diff] [blame] | 1547 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1548 | return ret; |
| 1549 | } |
| 1550 | |
| 1551 | static int dwc3_gadget_ep_set_halt(struct usb_ep *ep, int value) |
| 1552 | { |
| 1553 | struct dwc3_ep *dep = to_dwc3_ep(ep); |
| 1554 | struct dwc3 *dwc = dep->dwc; |
| 1555 | |
| 1556 | unsigned long flags; |
| 1557 | |
| 1558 | int ret; |
| 1559 | |
| 1560 | spin_lock_irqsave(&dwc->lock, flags); |
Felipe Balbi | 7a60855 | 2014-09-24 14:19:52 -0500 | [diff] [blame] | 1561 | ret = __dwc3_gadget_ep_set_halt(dep, value, false); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1562 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1563 | |
| 1564 | return ret; |
| 1565 | } |
| 1566 | |
| 1567 | static int dwc3_gadget_ep_set_wedge(struct usb_ep *ep) |
| 1568 | { |
| 1569 | struct dwc3_ep *dep = to_dwc3_ep(ep); |
Paul Zimmerman | 249a456 | 2012-02-24 17:32:16 -0800 | [diff] [blame] | 1570 | struct dwc3 *dwc = dep->dwc; |
| 1571 | unsigned long flags; |
Felipe Balbi | 95aa4e8 | 2014-09-24 10:50:14 -0500 | [diff] [blame] | 1572 | int ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1573 | |
Paul Zimmerman | 249a456 | 2012-02-24 17:32:16 -0800 | [diff] [blame] | 1574 | spin_lock_irqsave(&dwc->lock, flags); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1575 | dep->flags |= DWC3_EP_WEDGE; |
| 1576 | |
Pratyush Anand | 08f0d96 | 2012-06-25 22:40:43 +0530 | [diff] [blame] | 1577 | if (dep->number == 0 || dep->number == 1) |
Felipe Balbi | 95aa4e8 | 2014-09-24 10:50:14 -0500 | [diff] [blame] | 1578 | ret = __dwc3_gadget_ep0_set_halt(ep, 1); |
Pratyush Anand | 08f0d96 | 2012-06-25 22:40:43 +0530 | [diff] [blame] | 1579 | else |
Felipe Balbi | 7a60855 | 2014-09-24 14:19:52 -0500 | [diff] [blame] | 1580 | ret = __dwc3_gadget_ep_set_halt(dep, 1, false); |
Felipe Balbi | 95aa4e8 | 2014-09-24 10:50:14 -0500 | [diff] [blame] | 1581 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1582 | |
| 1583 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1584 | } |
| 1585 | |
| 1586 | /* -------------------------------------------------------------------------- */ |
| 1587 | |
| 1588 | static struct usb_endpoint_descriptor dwc3_gadget_ep0_desc = { |
| 1589 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 1590 | .bDescriptorType = USB_DT_ENDPOINT, |
| 1591 | .bmAttributes = USB_ENDPOINT_XFER_CONTROL, |
| 1592 | }; |
| 1593 | |
| 1594 | static const struct usb_ep_ops dwc3_gadget_ep0_ops = { |
| 1595 | .enable = dwc3_gadget_ep0_enable, |
| 1596 | .disable = dwc3_gadget_ep0_disable, |
| 1597 | .alloc_request = dwc3_gadget_ep_alloc_request, |
| 1598 | .free_request = dwc3_gadget_ep_free_request, |
| 1599 | .queue = dwc3_gadget_ep0_queue, |
| 1600 | .dequeue = dwc3_gadget_ep_dequeue, |
Pratyush Anand | 08f0d96 | 2012-06-25 22:40:43 +0530 | [diff] [blame] | 1601 | .set_halt = dwc3_gadget_ep0_set_halt, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1602 | .set_wedge = dwc3_gadget_ep_set_wedge, |
| 1603 | }; |
| 1604 | |
| 1605 | static const struct usb_ep_ops dwc3_gadget_ep_ops = { |
| 1606 | .enable = dwc3_gadget_ep_enable, |
| 1607 | .disable = dwc3_gadget_ep_disable, |
| 1608 | .alloc_request = dwc3_gadget_ep_alloc_request, |
| 1609 | .free_request = dwc3_gadget_ep_free_request, |
| 1610 | .queue = dwc3_gadget_ep_queue, |
| 1611 | .dequeue = dwc3_gadget_ep_dequeue, |
| 1612 | .set_halt = dwc3_gadget_ep_set_halt, |
| 1613 | .set_wedge = dwc3_gadget_ep_set_wedge, |
| 1614 | }; |
| 1615 | |
| 1616 | /* -------------------------------------------------------------------------- */ |
| 1617 | |
| 1618 | static int dwc3_gadget_get_frame(struct usb_gadget *g) |
| 1619 | { |
| 1620 | struct dwc3 *dwc = gadget_to_dwc(g); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1621 | |
Felipe Balbi | 6cb2e4e | 2016-10-21 13:07:09 +0300 | [diff] [blame] | 1622 | return __dwc3_gadget_get_frame(dwc); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1623 | } |
| 1624 | |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1625 | static int __dwc3_gadget_wakeup(struct dwc3 *dwc) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1626 | { |
Nicolas Saenz Julienne | d6011f6 | 2016-08-16 10:22:38 +0100 | [diff] [blame] | 1627 | int retries; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1628 | |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1629 | int ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1630 | u32 reg; |
| 1631 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1632 | u8 link_state; |
| 1633 | u8 speed; |
| 1634 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1635 | /* |
| 1636 | * According to the Databook Remote wakeup request should |
| 1637 | * be issued only when the device is in early suspend state. |
| 1638 | * |
| 1639 | * We can check that via USB Link State bits in DSTS register. |
| 1640 | */ |
| 1641 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 1642 | |
| 1643 | speed = reg & DWC3_DSTS_CONNECTSPD; |
John Youn | ee5cd41 | 2016-02-05 17:08:45 -0800 | [diff] [blame] | 1644 | if ((speed == DWC3_DSTS_SUPERSPEED) || |
Felipe Balbi | 5eb30ce | 2016-11-03 14:07:51 +0200 | [diff] [blame] | 1645 | (speed == DWC3_DSTS_SUPERSPEED_PLUS)) |
Felipe Balbi | 6b74289 | 2016-05-13 10:19:42 +0300 | [diff] [blame] | 1646 | return 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1647 | |
| 1648 | link_state = DWC3_DSTS_USBLNKST(reg); |
| 1649 | |
| 1650 | switch (link_state) { |
| 1651 | case DWC3_LINK_STATE_RX_DET: /* in HS, means Early Suspend */ |
| 1652 | case DWC3_LINK_STATE_U3: /* in HS, means SUSPEND */ |
| 1653 | break; |
| 1654 | default: |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1655 | return -EINVAL; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1656 | } |
| 1657 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 1658 | ret = dwc3_gadget_set_link_state(dwc, DWC3_LINK_STATE_RECOV); |
| 1659 | if (ret < 0) { |
| 1660 | dev_err(dwc->dev, "failed to put link in Recovery\n"); |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1661 | return ret; |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 1662 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1663 | |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 1664 | /* Recent versions do this automatically */ |
| 1665 | if (dwc->revision < DWC3_REVISION_194A) { |
| 1666 | /* write zeroes to Link Change Request */ |
Felipe Balbi | fcc023c | 2012-05-24 10:27:56 +0300 | [diff] [blame] | 1667 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 1668 | reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK; |
| 1669 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 1670 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1671 | |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 1672 | /* poll until Link State changes to ON */ |
Nicolas Saenz Julienne | d6011f6 | 2016-08-16 10:22:38 +0100 | [diff] [blame] | 1673 | retries = 20000; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1674 | |
Nicolas Saenz Julienne | d6011f6 | 2016-08-16 10:22:38 +0100 | [diff] [blame] | 1675 | while (retries--) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1676 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 1677 | |
| 1678 | /* in HS, means ON */ |
| 1679 | if (DWC3_DSTS_USBLNKST(reg) == DWC3_LINK_STATE_U0) |
| 1680 | break; |
| 1681 | } |
| 1682 | |
| 1683 | if (DWC3_DSTS_USBLNKST(reg) != DWC3_LINK_STATE_U0) { |
| 1684 | dev_err(dwc->dev, "failed to send remote wakeup\n"); |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1685 | return -EINVAL; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1686 | } |
| 1687 | |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1688 | return 0; |
| 1689 | } |
| 1690 | |
| 1691 | static int dwc3_gadget_wakeup(struct usb_gadget *g) |
| 1692 | { |
| 1693 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 1694 | unsigned long flags; |
| 1695 | int ret; |
| 1696 | |
| 1697 | spin_lock_irqsave(&dwc->lock, flags); |
| 1698 | ret = __dwc3_gadget_wakeup(dwc); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1699 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1700 | |
| 1701 | return ret; |
| 1702 | } |
| 1703 | |
| 1704 | static int dwc3_gadget_set_selfpowered(struct usb_gadget *g, |
| 1705 | int is_selfpowered) |
| 1706 | { |
| 1707 | struct dwc3 *dwc = gadget_to_dwc(g); |
Paul Zimmerman | 249a456 | 2012-02-24 17:32:16 -0800 | [diff] [blame] | 1708 | unsigned long flags; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1709 | |
Paul Zimmerman | 249a456 | 2012-02-24 17:32:16 -0800 | [diff] [blame] | 1710 | spin_lock_irqsave(&dwc->lock, flags); |
Peter Chen | bcdea50 | 2015-01-28 16:32:40 +0800 | [diff] [blame] | 1711 | g->is_selfpowered = !!is_selfpowered; |
Paul Zimmerman | 249a456 | 2012-02-24 17:32:16 -0800 | [diff] [blame] | 1712 | spin_unlock_irqrestore(&dwc->lock, flags); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1713 | |
| 1714 | return 0; |
| 1715 | } |
| 1716 | |
Felipe Balbi | 7b2a036 | 2013-12-19 13:43:19 -0600 | [diff] [blame] | 1717 | 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] | 1718 | { |
| 1719 | u32 reg; |
Sebastian Andrzej Siewior | 61d5824 | 2011-08-29 16:46:38 +0200 | [diff] [blame] | 1720 | u32 timeout = 500; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1721 | |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 1722 | if (pm_runtime_suspended(dwc->dev)) |
| 1723 | return 0; |
| 1724 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1725 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
Felipe Balbi | 8db7ed1 | 2012-01-18 18:32:29 +0200 | [diff] [blame] | 1726 | if (is_on) { |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 1727 | if (dwc->revision <= DWC3_REVISION_187A) { |
| 1728 | reg &= ~DWC3_DCTL_TRGTULST_MASK; |
| 1729 | reg |= DWC3_DCTL_TRGTULST_RX_DET; |
| 1730 | } |
| 1731 | |
| 1732 | if (dwc->revision >= DWC3_REVISION_194A) |
| 1733 | reg &= ~DWC3_DCTL_KEEP_CONNECT; |
| 1734 | reg |= DWC3_DCTL_RUN_STOP; |
Felipe Balbi | 7b2a036 | 2013-12-19 13:43:19 -0600 | [diff] [blame] | 1735 | |
| 1736 | if (dwc->has_hibernation) |
| 1737 | reg |= DWC3_DCTL_KEEP_CONNECT; |
| 1738 | |
Felipe Balbi | 9fcb3bd | 2013-02-08 17:55:58 +0200 | [diff] [blame] | 1739 | dwc->pullups_connected = true; |
Felipe Balbi | 8db7ed1 | 2012-01-18 18:32:29 +0200 | [diff] [blame] | 1740 | } else { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1741 | reg &= ~DWC3_DCTL_RUN_STOP; |
Felipe Balbi | 7b2a036 | 2013-12-19 13:43:19 -0600 | [diff] [blame] | 1742 | |
| 1743 | if (dwc->has_hibernation && !suspend) |
| 1744 | reg &= ~DWC3_DCTL_KEEP_CONNECT; |
| 1745 | |
Felipe Balbi | 9fcb3bd | 2013-02-08 17:55:58 +0200 | [diff] [blame] | 1746 | dwc->pullups_connected = false; |
Felipe Balbi | 8db7ed1 | 2012-01-18 18:32:29 +0200 | [diff] [blame] | 1747 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1748 | |
| 1749 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 1750 | |
| 1751 | do { |
| 1752 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
Felipe Balbi | b6d4e16 | 2016-06-09 16:47:05 +0300 | [diff] [blame] | 1753 | reg &= DWC3_DSTS_DEVCTRLHLT; |
| 1754 | } while (--timeout && !(!is_on ^ !reg)); |
Felipe Balbi | f2df679 | 2016-06-09 16:31:34 +0300 | [diff] [blame] | 1755 | |
| 1756 | if (!timeout) |
| 1757 | return -ETIMEDOUT; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1758 | |
Pratyush Anand | 6f17f74 | 2012-07-02 10:21:55 +0530 | [diff] [blame] | 1759 | return 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1760 | } |
| 1761 | |
| 1762 | static int dwc3_gadget_pullup(struct usb_gadget *g, int is_on) |
| 1763 | { |
| 1764 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 1765 | unsigned long flags; |
Pratyush Anand | 6f17f74 | 2012-07-02 10:21:55 +0530 | [diff] [blame] | 1766 | int ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1767 | |
| 1768 | is_on = !!is_on; |
| 1769 | |
Baolin Wang | bb01473 | 2016-10-14 17:11:33 +0800 | [diff] [blame] | 1770 | /* |
| 1771 | * Per databook, when we want to stop the gadget, if a control transfer |
| 1772 | * is still in process, complete it and get the core into setup phase. |
| 1773 | */ |
| 1774 | if (!is_on && dwc->ep0state != EP0_SETUP_PHASE) { |
| 1775 | reinit_completion(&dwc->ep0_in_setup); |
| 1776 | |
| 1777 | ret = wait_for_completion_timeout(&dwc->ep0_in_setup, |
| 1778 | msecs_to_jiffies(DWC3_PULL_UP_TIMEOUT)); |
| 1779 | if (ret == 0) { |
| 1780 | dev_err(dwc->dev, "timed out waiting for SETUP phase\n"); |
| 1781 | return -ETIMEDOUT; |
| 1782 | } |
| 1783 | } |
| 1784 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1785 | spin_lock_irqsave(&dwc->lock, flags); |
Felipe Balbi | 7b2a036 | 2013-12-19 13:43:19 -0600 | [diff] [blame] | 1786 | ret = dwc3_gadget_run_stop(dwc, is_on, false); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1787 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1788 | |
Pratyush Anand | 6f17f74 | 2012-07-02 10:21:55 +0530 | [diff] [blame] | 1789 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1790 | } |
| 1791 | |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 1792 | static void dwc3_gadget_enable_irq(struct dwc3 *dwc) |
| 1793 | { |
| 1794 | u32 reg; |
| 1795 | |
| 1796 | /* Enable all but Start and End of Frame IRQs */ |
| 1797 | reg = (DWC3_DEVTEN_VNDRDEVTSTRCVEDEN | |
| 1798 | DWC3_DEVTEN_EVNTOVERFLOWEN | |
| 1799 | DWC3_DEVTEN_CMDCMPLTEN | |
| 1800 | DWC3_DEVTEN_ERRTICERREN | |
| 1801 | DWC3_DEVTEN_WKUPEVTEN | |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 1802 | DWC3_DEVTEN_CONNECTDONEEN | |
| 1803 | DWC3_DEVTEN_USBRSTEN | |
| 1804 | DWC3_DEVTEN_DISCONNEVTEN); |
| 1805 | |
Felipe Balbi | 799e9dc | 2016-09-23 11:20:40 +0300 | [diff] [blame] | 1806 | if (dwc->revision < DWC3_REVISION_250A) |
| 1807 | reg |= DWC3_DEVTEN_ULSTCNGEN; |
| 1808 | |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 1809 | dwc3_writel(dwc->regs, DWC3_DEVTEN, reg); |
| 1810 | } |
| 1811 | |
| 1812 | static void dwc3_gadget_disable_irq(struct dwc3 *dwc) |
| 1813 | { |
| 1814 | /* mask all interrupts */ |
| 1815 | dwc3_writel(dwc->regs, DWC3_DEVTEN, 0x00); |
| 1816 | } |
| 1817 | |
| 1818 | static irqreturn_t dwc3_interrupt(int irq, void *_dwc); |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 1819 | static irqreturn_t dwc3_thread_interrupt(int irq, void *_dwc); |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 1820 | |
Felipe Balbi | 4e99472 | 2016-05-13 14:09:59 +0300 | [diff] [blame] | 1821 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 1822 | * dwc3_gadget_setup_nump - calculate and initialize NUMP field of %DWC3_DCFG |
| 1823 | * @dwc: pointer to our context structure |
Felipe Balbi | 4e99472 | 2016-05-13 14:09:59 +0300 | [diff] [blame] | 1824 | * |
| 1825 | * The following looks like complex but it's actually very simple. In order to |
| 1826 | * calculate the number of packets we can burst at once on OUT transfers, we're |
| 1827 | * gonna use RxFIFO size. |
| 1828 | * |
| 1829 | * To calculate RxFIFO size we need two numbers: |
| 1830 | * MDWIDTH = size, in bits, of the internal memory bus |
| 1831 | * RAM2_DEPTH = depth, in MDWIDTH, of internal RAM2 (where RxFIFO sits) |
| 1832 | * |
| 1833 | * Given these two numbers, the formula is simple: |
| 1834 | * |
| 1835 | * RxFIFO Size = (RAM2_DEPTH * MDWIDTH / 8) - 24 - 16; |
| 1836 | * |
| 1837 | * 24 bytes is for 3x SETUP packets |
| 1838 | * 16 bytes is a clock domain crossing tolerance |
| 1839 | * |
| 1840 | * Given RxFIFO Size, NUMP = RxFIFOSize / 1024; |
| 1841 | */ |
| 1842 | static void dwc3_gadget_setup_nump(struct dwc3 *dwc) |
| 1843 | { |
| 1844 | u32 ram2_depth; |
| 1845 | u32 mdwidth; |
| 1846 | u32 nump; |
| 1847 | u32 reg; |
| 1848 | |
| 1849 | ram2_depth = DWC3_GHWPARAMS7_RAM2_DEPTH(dwc->hwparams.hwparams7); |
| 1850 | mdwidth = DWC3_GHWPARAMS0_MDWIDTH(dwc->hwparams.hwparams0); |
| 1851 | |
| 1852 | nump = ((ram2_depth * mdwidth / 8) - 24 - 16) / 1024; |
| 1853 | nump = min_t(u32, nump, 16); |
| 1854 | |
| 1855 | /* update NumP */ |
| 1856 | reg = dwc3_readl(dwc->regs, DWC3_DCFG); |
| 1857 | reg &= ~DWC3_DCFG_NUMP_MASK; |
| 1858 | reg |= nump << DWC3_DCFG_NUMP_SHIFT; |
| 1859 | dwc3_writel(dwc->regs, DWC3_DCFG, reg); |
| 1860 | } |
| 1861 | |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 1862 | static int __dwc3_gadget_start(struct dwc3 *dwc) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1863 | { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1864 | struct dwc3_ep *dep; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1865 | int ret = 0; |
| 1866 | u32 reg; |
| 1867 | |
John Youn | cf40b86 | 2016-11-14 12:32:43 -0800 | [diff] [blame] | 1868 | /* |
| 1869 | * Use IMOD if enabled via dwc->imod_interval. Otherwise, if |
| 1870 | * the core supports IMOD, disable it. |
| 1871 | */ |
| 1872 | if (dwc->imod_interval) { |
| 1873 | dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), dwc->imod_interval); |
| 1874 | dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), DWC3_GEVNTCOUNT_EHB); |
| 1875 | } else if (dwc3_has_imod(dwc)) { |
| 1876 | dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), 0); |
| 1877 | } |
| 1878 | |
Felipe Balbi | 2a58f9c | 2016-04-28 10:56:28 +0300 | [diff] [blame] | 1879 | /* |
| 1880 | * We are telling dwc3 that we want to use DCFG.NUMP as ACK TP's NUMP |
| 1881 | * field instead of letting dwc3 itself calculate that automatically. |
| 1882 | * |
| 1883 | * This way, we maximize the chances that we'll be able to get several |
| 1884 | * bursts of data without going through any sort of endpoint throttling. |
| 1885 | */ |
| 1886 | reg = dwc3_readl(dwc->regs, DWC3_GRXTHRCFG); |
Thinh Nguyen | 01b0e2c | 2018-03-16 15:34:13 -0700 | [diff] [blame] | 1887 | if (dwc3_is_usb31(dwc)) |
| 1888 | reg &= ~DWC31_GRXTHRCFG_PKTCNTSEL; |
| 1889 | else |
| 1890 | reg &= ~DWC3_GRXTHRCFG_PKTCNTSEL; |
| 1891 | |
Felipe Balbi | 2a58f9c | 2016-04-28 10:56:28 +0300 | [diff] [blame] | 1892 | dwc3_writel(dwc->regs, DWC3_GRXTHRCFG, reg); |
| 1893 | |
Felipe Balbi | 4e99472 | 2016-05-13 14:09:59 +0300 | [diff] [blame] | 1894 | dwc3_gadget_setup_nump(dwc); |
| 1895 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1896 | /* Start with SuperSpeed Default */ |
| 1897 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512); |
| 1898 | |
| 1899 | dep = dwc->eps[0]; |
John Youn | 39ebb05 | 2016-11-09 16:36:28 -0800 | [diff] [blame] | 1900 | ret = __dwc3_gadget_ep_enable(dep, false, false); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1901 | if (ret) { |
| 1902 | dev_err(dwc->dev, "failed to enable %s\n", dep->name); |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 1903 | goto err0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1904 | } |
| 1905 | |
| 1906 | dep = dwc->eps[1]; |
John Youn | 39ebb05 | 2016-11-09 16:36:28 -0800 | [diff] [blame] | 1907 | ret = __dwc3_gadget_ep_enable(dep, false, false); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1908 | if (ret) { |
| 1909 | dev_err(dwc->dev, "failed to enable %s\n", dep->name); |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 1910 | goto err1; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1911 | } |
| 1912 | |
| 1913 | /* begin to receive SETUP packets */ |
Felipe Balbi | c7fcdeb | 2011-08-27 22:28:36 +0300 | [diff] [blame] | 1914 | dwc->ep0state = EP0_SETUP_PHASE; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1915 | dwc3_ep0_out_start(dwc); |
| 1916 | |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 1917 | dwc3_gadget_enable_irq(dwc); |
| 1918 | |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 1919 | return 0; |
| 1920 | |
| 1921 | err1: |
| 1922 | __dwc3_gadget_ep_disable(dwc->eps[0]); |
| 1923 | |
| 1924 | err0: |
| 1925 | return ret; |
| 1926 | } |
| 1927 | |
| 1928 | static int dwc3_gadget_start(struct usb_gadget *g, |
| 1929 | struct usb_gadget_driver *driver) |
| 1930 | { |
| 1931 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 1932 | unsigned long flags; |
| 1933 | int ret = 0; |
| 1934 | int irq; |
| 1935 | |
Roger Quadros | 9522def | 2016-06-10 14:48:38 +0300 | [diff] [blame] | 1936 | irq = dwc->irq_gadget; |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 1937 | ret = request_threaded_irq(irq, dwc3_interrupt, dwc3_thread_interrupt, |
| 1938 | IRQF_SHARED, "dwc3", dwc->ev_buf); |
| 1939 | if (ret) { |
| 1940 | dev_err(dwc->dev, "failed to request irq #%d --> %d\n", |
| 1941 | irq, ret); |
| 1942 | goto err0; |
| 1943 | } |
| 1944 | |
| 1945 | spin_lock_irqsave(&dwc->lock, flags); |
| 1946 | if (dwc->gadget_driver) { |
| 1947 | dev_err(dwc->dev, "%s is already bound to %s\n", |
| 1948 | dwc->gadget.name, |
| 1949 | dwc->gadget_driver->driver.name); |
| 1950 | ret = -EBUSY; |
| 1951 | goto err1; |
| 1952 | } |
| 1953 | |
| 1954 | dwc->gadget_driver = driver; |
| 1955 | |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 1956 | if (pm_runtime_active(dwc->dev)) |
| 1957 | __dwc3_gadget_start(dwc); |
| 1958 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1959 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1960 | |
| 1961 | return 0; |
| 1962 | |
Felipe Balbi | b0d7ffd | 2013-06-27 10:00:18 +0300 | [diff] [blame] | 1963 | err1: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1964 | spin_unlock_irqrestore(&dwc->lock, flags); |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 1965 | free_irq(irq, dwc); |
Felipe Balbi | b0d7ffd | 2013-06-27 10:00:18 +0300 | [diff] [blame] | 1966 | |
| 1967 | err0: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1968 | return ret; |
| 1969 | } |
| 1970 | |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 1971 | static void __dwc3_gadget_stop(struct dwc3 *dwc) |
| 1972 | { |
| 1973 | dwc3_gadget_disable_irq(dwc); |
| 1974 | __dwc3_gadget_ep_disable(dwc->eps[0]); |
| 1975 | __dwc3_gadget_ep_disable(dwc->eps[1]); |
| 1976 | } |
| 1977 | |
Felipe Balbi | 22835b8 | 2014-10-17 12:05:12 -0500 | [diff] [blame] | 1978 | static int dwc3_gadget_stop(struct usb_gadget *g) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1979 | { |
| 1980 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 1981 | unsigned long flags; |
Baolin Wang | 76a638f | 2016-10-31 19:38:36 +0800 | [diff] [blame] | 1982 | int epnum; |
Roger Quadros | 498f047 | 2018-03-09 14:47:04 +0200 | [diff] [blame] | 1983 | u32 tmo_eps = 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1984 | |
| 1985 | spin_lock_irqsave(&dwc->lock, flags); |
Baolin Wang | 76a638f | 2016-10-31 19:38:36 +0800 | [diff] [blame] | 1986 | |
| 1987 | if (pm_runtime_suspended(dwc->dev)) |
| 1988 | goto out; |
| 1989 | |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 1990 | __dwc3_gadget_stop(dwc); |
Baolin Wang | 76a638f | 2016-10-31 19:38:36 +0800 | [diff] [blame] | 1991 | |
| 1992 | for (epnum = 2; epnum < DWC3_ENDPOINTS_NUM; epnum++) { |
| 1993 | struct dwc3_ep *dep = dwc->eps[epnum]; |
Roger Quadros | 498f047 | 2018-03-09 14:47:04 +0200 | [diff] [blame] | 1994 | int ret; |
Baolin Wang | 76a638f | 2016-10-31 19:38:36 +0800 | [diff] [blame] | 1995 | |
| 1996 | if (!dep) |
| 1997 | continue; |
| 1998 | |
| 1999 | if (!(dep->flags & DWC3_EP_END_TRANSFER_PENDING)) |
| 2000 | continue; |
| 2001 | |
Roger Quadros | 498f047 | 2018-03-09 14:47:04 +0200 | [diff] [blame] | 2002 | ret = wait_event_interruptible_lock_irq_timeout(dep->wait_end_transfer, |
| 2003 | !(dep->flags & DWC3_EP_END_TRANSFER_PENDING), |
| 2004 | dwc->lock, msecs_to_jiffies(5)); |
| 2005 | |
| 2006 | if (ret <= 0) { |
| 2007 | /* Timed out or interrupted! There's nothing much |
| 2008 | * we can do so we just log here and print which |
| 2009 | * endpoints timed out at the end. |
| 2010 | */ |
| 2011 | tmo_eps |= 1 << epnum; |
| 2012 | dep->flags &= DWC3_EP_END_TRANSFER_PENDING; |
| 2013 | } |
| 2014 | } |
| 2015 | |
| 2016 | if (tmo_eps) { |
| 2017 | dev_err(dwc->dev, |
| 2018 | "end transfer timed out on endpoints 0x%x [bitmap]\n", |
| 2019 | tmo_eps); |
Baolin Wang | 76a638f | 2016-10-31 19:38:36 +0800 | [diff] [blame] | 2020 | } |
| 2021 | |
| 2022 | out: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2023 | dwc->gadget_driver = NULL; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2024 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 2025 | |
Felipe Balbi | 3f308d1 | 2016-05-16 14:17:06 +0300 | [diff] [blame] | 2026 | free_irq(dwc->irq_gadget, dwc->ev_buf); |
Felipe Balbi | b0d7ffd | 2013-06-27 10:00:18 +0300 | [diff] [blame] | 2027 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2028 | return 0; |
| 2029 | } |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 2030 | |
Felipe Balbi | 7d8d063 | 2017-06-06 16:05:23 +0300 | [diff] [blame] | 2031 | static void dwc3_gadget_set_speed(struct usb_gadget *g, |
| 2032 | enum usb_device_speed speed) |
| 2033 | { |
| 2034 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 2035 | unsigned long flags; |
| 2036 | u32 reg; |
| 2037 | |
| 2038 | spin_lock_irqsave(&dwc->lock, flags); |
| 2039 | reg = dwc3_readl(dwc->regs, DWC3_DCFG); |
| 2040 | reg &= ~(DWC3_DCFG_SPEED_MASK); |
| 2041 | |
| 2042 | /* |
| 2043 | * WORKAROUND: DWC3 revision < 2.20a have an issue |
| 2044 | * which would cause metastability state on Run/Stop |
| 2045 | * bit if we try to force the IP to USB2-only mode. |
| 2046 | * |
| 2047 | * Because of that, we cannot configure the IP to any |
| 2048 | * speed other than the SuperSpeed |
| 2049 | * |
| 2050 | * Refers to: |
| 2051 | * |
| 2052 | * STAR#9000525659: Clock Domain Crossing on DCTL in |
| 2053 | * USB 2.0 Mode |
| 2054 | */ |
Roger Quadros | 42bf02e | 2017-10-31 15:11:55 +0200 | [diff] [blame] | 2055 | if (dwc->revision < DWC3_REVISION_220A && |
| 2056 | !dwc->dis_metastability_quirk) { |
Felipe Balbi | 7d8d063 | 2017-06-06 16:05:23 +0300 | [diff] [blame] | 2057 | reg |= DWC3_DCFG_SUPERSPEED; |
| 2058 | } else { |
| 2059 | switch (speed) { |
| 2060 | case USB_SPEED_LOW: |
| 2061 | reg |= DWC3_DCFG_LOWSPEED; |
| 2062 | break; |
| 2063 | case USB_SPEED_FULL: |
| 2064 | reg |= DWC3_DCFG_FULLSPEED; |
| 2065 | break; |
| 2066 | case USB_SPEED_HIGH: |
| 2067 | reg |= DWC3_DCFG_HIGHSPEED; |
| 2068 | break; |
| 2069 | case USB_SPEED_SUPER: |
| 2070 | reg |= DWC3_DCFG_SUPERSPEED; |
| 2071 | break; |
| 2072 | case USB_SPEED_SUPER_PLUS: |
Thinh Nguyen | 2f3090c | 2018-03-16 15:35:57 -0700 | [diff] [blame] | 2073 | if (dwc3_is_usb31(dwc)) |
| 2074 | reg |= DWC3_DCFG_SUPERSPEED_PLUS; |
| 2075 | else |
| 2076 | reg |= DWC3_DCFG_SUPERSPEED; |
Felipe Balbi | 7d8d063 | 2017-06-06 16:05:23 +0300 | [diff] [blame] | 2077 | break; |
| 2078 | default: |
| 2079 | dev_err(dwc->dev, "invalid speed (%d)\n", speed); |
| 2080 | |
| 2081 | if (dwc->revision & DWC3_REVISION_IS_DWC31) |
| 2082 | reg |= DWC3_DCFG_SUPERSPEED_PLUS; |
| 2083 | else |
| 2084 | reg |= DWC3_DCFG_SUPERSPEED; |
| 2085 | } |
| 2086 | } |
| 2087 | dwc3_writel(dwc->regs, DWC3_DCFG, reg); |
| 2088 | |
| 2089 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 2090 | } |
| 2091 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2092 | static const struct usb_gadget_ops dwc3_gadget_ops = { |
| 2093 | .get_frame = dwc3_gadget_get_frame, |
| 2094 | .wakeup = dwc3_gadget_wakeup, |
| 2095 | .set_selfpowered = dwc3_gadget_set_selfpowered, |
| 2096 | .pullup = dwc3_gadget_pullup, |
| 2097 | .udc_start = dwc3_gadget_start, |
| 2098 | .udc_stop = dwc3_gadget_stop, |
Felipe Balbi | 7d8d063 | 2017-06-06 16:05:23 +0300 | [diff] [blame] | 2099 | .udc_set_speed = dwc3_gadget_set_speed, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2100 | }; |
| 2101 | |
| 2102 | /* -------------------------------------------------------------------------- */ |
| 2103 | |
Andy Shevchenko | 46b780d | 2017-06-12 15:11:25 +0300 | [diff] [blame] | 2104 | static int dwc3_gadget_init_endpoints(struct dwc3 *dwc, u8 total) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2105 | { |
| 2106 | struct dwc3_ep *dep; |
Bryan O'Donoghue | 47d3946 | 2017-01-31 20:58:10 +0000 | [diff] [blame] | 2107 | u8 epnum; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2108 | |
Bryan O'Donoghue | f3bcfc7 | 2017-01-31 20:58:11 +0000 | [diff] [blame] | 2109 | INIT_LIST_HEAD(&dwc->gadget.ep_list); |
| 2110 | |
Andy Shevchenko | 46b780d | 2017-06-12 15:11:25 +0300 | [diff] [blame] | 2111 | for (epnum = 0; epnum < total; epnum++) { |
Bryan O'Donoghue | 47d3946 | 2017-01-31 20:58:10 +0000 | [diff] [blame] | 2112 | bool direction = epnum & 1; |
Andy Shevchenko | 46b780d | 2017-06-12 15:11:25 +0300 | [diff] [blame] | 2113 | u8 num = epnum >> 1; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2114 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2115 | dep = kzalloc(sizeof(*dep), GFP_KERNEL); |
Jingoo Han | 734d5a5 | 2014-07-17 12:45:11 +0900 | [diff] [blame] | 2116 | if (!dep) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2117 | return -ENOMEM; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2118 | |
| 2119 | dep->dwc = dwc; |
| 2120 | dep->number = epnum; |
Bryan O'Donoghue | 47d3946 | 2017-01-31 20:58:10 +0000 | [diff] [blame] | 2121 | dep->direction = direction; |
Felipe Balbi | 2eb8801 | 2016-04-12 16:53:39 +0300 | [diff] [blame] | 2122 | dep->regs = dwc->regs + DWC3_DEP_BASE(epnum); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2123 | dwc->eps[epnum] = dep; |
| 2124 | |
Andy Shevchenko | 46b780d | 2017-06-12 15:11:25 +0300 | [diff] [blame] | 2125 | snprintf(dep->name, sizeof(dep->name), "ep%u%s", num, |
Bryan O'Donoghue | 47d3946 | 2017-01-31 20:58:10 +0000 | [diff] [blame] | 2126 | direction ? "in" : "out"); |
Felipe Balbi | 6a1e3ef | 2011-05-05 16:21:59 +0300 | [diff] [blame] | 2127 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2128 | dep->endpoint.name = dep->name; |
John Youn | 39ebb05 | 2016-11-09 16:36:28 -0800 | [diff] [blame] | 2129 | |
| 2130 | if (!(dep->number > 1)) { |
| 2131 | dep->endpoint.desc = &dwc3_gadget_ep0_desc; |
| 2132 | dep->endpoint.comp_desc = NULL; |
| 2133 | } |
| 2134 | |
Felipe Balbi | 74674cb | 2016-04-13 16:44:39 +0300 | [diff] [blame] | 2135 | spin_lock_init(&dep->lock); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2136 | |
Andy Shevchenko | 46b780d | 2017-06-12 15:11:25 +0300 | [diff] [blame] | 2137 | if (num == 0) { |
Robert Baldyga | e117e74 | 2013-12-13 12:23:38 +0100 | [diff] [blame] | 2138 | usb_ep_set_maxpacket_limit(&dep->endpoint, 512); |
Pratyush Anand | 6048e4c | 2013-01-18 16:53:56 +0530 | [diff] [blame] | 2139 | dep->endpoint.maxburst = 1; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2140 | dep->endpoint.ops = &dwc3_gadget_ep0_ops; |
Andy Shevchenko | 46b780d | 2017-06-12 15:11:25 +0300 | [diff] [blame] | 2141 | if (!direction) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2142 | dwc->gadget.ep0 = &dep->endpoint; |
Felipe Balbi | 2878178 | 2017-01-23 18:01:59 +0200 | [diff] [blame] | 2143 | } else if (direction) { |
| 2144 | int mdwidth; |
Andy Shevchenko | 46b780d | 2017-06-12 15:11:25 +0300 | [diff] [blame] | 2145 | int kbytes; |
Felipe Balbi | 2878178 | 2017-01-23 18:01:59 +0200 | [diff] [blame] | 2146 | int size; |
| 2147 | int ret; |
Felipe Balbi | 2878178 | 2017-01-23 18:01:59 +0200 | [diff] [blame] | 2148 | |
| 2149 | mdwidth = DWC3_MDWIDTH(dwc->hwparams.hwparams0); |
| 2150 | /* MDWIDTH is represented in bits, we need it in bytes */ |
| 2151 | mdwidth /= 8; |
| 2152 | |
Andy Shevchenko | 46b780d | 2017-06-12 15:11:25 +0300 | [diff] [blame] | 2153 | size = dwc3_readl(dwc->regs, DWC3_GTXFIFOSIZ(num)); |
Thinh Nguyen | d548a61 | 2018-03-16 15:34:00 -0700 | [diff] [blame] | 2154 | if (dwc3_is_usb31(dwc)) |
| 2155 | size = DWC31_GTXFIFOSIZ_TXFDEF(size); |
| 2156 | else |
| 2157 | size = DWC3_GTXFIFOSIZ_TXFDEF(size); |
Felipe Balbi | 2878178 | 2017-01-23 18:01:59 +0200 | [diff] [blame] | 2158 | |
| 2159 | /* FIFO Depth is in MDWDITH bytes. Multiply */ |
| 2160 | size *= mdwidth; |
| 2161 | |
Andy Shevchenko | 46b780d | 2017-06-12 15:11:25 +0300 | [diff] [blame] | 2162 | kbytes = size / 1024; |
| 2163 | if (kbytes == 0) |
| 2164 | kbytes = 1; |
Felipe Balbi | 2878178 | 2017-01-23 18:01:59 +0200 | [diff] [blame] | 2165 | |
| 2166 | /* |
Andy Shevchenko | 46b780d | 2017-06-12 15:11:25 +0300 | [diff] [blame] | 2167 | * FIFO sizes account an extra MDWIDTH * (kbytes + 1) bytes for |
Felipe Balbi | 2878178 | 2017-01-23 18:01:59 +0200 | [diff] [blame] | 2168 | * internal overhead. We don't really know how these are used, |
| 2169 | * but documentation say it exists. |
| 2170 | */ |
Andy Shevchenko | 46b780d | 2017-06-12 15:11:25 +0300 | [diff] [blame] | 2171 | size -= mdwidth * (kbytes + 1); |
| 2172 | size /= kbytes; |
Felipe Balbi | 2878178 | 2017-01-23 18:01:59 +0200 | [diff] [blame] | 2173 | |
| 2174 | usb_ep_set_maxpacket_limit(&dep->endpoint, size); |
| 2175 | |
| 2176 | dep->endpoint.max_streams = 15; |
| 2177 | dep->endpoint.ops = &dwc3_gadget_ep_ops; |
| 2178 | list_add_tail(&dep->endpoint.ep_list, |
| 2179 | &dwc->gadget.ep_list); |
| 2180 | |
| 2181 | ret = dwc3_alloc_trb_pool(dep); |
| 2182 | if (ret) |
| 2183 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2184 | } else { |
| 2185 | int ret; |
| 2186 | |
Robert Baldyga | e117e74 | 2013-12-13 12:23:38 +0100 | [diff] [blame] | 2187 | usb_ep_set_maxpacket_limit(&dep->endpoint, 1024); |
Sebastian Andrzej Siewior | 12d36c1 | 2011-11-03 20:27:50 +0100 | [diff] [blame] | 2188 | dep->endpoint.max_streams = 15; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2189 | dep->endpoint.ops = &dwc3_gadget_ep_ops; |
| 2190 | list_add_tail(&dep->endpoint.ep_list, |
| 2191 | &dwc->gadget.ep_list); |
| 2192 | |
| 2193 | ret = dwc3_alloc_trb_pool(dep); |
Felipe Balbi | 25b8ff6 | 2011-11-04 12:32:47 +0200 | [diff] [blame] | 2194 | if (ret) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2195 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2196 | } |
Felipe Balbi | 25b8ff6 | 2011-11-04 12:32:47 +0200 | [diff] [blame] | 2197 | |
Andy Shevchenko | 46b780d | 2017-06-12 15:11:25 +0300 | [diff] [blame] | 2198 | if (num == 0) { |
Robert Baldyga | a474d3b | 2015-07-31 16:00:19 +0200 | [diff] [blame] | 2199 | dep->endpoint.caps.type_control = true; |
| 2200 | } else { |
| 2201 | dep->endpoint.caps.type_iso = true; |
| 2202 | dep->endpoint.caps.type_bulk = true; |
| 2203 | dep->endpoint.caps.type_int = true; |
| 2204 | } |
| 2205 | |
Bryan O'Donoghue | 47d3946 | 2017-01-31 20:58:10 +0000 | [diff] [blame] | 2206 | dep->endpoint.caps.dir_in = direction; |
Robert Baldyga | a474d3b | 2015-07-31 16:00:19 +0200 | [diff] [blame] | 2207 | dep->endpoint.caps.dir_out = !direction; |
| 2208 | |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 2209 | INIT_LIST_HEAD(&dep->pending_list); |
| 2210 | INIT_LIST_HEAD(&dep->started_list); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2211 | } |
| 2212 | |
| 2213 | return 0; |
| 2214 | } |
| 2215 | |
| 2216 | static void dwc3_gadget_free_endpoints(struct dwc3 *dwc) |
| 2217 | { |
| 2218 | struct dwc3_ep *dep; |
| 2219 | u8 epnum; |
| 2220 | |
| 2221 | for (epnum = 0; epnum < DWC3_ENDPOINTS_NUM; epnum++) { |
| 2222 | dep = dwc->eps[epnum]; |
Felipe Balbi | 6a1e3ef | 2011-05-05 16:21:59 +0300 | [diff] [blame] | 2223 | if (!dep) |
| 2224 | continue; |
George Cherian | 5bf8fae | 2013-05-27 14:35:49 +0530 | [diff] [blame] | 2225 | /* |
| 2226 | * Physical endpoints 0 and 1 are special; they form the |
| 2227 | * bi-directional USB endpoint 0. |
| 2228 | * |
| 2229 | * For those two physical endpoints, we don't allocate a TRB |
| 2230 | * pool nor do we add them the endpoints list. Due to that, we |
| 2231 | * shouldn't do these two operations otherwise we would end up |
| 2232 | * with all sorts of bugs when removing dwc3.ko. |
| 2233 | */ |
| 2234 | if (epnum != 0 && epnum != 1) { |
| 2235 | dwc3_free_trb_pool(dep); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2236 | list_del(&dep->endpoint.ep_list); |
George Cherian | 5bf8fae | 2013-05-27 14:35:49 +0530 | [diff] [blame] | 2237 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2238 | |
| 2239 | kfree(dep); |
| 2240 | } |
| 2241 | } |
| 2242 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2243 | /* -------------------------------------------------------------------------- */ |
Felipe Balbi | e5caff6 | 2013-02-26 15:11:05 +0200 | [diff] [blame] | 2244 | |
Felipe Balbi | 0bd0f6d | 2018-03-26 16:09:00 +0300 | [diff] [blame] | 2245 | static int dwc3_gadget_ep_reclaim_completed_trb(struct dwc3 *dwc, |
Felipe Balbi | 66f5dd5 | 2018-03-26 15:48:22 +0300 | [diff] [blame] | 2246 | struct dwc3_ep *dep, struct dwc3_request *req, |
| 2247 | struct dwc3_trb *trb, const struct dwc3_event_depevt *event, |
| 2248 | int status, int chain) |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2249 | { |
| 2250 | unsigned int count; |
| 2251 | unsigned int s_pkt = 0; |
| 2252 | unsigned int trb_status; |
| 2253 | |
Felipe Balbi | dc55c67 | 2016-08-12 13:20:32 +0300 | [diff] [blame] | 2254 | dwc3_ep_inc_deq(dep); |
Felipe Balbi | a9c3ca5 | 2016-10-05 14:24:37 +0300 | [diff] [blame] | 2255 | |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 2256 | trace_dwc3_complete_trb(dep, trb); |
| 2257 | |
Felipe Balbi | e5b36ae | 2016-08-10 11:13:26 +0300 | [diff] [blame] | 2258 | /* |
| 2259 | * If we're in the middle of series of chained TRBs and we |
| 2260 | * receive a short transfer along the way, DWC3 will skip |
| 2261 | * through all TRBs including the last TRB in the chain (the |
| 2262 | * where CHN bit is zero. DWC3 will also avoid clearing HWO |
| 2263 | * bit and SW has to do it manually. |
| 2264 | * |
| 2265 | * We're going to do that here to avoid problems of HW trying |
| 2266 | * to use bogus TRBs for transfers. |
| 2267 | */ |
| 2268 | if (chain && (trb->ctrl & DWC3_TRB_CTRL_HWO)) |
| 2269 | trb->ctrl &= ~DWC3_TRB_CTRL_HWO; |
| 2270 | |
Felipe Balbi | c6267a5 | 2017-01-05 14:58:46 +0200 | [diff] [blame] | 2271 | /* |
| 2272 | * If we're dealing with unaligned size OUT transfer, we will be left |
| 2273 | * with one TRB pending in the ring. We need to manually clear HWO bit |
| 2274 | * from that TRB. |
| 2275 | */ |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 2276 | if ((req->zero || req->unaligned) && (trb->ctrl & DWC3_TRB_CTRL_HWO)) { |
Felipe Balbi | c6267a5 | 2017-01-05 14:58:46 +0200 | [diff] [blame] | 2277 | trb->ctrl &= ~DWC3_TRB_CTRL_HWO; |
| 2278 | return 1; |
| 2279 | } |
| 2280 | |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2281 | count = trb->size & DWC3_TRB_SIZE_MASK; |
Felipe Balbi | e62c5bc5 | 2016-10-25 13:47:21 +0300 | [diff] [blame] | 2282 | req->remaining += count; |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2283 | |
Felipe Balbi | 35b2719 | 2017-03-08 13:56:37 +0200 | [diff] [blame] | 2284 | if ((trb->ctrl & DWC3_TRB_CTRL_HWO) && status != -ESHUTDOWN) |
| 2285 | return 1; |
| 2286 | |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2287 | if (dep->direction) { |
| 2288 | if (count) { |
| 2289 | trb_status = DWC3_TRB_SIZE_TRBSTS(trb->size); |
| 2290 | if (trb_status == DWC3_TRBSTS_MISSED_ISOC) { |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2291 | /* |
| 2292 | * If missed isoc occurred and there is |
| 2293 | * no request queued then issue END |
| 2294 | * TRANSFER, so that core generates |
| 2295 | * next xfernotready and we will issue |
| 2296 | * a fresh START TRANSFER. |
| 2297 | * If there are still queued request |
| 2298 | * then wait, do not issue either END |
| 2299 | * or UPDATE TRANSFER, just attach next |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 2300 | * request in pending_list during |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2301 | * giveback.If any future queued request |
| 2302 | * is successfully transferred then we |
| 2303 | * will issue UPDATE TRANSFER for all |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 2304 | * request in the pending_list. |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2305 | */ |
| 2306 | dep->flags |= DWC3_EP_MISSED_ISOC; |
| 2307 | } else { |
| 2308 | dev_err(dwc->dev, "incomplete IN transfer %s\n", |
| 2309 | dep->name); |
| 2310 | status = -ECONNRESET; |
| 2311 | } |
| 2312 | } else { |
| 2313 | dep->flags &= ~DWC3_EP_MISSED_ISOC; |
| 2314 | } |
| 2315 | } else { |
| 2316 | if (count && (event->status & DEPEVT_STATUS_SHORT)) |
| 2317 | s_pkt = 1; |
| 2318 | } |
| 2319 | |
Felipe Balbi | 7c705df | 2016-08-10 12:35:30 +0300 | [diff] [blame] | 2320 | if (s_pkt && !chain) |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2321 | return 1; |
Felipe Balbi | f99f53f | 2016-08-12 13:19:20 +0300 | [diff] [blame] | 2322 | |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2323 | if ((event->status & DEPEVT_STATUS_IOC) && |
| 2324 | (trb->ctrl & DWC3_TRB_CTRL_IOC)) |
| 2325 | return 1; |
Felipe Balbi | f99f53f | 2016-08-12 13:19:20 +0300 | [diff] [blame] | 2326 | |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2327 | return 0; |
| 2328 | } |
| 2329 | |
Felipe Balbi | 66f5dd5 | 2018-03-26 15:48:22 +0300 | [diff] [blame] | 2330 | static int dwc3_gadget_ep_cleanup_completed_requests(struct dwc3 *dwc, |
| 2331 | struct dwc3_ep *dep, const struct dwc3_event_depevt *event, |
| 2332 | int status) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2333 | { |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2334 | struct dwc3_request *req, *n; |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 2335 | struct dwc3_trb *trb; |
Arnd Bergmann | d6e10bf | 2016-09-09 12:01:51 +0200 | [diff] [blame] | 2336 | bool ioc = false; |
Felipe Balbi | e62c5bc5 | 2016-10-25 13:47:21 +0300 | [diff] [blame] | 2337 | int ret = 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2338 | |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2339 | list_for_each_entry_safe(req, n, &dep->started_list, list) { |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 2340 | unsigned length; |
Felipe Balbi | e5b36ae | 2016-08-10 11:13:26 +0300 | [diff] [blame] | 2341 | int chain; |
| 2342 | |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 2343 | length = req->request.length; |
| 2344 | chain = req->num_pending_sgs > 0; |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2345 | if (chain) { |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 2346 | struct scatterlist *sg = req->sg; |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2347 | struct scatterlist *s; |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 2348 | unsigned int pending = req->num_pending_sgs; |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2349 | unsigned int i; |
Felipe Balbi | ac7bdcc | 2015-11-16 16:13:57 -0600 | [diff] [blame] | 2350 | |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 2351 | for_each_sg(sg, s, pending, i) { |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2352 | trb = &dep->trb_pool[dep->trb_dequeue]; |
Felipe Balbi | c7de573 | 2016-07-29 03:17:58 +0300 | [diff] [blame] | 2353 | |
Felipe Balbi | 7282c4e | 2016-10-25 13:50:46 +0300 | [diff] [blame] | 2354 | if (trb->ctrl & DWC3_TRB_CTRL_HWO) |
| 2355 | break; |
| 2356 | |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 2357 | req->sg = sg_next(s); |
| 2358 | req->num_pending_sgs--; |
| 2359 | |
Felipe Balbi | 0bd0f6d | 2018-03-26 16:09:00 +0300 | [diff] [blame] | 2360 | ret = dwc3_gadget_ep_reclaim_completed_trb(dwc, |
Felipe Balbi | 66f5dd5 | 2018-03-26 15:48:22 +0300 | [diff] [blame] | 2361 | dep, req, trb, event, status, |
| 2362 | chain); |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 2363 | if (ret) |
| 2364 | break; |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2365 | } |
| 2366 | } else { |
Felipe Balbi | 737f1ae | 2016-08-11 12:24:27 +0300 | [diff] [blame] | 2367 | trb = &dep->trb_pool[dep->trb_dequeue]; |
Felipe Balbi | 0bd0f6d | 2018-03-26 16:09:00 +0300 | [diff] [blame] | 2368 | ret = dwc3_gadget_ep_reclaim_completed_trb(dwc, dep, |
Felipe Balbi | 66f5dd5 | 2018-03-26 15:48:22 +0300 | [diff] [blame] | 2369 | req, trb, event, status, chain); |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2370 | } |
Ville Syrjälä | d115d70 | 2015-08-31 19:48:28 +0300 | [diff] [blame] | 2371 | |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 2372 | if (req->unaligned || req->zero) { |
Felipe Balbi | c6267a5 | 2017-01-05 14:58:46 +0200 | [diff] [blame] | 2373 | trb = &dep->trb_pool[dep->trb_dequeue]; |
Felipe Balbi | 0bd0f6d | 2018-03-26 16:09:00 +0300 | [diff] [blame] | 2374 | ret = dwc3_gadget_ep_reclaim_completed_trb(dwc, dep, |
Felipe Balbi | 66f5dd5 | 2018-03-26 15:48:22 +0300 | [diff] [blame] | 2375 | req, trb, event, status, false); |
Felipe Balbi | c6267a5 | 2017-01-05 14:58:46 +0200 | [diff] [blame] | 2376 | req->unaligned = false; |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 2377 | req->zero = false; |
Felipe Balbi | c6267a5 | 2017-01-05 14:58:46 +0200 | [diff] [blame] | 2378 | } |
| 2379 | |
Felipe Balbi | e62c5bc5 | 2016-10-25 13:47:21 +0300 | [diff] [blame] | 2380 | req->request.actual = length - req->remaining; |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 2381 | |
Anurag Kumar Vulisha | c96e672 | 2018-03-27 16:35:21 +0530 | [diff] [blame] | 2382 | if (req->request.actual < length || req->num_pending_sgs) { |
| 2383 | /* |
| 2384 | * There could be a scenario where the whole req can't |
| 2385 | * be mapped into available TRB's. In that case, we need |
| 2386 | * to kick transfer again if (req->num_pending_sgs > 0) |
| 2387 | */ |
| 2388 | if (req->num_pending_sgs) { |
| 2389 | dev_WARN_ONCE(dwc->dev, |
| 2390 | (req->request.actual == length), |
| 2391 | "There are some pending sg's that needs to be queued again\n"); |
| 2392 | return __dwc3_gadget_kick_transfer(dep); |
| 2393 | } |
| 2394 | } |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 2395 | |
Ville Syrjälä | d115d70 | 2015-08-31 19:48:28 +0300 | [diff] [blame] | 2396 | dwc3_gadget_giveback(dep, req, status); |
| 2397 | |
Arnd Bergmann | d6e10bf | 2016-09-09 12:01:51 +0200 | [diff] [blame] | 2398 | if (ret) { |
| 2399 | if ((event->status & DEPEVT_STATUS_IOC) && |
| 2400 | (trb->ctrl & DWC3_TRB_CTRL_IOC)) |
| 2401 | ioc = true; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2402 | break; |
Arnd Bergmann | d6e10bf | 2016-09-09 12:01:51 +0200 | [diff] [blame] | 2403 | } |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2404 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2405 | |
Felipe Balbi | 4cb4221 | 2016-05-18 12:37:21 +0300 | [diff] [blame] | 2406 | /* |
| 2407 | * Our endpoint might get disabled by another thread during |
| 2408 | * dwc3_gadget_giveback(). If that happens, we're just gonna return 1 |
| 2409 | * early on so DWC3_EP_BUSY flag gets cleared |
| 2410 | */ |
| 2411 | if (!dep->endpoint.desc) |
| 2412 | return 1; |
| 2413 | |
Pratyush Anand | cdc359d | 2013-01-14 15:59:34 +0530 | [diff] [blame] | 2414 | if (usb_endpoint_xfer_isoc(dep->endpoint.desc) && |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 2415 | list_empty(&dep->started_list)) { |
| 2416 | if (list_empty(&dep->pending_list)) { |
Pratyush Anand | cdc359d | 2013-01-14 15:59:34 +0530 | [diff] [blame] | 2417 | /* |
| 2418 | * If there is no entry in request list then do |
| 2419 | * not issue END TRANSFER now. Just set PENDING |
| 2420 | * flag, so that END TRANSFER is issued when an |
| 2421 | * entry is added into request list. |
| 2422 | */ |
| 2423 | dep->flags = DWC3_EP_PENDING_REQUEST; |
| 2424 | } else { |
Paul Zimmerman | b992e68 | 2012-04-27 14:17:35 +0300 | [diff] [blame] | 2425 | dwc3_stop_active_transfer(dwc, dep->number, true); |
Pratyush Anand | cdc359d | 2013-01-14 15:59:34 +0530 | [diff] [blame] | 2426 | dep->flags = DWC3_EP_ENABLED; |
| 2427 | } |
Pratyush Anand | 7efea86 | 2013-01-14 15:59:32 +0530 | [diff] [blame] | 2428 | return 1; |
| 2429 | } |
| 2430 | |
Arnd Bergmann | d6e10bf | 2016-09-09 12:01:51 +0200 | [diff] [blame] | 2431 | if (usb_endpoint_xfer_isoc(dep->endpoint.desc) && ioc) |
| 2432 | return 0; |
| 2433 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2434 | return 1; |
| 2435 | } |
| 2436 | |
Felipe Balbi | fbea935 | 2018-03-26 13:29:17 +0300 | [diff] [blame] | 2437 | static void dwc3_gadget_endpoint_transfer_in_progress(struct dwc3 *dwc, |
Jingoo Han | 029d97f | 2014-07-04 15:00:51 +0900 | [diff] [blame] | 2438 | struct dwc3_ep *dep, const struct dwc3_event_depevt *event) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2439 | { |
| 2440 | unsigned status = 0; |
| 2441 | int clean_busy; |
| 2442 | |
| 2443 | if (event->status & DEPEVT_STATUS_BUSERR) |
| 2444 | status = -ECONNRESET; |
| 2445 | |
Felipe Balbi | 66f5dd5 | 2018-03-26 15:48:22 +0300 | [diff] [blame] | 2446 | clean_busy = dwc3_gadget_ep_cleanup_completed_requests(dwc, dep, event, |
| 2447 | status); |
Felipe Balbi | fbea935 | 2018-03-26 13:29:17 +0300 | [diff] [blame] | 2448 | if (clean_busy && (!dep->endpoint.desc || |
Felipe Balbi | e18b797 | 2015-05-29 10:06:38 -0500 | [diff] [blame] | 2449 | usb_endpoint_xfer_isoc(dep->endpoint.desc))) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2450 | dep->flags &= ~DWC3_EP_BUSY; |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 2451 | |
| 2452 | /* |
| 2453 | * WORKAROUND: This is the 2nd half of U1/U2 -> U0 workaround. |
| 2454 | * See dwc3_gadget_linksts_change_interrupt() for 1st half. |
| 2455 | */ |
| 2456 | if (dwc->revision < DWC3_REVISION_183A) { |
| 2457 | u32 reg; |
| 2458 | int i; |
| 2459 | |
| 2460 | for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) { |
Moiz Sonasath | 348e026 | 2012-08-01 14:08:30 -0500 | [diff] [blame] | 2461 | dep = dwc->eps[i]; |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 2462 | |
| 2463 | if (!(dep->flags & DWC3_EP_ENABLED)) |
| 2464 | continue; |
| 2465 | |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 2466 | if (!list_empty(&dep->started_list)) |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 2467 | return; |
| 2468 | } |
| 2469 | |
| 2470 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 2471 | reg |= dwc->u1u2; |
| 2472 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 2473 | |
| 2474 | dwc->u1u2 = 0; |
| 2475 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2476 | } |
| 2477 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2478 | static void dwc3_endpoint_interrupt(struct dwc3 *dwc, |
| 2479 | const struct dwc3_event_depevt *event) |
| 2480 | { |
| 2481 | struct dwc3_ep *dep; |
| 2482 | u8 epnum = event->endpoint_number; |
Baolin Wang | 76a638f | 2016-10-31 19:38:36 +0800 | [diff] [blame] | 2483 | u8 cmd; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2484 | |
| 2485 | dep = dwc->eps[epnum]; |
| 2486 | |
Janusz Dziedzic | d7fd41c | 2016-12-08 10:57:34 +0100 | [diff] [blame] | 2487 | if (!(dep->flags & DWC3_EP_ENABLED)) { |
| 2488 | if (!(dep->flags & DWC3_EP_END_TRANSFER_PENDING)) |
| 2489 | return; |
| 2490 | |
| 2491 | /* Handle only EPCMDCMPLT when EP disabled */ |
| 2492 | if (event->endpoint_event != DWC3_DEPEVT_EPCMDCMPLT) |
| 2493 | return; |
| 2494 | } |
Felipe Balbi | 3336abb | 2012-06-06 09:19:35 +0300 | [diff] [blame] | 2495 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2496 | if (epnum == 0 || epnum == 1) { |
| 2497 | dwc3_ep0_interrupt(dwc, event); |
| 2498 | return; |
| 2499 | } |
| 2500 | |
| 2501 | switch (event->endpoint_event) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2502 | case DWC3_DEPEVT_XFERINPROGRESS: |
Felipe Balbi | fbea935 | 2018-03-26 13:29:17 +0300 | [diff] [blame] | 2503 | dwc3_gadget_endpoint_transfer_in_progress(dwc, dep, event); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2504 | break; |
| 2505 | case DWC3_DEPEVT_XFERNOTREADY: |
Felipe Balbi | 3840846 | 2018-03-26 13:26:00 +0300 | [diff] [blame] | 2506 | dwc3_gadget_start_isoc(dwc, dep, event); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2507 | break; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2508 | case DWC3_DEPEVT_EPCMDCMPLT: |
Baolin Wang | 76a638f | 2016-10-31 19:38:36 +0800 | [diff] [blame] | 2509 | cmd = DEPEVT_PARAMETER_CMD(event->parameters); |
| 2510 | |
| 2511 | if (cmd == DWC3_DEPCMD_ENDTRANSFER) { |
| 2512 | dep->flags &= ~DWC3_EP_END_TRANSFER_PENDING; |
| 2513 | wake_up(&dep->wait_end_transfer); |
| 2514 | } |
| 2515 | break; |
Felipe Balbi | a24a6ab | 2018-03-27 10:41:39 +0300 | [diff] [blame^] | 2516 | case DWC3_DEPEVT_STREAMEVT: |
Felipe Balbi | 742a4ff | 2018-03-26 13:26:56 +0300 | [diff] [blame] | 2517 | case DWC3_DEPEVT_XFERCOMPLETE: |
Baolin Wang | 76a638f | 2016-10-31 19:38:36 +0800 | [diff] [blame] | 2518 | case DWC3_DEPEVT_RXTXFIFOEVT: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2519 | break; |
| 2520 | } |
| 2521 | } |
| 2522 | |
| 2523 | static void dwc3_disconnect_gadget(struct dwc3 *dwc) |
| 2524 | { |
| 2525 | if (dwc->gadget_driver && dwc->gadget_driver->disconnect) { |
| 2526 | spin_unlock(&dwc->lock); |
| 2527 | dwc->gadget_driver->disconnect(&dwc->gadget); |
| 2528 | spin_lock(&dwc->lock); |
| 2529 | } |
| 2530 | } |
| 2531 | |
Felipe Balbi | bc5ba2e | 2014-02-26 10:17:07 -0600 | [diff] [blame] | 2532 | static void dwc3_suspend_gadget(struct dwc3 *dwc) |
| 2533 | { |
Dan Carpenter | 73a30bf | 2014-03-07 14:19:57 +0300 | [diff] [blame] | 2534 | if (dwc->gadget_driver && dwc->gadget_driver->suspend) { |
Felipe Balbi | bc5ba2e | 2014-02-26 10:17:07 -0600 | [diff] [blame] | 2535 | spin_unlock(&dwc->lock); |
| 2536 | dwc->gadget_driver->suspend(&dwc->gadget); |
| 2537 | spin_lock(&dwc->lock); |
| 2538 | } |
| 2539 | } |
| 2540 | |
| 2541 | static void dwc3_resume_gadget(struct dwc3 *dwc) |
| 2542 | { |
Dan Carpenter | 73a30bf | 2014-03-07 14:19:57 +0300 | [diff] [blame] | 2543 | if (dwc->gadget_driver && dwc->gadget_driver->resume) { |
Felipe Balbi | bc5ba2e | 2014-02-26 10:17:07 -0600 | [diff] [blame] | 2544 | spin_unlock(&dwc->lock); |
| 2545 | dwc->gadget_driver->resume(&dwc->gadget); |
Felipe Balbi | 5c7b3b0 | 2015-01-29 10:29:18 -0600 | [diff] [blame] | 2546 | spin_lock(&dwc->lock); |
Felipe Balbi | 8e74475 | 2014-11-06 14:27:53 +0800 | [diff] [blame] | 2547 | } |
| 2548 | } |
| 2549 | |
| 2550 | static void dwc3_reset_gadget(struct dwc3 *dwc) |
| 2551 | { |
| 2552 | if (!dwc->gadget_driver) |
| 2553 | return; |
| 2554 | |
| 2555 | if (dwc->gadget.speed != USB_SPEED_UNKNOWN) { |
| 2556 | spin_unlock(&dwc->lock); |
| 2557 | usb_gadget_udc_reset(&dwc->gadget, dwc->gadget_driver); |
Felipe Balbi | bc5ba2e | 2014-02-26 10:17:07 -0600 | [diff] [blame] | 2558 | spin_lock(&dwc->lock); |
| 2559 | } |
| 2560 | } |
| 2561 | |
Paul Zimmerman | b992e68 | 2012-04-27 14:17:35 +0300 | [diff] [blame] | 2562 | static void dwc3_stop_active_transfer(struct dwc3 *dwc, u32 epnum, bool force) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2563 | { |
| 2564 | struct dwc3_ep *dep; |
| 2565 | struct dwc3_gadget_ep_cmd_params params; |
| 2566 | u32 cmd; |
| 2567 | int ret; |
| 2568 | |
| 2569 | dep = dwc->eps[epnum]; |
| 2570 | |
Baolin Wang | 76a638f | 2016-10-31 19:38:36 +0800 | [diff] [blame] | 2571 | if ((dep->flags & DWC3_EP_END_TRANSFER_PENDING) || |
| 2572 | !dep->resource_index) |
Pratyush Anand | 3daf74d | 2012-06-23 02:23:08 +0530 | [diff] [blame] | 2573 | return; |
| 2574 | |
Pratyush Anand | 5791150 | 2012-07-06 15:19:10 +0530 | [diff] [blame] | 2575 | /* |
| 2576 | * NOTICE: We are violating what the Databook says about the |
| 2577 | * EndTransfer command. Ideally we would _always_ wait for the |
| 2578 | * EndTransfer Command Completion IRQ, but that's causing too |
| 2579 | * much trouble synchronizing between us and gadget driver. |
| 2580 | * |
| 2581 | * We have discussed this with the IP Provider and it was |
| 2582 | * suggested to giveback all requests here, but give HW some |
| 2583 | * extra time to synchronize with the interconnect. We're using |
Mickael Maison | dc93b41 | 2014-12-23 17:34:43 +0100 | [diff] [blame] | 2584 | * an arbitrary 100us delay for that. |
Pratyush Anand | 5791150 | 2012-07-06 15:19:10 +0530 | [diff] [blame] | 2585 | * |
| 2586 | * Note also that a similar handling was tested by Synopsys |
| 2587 | * (thanks a lot Paul) and nothing bad has come out of it. |
| 2588 | * In short, what we're doing is: |
| 2589 | * |
| 2590 | * - Issue EndTransfer WITH CMDIOC bit set |
| 2591 | * - Wait 100us |
John Youn | 06281d4 | 2016-08-22 15:39:13 -0700 | [diff] [blame] | 2592 | * |
| 2593 | * As of IP version 3.10a of the DWC_usb3 IP, the controller |
| 2594 | * supports a mode to work around the above limitation. The |
| 2595 | * software can poll the CMDACT bit in the DEPCMD register |
| 2596 | * after issuing a EndTransfer command. This mode is enabled |
| 2597 | * by writing GUCTL2[14]. This polling is already done in the |
| 2598 | * dwc3_send_gadget_ep_cmd() function so if the mode is |
| 2599 | * enabled, the EndTransfer command will have completed upon |
| 2600 | * returning from this function and we don't need to delay for |
| 2601 | * 100us. |
| 2602 | * |
| 2603 | * This mode is NOT available on the DWC_usb31 IP. |
Pratyush Anand | 5791150 | 2012-07-06 15:19:10 +0530 | [diff] [blame] | 2604 | */ |
| 2605 | |
Pratyush Anand | 3daf74d | 2012-06-23 02:23:08 +0530 | [diff] [blame] | 2606 | cmd = DWC3_DEPCMD_ENDTRANSFER; |
Paul Zimmerman | b992e68 | 2012-04-27 14:17:35 +0300 | [diff] [blame] | 2607 | cmd |= force ? DWC3_DEPCMD_HIPRI_FORCERM : 0; |
| 2608 | cmd |= DWC3_DEPCMD_CMDIOC; |
Felipe Balbi | b4996a8 | 2012-06-06 12:04:13 +0300 | [diff] [blame] | 2609 | cmd |= DWC3_DEPCMD_PARAM(dep->resource_index); |
Pratyush Anand | 3daf74d | 2012-06-23 02:23:08 +0530 | [diff] [blame] | 2610 | memset(¶ms, 0, sizeof(params)); |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 2611 | ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); |
Pratyush Anand | 3daf74d | 2012-06-23 02:23:08 +0530 | [diff] [blame] | 2612 | WARN_ON_ONCE(ret); |
Felipe Balbi | b4996a8 | 2012-06-06 12:04:13 +0300 | [diff] [blame] | 2613 | dep->resource_index = 0; |
Felipe Balbi | 041d81f | 2012-10-04 11:58:00 +0300 | [diff] [blame] | 2614 | dep->flags &= ~DWC3_EP_BUSY; |
John Youn | 06281d4 | 2016-08-22 15:39:13 -0700 | [diff] [blame] | 2615 | |
Baolin Wang | 76a638f | 2016-10-31 19:38:36 +0800 | [diff] [blame] | 2616 | if (dwc3_is_usb31(dwc) || dwc->revision < DWC3_REVISION_310A) { |
| 2617 | dep->flags |= DWC3_EP_END_TRANSFER_PENDING; |
John Youn | 06281d4 | 2016-08-22 15:39:13 -0700 | [diff] [blame] | 2618 | udelay(100); |
Baolin Wang | 76a638f | 2016-10-31 19:38:36 +0800 | [diff] [blame] | 2619 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2620 | } |
| 2621 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2622 | static void dwc3_clear_stall_all_ep(struct dwc3 *dwc) |
| 2623 | { |
| 2624 | u32 epnum; |
| 2625 | |
| 2626 | for (epnum = 1; epnum < DWC3_ENDPOINTS_NUM; epnum++) { |
| 2627 | struct dwc3_ep *dep; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2628 | int ret; |
| 2629 | |
| 2630 | dep = dwc->eps[epnum]; |
Felipe Balbi | 6a1e3ef | 2011-05-05 16:21:59 +0300 | [diff] [blame] | 2631 | if (!dep) |
| 2632 | continue; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2633 | |
| 2634 | if (!(dep->flags & DWC3_EP_STALL)) |
| 2635 | continue; |
| 2636 | |
| 2637 | dep->flags &= ~DWC3_EP_STALL; |
| 2638 | |
John Youn | 50c763f | 2016-05-31 17:49:56 -0700 | [diff] [blame] | 2639 | ret = dwc3_send_clear_stall_ep_cmd(dep); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2640 | WARN_ON_ONCE(ret); |
| 2641 | } |
| 2642 | } |
| 2643 | |
| 2644 | static void dwc3_gadget_disconnect_interrupt(struct dwc3 *dwc) |
| 2645 | { |
Felipe Balbi | c4430a2 | 2012-05-24 10:30:01 +0300 | [diff] [blame] | 2646 | int reg; |
| 2647 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2648 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 2649 | reg &= ~DWC3_DCTL_INITU1ENA; |
| 2650 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 2651 | |
| 2652 | reg &= ~DWC3_DCTL_INITU2ENA; |
| 2653 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2654 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2655 | dwc3_disconnect_gadget(dwc); |
| 2656 | |
| 2657 | dwc->gadget.speed = USB_SPEED_UNKNOWN; |
Felipe Balbi | df62df5 | 2011-10-14 15:11:49 +0300 | [diff] [blame] | 2658 | dwc->setup_packet_pending = false; |
Felipe Balbi | 06a374e | 2014-10-10 15:24:00 -0500 | [diff] [blame] | 2659 | usb_gadget_set_state(&dwc->gadget, USB_STATE_NOTATTACHED); |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 2660 | |
| 2661 | dwc->connected = false; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2662 | } |
| 2663 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2664 | static void dwc3_gadget_reset_interrupt(struct dwc3 *dwc) |
| 2665 | { |
| 2666 | u32 reg; |
| 2667 | |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 2668 | dwc->connected = true; |
| 2669 | |
Felipe Balbi | df62df5 | 2011-10-14 15:11:49 +0300 | [diff] [blame] | 2670 | /* |
| 2671 | * WORKAROUND: DWC3 revisions <1.88a have an issue which |
| 2672 | * would cause a missing Disconnect Event if there's a |
| 2673 | * pending Setup Packet in the FIFO. |
| 2674 | * |
| 2675 | * There's no suggested workaround on the official Bug |
| 2676 | * report, which states that "unless the driver/application |
| 2677 | * is doing any special handling of a disconnect event, |
| 2678 | * there is no functional issue". |
| 2679 | * |
| 2680 | * Unfortunately, it turns out that we _do_ some special |
| 2681 | * handling of a disconnect event, namely complete all |
| 2682 | * pending transfers, notify gadget driver of the |
| 2683 | * disconnection, and so on. |
| 2684 | * |
| 2685 | * Our suggested workaround is to follow the Disconnect |
| 2686 | * Event steps here, instead, based on a setup_packet_pending |
Felipe Balbi | b5d335e | 2015-11-16 16:20:34 -0600 | [diff] [blame] | 2687 | * flag. Such flag gets set whenever we have a SETUP_PENDING |
| 2688 | * status for EP0 TRBs and gets cleared on XferComplete for the |
Felipe Balbi | df62df5 | 2011-10-14 15:11:49 +0300 | [diff] [blame] | 2689 | * same endpoint. |
| 2690 | * |
| 2691 | * Refers to: |
| 2692 | * |
| 2693 | * STAR#9000466709: RTL: Device : Disconnect event not |
| 2694 | * generated if setup packet pending in FIFO |
| 2695 | */ |
| 2696 | if (dwc->revision < DWC3_REVISION_188A) { |
| 2697 | if (dwc->setup_packet_pending) |
| 2698 | dwc3_gadget_disconnect_interrupt(dwc); |
| 2699 | } |
| 2700 | |
Felipe Balbi | 8e74475 | 2014-11-06 14:27:53 +0800 | [diff] [blame] | 2701 | dwc3_reset_gadget(dwc); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2702 | |
| 2703 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 2704 | reg &= ~DWC3_DCTL_TSTCTRL_MASK; |
| 2705 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
Gerard Cauvy | 3b63736 | 2012-02-10 12:21:18 +0200 | [diff] [blame] | 2706 | dwc->test_mode = false; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2707 | dwc3_clear_stall_all_ep(dwc); |
| 2708 | |
| 2709 | /* Reset device address to zero */ |
| 2710 | reg = dwc3_readl(dwc->regs, DWC3_DCFG); |
| 2711 | reg &= ~(DWC3_DCFG_DEVADDR_MASK); |
| 2712 | dwc3_writel(dwc->regs, DWC3_DCFG, reg); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2713 | } |
| 2714 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2715 | static void dwc3_gadget_conndone_interrupt(struct dwc3 *dwc) |
| 2716 | { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2717 | struct dwc3_ep *dep; |
| 2718 | int ret; |
| 2719 | u32 reg; |
| 2720 | u8 speed; |
| 2721 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2722 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 2723 | speed = reg & DWC3_DSTS_CONNECTSPD; |
| 2724 | dwc->speed = speed; |
| 2725 | |
John Youn | 5fb6fda | 2016-11-10 17:23:25 -0800 | [diff] [blame] | 2726 | /* |
| 2727 | * RAMClkSel is reset to 0 after USB reset, so it must be reprogrammed |
| 2728 | * each time on Connect Done. |
| 2729 | * |
| 2730 | * Currently we always use the reset value. If any platform |
| 2731 | * wants to set this to a different value, we need to add a |
| 2732 | * setting and update GCTL.RAMCLKSEL here. |
| 2733 | */ |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2734 | |
| 2735 | switch (speed) { |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 2736 | case DWC3_DSTS_SUPERSPEED_PLUS: |
John Youn | 7580862 | 2016-02-05 17:09:13 -0800 | [diff] [blame] | 2737 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512); |
| 2738 | dwc->gadget.ep0->maxpacket = 512; |
| 2739 | dwc->gadget.speed = USB_SPEED_SUPER_PLUS; |
| 2740 | break; |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 2741 | case DWC3_DSTS_SUPERSPEED: |
Felipe Balbi | 05870c5 | 2011-10-14 14:51:38 +0300 | [diff] [blame] | 2742 | /* |
| 2743 | * WORKAROUND: DWC3 revisions <1.90a have an issue which |
| 2744 | * would cause a missing USB3 Reset event. |
| 2745 | * |
| 2746 | * In such situations, we should force a USB3 Reset |
| 2747 | * event by calling our dwc3_gadget_reset_interrupt() |
| 2748 | * routine. |
| 2749 | * |
| 2750 | * Refers to: |
| 2751 | * |
| 2752 | * STAR#9000483510: RTL: SS : USB3 reset event may |
| 2753 | * not be generated always when the link enters poll |
| 2754 | */ |
| 2755 | if (dwc->revision < DWC3_REVISION_190A) |
| 2756 | dwc3_gadget_reset_interrupt(dwc); |
| 2757 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2758 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512); |
| 2759 | dwc->gadget.ep0->maxpacket = 512; |
| 2760 | dwc->gadget.speed = USB_SPEED_SUPER; |
| 2761 | break; |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 2762 | case DWC3_DSTS_HIGHSPEED: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2763 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64); |
| 2764 | dwc->gadget.ep0->maxpacket = 64; |
| 2765 | dwc->gadget.speed = USB_SPEED_HIGH; |
| 2766 | break; |
Roger Quadros | 9418ee1 | 2017-01-03 14:32:09 +0200 | [diff] [blame] | 2767 | case DWC3_DSTS_FULLSPEED: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2768 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64); |
| 2769 | dwc->gadget.ep0->maxpacket = 64; |
| 2770 | dwc->gadget.speed = USB_SPEED_FULL; |
| 2771 | break; |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 2772 | case DWC3_DSTS_LOWSPEED: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2773 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(8); |
| 2774 | dwc->gadget.ep0->maxpacket = 8; |
| 2775 | dwc->gadget.speed = USB_SPEED_LOW; |
| 2776 | break; |
| 2777 | } |
| 2778 | |
Thinh Nguyen | 6180026 | 2018-01-12 18:18:05 -0800 | [diff] [blame] | 2779 | dwc->eps[1]->endpoint.maxpacket = dwc->gadget.ep0->maxpacket; |
| 2780 | |
Pratyush Anand | 2b75835 | 2013-01-14 15:59:31 +0530 | [diff] [blame] | 2781 | /* Enable USB2 LPM Capability */ |
| 2782 | |
John Youn | ee5cd41 | 2016-02-05 17:08:45 -0800 | [diff] [blame] | 2783 | if ((dwc->revision > DWC3_REVISION_194A) && |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 2784 | (speed != DWC3_DSTS_SUPERSPEED) && |
| 2785 | (speed != DWC3_DSTS_SUPERSPEED_PLUS)) { |
Pratyush Anand | 2b75835 | 2013-01-14 15:59:31 +0530 | [diff] [blame] | 2786 | reg = dwc3_readl(dwc->regs, DWC3_DCFG); |
| 2787 | reg |= DWC3_DCFG_LPM_CAP; |
| 2788 | dwc3_writel(dwc->regs, DWC3_DCFG, reg); |
| 2789 | |
| 2790 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 2791 | reg &= ~(DWC3_DCTL_HIRD_THRES_MASK | DWC3_DCTL_L1_HIBER_EN); |
| 2792 | |
Huang Rui | 460d098 | 2014-10-31 11:11:18 +0800 | [diff] [blame] | 2793 | reg |= DWC3_DCTL_HIRD_THRES(dwc->hird_threshold); |
Pratyush Anand | 2b75835 | 2013-01-14 15:59:31 +0530 | [diff] [blame] | 2794 | |
Huang Rui | 80caf7d | 2014-10-28 19:54:26 +0800 | [diff] [blame] | 2795 | /* |
| 2796 | * When dwc3 revisions >= 2.40a, LPM Erratum is enabled and |
| 2797 | * DCFG.LPMCap is set, core responses with an ACK and the |
| 2798 | * BESL value in the LPM token is less than or equal to LPM |
| 2799 | * NYET threshold. |
| 2800 | */ |
| 2801 | WARN_ONCE(dwc->revision < DWC3_REVISION_240A |
| 2802 | && dwc->has_lpm_erratum, |
Masanari Iida | 9165dab | 2016-09-17 23:44:17 +0900 | [diff] [blame] | 2803 | "LPM Erratum not available on dwc3 revisions < 2.40a\n"); |
Huang Rui | 80caf7d | 2014-10-28 19:54:26 +0800 | [diff] [blame] | 2804 | |
| 2805 | if (dwc->has_lpm_erratum && dwc->revision >= DWC3_REVISION_240A) |
| 2806 | reg |= DWC3_DCTL_LPM_ERRATA(dwc->lpm_nyet_threshold); |
| 2807 | |
Pratyush Anand | 2b75835 | 2013-01-14 15:59:31 +0530 | [diff] [blame] | 2808 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
Felipe Balbi | 356363b | 2013-12-19 16:37:05 -0600 | [diff] [blame] | 2809 | } else { |
| 2810 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 2811 | reg &= ~DWC3_DCTL_HIRD_THRES_MASK; |
| 2812 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
Pratyush Anand | 2b75835 | 2013-01-14 15:59:31 +0530 | [diff] [blame] | 2813 | } |
| 2814 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2815 | dep = dwc->eps[0]; |
John Youn | 39ebb05 | 2016-11-09 16:36:28 -0800 | [diff] [blame] | 2816 | ret = __dwc3_gadget_ep_enable(dep, true, false); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2817 | if (ret) { |
| 2818 | dev_err(dwc->dev, "failed to enable %s\n", dep->name); |
| 2819 | return; |
| 2820 | } |
| 2821 | |
| 2822 | dep = dwc->eps[1]; |
John Youn | 39ebb05 | 2016-11-09 16:36:28 -0800 | [diff] [blame] | 2823 | ret = __dwc3_gadget_ep_enable(dep, true, false); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2824 | if (ret) { |
| 2825 | dev_err(dwc->dev, "failed to enable %s\n", dep->name); |
| 2826 | return; |
| 2827 | } |
| 2828 | |
| 2829 | /* |
| 2830 | * Configure PHY via GUSB3PIPECTLn if required. |
| 2831 | * |
| 2832 | * Update GTXFIFOSIZn |
| 2833 | * |
| 2834 | * In both cases reset values should be sufficient. |
| 2835 | */ |
| 2836 | } |
| 2837 | |
| 2838 | static void dwc3_gadget_wakeup_interrupt(struct dwc3 *dwc) |
| 2839 | { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2840 | /* |
| 2841 | * TODO take core out of low power mode when that's |
| 2842 | * implemented. |
| 2843 | */ |
| 2844 | |
Jiebing Li | ad14d4e | 2014-12-11 13:26:29 +0800 | [diff] [blame] | 2845 | if (dwc->gadget_driver && dwc->gadget_driver->resume) { |
| 2846 | spin_unlock(&dwc->lock); |
| 2847 | dwc->gadget_driver->resume(&dwc->gadget); |
| 2848 | spin_lock(&dwc->lock); |
| 2849 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2850 | } |
| 2851 | |
| 2852 | static void dwc3_gadget_linksts_change_interrupt(struct dwc3 *dwc, |
| 2853 | unsigned int evtinfo) |
| 2854 | { |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 2855 | enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK; |
Felipe Balbi | 0b0cc1c | 2012-09-18 21:39:24 +0300 | [diff] [blame] | 2856 | unsigned int pwropt; |
| 2857 | |
| 2858 | /* |
| 2859 | * WORKAROUND: DWC3 < 2.50a have an issue when configured without |
| 2860 | * Hibernation mode enabled which would show up when device detects |
| 2861 | * host-initiated U3 exit. |
| 2862 | * |
| 2863 | * In that case, device will generate a Link State Change Interrupt |
| 2864 | * from U3 to RESUME which is only necessary if Hibernation is |
| 2865 | * configured in. |
| 2866 | * |
| 2867 | * There are no functional changes due to such spurious event and we |
| 2868 | * just need to ignore it. |
| 2869 | * |
| 2870 | * Refers to: |
| 2871 | * |
| 2872 | * STAR#9000570034 RTL: SS Resume event generated in non-Hibernation |
| 2873 | * operational mode |
| 2874 | */ |
| 2875 | pwropt = DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1); |
| 2876 | if ((dwc->revision < DWC3_REVISION_250A) && |
| 2877 | (pwropt != DWC3_GHWPARAMS1_EN_PWROPT_HIB)) { |
| 2878 | if ((dwc->link_state == DWC3_LINK_STATE_U3) && |
| 2879 | (next == DWC3_LINK_STATE_RESUME)) { |
Felipe Balbi | 0b0cc1c | 2012-09-18 21:39:24 +0300 | [diff] [blame] | 2880 | return; |
| 2881 | } |
| 2882 | } |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 2883 | |
| 2884 | /* |
| 2885 | * WORKAROUND: DWC3 Revisions <1.83a have an issue which, depending |
| 2886 | * on the link partner, the USB session might do multiple entry/exit |
| 2887 | * of low power states before a transfer takes place. |
| 2888 | * |
| 2889 | * Due to this problem, we might experience lower throughput. The |
| 2890 | * suggested workaround is to disable DCTL[12:9] bits if we're |
| 2891 | * transitioning from U1/U2 to U0 and enable those bits again |
| 2892 | * after a transfer completes and there are no pending transfers |
| 2893 | * on any of the enabled endpoints. |
| 2894 | * |
| 2895 | * This is the first half of that workaround. |
| 2896 | * |
| 2897 | * Refers to: |
| 2898 | * |
| 2899 | * STAR#9000446952: RTL: Device SS : if U1/U2 ->U0 takes >128us |
| 2900 | * core send LGO_Ux entering U0 |
| 2901 | */ |
| 2902 | if (dwc->revision < DWC3_REVISION_183A) { |
| 2903 | if (next == DWC3_LINK_STATE_U0) { |
| 2904 | u32 u1u2; |
| 2905 | u32 reg; |
| 2906 | |
| 2907 | switch (dwc->link_state) { |
| 2908 | case DWC3_LINK_STATE_U1: |
| 2909 | case DWC3_LINK_STATE_U2: |
| 2910 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 2911 | u1u2 = reg & (DWC3_DCTL_INITU2ENA |
| 2912 | | DWC3_DCTL_ACCEPTU2ENA |
| 2913 | | DWC3_DCTL_INITU1ENA |
| 2914 | | DWC3_DCTL_ACCEPTU1ENA); |
| 2915 | |
| 2916 | if (!dwc->u1u2) |
| 2917 | dwc->u1u2 = reg & u1u2; |
| 2918 | |
| 2919 | reg &= ~u1u2; |
| 2920 | |
| 2921 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 2922 | break; |
| 2923 | default: |
| 2924 | /* do nothing */ |
| 2925 | break; |
| 2926 | } |
| 2927 | } |
| 2928 | } |
| 2929 | |
Felipe Balbi | bc5ba2e | 2014-02-26 10:17:07 -0600 | [diff] [blame] | 2930 | switch (next) { |
| 2931 | case DWC3_LINK_STATE_U1: |
| 2932 | if (dwc->speed == USB_SPEED_SUPER) |
| 2933 | dwc3_suspend_gadget(dwc); |
| 2934 | break; |
| 2935 | case DWC3_LINK_STATE_U2: |
| 2936 | case DWC3_LINK_STATE_U3: |
| 2937 | dwc3_suspend_gadget(dwc); |
| 2938 | break; |
| 2939 | case DWC3_LINK_STATE_RESUME: |
| 2940 | dwc3_resume_gadget(dwc); |
| 2941 | break; |
| 2942 | default: |
| 2943 | /* do nothing */ |
| 2944 | break; |
| 2945 | } |
| 2946 | |
Felipe Balbi | e57ebc1 | 2014-04-22 13:20:12 -0500 | [diff] [blame] | 2947 | dwc->link_state = next; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2948 | } |
| 2949 | |
Baolin Wang | 72704f8 | 2016-05-16 16:43:53 +0800 | [diff] [blame] | 2950 | static void dwc3_gadget_suspend_interrupt(struct dwc3 *dwc, |
| 2951 | unsigned int evtinfo) |
| 2952 | { |
| 2953 | enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK; |
| 2954 | |
| 2955 | if (dwc->link_state != next && next == DWC3_LINK_STATE_U3) |
| 2956 | dwc3_suspend_gadget(dwc); |
| 2957 | |
| 2958 | dwc->link_state = next; |
| 2959 | } |
| 2960 | |
Felipe Balbi | e1dadd3 | 2014-02-25 14:47:54 -0600 | [diff] [blame] | 2961 | static void dwc3_gadget_hibernation_interrupt(struct dwc3 *dwc, |
| 2962 | unsigned int evtinfo) |
| 2963 | { |
| 2964 | unsigned int is_ss = evtinfo & BIT(4); |
| 2965 | |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 2966 | /* |
Felipe Balbi | e1dadd3 | 2014-02-25 14:47:54 -0600 | [diff] [blame] | 2967 | * WORKAROUND: DWC3 revison 2.20a with hibernation support |
| 2968 | * have a known issue which can cause USB CV TD.9.23 to fail |
| 2969 | * randomly. |
| 2970 | * |
| 2971 | * Because of this issue, core could generate bogus hibernation |
| 2972 | * events which SW needs to ignore. |
| 2973 | * |
| 2974 | * Refers to: |
| 2975 | * |
| 2976 | * STAR#9000546576: Device Mode Hibernation: Issue in USB 2.0 |
| 2977 | * Device Fallback from SuperSpeed |
| 2978 | */ |
| 2979 | if (is_ss ^ (dwc->speed == USB_SPEED_SUPER)) |
| 2980 | return; |
| 2981 | |
| 2982 | /* enter hibernation here */ |
| 2983 | } |
| 2984 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2985 | static void dwc3_gadget_interrupt(struct dwc3 *dwc, |
| 2986 | const struct dwc3_event_devt *event) |
| 2987 | { |
| 2988 | switch (event->type) { |
| 2989 | case DWC3_DEVICE_EVENT_DISCONNECT: |
| 2990 | dwc3_gadget_disconnect_interrupt(dwc); |
| 2991 | break; |
| 2992 | case DWC3_DEVICE_EVENT_RESET: |
| 2993 | dwc3_gadget_reset_interrupt(dwc); |
| 2994 | break; |
| 2995 | case DWC3_DEVICE_EVENT_CONNECT_DONE: |
| 2996 | dwc3_gadget_conndone_interrupt(dwc); |
| 2997 | break; |
| 2998 | case DWC3_DEVICE_EVENT_WAKEUP: |
| 2999 | dwc3_gadget_wakeup_interrupt(dwc); |
| 3000 | break; |
Felipe Balbi | e1dadd3 | 2014-02-25 14:47:54 -0600 | [diff] [blame] | 3001 | case DWC3_DEVICE_EVENT_HIBER_REQ: |
| 3002 | if (dev_WARN_ONCE(dwc->dev, !dwc->has_hibernation, |
| 3003 | "unexpected hibernation event\n")) |
| 3004 | break; |
| 3005 | |
| 3006 | dwc3_gadget_hibernation_interrupt(dwc, event->event_info); |
| 3007 | break; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3008 | case DWC3_DEVICE_EVENT_LINK_STATUS_CHANGE: |
| 3009 | dwc3_gadget_linksts_change_interrupt(dwc, event->event_info); |
| 3010 | break; |
| 3011 | case DWC3_DEVICE_EVENT_EOPF: |
Baolin Wang | 72704f8 | 2016-05-16 16:43:53 +0800 | [diff] [blame] | 3012 | /* It changed to be suspend event for version 2.30a and above */ |
Felipe Balbi | 5eb30ce | 2016-11-03 14:07:51 +0200 | [diff] [blame] | 3013 | if (dwc->revision >= DWC3_REVISION_230A) { |
Baolin Wang | 72704f8 | 2016-05-16 16:43:53 +0800 | [diff] [blame] | 3014 | /* |
| 3015 | * Ignore suspend event until the gadget enters into |
| 3016 | * USB_STATE_CONFIGURED state. |
| 3017 | */ |
| 3018 | if (dwc->gadget.state >= USB_STATE_CONFIGURED) |
| 3019 | dwc3_gadget_suspend_interrupt(dwc, |
| 3020 | event->event_info); |
| 3021 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3022 | break; |
| 3023 | case DWC3_DEVICE_EVENT_SOF: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3024 | case DWC3_DEVICE_EVENT_ERRATIC_ERROR: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3025 | case DWC3_DEVICE_EVENT_CMD_CMPL: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3026 | case DWC3_DEVICE_EVENT_OVERFLOW: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3027 | break; |
| 3028 | default: |
Felipe Balbi | e9f2aa8 | 2015-01-27 13:49:28 -0600 | [diff] [blame] | 3029 | dev_WARN(dwc->dev, "UNKNOWN IRQ %d\n", event->type); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3030 | } |
| 3031 | } |
| 3032 | |
| 3033 | static void dwc3_process_event_entry(struct dwc3 *dwc, |
| 3034 | const union dwc3_event *event) |
| 3035 | { |
Felipe Balbi | 43c96be | 2016-09-26 13:23:34 +0300 | [diff] [blame] | 3036 | trace_dwc3_event(event->raw, dwc); |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 3037 | |
Felipe Balbi | dfc5e80 | 2017-04-26 13:44:51 +0300 | [diff] [blame] | 3038 | if (!event->type.is_devspec) |
| 3039 | dwc3_endpoint_interrupt(dwc, &event->depevt); |
| 3040 | else if (event->type.type == DWC3_EVENT_TYPE_DEV) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3041 | dwc3_gadget_interrupt(dwc, &event->devt); |
Felipe Balbi | dfc5e80 | 2017-04-26 13:44:51 +0300 | [diff] [blame] | 3042 | else |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3043 | dev_err(dwc->dev, "UNKNOWN IRQ type %d\n", event->raw); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3044 | } |
| 3045 | |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3046 | static irqreturn_t dwc3_process_event_buf(struct dwc3_event_buffer *evt) |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3047 | { |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3048 | struct dwc3 *dwc = evt->dwc; |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3049 | irqreturn_t ret = IRQ_NONE; |
| 3050 | int left; |
| 3051 | u32 reg; |
| 3052 | |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3053 | left = evt->count; |
| 3054 | |
| 3055 | if (!(evt->flags & DWC3_EVENT_PENDING)) |
| 3056 | return IRQ_NONE; |
| 3057 | |
| 3058 | while (left > 0) { |
| 3059 | union dwc3_event event; |
| 3060 | |
John Youn | ebbb2d5 | 2016-11-15 13:07:02 +0200 | [diff] [blame] | 3061 | event.raw = *(u32 *) (evt->cache + evt->lpos); |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3062 | |
| 3063 | dwc3_process_event_entry(dwc, &event); |
| 3064 | |
| 3065 | /* |
| 3066 | * FIXME we wrap around correctly to the next entry as |
| 3067 | * almost all entries are 4 bytes in size. There is one |
| 3068 | * entry which has 12 bytes which is a regular entry |
| 3069 | * followed by 8 bytes data. ATM I don't know how |
| 3070 | * things are organized if we get next to the a |
| 3071 | * boundary so I worry about that once we try to handle |
| 3072 | * that. |
| 3073 | */ |
Felipe Balbi | caefe6c | 2016-11-15 13:05:23 +0200 | [diff] [blame] | 3074 | evt->lpos = (evt->lpos + 4) % evt->length; |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3075 | left -= 4; |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3076 | } |
| 3077 | |
| 3078 | evt->count = 0; |
| 3079 | evt->flags &= ~DWC3_EVENT_PENDING; |
| 3080 | ret = IRQ_HANDLED; |
| 3081 | |
| 3082 | /* Unmask interrupt */ |
Felipe Balbi | 660e9bd | 2016-03-30 09:26:24 +0300 | [diff] [blame] | 3083 | reg = dwc3_readl(dwc->regs, DWC3_GEVNTSIZ(0)); |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3084 | reg &= ~DWC3_GEVNTSIZ_INTMASK; |
Felipe Balbi | 660e9bd | 2016-03-30 09:26:24 +0300 | [diff] [blame] | 3085 | dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), reg); |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3086 | |
John Youn | cf40b86 | 2016-11-14 12:32:43 -0800 | [diff] [blame] | 3087 | if (dwc->imod_interval) { |
| 3088 | dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), DWC3_GEVNTCOUNT_EHB); |
| 3089 | dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), dwc->imod_interval); |
| 3090 | } |
| 3091 | |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3092 | return ret; |
| 3093 | } |
| 3094 | |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3095 | static irqreturn_t dwc3_thread_interrupt(int irq, void *_evt) |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3096 | { |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3097 | struct dwc3_event_buffer *evt = _evt; |
| 3098 | struct dwc3 *dwc = evt->dwc; |
Felipe Balbi | e5f68b4a | 2015-10-12 13:25:44 -0500 | [diff] [blame] | 3099 | unsigned long flags; |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3100 | irqreturn_t ret = IRQ_NONE; |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3101 | |
Felipe Balbi | e5f68b4a | 2015-10-12 13:25:44 -0500 | [diff] [blame] | 3102 | spin_lock_irqsave(&dwc->lock, flags); |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3103 | ret = dwc3_process_event_buf(evt); |
Felipe Balbi | e5f68b4a | 2015-10-12 13:25:44 -0500 | [diff] [blame] | 3104 | spin_unlock_irqrestore(&dwc->lock, flags); |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3105 | |
| 3106 | return ret; |
| 3107 | } |
| 3108 | |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3109 | static irqreturn_t dwc3_check_event_buf(struct dwc3_event_buffer *evt) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3110 | { |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3111 | struct dwc3 *dwc = evt->dwc; |
John Youn | ebbb2d5 | 2016-11-15 13:07:02 +0200 | [diff] [blame] | 3112 | u32 amount; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3113 | u32 count; |
Felipe Balbi | e8adfc3 | 2013-06-12 21:11:14 +0300 | [diff] [blame] | 3114 | u32 reg; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3115 | |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 3116 | if (pm_runtime_suspended(dwc->dev)) { |
| 3117 | pm_runtime_get(dwc->dev); |
| 3118 | disable_irq_nosync(dwc->irq_gadget); |
| 3119 | dwc->pending_events = true; |
| 3120 | return IRQ_HANDLED; |
| 3121 | } |
| 3122 | |
Thinh Nguyen | d325a1d | 2017-05-11 17:26:47 -0700 | [diff] [blame] | 3123 | /* |
| 3124 | * With PCIe legacy interrupt, test shows that top-half irq handler can |
| 3125 | * be called again after HW interrupt deassertion. Check if bottom-half |
| 3126 | * irq event handler completes before caching new event to prevent |
| 3127 | * losing events. |
| 3128 | */ |
| 3129 | if (evt->flags & DWC3_EVENT_PENDING) |
| 3130 | return IRQ_HANDLED; |
| 3131 | |
Felipe Balbi | 660e9bd | 2016-03-30 09:26:24 +0300 | [diff] [blame] | 3132 | count = dwc3_readl(dwc->regs, DWC3_GEVNTCOUNT(0)); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3133 | count &= DWC3_GEVNTCOUNT_MASK; |
| 3134 | if (!count) |
| 3135 | return IRQ_NONE; |
| 3136 | |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3137 | evt->count = count; |
| 3138 | evt->flags |= DWC3_EVENT_PENDING; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3139 | |
Felipe Balbi | e8adfc3 | 2013-06-12 21:11:14 +0300 | [diff] [blame] | 3140 | /* Mask interrupt */ |
Felipe Balbi | 660e9bd | 2016-03-30 09:26:24 +0300 | [diff] [blame] | 3141 | reg = dwc3_readl(dwc->regs, DWC3_GEVNTSIZ(0)); |
Felipe Balbi | e8adfc3 | 2013-06-12 21:11:14 +0300 | [diff] [blame] | 3142 | reg |= DWC3_GEVNTSIZ_INTMASK; |
Felipe Balbi | 660e9bd | 2016-03-30 09:26:24 +0300 | [diff] [blame] | 3143 | dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), reg); |
Felipe Balbi | e8adfc3 | 2013-06-12 21:11:14 +0300 | [diff] [blame] | 3144 | |
John Youn | ebbb2d5 | 2016-11-15 13:07:02 +0200 | [diff] [blame] | 3145 | amount = min(count, evt->length - evt->lpos); |
| 3146 | memcpy(evt->cache + evt->lpos, evt->buf + evt->lpos, amount); |
| 3147 | |
| 3148 | if (amount < count) |
| 3149 | memcpy(evt->cache, evt->buf, count - amount); |
| 3150 | |
John Youn | 65aca32 | 2016-11-15 13:08:59 +0200 | [diff] [blame] | 3151 | dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), count); |
| 3152 | |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3153 | return IRQ_WAKE_THREAD; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3154 | } |
| 3155 | |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3156 | static irqreturn_t dwc3_interrupt(int irq, void *_evt) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3157 | { |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3158 | struct dwc3_event_buffer *evt = _evt; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3159 | |
Felipe Balbi | dea520a | 2016-03-30 09:39:34 +0300 | [diff] [blame] | 3160 | return dwc3_check_event_buf(evt); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3161 | } |
| 3162 | |
Felipe Balbi | 6db3812 | 2016-10-03 11:27:01 +0300 | [diff] [blame] | 3163 | static int dwc3_gadget_get_irq(struct dwc3 *dwc) |
| 3164 | { |
| 3165 | struct platform_device *dwc3_pdev = to_platform_device(dwc->dev); |
| 3166 | int irq; |
| 3167 | |
| 3168 | irq = platform_get_irq_byname(dwc3_pdev, "peripheral"); |
| 3169 | if (irq > 0) |
| 3170 | goto out; |
| 3171 | |
| 3172 | if (irq == -EPROBE_DEFER) |
| 3173 | goto out; |
| 3174 | |
| 3175 | irq = platform_get_irq_byname(dwc3_pdev, "dwc_usb3"); |
| 3176 | if (irq > 0) |
| 3177 | goto out; |
| 3178 | |
| 3179 | if (irq == -EPROBE_DEFER) |
| 3180 | goto out; |
| 3181 | |
| 3182 | irq = platform_get_irq(dwc3_pdev, 0); |
| 3183 | if (irq > 0) |
| 3184 | goto out; |
| 3185 | |
| 3186 | if (irq != -EPROBE_DEFER) |
| 3187 | dev_err(dwc->dev, "missing peripheral IRQ\n"); |
| 3188 | |
| 3189 | if (!irq) |
| 3190 | irq = -EINVAL; |
| 3191 | |
| 3192 | out: |
| 3193 | return irq; |
| 3194 | } |
| 3195 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3196 | /** |
Felipe Balbi | bfad65e | 2017-04-19 14:59:27 +0300 | [diff] [blame] | 3197 | * dwc3_gadget_init - initializes gadget related registers |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 3198 | * @dwc: pointer to our controller context structure |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3199 | * |
| 3200 | * Returns 0 on success otherwise negative errno. |
| 3201 | */ |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 3202 | int dwc3_gadget_init(struct dwc3 *dwc) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3203 | { |
Felipe Balbi | 6db3812 | 2016-10-03 11:27:01 +0300 | [diff] [blame] | 3204 | int ret; |
| 3205 | int irq; |
Roger Quadros | 9522def | 2016-06-10 14:48:38 +0300 | [diff] [blame] | 3206 | |
Felipe Balbi | 6db3812 | 2016-10-03 11:27:01 +0300 | [diff] [blame] | 3207 | irq = dwc3_gadget_get_irq(dwc); |
| 3208 | if (irq < 0) { |
| 3209 | ret = irq; |
| 3210 | goto err0; |
Roger Quadros | 9522def | 2016-06-10 14:48:38 +0300 | [diff] [blame] | 3211 | } |
| 3212 | |
| 3213 | dwc->irq_gadget = irq; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3214 | |
Arnd Bergmann | d64ff40 | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 3215 | dwc->ep0_trb = dma_alloc_coherent(dwc->sysdev, |
| 3216 | sizeof(*dwc->ep0_trb) * 2, |
| 3217 | &dwc->ep0_trb_addr, GFP_KERNEL); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3218 | if (!dwc->ep0_trb) { |
| 3219 | dev_err(dwc->dev, "failed to allocate ep0 trb\n"); |
| 3220 | ret = -ENOMEM; |
Felipe Balbi | 7d5e650 | 2017-04-07 13:34:21 +0300 | [diff] [blame] | 3221 | goto err0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3222 | } |
| 3223 | |
Felipe Balbi | 4199c5f | 2017-04-07 14:09:13 +0300 | [diff] [blame] | 3224 | dwc->setup_buf = kzalloc(DWC3_EP0_SETUP_SIZE, GFP_KERNEL); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3225 | if (!dwc->setup_buf) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3226 | ret = -ENOMEM; |
Felipe Balbi | 7d5e650 | 2017-04-07 13:34:21 +0300 | [diff] [blame] | 3227 | goto err1; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3228 | } |
| 3229 | |
Felipe Balbi | 905dc04 | 2017-01-05 14:46:52 +0200 | [diff] [blame] | 3230 | dwc->bounce = dma_alloc_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE, |
| 3231 | &dwc->bounce_addr, GFP_KERNEL); |
| 3232 | if (!dwc->bounce) { |
| 3233 | ret = -ENOMEM; |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 3234 | goto err2; |
Felipe Balbi | 905dc04 | 2017-01-05 14:46:52 +0200 | [diff] [blame] | 3235 | } |
| 3236 | |
Baolin Wang | bb01473 | 2016-10-14 17:11:33 +0800 | [diff] [blame] | 3237 | init_completion(&dwc->ep0_in_setup); |
| 3238 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3239 | dwc->gadget.ops = &dwc3_gadget_ops; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3240 | dwc->gadget.speed = USB_SPEED_UNKNOWN; |
Felipe Balbi | eeb720f | 2011-11-28 12:46:59 +0200 | [diff] [blame] | 3241 | dwc->gadget.sg_supported = true; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3242 | dwc->gadget.name = "dwc3-gadget"; |
Jianqiang Tang | 6a4290c | 2016-01-20 14:09:39 +0800 | [diff] [blame] | 3243 | dwc->gadget.is_otg = dwc->dr_mode == USB_DR_MODE_OTG; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3244 | |
| 3245 | /* |
Ben McCauley | b9e51b2 | 2015-11-16 10:47:24 -0600 | [diff] [blame] | 3246 | * FIXME We might be setting max_speed to <SUPER, however versions |
| 3247 | * <2.20a of dwc3 have an issue with metastability (documented |
| 3248 | * elsewhere in this driver) which tells us we can't set max speed to |
| 3249 | * anything lower than SUPER. |
| 3250 | * |
| 3251 | * Because gadget.max_speed is only used by composite.c and function |
| 3252 | * drivers (i.e. it won't go into dwc3's registers) we are allowing this |
| 3253 | * to happen so we avoid sending SuperSpeed Capability descriptor |
| 3254 | * together with our BOS descriptor as that could confuse host into |
| 3255 | * thinking we can handle super speed. |
| 3256 | * |
| 3257 | * Note that, in fact, we won't even support GetBOS requests when speed |
| 3258 | * is less than super speed because we don't have means, yet, to tell |
| 3259 | * composite.c that we are USB 2.0 + LPM ECN. |
| 3260 | */ |
Roger Quadros | 42bf02e | 2017-10-31 15:11:55 +0200 | [diff] [blame] | 3261 | if (dwc->revision < DWC3_REVISION_220A && |
| 3262 | !dwc->dis_metastability_quirk) |
Felipe Balbi | 5eb30ce | 2016-11-03 14:07:51 +0200 | [diff] [blame] | 3263 | dev_info(dwc->dev, "changing max_speed on rev %08x\n", |
Ben McCauley | b9e51b2 | 2015-11-16 10:47:24 -0600 | [diff] [blame] | 3264 | dwc->revision); |
| 3265 | |
| 3266 | dwc->gadget.max_speed = dwc->maximum_speed; |
| 3267 | |
| 3268 | /* |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3269 | * REVISIT: Here we should clear all pending IRQs to be |
| 3270 | * sure we're starting from a well known location. |
| 3271 | */ |
| 3272 | |
Bryan O'Donoghue | f3bcfc7 | 2017-01-31 20:58:11 +0000 | [diff] [blame] | 3273 | ret = dwc3_gadget_init_endpoints(dwc, dwc->num_eps); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3274 | if (ret) |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 3275 | goto err3; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3276 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3277 | ret = usb_add_gadget_udc(dwc->dev, &dwc->gadget); |
| 3278 | if (ret) { |
| 3279 | dev_err(dwc->dev, "failed to register udc\n"); |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 3280 | goto err4; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3281 | } |
| 3282 | |
| 3283 | return 0; |
Felipe Balbi | 4199c5f | 2017-04-07 14:09:13 +0300 | [diff] [blame] | 3284 | |
| 3285 | err4: |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 3286 | dwc3_gadget_free_endpoints(dwc); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3287 | |
Felipe Balbi | 7d5e650 | 2017-04-07 13:34:21 +0300 | [diff] [blame] | 3288 | err3: |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 3289 | dma_free_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE, dwc->bounce, |
| 3290 | dwc->bounce_addr); |
Felipe Balbi | 5812b1c | 2011-08-27 22:07:53 +0300 | [diff] [blame] | 3291 | |
Felipe Balbi | 7d5e650 | 2017-04-07 13:34:21 +0300 | [diff] [blame] | 3292 | err2: |
Felipe Balbi | 0fc9a1b | 2011-12-19 11:32:34 +0200 | [diff] [blame] | 3293 | kfree(dwc->setup_buf); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3294 | |
Felipe Balbi | 7d5e650 | 2017-04-07 13:34:21 +0300 | [diff] [blame] | 3295 | err1: |
Arnd Bergmann | d64ff40 | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 3296 | dma_free_coherent(dwc->sysdev, sizeof(*dwc->ep0_trb) * 2, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3297 | dwc->ep0_trb, dwc->ep0_trb_addr); |
| 3298 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3299 | err0: |
| 3300 | return ret; |
| 3301 | } |
| 3302 | |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3303 | /* -------------------------------------------------------------------------- */ |
| 3304 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3305 | void dwc3_gadget_exit(struct dwc3 *dwc) |
| 3306 | { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3307 | usb_del_gadget_udc(&dwc->gadget); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3308 | dwc3_gadget_free_endpoints(dwc); |
Felipe Balbi | 905dc04 | 2017-01-05 14:46:52 +0200 | [diff] [blame] | 3309 | dma_free_coherent(dwc->sysdev, DWC3_BOUNCE_SIZE, dwc->bounce, |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 3310 | dwc->bounce_addr); |
Felipe Balbi | 0fc9a1b | 2011-12-19 11:32:34 +0200 | [diff] [blame] | 3311 | kfree(dwc->setup_buf); |
Arnd Bergmann | d64ff40 | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 3312 | dma_free_coherent(dwc->sysdev, sizeof(*dwc->ep0_trb) * 2, |
Felipe Balbi | d6e5a54 | 2017-04-07 16:34:38 +0300 | [diff] [blame] | 3313 | dwc->ep0_trb, dwc->ep0_trb_addr); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3314 | } |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3315 | |
Felipe Balbi | 0b0231a | 2014-10-07 10:19:23 -0500 | [diff] [blame] | 3316 | int dwc3_gadget_suspend(struct dwc3 *dwc) |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3317 | { |
Roger Quadros | 9772b47 | 2016-04-12 11:33:29 +0300 | [diff] [blame] | 3318 | if (!dwc->gadget_driver) |
| 3319 | return 0; |
| 3320 | |
Roger Quadros | 1551e35 | 2017-02-15 14:16:26 +0200 | [diff] [blame] | 3321 | dwc3_gadget_run_stop(dwc, false, false); |
Felipe Balbi | 9f8a67b | 2016-05-04 15:50:27 +0300 | [diff] [blame] | 3322 | dwc3_disconnect_gadget(dwc); |
| 3323 | __dwc3_gadget_stop(dwc); |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3324 | |
| 3325 | return 0; |
| 3326 | } |
| 3327 | |
| 3328 | int dwc3_gadget_resume(struct dwc3 *dwc) |
| 3329 | { |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3330 | int ret; |
| 3331 | |
Roger Quadros | 9772b47 | 2016-04-12 11:33:29 +0300 | [diff] [blame] | 3332 | if (!dwc->gadget_driver) |
| 3333 | return 0; |
| 3334 | |
Felipe Balbi | 9f8a67b | 2016-05-04 15:50:27 +0300 | [diff] [blame] | 3335 | ret = __dwc3_gadget_start(dwc); |
| 3336 | if (ret < 0) |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3337 | goto err0; |
| 3338 | |
Felipe Balbi | 9f8a67b | 2016-05-04 15:50:27 +0300 | [diff] [blame] | 3339 | ret = dwc3_gadget_run_stop(dwc, true, false); |
| 3340 | if (ret < 0) |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3341 | goto err1; |
| 3342 | |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3343 | return 0; |
| 3344 | |
| 3345 | err1: |
Felipe Balbi | 9f8a67b | 2016-05-04 15:50:27 +0300 | [diff] [blame] | 3346 | __dwc3_gadget_stop(dwc); |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3347 | |
| 3348 | err0: |
| 3349 | return ret; |
| 3350 | } |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 3351 | |
| 3352 | void dwc3_gadget_process_pending_events(struct dwc3 *dwc) |
| 3353 | { |
| 3354 | if (dwc->pending_events) { |
| 3355 | dwc3_interrupt(dwc->irq_gadget, dwc->ev_buf); |
| 3356 | dwc->pending_events = false; |
| 3357 | enable_irq(dwc->irq_gadget); |
| 3358 | } |
| 3359 | } |