Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 1 | /* |
| 2 | * EHCI-compliant USB host controller driver for NVIDIA Tegra SoCs |
| 3 | * |
| 4 | * Copyright (C) 2010 Google, Inc. |
Venu Byravarasu | bbdabdb | 2013-01-17 20:15:37 +0000 | [diff] [blame] | 5 | * Copyright (C) 2009 - 2013 NVIDIA Corporation |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify it |
| 8 | * under the terms of the GNU General Public License as published by the |
| 9 | * Free Software Foundation; either version 2 of the License, or (at your |
| 10 | * option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 13 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 14 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 15 | * more details. |
| 16 | * |
| 17 | */ |
| 18 | |
| 19 | #include <linux/clk.h> |
Manjunath Goudar | 9fc5f24 | 2013-06-13 11:24:12 -0600 | [diff] [blame] | 20 | #include <linux/clk/tegra.h> |
| 21 | #include <linux/dma-mapping.h> |
Kishon Vijay Abraham I | ded017e | 2012-06-26 17:40:32 +0530 | [diff] [blame] | 22 | #include <linux/err.h> |
Olof Johansson | 4a53f4e | 2011-11-04 09:12:40 +0000 | [diff] [blame] | 23 | #include <linux/gpio.h> |
Manjunath Goudar | 9fc5f24 | 2013-06-13 11:24:12 -0600 | [diff] [blame] | 24 | #include <linux/io.h> |
| 25 | #include <linux/irq.h> |
| 26 | #include <linux/module.h> |
Olof Johansson | 4a53f4e | 2011-11-04 09:12:40 +0000 | [diff] [blame] | 27 | #include <linux/of.h> |
| 28 | #include <linux/of_gpio.h> |
Manjunath Goudar | 9fc5f24 | 2013-06-13 11:24:12 -0600 | [diff] [blame] | 29 | #include <linux/platform_device.h> |
| 30 | #include <linux/platform_data/tegra_usb.h> |
Alan Stern | ebf20de | 2012-05-01 11:28:49 -0400 | [diff] [blame] | 31 | #include <linux/pm_runtime.h> |
Manjunath Goudar | 9fc5f24 | 2013-06-13 11:24:12 -0600 | [diff] [blame] | 32 | #include <linux/slab.h> |
Venu Byravarasu | bbdabdb | 2013-01-17 20:15:37 +0000 | [diff] [blame] | 33 | #include <linux/usb/ehci_def.h> |
Venu Byravarasu | 1ba8216 | 2012-09-05 18:50:23 +0530 | [diff] [blame] | 34 | #include <linux/usb/tegra_usb_phy.h> |
Manjunath Goudar | 9fc5f24 | 2013-06-13 11:24:12 -0600 | [diff] [blame] | 35 | #include <linux/usb.h> |
| 36 | #include <linux/usb/hcd.h> |
| 37 | #include <linux/usb/otg.h> |
| 38 | |
| 39 | #include "ehci.h" |
Stephen Warren | 54388b2 | 2012-10-02 16:49:25 -0600 | [diff] [blame] | 40 | |
| 41 | #define TEGRA_USB_BASE 0xC5000000 |
| 42 | #define TEGRA_USB2_BASE 0xC5004000 |
| 43 | #define TEGRA_USB3_BASE 0xC5008000 |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 44 | |
Manjunath Goudar | 9fc5f24 | 2013-06-13 11:24:12 -0600 | [diff] [blame] | 45 | #define PORT_WAKE_BITS (PORT_WKOC_E|PORT_WKDISC_E|PORT_WKCONN_E) |
| 46 | |
Robert Morell | fbf9865 | 2011-03-09 16:28:57 -0800 | [diff] [blame] | 47 | #define TEGRA_USB_DMA_ALIGN 32 |
| 48 | |
Manjunath Goudar | 9fc5f24 | 2013-06-13 11:24:12 -0600 | [diff] [blame] | 49 | #define DRIVER_DESC "Tegra EHCI driver" |
| 50 | #define DRV_NAME "tegra-ehci" |
| 51 | |
| 52 | static struct hc_driver __read_mostly tegra_ehci_hc_driver; |
| 53 | |
| 54 | static int (*orig_hub_control)(struct usb_hcd *hcd, |
| 55 | u16 typeReq, u16 wValue, u16 wIndex, |
| 56 | char *buf, u16 wLength); |
| 57 | |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 58 | struct tegra_ehci_hcd { |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 59 | struct tegra_usb_phy *phy; |
| 60 | struct clk *clk; |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 61 | int port_resuming; |
Venu Byravarasu | 585355c | 2012-12-13 20:59:08 +0000 | [diff] [blame] | 62 | bool needs_double_reset; |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 63 | enum tegra_usb_phy_port_speed port_speed; |
| 64 | }; |
| 65 | |
Jim Lin | 1f594b6 | 2011-04-17 11:58:25 +0300 | [diff] [blame] | 66 | static int tegra_ehci_internal_port_reset( |
| 67 | struct ehci_hcd *ehci, |
| 68 | u32 __iomem *portsc_reg |
| 69 | ) |
| 70 | { |
| 71 | u32 temp; |
| 72 | unsigned long flags; |
| 73 | int retval = 0; |
| 74 | int i, tries; |
| 75 | u32 saved_usbintr; |
| 76 | |
| 77 | spin_lock_irqsave(&ehci->lock, flags); |
| 78 | saved_usbintr = ehci_readl(ehci, &ehci->regs->intr_enable); |
| 79 | /* disable USB interrupt */ |
| 80 | ehci_writel(ehci, 0, &ehci->regs->intr_enable); |
| 81 | spin_unlock_irqrestore(&ehci->lock, flags); |
| 82 | |
| 83 | /* |
| 84 | * Here we have to do Port Reset at most twice for |
| 85 | * Port Enable bit to be set. |
| 86 | */ |
| 87 | for (i = 0; i < 2; i++) { |
| 88 | temp = ehci_readl(ehci, portsc_reg); |
| 89 | temp |= PORT_RESET; |
| 90 | ehci_writel(ehci, temp, portsc_reg); |
| 91 | mdelay(10); |
| 92 | temp &= ~PORT_RESET; |
| 93 | ehci_writel(ehci, temp, portsc_reg); |
| 94 | mdelay(1); |
| 95 | tries = 100; |
| 96 | do { |
| 97 | mdelay(1); |
| 98 | /* |
| 99 | * Up to this point, Port Enable bit is |
| 100 | * expected to be set after 2 ms waiting. |
| 101 | * USB1 usually takes extra 45 ms, for safety, |
| 102 | * we take 100 ms as timeout. |
| 103 | */ |
| 104 | temp = ehci_readl(ehci, portsc_reg); |
| 105 | } while (!(temp & PORT_PE) && tries--); |
| 106 | if (temp & PORT_PE) |
| 107 | break; |
| 108 | } |
| 109 | if (i == 2) |
| 110 | retval = -ETIMEDOUT; |
| 111 | |
| 112 | /* |
| 113 | * Clear Connect Status Change bit if it's set. |
| 114 | * We can't clear PORT_PEC. It will also cause PORT_PE to be cleared. |
| 115 | */ |
| 116 | if (temp & PORT_CSC) |
| 117 | ehci_writel(ehci, PORT_CSC, portsc_reg); |
| 118 | |
| 119 | /* |
| 120 | * Write to clear any interrupt status bits that might be set |
| 121 | * during port reset. |
| 122 | */ |
| 123 | temp = ehci_readl(ehci, &ehci->regs->status); |
| 124 | ehci_writel(ehci, temp, &ehci->regs->status); |
| 125 | |
| 126 | /* restore original interrupt enable bits */ |
| 127 | ehci_writel(ehci, saved_usbintr, &ehci->regs->intr_enable); |
| 128 | return retval; |
| 129 | } |
| 130 | |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 131 | static int tegra_ehci_hub_control( |
| 132 | struct usb_hcd *hcd, |
| 133 | u16 typeReq, |
| 134 | u16 wValue, |
| 135 | u16 wIndex, |
| 136 | char *buf, |
| 137 | u16 wLength |
| 138 | ) |
| 139 | { |
Stephen Warren | c19d14d | 2013-06-13 11:24:13 -0600 | [diff] [blame] | 140 | struct ehci_hcd *ehci = hcd_to_ehci(hcd); |
| 141 | struct tegra_ehci_hcd *tegra = (struct tegra_ehci_hcd *)ehci->priv; |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 142 | u32 __iomem *status_reg; |
| 143 | u32 temp; |
| 144 | unsigned long flags; |
| 145 | int retval = 0; |
| 146 | |
| 147 | status_reg = &ehci->regs->port_status[(wIndex & 0xff) - 1]; |
| 148 | |
| 149 | spin_lock_irqsave(&ehci->lock, flags); |
| 150 | |
Stephen Warren | 6d5f89c | 2012-04-18 15:32:46 -0600 | [diff] [blame] | 151 | if (typeReq == GetPortStatus) { |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 152 | temp = ehci_readl(ehci, status_reg); |
| 153 | if (tegra->port_resuming && !(temp & PORT_SUSPEND)) { |
| 154 | /* Resume completed, re-enable disconnect detection */ |
| 155 | tegra->port_resuming = 0; |
Venu Byravarasu | ab137d0 | 2013-01-24 15:57:03 +0530 | [diff] [blame] | 156 | tegra_usb_phy_postresume(hcd->phy); |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 157 | } |
| 158 | } |
| 159 | |
| 160 | else if (typeReq == SetPortFeature && wValue == USB_PORT_FEAT_SUSPEND) { |
| 161 | temp = ehci_readl(ehci, status_reg); |
| 162 | if ((temp & PORT_PE) == 0 || (temp & PORT_RESET) != 0) { |
| 163 | retval = -EPIPE; |
| 164 | goto done; |
| 165 | } |
| 166 | |
Stephen Warren | b087657 | 2012-04-25 12:31:10 -0600 | [diff] [blame] | 167 | temp &= ~(PORT_RWC_BITS | PORT_WKCONN_E); |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 168 | temp |= PORT_WKDISC_E | PORT_WKOC_E; |
| 169 | ehci_writel(ehci, temp | PORT_SUSPEND, status_reg); |
| 170 | |
| 171 | /* |
| 172 | * If a transaction is in progress, there may be a delay in |
| 173 | * suspending the port. Poll until the port is suspended. |
| 174 | */ |
Manjunath Goudar | 2f3a6b8 | 2013-06-13 11:24:09 -0600 | [diff] [blame] | 175 | if (ehci_handshake(ehci, status_reg, PORT_SUSPEND, |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 176 | PORT_SUSPEND, 5000)) |
| 177 | pr_err("%s: timeout waiting for SUSPEND\n", __func__); |
| 178 | |
| 179 | set_bit((wIndex & 0xff) - 1, &ehci->suspended_ports); |
| 180 | goto done; |
| 181 | } |
| 182 | |
Jim Lin | 1f594b6 | 2011-04-17 11:58:25 +0300 | [diff] [blame] | 183 | /* For USB1 port we need to issue Port Reset twice internally */ |
Venu Byravarasu | 585355c | 2012-12-13 20:59:08 +0000 | [diff] [blame] | 184 | if (tegra->needs_double_reset && |
Jim Lin | 1f594b6 | 2011-04-17 11:58:25 +0300 | [diff] [blame] | 185 | (typeReq == SetPortFeature && wValue == USB_PORT_FEAT_RESET)) { |
| 186 | spin_unlock_irqrestore(&ehci->lock, flags); |
| 187 | return tegra_ehci_internal_port_reset(ehci, status_reg); |
| 188 | } |
| 189 | |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 190 | /* |
| 191 | * Tegra host controller will time the resume operation to clear the bit |
| 192 | * when the port control state switches to HS or FS Idle. This behavior |
| 193 | * is different from EHCI where the host controller driver is required |
| 194 | * to set this bit to a zero after the resume duration is timed in the |
| 195 | * driver. |
| 196 | */ |
| 197 | else if (typeReq == ClearPortFeature && |
| 198 | wValue == USB_PORT_FEAT_SUSPEND) { |
| 199 | temp = ehci_readl(ehci, status_reg); |
| 200 | if ((temp & PORT_RESET) || !(temp & PORT_PE)) { |
| 201 | retval = -EPIPE; |
| 202 | goto done; |
| 203 | } |
| 204 | |
| 205 | if (!(temp & PORT_SUSPEND)) |
| 206 | goto done; |
| 207 | |
| 208 | /* Disable disconnect detection during port resume */ |
Venu Byravarasu | ab137d0 | 2013-01-24 15:57:03 +0530 | [diff] [blame] | 209 | tegra_usb_phy_preresume(hcd->phy); |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 210 | |
| 211 | ehci->reset_done[wIndex-1] = jiffies + msecs_to_jiffies(25); |
| 212 | |
| 213 | temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS); |
| 214 | /* start resume signalling */ |
| 215 | ehci_writel(ehci, temp | PORT_RESUME, status_reg); |
Alan Stern | a448e4d | 2012-04-03 15:24:30 -0400 | [diff] [blame] | 216 | set_bit(wIndex-1, &ehci->resuming_ports); |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 217 | |
| 218 | spin_unlock_irqrestore(&ehci->lock, flags); |
| 219 | msleep(20); |
| 220 | spin_lock_irqsave(&ehci->lock, flags); |
| 221 | |
| 222 | /* Poll until the controller clears RESUME and SUSPEND */ |
Manjunath Goudar | 2f3a6b8 | 2013-06-13 11:24:09 -0600 | [diff] [blame] | 223 | if (ehci_handshake(ehci, status_reg, PORT_RESUME, 0, 2000)) |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 224 | pr_err("%s: timeout waiting for RESUME\n", __func__); |
Manjunath Goudar | 2f3a6b8 | 2013-06-13 11:24:09 -0600 | [diff] [blame] | 225 | if (ehci_handshake(ehci, status_reg, PORT_SUSPEND, 0, 2000)) |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 226 | pr_err("%s: timeout waiting for SUSPEND\n", __func__); |
| 227 | |
| 228 | ehci->reset_done[wIndex-1] = 0; |
Alan Stern | a448e4d | 2012-04-03 15:24:30 -0400 | [diff] [blame] | 229 | clear_bit(wIndex-1, &ehci->resuming_ports); |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 230 | |
| 231 | tegra->port_resuming = 1; |
| 232 | goto done; |
| 233 | } |
| 234 | |
| 235 | spin_unlock_irqrestore(&ehci->lock, flags); |
| 236 | |
| 237 | /* Handle the hub control events here */ |
Manjunath Goudar | 9fc5f24 | 2013-06-13 11:24:12 -0600 | [diff] [blame] | 238 | return orig_hub_control(hcd, typeReq, wValue, wIndex, buf, wLength); |
| 239 | |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 240 | done: |
| 241 | spin_unlock_irqrestore(&ehci->lock, flags); |
| 242 | return retval; |
| 243 | } |
| 244 | |
Venu Byravarasu | fe37577 | 2012-04-05 11:25:30 +0530 | [diff] [blame] | 245 | struct dma_aligned_buffer { |
Robert Morell | fbf9865 | 2011-03-09 16:28:57 -0800 | [diff] [blame] | 246 | void *kmalloc_ptr; |
| 247 | void *old_xfer_buffer; |
| 248 | u8 data[0]; |
| 249 | }; |
| 250 | |
Venu Byravarasu | fe37577 | 2012-04-05 11:25:30 +0530 | [diff] [blame] | 251 | static void free_dma_aligned_buffer(struct urb *urb) |
Robert Morell | fbf9865 | 2011-03-09 16:28:57 -0800 | [diff] [blame] | 252 | { |
Venu Byravarasu | fe37577 | 2012-04-05 11:25:30 +0530 | [diff] [blame] | 253 | struct dma_aligned_buffer *temp; |
Robert Morell | fbf9865 | 2011-03-09 16:28:57 -0800 | [diff] [blame] | 254 | |
| 255 | if (!(urb->transfer_flags & URB_ALIGNED_TEMP_BUFFER)) |
| 256 | return; |
| 257 | |
Venu Byravarasu | fe37577 | 2012-04-05 11:25:30 +0530 | [diff] [blame] | 258 | temp = container_of(urb->transfer_buffer, |
| 259 | struct dma_aligned_buffer, data); |
Robert Morell | fbf9865 | 2011-03-09 16:28:57 -0800 | [diff] [blame] | 260 | |
Venu Byravarasu | fe37577 | 2012-04-05 11:25:30 +0530 | [diff] [blame] | 261 | if (usb_urb_dir_in(urb)) |
Robert Morell | fbf9865 | 2011-03-09 16:28:57 -0800 | [diff] [blame] | 262 | memcpy(temp->old_xfer_buffer, temp->data, |
| 263 | urb->transfer_buffer_length); |
| 264 | urb->transfer_buffer = temp->old_xfer_buffer; |
| 265 | kfree(temp->kmalloc_ptr); |
| 266 | |
| 267 | urb->transfer_flags &= ~URB_ALIGNED_TEMP_BUFFER; |
| 268 | } |
| 269 | |
Venu Byravarasu | fe37577 | 2012-04-05 11:25:30 +0530 | [diff] [blame] | 270 | static int alloc_dma_aligned_buffer(struct urb *urb, gfp_t mem_flags) |
Robert Morell | fbf9865 | 2011-03-09 16:28:57 -0800 | [diff] [blame] | 271 | { |
Venu Byravarasu | fe37577 | 2012-04-05 11:25:30 +0530 | [diff] [blame] | 272 | struct dma_aligned_buffer *temp, *kmalloc_ptr; |
Robert Morell | fbf9865 | 2011-03-09 16:28:57 -0800 | [diff] [blame] | 273 | size_t kmalloc_size; |
| 274 | |
| 275 | if (urb->num_sgs || urb->sg || |
| 276 | urb->transfer_buffer_length == 0 || |
| 277 | !((uintptr_t)urb->transfer_buffer & (TEGRA_USB_DMA_ALIGN - 1))) |
| 278 | return 0; |
| 279 | |
Robert Morell | fbf9865 | 2011-03-09 16:28:57 -0800 | [diff] [blame] | 280 | /* Allocate a buffer with enough padding for alignment */ |
| 281 | kmalloc_size = urb->transfer_buffer_length + |
Venu Byravarasu | fe37577 | 2012-04-05 11:25:30 +0530 | [diff] [blame] | 282 | sizeof(struct dma_aligned_buffer) + TEGRA_USB_DMA_ALIGN - 1; |
Robert Morell | fbf9865 | 2011-03-09 16:28:57 -0800 | [diff] [blame] | 283 | |
| 284 | kmalloc_ptr = kmalloc(kmalloc_size, mem_flags); |
| 285 | if (!kmalloc_ptr) |
| 286 | return -ENOMEM; |
| 287 | |
Venu Byravarasu | fe37577 | 2012-04-05 11:25:30 +0530 | [diff] [blame] | 288 | /* Position our struct dma_aligned_buffer such that data is aligned */ |
Robert Morell | fbf9865 | 2011-03-09 16:28:57 -0800 | [diff] [blame] | 289 | temp = PTR_ALIGN(kmalloc_ptr + 1, TEGRA_USB_DMA_ALIGN) - 1; |
Robert Morell | fbf9865 | 2011-03-09 16:28:57 -0800 | [diff] [blame] | 290 | temp->kmalloc_ptr = kmalloc_ptr; |
| 291 | temp->old_xfer_buffer = urb->transfer_buffer; |
Venu Byravarasu | fe37577 | 2012-04-05 11:25:30 +0530 | [diff] [blame] | 292 | if (usb_urb_dir_out(urb)) |
Robert Morell | fbf9865 | 2011-03-09 16:28:57 -0800 | [diff] [blame] | 293 | memcpy(temp->data, urb->transfer_buffer, |
| 294 | urb->transfer_buffer_length); |
| 295 | urb->transfer_buffer = temp->data; |
| 296 | |
| 297 | urb->transfer_flags |= URB_ALIGNED_TEMP_BUFFER; |
| 298 | |
| 299 | return 0; |
| 300 | } |
| 301 | |
| 302 | static int tegra_ehci_map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb, |
| 303 | gfp_t mem_flags) |
| 304 | { |
| 305 | int ret; |
| 306 | |
Venu Byravarasu | fe37577 | 2012-04-05 11:25:30 +0530 | [diff] [blame] | 307 | ret = alloc_dma_aligned_buffer(urb, mem_flags); |
Robert Morell | fbf9865 | 2011-03-09 16:28:57 -0800 | [diff] [blame] | 308 | if (ret) |
| 309 | return ret; |
| 310 | |
| 311 | ret = usb_hcd_map_urb_for_dma(hcd, urb, mem_flags); |
| 312 | if (ret) |
Venu Byravarasu | fe37577 | 2012-04-05 11:25:30 +0530 | [diff] [blame] | 313 | free_dma_aligned_buffer(urb); |
Robert Morell | fbf9865 | 2011-03-09 16:28:57 -0800 | [diff] [blame] | 314 | |
| 315 | return ret; |
| 316 | } |
| 317 | |
| 318 | static void tegra_ehci_unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb) |
| 319 | { |
| 320 | usb_hcd_unmap_urb_for_dma(hcd, urb); |
Venu Byravarasu | fe37577 | 2012-04-05 11:25:30 +0530 | [diff] [blame] | 321 | free_dma_aligned_buffer(urb); |
Robert Morell | fbf9865 | 2011-03-09 16:28:57 -0800 | [diff] [blame] | 322 | } |
| 323 | |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 324 | static int tegra_ehci_probe(struct platform_device *pdev) |
| 325 | { |
| 326 | struct resource *res; |
| 327 | struct usb_hcd *hcd; |
Stephen Warren | c19d14d | 2013-06-13 11:24:13 -0600 | [diff] [blame] | 328 | struct ehci_hcd *ehci; |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 329 | struct tegra_ehci_hcd *tegra; |
| 330 | struct tegra_ehci_platform_data *pdata; |
| 331 | int err = 0; |
| 332 | int irq; |
Venu Byravarasu | 2d22b42 | 2013-05-16 19:43:02 +0530 | [diff] [blame] | 333 | struct device_node *np_phy; |
Venu Byravarasu | bbdabdb | 2013-01-17 20:15:37 +0000 | [diff] [blame] | 334 | struct usb_phy *u_phy; |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 335 | |
| 336 | pdata = pdev->dev.platform_data; |
| 337 | if (!pdata) { |
| 338 | dev_err(&pdev->dev, "Platform data missing\n"); |
| 339 | return -EINVAL; |
| 340 | } |
| 341 | |
Olof Johansson | 4a53f4e | 2011-11-04 09:12:40 +0000 | [diff] [blame] | 342 | /* Right now device-tree probed devices don't get dma_mask set. |
| 343 | * Since shared usb code relies on it, set it here for now. |
| 344 | * Once we have dma capability bindings this can go away. |
| 345 | */ |
| 346 | if (!pdev->dev.dma_mask) |
Stephen Warren | 3b9561e | 2013-05-07 16:53:52 -0600 | [diff] [blame] | 347 | pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask; |
| 348 | if (!pdev->dev.coherent_dma_mask) |
| 349 | pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32); |
Olof Johansson | 4a53f4e | 2011-11-04 09:12:40 +0000 | [diff] [blame] | 350 | |
Stephen Warren | c19d14d | 2013-06-13 11:24:13 -0600 | [diff] [blame] | 351 | hcd = usb_create_hcd(&tegra_ehci_hc_driver, &pdev->dev, |
| 352 | dev_name(&pdev->dev)); |
| 353 | if (!hcd) { |
| 354 | dev_err(&pdev->dev, "Unable to create HCD\n"); |
Mikko Perttunen | f5b8c8b | 2013-07-17 10:37:49 +0300 | [diff] [blame] | 355 | return -ENOMEM; |
Stephen Warren | c19d14d | 2013-06-13 11:24:13 -0600 | [diff] [blame] | 356 | } |
| 357 | platform_set_drvdata(pdev, hcd); |
| 358 | ehci = hcd_to_ehci(hcd); |
| 359 | tegra = (struct tegra_ehci_hcd *)ehci->priv; |
| 360 | |
| 361 | hcd->has_tt = 1; |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 362 | |
Julia Lawall | bc2ff98 | 2012-07-30 16:43:41 +0200 | [diff] [blame] | 363 | tegra->clk = devm_clk_get(&pdev->dev, NULL); |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 364 | if (IS_ERR(tegra->clk)) { |
| 365 | dev_err(&pdev->dev, "Can't get ehci clock\n"); |
Stephen Warren | c19d14d | 2013-06-13 11:24:13 -0600 | [diff] [blame] | 366 | err = PTR_ERR(tegra->clk); |
| 367 | goto cleanup_hcd_create; |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 368 | } |
| 369 | |
Prashant Gaikwad | 20de12c | 2012-06-05 09:59:38 +0530 | [diff] [blame] | 370 | err = clk_prepare_enable(tegra->clk); |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 371 | if (err) |
Stephen Warren | c19d14d | 2013-06-13 11:24:13 -0600 | [diff] [blame] | 372 | goto cleanup_clk_get; |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 373 | |
Venu Byravarasu | eb5369e | 2013-04-03 16:11:12 +0530 | [diff] [blame] | 374 | tegra_periph_reset_assert(tegra->clk); |
| 375 | udelay(1); |
| 376 | tegra_periph_reset_deassert(tegra->clk); |
| 377 | |
Venu Byravarasu | 2d22b42 | 2013-05-16 19:43:02 +0530 | [diff] [blame] | 378 | np_phy = of_parse_phandle(pdev->dev.of_node, "nvidia,phy", 0); |
| 379 | if (!np_phy) { |
| 380 | err = -ENODEV; |
Stephen Warren | c19d14d | 2013-06-13 11:24:13 -0600 | [diff] [blame] | 381 | goto cleanup_clk_en; |
Venu Byravarasu | 2d22b42 | 2013-05-16 19:43:02 +0530 | [diff] [blame] | 382 | } |
| 383 | |
| 384 | u_phy = tegra_usb_get_phy(np_phy); |
| 385 | if (IS_ERR(u_phy)) { |
| 386 | err = PTR_ERR(u_phy); |
Stephen Warren | c19d14d | 2013-06-13 11:24:13 -0600 | [diff] [blame] | 387 | goto cleanup_clk_en; |
Venu Byravarasu | 2d22b42 | 2013-05-16 19:43:02 +0530 | [diff] [blame] | 388 | } |
Stephen Warren | c19d14d | 2013-06-13 11:24:13 -0600 | [diff] [blame] | 389 | hcd->phy = u_phy; |
Venu Byravarasu | 2d22b42 | 2013-05-16 19:43:02 +0530 | [diff] [blame] | 390 | |
Venu Byravarasu | 585355c | 2012-12-13 20:59:08 +0000 | [diff] [blame] | 391 | tegra->needs_double_reset = of_property_read_bool(pdev->dev.of_node, |
| 392 | "nvidia,needs-double-reset"); |
| 393 | |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 394 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 395 | if (!res) { |
| 396 | dev_err(&pdev->dev, "Failed to get I/O memory\n"); |
| 397 | err = -ENXIO; |
Stephen Warren | c19d14d | 2013-06-13 11:24:13 -0600 | [diff] [blame] | 398 | goto cleanup_clk_en; |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 399 | } |
| 400 | hcd->rsrc_start = res->start; |
| 401 | hcd->rsrc_len = resource_size(res); |
Julia Lawall | bc2ff98 | 2012-07-30 16:43:41 +0200 | [diff] [blame] | 402 | hcd->regs = devm_ioremap(&pdev->dev, res->start, resource_size(res)); |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 403 | if (!hcd->regs) { |
| 404 | dev_err(&pdev->dev, "Failed to remap I/O memory\n"); |
| 405 | err = -ENOMEM; |
Stephen Warren | c19d14d | 2013-06-13 11:24:13 -0600 | [diff] [blame] | 406 | goto cleanup_clk_en; |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 407 | } |
Stephen Warren | c19d14d | 2013-06-13 11:24:13 -0600 | [diff] [blame] | 408 | ehci->caps = hcd->regs + 0x100; |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 409 | |
Venu Byravarasu | 2d22b42 | 2013-05-16 19:43:02 +0530 | [diff] [blame] | 410 | err = usb_phy_init(hcd->phy); |
| 411 | if (err) { |
| 412 | dev_err(&pdev->dev, "Failed to initialize phy\n"); |
Stephen Warren | c19d14d | 2013-06-13 11:24:13 -0600 | [diff] [blame] | 413 | goto cleanup_clk_en; |
Olof Johansson | 4a53f4e | 2011-11-04 09:12:40 +0000 | [diff] [blame] | 414 | } |
| 415 | |
Venu Byravarasu | bbdabdb | 2013-01-17 20:15:37 +0000 | [diff] [blame] | 416 | u_phy->otg = devm_kzalloc(&pdev->dev, sizeof(struct usb_otg), |
| 417 | GFP_KERNEL); |
| 418 | if (!u_phy->otg) { |
| 419 | dev_err(&pdev->dev, "Failed to alloc memory for otg\n"); |
| 420 | err = -ENOMEM; |
Venu Byravarasu | 2d22b42 | 2013-05-16 19:43:02 +0530 | [diff] [blame] | 421 | goto cleanup_phy; |
Venu Byravarasu | bbdabdb | 2013-01-17 20:15:37 +0000 | [diff] [blame] | 422 | } |
| 423 | u_phy->otg->host = hcd_to_bus(hcd); |
| 424 | |
Venu Byravarasu | ab137d0 | 2013-01-24 15:57:03 +0530 | [diff] [blame] | 425 | err = usb_phy_set_suspend(hcd->phy, 0); |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 426 | if (err) { |
| 427 | dev_err(&pdev->dev, "Failed to power on the phy\n"); |
Venu Byravarasu | 2d22b42 | 2013-05-16 19:43:02 +0530 | [diff] [blame] | 428 | goto cleanup_phy; |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 429 | } |
| 430 | |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 431 | irq = platform_get_irq(pdev, 0); |
| 432 | if (!irq) { |
| 433 | dev_err(&pdev->dev, "Failed to get IRQ\n"); |
| 434 | err = -ENODEV; |
Venu Byravarasu | 2d22b42 | 2013-05-16 19:43:02 +0530 | [diff] [blame] | 435 | goto cleanup_phy; |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 436 | } |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 437 | |
Tuomas Tynkkynen | de3f233 | 2013-07-25 21:38:02 +0300 | [diff] [blame^] | 438 | otg_set_host(u_phy->otg, &hcd->self); |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 439 | |
Yong Zhang | b5dd18d | 2011-09-07 16:10:52 +0800 | [diff] [blame] | 440 | err = usb_add_hcd(hcd, irq, IRQF_SHARED); |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 441 | if (err) { |
| 442 | dev_err(&pdev->dev, "Failed to add USB HCD\n"); |
Tuomas Tynkkynen | de3f233 | 2013-07-25 21:38:02 +0300 | [diff] [blame^] | 443 | goto cleanup_otg_set_host; |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 444 | } |
| 445 | |
| 446 | return err; |
| 447 | |
Tuomas Tynkkynen | de3f233 | 2013-07-25 21:38:02 +0300 | [diff] [blame^] | 448 | cleanup_otg_set_host: |
| 449 | otg_set_host(u_phy->otg, NULL); |
Thierry Reding | 8fefcfd | 2013-06-14 13:21:21 +0200 | [diff] [blame] | 450 | cleanup_phy: |
Venu Byravarasu | ab137d0 | 2013-01-24 15:57:03 +0530 | [diff] [blame] | 451 | usb_phy_shutdown(hcd->phy); |
Stephen Warren | c19d14d | 2013-06-13 11:24:13 -0600 | [diff] [blame] | 452 | cleanup_clk_en: |
| 453 | clk_disable_unprepare(tegra->clk); |
| 454 | cleanup_clk_get: |
| 455 | clk_put(tegra->clk); |
Venu Byravarasu | 2d22b42 | 2013-05-16 19:43:02 +0530 | [diff] [blame] | 456 | cleanup_hcd_create: |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 457 | usb_put_hcd(hcd); |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 458 | return err; |
| 459 | } |
| 460 | |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 461 | static int tegra_ehci_remove(struct platform_device *pdev) |
| 462 | { |
Stephen Warren | c19d14d | 2013-06-13 11:24:13 -0600 | [diff] [blame] | 463 | struct usb_hcd *hcd = platform_get_drvdata(pdev); |
| 464 | struct tegra_ehci_hcd *tegra = |
| 465 | (struct tegra_ehci_hcd *)hcd_to_ehci(hcd)->priv; |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 466 | |
Tuomas Tynkkynen | de3f233 | 2013-07-25 21:38:02 +0300 | [diff] [blame^] | 467 | otg_set_host(hcd->phy->otg, NULL); |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 468 | |
Venu Byravarasu | ab137d0 | 2013-01-24 15:57:03 +0530 | [diff] [blame] | 469 | usb_phy_shutdown(hcd->phy); |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 470 | usb_remove_hcd(hcd); |
Venu Byravarasu | ecc8a0c | 2012-08-10 11:42:43 +0530 | [diff] [blame] | 471 | usb_put_hcd(hcd); |
| 472 | |
Prashant Gaikwad | 20de12c | 2012-06-05 09:59:38 +0530 | [diff] [blame] | 473 | clk_disable_unprepare(tegra->clk); |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 474 | |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 475 | return 0; |
| 476 | } |
| 477 | |
| 478 | static void tegra_ehci_hcd_shutdown(struct platform_device *pdev) |
| 479 | { |
Stephen Warren | c19d14d | 2013-06-13 11:24:13 -0600 | [diff] [blame] | 480 | struct usb_hcd *hcd = platform_get_drvdata(pdev); |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 481 | |
| 482 | if (hcd->driver->shutdown) |
| 483 | hcd->driver->shutdown(hcd); |
| 484 | } |
| 485 | |
Bill Pemberton | d3608b6 | 2012-11-19 13:24:34 -0500 | [diff] [blame] | 486 | static struct of_device_id tegra_ehci_of_match[] = { |
Olof Johansson | 4a53f4e | 2011-11-04 09:12:40 +0000 | [diff] [blame] | 487 | { .compatible = "nvidia,tegra20-ehci", }, |
| 488 | { }, |
| 489 | }; |
| 490 | |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 491 | static struct platform_driver tegra_ehci_driver = { |
| 492 | .probe = tegra_ehci_probe, |
| 493 | .remove = tegra_ehci_remove, |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 494 | .shutdown = tegra_ehci_hcd_shutdown, |
| 495 | .driver = { |
Manjunath Goudar | 9fc5f24 | 2013-06-13 11:24:12 -0600 | [diff] [blame] | 496 | .name = DRV_NAME, |
Olof Johansson | 4a53f4e | 2011-11-04 09:12:40 +0000 | [diff] [blame] | 497 | .of_match_table = tegra_ehci_of_match, |
Benoit Goby | 79ad3b5 | 2011-03-09 16:28:56 -0800 | [diff] [blame] | 498 | } |
| 499 | }; |
Manjunath Goudar | 9fc5f24 | 2013-06-13 11:24:12 -0600 | [diff] [blame] | 500 | |
| 501 | static const struct ehci_driver_overrides tegra_overrides __initconst = { |
| 502 | .extra_priv_size = sizeof(struct tegra_ehci_hcd), |
| 503 | }; |
| 504 | |
| 505 | static int __init ehci_tegra_init(void) |
| 506 | { |
| 507 | if (usb_disabled()) |
| 508 | return -ENODEV; |
| 509 | |
| 510 | pr_info(DRV_NAME ": " DRIVER_DESC "\n"); |
| 511 | |
| 512 | ehci_init_driver(&tegra_ehci_hc_driver, &tegra_overrides); |
| 513 | |
| 514 | /* |
| 515 | * The Tegra HW has some unusual quirks, which require Tegra-specific |
| 516 | * workarounds. We override certain hc_driver functions here to |
| 517 | * achieve that. We explicitly do not enhance ehci_driver_overrides to |
| 518 | * allow this more easily, since this is an unusual case, and we don't |
| 519 | * want to encourage others to override these functions by making it |
| 520 | * too easy. |
| 521 | */ |
| 522 | |
| 523 | orig_hub_control = tegra_ehci_hc_driver.hub_control; |
| 524 | |
| 525 | tegra_ehci_hc_driver.map_urb_for_dma = tegra_ehci_map_urb_for_dma; |
| 526 | tegra_ehci_hc_driver.unmap_urb_for_dma = tegra_ehci_unmap_urb_for_dma; |
| 527 | tegra_ehci_hc_driver.hub_control = tegra_ehci_hub_control; |
| 528 | |
| 529 | return platform_driver_register(&tegra_ehci_driver); |
| 530 | } |
| 531 | module_init(ehci_tegra_init); |
| 532 | |
| 533 | static void __exit ehci_tegra_cleanup(void) |
| 534 | { |
| 535 | platform_driver_unregister(&tegra_ehci_driver); |
| 536 | } |
| 537 | module_exit(ehci_tegra_cleanup); |
| 538 | |
| 539 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 540 | MODULE_LICENSE("GPL"); |
| 541 | MODULE_ALIAS("platform:" DRV_NAME); |
| 542 | MODULE_DEVICE_TABLE(of, tegra_ehci_of_match); |