blob: 14c1f35a4b102e47525bad0d89608e4b1086bf1b [file] [log] [blame]
Benoit Goby79ad3b52011-03-09 16:28:56 -08001/*
2 * EHCI-compliant USB host controller driver for NVIDIA Tegra SoCs
3 *
4 * Copyright (C) 2010 Google, Inc.
Venu Byravarasubbdabdb2013-01-17 20:15:37 +00005 * Copyright (C) 2009 - 2013 NVIDIA Corporation
Benoit Goby79ad3b52011-03-09 16:28:56 -08006 *
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 Goudar9fc5f242013-06-13 11:24:12 -060020#include <linux/clk/tegra.h>
21#include <linux/dma-mapping.h>
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +053022#include <linux/err.h>
Olof Johansson4a53f4e2011-11-04 09:12:40 +000023#include <linux/gpio.h>
Manjunath Goudar9fc5f242013-06-13 11:24:12 -060024#include <linux/io.h>
25#include <linux/irq.h>
26#include <linux/module.h>
Olof Johansson4a53f4e2011-11-04 09:12:40 +000027#include <linux/of.h>
28#include <linux/of_gpio.h>
Manjunath Goudar9fc5f242013-06-13 11:24:12 -060029#include <linux/platform_device.h>
30#include <linux/platform_data/tegra_usb.h>
Alan Sternebf20de2012-05-01 11:28:49 -040031#include <linux/pm_runtime.h>
Manjunath Goudar9fc5f242013-06-13 11:24:12 -060032#include <linux/slab.h>
Venu Byravarasubbdabdb2013-01-17 20:15:37 +000033#include <linux/usb/ehci_def.h>
Venu Byravarasu1ba82162012-09-05 18:50:23 +053034#include <linux/usb/tegra_usb_phy.h>
Manjunath Goudar9fc5f242013-06-13 11:24:12 -060035#include <linux/usb.h>
36#include <linux/usb/hcd.h>
37#include <linux/usb/otg.h>
38
39#include "ehci.h"
Stephen Warren54388b22012-10-02 16:49:25 -060040
41#define TEGRA_USB_BASE 0xC5000000
42#define TEGRA_USB2_BASE 0xC5004000
43#define TEGRA_USB3_BASE 0xC5008000
Benoit Goby79ad3b52011-03-09 16:28:56 -080044
Manjunath Goudar9fc5f242013-06-13 11:24:12 -060045#define PORT_WAKE_BITS (PORT_WKOC_E|PORT_WKDISC_E|PORT_WKCONN_E)
46
Robert Morellfbf98652011-03-09 16:28:57 -080047#define TEGRA_USB_DMA_ALIGN 32
48
Manjunath Goudar9fc5f242013-06-13 11:24:12 -060049#define DRIVER_DESC "Tegra EHCI driver"
50#define DRV_NAME "tegra-ehci"
51
52static struct hc_driver __read_mostly tegra_ehci_hc_driver;
53
54static int (*orig_hub_control)(struct usb_hcd *hcd,
55 u16 typeReq, u16 wValue, u16 wIndex,
56 char *buf, u16 wLength);
57
Benoit Goby79ad3b52011-03-09 16:28:56 -080058struct tegra_ehci_hcd {
Benoit Goby79ad3b52011-03-09 16:28:56 -080059 struct tegra_usb_phy *phy;
60 struct clk *clk;
Heikki Krogerus86753812012-02-13 13:24:02 +020061 struct usb_phy *transceiver;
Benoit Goby79ad3b52011-03-09 16:28:56 -080062 int port_resuming;
Venu Byravarasu585355c2012-12-13 20:59:08 +000063 bool needs_double_reset;
Benoit Goby79ad3b52011-03-09 16:28:56 -080064 enum tegra_usb_phy_port_speed port_speed;
65};
66
Jim Lin1f594b62011-04-17 11:58:25 +030067static int tegra_ehci_internal_port_reset(
68 struct ehci_hcd *ehci,
69 u32 __iomem *portsc_reg
70)
71{
72 u32 temp;
73 unsigned long flags;
74 int retval = 0;
75 int i, tries;
76 u32 saved_usbintr;
77
78 spin_lock_irqsave(&ehci->lock, flags);
79 saved_usbintr = ehci_readl(ehci, &ehci->regs->intr_enable);
80 /* disable USB interrupt */
81 ehci_writel(ehci, 0, &ehci->regs->intr_enable);
82 spin_unlock_irqrestore(&ehci->lock, flags);
83
84 /*
85 * Here we have to do Port Reset at most twice for
86 * Port Enable bit to be set.
87 */
88 for (i = 0; i < 2; i++) {
89 temp = ehci_readl(ehci, portsc_reg);
90 temp |= PORT_RESET;
91 ehci_writel(ehci, temp, portsc_reg);
92 mdelay(10);
93 temp &= ~PORT_RESET;
94 ehci_writel(ehci, temp, portsc_reg);
95 mdelay(1);
96 tries = 100;
97 do {
98 mdelay(1);
99 /*
100 * Up to this point, Port Enable bit is
101 * expected to be set after 2 ms waiting.
102 * USB1 usually takes extra 45 ms, for safety,
103 * we take 100 ms as timeout.
104 */
105 temp = ehci_readl(ehci, portsc_reg);
106 } while (!(temp & PORT_PE) && tries--);
107 if (temp & PORT_PE)
108 break;
109 }
110 if (i == 2)
111 retval = -ETIMEDOUT;
112
113 /*
114 * Clear Connect Status Change bit if it's set.
115 * We can't clear PORT_PEC. It will also cause PORT_PE to be cleared.
116 */
117 if (temp & PORT_CSC)
118 ehci_writel(ehci, PORT_CSC, portsc_reg);
119
120 /*
121 * Write to clear any interrupt status bits that might be set
122 * during port reset.
123 */
124 temp = ehci_readl(ehci, &ehci->regs->status);
125 ehci_writel(ehci, temp, &ehci->regs->status);
126
127 /* restore original interrupt enable bits */
128 ehci_writel(ehci, saved_usbintr, &ehci->regs->intr_enable);
129 return retval;
130}
131
Benoit Goby79ad3b52011-03-09 16:28:56 -0800132static int tegra_ehci_hub_control(
133 struct usb_hcd *hcd,
134 u16 typeReq,
135 u16 wValue,
136 u16 wIndex,
137 char *buf,
138 u16 wLength
139)
140{
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600141 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
142 struct tegra_ehci_hcd *tegra = (struct tegra_ehci_hcd *)ehci->priv;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800143 u32 __iomem *status_reg;
144 u32 temp;
145 unsigned long flags;
146 int retval = 0;
147
148 status_reg = &ehci->regs->port_status[(wIndex & 0xff) - 1];
149
150 spin_lock_irqsave(&ehci->lock, flags);
151
Stephen Warren6d5f89c2012-04-18 15:32:46 -0600152 if (typeReq == GetPortStatus) {
Benoit Goby79ad3b52011-03-09 16:28:56 -0800153 temp = ehci_readl(ehci, status_reg);
154 if (tegra->port_resuming && !(temp & PORT_SUSPEND)) {
155 /* Resume completed, re-enable disconnect detection */
156 tegra->port_resuming = 0;
Venu Byravarasuab137d02013-01-24 15:57:03 +0530157 tegra_usb_phy_postresume(hcd->phy);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800158 }
159 }
160
161 else if (typeReq == SetPortFeature && wValue == USB_PORT_FEAT_SUSPEND) {
162 temp = ehci_readl(ehci, status_reg);
163 if ((temp & PORT_PE) == 0 || (temp & PORT_RESET) != 0) {
164 retval = -EPIPE;
165 goto done;
166 }
167
Stephen Warrenb0876572012-04-25 12:31:10 -0600168 temp &= ~(PORT_RWC_BITS | PORT_WKCONN_E);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800169 temp |= PORT_WKDISC_E | PORT_WKOC_E;
170 ehci_writel(ehci, temp | PORT_SUSPEND, status_reg);
171
172 /*
173 * If a transaction is in progress, there may be a delay in
174 * suspending the port. Poll until the port is suspended.
175 */
Manjunath Goudar2f3a6b82013-06-13 11:24:09 -0600176 if (ehci_handshake(ehci, status_reg, PORT_SUSPEND,
Benoit Goby79ad3b52011-03-09 16:28:56 -0800177 PORT_SUSPEND, 5000))
178 pr_err("%s: timeout waiting for SUSPEND\n", __func__);
179
180 set_bit((wIndex & 0xff) - 1, &ehci->suspended_ports);
181 goto done;
182 }
183
Jim Lin1f594b62011-04-17 11:58:25 +0300184 /* For USB1 port we need to issue Port Reset twice internally */
Venu Byravarasu585355c2012-12-13 20:59:08 +0000185 if (tegra->needs_double_reset &&
Jim Lin1f594b62011-04-17 11:58:25 +0300186 (typeReq == SetPortFeature && wValue == USB_PORT_FEAT_RESET)) {
187 spin_unlock_irqrestore(&ehci->lock, flags);
188 return tegra_ehci_internal_port_reset(ehci, status_reg);
189 }
190
Benoit Goby79ad3b52011-03-09 16:28:56 -0800191 /*
192 * Tegra host controller will time the resume operation to clear the bit
193 * when the port control state switches to HS or FS Idle. This behavior
194 * is different from EHCI where the host controller driver is required
195 * to set this bit to a zero after the resume duration is timed in the
196 * driver.
197 */
198 else if (typeReq == ClearPortFeature &&
199 wValue == USB_PORT_FEAT_SUSPEND) {
200 temp = ehci_readl(ehci, status_reg);
201 if ((temp & PORT_RESET) || !(temp & PORT_PE)) {
202 retval = -EPIPE;
203 goto done;
204 }
205
206 if (!(temp & PORT_SUSPEND))
207 goto done;
208
209 /* Disable disconnect detection during port resume */
Venu Byravarasuab137d02013-01-24 15:57:03 +0530210 tegra_usb_phy_preresume(hcd->phy);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800211
212 ehci->reset_done[wIndex-1] = jiffies + msecs_to_jiffies(25);
213
214 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
215 /* start resume signalling */
216 ehci_writel(ehci, temp | PORT_RESUME, status_reg);
Alan Sterna448e4d2012-04-03 15:24:30 -0400217 set_bit(wIndex-1, &ehci->resuming_ports);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800218
219 spin_unlock_irqrestore(&ehci->lock, flags);
220 msleep(20);
221 spin_lock_irqsave(&ehci->lock, flags);
222
223 /* Poll until the controller clears RESUME and SUSPEND */
Manjunath Goudar2f3a6b82013-06-13 11:24:09 -0600224 if (ehci_handshake(ehci, status_reg, PORT_RESUME, 0, 2000))
Benoit Goby79ad3b52011-03-09 16:28:56 -0800225 pr_err("%s: timeout waiting for RESUME\n", __func__);
Manjunath Goudar2f3a6b82013-06-13 11:24:09 -0600226 if (ehci_handshake(ehci, status_reg, PORT_SUSPEND, 0, 2000))
Benoit Goby79ad3b52011-03-09 16:28:56 -0800227 pr_err("%s: timeout waiting for SUSPEND\n", __func__);
228
229 ehci->reset_done[wIndex-1] = 0;
Alan Sterna448e4d2012-04-03 15:24:30 -0400230 clear_bit(wIndex-1, &ehci->resuming_ports);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800231
232 tegra->port_resuming = 1;
233 goto done;
234 }
235
236 spin_unlock_irqrestore(&ehci->lock, flags);
237
238 /* Handle the hub control events here */
Manjunath Goudar9fc5f242013-06-13 11:24:12 -0600239 return orig_hub_control(hcd, typeReq, wValue, wIndex, buf, wLength);
240
Benoit Goby79ad3b52011-03-09 16:28:56 -0800241done:
242 spin_unlock_irqrestore(&ehci->lock, flags);
243 return retval;
244}
245
Venu Byravarasufe375772012-04-05 11:25:30 +0530246struct dma_aligned_buffer {
Robert Morellfbf98652011-03-09 16:28:57 -0800247 void *kmalloc_ptr;
248 void *old_xfer_buffer;
249 u8 data[0];
250};
251
Venu Byravarasufe375772012-04-05 11:25:30 +0530252static void free_dma_aligned_buffer(struct urb *urb)
Robert Morellfbf98652011-03-09 16:28:57 -0800253{
Venu Byravarasufe375772012-04-05 11:25:30 +0530254 struct dma_aligned_buffer *temp;
Robert Morellfbf98652011-03-09 16:28:57 -0800255
256 if (!(urb->transfer_flags & URB_ALIGNED_TEMP_BUFFER))
257 return;
258
Venu Byravarasufe375772012-04-05 11:25:30 +0530259 temp = container_of(urb->transfer_buffer,
260 struct dma_aligned_buffer, data);
Robert Morellfbf98652011-03-09 16:28:57 -0800261
Venu Byravarasufe375772012-04-05 11:25:30 +0530262 if (usb_urb_dir_in(urb))
Robert Morellfbf98652011-03-09 16:28:57 -0800263 memcpy(temp->old_xfer_buffer, temp->data,
264 urb->transfer_buffer_length);
265 urb->transfer_buffer = temp->old_xfer_buffer;
266 kfree(temp->kmalloc_ptr);
267
268 urb->transfer_flags &= ~URB_ALIGNED_TEMP_BUFFER;
269}
270
Venu Byravarasufe375772012-04-05 11:25:30 +0530271static int alloc_dma_aligned_buffer(struct urb *urb, gfp_t mem_flags)
Robert Morellfbf98652011-03-09 16:28:57 -0800272{
Venu Byravarasufe375772012-04-05 11:25:30 +0530273 struct dma_aligned_buffer *temp, *kmalloc_ptr;
Robert Morellfbf98652011-03-09 16:28:57 -0800274 size_t kmalloc_size;
275
276 if (urb->num_sgs || urb->sg ||
277 urb->transfer_buffer_length == 0 ||
278 !((uintptr_t)urb->transfer_buffer & (TEGRA_USB_DMA_ALIGN - 1)))
279 return 0;
280
Robert Morellfbf98652011-03-09 16:28:57 -0800281 /* Allocate a buffer with enough padding for alignment */
282 kmalloc_size = urb->transfer_buffer_length +
Venu Byravarasufe375772012-04-05 11:25:30 +0530283 sizeof(struct dma_aligned_buffer) + TEGRA_USB_DMA_ALIGN - 1;
Robert Morellfbf98652011-03-09 16:28:57 -0800284
285 kmalloc_ptr = kmalloc(kmalloc_size, mem_flags);
286 if (!kmalloc_ptr)
287 return -ENOMEM;
288
Venu Byravarasufe375772012-04-05 11:25:30 +0530289 /* Position our struct dma_aligned_buffer such that data is aligned */
Robert Morellfbf98652011-03-09 16:28:57 -0800290 temp = PTR_ALIGN(kmalloc_ptr + 1, TEGRA_USB_DMA_ALIGN) - 1;
Robert Morellfbf98652011-03-09 16:28:57 -0800291 temp->kmalloc_ptr = kmalloc_ptr;
292 temp->old_xfer_buffer = urb->transfer_buffer;
Venu Byravarasufe375772012-04-05 11:25:30 +0530293 if (usb_urb_dir_out(urb))
Robert Morellfbf98652011-03-09 16:28:57 -0800294 memcpy(temp->data, urb->transfer_buffer,
295 urb->transfer_buffer_length);
296 urb->transfer_buffer = temp->data;
297
298 urb->transfer_flags |= URB_ALIGNED_TEMP_BUFFER;
299
300 return 0;
301}
302
303static int tegra_ehci_map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
304 gfp_t mem_flags)
305{
306 int ret;
307
Venu Byravarasufe375772012-04-05 11:25:30 +0530308 ret = alloc_dma_aligned_buffer(urb, mem_flags);
Robert Morellfbf98652011-03-09 16:28:57 -0800309 if (ret)
310 return ret;
311
312 ret = usb_hcd_map_urb_for_dma(hcd, urb, mem_flags);
313 if (ret)
Venu Byravarasufe375772012-04-05 11:25:30 +0530314 free_dma_aligned_buffer(urb);
Robert Morellfbf98652011-03-09 16:28:57 -0800315
316 return ret;
317}
318
319static void tegra_ehci_unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb)
320{
321 usb_hcd_unmap_urb_for_dma(hcd, urb);
Venu Byravarasufe375772012-04-05 11:25:30 +0530322 free_dma_aligned_buffer(urb);
Robert Morellfbf98652011-03-09 16:28:57 -0800323}
324
Benoit Goby79ad3b52011-03-09 16:28:56 -0800325static int tegra_ehci_probe(struct platform_device *pdev)
326{
327 struct resource *res;
328 struct usb_hcd *hcd;
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600329 struct ehci_hcd *ehci;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800330 struct tegra_ehci_hcd *tegra;
331 struct tegra_ehci_platform_data *pdata;
332 int err = 0;
333 int irq;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530334 struct device_node *np_phy;
Venu Byravarasubbdabdb2013-01-17 20:15:37 +0000335 struct usb_phy *u_phy;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800336
337 pdata = pdev->dev.platform_data;
338 if (!pdata) {
339 dev_err(&pdev->dev, "Platform data missing\n");
340 return -EINVAL;
341 }
342
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000343 /* Right now device-tree probed devices don't get dma_mask set.
344 * Since shared usb code relies on it, set it here for now.
345 * Once we have dma capability bindings this can go away.
346 */
347 if (!pdev->dev.dma_mask)
Stephen Warren3b9561e2013-05-07 16:53:52 -0600348 pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
349 if (!pdev->dev.coherent_dma_mask)
350 pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000351
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600352 hcd = usb_create_hcd(&tegra_ehci_hc_driver, &pdev->dev,
353 dev_name(&pdev->dev));
354 if (!hcd) {
355 dev_err(&pdev->dev, "Unable to create HCD\n");
Mikko Perttunenf5b8c8b2013-07-17 10:37:49 +0300356 return -ENOMEM;
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600357 }
358 platform_set_drvdata(pdev, hcd);
359 ehci = hcd_to_ehci(hcd);
360 tegra = (struct tegra_ehci_hcd *)ehci->priv;
361
362 hcd->has_tt = 1;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800363
Julia Lawallbc2ff982012-07-30 16:43:41 +0200364 tegra->clk = devm_clk_get(&pdev->dev, NULL);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800365 if (IS_ERR(tegra->clk)) {
366 dev_err(&pdev->dev, "Can't get ehci clock\n");
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600367 err = PTR_ERR(tegra->clk);
368 goto cleanup_hcd_create;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800369 }
370
Prashant Gaikwad20de12c2012-06-05 09:59:38 +0530371 err = clk_prepare_enable(tegra->clk);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800372 if (err)
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600373 goto cleanup_clk_get;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800374
Venu Byravarasueb5369e2013-04-03 16:11:12 +0530375 tegra_periph_reset_assert(tegra->clk);
376 udelay(1);
377 tegra_periph_reset_deassert(tegra->clk);
378
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530379 np_phy = of_parse_phandle(pdev->dev.of_node, "nvidia,phy", 0);
380 if (!np_phy) {
381 err = -ENODEV;
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600382 goto cleanup_clk_en;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530383 }
384
385 u_phy = tegra_usb_get_phy(np_phy);
386 if (IS_ERR(u_phy)) {
387 err = PTR_ERR(u_phy);
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600388 goto cleanup_clk_en;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530389 }
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600390 hcd->phy = u_phy;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530391
Venu Byravarasu585355c2012-12-13 20:59:08 +0000392 tegra->needs_double_reset = of_property_read_bool(pdev->dev.of_node,
393 "nvidia,needs-double-reset");
394
Benoit Goby79ad3b52011-03-09 16:28:56 -0800395 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
396 if (!res) {
397 dev_err(&pdev->dev, "Failed to get I/O memory\n");
398 err = -ENXIO;
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600399 goto cleanup_clk_en;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800400 }
401 hcd->rsrc_start = res->start;
402 hcd->rsrc_len = resource_size(res);
Julia Lawallbc2ff982012-07-30 16:43:41 +0200403 hcd->regs = devm_ioremap(&pdev->dev, res->start, resource_size(res));
Benoit Goby79ad3b52011-03-09 16:28:56 -0800404 if (!hcd->regs) {
405 dev_err(&pdev->dev, "Failed to remap I/O memory\n");
406 err = -ENOMEM;
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600407 goto cleanup_clk_en;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800408 }
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600409 ehci->caps = hcd->regs + 0x100;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800410
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530411 err = usb_phy_init(hcd->phy);
412 if (err) {
413 dev_err(&pdev->dev, "Failed to initialize phy\n");
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600414 goto cleanup_clk_en;
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000415 }
416
Venu Byravarasubbdabdb2013-01-17 20:15:37 +0000417 u_phy->otg = devm_kzalloc(&pdev->dev, sizeof(struct usb_otg),
418 GFP_KERNEL);
419 if (!u_phy->otg) {
420 dev_err(&pdev->dev, "Failed to alloc memory for otg\n");
421 err = -ENOMEM;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530422 goto cleanup_phy;
Venu Byravarasubbdabdb2013-01-17 20:15:37 +0000423 }
424 u_phy->otg->host = hcd_to_bus(hcd);
425
Venu Byravarasuab137d02013-01-24 15:57:03 +0530426 err = usb_phy_set_suspend(hcd->phy, 0);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800427 if (err) {
428 dev_err(&pdev->dev, "Failed to power on the phy\n");
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530429 goto cleanup_phy;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800430 }
431
Benoit Goby79ad3b52011-03-09 16:28:56 -0800432 irq = platform_get_irq(pdev, 0);
433 if (!irq) {
434 dev_err(&pdev->dev, "Failed to get IRQ\n");
435 err = -ENODEV;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530436 goto cleanup_phy;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800437 }
Benoit Goby79ad3b52011-03-09 16:28:56 -0800438
Benoit Goby79ad3b52011-03-09 16:28:56 -0800439 if (pdata->operating_mode == TEGRA_USB_OTG) {
Julia Lawallbc2ff982012-07-30 16:43:41 +0200440 tegra->transceiver =
441 devm_usb_get_phy(&pdev->dev, USB_PHY_TYPE_USB2);
Felipe Balbi4261b8f2013-03-15 11:04:39 +0200442 if (!IS_ERR(tegra->transceiver))
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200443 otg_set_host(tegra->transceiver->otg, &hcd->self);
Thierry Reding369a9a92013-04-03 21:57:57 +0200444 } else {
445 tegra->transceiver = ERR_PTR(-ENODEV);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800446 }
Benoit Goby79ad3b52011-03-09 16:28:56 -0800447
Yong Zhangb5dd18d2011-09-07 16:10:52 +0800448 err = usb_add_hcd(hcd, irq, IRQF_SHARED);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800449 if (err) {
450 dev_err(&pdev->dev, "Failed to add USB HCD\n");
Thierry Reding8fefcfd2013-06-14 13:21:21 +0200451 goto cleanup_transceiver;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800452 }
453
454 return err;
455
Thierry Reding8fefcfd2013-06-14 13:21:21 +0200456cleanup_transceiver:
Felipe Balbi4261b8f2013-03-15 11:04:39 +0200457 if (!IS_ERR(tegra->transceiver))
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200458 otg_set_host(tegra->transceiver->otg, NULL);
Thierry Reding8fefcfd2013-06-14 13:21:21 +0200459cleanup_phy:
Venu Byravarasuab137d02013-01-24 15:57:03 +0530460 usb_phy_shutdown(hcd->phy);
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600461cleanup_clk_en:
462 clk_disable_unprepare(tegra->clk);
463cleanup_clk_get:
464 clk_put(tegra->clk);
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530465cleanup_hcd_create:
Benoit Goby79ad3b52011-03-09 16:28:56 -0800466 usb_put_hcd(hcd);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800467 return err;
468}
469
Benoit Goby79ad3b52011-03-09 16:28:56 -0800470static int tegra_ehci_remove(struct platform_device *pdev)
471{
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600472 struct usb_hcd *hcd = platform_get_drvdata(pdev);
473 struct tegra_ehci_hcd *tegra =
474 (struct tegra_ehci_hcd *)hcd_to_ehci(hcd)->priv;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800475
Felipe Balbi4261b8f2013-03-15 11:04:39 +0200476 if (!IS_ERR(tegra->transceiver))
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200477 otg_set_host(tegra->transceiver->otg, NULL);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800478
Venu Byravarasuab137d02013-01-24 15:57:03 +0530479 usb_phy_shutdown(hcd->phy);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800480 usb_remove_hcd(hcd);
Venu Byravarasuecc8a0c2012-08-10 11:42:43 +0530481 usb_put_hcd(hcd);
482
Prashant Gaikwad20de12c2012-06-05 09:59:38 +0530483 clk_disable_unprepare(tegra->clk);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800484
Benoit Goby79ad3b52011-03-09 16:28:56 -0800485 return 0;
486}
487
488static void tegra_ehci_hcd_shutdown(struct platform_device *pdev)
489{
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600490 struct usb_hcd *hcd = platform_get_drvdata(pdev);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800491
492 if (hcd->driver->shutdown)
493 hcd->driver->shutdown(hcd);
494}
495
Bill Pembertond3608b62012-11-19 13:24:34 -0500496static struct of_device_id tegra_ehci_of_match[] = {
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000497 { .compatible = "nvidia,tegra20-ehci", },
498 { },
499};
500
Benoit Goby79ad3b52011-03-09 16:28:56 -0800501static struct platform_driver tegra_ehci_driver = {
502 .probe = tegra_ehci_probe,
503 .remove = tegra_ehci_remove,
Benoit Goby79ad3b52011-03-09 16:28:56 -0800504 .shutdown = tegra_ehci_hcd_shutdown,
505 .driver = {
Manjunath Goudar9fc5f242013-06-13 11:24:12 -0600506 .name = DRV_NAME,
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000507 .of_match_table = tegra_ehci_of_match,
Benoit Goby79ad3b52011-03-09 16:28:56 -0800508 }
509};
Manjunath Goudar9fc5f242013-06-13 11:24:12 -0600510
511static const struct ehci_driver_overrides tegra_overrides __initconst = {
512 .extra_priv_size = sizeof(struct tegra_ehci_hcd),
513};
514
515static int __init ehci_tegra_init(void)
516{
517 if (usb_disabled())
518 return -ENODEV;
519
520 pr_info(DRV_NAME ": " DRIVER_DESC "\n");
521
522 ehci_init_driver(&tegra_ehci_hc_driver, &tegra_overrides);
523
524 /*
525 * The Tegra HW has some unusual quirks, which require Tegra-specific
526 * workarounds. We override certain hc_driver functions here to
527 * achieve that. We explicitly do not enhance ehci_driver_overrides to
528 * allow this more easily, since this is an unusual case, and we don't
529 * want to encourage others to override these functions by making it
530 * too easy.
531 */
532
533 orig_hub_control = tegra_ehci_hc_driver.hub_control;
534
535 tegra_ehci_hc_driver.map_urb_for_dma = tegra_ehci_map_urb_for_dma;
536 tegra_ehci_hc_driver.unmap_urb_for_dma = tegra_ehci_unmap_urb_for_dma;
537 tegra_ehci_hc_driver.hub_control = tegra_ehci_hub_control;
538
539 return platform_driver_register(&tegra_ehci_driver);
540}
541module_init(ehci_tegra_init);
542
543static void __exit ehci_tegra_cleanup(void)
544{
545 platform_driver_unregister(&tegra_ehci_driver);
546}
547module_exit(ehci_tegra_cleanup);
548
549MODULE_DESCRIPTION(DRIVER_DESC);
550MODULE_LICENSE("GPL");
551MODULE_ALIAS("platform:" DRV_NAME);
552MODULE_DEVICE_TABLE(of, tegra_ehci_of_match);