2 * Driver for EHCI UHP on Atmel chips
4 * Copyright (C) 2009 Atmel Corporation,
5 * Nicolas Ferre <nicolas.ferre@atmel.com>
7 * Based on various ehci-*.c drivers
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file COPYING in the main directory of this archive for
14 #include <linux/clk.h>
15 #include <linux/dma-mapping.h>
17 #include <linux/kernel.h>
18 #include <linux/module.h>
20 #include <linux/of_platform.h>
21 #include <linux/platform_device.h>
22 #include <linux/usb.h>
23 #include <linux/usb/hcd.h>
27 #define DRIVER_DESC "EHCI Atmel driver"
29 static const char hcd_name
[] = "ehci-atmel";
31 /* interface and function clocks */
32 #define hcd_to_atmel_ehci_priv(h) \
33 ((struct atmel_ehci_priv *)hcd_to_ehci(h)->priv)
35 struct atmel_ehci_priv
{
41 static struct hc_driver __read_mostly ehci_atmel_hc_driver
;
43 static const struct ehci_driver_overrides ehci_atmel_drv_overrides __initconst
= {
44 .extra_priv_size
= sizeof(struct atmel_ehci_priv
),
47 /*-------------------------------------------------------------------------*/
49 static void atmel_start_clock(struct atmel_ehci_priv
*atmel_ehci
)
51 if (atmel_ehci
->clocked
)
54 clk_prepare_enable(atmel_ehci
->uclk
);
55 clk_prepare_enable(atmel_ehci
->iclk
);
56 atmel_ehci
->clocked
= true;
59 static void atmel_stop_clock(struct atmel_ehci_priv
*atmel_ehci
)
61 if (!atmel_ehci
->clocked
)
64 clk_disable_unprepare(atmel_ehci
->iclk
);
65 clk_disable_unprepare(atmel_ehci
->uclk
);
66 atmel_ehci
->clocked
= false;
69 static void atmel_start_ehci(struct platform_device
*pdev
)
71 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
72 struct atmel_ehci_priv
*atmel_ehci
= hcd_to_atmel_ehci_priv(hcd
);
74 dev_dbg(&pdev
->dev
, "start\n");
75 atmel_start_clock(atmel_ehci
);
78 static void atmel_stop_ehci(struct platform_device
*pdev
)
80 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
81 struct atmel_ehci_priv
*atmel_ehci
= hcd_to_atmel_ehci_priv(hcd
);
83 dev_dbg(&pdev
->dev
, "stop\n");
84 atmel_stop_clock(atmel_ehci
);
87 /*-------------------------------------------------------------------------*/
89 static int ehci_atmel_drv_probe(struct platform_device
*pdev
)
92 const struct hc_driver
*driver
= &ehci_atmel_hc_driver
;
94 struct ehci_hcd
*ehci
;
95 struct atmel_ehci_priv
*atmel_ehci
;
102 pr_debug("Initializing Atmel-SoC USB Host Controller\n");
104 irq
= platform_get_irq(pdev
, 0);
107 "Found HC with no IRQ. Check %s setup!\n",
108 dev_name(&pdev
->dev
));
110 goto fail_create_hcd
;
113 /* Right now device-tree probed devices don't get dma_mask set.
114 * Since shared usb code relies on it, set it here for now.
115 * Once we have dma capability bindings this can go away.
117 retval
= dma_coerce_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(32));
119 goto fail_create_hcd
;
121 hcd
= usb_create_hcd(driver
, &pdev
->dev
, dev_name(&pdev
->dev
));
124 goto fail_create_hcd
;
126 atmel_ehci
= hcd_to_atmel_ehci_priv(hcd
);
128 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
129 hcd
->regs
= devm_ioremap_resource(&pdev
->dev
, res
);
130 if (IS_ERR(hcd
->regs
)) {
131 retval
= PTR_ERR(hcd
->regs
);
132 goto fail_request_resource
;
135 hcd
->rsrc_start
= res
->start
;
136 hcd
->rsrc_len
= resource_size(res
);
138 atmel_ehci
->iclk
= devm_clk_get(&pdev
->dev
, "ehci_clk");
139 if (IS_ERR(atmel_ehci
->iclk
)) {
140 dev_err(&pdev
->dev
, "Error getting interface clock\n");
142 goto fail_request_resource
;
145 atmel_ehci
->uclk
= devm_clk_get(&pdev
->dev
, "usb_clk");
146 if (IS_ERR(atmel_ehci
->uclk
)) {
147 dev_err(&pdev
->dev
, "failed to get uclk\n");
148 retval
= PTR_ERR(atmel_ehci
->uclk
);
149 goto fail_request_resource
;
152 ehci
= hcd_to_ehci(hcd
);
153 /* registers start at offset 0x0 */
154 ehci
->caps
= hcd
->regs
;
156 atmel_start_ehci(pdev
);
158 retval
= usb_add_hcd(hcd
, irq
, IRQF_SHARED
);
161 device_wakeup_enable(hcd
->self
.controller
);
166 atmel_stop_ehci(pdev
);
167 fail_request_resource
:
170 dev_err(&pdev
->dev
, "init %s fail, %d\n",
171 dev_name(&pdev
->dev
), retval
);
176 static int ehci_atmel_drv_remove(struct platform_device
*pdev
)
178 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
183 atmel_stop_ehci(pdev
);
188 static int __maybe_unused
ehci_atmel_drv_suspend(struct device
*dev
)
190 struct usb_hcd
*hcd
= dev_get_drvdata(dev
);
191 struct atmel_ehci_priv
*atmel_ehci
= hcd_to_atmel_ehci_priv(hcd
);
194 ret
= ehci_suspend(hcd
, false);
198 atmel_stop_clock(atmel_ehci
);
202 static int __maybe_unused
ehci_atmel_drv_resume(struct device
*dev
)
204 struct usb_hcd
*hcd
= dev_get_drvdata(dev
);
205 struct atmel_ehci_priv
*atmel_ehci
= hcd_to_atmel_ehci_priv(hcd
);
207 atmel_start_clock(atmel_ehci
);
208 return ehci_resume(hcd
, false);
212 static const struct of_device_id atmel_ehci_dt_ids
[] = {
213 { .compatible
= "atmel,at91sam9g45-ehci" },
217 MODULE_DEVICE_TABLE(of
, atmel_ehci_dt_ids
);
220 static SIMPLE_DEV_PM_OPS(ehci_atmel_pm_ops
, ehci_atmel_drv_suspend
,
221 ehci_atmel_drv_resume
);
223 static struct platform_driver ehci_atmel_driver
= {
224 .probe
= ehci_atmel_drv_probe
,
225 .remove
= ehci_atmel_drv_remove
,
226 .shutdown
= usb_hcd_platform_shutdown
,
228 .name
= "atmel-ehci",
229 .pm
= &ehci_atmel_pm_ops
,
230 .of_match_table
= of_match_ptr(atmel_ehci_dt_ids
),
234 static int __init
ehci_atmel_init(void)
239 pr_info("%s: " DRIVER_DESC
"\n", hcd_name
);
240 ehci_init_driver(&ehci_atmel_hc_driver
, &ehci_atmel_drv_overrides
);
241 return platform_driver_register(&ehci_atmel_driver
);
243 module_init(ehci_atmel_init
);
245 static void __exit
ehci_atmel_cleanup(void)
247 platform_driver_unregister(&ehci_atmel_driver
);
249 module_exit(ehci_atmel_cleanup
);
251 MODULE_DESCRIPTION(DRIVER_DESC
);
252 MODULE_ALIAS("platform:atmel-ehci");
253 MODULE_AUTHOR("Nicolas Ferre");
254 MODULE_LICENSE("GPL");