blob: 663f7908b15c482c9f57bc921d3c976acb04bc53 [file] [log] [blame]
Nicolas Ferre501c9c02009-07-27 14:47:40 -07001/*
2 * Driver for EHCI UHP on Atmel chips
3 *
4 * Copyright (C) 2009 Atmel Corporation,
5 * Nicolas Ferre <nicolas.ferre@atmel.com>
6 *
7 * Based on various ehci-*.c drivers
8 *
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
11 * more details.
12 */
13
14#include <linux/clk.h>
Manjunath Goudar97736962013-04-02 18:24:02 +020015#include <linux/dma-mapping.h>
16#include <linux/io.h>
17#include <linux/kernel.h>
18#include <linux/module.h>
Nicolas Ferre94753752012-03-27 18:23:31 +020019#include <linux/of.h>
Jean-Christophe PLAGNIOL-VILLARD9d843002011-11-22 12:11:13 +080020#include <linux/of_platform.h>
Manjunath Goudar97736962013-04-02 18:24:02 +020021#include <linux/platform_device.h>
22#include <linux/usb.h>
23#include <linux/usb/hcd.h>
24
25#include "ehci.h"
26
27#define DRIVER_DESC "EHCI Atmel driver"
28
29static const char hcd_name[] = "ehci-atmel";
Nicolas Ferre501c9c02009-07-27 14:47:40 -070030
31/* interface and function clocks */
Sylvain Rochet7baddac2015-01-20 14:39:01 +010032#define hcd_to_atmel_ehci_priv(h) \
33 ((struct atmel_ehci_priv *)hcd_to_ehci(h)->priv)
34
35struct atmel_ehci_priv {
36 struct clk *iclk;
37 struct clk *fclk;
38 struct clk *uclk;
39 bool clocked;
40};
41
42static struct hc_driver __read_mostly ehci_atmel_hc_driver;
43
44static const struct ehci_driver_overrides ehci_atmel_drv_overrides __initconst = {
45 .extra_priv_size = sizeof(struct atmel_ehci_priv),
46};
Nicolas Ferre501c9c02009-07-27 14:47:40 -070047
48/*-------------------------------------------------------------------------*/
49
Sylvain Rochet7baddac2015-01-20 14:39:01 +010050static void atmel_start_clock(struct atmel_ehci_priv *atmel_ehci)
Nicolas Ferre501c9c02009-07-27 14:47:40 -070051{
Sylvain Rochet7baddac2015-01-20 14:39:01 +010052 if (atmel_ehci->clocked)
Sylvain Rochetca2c1dc2015-01-20 14:38:59 +010053 return;
Boris BREZILLON0d768fcf2013-10-18 21:26:51 +020054 if (IS_ENABLED(CONFIG_COMMON_CLK)) {
Sylvain Rochet7baddac2015-01-20 14:39:01 +010055 clk_set_rate(atmel_ehci->uclk, 48000000);
56 clk_prepare_enable(atmel_ehci->uclk);
Boris BREZILLON0d768fcf2013-10-18 21:26:51 +020057 }
Sylvain Rochet7baddac2015-01-20 14:39:01 +010058 clk_prepare_enable(atmel_ehci->iclk);
59 clk_prepare_enable(atmel_ehci->fclk);
60 atmel_ehci->clocked = true;
Nicolas Ferre501c9c02009-07-27 14:47:40 -070061}
62
Sylvain Rochet7baddac2015-01-20 14:39:01 +010063static void atmel_stop_clock(struct atmel_ehci_priv *atmel_ehci)
Nicolas Ferre501c9c02009-07-27 14:47:40 -070064{
Sylvain Rochet7baddac2015-01-20 14:39:01 +010065 if (!atmel_ehci->clocked)
Sylvain Rochetca2c1dc2015-01-20 14:38:59 +010066 return;
Sylvain Rochet7baddac2015-01-20 14:39:01 +010067 clk_disable_unprepare(atmel_ehci->fclk);
68 clk_disable_unprepare(atmel_ehci->iclk);
Boris BREZILLON0d768fcf2013-10-18 21:26:51 +020069 if (IS_ENABLED(CONFIG_COMMON_CLK))
Sylvain Rochet7baddac2015-01-20 14:39:01 +010070 clk_disable_unprepare(atmel_ehci->uclk);
71 atmel_ehci->clocked = false;
Nicolas Ferre501c9c02009-07-27 14:47:40 -070072}
73
74static void atmel_start_ehci(struct platform_device *pdev)
75{
Sylvain Rochet7baddac2015-01-20 14:39:01 +010076 struct usb_hcd *hcd = platform_get_drvdata(pdev);
77 struct atmel_ehci_priv *atmel_ehci = hcd_to_atmel_ehci_priv(hcd);
78
Nicolas Ferre501c9c02009-07-27 14:47:40 -070079 dev_dbg(&pdev->dev, "start\n");
Sylvain Rochet7baddac2015-01-20 14:39:01 +010080 atmel_start_clock(atmel_ehci);
Nicolas Ferre501c9c02009-07-27 14:47:40 -070081}
82
83static void atmel_stop_ehci(struct platform_device *pdev)
84{
Sylvain Rochet7baddac2015-01-20 14:39:01 +010085 struct usb_hcd *hcd = platform_get_drvdata(pdev);
86 struct atmel_ehci_priv *atmel_ehci = hcd_to_atmel_ehci_priv(hcd);
87
Nicolas Ferre501c9c02009-07-27 14:47:40 -070088 dev_dbg(&pdev->dev, "stop\n");
Sylvain Rochet7baddac2015-01-20 14:39:01 +010089 atmel_stop_clock(atmel_ehci);
Nicolas Ferre501c9c02009-07-27 14:47:40 -070090}
91
92/*-------------------------------------------------------------------------*/
93
Bill Pemberton41ac7b32012-11-19 13:21:48 -050094static int ehci_atmel_drv_probe(struct platform_device *pdev)
Nicolas Ferre501c9c02009-07-27 14:47:40 -070095{
96 struct usb_hcd *hcd;
97 const struct hc_driver *driver = &ehci_atmel_hc_driver;
98 struct resource *res;
Manjunath Goudar97736962013-04-02 18:24:02 +020099 struct ehci_hcd *ehci;
Sylvain Rochet7baddac2015-01-20 14:39:01 +0100100 struct atmel_ehci_priv *atmel_ehci;
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700101 int irq;
102 int retval;
103
104 if (usb_disabled())
105 return -ENODEV;
106
107 pr_debug("Initializing Atmel-SoC USB Host Controller\n");
108
109 irq = platform_get_irq(pdev, 0);
110 if (irq <= 0) {
111 dev_err(&pdev->dev,
112 "Found HC with no IRQ. Check %s setup!\n",
113 dev_name(&pdev->dev));
114 retval = -ENODEV;
115 goto fail_create_hcd;
116 }
117
Jean-Christophe PLAGNIOL-VILLARD9d843002011-11-22 12:11:13 +0800118 /* Right now device-tree probed devices don't get dma_mask set.
119 * Since shared usb code relies on it, set it here for now.
120 * Once we have dma capability bindings this can go away.
121 */
Russell Kinge1fd7342013-06-27 12:36:37 +0100122 retval = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +0100123 if (retval)
124 goto fail_create_hcd;
Jean-Christophe PLAGNIOL-VILLARD9d843002011-11-22 12:11:13 +0800125
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700126 hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev));
127 if (!hcd) {
128 retval = -ENOMEM;
129 goto fail_create_hcd;
130 }
Sylvain Rochet7baddac2015-01-20 14:39:01 +0100131 atmel_ehci = hcd_to_atmel_ehci_priv(hcd);
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700132
133 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding148e1132013-01-21 11:09:22 +0100134 hcd->regs = devm_ioremap_resource(&pdev->dev, res);
135 if (IS_ERR(hcd->regs)) {
136 retval = PTR_ERR(hcd->regs);
Julia Lawall97983432012-07-29 21:46:05 +0200137 goto fail_request_resource;
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700138 }
139
Varka Bhadram0fb5f702014-11-04 07:51:08 +0530140 hcd->rsrc_start = res->start;
141 hcd->rsrc_len = resource_size(res);
142
Sylvain Rochet7baddac2015-01-20 14:39:01 +0100143 atmel_ehci->iclk = devm_clk_get(&pdev->dev, "ehci_clk");
144 if (IS_ERR(atmel_ehci->iclk)) {
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700145 dev_err(&pdev->dev, "Error getting interface clock\n");
146 retval = -ENOENT;
Julia Lawall97983432012-07-29 21:46:05 +0200147 goto fail_request_resource;
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700148 }
Sylvain Rochet7baddac2015-01-20 14:39:01 +0100149 atmel_ehci->fclk = devm_clk_get(&pdev->dev, "uhpck");
150 if (IS_ERR(atmel_ehci->fclk)) {
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700151 dev_err(&pdev->dev, "Error getting function clock\n");
152 retval = -ENOENT;
Julia Lawall97983432012-07-29 21:46:05 +0200153 goto fail_request_resource;
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700154 }
Boris BREZILLON0d768fcf2013-10-18 21:26:51 +0200155 if (IS_ENABLED(CONFIG_COMMON_CLK)) {
Sylvain Rochet7baddac2015-01-20 14:39:01 +0100156 atmel_ehci->uclk = devm_clk_get(&pdev->dev, "usb_clk");
157 if (IS_ERR(atmel_ehci->uclk)) {
Boris BREZILLON0d768fcf2013-10-18 21:26:51 +0200158 dev_err(&pdev->dev, "failed to get uclk\n");
Sylvain Rochet7baddac2015-01-20 14:39:01 +0100159 retval = PTR_ERR(atmel_ehci->uclk);
Boris BREZILLON0d768fcf2013-10-18 21:26:51 +0200160 goto fail_request_resource;
161 }
162 }
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700163
Manjunath Goudar97736962013-04-02 18:24:02 +0200164 ehci = hcd_to_ehci(hcd);
165 /* registers start at offset 0x0 */
166 ehci->caps = hcd->regs;
167
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700168 atmel_start_ehci(pdev);
169
170 retval = usb_add_hcd(hcd, irq, IRQF_SHARED);
171 if (retval)
172 goto fail_add_hcd;
Peter Chen3c9740a2013-11-05 10:46:02 +0800173 device_wakeup_enable(hcd->self.controller);
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700174
175 return retval;
176
177fail_add_hcd:
178 atmel_stop_ehci(pdev);
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700179fail_request_resource:
180 usb_put_hcd(hcd);
181fail_create_hcd:
182 dev_err(&pdev->dev, "init %s fail, %d\n",
183 dev_name(&pdev->dev), retval);
184
185 return retval;
186}
187
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500188static int ehci_atmel_drv_remove(struct platform_device *pdev)
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700189{
190 struct usb_hcd *hcd = platform_get_drvdata(pdev);
191
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700192 usb_remove_hcd(hcd);
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700193 usb_put_hcd(hcd);
194
195 atmel_stop_ehci(pdev);
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700196
197 return 0;
198}
199
Sylvain Rochetca2c1dc2015-01-20 14:38:59 +0100200#ifdef CONFIG_PM
201static int ehci_atmel_drv_suspend(struct device *dev)
202{
203 struct usb_hcd *hcd = dev_get_drvdata(dev);
Sylvain Rochet7baddac2015-01-20 14:39:01 +0100204 struct atmel_ehci_priv *atmel_ehci = hcd_to_atmel_ehci_priv(hcd);
Sylvain Rochetca2c1dc2015-01-20 14:38:59 +0100205 int ret;
206
207 ret = ehci_suspend(hcd, false);
208 if (ret)
209 return ret;
210
Sylvain Rochet7baddac2015-01-20 14:39:01 +0100211 atmel_stop_clock(atmel_ehci);
Sylvain Rochetca2c1dc2015-01-20 14:38:59 +0100212 return 0;
213}
214
215static int ehci_atmel_drv_resume(struct device *dev)
216{
217 struct usb_hcd *hcd = dev_get_drvdata(dev);
Sylvain Rochet7baddac2015-01-20 14:39:01 +0100218 struct atmel_ehci_priv *atmel_ehci = hcd_to_atmel_ehci_priv(hcd);
Sylvain Rochetca2c1dc2015-01-20 14:38:59 +0100219
Sylvain Rochet7baddac2015-01-20 14:39:01 +0100220 atmel_start_clock(atmel_ehci);
Sylvain Rochetca2c1dc2015-01-20 14:38:59 +0100221 return ehci_resume(hcd, false);
222}
223#endif
224
Jean-Christophe PLAGNIOL-VILLARD9d843002011-11-22 12:11:13 +0800225#ifdef CONFIG_OF
226static const struct of_device_id atmel_ehci_dt_ids[] = {
227 { .compatible = "atmel,at91sam9g45-ehci" },
228 { /* sentinel */ }
229};
230
231MODULE_DEVICE_TABLE(of, atmel_ehci_dt_ids);
232#endif
233
Sylvain Rochetca2c1dc2015-01-20 14:38:59 +0100234static SIMPLE_DEV_PM_OPS(ehci_atmel_pm_ops, ehci_atmel_drv_suspend,
235 ehci_atmel_drv_resume);
236
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700237static struct platform_driver ehci_atmel_driver = {
238 .probe = ehci_atmel_drv_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500239 .remove = ehci_atmel_drv_remove,
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700240 .shutdown = usb_hcd_platform_shutdown,
Jean-Christophe PLAGNIOL-VILLARD9d843002011-11-22 12:11:13 +0800241 .driver = {
242 .name = "atmel-ehci",
Sylvain Rochetca2c1dc2015-01-20 14:38:59 +0100243 .pm = &ehci_atmel_pm_ops,
Jean-Christophe PLAGNIOL-VILLARD9d843002011-11-22 12:11:13 +0800244 .of_match_table = of_match_ptr(atmel_ehci_dt_ids),
245 },
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700246};
Manjunath Goudar97736962013-04-02 18:24:02 +0200247
248static int __init ehci_atmel_init(void)
249{
250 if (usb_disabled())
251 return -ENODEV;
252
253 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
Sylvain Rochet7baddac2015-01-20 14:39:01 +0100254 ehci_init_driver(&ehci_atmel_hc_driver, &ehci_atmel_drv_overrides);
Manjunath Goudar97736962013-04-02 18:24:02 +0200255 return platform_driver_register(&ehci_atmel_driver);
256}
257module_init(ehci_atmel_init);
258
259static void __exit ehci_atmel_cleanup(void)
260{
261 platform_driver_unregister(&ehci_atmel_driver);
262}
263module_exit(ehci_atmel_cleanup);
264
265MODULE_DESCRIPTION(DRIVER_DESC);
266MODULE_ALIAS("platform:atmel-ehci");
267MODULE_AUTHOR("Nicolas Ferre");
268MODULE_LICENSE("GPL");