blob: db8031fd5c132b3e59b140f3cb7770eef31185c2 [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>
Alan Sternebf20de2012-05-01 11:28:49 -040030#include <linux/pm_runtime.h>
Manjunath Goudar9fc5f242013-06-13 11:24:12 -060031#include <linux/slab.h>
Venu Byravarasubbdabdb2013-01-17 20:15:37 +000032#include <linux/usb/ehci_def.h>
Venu Byravarasu1ba82162012-09-05 18:50:23 +053033#include <linux/usb/tegra_usb_phy.h>
Manjunath Goudar9fc5f242013-06-13 11:24:12 -060034#include <linux/usb.h>
35#include <linux/usb/hcd.h>
36#include <linux/usb/otg.h>
37
38#include "ehci.h"
Stephen Warren54388b22012-10-02 16:49:25 -060039
40#define TEGRA_USB_BASE 0xC5000000
41#define TEGRA_USB2_BASE 0xC5004000
42#define TEGRA_USB3_BASE 0xC5008000
Benoit Goby79ad3b52011-03-09 16:28:56 -080043
Manjunath Goudar9fc5f242013-06-13 11:24:12 -060044#define PORT_WAKE_BITS (PORT_WKOC_E|PORT_WKDISC_E|PORT_WKCONN_E)
45
Robert Morellfbf98652011-03-09 16:28:57 -080046#define TEGRA_USB_DMA_ALIGN 32
47
Manjunath Goudar9fc5f242013-06-13 11:24:12 -060048#define DRIVER_DESC "Tegra EHCI driver"
49#define DRV_NAME "tegra-ehci"
50
51static struct hc_driver __read_mostly tegra_ehci_hc_driver;
52
53static int (*orig_hub_control)(struct usb_hcd *hcd,
54 u16 typeReq, u16 wValue, u16 wIndex,
55 char *buf, u16 wLength);
56
Benoit Goby79ad3b52011-03-09 16:28:56 -080057struct tegra_ehci_hcd {
Benoit Goby79ad3b52011-03-09 16:28:56 -080058 struct tegra_usb_phy *phy;
59 struct clk *clk;
Benoit Goby79ad3b52011-03-09 16:28:56 -080060 int port_resuming;
Venu Byravarasu585355c2012-12-13 20:59:08 +000061 bool needs_double_reset;
Benoit Goby79ad3b52011-03-09 16:28:56 -080062 enum tegra_usb_phy_port_speed port_speed;
63};
64
Jim Lin1f594b62011-04-17 11:58:25 +030065static int tegra_ehci_internal_port_reset(
66 struct ehci_hcd *ehci,
67 u32 __iomem *portsc_reg
68)
69{
70 u32 temp;
71 unsigned long flags;
72 int retval = 0;
73 int i, tries;
74 u32 saved_usbintr;
75
76 spin_lock_irqsave(&ehci->lock, flags);
77 saved_usbintr = ehci_readl(ehci, &ehci->regs->intr_enable);
78 /* disable USB interrupt */
79 ehci_writel(ehci, 0, &ehci->regs->intr_enable);
80 spin_unlock_irqrestore(&ehci->lock, flags);
81
82 /*
83 * Here we have to do Port Reset at most twice for
84 * Port Enable bit to be set.
85 */
86 for (i = 0; i < 2; i++) {
87 temp = ehci_readl(ehci, portsc_reg);
88 temp |= PORT_RESET;
89 ehci_writel(ehci, temp, portsc_reg);
90 mdelay(10);
91 temp &= ~PORT_RESET;
92 ehci_writel(ehci, temp, portsc_reg);
93 mdelay(1);
94 tries = 100;
95 do {
96 mdelay(1);
97 /*
98 * Up to this point, Port Enable bit is
99 * expected to be set after 2 ms waiting.
100 * USB1 usually takes extra 45 ms, for safety,
101 * we take 100 ms as timeout.
102 */
103 temp = ehci_readl(ehci, portsc_reg);
104 } while (!(temp & PORT_PE) && tries--);
105 if (temp & PORT_PE)
106 break;
107 }
108 if (i == 2)
109 retval = -ETIMEDOUT;
110
111 /*
112 * Clear Connect Status Change bit if it's set.
113 * We can't clear PORT_PEC. It will also cause PORT_PE to be cleared.
114 */
115 if (temp & PORT_CSC)
116 ehci_writel(ehci, PORT_CSC, portsc_reg);
117
118 /*
119 * Write to clear any interrupt status bits that might be set
120 * during port reset.
121 */
122 temp = ehci_readl(ehci, &ehci->regs->status);
123 ehci_writel(ehci, temp, &ehci->regs->status);
124
125 /* restore original interrupt enable bits */
126 ehci_writel(ehci, saved_usbintr, &ehci->regs->intr_enable);
127 return retval;
128}
129
Benoit Goby79ad3b52011-03-09 16:28:56 -0800130static int tegra_ehci_hub_control(
131 struct usb_hcd *hcd,
132 u16 typeReq,
133 u16 wValue,
134 u16 wIndex,
135 char *buf,
136 u16 wLength
137)
138{
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600139 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
140 struct tegra_ehci_hcd *tegra = (struct tegra_ehci_hcd *)ehci->priv;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800141 u32 __iomem *status_reg;
142 u32 temp;
143 unsigned long flags;
144 int retval = 0;
145
146 status_reg = &ehci->regs->port_status[(wIndex & 0xff) - 1];
147
148 spin_lock_irqsave(&ehci->lock, flags);
149
Stephen Warren6d5f89c2012-04-18 15:32:46 -0600150 if (typeReq == GetPortStatus) {
Benoit Goby79ad3b52011-03-09 16:28:56 -0800151 temp = ehci_readl(ehci, status_reg);
152 if (tegra->port_resuming && !(temp & PORT_SUSPEND)) {
153 /* Resume completed, re-enable disconnect detection */
154 tegra->port_resuming = 0;
Venu Byravarasuab137d02013-01-24 15:57:03 +0530155 tegra_usb_phy_postresume(hcd->phy);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800156 }
157 }
158
159 else if (typeReq == SetPortFeature && wValue == USB_PORT_FEAT_SUSPEND) {
160 temp = ehci_readl(ehci, status_reg);
161 if ((temp & PORT_PE) == 0 || (temp & PORT_RESET) != 0) {
162 retval = -EPIPE;
163 goto done;
164 }
165
Stephen Warrenb0876572012-04-25 12:31:10 -0600166 temp &= ~(PORT_RWC_BITS | PORT_WKCONN_E);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800167 temp |= PORT_WKDISC_E | PORT_WKOC_E;
168 ehci_writel(ehci, temp | PORT_SUSPEND, status_reg);
169
170 /*
171 * If a transaction is in progress, there may be a delay in
172 * suspending the port. Poll until the port is suspended.
173 */
Manjunath Goudar2f3a6b82013-06-13 11:24:09 -0600174 if (ehci_handshake(ehci, status_reg, PORT_SUSPEND,
Benoit Goby79ad3b52011-03-09 16:28:56 -0800175 PORT_SUSPEND, 5000))
176 pr_err("%s: timeout waiting for SUSPEND\n", __func__);
177
178 set_bit((wIndex & 0xff) - 1, &ehci->suspended_ports);
179 goto done;
180 }
181
Jim Lin1f594b62011-04-17 11:58:25 +0300182 /* For USB1 port we need to issue Port Reset twice internally */
Venu Byravarasu585355c2012-12-13 20:59:08 +0000183 if (tegra->needs_double_reset &&
Jim Lin1f594b62011-04-17 11:58:25 +0300184 (typeReq == SetPortFeature && wValue == USB_PORT_FEAT_RESET)) {
185 spin_unlock_irqrestore(&ehci->lock, flags);
186 return tegra_ehci_internal_port_reset(ehci, status_reg);
187 }
188
Benoit Goby79ad3b52011-03-09 16:28:56 -0800189 /*
190 * Tegra host controller will time the resume operation to clear the bit
191 * when the port control state switches to HS or FS Idle. This behavior
192 * is different from EHCI where the host controller driver is required
193 * to set this bit to a zero after the resume duration is timed in the
194 * driver.
195 */
196 else if (typeReq == ClearPortFeature &&
197 wValue == USB_PORT_FEAT_SUSPEND) {
198 temp = ehci_readl(ehci, status_reg);
199 if ((temp & PORT_RESET) || !(temp & PORT_PE)) {
200 retval = -EPIPE;
201 goto done;
202 }
203
204 if (!(temp & PORT_SUSPEND))
205 goto done;
206
207 /* Disable disconnect detection during port resume */
Venu Byravarasuab137d02013-01-24 15:57:03 +0530208 tegra_usb_phy_preresume(hcd->phy);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800209
210 ehci->reset_done[wIndex-1] = jiffies + msecs_to_jiffies(25);
211
212 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
213 /* start resume signalling */
214 ehci_writel(ehci, temp | PORT_RESUME, status_reg);
Alan Sterna448e4d2012-04-03 15:24:30 -0400215 set_bit(wIndex-1, &ehci->resuming_ports);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800216
217 spin_unlock_irqrestore(&ehci->lock, flags);
218 msleep(20);
219 spin_lock_irqsave(&ehci->lock, flags);
220
221 /* Poll until the controller clears RESUME and SUSPEND */
Manjunath Goudar2f3a6b82013-06-13 11:24:09 -0600222 if (ehci_handshake(ehci, status_reg, PORT_RESUME, 0, 2000))
Benoit Goby79ad3b52011-03-09 16:28:56 -0800223 pr_err("%s: timeout waiting for RESUME\n", __func__);
Manjunath Goudar2f3a6b82013-06-13 11:24:09 -0600224 if (ehci_handshake(ehci, status_reg, PORT_SUSPEND, 0, 2000))
Benoit Goby79ad3b52011-03-09 16:28:56 -0800225 pr_err("%s: timeout waiting for SUSPEND\n", __func__);
226
227 ehci->reset_done[wIndex-1] = 0;
Alan Sterna448e4d2012-04-03 15:24:30 -0400228 clear_bit(wIndex-1, &ehci->resuming_ports);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800229
230 tegra->port_resuming = 1;
231 goto done;
232 }
233
234 spin_unlock_irqrestore(&ehci->lock, flags);
235
236 /* Handle the hub control events here */
Manjunath Goudar9fc5f242013-06-13 11:24:12 -0600237 return orig_hub_control(hcd, typeReq, wValue, wIndex, buf, wLength);
238
Benoit Goby79ad3b52011-03-09 16:28:56 -0800239done:
240 spin_unlock_irqrestore(&ehci->lock, flags);
241 return retval;
242}
243
Venu Byravarasufe375772012-04-05 11:25:30 +0530244struct dma_aligned_buffer {
Robert Morellfbf98652011-03-09 16:28:57 -0800245 void *kmalloc_ptr;
246 void *old_xfer_buffer;
247 u8 data[0];
248};
249
Venu Byravarasufe375772012-04-05 11:25:30 +0530250static void free_dma_aligned_buffer(struct urb *urb)
Robert Morellfbf98652011-03-09 16:28:57 -0800251{
Venu Byravarasufe375772012-04-05 11:25:30 +0530252 struct dma_aligned_buffer *temp;
Robert Morellfbf98652011-03-09 16:28:57 -0800253
254 if (!(urb->transfer_flags & URB_ALIGNED_TEMP_BUFFER))
255 return;
256
Venu Byravarasufe375772012-04-05 11:25:30 +0530257 temp = container_of(urb->transfer_buffer,
258 struct dma_aligned_buffer, data);
Robert Morellfbf98652011-03-09 16:28:57 -0800259
Venu Byravarasufe375772012-04-05 11:25:30 +0530260 if (usb_urb_dir_in(urb))
Robert Morellfbf98652011-03-09 16:28:57 -0800261 memcpy(temp->old_xfer_buffer, temp->data,
262 urb->transfer_buffer_length);
263 urb->transfer_buffer = temp->old_xfer_buffer;
264 kfree(temp->kmalloc_ptr);
265
266 urb->transfer_flags &= ~URB_ALIGNED_TEMP_BUFFER;
267}
268
Venu Byravarasufe375772012-04-05 11:25:30 +0530269static int alloc_dma_aligned_buffer(struct urb *urb, gfp_t mem_flags)
Robert Morellfbf98652011-03-09 16:28:57 -0800270{
Venu Byravarasufe375772012-04-05 11:25:30 +0530271 struct dma_aligned_buffer *temp, *kmalloc_ptr;
Robert Morellfbf98652011-03-09 16:28:57 -0800272 size_t kmalloc_size;
273
274 if (urb->num_sgs || urb->sg ||
275 urb->transfer_buffer_length == 0 ||
276 !((uintptr_t)urb->transfer_buffer & (TEGRA_USB_DMA_ALIGN - 1)))
277 return 0;
278
Robert Morellfbf98652011-03-09 16:28:57 -0800279 /* Allocate a buffer with enough padding for alignment */
280 kmalloc_size = urb->transfer_buffer_length +
Venu Byravarasufe375772012-04-05 11:25:30 +0530281 sizeof(struct dma_aligned_buffer) + TEGRA_USB_DMA_ALIGN - 1;
Robert Morellfbf98652011-03-09 16:28:57 -0800282
283 kmalloc_ptr = kmalloc(kmalloc_size, mem_flags);
284 if (!kmalloc_ptr)
285 return -ENOMEM;
286
Venu Byravarasufe375772012-04-05 11:25:30 +0530287 /* Position our struct dma_aligned_buffer such that data is aligned */
Robert Morellfbf98652011-03-09 16:28:57 -0800288 temp = PTR_ALIGN(kmalloc_ptr + 1, TEGRA_USB_DMA_ALIGN) - 1;
Robert Morellfbf98652011-03-09 16:28:57 -0800289 temp->kmalloc_ptr = kmalloc_ptr;
290 temp->old_xfer_buffer = urb->transfer_buffer;
Venu Byravarasufe375772012-04-05 11:25:30 +0530291 if (usb_urb_dir_out(urb))
Robert Morellfbf98652011-03-09 16:28:57 -0800292 memcpy(temp->data, urb->transfer_buffer,
293 urb->transfer_buffer_length);
294 urb->transfer_buffer = temp->data;
295
296 urb->transfer_flags |= URB_ALIGNED_TEMP_BUFFER;
297
298 return 0;
299}
300
301static int tegra_ehci_map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
302 gfp_t mem_flags)
303{
304 int ret;
305
Venu Byravarasufe375772012-04-05 11:25:30 +0530306 ret = alloc_dma_aligned_buffer(urb, mem_flags);
Robert Morellfbf98652011-03-09 16:28:57 -0800307 if (ret)
308 return ret;
309
310 ret = usb_hcd_map_urb_for_dma(hcd, urb, mem_flags);
311 if (ret)
Venu Byravarasufe375772012-04-05 11:25:30 +0530312 free_dma_aligned_buffer(urb);
Robert Morellfbf98652011-03-09 16:28:57 -0800313
314 return ret;
315}
316
317static void tegra_ehci_unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb)
318{
319 usb_hcd_unmap_urb_for_dma(hcd, urb);
Venu Byravarasufe375772012-04-05 11:25:30 +0530320 free_dma_aligned_buffer(urb);
Robert Morellfbf98652011-03-09 16:28:57 -0800321}
322
Benoit Goby79ad3b52011-03-09 16:28:56 -0800323static int tegra_ehci_probe(struct platform_device *pdev)
324{
325 struct resource *res;
326 struct usb_hcd *hcd;
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600327 struct ehci_hcd *ehci;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800328 struct tegra_ehci_hcd *tegra;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800329 int err = 0;
330 int irq;
Venu Byravarasubbdabdb2013-01-17 20:15:37 +0000331 struct usb_phy *u_phy;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800332
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000333 /* Right now device-tree probed devices don't get dma_mask set.
334 * Since shared usb code relies on it, set it here for now.
335 * Once we have dma capability bindings this can go away.
336 */
337 if (!pdev->dev.dma_mask)
Stephen Warren3b9561e2013-05-07 16:53:52 -0600338 pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
339 if (!pdev->dev.coherent_dma_mask)
340 pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000341
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600342 hcd = usb_create_hcd(&tegra_ehci_hc_driver, &pdev->dev,
343 dev_name(&pdev->dev));
344 if (!hcd) {
345 dev_err(&pdev->dev, "Unable to create HCD\n");
Mikko Perttunenf5b8c8b2013-07-17 10:37:49 +0300346 return -ENOMEM;
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600347 }
348 platform_set_drvdata(pdev, hcd);
349 ehci = hcd_to_ehci(hcd);
350 tegra = (struct tegra_ehci_hcd *)ehci->priv;
351
352 hcd->has_tt = 1;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800353
Julia Lawallbc2ff982012-07-30 16:43:41 +0200354 tegra->clk = devm_clk_get(&pdev->dev, NULL);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800355 if (IS_ERR(tegra->clk)) {
356 dev_err(&pdev->dev, "Can't get ehci clock\n");
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600357 err = PTR_ERR(tegra->clk);
358 goto cleanup_hcd_create;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800359 }
360
Prashant Gaikwad20de12c2012-06-05 09:59:38 +0530361 err = clk_prepare_enable(tegra->clk);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800362 if (err)
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600363 goto cleanup_clk_get;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800364
Venu Byravarasueb5369e2013-04-03 16:11:12 +0530365 tegra_periph_reset_assert(tegra->clk);
366 udelay(1);
367 tegra_periph_reset_deassert(tegra->clk);
368
Tuomas Tynkkynen7db71a92013-07-25 21:38:06 +0300369 u_phy = devm_usb_get_phy_by_phandle(&pdev->dev, "nvidia,phy", 0);
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530370 if (IS_ERR(u_phy)) {
371 err = PTR_ERR(u_phy);
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600372 goto cleanup_clk_en;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530373 }
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600374 hcd->phy = u_phy;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530375
Venu Byravarasu585355c2012-12-13 20:59:08 +0000376 tegra->needs_double_reset = of_property_read_bool(pdev->dev.of_node,
377 "nvidia,needs-double-reset");
378
Benoit Goby79ad3b52011-03-09 16:28:56 -0800379 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
380 if (!res) {
381 dev_err(&pdev->dev, "Failed to get I/O memory\n");
382 err = -ENXIO;
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600383 goto cleanup_clk_en;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800384 }
385 hcd->rsrc_start = res->start;
386 hcd->rsrc_len = resource_size(res);
Julia Lawallbc2ff982012-07-30 16:43:41 +0200387 hcd->regs = devm_ioremap(&pdev->dev, res->start, resource_size(res));
Benoit Goby79ad3b52011-03-09 16:28:56 -0800388 if (!hcd->regs) {
389 dev_err(&pdev->dev, "Failed to remap I/O memory\n");
390 err = -ENOMEM;
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600391 goto cleanup_clk_en;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800392 }
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600393 ehci->caps = hcd->regs + 0x100;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800394
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530395 err = usb_phy_init(hcd->phy);
396 if (err) {
397 dev_err(&pdev->dev, "Failed to initialize phy\n");
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600398 goto cleanup_clk_en;
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000399 }
400
Venu Byravarasubbdabdb2013-01-17 20:15:37 +0000401 u_phy->otg = devm_kzalloc(&pdev->dev, sizeof(struct usb_otg),
402 GFP_KERNEL);
403 if (!u_phy->otg) {
404 dev_err(&pdev->dev, "Failed to alloc memory for otg\n");
405 err = -ENOMEM;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530406 goto cleanup_phy;
Venu Byravarasubbdabdb2013-01-17 20:15:37 +0000407 }
408 u_phy->otg->host = hcd_to_bus(hcd);
409
Venu Byravarasuab137d02013-01-24 15:57:03 +0530410 err = usb_phy_set_suspend(hcd->phy, 0);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800411 if (err) {
412 dev_err(&pdev->dev, "Failed to power on the phy\n");
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530413 goto cleanup_phy;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800414 }
415
Benoit Goby79ad3b52011-03-09 16:28:56 -0800416 irq = platform_get_irq(pdev, 0);
417 if (!irq) {
418 dev_err(&pdev->dev, "Failed to get IRQ\n");
419 err = -ENODEV;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530420 goto cleanup_phy;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800421 }
Benoit Goby79ad3b52011-03-09 16:28:56 -0800422
Tuomas Tynkkynende3f2332013-07-25 21:38:02 +0300423 otg_set_host(u_phy->otg, &hcd->self);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800424
Yong Zhangb5dd18d2011-09-07 16:10:52 +0800425 err = usb_add_hcd(hcd, irq, IRQF_SHARED);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800426 if (err) {
427 dev_err(&pdev->dev, "Failed to add USB HCD\n");
Tuomas Tynkkynende3f2332013-07-25 21:38:02 +0300428 goto cleanup_otg_set_host;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800429 }
430
431 return err;
432
Tuomas Tynkkynende3f2332013-07-25 21:38:02 +0300433cleanup_otg_set_host:
434 otg_set_host(u_phy->otg, NULL);
Thierry Reding8fefcfd2013-06-14 13:21:21 +0200435cleanup_phy:
Venu Byravarasuab137d02013-01-24 15:57:03 +0530436 usb_phy_shutdown(hcd->phy);
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600437cleanup_clk_en:
438 clk_disable_unprepare(tegra->clk);
439cleanup_clk_get:
440 clk_put(tegra->clk);
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530441cleanup_hcd_create:
Benoit Goby79ad3b52011-03-09 16:28:56 -0800442 usb_put_hcd(hcd);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800443 return err;
444}
445
Benoit Goby79ad3b52011-03-09 16:28:56 -0800446static int tegra_ehci_remove(struct platform_device *pdev)
447{
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600448 struct usb_hcd *hcd = platform_get_drvdata(pdev);
449 struct tegra_ehci_hcd *tegra =
450 (struct tegra_ehci_hcd *)hcd_to_ehci(hcd)->priv;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800451
Tuomas Tynkkynende3f2332013-07-25 21:38:02 +0300452 otg_set_host(hcd->phy->otg, NULL);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800453
Venu Byravarasuab137d02013-01-24 15:57:03 +0530454 usb_phy_shutdown(hcd->phy);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800455 usb_remove_hcd(hcd);
Venu Byravarasuecc8a0c2012-08-10 11:42:43 +0530456 usb_put_hcd(hcd);
457
Prashant Gaikwad20de12c2012-06-05 09:59:38 +0530458 clk_disable_unprepare(tegra->clk);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800459
Benoit Goby79ad3b52011-03-09 16:28:56 -0800460 return 0;
461}
462
463static void tegra_ehci_hcd_shutdown(struct platform_device *pdev)
464{
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600465 struct usb_hcd *hcd = platform_get_drvdata(pdev);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800466
467 if (hcd->driver->shutdown)
468 hcd->driver->shutdown(hcd);
469}
470
Bill Pembertond3608b62012-11-19 13:24:34 -0500471static struct of_device_id tegra_ehci_of_match[] = {
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000472 { .compatible = "nvidia,tegra20-ehci", },
473 { },
474};
475
Benoit Goby79ad3b52011-03-09 16:28:56 -0800476static struct platform_driver tegra_ehci_driver = {
477 .probe = tegra_ehci_probe,
478 .remove = tegra_ehci_remove,
Benoit Goby79ad3b52011-03-09 16:28:56 -0800479 .shutdown = tegra_ehci_hcd_shutdown,
480 .driver = {
Manjunath Goudar9fc5f242013-06-13 11:24:12 -0600481 .name = DRV_NAME,
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000482 .of_match_table = tegra_ehci_of_match,
Benoit Goby79ad3b52011-03-09 16:28:56 -0800483 }
484};
Manjunath Goudar9fc5f242013-06-13 11:24:12 -0600485
486static const struct ehci_driver_overrides tegra_overrides __initconst = {
487 .extra_priv_size = sizeof(struct tegra_ehci_hcd),
488};
489
490static int __init ehci_tegra_init(void)
491{
492 if (usb_disabled())
493 return -ENODEV;
494
495 pr_info(DRV_NAME ": " DRIVER_DESC "\n");
496
497 ehci_init_driver(&tegra_ehci_hc_driver, &tegra_overrides);
498
499 /*
500 * The Tegra HW has some unusual quirks, which require Tegra-specific
501 * workarounds. We override certain hc_driver functions here to
502 * achieve that. We explicitly do not enhance ehci_driver_overrides to
503 * allow this more easily, since this is an unusual case, and we don't
504 * want to encourage others to override these functions by making it
505 * too easy.
506 */
507
508 orig_hub_control = tegra_ehci_hc_driver.hub_control;
509
510 tegra_ehci_hc_driver.map_urb_for_dma = tegra_ehci_map_urb_for_dma;
511 tegra_ehci_hc_driver.unmap_urb_for_dma = tegra_ehci_unmap_urb_for_dma;
512 tegra_ehci_hc_driver.hub_control = tegra_ehci_hub_control;
513
514 return platform_driver_register(&tegra_ehci_driver);
515}
516module_init(ehci_tegra_init);
517
518static void __exit ehci_tegra_cleanup(void)
519{
520 platform_driver_unregister(&tegra_ehci_driver);
521}
522module_exit(ehci_tegra_cleanup);
523
524MODULE_DESCRIPTION(DRIVER_DESC);
525MODULE_LICENSE("GPL");
526MODULE_ALIAS("platform:" DRV_NAME);
527MODULE_DEVICE_TABLE(of, tegra_ehci_of_match);