Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1 | /** |
| 2 | * core.c - DesignWare USB3 DRD Controller Core file |
| 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 | * |
Felipe Balbi | 5945f78 | 2013-06-30 14:15:11 +0300 | [diff] [blame] | 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 20 | */ |
| 21 | |
Felipe Balbi | fa0ea13 | 2014-09-19 15:51:11 -0500 | [diff] [blame] | 22 | #include <linux/version.h> |
Felipe Balbi | a72e658 | 2011-09-05 13:37:28 +0300 | [diff] [blame] | 23 | #include <linux/module.h> |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 24 | #include <linux/kernel.h> |
| 25 | #include <linux/slab.h> |
| 26 | #include <linux/spinlock.h> |
| 27 | #include <linux/platform_device.h> |
| 28 | #include <linux/pm_runtime.h> |
| 29 | #include <linux/interrupt.h> |
| 30 | #include <linux/ioport.h> |
| 31 | #include <linux/io.h> |
| 32 | #include <linux/list.h> |
| 33 | #include <linux/delay.h> |
| 34 | #include <linux/dma-mapping.h> |
Felipe Balbi | 457e84b | 2012-01-18 18:04:09 +0200 | [diff] [blame] | 35 | #include <linux/of.h> |
Heikki Krogerus | 404905a | 2014-09-25 10:57:02 +0300 | [diff] [blame] | 36 | #include <linux/acpi.h> |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 37 | |
| 38 | #include <linux/usb/ch9.h> |
| 39 | #include <linux/usb/gadget.h> |
Felipe Balbi | f7e846f | 2013-06-30 14:29:51 +0300 | [diff] [blame] | 40 | #include <linux/usb/of.h> |
Ruchika Kharwar | a45c82b8 | 2013-07-06 07:52:49 -0500 | [diff] [blame] | 41 | #include <linux/usb/otg.h> |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 42 | |
Felipe Balbi | 6462cbd | 2013-06-30 14:19:33 +0300 | [diff] [blame] | 43 | #include "platform_data.h" |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 44 | #include "core.h" |
| 45 | #include "gadget.h" |
| 46 | #include "io.h" |
| 47 | |
| 48 | #include "debug.h" |
| 49 | |
Felipe Balbi | 8300dd2 | 2011-10-18 13:54:01 +0300 | [diff] [blame] | 50 | /* -------------------------------------------------------------------------- */ |
| 51 | |
Sebastian Andrzej Siewior | 3140e8cb | 2011-10-31 22:25:40 +0100 | [diff] [blame] | 52 | void dwc3_set_mode(struct dwc3 *dwc, u32 mode) |
| 53 | { |
| 54 | u32 reg; |
| 55 | |
| 56 | reg = dwc3_readl(dwc->regs, DWC3_GCTL); |
| 57 | reg &= ~(DWC3_GCTL_PRTCAPDIR(DWC3_GCTL_PRTCAP_OTG)); |
| 58 | reg |= DWC3_GCTL_PRTCAPDIR(mode); |
| 59 | dwc3_writel(dwc->regs, DWC3_GCTL, reg); |
| 60 | } |
Felipe Balbi | 8300dd2 | 2011-10-18 13:54:01 +0300 | [diff] [blame] | 61 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 62 | /** |
| 63 | * dwc3_core_soft_reset - Issues core soft reset and PHY reset |
| 64 | * @dwc: pointer to our context structure |
| 65 | */ |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 66 | static int dwc3_core_soft_reset(struct dwc3 *dwc) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 67 | { |
| 68 | u32 reg; |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 69 | int ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 70 | |
| 71 | /* Before Resetting PHY, put Core in Reset */ |
| 72 | reg = dwc3_readl(dwc->regs, DWC3_GCTL); |
| 73 | reg |= DWC3_GCTL_CORESOFTRESET; |
| 74 | dwc3_writel(dwc->regs, DWC3_GCTL, reg); |
| 75 | |
| 76 | /* Assert USB3 PHY reset */ |
| 77 | reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0)); |
| 78 | reg |= DWC3_GUSB3PIPECTL_PHYSOFTRST; |
| 79 | dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg); |
| 80 | |
| 81 | /* Assert USB2 PHY reset */ |
| 82 | reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0)); |
| 83 | reg |= DWC3_GUSB2PHYCFG_PHYSOFTRST; |
| 84 | dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg); |
| 85 | |
Felipe Balbi | 51e1e7b | 2012-07-19 14:09:48 +0300 | [diff] [blame] | 86 | usb_phy_init(dwc->usb2_phy); |
| 87 | usb_phy_init(dwc->usb3_phy); |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 88 | ret = phy_init(dwc->usb2_generic_phy); |
| 89 | if (ret < 0) |
| 90 | return ret; |
| 91 | |
| 92 | ret = phy_init(dwc->usb3_generic_phy); |
| 93 | if (ret < 0) { |
| 94 | phy_exit(dwc->usb2_generic_phy); |
| 95 | return ret; |
| 96 | } |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 97 | mdelay(100); |
| 98 | |
| 99 | /* Clear USB3 PHY reset */ |
| 100 | reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0)); |
| 101 | reg &= ~DWC3_GUSB3PIPECTL_PHYSOFTRST; |
| 102 | dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg); |
| 103 | |
| 104 | /* Clear USB2 PHY reset */ |
| 105 | reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0)); |
| 106 | reg &= ~DWC3_GUSB2PHYCFG_PHYSOFTRST; |
| 107 | dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg); |
| 108 | |
Pratyush Anand | 45627ac | 2012-06-21 17:44:28 +0530 | [diff] [blame] | 109 | mdelay(100); |
| 110 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 111 | /* After PHYs are stable we can take Core out of reset state */ |
| 112 | reg = dwc3_readl(dwc->regs, DWC3_GCTL); |
| 113 | reg &= ~DWC3_GCTL_CORESOFTRESET; |
| 114 | dwc3_writel(dwc->regs, DWC3_GCTL, reg); |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 115 | |
| 116 | return 0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | /** |
Heikki Krogerus | c5cc74e | 2015-05-13 15:26:47 +0300 | [diff] [blame^] | 120 | * dwc3_soft_reset - Issue soft reset |
| 121 | * @dwc: Pointer to our controller context structure |
| 122 | */ |
| 123 | static int dwc3_soft_reset(struct dwc3 *dwc) |
| 124 | { |
| 125 | unsigned long timeout; |
| 126 | u32 reg; |
| 127 | |
| 128 | timeout = jiffies + msecs_to_jiffies(500); |
| 129 | dwc3_writel(dwc->regs, DWC3_DCTL, DWC3_DCTL_CSFTRST); |
| 130 | do { |
| 131 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 132 | if (!(reg & DWC3_DCTL_CSFTRST)) |
| 133 | break; |
| 134 | |
| 135 | if (time_after(jiffies, timeout)) { |
| 136 | dev_err(dwc->dev, "Reset Timed Out\n"); |
| 137 | return -ETIMEDOUT; |
| 138 | } |
| 139 | |
| 140 | cpu_relax(); |
| 141 | } while (true); |
| 142 | |
| 143 | return 0; |
| 144 | } |
| 145 | |
| 146 | /** |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 147 | * dwc3_free_one_event_buffer - Frees one event buffer |
| 148 | * @dwc: Pointer to our controller context structure |
| 149 | * @evt: Pointer to event buffer to be freed |
| 150 | */ |
| 151 | static void dwc3_free_one_event_buffer(struct dwc3 *dwc, |
| 152 | struct dwc3_event_buffer *evt) |
| 153 | { |
| 154 | dma_free_coherent(dwc->dev, evt->length, evt->buf, evt->dma); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | /** |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 158 | * dwc3_alloc_one_event_buffer - Allocates one event buffer structure |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 159 | * @dwc: Pointer to our controller context structure |
| 160 | * @length: size of the event buffer |
| 161 | * |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 162 | * Returns a pointer to the allocated event buffer structure on success |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 163 | * otherwise ERR_PTR(errno). |
| 164 | */ |
Felipe Balbi | 67d0b50 | 2013-02-22 16:31:07 +0200 | [diff] [blame] | 165 | static struct dwc3_event_buffer *dwc3_alloc_one_event_buffer(struct dwc3 *dwc, |
| 166 | unsigned length) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 167 | { |
| 168 | struct dwc3_event_buffer *evt; |
| 169 | |
Felipe Balbi | 380f0d2 | 2012-10-11 13:48:36 +0300 | [diff] [blame] | 170 | evt = devm_kzalloc(dwc->dev, sizeof(*evt), GFP_KERNEL); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 171 | if (!evt) |
| 172 | return ERR_PTR(-ENOMEM); |
| 173 | |
| 174 | evt->dwc = dwc; |
| 175 | evt->length = length; |
| 176 | evt->buf = dma_alloc_coherent(dwc->dev, length, |
| 177 | &evt->dma, GFP_KERNEL); |
Felipe Balbi | e32672f | 2012-11-08 15:26:41 +0200 | [diff] [blame] | 178 | if (!evt->buf) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 179 | return ERR_PTR(-ENOMEM); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 180 | |
| 181 | return evt; |
| 182 | } |
| 183 | |
| 184 | /** |
| 185 | * dwc3_free_event_buffers - frees all allocated event buffers |
| 186 | * @dwc: Pointer to our controller context structure |
| 187 | */ |
| 188 | static void dwc3_free_event_buffers(struct dwc3 *dwc) |
| 189 | { |
| 190 | struct dwc3_event_buffer *evt; |
| 191 | int i; |
| 192 | |
Felipe Balbi | 9f622b2 | 2011-10-12 10:31:04 +0300 | [diff] [blame] | 193 | for (i = 0; i < dwc->num_event_buffers; i++) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 194 | evt = dwc->ev_buffs[i]; |
Anton Tikhomirov | 64b6c8a | 2012-03-06 17:05:15 +0900 | [diff] [blame] | 195 | if (evt) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 196 | dwc3_free_one_event_buffer(dwc, evt); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 197 | } |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * dwc3_alloc_event_buffers - Allocates @num event buffers of size @length |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 202 | * @dwc: pointer to our controller context structure |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 203 | * @length: size of event buffer |
| 204 | * |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 205 | * Returns 0 on success otherwise negative errno. In the error case, dwc |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 206 | * may contain some buffers allocated but not all which were requested. |
| 207 | */ |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 208 | static int dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 209 | { |
Felipe Balbi | 9f622b2 | 2011-10-12 10:31:04 +0300 | [diff] [blame] | 210 | int num; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 211 | int i; |
| 212 | |
Felipe Balbi | 9f622b2 | 2011-10-12 10:31:04 +0300 | [diff] [blame] | 213 | num = DWC3_NUM_INT(dwc->hwparams.hwparams1); |
| 214 | dwc->num_event_buffers = num; |
| 215 | |
Felipe Balbi | 380f0d2 | 2012-10-11 13:48:36 +0300 | [diff] [blame] | 216 | dwc->ev_buffs = devm_kzalloc(dwc->dev, sizeof(*dwc->ev_buffs) * num, |
| 217 | GFP_KERNEL); |
Jingoo Han | 734d5a5 | 2014-07-17 12:45:11 +0900 | [diff] [blame] | 218 | if (!dwc->ev_buffs) |
Felipe Balbi | 457d3f2 | 2011-10-24 12:03:13 +0300 | [diff] [blame] | 219 | return -ENOMEM; |
Felipe Balbi | 457d3f2 | 2011-10-24 12:03:13 +0300 | [diff] [blame] | 220 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 221 | for (i = 0; i < num; i++) { |
| 222 | struct dwc3_event_buffer *evt; |
| 223 | |
| 224 | evt = dwc3_alloc_one_event_buffer(dwc, length); |
| 225 | if (IS_ERR(evt)) { |
| 226 | dev_err(dwc->dev, "can't allocate event buffer\n"); |
| 227 | return PTR_ERR(evt); |
| 228 | } |
| 229 | dwc->ev_buffs[i] = evt; |
| 230 | } |
| 231 | |
| 232 | return 0; |
| 233 | } |
| 234 | |
| 235 | /** |
| 236 | * dwc3_event_buffers_setup - setup our allocated event buffers |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 237 | * @dwc: pointer to our controller context structure |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 238 | * |
| 239 | * Returns 0 on success otherwise negative errno. |
| 240 | */ |
Paul Zimmerman | 7acd85e | 2012-04-27 14:28:02 +0300 | [diff] [blame] | 241 | static int dwc3_event_buffers_setup(struct dwc3 *dwc) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 242 | { |
| 243 | struct dwc3_event_buffer *evt; |
| 244 | int n; |
| 245 | |
Felipe Balbi | 9f622b2 | 2011-10-12 10:31:04 +0300 | [diff] [blame] | 246 | for (n = 0; n < dwc->num_event_buffers; n++) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 247 | evt = dwc->ev_buffs[n]; |
| 248 | dev_dbg(dwc->dev, "Event buf %p dma %08llx length %d\n", |
| 249 | evt->buf, (unsigned long long) evt->dma, |
| 250 | evt->length); |
| 251 | |
Paul Zimmerman | 7acd85e | 2012-04-27 14:28:02 +0300 | [diff] [blame] | 252 | evt->lpos = 0; |
| 253 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 254 | dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(n), |
| 255 | lower_32_bits(evt->dma)); |
| 256 | dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(n), |
| 257 | upper_32_bits(evt->dma)); |
| 258 | dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(n), |
Felipe Balbi | 68d6a01 | 2013-06-12 21:09:26 +0300 | [diff] [blame] | 259 | DWC3_GEVNTSIZ_SIZE(evt->length)); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 260 | dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(n), 0); |
| 261 | } |
| 262 | |
| 263 | return 0; |
| 264 | } |
| 265 | |
| 266 | static void dwc3_event_buffers_cleanup(struct dwc3 *dwc) |
| 267 | { |
| 268 | struct dwc3_event_buffer *evt; |
| 269 | int n; |
| 270 | |
Felipe Balbi | 9f622b2 | 2011-10-12 10:31:04 +0300 | [diff] [blame] | 271 | for (n = 0; n < dwc->num_event_buffers; n++) { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 272 | evt = dwc->ev_buffs[n]; |
Paul Zimmerman | 7acd85e | 2012-04-27 14:28:02 +0300 | [diff] [blame] | 273 | |
| 274 | evt->lpos = 0; |
| 275 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 276 | dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(n), 0); |
| 277 | dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(n), 0); |
Felipe Balbi | 68d6a01 | 2013-06-12 21:09:26 +0300 | [diff] [blame] | 278 | dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(n), DWC3_GEVNTSIZ_INTMASK |
| 279 | | DWC3_GEVNTSIZ_SIZE(0)); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 280 | dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(n), 0); |
| 281 | } |
| 282 | } |
| 283 | |
Felipe Balbi | 0ffcaf3 | 2013-12-19 13:04:28 -0600 | [diff] [blame] | 284 | static int dwc3_alloc_scratch_buffers(struct dwc3 *dwc) |
| 285 | { |
| 286 | if (!dwc->has_hibernation) |
| 287 | return 0; |
| 288 | |
| 289 | if (!dwc->nr_scratch) |
| 290 | return 0; |
| 291 | |
| 292 | dwc->scratchbuf = kmalloc_array(dwc->nr_scratch, |
| 293 | DWC3_SCRATCHBUF_SIZE, GFP_KERNEL); |
| 294 | if (!dwc->scratchbuf) |
| 295 | return -ENOMEM; |
| 296 | |
| 297 | return 0; |
| 298 | } |
| 299 | |
| 300 | static int dwc3_setup_scratch_buffers(struct dwc3 *dwc) |
| 301 | { |
| 302 | dma_addr_t scratch_addr; |
| 303 | u32 param; |
| 304 | int ret; |
| 305 | |
| 306 | if (!dwc->has_hibernation) |
| 307 | return 0; |
| 308 | |
| 309 | if (!dwc->nr_scratch) |
| 310 | return 0; |
| 311 | |
| 312 | /* should never fall here */ |
| 313 | if (!WARN_ON(dwc->scratchbuf)) |
| 314 | return 0; |
| 315 | |
| 316 | scratch_addr = dma_map_single(dwc->dev, dwc->scratchbuf, |
| 317 | dwc->nr_scratch * DWC3_SCRATCHBUF_SIZE, |
| 318 | DMA_BIDIRECTIONAL); |
| 319 | if (dma_mapping_error(dwc->dev, scratch_addr)) { |
| 320 | dev_err(dwc->dev, "failed to map scratch buffer\n"); |
| 321 | ret = -EFAULT; |
| 322 | goto err0; |
| 323 | } |
| 324 | |
| 325 | dwc->scratch_addr = scratch_addr; |
| 326 | |
| 327 | param = lower_32_bits(scratch_addr); |
| 328 | |
| 329 | ret = dwc3_send_gadget_generic_command(dwc, |
| 330 | DWC3_DGCMD_SET_SCRATCHPAD_ADDR_LO, param); |
| 331 | if (ret < 0) |
| 332 | goto err1; |
| 333 | |
| 334 | param = upper_32_bits(scratch_addr); |
| 335 | |
| 336 | ret = dwc3_send_gadget_generic_command(dwc, |
| 337 | DWC3_DGCMD_SET_SCRATCHPAD_ADDR_HI, param); |
| 338 | if (ret < 0) |
| 339 | goto err1; |
| 340 | |
| 341 | return 0; |
| 342 | |
| 343 | err1: |
| 344 | dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch * |
| 345 | DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL); |
| 346 | |
| 347 | err0: |
| 348 | return ret; |
| 349 | } |
| 350 | |
| 351 | static void dwc3_free_scratch_buffers(struct dwc3 *dwc) |
| 352 | { |
| 353 | if (!dwc->has_hibernation) |
| 354 | return; |
| 355 | |
| 356 | if (!dwc->nr_scratch) |
| 357 | return; |
| 358 | |
| 359 | /* should never fall here */ |
| 360 | if (!WARN_ON(dwc->scratchbuf)) |
| 361 | return; |
| 362 | |
| 363 | dma_unmap_single(dwc->dev, dwc->scratch_addr, dwc->nr_scratch * |
| 364 | DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL); |
| 365 | kfree(dwc->scratchbuf); |
| 366 | } |
| 367 | |
Felipe Balbi | 789451f6 | 2011-05-05 15:53:10 +0300 | [diff] [blame] | 368 | static void dwc3_core_num_eps(struct dwc3 *dwc) |
| 369 | { |
| 370 | struct dwc3_hwparams *parms = &dwc->hwparams; |
| 371 | |
| 372 | dwc->num_in_eps = DWC3_NUM_IN_EPS(parms); |
| 373 | dwc->num_out_eps = DWC3_NUM_EPS(parms) - dwc->num_in_eps; |
| 374 | |
Felipe Balbi | 7381528 | 2015-01-27 13:48:14 -0600 | [diff] [blame] | 375 | dwc3_trace(trace_dwc3_core, "found %d IN and %d OUT endpoints", |
Felipe Balbi | 789451f6 | 2011-05-05 15:53:10 +0300 | [diff] [blame] | 376 | dwc->num_in_eps, dwc->num_out_eps); |
| 377 | } |
| 378 | |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 379 | static void dwc3_cache_hwparams(struct dwc3 *dwc) |
Felipe Balbi | 26ceca9 | 2011-09-30 10:58:49 +0300 | [diff] [blame] | 380 | { |
| 381 | struct dwc3_hwparams *parms = &dwc->hwparams; |
| 382 | |
| 383 | parms->hwparams0 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS0); |
| 384 | parms->hwparams1 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS1); |
| 385 | parms->hwparams2 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS2); |
| 386 | parms->hwparams3 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS3); |
| 387 | parms->hwparams4 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS4); |
| 388 | parms->hwparams5 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS5); |
| 389 | parms->hwparams6 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS6); |
| 390 | parms->hwparams7 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS7); |
| 391 | parms->hwparams8 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS8); |
| 392 | } |
| 393 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 394 | /** |
Huang Rui | b5a65c4 | 2014-10-28 19:54:28 +0800 | [diff] [blame] | 395 | * dwc3_phy_setup - Configure USB PHY Interface of DWC3 Core |
| 396 | * @dwc: Pointer to our controller context structure |
| 397 | */ |
| 398 | static void dwc3_phy_setup(struct dwc3 *dwc) |
| 399 | { |
| 400 | u32 reg; |
| 401 | |
| 402 | reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0)); |
| 403 | |
Huang Rui | 2164a47 | 2014-10-28 19:54:35 +0800 | [diff] [blame] | 404 | /* |
| 405 | * Above 1.94a, it is recommended to set DWC3_GUSB3PIPECTL_SUSPHY |
| 406 | * to '0' during coreConsultant configuration. So default value |
| 407 | * will be '0' when the core is reset. Application needs to set it |
| 408 | * to '1' after the core initialization is completed. |
| 409 | */ |
| 410 | if (dwc->revision > DWC3_REVISION_194A) |
| 411 | reg |= DWC3_GUSB3PIPECTL_SUSPHY; |
| 412 | |
Huang Rui | b5a65c4 | 2014-10-28 19:54:28 +0800 | [diff] [blame] | 413 | if (dwc->u2ss_inp3_quirk) |
| 414 | reg |= DWC3_GUSB3PIPECTL_U2SSINP3OK; |
| 415 | |
Huang Rui | df31f5b | 2014-10-28 19:54:29 +0800 | [diff] [blame] | 416 | if (dwc->req_p1p2p3_quirk) |
| 417 | reg |= DWC3_GUSB3PIPECTL_REQP1P2P3; |
| 418 | |
Huang Rui | a2a1d0f | 2014-10-28 19:54:30 +0800 | [diff] [blame] | 419 | if (dwc->del_p1p2p3_quirk) |
| 420 | reg |= DWC3_GUSB3PIPECTL_DEP1P2P3_EN; |
| 421 | |
Huang Rui | 41c06ff | 2014-10-28 19:54:31 +0800 | [diff] [blame] | 422 | if (dwc->del_phy_power_chg_quirk) |
| 423 | reg |= DWC3_GUSB3PIPECTL_DEPOCHANGE; |
| 424 | |
Huang Rui | fb67afc | 2014-10-28 19:54:32 +0800 | [diff] [blame] | 425 | if (dwc->lfps_filter_quirk) |
| 426 | reg |= DWC3_GUSB3PIPECTL_LFPSFILT; |
| 427 | |
Huang Rui | 14f4ac5 | 2014-10-28 19:54:33 +0800 | [diff] [blame] | 428 | if (dwc->rx_detect_poll_quirk) |
| 429 | reg |= DWC3_GUSB3PIPECTL_RX_DETOPOLL; |
| 430 | |
Huang Rui | 6b6a0c9 | 2014-10-31 11:11:12 +0800 | [diff] [blame] | 431 | if (dwc->tx_de_emphasis_quirk) |
| 432 | reg |= DWC3_GUSB3PIPECTL_TX_DEEPH(dwc->tx_de_emphasis); |
| 433 | |
Felipe Balbi | cd72f89 | 2014-11-06 11:31:00 -0600 | [diff] [blame] | 434 | if (dwc->dis_u3_susphy_quirk) |
Huang Rui | 59acfa2 | 2014-10-31 11:11:13 +0800 | [diff] [blame] | 435 | reg &= ~DWC3_GUSB3PIPECTL_SUSPHY; |
| 436 | |
Huang Rui | b5a65c4 | 2014-10-28 19:54:28 +0800 | [diff] [blame] | 437 | dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg); |
| 438 | |
| 439 | mdelay(100); |
Huang Rui | 2164a47 | 2014-10-28 19:54:35 +0800 | [diff] [blame] | 440 | |
| 441 | reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0)); |
| 442 | |
| 443 | /* |
| 444 | * Above 1.94a, it is recommended to set DWC3_GUSB2PHYCFG_SUSPHY to |
| 445 | * '0' during coreConsultant configuration. So default value will |
| 446 | * be '0' when the core is reset. Application needs to set it to |
| 447 | * '1' after the core initialization is completed. |
| 448 | */ |
| 449 | if (dwc->revision > DWC3_REVISION_194A) |
| 450 | reg |= DWC3_GUSB2PHYCFG_SUSPHY; |
| 451 | |
Felipe Balbi | cd72f89 | 2014-11-06 11:31:00 -0600 | [diff] [blame] | 452 | if (dwc->dis_u2_susphy_quirk) |
Huang Rui | 0effe0a | 2014-10-31 11:11:14 +0800 | [diff] [blame] | 453 | reg &= ~DWC3_GUSB2PHYCFG_SUSPHY; |
| 454 | |
Huang Rui | 2164a47 | 2014-10-28 19:54:35 +0800 | [diff] [blame] | 455 | dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg); |
| 456 | |
| 457 | mdelay(100); |
Huang Rui | b5a65c4 | 2014-10-28 19:54:28 +0800 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | /** |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 461 | * dwc3_core_init - Low-level initialization of DWC3 Core |
| 462 | * @dwc: Pointer to our controller context structure |
| 463 | * |
| 464 | * Returns 0 on success otherwise negative errno. |
| 465 | */ |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 466 | static int dwc3_core_init(struct dwc3 *dwc) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 467 | { |
Felipe Balbi | 0ffcaf3 | 2013-12-19 13:04:28 -0600 | [diff] [blame] | 468 | u32 hwparams4 = dwc->hwparams.hwparams4; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 469 | u32 reg; |
| 470 | int ret; |
| 471 | |
Sebastian Andrzej Siewior | 7650bd7 | 2011-08-29 13:56:36 +0200 | [diff] [blame] | 472 | reg = dwc3_readl(dwc->regs, DWC3_GSNPSID); |
| 473 | /* This should read as U3 followed by revision number */ |
| 474 | if ((reg & DWC3_GSNPSID_MASK) != 0x55330000) { |
| 475 | dev_err(dwc->dev, "this is not a DesignWare USB3 DRD Core\n"); |
| 476 | ret = -ENODEV; |
| 477 | goto err0; |
| 478 | } |
Felipe Balbi | 248b122 | 2011-12-14 21:59:30 +0200 | [diff] [blame] | 479 | dwc->revision = reg; |
Sebastian Andrzej Siewior | 7650bd7 | 2011-08-29 13:56:36 +0200 | [diff] [blame] | 480 | |
Felipe Balbi | fa0ea13 | 2014-09-19 15:51:11 -0500 | [diff] [blame] | 481 | /* |
| 482 | * Write Linux Version Code to our GUID register so it's easy to figure |
| 483 | * out which kernel version a bug was found. |
| 484 | */ |
| 485 | dwc3_writel(dwc->regs, DWC3_GUID, LINUX_VERSION_CODE); |
| 486 | |
Paul Zimmerman | 0e1e5c4 | 2014-05-23 11:39:24 -0700 | [diff] [blame] | 487 | /* Handle USB2.0-only core configuration */ |
| 488 | if (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) == |
| 489 | DWC3_GHWPARAMS3_SSPHY_IFC_DIS) { |
| 490 | if (dwc->maximum_speed == USB_SPEED_SUPER) |
| 491 | dwc->maximum_speed = USB_SPEED_HIGH; |
| 492 | } |
| 493 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 494 | /* issue device SoftReset too */ |
Heikki Krogerus | c5cc74e | 2015-05-13 15:26:47 +0300 | [diff] [blame^] | 495 | ret = dwc3_soft_reset(dwc); |
| 496 | if (ret) |
| 497 | goto err0; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 498 | |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 499 | ret = dwc3_core_soft_reset(dwc); |
| 500 | if (ret) |
| 501 | goto err0; |
Pratyush Anand | 58a0f23 | 2012-06-21 17:44:29 +0530 | [diff] [blame] | 502 | |
Sebastian Andrzej Siewior | 4878a02 | 2011-10-31 22:25:41 +0100 | [diff] [blame] | 503 | reg = dwc3_readl(dwc->regs, DWC3_GCTL); |
Paul Zimmerman | 3e87c42 | 2012-02-24 17:32:13 -0800 | [diff] [blame] | 504 | reg &= ~DWC3_GCTL_SCALEDOWN_MASK; |
Sebastian Andrzej Siewior | 4878a02 | 2011-10-31 22:25:41 +0100 | [diff] [blame] | 505 | |
Sebastian Andrzej Siewior | 164d773 | 2011-11-24 11:22:05 +0100 | [diff] [blame] | 506 | switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1)) { |
Sebastian Andrzej Siewior | 4878a02 | 2011-10-31 22:25:41 +0100 | [diff] [blame] | 507 | case DWC3_GHWPARAMS1_EN_PWROPT_CLK: |
Felipe Balbi | 32a4a13 | 2014-02-25 14:00:13 -0600 | [diff] [blame] | 508 | /** |
| 509 | * WORKAROUND: DWC3 revisions between 2.10a and 2.50a have an |
| 510 | * issue which would cause xHCI compliance tests to fail. |
| 511 | * |
| 512 | * Because of that we cannot enable clock gating on such |
| 513 | * configurations. |
| 514 | * |
| 515 | * Refers to: |
| 516 | * |
| 517 | * STAR#9000588375: Clock Gating, SOF Issues when ref_clk-Based |
| 518 | * SOF/ITP Mode Used |
| 519 | */ |
| 520 | if ((dwc->dr_mode == USB_DR_MODE_HOST || |
| 521 | dwc->dr_mode == USB_DR_MODE_OTG) && |
| 522 | (dwc->revision >= DWC3_REVISION_210A && |
| 523 | dwc->revision <= DWC3_REVISION_250A)) |
| 524 | reg |= DWC3_GCTL_DSBLCLKGTNG | DWC3_GCTL_SOFITPSYNC; |
| 525 | else |
| 526 | reg &= ~DWC3_GCTL_DSBLCLKGTNG; |
Sebastian Andrzej Siewior | 4878a02 | 2011-10-31 22:25:41 +0100 | [diff] [blame] | 527 | break; |
Felipe Balbi | 0ffcaf3 | 2013-12-19 13:04:28 -0600 | [diff] [blame] | 528 | case DWC3_GHWPARAMS1_EN_PWROPT_HIB: |
| 529 | /* enable hibernation here */ |
| 530 | dwc->nr_scratch = DWC3_GHWPARAMS4_HIBER_SCRATCHBUFS(hwparams4); |
Huang Rui | 2eac399 | 2014-10-28 19:54:22 +0800 | [diff] [blame] | 531 | |
| 532 | /* |
| 533 | * REVISIT Enabling this bit so that host-mode hibernation |
| 534 | * will work. Device-mode hibernation is not yet implemented. |
| 535 | */ |
| 536 | reg |= DWC3_GCTL_GBLHIBERNATIONEN; |
Felipe Balbi | 0ffcaf3 | 2013-12-19 13:04:28 -0600 | [diff] [blame] | 537 | break; |
Sebastian Andrzej Siewior | 4878a02 | 2011-10-31 22:25:41 +0100 | [diff] [blame] | 538 | default: |
| 539 | dev_dbg(dwc->dev, "No power optimization available\n"); |
| 540 | } |
| 541 | |
Huang Rui | 946bd57 | 2014-10-28 19:54:23 +0800 | [diff] [blame] | 542 | /* check if current dwc3 is on simulation board */ |
| 543 | if (dwc->hwparams.hwparams6 & DWC3_GHWPARAMS6_EN_FPGA) { |
| 544 | dev_dbg(dwc->dev, "it is on FPGA board\n"); |
| 545 | dwc->is_fpga = true; |
| 546 | } |
| 547 | |
Huang Rui | 3b81221 | 2014-10-28 19:54:25 +0800 | [diff] [blame] | 548 | WARN_ONCE(dwc->disable_scramble_quirk && !dwc->is_fpga, |
| 549 | "disable_scramble cannot be used on non-FPGA builds\n"); |
| 550 | |
| 551 | if (dwc->disable_scramble_quirk && dwc->is_fpga) |
| 552 | reg |= DWC3_GCTL_DISSCRAMBLE; |
| 553 | else |
| 554 | reg &= ~DWC3_GCTL_DISSCRAMBLE; |
| 555 | |
Huang Rui | 9a5b2f3 | 2014-10-28 19:54:27 +0800 | [diff] [blame] | 556 | if (dwc->u2exit_lfps_quirk) |
| 557 | reg |= DWC3_GCTL_U2EXIT_LFPS; |
| 558 | |
Sebastian Andrzej Siewior | 4878a02 | 2011-10-31 22:25:41 +0100 | [diff] [blame] | 559 | /* |
| 560 | * WORKAROUND: DWC3 revisions <1.90a have a bug |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 561 | * where the device can fail to connect at SuperSpeed |
Sebastian Andrzej Siewior | 4878a02 | 2011-10-31 22:25:41 +0100 | [diff] [blame] | 562 | * and falls back to high-speed mode which causes |
Paul Zimmerman | 1d04679 | 2012-02-15 18:56:56 -0800 | [diff] [blame] | 563 | * the device to enter a Connect/Disconnect loop |
Sebastian Andrzej Siewior | 4878a02 | 2011-10-31 22:25:41 +0100 | [diff] [blame] | 564 | */ |
| 565 | if (dwc->revision < DWC3_REVISION_190A) |
| 566 | reg |= DWC3_GCTL_U2RSTECN; |
| 567 | |
Felipe Balbi | 789451f6 | 2011-05-05 15:53:10 +0300 | [diff] [blame] | 568 | dwc3_core_num_eps(dwc); |
| 569 | |
Sebastian Andrzej Siewior | 4878a02 | 2011-10-31 22:25:41 +0100 | [diff] [blame] | 570 | dwc3_writel(dwc->regs, DWC3_GCTL, reg); |
| 571 | |
Huang Rui | b5a65c4 | 2014-10-28 19:54:28 +0800 | [diff] [blame] | 572 | dwc3_phy_setup(dwc); |
| 573 | |
Felipe Balbi | 0ffcaf3 | 2013-12-19 13:04:28 -0600 | [diff] [blame] | 574 | ret = dwc3_alloc_scratch_buffers(dwc); |
| 575 | if (ret) |
| 576 | goto err1; |
| 577 | |
| 578 | ret = dwc3_setup_scratch_buffers(dwc); |
| 579 | if (ret) |
| 580 | goto err2; |
| 581 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 582 | return 0; |
| 583 | |
Felipe Balbi | 0ffcaf3 | 2013-12-19 13:04:28 -0600 | [diff] [blame] | 584 | err2: |
| 585 | dwc3_free_scratch_buffers(dwc); |
| 586 | |
| 587 | err1: |
| 588 | usb_phy_shutdown(dwc->usb2_phy); |
| 589 | usb_phy_shutdown(dwc->usb3_phy); |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 590 | phy_exit(dwc->usb2_generic_phy); |
| 591 | phy_exit(dwc->usb3_generic_phy); |
Felipe Balbi | 0ffcaf3 | 2013-12-19 13:04:28 -0600 | [diff] [blame] | 592 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 593 | err0: |
| 594 | return ret; |
| 595 | } |
| 596 | |
| 597 | static void dwc3_core_exit(struct dwc3 *dwc) |
| 598 | { |
Felipe Balbi | 0ffcaf3 | 2013-12-19 13:04:28 -0600 | [diff] [blame] | 599 | dwc3_free_scratch_buffers(dwc); |
Vivek Gautam | 01b8daf | 2012-10-13 19:20:18 +0530 | [diff] [blame] | 600 | usb_phy_shutdown(dwc->usb2_phy); |
| 601 | usb_phy_shutdown(dwc->usb3_phy); |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 602 | phy_exit(dwc->usb2_generic_phy); |
| 603 | phy_exit(dwc->usb3_generic_phy); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 604 | } |
| 605 | |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 606 | static int dwc3_core_get_phy(struct dwc3 *dwc) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 607 | { |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 608 | struct device *dev = dwc->dev; |
Felipe Balbi | 941ea36 | 2013-07-31 09:21:25 +0300 | [diff] [blame] | 609 | struct device_node *node = dev->of_node; |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 610 | int ret; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 611 | |
Kishon Vijay Abraham I | 5088b6f | 2013-01-25 16:36:53 +0530 | [diff] [blame] | 612 | if (node) { |
| 613 | dwc->usb2_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 0); |
| 614 | dwc->usb3_phy = devm_usb_get_phy_by_phandle(dev, "usb-phy", 1); |
Felipe Balbi | bb67490 | 2013-08-14 13:21:23 -0500 | [diff] [blame] | 615 | } else { |
| 616 | dwc->usb2_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB2); |
| 617 | dwc->usb3_phy = devm_usb_get_phy(dev, USB_PHY_TYPE_USB3); |
Kishon Vijay Abraham I | 5088b6f | 2013-01-25 16:36:53 +0530 | [diff] [blame] | 618 | } |
| 619 | |
Felipe Balbi | d105e7f | 2013-03-15 10:52:08 +0200 | [diff] [blame] | 620 | if (IS_ERR(dwc->usb2_phy)) { |
| 621 | ret = PTR_ERR(dwc->usb2_phy); |
Kishon Vijay Abraham I | 122f06e | 2014-03-03 17:08:10 +0530 | [diff] [blame] | 622 | if (ret == -ENXIO || ret == -ENODEV) { |
| 623 | dwc->usb2_phy = NULL; |
| 624 | } else if (ret == -EPROBE_DEFER) { |
Felipe Balbi | d105e7f | 2013-03-15 10:52:08 +0200 | [diff] [blame] | 625 | return ret; |
Kishon Vijay Abraham I | 122f06e | 2014-03-03 17:08:10 +0530 | [diff] [blame] | 626 | } else { |
| 627 | dev_err(dev, "no usb2 phy configured\n"); |
| 628 | return ret; |
| 629 | } |
Felipe Balbi | 51e1e7b | 2012-07-19 14:09:48 +0300 | [diff] [blame] | 630 | } |
| 631 | |
Felipe Balbi | d105e7f | 2013-03-15 10:52:08 +0200 | [diff] [blame] | 632 | if (IS_ERR(dwc->usb3_phy)) { |
Ruchika Kharwar | 315955d7 | 2013-07-04 00:59:34 -0500 | [diff] [blame] | 633 | ret = PTR_ERR(dwc->usb3_phy); |
Kishon Vijay Abraham I | 122f06e | 2014-03-03 17:08:10 +0530 | [diff] [blame] | 634 | if (ret == -ENXIO || ret == -ENODEV) { |
| 635 | dwc->usb3_phy = NULL; |
| 636 | } else if (ret == -EPROBE_DEFER) { |
Felipe Balbi | d105e7f | 2013-03-15 10:52:08 +0200 | [diff] [blame] | 637 | return ret; |
Kishon Vijay Abraham I | 122f06e | 2014-03-03 17:08:10 +0530 | [diff] [blame] | 638 | } else { |
| 639 | dev_err(dev, "no usb3 phy configured\n"); |
| 640 | return ret; |
| 641 | } |
Felipe Balbi | 51e1e7b | 2012-07-19 14:09:48 +0300 | [diff] [blame] | 642 | } |
| 643 | |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 644 | dwc->usb2_generic_phy = devm_phy_get(dev, "usb2-phy"); |
| 645 | if (IS_ERR(dwc->usb2_generic_phy)) { |
| 646 | ret = PTR_ERR(dwc->usb2_generic_phy); |
| 647 | if (ret == -ENOSYS || ret == -ENODEV) { |
| 648 | dwc->usb2_generic_phy = NULL; |
| 649 | } else if (ret == -EPROBE_DEFER) { |
| 650 | return ret; |
| 651 | } else { |
| 652 | dev_err(dev, "no usb2 phy configured\n"); |
| 653 | return ret; |
| 654 | } |
| 655 | } |
| 656 | |
| 657 | dwc->usb3_generic_phy = devm_phy_get(dev, "usb3-phy"); |
| 658 | if (IS_ERR(dwc->usb3_generic_phy)) { |
| 659 | ret = PTR_ERR(dwc->usb3_generic_phy); |
| 660 | if (ret == -ENOSYS || ret == -ENODEV) { |
| 661 | dwc->usb3_generic_phy = NULL; |
| 662 | } else if (ret == -EPROBE_DEFER) { |
| 663 | return ret; |
| 664 | } else { |
| 665 | dev_err(dev, "no usb3 phy configured\n"); |
| 666 | return ret; |
| 667 | } |
| 668 | } |
| 669 | |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 670 | return 0; |
| 671 | } |
| 672 | |
Felipe Balbi | 5f94adf | 2014-04-16 15:13:45 -0500 | [diff] [blame] | 673 | static int dwc3_core_init_mode(struct dwc3 *dwc) |
| 674 | { |
| 675 | struct device *dev = dwc->dev; |
| 676 | int ret; |
| 677 | |
| 678 | switch (dwc->dr_mode) { |
| 679 | case USB_DR_MODE_PERIPHERAL: |
| 680 | dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_DEVICE); |
| 681 | ret = dwc3_gadget_init(dwc); |
| 682 | if (ret) { |
| 683 | dev_err(dev, "failed to initialize gadget\n"); |
| 684 | return ret; |
| 685 | } |
| 686 | break; |
| 687 | case USB_DR_MODE_HOST: |
| 688 | dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_HOST); |
| 689 | ret = dwc3_host_init(dwc); |
| 690 | if (ret) { |
| 691 | dev_err(dev, "failed to initialize host\n"); |
| 692 | return ret; |
| 693 | } |
| 694 | break; |
| 695 | case USB_DR_MODE_OTG: |
| 696 | dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_OTG); |
| 697 | ret = dwc3_host_init(dwc); |
| 698 | if (ret) { |
| 699 | dev_err(dev, "failed to initialize host\n"); |
| 700 | return ret; |
| 701 | } |
| 702 | |
| 703 | ret = dwc3_gadget_init(dwc); |
| 704 | if (ret) { |
| 705 | dev_err(dev, "failed to initialize gadget\n"); |
| 706 | return ret; |
| 707 | } |
| 708 | break; |
| 709 | default: |
| 710 | dev_err(dev, "Unsupported mode of operation %d\n", dwc->dr_mode); |
| 711 | return -EINVAL; |
| 712 | } |
| 713 | |
| 714 | return 0; |
| 715 | } |
| 716 | |
| 717 | static void dwc3_core_exit_mode(struct dwc3 *dwc) |
| 718 | { |
| 719 | switch (dwc->dr_mode) { |
| 720 | case USB_DR_MODE_PERIPHERAL: |
| 721 | dwc3_gadget_exit(dwc); |
| 722 | break; |
| 723 | case USB_DR_MODE_HOST: |
| 724 | dwc3_host_exit(dwc); |
| 725 | break; |
| 726 | case USB_DR_MODE_OTG: |
| 727 | dwc3_host_exit(dwc); |
| 728 | dwc3_gadget_exit(dwc); |
| 729 | break; |
| 730 | default: |
| 731 | /* do nothing */ |
| 732 | break; |
| 733 | } |
| 734 | } |
| 735 | |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 736 | #define DWC3_ALIGN_MASK (16 - 1) |
| 737 | |
| 738 | static int dwc3_probe(struct platform_device *pdev) |
| 739 | { |
| 740 | struct device *dev = &pdev->dev; |
| 741 | struct dwc3_platform_data *pdata = dev_get_platdata(dev); |
| 742 | struct device_node *node = dev->of_node; |
| 743 | struct resource *res; |
| 744 | struct dwc3 *dwc; |
Huang Rui | 80caf7d | 2014-10-28 19:54:26 +0800 | [diff] [blame] | 745 | u8 lpm_nyet_threshold; |
Huang Rui | 6b6a0c9 | 2014-10-31 11:11:12 +0800 | [diff] [blame] | 746 | u8 tx_de_emphasis; |
Huang Rui | 460d098 | 2014-10-31 11:11:18 +0800 | [diff] [blame] | 747 | u8 hird_threshold; |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 748 | |
Andy Shevchenko | b09e99e | 2014-05-15 15:53:32 +0300 | [diff] [blame] | 749 | int ret; |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 750 | |
| 751 | void __iomem *regs; |
| 752 | void *mem; |
| 753 | |
| 754 | mem = devm_kzalloc(dev, sizeof(*dwc) + DWC3_ALIGN_MASK, GFP_KERNEL); |
Jingoo Han | 734d5a5 | 2014-07-17 12:45:11 +0900 | [diff] [blame] | 755 | if (!mem) |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 756 | return -ENOMEM; |
Jingoo Han | 734d5a5 | 2014-07-17 12:45:11 +0900 | [diff] [blame] | 757 | |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 758 | dwc = PTR_ALIGN(mem, DWC3_ALIGN_MASK + 1); |
| 759 | dwc->mem = mem; |
| 760 | dwc->dev = dev; |
| 761 | |
| 762 | res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); |
| 763 | if (!res) { |
| 764 | dev_err(dev, "missing IRQ\n"); |
| 765 | return -ENODEV; |
| 766 | } |
| 767 | dwc->xhci_resources[1].start = res->start; |
| 768 | dwc->xhci_resources[1].end = res->end; |
| 769 | dwc->xhci_resources[1].flags = res->flags; |
| 770 | dwc->xhci_resources[1].name = res->name; |
| 771 | |
| 772 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 773 | if (!res) { |
| 774 | dev_err(dev, "missing memory resource\n"); |
| 775 | return -ENODEV; |
| 776 | } |
| 777 | |
Vivek Gautam | f32a5e2 | 2014-06-04 14:34:52 +0530 | [diff] [blame] | 778 | dwc->xhci_resources[0].start = res->start; |
| 779 | dwc->xhci_resources[0].end = dwc->xhci_resources[0].start + |
| 780 | DWC3_XHCI_REGS_END; |
| 781 | dwc->xhci_resources[0].flags = res->flags; |
| 782 | dwc->xhci_resources[0].name = res->name; |
| 783 | |
| 784 | res->start += DWC3_GLOBALS_REGS_START; |
| 785 | |
| 786 | /* |
| 787 | * Request memory region but exclude xHCI regs, |
| 788 | * since it will be requested by the xhci-plat driver. |
| 789 | */ |
| 790 | regs = devm_ioremap_resource(dev, res); |
Felipe Balbi | 3da1f6e | 2014-09-02 15:19:43 -0500 | [diff] [blame] | 791 | if (IS_ERR(regs)) { |
| 792 | ret = PTR_ERR(regs); |
| 793 | goto err0; |
| 794 | } |
Vivek Gautam | f32a5e2 | 2014-06-04 14:34:52 +0530 | [diff] [blame] | 795 | |
| 796 | dwc->regs = regs; |
| 797 | dwc->regs_size = resource_size(res); |
Vivek Gautam | f32a5e2 | 2014-06-04 14:34:52 +0530 | [diff] [blame] | 798 | |
Huang Rui | 80caf7d | 2014-10-28 19:54:26 +0800 | [diff] [blame] | 799 | /* default to highest possible threshold */ |
| 800 | lpm_nyet_threshold = 0xff; |
| 801 | |
Huang Rui | 6b6a0c9 | 2014-10-31 11:11:12 +0800 | [diff] [blame] | 802 | /* default to -3.5dB de-emphasis */ |
| 803 | tx_de_emphasis = 1; |
| 804 | |
Huang Rui | 460d098 | 2014-10-31 11:11:18 +0800 | [diff] [blame] | 805 | /* |
| 806 | * default to assert utmi_sleep_n and use maximum allowed HIRD |
| 807 | * threshold value of 0b1100 |
| 808 | */ |
| 809 | hird_threshold = 12; |
| 810 | |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 811 | if (node) { |
| 812 | dwc->maximum_speed = of_usb_get_maximum_speed(node); |
Huang Rui | 80caf7d | 2014-10-28 19:54:26 +0800 | [diff] [blame] | 813 | dwc->has_lpm_erratum = of_property_read_bool(node, |
| 814 | "snps,has-lpm-erratum"); |
| 815 | of_property_read_u8(node, "snps,lpm-nyet-threshold", |
| 816 | &lpm_nyet_threshold); |
Huang Rui | 460d098 | 2014-10-31 11:11:18 +0800 | [diff] [blame] | 817 | dwc->is_utmi_l1_suspend = of_property_read_bool(node, |
| 818 | "snps,is-utmi-l1-suspend"); |
| 819 | of_property_read_u8(node, "snps,hird-threshold", |
| 820 | &hird_threshold); |
Robert Baldyga | eac68e8 | 2015-03-09 15:06:12 +0100 | [diff] [blame] | 821 | dwc->usb3_lpm_capable = of_property_read_bool(node, |
| 822 | "snps,usb3_lpm_capable"); |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 823 | |
Huang Rui | 80caf7d | 2014-10-28 19:54:26 +0800 | [diff] [blame] | 824 | dwc->needs_fifo_resize = of_property_read_bool(node, |
| 825 | "tx-fifo-resize"); |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 826 | dwc->dr_mode = of_usb_get_dr_mode(node); |
Huang Rui | 3b81221 | 2014-10-28 19:54:25 +0800 | [diff] [blame] | 827 | |
| 828 | dwc->disable_scramble_quirk = of_property_read_bool(node, |
| 829 | "snps,disable_scramble_quirk"); |
Huang Rui | 9a5b2f3 | 2014-10-28 19:54:27 +0800 | [diff] [blame] | 830 | dwc->u2exit_lfps_quirk = of_property_read_bool(node, |
| 831 | "snps,u2exit_lfps_quirk"); |
Huang Rui | b5a65c4 | 2014-10-28 19:54:28 +0800 | [diff] [blame] | 832 | dwc->u2ss_inp3_quirk = of_property_read_bool(node, |
| 833 | "snps,u2ss_inp3_quirk"); |
Huang Rui | df31f5b | 2014-10-28 19:54:29 +0800 | [diff] [blame] | 834 | dwc->req_p1p2p3_quirk = of_property_read_bool(node, |
| 835 | "snps,req_p1p2p3_quirk"); |
Huang Rui | a2a1d0f | 2014-10-28 19:54:30 +0800 | [diff] [blame] | 836 | dwc->del_p1p2p3_quirk = of_property_read_bool(node, |
| 837 | "snps,del_p1p2p3_quirk"); |
Huang Rui | 41c06ff | 2014-10-28 19:54:31 +0800 | [diff] [blame] | 838 | dwc->del_phy_power_chg_quirk = of_property_read_bool(node, |
| 839 | "snps,del_phy_power_chg_quirk"); |
Huang Rui | fb67afc | 2014-10-28 19:54:32 +0800 | [diff] [blame] | 840 | dwc->lfps_filter_quirk = of_property_read_bool(node, |
| 841 | "snps,lfps_filter_quirk"); |
Huang Rui | 14f4ac5 | 2014-10-28 19:54:33 +0800 | [diff] [blame] | 842 | dwc->rx_detect_poll_quirk = of_property_read_bool(node, |
| 843 | "snps,rx_detect_poll_quirk"); |
Huang Rui | 59acfa2 | 2014-10-31 11:11:13 +0800 | [diff] [blame] | 844 | dwc->dis_u3_susphy_quirk = of_property_read_bool(node, |
| 845 | "snps,dis_u3_susphy_quirk"); |
Huang Rui | 0effe0a | 2014-10-31 11:11:14 +0800 | [diff] [blame] | 846 | dwc->dis_u2_susphy_quirk = of_property_read_bool(node, |
| 847 | "snps,dis_u2_susphy_quirk"); |
Huang Rui | 6b6a0c9 | 2014-10-31 11:11:12 +0800 | [diff] [blame] | 848 | |
| 849 | dwc->tx_de_emphasis_quirk = of_property_read_bool(node, |
| 850 | "snps,tx_de_emphasis_quirk"); |
| 851 | of_property_read_u8(node, "snps,tx_de_emphasis", |
| 852 | &tx_de_emphasis); |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 853 | } else if (pdata) { |
| 854 | dwc->maximum_speed = pdata->maximum_speed; |
Huang Rui | 80caf7d | 2014-10-28 19:54:26 +0800 | [diff] [blame] | 855 | dwc->has_lpm_erratum = pdata->has_lpm_erratum; |
| 856 | if (pdata->lpm_nyet_threshold) |
| 857 | lpm_nyet_threshold = pdata->lpm_nyet_threshold; |
Huang Rui | 460d098 | 2014-10-31 11:11:18 +0800 | [diff] [blame] | 858 | dwc->is_utmi_l1_suspend = pdata->is_utmi_l1_suspend; |
| 859 | if (pdata->hird_threshold) |
| 860 | hird_threshold = pdata->hird_threshold; |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 861 | |
| 862 | dwc->needs_fifo_resize = pdata->tx_fifo_resize; |
Robert Baldyga | eac68e8 | 2015-03-09 15:06:12 +0100 | [diff] [blame] | 863 | dwc->usb3_lpm_capable = pdata->usb3_lpm_capable; |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 864 | dwc->dr_mode = pdata->dr_mode; |
Huang Rui | 3b81221 | 2014-10-28 19:54:25 +0800 | [diff] [blame] | 865 | |
| 866 | dwc->disable_scramble_quirk = pdata->disable_scramble_quirk; |
Huang Rui | 9a5b2f3 | 2014-10-28 19:54:27 +0800 | [diff] [blame] | 867 | dwc->u2exit_lfps_quirk = pdata->u2exit_lfps_quirk; |
Huang Rui | b5a65c4 | 2014-10-28 19:54:28 +0800 | [diff] [blame] | 868 | dwc->u2ss_inp3_quirk = pdata->u2ss_inp3_quirk; |
Huang Rui | df31f5b | 2014-10-28 19:54:29 +0800 | [diff] [blame] | 869 | dwc->req_p1p2p3_quirk = pdata->req_p1p2p3_quirk; |
Huang Rui | a2a1d0f | 2014-10-28 19:54:30 +0800 | [diff] [blame] | 870 | dwc->del_p1p2p3_quirk = pdata->del_p1p2p3_quirk; |
Huang Rui | 41c06ff | 2014-10-28 19:54:31 +0800 | [diff] [blame] | 871 | dwc->del_phy_power_chg_quirk = pdata->del_phy_power_chg_quirk; |
Huang Rui | fb67afc | 2014-10-28 19:54:32 +0800 | [diff] [blame] | 872 | dwc->lfps_filter_quirk = pdata->lfps_filter_quirk; |
Huang Rui | 14f4ac5 | 2014-10-28 19:54:33 +0800 | [diff] [blame] | 873 | dwc->rx_detect_poll_quirk = pdata->rx_detect_poll_quirk; |
Huang Rui | 59acfa2 | 2014-10-31 11:11:13 +0800 | [diff] [blame] | 874 | dwc->dis_u3_susphy_quirk = pdata->dis_u3_susphy_quirk; |
Huang Rui | 0effe0a | 2014-10-31 11:11:14 +0800 | [diff] [blame] | 875 | dwc->dis_u2_susphy_quirk = pdata->dis_u2_susphy_quirk; |
Huang Rui | 6b6a0c9 | 2014-10-31 11:11:12 +0800 | [diff] [blame] | 876 | |
| 877 | dwc->tx_de_emphasis_quirk = pdata->tx_de_emphasis_quirk; |
| 878 | if (pdata->tx_de_emphasis) |
| 879 | tx_de_emphasis = pdata->tx_de_emphasis; |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 880 | } |
| 881 | |
| 882 | /* default to superspeed if no maximum_speed passed */ |
| 883 | if (dwc->maximum_speed == USB_SPEED_UNKNOWN) |
| 884 | dwc->maximum_speed = USB_SPEED_SUPER; |
| 885 | |
Huang Rui | 80caf7d | 2014-10-28 19:54:26 +0800 | [diff] [blame] | 886 | dwc->lpm_nyet_threshold = lpm_nyet_threshold; |
Huang Rui | 6b6a0c9 | 2014-10-31 11:11:12 +0800 | [diff] [blame] | 887 | dwc->tx_de_emphasis = tx_de_emphasis; |
Huang Rui | 80caf7d | 2014-10-28 19:54:26 +0800 | [diff] [blame] | 888 | |
Huang Rui | 460d098 | 2014-10-31 11:11:18 +0800 | [diff] [blame] | 889 | dwc->hird_threshold = hird_threshold |
| 890 | | (dwc->is_utmi_l1_suspend << 4); |
| 891 | |
Heikki Krogerus | 6c89cce0 | 2015-05-13 15:26:45 +0300 | [diff] [blame] | 892 | platform_set_drvdata(pdev, dwc); |
Heikki Krogerus | 2917e71 | 2015-05-13 15:26:46 +0300 | [diff] [blame] | 893 | dwc3_cache_hwparams(dwc); |
Heikki Krogerus | 6c89cce0 | 2015-05-13 15:26:45 +0300 | [diff] [blame] | 894 | |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 895 | ret = dwc3_core_get_phy(dwc); |
| 896 | if (ret) |
Felipe Balbi | 3da1f6e | 2014-09-02 15:19:43 -0500 | [diff] [blame] | 897 | goto err0; |
Felipe Balbi | 3c9f94a | 2014-04-16 15:08:29 -0500 | [diff] [blame] | 898 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 899 | spin_lock_init(&dwc->lock); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 900 | |
Heikki Krogerus | 19bacdc | 2014-09-24 11:00:38 +0300 | [diff] [blame] | 901 | if (!dev->dma_mask) { |
| 902 | dev->dma_mask = dev->parent->dma_mask; |
| 903 | dev->dma_parms = dev->parent->dma_parms; |
| 904 | dma_set_coherent_mask(dev, dev->parent->coherent_dma_mask); |
| 905 | } |
Kishon Vijay Abraham I | ddff14f | 2013-03-07 18:51:43 +0530 | [diff] [blame] | 906 | |
Chanho Park | 802ca85 | 2012-02-15 18:27:55 +0900 | [diff] [blame] | 907 | pm_runtime_enable(dev); |
| 908 | pm_runtime_get_sync(dev); |
| 909 | pm_runtime_forbid(dev); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 910 | |
Felipe Balbi | 3921426 | 2012-10-11 13:54:36 +0300 | [diff] [blame] | 911 | ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE); |
| 912 | if (ret) { |
| 913 | dev_err(dwc->dev, "failed to allocate event buffers\n"); |
| 914 | ret = -ENOMEM; |
Felipe Balbi | 3da1f6e | 2014-09-02 15:19:43 -0500 | [diff] [blame] | 915 | goto err1; |
Felipe Balbi | 3921426 | 2012-10-11 13:54:36 +0300 | [diff] [blame] | 916 | } |
| 917 | |
Felipe Balbi | 32a4a13 | 2014-02-25 14:00:13 -0600 | [diff] [blame] | 918 | if (IS_ENABLED(CONFIG_USB_DWC3_HOST)) |
| 919 | dwc->dr_mode = USB_DR_MODE_HOST; |
| 920 | else if (IS_ENABLED(CONFIG_USB_DWC3_GADGET)) |
| 921 | dwc->dr_mode = USB_DR_MODE_PERIPHERAL; |
| 922 | |
| 923 | if (dwc->dr_mode == USB_DR_MODE_UNKNOWN) |
| 924 | dwc->dr_mode = USB_DR_MODE_OTG; |
| 925 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 926 | ret = dwc3_core_init(dwc); |
| 927 | if (ret) { |
Chanho Park | 802ca85 | 2012-02-15 18:27:55 +0900 | [diff] [blame] | 928 | dev_err(dev, "failed to initialize core\n"); |
Felipe Balbi | 3da1f6e | 2014-09-02 15:19:43 -0500 | [diff] [blame] | 929 | goto err1; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 930 | } |
| 931 | |
Kishon Vijay Abraham I | 3088f10 | 2013-11-25 15:31:21 +0530 | [diff] [blame] | 932 | usb_phy_set_suspend(dwc->usb2_phy, 0); |
| 933 | usb_phy_set_suspend(dwc->usb3_phy, 0); |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 934 | ret = phy_power_on(dwc->usb2_generic_phy); |
| 935 | if (ret < 0) |
Felipe Balbi | 3da1f6e | 2014-09-02 15:19:43 -0500 | [diff] [blame] | 936 | goto err2; |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 937 | |
| 938 | ret = phy_power_on(dwc->usb3_generic_phy); |
| 939 | if (ret < 0) |
Felipe Balbi | 3da1f6e | 2014-09-02 15:19:43 -0500 | [diff] [blame] | 940 | goto err3; |
Kishon Vijay Abraham I | 3088f10 | 2013-11-25 15:31:21 +0530 | [diff] [blame] | 941 | |
Felipe Balbi | f122d33 | 2013-02-08 15:15:11 +0200 | [diff] [blame] | 942 | ret = dwc3_event_buffers_setup(dwc); |
| 943 | if (ret) { |
| 944 | dev_err(dwc->dev, "failed to setup event buffers\n"); |
Felipe Balbi | 3da1f6e | 2014-09-02 15:19:43 -0500 | [diff] [blame] | 945 | goto err4; |
Felipe Balbi | f122d33 | 2013-02-08 15:15:11 +0200 | [diff] [blame] | 946 | } |
| 947 | |
Felipe Balbi | 5f94adf | 2014-04-16 15:13:45 -0500 | [diff] [blame] | 948 | ret = dwc3_core_init_mode(dwc); |
| 949 | if (ret) |
Felipe Balbi | 3da1f6e | 2014-09-02 15:19:43 -0500 | [diff] [blame] | 950 | goto err5; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 951 | |
| 952 | ret = dwc3_debugfs_init(dwc); |
| 953 | if (ret) { |
Chanho Park | 802ca85 | 2012-02-15 18:27:55 +0900 | [diff] [blame] | 954 | dev_err(dev, "failed to initialize debugfs\n"); |
Felipe Balbi | 3da1f6e | 2014-09-02 15:19:43 -0500 | [diff] [blame] | 955 | goto err6; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 956 | } |
| 957 | |
Chanho Park | 802ca85 | 2012-02-15 18:27:55 +0900 | [diff] [blame] | 958 | pm_runtime_allow(dev); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 959 | |
| 960 | return 0; |
| 961 | |
Felipe Balbi | 3da1f6e | 2014-09-02 15:19:43 -0500 | [diff] [blame] | 962 | err6: |
Felipe Balbi | 5f94adf | 2014-04-16 15:13:45 -0500 | [diff] [blame] | 963 | dwc3_core_exit_mode(dwc); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 964 | |
Felipe Balbi | 3da1f6e | 2014-09-02 15:19:43 -0500 | [diff] [blame] | 965 | err5: |
Felipe Balbi | f122d33 | 2013-02-08 15:15:11 +0200 | [diff] [blame] | 966 | dwc3_event_buffers_cleanup(dwc); |
| 967 | |
Felipe Balbi | 3da1f6e | 2014-09-02 15:19:43 -0500 | [diff] [blame] | 968 | err4: |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 969 | phy_power_off(dwc->usb3_generic_phy); |
| 970 | |
Felipe Balbi | 3da1f6e | 2014-09-02 15:19:43 -0500 | [diff] [blame] | 971 | err3: |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 972 | phy_power_off(dwc->usb2_generic_phy); |
| 973 | |
Felipe Balbi | 3da1f6e | 2014-09-02 15:19:43 -0500 | [diff] [blame] | 974 | err2: |
Kishon Vijay Abraham I | 501fae5 | 2013-11-25 15:31:22 +0530 | [diff] [blame] | 975 | usb_phy_set_suspend(dwc->usb2_phy, 1); |
| 976 | usb_phy_set_suspend(dwc->usb3_phy, 1); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 977 | dwc3_core_exit(dwc); |
| 978 | |
Felipe Balbi | 3da1f6e | 2014-09-02 15:19:43 -0500 | [diff] [blame] | 979 | err1: |
Felipe Balbi | 3921426 | 2012-10-11 13:54:36 +0300 | [diff] [blame] | 980 | dwc3_free_event_buffers(dwc); |
| 981 | |
Felipe Balbi | 3da1f6e | 2014-09-02 15:19:43 -0500 | [diff] [blame] | 982 | err0: |
| 983 | /* |
| 984 | * restore res->start back to its original value so that, in case the |
| 985 | * probe is deferred, we don't end up getting error in request the |
| 986 | * memory region the next time probe is called. |
| 987 | */ |
| 988 | res->start -= DWC3_GLOBALS_REGS_START; |
| 989 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 990 | return ret; |
| 991 | } |
| 992 | |
Bill Pemberton | fb4e98a | 2012-11-19 13:26:20 -0500 | [diff] [blame] | 993 | static int dwc3_remove(struct platform_device *pdev) |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 994 | { |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 995 | struct dwc3 *dwc = platform_get_drvdata(pdev); |
Felipe Balbi | 3da1f6e | 2014-09-02 15:19:43 -0500 | [diff] [blame] | 996 | struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 997 | |
| 998 | /* |
| 999 | * restore res->start back to its original value so that, in case the |
| 1000 | * probe is deferred, we don't end up getting error in request the |
| 1001 | * memory region the next time probe is called. |
| 1002 | */ |
| 1003 | res->start -= DWC3_GLOBALS_REGS_START; |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1004 | |
Felipe Balbi | dc99f16 | 2014-09-03 16:13:37 -0500 | [diff] [blame] | 1005 | dwc3_debugfs_exit(dwc); |
| 1006 | dwc3_core_exit_mode(dwc); |
| 1007 | dwc3_event_buffers_cleanup(dwc); |
| 1008 | dwc3_free_event_buffers(dwc); |
| 1009 | |
Kishon Vijay Abraham I | 8ba007a | 2013-01-25 08:30:54 +0530 | [diff] [blame] | 1010 | usb_phy_set_suspend(dwc->usb2_phy, 1); |
| 1011 | usb_phy_set_suspend(dwc->usb3_phy, 1); |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 1012 | phy_power_off(dwc->usb2_generic_phy); |
| 1013 | phy_power_off(dwc->usb3_generic_phy); |
Kishon Vijay Abraham I | 8ba007a | 2013-01-25 08:30:54 +0530 | [diff] [blame] | 1014 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1015 | dwc3_core_exit(dwc); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1016 | |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 1017 | pm_runtime_put_sync(&pdev->dev); |
| 1018 | pm_runtime_disable(&pdev->dev); |
| 1019 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1020 | return 0; |
| 1021 | } |
| 1022 | |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 1023 | #ifdef CONFIG_PM_SLEEP |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 1024 | static int dwc3_suspend(struct device *dev) |
| 1025 | { |
| 1026 | struct dwc3 *dwc = dev_get_drvdata(dev); |
| 1027 | unsigned long flags; |
| 1028 | |
| 1029 | spin_lock_irqsave(&dwc->lock, flags); |
| 1030 | |
Ruchika Kharwar | a45c82b8 | 2013-07-06 07:52:49 -0500 | [diff] [blame] | 1031 | switch (dwc->dr_mode) { |
| 1032 | case USB_DR_MODE_PERIPHERAL: |
| 1033 | case USB_DR_MODE_OTG: |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 1034 | dwc3_gadget_suspend(dwc); |
| 1035 | /* FALLTHROUGH */ |
Ruchika Kharwar | a45c82b8 | 2013-07-06 07:52:49 -0500 | [diff] [blame] | 1036 | case USB_DR_MODE_HOST: |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 1037 | default: |
Felipe Balbi | 0b0231a | 2014-10-07 10:19:23 -0500 | [diff] [blame] | 1038 | dwc3_event_buffers_cleanup(dwc); |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 1039 | break; |
| 1040 | } |
| 1041 | |
| 1042 | dwc->gctl = dwc3_readl(dwc->regs, DWC3_GCTL); |
| 1043 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1044 | |
| 1045 | usb_phy_shutdown(dwc->usb3_phy); |
| 1046 | usb_phy_shutdown(dwc->usb2_phy); |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 1047 | phy_exit(dwc->usb2_generic_phy); |
| 1048 | phy_exit(dwc->usb3_generic_phy); |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 1049 | |
| 1050 | return 0; |
| 1051 | } |
| 1052 | |
| 1053 | static int dwc3_resume(struct device *dev) |
| 1054 | { |
| 1055 | struct dwc3 *dwc = dev_get_drvdata(dev); |
| 1056 | unsigned long flags; |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 1057 | int ret; |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 1058 | |
| 1059 | usb_phy_init(dwc->usb3_phy); |
| 1060 | usb_phy_init(dwc->usb2_phy); |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 1061 | ret = phy_init(dwc->usb2_generic_phy); |
| 1062 | if (ret < 0) |
| 1063 | return ret; |
| 1064 | |
| 1065 | ret = phy_init(dwc->usb3_generic_phy); |
| 1066 | if (ret < 0) |
| 1067 | goto err_usb2phy_init; |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 1068 | |
| 1069 | spin_lock_irqsave(&dwc->lock, flags); |
| 1070 | |
Felipe Balbi | 0b0231a | 2014-10-07 10:19:23 -0500 | [diff] [blame] | 1071 | dwc3_event_buffers_setup(dwc); |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 1072 | dwc3_writel(dwc->regs, DWC3_GCTL, dwc->gctl); |
| 1073 | |
Ruchika Kharwar | a45c82b8 | 2013-07-06 07:52:49 -0500 | [diff] [blame] | 1074 | switch (dwc->dr_mode) { |
| 1075 | case USB_DR_MODE_PERIPHERAL: |
| 1076 | case USB_DR_MODE_OTG: |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 1077 | dwc3_gadget_resume(dwc); |
| 1078 | /* FALLTHROUGH */ |
Ruchika Kharwar | a45c82b8 | 2013-07-06 07:52:49 -0500 | [diff] [blame] | 1079 | case USB_DR_MODE_HOST: |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 1080 | default: |
| 1081 | /* do nothing */ |
| 1082 | break; |
| 1083 | } |
| 1084 | |
| 1085 | spin_unlock_irqrestore(&dwc->lock, flags); |
| 1086 | |
| 1087 | pm_runtime_disable(dev); |
| 1088 | pm_runtime_set_active(dev); |
| 1089 | pm_runtime_enable(dev); |
| 1090 | |
| 1091 | return 0; |
Kishon Vijay Abraham I | 5730348 | 2014-03-03 17:08:11 +0530 | [diff] [blame] | 1092 | |
| 1093 | err_usb2phy_init: |
| 1094 | phy_exit(dwc->usb2_generic_phy); |
| 1095 | |
| 1096 | return ret; |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 1097 | } |
| 1098 | |
| 1099 | static const struct dev_pm_ops dwc3_dev_pm_ops = { |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 1100 | SET_SYSTEM_SLEEP_PM_OPS(dwc3_suspend, dwc3_resume) |
| 1101 | }; |
| 1102 | |
| 1103 | #define DWC3_PM_OPS &(dwc3_dev_pm_ops) |
| 1104 | #else |
| 1105 | #define DWC3_PM_OPS NULL |
| 1106 | #endif |
| 1107 | |
Kishon Vijay Abraham I | 5088b6f | 2013-01-25 16:36:53 +0530 | [diff] [blame] | 1108 | #ifdef CONFIG_OF |
| 1109 | static const struct of_device_id of_dwc3_match[] = { |
| 1110 | { |
Felipe Balbi | 22a5aa1 | 2013-07-02 21:20:24 +0300 | [diff] [blame] | 1111 | .compatible = "snps,dwc3" |
| 1112 | }, |
| 1113 | { |
Kishon Vijay Abraham I | 5088b6f | 2013-01-25 16:36:53 +0530 | [diff] [blame] | 1114 | .compatible = "synopsys,dwc3" |
| 1115 | }, |
| 1116 | { }, |
| 1117 | }; |
| 1118 | MODULE_DEVICE_TABLE(of, of_dwc3_match); |
| 1119 | #endif |
| 1120 | |
Heikki Krogerus | 404905a | 2014-09-25 10:57:02 +0300 | [diff] [blame] | 1121 | #ifdef CONFIG_ACPI |
| 1122 | |
| 1123 | #define ACPI_ID_INTEL_BSW "808622B7" |
| 1124 | |
| 1125 | static const struct acpi_device_id dwc3_acpi_match[] = { |
| 1126 | { ACPI_ID_INTEL_BSW, 0 }, |
| 1127 | { }, |
| 1128 | }; |
| 1129 | MODULE_DEVICE_TABLE(acpi, dwc3_acpi_match); |
| 1130 | #endif |
| 1131 | |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1132 | static struct platform_driver dwc3_driver = { |
| 1133 | .probe = dwc3_probe, |
Bill Pemberton | 7690417 | 2012-11-19 13:21:08 -0500 | [diff] [blame] | 1134 | .remove = dwc3_remove, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1135 | .driver = { |
| 1136 | .name = "dwc3", |
Kishon Vijay Abraham I | 5088b6f | 2013-01-25 16:36:53 +0530 | [diff] [blame] | 1137 | .of_match_table = of_match_ptr(of_dwc3_match), |
Heikki Krogerus | 404905a | 2014-09-25 10:57:02 +0300 | [diff] [blame] | 1138 | .acpi_match_table = ACPI_PTR(dwc3_acpi_match), |
Felipe Balbi | 7415f17 | 2012-04-30 14:56:33 +0300 | [diff] [blame] | 1139 | .pm = DWC3_PM_OPS, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1140 | }, |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1141 | }; |
| 1142 | |
Tobias Klauser | b1116dc | 2012-02-28 12:57:20 +0100 | [diff] [blame] | 1143 | module_platform_driver(dwc3_driver); |
| 1144 | |
Sebastian Andrzej Siewior | 7ae4fc4 | 2011-10-19 19:39:50 +0200 | [diff] [blame] | 1145 | MODULE_ALIAS("platform:dwc3"); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1146 | MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>"); |
Felipe Balbi | 5945f78 | 2013-06-30 14:15:11 +0300 | [diff] [blame] | 1147 | MODULE_LICENSE("GPL v2"); |
Felipe Balbi | 72246da | 2011-08-19 18:10:58 +0300 | [diff] [blame] | 1148 | MODULE_DESCRIPTION("DesignWare USB3 DRD Controller Driver"); |