2 * Copyright (C) 2011 Marvell International Ltd. All rights reserved.
3 * Author: Chao Xie <chao.xie@marvell.com>
4 * Neil Zhang <zhangwm@marvell.com>
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.
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/platform_device.h>
15 #include <linux/clk.h>
16 #include <linux/usb/otg.h>
17 #include <linux/platform_data/mv_usb.h>
19 #define CAPLENGTH_MASK (0xff)
24 /* Which mode does this ehci running OTG/Host ? */
27 void __iomem
*phy_regs
;
28 void __iomem
*cap_regs
;
29 void __iomem
*op_regs
;
31 struct otg_transceiver
*otg
;
33 struct mv_usb_platform_data
*pdata
;
35 /* clock source and total clock number */
40 static void ehci_clock_enable(struct ehci_hcd_mv
*ehci_mv
)
44 for (i
= 0; i
< ehci_mv
->clknum
; i
++)
45 clk_enable(ehci_mv
->clk
[i
]);
48 static void ehci_clock_disable(struct ehci_hcd_mv
*ehci_mv
)
52 for (i
= 0; i
< ehci_mv
->clknum
; i
++)
53 clk_disable(ehci_mv
->clk
[i
]);
56 static int mv_ehci_enable(struct ehci_hcd_mv
*ehci_mv
)
60 ehci_clock_enable(ehci_mv
);
61 if (ehci_mv
->pdata
->phy_init
) {
62 retval
= ehci_mv
->pdata
->phy_init(ehci_mv
->phy_regs
);
70 static void mv_ehci_disable(struct ehci_hcd_mv
*ehci_mv
)
72 if (ehci_mv
->pdata
->phy_deinit
)
73 ehci_mv
->pdata
->phy_deinit(ehci_mv
->phy_regs
);
74 ehci_clock_disable(ehci_mv
);
77 static int mv_ehci_reset(struct usb_hcd
*hcd
)
79 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
80 struct device
*dev
= hcd
->self
.controller
;
81 struct ehci_hcd_mv
*ehci_mv
= dev_get_drvdata(dev
);
84 if (ehci_mv
== NULL
) {
85 dev_err(dev
, "Can not find private ehci data\n");
92 retval
= ehci_init(hcd
);
94 dev_err(dev
, "ehci_init failed %d\n", retval
);
101 retval
= ehci_reset(ehci
);
103 dev_err(dev
, "ehci_reset failed %d\n", retval
);
110 static const struct hc_driver mv_ehci_hc_driver
= {
111 .description
= hcd_name
,
112 .product_desc
= "Marvell EHCI",
113 .hcd_priv_size
= sizeof(struct ehci_hcd
),
116 * generic hardware linkage
119 .flags
= HCD_MEMORY
| HCD_USB2
,
122 * basic lifecycle operations
124 .reset
= mv_ehci_reset
,
127 .shutdown
= ehci_shutdown
,
130 * managing i/o requests and associated device resources
132 .urb_enqueue
= ehci_urb_enqueue
,
133 .urb_dequeue
= ehci_urb_dequeue
,
134 .endpoint_disable
= ehci_endpoint_disable
,
135 .endpoint_reset
= ehci_endpoint_reset
,
136 .clear_tt_buffer_complete
= ehci_clear_tt_buffer_complete
,
141 .get_frame_number
= ehci_get_frame
,
146 .hub_status_data
= ehci_hub_status_data
,
147 .hub_control
= ehci_hub_control
,
148 .bus_suspend
= ehci_bus_suspend
,
149 .bus_resume
= ehci_bus_resume
,
152 static int mv_ehci_probe(struct platform_device
*pdev
)
154 struct mv_usb_platform_data
*pdata
= pdev
->dev
.platform_data
;
156 struct ehci_hcd
*ehci
;
157 struct ehci_hcd_mv
*ehci_mv
;
159 int clk_i
, retval
= -ENODEV
;
164 dev_err(&pdev
->dev
, "missing platform_data\n");
171 hcd
= usb_create_hcd(&mv_ehci_hc_driver
, &pdev
->dev
, "mv ehci");
175 size
= sizeof(*ehci_mv
) + sizeof(struct clk
*) * pdata
->clknum
;
176 ehci_mv
= kzalloc(size
, GFP_KERNEL
);
177 if (ehci_mv
== NULL
) {
178 dev_err(&pdev
->dev
, "cannot allocate ehci_hcd_mv\n");
183 platform_set_drvdata(pdev
, ehci_mv
);
184 ehci_mv
->pdata
= pdata
;
187 ehci_mv
->clknum
= pdata
->clknum
;
188 for (clk_i
= 0; clk_i
< ehci_mv
->clknum
; clk_i
++) {
189 ehci_mv
->clk
[clk_i
] =
190 clk_get(&pdev
->dev
, pdata
->clkname
[clk_i
]);
191 if (IS_ERR(ehci_mv
->clk
[clk_i
])) {
192 dev_err(&pdev
->dev
, "error get clck \"%s\"\n",
193 pdata
->clkname
[clk_i
]);
194 retval
= PTR_ERR(ehci_mv
->clk
[clk_i
]);
199 r
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "phyregs");
201 dev_err(&pdev
->dev
, "no phy I/O memory resource defined\n");
206 ehci_mv
->phy_regs
= ioremap(r
->start
, resource_size(r
));
207 if (ehci_mv
->phy_regs
== 0) {
208 dev_err(&pdev
->dev
, "failed to map phy I/O memory\n");
213 r
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "capregs");
215 dev_err(&pdev
->dev
, "no I/O memory resource defined\n");
217 goto err_iounmap_phyreg
;
220 ehci_mv
->cap_regs
= ioremap(r
->start
, resource_size(r
));
221 if (ehci_mv
->cap_regs
== NULL
) {
222 dev_err(&pdev
->dev
, "failed to map I/O memory\n");
224 goto err_iounmap_phyreg
;
227 retval
= mv_ehci_enable(ehci_mv
);
229 dev_err(&pdev
->dev
, "init phy error %d\n", retval
);
230 goto err_iounmap_capreg
;
233 offset
= readl(ehci_mv
->cap_regs
) & CAPLENGTH_MASK
;
235 (void __iomem
*) ((unsigned long) ehci_mv
->cap_regs
+ offset
);
237 hcd
->rsrc_start
= r
->start
;
238 hcd
->rsrc_len
= r
->end
- r
->start
+ 1;
239 hcd
->regs
= ehci_mv
->op_regs
;
241 hcd
->irq
= platform_get_irq(pdev
, 0);
243 dev_err(&pdev
->dev
, "Cannot get irq.");
245 goto err_disable_clk
;
248 ehci
= hcd_to_ehci(hcd
);
249 ehci
->caps
= (struct ehci_caps
*) ehci_mv
->cap_regs
;
250 ehci
->regs
= (struct ehci_regs
*) ehci_mv
->op_regs
;
251 ehci
->hcs_params
= ehci_readl(ehci
, &ehci
->caps
->hcs_params
);
253 ehci_mv
->mode
= pdata
->mode
;
254 if (ehci_mv
->mode
== MV_USB_MODE_OTG
) {
255 #ifdef CONFIG_USB_OTG_UTILS
256 ehci_mv
->otg
= otg_get_transceiver();
259 "unable to find transceiver\n");
261 goto err_disable_clk
;
264 retval
= otg_set_host(ehci_mv
->otg
, &hcd
->self
);
267 "unable to register with transceiver\n");
269 goto err_put_transceiver
;
271 /* otg will enable clock before use as host */
272 mv_ehci_disable(ehci_mv
);
274 dev_info(&pdev
->dev
, "MV_USB_MODE_OTG "
275 "must have CONFIG_USB_OTG_UTILS enabled\n");
276 goto err_disable_clk
;
282 retval
= usb_add_hcd(hcd
, hcd
->irq
, IRQF_SHARED
);
285 "failed to add hcd with err %d\n", retval
);
290 if (pdata
->private_init
)
291 pdata
->private_init(ehci_mv
->op_regs
, ehci_mv
->phy_regs
);
294 "successful find EHCI device with regs 0x%p irq %d"
295 " working in %s mode\n", hcd
->regs
, hcd
->irq
,
296 ehci_mv
->mode
== MV_USB_MODE_OTG
? "OTG" : "Host");
303 #ifdef CONFIG_USB_OTG_UTILS
306 otg_put_transceiver(ehci_mv
->otg
);
309 mv_ehci_disable(ehci_mv
);
311 iounmap(ehci_mv
->cap_regs
);
313 iounmap(ehci_mv
->phy_regs
);
315 for (clk_i
--; clk_i
>= 0; clk_i
--)
316 clk_put(ehci_mv
->clk
[clk_i
]);
317 platform_set_drvdata(pdev
, NULL
);
325 static int mv_ehci_remove(struct platform_device
*pdev
)
327 struct ehci_hcd_mv
*ehci_mv
= platform_get_drvdata(pdev
);
328 struct usb_hcd
*hcd
= ehci_mv
->hcd
;
331 if (hcd
->rh_registered
)
335 otg_set_host(ehci_mv
->otg
, NULL
);
336 otg_put_transceiver(ehci_mv
->otg
);
339 if (ehci_mv
->mode
== MV_USB_MODE_HOST
) {
340 if (ehci_mv
->pdata
->set_vbus
)
341 ehci_mv
->pdata
->set_vbus(0);
343 mv_ehci_disable(ehci_mv
);
346 iounmap(ehci_mv
->cap_regs
);
347 iounmap(ehci_mv
->phy_regs
);
349 for (clk_i
= 0; clk_i
< ehci_mv
->clknum
; clk_i
++)
350 clk_put(ehci_mv
->clk
[clk_i
]);
352 platform_set_drvdata(pdev
, NULL
);
360 MODULE_ALIAS("mv-ehci");
362 static const struct platform_device_id ehci_id_table
[] = {
363 {"pxa-u2oehci", PXA_U2OEHCI
},
364 {"pxa-sph", PXA_SPH
},
365 {"mmp3-hsic", MMP3_HSIC
},
366 {"mmp3-fsic", MMP3_FSIC
},
370 static void mv_ehci_shutdown(struct platform_device
*pdev
)
372 struct ehci_hcd_mv
*ehci_mv
= platform_get_drvdata(pdev
);
373 struct usb_hcd
*hcd
= ehci_mv
->hcd
;
375 if (!hcd
->rh_registered
)
378 if (hcd
->driver
->shutdown
)
379 hcd
->driver
->shutdown(hcd
);
382 static struct platform_driver ehci_mv_driver
= {
383 .probe
= mv_ehci_probe
,
384 .remove
= mv_ehci_remove
,
385 .shutdown
= mv_ehci_shutdown
,
388 .bus
= &platform_bus_type
,
390 .id_table
= ehci_id_table
,