2 * SAMSUNG EXYNOS USB HOST OHCI Controller
4 * Copyright (C) 2011 Samsung Electronics Co.Ltd
5 * Author: Jingoo Han <jg1.han@samsung.com>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
14 #include <linux/clk.h>
15 #include <linux/platform_device.h>
16 #include <mach/ohci.h>
17 #include <plat/usb-phy.h>
19 struct exynos_ohci_hcd
{
25 static int ohci_exynos_start(struct usb_hcd
*hcd
)
27 struct ohci_hcd
*ohci
= hcd_to_ohci(hcd
);
30 ohci_dbg(ohci
, "ohci_exynos_start, ohci:%p", ohci
);
32 ret
= ohci_init(ohci
);
38 err("can't start %s", hcd
->self
.bus_name
);
46 static const struct hc_driver exynos_ohci_hc_driver
= {
47 .description
= hcd_name
,
48 .product_desc
= "EXYNOS OHCI Host Controller",
49 .hcd_priv_size
= sizeof(struct ohci_hcd
),
52 .flags
= HCD_MEMORY
|HCD_USB11
,
54 .start
= ohci_exynos_start
,
56 .shutdown
= ohci_shutdown
,
58 .get_frame_number
= ohci_get_frame
,
60 .urb_enqueue
= ohci_urb_enqueue
,
61 .urb_dequeue
= ohci_urb_dequeue
,
62 .endpoint_disable
= ohci_endpoint_disable
,
64 .hub_status_data
= ohci_hub_status_data
,
65 .hub_control
= ohci_hub_control
,
67 .bus_suspend
= ohci_bus_suspend
,
68 .bus_resume
= ohci_bus_resume
,
70 .start_port_reset
= ohci_start_port_reset
,
73 static int __devinit
exynos_ohci_probe(struct platform_device
*pdev
)
75 struct exynos4_ohci_platdata
*pdata
;
76 struct exynos_ohci_hcd
*exynos_ohci
;
78 struct ohci_hcd
*ohci
;
83 pdata
= pdev
->dev
.platform_data
;
85 dev_err(&pdev
->dev
, "No platform data defined\n");
89 exynos_ohci
= kzalloc(sizeof(struct exynos_ohci_hcd
), GFP_KERNEL
);
93 exynos_ohci
->dev
= &pdev
->dev
;
95 hcd
= usb_create_hcd(&exynos_ohci_hc_driver
, &pdev
->dev
,
96 dev_name(&pdev
->dev
));
98 dev_err(&pdev
->dev
, "Unable to create HCD\n");
103 exynos_ohci
->hcd
= hcd
;
104 exynos_ohci
->clk
= clk_get(&pdev
->dev
, "usbhost");
106 if (IS_ERR(exynos_ohci
->clk
)) {
107 dev_err(&pdev
->dev
, "Failed to get usbhost clock\n");
108 err
= PTR_ERR(exynos_ohci
->clk
);
112 err
= clk_enable(exynos_ohci
->clk
);
116 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
118 dev_err(&pdev
->dev
, "Failed to get I/O memory\n");
123 hcd
->rsrc_start
= res
->start
;
124 hcd
->rsrc_len
= resource_size(res
);
125 hcd
->regs
= ioremap(res
->start
, resource_size(res
));
127 dev_err(&pdev
->dev
, "Failed to remap I/O memory\n");
132 irq
= platform_get_irq(pdev
, 0);
134 dev_err(&pdev
->dev
, "Failed to get IRQ\n");
140 pdata
->phy_init(pdev
, S5P_USB_PHY_HOST
);
142 ohci
= hcd_to_ohci(hcd
);
145 err
= usb_add_hcd(hcd
, irq
, IRQF_SHARED
);
147 dev_err(&pdev
->dev
, "Failed to add USB HCD\n");
151 platform_set_drvdata(pdev
, exynos_ohci
);
158 clk_disable(exynos_ohci
->clk
);
160 clk_put(exynos_ohci
->clk
);
168 static int __devexit
exynos_ohci_remove(struct platform_device
*pdev
)
170 struct exynos4_ohci_platdata
*pdata
= pdev
->dev
.platform_data
;
171 struct exynos_ohci_hcd
*exynos_ohci
= platform_get_drvdata(pdev
);
172 struct usb_hcd
*hcd
= exynos_ohci
->hcd
;
176 if (pdata
&& pdata
->phy_exit
)
177 pdata
->phy_exit(pdev
, S5P_USB_PHY_HOST
);
181 clk_disable(exynos_ohci
->clk
);
182 clk_put(exynos_ohci
->clk
);
190 static void exynos_ohci_shutdown(struct platform_device
*pdev
)
192 struct exynos_ohci_hcd
*exynos_ohci
= platform_get_drvdata(pdev
);
193 struct usb_hcd
*hcd
= exynos_ohci
->hcd
;
195 if (hcd
->driver
->shutdown
)
196 hcd
->driver
->shutdown(hcd
);
200 static int exynos_ohci_suspend(struct device
*dev
)
202 struct exynos_ohci_hcd
*exynos_ohci
= dev_get_drvdata(dev
);
203 struct usb_hcd
*hcd
= exynos_ohci
->hcd
;
204 struct ohci_hcd
*ohci
= hcd_to_ohci(hcd
);
205 struct platform_device
*pdev
= to_platform_device(dev
);
206 struct exynos4_ohci_platdata
*pdata
= pdev
->dev
.platform_data
;
211 * Root hub was already suspended. Disable irq emission and
212 * mark HW unaccessible, bail out if RH has been resumed. Use
213 * the spinlock to properly synchronize with possible pending
214 * RH suspend or resume activity.
216 * This is still racy as hcd->state is manipulated outside of
217 * any locks =P But that will be a different fix.
219 spin_lock_irqsave(&ohci
->lock
, flags
);
220 if (hcd
->state
!= HC_STATE_SUSPENDED
&& hcd
->state
!= HC_STATE_HALT
) {
225 clear_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
);
227 if (pdata
&& pdata
->phy_exit
)
228 pdata
->phy_exit(pdev
, S5P_USB_PHY_HOST
);
230 spin_unlock_irqrestore(&ohci
->lock
, flags
);
235 static int exynos_ohci_resume(struct device
*dev
)
237 struct exynos_ohci_hcd
*exynos_ohci
= dev_get_drvdata(dev
);
238 struct usb_hcd
*hcd
= exynos_ohci
->hcd
;
239 struct platform_device
*pdev
= to_platform_device(dev
);
240 struct exynos4_ohci_platdata
*pdata
= pdev
->dev
.platform_data
;
242 if (pdata
&& pdata
->phy_init
)
243 pdata
->phy_init(pdev
, S5P_USB_PHY_HOST
);
245 /* Mark hardware accessible again as we are out of D3 state by now */
246 set_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
);
248 ohci_finish_controller_resume(hcd
);
253 #define exynos_ohci_suspend NULL
254 #define exynos_ohci_resume NULL
257 static const struct dev_pm_ops exynos_ohci_pm_ops
= {
258 .suspend
= exynos_ohci_suspend
,
259 .resume
= exynos_ohci_resume
,
262 static struct platform_driver exynos_ohci_driver
= {
263 .probe
= exynos_ohci_probe
,
264 .remove
= __devexit_p(exynos_ohci_remove
),
265 .shutdown
= exynos_ohci_shutdown
,
267 .name
= "exynos-ohci",
268 .owner
= THIS_MODULE
,
269 .pm
= &exynos_ohci_pm_ops
,
273 MODULE_ALIAS("platform:exynos-ohci");
274 MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");