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