blob: 9a3d7db5be57cb001ac982516e0e5d847c14409a [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/dma-mapping.h>
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +053021#include <linux/err.h>
Olof Johansson4a53f4e2011-11-04 09:12:40 +000022#include <linux/gpio.h>
Manjunath Goudar9fc5f242013-06-13 11:24:12 -060023#include <linux/io.h>
24#include <linux/irq.h>
25#include <linux/module.h>
Olof Johansson4a53f4e2011-11-04 09:12:40 +000026#include <linux/of.h>
Tuomas Tynkkynen327d8b42013-08-12 16:06:54 +030027#include <linux/of_device.h>
Olof Johansson4a53f4e2011-11-04 09:12:40 +000028#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>
Stephen Warren75606f52013-11-06 16:53:58 -070031#include <linux/reset.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
Manjunath Goudar9fc5f242013-06-13 11:24:12 -060041#define PORT_WAKE_BITS (PORT_WKOC_E|PORT_WKDISC_E|PORT_WKCONN_E)
42
Robert Morellfbf98652011-03-09 16:28:57 -080043#define TEGRA_USB_DMA_ALIGN 32
44
Manjunath Goudar9fc5f242013-06-13 11:24:12 -060045#define DRIVER_DESC "Tegra EHCI driver"
46#define DRV_NAME "tegra-ehci"
47
48static struct hc_driver __read_mostly tegra_ehci_hc_driver;
Tuomas Tynkkynena47cc242014-07-04 04:09:38 +030049static bool usb1_reset_attempted;
Manjunath Goudar9fc5f242013-06-13 11:24:12 -060050
Tuomas Tynkkynen327d8b42013-08-12 16:06:54 +030051struct tegra_ehci_soc_config {
52 bool has_hostpc;
53};
54
Benoit Goby79ad3b52011-03-09 16:28:56 -080055struct tegra_ehci_hcd {
Benoit Goby79ad3b52011-03-09 16:28:56 -080056 struct tegra_usb_phy *phy;
57 struct clk *clk;
Stephen Warren75606f52013-11-06 16:53:58 -070058 struct reset_control *rst;
Benoit Goby79ad3b52011-03-09 16:28:56 -080059 int port_resuming;
Venu Byravarasu585355c2012-12-13 20:59:08 +000060 bool needs_double_reset;
Benoit Goby79ad3b52011-03-09 16:28:56 -080061 enum tegra_usb_phy_port_speed port_speed;
62};
63
Tuomas Tynkkynena47cc242014-07-04 04:09:38 +030064/*
65 * The 1st USB controller contains some UTMI pad registers that are global for
66 * all the controllers on the chip. Those registers are also cleared when
67 * reset is asserted to the 1st controller. This means that the 1st controller
68 * can only be reset when no other controlled has finished probing. So we'll
69 * reset the 1st controller before doing any other setup on any of the
70 * controllers, and then never again.
71 *
72 * Since this is a PHY issue, the Tegra PHY driver should probably be doing
73 * the resetting of the USB controllers. But to keep compatibility with old
74 * device trees that don't have reset phandles in the PHYs, do it here.
75 * Those old DTs will be vulnerable to total USB breakage if the 1st EHCI
76 * device isn't the first one to finish probing, so warn them.
77 */
78static int tegra_reset_usb_controller(struct platform_device *pdev)
79{
80 struct device_node *phy_np;
81 struct usb_hcd *hcd = platform_get_drvdata(pdev);
82 struct tegra_ehci_hcd *tegra =
83 (struct tegra_ehci_hcd *)hcd_to_ehci(hcd)->priv;
Thierry Reding7cc9ca52016-05-26 17:23:30 +020084 bool has_utmi_pad_registers = false;
Tuomas Tynkkynena47cc242014-07-04 04:09:38 +030085
86 phy_np = of_parse_phandle(pdev->dev.of_node, "nvidia,phy", 0);
87 if (!phy_np)
88 return -ENOENT;
89
Thierry Reding7cc9ca52016-05-26 17:23:30 +020090 if (of_property_read_bool(phy_np, "nvidia,has-utmi-pad-registers"))
91 has_utmi_pad_registers = true;
92
Tuomas Tynkkynena47cc242014-07-04 04:09:38 +030093 if (!usb1_reset_attempted) {
94 struct reset_control *usb1_reset;
95
Thierry Reding7cc9ca52016-05-26 17:23:30 +020096 if (!has_utmi_pad_registers)
97 usb1_reset = of_reset_control_get(phy_np, "utmi-pads");
98 else
99 usb1_reset = tegra->rst;
100
Tuomas Tynkkynena47cc242014-07-04 04:09:38 +0300101 if (IS_ERR(usb1_reset)) {
102 dev_warn(&pdev->dev,
103 "can't get utmi-pads reset from the PHY\n");
104 dev_warn(&pdev->dev,
105 "continuing, but please update your DT\n");
106 } else {
107 reset_control_assert(usb1_reset);
108 udelay(1);
109 reset_control_deassert(usb1_reset);
Thierry Reding7cc9ca52016-05-26 17:23:30 +0200110
111 if (!has_utmi_pad_registers)
112 reset_control_put(usb1_reset);
Tuomas Tynkkynena47cc242014-07-04 04:09:38 +0300113 }
114
Tuomas Tynkkynena47cc242014-07-04 04:09:38 +0300115 usb1_reset_attempted = true;
116 }
117
Thierry Reding7cc9ca52016-05-26 17:23:30 +0200118 if (!has_utmi_pad_registers) {
Tuomas Tynkkynena47cc242014-07-04 04:09:38 +0300119 reset_control_assert(tegra->rst);
120 udelay(1);
121 reset_control_deassert(tegra->rst);
122 }
123
124 of_node_put(phy_np);
125
126 return 0;
127}
128
Jim Lin1f594b62011-04-17 11:58:25 +0300129static int tegra_ehci_internal_port_reset(
130 struct ehci_hcd *ehci,
131 u32 __iomem *portsc_reg
132)
133{
134 u32 temp;
135 unsigned long flags;
136 int retval = 0;
137 int i, tries;
138 u32 saved_usbintr;
139
140 spin_lock_irqsave(&ehci->lock, flags);
141 saved_usbintr = ehci_readl(ehci, &ehci->regs->intr_enable);
142 /* disable USB interrupt */
143 ehci_writel(ehci, 0, &ehci->regs->intr_enable);
144 spin_unlock_irqrestore(&ehci->lock, flags);
145
146 /*
147 * Here we have to do Port Reset at most twice for
148 * Port Enable bit to be set.
149 */
150 for (i = 0; i < 2; i++) {
151 temp = ehci_readl(ehci, portsc_reg);
152 temp |= PORT_RESET;
153 ehci_writel(ehci, temp, portsc_reg);
154 mdelay(10);
155 temp &= ~PORT_RESET;
156 ehci_writel(ehci, temp, portsc_reg);
157 mdelay(1);
158 tries = 100;
159 do {
160 mdelay(1);
161 /*
162 * Up to this point, Port Enable bit is
163 * expected to be set after 2 ms waiting.
164 * USB1 usually takes extra 45 ms, for safety,
165 * we take 100 ms as timeout.
166 */
167 temp = ehci_readl(ehci, portsc_reg);
168 } while (!(temp & PORT_PE) && tries--);
169 if (temp & PORT_PE)
170 break;
171 }
172 if (i == 2)
173 retval = -ETIMEDOUT;
174
175 /*
176 * Clear Connect Status Change bit if it's set.
177 * We can't clear PORT_PEC. It will also cause PORT_PE to be cleared.
178 */
179 if (temp & PORT_CSC)
180 ehci_writel(ehci, PORT_CSC, portsc_reg);
181
182 /*
183 * Write to clear any interrupt status bits that might be set
184 * during port reset.
185 */
186 temp = ehci_readl(ehci, &ehci->regs->status);
187 ehci_writel(ehci, temp, &ehci->regs->status);
188
189 /* restore original interrupt enable bits */
190 ehci_writel(ehci, saved_usbintr, &ehci->regs->intr_enable);
191 return retval;
192}
193
Benoit Goby79ad3b52011-03-09 16:28:56 -0800194static int tegra_ehci_hub_control(
195 struct usb_hcd *hcd,
196 u16 typeReq,
197 u16 wValue,
198 u16 wIndex,
199 char *buf,
200 u16 wLength
201)
202{
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600203 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
204 struct tegra_ehci_hcd *tegra = (struct tegra_ehci_hcd *)ehci->priv;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800205 u32 __iomem *status_reg;
206 u32 temp;
207 unsigned long flags;
208 int retval = 0;
209
210 status_reg = &ehci->regs->port_status[(wIndex & 0xff) - 1];
211
212 spin_lock_irqsave(&ehci->lock, flags);
213
Stephen Warren6d5f89c2012-04-18 15:32:46 -0600214 if (typeReq == GetPortStatus) {
Benoit Goby79ad3b52011-03-09 16:28:56 -0800215 temp = ehci_readl(ehci, status_reg);
216 if (tegra->port_resuming && !(temp & PORT_SUSPEND)) {
217 /* Resume completed, re-enable disconnect detection */
218 tegra->port_resuming = 0;
Antoine Tenart3d46e732014-09-24 23:05:50 +0400219 tegra_usb_phy_postresume(hcd->usb_phy);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800220 }
221 }
222
223 else if (typeReq == SetPortFeature && wValue == USB_PORT_FEAT_SUSPEND) {
224 temp = ehci_readl(ehci, status_reg);
225 if ((temp & PORT_PE) == 0 || (temp & PORT_RESET) != 0) {
226 retval = -EPIPE;
227 goto done;
228 }
229
Stephen Warrenb0876572012-04-25 12:31:10 -0600230 temp &= ~(PORT_RWC_BITS | PORT_WKCONN_E);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800231 temp |= PORT_WKDISC_E | PORT_WKOC_E;
232 ehci_writel(ehci, temp | PORT_SUSPEND, status_reg);
233
234 /*
235 * If a transaction is in progress, there may be a delay in
236 * suspending the port. Poll until the port is suspended.
237 */
Manjunath Goudar2f3a6b82013-06-13 11:24:09 -0600238 if (ehci_handshake(ehci, status_reg, PORT_SUSPEND,
Benoit Goby79ad3b52011-03-09 16:28:56 -0800239 PORT_SUSPEND, 5000))
240 pr_err("%s: timeout waiting for SUSPEND\n", __func__);
241
242 set_bit((wIndex & 0xff) - 1, &ehci->suspended_ports);
243 goto done;
244 }
245
Jim Lin1f594b62011-04-17 11:58:25 +0300246 /* For USB1 port we need to issue Port Reset twice internally */
Venu Byravarasu585355c2012-12-13 20:59:08 +0000247 if (tegra->needs_double_reset &&
Jim Lin1f594b62011-04-17 11:58:25 +0300248 (typeReq == SetPortFeature && wValue == USB_PORT_FEAT_RESET)) {
249 spin_unlock_irqrestore(&ehci->lock, flags);
250 return tegra_ehci_internal_port_reset(ehci, status_reg);
251 }
252
Benoit Goby79ad3b52011-03-09 16:28:56 -0800253 /*
254 * Tegra host controller will time the resume operation to clear the bit
255 * when the port control state switches to HS or FS Idle. This behavior
256 * is different from EHCI where the host controller driver is required
257 * to set this bit to a zero after the resume duration is timed in the
258 * driver.
259 */
260 else if (typeReq == ClearPortFeature &&
261 wValue == USB_PORT_FEAT_SUSPEND) {
262 temp = ehci_readl(ehci, status_reg);
263 if ((temp & PORT_RESET) || !(temp & PORT_PE)) {
264 retval = -EPIPE;
265 goto done;
266 }
267
268 if (!(temp & PORT_SUSPEND))
269 goto done;
270
271 /* Disable disconnect detection during port resume */
Antoine Tenart3d46e732014-09-24 23:05:50 +0400272 tegra_usb_phy_preresume(hcd->usb_phy);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800273
274 ehci->reset_done[wIndex-1] = jiffies + msecs_to_jiffies(25);
275
276 temp &= ~(PORT_RWC_BITS | PORT_WAKE_BITS);
277 /* start resume signalling */
278 ehci_writel(ehci, temp | PORT_RESUME, status_reg);
Alan Sterna448e4d2012-04-03 15:24:30 -0400279 set_bit(wIndex-1, &ehci->resuming_ports);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800280
281 spin_unlock_irqrestore(&ehci->lock, flags);
282 msleep(20);
283 spin_lock_irqsave(&ehci->lock, flags);
284
285 /* Poll until the controller clears RESUME and SUSPEND */
Manjunath Goudar2f3a6b82013-06-13 11:24:09 -0600286 if (ehci_handshake(ehci, status_reg, PORT_RESUME, 0, 2000))
Benoit Goby79ad3b52011-03-09 16:28:56 -0800287 pr_err("%s: timeout waiting for RESUME\n", __func__);
Manjunath Goudar2f3a6b82013-06-13 11:24:09 -0600288 if (ehci_handshake(ehci, status_reg, PORT_SUSPEND, 0, 2000))
Benoit Goby79ad3b52011-03-09 16:28:56 -0800289 pr_err("%s: timeout waiting for SUSPEND\n", __func__);
290
291 ehci->reset_done[wIndex-1] = 0;
Alan Sterna448e4d2012-04-03 15:24:30 -0400292 clear_bit(wIndex-1, &ehci->resuming_ports);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800293
294 tegra->port_resuming = 1;
295 goto done;
296 }
297
298 spin_unlock_irqrestore(&ehci->lock, flags);
299
300 /* Handle the hub control events here */
Laurent Pinchart37769932014-04-16 18:00:10 +0200301 return ehci_hub_control(hcd, typeReq, wValue, wIndex, buf, wLength);
Manjunath Goudar9fc5f242013-06-13 11:24:12 -0600302
Benoit Goby79ad3b52011-03-09 16:28:56 -0800303done:
304 spin_unlock_irqrestore(&ehci->lock, flags);
305 return retval;
306}
307
Venu Byravarasufe375772012-04-05 11:25:30 +0530308struct dma_aligned_buffer {
Robert Morellfbf98652011-03-09 16:28:57 -0800309 void *kmalloc_ptr;
310 void *old_xfer_buffer;
311 u8 data[0];
312};
313
Venu Byravarasufe375772012-04-05 11:25:30 +0530314static void free_dma_aligned_buffer(struct urb *urb)
Robert Morellfbf98652011-03-09 16:28:57 -0800315{
Venu Byravarasufe375772012-04-05 11:25:30 +0530316 struct dma_aligned_buffer *temp;
Johan Hovold0efd9372015-04-23 16:06:51 +0200317 size_t length;
Robert Morellfbf98652011-03-09 16:28:57 -0800318
319 if (!(urb->transfer_flags & URB_ALIGNED_TEMP_BUFFER))
320 return;
321
Venu Byravarasufe375772012-04-05 11:25:30 +0530322 temp = container_of(urb->transfer_buffer,
323 struct dma_aligned_buffer, data);
Robert Morellfbf98652011-03-09 16:28:57 -0800324
Johan Hovold0efd9372015-04-23 16:06:51 +0200325 if (usb_urb_dir_in(urb)) {
326 if (usb_pipeisoc(urb->pipe))
327 length = urb->transfer_buffer_length;
328 else
329 length = urb->actual_length;
330
331 memcpy(temp->old_xfer_buffer, temp->data, length);
332 }
Robert Morellfbf98652011-03-09 16:28:57 -0800333 urb->transfer_buffer = temp->old_xfer_buffer;
334 kfree(temp->kmalloc_ptr);
335
336 urb->transfer_flags &= ~URB_ALIGNED_TEMP_BUFFER;
337}
338
Venu Byravarasufe375772012-04-05 11:25:30 +0530339static int alloc_dma_aligned_buffer(struct urb *urb, gfp_t mem_flags)
Robert Morellfbf98652011-03-09 16:28:57 -0800340{
Venu Byravarasufe375772012-04-05 11:25:30 +0530341 struct dma_aligned_buffer *temp, *kmalloc_ptr;
Robert Morellfbf98652011-03-09 16:28:57 -0800342 size_t kmalloc_size;
343
344 if (urb->num_sgs || urb->sg ||
345 urb->transfer_buffer_length == 0 ||
346 !((uintptr_t)urb->transfer_buffer & (TEGRA_USB_DMA_ALIGN - 1)))
347 return 0;
348
Robert Morellfbf98652011-03-09 16:28:57 -0800349 /* Allocate a buffer with enough padding for alignment */
350 kmalloc_size = urb->transfer_buffer_length +
Venu Byravarasufe375772012-04-05 11:25:30 +0530351 sizeof(struct dma_aligned_buffer) + TEGRA_USB_DMA_ALIGN - 1;
Robert Morellfbf98652011-03-09 16:28:57 -0800352
353 kmalloc_ptr = kmalloc(kmalloc_size, mem_flags);
354 if (!kmalloc_ptr)
355 return -ENOMEM;
356
Venu Byravarasufe375772012-04-05 11:25:30 +0530357 /* Position our struct dma_aligned_buffer such that data is aligned */
Robert Morellfbf98652011-03-09 16:28:57 -0800358 temp = PTR_ALIGN(kmalloc_ptr + 1, TEGRA_USB_DMA_ALIGN) - 1;
Robert Morellfbf98652011-03-09 16:28:57 -0800359 temp->kmalloc_ptr = kmalloc_ptr;
360 temp->old_xfer_buffer = urb->transfer_buffer;
Venu Byravarasufe375772012-04-05 11:25:30 +0530361 if (usb_urb_dir_out(urb))
Robert Morellfbf98652011-03-09 16:28:57 -0800362 memcpy(temp->data, urb->transfer_buffer,
363 urb->transfer_buffer_length);
364 urb->transfer_buffer = temp->data;
365
366 urb->transfer_flags |= URB_ALIGNED_TEMP_BUFFER;
367
368 return 0;
369}
370
371static int tegra_ehci_map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
372 gfp_t mem_flags)
373{
374 int ret;
375
Venu Byravarasufe375772012-04-05 11:25:30 +0530376 ret = alloc_dma_aligned_buffer(urb, mem_flags);
Robert Morellfbf98652011-03-09 16:28:57 -0800377 if (ret)
378 return ret;
379
380 ret = usb_hcd_map_urb_for_dma(hcd, urb, mem_flags);
381 if (ret)
Venu Byravarasufe375772012-04-05 11:25:30 +0530382 free_dma_aligned_buffer(urb);
Robert Morellfbf98652011-03-09 16:28:57 -0800383
384 return ret;
385}
386
387static void tegra_ehci_unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb)
388{
389 usb_hcd_unmap_urb_for_dma(hcd, urb);
Venu Byravarasufe375772012-04-05 11:25:30 +0530390 free_dma_aligned_buffer(urb);
Robert Morellfbf98652011-03-09 16:28:57 -0800391}
392
Tuomas Tynkkynen327d8b42013-08-12 16:06:54 +0300393static const struct tegra_ehci_soc_config tegra30_soc_config = {
394 .has_hostpc = true,
395};
396
397static const struct tegra_ehci_soc_config tegra20_soc_config = {
398 .has_hostpc = false,
399};
400
Jingoo Han1b450492014-06-18 13:37:24 +0900401static const struct of_device_id tegra_ehci_of_match[] = {
Tuomas Tynkkynen327d8b42013-08-12 16:06:54 +0300402 { .compatible = "nvidia,tegra30-ehci", .data = &tegra30_soc_config },
403 { .compatible = "nvidia,tegra20-ehci", .data = &tegra20_soc_config },
404 { },
405};
406
Benoit Goby79ad3b52011-03-09 16:28:56 -0800407static int tegra_ehci_probe(struct platform_device *pdev)
408{
Tuomas Tynkkynen327d8b42013-08-12 16:06:54 +0300409 const struct of_device_id *match;
410 const struct tegra_ehci_soc_config *soc_config;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800411 struct resource *res;
412 struct usb_hcd *hcd;
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600413 struct ehci_hcd *ehci;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800414 struct tegra_ehci_hcd *tegra;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800415 int err = 0;
416 int irq;
Venu Byravarasubbdabdb2013-01-17 20:15:37 +0000417 struct usb_phy *u_phy;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800418
Tuomas Tynkkynen327d8b42013-08-12 16:06:54 +0300419 match = of_match_device(tegra_ehci_of_match, &pdev->dev);
420 if (!match) {
421 dev_err(&pdev->dev, "Error: No device match found\n");
422 return -ENODEV;
423 }
424 soc_config = match->data;
425
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000426 /* Right now device-tree probed devices don't get dma_mask set.
427 * Since shared usb code relies on it, set it here for now.
428 * Once we have dma capability bindings this can go away.
429 */
Russell Kinge1fd7342013-06-27 12:36:37 +0100430 err = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +0100431 if (err)
432 return err;
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000433
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600434 hcd = usb_create_hcd(&tegra_ehci_hc_driver, &pdev->dev,
435 dev_name(&pdev->dev));
436 if (!hcd) {
437 dev_err(&pdev->dev, "Unable to create HCD\n");
Mikko Perttunenf5b8c8b2013-07-17 10:37:49 +0300438 return -ENOMEM;
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600439 }
440 platform_set_drvdata(pdev, hcd);
441 ehci = hcd_to_ehci(hcd);
442 tegra = (struct tegra_ehci_hcd *)ehci->priv;
443
444 hcd->has_tt = 1;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800445
Julia Lawallbc2ff982012-07-30 16:43:41 +0200446 tegra->clk = devm_clk_get(&pdev->dev, NULL);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800447 if (IS_ERR(tegra->clk)) {
448 dev_err(&pdev->dev, "Can't get ehci clock\n");
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600449 err = PTR_ERR(tegra->clk);
450 goto cleanup_hcd_create;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800451 }
452
Stephen Warren75606f52013-11-06 16:53:58 -0700453 tegra->rst = devm_reset_control_get(&pdev->dev, "usb");
454 if (IS_ERR(tegra->rst)) {
455 dev_err(&pdev->dev, "Can't get ehci reset\n");
456 err = PTR_ERR(tegra->rst);
457 goto cleanup_hcd_create;
458 }
459
Prashant Gaikwad20de12c2012-06-05 09:59:38 +0530460 err = clk_prepare_enable(tegra->clk);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800461 if (err)
Wei Yongjundafbe922013-09-27 16:22:08 +0800462 goto cleanup_hcd_create;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800463
Tuomas Tynkkynena47cc242014-07-04 04:09:38 +0300464 err = tegra_reset_usb_controller(pdev);
465 if (err)
466 goto cleanup_clk_en;
Venu Byravarasueb5369e2013-04-03 16:11:12 +0530467
Tuomas Tynkkynen7db71a92013-07-25 21:38:06 +0300468 u_phy = devm_usb_get_phy_by_phandle(&pdev->dev, "nvidia,phy", 0);
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530469 if (IS_ERR(u_phy)) {
Vince Hsuf56e67f2014-12-24 18:16:30 +0800470 err = -EPROBE_DEFER;
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600471 goto cleanup_clk_en;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530472 }
Antoine Tenart3d46e732014-09-24 23:05:50 +0400473 hcd->usb_phy = u_phy;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530474
Venu Byravarasu585355c2012-12-13 20:59:08 +0000475 tegra->needs_double_reset = of_property_read_bool(pdev->dev.of_node,
476 "nvidia,needs-double-reset");
477
Benoit Goby79ad3b52011-03-09 16:28:56 -0800478 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Vivek Gautam6ba96dc2014-05-10 17:30:09 +0530479 hcd->regs = devm_ioremap_resource(&pdev->dev, res);
480 if (IS_ERR(hcd->regs)) {
481 err = PTR_ERR(hcd->regs);
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600482 goto cleanup_clk_en;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800483 }
Varka Bhadrama36cc422014-11-04 07:51:10 +0530484 hcd->rsrc_start = res->start;
485 hcd->rsrc_len = resource_size(res);
486
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600487 ehci->caps = hcd->regs + 0x100;
Tuomas Tynkkynen327d8b42013-08-12 16:06:54 +0300488 ehci->has_hostpc = soc_config->has_hostpc;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800489
Antoine Tenart3d46e732014-09-24 23:05:50 +0400490 err = usb_phy_init(hcd->usb_phy);
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530491 if (err) {
492 dev_err(&pdev->dev, "Failed to initialize phy\n");
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600493 goto cleanup_clk_en;
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000494 }
495
Venu Byravarasubbdabdb2013-01-17 20:15:37 +0000496 u_phy->otg = devm_kzalloc(&pdev->dev, sizeof(struct usb_otg),
497 GFP_KERNEL);
498 if (!u_phy->otg) {
Venu Byravarasubbdabdb2013-01-17 20:15:37 +0000499 err = -ENOMEM;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530500 goto cleanup_phy;
Venu Byravarasubbdabdb2013-01-17 20:15:37 +0000501 }
502 u_phy->otg->host = hcd_to_bus(hcd);
503
Antoine Tenart3d46e732014-09-24 23:05:50 +0400504 err = usb_phy_set_suspend(hcd->usb_phy, 0);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800505 if (err) {
506 dev_err(&pdev->dev, "Failed to power on the phy\n");
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530507 goto cleanup_phy;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800508 }
509
Benoit Goby79ad3b52011-03-09 16:28:56 -0800510 irq = platform_get_irq(pdev, 0);
511 if (!irq) {
512 dev_err(&pdev->dev, "Failed to get IRQ\n");
513 err = -ENODEV;
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530514 goto cleanup_phy;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800515 }
Benoit Goby79ad3b52011-03-09 16:28:56 -0800516
Tuomas Tynkkynende3f2332013-07-25 21:38:02 +0300517 otg_set_host(u_phy->otg, &hcd->self);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800518
Yong Zhangb5dd18d2011-09-07 16:10:52 +0800519 err = usb_add_hcd(hcd, irq, IRQF_SHARED);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800520 if (err) {
521 dev_err(&pdev->dev, "Failed to add USB HCD\n");
Tuomas Tynkkynende3f2332013-07-25 21:38:02 +0300522 goto cleanup_otg_set_host;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800523 }
Peter Chen3c9740a2013-11-05 10:46:02 +0800524 device_wakeup_enable(hcd->self.controller);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800525
526 return err;
527
Tuomas Tynkkynende3f2332013-07-25 21:38:02 +0300528cleanup_otg_set_host:
529 otg_set_host(u_phy->otg, NULL);
Thierry Reding8fefcfd2013-06-14 13:21:21 +0200530cleanup_phy:
Antoine Tenart3d46e732014-09-24 23:05:50 +0400531 usb_phy_shutdown(hcd->usb_phy);
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600532cleanup_clk_en:
533 clk_disable_unprepare(tegra->clk);
Venu Byravarasu2d22b422013-05-16 19:43:02 +0530534cleanup_hcd_create:
Benoit Goby79ad3b52011-03-09 16:28:56 -0800535 usb_put_hcd(hcd);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800536 return err;
537}
538
Benoit Goby79ad3b52011-03-09 16:28:56 -0800539static int tegra_ehci_remove(struct platform_device *pdev)
540{
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600541 struct usb_hcd *hcd = platform_get_drvdata(pdev);
542 struct tegra_ehci_hcd *tegra =
543 (struct tegra_ehci_hcd *)hcd_to_ehci(hcd)->priv;
Benoit Goby79ad3b52011-03-09 16:28:56 -0800544
Antoine Tenart3d46e732014-09-24 23:05:50 +0400545 otg_set_host(hcd->usb_phy->otg, NULL);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800546
Antoine Tenart3d46e732014-09-24 23:05:50 +0400547 usb_phy_shutdown(hcd->usb_phy);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800548 usb_remove_hcd(hcd);
Venu Byravarasuecc8a0c2012-08-10 11:42:43 +0530549
Prashant Gaikwad20de12c2012-06-05 09:59:38 +0530550 clk_disable_unprepare(tegra->clk);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800551
Tuomas Tynkkynen6a70b622014-06-17 17:17:40 +0300552 usb_put_hcd(hcd);
553
Benoit Goby79ad3b52011-03-09 16:28:56 -0800554 return 0;
555}
556
557static void tegra_ehci_hcd_shutdown(struct platform_device *pdev)
558{
Stephen Warrenc19d14d2013-06-13 11:24:13 -0600559 struct usb_hcd *hcd = platform_get_drvdata(pdev);
Benoit Goby79ad3b52011-03-09 16:28:56 -0800560
561 if (hcd->driver->shutdown)
562 hcd->driver->shutdown(hcd);
563}
564
565static struct platform_driver tegra_ehci_driver = {
566 .probe = tegra_ehci_probe,
567 .remove = tegra_ehci_remove,
Benoit Goby79ad3b52011-03-09 16:28:56 -0800568 .shutdown = tegra_ehci_hcd_shutdown,
569 .driver = {
Manjunath Goudar9fc5f242013-06-13 11:24:12 -0600570 .name = DRV_NAME,
Olof Johansson4a53f4e2011-11-04 09:12:40 +0000571 .of_match_table = tegra_ehci_of_match,
Benoit Goby79ad3b52011-03-09 16:28:56 -0800572 }
573};
Manjunath Goudar9fc5f242013-06-13 11:24:12 -0600574
Stephen Warren4f2fe2d2014-04-14 15:21:23 -0600575static int tegra_ehci_reset(struct usb_hcd *hcd)
576{
577 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
578 int retval;
579 int txfifothresh;
580
581 retval = ehci_setup(hcd);
582 if (retval)
583 return retval;
584
585 /*
586 * We should really pull this value out of tegra_ehci_soc_config, but
587 * to avoid needing access to it, make use of the fact that Tegra20 is
588 * the only one so far that needs a value of 10, and Tegra20 is the
589 * only one which doesn't set has_hostpc.
590 */
591 txfifothresh = ehci->has_hostpc ? 0x10 : 10;
592 ehci_writel(ehci, txfifothresh << 16, &ehci->regs->txfill_tuning);
593
594 return 0;
595}
596
Manjunath Goudar9fc5f242013-06-13 11:24:12 -0600597static const struct ehci_driver_overrides tegra_overrides __initconst = {
598 .extra_priv_size = sizeof(struct tegra_ehci_hcd),
Stephen Warren4f2fe2d2014-04-14 15:21:23 -0600599 .reset = tegra_ehci_reset,
Manjunath Goudar9fc5f242013-06-13 11:24:12 -0600600};
601
602static int __init ehci_tegra_init(void)
603{
604 if (usb_disabled())
605 return -ENODEV;
606
607 pr_info(DRV_NAME ": " DRIVER_DESC "\n");
608
609 ehci_init_driver(&tegra_ehci_hc_driver, &tegra_overrides);
610
611 /*
612 * The Tegra HW has some unusual quirks, which require Tegra-specific
613 * workarounds. We override certain hc_driver functions here to
614 * achieve that. We explicitly do not enhance ehci_driver_overrides to
615 * allow this more easily, since this is an unusual case, and we don't
616 * want to encourage others to override these functions by making it
617 * too easy.
618 */
619
Manjunath Goudar9fc5f242013-06-13 11:24:12 -0600620 tegra_ehci_hc_driver.map_urb_for_dma = tegra_ehci_map_urb_for_dma;
621 tegra_ehci_hc_driver.unmap_urb_for_dma = tegra_ehci_unmap_urb_for_dma;
622 tegra_ehci_hc_driver.hub_control = tegra_ehci_hub_control;
623
624 return platform_driver_register(&tegra_ehci_driver);
625}
626module_init(ehci_tegra_init);
627
628static void __exit ehci_tegra_cleanup(void)
629{
630 platform_driver_unregister(&tegra_ehci_driver);
631}
632module_exit(ehci_tegra_cleanup);
633
634MODULE_DESCRIPTION(DRIVER_DESC);
635MODULE_LICENSE("GPL");
636MODULE_ALIAS("platform:" DRV_NAME);
637MODULE_DEVICE_TABLE(of, tegra_ehci_of_match);