blob: c7a9b31eeaeff03a6c422d47c476fda4b03e5cb0 [file] [log] [blame]
Daniel Mack7e8d5cd2009-10-28 01:14:59 +01001/*
2 * Copyright (c) 2008 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix
3 * Copyright (c) 2009 Daniel Mack <daniel@caiaq.de>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software Foundation,
17 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
Alan Sterndba63b22013-01-23 13:26:15 -050020#include <linux/kernel.h>
21#include <linux/module.h>
22#include <linux/io.h>
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010023#include <linux/platform_device.h>
24#include <linux/clk.h>
25#include <linux/delay.h>
26#include <linux/usb/otg.h>
Arnaud Patard (Rtp)a464dc42011-01-18 00:04:12 +010027#include <linux/usb/ulpi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Alan Sterndba63b22013-01-23 13:26:15 -050029#include <linux/usb.h>
30#include <linux/usb/hcd.h>
Arnd Bergmann82906b12012-08-24 15:14:29 +020031#include <linux/platform_data/usb-ehci-mxc.h>
Alan Sterndba63b22013-01-23 13:26:15 -050032#include "ehci.h"
33
34#define DRIVER_DESC "Freescale On-Chip EHCI Host driver"
35
36static const char hcd_name[] = "ehci-mxc";
37
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010038#define ULPI_VIEWPORT_OFFSET 0x170
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010039
40struct ehci_mxc_priv {
Sascha Hauerc9437402012-04-25 16:39:06 +020041 struct clk *usbclk, *ahbclk, *phyclk;
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010042};
43
Alan Sterndba63b22013-01-23 13:26:15 -050044static struct hc_driver __read_mostly ehci_mxc_hc_driver;
Matthieu CASTET65fd4272010-09-06 18:26:56 +020045
Andi Kleen62d08a12013-04-22 09:44:56 -070046static const struct ehci_driver_overrides ehci_mxc_overrides __initconst = {
Alan Sterndba63b22013-01-23 13:26:15 -050047 .extra_priv_size = sizeof(struct ehci_mxc_priv),
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010048};
49
50static int ehci_mxc_drv_probe(struct platform_device *pdev)
51{
Jingoo Hand4f09e22013-07-30 19:59:40 +090052 struct mxc_usbh_platform_data *pdata = dev_get_platdata(&pdev->dev);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010053 struct usb_hcd *hcd;
54 struct resource *res;
Uwe Kleine-König724c8522010-11-02 10:30:57 +010055 int irq, ret;
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010056 struct ehci_mxc_priv *priv;
57 struct device *dev = &pdev->dev;
Fabio Estevam0247a7b2010-12-15 22:31:28 -020058 struct ehci_hcd *ehci;
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010059
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010060 if (!pdata) {
61 dev_err(dev, "No platform data given, bailing out.\n");
62 return -EINVAL;
63 }
64
65 irq = platform_get_irq(pdev, 0);
66
67 hcd = usb_create_hcd(&ehci_mxc_hc_driver, dev, dev_name(dev));
68 if (!hcd)
69 return -ENOMEM;
70
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010071 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding148e1132013-01-21 11:09:22 +010072 hcd->regs = devm_ioremap_resource(&pdev->dev, res);
73 if (IS_ERR(hcd->regs)) {
74 ret = PTR_ERR(hcd->regs);
Julia Lawallaf09c062012-07-29 21:46:13 +020075 goto err_alloc;
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010076 }
Varka Bhadramd6e269a2014-11-04 07:51:22 +053077 hcd->rsrc_start = res->start;
78 hcd->rsrc_len = resource_size(res);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010079
Alan Sterndba63b22013-01-23 13:26:15 -050080 hcd->has_tt = 1;
81 ehci = hcd_to_ehci(hcd);
82 priv = (struct ehci_mxc_priv *) ehci->priv;
83
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010084 /* enable clocks */
Julia Lawallaf09c062012-07-29 21:46:13 +020085 priv->usbclk = devm_clk_get(&pdev->dev, "ipg");
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010086 if (IS_ERR(priv->usbclk)) {
87 ret = PTR_ERR(priv->usbclk);
Julia Lawallaf09c062012-07-29 21:46:13 +020088 goto err_alloc;
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010089 }
Sascha Hauer198ad2c2012-03-07 20:58:21 +010090 clk_prepare_enable(priv->usbclk);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010091
Julia Lawallaf09c062012-07-29 21:46:13 +020092 priv->ahbclk = devm_clk_get(&pdev->dev, "ahb");
Sascha Hauerc9437402012-04-25 16:39:06 +020093 if (IS_ERR(priv->ahbclk)) {
94 ret = PTR_ERR(priv->ahbclk);
95 goto err_clk_ahb;
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010096 }
Sascha Hauerc9437402012-04-25 16:39:06 +020097 clk_prepare_enable(priv->ahbclk);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010098
Eric Bénard3bb80292011-01-13 14:53:17 +010099 /* "dr" device has its own clock on i.MX51 */
Julia Lawallaf09c062012-07-29 21:46:13 +0200100 priv->phyclk = devm_clk_get(&pdev->dev, "phy");
Sascha Hauerc9437402012-04-25 16:39:06 +0200101 if (IS_ERR(priv->phyclk))
102 priv->phyclk = NULL;
103 if (priv->phyclk)
104 clk_prepare_enable(priv->phyclk);
Arnaud Patard (Rtp)711669e2010-12-20 16:48:58 +0100105
106
107 /* call platform specific init function */
108 if (pdata->init) {
109 ret = pdata->init(pdev);
110 if (ret) {
111 dev_err(dev, "platform init failed\n");
112 goto err_init;
113 }
114 /* platforms need some time to settle changed IO settings */
115 mdelay(10);
116 }
117
Fabio Estevam0247a7b2010-12-15 22:31:28 -0200118 /* EHCI registers start at offset 0x100 */
119 ehci->caps = hcd->regs + 0x100;
120 ehci->regs = hcd->regs + 0x100 +
Jan Anderssonc4301312011-05-03 20:11:57 +0200121 HC_LENGTH(ehci, ehci_readl(ehci, &ehci->caps->hc_capbase));
Fabio Estevam0247a7b2010-12-15 22:31:28 -0200122
123 /* set up the PORTSCx register */
124 ehci_writel(ehci, pdata->portsc, &ehci->regs->port_status[0]);
125
126 /* is this really needed? */
127 msleep(10);
128
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100129 /* Initialize the transceiver */
130 if (pdata->otg) {
131 pdata->otg->io_priv = hcd->regs + ULPI_VIEWPORT_OFFSET;
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200132 ret = usb_phy_init(pdata->otg);
Wolfram Sang4c9715d2010-06-15 12:34:23 +0200133 if (ret) {
134 dev_err(dev, "unable to init transceiver, probably missing\n");
135 ret = -ENODEV;
136 goto err_add;
137 }
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200138 ret = otg_set_vbus(pdata->otg->otg, 1);
Wolfram Sang4c9715d2010-06-15 12:34:23 +0200139 if (ret) {
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100140 dev_err(dev, "unable to enable vbus on transceiver\n");
Wolfram Sang4c9715d2010-06-15 12:34:23 +0200141 goto err_add;
142 }
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100143 }
144
Alan Sterndba63b22013-01-23 13:26:15 -0500145 platform_set_drvdata(pdev, hcd);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100146
Yong Zhangb5dd18d2011-09-07 16:10:52 +0800147 ret = usb_add_hcd(hcd, irq, IRQF_SHARED);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100148 if (ret)
149 goto err_add;
150
Peter Chen3c9740a2013-11-05 10:46:02 +0800151 device_wakeup_enable(hcd->self.controller);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100152 return 0;
153
154err_add:
155 if (pdata && pdata->exit)
156 pdata->exit(pdev);
157err_init:
Julia Lawallaf09c062012-07-29 21:46:13 +0200158 if (priv->phyclk)
Sascha Hauerc9437402012-04-25 16:39:06 +0200159 clk_disable_unprepare(priv->phyclk);
Sascha Hauerc9437402012-04-25 16:39:06 +0200160
161 clk_disable_unprepare(priv->ahbclk);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100162err_clk_ahb:
Sascha Hauer198ad2c2012-03-07 20:58:21 +0100163 clk_disable_unprepare(priv->usbclk);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100164err_alloc:
165 usb_put_hcd(hcd);
166 return ret;
167}
168
Dmitry Torokhov39d35682013-02-24 00:55:07 -0800169static int ehci_mxc_drv_remove(struct platform_device *pdev)
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100170{
Jingoo Hand4f09e22013-07-30 19:59:40 +0900171 struct mxc_usbh_platform_data *pdata = dev_get_platdata(&pdev->dev);
Alan Sterndba63b22013-01-23 13:26:15 -0500172 struct usb_hcd *hcd = platform_get_drvdata(pdev);
173 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
174 struct ehci_mxc_priv *priv = (struct ehci_mxc_priv *) ehci->priv;
175
176 usb_remove_hcd(hcd);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100177
178 if (pdata && pdata->exit)
179 pdata->exit(pdev);
180
Daniel Mackf375fc52013-08-21 11:17:21 +0200181 if (pdata && pdata->otg)
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200182 usb_phy_shutdown(pdata->otg);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100183
Sascha Hauer198ad2c2012-03-07 20:58:21 +0100184 clk_disable_unprepare(priv->usbclk);
Sascha Hauerc9437402012-04-25 16:39:06 +0200185 clk_disable_unprepare(priv->ahbclk);
Sascha Hauerc9437402012-04-25 16:39:06 +0200186
Julia Lawallaf09c062012-07-29 21:46:13 +0200187 if (priv->phyclk)
Sascha Hauerc9437402012-04-25 16:39:06 +0200188 clk_disable_unprepare(priv->phyclk);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100189
Alan Sterndba63b22013-01-23 13:26:15 -0500190 usb_put_hcd(hcd);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100191 return 0;
192}
193
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100194MODULE_ALIAS("platform:mxc-ehci");
195
196static struct platform_driver ehci_mxc_driver = {
197 .probe = ehci_mxc_drv_probe,
Alan Sterndba63b22013-01-23 13:26:15 -0500198 .remove = ehci_mxc_drv_remove,
Roger Quadrosaaf6b522013-07-22 15:04:50 +0300199 .shutdown = usb_hcd_platform_shutdown,
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100200 .driver = {
201 .name = "mxc-ehci",
202 },
203};
Alan Sterndba63b22013-01-23 13:26:15 -0500204
205static int __init ehci_mxc_init(void)
206{
207 if (usb_disabled())
208 return -ENODEV;
209
210 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
211
212 ehci_init_driver(&ehci_mxc_hc_driver, &ehci_mxc_overrides);
213 return platform_driver_register(&ehci_mxc_driver);
214}
215module_init(ehci_mxc_init);
216
217static void __exit ehci_mxc_cleanup(void)
218{
219 platform_driver_unregister(&ehci_mxc_driver);
220}
221module_exit(ehci_mxc_cleanup);
222
223MODULE_DESCRIPTION(DRIVER_DESC);
224MODULE_AUTHOR("Sascha Hauer");
225MODULE_LICENSE("GPL");