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