Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1 | /** |
| 2 | * gadget.c - DesignWare USB3 DRD Controller Gadget Framework Link |
| 3 | * |
| 4 | * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 5 | * |
| 6 | * Authors: Felipe Balbi <balbi@ti.com>, |
| 7 | * Sebastian Andrzej Siewior <bigeasy@linutronix.de> |
| 8 | * |
Felipe Balbi | 5945f78 | 2013-06-30 14:15:11 +0300 | [diff] [blame] | 9 | * This program is free software: you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 of |
| 11 | * the License as published by the Free Software Foundation. |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 12 | * |
Felipe Balbi | 5945f78 | 2013-06-30 14:15:11 +0300 | [diff] [blame] | 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 17 | */ |
| 18 | |
| 19 | #include <linux/kernel.h> |
| 20 | #include <linux/delay.h> |
| 21 | #include <linux/slab.h> |
| 22 | #include <linux/spinlock.h> |
| 23 | #include <linux/platform_device.h> |
| 24 | #include <linux/pm_runtime.h> |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 25 | #include <linux/ratelimit.h> |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 26 | #include <linux/interrupt.h> |
| 27 | #include <linux/io.h> |
| 28 | #include <linux/list.h> |
| 29 | #include <linux/dma-mapping.h> |
| 30 | |
| 31 | #include <linux/usb/ch9.h> |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 32 | #include <linux/usb/composite.h> |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 33 | #include <linux/usb/gadget.h> |
| 34 | |
Felipe Balbi | 80977dc | 2014-08-19 16:37:22 -0500 | [diff] [blame] | 35 | #include "debug.h" |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 36 | #include "core.h" |
| 37 | #include "gadget.h" |
| 38 | #include "io.h" |
| 39 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 40 | static void dwc3_gadget_wakeup_interrupt(struct dwc3 *dwc, bool remote_wakeup); |
| 41 | static int dwc3_gadget_wakeup_int(struct dwc3 *dwc); |
Felipe Balbi | 04a9bfc | 2012-01-02 18:25:43 +0200 | [diff] [blame] | 42 | /** |
| 43 | * dwc3_gadget_set_test_mode - Enables USB2 Test Modes |
| 44 | * @dwc: pointer to our context structure |
| 45 | * @mode: the mode to set (J, K SE0 NAK, Force Enable) |
| 46 | * |
| 47 | * Caller should take care of locking. This function will |
| 48 | * return 0 on success or -EINVAL if wrong Test Selector |
| 49 | * is passed |
| 50 | */ |
| 51 | int dwc3_gadget_set_test_mode(struct dwc3 *dwc, int mode) |
| 52 | { |
| 53 | u32 reg; |
| 54 | |
| 55 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 56 | reg &= ~DWC3_DCTL_TSTCTRL_MASK; |
| 57 | |
| 58 | switch (mode) { |
| 59 | case TEST_J: |
| 60 | case TEST_K: |
| 61 | case TEST_SE0_NAK: |
| 62 | case TEST_PACKET: |
| 63 | case TEST_FORCE_EN: |
| 64 | reg |= mode << 1; |
| 65 | break; |
| 66 | default: |
| 67 | return -EINVAL; |
| 68 | } |
| 69 | |
| 70 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 71 | |
| 72 | return 0; |
| 73 | } |
| 74 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 75 | /** |
Paul Zimmerman | 911f1f8 | 2012-04-27 13:35:15 +0300 | [diff] [blame] | 76 | * dwc3_gadget_get_link_state - Gets current state of USB Link |
| 77 | * @dwc: pointer to our context structure |
| 78 | * |
| 79 | * Caller should take care of locking. This function will |
| 80 | * return the link state on success (>= 0) or -ETIMEDOUT. |
| 81 | */ |
| 82 | int dwc3_gadget_get_link_state(struct dwc3 *dwc) |
| 83 | { |
| 84 | u32 reg; |
| 85 | |
| 86 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 87 | |
| 88 | return DWC3_DSTS_USBLNKST(reg); |
| 89 | } |
| 90 | |
| 91 | /** |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 92 | * dwc3_gadget_set_link_state - Sets USB Link to a particular State |
| 93 | * @dwc: pointer to our context structure |
| 94 | * @state: the state to put link into |
| 95 | * |
| 96 | * Caller should take care of locking. This function will |
Paul Zimmerman | aee63e3 | 2012-02-24 17:32:15 -0800 | [diff] [blame] | 97 | * return 0 on success or -ETIMEDOUT. |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 98 | */ |
| 99 | int dwc3_gadget_set_link_state(struct dwc3 *dwc, enum dwc3_link_state state) |
| 100 | { |
Paul Zimmerman | aee63e3 | 2012-02-24 17:32:15 -0800 | [diff] [blame] | 101 | int retries = 10000; |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 102 | u32 reg; |
| 103 | |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 104 | /* |
| 105 | * Wait until device controller is ready. Only applies to 1.94a and |
| 106 | * later RTL. |
| 107 | */ |
| 108 | if (dwc->revision >= DWC3_REVISION_194A) { |
| 109 | while (--retries) { |
| 110 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 111 | if (reg & DWC3_DSTS_DCNRD) |
| 112 | udelay(5); |
| 113 | else |
| 114 | break; |
| 115 | } |
| 116 | |
| 117 | if (retries <= 0) |
| 118 | return -ETIMEDOUT; |
| 119 | } |
| 120 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 121 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 122 | reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK; |
| 123 | |
| 124 | /* set requested state */ |
| 125 | reg |= DWC3_DCTL_ULSTCHNGREQ(state); |
| 126 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 127 | |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 128 | /* |
| 129 | * The following code is racy when called from dwc3_gadget_wakeup, |
| 130 | * and is not needed, at least on newer versions |
| 131 | */ |
| 132 | if (dwc->revision >= DWC3_REVISION_194A) |
| 133 | return 0; |
| 134 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 135 | /* wait for a change in DSTS */ |
Paul Zimmerman | aed430e | 2012-04-27 12:52:01 +0300 | [diff] [blame] | 136 | retries = 10000; |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 137 | while (--retries) { |
| 138 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 139 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 140 | if (DWC3_DSTS_USBLNKST(reg) == state) |
| 141 | return 0; |
| 142 | |
Paul Zimmerman | aee63e3 | 2012-02-24 17:32:15 -0800 | [diff] [blame] | 143 | udelay(5); |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 144 | } |
| 145 | |
Felipe Balbi | 7381528 | 2015-01-27 13:48:14 -0600 | [diff] [blame] | 146 | dwc3_trace(trace_dwc3_gadget, |
| 147 | "link state change request timed out"); |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 148 | |
| 149 | return -ETIMEDOUT; |
| 150 | } |
| 151 | |
John Youn | dca0119 | 2016-05-19 17:26:05 -0700 | [diff] [blame] | 152 | /** |
| 153 | * dwc3_ep_inc_trb() - Increment a TRB index. |
| 154 | * @index - Pointer to the TRB index to increment. |
| 155 | * |
| 156 | * The index should never point to the link TRB. After incrementing, |
| 157 | * if it is point to the link TRB, wrap around to the beginning. The |
| 158 | * link TRB is always at the last TRB entry. |
| 159 | */ |
| 160 | static void dwc3_ep_inc_trb(u8 *index) |
| 161 | { |
| 162 | (*index)++; |
| 163 | if (*index == (DWC3_TRB_NUM - 1)) |
| 164 | *index = 0; |
| 165 | } |
| 166 | |
Mayank Rana | 9ca186c | 2017-06-19 17:57:21 -0700 | [diff] [blame] | 167 | void dwc3_ep_inc_enq(struct dwc3_ep *dep) |
Felipe Balbi | 457e84b | 2012-01-18 18:04:09 +0200 | [diff] [blame] | 168 | { |
John Youn | dca0119 | 2016-05-19 17:26:05 -0700 | [diff] [blame] | 169 | dwc3_ep_inc_trb(&dep->trb_enqueue); |
Felipe Balbi | ef966b9 | 2016-04-05 13:09:51 +0300 | [diff] [blame] | 170 | } |
Felipe Balbi | 457e84b | 2012-01-18 18:04:09 +0200 | [diff] [blame] | 171 | |
Mayank Rana | 9ca186c | 2017-06-19 17:57:21 -0700 | [diff] [blame] | 172 | void dwc3_ep_inc_deq(struct dwc3_ep *dep) |
Felipe Balbi | ef966b9 | 2016-04-05 13:09:51 +0300 | [diff] [blame] | 173 | { |
John Youn | dca0119 | 2016-05-19 17:26:05 -0700 | [diff] [blame] | 174 | dwc3_ep_inc_trb(&dep->trb_dequeue); |
Felipe Balbi | 457e84b | 2012-01-18 18:04:09 +0200 | [diff] [blame] | 175 | } |
| 176 | |
Mayank Rana | a8e4de6 | 2016-12-13 17:11:15 -0800 | [diff] [blame] | 177 | /* |
| 178 | * dwc3_gadget_resize_tx_fifos - reallocate fifo spaces for current use-case |
| 179 | * @dwc: pointer to our context structure |
| 180 | * |
| 181 | * This function will a best effort FIFO allocation in order |
| 182 | * to improve FIFO usage and throughput, while still allowing |
| 183 | * us to enable as many endpoints as possible. |
| 184 | * |
| 185 | * Keep in mind that this operation will be highly dependent |
| 186 | * on the configured size for RAM1 - which contains TxFifo -, |
| 187 | * the amount of endpoints enabled on coreConsultant tool, and |
| 188 | * the width of the Master Bus. |
| 189 | * |
| 190 | * In the ideal world, we would always be able to satisfy the |
| 191 | * following equation: |
| 192 | * |
| 193 | * ((512 + 2 * MDWIDTH-Bytes) + (Number of IN Endpoints - 1) * \ |
| 194 | * (3 * (1024 + MDWIDTH-Bytes) + MDWIDTH-Bytes)) / MDWIDTH-Bytes |
| 195 | * |
| 196 | * Unfortunately, due to many variables that's not always the case. |
| 197 | */ |
Mayank Rana | ac1200c | 2017-04-25 13:48:46 -0700 | [diff] [blame] | 198 | int dwc3_gadget_resize_tx_fifos(struct dwc3 *dwc, struct dwc3_ep *dep) |
Mayank Rana | a8e4de6 | 2016-12-13 17:11:15 -0800 | [diff] [blame] | 199 | { |
Mayank Rana | ac1200c | 2017-04-25 13:48:46 -0700 | [diff] [blame] | 200 | int fifo_size, mdwidth, max_packet = 1024; |
| 201 | int tmp, mult = 1; |
Mayank Rana | a8e4de6 | 2016-12-13 17:11:15 -0800 | [diff] [blame] | 202 | |
Mayank Rana | ac1200c | 2017-04-25 13:48:46 -0700 | [diff] [blame] | 203 | if (!dwc->needs_fifo_resize) |
Mayank Rana | a8e4de6 | 2016-12-13 17:11:15 -0800 | [diff] [blame] | 204 | return 0; |
| 205 | |
Mayank Rana | ac1200c | 2017-04-25 13:48:46 -0700 | [diff] [blame] | 206 | /* resize IN endpoints excepts ep0 */ |
| 207 | if (!usb_endpoint_dir_in(dep->endpoint.desc) || |
| 208 | dep->endpoint.ep_num == 0) |
| 209 | return 0; |
Mayank Rana | a8e4de6 | 2016-12-13 17:11:15 -0800 | [diff] [blame] | 210 | |
Mayank Rana | ac1200c | 2017-04-25 13:48:46 -0700 | [diff] [blame] | 211 | /* Don't resize already resized IN endpoint */ |
| 212 | if (dep->fifo_depth) { |
| 213 | dev_dbg(dwc->dev, "%s fifo_depth:%d is already set\n", |
| 214 | dep->endpoint.name, dep->fifo_depth); |
| 215 | return 0; |
Mayank Rana | a8e4de6 | 2016-12-13 17:11:15 -0800 | [diff] [blame] | 216 | } |
| 217 | |
Mayank Rana | ac1200c | 2017-04-25 13:48:46 -0700 | [diff] [blame] | 218 | mdwidth = DWC3_MDWIDTH(dwc->hwparams.hwparams0); |
| 219 | /* MDWIDTH is represented in bits, we need it in bytes */ |
| 220 | mdwidth >>= 3; |
| 221 | |
| 222 | if (dep->endpoint.ep_type == EP_TYPE_GSI || dep->endpoint.endless) |
| 223 | mult = 3; |
| 224 | |
| 225 | if (((dep->endpoint.maxburst > 1) && |
| 226 | usb_endpoint_xfer_bulk(dep->endpoint.desc)) |
| 227 | || usb_endpoint_xfer_isoc(dep->endpoint.desc)) |
| 228 | mult = 3; |
| 229 | |
| 230 | tmp = ((max_packet + mdwidth) * mult) + mdwidth; |
| 231 | fifo_size = DIV_ROUND_UP(tmp, mdwidth); |
| 232 | dep->fifo_depth = fifo_size; |
Ajay Agarwal | 8df9b9d | 2017-11-01 11:20:03 +0530 | [diff] [blame] | 233 | fifo_size |= (dwc3_readl(dwc->regs, DWC3_GTXFIFOSIZ(0)) & 0xffff0000) |
| 234 | + (dwc->last_fifo_depth << 16); |
Mayank Rana | ac1200c | 2017-04-25 13:48:46 -0700 | [diff] [blame] | 235 | dwc->last_fifo_depth += (fifo_size & 0xffff); |
| 236 | |
| 237 | dev_dbg(dwc->dev, "%s ep_num:%d last_fifo_depth:%04x fifo_depth:%d\n", |
| 238 | dep->endpoint.name, dep->endpoint.ep_num, dwc->last_fifo_depth, |
| 239 | dep->fifo_depth); |
| 240 | |
| 241 | dbg_event(0xFF, "resize_fifo", dep->number); |
| 242 | dbg_event(0xFF, "fifo_depth", dep->fifo_depth); |
| 243 | /* Check fifo size allocation doesn't exceed available RAM size. */ |
| 244 | if (dwc->tx_fifo_size && |
| 245 | ((dwc->last_fifo_depth * mdwidth) >= dwc->tx_fifo_size)) { |
| 246 | dev_err(dwc->dev, "Fifosize(%d) > RAM size(%d) %s depth:%d\n", |
| 247 | (dwc->last_fifo_depth * mdwidth), dwc->tx_fifo_size, |
| 248 | dep->endpoint.name, fifo_size); |
| 249 | dwc->last_fifo_depth -= (fifo_size & 0xffff); |
| 250 | dep->fifo_depth = 0; |
| 251 | WARN_ON(1); |
| 252 | return -ENOMEM; |
| 253 | } |
| 254 | |
| 255 | dwc3_writel(dwc->regs, DWC3_GTXFIFOSIZ(dep->endpoint.ep_num), |
| 256 | fifo_size); |
Mayank Rana | a8e4de6 | 2016-12-13 17:11:15 -0800 | [diff] [blame] | 257 | return 0; |
| 258 | } |
| 259 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 260 | void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req, |
| 261 | int status) |
| 262 | { |
| 263 | struct dwc3 *dwc = dep->dwc; |
Janusz Dziedzic | d9a97dc | 2017-03-13 14:11:32 +0200 | [diff] [blame] | 264 | unsigned int unmap_after_complete = false; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 265 | |
Felipe Balbi | 737f1ae | 2016-08-11 12:24:27 +0300 | [diff] [blame] | 266 | req->started = false; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 267 | list_del(&req->list); |
Felipe Balbi | eeb720f | 2011-11-28 12:46:59 +0200 | [diff] [blame] | 268 | req->trb = NULL; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 269 | |
| 270 | if (req->request.status == -EINPROGRESS) |
| 271 | req->request.status = status; |
| 272 | |
Janusz Dziedzic | d9a97dc | 2017-03-13 14:11:32 +0200 | [diff] [blame] | 273 | /* |
| 274 | * NOTICE we don't want to unmap before calling ->complete() if we're |
| 275 | * dealing with a bounced ep0 request. If we unmap it here, we would end |
| 276 | * up overwritting the contents of req->buf and this could confuse the |
| 277 | * gadget driver. |
| 278 | */ |
| 279 | if (dwc->ep0_bounced && dep->number <= 1) { |
Pratyush Anand | 0416e49 | 2012-08-10 13:42:16 +0530 | [diff] [blame] | 280 | dwc->ep0_bounced = false; |
Janusz Dziedzic | d9a97dc | 2017-03-13 14:11:32 +0200 | [diff] [blame] | 281 | unmap_after_complete = true; |
| 282 | } else { |
Mayank Rana | bd17b85 | 2017-08-25 10:38:30 -0700 | [diff] [blame] | 283 | usb_gadget_unmap_request_by_dev(dwc->sysdev, |
Janusz Dziedzic | d9a97dc | 2017-03-13 14:11:32 +0200 | [diff] [blame] | 284 | &req->request, req->direction); |
| 285 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 286 | |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 287 | trace_dwc3_gadget_giveback(req); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 288 | |
| 289 | spin_unlock(&dwc->lock); |
Michal Sojka | 304f7e5 | 2014-09-24 22:43:19 +0200 | [diff] [blame] | 290 | usb_gadget_giveback_request(&dep->endpoint, &req->request); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 291 | spin_lock(&dwc->lock); |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 292 | |
Janusz Dziedzic | d9a97dc | 2017-03-13 14:11:32 +0200 | [diff] [blame] | 293 | if (unmap_after_complete) |
Mayank Rana | bd17b85 | 2017-08-25 10:38:30 -0700 | [diff] [blame] | 294 | usb_gadget_unmap_request_by_dev(dwc->sysdev, |
Janusz Dziedzic | d9a97dc | 2017-03-13 14:11:32 +0200 | [diff] [blame] | 295 | &req->request, req->direction); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 296 | } |
| 297 | |
Felipe Balbi | 3ece0ec | 2014-09-05 09:47:44 -0500 | [diff] [blame] | 298 | 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] | 299 | { |
| 300 | u32 timeout = 500; |
Felipe Balbi | 71f7e70 | 2016-05-23 14:16:19 +0300 | [diff] [blame] | 301 | int status = 0; |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 302 | int ret = 0; |
Felipe Balbi | b09bb64 | 2012-04-24 16:19:11 +0300 | [diff] [blame] | 303 | u32 reg; |
| 304 | |
| 305 | dwc3_writel(dwc->regs, DWC3_DGCMDPAR, param); |
| 306 | dwc3_writel(dwc->regs, DWC3_DGCMD, cmd | DWC3_DGCMD_CMDACT); |
| 307 | |
| 308 | do { |
| 309 | reg = dwc3_readl(dwc->regs, DWC3_DGCMD); |
| 310 | if (!(reg & DWC3_DGCMD_CMDACT)) { |
Felipe Balbi | 71f7e70 | 2016-05-23 14:16:19 +0300 | [diff] [blame] | 311 | status = DWC3_DGCMD_STATUS(reg); |
| 312 | if (status) |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 313 | ret = -EINVAL; |
| 314 | break; |
Felipe Balbi | b09bb64 | 2012-04-24 16:19:11 +0300 | [diff] [blame] | 315 | } |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 316 | } while (timeout--); |
| 317 | |
| 318 | if (!timeout) { |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 319 | ret = -ETIMEDOUT; |
Felipe Balbi | 71f7e70 | 2016-05-23 14:16:19 +0300 | [diff] [blame] | 320 | status = -ETIMEDOUT; |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 321 | } |
| 322 | |
Felipe Balbi | 71f7e70 | 2016-05-23 14:16:19 +0300 | [diff] [blame] | 323 | trace_dwc3_gadget_generic_cmd(cmd, param, status); |
| 324 | |
Felipe Balbi | 0fe886c | 2016-05-23 14:06:07 +0300 | [diff] [blame] | 325 | return ret; |
Felipe Balbi | b09bb64 | 2012-04-24 16:19:11 +0300 | [diff] [blame] | 326 | } |
| 327 | |
Felipe Balbi | c36d8e9 | 2016-04-04 12:46:33 +0300 | [diff] [blame] | 328 | static int __dwc3_gadget_wakeup(struct dwc3 *dwc); |
| 329 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 330 | int dwc3_send_gadget_ep_cmd(struct dwc3_ep *dep, unsigned cmd, |
| 331 | struct dwc3_gadget_ep_cmd_params *params) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 332 | { |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 333 | struct dwc3 *dwc = dep->dwc; |
Hemant Kumar | 4387417 | 2016-08-25 16:17:48 -0700 | [diff] [blame] | 334 | u32 timeout = 3000; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 335 | u32 reg; |
| 336 | |
Felipe Balbi | 0933df1 | 2016-05-23 14:02:33 +0300 | [diff] [blame] | 337 | int cmd_status = 0; |
Felipe Balbi | 2b0f11d | 2016-04-04 09:19:17 +0300 | [diff] [blame] | 338 | int susphy = false; |
Felipe Balbi | c0ca324 | 2016-04-04 09:11:51 +0300 | [diff] [blame] | 339 | int ret = -EINVAL; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 340 | |
Felipe Balbi | 2b0f11d | 2016-04-04 09:19:17 +0300 | [diff] [blame] | 341 | /* |
| 342 | * Synopsys Databook 2.60a states, on section 6.3.2.5.[1-8], that if |
| 343 | * we're issuing an endpoint command, we must check if |
| 344 | * GUSB2PHYCFG.SUSPHY bit is set. If it is, then we need to clear it. |
| 345 | * |
| 346 | * We will also set SUSPHY bit to what it was before returning as stated |
| 347 | * by the same section on Synopsys databook. |
| 348 | */ |
Felipe Balbi | ab2a92e | 2016-05-17 14:55:58 +0300 | [diff] [blame] | 349 | if (dwc->gadget.speed <= USB_SPEED_HIGH) { |
| 350 | reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0)); |
| 351 | if (unlikely(reg & DWC3_GUSB2PHYCFG_SUSPHY)) { |
| 352 | susphy = true; |
| 353 | reg &= ~DWC3_GUSB2PHYCFG_SUSPHY; |
| 354 | dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg); |
| 355 | } |
Felipe Balbi | 2b0f11d | 2016-04-04 09:19:17 +0300 | [diff] [blame] | 356 | } |
| 357 | |
Felipe Balbi | a81d6b7 | 2016-09-22 12:25:28 +0300 | [diff] [blame] | 358 | if (DWC3_DEPCMD_CMD(cmd) == DWC3_DEPCMD_STARTTRANSFER) { |
Felipe Balbi | c36d8e9 | 2016-04-04 12:46:33 +0300 | [diff] [blame] | 359 | int needs_wakeup; |
| 360 | |
| 361 | needs_wakeup = (dwc->link_state == DWC3_LINK_STATE_U1 || |
| 362 | dwc->link_state == DWC3_LINK_STATE_U2 || |
| 363 | dwc->link_state == DWC3_LINK_STATE_U3); |
| 364 | |
| 365 | if (unlikely(needs_wakeup)) { |
| 366 | ret = __dwc3_gadget_wakeup(dwc); |
| 367 | dev_WARN_ONCE(dwc->dev, ret, "wakeup failed --> %d\n", |
| 368 | ret); |
| 369 | } |
| 370 | } |
| 371 | |
Felipe Balbi | 2eb8801 | 2016-04-12 16:53:39 +0300 | [diff] [blame] | 372 | dwc3_writel(dep->regs, DWC3_DEPCMDPAR0, params->param0); |
| 373 | dwc3_writel(dep->regs, DWC3_DEPCMDPAR1, params->param1); |
| 374 | dwc3_writel(dep->regs, DWC3_DEPCMDPAR2, params->param2); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 375 | |
Felipe Balbi | 2eb8801 | 2016-04-12 16:53:39 +0300 | [diff] [blame] | 376 | dwc3_writel(dep->regs, DWC3_DEPCMD, cmd | DWC3_DEPCMD_CMDACT); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 377 | do { |
Felipe Balbi | 2eb8801 | 2016-04-12 16:53:39 +0300 | [diff] [blame] | 378 | reg = dwc3_readl(dep->regs, DWC3_DEPCMD); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 379 | if (!(reg & DWC3_DEPCMD_CMDACT)) { |
Felipe Balbi | 0933df1 | 2016-05-23 14:02:33 +0300 | [diff] [blame] | 380 | cmd_status = DWC3_DEPCMD_STATUS(reg); |
Konrad Leszczynski | 7b9cc7a | 2016-02-12 15:21:46 +0000 | [diff] [blame] | 381 | |
Konrad Leszczynski | 7b9cc7a | 2016-02-12 15:21:46 +0000 | [diff] [blame] | 382 | switch (cmd_status) { |
| 383 | case 0: |
| 384 | ret = 0; |
Felipe Balbi | c0ca324 | 2016-04-04 09:11:51 +0300 | [diff] [blame] | 385 | break; |
Konrad Leszczynski | 7b9cc7a | 2016-02-12 15:21:46 +0000 | [diff] [blame] | 386 | case DEPEVT_TRANSFER_NO_RESOURCE: |
Konrad Leszczynski | 7b9cc7a | 2016-02-12 15:21:46 +0000 | [diff] [blame] | 387 | ret = -EINVAL; |
| 388 | break; |
| 389 | case DEPEVT_TRANSFER_BUS_EXPIRY: |
| 390 | /* |
| 391 | * SW issues START TRANSFER command to |
| 392 | * isochronous ep with future frame interval. If |
| 393 | * future interval time has already passed when |
| 394 | * core receives the command, it will respond |
| 395 | * with an error status of 'Bus Expiry'. |
| 396 | * |
| 397 | * Instead of always returning -EINVAL, let's |
| 398 | * give a hint to the gadget driver that this is |
| 399 | * the case by returning -EAGAIN. |
| 400 | */ |
Konrad Leszczynski | 7b9cc7a | 2016-02-12 15:21:46 +0000 | [diff] [blame] | 401 | ret = -EAGAIN; |
| 402 | break; |
| 403 | default: |
| 404 | dev_WARN(dwc->dev, "UNKNOWN cmd status\n"); |
| 405 | } |
| 406 | |
Felipe Balbi | c0ca324 | 2016-04-04 09:11:51 +0300 | [diff] [blame] | 407 | break; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 408 | } |
Felipe Balbi | f6bb225 | 2016-05-23 13:53:34 +0300 | [diff] [blame] | 409 | } while (--timeout); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 410 | |
Felipe Balbi | f6bb225 | 2016-05-23 13:53:34 +0300 | [diff] [blame] | 411 | if (timeout == 0) { |
Felipe Balbi | f6bb225 | 2016-05-23 13:53:34 +0300 | [diff] [blame] | 412 | ret = -ETIMEDOUT; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 413 | dwc3_trace(trace_dwc3_gadget, "Command Timed Out"); |
| 414 | dev_err(dwc->dev, "%s command timeout for %s\n", |
| 415 | dwc3_gadget_ep_cmd_string(cmd), dep->name); |
Hemant Kumar | 4387417 | 2016-08-25 16:17:48 -0700 | [diff] [blame] | 416 | if (!(cmd & DWC3_DEPCMD_ENDTRANSFER)) { |
| 417 | dwc->ep_cmd_timeout_cnt++; |
| 418 | dwc3_notify_event(dwc, |
| 419 | DWC3_CONTROLLER_RESTART_USB_SESSION); |
| 420 | } |
Felipe Balbi | 0933df1 | 2016-05-23 14:02:33 +0300 | [diff] [blame] | 421 | cmd_status = -ETIMEDOUT; |
Felipe Balbi | f6bb225 | 2016-05-23 13:53:34 +0300 | [diff] [blame] | 422 | } |
Felipe Balbi | c0ca324 | 2016-04-04 09:11:51 +0300 | [diff] [blame] | 423 | |
Felipe Balbi | 0933df1 | 2016-05-23 14:02:33 +0300 | [diff] [blame] | 424 | trace_dwc3_gadget_ep_cmd(dep, cmd, params, cmd_status); |
| 425 | |
Felipe Balbi | cf23b5b | 2016-10-21 13:07:09 +0300 | [diff] [blame] | 426 | if (ret == 0) { |
| 427 | switch (DWC3_DEPCMD_CMD(cmd)) { |
| 428 | case DWC3_DEPCMD_STARTTRANSFER: |
| 429 | dep->flags |= DWC3_EP_TRANSFER_STARTED; |
| 430 | break; |
| 431 | case DWC3_DEPCMD_ENDTRANSFER: |
| 432 | dep->flags &= ~DWC3_EP_TRANSFER_STARTED; |
| 433 | break; |
| 434 | default: |
| 435 | /* nothing */ |
| 436 | break; |
| 437 | } |
| 438 | } |
| 439 | |
Felipe Balbi | 2b0f11d | 2016-04-04 09:19:17 +0300 | [diff] [blame] | 440 | if (unlikely(susphy)) { |
| 441 | reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0)); |
| 442 | reg |= DWC3_GUSB2PHYCFG_SUSPHY; |
| 443 | dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg); |
| 444 | } |
| 445 | |
Felipe Balbi | c0ca324 | 2016-04-04 09:11:51 +0300 | [diff] [blame] | 446 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 447 | } |
| 448 | |
John Youn | 50c763f | 2016-05-31 17:49:56 -0700 | [diff] [blame] | 449 | static int dwc3_send_clear_stall_ep_cmd(struct dwc3_ep *dep) |
| 450 | { |
| 451 | struct dwc3 *dwc = dep->dwc; |
| 452 | struct dwc3_gadget_ep_cmd_params params; |
| 453 | u32 cmd = DWC3_DEPCMD_CLEARSTALL; |
| 454 | |
| 455 | /* |
| 456 | * As of core revision 2.60a the recommended programming model |
| 457 | * is to set the ClearPendIN bit when issuing a Clear Stall EP |
| 458 | * command for IN endpoints. This is to prevent an issue where |
| 459 | * some (non-compliant) hosts may not send ACK TPs for pending |
| 460 | * IN transfers due to a mishandled error condition. Synopsys |
| 461 | * STAR 9000614252. |
| 462 | */ |
Lu Baolu | 5e6c88d | 2016-09-09 12:51:27 +0800 | [diff] [blame] | 463 | if (dep->direction && (dwc->revision >= DWC3_REVISION_260A) && |
| 464 | (dwc->gadget.speed >= USB_SPEED_SUPER)) |
John Youn | 50c763f | 2016-05-31 17:49:56 -0700 | [diff] [blame] | 465 | cmd |= DWC3_DEPCMD_CLEARPENDIN; |
| 466 | |
| 467 | memset(¶ms, 0, sizeof(params)); |
| 468 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 469 | return dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); |
John Youn | 50c763f | 2016-05-31 17:49:56 -0700 | [diff] [blame] | 470 | } |
| 471 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 472 | static int dwc3_alloc_trb_pool(struct dwc3_ep *dep) |
| 473 | { |
| 474 | struct dwc3 *dwc = dep->dwc; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 475 | u32 num_trbs = DWC3_TRB_NUM; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 476 | |
| 477 | if (dep->trb_pool) |
| 478 | return 0; |
| 479 | |
Arnd Bergmann | 42695fc | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 480 | dep->trb_pool = dma_zalloc_coherent(dwc->sysdev, |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 481 | sizeof(struct dwc3_trb) * num_trbs, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 482 | &dep->trb_pool_dma, GFP_KERNEL); |
| 483 | if (!dep->trb_pool) { |
| 484 | dev_err(dep->dwc->dev, "failed to allocate trb pool for %s\n", |
| 485 | dep->name); |
| 486 | return -ENOMEM; |
| 487 | } |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 488 | dep->num_trbs = num_trbs; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 489 | |
| 490 | return 0; |
| 491 | } |
| 492 | |
| 493 | static void dwc3_free_trb_pool(struct dwc3_ep *dep) |
| 494 | { |
| 495 | struct dwc3 *dwc = dep->dwc; |
| 496 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 497 | /* Freeing of GSI EP TRBs are handled by GSI EP ops. */ |
| 498 | if (dep->endpoint.ep_type == EP_TYPE_GSI) |
| 499 | return; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 500 | |
Mayank Rana | 4dd882c | 2016-10-05 09:43:05 -0700 | [diff] [blame] | 501 | /* |
| 502 | * Clean up ep ring to avoid getting xferInProgress due to stale trbs |
| 503 | * with HWO bit set from previous composition when update transfer cmd |
| 504 | * is issued. |
| 505 | */ |
| 506 | if (dep->number > 1 && dep->trb_pool && dep->trb_pool_dma) { |
| 507 | memset(&dep->trb_pool[0], 0, |
| 508 | sizeof(struct dwc3_trb) * dep->num_trbs); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 509 | dbg_event(dep->number, "Clr_TRB", 0); |
Mayank Rana | 4dd882c | 2016-10-05 09:43:05 -0700 | [diff] [blame] | 510 | dev_dbg(dwc->dev, "Clr_TRB ring of %s\n", dep->name); |
| 511 | |
Arnd Bergmann | 42695fc | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 512 | dma_free_coherent(dwc->sysdev, |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 513 | sizeof(struct dwc3_trb) * DWC3_TRB_NUM, |
| 514 | dep->trb_pool, dep->trb_pool_dma); |
| 515 | dep->trb_pool = NULL; |
| 516 | dep->trb_pool_dma = 0; |
| 517 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 518 | } |
| 519 | |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 520 | static int dwc3_gadget_set_xfer_resource(struct dwc3 *dwc, struct dwc3_ep *dep); |
| 521 | |
| 522 | /** |
| 523 | * dwc3_gadget_start_config - Configure EP resources |
| 524 | * @dwc: pointer to our controller context structure |
| 525 | * @dep: endpoint that is being enabled |
| 526 | * |
| 527 | * The assignment of transfer resources cannot perfectly follow the |
| 528 | * data book due to the fact that the controller driver does not have |
| 529 | * all knowledge of the configuration in advance. It is given this |
| 530 | * information piecemeal by the composite gadget framework after every |
| 531 | * SET_CONFIGURATION and SET_INTERFACE. Trying to follow the databook |
| 532 | * programming model in this scenario can cause errors. For two |
| 533 | * reasons: |
| 534 | * |
| 535 | * 1) The databook says to do DEPSTARTCFG for every SET_CONFIGURATION |
| 536 | * and SET_INTERFACE (8.1.5). This is incorrect in the scenario of |
| 537 | * multiple interfaces. |
| 538 | * |
| 539 | * 2) The databook does not mention doing more DEPXFERCFG for new |
| 540 | * endpoint on alt setting (8.1.6). |
| 541 | * |
| 542 | * The following simplified method is used instead: |
| 543 | * |
| 544 | * All hardware endpoints can be assigned a transfer resource and this |
| 545 | * setting will stay persistent until either a core reset or |
| 546 | * hibernation. So whenever we do a DEPSTARTCFG(0) we can go ahead and |
| 547 | * do DEPXFERCFG for every hardware endpoint as well. We are |
| 548 | * guaranteed that there are as many transfer resources as endpoints. |
| 549 | * |
| 550 | * This function is called for each endpoint when it is being enabled |
| 551 | * but is triggered only when called for EP0-out, which always happens |
| 552 | * first, and which should only happen in one of the above conditions. |
| 553 | */ |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 554 | static int dwc3_gadget_start_config(struct dwc3 *dwc, struct dwc3_ep *dep) |
| 555 | { |
| 556 | struct dwc3_gadget_ep_cmd_params params; |
| 557 | u32 cmd; |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 558 | int i; |
| 559 | int ret; |
| 560 | |
| 561 | if (dep->number) |
| 562 | return 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 563 | |
| 564 | memset(¶ms, 0x00, sizeof(params)); |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 565 | cmd = DWC3_DEPCMD_DEPSTARTCFG; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 566 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 567 | ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 568 | if (ret) |
| 569 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 570 | |
John Youn | c450960 | 2016-02-16 20:10:53 -0800 | [diff] [blame] | 571 | for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) { |
| 572 | struct dwc3_ep *dep = dwc->eps[i]; |
| 573 | |
| 574 | if (!dep) |
| 575 | continue; |
| 576 | |
| 577 | ret = dwc3_gadget_set_xfer_resource(dwc, dep); |
| 578 | if (ret) |
| 579 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 580 | } |
| 581 | |
| 582 | return 0; |
| 583 | } |
| 584 | |
| 585 | static int dwc3_gadget_set_ep_config(struct dwc3 *dwc, struct dwc3_ep *dep, |
Felipe Balbi | c90bfae | 2011-11-29 13:11:21 +0200 | [diff] [blame] | 586 | const struct usb_endpoint_descriptor *desc, |
Felipe Balbi | 4b345c9 | 2012-07-16 14:08:16 +0300 | [diff] [blame] | 587 | const struct usb_ss_ep_comp_descriptor *comp_desc, |
Felipe Balbi | 21e64bf | 2016-06-02 12:37:31 +0300 | [diff] [blame] | 588 | bool modify, bool restore) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 589 | { |
| 590 | struct dwc3_gadget_ep_cmd_params params; |
| 591 | |
Felipe Balbi | 21e64bf | 2016-06-02 12:37:31 +0300 | [diff] [blame] | 592 | if (dev_WARN_ONCE(dwc->dev, modify && restore, |
| 593 | "Can't modify and restore\n")) |
| 594 | return -EINVAL; |
| 595 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 596 | memset(¶ms, 0x00, sizeof(params)); |
| 597 | |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 598 | params.param0 = DWC3_DEPCFG_EP_TYPE(usb_endpoint_type(desc)) |
Chanho Park | d2e9a13 | 2012-08-31 16:54:07 +0900 | [diff] [blame] | 599 | | DWC3_DEPCFG_MAX_PACKET_SIZE(usb_endpoint_maxp(desc)); |
| 600 | |
| 601 | /* Burst size is only needed in SuperSpeed mode */ |
John Youn | ee5cd41 | 2016-02-05 17:08:45 -0800 | [diff] [blame] | 602 | if (dwc->gadget.speed >= USB_SPEED_SUPER) { |
Felipe Balbi | 676e349 | 2016-04-26 10:49:07 +0300 | [diff] [blame] | 603 | u32 burst = dep->endpoint.maxburst; |
Felipe Balbi | 676e349 | 2016-04-26 10:49:07 +0300 | [diff] [blame] | 604 | params.param0 |= DWC3_DEPCFG_BURST_SIZE(burst - 1); |
Chanho Park | d2e9a13 | 2012-08-31 16:54:07 +0900 | [diff] [blame] | 605 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 606 | |
Felipe Balbi | 21e64bf | 2016-06-02 12:37:31 +0300 | [diff] [blame] | 607 | if (modify) { |
| 608 | params.param0 |= DWC3_DEPCFG_ACTION_MODIFY; |
| 609 | } else if (restore) { |
Paul Zimmerman | 265b70a | 2013-12-19 12:38:49 -0600 | [diff] [blame] | 610 | params.param0 |= DWC3_DEPCFG_ACTION_RESTORE; |
| 611 | params.param2 |= dep->saved_state; |
Felipe Balbi | 21e64bf | 2016-06-02 12:37:31 +0300 | [diff] [blame] | 612 | } else { |
| 613 | params.param0 |= DWC3_DEPCFG_ACTION_INIT; |
Paul Zimmerman | 265b70a | 2013-12-19 12:38:49 -0600 | [diff] [blame] | 614 | } |
| 615 | |
Felipe Balbi | 4bc48c9 | 2016-08-10 16:04:33 +0300 | [diff] [blame] | 616 | if (usb_endpoint_xfer_control(desc)) |
| 617 | params.param1 = DWC3_DEPCFG_XFER_COMPLETE_EN; |
Felipe Balbi | 13fa2e6 | 2016-05-30 13:40:00 +0300 | [diff] [blame] | 618 | |
| 619 | if (dep->number <= 1 || usb_endpoint_xfer_isoc(desc)) |
| 620 | params.param1 |= DWC3_DEPCFG_XFER_NOT_READY_EN; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 621 | |
Felipe Balbi | 18b7ede | 2012-01-02 13:35:41 +0200 | [diff] [blame] | 622 | if (usb_ss_max_streams(comp_desc) && usb_endpoint_xfer_bulk(desc)) { |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 623 | params.param1 |= DWC3_DEPCFG_STREAM_CAPABLE |
| 624 | | DWC3_DEPCFG_STREAM_EVENT_EN; |
Felipe Balbi | 879631a | 2011-09-30 10:58:47 +0300 | [diff] [blame] | 625 | dep->stream_capable = true; |
| 626 | } |
| 627 | |
Felipe Balbi | 0b93a4c | 2014-09-04 10:28:10 -0500 | [diff] [blame] | 628 | if (!usb_endpoint_xfer_control(desc)) |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 629 | params.param1 |= DWC3_DEPCFG_XFER_IN_PROGRESS_EN; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 630 | |
| 631 | /* |
| 632 | * We are doing 1:1 mapping for endpoints, meaning |
| 633 | * Physical Endpoints 2 maps to Logical Endpoint 2 and |
| 634 | * so on. We consider the direction bit as part of the physical |
| 635 | * endpoint number. So USB endpoint 0x81 is 0x03. |
| 636 | */ |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 637 | params.param1 |= DWC3_DEPCFG_EP_NUMBER(dep->number); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 638 | |
| 639 | /* |
| 640 | * We must use the lower 16 TX FIFOs even though |
| 641 | * HW might have more |
| 642 | */ |
| 643 | if (dep->direction) |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 644 | params.param0 |= DWC3_DEPCFG_FIFO_NUMBER(dep->number >> 1); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 645 | |
| 646 | if (desc->bInterval) { |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 647 | params.param1 |= DWC3_DEPCFG_BINTERVAL_M1(desc->bInterval - 1); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 648 | dep->interval = 1 << (desc->bInterval - 1); |
| 649 | } |
| 650 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 651 | return dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETEPCONFIG, ¶ms); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 652 | } |
| 653 | |
| 654 | static int dwc3_gadget_set_xfer_resource(struct dwc3 *dwc, struct dwc3_ep *dep) |
| 655 | { |
| 656 | struct dwc3_gadget_ep_cmd_params params; |
| 657 | |
| 658 | memset(¶ms, 0x00, sizeof(params)); |
| 659 | |
Felipe Balbi | dc1c70a | 2011-09-30 10:58:51 +0300 | [diff] [blame] | 660 | params.param0 = DWC3_DEPXFERCFG_NUM_XFER_RES(1); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 661 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 662 | return dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETTRANSFRESOURCE, |
| 663 | ¶ms); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 664 | } |
| 665 | |
| 666 | /** |
| 667 | * __dwc3_gadget_ep_enable - Initializes a HW endpoint |
| 668 | * @dep: endpoint to be initialized |
| 669 | * @desc: USB Endpoint Descriptor |
| 670 | * |
| 671 | * Caller should take care of locking |
| 672 | */ |
| 673 | static int __dwc3_gadget_ep_enable(struct dwc3_ep *dep, |
Felipe Balbi | c90bfae | 2011-11-29 13:11:21 +0200 | [diff] [blame] | 674 | const struct usb_endpoint_descriptor *desc, |
Felipe Balbi | 4b345c9 | 2012-07-16 14:08:16 +0300 | [diff] [blame] | 675 | const struct usb_ss_ep_comp_descriptor *comp_desc, |
Felipe Balbi | 21e64bf | 2016-06-02 12:37:31 +0300 | [diff] [blame] | 676 | bool modify, bool restore) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 677 | { |
| 678 | struct dwc3 *dwc = dep->dwc; |
| 679 | u32 reg; |
Andy Shevchenko | b09e99e | 2014-05-15 15:53:32 +0300 | [diff] [blame] | 680 | int ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 681 | |
Felipe Balbi | 7381528 | 2015-01-27 13:48:14 -0600 | [diff] [blame] | 682 | dwc3_trace(trace_dwc3_gadget, "Enabling %s", dep->name); |
Felipe Balbi | ff62d6b | 2013-07-12 19:09:39 +0300 | [diff] [blame] | 683 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 684 | if (!(dep->flags & DWC3_EP_ENABLED)) { |
Mayank Rana | ac1200c | 2017-04-25 13:48:46 -0700 | [diff] [blame] | 685 | dep->endpoint.desc = desc; |
| 686 | dep->comp_desc = comp_desc; |
| 687 | dep->type = usb_endpoint_type(desc); |
| 688 | ret = dwc3_gadget_resize_tx_fifos(dwc, dep); |
| 689 | if (ret) { |
| 690 | dep->endpoint.desc = NULL; |
| 691 | dep->comp_desc = NULL; |
| 692 | dep->type = 0; |
| 693 | return ret; |
| 694 | } |
| 695 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 696 | ret = dwc3_gadget_start_config(dwc, dep); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 697 | if (ret) { |
| 698 | dev_err(dwc->dev, "start_config() failed for %s\n", |
| 699 | dep->name); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 700 | return ret; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 701 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 702 | } |
| 703 | |
Felipe Balbi | 21e64bf | 2016-06-02 12:37:31 +0300 | [diff] [blame] | 704 | ret = dwc3_gadget_set_ep_config(dwc, dep, desc, comp_desc, modify, |
Paul Zimmerman | 265b70a | 2013-12-19 12:38:49 -0600 | [diff] [blame] | 705 | restore); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 706 | if (ret) { |
| 707 | dev_err(dwc->dev, "set_ep_config() failed for %s\n", dep->name); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 708 | return ret; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 709 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 710 | |
| 711 | if (!(dep->flags & DWC3_EP_ENABLED)) { |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 712 | struct dwc3_trb *trb_st_hw; |
| 713 | struct dwc3_trb *trb_link; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 714 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 715 | dep->flags |= DWC3_EP_ENABLED; |
| 716 | |
| 717 | reg = dwc3_readl(dwc->regs, DWC3_DALEPENA); |
| 718 | reg |= DWC3_DALEPENA_EP(dep->number); |
| 719 | dwc3_writel(dwc->regs, DWC3_DALEPENA, reg); |
| 720 | |
Felipe Balbi | 36b68aa | 2016-04-05 13:24:36 +0300 | [diff] [blame] | 721 | if (usb_endpoint_xfer_control(desc)) |
Felipe Balbi | 7ab373a | 2016-05-23 11:27:26 +0300 | [diff] [blame] | 722 | return 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 723 | |
John Youn | 0d25744 | 2016-05-19 17:26:08 -0700 | [diff] [blame] | 724 | /* Initialize the TRB ring */ |
| 725 | dep->trb_dequeue = 0; |
| 726 | dep->trb_enqueue = 0; |
| 727 | memset(dep->trb_pool, 0, |
| 728 | sizeof(struct dwc3_trb) * DWC3_TRB_NUM); |
| 729 | |
Felipe Balbi | 36b68aa | 2016-04-05 13:24:36 +0300 | [diff] [blame] | 730 | /* Link TRB. The HWO bit is never reset */ |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 731 | trb_st_hw = &dep->trb_pool[0]; |
| 732 | |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 733 | trb_link = &dep->trb_pool[DWC3_TRB_NUM - 1]; |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 734 | trb_link->bpl = lower_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw)); |
| 735 | trb_link->bph = upper_32_bits(dwc3_trb_dma_offset(dep, trb_st_hw)); |
| 736 | trb_link->ctrl |= DWC3_TRBCTL_LINK_TRB; |
| 737 | trb_link->ctrl |= DWC3_TRB_CTRL_HWO; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 738 | } |
| 739 | |
| 740 | return 0; |
| 741 | } |
| 742 | |
Sebastian Andrzej Siewior | 624407f | 2011-08-29 13:56:37 +0200 | [diff] [blame] | 743 | static void dwc3_remove_requests(struct dwc3 *dwc, struct dwc3_ep *dep) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 744 | { |
| 745 | struct dwc3_request *req; |
| 746 | |
Felipe Balbi | 0e14602 | 2016-06-21 10:32:02 +0300 | [diff] [blame] | 747 | dwc3_stop_active_transfer(dwc, dep->number, true); |
Felipe Balbi | 69450c4 | 2016-05-30 13:37:02 +0300 | [diff] [blame] | 748 | |
Felipe Balbi | 0e14602 | 2016-06-21 10:32:02 +0300 | [diff] [blame] | 749 | /* - giveback all requests to gadget driver */ |
| 750 | while (!list_empty(&dep->started_list)) { |
| 751 | req = next_request(&dep->started_list); |
Sebastian Andrzej Siewior | 624407f | 2011-08-29 13:56:37 +0200 | [diff] [blame] | 752 | |
Felipe Balbi | 0e14602 | 2016-06-21 10:32:02 +0300 | [diff] [blame] | 753 | dwc3_gadget_giveback(dep, req, -ESHUTDOWN); |
Felipe Balbi | ea53b88 | 2012-02-17 12:10:04 +0200 | [diff] [blame] | 754 | } |
| 755 | |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 756 | while (!list_empty(&dep->pending_list)) { |
| 757 | req = next_request(&dep->pending_list); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 758 | |
Sebastian Andrzej Siewior | 624407f | 2011-08-29 13:56:37 +0200 | [diff] [blame] | 759 | dwc3_gadget_giveback(dep, req, -ESHUTDOWN); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 760 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 761 | } |
| 762 | |
| 763 | /** |
| 764 | * __dwc3_gadget_ep_disable - Disables a HW endpoint |
| 765 | * @dep: the endpoint to disable |
| 766 | * |
Sebastian Andrzej Siewior | 624407f | 2011-08-29 13:56:37 +0200 | [diff] [blame] | 767 | * This function also removes requests which are currently processed ny the |
| 768 | * hardware and those which are not yet scheduled. |
| 769 | * Caller should take care of locking. |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 770 | */ |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 771 | static int __dwc3_gadget_ep_disable(struct dwc3_ep *dep) |
| 772 | { |
| 773 | struct dwc3 *dwc = dep->dwc; |
| 774 | u32 reg; |
| 775 | |
Felipe Balbi | 7eaeac5 | 2015-07-20 14:46:15 -0500 | [diff] [blame] | 776 | dwc3_trace(trace_dwc3_gadget, "Disabling %s", dep->name); |
| 777 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 778 | if (dep->endpoint.ep_type == EP_TYPE_NORMAL) |
| 779 | dwc3_remove_requests(dwc, dep); |
| 780 | else if (dep->endpoint.ep_type == EP_TYPE_GSI) |
| 781 | dwc3_stop_active_transfer(dwc, dep->number, true); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 782 | |
Felipe Balbi | 687ef98 | 2014-04-16 10:30:33 -0500 | [diff] [blame] | 783 | /* make sure HW endpoint isn't stalled */ |
| 784 | if (dep->flags & DWC3_EP_STALL) |
Felipe Balbi | 7a60855 | 2014-09-24 14:19:52 -0500 | [diff] [blame] | 785 | __dwc3_gadget_ep_set_halt(dep, 0, false); |
Felipe Balbi | 687ef98 | 2014-04-16 10:30:33 -0500 | [diff] [blame] | 786 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 787 | reg = dwc3_readl(dwc->regs, DWC3_DALEPENA); |
| 788 | reg &= ~DWC3_DALEPENA_EP(dep->number); |
| 789 | dwc3_writel(dwc->regs, DWC3_DALEPENA, reg); |
| 790 | |
Felipe Balbi | 879631a | 2011-09-30 10:58:47 +0300 | [diff] [blame] | 791 | dep->stream_capable = false; |
Ido Shayevitz | f9c56cd | 2012-02-08 13:56:48 +0200 | [diff] [blame] | 792 | dep->endpoint.desc = NULL; |
Felipe Balbi | c90bfae | 2011-11-29 13:11:21 +0200 | [diff] [blame] | 793 | dep->comp_desc = NULL; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 794 | dep->type = 0; |
Felipe Balbi | 879631a | 2011-09-30 10:58:47 +0300 | [diff] [blame] | 795 | dep->flags = 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 796 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 797 | /* Keep GSI ep names with "-gsi" suffix */ |
| 798 | if (!strnstr(dep->name, "gsi", 10)) { |
| 799 | snprintf(dep->name, sizeof(dep->name), "ep%d%s", |
| 800 | dep->number >> 1, |
| 801 | (dep->number & 1) ? "in" : "out"); |
| 802 | } |
| 803 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 804 | return 0; |
| 805 | } |
| 806 | |
| 807 | /* -------------------------------------------------------------------------- */ |
| 808 | |
| 809 | static int dwc3_gadget_ep0_enable(struct usb_ep *ep, |
| 810 | const struct usb_endpoint_descriptor *desc) |
| 811 | { |
| 812 | return -EINVAL; |
| 813 | } |
| 814 | |
| 815 | static int dwc3_gadget_ep0_disable(struct usb_ep *ep) |
| 816 | { |
| 817 | return -EINVAL; |
| 818 | } |
| 819 | |
| 820 | /* -------------------------------------------------------------------------- */ |
| 821 | |
| 822 | static int dwc3_gadget_ep_enable(struct usb_ep *ep, |
| 823 | const struct usb_endpoint_descriptor *desc) |
| 824 | { |
| 825 | struct dwc3_ep *dep; |
| 826 | struct dwc3 *dwc; |
| 827 | unsigned long flags; |
| 828 | int ret; |
| 829 | |
| 830 | if (!ep || !desc || desc->bDescriptorType != USB_DT_ENDPOINT) { |
| 831 | pr_debug("dwc3: invalid parameters\n"); |
| 832 | return -EINVAL; |
| 833 | } |
| 834 | |
| 835 | if (!desc->wMaxPacketSize) { |
| 836 | pr_debug("dwc3: missing wMaxPacketSize\n"); |
| 837 | return -EINVAL; |
| 838 | } |
| 839 | |
| 840 | dep = to_dwc3_ep(ep); |
| 841 | dwc = dep->dwc; |
| 842 | |
Felipe Balbi | 95ca961 | 2015-12-10 13:08:20 -0600 | [diff] [blame] | 843 | if (dev_WARN_ONCE(dwc->dev, dep->flags & DWC3_EP_ENABLED, |
| 844 | "%s is already enabled\n", |
| 845 | dep->name)) |
Felipe Balbi | c6f83f3 | 2012-08-15 12:28:29 +0300 | [diff] [blame] | 846 | return 0; |
Felipe Balbi | c6f83f3 | 2012-08-15 12:28:29 +0300 | [diff] [blame] | 847 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 848 | spin_lock_irqsave(&dwc->lock, flags); |
Paul Zimmerman | 265b70a | 2013-12-19 12:38:49 -0600 | [diff] [blame] | 849 | ret = __dwc3_gadget_ep_enable(dep, desc, ep->comp_desc, false, false); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 850 | dbg_event(dep->number, "ENABLE", ret); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 851 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 852 | |
| 853 | return ret; |
| 854 | } |
| 855 | |
| 856 | static int dwc3_gadget_ep_disable(struct usb_ep *ep) |
| 857 | { |
| 858 | struct dwc3_ep *dep; |
| 859 | struct dwc3 *dwc; |
| 860 | unsigned long flags; |
| 861 | int ret; |
| 862 | |
| 863 | if (!ep) { |
| 864 | pr_debug("dwc3: invalid parameters\n"); |
| 865 | return -EINVAL; |
| 866 | } |
| 867 | |
| 868 | dep = to_dwc3_ep(ep); |
| 869 | dwc = dep->dwc; |
| 870 | |
Felipe Balbi | 95ca961 | 2015-12-10 13:08:20 -0600 | [diff] [blame] | 871 | if (dev_WARN_ONCE(dwc->dev, !(dep->flags & DWC3_EP_ENABLED), |
| 872 | "%s is already disabled\n", |
| 873 | dep->name)) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 874 | return 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 875 | |
Devdutt Patnaik | 9b7ea1b | 2016-01-25 12:50:22 -0800 | [diff] [blame] | 876 | /* Keep GSI ep names with "-gsi" suffix */ |
| 877 | if (!strnstr(dep->name, "gsi", 10)) { |
| 878 | snprintf(dep->name, sizeof(dep->name), "ep%d%s", |
| 879 | dep->number >> 1, |
| 880 | (dep->number & 1) ? "in" : "out"); |
| 881 | } |
| 882 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 883 | spin_lock_irqsave(&dwc->lock, flags); |
| 884 | ret = __dwc3_gadget_ep_disable(dep); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 885 | dbg_event(dep->number, "DISABLE", ret); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 886 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 887 | |
| 888 | return ret; |
| 889 | } |
| 890 | |
| 891 | static struct usb_request *dwc3_gadget_ep_alloc_request(struct usb_ep *ep, |
| 892 | gfp_t gfp_flags) |
| 893 | { |
| 894 | struct dwc3_request *req; |
| 895 | struct dwc3_ep *dep = to_dwc3_ep(ep); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 896 | |
| 897 | req = kzalloc(sizeof(*req), gfp_flags); |
Jingoo Han | 734d5a5 | 2014-07-17 12:45:11 +0900 | [diff] [blame] | 898 | if (!req) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 899 | return NULL; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 900 | |
| 901 | req->epnum = dep->number; |
| 902 | req->dep = dep; |
Mayank Rana | 7877b27 | 2017-06-19 18:03:22 -0700 | [diff] [blame] | 903 | req->request.dma = DMA_ERROR_CODE; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 904 | |
Felipe Balbi | 68d34c8 | 2016-05-30 13:34:58 +0300 | [diff] [blame] | 905 | dep->allocated_requests++; |
| 906 | |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 907 | trace_dwc3_alloc_request(req); |
| 908 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 909 | return &req->request; |
| 910 | } |
| 911 | |
| 912 | static void dwc3_gadget_ep_free_request(struct usb_ep *ep, |
| 913 | struct usb_request *request) |
| 914 | { |
| 915 | struct dwc3_request *req = to_dwc3_request(request); |
Felipe Balbi | 68d34c8 | 2016-05-30 13:34:58 +0300 | [diff] [blame] | 916 | struct dwc3_ep *dep = to_dwc3_ep(ep); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 917 | |
Felipe Balbi | 68d34c8 | 2016-05-30 13:34:58 +0300 | [diff] [blame] | 918 | dep->allocated_requests--; |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 919 | trace_dwc3_free_request(req); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 920 | kfree(req); |
| 921 | } |
| 922 | |
Felipe Balbi | 2c78c02 | 2016-08-12 13:13:10 +0300 | [diff] [blame] | 923 | static u32 dwc3_calc_trbs_left(struct dwc3_ep *dep); |
| 924 | |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 925 | /** |
| 926 | * dwc3_prepare_one_trb - setup one TRB from one request |
| 927 | * @dep: endpoint for which this request is prepared |
| 928 | * @req: dwc3_request pointer |
| 929 | */ |
Felipe Balbi | 68e823e | 2011-11-28 12:25:01 +0200 | [diff] [blame] | 930 | static void dwc3_prepare_one_trb(struct dwc3_ep *dep, |
Felipe Balbi | eeb720f | 2011-11-28 12:46:59 +0200 | [diff] [blame] | 931 | struct dwc3_request *req, dma_addr_t dma, |
Felipe Balbi | 4bc48c9 | 2016-08-10 16:04:33 +0300 | [diff] [blame] | 932 | unsigned length, unsigned chain, unsigned node) |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 933 | { |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 934 | struct dwc3_trb *trb; |
Felipe Balbi | 3666b62 | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 935 | struct dwc3 *dwc = dep->dwc; |
| 936 | struct usb_gadget *gadget = &dwc->gadget; |
| 937 | enum usb_device_speed speed = gadget->speed; |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 938 | |
Felipe Balbi | 4bc48c9 | 2016-08-10 16:04:33 +0300 | [diff] [blame] | 939 | dwc3_trace(trace_dwc3_gadget, "%s: req %p dma %08llx length %d%s", |
Felipe Balbi | eeb720f | 2011-11-28 12:46:59 +0200 | [diff] [blame] | 940 | dep->name, req, (unsigned long long) dma, |
Felipe Balbi | 4bc48c9 | 2016-08-10 16:04:33 +0300 | [diff] [blame] | 941 | length, chain ? " chain" : ""); |
Pratyush Anand | 915e202 | 2013-01-14 15:59:35 +0530 | [diff] [blame] | 942 | |
Felipe Balbi | 4faf755 | 2016-04-05 13:14:31 +0300 | [diff] [blame] | 943 | trb = &dep->trb_pool[dep->trb_enqueue]; |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 944 | |
Felipe Balbi | eeb720f | 2011-11-28 12:46:59 +0200 | [diff] [blame] | 945 | if (!req->trb) { |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 946 | dwc3_gadget_move_started_request(req); |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 947 | req->trb = trb; |
| 948 | req->trb_dma = dwc3_trb_dma_offset(dep, trb); |
Felipe Balbi | 4faf755 | 2016-04-05 13:14:31 +0300 | [diff] [blame] | 949 | req->first_trb_index = dep->trb_enqueue; |
Felipe Balbi | a9c3ca5 | 2016-10-05 14:24:37 +0300 | [diff] [blame] | 950 | dep->queued_requests++; |
Felipe Balbi | eeb720f | 2011-11-28 12:46:59 +0200 | [diff] [blame] | 951 | } |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 952 | |
Felipe Balbi | ef966b9 | 2016-04-05 13:09:51 +0300 | [diff] [blame] | 953 | dwc3_ep_inc_enq(dep); |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 954 | |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 955 | trb->size = DWC3_TRB_SIZE_LENGTH(length); |
| 956 | trb->bpl = lower_32_bits(dma); |
| 957 | trb->bph = upper_32_bits(dma); |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 958 | |
Ido Shayevitz | 16e78db | 2012-03-12 20:25:24 +0200 | [diff] [blame] | 959 | switch (usb_endpoint_type(dep->endpoint.desc)) { |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 960 | case USB_ENDPOINT_XFER_CONTROL: |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 961 | trb->ctrl = DWC3_TRBCTL_CONTROL_SETUP; |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 962 | break; |
| 963 | |
| 964 | case USB_ENDPOINT_XFER_ISOC: |
Felipe Balbi | 3666b62 | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 965 | if (!node) { |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 966 | trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS_FIRST; |
Felipe Balbi | 3666b62 | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 967 | |
Manu Gautam | 480fd4f | 2017-07-19 17:07:10 +0530 | [diff] [blame] | 968 | /* |
| 969 | * USB Specification 2.0 Section 5.9.2 states that: "If |
| 970 | * there is only a single transaction in the microframe, |
| 971 | * only a DATA0 data packet PID is used. If there are |
| 972 | * two transactions per microframe, DATA1 is used for |
| 973 | * the first transaction data packet and DATA0 is used |
| 974 | * for the second transaction data packet. If there are |
| 975 | * three transactions per microframe, DATA2 is used for |
| 976 | * the first transaction data packet, DATA1 is used for |
| 977 | * the second, and DATA0 is used for the third." |
| 978 | * |
| 979 | * IOW, we should satisfy the following cases: |
| 980 | * |
| 981 | * 1) length <= maxpacket |
| 982 | * - DATA0 |
| 983 | * |
| 984 | * 2) maxpacket < length <= (2 * maxpacket) |
| 985 | * - DATA1, DATA0 |
| 986 | * |
| 987 | * 3) (2 * maxpacket) < length <= (3 * maxpacket) |
| 988 | * - DATA2, DATA1, DATA0 |
| 989 | */ |
Felipe Balbi | 3666b62 | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 990 | if (speed == USB_SPEED_HIGH) { |
| 991 | struct usb_ep *ep = &dep->endpoint; |
Manu Gautam | 480fd4f | 2017-07-19 17:07:10 +0530 | [diff] [blame] | 992 | unsigned int mult = ep->mult - 1; |
| 993 | unsigned int maxp; |
| 994 | |
| 995 | maxp = usb_endpoint_maxp(ep->desc) & 0x07ff; |
| 996 | |
| 997 | if (length <= (2 * maxp)) |
| 998 | mult--; |
| 999 | |
| 1000 | if (length <= maxp) |
| 1001 | mult--; |
| 1002 | |
| 1003 | trb->size |= DWC3_TRB_SIZE_PCM1(mult); |
Felipe Balbi | 3666b62 | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 1004 | } |
| 1005 | } else { |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 1006 | trb->ctrl = DWC3_TRBCTL_ISOCHRONOUS; |
Felipe Balbi | 3666b62 | 2016-09-22 11:01:01 +0300 | [diff] [blame] | 1007 | } |
Felipe Balbi | ca4d44e | 2016-03-10 13:53:27 +0200 | [diff] [blame] | 1008 | |
| 1009 | /* always enable Interrupt on Missed ISOC */ |
| 1010 | trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI; |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 1011 | break; |
| 1012 | |
| 1013 | case USB_ENDPOINT_XFER_BULK: |
| 1014 | case USB_ENDPOINT_XFER_INT: |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 1015 | trb->ctrl = DWC3_TRBCTL_NORMAL; |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 1016 | break; |
| 1017 | default: |
| 1018 | /* |
| 1019 | * This is only possible with faulty memory because we |
| 1020 | * checked it already :) |
| 1021 | */ |
| 1022 | BUG(); |
| 1023 | } |
| 1024 | |
Felipe Balbi | ca4d44e | 2016-03-10 13:53:27 +0200 | [diff] [blame] | 1025 | /* always enable Continue on Short Packet */ |
Felipe Balbi | 66f37a9 | 2016-10-05 14:26:23 +0300 | [diff] [blame] | 1026 | if (usb_endpoint_dir_out(dep->endpoint.desc)) { |
Felipe Balbi | 2e37cdd | 2016-10-06 17:10:39 +0300 | [diff] [blame] | 1027 | trb->ctrl |= DWC3_TRB_CTRL_CSP; |
Felipe Balbi | f3af365 | 2013-12-13 14:19:33 -0600 | [diff] [blame] | 1028 | |
Felipe Balbi | 66f37a9 | 2016-10-05 14:26:23 +0300 | [diff] [blame] | 1029 | if (req->request.short_not_ok) |
| 1030 | trb->ctrl |= DWC3_TRB_CTRL_ISP_IMI; |
| 1031 | } |
| 1032 | |
Felipe Balbi | 2c78c02 | 2016-08-12 13:13:10 +0300 | [diff] [blame] | 1033 | if ((!req->request.no_interrupt && !chain) || |
| 1034 | (dwc3_calc_trbs_left(dep) == 0)) |
Felipe Balbi | 66f37a9 | 2016-10-05 14:26:23 +0300 | [diff] [blame] | 1035 | trb->ctrl |= DWC3_TRB_CTRL_IOC; |
Felipe Balbi | ca4d44e | 2016-03-10 13:53:27 +0200 | [diff] [blame] | 1036 | |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 1037 | if (chain) |
| 1038 | trb->ctrl |= DWC3_TRB_CTRL_CHN; |
| 1039 | |
Ido Shayevitz | 16e78db | 2012-03-12 20:25:24 +0200 | [diff] [blame] | 1040 | if (usb_endpoint_xfer_bulk(dep->endpoint.desc) && dep->stream_capable) |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 1041 | trb->ctrl |= DWC3_TRB_CTRL_SID_SOFN(req->request.stream_id); |
| 1042 | |
| 1043 | trb->ctrl |= DWC3_TRB_CTRL_HWO; |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 1044 | |
| 1045 | trace_dwc3_prepare_trb(dep, trb); |
Felipe Balbi | c71fc37 | 2011-11-22 11:37:34 +0200 | [diff] [blame] | 1046 | } |
| 1047 | |
John Youn | 361572b | 2016-05-19 17:26:17 -0700 | [diff] [blame] | 1048 | /** |
| 1049 | * dwc3_ep_prev_trb() - Returns the previous TRB in the ring |
| 1050 | * @dep: The endpoint with the TRB ring |
| 1051 | * @index: The index of the current TRB in the ring |
| 1052 | * |
| 1053 | * Returns the TRB prior to the one pointed to by the index. If the |
| 1054 | * index is 0, we will wrap backwards, skip the link TRB, and return |
| 1055 | * the one just before that. |
| 1056 | */ |
| 1057 | static struct dwc3_trb *dwc3_ep_prev_trb(struct dwc3_ep *dep, u8 index) |
| 1058 | { |
Felipe Balbi | 45438a0 | 2016-08-11 12:26:59 +0300 | [diff] [blame] | 1059 | u8 tmp = index; |
John Youn | 361572b | 2016-05-19 17:26:17 -0700 | [diff] [blame] | 1060 | |
Felipe Balbi | 45438a0 | 2016-08-11 12:26:59 +0300 | [diff] [blame] | 1061 | if (!tmp) |
| 1062 | tmp = DWC3_TRB_NUM - 1; |
| 1063 | |
| 1064 | return &dep->trb_pool[tmp - 1]; |
John Youn | 361572b | 2016-05-19 17:26:17 -0700 | [diff] [blame] | 1065 | } |
| 1066 | |
Felipe Balbi | c423357 | 2016-05-12 14:08:34 +0300 | [diff] [blame] | 1067 | static u32 dwc3_calc_trbs_left(struct dwc3_ep *dep) |
| 1068 | { |
| 1069 | struct dwc3_trb *tmp; |
John Youn | 32db3d9 | 2016-05-19 17:26:12 -0700 | [diff] [blame] | 1070 | u8 trbs_left; |
Felipe Balbi | c423357 | 2016-05-12 14:08:34 +0300 | [diff] [blame] | 1071 | |
| 1072 | /* |
| 1073 | * If enqueue & dequeue are equal than it is either full or empty. |
| 1074 | * |
| 1075 | * One way to know for sure is if the TRB right before us has HWO bit |
| 1076 | * set or not. If it has, then we're definitely full and can't fit any |
| 1077 | * more transfers in our ring. |
| 1078 | */ |
| 1079 | if (dep->trb_enqueue == dep->trb_dequeue) { |
John Youn | 361572b | 2016-05-19 17:26:17 -0700 | [diff] [blame] | 1080 | tmp = dwc3_ep_prev_trb(dep, dep->trb_enqueue); |
| 1081 | if (tmp->ctrl & DWC3_TRB_CTRL_HWO) |
| 1082 | return 0; |
Felipe Balbi | c423357 | 2016-05-12 14:08:34 +0300 | [diff] [blame] | 1083 | |
| 1084 | return DWC3_TRB_NUM - 1; |
| 1085 | } |
| 1086 | |
John Youn | 9d7aba7 | 2016-08-26 18:43:01 -0700 | [diff] [blame] | 1087 | trbs_left = dep->trb_dequeue - dep->trb_enqueue; |
John Youn | 3de2685f | 2016-05-23 11:32:45 -0700 | [diff] [blame] | 1088 | trbs_left &= (DWC3_TRB_NUM - 1); |
John Youn | 32db3d9 | 2016-05-19 17:26:12 -0700 | [diff] [blame] | 1089 | |
John Youn | 9d7aba7 | 2016-08-26 18:43:01 -0700 | [diff] [blame] | 1090 | if (dep->trb_dequeue < dep->trb_enqueue) |
| 1091 | trbs_left--; |
| 1092 | |
John Youn | 32db3d9 | 2016-05-19 17:26:12 -0700 | [diff] [blame] | 1093 | return trbs_left; |
Felipe Balbi | c423357 | 2016-05-12 14:08:34 +0300 | [diff] [blame] | 1094 | } |
| 1095 | |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1096 | static void dwc3_prepare_one_trb_sg(struct dwc3_ep *dep, |
Felipe Balbi | 7ae7df4 | 2016-08-24 14:37:22 +0300 | [diff] [blame] | 1097 | struct dwc3_request *req) |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1098 | { |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 1099 | struct scatterlist *sg = req->sg; |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1100 | struct scatterlist *s; |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1101 | unsigned int length; |
| 1102 | dma_addr_t dma; |
| 1103 | int i; |
| 1104 | |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 1105 | for_each_sg(sg, s, req->num_pending_sgs, i) { |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1106 | unsigned chain = true; |
| 1107 | |
| 1108 | length = sg_dma_len(s); |
| 1109 | dma = sg_dma_address(s); |
| 1110 | |
Felipe Balbi | 4bc48c9 | 2016-08-10 16:04:33 +0300 | [diff] [blame] | 1111 | if (sg_is_last(s)) |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1112 | chain = false; |
| 1113 | |
| 1114 | dwc3_prepare_one_trb(dep, req, dma, length, |
Felipe Balbi | 4bc48c9 | 2016-08-10 16:04:33 +0300 | [diff] [blame] | 1115 | chain, i); |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1116 | |
Felipe Balbi | 7ae7df4 | 2016-08-24 14:37:22 +0300 | [diff] [blame] | 1117 | if (!dwc3_calc_trbs_left(dep)) |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1118 | break; |
| 1119 | } |
| 1120 | } |
| 1121 | |
| 1122 | static void dwc3_prepare_one_trb_linear(struct dwc3_ep *dep, |
Felipe Balbi | 7ae7df4 | 2016-08-24 14:37:22 +0300 | [diff] [blame] | 1123 | struct dwc3_request *req) |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1124 | { |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1125 | unsigned int length; |
| 1126 | dma_addr_t dma; |
| 1127 | |
| 1128 | dma = req->request.dma; |
| 1129 | length = req->request.length; |
| 1130 | |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1131 | dwc3_prepare_one_trb(dep, req, dma, length, |
Felipe Balbi | 4bc48c9 | 2016-08-10 16:04:33 +0300 | [diff] [blame] | 1132 | false, 0); |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1133 | } |
| 1134 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1135 | /* |
| 1136 | * dwc3_prepare_trbs - setup TRBs from requests |
| 1137 | * @dep: endpoint for which requests are being prepared |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1138 | * |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 1139 | * The function goes through the requests list and sets up TRBs for the |
| 1140 | * transfers. The function returns once there are no more TRBs available or |
| 1141 | * it runs out of requests. |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1142 | */ |
Felipe Balbi | c423357 | 2016-05-12 14:08:34 +0300 | [diff] [blame] | 1143 | static void dwc3_prepare_trbs(struct dwc3_ep *dep) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1144 | { |
Felipe Balbi | 68e823e | 2011-11-28 12:25:01 +0200 | [diff] [blame] | 1145 | struct dwc3_request *req, *n; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1146 | |
| 1147 | BUILD_BUG_ON_NOT_POWER_OF_2(DWC3_TRB_NUM); |
| 1148 | |
Felipe Balbi | 7ae7df4 | 2016-08-24 14:37:22 +0300 | [diff] [blame] | 1149 | if (!dwc3_calc_trbs_left(dep)) |
John Youn | 89bc856 | 2016-05-19 17:26:10 -0700 | [diff] [blame] | 1150 | return; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1151 | |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 1152 | list_for_each_entry_safe(req, n, &dep->pending_list, list) { |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 1153 | if (req->num_pending_sgs > 0) |
Felipe Balbi | 7ae7df4 | 2016-08-24 14:37:22 +0300 | [diff] [blame] | 1154 | dwc3_prepare_one_trb_sg(dep, req); |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1155 | else |
Felipe Balbi | 7ae7df4 | 2016-08-24 14:37:22 +0300 | [diff] [blame] | 1156 | dwc3_prepare_one_trb_linear(dep, req); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1157 | |
Felipe Balbi | 7ae7df4 | 2016-08-24 14:37:22 +0300 | [diff] [blame] | 1158 | if (!dwc3_calc_trbs_left(dep)) |
Felipe Balbi | 5ee85d8 | 2016-05-13 12:42:44 +0300 | [diff] [blame] | 1159 | return; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1160 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1161 | } |
| 1162 | |
Felipe Balbi | 4fae2e3 | 2016-05-12 16:53:59 +0300 | [diff] [blame] | 1163 | static int __dwc3_gadget_kick_transfer(struct dwc3_ep *dep, u16 cmd_param) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1164 | { |
| 1165 | struct dwc3_gadget_ep_cmd_params params; |
| 1166 | struct dwc3_request *req; |
| 1167 | struct dwc3 *dwc = dep->dwc; |
Felipe Balbi | 4fae2e3 | 2016-05-12 16:53:59 +0300 | [diff] [blame] | 1168 | int starting; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1169 | int ret; |
| 1170 | u32 cmd; |
| 1171 | |
Felipe Balbi | 4fae2e3 | 2016-05-12 16:53:59 +0300 | [diff] [blame] | 1172 | starting = !(dep->flags & DWC3_EP_BUSY); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1173 | |
Felipe Balbi | 4fae2e3 | 2016-05-12 16:53:59 +0300 | [diff] [blame] | 1174 | dwc3_prepare_trbs(dep); |
| 1175 | req = next_request(&dep->started_list); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1176 | if (!req) { |
| 1177 | dep->flags |= DWC3_EP_PENDING_REQUEST; |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 1178 | dbg_event(dep->number, "NO REQ", 0); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1179 | return 0; |
| 1180 | } |
| 1181 | |
| 1182 | memset(¶ms, 0, sizeof(params)); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1183 | |
Felipe Balbi | 4fae2e3 | 2016-05-12 16:53:59 +0300 | [diff] [blame] | 1184 | if (starting) { |
Pratyush Anand | 1877d6c | 2013-01-14 15:59:36 +0530 | [diff] [blame] | 1185 | params.param0 = upper_32_bits(req->trb_dma); |
| 1186 | params.param1 = lower_32_bits(req->trb_dma); |
Felipe Balbi | b6b1c6d | 2016-05-30 13:29:35 +0300 | [diff] [blame] | 1187 | cmd = DWC3_DEPCMD_STARTTRANSFER | |
| 1188 | DWC3_DEPCMD_PARAM(cmd_param); |
Pratyush Anand | 1877d6c | 2013-01-14 15:59:36 +0530 | [diff] [blame] | 1189 | } else { |
Felipe Balbi | b6b1c6d | 2016-05-30 13:29:35 +0300 | [diff] [blame] | 1190 | cmd = DWC3_DEPCMD_UPDATETRANSFER | |
| 1191 | DWC3_DEPCMD_PARAM(dep->resource_index); |
Pratyush Anand | 1877d6c | 2013-01-14 15:59:36 +0530 | [diff] [blame] | 1192 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1193 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 1194 | ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1195 | if (ret < 0) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1196 | /* |
| 1197 | * FIXME we need to iterate over the list of requests |
| 1198 | * here and stop, unmap, free and del each of the linked |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 1199 | * requests instead of what we do now. |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1200 | */ |
Arnd Bergmann | 42695fc | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 1201 | usb_gadget_unmap_request_by_dev(dwc->sysdev, |
| 1202 | &req->request, req->direction); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1203 | list_del(&req->list); |
| 1204 | return ret; |
| 1205 | } |
| 1206 | |
| 1207 | dep->flags |= DWC3_EP_BUSY; |
Felipe Balbi | 25b8ff6 | 2011-11-04 12:32:47 +0200 | [diff] [blame] | 1208 | |
Felipe Balbi | 4fae2e3 | 2016-05-12 16:53:59 +0300 | [diff] [blame] | 1209 | if (starting) { |
Felipe Balbi | 2eb8801 | 2016-04-12 16:53:39 +0300 | [diff] [blame] | 1210 | dep->resource_index = dwc3_gadget_ep_get_transfer_index(dep); |
Felipe Balbi | b4996a8 | 2012-06-06 12:04:13 +0300 | [diff] [blame] | 1211 | WARN_ON_ONCE(!dep->resource_index); |
Paul Zimmerman | f898ae0 | 2012-03-29 18:16:54 +0000 | [diff] [blame] | 1212 | } |
Felipe Balbi | 25b8ff6 | 2011-11-04 12:32:47 +0200 | [diff] [blame] | 1213 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1214 | return 0; |
| 1215 | } |
| 1216 | |
Felipe Balbi | cf23b5b | 2016-10-21 13:07:09 +0300 | [diff] [blame] | 1217 | static int __dwc3_gadget_get_frame(struct dwc3 *dwc) |
| 1218 | { |
| 1219 | u32 reg; |
| 1220 | |
| 1221 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 1222 | return DWC3_DSTS_SOFFN(reg); |
| 1223 | } |
| 1224 | |
Pratyush Anand | d6d6ec7 | 2012-05-25 18:54:56 +0530 | [diff] [blame] | 1225 | static void __dwc3_gadget_start_isoc(struct dwc3 *dwc, |
| 1226 | struct dwc3_ep *dep, u32 cur_uf) |
| 1227 | { |
| 1228 | u32 uf; |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 1229 | int ret; |
Pratyush Anand | d6d6ec7 | 2012-05-25 18:54:56 +0530 | [diff] [blame] | 1230 | |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 1231 | if (list_empty(&dep->pending_list)) { |
Felipe Balbi | 7381528 | 2015-01-27 13:48:14 -0600 | [diff] [blame] | 1232 | dwc3_trace(trace_dwc3_gadget, |
| 1233 | "ISOC ep %s run out for requests", |
| 1234 | dep->name); |
Pratyush Anand | f4a53c5 | 2012-08-30 12:21:43 +0530 | [diff] [blame] | 1235 | dep->flags |= DWC3_EP_PENDING_REQUEST; |
Pratyush Anand | d6d6ec7 | 2012-05-25 18:54:56 +0530 | [diff] [blame] | 1236 | return; |
| 1237 | } |
| 1238 | |
John Youn | 1819d0a | 2017-01-26 11:58:40 -0800 | [diff] [blame] | 1239 | /* |
| 1240 | * Schedule the first trb for one interval in the future or at |
| 1241 | * least 4 microframes. |
| 1242 | */ |
| 1243 | uf = cur_uf + max_t(u32, 4, dep->interval); |
Pratyush Anand | d6d6ec7 | 2012-05-25 18:54:56 +0530 | [diff] [blame] | 1244 | |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 1245 | ret = __dwc3_gadget_kick_transfer(dep, uf); |
| 1246 | if (ret < 0) |
| 1247 | dbg_event(dep->number, "ISOC QUEUE", ret); |
Pratyush Anand | d6d6ec7 | 2012-05-25 18:54:56 +0530 | [diff] [blame] | 1248 | } |
| 1249 | |
| 1250 | static void dwc3_gadget_start_isoc(struct dwc3 *dwc, |
| 1251 | struct dwc3_ep *dep, const struct dwc3_event_depevt *event) |
| 1252 | { |
| 1253 | u32 cur_uf, mask; |
| 1254 | |
| 1255 | mask = ~(dep->interval - 1); |
| 1256 | cur_uf = event->parameters & mask; |
| 1257 | |
| 1258 | __dwc3_gadget_start_isoc(dwc, dep, cur_uf); |
| 1259 | } |
| 1260 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1261 | static int __dwc3_gadget_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req) |
| 1262 | { |
Felipe Balbi | 0fc9a1b | 2011-12-19 11:32:34 +0200 | [diff] [blame] | 1263 | struct dwc3 *dwc = dep->dwc; |
| 1264 | int ret; |
| 1265 | |
Felipe Balbi | bb42398 | 2015-11-16 15:31:21 -0600 | [diff] [blame] | 1266 | if (!dep->endpoint.desc) { |
Felipe Balbi | ec5e795 | 2015-11-16 16:04:13 -0600 | [diff] [blame] | 1267 | dwc3_trace(trace_dwc3_gadget, |
Felipe Balbi | 60cfb37 | 2016-05-24 13:45:17 +0300 | [diff] [blame] | 1268 | "trying to queue request %p to disabled %s", |
Felipe Balbi | bb42398 | 2015-11-16 15:31:21 -0600 | [diff] [blame] | 1269 | &req->request, dep->endpoint.name); |
| 1270 | return -ESHUTDOWN; |
| 1271 | } |
| 1272 | |
Felipe Balbi | 3272bad | 2017-05-17 15:57:45 +0300 | [diff] [blame] | 1273 | if (WARN(req->dep != dep, "request %pK belongs to '%s'\n", |
Felipe Balbi | bb42398 | 2015-11-16 15:31:21 -0600 | [diff] [blame] | 1274 | &req->request, req->dep->name)) { |
Felipe Balbi | 3272bad | 2017-05-17 15:57:45 +0300 | [diff] [blame] | 1275 | dwc3_trace(trace_dwc3_gadget, "request %pK belongs to '%s'", |
Felipe Balbi | ec5e795 | 2015-11-16 16:04:13 -0600 | [diff] [blame] | 1276 | &req->request, req->dep->name); |
Felipe Balbi | bb42398 | 2015-11-16 15:31:21 -0600 | [diff] [blame] | 1277 | return -EINVAL; |
| 1278 | } |
| 1279 | |
Manu Gautam | b40ef61 | 2013-02-11 15:53:34 +0530 | [diff] [blame] | 1280 | if (req->request.status == -EINPROGRESS) { |
| 1281 | ret = -EBUSY; |
| 1282 | dev_err(dwc->dev, "%s: %p request already in queue", |
| 1283 | dep->name, req); |
| 1284 | return ret; |
| 1285 | } |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 1286 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1287 | req->request.actual = 0; |
| 1288 | req->request.status = -EINPROGRESS; |
| 1289 | req->direction = dep->direction; |
| 1290 | req->epnum = dep->number; |
| 1291 | |
Felipe Balbi | fe84f52 | 2015-09-01 09:01:38 -0500 | [diff] [blame] | 1292 | trace_dwc3_ep_queue(req); |
| 1293 | |
Arnd Bergmann | 42695fc | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 1294 | ret = usb_gadget_map_request_by_dev(dwc->sysdev, &req->request, |
| 1295 | dep->direction); |
Felipe Balbi | 0fc9a1b | 2011-12-19 11:32:34 +0200 | [diff] [blame] | 1296 | if (ret) |
| 1297 | return ret; |
| 1298 | |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 1299 | req->sg = req->request.sg; |
| 1300 | req->num_pending_sgs = req->request.num_mapped_sgs; |
| 1301 | |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 1302 | list_add_tail(&req->list, &dep->pending_list); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1303 | |
Felipe Balbi | d889c23 | 2016-09-29 15:44:29 +0300 | [diff] [blame] | 1304 | /* |
| 1305 | * NOTICE: Isochronous endpoints should NEVER be prestarted. We must |
| 1306 | * wait for a XferNotReady event so we will know what's the current |
| 1307 | * (micro-)frame number. |
| 1308 | * |
| 1309 | * Without this trick, we are very, very likely gonna get Bus Expiry |
| 1310 | * errors which will force us issue EndTransfer command. |
| 1311 | */ |
| 1312 | if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) { |
Felipe Balbi | cf23b5b | 2016-10-21 13:07:09 +0300 | [diff] [blame] | 1313 | if ((dep->flags & DWC3_EP_PENDING_REQUEST)) { |
| 1314 | if (dep->flags & DWC3_EP_TRANSFER_STARTED) { |
| 1315 | dwc3_stop_active_transfer(dwc, dep->number, true); |
| 1316 | dep->flags = DWC3_EP_ENABLED; |
| 1317 | } else { |
| 1318 | u32 cur_uf; |
| 1319 | |
| 1320 | cur_uf = __dwc3_gadget_get_frame(dwc); |
| 1321 | __dwc3_gadget_start_isoc(dwc, dep, cur_uf); |
Janusz Dziedzic | e7ab897 | 2016-11-09 11:01:34 +0100 | [diff] [blame] | 1322 | dep->flags &= ~DWC3_EP_PENDING_REQUEST; |
Felipe Balbi | cf23b5b | 2016-10-21 13:07:09 +0300 | [diff] [blame] | 1323 | } |
Roger Quadros | 77d815d | 2017-04-21 15:58:08 +0300 | [diff] [blame^] | 1324 | return 0; |
Felipe Balbi | 08a36b5 | 2016-08-11 14:27:52 +0300 | [diff] [blame] | 1325 | } |
Roger Quadros | 77d815d | 2017-04-21 15:58:08 +0300 | [diff] [blame^] | 1326 | |
| 1327 | if ((dep->flags & DWC3_EP_BUSY) && |
| 1328 | !(dep->flags & DWC3_EP_MISSED_ISOC)) { |
| 1329 | WARN_ON_ONCE(!dep->resource_index); |
| 1330 | ret = __dwc3_gadget_kick_transfer(dep, |
| 1331 | dep->resource_index); |
| 1332 | } |
| 1333 | |
| 1334 | goto out; |
Felipe Balbi | b511e5e | 2012-06-06 12:00:50 +0300 | [diff] [blame] | 1335 | } |
| 1336 | |
Felipe Balbi | 594e121 | 2016-08-24 14:38:10 +0300 | [diff] [blame] | 1337 | if (!dwc3_calc_trbs_left(dep)) |
| 1338 | return 0; |
Felipe Balbi | b997ada | 2012-07-26 13:26:50 +0300 | [diff] [blame] | 1339 | |
Felipe Balbi | 08a36b5 | 2016-08-11 14:27:52 +0300 | [diff] [blame] | 1340 | ret = __dwc3_gadget_kick_transfer(dep, 0); |
Felipe Balbi | a8f3281 | 2015-09-16 10:40:07 -0500 | [diff] [blame] | 1341 | if (ret && ret != -EBUSY) |
Felipe Balbi | ec5e795 | 2015-11-16 16:04:13 -0600 | [diff] [blame] | 1342 | dwc3_trace(trace_dwc3_gadget, |
Felipe Balbi | 60cfb37 | 2016-05-24 13:45:17 +0300 | [diff] [blame] | 1343 | "%s: failed to kick transfers", |
Felipe Balbi | a8f3281 | 2015-09-16 10:40:07 -0500 | [diff] [blame] | 1344 | dep->name); |
Roger Quadros | 77d815d | 2017-04-21 15:58:08 +0300 | [diff] [blame^] | 1345 | out: |
Felipe Balbi | a8f3281 | 2015-09-16 10:40:07 -0500 | [diff] [blame] | 1346 | if (ret == -EBUSY) |
| 1347 | ret = 0; |
| 1348 | |
| 1349 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1350 | } |
| 1351 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 1352 | static int dwc3_gadget_wakeup(struct usb_gadget *g) |
| 1353 | { |
| 1354 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 1355 | |
| 1356 | schedule_work(&dwc->wakeup_work); |
| 1357 | return 0; |
| 1358 | } |
| 1359 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 1360 | static bool dwc3_gadget_is_suspended(struct dwc3 *dwc) |
| 1361 | { |
| 1362 | if (atomic_read(&dwc->in_lpm) || |
| 1363 | dwc->link_state == DWC3_LINK_STATE_U3) |
| 1364 | return true; |
| 1365 | return false; |
| 1366 | } |
| 1367 | |
Felipe Balbi | 04c03d1 | 2015-12-02 10:06:45 -0600 | [diff] [blame] | 1368 | static void __dwc3_gadget_ep_zlp_complete(struct usb_ep *ep, |
| 1369 | struct usb_request *request) |
| 1370 | { |
| 1371 | dwc3_gadget_ep_free_request(ep, request); |
| 1372 | } |
| 1373 | |
| 1374 | static int __dwc3_gadget_ep_queue_zlp(struct dwc3 *dwc, struct dwc3_ep *dep) |
| 1375 | { |
| 1376 | struct dwc3_request *req; |
| 1377 | struct usb_request *request; |
| 1378 | struct usb_ep *ep = &dep->endpoint; |
| 1379 | |
Felipe Balbi | 60cfb37 | 2016-05-24 13:45:17 +0300 | [diff] [blame] | 1380 | dwc3_trace(trace_dwc3_gadget, "queueing ZLP"); |
Felipe Balbi | 04c03d1 | 2015-12-02 10:06:45 -0600 | [diff] [blame] | 1381 | request = dwc3_gadget_ep_alloc_request(ep, GFP_ATOMIC); |
| 1382 | if (!request) |
| 1383 | return -ENOMEM; |
| 1384 | |
| 1385 | request->length = 0; |
| 1386 | request->buf = dwc->zlp_buf; |
| 1387 | request->complete = __dwc3_gadget_ep_zlp_complete; |
| 1388 | |
| 1389 | req = to_dwc3_request(request); |
| 1390 | |
| 1391 | return __dwc3_gadget_ep_queue(dep, req); |
| 1392 | } |
| 1393 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1394 | static int dwc3_gadget_ep_queue(struct usb_ep *ep, struct usb_request *request, |
| 1395 | gfp_t gfp_flags) |
| 1396 | { |
| 1397 | struct dwc3_request *req = to_dwc3_request(request); |
| 1398 | struct dwc3_ep *dep = to_dwc3_ep(ep); |
| 1399 | struct dwc3 *dwc = dep->dwc; |
| 1400 | |
| 1401 | unsigned long flags; |
| 1402 | |
| 1403 | int ret; |
| 1404 | |
Zhuang Jin Can | fdee4eb | 2014-09-03 14:26:34 +0800 | [diff] [blame] | 1405 | spin_lock_irqsave(&dwc->lock, flags); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 1406 | if (!dep->endpoint.desc) { |
| 1407 | dev_dbg(dwc->dev, "trying to queue request %p to disabled %s\n", |
| 1408 | request, ep->name); |
| 1409 | ret = -ESHUTDOWN; |
| 1410 | goto out; |
| 1411 | } |
| 1412 | |
| 1413 | if (WARN(req->dep != dep, "request %p belongs to '%s'\n", |
| 1414 | request, req->dep->name)) { |
| 1415 | ret = -EINVAL; |
| 1416 | goto out; |
| 1417 | } |
| 1418 | |
| 1419 | if (dwc3_gadget_is_suspended(dwc)) { |
| 1420 | if (dwc->gadget.remote_wakeup) |
| 1421 | dwc3_gadget_wakeup(&dwc->gadget); |
| 1422 | ret = dwc->gadget.remote_wakeup ? -EAGAIN : -ENOTSUPP; |
| 1423 | goto out; |
| 1424 | } |
| 1425 | |
Manu Gautam | 3df6a32 | 2017-03-06 16:24:59 -0800 | [diff] [blame] | 1426 | WARN(!dep->direction && (request->length % ep->desc->wMaxPacketSize), |
| 1427 | "trying to queue unaligned request (%d) with %s\n", |
| 1428 | request->length, ep->name); |
| 1429 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1430 | ret = __dwc3_gadget_ep_queue(dep, req); |
Felipe Balbi | 04c03d1 | 2015-12-02 10:06:45 -0600 | [diff] [blame] | 1431 | |
| 1432 | /* |
| 1433 | * Okay, here's the thing, if gadget driver has requested for a ZLP by |
| 1434 | * setting request->zero, instead of doing magic, we will just queue an |
| 1435 | * extra usb_request ourselves so that it gets handled the same way as |
| 1436 | * any other request. |
| 1437 | */ |
John Youn | d9261898 | 2015-12-22 12:23:20 -0800 | [diff] [blame] | 1438 | if (ret == 0 && request->zero && request->length && |
| 1439 | (request->length % ep->maxpacket == 0)) |
Felipe Balbi | 04c03d1 | 2015-12-02 10:06:45 -0600 | [diff] [blame] | 1440 | ret = __dwc3_gadget_ep_queue_zlp(dwc, dep); |
| 1441 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 1442 | out: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1443 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1444 | |
| 1445 | return ret; |
| 1446 | } |
| 1447 | |
| 1448 | static int dwc3_gadget_ep_dequeue(struct usb_ep *ep, |
| 1449 | struct usb_request *request) |
| 1450 | { |
| 1451 | struct dwc3_request *req = to_dwc3_request(request); |
| 1452 | struct dwc3_request *r = NULL; |
| 1453 | |
| 1454 | struct dwc3_ep *dep = to_dwc3_ep(ep); |
| 1455 | struct dwc3 *dwc = dep->dwc; |
| 1456 | |
| 1457 | unsigned long flags; |
| 1458 | int ret = 0; |
| 1459 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 1460 | if (atomic_read(&dwc->in_lpm)) { |
| 1461 | dev_err(dwc->dev, "Unable to dequeue while in LPM\n"); |
| 1462 | return -EAGAIN; |
| 1463 | } |
| 1464 | |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 1465 | trace_dwc3_ep_dequeue(req); |
| 1466 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1467 | spin_lock_irqsave(&dwc->lock, flags); |
| 1468 | |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 1469 | list_for_each_entry(r, &dep->pending_list, list) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1470 | if (r == req) |
| 1471 | break; |
| 1472 | } |
| 1473 | |
| 1474 | if (r != req) { |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 1475 | list_for_each_entry(r, &dep->started_list, list) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1476 | if (r == req) |
| 1477 | break; |
| 1478 | } |
| 1479 | if (r == req) { |
| 1480 | /* wait until it is processed */ |
Paul Zimmerman | b992e68 | 2012-04-27 14:17:35 +0300 | [diff] [blame] | 1481 | dwc3_stop_active_transfer(dwc, dep->number, true); |
Felipe Balbi | d1c93aa | 2017-03-08 13:56:37 -0800 | [diff] [blame] | 1482 | |
| 1483 | /* |
| 1484 | * If request was already started, this means we had to |
| 1485 | * stop the transfer. With that we also need to ignore |
| 1486 | * all TRBs used by the request, however TRBs can only |
| 1487 | * be modified after completion of END_TRANSFER |
| 1488 | * command. So what we do here is that we wait for |
| 1489 | * END_TRANSFER completion and only after that, we jump |
| 1490 | * over TRBs by clearing HWO and incrementing dequeue |
| 1491 | * pointer. |
| 1492 | * |
| 1493 | * Note that we have 2 possible types of transfers here: |
| 1494 | * |
| 1495 | * i) Linear buffer request |
| 1496 | * ii) SG-list based request |
| 1497 | * |
| 1498 | * SG-list based requests will have r->num_pending_sgs |
| 1499 | * set to a valid number (> 0). Linear requests, |
| 1500 | * normally use a single TRB. |
| 1501 | * |
| 1502 | * All of these cases need to be taken into |
| 1503 | * consideration so we don't mess up our TRB ring |
| 1504 | * pointers. |
| 1505 | */ |
| 1506 | if (!r->trb) |
| 1507 | goto out1; |
| 1508 | |
| 1509 | if (r->num_pending_sgs) { |
| 1510 | struct dwc3_trb *trb; |
| 1511 | int i = 0; |
| 1512 | |
| 1513 | for (i = 0; i < r->num_pending_sgs; i++) { |
| 1514 | trb = r->trb + i; |
| 1515 | trb->ctrl &= ~DWC3_TRB_CTRL_HWO; |
| 1516 | dwc3_ep_inc_deq(dep); |
| 1517 | } |
| 1518 | } else { |
| 1519 | struct dwc3_trb *trb = r->trb; |
| 1520 | |
| 1521 | trb->ctrl &= ~DWC3_TRB_CTRL_HWO; |
| 1522 | dwc3_ep_inc_deq(dep); |
| 1523 | } |
Pratyush Anand | e8d4e8b | 2012-06-15 11:54:00 +0530 | [diff] [blame] | 1524 | goto out1; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1525 | } |
Felipe Balbi | 3272bad | 2017-05-17 15:57:45 +0300 | [diff] [blame] | 1526 | dev_err(dwc->dev, "request %pK was not queued to %s\n", |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1527 | request, ep->name); |
| 1528 | ret = -EINVAL; |
| 1529 | goto out0; |
| 1530 | } |
| 1531 | |
Pratyush Anand | e8d4e8b | 2012-06-15 11:54:00 +0530 | [diff] [blame] | 1532 | out1: |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 1533 | dbg_event(dep->number, "DEQUEUE", 0); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1534 | /* giveback the request */ |
Felipe Balbi | d1c93aa | 2017-03-08 13:56:37 -0800 | [diff] [blame] | 1535 | dep->queued_requests--; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1536 | dwc3_gadget_giveback(dep, req, -ECONNRESET); |
| 1537 | |
| 1538 | out0: |
| 1539 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1540 | |
| 1541 | return ret; |
| 1542 | } |
| 1543 | |
Felipe Balbi | 7a60855 | 2014-09-24 14:19:52 -0500 | [diff] [blame] | 1544 | 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] | 1545 | { |
| 1546 | struct dwc3_gadget_ep_cmd_params params; |
| 1547 | struct dwc3 *dwc = dep->dwc; |
| 1548 | int ret; |
| 1549 | |
Mayank Rana | d223be4 | 2017-06-07 11:54:08 -0700 | [diff] [blame] | 1550 | if (!dep->endpoint.desc) { |
| 1551 | dev_dbg(dwc->dev, "(%s)'s desc is NULL.\n", dep->name); |
| 1552 | return -EINVAL; |
| 1553 | } |
| 1554 | |
Felipe Balbi | 5ad02fb | 2014-09-24 10:48:26 -0500 | [diff] [blame] | 1555 | if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) { |
| 1556 | dev_err(dwc->dev, "%s is of Isochronous type\n", dep->name); |
| 1557 | return -EINVAL; |
| 1558 | } |
| 1559 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1560 | memset(¶ms, 0x00, sizeof(params)); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 1561 | dbg_event(dep->number, "HALT", value); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1562 | if (value) { |
Felipe Balbi | 69450c4 | 2016-05-30 13:37:02 +0300 | [diff] [blame] | 1563 | struct dwc3_trb *trb; |
| 1564 | |
| 1565 | unsigned transfer_in_flight; |
| 1566 | unsigned started; |
| 1567 | |
| 1568 | if (dep->number > 1) |
| 1569 | trb = dwc3_ep_prev_trb(dep, dep->trb_enqueue); |
| 1570 | else |
| 1571 | trb = &dwc->ep0_trb[dep->trb_enqueue]; |
| 1572 | |
| 1573 | transfer_in_flight = trb->ctrl & DWC3_TRB_CTRL_HWO; |
| 1574 | started = !list_empty(&dep->started_list); |
| 1575 | |
| 1576 | if (!protocol && ((dep->direction && transfer_in_flight) || |
| 1577 | (!dep->direction && started))) { |
Felipe Balbi | ec5e795 | 2015-11-16 16:04:13 -0600 | [diff] [blame] | 1578 | dwc3_trace(trace_dwc3_gadget, |
Felipe Balbi | 052ba52ef | 2016-04-05 15:05:05 +0300 | [diff] [blame] | 1579 | "%s: pending request, cannot halt", |
Felipe Balbi | 7a60855 | 2014-09-24 14:19:52 -0500 | [diff] [blame] | 1580 | dep->name); |
| 1581 | return -EAGAIN; |
| 1582 | } |
| 1583 | |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 1584 | ret = dwc3_send_gadget_ep_cmd(dep, DWC3_DEPCMD_SETSTALL, |
| 1585 | ¶ms); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1586 | if (ret) |
Dan Carpenter | 3f89204 | 2014-03-07 14:20:22 +0300 | [diff] [blame] | 1587 | dev_err(dwc->dev, "failed to set STALL on %s\n", |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1588 | dep->name); |
| 1589 | else |
| 1590 | dep->flags |= DWC3_EP_STALL; |
| 1591 | } else { |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 1592 | |
John Youn | 50c763f | 2016-05-31 17:49:56 -0700 | [diff] [blame] | 1593 | ret = dwc3_send_clear_stall_ep_cmd(dep); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1594 | if (ret) |
Dan Carpenter | 3f89204 | 2014-03-07 14:20:22 +0300 | [diff] [blame] | 1595 | dev_err(dwc->dev, "failed to clear STALL on %s\n", |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1596 | dep->name); |
| 1597 | else |
Alan Stern | a535d81 | 2013-11-01 12:05:12 -0400 | [diff] [blame] | 1598 | dep->flags &= ~(DWC3_EP_STALL | DWC3_EP_WEDGE); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1599 | } |
Paul Zimmerman | 5275455 | 2011-09-30 10:58:44 +0300 | [diff] [blame] | 1600 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1601 | return ret; |
| 1602 | } |
| 1603 | |
| 1604 | static int dwc3_gadget_ep_set_halt(struct usb_ep *ep, int value) |
| 1605 | { |
| 1606 | struct dwc3_ep *dep = to_dwc3_ep(ep); |
| 1607 | struct dwc3 *dwc = dep->dwc; |
| 1608 | |
| 1609 | unsigned long flags; |
| 1610 | |
| 1611 | int ret; |
| 1612 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 1613 | if (!ep->desc) { |
| 1614 | dev_err(dwc->dev, "(%s)'s desc is NULL.\n", dep->name); |
| 1615 | return -EINVAL; |
| 1616 | } |
| 1617 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1618 | spin_lock_irqsave(&dwc->lock, flags); |
Felipe Balbi | 7a60855 | 2014-09-24 14:19:52 -0500 | [diff] [blame] | 1619 | ret = __dwc3_gadget_ep_set_halt(dep, value, false); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1620 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1621 | |
| 1622 | return ret; |
| 1623 | } |
| 1624 | |
| 1625 | static int dwc3_gadget_ep_set_wedge(struct usb_ep *ep) |
| 1626 | { |
| 1627 | struct dwc3_ep *dep = to_dwc3_ep(ep); |
Paul Zimmerman | 249a456 | 2012-02-24 17:32:16 -0800 | [diff] [blame] | 1628 | struct dwc3 *dwc = dep->dwc; |
| 1629 | unsigned long flags; |
Felipe Balbi | 95aa4e8 | 2014-09-24 10:50:14 -0500 | [diff] [blame] | 1630 | int ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1631 | |
Paul Zimmerman | 249a456 | 2012-02-24 17:32:16 -0800 | [diff] [blame] | 1632 | spin_lock_irqsave(&dwc->lock, flags); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 1633 | dbg_event(dep->number, "WEDGE", 0); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1634 | dep->flags |= DWC3_EP_WEDGE; |
| 1635 | |
Pratyush Anand | 08f0d96 | 2012-06-25 22:40:43 +0530 | [diff] [blame] | 1636 | if (dep->number == 0 || dep->number == 1) |
Felipe Balbi | 95aa4e8 | 2014-09-24 10:50:14 -0500 | [diff] [blame] | 1637 | ret = __dwc3_gadget_ep0_set_halt(ep, 1); |
Pratyush Anand | 08f0d96 | 2012-06-25 22:40:43 +0530 | [diff] [blame] | 1638 | else |
Felipe Balbi | 7a60855 | 2014-09-24 14:19:52 -0500 | [diff] [blame] | 1639 | ret = __dwc3_gadget_ep_set_halt(dep, 1, false); |
Felipe Balbi | 95aa4e8 | 2014-09-24 10:50:14 -0500 | [diff] [blame] | 1640 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1641 | |
| 1642 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1643 | } |
| 1644 | |
| 1645 | /* -------------------------------------------------------------------------- */ |
| 1646 | |
| 1647 | static struct usb_endpoint_descriptor dwc3_gadget_ep0_desc = { |
| 1648 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 1649 | .bDescriptorType = USB_DT_ENDPOINT, |
| 1650 | .bmAttributes = USB_ENDPOINT_XFER_CONTROL, |
| 1651 | }; |
| 1652 | |
| 1653 | static const struct usb_ep_ops dwc3_gadget_ep0_ops = { |
| 1654 | .enable = dwc3_gadget_ep0_enable, |
| 1655 | .disable = dwc3_gadget_ep0_disable, |
| 1656 | .alloc_request = dwc3_gadget_ep_alloc_request, |
| 1657 | .free_request = dwc3_gadget_ep_free_request, |
| 1658 | .queue = dwc3_gadget_ep0_queue, |
| 1659 | .dequeue = dwc3_gadget_ep_dequeue, |
Pratyush Anand | 08f0d96 | 2012-06-25 22:40:43 +0530 | [diff] [blame] | 1660 | .set_halt = dwc3_gadget_ep0_set_halt, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1661 | .set_wedge = dwc3_gadget_ep_set_wedge, |
| 1662 | }; |
| 1663 | |
| 1664 | static const struct usb_ep_ops dwc3_gadget_ep_ops = { |
| 1665 | .enable = dwc3_gadget_ep_enable, |
| 1666 | .disable = dwc3_gadget_ep_disable, |
| 1667 | .alloc_request = dwc3_gadget_ep_alloc_request, |
| 1668 | .free_request = dwc3_gadget_ep_free_request, |
| 1669 | .queue = dwc3_gadget_ep_queue, |
| 1670 | .dequeue = dwc3_gadget_ep_dequeue, |
| 1671 | .set_halt = dwc3_gadget_ep_set_halt, |
| 1672 | .set_wedge = dwc3_gadget_ep_set_wedge, |
| 1673 | }; |
| 1674 | |
| 1675 | /* -------------------------------------------------------------------------- */ |
| 1676 | |
| 1677 | static int dwc3_gadget_get_frame(struct usb_gadget *g) |
| 1678 | { |
| 1679 | struct dwc3 *dwc = gadget_to_dwc(g); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1680 | |
Felipe Balbi | cf23b5b | 2016-10-21 13:07:09 +0300 | [diff] [blame] | 1681 | return __dwc3_gadget_get_frame(dwc); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1682 | } |
| 1683 | |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1684 | static int __dwc3_gadget_wakeup(struct dwc3 *dwc) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1685 | { |
Nicolas Saenz Julienne | d6011f6 | 2016-08-16 10:22:38 +0100 | [diff] [blame] | 1686 | int retries; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1687 | |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1688 | int ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1689 | u32 reg; |
| 1690 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1691 | u8 link_state; |
| 1692 | u8 speed; |
| 1693 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1694 | /* |
| 1695 | * According to the Databook Remote wakeup request should |
| 1696 | * be issued only when the device is in early suspend state. |
| 1697 | * |
| 1698 | * We can check that via USB Link State bits in DSTS register. |
| 1699 | */ |
| 1700 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 1701 | |
| 1702 | speed = reg & DWC3_DSTS_CONNECTSPD; |
John Youn | ee5cd41 | 2016-02-05 17:08:45 -0800 | [diff] [blame] | 1703 | if ((speed == DWC3_DSTS_SUPERSPEED) || |
| 1704 | (speed == DWC3_DSTS_SUPERSPEED_PLUS)) { |
Felipe Balbi | 60cfb37 | 2016-05-24 13:45:17 +0300 | [diff] [blame] | 1705 | dwc3_trace(trace_dwc3_gadget, "no wakeup on SuperSpeed"); |
Felipe Balbi | 6b74289 | 2016-05-13 10:19:42 +0300 | [diff] [blame] | 1706 | return 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1707 | } |
| 1708 | |
| 1709 | link_state = DWC3_DSTS_USBLNKST(reg); |
| 1710 | |
| 1711 | switch (link_state) { |
| 1712 | case DWC3_LINK_STATE_RX_DET: /* in HS, means Early Suspend */ |
| 1713 | case DWC3_LINK_STATE_U3: /* in HS, means SUSPEND */ |
| 1714 | break; |
| 1715 | default: |
Felipe Balbi | ec5e795 | 2015-11-16 16:04:13 -0600 | [diff] [blame] | 1716 | dwc3_trace(trace_dwc3_gadget, |
Felipe Balbi | 60cfb37 | 2016-05-24 13:45:17 +0300 | [diff] [blame] | 1717 | "can't wakeup from '%s'", |
Felipe Balbi | ec5e795 | 2015-11-16 16:04:13 -0600 | [diff] [blame] | 1718 | dwc3_gadget_link_string(link_state)); |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1719 | return -EINVAL; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1720 | } |
| 1721 | |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 1722 | ret = dwc3_gadget_set_link_state(dwc, DWC3_LINK_STATE_RECOV); |
| 1723 | if (ret < 0) { |
| 1724 | dev_err(dwc->dev, "failed to put link in Recovery\n"); |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1725 | return ret; |
Felipe Balbi | 8598bde | 2012-01-02 18:55:57 +0200 | [diff] [blame] | 1726 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1727 | |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 1728 | /* Recent versions do this automatically */ |
| 1729 | if (dwc->revision < DWC3_REVISION_194A) { |
| 1730 | /* write zeroes to Link Change Request */ |
Felipe Balbi | fcc023c | 2012-05-24 10:27:56 +0300 | [diff] [blame] | 1731 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 1732 | reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK; |
| 1733 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 1734 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1735 | |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 1736 | /* poll until Link State changes to ON */ |
Nicolas Saenz Julienne | d6011f6 | 2016-08-16 10:22:38 +0100 | [diff] [blame] | 1737 | retries = 20000; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1738 | |
Nicolas Saenz Julienne | d6011f6 | 2016-08-16 10:22:38 +0100 | [diff] [blame] | 1739 | while (retries--) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1740 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 1741 | |
| 1742 | /* in HS, means ON */ |
| 1743 | if (DWC3_DSTS_USBLNKST(reg) == DWC3_LINK_STATE_U0) |
| 1744 | break; |
| 1745 | } |
| 1746 | |
| 1747 | if (DWC3_DSTS_USBLNKST(reg) != DWC3_LINK_STATE_U0) { |
| 1748 | dev_err(dwc->dev, "failed to send remote wakeup\n"); |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1749 | return -EINVAL; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1750 | } |
| 1751 | |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1752 | return 0; |
| 1753 | } |
| 1754 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 1755 | #define DWC3_PM_RESUME_RETRIES 20 /* Max Number of retries */ |
| 1756 | #define DWC3_PM_RESUME_DELAY 100 /* 100 msec */ |
| 1757 | |
| 1758 | static void dwc3_gadget_wakeup_work(struct work_struct *w) |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1759 | { |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 1760 | struct dwc3 *dwc; |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1761 | int ret; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 1762 | static int retry_count; |
| 1763 | |
| 1764 | dwc = container_of(w, struct dwc3, wakeup_work); |
| 1765 | |
| 1766 | ret = pm_runtime_get_sync(dwc->dev); |
| 1767 | if (ret) { |
| 1768 | /* pm_runtime_get_sync returns -EACCES error between |
| 1769 | * late_suspend and early_resume, wait for system resume to |
| 1770 | * finish and queue work again |
| 1771 | */ |
| 1772 | pr_debug("PM runtime get sync failed, ret %d\n", ret); |
| 1773 | if (ret == -EACCES) { |
| 1774 | pm_runtime_put_noidle(dwc->dev); |
| 1775 | if (retry_count == DWC3_PM_RESUME_RETRIES) { |
| 1776 | retry_count = 0; |
| 1777 | pr_err("pm_runtime_get_sync timed out\n"); |
| 1778 | return; |
| 1779 | } |
| 1780 | msleep(DWC3_PM_RESUME_DELAY); |
| 1781 | retry_count++; |
| 1782 | schedule_work(&dwc->wakeup_work); |
| 1783 | return; |
| 1784 | } |
| 1785 | } |
| 1786 | retry_count = 0; |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 1787 | dbg_event(0xFF, "Gdgwake gsyn", |
| 1788 | atomic_read(&dwc->dev->power.usage_count)); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 1789 | |
| 1790 | ret = dwc3_gadget_wakeup_int(dwc); |
| 1791 | |
| 1792 | if (ret) |
| 1793 | pr_err("Remote wakeup failed. ret = %d.\n", ret); |
| 1794 | else |
| 1795 | pr_debug("Remote wakeup succeeded.\n"); |
| 1796 | |
| 1797 | pm_runtime_put_noidle(dwc->dev); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 1798 | dbg_event(0xFF, "Gdgwake put", |
| 1799 | atomic_read(&dwc->dev->power.usage_count)); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 1800 | } |
| 1801 | |
| 1802 | static int dwc3_gadget_wakeup_int(struct dwc3 *dwc) |
| 1803 | { |
| 1804 | bool link_recover_only = false; |
| 1805 | |
| 1806 | u32 reg; |
| 1807 | int ret = 0; |
| 1808 | u8 link_state; |
| 1809 | unsigned long flags; |
| 1810 | |
| 1811 | pr_debug("%s(): Entry\n", __func__); |
| 1812 | disable_irq(dwc->irq); |
| 1813 | spin_lock_irqsave(&dwc->lock, flags); |
| 1814 | /* |
| 1815 | * According to the Databook Remote wakeup request should |
| 1816 | * be issued only when the device is in early suspend state. |
| 1817 | * |
| 1818 | * We can check that via USB Link State bits in DSTS register. |
| 1819 | */ |
| 1820 | link_state = dwc3_get_link_state(dwc); |
| 1821 | |
| 1822 | switch (link_state) { |
| 1823 | case DWC3_LINK_STATE_RX_DET: /* in HS, means Early Suspend */ |
| 1824 | case DWC3_LINK_STATE_U3: /* in HS, means SUSPEND */ |
| 1825 | break; |
| 1826 | case DWC3_LINK_STATE_U1: |
| 1827 | if (dwc->gadget.speed != USB_SPEED_SUPER) { |
| 1828 | link_recover_only = true; |
| 1829 | break; |
| 1830 | } |
| 1831 | /* Intentional fallthrough */ |
| 1832 | default: |
| 1833 | dev_dbg(dwc->dev, "can't wakeup from link state %d\n", |
| 1834 | link_state); |
| 1835 | ret = -EINVAL; |
| 1836 | goto out; |
| 1837 | } |
| 1838 | |
| 1839 | /* Enable LINK STATUS change event */ |
| 1840 | reg = dwc3_readl(dwc->regs, DWC3_DEVTEN); |
| 1841 | reg |= DWC3_DEVTEN_ULSTCNGEN; |
| 1842 | dwc3_writel(dwc->regs, DWC3_DEVTEN, reg); |
| 1843 | /* |
| 1844 | * memory barrier is required to make sure that required events |
| 1845 | * with core is enabled before performing RECOVERY mechnism. |
| 1846 | */ |
| 1847 | mb(); |
| 1848 | |
| 1849 | ret = dwc3_gadget_set_link_state(dwc, DWC3_LINK_STATE_RECOV); |
| 1850 | if (ret < 0) { |
| 1851 | dev_err(dwc->dev, "failed to put link in Recovery\n"); |
| 1852 | /* Disable LINK STATUS change */ |
| 1853 | reg = dwc3_readl(dwc->regs, DWC3_DEVTEN); |
| 1854 | reg &= ~DWC3_DEVTEN_ULSTCNGEN; |
| 1855 | dwc3_writel(dwc->regs, DWC3_DEVTEN, reg); |
| 1856 | /* Required to complete this operation before returning */ |
| 1857 | mb(); |
| 1858 | goto out; |
| 1859 | } |
| 1860 | |
| 1861 | /* Recent versions do this automatically */ |
| 1862 | if (dwc->revision < DWC3_REVISION_194A) { |
| 1863 | /* write zeroes to Link Change Request */ |
| 1864 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 1865 | reg &= ~DWC3_DCTL_ULSTCHNGREQ_MASK; |
| 1866 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 1867 | } |
| 1868 | |
| 1869 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1870 | enable_irq(dwc->irq); |
| 1871 | |
| 1872 | /* |
| 1873 | * Have bigger value (16 sec) for timeout since some host PCs driving |
| 1874 | * resume for very long time (e.g. 8 sec) |
| 1875 | */ |
| 1876 | ret = wait_event_interruptible_timeout(dwc->wait_linkstate, |
| 1877 | (dwc->link_state < DWC3_LINK_STATE_U3) || |
| 1878 | (dwc->link_state == DWC3_LINK_STATE_SS_DIS), |
| 1879 | msecs_to_jiffies(16000)); |
Felipe Balbi | 218ef7b | 2016-04-04 11:24:04 +0300 | [diff] [blame] | 1880 | |
| 1881 | spin_lock_irqsave(&dwc->lock, flags); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 1882 | /* Disable link status change event */ |
| 1883 | reg = dwc3_readl(dwc->regs, DWC3_DEVTEN); |
| 1884 | reg &= ~DWC3_DEVTEN_ULSTCNGEN; |
| 1885 | dwc3_writel(dwc->regs, DWC3_DEVTEN, reg); |
| 1886 | /* |
| 1887 | * Complete this write before we go ahead and perform resume |
| 1888 | * as we don't need link status change notificaiton anymore. |
| 1889 | */ |
| 1890 | mb(); |
| 1891 | |
| 1892 | if (!ret) { |
| 1893 | dev_dbg(dwc->dev, "Timeout moving into state(%d)\n", |
| 1894 | dwc->link_state); |
| 1895 | ret = -EINVAL; |
| 1896 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1897 | goto out1; |
| 1898 | } else { |
| 1899 | ret = 0; |
| 1900 | /* |
| 1901 | * If USB is disconnected OR received RESET from host, |
| 1902 | * don't perform resume |
| 1903 | */ |
| 1904 | if (dwc->link_state == DWC3_LINK_STATE_SS_DIS || |
| 1905 | dwc->gadget.state == USB_STATE_DEFAULT) |
| 1906 | link_recover_only = true; |
| 1907 | } |
| 1908 | |
| 1909 | /* |
| 1910 | * According to DWC3 databook, the controller does not |
| 1911 | * trigger a wakeup event when remote-wakeup is used. |
| 1912 | * Hence, after remote-wakeup sequence is complete, and |
| 1913 | * the device is back at U0 state, it is required that |
| 1914 | * the resume sequence is initiated by SW. |
| 1915 | */ |
| 1916 | if (!link_recover_only) |
| 1917 | dwc3_gadget_wakeup_interrupt(dwc, true); |
| 1918 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1919 | spin_unlock_irqrestore(&dwc->lock, flags); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 1920 | pr_debug("%s: Exit\n", __func__); |
| 1921 | return ret; |
| 1922 | |
| 1923 | out: |
| 1924 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1925 | enable_irq(dwc->irq); |
| 1926 | |
| 1927 | out1: |
| 1928 | return ret; |
| 1929 | } |
| 1930 | |
| 1931 | static int dwc_gadget_func_wakeup(struct usb_gadget *g, int interface_id) |
| 1932 | { |
| 1933 | int ret = 0; |
| 1934 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 1935 | |
| 1936 | if (!g || (g->speed != USB_SPEED_SUPER)) |
| 1937 | return -ENOTSUPP; |
| 1938 | |
| 1939 | if (dwc3_gadget_is_suspended(dwc)) { |
| 1940 | pr_debug("USB bus is suspended. Scheduling wakeup and returning -EAGAIN.\n"); |
| 1941 | dwc3_gadget_wakeup(&dwc->gadget); |
| 1942 | return -EAGAIN; |
| 1943 | } |
| 1944 | |
| 1945 | if (dwc->revision < DWC3_REVISION_220A) { |
| 1946 | ret = dwc3_send_gadget_generic_command(dwc, |
| 1947 | DWC3_DGCMD_XMIT_FUNCTION, interface_id); |
| 1948 | } else { |
| 1949 | ret = dwc3_send_gadget_generic_command(dwc, |
| 1950 | DWC3_DGCMD_XMIT_DEV, 0x1 | (interface_id << 4)); |
| 1951 | } |
| 1952 | |
| 1953 | if (ret) |
| 1954 | pr_err("Function wakeup HW command failed.\n"); |
| 1955 | else |
| 1956 | pr_debug("Function wakeup HW command succeeded.\n"); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1957 | |
| 1958 | return ret; |
| 1959 | } |
| 1960 | |
| 1961 | static int dwc3_gadget_set_selfpowered(struct usb_gadget *g, |
| 1962 | int is_selfpowered) |
| 1963 | { |
| 1964 | struct dwc3 *dwc = gadget_to_dwc(g); |
Paul Zimmerman | 249a456 | 2012-02-24 17:32:16 -0800 | [diff] [blame] | 1965 | unsigned long flags; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1966 | |
Paul Zimmerman | 249a456 | 2012-02-24 17:32:16 -0800 | [diff] [blame] | 1967 | spin_lock_irqsave(&dwc->lock, flags); |
Peter Chen | bcdea50 | 2015-01-28 16:32:40 +0800 | [diff] [blame] | 1968 | g->is_selfpowered = !!is_selfpowered; |
Paul Zimmerman | 249a456 | 2012-02-24 17:32:16 -0800 | [diff] [blame] | 1969 | spin_unlock_irqrestore(&dwc->lock, flags); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1970 | |
| 1971 | return 0; |
| 1972 | } |
| 1973 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 1974 | #define DWC3_SOFT_RESET_TIMEOUT 10 /* 10 msec */ |
Felipe Balbi | 7b2a036 | 2013-12-19 13:43:19 -0600 | [diff] [blame] | 1975 | 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] | 1976 | { |
| 1977 | u32 reg; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 1978 | u32 timeout = 1500; |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 1979 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1980 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
Felipe Balbi | 8db7ed1 | 2012-01-18 18:32:29 +0200 | [diff] [blame] | 1981 | if (is_on) { |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 1982 | dbg_event(0xFF, "Pullup_enable", is_on); |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 1983 | if (dwc->revision <= DWC3_REVISION_187A) { |
| 1984 | reg &= ~DWC3_DCTL_TRGTULST_MASK; |
| 1985 | reg |= DWC3_DCTL_TRGTULST_RX_DET; |
| 1986 | } |
| 1987 | |
| 1988 | if (dwc->revision >= DWC3_REVISION_194A) |
| 1989 | reg &= ~DWC3_DCTL_KEEP_CONNECT; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 1990 | |
| 1991 | dwc3_event_buffers_setup(dwc); |
| 1992 | dwc3_gadget_restart(dwc); |
| 1993 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 1994 | reg |= DWC3_DCTL_RUN_STOP; |
Felipe Balbi | 7b2a036 | 2013-12-19 13:43:19 -0600 | [diff] [blame] | 1995 | |
| 1996 | if (dwc->has_hibernation) |
| 1997 | reg |= DWC3_DCTL_KEEP_CONNECT; |
| 1998 | |
Felipe Balbi | 9fcb3bd | 2013-02-08 17:55:58 +0200 | [diff] [blame] | 1999 | dwc->pullups_connected = true; |
Felipe Balbi | 8db7ed1 | 2012-01-18 18:32:29 +0200 | [diff] [blame] | 2000 | } else { |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 2001 | dbg_event(0xFF, "Pullup_disable", is_on); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2002 | dwc3_gadget_disable_irq(dwc); |
| 2003 | __dwc3_gadget_ep_disable(dwc->eps[0]); |
| 2004 | __dwc3_gadget_ep_disable(dwc->eps[1]); |
| 2005 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2006 | reg &= ~DWC3_DCTL_RUN_STOP; |
Felipe Balbi | 7b2a036 | 2013-12-19 13:43:19 -0600 | [diff] [blame] | 2007 | |
| 2008 | if (dwc->has_hibernation && !suspend) |
| 2009 | reg &= ~DWC3_DCTL_KEEP_CONNECT; |
| 2010 | |
Felipe Balbi | 9fcb3bd | 2013-02-08 17:55:58 +0200 | [diff] [blame] | 2011 | dwc->pullups_connected = false; |
Felipe Balbi | 8db7ed1 | 2012-01-18 18:32:29 +0200 | [diff] [blame] | 2012 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2013 | |
| 2014 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 2015 | |
| 2016 | do { |
| 2017 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
Felipe Balbi | b6d4e16 | 2016-06-09 16:47:05 +0300 | [diff] [blame] | 2018 | reg &= DWC3_DSTS_DEVCTRLHLT; |
| 2019 | } while (--timeout && !(!is_on ^ !reg)); |
Felipe Balbi | f2df679 | 2016-06-09 16:31:34 +0300 | [diff] [blame] | 2020 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2021 | if (!timeout) { |
| 2022 | dev_err(dwc->dev, "failed to %s controller\n", |
| 2023 | is_on ? "start" : "stop"); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 2024 | if (is_on) |
| 2025 | dbg_event(0xFF, "STARTTOUT", reg); |
| 2026 | else |
| 2027 | dbg_event(0xFF, "STOPTOUT", reg); |
Felipe Balbi | f2df679 | 2016-06-09 16:31:34 +0300 | [diff] [blame] | 2028 | return -ETIMEDOUT; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2029 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2030 | |
Felipe Balbi | 7381528 | 2015-01-27 13:48:14 -0600 | [diff] [blame] | 2031 | dwc3_trace(trace_dwc3_gadget, "gadget %s data soft-%s", |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2032 | dwc->gadget_driver |
| 2033 | ? dwc->gadget_driver->function : "no-function", |
| 2034 | is_on ? "connect" : "disconnect"); |
Pratyush Anand | 6f17f74 | 2012-07-02 10:21:55 +0530 | [diff] [blame] | 2035 | |
| 2036 | return 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2037 | } |
| 2038 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2039 | static int dwc3_gadget_vbus_draw(struct usb_gadget *g, unsigned int mA) |
| 2040 | { |
| 2041 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 2042 | |
| 2043 | dwc->vbus_draw = mA; |
| 2044 | dev_dbg(dwc->dev, "Notify controller from %s. mA = %u\n", __func__, mA); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 2045 | dbg_event(0xFF, "currentDraw", mA); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2046 | dwc3_notify_event(dwc, DWC3_CONTROLLER_SET_CURRENT_DRAW_EVENT); |
| 2047 | return 0; |
| 2048 | } |
| 2049 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2050 | static int dwc3_gadget_pullup(struct usb_gadget *g, int is_on) |
| 2051 | { |
| 2052 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 2053 | unsigned long flags; |
Pratyush Anand | 6f17f74 | 2012-07-02 10:21:55 +0530 | [diff] [blame] | 2054 | int ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2055 | |
| 2056 | is_on = !!is_on; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2057 | dwc->softconnect = is_on; |
| 2058 | if ((dwc->is_drd && !dwc->vbus_active) || !dwc->gadget_driver) { |
| 2059 | /* |
| 2060 | * Need to wait for vbus_session(on) from otg driver or to |
| 2061 | * the udc_start. |
| 2062 | */ |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 2063 | dbg_event(0xFF, "WaitPullup", 0); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2064 | return 0; |
| 2065 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2066 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2067 | pm_runtime_get_sync(dwc->dev); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 2068 | dbg_event(0xFF, "Pullup gsync", |
| 2069 | atomic_read(&dwc->dev->power.usage_count)); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2070 | spin_lock_irqsave(&dwc->lock, flags); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2071 | /* |
| 2072 | * If we are here after bus suspend notify otg state machine to |
| 2073 | * increment pm usage count of dwc to prevent pm_runtime_suspend |
| 2074 | * during enumeration. |
| 2075 | */ |
| 2076 | dwc->b_suspend = false; |
| 2077 | dwc3_notify_event(dwc, DWC3_CONTROLLER_NOTIFY_OTG_EVENT); |
Felipe Balbi | 7b2a036 | 2013-12-19 13:43:19 -0600 | [diff] [blame] | 2078 | ret = dwc3_gadget_run_stop(dwc, is_on, false); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2079 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 2080 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2081 | pm_runtime_mark_last_busy(dwc->dev); |
| 2082 | pm_runtime_put_autosuspend(dwc->dev); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 2083 | dbg_event(0xFF, "Pullup put", |
| 2084 | atomic_read(&dwc->dev->power.usage_count)); |
Pratyush Anand | 6f17f74 | 2012-07-02 10:21:55 +0530 | [diff] [blame] | 2085 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2086 | } |
| 2087 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2088 | void dwc3_gadget_enable_irq(struct dwc3 *dwc) |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 2089 | { |
| 2090 | u32 reg; |
| 2091 | |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 2092 | dbg_event(0xFF, "UnmaskINT", 0); |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 2093 | /* Enable all but Start and End of Frame IRQs */ |
| 2094 | reg = (DWC3_DEVTEN_VNDRDEVTSTRCVEDEN | |
| 2095 | DWC3_DEVTEN_EVNTOVERFLOWEN | |
| 2096 | DWC3_DEVTEN_CMDCMPLTEN | |
| 2097 | DWC3_DEVTEN_ERRTICERREN | |
| 2098 | DWC3_DEVTEN_WKUPEVTEN | |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 2099 | DWC3_DEVTEN_CONNECTDONEEN | |
| 2100 | DWC3_DEVTEN_USBRSTEN | |
| 2101 | DWC3_DEVTEN_DISCONNEVTEN); |
| 2102 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2103 | /* |
| 2104 | * Enable SUSPENDEVENT(BIT:6) for version 230A and above |
| 2105 | * else enable USB Link change event (BIT:3) for older version |
| 2106 | */ |
| 2107 | if (dwc->revision < DWC3_REVISION_230A) |
| 2108 | reg |= DWC3_DEVTEN_ULSTCNGEN; |
| 2109 | else |
| 2110 | reg |= DWC3_DEVTEN_SUSPEND; |
| 2111 | |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 2112 | dwc3_writel(dwc->regs, DWC3_DEVTEN, reg); |
| 2113 | } |
| 2114 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2115 | void dwc3_gadget_disable_irq(struct dwc3 *dwc) |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 2116 | { |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 2117 | dbg_event(0xFF, "MaskINT", 0); |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 2118 | /* mask all interrupts */ |
| 2119 | dwc3_writel(dwc->regs, DWC3_DEVTEN, 0x00); |
| 2120 | } |
| 2121 | |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 2122 | static irqreturn_t dwc3_thread_interrupt(int irq, void *_dwc); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2123 | static void dwc3_gadget_disconnect_interrupt(struct dwc3 *dwc); |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 2124 | |
Felipe Balbi | 4e99472 | 2016-05-13 14:09:59 +0300 | [diff] [blame] | 2125 | /** |
| 2126 | * dwc3_gadget_setup_nump - Calculate and initialize NUMP field of DCFG |
| 2127 | * dwc: pointer to our context structure |
| 2128 | * |
| 2129 | * The following looks like complex but it's actually very simple. In order to |
| 2130 | * calculate the number of packets we can burst at once on OUT transfers, we're |
| 2131 | * gonna use RxFIFO size. |
| 2132 | * |
| 2133 | * To calculate RxFIFO size we need two numbers: |
| 2134 | * MDWIDTH = size, in bits, of the internal memory bus |
| 2135 | * RAM2_DEPTH = depth, in MDWIDTH, of internal RAM2 (where RxFIFO sits) |
| 2136 | * |
| 2137 | * Given these two numbers, the formula is simple: |
| 2138 | * |
| 2139 | * RxFIFO Size = (RAM2_DEPTH * MDWIDTH / 8) - 24 - 16; |
| 2140 | * |
| 2141 | * 24 bytes is for 3x SETUP packets |
| 2142 | * 16 bytes is a clock domain crossing tolerance |
| 2143 | * |
| 2144 | * Given RxFIFO Size, NUMP = RxFIFOSize / 1024; |
| 2145 | */ |
| 2146 | static void dwc3_gadget_setup_nump(struct dwc3 *dwc) |
| 2147 | { |
| 2148 | u32 ram2_depth; |
| 2149 | u32 mdwidth; |
| 2150 | u32 nump; |
| 2151 | u32 reg; |
| 2152 | |
| 2153 | ram2_depth = DWC3_GHWPARAMS7_RAM2_DEPTH(dwc->hwparams.hwparams7); |
| 2154 | mdwidth = DWC3_GHWPARAMS0_MDWIDTH(dwc->hwparams.hwparams0); |
| 2155 | |
| 2156 | nump = ((ram2_depth * mdwidth / 8) - 24 - 16) / 1024; |
| 2157 | nump = min_t(u32, nump, 16); |
| 2158 | |
| 2159 | /* update NumP */ |
| 2160 | reg = dwc3_readl(dwc->regs, DWC3_DCFG); |
| 2161 | reg &= ~DWC3_DCFG_NUMP_MASK; |
| 2162 | reg |= nump << DWC3_DCFG_NUMP_SHIFT; |
| 2163 | dwc3_writel(dwc->regs, DWC3_DCFG, reg); |
| 2164 | } |
| 2165 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2166 | static int dwc3_gadget_vbus_session(struct usb_gadget *_gadget, int is_active) |
| 2167 | { |
| 2168 | struct dwc3 *dwc = gadget_to_dwc(_gadget); |
| 2169 | unsigned long flags; |
| 2170 | |
| 2171 | if (!dwc->is_drd) |
| 2172 | return -EPERM; |
| 2173 | |
| 2174 | is_active = !!is_active; |
| 2175 | |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 2176 | dbg_event(0xFF, "VbusSess", is_active); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2177 | spin_lock_irqsave(&dwc->lock, flags); |
| 2178 | |
| 2179 | /* Mark that the vbus was powered */ |
| 2180 | dwc->vbus_active = is_active; |
| 2181 | |
| 2182 | /* |
| 2183 | * Check if upper level usb_gadget_driver was already registered with |
| 2184 | * this udc controller driver (if dwc3_gadget_start was called) |
| 2185 | */ |
| 2186 | if (dwc->gadget_driver && dwc->softconnect) { |
| 2187 | if (dwc->vbus_active) { |
| 2188 | /* |
| 2189 | * Both vbus was activated by otg and pullup was |
| 2190 | * signaled by the gadget driver. |
| 2191 | */ |
| 2192 | dwc3_gadget_run_stop(dwc, 1, false); |
| 2193 | } else { |
| 2194 | dwc3_gadget_run_stop(dwc, 0, false); |
| 2195 | } |
| 2196 | } |
| 2197 | |
| 2198 | /* |
| 2199 | * Clearing run/stop bit might occur before disconnect event is seen. |
| 2200 | * Make sure to let gadget driver know in that case. |
| 2201 | */ |
| 2202 | if (!dwc->vbus_active) { |
| 2203 | dev_dbg(dwc->dev, "calling disconnect from %s\n", __func__); |
| 2204 | dwc3_gadget_disconnect_interrupt(dwc); |
| 2205 | } |
| 2206 | |
| 2207 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 2208 | return 0; |
| 2209 | } |
| 2210 | |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 2211 | static int __dwc3_gadget_start(struct dwc3 *dwc) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2212 | { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2213 | struct dwc3_ep *dep; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2214 | int ret = 0; |
| 2215 | u32 reg; |
| 2216 | |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 2217 | dbg_event(0xFF, "__Gadgetstart", 0); |
John Youn | 26cac20 | 2016-11-14 12:32:43 -0800 | [diff] [blame] | 2218 | |
| 2219 | /* |
| 2220 | * Use IMOD if enabled via dwc->imod_interval. Otherwise, if |
| 2221 | * the core supports IMOD, disable it. |
| 2222 | */ |
| 2223 | if (dwc->imod_interval) { |
| 2224 | dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), dwc->imod_interval); |
| 2225 | dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), DWC3_GEVNTCOUNT_EHB); |
| 2226 | } else if (dwc3_has_imod(dwc)) { |
| 2227 | dwc3_writel(dwc->regs, DWC3_DEV_IMOD(0), 0); |
| 2228 | } |
| 2229 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2230 | reg = dwc3_readl(dwc->regs, DWC3_DCFG); |
| 2231 | reg &= ~(DWC3_DCFG_SPEED_MASK); |
Felipe Balbi | 07e7f47 | 2012-03-23 12:20:31 +0200 | [diff] [blame] | 2232 | |
| 2233 | /** |
| 2234 | * WORKAROUND: DWC3 revision < 2.20a have an issue |
| 2235 | * which would cause metastability state on Run/Stop |
| 2236 | * bit if we try to force the IP to USB2-only mode. |
| 2237 | * |
| 2238 | * Because of that, we cannot configure the IP to any |
| 2239 | * speed other than the SuperSpeed |
| 2240 | * |
| 2241 | * Refers to: |
| 2242 | * |
| 2243 | * STAR#9000525659: Clock Domain Crossing on DCTL in |
| 2244 | * USB 2.0 Mode |
| 2245 | */ |
Felipe Balbi | f7e846f | 2013-06-30 14:29:51 +0300 | [diff] [blame] | 2246 | if (dwc->revision < DWC3_REVISION_220A) { |
Felipe Balbi | 07e7f47 | 2012-03-23 12:20:31 +0200 | [diff] [blame] | 2247 | reg |= DWC3_DCFG_SUPERSPEED; |
Felipe Balbi | f7e846f | 2013-06-30 14:29:51 +0300 | [diff] [blame] | 2248 | } else { |
| 2249 | switch (dwc->maximum_speed) { |
| 2250 | case USB_SPEED_LOW: |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 2251 | reg |= DWC3_DCFG_LOWSPEED; |
Felipe Balbi | f7e846f | 2013-06-30 14:29:51 +0300 | [diff] [blame] | 2252 | break; |
| 2253 | case USB_SPEED_FULL: |
Roger Quadros | 5e3c292 | 2017-01-03 14:32:09 +0200 | [diff] [blame] | 2254 | reg |= DWC3_DCFG_FULLSPEED; |
Felipe Balbi | f7e846f | 2013-06-30 14:29:51 +0300 | [diff] [blame] | 2255 | break; |
| 2256 | case USB_SPEED_HIGH: |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 2257 | reg |= DWC3_DCFG_HIGHSPEED; |
Felipe Balbi | f7e846f | 2013-06-30 14:29:51 +0300 | [diff] [blame] | 2258 | break; |
John Youn | 7580862 | 2016-02-05 17:09:13 -0800 | [diff] [blame] | 2259 | case USB_SPEED_SUPER_PLUS: |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 2260 | reg |= DWC3_DCFG_SUPERSPEED_PLUS; |
John Youn | 7580862 | 2016-02-05 17:09:13 -0800 | [diff] [blame] | 2261 | break; |
Felipe Balbi | f7e846f | 2013-06-30 14:29:51 +0300 | [diff] [blame] | 2262 | default: |
John Youn | 77966eb | 2016-02-19 17:31:01 -0800 | [diff] [blame] | 2263 | dev_err(dwc->dev, "invalid dwc->maximum_speed (%d)\n", |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2264 | dwc->maximum_speed); |
John Youn | 77966eb | 2016-02-19 17:31:01 -0800 | [diff] [blame] | 2265 | /* fall through */ |
| 2266 | case USB_SPEED_SUPER: |
| 2267 | reg |= DWC3_DCFG_SUPERSPEED; |
| 2268 | break; |
Felipe Balbi | f7e846f | 2013-06-30 14:29:51 +0300 | [diff] [blame] | 2269 | } |
| 2270 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2271 | dwc3_writel(dwc->regs, DWC3_DCFG, reg); |
| 2272 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2273 | /* Programs the number of outstanding pipelined transfer requests |
| 2274 | * the AXI master pushes to the AXI slave. |
Felipe Balbi | 2a58f9c | 2016-04-28 10:56:28 +0300 | [diff] [blame] | 2275 | */ |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2276 | if (dwc->revision >= DWC3_REVISION_270A) { |
| 2277 | reg = dwc3_readl(dwc->regs, DWC3_GSBUSCFG1); |
| 2278 | reg &= ~DWC3_GSBUSCFG1_PIPETRANSLIMIT_MASK; |
| 2279 | reg |= DWC3_GSBUSCFG1_PIPETRANSLIMIT(0xe); |
| 2280 | dwc3_writel(dwc->regs, DWC3_GSBUSCFG1, reg); |
| 2281 | } |
Felipe Balbi | 2a58f9c | 2016-04-28 10:56:28 +0300 | [diff] [blame] | 2282 | |
Felipe Balbi | 4e99472 | 2016-05-13 14:09:59 +0300 | [diff] [blame] | 2283 | dwc3_gadget_setup_nump(dwc); |
| 2284 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2285 | /* Start with SuperSpeed Default */ |
| 2286 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512); |
| 2287 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2288 | dwc->delayed_status = false; |
| 2289 | /* reinitialize physical ep0-1 */ |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2290 | dep = dwc->eps[0]; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2291 | dep->flags = 0; |
| 2292 | dep->endpoint.maxburst = 1; |
Paul Zimmerman | 265b70a | 2013-12-19 12:38:49 -0600 | [diff] [blame] | 2293 | ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, false, |
| 2294 | false); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2295 | if (ret) { |
| 2296 | dev_err(dwc->dev, "failed to enable %s\n", dep->name); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2297 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2298 | } |
| 2299 | |
| 2300 | dep = dwc->eps[1]; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2301 | dep->flags = 0; |
| 2302 | dep->endpoint.maxburst = 1; |
Paul Zimmerman | 265b70a | 2013-12-19 12:38:49 -0600 | [diff] [blame] | 2303 | ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, false, |
| 2304 | false); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2305 | if (ret) { |
| 2306 | dev_err(dwc->dev, "failed to enable %s\n", dep->name); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2307 | __dwc3_gadget_ep_disable(dwc->eps[0]); |
| 2308 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2309 | } |
| 2310 | |
| 2311 | /* begin to receive SETUP packets */ |
Felipe Balbi | c7fcdeb | 2011-08-27 22:28:36 +0300 | [diff] [blame] | 2312 | dwc->ep0state = EP0_SETUP_PHASE; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2313 | dwc3_ep0_out_start(dwc); |
| 2314 | |
Felipe Balbi | 8698e2a | 2013-02-08 15:24:04 +0200 | [diff] [blame] | 2315 | dwc3_gadget_enable_irq(dwc); |
| 2316 | |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 2317 | return ret; |
| 2318 | } |
| 2319 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2320 | /* Required gadget re-initialization before switching to gadget in OTG mode */ |
| 2321 | void dwc3_gadget_restart(struct dwc3 *dwc) |
| 2322 | { |
| 2323 | __dwc3_gadget_start(dwc); |
| 2324 | } |
| 2325 | |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 2326 | static int dwc3_gadget_start(struct usb_gadget *g, |
| 2327 | struct usb_gadget_driver *driver) |
| 2328 | { |
| 2329 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 2330 | unsigned long flags; |
| 2331 | int ret = 0; |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 2332 | |
| 2333 | spin_lock_irqsave(&dwc->lock, flags); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2334 | |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 2335 | if (dwc->gadget_driver) { |
| 2336 | dev_err(dwc->dev, "%s is already bound to %s\n", |
| 2337 | dwc->gadget.name, |
| 2338 | dwc->gadget_driver->driver.name); |
| 2339 | ret = -EBUSY; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2340 | goto err0; |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 2341 | } |
| 2342 | |
| 2343 | dwc->gadget_driver = driver; |
| 2344 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2345 | /* |
| 2346 | * For DRD, this might get called by gadget driver during bootup |
| 2347 | * even though host mode might be active. Don't actually perform |
| 2348 | * device-specific initialization until device mode is activated. |
| 2349 | * In that case dwc3_gadget_restart() will handle it. |
| 2350 | */ |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2351 | spin_unlock_irqrestore(&dwc->lock, flags); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2352 | return 0; |
| 2353 | |
Felipe Balbi | b0d7ffd | 2013-06-27 10:00:18 +0300 | [diff] [blame] | 2354 | err0: |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2355 | spin_unlock_irqrestore(&dwc->lock, flags); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2356 | return ret; |
| 2357 | } |
| 2358 | |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 2359 | static void __dwc3_gadget_stop(struct dwc3 *dwc) |
| 2360 | { |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 2361 | dbg_event(0xFF, "__Gadgetstop", 0); |
Felipe Balbi | d7be295 | 2016-05-04 15:49:37 +0300 | [diff] [blame] | 2362 | dwc3_gadget_disable_irq(dwc); |
| 2363 | __dwc3_gadget_ep_disable(dwc->eps[0]); |
| 2364 | __dwc3_gadget_ep_disable(dwc->eps[1]); |
| 2365 | } |
| 2366 | |
Felipe Balbi | 22835b8 | 2014-10-17 12:05:12 -0500 | [diff] [blame] | 2367 | static int dwc3_gadget_stop(struct usb_gadget *g) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2368 | { |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2369 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 2370 | unsigned long flags; |
| 2371 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2372 | spin_lock_irqsave(&dwc->lock, flags); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2373 | dwc->gadget_driver = NULL; |
Mayank Rana | bb7c0d5 | 2016-11-10 10:15:44 -0800 | [diff] [blame] | 2374 | spin_unlock_irqrestore(&dwc->lock, flags); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2375 | |
Mayank Rana | f0a4512 | 2017-11-13 16:56:40 -0800 | [diff] [blame] | 2376 | dbg_event(0xFF, "fwq_started", 0); |
| 2377 | flush_workqueue(dwc->dwc_wq); |
| 2378 | dbg_event(0xFF, "fwq_completed", 0); |
| 2379 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2380 | return 0; |
| 2381 | } |
Paul Zimmerman | 802fde9 | 2012-04-27 13:10:52 +0300 | [diff] [blame] | 2382 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2383 | static int dwc3_gadget_restart_usb_session(struct usb_gadget *g) |
| 2384 | { |
| 2385 | struct dwc3 *dwc = gadget_to_dwc(g); |
| 2386 | |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 2387 | dbg_event(0xFF, "RestartUSBSession", 0); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2388 | return dwc3_notify_event(dwc, DWC3_CONTROLLER_RESTART_USB_SESSION); |
| 2389 | } |
| 2390 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2391 | static const struct usb_gadget_ops dwc3_gadget_ops = { |
| 2392 | .get_frame = dwc3_gadget_get_frame, |
| 2393 | .wakeup = dwc3_gadget_wakeup, |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2394 | .func_wakeup = dwc_gadget_func_wakeup, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2395 | .set_selfpowered = dwc3_gadget_set_selfpowered, |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2396 | .vbus_session = dwc3_gadget_vbus_session, |
| 2397 | .vbus_draw = dwc3_gadget_vbus_draw, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2398 | .pullup = dwc3_gadget_pullup, |
| 2399 | .udc_start = dwc3_gadget_start, |
| 2400 | .udc_stop = dwc3_gadget_stop, |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2401 | .restart = dwc3_gadget_restart_usb_session, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2402 | }; |
| 2403 | |
| 2404 | /* -------------------------------------------------------------------------- */ |
| 2405 | |
Devdutt Patnaik | 9b7ea1b | 2016-01-25 12:50:22 -0800 | [diff] [blame] | 2406 | #define NUM_GSI_OUT_EPS 1 |
| 2407 | #define NUM_GSI_IN_EPS 2 |
| 2408 | |
Felipe Balbi | 6a1e3ef | 2011-05-05 16:21:59 +0300 | [diff] [blame] | 2409 | static int dwc3_gadget_init_hw_endpoints(struct dwc3 *dwc, |
| 2410 | u8 num, u32 direction) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2411 | { |
| 2412 | struct dwc3_ep *dep; |
Devdutt Patnaik | 9b7ea1b | 2016-01-25 12:50:22 -0800 | [diff] [blame] | 2413 | u8 i, gsi_ep_count, gsi_ep_index = 0; |
| 2414 | |
| 2415 | gsi_ep_count = NUM_GSI_OUT_EPS + NUM_GSI_IN_EPS; |
| 2416 | /* OUT GSI EPs based on direction field */ |
| 2417 | if (gsi_ep_count && !direction) |
| 2418 | gsi_ep_count = NUM_GSI_OUT_EPS; |
| 2419 | /* IN GSI EPs */ |
| 2420 | else if (gsi_ep_count && direction) |
| 2421 | gsi_ep_count = NUM_GSI_IN_EPS; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2422 | |
Felipe Balbi | 6a1e3ef | 2011-05-05 16:21:59 +0300 | [diff] [blame] | 2423 | for (i = 0; i < num; i++) { |
John Youn | d07fa66 | 2016-05-23 11:32:43 -0700 | [diff] [blame] | 2424 | u8 epnum = (i << 1) | (direction ? 1 : 0); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2425 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2426 | dep = kzalloc(sizeof(*dep), GFP_KERNEL); |
Jingoo Han | 734d5a5 | 2014-07-17 12:45:11 +0900 | [diff] [blame] | 2427 | if (!dep) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2428 | return -ENOMEM; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2429 | |
| 2430 | dep->dwc = dwc; |
| 2431 | dep->number = epnum; |
Felipe Balbi | 9aa62ae | 2013-07-12 19:10:59 +0300 | [diff] [blame] | 2432 | dep->direction = !!direction; |
Felipe Balbi | 2eb8801 | 2016-04-12 16:53:39 +0300 | [diff] [blame] | 2433 | dep->regs = dwc->regs + DWC3_DEP_BASE(epnum); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2434 | dwc->eps[epnum] = dep; |
| 2435 | |
Devdutt Patnaik | 9b7ea1b | 2016-01-25 12:50:22 -0800 | [diff] [blame] | 2436 | /* Reserve EPs at the end for GSI based on gsi_ep_count */ |
| 2437 | if ((gsi_ep_index < gsi_ep_count) && |
| 2438 | (i > (num - 1 - gsi_ep_count))) { |
| 2439 | gsi_ep_index++; |
| 2440 | /* For GSI EPs, name eps as "gsi-epin" or "gsi-epout" */ |
| 2441 | snprintf(dep->name, sizeof(dep->name), "%s", |
| 2442 | (epnum & 1) ? "gsi-epin" : "gsi-epout"); |
| 2443 | /* Set ep type as GSI */ |
| 2444 | dep->endpoint.ep_type = EP_TYPE_GSI; |
| 2445 | } else { |
| 2446 | snprintf(dep->name, sizeof(dep->name), "ep%d%s", |
| 2447 | epnum >> 1, (epnum & 1) ? "in" : "out"); |
| 2448 | } |
Felipe Balbi | 6a1e3ef | 2011-05-05 16:21:59 +0300 | [diff] [blame] | 2449 | |
Devdutt Patnaik | 9b7ea1b | 2016-01-25 12:50:22 -0800 | [diff] [blame] | 2450 | dep->endpoint.ep_num = epnum >> 1; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2451 | dep->endpoint.name = dep->name; |
Felipe Balbi | 74674cb | 2016-04-13 16:44:39 +0300 | [diff] [blame] | 2452 | spin_lock_init(&dep->lock); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2453 | |
Felipe Balbi | 7381528 | 2015-01-27 13:48:14 -0600 | [diff] [blame] | 2454 | dwc3_trace(trace_dwc3_gadget, "initializing %s", dep->name); |
Felipe Balbi | 653df35 | 2013-07-12 19:11:57 +0300 | [diff] [blame] | 2455 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2456 | if (epnum == 0 || epnum == 1) { |
Robert Baldyga | e117e74 | 2013-12-13 12:23:38 +0100 | [diff] [blame] | 2457 | usb_ep_set_maxpacket_limit(&dep->endpoint, 512); |
Pratyush Anand | 6048e4c | 2013-01-18 16:53:56 +0530 | [diff] [blame] | 2458 | dep->endpoint.maxburst = 1; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2459 | dep->endpoint.ops = &dwc3_gadget_ep0_ops; |
| 2460 | if (!epnum) |
| 2461 | dwc->gadget.ep0 = &dep->endpoint; |
| 2462 | } else { |
| 2463 | int ret; |
| 2464 | |
Robert Baldyga | e117e74 | 2013-12-13 12:23:38 +0100 | [diff] [blame] | 2465 | usb_ep_set_maxpacket_limit(&dep->endpoint, 1024); |
Sebastian Andrzej Siewior | 12d36c1 | 2011-11-03 20:27:50 +0100 | [diff] [blame] | 2466 | dep->endpoint.max_streams = 15; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2467 | dep->endpoint.ops = &dwc3_gadget_ep_ops; |
| 2468 | list_add_tail(&dep->endpoint.ep_list, |
| 2469 | &dwc->gadget.ep_list); |
| 2470 | |
| 2471 | ret = dwc3_alloc_trb_pool(dep); |
Felipe Balbi | 25b8ff6 | 2011-11-04 12:32:47 +0200 | [diff] [blame] | 2472 | if (ret) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2473 | return ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2474 | } |
Felipe Balbi | 25b8ff6 | 2011-11-04 12:32:47 +0200 | [diff] [blame] | 2475 | |
Robert Baldyga | a474d3b | 2015-07-31 16:00:19 +0200 | [diff] [blame] | 2476 | if (epnum == 0 || epnum == 1) { |
| 2477 | dep->endpoint.caps.type_control = true; |
| 2478 | } else { |
| 2479 | dep->endpoint.caps.type_iso = true; |
| 2480 | dep->endpoint.caps.type_bulk = true; |
| 2481 | dep->endpoint.caps.type_int = true; |
| 2482 | } |
| 2483 | |
| 2484 | dep->endpoint.caps.dir_in = !!direction; |
| 2485 | dep->endpoint.caps.dir_out = !direction; |
| 2486 | |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 2487 | INIT_LIST_HEAD(&dep->pending_list); |
| 2488 | INIT_LIST_HEAD(&dep->started_list); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2489 | } |
| 2490 | |
| 2491 | return 0; |
| 2492 | } |
| 2493 | |
Felipe Balbi | 6a1e3ef | 2011-05-05 16:21:59 +0300 | [diff] [blame] | 2494 | static int dwc3_gadget_init_endpoints(struct dwc3 *dwc) |
| 2495 | { |
| 2496 | int ret; |
| 2497 | |
| 2498 | INIT_LIST_HEAD(&dwc->gadget.ep_list); |
| 2499 | |
| 2500 | ret = dwc3_gadget_init_hw_endpoints(dwc, dwc->num_out_eps, 0); |
| 2501 | if (ret < 0) { |
Felipe Balbi | 7381528 | 2015-01-27 13:48:14 -0600 | [diff] [blame] | 2502 | dwc3_trace(trace_dwc3_gadget, |
| 2503 | "failed to allocate OUT endpoints"); |
Felipe Balbi | 6a1e3ef | 2011-05-05 16:21:59 +0300 | [diff] [blame] | 2504 | return ret; |
| 2505 | } |
| 2506 | |
| 2507 | ret = dwc3_gadget_init_hw_endpoints(dwc, dwc->num_in_eps, 1); |
| 2508 | if (ret < 0) { |
Felipe Balbi | 7381528 | 2015-01-27 13:48:14 -0600 | [diff] [blame] | 2509 | dwc3_trace(trace_dwc3_gadget, |
| 2510 | "failed to allocate IN endpoints"); |
Felipe Balbi | 6a1e3ef | 2011-05-05 16:21:59 +0300 | [diff] [blame] | 2511 | return ret; |
| 2512 | } |
| 2513 | |
| 2514 | return 0; |
| 2515 | } |
| 2516 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2517 | static void dwc3_gadget_free_endpoints(struct dwc3 *dwc) |
| 2518 | { |
| 2519 | struct dwc3_ep *dep; |
| 2520 | u8 epnum; |
| 2521 | |
| 2522 | for (epnum = 0; epnum < DWC3_ENDPOINTS_NUM; epnum++) { |
| 2523 | dep = dwc->eps[epnum]; |
Felipe Balbi | 6a1e3ef | 2011-05-05 16:21:59 +0300 | [diff] [blame] | 2524 | if (!dep) |
| 2525 | continue; |
George Cherian | 5bf8fae | 2013-05-27 14:35:49 +0530 | [diff] [blame] | 2526 | /* |
| 2527 | * Physical endpoints 0 and 1 are special; they form the |
| 2528 | * bi-directional USB endpoint 0. |
| 2529 | * |
| 2530 | * For those two physical endpoints, we don't allocate a TRB |
| 2531 | * pool nor do we add them the endpoints list. Due to that, we |
| 2532 | * shouldn't do these two operations otherwise we would end up |
| 2533 | * with all sorts of bugs when removing dwc3.ko. |
| 2534 | */ |
| 2535 | if (epnum != 0 && epnum != 1) { |
| 2536 | dwc3_free_trb_pool(dep); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2537 | list_del(&dep->endpoint.ep_list); |
George Cherian | 5bf8fae | 2013-05-27 14:35:49 +0530 | [diff] [blame] | 2538 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2539 | |
| 2540 | kfree(dep); |
| 2541 | } |
| 2542 | } |
| 2543 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2544 | /* -------------------------------------------------------------------------- */ |
Felipe Balbi | e5caff6 | 2013-02-26 15:11:05 +0200 | [diff] [blame] | 2545 | |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2546 | static int __dwc3_cleanup_done_trbs(struct dwc3 *dwc, struct dwc3_ep *dep, |
| 2547 | struct dwc3_request *req, struct dwc3_trb *trb, |
Felipe Balbi | e5b36ae | 2016-08-10 11:13:26 +0300 | [diff] [blame] | 2548 | const struct dwc3_event_depevt *event, int status, |
| 2549 | int chain) |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2550 | { |
| 2551 | unsigned int count; |
| 2552 | unsigned int s_pkt = 0; |
| 2553 | unsigned int trb_status; |
| 2554 | |
Felipe Balbi | dc55c67 | 2016-08-12 13:20:32 +0300 | [diff] [blame] | 2555 | dwc3_ep_inc_deq(dep); |
Felipe Balbi | a9c3ca5 | 2016-10-05 14:24:37 +0300 | [diff] [blame] | 2556 | |
| 2557 | if (req->trb == trb) |
| 2558 | dep->queued_requests--; |
| 2559 | |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 2560 | trace_dwc3_complete_trb(dep, trb); |
| 2561 | |
Felipe Balbi | e5b36ae | 2016-08-10 11:13:26 +0300 | [diff] [blame] | 2562 | /* |
| 2563 | * If we're in the middle of series of chained TRBs and we |
| 2564 | * receive a short transfer along the way, DWC3 will skip |
| 2565 | * through all TRBs including the last TRB in the chain (the |
| 2566 | * where CHN bit is zero. DWC3 will also avoid clearing HWO |
| 2567 | * bit and SW has to do it manually. |
| 2568 | * |
| 2569 | * We're going to do that here to avoid problems of HW trying |
| 2570 | * to use bogus TRBs for transfers. |
| 2571 | */ |
| 2572 | if (chain && (trb->ctrl & DWC3_TRB_CTRL_HWO)) |
| 2573 | trb->ctrl &= ~DWC3_TRB_CTRL_HWO; |
| 2574 | |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2575 | if ((trb->ctrl & DWC3_TRB_CTRL_HWO) && status != -ESHUTDOWN) |
Felipe Balbi | a0ad85a | 2016-08-10 18:07:46 +0300 | [diff] [blame] | 2576 | return 1; |
Felipe Balbi | e5b36ae | 2016-08-10 11:13:26 +0300 | [diff] [blame] | 2577 | |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2578 | count = trb->size & DWC3_TRB_SIZE_MASK; |
Felipe Balbi | dc55c67 | 2016-08-12 13:20:32 +0300 | [diff] [blame] | 2579 | req->request.actual += count; |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2580 | |
| 2581 | if (dep->direction) { |
| 2582 | if (count) { |
| 2583 | trb_status = DWC3_TRB_SIZE_TRBSTS(trb->size); |
| 2584 | if (trb_status == DWC3_TRBSTS_MISSED_ISOC) { |
Felipe Balbi | ec5e795 | 2015-11-16 16:04:13 -0600 | [diff] [blame] | 2585 | dwc3_trace(trace_dwc3_gadget, |
Felipe Balbi | 60cfb37 | 2016-05-24 13:45:17 +0300 | [diff] [blame] | 2586 | "%s: incomplete IN transfer", |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2587 | dep->name); |
| 2588 | /* |
| 2589 | * If missed isoc occurred and there is |
| 2590 | * no request queued then issue END |
| 2591 | * TRANSFER, so that core generates |
| 2592 | * next xfernotready and we will issue |
| 2593 | * a fresh START TRANSFER. |
| 2594 | * If there are still queued request |
| 2595 | * then wait, do not issue either END |
| 2596 | * or UPDATE TRANSFER, just attach next |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 2597 | * request in pending_list during |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2598 | * giveback.If any future queued request |
| 2599 | * is successfully transferred then we |
| 2600 | * will issue UPDATE TRANSFER for all |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 2601 | * request in the pending_list. |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2602 | */ |
| 2603 | dep->flags |= DWC3_EP_MISSED_ISOC; |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 2604 | dbg_event(dep->number, "MISSED ISOC", status); |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2605 | } else { |
| 2606 | dev_err(dwc->dev, "incomplete IN transfer %s\n", |
| 2607 | dep->name); |
| 2608 | status = -ECONNRESET; |
| 2609 | } |
| 2610 | } else { |
| 2611 | dep->flags &= ~DWC3_EP_MISSED_ISOC; |
| 2612 | } |
| 2613 | } else { |
| 2614 | if (count && (event->status & DEPEVT_STATUS_SHORT)) |
| 2615 | s_pkt = 1; |
| 2616 | } |
| 2617 | |
Felipe Balbi | 7c705df | 2016-08-10 12:35:30 +0300 | [diff] [blame] | 2618 | if (s_pkt && !chain) |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2619 | return 1; |
Felipe Balbi | f99f53f | 2016-08-12 13:19:20 +0300 | [diff] [blame] | 2620 | |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2621 | if ((event->status & DEPEVT_STATUS_IOC) && |
| 2622 | (trb->ctrl & DWC3_TRB_CTRL_IOC)) |
| 2623 | return 1; |
Felipe Balbi | f99f53f | 2016-08-12 13:19:20 +0300 | [diff] [blame] | 2624 | |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2625 | return 0; |
| 2626 | } |
| 2627 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2628 | static int dwc3_cleanup_done_reqs(struct dwc3 *dwc, struct dwc3_ep *dep, |
| 2629 | const struct dwc3_event_depevt *event, int status) |
| 2630 | { |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2631 | struct dwc3_request *req, *n; |
Felipe Balbi | f6bafc6 | 2012-02-06 11:04:53 +0200 | [diff] [blame] | 2632 | struct dwc3_trb *trb; |
Arnd Bergmann | d6e10bf | 2016-09-09 12:01:51 +0200 | [diff] [blame] | 2633 | bool ioc = false; |
Pratyush Anand | e5ba5ec | 2013-01-14 15:59:37 +0530 | [diff] [blame] | 2634 | int ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2635 | |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2636 | list_for_each_entry_safe(req, n, &dep->started_list, list) { |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 2637 | unsigned length; |
| 2638 | unsigned actual; |
Felipe Balbi | e5b36ae | 2016-08-10 11:13:26 +0300 | [diff] [blame] | 2639 | int chain; |
| 2640 | |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 2641 | length = req->request.length; |
| 2642 | chain = req->num_pending_sgs > 0; |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2643 | if (chain) { |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 2644 | struct scatterlist *sg = req->sg; |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2645 | struct scatterlist *s; |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 2646 | unsigned int pending = req->num_pending_sgs; |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2647 | unsigned int i; |
Felipe Balbi | ac7bdcc | 2015-11-16 16:13:57 -0600 | [diff] [blame] | 2648 | |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 2649 | for_each_sg(sg, s, pending, i) { |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2650 | trb = &dep->trb_pool[dep->trb_dequeue]; |
Felipe Balbi | c7de573 | 2016-07-29 03:17:58 +0300 | [diff] [blame] | 2651 | |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 2652 | req->sg = sg_next(s); |
| 2653 | req->num_pending_sgs--; |
| 2654 | |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2655 | ret = __dwc3_cleanup_done_trbs(dwc, dep, req, trb, |
| 2656 | event, status, chain); |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 2657 | if (ret) |
| 2658 | break; |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2659 | } |
| 2660 | } else { |
Felipe Balbi | 737f1ae | 2016-08-11 12:24:27 +0300 | [diff] [blame] | 2661 | trb = &dep->trb_pool[dep->trb_dequeue]; |
Ville Syrjälä | d115d70 | 2015-08-31 19:48:28 +0300 | [diff] [blame] | 2662 | ret = __dwc3_cleanup_done_trbs(dwc, dep, req, trb, |
Felipe Balbi | e5b36ae | 2016-08-10 11:13:26 +0300 | [diff] [blame] | 2663 | event, status, chain); |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2664 | } |
Ville Syrjälä | d115d70 | 2015-08-31 19:48:28 +0300 | [diff] [blame] | 2665 | |
Felipe Balbi | c7de573 | 2016-07-29 03:17:58 +0300 | [diff] [blame] | 2666 | /* |
| 2667 | * We assume here we will always receive the entire data block |
| 2668 | * which we should receive. Meaning, if we program RX to |
| 2669 | * receive 4K but we receive only 2K, we assume that's all we |
| 2670 | * should receive and we simply bounce the request back to the |
| 2671 | * gadget driver for further processing. |
| 2672 | */ |
Felipe Balbi | 1f51211 | 2016-08-12 13:17:27 +0300 | [diff] [blame] | 2673 | actual = length - req->request.actual; |
| 2674 | req->request.actual = actual; |
| 2675 | |
| 2676 | if (ret && chain && (actual < length) && req->num_pending_sgs) |
| 2677 | return __dwc3_gadget_kick_transfer(dep, 0); |
| 2678 | |
Ville Syrjälä | d115d70 | 2015-08-31 19:48:28 +0300 | [diff] [blame] | 2679 | dwc3_gadget_giveback(dep, req, status); |
| 2680 | |
Arnd Bergmann | d6e10bf | 2016-09-09 12:01:51 +0200 | [diff] [blame] | 2681 | if (ret) { |
| 2682 | if ((event->status & DEPEVT_STATUS_IOC) && |
| 2683 | (trb->ctrl & DWC3_TRB_CTRL_IOC)) |
| 2684 | ioc = true; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2685 | break; |
Arnd Bergmann | d6e10bf | 2016-09-09 12:01:51 +0200 | [diff] [blame] | 2686 | } |
Felipe Balbi | 31162af | 2016-08-11 14:38:37 +0300 | [diff] [blame] | 2687 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2688 | |
Felipe Balbi | 4cb4221 | 2016-05-18 12:37:21 +0300 | [diff] [blame] | 2689 | /* |
| 2690 | * Our endpoint might get disabled by another thread during |
| 2691 | * dwc3_gadget_giveback(). If that happens, we're just gonna return 1 |
| 2692 | * early on so DWC3_EP_BUSY flag gets cleared |
| 2693 | */ |
| 2694 | if (!dep->endpoint.desc) |
| 2695 | return 1; |
| 2696 | |
Pratyush Anand | cdc359d | 2013-01-14 15:59:34 +0530 | [diff] [blame] | 2697 | if (usb_endpoint_xfer_isoc(dep->endpoint.desc) && |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 2698 | list_empty(&dep->started_list)) { |
| 2699 | if (list_empty(&dep->pending_list)) { |
Pratyush Anand | cdc359d | 2013-01-14 15:59:34 +0530 | [diff] [blame] | 2700 | /* |
| 2701 | * If there is no entry in request list then do |
| 2702 | * not issue END TRANSFER now. Just set PENDING |
| 2703 | * flag, so that END TRANSFER is issued when an |
| 2704 | * entry is added into request list. |
| 2705 | */ |
| 2706 | dep->flags = DWC3_EP_PENDING_REQUEST; |
| 2707 | } else { |
Paul Zimmerman | b992e68 | 2012-04-27 14:17:35 +0300 | [diff] [blame] | 2708 | dwc3_stop_active_transfer(dwc, dep->number, true); |
Pratyush Anand | cdc359d | 2013-01-14 15:59:34 +0530 | [diff] [blame] | 2709 | dep->flags = DWC3_EP_ENABLED; |
| 2710 | } |
Pratyush Anand | 7efea86 | 2013-01-14 15:59:32 +0530 | [diff] [blame] | 2711 | return 1; |
| 2712 | } |
| 2713 | |
Arnd Bergmann | d6e10bf | 2016-09-09 12:01:51 +0200 | [diff] [blame] | 2714 | if (usb_endpoint_xfer_isoc(dep->endpoint.desc) && ioc) |
| 2715 | return 0; |
| 2716 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2717 | return 1; |
| 2718 | } |
| 2719 | |
| 2720 | static void dwc3_endpoint_transfer_complete(struct dwc3 *dwc, |
Jingoo Han | 029d97f | 2014-07-04 15:00:51 +0900 | [diff] [blame] | 2721 | struct dwc3_ep *dep, const struct dwc3_event_depevt *event) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2722 | { |
| 2723 | unsigned status = 0; |
| 2724 | int clean_busy; |
Felipe Balbi | e18b797 | 2015-05-29 10:06:38 -0500 | [diff] [blame] | 2725 | u32 is_xfer_complete; |
| 2726 | |
| 2727 | is_xfer_complete = (event->endpoint_event == DWC3_DEPEVT_XFERCOMPLETE); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2728 | |
| 2729 | if (event->status & DEPEVT_STATUS_BUSERR) |
| 2730 | status = -ECONNRESET; |
| 2731 | |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 2732 | clean_busy = dwc3_cleanup_done_reqs(dwc, dep, event, status); |
Felipe Balbi | 4cb4221 | 2016-05-18 12:37:21 +0300 | [diff] [blame] | 2733 | if (clean_busy && (!dep->endpoint.desc || is_xfer_complete || |
Felipe Balbi | e18b797 | 2015-05-29 10:06:38 -0500 | [diff] [blame] | 2734 | usb_endpoint_xfer_isoc(dep->endpoint.desc))) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2735 | dep->flags &= ~DWC3_EP_BUSY; |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 2736 | |
| 2737 | /* |
| 2738 | * WORKAROUND: This is the 2nd half of U1/U2 -> U0 workaround. |
| 2739 | * See dwc3_gadget_linksts_change_interrupt() for 1st half. |
| 2740 | */ |
| 2741 | if (dwc->revision < DWC3_REVISION_183A) { |
| 2742 | u32 reg; |
| 2743 | int i; |
| 2744 | |
| 2745 | for (i = 0; i < DWC3_ENDPOINTS_NUM; i++) { |
Moiz Sonasath | 348e026 | 2012-08-01 14:08:30 -0500 | [diff] [blame] | 2746 | dep = dwc->eps[i]; |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 2747 | |
| 2748 | if (!(dep->flags & DWC3_EP_ENABLED)) |
| 2749 | continue; |
| 2750 | |
Felipe Balbi | aa3342c | 2016-03-14 11:01:31 +0200 | [diff] [blame] | 2751 | if (!list_empty(&dep->started_list)) |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 2752 | return; |
| 2753 | } |
| 2754 | |
| 2755 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 2756 | reg |= dwc->u1u2; |
| 2757 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 2758 | |
| 2759 | dwc->u1u2 = 0; |
| 2760 | } |
Felipe Balbi | 8a1a9c9 | 2015-09-21 14:32:00 -0500 | [diff] [blame] | 2761 | |
Felipe Balbi | 4cb4221 | 2016-05-18 12:37:21 +0300 | [diff] [blame] | 2762 | /* |
| 2763 | * Our endpoint might get disabled by another thread during |
| 2764 | * dwc3_gadget_giveback(). If that happens, we're just gonna return 1 |
| 2765 | * early on so DWC3_EP_BUSY flag gets cleared |
| 2766 | */ |
| 2767 | if (!dep->endpoint.desc) |
| 2768 | return; |
| 2769 | |
Felipe Balbi | e6e709b | 2015-09-28 15:16:56 -0500 | [diff] [blame] | 2770 | if (!usb_endpoint_xfer_isoc(dep->endpoint.desc)) { |
Felipe Balbi | 8a1a9c9 | 2015-09-21 14:32:00 -0500 | [diff] [blame] | 2771 | int ret; |
| 2772 | |
Felipe Balbi | 4fae2e3 | 2016-05-12 16:53:59 +0300 | [diff] [blame] | 2773 | ret = __dwc3_gadget_kick_transfer(dep, 0); |
Felipe Balbi | 8a1a9c9 | 2015-09-21 14:32:00 -0500 | [diff] [blame] | 2774 | if (!ret || ret == -EBUSY) |
| 2775 | return; |
| 2776 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2777 | } |
| 2778 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2779 | static void dwc3_endpoint_interrupt(struct dwc3 *dwc, |
| 2780 | const struct dwc3_event_depevt *event) |
| 2781 | { |
| 2782 | struct dwc3_ep *dep; |
| 2783 | u8 epnum = event->endpoint_number; |
| 2784 | |
| 2785 | dep = dwc->eps[epnum]; |
| 2786 | |
Felipe Balbi | 3336abb | 2012-06-06 09:19:35 +0300 | [diff] [blame] | 2787 | if (!(dep->flags & DWC3_EP_ENABLED)) |
| 2788 | return; |
| 2789 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2790 | if (epnum == 0 || epnum == 1) { |
| 2791 | dwc3_ep0_interrupt(dwc, event); |
| 2792 | return; |
| 2793 | } |
| 2794 | |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 2795 | dep->dbg_ep_events.total++; |
| 2796 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2797 | switch (event->endpoint_event) { |
| 2798 | case DWC3_DEPEVT_XFERCOMPLETE: |
Felipe Balbi | b4996a8 | 2012-06-06 12:04:13 +0300 | [diff] [blame] | 2799 | dep->resource_index = 0; |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 2800 | dep->dbg_ep_events.xfercomplete++; |
Paul Zimmerman | c2df85c | 2012-02-24 17:32:18 -0800 | [diff] [blame] | 2801 | |
Ido Shayevitz | 16e78db | 2012-03-12 20:25:24 +0200 | [diff] [blame] | 2802 | if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) { |
Felipe Balbi | ec5e795 | 2015-11-16 16:04:13 -0600 | [diff] [blame] | 2803 | dwc3_trace(trace_dwc3_gadget, |
Felipe Balbi | 60cfb37 | 2016-05-24 13:45:17 +0300 | [diff] [blame] | 2804 | "%s is an Isochronous endpoint", |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2805 | dep->name); |
| 2806 | return; |
| 2807 | } |
| 2808 | |
Jingoo Han | 029d97f | 2014-07-04 15:00:51 +0900 | [diff] [blame] | 2809 | dwc3_endpoint_transfer_complete(dwc, dep, event); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2810 | break; |
| 2811 | case DWC3_DEPEVT_XFERINPROGRESS: |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 2812 | dep->dbg_ep_events.xferinprogress++; |
Jingoo Han | 029d97f | 2014-07-04 15:00:51 +0900 | [diff] [blame] | 2813 | dwc3_endpoint_transfer_complete(dwc, dep, event); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2814 | break; |
| 2815 | case DWC3_DEPEVT_XFERNOTREADY: |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 2816 | dep->dbg_ep_events.xfernotready++; |
Ido Shayevitz | 16e78db | 2012-03-12 20:25:24 +0200 | [diff] [blame] | 2817 | if (usb_endpoint_xfer_isoc(dep->endpoint.desc)) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2818 | dwc3_gadget_start_isoc(dwc, dep, event); |
| 2819 | } else { |
Felipe Balbi | 6bb4fe1 | 2015-09-28 14:49:02 -0500 | [diff] [blame] | 2820 | int active; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2821 | int ret; |
| 2822 | |
Felipe Balbi | 6bb4fe1 | 2015-09-28 14:49:02 -0500 | [diff] [blame] | 2823 | active = event->status & DEPEVT_STATUS_TRANSFER_ACTIVE; |
| 2824 | |
Felipe Balbi | 7381528 | 2015-01-27 13:48:14 -0600 | [diff] [blame] | 2825 | dwc3_trace(trace_dwc3_gadget, "%s: reason %s", |
Felipe Balbi | 6bb4fe1 | 2015-09-28 14:49:02 -0500 | [diff] [blame] | 2826 | dep->name, active ? "Transfer Active" |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2827 | : "Transfer Not Active"); |
| 2828 | |
Felipe Balbi | 4fae2e3 | 2016-05-12 16:53:59 +0300 | [diff] [blame] | 2829 | ret = __dwc3_gadget_kick_transfer(dep, 0); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2830 | if (!ret || ret == -EBUSY) |
| 2831 | return; |
| 2832 | |
Felipe Balbi | ec5e795 | 2015-11-16 16:04:13 -0600 | [diff] [blame] | 2833 | dwc3_trace(trace_dwc3_gadget, |
Felipe Balbi | 60cfb37 | 2016-05-24 13:45:17 +0300 | [diff] [blame] | 2834 | "%s: failed to kick transfers", |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2835 | dep->name); |
| 2836 | } |
| 2837 | |
| 2838 | break; |
Felipe Balbi | 879631a | 2011-09-30 10:58:47 +0300 | [diff] [blame] | 2839 | case DWC3_DEPEVT_STREAMEVT: |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 2840 | dep->dbg_ep_events.streamevent++; |
Ido Shayevitz | 16e78db | 2012-03-12 20:25:24 +0200 | [diff] [blame] | 2841 | if (!usb_endpoint_xfer_bulk(dep->endpoint.desc)) { |
Felipe Balbi | 879631a | 2011-09-30 10:58:47 +0300 | [diff] [blame] | 2842 | dev_err(dwc->dev, "Stream event for non-Bulk %s\n", |
| 2843 | dep->name); |
| 2844 | return; |
| 2845 | } |
| 2846 | |
| 2847 | switch (event->status) { |
| 2848 | case DEPEVT_STREAMEVT_FOUND: |
Felipe Balbi | 7381528 | 2015-01-27 13:48:14 -0600 | [diff] [blame] | 2849 | dwc3_trace(trace_dwc3_gadget, |
| 2850 | "Stream %d found and started", |
Felipe Balbi | 879631a | 2011-09-30 10:58:47 +0300 | [diff] [blame] | 2851 | event->parameters); |
| 2852 | |
| 2853 | break; |
| 2854 | case DEPEVT_STREAMEVT_NOTFOUND: |
| 2855 | /* FALLTHROUGH */ |
| 2856 | default: |
Felipe Balbi | ec5e795 | 2015-11-16 16:04:13 -0600 | [diff] [blame] | 2857 | dwc3_trace(trace_dwc3_gadget, |
Felipe Balbi | 60cfb37 | 2016-05-24 13:45:17 +0300 | [diff] [blame] | 2858 | "unable to find suitable stream"); |
Felipe Balbi | 879631a | 2011-09-30 10:58:47 +0300 | [diff] [blame] | 2859 | } |
| 2860 | break; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2861 | case DWC3_DEPEVT_RXTXFIFOEVT: |
Felipe Balbi | 60cfb37 | 2016-05-24 13:45:17 +0300 | [diff] [blame] | 2862 | dwc3_trace(trace_dwc3_gadget, "%s FIFO Overrun", dep->name); |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 2863 | dep->dbg_ep_events.rxtxfifoevent++; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2864 | break; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2865 | case DWC3_DEPEVT_EPCMDCMPLT: |
Felipe Balbi | 7381528 | 2015-01-27 13:48:14 -0600 | [diff] [blame] | 2866 | dwc3_trace(trace_dwc3_gadget, "Endpoint Command Complete"); |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 2867 | dep->dbg_ep_events.epcmdcomplete++; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2868 | break; |
| 2869 | } |
| 2870 | } |
| 2871 | |
| 2872 | static void dwc3_disconnect_gadget(struct dwc3 *dwc) |
| 2873 | { |
Mayank Rana | 8f84710 | 2017-11-15 09:57:15 -0800 | [diff] [blame] | 2874 | struct usb_gadget_driver *gadget_driver; |
| 2875 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2876 | if (dwc->gadget_driver && dwc->gadget_driver->disconnect) { |
Mayank Rana | 8f84710 | 2017-11-15 09:57:15 -0800 | [diff] [blame] | 2877 | gadget_driver = dwc->gadget_driver; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2878 | spin_unlock(&dwc->lock); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 2879 | dbg_event(0xFF, "DISCONNECT", 0); |
Mayank Rana | 8f84710 | 2017-11-15 09:57:15 -0800 | [diff] [blame] | 2880 | gadget_driver->disconnect(&dwc->gadget); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2881 | spin_lock(&dwc->lock); |
| 2882 | } |
| 2883 | } |
| 2884 | |
Felipe Balbi | bc5ba2e | 2014-02-26 10:17:07 -0600 | [diff] [blame] | 2885 | static void dwc3_suspend_gadget(struct dwc3 *dwc) |
| 2886 | { |
Mayank Rana | 8f84710 | 2017-11-15 09:57:15 -0800 | [diff] [blame] | 2887 | struct usb_gadget_driver *gadget_driver; |
| 2888 | |
Dan Carpenter | 73a30bf | 2014-03-07 14:19:57 +0300 | [diff] [blame] | 2889 | if (dwc->gadget_driver && dwc->gadget_driver->suspend) { |
Mayank Rana | 8f84710 | 2017-11-15 09:57:15 -0800 | [diff] [blame] | 2890 | gadget_driver = dwc->gadget_driver; |
Felipe Balbi | bc5ba2e | 2014-02-26 10:17:07 -0600 | [diff] [blame] | 2891 | spin_unlock(&dwc->lock); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 2892 | dbg_event(0xFF, "SUSPEND", 0); |
Mayank Rana | 8f84710 | 2017-11-15 09:57:15 -0800 | [diff] [blame] | 2893 | gadget_driver->suspend(&dwc->gadget); |
Felipe Balbi | bc5ba2e | 2014-02-26 10:17:07 -0600 | [diff] [blame] | 2894 | spin_lock(&dwc->lock); |
| 2895 | } |
| 2896 | } |
| 2897 | |
| 2898 | static void dwc3_resume_gadget(struct dwc3 *dwc) |
| 2899 | { |
Mayank Rana | 8f84710 | 2017-11-15 09:57:15 -0800 | [diff] [blame] | 2900 | struct usb_gadget_driver *gadget_driver; |
| 2901 | |
Dan Carpenter | 73a30bf | 2014-03-07 14:19:57 +0300 | [diff] [blame] | 2902 | if (dwc->gadget_driver && dwc->gadget_driver->resume) { |
Mayank Rana | 8f84710 | 2017-11-15 09:57:15 -0800 | [diff] [blame] | 2903 | gadget_driver = dwc->gadget_driver; |
Felipe Balbi | bc5ba2e | 2014-02-26 10:17:07 -0600 | [diff] [blame] | 2904 | spin_unlock(&dwc->lock); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 2905 | dbg_event(0xFF, "RESUME", 0); |
Mayank Rana | 8f84710 | 2017-11-15 09:57:15 -0800 | [diff] [blame] | 2906 | gadget_driver->resume(&dwc->gadget); |
Felipe Balbi | 5c7b3b0 | 2015-01-29 10:29:18 -0600 | [diff] [blame] | 2907 | spin_lock(&dwc->lock); |
Felipe Balbi | 8e74475 | 2014-11-06 14:27:53 +0800 | [diff] [blame] | 2908 | } |
| 2909 | } |
| 2910 | |
| 2911 | static void dwc3_reset_gadget(struct dwc3 *dwc) |
| 2912 | { |
Mayank Rana | 8f84710 | 2017-11-15 09:57:15 -0800 | [diff] [blame] | 2913 | struct usb_gadget_driver *gadget_driver; |
| 2914 | |
Felipe Balbi | 8e74475 | 2014-11-06 14:27:53 +0800 | [diff] [blame] | 2915 | if (!dwc->gadget_driver) |
| 2916 | return; |
| 2917 | |
| 2918 | if (dwc->gadget.speed != USB_SPEED_UNKNOWN) { |
Mayank Rana | 8f84710 | 2017-11-15 09:57:15 -0800 | [diff] [blame] | 2919 | gadget_driver = dwc->gadget_driver; |
Felipe Balbi | 8e74475 | 2014-11-06 14:27:53 +0800 | [diff] [blame] | 2920 | spin_unlock(&dwc->lock); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 2921 | dbg_event(0xFF, "UDC RESET", 0); |
Mayank Rana | 8f84710 | 2017-11-15 09:57:15 -0800 | [diff] [blame] | 2922 | usb_gadget_udc_reset(&dwc->gadget, gadget_driver); |
Felipe Balbi | bc5ba2e | 2014-02-26 10:17:07 -0600 | [diff] [blame] | 2923 | spin_lock(&dwc->lock); |
| 2924 | } |
| 2925 | } |
| 2926 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 2927 | void dwc3_stop_active_transfer(struct dwc3 *dwc, u32 epnum, bool force) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2928 | { |
| 2929 | struct dwc3_ep *dep; |
| 2930 | struct dwc3_gadget_ep_cmd_params params; |
| 2931 | u32 cmd; |
| 2932 | int ret; |
| 2933 | |
| 2934 | dep = dwc->eps[epnum]; |
| 2935 | |
Felipe Balbi | b4996a8 | 2012-06-06 12:04:13 +0300 | [diff] [blame] | 2936 | if (!dep->resource_index) |
Pratyush Anand | 3daf74d | 2012-06-23 02:23:08 +0530 | [diff] [blame] | 2937 | return; |
| 2938 | |
Pratyush Anand | 5791150 | 2012-07-06 15:19:10 +0530 | [diff] [blame] | 2939 | /* |
| 2940 | * NOTICE: We are violating what the Databook says about the |
| 2941 | * EndTransfer command. Ideally we would _always_ wait for the |
| 2942 | * EndTransfer Command Completion IRQ, but that's causing too |
| 2943 | * much trouble synchronizing between us and gadget driver. |
| 2944 | * |
| 2945 | * We have discussed this with the IP Provider and it was |
| 2946 | * suggested to giveback all requests here, but give HW some |
| 2947 | * extra time to synchronize with the interconnect. We're using |
Mickael Maison | dc93b41 | 2014-12-23 17:34:43 +0100 | [diff] [blame] | 2948 | * an arbitrary 100us delay for that. |
Pratyush Anand | 5791150 | 2012-07-06 15:19:10 +0530 | [diff] [blame] | 2949 | * |
| 2950 | * Note also that a similar handling was tested by Synopsys |
| 2951 | * (thanks a lot Paul) and nothing bad has come out of it. |
| 2952 | * In short, what we're doing is: |
| 2953 | * |
| 2954 | * - Issue EndTransfer WITH CMDIOC bit set |
| 2955 | * - Wait 100us |
John Youn | 06281d4 | 2016-08-22 15:39:13 -0700 | [diff] [blame] | 2956 | * |
| 2957 | * As of IP version 3.10a of the DWC_usb3 IP, the controller |
| 2958 | * supports a mode to work around the above limitation. The |
| 2959 | * software can poll the CMDACT bit in the DEPCMD register |
| 2960 | * after issuing a EndTransfer command. This mode is enabled |
| 2961 | * by writing GUCTL2[14]. This polling is already done in the |
| 2962 | * dwc3_send_gadget_ep_cmd() function so if the mode is |
| 2963 | * enabled, the EndTransfer command will have completed upon |
| 2964 | * returning from this function and we don't need to delay for |
| 2965 | * 100us. |
| 2966 | * |
| 2967 | * This mode is NOT available on the DWC_usb31 IP. |
Pratyush Anand | 5791150 | 2012-07-06 15:19:10 +0530 | [diff] [blame] | 2968 | */ |
| 2969 | |
Pratyush Anand | 3daf74d | 2012-06-23 02:23:08 +0530 | [diff] [blame] | 2970 | cmd = DWC3_DEPCMD_ENDTRANSFER; |
Paul Zimmerman | b992e68 | 2012-04-27 14:17:35 +0300 | [diff] [blame] | 2971 | cmd |= force ? DWC3_DEPCMD_HIPRI_FORCERM : 0; |
| 2972 | cmd |= DWC3_DEPCMD_CMDIOC; |
Felipe Balbi | b4996a8 | 2012-06-06 12:04:13 +0300 | [diff] [blame] | 2973 | cmd |= DWC3_DEPCMD_PARAM(dep->resource_index); |
Pratyush Anand | 3daf74d | 2012-06-23 02:23:08 +0530 | [diff] [blame] | 2974 | memset(¶ms, 0, sizeof(params)); |
Felipe Balbi | 2cd4718 | 2016-04-12 16:42:43 +0300 | [diff] [blame] | 2975 | ret = dwc3_send_gadget_ep_cmd(dep, cmd, ¶ms); |
Pratyush Anand | 3daf74d | 2012-06-23 02:23:08 +0530 | [diff] [blame] | 2976 | WARN_ON_ONCE(ret); |
Felipe Balbi | b4996a8 | 2012-06-06 12:04:13 +0300 | [diff] [blame] | 2977 | dep->resource_index = 0; |
Felipe Balbi | 041d81f | 2012-10-04 11:58:00 +0300 | [diff] [blame] | 2978 | dep->flags &= ~DWC3_EP_BUSY; |
John Youn | 06281d4 | 2016-08-22 15:39:13 -0700 | [diff] [blame] | 2979 | |
| 2980 | if (dwc3_is_usb31(dwc) || dwc->revision < DWC3_REVISION_310A) |
| 2981 | udelay(100); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2982 | } |
| 2983 | |
| 2984 | static void dwc3_stop_active_transfers(struct dwc3 *dwc) |
| 2985 | { |
| 2986 | u32 epnum; |
| 2987 | |
| 2988 | for (epnum = 2; epnum < DWC3_ENDPOINTS_NUM; epnum++) { |
| 2989 | struct dwc3_ep *dep; |
| 2990 | |
| 2991 | dep = dwc->eps[epnum]; |
Felipe Balbi | 6a1e3ef | 2011-05-05 16:21:59 +0300 | [diff] [blame] | 2992 | if (!dep) |
| 2993 | continue; |
| 2994 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2995 | if (!(dep->flags & DWC3_EP_ENABLED)) |
| 2996 | continue; |
| 2997 | |
Sebastian Andrzej Siewior | 624407f | 2011-08-29 13:56:37 +0200 | [diff] [blame] | 2998 | dwc3_remove_requests(dwc, dep); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 2999 | } |
| 3000 | } |
| 3001 | |
| 3002 | static void dwc3_clear_stall_all_ep(struct dwc3 *dwc) |
| 3003 | { |
| 3004 | u32 epnum; |
| 3005 | |
| 3006 | for (epnum = 1; epnum < DWC3_ENDPOINTS_NUM; epnum++) { |
| 3007 | struct dwc3_ep *dep; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3008 | int ret; |
| 3009 | |
| 3010 | dep = dwc->eps[epnum]; |
Felipe Balbi | 6a1e3ef | 2011-05-05 16:21:59 +0300 | [diff] [blame] | 3011 | if (!dep) |
| 3012 | continue; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3013 | |
| 3014 | if (!(dep->flags & DWC3_EP_STALL)) |
| 3015 | continue; |
| 3016 | |
| 3017 | dep->flags &= ~DWC3_EP_STALL; |
| 3018 | |
John Youn | 50c763f | 2016-05-31 17:49:56 -0700 | [diff] [blame] | 3019 | ret = dwc3_send_clear_stall_ep_cmd(dep); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 3020 | dbg_event(dep->number, "ECLRSTALL", ret); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3021 | WARN_ON_ONCE(ret); |
| 3022 | } |
| 3023 | } |
| 3024 | |
| 3025 | static void dwc3_gadget_disconnect_interrupt(struct dwc3 *dwc) |
| 3026 | { |
Felipe Balbi | c4430a2 | 2012-05-24 10:30:01 +0300 | [diff] [blame] | 3027 | int reg; |
| 3028 | |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 3029 | dbg_event(0xFF, "DISCONNECT INT", 0); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3030 | dev_dbg(dwc->dev, "Notify OTG from %s\n", __func__); |
| 3031 | dwc->b_suspend = false; |
| 3032 | dwc3_notify_event(dwc, DWC3_CONTROLLER_NOTIFY_OTG_EVENT); |
| 3033 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3034 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 3035 | reg &= ~DWC3_DCTL_INITU1ENA; |
| 3036 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 3037 | |
| 3038 | reg &= ~DWC3_DCTL_INITU2ENA; |
| 3039 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3040 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3041 | dwc3_disconnect_gadget(dwc); |
| 3042 | |
| 3043 | dwc->gadget.speed = USB_SPEED_UNKNOWN; |
Felipe Balbi | df62df5 | 2011-10-14 15:11:49 +0300 | [diff] [blame] | 3044 | dwc->setup_packet_pending = false; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3045 | dwc->link_state = DWC3_LINK_STATE_SS_DIS; |
Felipe Balbi | 06a374e | 2014-10-10 15:24:00 -0500 | [diff] [blame] | 3046 | usb_gadget_set_state(&dwc->gadget, USB_STATE_NOTATTACHED); |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 3047 | |
| 3048 | dwc->connected = false; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3049 | wake_up_interruptible(&dwc->wait_linkstate); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3050 | } |
| 3051 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3052 | static void dwc3_gadget_reset_interrupt(struct dwc3 *dwc) |
| 3053 | { |
| 3054 | u32 reg; |
| 3055 | |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 3056 | dwc->connected = true; |
| 3057 | |
Felipe Balbi | df62df5 | 2011-10-14 15:11:49 +0300 | [diff] [blame] | 3058 | /* |
| 3059 | * WORKAROUND: DWC3 revisions <1.88a have an issue which |
| 3060 | * would cause a missing Disconnect Event if there's a |
| 3061 | * pending Setup Packet in the FIFO. |
| 3062 | * |
| 3063 | * There's no suggested workaround on the official Bug |
| 3064 | * report, which states that "unless the driver/application |
| 3065 | * is doing any special handling of a disconnect event, |
| 3066 | * there is no functional issue". |
| 3067 | * |
| 3068 | * Unfortunately, it turns out that we _do_ some special |
| 3069 | * handling of a disconnect event, namely complete all |
| 3070 | * pending transfers, notify gadget driver of the |
| 3071 | * disconnection, and so on. |
| 3072 | * |
| 3073 | * Our suggested workaround is to follow the Disconnect |
| 3074 | * Event steps here, instead, based on a setup_packet_pending |
Felipe Balbi | b5d335e | 2015-11-16 16:20:34 -0600 | [diff] [blame] | 3075 | * flag. Such flag gets set whenever we have a SETUP_PENDING |
| 3076 | * status for EP0 TRBs and gets cleared on XferComplete for the |
Felipe Balbi | df62df5 | 2011-10-14 15:11:49 +0300 | [diff] [blame] | 3077 | * same endpoint. |
| 3078 | * |
| 3079 | * Refers to: |
| 3080 | * |
| 3081 | * STAR#9000466709: RTL: Device : Disconnect event not |
| 3082 | * generated if setup packet pending in FIFO |
| 3083 | */ |
| 3084 | if (dwc->revision < DWC3_REVISION_188A) { |
| 3085 | if (dwc->setup_packet_pending) |
| 3086 | dwc3_gadget_disconnect_interrupt(dwc); |
| 3087 | } |
| 3088 | |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 3089 | dbg_event(0xFF, "BUS RESET", 0); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3090 | dev_dbg(dwc->dev, "Notify OTG from %s\n", __func__); |
| 3091 | dwc->b_suspend = false; |
| 3092 | dwc3_notify_event(dwc, DWC3_CONTROLLER_NOTIFY_OTG_EVENT); |
| 3093 | |
| 3094 | dwc3_usb3_phy_suspend(dwc, false); |
Hemant Kumar | d55fe95 | 2016-10-31 10:26:41 -0700 | [diff] [blame] | 3095 | usb_gadget_vbus_draw(&dwc->gadget, 100); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3096 | |
Felipe Balbi | 8e74475 | 2014-11-06 14:27:53 +0800 | [diff] [blame] | 3097 | dwc3_reset_gadget(dwc); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3098 | |
| 3099 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 3100 | reg &= ~DWC3_DCTL_TSTCTRL_MASK; |
| 3101 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
Gerard Cauvy | 3b63736 | 2012-02-10 12:21:18 +0200 | [diff] [blame] | 3102 | dwc->test_mode = false; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3103 | |
| 3104 | dwc3_stop_active_transfers(dwc); |
| 3105 | dwc3_clear_stall_all_ep(dwc); |
| 3106 | |
| 3107 | /* Reset device address to zero */ |
| 3108 | reg = dwc3_readl(dwc->regs, DWC3_DCFG); |
| 3109 | reg &= ~(DWC3_DCFG_DEVADDR_MASK); |
| 3110 | dwc3_writel(dwc->regs, DWC3_DCFG, reg); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3111 | |
| 3112 | dwc->gadget.speed = USB_SPEED_UNKNOWN; |
| 3113 | dwc->link_state = DWC3_LINK_STATE_U0; |
| 3114 | wake_up_interruptible(&dwc->wait_linkstate); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3115 | } |
| 3116 | |
| 3117 | static void dwc3_update_ram_clk_sel(struct dwc3 *dwc, u32 speed) |
| 3118 | { |
| 3119 | u32 reg; |
| 3120 | u32 usb30_clock = DWC3_GCTL_CLK_BUS; |
| 3121 | |
| 3122 | /* |
| 3123 | * We change the clock only at SS but I dunno why I would want to do |
| 3124 | * this. Maybe it becomes part of the power saving plan. |
| 3125 | */ |
| 3126 | |
John Youn | ee5cd41 | 2016-02-05 17:08:45 -0800 | [diff] [blame] | 3127 | if ((speed != DWC3_DSTS_SUPERSPEED) && |
| 3128 | (speed != DWC3_DSTS_SUPERSPEED_PLUS)) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3129 | return; |
| 3130 | |
| 3131 | /* |
| 3132 | * RAMClkSel is reset to 0 after USB reset, so it must be reprogrammed |
| 3133 | * each time on Connect Done. |
| 3134 | */ |
| 3135 | if (!usb30_clock) |
| 3136 | return; |
| 3137 | |
| 3138 | reg = dwc3_readl(dwc->regs, DWC3_GCTL); |
| 3139 | reg |= DWC3_GCTL_RAMCLKSEL(usb30_clock); |
| 3140 | dwc3_writel(dwc->regs, DWC3_GCTL, reg); |
| 3141 | } |
| 3142 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3143 | static void dwc3_gadget_conndone_interrupt(struct dwc3 *dwc) |
| 3144 | { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3145 | struct dwc3_ep *dep; |
| 3146 | int ret; |
| 3147 | u32 reg; |
| 3148 | u8 speed; |
| 3149 | |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 3150 | dbg_event(0xFF, "CONNECT DONE", 0); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3151 | reg = dwc3_readl(dwc->regs, DWC3_DSTS); |
| 3152 | speed = reg & DWC3_DSTS_CONNECTSPD; |
| 3153 | dwc->speed = speed; |
| 3154 | |
| 3155 | dwc3_update_ram_clk_sel(dwc, speed); |
| 3156 | |
| 3157 | switch (speed) { |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 3158 | case DWC3_DSTS_SUPERSPEED_PLUS: |
John Youn | 7580862 | 2016-02-05 17:09:13 -0800 | [diff] [blame] | 3159 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512); |
| 3160 | dwc->gadget.ep0->maxpacket = 512; |
| 3161 | dwc->gadget.speed = USB_SPEED_SUPER_PLUS; |
| 3162 | break; |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 3163 | case DWC3_DSTS_SUPERSPEED: |
Felipe Balbi | 05870c5 | 2011-10-14 14:51:38 +0300 | [diff] [blame] | 3164 | /* |
| 3165 | * WORKAROUND: DWC3 revisions <1.90a have an issue which |
| 3166 | * would cause a missing USB3 Reset event. |
| 3167 | * |
| 3168 | * In such situations, we should force a USB3 Reset |
| 3169 | * event by calling our dwc3_gadget_reset_interrupt() |
| 3170 | * routine. |
| 3171 | * |
| 3172 | * Refers to: |
| 3173 | * |
| 3174 | * STAR#9000483510: RTL: SS : USB3 reset event may |
| 3175 | * not be generated always when the link enters poll |
| 3176 | */ |
| 3177 | if (dwc->revision < DWC3_REVISION_190A) |
| 3178 | dwc3_gadget_reset_interrupt(dwc); |
| 3179 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3180 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(512); |
| 3181 | dwc->gadget.ep0->maxpacket = 512; |
| 3182 | dwc->gadget.speed = USB_SPEED_SUPER; |
| 3183 | break; |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 3184 | case DWC3_DSTS_HIGHSPEED: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3185 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64); |
| 3186 | dwc->gadget.ep0->maxpacket = 64; |
| 3187 | dwc->gadget.speed = USB_SPEED_HIGH; |
| 3188 | break; |
Roger Quadros | 5e3c292 | 2017-01-03 14:32:09 +0200 | [diff] [blame] | 3189 | case DWC3_DSTS_FULLSPEED: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3190 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(64); |
| 3191 | dwc->gadget.ep0->maxpacket = 64; |
| 3192 | dwc->gadget.speed = USB_SPEED_FULL; |
| 3193 | break; |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 3194 | case DWC3_DSTS_LOWSPEED: |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3195 | dwc3_gadget_ep0_desc.wMaxPacketSize = cpu_to_le16(8); |
| 3196 | dwc->gadget.ep0->maxpacket = 8; |
| 3197 | dwc->gadget.speed = USB_SPEED_LOW; |
| 3198 | break; |
| 3199 | } |
| 3200 | |
Pratyush Anand | 2b75835 | 2013-01-14 15:59:31 +0530 | [diff] [blame] | 3201 | /* Enable USB2 LPM Capability */ |
| 3202 | |
John Youn | ee5cd41 | 2016-02-05 17:08:45 -0800 | [diff] [blame] | 3203 | if ((dwc->revision > DWC3_REVISION_194A) && |
John Youn | 2da9ad7 | 2016-05-20 16:34:26 -0700 | [diff] [blame] | 3204 | (speed != DWC3_DSTS_SUPERSPEED) && |
| 3205 | (speed != DWC3_DSTS_SUPERSPEED_PLUS)) { |
Pratyush Anand | 2b75835 | 2013-01-14 15:59:31 +0530 | [diff] [blame] | 3206 | reg = dwc3_readl(dwc->regs, DWC3_DCFG); |
| 3207 | reg |= DWC3_DCFG_LPM_CAP; |
| 3208 | dwc3_writel(dwc->regs, DWC3_DCFG, reg); |
| 3209 | |
| 3210 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 3211 | reg &= ~(DWC3_DCTL_HIRD_THRES_MASK | DWC3_DCTL_L1_HIBER_EN); |
| 3212 | |
Huang Rui | 460d098 | 2014-10-31 11:11:18 +0800 | [diff] [blame] | 3213 | reg |= DWC3_DCTL_HIRD_THRES(dwc->hird_threshold); |
Pratyush Anand | 2b75835 | 2013-01-14 15:59:31 +0530 | [diff] [blame] | 3214 | |
Huang Rui | 80caf7d | 2014-10-28 19:54:26 +0800 | [diff] [blame] | 3215 | /* |
| 3216 | * When dwc3 revisions >= 2.40a, LPM Erratum is enabled and |
| 3217 | * DCFG.LPMCap is set, core responses with an ACK and the |
| 3218 | * BESL value in the LPM token is less than or equal to LPM |
| 3219 | * NYET threshold. |
| 3220 | */ |
| 3221 | WARN_ONCE(dwc->revision < DWC3_REVISION_240A |
| 3222 | && dwc->has_lpm_erratum, |
| 3223 | "LPM Erratum not available on dwc3 revisisions < 2.40a\n"); |
| 3224 | |
| 3225 | if (dwc->has_lpm_erratum && dwc->revision >= DWC3_REVISION_240A) |
| 3226 | reg |= DWC3_DCTL_LPM_ERRATA(dwc->lpm_nyet_threshold); |
| 3227 | |
Pratyush Anand | 2b75835 | 2013-01-14 15:59:31 +0530 | [diff] [blame] | 3228 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
Felipe Balbi | 356363b | 2013-12-19 16:37:05 -0600 | [diff] [blame] | 3229 | } else { |
| 3230 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 3231 | reg &= ~DWC3_DCTL_HIRD_THRES_MASK; |
| 3232 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
Pratyush Anand | 2b75835 | 2013-01-14 15:59:31 +0530 | [diff] [blame] | 3233 | } |
| 3234 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3235 | |
| 3236 | /* |
| 3237 | * In HS mode this allows SS phy suspend. In SS mode this allows ss phy |
| 3238 | * suspend in P3 state and generates IN_P3 power event irq. |
| 3239 | */ |
| 3240 | dwc3_usb3_phy_suspend(dwc, true); |
| 3241 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3242 | dep = dwc->eps[0]; |
Paul Zimmerman | 265b70a | 2013-12-19 12:38:49 -0600 | [diff] [blame] | 3243 | ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, true, |
| 3244 | false); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3245 | if (ret) { |
| 3246 | dev_err(dwc->dev, "failed to enable %s\n", dep->name); |
| 3247 | return; |
| 3248 | } |
| 3249 | |
| 3250 | dep = dwc->eps[1]; |
Paul Zimmerman | 265b70a | 2013-12-19 12:38:49 -0600 | [diff] [blame] | 3251 | ret = __dwc3_gadget_ep_enable(dep, &dwc3_gadget_ep0_desc, NULL, true, |
| 3252 | false); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3253 | if (ret) { |
| 3254 | dev_err(dwc->dev, "failed to enable %s\n", dep->name); |
| 3255 | return; |
| 3256 | } |
| 3257 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3258 | dwc3_notify_event(dwc, DWC3_CONTROLLER_CONNDONE_EVENT); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3259 | /* |
| 3260 | * Configure PHY via GUSB3PIPECTLn if required. |
| 3261 | * |
| 3262 | * Update GTXFIFOSIZn |
| 3263 | * |
| 3264 | * In both cases reset values should be sufficient. |
| 3265 | */ |
| 3266 | } |
| 3267 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3268 | static void dwc3_gadget_wakeup_interrupt(struct dwc3 *dwc, bool remote_wakeup) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3269 | { |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3270 | bool perform_resume = true; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3271 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3272 | dev_dbg(dwc->dev, "%s\n", __func__); |
| 3273 | |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 3274 | dbg_event(0xFF, "WAKEUP", remote_wakeup); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3275 | /* |
| 3276 | * Identify if it is called from wakeup_interrupt() context for bus |
| 3277 | * resume or as part of remote wakeup. And based on that check for |
| 3278 | * U3 state. as we need to handle case of L1 resume i.e. where we |
| 3279 | * don't want to perform resume. |
| 3280 | */ |
| 3281 | if (!remote_wakeup && dwc->link_state != DWC3_LINK_STATE_U3) |
| 3282 | perform_resume = false; |
| 3283 | |
| 3284 | /* Only perform resume from L2 or Early Suspend states */ |
| 3285 | if (perform_resume) { |
| 3286 | |
| 3287 | /* |
| 3288 | * In case of remote wake up dwc3_gadget_wakeup_work() |
| 3289 | * is doing pm_runtime_get_sync(). |
| 3290 | */ |
| 3291 | dev_dbg(dwc->dev, "Notify OTG from %s\n", __func__); |
| 3292 | dwc->b_suspend = false; |
| 3293 | dwc3_notify_event(dwc, DWC3_CONTROLLER_NOTIFY_OTG_EVENT); |
| 3294 | |
| 3295 | /* |
| 3296 | * set state to U0 as function level resume is trying to queue |
| 3297 | * notification over USB interrupt endpoint which would fail |
| 3298 | * due to state is not being updated. |
| 3299 | */ |
| 3300 | dwc->link_state = DWC3_LINK_STATE_U0; |
| 3301 | dwc3_resume_gadget(dwc); |
| 3302 | return; |
Jiebing Li | ad14d4e | 2014-12-11 13:26:29 +0800 | [diff] [blame] | 3303 | } |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3304 | |
| 3305 | dwc->link_state = DWC3_LINK_STATE_U0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3306 | } |
| 3307 | |
| 3308 | static void dwc3_gadget_linksts_change_interrupt(struct dwc3 *dwc, |
| 3309 | unsigned int evtinfo) |
| 3310 | { |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 3311 | enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK; |
Felipe Balbi | 0b0cc1c | 2012-09-18 21:39:24 +0300 | [diff] [blame] | 3312 | unsigned int pwropt; |
| 3313 | |
| 3314 | /* |
| 3315 | * WORKAROUND: DWC3 < 2.50a have an issue when configured without |
| 3316 | * Hibernation mode enabled which would show up when device detects |
| 3317 | * host-initiated U3 exit. |
| 3318 | * |
| 3319 | * In that case, device will generate a Link State Change Interrupt |
| 3320 | * from U3 to RESUME which is only necessary if Hibernation is |
| 3321 | * configured in. |
| 3322 | * |
| 3323 | * There are no functional changes due to such spurious event and we |
| 3324 | * just need to ignore it. |
| 3325 | * |
| 3326 | * Refers to: |
| 3327 | * |
| 3328 | * STAR#9000570034 RTL: SS Resume event generated in non-Hibernation |
| 3329 | * operational mode |
| 3330 | */ |
| 3331 | pwropt = DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1); |
| 3332 | if ((dwc->revision < DWC3_REVISION_250A) && |
| 3333 | (pwropt != DWC3_GHWPARAMS1_EN_PWROPT_HIB)) { |
| 3334 | if ((dwc->link_state == DWC3_LINK_STATE_U3) && |
| 3335 | (next == DWC3_LINK_STATE_RESUME)) { |
Felipe Balbi | 7381528 | 2015-01-27 13:48:14 -0600 | [diff] [blame] | 3336 | dwc3_trace(trace_dwc3_gadget, |
| 3337 | "ignoring transition U3 -> Resume"); |
Felipe Balbi | 0b0cc1c | 2012-09-18 21:39:24 +0300 | [diff] [blame] | 3338 | return; |
| 3339 | } |
| 3340 | } |
Felipe Balbi | fae2b90 | 2011-10-14 13:00:30 +0300 | [diff] [blame] | 3341 | |
| 3342 | /* |
| 3343 | * WORKAROUND: DWC3 Revisions <1.83a have an issue which, depending |
| 3344 | * on the link partner, the USB session might do multiple entry/exit |
| 3345 | * of low power states before a transfer takes place. |
| 3346 | * |
| 3347 | * Due to this problem, we might experience lower throughput. The |
| 3348 | * suggested workaround is to disable DCTL[12:9] bits if we're |
| 3349 | * transitioning from U1/U2 to U0 and enable those bits again |
| 3350 | * after a transfer completes and there are no pending transfers |
| 3351 | * on any of the enabled endpoints. |
| 3352 | * |
| 3353 | * This is the first half of that workaround. |
| 3354 | * |
| 3355 | * Refers to: |
| 3356 | * |
| 3357 | * STAR#9000446952: RTL: Device SS : if U1/U2 ->U0 takes >128us |
| 3358 | * core send LGO_Ux entering U0 |
| 3359 | */ |
| 3360 | if (dwc->revision < DWC3_REVISION_183A) { |
| 3361 | if (next == DWC3_LINK_STATE_U0) { |
| 3362 | u32 u1u2; |
| 3363 | u32 reg; |
| 3364 | |
| 3365 | switch (dwc->link_state) { |
| 3366 | case DWC3_LINK_STATE_U1: |
| 3367 | case DWC3_LINK_STATE_U2: |
| 3368 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 3369 | u1u2 = reg & (DWC3_DCTL_INITU2ENA |
| 3370 | | DWC3_DCTL_ACCEPTU2ENA |
| 3371 | | DWC3_DCTL_INITU1ENA |
| 3372 | | DWC3_DCTL_ACCEPTU1ENA); |
| 3373 | |
| 3374 | if (!dwc->u1u2) |
| 3375 | dwc->u1u2 = reg & u1u2; |
| 3376 | |
| 3377 | reg &= ~u1u2; |
| 3378 | |
| 3379 | dwc3_writel(dwc->regs, DWC3_DCTL, reg); |
| 3380 | break; |
| 3381 | default: |
| 3382 | /* do nothing */ |
| 3383 | break; |
| 3384 | } |
| 3385 | } |
| 3386 | } |
| 3387 | |
Felipe Balbi | bc5ba2e | 2014-02-26 10:17:07 -0600 | [diff] [blame] | 3388 | switch (next) { |
| 3389 | case DWC3_LINK_STATE_U1: |
| 3390 | if (dwc->speed == USB_SPEED_SUPER) |
| 3391 | dwc3_suspend_gadget(dwc); |
| 3392 | break; |
| 3393 | case DWC3_LINK_STATE_U2: |
| 3394 | case DWC3_LINK_STATE_U3: |
| 3395 | dwc3_suspend_gadget(dwc); |
| 3396 | break; |
| 3397 | case DWC3_LINK_STATE_RESUME: |
| 3398 | dwc3_resume_gadget(dwc); |
| 3399 | break; |
| 3400 | default: |
| 3401 | /* do nothing */ |
| 3402 | break; |
| 3403 | } |
| 3404 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3405 | dev_dbg(dwc->dev, "Going from (%d)--->(%d)\n", dwc->link_state, next); |
Felipe Balbi | e57ebc1 | 2014-04-22 13:20:12 -0500 | [diff] [blame] | 3406 | dwc->link_state = next; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3407 | wake_up_interruptible(&dwc->wait_linkstate); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3408 | } |
| 3409 | |
Baolin Wang | 72704f8 | 2016-05-16 16:43:53 +0800 | [diff] [blame] | 3410 | static void dwc3_gadget_suspend_interrupt(struct dwc3 *dwc, |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3411 | unsigned int evtinfo) |
Baolin Wang | 72704f8 | 2016-05-16 16:43:53 +0800 | [diff] [blame] | 3412 | { |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3413 | enum dwc3_link_state next = evtinfo & DWC3_LINK_STATE_MASK; |
Baolin Wang | 72704f8 | 2016-05-16 16:43:53 +0800 | [diff] [blame] | 3414 | |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 3415 | dbg_event(0xFF, "SUSPEND INT", 0); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3416 | dev_dbg(dwc->dev, "%s Entry to %d\n", __func__, next); |
| 3417 | |
| 3418 | if (dwc->link_state != next && next == DWC3_LINK_STATE_U3) { |
| 3419 | /* |
| 3420 | * When first connecting the cable, even before the initial |
| 3421 | * DWC3_DEVICE_EVENT_RESET or DWC3_DEVICE_EVENT_CONNECT_DONE |
| 3422 | * events, the controller sees a DWC3_DEVICE_EVENT_SUSPEND |
| 3423 | * event. In such a case, ignore. |
| 3424 | * Ignore suspend event until device side usb is not into |
| 3425 | * CONFIGURED state. |
| 3426 | */ |
| 3427 | if (dwc->gadget.state != USB_STATE_CONFIGURED) { |
| 3428 | pr_err("%s(): state:%d. Ignore SUSPEND.\n", |
| 3429 | __func__, dwc->gadget.state); |
| 3430 | return; |
| 3431 | } |
| 3432 | |
Baolin Wang | 72704f8 | 2016-05-16 16:43:53 +0800 | [diff] [blame] | 3433 | dwc3_suspend_gadget(dwc); |
| 3434 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3435 | dev_dbg(dwc->dev, "Notify OTG from %s\n", __func__); |
| 3436 | dwc->b_suspend = true; |
| 3437 | dwc3_notify_event(dwc, DWC3_CONTROLLER_NOTIFY_OTG_EVENT); |
| 3438 | } |
| 3439 | |
Baolin Wang | 72704f8 | 2016-05-16 16:43:53 +0800 | [diff] [blame] | 3440 | dwc->link_state = next; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3441 | dwc3_trace(trace_dwc3_gadget, "link state %d", dwc->link_state); |
Baolin Wang | 72704f8 | 2016-05-16 16:43:53 +0800 | [diff] [blame] | 3442 | } |
| 3443 | |
Felipe Balbi | e1dadd3 | 2014-02-25 14:47:54 -0600 | [diff] [blame] | 3444 | static void dwc3_gadget_hibernation_interrupt(struct dwc3 *dwc, |
| 3445 | unsigned int evtinfo) |
| 3446 | { |
| 3447 | unsigned int is_ss = evtinfo & BIT(4); |
| 3448 | |
| 3449 | /** |
| 3450 | * WORKAROUND: DWC3 revison 2.20a with hibernation support |
| 3451 | * have a known issue which can cause USB CV TD.9.23 to fail |
| 3452 | * randomly. |
| 3453 | * |
| 3454 | * Because of this issue, core could generate bogus hibernation |
| 3455 | * events which SW needs to ignore. |
| 3456 | * |
| 3457 | * Refers to: |
| 3458 | * |
| 3459 | * STAR#9000546576: Device Mode Hibernation: Issue in USB 2.0 |
| 3460 | * Device Fallback from SuperSpeed |
| 3461 | */ |
| 3462 | if (is_ss ^ (dwc->speed == USB_SPEED_SUPER)) |
| 3463 | return; |
| 3464 | |
| 3465 | /* enter hibernation here */ |
| 3466 | } |
| 3467 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3468 | static void dwc3_gadget_interrupt(struct dwc3 *dwc, |
| 3469 | const struct dwc3_event_devt *event) |
| 3470 | { |
| 3471 | switch (event->type) { |
| 3472 | case DWC3_DEVICE_EVENT_DISCONNECT: |
| 3473 | dwc3_gadget_disconnect_interrupt(dwc); |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 3474 | dwc->dbg_gadget_events.disconnect++; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3475 | break; |
| 3476 | case DWC3_DEVICE_EVENT_RESET: |
| 3477 | dwc3_gadget_reset_interrupt(dwc); |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 3478 | dwc->dbg_gadget_events.reset++; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3479 | break; |
| 3480 | case DWC3_DEVICE_EVENT_CONNECT_DONE: |
| 3481 | dwc3_gadget_conndone_interrupt(dwc); |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 3482 | dwc->dbg_gadget_events.connect++; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3483 | break; |
| 3484 | case DWC3_DEVICE_EVENT_WAKEUP: |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3485 | dwc3_gadget_wakeup_interrupt(dwc, false); |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 3486 | dwc->dbg_gadget_events.wakeup++; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3487 | break; |
Felipe Balbi | e1dadd3 | 2014-02-25 14:47:54 -0600 | [diff] [blame] | 3488 | case DWC3_DEVICE_EVENT_HIBER_REQ: |
| 3489 | if (dev_WARN_ONCE(dwc->dev, !dwc->has_hibernation, |
| 3490 | "unexpected hibernation event\n")) |
| 3491 | break; |
| 3492 | |
| 3493 | dwc3_gadget_hibernation_interrupt(dwc, event->event_info); |
| 3494 | break; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3495 | case DWC3_DEVICE_EVENT_LINK_STATUS_CHANGE: |
| 3496 | dwc3_gadget_linksts_change_interrupt(dwc, event->event_info); |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 3497 | dwc->dbg_gadget_events.link_status_change++; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3498 | break; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3499 | case DWC3_DEVICE_EVENT_SUSPEND: |
Baolin Wang | 72704f8 | 2016-05-16 16:43:53 +0800 | [diff] [blame] | 3500 | if (dwc->revision < DWC3_REVISION_230A) { |
| 3501 | dwc3_trace(trace_dwc3_gadget, "End of Periodic Frame"); |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 3502 | dwc->dbg_gadget_events.eopf++; |
Baolin Wang | 72704f8 | 2016-05-16 16:43:53 +0800 | [diff] [blame] | 3503 | } else { |
| 3504 | dwc3_trace(trace_dwc3_gadget, "U3/L1-L2 Suspend Event"); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 3505 | dbg_event(0xFF, "GAD SUS", 0); |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 3506 | dwc->dbg_gadget_events.suspend++; |
Baolin Wang | 72704f8 | 2016-05-16 16:43:53 +0800 | [diff] [blame] | 3507 | /* |
| 3508 | * Ignore suspend event until the gadget enters into |
| 3509 | * USB_STATE_CONFIGURED state. |
| 3510 | */ |
| 3511 | if (dwc->gadget.state >= USB_STATE_CONFIGURED) |
| 3512 | dwc3_gadget_suspend_interrupt(dwc, |
| 3513 | event->event_info); |
| 3514 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3515 | break; |
| 3516 | case DWC3_DEVICE_EVENT_SOF: |
Felipe Balbi | 7381528 | 2015-01-27 13:48:14 -0600 | [diff] [blame] | 3517 | dwc3_trace(trace_dwc3_gadget, "Start of Periodic Frame"); |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 3518 | dwc->dbg_gadget_events.sof++; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3519 | break; |
| 3520 | case DWC3_DEVICE_EVENT_ERRATIC_ERROR: |
Felipe Balbi | 7381528 | 2015-01-27 13:48:14 -0600 | [diff] [blame] | 3521 | dwc3_trace(trace_dwc3_gadget, "Erratic Error"); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 3522 | dbg_event(0xFF, "ERROR", 0); |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 3523 | dwc->dbg_gadget_events.erratic_error++; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3524 | break; |
| 3525 | case DWC3_DEVICE_EVENT_CMD_CMPL: |
Felipe Balbi | 7381528 | 2015-01-27 13:48:14 -0600 | [diff] [blame] | 3526 | dwc3_trace(trace_dwc3_gadget, "Command Complete"); |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 3527 | dwc->dbg_gadget_events.cmdcmplt++; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3528 | break; |
| 3529 | case DWC3_DEVICE_EVENT_OVERFLOW: |
Felipe Balbi | 7381528 | 2015-01-27 13:48:14 -0600 | [diff] [blame] | 3530 | dwc3_trace(trace_dwc3_gadget, "Overflow"); |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 3531 | dwc->dbg_gadget_events.overflow++; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3532 | break; |
| 3533 | default: |
Felipe Balbi | e9f2aa87 | 2015-01-27 13:49:28 -0600 | [diff] [blame] | 3534 | dev_WARN(dwc->dev, "UNKNOWN IRQ %d\n", event->type); |
Mayank Rana | 0c667b4 | 2017-02-09 11:56:51 -0800 | [diff] [blame] | 3535 | dwc->dbg_gadget_events.unknown_event++; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3536 | } |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3537 | |
| 3538 | dwc->err_evt_seen = (event->type == DWC3_DEVICE_EVENT_ERRATIC_ERROR); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3539 | } |
| 3540 | |
| 3541 | static void dwc3_process_event_entry(struct dwc3 *dwc, |
| 3542 | const union dwc3_event *event) |
| 3543 | { |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 3544 | trace_dwc3_event(event->raw); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3545 | /* skip event processing in absence of vbus */ |
| 3546 | if (!dwc->vbus_active) { |
Mayank Rana | 6300b45 | 2017-05-24 09:33:22 -0700 | [diff] [blame] | 3547 | dbg_event(0xFF, "SKIP_EVT", event->raw); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3548 | return; |
| 3549 | } |
| 3550 | |
| 3551 | /* If run/stop is cleared don't process any more events */ |
| 3552 | if (!dwc->pullups_connected) { |
Mayank Rana | 6300b45 | 2017-05-24 09:33:22 -0700 | [diff] [blame] | 3553 | dbg_event(0xFF, "SKIP_EVT_PULLUP", event->raw); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3554 | return; |
| 3555 | } |
Felipe Balbi | 2c4cbe6e5 | 2014-04-30 17:45:10 -0500 | [diff] [blame] | 3556 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3557 | /* Endpoint IRQ, handle it and return early */ |
| 3558 | if (event->type.is_devspec == 0) { |
| 3559 | /* depevt */ |
| 3560 | return dwc3_endpoint_interrupt(dwc, &event->depevt); |
| 3561 | } |
| 3562 | |
| 3563 | switch (event->type.type) { |
| 3564 | case DWC3_EVENT_TYPE_DEV: |
| 3565 | dwc3_gadget_interrupt(dwc, &event->devt); |
| 3566 | break; |
| 3567 | /* REVISIT what to do with Carkit and I2C events ? */ |
| 3568 | default: |
| 3569 | dev_err(dwc->dev, "UNKNOWN IRQ type %d\n", event->raw); |
| 3570 | } |
| 3571 | } |
| 3572 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3573 | static irqreturn_t dwc3_process_event_buf(struct dwc3 *dwc) |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3574 | { |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3575 | struct dwc3_event_buffer *evt; |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3576 | irqreturn_t ret = IRQ_NONE; |
| 3577 | int left; |
| 3578 | u32 reg; |
| 3579 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3580 | evt = dwc->ev_buf; |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3581 | left = evt->count; |
| 3582 | |
| 3583 | if (!(evt->flags & DWC3_EVENT_PENDING)) |
| 3584 | return IRQ_NONE; |
| 3585 | |
| 3586 | while (left > 0) { |
| 3587 | union dwc3_event event; |
| 3588 | |
| 3589 | event.raw = *(u32 *) (evt->buf + evt->lpos); |
| 3590 | |
| 3591 | dwc3_process_event_entry(dwc, &event); |
| 3592 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3593 | if (dwc->err_evt_seen) { |
| 3594 | /* |
| 3595 | * if erratic error, skip remaining events |
| 3596 | * while controller undergoes reset |
| 3597 | */ |
| 3598 | evt->lpos = (evt->lpos + left) % |
| 3599 | DWC3_EVENT_BUFFERS_SIZE; |
| 3600 | dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), left); |
| 3601 | if (dwc3_notify_event(dwc, DWC3_CONTROLLER_ERROR_EVENT)) |
| 3602 | dwc->err_evt_seen = 0; |
| 3603 | break; |
| 3604 | } |
| 3605 | |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3606 | /* |
| 3607 | * FIXME we wrap around correctly to the next entry as |
| 3608 | * almost all entries are 4 bytes in size. There is one |
| 3609 | * entry which has 12 bytes which is a regular entry |
| 3610 | * followed by 8 bytes data. ATM I don't know how |
| 3611 | * things are organized if we get next to the a |
| 3612 | * boundary so I worry about that once we try to handle |
| 3613 | * that. |
| 3614 | */ |
| 3615 | evt->lpos = (evt->lpos + 4) % DWC3_EVENT_BUFFERS_SIZE; |
| 3616 | left -= 4; |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3617 | } |
| 3618 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3619 | dwc->bh_handled_evt_cnt[dwc->bh_dbg_index] += (evt->count / 4); |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3620 | evt->count = 0; |
| 3621 | evt->flags &= ~DWC3_EVENT_PENDING; |
| 3622 | ret = IRQ_HANDLED; |
| 3623 | |
| 3624 | /* Unmask interrupt */ |
Felipe Balbi | 660e9bd | 2016-03-30 09:26:24 +0300 | [diff] [blame] | 3625 | reg = dwc3_readl(dwc->regs, DWC3_GEVNTSIZ(0)); |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3626 | reg &= ~DWC3_GEVNTSIZ_INTMASK; |
Felipe Balbi | 660e9bd | 2016-03-30 09:26:24 +0300 | [diff] [blame] | 3627 | dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), reg); |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3628 | |
John Youn | 26cac20 | 2016-11-14 12:32:43 -0800 | [diff] [blame] | 3629 | if (dwc->imod_interval) |
| 3630 | dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), |
| 3631 | DWC3_GEVNTCOUNT_EHB); |
| 3632 | |
Felipe Balbi | f42f244 | 2013-06-12 21:25:08 +0300 | [diff] [blame] | 3633 | return ret; |
| 3634 | } |
| 3635 | |
Mayank Rana | f616a7f | 2017-03-20 16:10:39 -0700 | [diff] [blame] | 3636 | void dwc3_bh_work(struct work_struct *w) |
| 3637 | { |
| 3638 | struct dwc3 *dwc = container_of(w, struct dwc3, bh_work); |
| 3639 | |
| 3640 | pm_runtime_get_sync(dwc->dev); |
| 3641 | dwc3_thread_interrupt(dwc->irq, dwc); |
| 3642 | pm_runtime_put(dwc->dev); |
| 3643 | } |
| 3644 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3645 | static irqreturn_t dwc3_thread_interrupt(int irq, void *_dwc) |
| 3646 | { |
| 3647 | struct dwc3 *dwc = _dwc; |
Felipe Balbi | e5f68b4 | 2015-10-12 13:25:44 -0500 | [diff] [blame] | 3648 | unsigned long flags; |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3649 | irqreturn_t ret = IRQ_NONE; |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3650 | unsigned int temp_time; |
| 3651 | ktime_t start_time; |
| 3652 | |
| 3653 | start_time = ktime_get(); |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3654 | |
Felipe Balbi | e5f68b4 | 2015-10-12 13:25:44 -0500 | [diff] [blame] | 3655 | spin_lock_irqsave(&dwc->lock, flags); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3656 | dwc->bh_handled_evt_cnt[dwc->bh_dbg_index] = 0; |
| 3657 | |
| 3658 | ret = dwc3_process_event_buf(dwc); |
| 3659 | |
Felipe Balbi | e5f68b4 | 2015-10-12 13:25:44 -0500 | [diff] [blame] | 3660 | spin_unlock_irqrestore(&dwc->lock, flags); |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3661 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3662 | temp_time = ktime_to_us(ktime_sub(ktime_get(), start_time)); |
| 3663 | dwc->bh_completion_time[dwc->bh_dbg_index] = temp_time; |
| 3664 | dwc->bh_dbg_index = (dwc->bh_dbg_index + 1) % 10; |
| 3665 | |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3666 | return ret; |
| 3667 | } |
| 3668 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3669 | static irqreturn_t dwc3_check_event_buf(struct dwc3 *dwc) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3670 | { |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3671 | struct dwc3_event_buffer *evt; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3672 | u32 count; |
Felipe Balbi | e8adfc3 | 2013-06-12 21:11:14 +0300 | [diff] [blame] | 3673 | u32 reg; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3674 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3675 | evt = dwc->ev_buf; |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 3676 | |
Thinh Nguyen | ff9177b | 2017-05-11 17:26:47 -0700 | [diff] [blame] | 3677 | /* |
| 3678 | * With PCIe legacy interrupt, test shows that top-half irq handler can |
| 3679 | * be called again after HW interrupt deassertion. Check if bottom-half |
| 3680 | * irq event handler completes before caching new event to prevent |
| 3681 | * losing events. |
| 3682 | */ |
| 3683 | if (evt->flags & DWC3_EVENT_PENDING) |
| 3684 | return IRQ_HANDLED; |
| 3685 | |
Felipe Balbi | 660e9bd | 2016-03-30 09:26:24 +0300 | [diff] [blame] | 3686 | count = dwc3_readl(dwc->regs, DWC3_GEVNTCOUNT(0)); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3687 | count &= DWC3_GEVNTCOUNT_MASK; |
| 3688 | if (!count) |
| 3689 | return IRQ_NONE; |
| 3690 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3691 | if (count > evt->length) { |
| 3692 | dev_err(dwc->dev, "HUGE_EVCNT(%d)", count); |
Mayank Rana | 558baca | 2017-02-17 11:46:38 -0800 | [diff] [blame] | 3693 | dbg_event(0xFF, "HUGE_EVCNT", count); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3694 | evt->lpos = (evt->lpos + count) % DWC3_EVENT_BUFFERS_SIZE; |
| 3695 | dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), count); |
| 3696 | return IRQ_HANDLED; |
| 3697 | } |
| 3698 | |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3699 | evt->count = count; |
| 3700 | evt->flags |= DWC3_EVENT_PENDING; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3701 | |
Felipe Balbi | e8adfc3 | 2013-06-12 21:11:14 +0300 | [diff] [blame] | 3702 | /* Mask interrupt */ |
Felipe Balbi | 660e9bd | 2016-03-30 09:26:24 +0300 | [diff] [blame] | 3703 | reg = dwc3_readl(dwc->regs, DWC3_GEVNTSIZ(0)); |
Felipe Balbi | e8adfc3 | 2013-06-12 21:11:14 +0300 | [diff] [blame] | 3704 | reg |= DWC3_GEVNTSIZ_INTMASK; |
Felipe Balbi | 660e9bd | 2016-03-30 09:26:24 +0300 | [diff] [blame] | 3705 | dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(0), reg); |
Felipe Balbi | e8adfc3 | 2013-06-12 21:11:14 +0300 | [diff] [blame] | 3706 | |
John Youn | 551d290 | 2016-11-15 13:08:59 +0200 | [diff] [blame] | 3707 | dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(0), count); |
| 3708 | |
Felipe Balbi | b15a762 | 2011-06-30 16:57:15 +0300 | [diff] [blame] | 3709 | return IRQ_WAKE_THREAD; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3710 | } |
| 3711 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3712 | irqreturn_t dwc3_interrupt(int irq, void *_dwc) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3713 | { |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3714 | struct dwc3 *dwc = _dwc; |
| 3715 | irqreturn_t ret = IRQ_NONE; |
| 3716 | irqreturn_t status; |
| 3717 | unsigned int temp_cnt = 0; |
| 3718 | ktime_t start_time; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3719 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3720 | start_time = ktime_get(); |
| 3721 | dwc->irq_cnt++; |
| 3722 | |
| 3723 | /* controller reset is still pending */ |
| 3724 | if (dwc->err_evt_seen) |
| 3725 | return IRQ_HANDLED; |
| 3726 | |
| 3727 | status = dwc3_check_event_buf(dwc); |
| 3728 | if (status == IRQ_WAKE_THREAD) |
| 3729 | ret = status; |
| 3730 | |
| 3731 | dwc->irq_start_time[dwc->irq_dbg_index] = start_time; |
| 3732 | dwc->irq_completion_time[dwc->irq_dbg_index] = |
| 3733 | ktime_us_delta(ktime_get(), start_time); |
| 3734 | dwc->irq_event_count[dwc->irq_dbg_index] = temp_cnt / 4; |
| 3735 | dwc->irq_dbg_index = (dwc->irq_dbg_index + 1) % MAX_INTR_STATS; |
| 3736 | |
Hemant Kumar | 78c7c28 | 2016-08-09 12:28:55 -0700 | [diff] [blame] | 3737 | if (ret == IRQ_WAKE_THREAD) |
Mayank Rana | f616a7f | 2017-03-20 16:10:39 -0700 | [diff] [blame] | 3738 | queue_work(dwc->dwc_wq, &dwc->bh_work); |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3739 | |
| 3740 | return IRQ_HANDLED; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3741 | } |
| 3742 | |
| 3743 | /** |
| 3744 | * dwc3_gadget_init - Initializes gadget related registers |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 3745 | * @dwc: pointer to our controller context structure |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3746 | * |
| 3747 | * Returns 0 on success otherwise negative errno. |
| 3748 | */ |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 3749 | int dwc3_gadget_init(struct dwc3 *dwc) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3750 | { |
Roger Quadros | 9522def | 2016-06-10 14:48:38 +0300 | [diff] [blame] | 3751 | int ret, irq; |
| 3752 | struct platform_device *dwc3_pdev = to_platform_device(dwc->dev); |
| 3753 | |
| 3754 | irq = platform_get_irq_byname(dwc3_pdev, "peripheral"); |
| 3755 | if (irq == -EPROBE_DEFER) |
| 3756 | return irq; |
| 3757 | |
| 3758 | if (irq <= 0) { |
| 3759 | irq = platform_get_irq_byname(dwc3_pdev, "dwc_usb3"); |
| 3760 | if (irq == -EPROBE_DEFER) |
| 3761 | return irq; |
| 3762 | |
| 3763 | if (irq <= 0) { |
| 3764 | irq = platform_get_irq(dwc3_pdev, 0); |
| 3765 | if (irq <= 0) { |
| 3766 | if (irq != -EPROBE_DEFER) { |
| 3767 | dev_err(dwc->dev, |
| 3768 | "missing peripheral IRQ\n"); |
| 3769 | } |
| 3770 | if (!irq) |
| 3771 | irq = -EINVAL; |
| 3772 | return irq; |
| 3773 | } |
| 3774 | } |
| 3775 | } |
| 3776 | |
| 3777 | dwc->irq_gadget = irq; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3778 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3779 | INIT_WORK(&dwc->wakeup_work, dwc3_gadget_wakeup_work); |
| 3780 | |
Arnd Bergmann | 42695fc | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 3781 | dwc->ctrl_req = dma_alloc_coherent(dwc->sysdev, sizeof(*dwc->ctrl_req), |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3782 | &dwc->ctrl_req_addr, GFP_KERNEL); |
| 3783 | if (!dwc->ctrl_req) { |
| 3784 | dev_err(dwc->dev, "failed to allocate ctrl request\n"); |
| 3785 | ret = -ENOMEM; |
| 3786 | goto err0; |
| 3787 | } |
| 3788 | |
Arnd Bergmann | 42695fc | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 3789 | dwc->ep0_trb = dma_alloc_coherent(dwc->sysdev, |
| 3790 | sizeof(*dwc->ep0_trb) * 2, |
| 3791 | &dwc->ep0_trb_addr, GFP_KERNEL); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3792 | if (!dwc->ep0_trb) { |
| 3793 | dev_err(dwc->dev, "failed to allocate ep0 trb\n"); |
| 3794 | ret = -ENOMEM; |
| 3795 | goto err1; |
| 3796 | } |
| 3797 | |
Felipe Balbi | 3ef35fa | 2012-05-04 12:58:14 +0300 | [diff] [blame] | 3798 | dwc->setup_buf = kzalloc(DWC3_EP0_BOUNCE_SIZE, GFP_KERNEL); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3799 | if (!dwc->setup_buf) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3800 | ret = -ENOMEM; |
| 3801 | goto err2; |
| 3802 | } |
| 3803 | |
Arnd Bergmann | 42695fc | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 3804 | dwc->ep0_bounce = dma_alloc_coherent(dwc->sysdev, |
Felipe Balbi | 3ef35fa | 2012-05-04 12:58:14 +0300 | [diff] [blame] | 3805 | DWC3_EP0_BOUNCE_SIZE, &dwc->ep0_bounce_addr, |
| 3806 | GFP_KERNEL); |
Felipe Balbi | 5812b1c | 2011-08-27 22:07:53 +0300 | [diff] [blame] | 3807 | if (!dwc->ep0_bounce) { |
| 3808 | dev_err(dwc->dev, "failed to allocate ep0 bounce buffer\n"); |
| 3809 | ret = -ENOMEM; |
| 3810 | goto err3; |
| 3811 | } |
| 3812 | |
Felipe Balbi | 04c03d1 | 2015-12-02 10:06:45 -0600 | [diff] [blame] | 3813 | dwc->zlp_buf = kzalloc(DWC3_ZLP_BUF_SIZE, GFP_KERNEL); |
| 3814 | if (!dwc->zlp_buf) { |
| 3815 | ret = -ENOMEM; |
| 3816 | goto err4; |
| 3817 | } |
| 3818 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3819 | dwc->gadget.ops = &dwc3_gadget_ops; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3820 | dwc->gadget.speed = USB_SPEED_UNKNOWN; |
Felipe Balbi | eeb720f | 2011-11-28 12:46:59 +0200 | [diff] [blame] | 3821 | dwc->gadget.sg_supported = true; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3822 | dwc->gadget.name = "dwc3-gadget"; |
Jianqiang Tang | 6a4290c | 2016-01-20 14:09:39 +0800 | [diff] [blame] | 3823 | dwc->gadget.is_otg = dwc->dr_mode == USB_DR_MODE_OTG; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3824 | |
| 3825 | /* |
Ben McCauley | b9e51b2 | 2015-11-16 10:47:24 -0600 | [diff] [blame] | 3826 | * FIXME We might be setting max_speed to <SUPER, however versions |
| 3827 | * <2.20a of dwc3 have an issue with metastability (documented |
| 3828 | * elsewhere in this driver) which tells us we can't set max speed to |
| 3829 | * anything lower than SUPER. |
| 3830 | * |
| 3831 | * Because gadget.max_speed is only used by composite.c and function |
| 3832 | * drivers (i.e. it won't go into dwc3's registers) we are allowing this |
| 3833 | * to happen so we avoid sending SuperSpeed Capability descriptor |
| 3834 | * together with our BOS descriptor as that could confuse host into |
| 3835 | * thinking we can handle super speed. |
| 3836 | * |
| 3837 | * Note that, in fact, we won't even support GetBOS requests when speed |
| 3838 | * is less than super speed because we don't have means, yet, to tell |
| 3839 | * composite.c that we are USB 2.0 + LPM ECN. |
| 3840 | */ |
| 3841 | if (dwc->revision < DWC3_REVISION_220A) |
| 3842 | dwc3_trace(trace_dwc3_gadget, |
Felipe Balbi | 60cfb37 | 2016-05-24 13:45:17 +0300 | [diff] [blame] | 3843 | "Changing max_speed on rev %08x", |
Ben McCauley | b9e51b2 | 2015-11-16 10:47:24 -0600 | [diff] [blame] | 3844 | dwc->revision); |
| 3845 | |
| 3846 | dwc->gadget.max_speed = dwc->maximum_speed; |
| 3847 | |
| 3848 | /* |
David Cohen | a4b9d94 | 2013-12-09 15:55:38 -0800 | [diff] [blame] | 3849 | * Per databook, DWC3 needs buffer size to be aligned to MaxPacketSize |
| 3850 | * on ep out. |
| 3851 | */ |
| 3852 | dwc->gadget.quirk_ep_out_aligned_size = true; |
| 3853 | |
| 3854 | /* |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3855 | * REVISIT: Here we should clear all pending IRQs to be |
| 3856 | * sure we're starting from a well known location. |
| 3857 | */ |
| 3858 | |
| 3859 | ret = dwc3_gadget_init_endpoints(dwc); |
| 3860 | if (ret) |
Felipe Balbi | 04c03d1 | 2015-12-02 10:06:45 -0600 | [diff] [blame] | 3861 | goto err5; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3862 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3863 | ret = usb_add_gadget_udc(dwc->dev, &dwc->gadget); |
| 3864 | if (ret) { |
| 3865 | dev_err(dwc->dev, "failed to register udc\n"); |
Felipe Balbi | 04c03d1 | 2015-12-02 10:06:45 -0600 | [diff] [blame] | 3866 | goto err5; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3867 | } |
| 3868 | |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3869 | if (!dwc->is_drd) { |
| 3870 | pm_runtime_no_callbacks(&dwc->gadget.dev); |
| 3871 | pm_runtime_set_active(&dwc->gadget.dev); |
| 3872 | pm_runtime_enable(&dwc->gadget.dev); |
| 3873 | pm_runtime_get(&dwc->gadget.dev); |
| 3874 | } |
| 3875 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3876 | return 0; |
| 3877 | |
Felipe Balbi | 04c03d1 | 2015-12-02 10:06:45 -0600 | [diff] [blame] | 3878 | err5: |
| 3879 | kfree(dwc->zlp_buf); |
| 3880 | |
Felipe Balbi | 5812b1c | 2011-08-27 22:07:53 +0300 | [diff] [blame] | 3881 | err4: |
David Cohen | e1f8046 | 2013-09-11 17:42:47 -0700 | [diff] [blame] | 3882 | dwc3_gadget_free_endpoints(dwc); |
Arnd Bergmann | 42695fc | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 3883 | dma_free_coherent(dwc->sysdev, DWC3_EP0_BOUNCE_SIZE, |
Felipe Balbi | 3ef35fa | 2012-05-04 12:58:14 +0300 | [diff] [blame] | 3884 | dwc->ep0_bounce, dwc->ep0_bounce_addr); |
Felipe Balbi | 5812b1c | 2011-08-27 22:07:53 +0300 | [diff] [blame] | 3885 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3886 | err3: |
Felipe Balbi | 0fc9a1b | 2011-12-19 11:32:34 +0200 | [diff] [blame] | 3887 | kfree(dwc->setup_buf); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3888 | |
| 3889 | err2: |
Arnd Bergmann | 42695fc | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 3890 | dma_free_coherent(dwc->sysdev, sizeof(*dwc->ep0_trb) * 2, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3891 | dwc->ep0_trb, dwc->ep0_trb_addr); |
| 3892 | |
| 3893 | err1: |
Arnd Bergmann | 42695fc | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 3894 | dma_free_coherent(dwc->sysdev, sizeof(*dwc->ctrl_req), |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3895 | dwc->ctrl_req, dwc->ctrl_req_addr); |
| 3896 | |
| 3897 | err0: |
| 3898 | return ret; |
| 3899 | } |
| 3900 | |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3901 | /* -------------------------------------------------------------------------- */ |
| 3902 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3903 | void dwc3_gadget_exit(struct dwc3 *dwc) |
| 3904 | { |
Mayank Rana | a99689a | 2016-08-10 17:39:47 -0700 | [diff] [blame] | 3905 | if (dwc->is_drd) { |
| 3906 | pm_runtime_put(&dwc->gadget.dev); |
| 3907 | pm_runtime_disable(&dwc->gadget.dev); |
| 3908 | } |
| 3909 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3910 | usb_del_gadget_udc(&dwc->gadget); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3911 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3912 | dwc3_gadget_free_endpoints(dwc); |
| 3913 | |
Arnd Bergmann | 42695fc | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 3914 | dma_free_coherent(dwc->sysdev, DWC3_EP0_BOUNCE_SIZE, |
Felipe Balbi | 3ef35fa | 2012-05-04 12:58:14 +0300 | [diff] [blame] | 3915 | dwc->ep0_bounce, dwc->ep0_bounce_addr); |
Felipe Balbi | 5812b1c | 2011-08-27 22:07:53 +0300 | [diff] [blame] | 3916 | |
Felipe Balbi | 0fc9a1b | 2011-12-19 11:32:34 +0200 | [diff] [blame] | 3917 | kfree(dwc->setup_buf); |
Felipe Balbi | 04c03d1 | 2015-12-02 10:06:45 -0600 | [diff] [blame] | 3918 | kfree(dwc->zlp_buf); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3919 | |
Arnd Bergmann | 42695fc | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 3920 | dma_free_coherent(dwc->sysdev, sizeof(*dwc->ep0_trb) * 2, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3921 | dwc->ep0_trb, dwc->ep0_trb_addr); |
| 3922 | |
Arnd Bergmann | 42695fc | 2016-11-17 17:13:47 +0530 | [diff] [blame] | 3923 | dma_free_coherent(dwc->sysdev, sizeof(*dwc->ctrl_req), |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3924 | dwc->ctrl_req, dwc->ctrl_req_addr); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 3925 | } |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3926 | |
Felipe Balbi | 0b0231a | 2014-10-07 10:19:23 -0500 | [diff] [blame] | 3927 | int dwc3_gadget_suspend(struct dwc3 *dwc) |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3928 | { |
Felipe Balbi | 9f8a67b | 2016-05-04 15:50:27 +0300 | [diff] [blame] | 3929 | int ret; |
| 3930 | |
Roger Quadros | 9772b47 | 2016-04-12 11:33:29 +0300 | [diff] [blame] | 3931 | if (!dwc->gadget_driver) |
| 3932 | return 0; |
| 3933 | |
Felipe Balbi | 9f8a67b | 2016-05-04 15:50:27 +0300 | [diff] [blame] | 3934 | ret = dwc3_gadget_run_stop(dwc, false, false); |
| 3935 | if (ret < 0) |
| 3936 | return ret; |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3937 | |
Felipe Balbi | 9f8a67b | 2016-05-04 15:50:27 +0300 | [diff] [blame] | 3938 | dwc3_disconnect_gadget(dwc); |
| 3939 | __dwc3_gadget_stop(dwc); |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3940 | |
| 3941 | return 0; |
| 3942 | } |
| 3943 | |
| 3944 | int dwc3_gadget_resume(struct dwc3 *dwc) |
| 3945 | { |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3946 | int ret; |
| 3947 | |
Roger Quadros | 9772b47 | 2016-04-12 11:33:29 +0300 | [diff] [blame] | 3948 | if (!dwc->gadget_driver) |
| 3949 | return 0; |
| 3950 | |
Felipe Balbi | 9f8a67b | 2016-05-04 15:50:27 +0300 | [diff] [blame] | 3951 | ret = __dwc3_gadget_start(dwc); |
| 3952 | if (ret < 0) |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3953 | goto err0; |
| 3954 | |
Felipe Balbi | 9f8a67b | 2016-05-04 15:50:27 +0300 | [diff] [blame] | 3955 | ret = dwc3_gadget_run_stop(dwc, true, false); |
| 3956 | if (ret < 0) |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3957 | goto err1; |
| 3958 | |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3959 | return 0; |
| 3960 | |
| 3961 | err1: |
Felipe Balbi | 9f8a67b | 2016-05-04 15:50:27 +0300 | [diff] [blame] | 3962 | __dwc3_gadget_stop(dwc); |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 3963 | |
| 3964 | err0: |
| 3965 | return ret; |
| 3966 | } |
Felipe Balbi | fc8bb91 | 2016-05-16 13:14:48 +0300 | [diff] [blame] | 3967 | |
| 3968 | void dwc3_gadget_process_pending_events(struct dwc3 *dwc) |
| 3969 | { |
| 3970 | if (dwc->pending_events) { |
| 3971 | dwc3_interrupt(dwc->irq_gadget, dwc->ev_buf); |
| 3972 | dwc->pending_events = false; |
| 3973 | enable_irq(dwc->irq_gadget); |
| 3974 | } |
| 3975 | } |