1 // SPDX-License-Identifier: GPL-2.0+
3 * EHCI-compliant USB host controller driver for NVIDIA Tegra SoCs
5 * Copyright (C) 2010 Google, Inc.
6 * Copyright (C) 2009 - 2013 NVIDIA Corporation
10 #include <linux/dma-mapping.h>
11 #include <linux/err.h>
12 #include <linux/gpio.h>
14 #include <linux/irq.h>
15 #include <linux/module.h>
17 #include <linux/of_device.h>
18 #include <linux/of_gpio.h>
19 #include <linux/platform_device.h>
20 #include <linux/pm_runtime.h>
21 #include <linux/reset.h>
22 #include <linux/slab.h>
23 #include <linux/usb/ehci_def.h>
24 #include <linux/usb/tegra_usb_phy.h>
25 #include <linux/usb.h>
26 #include <linux/usb/hcd.h>
27 #include <linux/usb/otg.h>
31 #define PORT_WAKE_BITS (PORT_WKOC_E|PORT_WKDISC_E|PORT_WKCONN_E)
33 #define TEGRA_USB_DMA_ALIGN 32
35 #define DRIVER_DESC "Tegra EHCI driver"
36 #define DRV_NAME "tegra-ehci"
38 static struct hc_driver __read_mostly tegra_ehci_hc_driver
;
40 struct tegra_ehci_soc_config
{
44 struct tegra_ehci_hcd
{
45 struct tegra_usb_phy
*phy
;
47 struct reset_control
*rst
;
49 bool needs_double_reset
;
50 enum tegra_usb_phy_port_speed port_speed
;
53 static int tegra_reset_usb_controller(struct platform_device
*pdev
)
55 struct device_node
*phy_np
;
56 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
57 struct tegra_ehci_hcd
*tegra
=
58 (struct tegra_ehci_hcd
*)hcd_to_ehci(hcd
)->priv
;
59 struct reset_control
*rst
;
62 phy_np
= of_parse_phandle(pdev
->dev
.of_node
, "nvidia,phy", 0);
67 * The 1st USB controller contains some UTMI pad registers that are
68 * global for all the controllers on the chip. Those registers are
69 * also cleared when reset is asserted to the 1st controller.
71 rst
= of_reset_control_get_shared(phy_np
, "utmi-pads");
74 "can't get utmi-pads reset from the PHY\n");
76 "continuing, but please update your DT\n");
79 * PHY driver performs UTMI-pads reset in a case of
82 reset_control_put(rst
);
87 /* reset control is shared, hence initialize it first */
88 err
= reset_control_deassert(tegra
->rst
);
92 err
= reset_control_assert(tegra
->rst
);
98 err
= reset_control_deassert(tegra
->rst
);
105 static int tegra_ehci_internal_port_reset(
106 struct ehci_hcd
*ehci
,
107 u32 __iomem
*portsc_reg
116 spin_lock_irqsave(&ehci
->lock
, flags
);
117 saved_usbintr
= ehci_readl(ehci
, &ehci
->regs
->intr_enable
);
118 /* disable USB interrupt */
119 ehci_writel(ehci
, 0, &ehci
->regs
->intr_enable
);
120 spin_unlock_irqrestore(&ehci
->lock
, flags
);
123 * Here we have to do Port Reset at most twice for
124 * Port Enable bit to be set.
126 for (i
= 0; i
< 2; i
++) {
127 temp
= ehci_readl(ehci
, portsc_reg
);
129 ehci_writel(ehci
, temp
, portsc_reg
);
132 ehci_writel(ehci
, temp
, portsc_reg
);
138 * Up to this point, Port Enable bit is
139 * expected to be set after 2 ms waiting.
140 * USB1 usually takes extra 45 ms, for safety,
141 * we take 100 ms as timeout.
143 temp
= ehci_readl(ehci
, portsc_reg
);
144 } while (!(temp
& PORT_PE
) && tries
--);
152 * Clear Connect Status Change bit if it's set.
153 * We can't clear PORT_PEC. It will also cause PORT_PE to be cleared.
156 ehci_writel(ehci
, PORT_CSC
, portsc_reg
);
159 * Write to clear any interrupt status bits that might be set
162 temp
= ehci_readl(ehci
, &ehci
->regs
->status
);
163 ehci_writel(ehci
, temp
, &ehci
->regs
->status
);
165 /* restore original interrupt enable bits */
166 ehci_writel(ehci
, saved_usbintr
, &ehci
->regs
->intr_enable
);
170 static int tegra_ehci_hub_control(
179 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
180 struct tegra_ehci_hcd
*tegra
= (struct tegra_ehci_hcd
*)ehci
->priv
;
181 u32 __iomem
*status_reg
;
186 status_reg
= &ehci
->regs
->port_status
[(wIndex
& 0xff) - 1];
188 spin_lock_irqsave(&ehci
->lock
, flags
);
190 if (typeReq
== GetPortStatus
) {
191 temp
= ehci_readl(ehci
, status_reg
);
192 if (tegra
->port_resuming
&& !(temp
& PORT_SUSPEND
)) {
193 /* Resume completed, re-enable disconnect detection */
194 tegra
->port_resuming
= 0;
195 tegra_usb_phy_postresume(hcd
->usb_phy
);
199 else if (typeReq
== SetPortFeature
&& wValue
== USB_PORT_FEAT_SUSPEND
) {
200 temp
= ehci_readl(ehci
, status_reg
);
201 if ((temp
& PORT_PE
) == 0 || (temp
& PORT_RESET
) != 0) {
206 temp
&= ~(PORT_RWC_BITS
| PORT_WKCONN_E
);
207 temp
|= PORT_WKDISC_E
| PORT_WKOC_E
;
208 ehci_writel(ehci
, temp
| PORT_SUSPEND
, status_reg
);
211 * If a transaction is in progress, there may be a delay in
212 * suspending the port. Poll until the port is suspended.
214 if (ehci_handshake(ehci
, status_reg
, PORT_SUSPEND
,
216 pr_err("%s: timeout waiting for SUSPEND\n", __func__
);
218 set_bit((wIndex
& 0xff) - 1, &ehci
->suspended_ports
);
222 /* For USB1 port we need to issue Port Reset twice internally */
223 if (tegra
->needs_double_reset
&&
224 (typeReq
== SetPortFeature
&& wValue
== USB_PORT_FEAT_RESET
)) {
225 spin_unlock_irqrestore(&ehci
->lock
, flags
);
226 return tegra_ehci_internal_port_reset(ehci
, status_reg
);
230 * Tegra host controller will time the resume operation to clear the bit
231 * when the port control state switches to HS or FS Idle. This behavior
232 * is different from EHCI where the host controller driver is required
233 * to set this bit to a zero after the resume duration is timed in the
236 else if (typeReq
== ClearPortFeature
&&
237 wValue
== USB_PORT_FEAT_SUSPEND
) {
238 temp
= ehci_readl(ehci
, status_reg
);
239 if ((temp
& PORT_RESET
) || !(temp
& PORT_PE
)) {
244 if (!(temp
& PORT_SUSPEND
))
247 /* Disable disconnect detection during port resume */
248 tegra_usb_phy_preresume(hcd
->usb_phy
);
250 ehci
->reset_done
[wIndex
-1] = jiffies
+ msecs_to_jiffies(25);
252 temp
&= ~(PORT_RWC_BITS
| PORT_WAKE_BITS
);
253 /* start resume signalling */
254 ehci_writel(ehci
, temp
| PORT_RESUME
, status_reg
);
255 set_bit(wIndex
-1, &ehci
->resuming_ports
);
257 spin_unlock_irqrestore(&ehci
->lock
, flags
);
259 spin_lock_irqsave(&ehci
->lock
, flags
);
261 /* Poll until the controller clears RESUME and SUSPEND */
262 if (ehci_handshake(ehci
, status_reg
, PORT_RESUME
, 0, 2000))
263 pr_err("%s: timeout waiting for RESUME\n", __func__
);
264 if (ehci_handshake(ehci
, status_reg
, PORT_SUSPEND
, 0, 2000))
265 pr_err("%s: timeout waiting for SUSPEND\n", __func__
);
267 ehci
->reset_done
[wIndex
-1] = 0;
268 clear_bit(wIndex
-1, &ehci
->resuming_ports
);
270 tegra
->port_resuming
= 1;
274 spin_unlock_irqrestore(&ehci
->lock
, flags
);
276 /* Handle the hub control events here */
277 return ehci_hub_control(hcd
, typeReq
, wValue
, wIndex
, buf
, wLength
);
280 spin_unlock_irqrestore(&ehci
->lock
, flags
);
284 struct dma_aligned_buffer
{
286 void *old_xfer_buffer
;
290 static void free_dma_aligned_buffer(struct urb
*urb
)
292 struct dma_aligned_buffer
*temp
;
295 if (!(urb
->transfer_flags
& URB_ALIGNED_TEMP_BUFFER
))
298 temp
= container_of(urb
->transfer_buffer
,
299 struct dma_aligned_buffer
, data
);
301 if (usb_urb_dir_in(urb
)) {
302 if (usb_pipeisoc(urb
->pipe
))
303 length
= urb
->transfer_buffer_length
;
305 length
= urb
->actual_length
;
307 memcpy(temp
->old_xfer_buffer
, temp
->data
, length
);
309 urb
->transfer_buffer
= temp
->old_xfer_buffer
;
310 kfree(temp
->kmalloc_ptr
);
312 urb
->transfer_flags
&= ~URB_ALIGNED_TEMP_BUFFER
;
315 static int alloc_dma_aligned_buffer(struct urb
*urb
, gfp_t mem_flags
)
317 struct dma_aligned_buffer
*temp
, *kmalloc_ptr
;
320 if (urb
->num_sgs
|| urb
->sg
||
321 urb
->transfer_buffer_length
== 0 ||
322 !((uintptr_t)urb
->transfer_buffer
& (TEGRA_USB_DMA_ALIGN
- 1)))
325 /* Allocate a buffer with enough padding for alignment */
326 kmalloc_size
= urb
->transfer_buffer_length
+
327 sizeof(struct dma_aligned_buffer
) + TEGRA_USB_DMA_ALIGN
- 1;
329 kmalloc_ptr
= kmalloc(kmalloc_size
, mem_flags
);
333 /* Position our struct dma_aligned_buffer such that data is aligned */
334 temp
= PTR_ALIGN(kmalloc_ptr
+ 1, TEGRA_USB_DMA_ALIGN
) - 1;
335 temp
->kmalloc_ptr
= kmalloc_ptr
;
336 temp
->old_xfer_buffer
= urb
->transfer_buffer
;
337 if (usb_urb_dir_out(urb
))
338 memcpy(temp
->data
, urb
->transfer_buffer
,
339 urb
->transfer_buffer_length
);
340 urb
->transfer_buffer
= temp
->data
;
342 urb
->transfer_flags
|= URB_ALIGNED_TEMP_BUFFER
;
347 static int tegra_ehci_map_urb_for_dma(struct usb_hcd
*hcd
, struct urb
*urb
,
352 ret
= alloc_dma_aligned_buffer(urb
, mem_flags
);
356 ret
= usb_hcd_map_urb_for_dma(hcd
, urb
, mem_flags
);
358 free_dma_aligned_buffer(urb
);
363 static void tegra_ehci_unmap_urb_for_dma(struct usb_hcd
*hcd
, struct urb
*urb
)
365 usb_hcd_unmap_urb_for_dma(hcd
, urb
);
366 free_dma_aligned_buffer(urb
);
369 static const struct tegra_ehci_soc_config tegra30_soc_config
= {
373 static const struct tegra_ehci_soc_config tegra20_soc_config
= {
377 static const struct of_device_id tegra_ehci_of_match
[] = {
378 { .compatible
= "nvidia,tegra30-ehci", .data
= &tegra30_soc_config
},
379 { .compatible
= "nvidia,tegra20-ehci", .data
= &tegra20_soc_config
},
383 static int tegra_ehci_probe(struct platform_device
*pdev
)
385 const struct of_device_id
*match
;
386 const struct tegra_ehci_soc_config
*soc_config
;
387 struct resource
*res
;
389 struct ehci_hcd
*ehci
;
390 struct tegra_ehci_hcd
*tegra
;
393 struct usb_phy
*u_phy
;
395 match
= of_match_device(tegra_ehci_of_match
, &pdev
->dev
);
397 dev_err(&pdev
->dev
, "Error: No device match found\n");
400 soc_config
= match
->data
;
402 /* Right now device-tree probed devices don't get dma_mask set.
403 * Since shared usb code relies on it, set it here for now.
404 * Once we have dma capability bindings this can go away.
406 err
= dma_coerce_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(32));
410 hcd
= usb_create_hcd(&tegra_ehci_hc_driver
, &pdev
->dev
,
411 dev_name(&pdev
->dev
));
413 dev_err(&pdev
->dev
, "Unable to create HCD\n");
416 platform_set_drvdata(pdev
, hcd
);
417 ehci
= hcd_to_ehci(hcd
);
418 tegra
= (struct tegra_ehci_hcd
*)ehci
->priv
;
422 tegra
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
423 if (IS_ERR(tegra
->clk
)) {
424 dev_err(&pdev
->dev
, "Can't get ehci clock\n");
425 err
= PTR_ERR(tegra
->clk
);
426 goto cleanup_hcd_create
;
429 tegra
->rst
= devm_reset_control_get_shared(&pdev
->dev
, "usb");
430 if (IS_ERR(tegra
->rst
)) {
431 dev_err(&pdev
->dev
, "Can't get ehci reset\n");
432 err
= PTR_ERR(tegra
->rst
);
433 goto cleanup_hcd_create
;
436 err
= clk_prepare_enable(tegra
->clk
);
438 goto cleanup_hcd_create
;
440 err
= tegra_reset_usb_controller(pdev
);
442 dev_err(&pdev
->dev
, "Failed to reset controller\n");
446 u_phy
= devm_usb_get_phy_by_phandle(&pdev
->dev
, "nvidia,phy", 0);
451 hcd
->usb_phy
= u_phy
;
452 hcd
->skip_phy_initialization
= 1;
454 tegra
->needs_double_reset
= of_property_read_bool(pdev
->dev
.of_node
,
455 "nvidia,needs-double-reset");
457 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
458 hcd
->regs
= devm_ioremap_resource(&pdev
->dev
, res
);
459 if (IS_ERR(hcd
->regs
)) {
460 err
= PTR_ERR(hcd
->regs
);
463 hcd
->rsrc_start
= res
->start
;
464 hcd
->rsrc_len
= resource_size(res
);
466 ehci
->caps
= hcd
->regs
+ 0x100;
467 ehci
->has_hostpc
= soc_config
->has_hostpc
;
469 err
= usb_phy_init(hcd
->usb_phy
);
471 dev_err(&pdev
->dev
, "Failed to initialize phy\n");
475 u_phy
->otg
= devm_kzalloc(&pdev
->dev
, sizeof(struct usb_otg
),
481 u_phy
->otg
->host
= hcd_to_bus(hcd
);
483 err
= usb_phy_set_suspend(hcd
->usb_phy
, 0);
485 dev_err(&pdev
->dev
, "Failed to power on the phy\n");
489 irq
= platform_get_irq(pdev
, 0);
491 dev_err(&pdev
->dev
, "Failed to get IRQ\n");
496 otg_set_host(u_phy
->otg
, &hcd
->self
);
498 err
= usb_add_hcd(hcd
, irq
, IRQF_SHARED
);
500 dev_err(&pdev
->dev
, "Failed to add USB HCD\n");
501 goto cleanup_otg_set_host
;
503 device_wakeup_enable(hcd
->self
.controller
);
507 cleanup_otg_set_host
:
508 otg_set_host(u_phy
->otg
, NULL
);
510 usb_phy_shutdown(hcd
->usb_phy
);
512 clk_disable_unprepare(tegra
->clk
);
518 static int tegra_ehci_remove(struct platform_device
*pdev
)
520 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
521 struct tegra_ehci_hcd
*tegra
=
522 (struct tegra_ehci_hcd
*)hcd_to_ehci(hcd
)->priv
;
524 otg_set_host(hcd
->usb_phy
->otg
, NULL
);
526 usb_phy_shutdown(hcd
->usb_phy
);
529 reset_control_assert(tegra
->rst
);
532 clk_disable_unprepare(tegra
->clk
);
539 static void tegra_ehci_hcd_shutdown(struct platform_device
*pdev
)
541 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
543 if (hcd
->driver
->shutdown
)
544 hcd
->driver
->shutdown(hcd
);
547 static struct platform_driver tegra_ehci_driver
= {
548 .probe
= tegra_ehci_probe
,
549 .remove
= tegra_ehci_remove
,
550 .shutdown
= tegra_ehci_hcd_shutdown
,
553 .of_match_table
= tegra_ehci_of_match
,
557 static int tegra_ehci_reset(struct usb_hcd
*hcd
)
559 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
563 retval
= ehci_setup(hcd
);
568 * We should really pull this value out of tegra_ehci_soc_config, but
569 * to avoid needing access to it, make use of the fact that Tegra20 is
570 * the only one so far that needs a value of 10, and Tegra20 is the
571 * only one which doesn't set has_hostpc.
573 txfifothresh
= ehci
->has_hostpc
? 0x10 : 10;
574 ehci_writel(ehci
, txfifothresh
<< 16, &ehci
->regs
->txfill_tuning
);
579 static const struct ehci_driver_overrides tegra_overrides __initconst
= {
580 .extra_priv_size
= sizeof(struct tegra_ehci_hcd
),
581 .reset
= tegra_ehci_reset
,
584 static int __init
ehci_tegra_init(void)
589 pr_info(DRV_NAME
": " DRIVER_DESC
"\n");
591 ehci_init_driver(&tegra_ehci_hc_driver
, &tegra_overrides
);
594 * The Tegra HW has some unusual quirks, which require Tegra-specific
595 * workarounds. We override certain hc_driver functions here to
596 * achieve that. We explicitly do not enhance ehci_driver_overrides to
597 * allow this more easily, since this is an unusual case, and we don't
598 * want to encourage others to override these functions by making it
602 tegra_ehci_hc_driver
.map_urb_for_dma
= tegra_ehci_map_urb_for_dma
;
603 tegra_ehci_hc_driver
.unmap_urb_for_dma
= tegra_ehci_unmap_urb_for_dma
;
604 tegra_ehci_hc_driver
.hub_control
= tegra_ehci_hub_control
;
606 return platform_driver_register(&tegra_ehci_driver
);
608 module_init(ehci_tegra_init
);
610 static void __exit
ehci_tegra_cleanup(void)
612 platform_driver_unregister(&tegra_ehci_driver
);
614 module_exit(ehci_tegra_cleanup
);
616 MODULE_DESCRIPTION(DRIVER_DESC
);
617 MODULE_LICENSE("GPL");
618 MODULE_ALIAS("platform:" DRV_NAME
);
619 MODULE_DEVICE_TABLE(of
, tegra_ehci_of_match
);