1 // SPDX-License-Identifier: GPL-2.0+
3 * SAMSUNG EXYNOS USB HOST OHCI Controller
5 * Copyright (C) 2011 Samsung Electronics Co.Ltd
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 struct hc_driver __read_mostly exynos_ohci_hc_driver;
26 #define to_exynos_ohci(hcd) (struct exynos_ohci_hcd *)(hcd_to_ohci(hcd)->priv)
30 struct exynos_ohci_hcd {
32 struct device_node *of_node;
33 struct phy *phy[PHY_NUMBER];
37 static int exynos_ohci_get_phy(struct device *dev,
38 struct exynos_ohci_hcd *exynos_ohci)
40 struct device_node *child;
42 int phy_number, num_phys;
45 /* Get PHYs for the controller */
46 num_phys = of_count_phandle_with_args(dev->of_node, "phys",
48 for (phy_number = 0; phy_number < num_phys; phy_number++) {
49 phy = devm_of_phy_get_by_index(dev, dev->of_node, phy_number);
52 exynos_ohci->phy[phy_number] = phy;
57 /* Get PHYs using legacy bindings */
58 for_each_available_child_of_node(dev->of_node, child) {
59 ret = of_property_read_u32(child, "reg", &phy_number);
61 dev_err(dev, "Failed to parse device tree\n");
66 if (phy_number >= PHY_NUMBER) {
67 dev_err(dev, "Invalid number of PHYs\n");
72 phy = devm_of_phy_optional_get(dev, child, NULL);
73 exynos_ohci->phy[phy_number] = phy;
80 exynos_ohci->legacy_phy = true;
84 static int exynos_ohci_phy_enable(struct device *dev)
86 struct usb_hcd *hcd = dev_get_drvdata(dev);
87 struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd);
91 for (i = 0; ret == 0 && i < PHY_NUMBER; i++)
92 ret = phy_power_on(exynos_ohci->phy[i]);
94 for (i--; i >= 0; i--)
95 phy_power_off(exynos_ohci->phy[i]);
100 static void exynos_ohci_phy_disable(struct device *dev)
102 struct usb_hcd *hcd = dev_get_drvdata(dev);
103 struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd);
106 for (i = 0; i < PHY_NUMBER; i++)
107 phy_power_off(exynos_ohci->phy[i]);
110 static int exynos_ohci_probe(struct platform_device *pdev)
112 struct exynos_ohci_hcd *exynos_ohci;
114 struct resource *res;
119 * Right now device-tree probed devices don't get dma_mask set.
120 * Since shared usb code relies on it, set it here for now.
121 * Once we move to full device tree support this will vanish off.
123 err = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
127 hcd = usb_create_hcd(&exynos_ohci_hc_driver,
128 &pdev->dev, dev_name(&pdev->dev));
130 dev_err(&pdev->dev, "Unable to create HCD\n");
134 exynos_ohci = to_exynos_ohci(hcd);
136 err = exynos_ohci_get_phy(&pdev->dev, exynos_ohci);
140 exynos_ohci->clk = devm_clk_get_enabled(&pdev->dev, "usbhost");
142 if (IS_ERR(exynos_ohci->clk)) {
143 dev_err(&pdev->dev, "Failed to get usbhost clock\n");
144 err = PTR_ERR(exynos_ohci->clk);
148 hcd->regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
149 if (IS_ERR(hcd->regs)) {
150 err = PTR_ERR(hcd->regs);
153 hcd->rsrc_start = res->start;
154 hcd->rsrc_len = resource_size(res);
156 irq = platform_get_irq(pdev, 0);
162 platform_set_drvdata(pdev, hcd);
164 err = exynos_ohci_phy_enable(&pdev->dev);
166 dev_err(&pdev->dev, "Failed to enable USB phy\n");
171 * Workaround: reset of_node pointer to avoid conflict between legacy
172 * Exynos OHCI port subnodes and generic USB device bindings
174 exynos_ohci->of_node = pdev->dev.of_node;
175 if (exynos_ohci->legacy_phy)
176 pdev->dev.of_node = NULL;
178 err = usb_add_hcd(hcd, irq, IRQF_SHARED);
180 dev_err(&pdev->dev, "Failed to add USB HCD\n");
183 device_wakeup_enable(hcd->self.controller);
187 exynos_ohci_phy_disable(&pdev->dev);
188 pdev->dev.of_node = exynos_ohci->of_node;
194 static void exynos_ohci_remove(struct platform_device *pdev)
196 struct usb_hcd *hcd = platform_get_drvdata(pdev);
197 struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd);
199 pdev->dev.of_node = exynos_ohci->of_node;
203 exynos_ohci_phy_disable(&pdev->dev);
208 static void exynos_ohci_shutdown(struct platform_device *pdev)
210 struct usb_hcd *hcd = platform_get_drvdata(pdev);
212 if (hcd->driver->shutdown)
213 hcd->driver->shutdown(hcd);
216 static int exynos_ohci_suspend(struct device *dev)
218 struct usb_hcd *hcd = dev_get_drvdata(dev);
219 struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd);
220 bool do_wakeup = device_may_wakeup(dev);
221 int rc = ohci_suspend(hcd, do_wakeup);
226 exynos_ohci_phy_disable(dev);
228 clk_disable_unprepare(exynos_ohci->clk);
233 static int exynos_ohci_resume(struct device *dev)
235 struct usb_hcd *hcd = dev_get_drvdata(dev);
236 struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd);
239 clk_prepare_enable(exynos_ohci->clk);
241 ret = exynos_ohci_phy_enable(dev);
243 dev_err(dev, "Failed to enable USB phy\n");
244 clk_disable_unprepare(exynos_ohci->clk);
248 ohci_resume(hcd, false);
253 static const struct ohci_driver_overrides exynos_overrides __initconst = {
254 .extra_priv_size = sizeof(struct exynos_ohci_hcd),
257 static DEFINE_SIMPLE_DEV_PM_OPS(exynos_ohci_pm_ops,
258 exynos_ohci_suspend, exynos_ohci_resume);
261 static const struct of_device_id exynos_ohci_match[] = {
262 { .compatible = "samsung,exynos4210-ohci" },
265 MODULE_DEVICE_TABLE(of, exynos_ohci_match);
268 static struct platform_driver exynos_ohci_driver = {
269 .probe = exynos_ohci_probe,
270 .remove_new = exynos_ohci_remove,
271 .shutdown = exynos_ohci_shutdown,
273 .name = "exynos-ohci",
274 .pm = pm_ptr(&exynos_ohci_pm_ops),
275 .of_match_table = of_match_ptr(exynos_ohci_match),
278 static int __init ohci_exynos_init(void)
283 ohci_init_driver(&exynos_ohci_hc_driver, &exynos_overrides);
284 return platform_driver_register(&exynos_ohci_driver);
286 module_init(ohci_exynos_init);
288 static void __exit ohci_exynos_cleanup(void)
290 platform_driver_unregister(&exynos_ohci_driver);
292 module_exit(ohci_exynos_cleanup);
294 MODULE_ALIAS("platform:exynos-ohci");
296 MODULE_DESCRIPTION("OHCI support for Samsung S5P/Exynos SoC Series");
297 MODULE_LICENSE("GPL v2");