Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 2 | /** |
| 3 | * core.c - DesignWare USB3 DRD Controller Core file |
| 4 | * |
Kishon Vijay Abraham I | d1e431a | 2015-02-23 18:39:52 +0530 | [diff] [blame] | 5 | * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 6 | * |
| 7 | * Authors: Felipe Balbi <balbi@ti.com>, |
| 8 | * Sebastian Andrzej Siewior <bigeasy@linutronix.de> |
| 9 | * |
Kishon Vijay Abraham I | d1e431a | 2015-02-23 18:39:52 +0530 | [diff] [blame] | 10 | * Taken from Linux Kernel v3.19-rc1 (drivers/usb/dwc3/core.c) and ported |
| 11 | * to uboot. |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 12 | * |
Kishon Vijay Abraham I | d1e431a | 2015-02-23 18:39:52 +0530 | [diff] [blame] | 13 | * commit cd72f890d2 : usb: dwc3: core: enable phy suspend quirk on non-FPGA |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 14 | */ |
| 15 | |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 16 | #include <common.h> |
| 17 | #include <malloc.h> |
Kishon Vijay Abraham I | bfbf05d | 2015-02-23 18:40:04 +0530 | [diff] [blame] | 18 | #include <dwc3-uboot.h> |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 19 | #include <asm/dma-mapping.h> |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 20 | #include <linux/ioport.h> |
Mugunthan V N | 121f93c | 2018-05-18 13:10:27 +0200 | [diff] [blame] | 21 | #include <dm.h> |
Jean-Jacques Hiblot | 3de978a | 2018-11-29 10:52:45 +0100 | [diff] [blame] | 22 | #include <generic-phy.h> |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 23 | #include <linux/usb/ch9.h> |
| 24 | #include <linux/usb/gadget.h> |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 25 | |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 26 | #include "core.h" |
| 27 | #include "gadget.h" |
| 28 | #include "io.h" |
| 29 | |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 30 | #include "linux-compat.h" |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 31 | |
Kishon Vijay Abraham I | dc5c653 | 2015-02-23 18:40:05 +0530 | [diff] [blame] | 32 | static LIST_HEAD(dwc3_list); |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 33 | /* -------------------------------------------------------------------------- */ |
| 34 | |
Joonyoung Shim | bf35c60 | 2015-03-03 17:32:09 +0100 | [diff] [blame] | 35 | static void dwc3_set_mode(struct dwc3 *dwc, u32 mode) |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 36 | { |
| 37 | u32 reg; |
| 38 | |
| 39 | reg = dwc3_readl(dwc->regs, DWC3_GCTL); |
| 40 | reg &= ~(DWC3_GCTL_PRTCAPDIR(DWC3_GCTL_PRTCAP_OTG)); |
| 41 | reg |= DWC3_GCTL_PRTCAPDIR(mode); |
| 42 | dwc3_writel(dwc->regs, DWC3_GCTL, reg); |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * dwc3_core_soft_reset - Issues core soft reset and PHY reset |
| 47 | * @dwc: pointer to our context structure |
| 48 | */ |
| 49 | static int dwc3_core_soft_reset(struct dwc3 *dwc) |
| 50 | { |
| 51 | u32 reg; |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 52 | |
| 53 | /* Before Resetting PHY, put Core in Reset */ |
| 54 | reg = dwc3_readl(dwc->regs, DWC3_GCTL); |
| 55 | reg |= DWC3_GCTL_CORESOFTRESET; |
| 56 | dwc3_writel(dwc->regs, DWC3_GCTL, reg); |
| 57 | |
| 58 | /* Assert USB3 PHY reset */ |
| 59 | reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0)); |
| 60 | reg |= DWC3_GUSB3PIPECTL_PHYSOFTRST; |
| 61 | dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg); |
| 62 | |
| 63 | /* Assert USB2 PHY reset */ |
| 64 | reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0)); |
| 65 | reg |= DWC3_GUSB2PHYCFG_PHYSOFTRST; |
| 66 | dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg); |
| 67 | |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 68 | mdelay(100); |
| 69 | |
| 70 | /* Clear USB3 PHY reset */ |
| 71 | reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0)); |
| 72 | reg &= ~DWC3_GUSB3PIPECTL_PHYSOFTRST; |
| 73 | dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg); |
| 74 | |
| 75 | /* Clear USB2 PHY reset */ |
| 76 | reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0)); |
| 77 | reg &= ~DWC3_GUSB2PHYCFG_PHYSOFTRST; |
| 78 | dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg); |
| 79 | |
| 80 | mdelay(100); |
| 81 | |
| 82 | /* After PHYs are stable we can take Core out of reset state */ |
| 83 | reg = dwc3_readl(dwc->regs, DWC3_GCTL); |
| 84 | reg &= ~DWC3_GCTL_CORESOFTRESET; |
| 85 | dwc3_writel(dwc->regs, DWC3_GCTL, reg); |
| 86 | |
| 87 | return 0; |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * dwc3_free_one_event_buffer - Frees one event buffer |
| 92 | * @dwc: Pointer to our controller context structure |
| 93 | * @evt: Pointer to event buffer to be freed |
| 94 | */ |
| 95 | static void dwc3_free_one_event_buffer(struct dwc3 *dwc, |
| 96 | struct dwc3_event_buffer *evt) |
| 97 | { |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 98 | dma_free_coherent(evt->buf); |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | /** |
| 102 | * dwc3_alloc_one_event_buffer - Allocates one event buffer structure |
| 103 | * @dwc: Pointer to our controller context structure |
| 104 | * @length: size of the event buffer |
| 105 | * |
| 106 | * Returns a pointer to the allocated event buffer structure on success |
| 107 | * otherwise ERR_PTR(errno). |
| 108 | */ |
| 109 | static struct dwc3_event_buffer *dwc3_alloc_one_event_buffer(struct dwc3 *dwc, |
| 110 | unsigned length) |
| 111 | { |
| 112 | struct dwc3_event_buffer *evt; |
| 113 | |
Mugunthan V N | 121f93c | 2018-05-18 13:10:27 +0200 | [diff] [blame] | 114 | evt = devm_kzalloc((struct udevice *)dwc->dev, sizeof(*evt), |
| 115 | GFP_KERNEL); |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 116 | if (!evt) |
| 117 | return ERR_PTR(-ENOMEM); |
| 118 | |
| 119 | evt->dwc = dwc; |
| 120 | evt->length = length; |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 121 | evt->buf = dma_alloc_coherent(length, |
| 122 | (unsigned long *)&evt->dma); |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 123 | if (!evt->buf) |
| 124 | return ERR_PTR(-ENOMEM); |
| 125 | |
Philipp Tomsich | 8e17c16 | 2017-04-06 16:58:53 +0200 | [diff] [blame] | 126 | dwc3_flush_cache((uintptr_t)evt->buf, evt->length); |
| 127 | |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 128 | return evt; |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * dwc3_free_event_buffers - frees all allocated event buffers |
| 133 | * @dwc: Pointer to our controller context structure |
| 134 | */ |
| 135 | static void dwc3_free_event_buffers(struct dwc3 *dwc) |
| 136 | { |
| 137 | struct dwc3_event_buffer *evt; |
| 138 | int i; |
| 139 | |
| 140 | for (i = 0; i < dwc->num_event_buffers; i++) { |
| 141 | evt = dwc->ev_buffs[i]; |
| 142 | if (evt) |
| 143 | dwc3_free_one_event_buffer(dwc, evt); |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * dwc3_alloc_event_buffers - Allocates @num event buffers of size @length |
| 149 | * @dwc: pointer to our controller context structure |
| 150 | * @length: size of event buffer |
| 151 | * |
| 152 | * Returns 0 on success otherwise negative errno. In the error case, dwc |
| 153 | * may contain some buffers allocated but not all which were requested. |
| 154 | */ |
| 155 | static int dwc3_alloc_event_buffers(struct dwc3 *dwc, unsigned length) |
| 156 | { |
| 157 | int num; |
| 158 | int i; |
| 159 | |
| 160 | num = DWC3_NUM_INT(dwc->hwparams.hwparams1); |
| 161 | dwc->num_event_buffers = num; |
| 162 | |
Kishon Vijay Abraham I | c7bdfe3 | 2015-02-23 18:40:13 +0530 | [diff] [blame] | 163 | dwc->ev_buffs = memalign(CONFIG_SYS_CACHELINE_SIZE, |
| 164 | sizeof(*dwc->ev_buffs) * num); |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 165 | if (!dwc->ev_buffs) |
| 166 | return -ENOMEM; |
| 167 | |
| 168 | for (i = 0; i < num; i++) { |
| 169 | struct dwc3_event_buffer *evt; |
| 170 | |
| 171 | evt = dwc3_alloc_one_event_buffer(dwc, length); |
| 172 | if (IS_ERR(evt)) { |
| 173 | dev_err(dwc->dev, "can't allocate event buffer\n"); |
| 174 | return PTR_ERR(evt); |
| 175 | } |
| 176 | dwc->ev_buffs[i] = evt; |
| 177 | } |
| 178 | |
| 179 | return 0; |
| 180 | } |
| 181 | |
| 182 | /** |
| 183 | * dwc3_event_buffers_setup - setup our allocated event buffers |
| 184 | * @dwc: pointer to our controller context structure |
| 185 | * |
| 186 | * Returns 0 on success otherwise negative errno. |
| 187 | */ |
| 188 | static int dwc3_event_buffers_setup(struct dwc3 *dwc) |
| 189 | { |
| 190 | struct dwc3_event_buffer *evt; |
| 191 | int n; |
| 192 | |
| 193 | for (n = 0; n < dwc->num_event_buffers; n++) { |
| 194 | evt = dwc->ev_buffs[n]; |
| 195 | dev_dbg(dwc->dev, "Event buf %p dma %08llx length %d\n", |
| 196 | evt->buf, (unsigned long long) evt->dma, |
| 197 | evt->length); |
| 198 | |
| 199 | evt->lpos = 0; |
| 200 | |
| 201 | dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(n), |
| 202 | lower_32_bits(evt->dma)); |
| 203 | dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(n), |
| 204 | upper_32_bits(evt->dma)); |
| 205 | dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(n), |
| 206 | DWC3_GEVNTSIZ_SIZE(evt->length)); |
| 207 | dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(n), 0); |
| 208 | } |
| 209 | |
| 210 | return 0; |
| 211 | } |
| 212 | |
| 213 | static void dwc3_event_buffers_cleanup(struct dwc3 *dwc) |
| 214 | { |
| 215 | struct dwc3_event_buffer *evt; |
| 216 | int n; |
| 217 | |
| 218 | for (n = 0; n < dwc->num_event_buffers; n++) { |
| 219 | evt = dwc->ev_buffs[n]; |
| 220 | |
| 221 | evt->lpos = 0; |
| 222 | |
| 223 | dwc3_writel(dwc->regs, DWC3_GEVNTADRLO(n), 0); |
| 224 | dwc3_writel(dwc->regs, DWC3_GEVNTADRHI(n), 0); |
| 225 | dwc3_writel(dwc->regs, DWC3_GEVNTSIZ(n), DWC3_GEVNTSIZ_INTMASK |
| 226 | | DWC3_GEVNTSIZ_SIZE(0)); |
| 227 | dwc3_writel(dwc->regs, DWC3_GEVNTCOUNT(n), 0); |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | static int dwc3_alloc_scratch_buffers(struct dwc3 *dwc) |
| 232 | { |
| 233 | if (!dwc->has_hibernation) |
| 234 | return 0; |
| 235 | |
| 236 | if (!dwc->nr_scratch) |
| 237 | return 0; |
| 238 | |
| 239 | dwc->scratchbuf = kmalloc_array(dwc->nr_scratch, |
| 240 | DWC3_SCRATCHBUF_SIZE, GFP_KERNEL); |
| 241 | if (!dwc->scratchbuf) |
| 242 | return -ENOMEM; |
| 243 | |
| 244 | return 0; |
| 245 | } |
| 246 | |
| 247 | static int dwc3_setup_scratch_buffers(struct dwc3 *dwc) |
| 248 | { |
| 249 | dma_addr_t scratch_addr; |
| 250 | u32 param; |
| 251 | int ret; |
| 252 | |
| 253 | if (!dwc->has_hibernation) |
| 254 | return 0; |
| 255 | |
| 256 | if (!dwc->nr_scratch) |
| 257 | return 0; |
| 258 | |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 259 | scratch_addr = dma_map_single(dwc->scratchbuf, |
| 260 | dwc->nr_scratch * DWC3_SCRATCHBUF_SIZE, |
| 261 | DMA_BIDIRECTIONAL); |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 262 | if (dma_mapping_error(dwc->dev, scratch_addr)) { |
| 263 | dev_err(dwc->dev, "failed to map scratch buffer\n"); |
| 264 | ret = -EFAULT; |
| 265 | goto err0; |
| 266 | } |
| 267 | |
| 268 | dwc->scratch_addr = scratch_addr; |
| 269 | |
| 270 | param = lower_32_bits(scratch_addr); |
| 271 | |
| 272 | ret = dwc3_send_gadget_generic_command(dwc, |
| 273 | DWC3_DGCMD_SET_SCRATCHPAD_ADDR_LO, param); |
| 274 | if (ret < 0) |
| 275 | goto err1; |
| 276 | |
| 277 | param = upper_32_bits(scratch_addr); |
| 278 | |
| 279 | ret = dwc3_send_gadget_generic_command(dwc, |
| 280 | DWC3_DGCMD_SET_SCRATCHPAD_ADDR_HI, param); |
| 281 | if (ret < 0) |
| 282 | goto err1; |
| 283 | |
| 284 | return 0; |
| 285 | |
| 286 | err1: |
Michal Simek | 698cd6f | 2015-10-30 16:24:06 +0100 | [diff] [blame] | 287 | dma_unmap_single((void *)(uintptr_t)dwc->scratch_addr, dwc->nr_scratch * |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 288 | DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL); |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 289 | |
| 290 | err0: |
| 291 | return ret; |
| 292 | } |
| 293 | |
| 294 | static void dwc3_free_scratch_buffers(struct dwc3 *dwc) |
| 295 | { |
| 296 | if (!dwc->has_hibernation) |
| 297 | return; |
| 298 | |
| 299 | if (!dwc->nr_scratch) |
| 300 | return; |
| 301 | |
Michal Simek | 698cd6f | 2015-10-30 16:24:06 +0100 | [diff] [blame] | 302 | dma_unmap_single((void *)(uintptr_t)dwc->scratch_addr, dwc->nr_scratch * |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 303 | DWC3_SCRATCHBUF_SIZE, DMA_BIDIRECTIONAL); |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 304 | kfree(dwc->scratchbuf); |
| 305 | } |
| 306 | |
| 307 | static void dwc3_core_num_eps(struct dwc3 *dwc) |
| 308 | { |
| 309 | struct dwc3_hwparams *parms = &dwc->hwparams; |
| 310 | |
| 311 | dwc->num_in_eps = DWC3_NUM_IN_EPS(parms); |
| 312 | dwc->num_out_eps = DWC3_NUM_EPS(parms) - dwc->num_in_eps; |
| 313 | |
| 314 | dev_vdbg(dwc->dev, "found %d IN and %d OUT endpoints\n", |
| 315 | dwc->num_in_eps, dwc->num_out_eps); |
| 316 | } |
| 317 | |
| 318 | static void dwc3_cache_hwparams(struct dwc3 *dwc) |
| 319 | { |
| 320 | struct dwc3_hwparams *parms = &dwc->hwparams; |
| 321 | |
| 322 | parms->hwparams0 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS0); |
| 323 | parms->hwparams1 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS1); |
| 324 | parms->hwparams2 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS2); |
| 325 | parms->hwparams3 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS3); |
| 326 | parms->hwparams4 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS4); |
| 327 | parms->hwparams5 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS5); |
| 328 | parms->hwparams6 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS6); |
| 329 | parms->hwparams7 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS7); |
| 330 | parms->hwparams8 = dwc3_readl(dwc->regs, DWC3_GHWPARAMS8); |
| 331 | } |
| 332 | |
| 333 | /** |
| 334 | * dwc3_phy_setup - Configure USB PHY Interface of DWC3 Core |
| 335 | * @dwc: Pointer to our controller context structure |
| 336 | */ |
| 337 | static void dwc3_phy_setup(struct dwc3 *dwc) |
| 338 | { |
| 339 | u32 reg; |
| 340 | |
| 341 | reg = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0)); |
| 342 | |
| 343 | /* |
| 344 | * Above 1.94a, it is recommended to set DWC3_GUSB3PIPECTL_SUSPHY |
| 345 | * to '0' during coreConsultant configuration. So default value |
| 346 | * will be '0' when the core is reset. Application needs to set it |
| 347 | * to '1' after the core initialization is completed. |
| 348 | */ |
| 349 | if (dwc->revision > DWC3_REVISION_194A) |
| 350 | reg |= DWC3_GUSB3PIPECTL_SUSPHY; |
| 351 | |
| 352 | if (dwc->u2ss_inp3_quirk) |
| 353 | reg |= DWC3_GUSB3PIPECTL_U2SSINP3OK; |
| 354 | |
| 355 | if (dwc->req_p1p2p3_quirk) |
| 356 | reg |= DWC3_GUSB3PIPECTL_REQP1P2P3; |
| 357 | |
| 358 | if (dwc->del_p1p2p3_quirk) |
| 359 | reg |= DWC3_GUSB3PIPECTL_DEP1P2P3_EN; |
| 360 | |
| 361 | if (dwc->del_phy_power_chg_quirk) |
| 362 | reg |= DWC3_GUSB3PIPECTL_DEPOCHANGE; |
| 363 | |
| 364 | if (dwc->lfps_filter_quirk) |
| 365 | reg |= DWC3_GUSB3PIPECTL_LFPSFILT; |
| 366 | |
| 367 | if (dwc->rx_detect_poll_quirk) |
| 368 | reg |= DWC3_GUSB3PIPECTL_RX_DETOPOLL; |
| 369 | |
| 370 | if (dwc->tx_de_emphasis_quirk) |
| 371 | reg |= DWC3_GUSB3PIPECTL_TX_DEEPH(dwc->tx_de_emphasis); |
| 372 | |
| 373 | if (dwc->dis_u3_susphy_quirk) |
| 374 | reg &= ~DWC3_GUSB3PIPECTL_SUSPHY; |
| 375 | |
| 376 | dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), reg); |
| 377 | |
| 378 | mdelay(100); |
| 379 | |
| 380 | reg = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0)); |
| 381 | |
| 382 | /* |
| 383 | * Above 1.94a, it is recommended to set DWC3_GUSB2PHYCFG_SUSPHY to |
| 384 | * '0' during coreConsultant configuration. So default value will |
| 385 | * be '0' when the core is reset. Application needs to set it to |
| 386 | * '1' after the core initialization is completed. |
| 387 | */ |
| 388 | if (dwc->revision > DWC3_REVISION_194A) |
| 389 | reg |= DWC3_GUSB2PHYCFG_SUSPHY; |
| 390 | |
| 391 | if (dwc->dis_u2_susphy_quirk) |
| 392 | reg &= ~DWC3_GUSB2PHYCFG_SUSPHY; |
| 393 | |
| 394 | dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), reg); |
| 395 | |
| 396 | mdelay(100); |
| 397 | } |
| 398 | |
| 399 | /** |
| 400 | * dwc3_core_init - Low-level initialization of DWC3 Core |
| 401 | * @dwc: Pointer to our controller context structure |
| 402 | * |
| 403 | * Returns 0 on success otherwise negative errno. |
| 404 | */ |
| 405 | static int dwc3_core_init(struct dwc3 *dwc) |
| 406 | { |
| 407 | unsigned long timeout; |
| 408 | u32 hwparams4 = dwc->hwparams.hwparams4; |
| 409 | u32 reg; |
| 410 | int ret; |
| 411 | |
| 412 | reg = dwc3_readl(dwc->regs, DWC3_GSNPSID); |
| 413 | /* This should read as U3 followed by revision number */ |
| 414 | if ((reg & DWC3_GSNPSID_MASK) != 0x55330000) { |
| 415 | dev_err(dwc->dev, "this is not a DesignWare USB3 DRD Core\n"); |
| 416 | ret = -ENODEV; |
| 417 | goto err0; |
| 418 | } |
| 419 | dwc->revision = reg; |
| 420 | |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 421 | /* Handle USB2.0-only core configuration */ |
| 422 | if (DWC3_GHWPARAMS3_SSPHY_IFC(dwc->hwparams.hwparams3) == |
| 423 | DWC3_GHWPARAMS3_SSPHY_IFC_DIS) { |
| 424 | if (dwc->maximum_speed == USB_SPEED_SUPER) |
| 425 | dwc->maximum_speed = USB_SPEED_HIGH; |
| 426 | } |
| 427 | |
| 428 | /* issue device SoftReset too */ |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 429 | timeout = 5000; |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 430 | dwc3_writel(dwc->regs, DWC3_DCTL, DWC3_DCTL_CSFTRST); |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 431 | while (timeout--) { |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 432 | reg = dwc3_readl(dwc->regs, DWC3_DCTL); |
| 433 | if (!(reg & DWC3_DCTL_CSFTRST)) |
| 434 | break; |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 435 | }; |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 436 | |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 437 | if (!timeout) { |
| 438 | dev_err(dwc->dev, "Reset Timed Out\n"); |
| 439 | ret = -ETIMEDOUT; |
| 440 | goto err0; |
| 441 | } |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 442 | |
| 443 | ret = dwc3_core_soft_reset(dwc); |
| 444 | if (ret) |
| 445 | goto err0; |
| 446 | |
| 447 | reg = dwc3_readl(dwc->regs, DWC3_GCTL); |
| 448 | reg &= ~DWC3_GCTL_SCALEDOWN_MASK; |
| 449 | |
| 450 | switch (DWC3_GHWPARAMS1_EN_PWROPT(dwc->hwparams.hwparams1)) { |
| 451 | case DWC3_GHWPARAMS1_EN_PWROPT_CLK: |
| 452 | /** |
| 453 | * WORKAROUND: DWC3 revisions between 2.10a and 2.50a have an |
| 454 | * issue which would cause xHCI compliance tests to fail. |
| 455 | * |
| 456 | * Because of that we cannot enable clock gating on such |
| 457 | * configurations. |
| 458 | * |
| 459 | * Refers to: |
| 460 | * |
| 461 | * STAR#9000588375: Clock Gating, SOF Issues when ref_clk-Based |
| 462 | * SOF/ITP Mode Used |
| 463 | */ |
| 464 | if ((dwc->dr_mode == USB_DR_MODE_HOST || |
| 465 | dwc->dr_mode == USB_DR_MODE_OTG) && |
| 466 | (dwc->revision >= DWC3_REVISION_210A && |
| 467 | dwc->revision <= DWC3_REVISION_250A)) |
| 468 | reg |= DWC3_GCTL_DSBLCLKGTNG | DWC3_GCTL_SOFITPSYNC; |
| 469 | else |
| 470 | reg &= ~DWC3_GCTL_DSBLCLKGTNG; |
| 471 | break; |
| 472 | case DWC3_GHWPARAMS1_EN_PWROPT_HIB: |
| 473 | /* enable hibernation here */ |
| 474 | dwc->nr_scratch = DWC3_GHWPARAMS4_HIBER_SCRATCHBUFS(hwparams4); |
| 475 | |
| 476 | /* |
| 477 | * REVISIT Enabling this bit so that host-mode hibernation |
| 478 | * will work. Device-mode hibernation is not yet implemented. |
| 479 | */ |
| 480 | reg |= DWC3_GCTL_GBLHIBERNATIONEN; |
| 481 | break; |
| 482 | default: |
| 483 | dev_dbg(dwc->dev, "No power optimization available\n"); |
| 484 | } |
| 485 | |
| 486 | /* check if current dwc3 is on simulation board */ |
| 487 | if (dwc->hwparams.hwparams6 & DWC3_GHWPARAMS6_EN_FPGA) { |
| 488 | dev_dbg(dwc->dev, "it is on FPGA board\n"); |
| 489 | dwc->is_fpga = true; |
| 490 | } |
| 491 | |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 492 | if(dwc->disable_scramble_quirk && !dwc->is_fpga) |
| 493 | WARN(true, |
| 494 | "disable_scramble cannot be used on non-FPGA builds\n"); |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 495 | |
| 496 | if (dwc->disable_scramble_quirk && dwc->is_fpga) |
| 497 | reg |= DWC3_GCTL_DISSCRAMBLE; |
| 498 | else |
| 499 | reg &= ~DWC3_GCTL_DISSCRAMBLE; |
| 500 | |
| 501 | if (dwc->u2exit_lfps_quirk) |
| 502 | reg |= DWC3_GCTL_U2EXIT_LFPS; |
| 503 | |
| 504 | /* |
| 505 | * WORKAROUND: DWC3 revisions <1.90a have a bug |
| 506 | * where the device can fail to connect at SuperSpeed |
| 507 | * and falls back to high-speed mode which causes |
| 508 | * the device to enter a Connect/Disconnect loop |
| 509 | */ |
| 510 | if (dwc->revision < DWC3_REVISION_190A) |
| 511 | reg |= DWC3_GCTL_U2RSTECN; |
| 512 | |
| 513 | dwc3_core_num_eps(dwc); |
| 514 | |
| 515 | dwc3_writel(dwc->regs, DWC3_GCTL, reg); |
| 516 | |
| 517 | dwc3_phy_setup(dwc); |
| 518 | |
| 519 | ret = dwc3_alloc_scratch_buffers(dwc); |
| 520 | if (ret) |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 521 | goto err0; |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 522 | |
| 523 | ret = dwc3_setup_scratch_buffers(dwc); |
| 524 | if (ret) |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 525 | goto err1; |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 526 | |
| 527 | return 0; |
| 528 | |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 529 | err1: |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 530 | dwc3_free_scratch_buffers(dwc); |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 531 | |
| 532 | err0: |
| 533 | return ret; |
| 534 | } |
| 535 | |
| 536 | static void dwc3_core_exit(struct dwc3 *dwc) |
| 537 | { |
| 538 | dwc3_free_scratch_buffers(dwc); |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 539 | } |
| 540 | |
| 541 | static int dwc3_core_init_mode(struct dwc3 *dwc) |
| 542 | { |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 543 | int ret; |
| 544 | |
| 545 | switch (dwc->dr_mode) { |
| 546 | case USB_DR_MODE_PERIPHERAL: |
| 547 | dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_DEVICE); |
| 548 | ret = dwc3_gadget_init(dwc); |
| 549 | if (ret) { |
| 550 | dev_err(dev, "failed to initialize gadget\n"); |
| 551 | return ret; |
| 552 | } |
| 553 | break; |
| 554 | case USB_DR_MODE_HOST: |
| 555 | dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_HOST); |
| 556 | ret = dwc3_host_init(dwc); |
| 557 | if (ret) { |
| 558 | dev_err(dev, "failed to initialize host\n"); |
| 559 | return ret; |
| 560 | } |
| 561 | break; |
| 562 | case USB_DR_MODE_OTG: |
| 563 | dwc3_set_mode(dwc, DWC3_GCTL_PRTCAP_OTG); |
| 564 | ret = dwc3_host_init(dwc); |
| 565 | if (ret) { |
| 566 | dev_err(dev, "failed to initialize host\n"); |
| 567 | return ret; |
| 568 | } |
| 569 | |
| 570 | ret = dwc3_gadget_init(dwc); |
| 571 | if (ret) { |
| 572 | dev_err(dev, "failed to initialize gadget\n"); |
| 573 | return ret; |
| 574 | } |
| 575 | break; |
| 576 | default: |
| 577 | dev_err(dev, "Unsupported mode of operation %d\n", dwc->dr_mode); |
| 578 | return -EINVAL; |
| 579 | } |
| 580 | |
| 581 | return 0; |
| 582 | } |
| 583 | |
| 584 | static void dwc3_core_exit_mode(struct dwc3 *dwc) |
| 585 | { |
| 586 | switch (dwc->dr_mode) { |
| 587 | case USB_DR_MODE_PERIPHERAL: |
| 588 | dwc3_gadget_exit(dwc); |
| 589 | break; |
| 590 | case USB_DR_MODE_HOST: |
| 591 | dwc3_host_exit(dwc); |
| 592 | break; |
| 593 | case USB_DR_MODE_OTG: |
| 594 | dwc3_host_exit(dwc); |
| 595 | dwc3_gadget_exit(dwc); |
| 596 | break; |
| 597 | default: |
| 598 | /* do nothing */ |
| 599 | break; |
| 600 | } |
| 601 | } |
| 602 | |
| 603 | #define DWC3_ALIGN_MASK (16 - 1) |
| 604 | |
Kishon Vijay Abraham I | bfbf05d | 2015-02-23 18:40:04 +0530 | [diff] [blame] | 605 | /** |
| 606 | * dwc3_uboot_init - dwc3 core uboot initialization code |
| 607 | * @dwc3_dev: struct dwc3_device containing initialization data |
| 608 | * |
| 609 | * Entry point for dwc3 driver (equivalent to dwc3_probe in linux |
| 610 | * kernel driver). Pointer to dwc3_device should be passed containing |
| 611 | * base address and other initialization data. Returns '0' on success and |
| 612 | * a negative value on failure. |
| 613 | * |
| 614 | * Generally called from board_usb_init() implemented in board file. |
| 615 | */ |
| 616 | int dwc3_uboot_init(struct dwc3_device *dwc3_dev) |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 617 | { |
Kishon Vijay Abraham I | dc5c653 | 2015-02-23 18:40:05 +0530 | [diff] [blame] | 618 | struct dwc3 *dwc; |
Felipe Balbi | 424305f | 2015-10-01 14:22:18 -0500 | [diff] [blame] | 619 | struct device *dev = NULL; |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 620 | u8 lpm_nyet_threshold; |
| 621 | u8 tx_de_emphasis; |
| 622 | u8 hird_threshold; |
| 623 | |
| 624 | int ret; |
| 625 | |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 626 | void *mem; |
| 627 | |
Mugunthan V N | 121f93c | 2018-05-18 13:10:27 +0200 | [diff] [blame] | 628 | mem = devm_kzalloc((struct udevice *)dev, |
| 629 | sizeof(*dwc) + DWC3_ALIGN_MASK, GFP_KERNEL); |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 630 | if (!mem) |
| 631 | return -ENOMEM; |
| 632 | |
| 633 | dwc = PTR_ALIGN(mem, DWC3_ALIGN_MASK + 1); |
| 634 | dwc->mem = mem; |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 635 | |
Michal Simek | 698cd6f | 2015-10-30 16:24:06 +0100 | [diff] [blame] | 636 | dwc->regs = (void *)(uintptr_t)(dwc3_dev->base + |
| 637 | DWC3_GLOBALS_REGS_START); |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 638 | |
| 639 | /* default to highest possible threshold */ |
| 640 | lpm_nyet_threshold = 0xff; |
| 641 | |
| 642 | /* default to -3.5dB de-emphasis */ |
| 643 | tx_de_emphasis = 1; |
| 644 | |
| 645 | /* |
| 646 | * default to assert utmi_sleep_n and use maximum allowed HIRD |
| 647 | * threshold value of 0b1100 |
| 648 | */ |
| 649 | hird_threshold = 12; |
| 650 | |
Kishon Vijay Abraham I | bfbf05d | 2015-02-23 18:40:04 +0530 | [diff] [blame] | 651 | dwc->maximum_speed = dwc3_dev->maximum_speed; |
| 652 | dwc->has_lpm_erratum = dwc3_dev->has_lpm_erratum; |
| 653 | if (dwc3_dev->lpm_nyet_threshold) |
| 654 | lpm_nyet_threshold = dwc3_dev->lpm_nyet_threshold; |
| 655 | dwc->is_utmi_l1_suspend = dwc3_dev->is_utmi_l1_suspend; |
| 656 | if (dwc3_dev->hird_threshold) |
| 657 | hird_threshold = dwc3_dev->hird_threshold; |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 658 | |
Kishon Vijay Abraham I | bfbf05d | 2015-02-23 18:40:04 +0530 | [diff] [blame] | 659 | dwc->needs_fifo_resize = dwc3_dev->tx_fifo_resize; |
| 660 | dwc->dr_mode = dwc3_dev->dr_mode; |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 661 | |
Kishon Vijay Abraham I | bfbf05d | 2015-02-23 18:40:04 +0530 | [diff] [blame] | 662 | dwc->disable_scramble_quirk = dwc3_dev->disable_scramble_quirk; |
| 663 | dwc->u2exit_lfps_quirk = dwc3_dev->u2exit_lfps_quirk; |
| 664 | dwc->u2ss_inp3_quirk = dwc3_dev->u2ss_inp3_quirk; |
| 665 | dwc->req_p1p2p3_quirk = dwc3_dev->req_p1p2p3_quirk; |
| 666 | dwc->del_p1p2p3_quirk = dwc3_dev->del_p1p2p3_quirk; |
| 667 | dwc->del_phy_power_chg_quirk = dwc3_dev->del_phy_power_chg_quirk; |
| 668 | dwc->lfps_filter_quirk = dwc3_dev->lfps_filter_quirk; |
| 669 | dwc->rx_detect_poll_quirk = dwc3_dev->rx_detect_poll_quirk; |
| 670 | dwc->dis_u3_susphy_quirk = dwc3_dev->dis_u3_susphy_quirk; |
| 671 | dwc->dis_u2_susphy_quirk = dwc3_dev->dis_u2_susphy_quirk; |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 672 | |
Kishon Vijay Abraham I | bfbf05d | 2015-02-23 18:40:04 +0530 | [diff] [blame] | 673 | dwc->tx_de_emphasis_quirk = dwc3_dev->tx_de_emphasis_quirk; |
| 674 | if (dwc3_dev->tx_de_emphasis) |
| 675 | tx_de_emphasis = dwc3_dev->tx_de_emphasis; |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 676 | |
| 677 | /* default to superspeed if no maximum_speed passed */ |
| 678 | if (dwc->maximum_speed == USB_SPEED_UNKNOWN) |
| 679 | dwc->maximum_speed = USB_SPEED_SUPER; |
| 680 | |
| 681 | dwc->lpm_nyet_threshold = lpm_nyet_threshold; |
| 682 | dwc->tx_de_emphasis = tx_de_emphasis; |
| 683 | |
| 684 | dwc->hird_threshold = hird_threshold |
| 685 | | (dwc->is_utmi_l1_suspend << 4); |
| 686 | |
Kishon Vijay Abraham I | dc5c653 | 2015-02-23 18:40:05 +0530 | [diff] [blame] | 687 | dwc->index = dwc3_dev->index; |
| 688 | |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 689 | dwc3_cache_hwparams(dwc); |
| 690 | |
| 691 | ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE); |
| 692 | if (ret) { |
| 693 | dev_err(dwc->dev, "failed to allocate event buffers\n"); |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 694 | return -ENOMEM; |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 695 | } |
| 696 | |
| 697 | if (IS_ENABLED(CONFIG_USB_DWC3_HOST)) |
| 698 | dwc->dr_mode = USB_DR_MODE_HOST; |
| 699 | else if (IS_ENABLED(CONFIG_USB_DWC3_GADGET)) |
| 700 | dwc->dr_mode = USB_DR_MODE_PERIPHERAL; |
| 701 | |
| 702 | if (dwc->dr_mode == USB_DR_MODE_UNKNOWN) |
| 703 | dwc->dr_mode = USB_DR_MODE_OTG; |
| 704 | |
| 705 | ret = dwc3_core_init(dwc); |
| 706 | if (ret) { |
| 707 | dev_err(dev, "failed to initialize core\n"); |
| 708 | goto err0; |
| 709 | } |
| 710 | |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 711 | ret = dwc3_event_buffers_setup(dwc); |
| 712 | if (ret) { |
| 713 | dev_err(dwc->dev, "failed to setup event buffers\n"); |
Kishon Vijay Abraham I | 99030d7 | 2015-02-23 18:40:02 +0530 | [diff] [blame] | 714 | goto err1; |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 715 | } |
| 716 | |
| 717 | ret = dwc3_core_init_mode(dwc); |
| 718 | if (ret) |
| 719 | goto err2; |
| 720 | |
Kishon Vijay Abraham I | dc5c653 | 2015-02-23 18:40:05 +0530 | [diff] [blame] | 721 | list_add_tail(&dwc->list, &dwc3_list); |
| 722 | |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 723 | return 0; |
| 724 | |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 725 | err2: |
| 726 | dwc3_event_buffers_cleanup(dwc); |
| 727 | |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 728 | err1: |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 729 | dwc3_core_exit(dwc); |
| 730 | |
| 731 | err0: |
| 732 | dwc3_free_event_buffers(dwc); |
| 733 | |
| 734 | return ret; |
| 735 | } |
| 736 | |
Kishon Vijay Abraham I | bfbf05d | 2015-02-23 18:40:04 +0530 | [diff] [blame] | 737 | /** |
| 738 | * dwc3_uboot_exit - dwc3 core uboot cleanup code |
| 739 | * @index: index of this controller |
| 740 | * |
| 741 | * Performs cleanup of memory allocated in dwc3_uboot_init and other misc |
Kishon Vijay Abraham I | dc5c653 | 2015-02-23 18:40:05 +0530 | [diff] [blame] | 742 | * cleanups (equivalent to dwc3_remove in linux). index of _this_ controller |
| 743 | * should be passed and should match with the index passed in |
| 744 | * dwc3_device during init. |
Kishon Vijay Abraham I | bfbf05d | 2015-02-23 18:40:04 +0530 | [diff] [blame] | 745 | * |
| 746 | * Generally called from board file. |
| 747 | */ |
Kishon Vijay Abraham I | dc5c653 | 2015-02-23 18:40:05 +0530 | [diff] [blame] | 748 | void dwc3_uboot_exit(int index) |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 749 | { |
Kishon Vijay Abraham I | dc5c653 | 2015-02-23 18:40:05 +0530 | [diff] [blame] | 750 | struct dwc3 *dwc; |
| 751 | |
| 752 | list_for_each_entry(dwc, &dwc3_list, list) { |
| 753 | if (dwc->index != index) |
| 754 | continue; |
| 755 | |
| 756 | dwc3_core_exit_mode(dwc); |
| 757 | dwc3_event_buffers_cleanup(dwc); |
| 758 | dwc3_free_event_buffers(dwc); |
| 759 | dwc3_core_exit(dwc); |
| 760 | list_del(&dwc->list); |
| 761 | kfree(dwc->mem); |
| 762 | break; |
| 763 | } |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 764 | } |
| 765 | |
Kishon Vijay Abraham I | 1cee7b1 | 2015-02-23 18:40:06 +0530 | [diff] [blame] | 766 | /** |
| 767 | * dwc3_uboot_handle_interrupt - handle dwc3 core interrupt |
| 768 | * @index: index of this controller |
| 769 | * |
| 770 | * Invokes dwc3 gadget interrupts. |
| 771 | * |
| 772 | * Generally called from board file. |
| 773 | */ |
| 774 | void dwc3_uboot_handle_interrupt(int index) |
| 775 | { |
| 776 | struct dwc3 *dwc = NULL; |
| 777 | |
| 778 | list_for_each_entry(dwc, &dwc3_list, list) { |
| 779 | if (dwc->index != index) |
| 780 | continue; |
| 781 | |
| 782 | dwc3_gadget_uboot_handle_interrupt(dwc); |
| 783 | break; |
| 784 | } |
| 785 | } |
| 786 | |
Kishon Vijay Abraham I | 1530fe3 | 2015-02-23 18:39:50 +0530 | [diff] [blame] | 787 | MODULE_ALIAS("platform:dwc3"); |
| 788 | MODULE_AUTHOR("Felipe Balbi <balbi@ti.com>"); |
| 789 | MODULE_LICENSE("GPL v2"); |
| 790 | MODULE_DESCRIPTION("DesignWare USB3 DRD Controller Driver"); |
Mugunthan V N | 5f7ff71 | 2018-05-18 13:15:04 +0200 | [diff] [blame] | 791 | |
Jean-Jacques Hiblot | 3de978a | 2018-11-29 10:52:45 +0100 | [diff] [blame] | 792 | #if CONFIG_IS_ENABLED(PHY) && CONFIG_IS_ENABLED(DM_USB) |
| 793 | int dwc3_setup_phy(struct udevice *dev, struct phy **array, int *num_phys) |
| 794 | { |
| 795 | int i, ret, count; |
| 796 | struct phy *usb_phys; |
| 797 | |
| 798 | /* Return if no phy declared */ |
| 799 | if (!dev_read_prop(dev, "phys", NULL)) |
| 800 | return 0; |
| 801 | count = dev_count_phandle_with_args(dev, "phys", "#phy-cells"); |
| 802 | if (count <= 0) |
| 803 | return count; |
| 804 | |
| 805 | usb_phys = devm_kcalloc(dev, count, sizeof(struct phy), |
| 806 | GFP_KERNEL); |
| 807 | if (!usb_phys) |
| 808 | return -ENOMEM; |
| 809 | |
| 810 | for (i = 0; i < count; i++) { |
| 811 | ret = generic_phy_get_by_index(dev, i, &usb_phys[i]); |
| 812 | if (ret && ret != -ENOENT) { |
| 813 | pr_err("Failed to get USB PHY%d for %s\n", |
| 814 | i, dev->name); |
| 815 | return ret; |
| 816 | } |
| 817 | } |
| 818 | |
| 819 | for (i = 0; i < count; i++) { |
| 820 | ret = generic_phy_init(&usb_phys[i]); |
| 821 | if (ret) { |
| 822 | pr_err("Can't init USB PHY%d for %s\n", |
| 823 | i, dev->name); |
| 824 | goto phys_init_err; |
| 825 | } |
| 826 | } |
| 827 | |
| 828 | for (i = 0; i < count; i++) { |
| 829 | ret = generic_phy_power_on(&usb_phys[i]); |
| 830 | if (ret) { |
| 831 | pr_err("Can't power USB PHY%d for %s\n", |
| 832 | i, dev->name); |
| 833 | goto phys_poweron_err; |
| 834 | } |
| 835 | } |
| 836 | |
| 837 | *array = usb_phys; |
| 838 | *num_phys = count; |
| 839 | return 0; |
| 840 | |
| 841 | phys_poweron_err: |
| 842 | for (i = count - 1; i >= 0; i--) |
| 843 | generic_phy_power_off(&usb_phys[i]); |
| 844 | |
| 845 | for (i = 0; i < count; i++) |
| 846 | generic_phy_exit(&usb_phys[i]); |
| 847 | |
| 848 | return ret; |
| 849 | |
| 850 | phys_init_err: |
| 851 | for (; i >= 0; i--) |
| 852 | generic_phy_exit(&usb_phys[i]); |
| 853 | |
| 854 | return ret; |
| 855 | } |
| 856 | |
| 857 | int dwc3_shutdown_phy(struct udevice *dev, struct phy *usb_phys, int num_phys) |
| 858 | { |
| 859 | int i, ret; |
| 860 | |
| 861 | for (i = 0; i < num_phys; i++) { |
| 862 | if (!generic_phy_valid(&usb_phys[i])) |
| 863 | continue; |
| 864 | |
| 865 | ret = generic_phy_power_off(&usb_phys[i]); |
| 866 | ret |= generic_phy_exit(&usb_phys[i]); |
| 867 | if (ret) { |
| 868 | pr_err("Can't shutdown USB PHY%d for %s\n", |
| 869 | i, dev->name); |
| 870 | } |
| 871 | } |
| 872 | |
| 873 | return 0; |
| 874 | } |
| 875 | #endif |
| 876 | |
Jean-Jacques Hiblot | 44aaec7 | 2018-11-29 10:52:42 +0100 | [diff] [blame] | 877 | #if CONFIG_IS_ENABLED(DM_USB_GADGET) |
Mugunthan V N | 5f7ff71 | 2018-05-18 13:15:04 +0200 | [diff] [blame] | 878 | int dwc3_init(struct dwc3 *dwc) |
| 879 | { |
| 880 | int ret; |
| 881 | |
| 882 | dwc3_cache_hwparams(dwc); |
| 883 | |
| 884 | ret = dwc3_alloc_event_buffers(dwc, DWC3_EVENT_BUFFERS_SIZE); |
| 885 | if (ret) { |
| 886 | dev_err(dwc->dev, "failed to allocate event buffers\n"); |
| 887 | return -ENOMEM; |
| 888 | } |
| 889 | |
| 890 | ret = dwc3_core_init(dwc); |
| 891 | if (ret) { |
| 892 | dev_err(dev, "failed to initialize core\n"); |
| 893 | goto core_fail; |
| 894 | } |
| 895 | |
| 896 | ret = dwc3_event_buffers_setup(dwc); |
| 897 | if (ret) { |
| 898 | dev_err(dwc->dev, "failed to setup event buffers\n"); |
| 899 | goto event_fail; |
| 900 | } |
| 901 | |
| 902 | ret = dwc3_core_init_mode(dwc); |
| 903 | if (ret) |
| 904 | goto mode_fail; |
| 905 | |
| 906 | return 0; |
| 907 | |
| 908 | mode_fail: |
| 909 | dwc3_event_buffers_cleanup(dwc); |
| 910 | |
| 911 | event_fail: |
| 912 | dwc3_core_exit(dwc); |
| 913 | |
| 914 | core_fail: |
| 915 | dwc3_free_event_buffers(dwc); |
| 916 | |
| 917 | return ret; |
| 918 | } |
| 919 | |
| 920 | void dwc3_remove(struct dwc3 *dwc) |
| 921 | { |
| 922 | dwc3_core_exit_mode(dwc); |
| 923 | dwc3_event_buffers_cleanup(dwc); |
| 924 | dwc3_free_event_buffers(dwc); |
| 925 | dwc3_core_exit(dwc); |
| 926 | kfree(dwc->mem); |
| 927 | } |
Mugunthan V N | 5f7ff71 | 2018-05-18 13:15:04 +0200 | [diff] [blame] | 928 | #endif |