blob: bd61612a725146ac24ed1c9ae4499633d58541eb [file] [log] [blame]
Neil Zhang3a082ec2011-12-20 13:20:23 +08001/*
2 * Copyright (C) 2011 Marvell International Ltd. All rights reserved.
3 * Author: Chao Xie <chao.xie@marvell.com>
4 * Neil Zhang <zhangwm@marvell.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 */
11
12#include <linux/kernel.h>
13#include <linux/module.h>
14#include <linux/platform_device.h>
15#include <linux/clk.h>
Kishon Vijay Abraham Ided017e2012-06-26 17:40:32 +053016#include <linux/err.h>
Neil Zhang3a082ec2011-12-20 13:20:23 +080017#include <linux/usb/otg.h>
18#include <linux/platform_data/mv_usb.h>
19
20#define CAPLENGTH_MASK (0xff)
21
22struct ehci_hcd_mv {
23 struct usb_hcd *hcd;
24
25 /* Which mode does this ehci running OTG/Host ? */
26 int mode;
27
28 void __iomem *phy_regs;
29 void __iomem *cap_regs;
30 void __iomem *op_regs;
31
Heikki Krogerus86753812012-02-13 13:24:02 +020032 struct usb_phy *otg;
Neil Zhang3a082ec2011-12-20 13:20:23 +080033
34 struct mv_usb_platform_data *pdata;
35
Chao Xieb7e159c2013-03-25 03:06:54 -040036 struct clk *clk;
Neil Zhang3a082ec2011-12-20 13:20:23 +080037};
38
39static void ehci_clock_enable(struct ehci_hcd_mv *ehci_mv)
40{
Chao Xieb7e159c2013-03-25 03:06:54 -040041 clk_prepare_enable(ehci_mv->clk);
Neil Zhang3a082ec2011-12-20 13:20:23 +080042}
43
44static void ehci_clock_disable(struct ehci_hcd_mv *ehci_mv)
45{
Chao Xieb7e159c2013-03-25 03:06:54 -040046 clk_disable_unprepare(ehci_mv->clk);
Neil Zhang3a082ec2011-12-20 13:20:23 +080047}
48
49static int mv_ehci_enable(struct ehci_hcd_mv *ehci_mv)
50{
51 int retval;
52
53 ehci_clock_enable(ehci_mv);
54 if (ehci_mv->pdata->phy_init) {
55 retval = ehci_mv->pdata->phy_init(ehci_mv->phy_regs);
56 if (retval)
57 return retval;
58 }
59
60 return 0;
61}
62
63static void mv_ehci_disable(struct ehci_hcd_mv *ehci_mv)
64{
65 if (ehci_mv->pdata->phy_deinit)
66 ehci_mv->pdata->phy_deinit(ehci_mv->phy_regs);
67 ehci_clock_disable(ehci_mv);
68}
69
70static int mv_ehci_reset(struct usb_hcd *hcd)
71{
Neil Zhang3a082ec2011-12-20 13:20:23 +080072 struct device *dev = hcd->self.controller;
73 struct ehci_hcd_mv *ehci_mv = dev_get_drvdata(dev);
74 int retval;
75
76 if (ehci_mv == NULL) {
77 dev_err(dev, "Can not find private ehci data\n");
78 return -ENODEV;
79 }
80
Neil Zhang3a082ec2011-12-20 13:20:23 +080081 hcd->has_tt = 1;
Neil Zhang3a082ec2011-12-20 13:20:23 +080082
Alan Stern1a49e2a2012-07-09 15:55:14 -040083 retval = ehci_setup(hcd);
84 if (retval)
85 dev_err(dev, "ehci_setup failed %d\n", retval);
Neil Zhang3a082ec2011-12-20 13:20:23 +080086
Alan Stern1a49e2a2012-07-09 15:55:14 -040087 return retval;
Neil Zhang3a082ec2011-12-20 13:20:23 +080088}
89
90static const struct hc_driver mv_ehci_hc_driver = {
91 .description = hcd_name,
92 .product_desc = "Marvell EHCI",
93 .hcd_priv_size = sizeof(struct ehci_hcd),
94
95 /*
96 * generic hardware linkage
97 */
98 .irq = ehci_irq,
Greg Kroah-Hartmanc04ee4b2013-09-23 13:32:51 -070099 .flags = HCD_MEMORY | HCD_USB2 | HCD_BH,
Neil Zhang3a082ec2011-12-20 13:20:23 +0800100
101 /*
102 * basic lifecycle operations
103 */
104 .reset = mv_ehci_reset,
105 .start = ehci_run,
106 .stop = ehci_stop,
107 .shutdown = ehci_shutdown,
108
109 /*
110 * managing i/o requests and associated device resources
111 */
112 .urb_enqueue = ehci_urb_enqueue,
113 .urb_dequeue = ehci_urb_dequeue,
114 .endpoint_disable = ehci_endpoint_disable,
115 .endpoint_reset = ehci_endpoint_reset,
116 .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete,
117
118 /*
119 * scheduling support
120 */
121 .get_frame_number = ehci_get_frame,
122
123 /*
124 * root hub support
125 */
126 .hub_status_data = ehci_hub_status_data,
127 .hub_control = ehci_hub_control,
128 .bus_suspend = ehci_bus_suspend,
129 .bus_resume = ehci_bus_resume,
130};
131
132static int mv_ehci_probe(struct platform_device *pdev)
133{
Jingoo Hand4f09e22013-07-30 19:59:40 +0900134 struct mv_usb_platform_data *pdata = dev_get_platdata(&pdev->dev);
Neil Zhang3a082ec2011-12-20 13:20:23 +0800135 struct usb_hcd *hcd;
136 struct ehci_hcd *ehci;
137 struct ehci_hcd_mv *ehci_mv;
138 struct resource *r;
Chao Xieb7e159c2013-03-25 03:06:54 -0400139 int retval = -ENODEV;
Neil Zhang3a082ec2011-12-20 13:20:23 +0800140 u32 offset;
Neil Zhang3a082ec2011-12-20 13:20:23 +0800141
142 if (!pdata) {
143 dev_err(&pdev->dev, "missing platform_data\n");
144 return -ENODEV;
145 }
146
147 if (usb_disabled())
148 return -ENODEV;
149
150 hcd = usb_create_hcd(&mv_ehci_hc_driver, &pdev->dev, "mv ehci");
151 if (!hcd)
152 return -ENOMEM;
153
Chao Xieb7e159c2013-03-25 03:06:54 -0400154 ehci_mv = devm_kzalloc(&pdev->dev, sizeof(*ehci_mv), GFP_KERNEL);
Neil Zhang3a082ec2011-12-20 13:20:23 +0800155 if (ehci_mv == NULL) {
156 dev_err(&pdev->dev, "cannot allocate ehci_hcd_mv\n");
157 retval = -ENOMEM;
158 goto err_put_hcd;
159 }
160
161 platform_set_drvdata(pdev, ehci_mv);
162 ehci_mv->pdata = pdata;
163 ehci_mv->hcd = hcd;
164
Chao Xieb7e159c2013-03-25 03:06:54 -0400165 ehci_mv->clk = devm_clk_get(&pdev->dev, NULL);
166 if (IS_ERR(ehci_mv->clk)) {
167 dev_err(&pdev->dev, "error getting clock\n");
168 retval = PTR_ERR(ehci_mv->clk);
Jingoo Han970691e2013-05-06 19:05:54 +0900169 goto err_put_hcd;
Neil Zhang3a082ec2011-12-20 13:20:23 +0800170 }
171
172 r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "phyregs");
173 if (r == NULL) {
174 dev_err(&pdev->dev, "no phy I/O memory resource defined\n");
175 retval = -ENODEV;
Jingoo Han970691e2013-05-06 19:05:54 +0900176 goto err_put_hcd;
Neil Zhang3a082ec2011-12-20 13:20:23 +0800177 }
178
Julia Lawall35b55562012-07-29 21:46:12 +0200179 ehci_mv->phy_regs = devm_ioremap(&pdev->dev, r->start,
180 resource_size(r));
Fengguang Wu2e30d142013-12-04 20:36:31 -0800181 if (!ehci_mv->phy_regs) {
Neil Zhang3a082ec2011-12-20 13:20:23 +0800182 dev_err(&pdev->dev, "failed to map phy I/O memory\n");
183 retval = -EFAULT;
Jingoo Han970691e2013-05-06 19:05:54 +0900184 goto err_put_hcd;
Neil Zhang3a082ec2011-12-20 13:20:23 +0800185 }
186
187 r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "capregs");
188 if (!r) {
189 dev_err(&pdev->dev, "no I/O memory resource defined\n");
190 retval = -ENODEV;
Jingoo Han970691e2013-05-06 19:05:54 +0900191 goto err_put_hcd;
Neil Zhang3a082ec2011-12-20 13:20:23 +0800192 }
193
Julia Lawall35b55562012-07-29 21:46:12 +0200194 ehci_mv->cap_regs = devm_ioremap(&pdev->dev, r->start,
195 resource_size(r));
Neil Zhang3a082ec2011-12-20 13:20:23 +0800196 if (ehci_mv->cap_regs == NULL) {
197 dev_err(&pdev->dev, "failed to map I/O memory\n");
198 retval = -EFAULT;
Jingoo Han970691e2013-05-06 19:05:54 +0900199 goto err_put_hcd;
Neil Zhang3a082ec2011-12-20 13:20:23 +0800200 }
201
202 retval = mv_ehci_enable(ehci_mv);
203 if (retval) {
204 dev_err(&pdev->dev, "init phy error %d\n", retval);
Jingoo Han970691e2013-05-06 19:05:54 +0900205 goto err_put_hcd;
Neil Zhang3a082ec2011-12-20 13:20:23 +0800206 }
207
208 offset = readl(ehci_mv->cap_regs) & CAPLENGTH_MASK;
209 ehci_mv->op_regs =
210 (void __iomem *) ((unsigned long) ehci_mv->cap_regs + offset);
211
212 hcd->rsrc_start = r->start;
Paul Vlase07cd29d2013-03-10 15:52:02 +0200213 hcd->rsrc_len = resource_size(r);
Neil Zhang3a082ec2011-12-20 13:20:23 +0800214 hcd->regs = ehci_mv->op_regs;
215
216 hcd->irq = platform_get_irq(pdev, 0);
217 if (!hcd->irq) {
218 dev_err(&pdev->dev, "Cannot get irq.");
219 retval = -ENODEV;
220 goto err_disable_clk;
221 }
222
223 ehci = hcd_to_ehci(hcd);
224 ehci->caps = (struct ehci_caps *) ehci_mv->cap_regs;
Neil Zhang3a082ec2011-12-20 13:20:23 +0800225
226 ehci_mv->mode = pdata->mode;
227 if (ehci_mv->mode == MV_USB_MODE_OTG) {
Julia Lawall35b55562012-07-29 21:46:12 +0200228 ehci_mv->otg = devm_usb_get_phy(&pdev->dev, USB_PHY_TYPE_USB2);
Felipe Balbi6f3ed4e2013-03-15 11:03:30 +0200229 if (IS_ERR(ehci_mv->otg)) {
230 retval = PTR_ERR(ehci_mv->otg);
231
232 if (retval == -ENXIO)
233 dev_info(&pdev->dev, "MV_USB_MODE_OTG "
234 "must have CONFIG_USB_PHY enabled\n");
235 else
236 dev_err(&pdev->dev,
237 "unable to find transceiver\n");
Neil Zhang3a082ec2011-12-20 13:20:23 +0800238 goto err_disable_clk;
239 }
240
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200241 retval = otg_set_host(ehci_mv->otg->otg, &hcd->self);
Neil Zhang3a082ec2011-12-20 13:20:23 +0800242 if (retval < 0) {
243 dev_err(&pdev->dev,
244 "unable to register with transceiver\n");
245 retval = -ENODEV;
Julia Lawall35b55562012-07-29 21:46:12 +0200246 goto err_disable_clk;
Neil Zhang3a082ec2011-12-20 13:20:23 +0800247 }
248 /* otg will enable clock before use as host */
249 mv_ehci_disable(ehci_mv);
Neil Zhang3a082ec2011-12-20 13:20:23 +0800250 } else {
251 if (pdata->set_vbus)
252 pdata->set_vbus(1);
253
254 retval = usb_add_hcd(hcd, hcd->irq, IRQF_SHARED);
255 if (retval) {
256 dev_err(&pdev->dev,
257 "failed to add hcd with err %d\n", retval);
258 goto err_set_vbus;
259 }
Peter Chen3c9740a2013-11-05 10:46:02 +0800260 device_wakeup_enable(hcd->self.controller);
Neil Zhang3a082ec2011-12-20 13:20:23 +0800261 }
262
263 if (pdata->private_init)
264 pdata->private_init(ehci_mv->op_regs, ehci_mv->phy_regs);
265
266 dev_info(&pdev->dev,
267 "successful find EHCI device with regs 0x%p irq %d"
268 " working in %s mode\n", hcd->regs, hcd->irq,
269 ehci_mv->mode == MV_USB_MODE_OTG ? "OTG" : "Host");
270
271 return 0;
272
273err_set_vbus:
274 if (pdata->set_vbus)
275 pdata->set_vbus(0);
Neil Zhang3a082ec2011-12-20 13:20:23 +0800276err_disable_clk:
277 mv_ehci_disable(ehci_mv);
Neil Zhang3a082ec2011-12-20 13:20:23 +0800278err_put_hcd:
279 usb_put_hcd(hcd);
280
281 return retval;
282}
283
284static int mv_ehci_remove(struct platform_device *pdev)
285{
286 struct ehci_hcd_mv *ehci_mv = platform_get_drvdata(pdev);
287 struct usb_hcd *hcd = ehci_mv->hcd;
Neil Zhang3a082ec2011-12-20 13:20:23 +0800288
289 if (hcd->rh_registered)
290 usb_remove_hcd(hcd);
291
Julia Lawall35b55562012-07-29 21:46:12 +0200292 if (!IS_ERR_OR_NULL(ehci_mv->otg))
Heikki Krogerus6e13c652012-02-13 13:24:20 +0200293 otg_set_host(ehci_mv->otg->otg, NULL);
Neil Zhang3a082ec2011-12-20 13:20:23 +0800294
295 if (ehci_mv->mode == MV_USB_MODE_HOST) {
296 if (ehci_mv->pdata->set_vbus)
297 ehci_mv->pdata->set_vbus(0);
298
299 mv_ehci_disable(ehci_mv);
300 }
301
Neil Zhang3a082ec2011-12-20 13:20:23 +0800302 usb_put_hcd(hcd);
303
304 return 0;
305}
306
307MODULE_ALIAS("mv-ehci");
308
309static const struct platform_device_id ehci_id_table[] = {
310 {"pxa-u2oehci", PXA_U2OEHCI},
311 {"pxa-sph", PXA_SPH},
312 {"mmp3-hsic", MMP3_HSIC},
313 {"mmp3-fsic", MMP3_FSIC},
314 {},
315};
316
317static void mv_ehci_shutdown(struct platform_device *pdev)
318{
319 struct ehci_hcd_mv *ehci_mv = platform_get_drvdata(pdev);
320 struct usb_hcd *hcd = ehci_mv->hcd;
321
322 if (!hcd->rh_registered)
323 return;
324
325 if (hcd->driver->shutdown)
326 hcd->driver->shutdown(hcd);
327}
328
329static struct platform_driver ehci_mv_driver = {
330 .probe = mv_ehci_probe,
331 .remove = mv_ehci_remove,
332 .shutdown = mv_ehci_shutdown,
333 .driver = {
334 .name = "mv-ehci",
335 .bus = &platform_bus_type,
336 },
337 .id_table = ehci_id_table,
338};