2 * EHCI-compliant USB host controller driver for NVIDIA Tegra SoCs
4 * Copyright (C) 2010 Google, Inc.
5 * Copyright (C) 2009 - 2013 NVIDIA Corporation
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.
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
19 #include <linux/clk.h>
20 #include <linux/clk/tegra.h>
21 #include <linux/dma-mapping.h>
22 #include <linux/err.h>
23 #include <linux/gpio.h>
25 #include <linux/irq.h>
26 #include <linux/module.h>
28 #include <linux/of_device.h>
29 #include <linux/of_gpio.h>
30 #include <linux/platform_device.h>
31 #include <linux/pm_runtime.h>
32 #include <linux/slab.h>
33 #include <linux/usb/ehci_def.h>
34 #include <linux/usb/tegra_usb_phy.h>
35 #include <linux/usb.h>
36 #include <linux/usb/hcd.h>
37 #include <linux/usb/otg.h>
41 #define TEGRA_USB_BASE 0xC5000000
42 #define TEGRA_USB2_BASE 0xC5004000
43 #define TEGRA_USB3_BASE 0xC5008000
45 #define PORT_WAKE_BITS (PORT_WKOC_E|PORT_WKDISC_E|PORT_WKCONN_E)
47 #define TEGRA_USB_DMA_ALIGN 32
49 #define DRIVER_DESC "Tegra EHCI driver"
50 #define DRV_NAME "tegra-ehci"
52 static struct hc_driver __read_mostly tegra_ehci_hc_driver
;
54 struct tegra_ehci_soc_config
{
58 static int (*orig_hub_control
)(struct usb_hcd
*hcd
,
59 u16 typeReq
, u16 wValue
, u16 wIndex
,
60 char *buf
, u16 wLength
);
62 struct tegra_ehci_hcd
{
63 struct tegra_usb_phy
*phy
;
66 bool needs_double_reset
;
67 enum tegra_usb_phy_port_speed port_speed
;
70 static int tegra_ehci_internal_port_reset(
71 struct ehci_hcd
*ehci
,
72 u32 __iomem
*portsc_reg
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
);
88 * Here we have to do Port Reset at most twice for
89 * Port Enable bit to be set.
91 for (i
= 0; i
< 2; i
++) {
92 temp
= ehci_readl(ehci
, portsc_reg
);
94 ehci_writel(ehci
, temp
, portsc_reg
);
97 ehci_writel(ehci
, temp
, portsc_reg
);
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.
108 temp
= ehci_readl(ehci
, portsc_reg
);
109 } while (!(temp
& PORT_PE
) && tries
--);
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.
121 ehci_writel(ehci
, PORT_CSC
, portsc_reg
);
124 * Write to clear any interrupt status bits that might be set
127 temp
= ehci_readl(ehci
, &ehci
->regs
->status
);
128 ehci_writel(ehci
, temp
, &ehci
->regs
->status
);
130 /* restore original interrupt enable bits */
131 ehci_writel(ehci
, saved_usbintr
, &ehci
->regs
->intr_enable
);
135 static int tegra_ehci_hub_control(
144 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
145 struct tegra_ehci_hcd
*tegra
= (struct tegra_ehci_hcd
*)ehci
->priv
;
146 u32 __iomem
*status_reg
;
151 status_reg
= &ehci
->regs
->port_status
[(wIndex
& 0xff) - 1];
153 spin_lock_irqsave(&ehci
->lock
, flags
);
155 if (typeReq
== GetPortStatus
) {
156 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;
160 tegra_usb_phy_postresume(hcd
->phy
);
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) {
171 temp
&= ~(PORT_RWC_BITS
| PORT_WKCONN_E
);
172 temp
|= PORT_WKDISC_E
| PORT_WKOC_E
;
173 ehci_writel(ehci
, temp
| PORT_SUSPEND
, status_reg
);
176 * If a transaction is in progress, there may be a delay in
177 * suspending the port. Poll until the port is suspended.
179 if (ehci_handshake(ehci
, status_reg
, PORT_SUSPEND
,
181 pr_err("%s: timeout waiting for SUSPEND\n", __func__
);
183 set_bit((wIndex
& 0xff) - 1, &ehci
->suspended_ports
);
187 /* For USB1 port we need to issue Port Reset twice internally */
188 if (tegra
->needs_double_reset
&&
189 (typeReq
== SetPortFeature
&& wValue
== USB_PORT_FEAT_RESET
)) {
190 spin_unlock_irqrestore(&ehci
->lock
, flags
);
191 return tegra_ehci_internal_port_reset(ehci
, status_reg
);
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
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
)) {
209 if (!(temp
& PORT_SUSPEND
))
212 /* Disable disconnect detection during port resume */
213 tegra_usb_phy_preresume(hcd
->phy
);
215 ehci
->reset_done
[wIndex
-1] = jiffies
+ msecs_to_jiffies(25);
217 temp
&= ~(PORT_RWC_BITS
| PORT_WAKE_BITS
);
218 /* start resume signalling */
219 ehci_writel(ehci
, temp
| PORT_RESUME
, status_reg
);
220 set_bit(wIndex
-1, &ehci
->resuming_ports
);
222 spin_unlock_irqrestore(&ehci
->lock
, flags
);
224 spin_lock_irqsave(&ehci
->lock
, flags
);
226 /* Poll until the controller clears RESUME and SUSPEND */
227 if (ehci_handshake(ehci
, status_reg
, PORT_RESUME
, 0, 2000))
228 pr_err("%s: timeout waiting for RESUME\n", __func__
);
229 if (ehci_handshake(ehci
, status_reg
, PORT_SUSPEND
, 0, 2000))
230 pr_err("%s: timeout waiting for SUSPEND\n", __func__
);
232 ehci
->reset_done
[wIndex
-1] = 0;
233 clear_bit(wIndex
-1, &ehci
->resuming_ports
);
235 tegra
->port_resuming
= 1;
239 spin_unlock_irqrestore(&ehci
->lock
, flags
);
241 /* Handle the hub control events here */
242 return orig_hub_control(hcd
, typeReq
, wValue
, wIndex
, buf
, wLength
);
245 spin_unlock_irqrestore(&ehci
->lock
, flags
);
249 struct dma_aligned_buffer
{
251 void *old_xfer_buffer
;
255 static void free_dma_aligned_buffer(struct urb
*urb
)
257 struct dma_aligned_buffer
*temp
;
259 if (!(urb
->transfer_flags
& URB_ALIGNED_TEMP_BUFFER
))
262 temp
= container_of(urb
->transfer_buffer
,
263 struct dma_aligned_buffer
, data
);
265 if (usb_urb_dir_in(urb
))
266 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
);
271 urb
->transfer_flags
&= ~URB_ALIGNED_TEMP_BUFFER
;
274 static int alloc_dma_aligned_buffer(struct urb
*urb
, gfp_t mem_flags
)
276 struct dma_aligned_buffer
*temp
, *kmalloc_ptr
;
279 if (urb
->num_sgs
|| urb
->sg
||
280 urb
->transfer_buffer_length
== 0 ||
281 !((uintptr_t)urb
->transfer_buffer
& (TEGRA_USB_DMA_ALIGN
- 1)))
284 /* Allocate a buffer with enough padding for alignment */
285 kmalloc_size
= urb
->transfer_buffer_length
+
286 sizeof(struct dma_aligned_buffer
) + TEGRA_USB_DMA_ALIGN
- 1;
288 kmalloc_ptr
= kmalloc(kmalloc_size
, mem_flags
);
292 /* Position our struct dma_aligned_buffer such that data is aligned */
293 temp
= PTR_ALIGN(kmalloc_ptr
+ 1, TEGRA_USB_DMA_ALIGN
) - 1;
294 temp
->kmalloc_ptr
= kmalloc_ptr
;
295 temp
->old_xfer_buffer
= urb
->transfer_buffer
;
296 if (usb_urb_dir_out(urb
))
297 memcpy(temp
->data
, urb
->transfer_buffer
,
298 urb
->transfer_buffer_length
);
299 urb
->transfer_buffer
= temp
->data
;
301 urb
->transfer_flags
|= URB_ALIGNED_TEMP_BUFFER
;
306 static int tegra_ehci_map_urb_for_dma(struct usb_hcd
*hcd
, struct urb
*urb
,
311 ret
= alloc_dma_aligned_buffer(urb
, mem_flags
);
315 ret
= usb_hcd_map_urb_for_dma(hcd
, urb
, mem_flags
);
317 free_dma_aligned_buffer(urb
);
322 static void tegra_ehci_unmap_urb_for_dma(struct usb_hcd
*hcd
, struct urb
*urb
)
324 usb_hcd_unmap_urb_for_dma(hcd
, urb
);
325 free_dma_aligned_buffer(urb
);
328 static const struct tegra_ehci_soc_config tegra30_soc_config
= {
332 static const struct tegra_ehci_soc_config tegra20_soc_config
= {
336 static 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
},
342 static int tegra_ehci_probe(struct platform_device
*pdev
)
344 const struct of_device_id
*match
;
345 const struct tegra_ehci_soc_config
*soc_config
;
346 struct resource
*res
;
348 struct ehci_hcd
*ehci
;
349 struct tegra_ehci_hcd
*tegra
;
352 struct usb_phy
*u_phy
;
354 match
= of_match_device(tegra_ehci_of_match
, &pdev
->dev
);
356 dev_err(&pdev
->dev
, "Error: No device match found\n");
359 soc_config
= match
->data
;
361 /* 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.
365 if (!pdev
->dev
.dma_mask
)
366 pdev
->dev
.dma_mask
= &pdev
->dev
.coherent_dma_mask
;
367 if (!pdev
->dev
.coherent_dma_mask
)
368 pdev
->dev
.coherent_dma_mask
= DMA_BIT_MASK(32);
370 hcd
= usb_create_hcd(&tegra_ehci_hc_driver
, &pdev
->dev
,
371 dev_name(&pdev
->dev
));
373 dev_err(&pdev
->dev
, "Unable to create HCD\n");
376 platform_set_drvdata(pdev
, hcd
);
377 ehci
= hcd_to_ehci(hcd
);
378 tegra
= (struct tegra_ehci_hcd
*)ehci
->priv
;
382 tegra
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
383 if (IS_ERR(tegra
->clk
)) {
384 dev_err(&pdev
->dev
, "Can't get ehci clock\n");
385 err
= PTR_ERR(tegra
->clk
);
386 goto cleanup_hcd_create
;
389 err
= clk_prepare_enable(tegra
->clk
);
391 goto cleanup_clk_get
;
393 tegra_periph_reset_assert(tegra
->clk
);
395 tegra_periph_reset_deassert(tegra
->clk
);
397 u_phy
= devm_usb_get_phy_by_phandle(&pdev
->dev
, "nvidia,phy", 0);
399 err
= PTR_ERR(u_phy
);
404 tegra
->needs_double_reset
= of_property_read_bool(pdev
->dev
.of_node
,
405 "nvidia,needs-double-reset");
407 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
409 dev_err(&pdev
->dev
, "Failed to get I/O memory\n");
413 hcd
->rsrc_start
= res
->start
;
414 hcd
->rsrc_len
= resource_size(res
);
415 hcd
->regs
= devm_ioremap(&pdev
->dev
, res
->start
, resource_size(res
));
417 dev_err(&pdev
->dev
, "Failed to remap I/O memory\n");
421 ehci
->caps
= hcd
->regs
+ 0x100;
422 ehci
->has_hostpc
= soc_config
->has_hostpc
;
424 err
= usb_phy_init(hcd
->phy
);
426 dev_err(&pdev
->dev
, "Failed to initialize phy\n");
430 u_phy
->otg
= devm_kzalloc(&pdev
->dev
, sizeof(struct usb_otg
),
433 dev_err(&pdev
->dev
, "Failed to alloc memory for otg\n");
437 u_phy
->otg
->host
= hcd_to_bus(hcd
);
439 err
= usb_phy_set_suspend(hcd
->phy
, 0);
441 dev_err(&pdev
->dev
, "Failed to power on the phy\n");
445 irq
= platform_get_irq(pdev
, 0);
447 dev_err(&pdev
->dev
, "Failed to get IRQ\n");
452 otg_set_host(u_phy
->otg
, &hcd
->self
);
454 err
= usb_add_hcd(hcd
, irq
, IRQF_SHARED
);
456 dev_err(&pdev
->dev
, "Failed to add USB HCD\n");
457 goto cleanup_otg_set_host
;
462 cleanup_otg_set_host
:
463 otg_set_host(u_phy
->otg
, NULL
);
465 usb_phy_shutdown(hcd
->phy
);
467 clk_disable_unprepare(tegra
->clk
);
475 static int tegra_ehci_remove(struct platform_device
*pdev
)
477 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
478 struct tegra_ehci_hcd
*tegra
=
479 (struct tegra_ehci_hcd
*)hcd_to_ehci(hcd
)->priv
;
481 otg_set_host(hcd
->phy
->otg
, NULL
);
483 usb_phy_shutdown(hcd
->phy
);
487 clk_disable_unprepare(tegra
->clk
);
492 static void tegra_ehci_hcd_shutdown(struct platform_device
*pdev
)
494 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
496 if (hcd
->driver
->shutdown
)
497 hcd
->driver
->shutdown(hcd
);
500 static struct platform_driver tegra_ehci_driver
= {
501 .probe
= tegra_ehci_probe
,
502 .remove
= tegra_ehci_remove
,
503 .shutdown
= tegra_ehci_hcd_shutdown
,
506 .of_match_table
= tegra_ehci_of_match
,
510 static const struct ehci_driver_overrides tegra_overrides __initconst
= {
511 .extra_priv_size
= sizeof(struct tegra_ehci_hcd
),
514 static int __init
ehci_tegra_init(void)
519 pr_info(DRV_NAME
": " DRIVER_DESC
"\n");
521 ehci_init_driver(&tegra_ehci_hc_driver
, &tegra_overrides
);
524 * The Tegra HW has some unusual quirks, which require Tegra-specific
525 * workarounds. We override certain hc_driver functions here to
526 * achieve that. We explicitly do not enhance ehci_driver_overrides to
527 * allow this more easily, since this is an unusual case, and we don't
528 * want to encourage others to override these functions by making it
532 orig_hub_control
= tegra_ehci_hc_driver
.hub_control
;
534 tegra_ehci_hc_driver
.map_urb_for_dma
= tegra_ehci_map_urb_for_dma
;
535 tegra_ehci_hc_driver
.unmap_urb_for_dma
= tegra_ehci_unmap_urb_for_dma
;
536 tegra_ehci_hc_driver
.hub_control
= tegra_ehci_hub_control
;
538 return platform_driver_register(&tegra_ehci_driver
);
540 module_init(ehci_tegra_init
);
542 static void __exit
ehci_tegra_cleanup(void)
544 platform_driver_unregister(&tegra_ehci_driver
);
546 module_exit(ehci_tegra_cleanup
);
548 MODULE_DESCRIPTION(DRIVER_DESC
);
549 MODULE_LICENSE("GPL");
550 MODULE_ALIAS("platform:" DRV_NAME
);
551 MODULE_DEVICE_TABLE(of
, tegra_ehci_of_match
);