blob: 4a08fc0b27c9e541da76b9598120b646ab7aa9a5 [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
20#include <linux/platform_device.h>
21#include <linux/clk.h>
22#include <linux/delay.h>
23#include <linux/usb/otg.h>
Arnaud Patard (Rtp)a464dc42011-01-18 00:04:12 +010024#include <linux/usb/ulpi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010026
Shawn Guo03a1d6b2011-07-21 22:24:10 +080027#include <mach/hardware.h>
Arnd Bergmann82906b12012-08-24 15:14:29 +020028#include <linux/platform_data/usb-ehci-mxc.h>
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010029
Arnaud Patard (Rtp)a464dc42011-01-18 00:04:12 +010030#include <asm/mach-types.h>
31
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010032#define ULPI_VIEWPORT_OFFSET 0x170
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010033
34struct ehci_mxc_priv {
Sascha Hauerc9437402012-04-25 16:39:06 +020035 struct clk *usbclk, *ahbclk, *phyclk;
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010036 struct usb_hcd *hcd;
37};
38
39/* called during probe() after chip reset completes */
40static int ehci_mxc_setup(struct usb_hcd *hcd)
41{
42 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
43 int retval;
44
Matthieu CASTET65fd4272010-09-06 18:26:56 +020045 hcd->has_tt = 1;
46
Alan Stern1a49e2a2012-07-09 15:55:14 -040047 retval = ehci_setup(hcd);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010048 if (retval)
49 return retval;
50
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010051 ehci_port_power(ehci, 0);
52 return 0;
53}
54
55static const struct hc_driver ehci_mxc_hc_driver = {
56 .description = hcd_name,
57 .product_desc = "Freescale On-Chip EHCI Host Controller",
58 .hcd_priv_size = sizeof(struct ehci_hcd),
59
60 /*
61 * generic hardware linkage
62 */
63 .irq = ehci_irq,
64 .flags = HCD_USB2 | HCD_MEMORY,
65
66 /*
67 * basic lifecycle operations
68 */
69 .reset = ehci_mxc_setup,
70 .start = ehci_run,
71 .stop = ehci_stop,
72 .shutdown = ehci_shutdown,
73
74 /*
75 * managing i/o requests and associated device resources
76 */
77 .urb_enqueue = ehci_urb_enqueue,
78 .urb_dequeue = ehci_urb_dequeue,
79 .endpoint_disable = ehci_endpoint_disable,
Paul Mundtb48d7f52010-11-30 17:57:02 +090080 .endpoint_reset = ehci_endpoint_reset,
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010081
82 /*
83 * scheduling support
84 */
85 .get_frame_number = ehci_get_frame,
86
87 /*
88 * root hub support
89 */
90 .hub_status_data = ehci_hub_status_data,
91 .hub_control = ehci_hub_control,
92 .bus_suspend = ehci_bus_suspend,
93 .bus_resume = ehci_bus_resume,
94 .relinquish_port = ehci_relinquish_port,
95 .port_handed_over = ehci_port_handed_over,
Paul Mundtb48d7f52010-11-30 17:57:02 +090096
97 .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete,
Daniel Mack7e8d5cd2009-10-28 01:14:59 +010098};
99
100static int ehci_mxc_drv_probe(struct platform_device *pdev)
101{
102 struct mxc_usbh_platform_data *pdata = pdev->dev.platform_data;
103 struct usb_hcd *hcd;
104 struct resource *res;
Uwe Kleine-König724c8522010-11-02 10:30:57 +0100105 int irq, ret;
Arnaud Patard (Rtp)a464dc42011-01-18 00:04:12 +0100106 unsigned int flags;
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100107 struct ehci_mxc_priv *priv;
108 struct device *dev = &pdev->dev;
Fabio Estevam0247a7b2010-12-15 22:31:28 -0200109 struct ehci_hcd *ehci;
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100110
111 dev_info(&pdev->dev, "initializing i.MX USB Controller\n");
112
113 if (!pdata) {
114 dev_err(dev, "No platform data given, bailing out.\n");
115 return -EINVAL;
116 }
117
118 irq = platform_get_irq(pdev, 0);
119
120 hcd = usb_create_hcd(&ehci_mxc_hc_driver, dev, dev_name(dev));
121 if (!hcd)
122 return -ENOMEM;
123
Julia Lawallaf09c062012-07-29 21:46:13 +0200124 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100125 if (!priv) {
126 ret = -ENOMEM;
127 goto err_alloc;
128 }
129
130 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
131 if (!res) {
132 dev_err(dev, "Found HC with no register addr. Check setup!\n");
133 ret = -ENODEV;
Julia Lawallaf09c062012-07-29 21:46:13 +0200134 goto err_alloc;
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100135 }
136
137 hcd->rsrc_start = res->start;
138 hcd->rsrc_len = resource_size(res);
139
Julia Lawallaf09c062012-07-29 21:46:13 +0200140 hcd->regs = devm_request_and_ioremap(&pdev->dev, res);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100141 if (!hcd->regs) {
142 dev_err(dev, "error mapping memory\n");
143 ret = -EFAULT;
Julia Lawallaf09c062012-07-29 21:46:13 +0200144 goto err_alloc;
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100145 }
146
147 /* enable clocks */
Julia Lawallaf09c062012-07-29 21:46:13 +0200148 priv->usbclk = devm_clk_get(&pdev->dev, "ipg");
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100149 if (IS_ERR(priv->usbclk)) {
150 ret = PTR_ERR(priv->usbclk);
Julia Lawallaf09c062012-07-29 21:46:13 +0200151 goto err_alloc;
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100152 }
Sascha Hauer198ad2c2012-03-07 20:58:21 +0100153 clk_prepare_enable(priv->usbclk);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100154
Julia Lawallaf09c062012-07-29 21:46:13 +0200155 priv->ahbclk = devm_clk_get(&pdev->dev, "ahb");
Sascha Hauerc9437402012-04-25 16:39:06 +0200156 if (IS_ERR(priv->ahbclk)) {
157 ret = PTR_ERR(priv->ahbclk);
158 goto err_clk_ahb;
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100159 }
Sascha Hauerc9437402012-04-25 16:39:06 +0200160 clk_prepare_enable(priv->ahbclk);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100161
Eric Bénard3bb80292011-01-13 14:53:17 +0100162 /* "dr" device has its own clock on i.MX51 */
Julia Lawallaf09c062012-07-29 21:46:13 +0200163 priv->phyclk = devm_clk_get(&pdev->dev, "phy");
Sascha Hauerc9437402012-04-25 16:39:06 +0200164 if (IS_ERR(priv->phyclk))
165 priv->phyclk = NULL;
166 if (priv->phyclk)
167 clk_prepare_enable(priv->phyclk);
Arnaud Patard (Rtp)711669e2010-12-20 16:48:58 +0100168
169
170 /* call platform specific init function */
171 if (pdata->init) {
172 ret = pdata->init(pdev);
173 if (ret) {
174 dev_err(dev, "platform init failed\n");
175 goto err_init;
176 }
177 /* platforms need some time to settle changed IO settings */
178 mdelay(10);
179 }
180
Fabio Estevam0247a7b2010-12-15 22:31:28 -0200181 ehci = hcd_to_ehci(hcd);
182
183 /* EHCI registers start at offset 0x100 */
184 ehci->caps = hcd->regs + 0x100;
185 ehci->regs = hcd->regs + 0x100 +
Jan Anderssonc4301312011-05-03 20:11:57 +0200186 HC_LENGTH(ehci, ehci_readl(ehci, &ehci->caps->hc_capbase));
Fabio Estevam0247a7b2010-12-15 22:31:28 -0200187
188 /* set up the PORTSCx register */
189 ehci_writel(ehci, pdata->portsc, &ehci->regs->port_status[0]);
190
191 /* is this really needed? */
192 msleep(10);
193
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100194 /* Initialize the transceiver */
195 if (pdata->otg) {
196 pdata->otg->io_priv = hcd->regs + ULPI_VIEWPORT_OFFSET;
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200197 ret = usb_phy_init(pdata->otg);
Wolfram Sang4c9715d2010-06-15 12:34:23 +0200198 if (ret) {
199 dev_err(dev, "unable to init transceiver, probably missing\n");
200 ret = -ENODEV;
201 goto err_add;
202 }
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200203 ret = otg_set_vbus(pdata->otg->otg, 1);
Wolfram Sang4c9715d2010-06-15 12:34:23 +0200204 if (ret) {
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100205 dev_err(dev, "unable to enable vbus on transceiver\n");
Wolfram Sang4c9715d2010-06-15 12:34:23 +0200206 goto err_add;
207 }
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100208 }
209
210 priv->hcd = hcd;
211 platform_set_drvdata(pdev, priv);
212
Yong Zhangb5dd18d2011-09-07 16:10:52 +0800213 ret = usb_add_hcd(hcd, irq, IRQF_SHARED);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100214 if (ret)
215 goto err_add;
216
Arnaud Patard (Rtp)a464dc42011-01-18 00:04:12 +0100217 if (pdata->otg) {
218 /*
219 * efikamx and efikasb have some hardware bug which is
220 * preventing usb to work unless CHRGVBUS is set.
221 * It's in violation of USB specs
222 */
223 if (machine_is_mx51_efikamx() || machine_is_mx51_efikasb()) {
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200224 flags = usb_phy_io_read(pdata->otg,
225 ULPI_OTG_CTRL);
Arnaud Patard (Rtp)a464dc42011-01-18 00:04:12 +0100226 flags |= ULPI_OTG_CTRL_CHRGVBUS;
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200227 ret = usb_phy_io_write(pdata->otg, flags,
228 ULPI_OTG_CTRL);
Arnaud Patard (Rtp)a464dc42011-01-18 00:04:12 +0100229 if (ret) {
230 dev_err(dev, "unable to set CHRVBUS\n");
231 goto err_add;
232 }
233 }
234 }
235
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100236 return 0;
237
238err_add:
239 if (pdata && pdata->exit)
240 pdata->exit(pdev);
241err_init:
Julia Lawallaf09c062012-07-29 21:46:13 +0200242 if (priv->phyclk)
Sascha Hauerc9437402012-04-25 16:39:06 +0200243 clk_disable_unprepare(priv->phyclk);
Sascha Hauerc9437402012-04-25 16:39:06 +0200244
245 clk_disable_unprepare(priv->ahbclk);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100246err_clk_ahb:
Sascha Hauer198ad2c2012-03-07 20:58:21 +0100247 clk_disable_unprepare(priv->usbclk);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100248err_alloc:
249 usb_put_hcd(hcd);
250 return ret;
251}
252
253static int __exit ehci_mxc_drv_remove(struct platform_device *pdev)
254{
255 struct mxc_usbh_platform_data *pdata = pdev->dev.platform_data;
256 struct ehci_mxc_priv *priv = platform_get_drvdata(pdev);
257 struct usb_hcd *hcd = priv->hcd;
258
259 if (pdata && pdata->exit)
260 pdata->exit(pdev);
261
262 if (pdata->otg)
Heikki Krogerusb96d3b02012-02-13 13:24:18 +0200263 usb_phy_shutdown(pdata->otg);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100264
265 usb_remove_hcd(hcd);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100266 usb_put_hcd(hcd);
267 platform_set_drvdata(pdev, NULL);
268
Sascha Hauer198ad2c2012-03-07 20:58:21 +0100269 clk_disable_unprepare(priv->usbclk);
Sascha Hauerc9437402012-04-25 16:39:06 +0200270 clk_disable_unprepare(priv->ahbclk);
Sascha Hauerc9437402012-04-25 16:39:06 +0200271
Julia Lawallaf09c062012-07-29 21:46:13 +0200272 if (priv->phyclk)
Sascha Hauerc9437402012-04-25 16:39:06 +0200273 clk_disable_unprepare(priv->phyclk);
Daniel Mack7e8d5cd2009-10-28 01:14:59 +0100274
275 return 0;
276}
277
278static void ehci_mxc_drv_shutdown(struct platform_device *pdev)
279{
280 struct ehci_mxc_priv *priv = platform_get_drvdata(pdev);
281 struct usb_hcd *hcd = priv->hcd;
282
283 if (hcd->driver->shutdown)
284 hcd->driver->shutdown(hcd);
285}
286
287MODULE_ALIAS("platform:mxc-ehci");
288
289static struct platform_driver ehci_mxc_driver = {
290 .probe = ehci_mxc_drv_probe,
291 .remove = __exit_p(ehci_mxc_drv_remove),
292 .shutdown = ehci_mxc_drv_shutdown,
293 .driver = {
294 .name = "mxc-ehci",
295 },
296};