blob: 8e7323e07f794435d001ee2df81135fa5bc2325e [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";
30static struct hc_driver __read_mostly ehci_atmel_hc_driver;
Nicolas Ferre501c9c02009-07-27 14:47:40 -070031
32/* interface and function clocks */
33static struct clk *iclk, *fclk;
34static int clocked;
35
36/*-------------------------------------------------------------------------*/
37
38static void atmel_start_clock(void)
39{
Boris BREZILLONcfafb622013-06-19 13:20:09 +020040 clk_prepare_enable(iclk);
41 clk_prepare_enable(fclk);
Nicolas Ferre501c9c02009-07-27 14:47:40 -070042 clocked = 1;
43}
44
45static void atmel_stop_clock(void)
46{
Boris BREZILLONcfafb622013-06-19 13:20:09 +020047 clk_disable_unprepare(fclk);
48 clk_disable_unprepare(iclk);
Nicolas Ferre501c9c02009-07-27 14:47:40 -070049 clocked = 0;
50}
51
52static void atmel_start_ehci(struct platform_device *pdev)
53{
54 dev_dbg(&pdev->dev, "start\n");
55 atmel_start_clock();
56}
57
58static void atmel_stop_ehci(struct platform_device *pdev)
59{
60 dev_dbg(&pdev->dev, "stop\n");
61 atmel_stop_clock();
62}
63
64/*-------------------------------------------------------------------------*/
65
Bill Pemberton41ac7b32012-11-19 13:21:48 -050066static int ehci_atmel_drv_probe(struct platform_device *pdev)
Nicolas Ferre501c9c02009-07-27 14:47:40 -070067{
68 struct usb_hcd *hcd;
69 const struct hc_driver *driver = &ehci_atmel_hc_driver;
70 struct resource *res;
Manjunath Goudar97736962013-04-02 18:24:02 +020071 struct ehci_hcd *ehci;
Nicolas Ferre501c9c02009-07-27 14:47:40 -070072 int irq;
73 int retval;
74
75 if (usb_disabled())
76 return -ENODEV;
77
78 pr_debug("Initializing Atmel-SoC USB Host Controller\n");
79
80 irq = platform_get_irq(pdev, 0);
81 if (irq <= 0) {
82 dev_err(&pdev->dev,
83 "Found HC with no IRQ. Check %s setup!\n",
84 dev_name(&pdev->dev));
85 retval = -ENODEV;
86 goto fail_create_hcd;
87 }
88
Jean-Christophe PLAGNIOL-VILLARD9d843002011-11-22 12:11:13 +080089 /* Right now device-tree probed devices don't get dma_mask set.
90 * Since shared usb code relies on it, set it here for now.
91 * Once we have dma capability bindings this can go away.
92 */
Russell Kinge1fd7342013-06-27 12:36:37 +010093 retval = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +010094 if (retval)
95 goto fail_create_hcd;
Jean-Christophe PLAGNIOL-VILLARD9d843002011-11-22 12:11:13 +080096
Nicolas Ferre501c9c02009-07-27 14:47:40 -070097 hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev));
98 if (!hcd) {
99 retval = -ENOMEM;
100 goto fail_create_hcd;
101 }
102
103 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
104 if (!res) {
105 dev_err(&pdev->dev,
106 "Found HC with no register addr. Check %s setup!\n",
107 dev_name(&pdev->dev));
108 retval = -ENODEV;
109 goto fail_request_resource;
110 }
111 hcd->rsrc_start = res->start;
H Hartley Sweetenf65c3542009-12-14 18:15:35 -0500112 hcd->rsrc_len = resource_size(res);
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700113
Thierry Reding148e1132013-01-21 11:09:22 +0100114 hcd->regs = devm_ioremap_resource(&pdev->dev, res);
115 if (IS_ERR(hcd->regs)) {
116 retval = PTR_ERR(hcd->regs);
Julia Lawall97983432012-07-29 21:46:05 +0200117 goto fail_request_resource;
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700118 }
119
Julia Lawall97983432012-07-29 21:46:05 +0200120 iclk = devm_clk_get(&pdev->dev, "ehci_clk");
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700121 if (IS_ERR(iclk)) {
122 dev_err(&pdev->dev, "Error getting interface clock\n");
123 retval = -ENOENT;
Julia Lawall97983432012-07-29 21:46:05 +0200124 goto fail_request_resource;
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700125 }
Julia Lawall97983432012-07-29 21:46:05 +0200126 fclk = devm_clk_get(&pdev->dev, "uhpck");
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700127 if (IS_ERR(fclk)) {
128 dev_err(&pdev->dev, "Error getting function clock\n");
129 retval = -ENOENT;
Julia Lawall97983432012-07-29 21:46:05 +0200130 goto fail_request_resource;
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700131 }
132
Manjunath Goudar97736962013-04-02 18:24:02 +0200133 ehci = hcd_to_ehci(hcd);
134 /* registers start at offset 0x0 */
135 ehci->caps = hcd->regs;
136
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700137 atmel_start_ehci(pdev);
138
139 retval = usb_add_hcd(hcd, irq, IRQF_SHARED);
140 if (retval)
141 goto fail_add_hcd;
142
143 return retval;
144
145fail_add_hcd:
146 atmel_stop_ehci(pdev);
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700147fail_request_resource:
148 usb_put_hcd(hcd);
149fail_create_hcd:
150 dev_err(&pdev->dev, "init %s fail, %d\n",
151 dev_name(&pdev->dev), retval);
152
153 return retval;
154}
155
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500156static int ehci_atmel_drv_remove(struct platform_device *pdev)
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700157{
158 struct usb_hcd *hcd = platform_get_drvdata(pdev);
159
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700160 usb_remove_hcd(hcd);
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700161 usb_put_hcd(hcd);
162
163 atmel_stop_ehci(pdev);
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700164 fclk = iclk = NULL;
165
166 return 0;
167}
168
Jean-Christophe PLAGNIOL-VILLARD9d843002011-11-22 12:11:13 +0800169#ifdef CONFIG_OF
170static const struct of_device_id atmel_ehci_dt_ids[] = {
171 { .compatible = "atmel,at91sam9g45-ehci" },
172 { /* sentinel */ }
173};
174
175MODULE_DEVICE_TABLE(of, atmel_ehci_dt_ids);
176#endif
177
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700178static struct platform_driver ehci_atmel_driver = {
179 .probe = ehci_atmel_drv_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500180 .remove = ehci_atmel_drv_remove,
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700181 .shutdown = usb_hcd_platform_shutdown,
Jean-Christophe PLAGNIOL-VILLARD9d843002011-11-22 12:11:13 +0800182 .driver = {
183 .name = "atmel-ehci",
184 .of_match_table = of_match_ptr(atmel_ehci_dt_ids),
185 },
Nicolas Ferre501c9c02009-07-27 14:47:40 -0700186};
Manjunath Goudar97736962013-04-02 18:24:02 +0200187
188static int __init ehci_atmel_init(void)
189{
190 if (usb_disabled())
191 return -ENODEV;
192
193 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
194 ehci_init_driver(&ehci_atmel_hc_driver, NULL);
195 return platform_driver_register(&ehci_atmel_driver);
196}
197module_init(ehci_atmel_init);
198
199static void __exit ehci_atmel_cleanup(void)
200{
201 platform_driver_unregister(&ehci_atmel_driver);
202}
203module_exit(ehci_atmel_cleanup);
204
205MODULE_DESCRIPTION(DRIVER_DESC);
206MODULE_ALIAS("platform:atmel-ehci");
207MODULE_AUTHOR("Nicolas Ferre");
208MODULE_LICENSE("GPL");