1 // SPDX-License-Identifier: GPL-2.0+
3 * SAMSUNG EXYNOS USB HOST OHCI Controller
5 * Copyright (C) 2011 Samsung Electronics Co.Ltd
6 * Author: Jingoo Han <jg1.han@samsung.com>
10 #include <linux/dma-mapping.h>
12 #include <linux/kernel.h>
13 #include <linux/module.h>
15 #include <linux/platform_device.h>
16 #include <linux/phy/phy.h>
17 #include <linux/usb.h>
18 #include <linux/usb/hcd.h>
22 #define DRIVER_DESC "OHCI EXYNOS driver"
24 static const char hcd_name
[] = "ohci-exynos";
25 static struct hc_driver __read_mostly exynos_ohci_hc_driver
;
27 #define to_exynos_ohci(hcd) (struct exynos_ohci_hcd *)(hcd_to_ohci(hcd)->priv)
31 struct exynos_ohci_hcd
{
33 struct device_node
*of_node
;
34 struct phy
*phy
[PHY_NUMBER
];
38 static int exynos_ohci_get_phy(struct device
*dev
,
39 struct exynos_ohci_hcd
*exynos_ohci
)
41 struct device_node
*child
;
43 int phy_number
, num_phys
;
46 /* Get PHYs for the controller */
47 num_phys
= of_count_phandle_with_args(dev
->of_node
, "phys",
49 for (phy_number
= 0; phy_number
< num_phys
; phy_number
++) {
50 phy
= devm_of_phy_get_by_index(dev
, dev
->of_node
, phy_number
);
53 exynos_ohci
->phy
[phy_number
] = phy
;
58 /* Get PHYs using legacy bindings */
59 for_each_available_child_of_node(dev
->of_node
, child
) {
60 ret
= of_property_read_u32(child
, "reg", &phy_number
);
62 dev_err(dev
, "Failed to parse device tree\n");
67 if (phy_number
>= PHY_NUMBER
) {
68 dev_err(dev
, "Invalid number of PHYs\n");
73 phy
= devm_of_phy_get(dev
, child
, NULL
);
74 exynos_ohci
->phy
[phy_number
] = phy
;
77 if (ret
== -EPROBE_DEFER
) {
80 } else if (ret
!= -ENOSYS
&& ret
!= -ENODEV
) {
82 "Error retrieving usb2 phy: %d\n", ret
);
89 exynos_ohci
->legacy_phy
= true;
93 static int exynos_ohci_phy_enable(struct device
*dev
)
95 struct usb_hcd
*hcd
= dev_get_drvdata(dev
);
96 struct exynos_ohci_hcd
*exynos_ohci
= to_exynos_ohci(hcd
);
100 for (i
= 0; ret
== 0 && i
< PHY_NUMBER
; i
++)
101 if (!IS_ERR(exynos_ohci
->phy
[i
]))
102 ret
= phy_power_on(exynos_ohci
->phy
[i
]);
104 for (i
--; i
>= 0; i
--)
105 if (!IS_ERR(exynos_ohci
->phy
[i
]))
106 phy_power_off(exynos_ohci
->phy
[i
]);
111 static void exynos_ohci_phy_disable(struct device
*dev
)
113 struct usb_hcd
*hcd
= dev_get_drvdata(dev
);
114 struct exynos_ohci_hcd
*exynos_ohci
= to_exynos_ohci(hcd
);
117 for (i
= 0; i
< PHY_NUMBER
; i
++)
118 if (!IS_ERR(exynos_ohci
->phy
[i
]))
119 phy_power_off(exynos_ohci
->phy
[i
]);
122 static int exynos_ohci_probe(struct platform_device
*pdev
)
124 struct exynos_ohci_hcd
*exynos_ohci
;
126 struct resource
*res
;
131 * Right now device-tree probed devices don't get dma_mask set.
132 * Since shared usb code relies on it, set it here for now.
133 * Once we move to full device tree support this will vanish off.
135 err
= dma_coerce_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(32));
139 hcd
= usb_create_hcd(&exynos_ohci_hc_driver
,
140 &pdev
->dev
, dev_name(&pdev
->dev
));
142 dev_err(&pdev
->dev
, "Unable to create HCD\n");
146 exynos_ohci
= to_exynos_ohci(hcd
);
148 err
= exynos_ohci_get_phy(&pdev
->dev
, exynos_ohci
);
152 exynos_ohci
->clk
= devm_clk_get(&pdev
->dev
, "usbhost");
154 if (IS_ERR(exynos_ohci
->clk
)) {
155 dev_err(&pdev
->dev
, "Failed to get usbhost clock\n");
156 err
= PTR_ERR(exynos_ohci
->clk
);
160 err
= clk_prepare_enable(exynos_ohci
->clk
);
164 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
165 hcd
->regs
= devm_ioremap_resource(&pdev
->dev
, res
);
166 if (IS_ERR(hcd
->regs
)) {
167 err
= PTR_ERR(hcd
->regs
);
170 hcd
->rsrc_start
= res
->start
;
171 hcd
->rsrc_len
= resource_size(res
);
173 irq
= platform_get_irq(pdev
, 0);
179 platform_set_drvdata(pdev
, hcd
);
181 err
= exynos_ohci_phy_enable(&pdev
->dev
);
183 dev_err(&pdev
->dev
, "Failed to enable USB phy\n");
188 * Workaround: reset of_node pointer to avoid conflict between legacy
189 * Exynos OHCI port subnodes and generic USB device bindings
191 exynos_ohci
->of_node
= pdev
->dev
.of_node
;
192 if (exynos_ohci
->legacy_phy
)
193 pdev
->dev
.of_node
= NULL
;
195 err
= usb_add_hcd(hcd
, irq
, IRQF_SHARED
);
197 dev_err(&pdev
->dev
, "Failed to add USB HCD\n");
200 device_wakeup_enable(hcd
->self
.controller
);
204 exynos_ohci_phy_disable(&pdev
->dev
);
205 pdev
->dev
.of_node
= exynos_ohci
->of_node
;
207 clk_disable_unprepare(exynos_ohci
->clk
);
213 static int exynos_ohci_remove(struct platform_device
*pdev
)
215 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
216 struct exynos_ohci_hcd
*exynos_ohci
= to_exynos_ohci(hcd
);
218 pdev
->dev
.of_node
= exynos_ohci
->of_node
;
222 exynos_ohci_phy_disable(&pdev
->dev
);
224 clk_disable_unprepare(exynos_ohci
->clk
);
231 static void exynos_ohci_shutdown(struct platform_device
*pdev
)
233 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
235 if (hcd
->driver
->shutdown
)
236 hcd
->driver
->shutdown(hcd
);
240 static int exynos_ohci_suspend(struct device
*dev
)
242 struct usb_hcd
*hcd
= dev_get_drvdata(dev
);
243 struct exynos_ohci_hcd
*exynos_ohci
= to_exynos_ohci(hcd
);
244 bool do_wakeup
= device_may_wakeup(dev
);
245 int rc
= ohci_suspend(hcd
, do_wakeup
);
250 exynos_ohci_phy_disable(dev
);
252 clk_disable_unprepare(exynos_ohci
->clk
);
257 static int exynos_ohci_resume(struct device
*dev
)
259 struct usb_hcd
*hcd
= dev_get_drvdata(dev
);
260 struct exynos_ohci_hcd
*exynos_ohci
= to_exynos_ohci(hcd
);
263 clk_prepare_enable(exynos_ohci
->clk
);
265 ret
= exynos_ohci_phy_enable(dev
);
267 dev_err(dev
, "Failed to enable USB phy\n");
268 clk_disable_unprepare(exynos_ohci
->clk
);
272 ohci_resume(hcd
, false);
277 #define exynos_ohci_suspend NULL
278 #define exynos_ohci_resume NULL
281 static const struct ohci_driver_overrides exynos_overrides __initconst
= {
282 .extra_priv_size
= sizeof(struct exynos_ohci_hcd
),
285 static const struct dev_pm_ops exynos_ohci_pm_ops
= {
286 .suspend
= exynos_ohci_suspend
,
287 .resume
= exynos_ohci_resume
,
291 static const struct of_device_id exynos_ohci_match
[] = {
292 { .compatible
= "samsung,exynos4210-ohci" },
295 MODULE_DEVICE_TABLE(of
, exynos_ohci_match
);
298 static struct platform_driver exynos_ohci_driver
= {
299 .probe
= exynos_ohci_probe
,
300 .remove
= exynos_ohci_remove
,
301 .shutdown
= exynos_ohci_shutdown
,
303 .name
= "exynos-ohci",
304 .pm
= &exynos_ohci_pm_ops
,
305 .of_match_table
= of_match_ptr(exynos_ohci_match
),
308 static int __init
ohci_exynos_init(void)
313 pr_info("%s: " DRIVER_DESC
"\n", hcd_name
);
314 ohci_init_driver(&exynos_ohci_hc_driver
, &exynos_overrides
);
315 return platform_driver_register(&exynos_ohci_driver
);
317 module_init(ohci_exynos_init
);
319 static void __exit
ohci_exynos_cleanup(void)
321 platform_driver_unregister(&exynos_ohci_driver
);
323 module_exit(ohci_exynos_cleanup
);
325 MODULE_ALIAS("platform:exynos-ohci");
326 MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
327 MODULE_LICENSE("GPL v2");