blob: e74aaf3f016450a84ee42600ce584bebab41d9b0 [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>
Tuomas Tynkkynen327d8b42013-08-12 16:06:54 +030028#include <linux/of_device.h>
Olof Johansson4a53f4e2011-11-04 09:12:40 +000029#include <linux/of_gpio.h>
Manjunath Goudar9fc5f242013-06-13 11:24:12 -060030#include <linux/platform_device.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
Tuomas Tynkkynen327d8b42013-08-12 16:06:54 +030054struct tegra_ehci_soc_config {
55 bool has_hostpc;
56};
57
Manjunath Goudar9fc5f242013-06-13 11:24:12 -060058static int (*orig_hub_control)(struct usb_hcd *hcd,
59 u16 typeReq, u16 wValue, u16 wIndex,
60 char *buf, u16 wLength);
61
Benoit Goby79ad3b52011-03-09 16:28:56 -080062struct tegra_ehci_hcd {
Benoit Goby79ad3b52011-03-09 16:28:56 -080063 struct tegra_usb_phy *phy;
64 struct clk *clk;
Benoit Goby79ad3b52011-03-09 16:28:56 -080065 int port_resuming;
Venu Byravarasu585355c2012-12-13 20:59:08 +000066 bool needs_double_reset;
Benoit Goby79ad3b52011-03-09 16:28:56 -080067 enum tegra_usb_phy_port_speed port_speed;
68};
69
Jim Lin1f594b62011-04-17 11:58:25 +030070static int tegra_ehci_internal_port_reset(
71 struct ehci_hcd *ehci,
72 u32 __iomem *portsc_reg
73)
74{
75 u32 temp;
76 unsigned long flags;
77 int retval = 0;
78 int i, tries;
79 u32 saved_usbintr;
80
81 spin_lock_irqsave(&ehci->lock, flags);
82 saved_usbintr = ehci_readl(ehci, &ehci->regs->intr_enable);
83 /* disable USB interrupt */
84 ehci_writel(ehci, 0, &ehci->regs->intr_enable);
85 spin_unlock_irqrestore(&ehci->lock, flags);
86
87 /*
88 * Here we have to do Port Reset at most twice for
89 * Port Enable bit to be set.
90 */
91 for (i = 0; i < 2; i++) {
92 temp = ehci_readl(ehci, portsc_reg);
93 temp |= PORT_RESET;
94 ehci_writel(ehci, temp, portsc_reg);
95 mdelay(10);
96 temp &= ~PORT_RESET;
97 ehci_writel(ehci, temp, portsc_reg);
98 mdelay(1);
99 tries = 100;
100 do {
101 mdelay(1);
102 /*
103 * Up to this point, Port Enable bit is
104 * expected to be set after 2 ms waiting.
105 * USB1 usually takes extra 45 ms, for safety,
106 * we take 100 ms as timeout.
107 */
108 temp = ehci_readl(ehci, portsc_reg);
109 } while (!(temp & PORT_PE) && tries--);
110 if (temp & PORT_PE)
111 break;
112 }
113 if (i == 2)
114 retval = -ETIMEDOUT;
115
116 /*
117 * Clear Connect Status Change bit if it's set.
118 * We can't clear PORT_PEC. It will also cause PORT_PE to be cleared.
119 */
120 if (temp & PORT_CSC)
121 ehci_writel(ehci, PORT_CSC, portsc_reg);
122
123 /*
124 * Write to clear any interrupt status bits that might be set
125 * during port reset.
126 */
127 temp = ehci_readl(ehci, &ehci->regs->status);
128 ehci_writel(ehci, temp, &ehci->regs->status);
129
130 /* restore original interrupt enable bits */
131 ehci_writel(ehci, saved_usbintr, &ehci->regs->intr_enable);
132 return retval;
133}
134
Benoit Goby79ad3b52011-03-09 16:28:56 -0800135static int tegra_ehci_hub_control(
136 struct usb_hcd *hcd,
137 u16 typeReq,
138 u16 wValue,
139 u16 wIndex,
140 char *buf,
141 u16 wLength
142)
143{
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600144 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
145 struct tegra_ehci_hcd *tegra = (struct tegra_ehci_hcd *)ehci->priv;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800146 u32 __iomem *status_reg;
147 u32 temp;
148 unsigned long flags;
149 int retval = 0;
150
151 status_reg = &ehci->regs->port_status[(wIndex & 0xff) - 1];
152
153 spin_lock_irqsave(&ehci->lock, flags);
154
Stephen Warren6d5f89c2012-04-18 15:32:46 -0600155 if (typeReq == GetPortStatus) {
Benoit Goby79ad3b52011-03-09 16:28:56 -0800156 temp = ehci_readl(ehci, status_reg);
157 if (tegra->port_resuming && !(temp & PORT_SUSPEND)) {
158 /* Resume completed, re-enable disconnect detection */
159 tegra->port_resuming = 0;
Venu Byravarasuab137d02013-01-24 15:57:03 +0530160 tegra_usb_phy_postresume(hcd->phy);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800161 }
162 }
163
164 else if (typeReq == SetPortFeature && wValue == USB_PORT_FEAT_SUSPEND) {
165 temp = ehci_readl(ehci, status_reg);
166 if ((temp & PORT_PE) == 0 || (temp & PORT_RESET) != 0) {
167 retval = -EPIPE;
168 goto done;
169 }
170
Stephen Warrenb0876572012-04-25 12:31:10 -0600171 temp &= ~(PORT_RWC_BITS | PORT_WKCONN_E);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800172 temp |= PORT_WKDISC_E | PORT_WKOC_E;
173 ehci_writel(ehci, temp | PORT_SUSPEND, status_reg);
174
175 /*
176 * If a transaction is in progress, there may be a delay in
177 * suspending the port. Poll until the port is suspended.
178 */
Manjunath Goudar2f3a6b82013-06-13 11:24:09 -0600179 if (ehci_handshake(ehci, status_reg, PORT_SUSPEND,
Benoit Goby79ad3b52011-03-09 16:28:56 -0800180 PORT_SUSPEND, 5000))
181 pr_err("%s: timeout waiting for SUSPEND\n", __func__);
182
183 set_bit((wIndex & 0xff) - 1, &ehci->suspended_ports);
184 goto done;
185 }
186
Jim Lin1f594b62011-04-17 11:58:25 +0300187 /* For USB1 port we need to issue Port Reset twice internally */
Venu Byravarasu585355c2012-12-13 20:59:08 +0000188 if (tegra->needs_double_reset &&
Jim Lin1f594b62011-04-17 11:58:25 +0300189 (typeReq == SetPortFeature && wValue == USB_PORT_FEAT_RESET)) {
190 spin_unlock_irqrestore(&ehci->lock, flags);
191 return tegra_ehci_internal_port_reset(ehci, status_reg);
192 }
193
Benoit Goby79ad3b52011-03-09 16:28:56 -0800194 /*
195 * Tegra host controller will time the resume operation to clear the bit
196 * when the port control state switches to HS or FS Idle. This behavior
197 * is different from EHCI where the host controller driver is required
198 * to set this bit to a zero after the resume duration is timed in the
199 * driver.
200 */
201 else if (typeReq == ClearPortFeature &&
202 wValue == USB_PORT_FEAT_SUSPEND) {
203 temp = ehci_readl(ehci, status_reg);
204 if ((temp & PORT_RESET) || !(temp & PORT_PE)) {
205 retval = -EPIPE;
206 goto done;
207 }
208
209 if (!(temp & PORT_SUSPEND))
210 goto done;
211
212 /* Disable disconnect detection during port resume */
Venu Byravarasuab137d02013-01-24 15:57:03 +0530213 tegra_usb_phy_preresume(hcd->phy);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800214
215 ehci->reset_done[wIndex-1] = jiffies + msecs_to_jiffies(25);
216
217 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
218 /* start resume signalling */
219 ehci_writel(ehci, temp | PORT_RESUME, status_reg);
Alan Sterna448e4d2012-04-03 15:24:30 -0400220 set_bit(wIndex-1, &ehci->resuming_ports);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800221
222 spin_unlock_irqrestore(&ehci->lock, flags);
223 msleep(20);
224 spin_lock_irqsave(&ehci->lock, flags);
225
226 /* Poll until the controller clears RESUME and SUSPEND */
Manjunath Goudar2f3a6b82013-06-13 11:24:09 -0600227 if (ehci_handshake(ehci, status_reg, PORT_RESUME, 0, 2000))
Benoit Goby79ad3b52011-03-09 16:28:56 -0800228 pr_err("%s: timeout waiting for RESUME\n", __func__);
Manjunath Goudar2f3a6b82013-06-13 11:24:09 -0600229 if (ehci_handshake(ehci, status_reg, PORT_SUSPEND, 0, 2000))
Benoit Goby79ad3b52011-03-09 16:28:56 -0800230 pr_err("%s: timeout waiting for SUSPEND\n", __func__);
231
232 ehci->reset_done[wIndex-1] = 0;
Alan Sterna448e4d2012-04-03 15:24:30 -0400233 clear_bit(wIndex-1, &ehci->resuming_ports);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800234
235 tegra->port_resuming = 1;
236 goto done;
237 }
238
239 spin_unlock_irqrestore(&ehci->lock, flags);
240
241 /* Handle the hub control events here */
Manjunath Goudar9fc5f242013-06-13 11:24:12 -0600242 return orig_hub_control(hcd, typeReq, wValue, wIndex, buf, wLength);
243
Benoit Goby79ad3b52011-03-09 16:28:56 -0800244done:
245 spin_unlock_irqrestore(&ehci->lock, flags);
246 return retval;
247}
248
Venu Byravarasufe375772012-04-05 11:25:30 +0530249struct dma_aligned_buffer {
Robert Morellfbf98652011-03-09 16:28:57 -0800250 void *kmalloc_ptr;
251 void *old_xfer_buffer;
252 u8 data[0];
253};
254
Venu Byravarasufe375772012-04-05 11:25:30 +0530255static void free_dma_aligned_buffer(struct urb *urb)
Robert Morellfbf98652011-03-09 16:28:57 -0800256{
Venu Byravarasufe375772012-04-05 11:25:30 +0530257 struct dma_aligned_buffer *temp;
Robert Morellfbf98652011-03-09 16:28:57 -0800258
259 if (!(urb->transfer_flags & URB_ALIGNED_TEMP_BUFFER))
260 return;
261
Venu Byravarasufe375772012-04-05 11:25:30 +0530262 temp = container_of(urb->transfer_buffer,
263 struct dma_aligned_buffer, data);
Robert Morellfbf98652011-03-09 16:28:57 -0800264
Venu Byravarasufe375772012-04-05 11:25:30 +0530265 if (usb_urb_dir_in(urb))
Robert Morellfbf98652011-03-09 16:28:57 -0800266 memcpy(temp->old_xfer_buffer, temp->data,
267 urb->transfer_buffer_length);
268 urb->transfer_buffer = temp->old_xfer_buffer;
269 kfree(temp->kmalloc_ptr);
270
271 urb->transfer_flags &= ~URB_ALIGNED_TEMP_BUFFER;
272}
273
Venu Byravarasufe375772012-04-05 11:25:30 +0530274static int alloc_dma_aligned_buffer(struct urb *urb, gfp_t mem_flags)
Robert Morellfbf98652011-03-09 16:28:57 -0800275{
Venu Byravarasufe375772012-04-05 11:25:30 +0530276 struct dma_aligned_buffer *temp, *kmalloc_ptr;
Robert Morellfbf98652011-03-09 16:28:57 -0800277 size_t kmalloc_size;
278
279 if (urb->num_sgs || urb->sg ||
280 urb->transfer_buffer_length == 0 ||
281 !((uintptr_t)urb->transfer_buffer & (TEGRA_USB_DMA_ALIGN - 1)))
282 return 0;
283
Robert Morellfbf98652011-03-09 16:28:57 -0800284 /* Allocate a buffer with enough padding for alignment */
285 kmalloc_size = urb->transfer_buffer_length +
Venu Byravarasufe375772012-04-05 11:25:30 +0530286 sizeof(struct dma_aligned_buffer) + TEGRA_USB_DMA_ALIGN - 1;
Robert Morellfbf98652011-03-09 16:28:57 -0800287
288 kmalloc_ptr = kmalloc(kmalloc_size, mem_flags);
289 if (!kmalloc_ptr)
290 return -ENOMEM;
291
Venu Byravarasufe375772012-04-05 11:25:30 +0530292 /* Position our struct dma_aligned_buffer such that data is aligned */
Robert Morellfbf98652011-03-09 16:28:57 -0800293 temp = PTR_ALIGN(kmalloc_ptr + 1, TEGRA_USB_DMA_ALIGN) - 1;
Robert Morellfbf98652011-03-09 16:28:57 -0800294 temp->kmalloc_ptr = kmalloc_ptr;
295 temp->old_xfer_buffer = urb->transfer_buffer;
Venu Byravarasufe375772012-04-05 11:25:30 +0530296 if (usb_urb_dir_out(urb))
Robert Morellfbf98652011-03-09 16:28:57 -0800297 memcpy(temp->data, urb->transfer_buffer,
298 urb->transfer_buffer_length);
299 urb->transfer_buffer = temp->data;
300
301 urb->transfer_flags |= URB_ALIGNED_TEMP_BUFFER;
302
303 return 0;
304}
305
306static int tegra_ehci_map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
307 gfp_t mem_flags)
308{
309 int ret;
310
Venu Byravarasufe375772012-04-05 11:25:30 +0530311 ret = alloc_dma_aligned_buffer(urb, mem_flags);
Robert Morellfbf98652011-03-09 16:28:57 -0800312 if (ret)
313 return ret;
314
315 ret = usb_hcd_map_urb_for_dma(hcd, urb, mem_flags);
316 if (ret)
Venu Byravarasufe375772012-04-05 11:25:30 +0530317 free_dma_aligned_buffer(urb);
Robert Morellfbf98652011-03-09 16:28:57 -0800318
319 return ret;
320}
321
322static void tegra_ehci_unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb)
323{
324 usb_hcd_unmap_urb_for_dma(hcd, urb);
Venu Byravarasufe375772012-04-05 11:25:30 +0530325 free_dma_aligned_buffer(urb);
Robert Morellfbf98652011-03-09 16:28:57 -0800326}
327
Tuomas Tynkkynen327d8b42013-08-12 16:06:54 +0300328static const struct tegra_ehci_soc_config tegra30_soc_config = {
329 .has_hostpc = true,
330};
331
332static const struct tegra_ehci_soc_config tegra20_soc_config = {
333 .has_hostpc = false,
334};
335
336static struct of_device_id tegra_ehci_of_match[] = {
337 { .compatible = "nvidia,tegra30-ehci", .data = &tegra30_soc_config },
338 { .compatible = "nvidia,tegra20-ehci", .data = &tegra20_soc_config },
339 { },
340};
341
Benoit Goby79ad3b52011-03-09 16:28:56 -0800342static int tegra_ehci_probe(struct platform_device *pdev)
343{
Tuomas Tynkkynen327d8b42013-08-12 16:06:54 +0300344 const struct of_device_id *match;
345 const struct tegra_ehci_soc_config *soc_config;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800346 struct resource *res;
347 struct usb_hcd *hcd;
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600348 struct ehci_hcd *ehci;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800349 struct tegra_ehci_hcd *tegra;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800350 int err = 0;
351 int irq;
Venu Byravarasubbdabdb2013-01-17 20:15:37 +0000352 struct usb_phy *u_phy;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800353
Tuomas Tynkkynen327d8b42013-08-12 16:06:54 +0300354 match = of_match_device(tegra_ehci_of_match, &pdev->dev);
355 if (!match) {
356 dev_err(&pdev->dev, "Error: No device match found\n");
357 return -ENODEV;
358 }
359 soc_config = match->data;
360
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000361 /* Right now device-tree probed devices don't get dma_mask set.
362 * Since shared usb code relies on it, set it here for now.
363 * Once we have dma capability bindings this can go away.
364 */
Russell Kinge1fd7342013-06-27 12:36:37 +0100365 err = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +0100366 if (err)
367 return err;
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000368
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600369 hcd = usb_create_hcd(&tegra_ehci_hc_driver, &pdev->dev,
370 dev_name(&pdev->dev));
371 if (!hcd) {
372 dev_err(&pdev->dev, "Unable to create HCD\n");
Mikko Perttunenf5b8c8b2013-07-17 10:37:49 +0300373 return -ENOMEM;
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600374 }
375 platform_set_drvdata(pdev, hcd);
376 ehci = hcd_to_ehci(hcd);
377 tegra = (struct tegra_ehci_hcd *)ehci->priv;
378
379 hcd->has_tt = 1;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800380
Julia Lawallbc2ff982012-07-30 16:43:41 +0200381 tegra->clk = devm_clk_get(&pdev->dev, NULL);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800382 if (IS_ERR(tegra->clk)) {
383 dev_err(&pdev->dev, "Can't get ehci clock\n");
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600384 err = PTR_ERR(tegra->clk);
385 goto cleanup_hcd_create;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800386 }
387
Prashant Gaikwad20de12c2012-06-05 09:59:38 +0530388 err = clk_prepare_enable(tegra->clk);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800389 if (err)
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600390 goto cleanup_clk_get;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800391
Venu Byravarasueb5369e2013-04-03 16:11:12 +0530392 tegra_periph_reset_assert(tegra->clk);
393 udelay(1);
394 tegra_periph_reset_deassert(tegra->clk);
395
Tuomas Tynkkynen7db71a92013-07-25 21:38:06 +0300396 u_phy = devm_usb_get_phy_by_phandle(&pdev->dev, "nvidia,phy", 0);
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530397 if (IS_ERR(u_phy)) {
398 err = PTR_ERR(u_phy);
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600399 goto cleanup_clk_en;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530400 }
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600401 hcd->phy = u_phy;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530402
Venu Byravarasu585355c2012-12-13 20:59:08 +0000403 tegra->needs_double_reset = of_property_read_bool(pdev->dev.of_node,
404 "nvidia,needs-double-reset");
405
Benoit Goby79ad3b52011-03-09 16:28:56 -0800406 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
407 if (!res) {
408 dev_err(&pdev->dev, "Failed to get I/O memory\n");
409 err = -ENXIO;
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600410 goto cleanup_clk_en;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800411 }
412 hcd->rsrc_start = res->start;
413 hcd->rsrc_len = resource_size(res);
Julia Lawallbc2ff982012-07-30 16:43:41 +0200414 hcd->regs = devm_ioremap(&pdev->dev, res->start, resource_size(res));
Benoit Goby79ad3b52011-03-09 16:28:56 -0800415 if (!hcd->regs) {
416 dev_err(&pdev->dev, "Failed to remap I/O memory\n");
417 err = -ENOMEM;
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600418 goto cleanup_clk_en;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800419 }
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600420 ehci->caps = hcd->regs + 0x100;
Tuomas Tynkkynen327d8b42013-08-12 16:06:54 +0300421 ehci->has_hostpc = soc_config->has_hostpc;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800422
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530423 err = usb_phy_init(hcd->phy);
424 if (err) {
425 dev_err(&pdev->dev, "Failed to initialize phy\n");
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600426 goto cleanup_clk_en;
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000427 }
428
Venu Byravarasubbdabdb2013-01-17 20:15:37 +0000429 u_phy->otg = devm_kzalloc(&pdev->dev, sizeof(struct usb_otg),
430 GFP_KERNEL);
431 if (!u_phy->otg) {
432 dev_err(&pdev->dev, "Failed to alloc memory for otg\n");
433 err = -ENOMEM;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530434 goto cleanup_phy;
Venu Byravarasubbdabdb2013-01-17 20:15:37 +0000435 }
436 u_phy->otg->host = hcd_to_bus(hcd);
437
Venu Byravarasuab137d02013-01-24 15:57:03 +0530438 err = usb_phy_set_suspend(hcd->phy, 0);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800439 if (err) {
440 dev_err(&pdev->dev, "Failed to power on the phy\n");
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530441 goto cleanup_phy;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800442 }
443
Benoit Goby79ad3b52011-03-09 16:28:56 -0800444 irq = platform_get_irq(pdev, 0);
445 if (!irq) {
446 dev_err(&pdev->dev, "Failed to get IRQ\n");
447 err = -ENODEV;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530448 goto cleanup_phy;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800449 }
Benoit Goby79ad3b52011-03-09 16:28:56 -0800450
Tuomas Tynkkynende3f2332013-07-25 21:38:02 +0300451 otg_set_host(u_phy->otg, &hcd->self);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800452
Yong Zhangb5dd18d2011-09-07 16:10:52 +0800453 err = usb_add_hcd(hcd, irq, IRQF_SHARED);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800454 if (err) {
455 dev_err(&pdev->dev, "Failed to add USB HCD\n");
Tuomas Tynkkynende3f2332013-07-25 21:38:02 +0300456 goto cleanup_otg_set_host;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800457 }
458
459 return err;
460
Tuomas Tynkkynende3f2332013-07-25 21:38:02 +0300461cleanup_otg_set_host:
462 otg_set_host(u_phy->otg, NULL);
Thierry Reding8fefcfd2013-06-14 13:21:21 +0200463cleanup_phy:
Venu Byravarasuab137d02013-01-24 15:57:03 +0530464 usb_phy_shutdown(hcd->phy);
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600465cleanup_clk_en:
466 clk_disable_unprepare(tegra->clk);
467cleanup_clk_get:
468 clk_put(tegra->clk);
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530469cleanup_hcd_create:
Benoit Goby79ad3b52011-03-09 16:28:56 -0800470 usb_put_hcd(hcd);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800471 return err;
472}
473
Benoit Goby79ad3b52011-03-09 16:28:56 -0800474static int tegra_ehci_remove(struct platform_device *pdev)
475{
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600476 struct usb_hcd *hcd = platform_get_drvdata(pdev);
477 struct tegra_ehci_hcd *tegra =
478 (struct tegra_ehci_hcd *)hcd_to_ehci(hcd)->priv;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800479
Tuomas Tynkkynende3f2332013-07-25 21:38:02 +0300480 otg_set_host(hcd->phy->otg, NULL);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800481
Venu Byravarasuab137d02013-01-24 15:57:03 +0530482 usb_phy_shutdown(hcd->phy);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800483 usb_remove_hcd(hcd);
Venu Byravarasuecc8a0c2012-08-10 11:42:43 +0530484 usb_put_hcd(hcd);
485
Prashant Gaikwad20de12c2012-06-05 09:59:38 +0530486 clk_disable_unprepare(tegra->clk);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800487
Benoit Goby79ad3b52011-03-09 16:28:56 -0800488 return 0;
489}
490
491static void tegra_ehci_hcd_shutdown(struct platform_device *pdev)
492{
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600493 struct usb_hcd *hcd = platform_get_drvdata(pdev);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800494
495 if (hcd->driver->shutdown)
496 hcd->driver->shutdown(hcd);
497}
498
499static struct platform_driver tegra_ehci_driver = {
500 .probe = tegra_ehci_probe,
501 .remove = tegra_ehci_remove,
Benoit Goby79ad3b52011-03-09 16:28:56 -0800502 .shutdown = tegra_ehci_hcd_shutdown,
503 .driver = {
Manjunath Goudar9fc5f242013-06-13 11:24:12 -0600504 .name = DRV_NAME,
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000505 .of_match_table = tegra_ehci_of_match,
Benoit Goby79ad3b52011-03-09 16:28:56 -0800506 }
507};
Manjunath Goudar9fc5f242013-06-13 11:24:12 -0600508
509static const struct ehci_driver_overrides tegra_overrides __initconst = {
510 .extra_priv_size = sizeof(struct tegra_ehci_hcd),
511};
512
513static int __init ehci_tegra_init(void)
514{
515 if (usb_disabled())
516 return -ENODEV;
517
518 pr_info(DRV_NAME ": " DRIVER_DESC "\n");
519
520 ehci_init_driver(&tegra_ehci_hc_driver, &tegra_overrides);
521
522 /*
523 * The Tegra HW has some unusual quirks, which require Tegra-specific
524 * workarounds. We override certain hc_driver functions here to
525 * achieve that. We explicitly do not enhance ehci_driver_overrides to
526 * allow this more easily, since this is an unusual case, and we don't
527 * want to encourage others to override these functions by making it
528 * too easy.
529 */
530
531 orig_hub_control = tegra_ehci_hc_driver.hub_control;
532
533 tegra_ehci_hc_driver.map_urb_for_dma = tegra_ehci_map_urb_for_dma;
534 tegra_ehci_hc_driver.unmap_urb_for_dma = tegra_ehci_unmap_urb_for_dma;
535 tegra_ehci_hc_driver.hub_control = tegra_ehci_hub_control;
536
537 return platform_driver_register(&tegra_ehci_driver);
538}
539module_init(ehci_tegra_init);
540
541static void __exit ehci_tegra_cleanup(void)
542{
543 platform_driver_unregister(&tegra_ehci_driver);
544}
545module_exit(ehci_tegra_cleanup);
546
547MODULE_DESCRIPTION(DRIVER_DESC);
548MODULE_LICENSE("GPL");
549MODULE_ALIAS("platform:" DRV_NAME);
550MODULE_DEVICE_TABLE(of, tegra_ehci_of_match);