usb: phy: add run-time dependencies to R-Car driver
[deliverable/linux.git] / drivers / usb / host / ohci-exynos.c
CommitLineData
62194244
JH
1/*
2 * SAMSUNG EXYNOS USB HOST OHCI Controller
3 *
4 * Copyright (C) 2011 Samsung Electronics Co.Ltd
5 * Author: Jingoo Han <jg1.han@samsung.com>
6 *
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.
11 *
12 */
13
14#include <linux/clk.h>
50a97e05
MG
15#include <linux/dma-mapping.h>
16#include <linux/io.h>
17#include <linux/kernel.h>
18#include <linux/module.h>
d5138930 19#include <linux/of.h>
62194244 20#include <linux/platform_device.h>
ed993bf1 21#include <linux/usb/phy.h>
b506eebc 22#include <linux/usb/samsung_usb_phy.h>
50a97e05
MG
23#include <linux/usb.h>
24#include <linux/usb/hcd.h>
25#include <linux/usb/otg.h>
26
27#include "ohci.h"
28
29#define DRIVER_DESC "OHCI EXYNOS driver"
30
31static const char hcd_name[] = "ohci-exynos";
32static struct hc_driver __read_mostly exynos_ohci_hc_driver;
33
34#define to_exynos_ohci(hcd) (struct exynos_ohci_hcd *)(hcd_to_ohci(hcd)->priv)
62194244
JH
35
36struct exynos_ohci_hcd {
62194244 37 struct clk *clk;
ed993bf1
VG
38 struct usb_phy *phy;
39 struct usb_otg *otg;
62194244
JH
40};
41
50a97e05 42static void exynos_ohci_phy_enable(struct platform_device *pdev)
ed993bf1 43{
50a97e05
MG
44 struct usb_hcd *hcd = platform_get_drvdata(pdev);
45 struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd);
ed993bf1
VG
46
47 if (exynos_ohci->phy)
48 usb_phy_init(exynos_ohci->phy);
ed993bf1
VG
49}
50
50a97e05 51static void exynos_ohci_phy_disable(struct platform_device *pdev)
ed993bf1 52{
50a97e05
MG
53 struct usb_hcd *hcd = platform_get_drvdata(pdev);
54 struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd);
ed993bf1
VG
55
56 if (exynos_ohci->phy)
57 usb_phy_shutdown(exynos_ohci->phy);
ed993bf1
VG
58}
59
41ac7b3a 60static int exynos_ohci_probe(struct platform_device *pdev)
62194244 61{
62194244
JH
62 struct exynos_ohci_hcd *exynos_ohci;
63 struct usb_hcd *hcd;
62194244 64 struct resource *res;
ed993bf1 65 struct usb_phy *phy;
62194244
JH
66 int irq;
67 int err;
68
d5138930
VG
69 /*
70 * Right now device-tree probed devices don't get dma_mask set.
71 * Since shared usb code relies on it, set it here for now.
72 * Once we move to full device tree support this will vanish off.
73 */
e1fd7341 74 err = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
22d9d8e8
RK
75 if (err)
76 return err;
d5138930 77
50a97e05
MG
78 hcd = usb_create_hcd(&exynos_ohci_hc_driver,
79 &pdev->dev, dev_name(&pdev->dev));
80 if (!hcd) {
81 dev_err(&pdev->dev, "Unable to create HCD\n");
62194244 82 return -ENOMEM;
50a97e05
MG
83 }
84
85 exynos_ohci = to_exynos_ohci(hcd);
62194244 86
2871782a
TA
87 if (of_device_is_compatible(pdev->dev.of_node,
88 "samsung,exynos5440-ohci"))
89 goto skip_phy;
90
ed993bf1 91 phy = devm_usb_get_phy(&pdev->dev, USB_PHY_TYPE_USB2);
9ee1c7fb 92 if (IS_ERR(phy)) {
c00809d3
JH
93 usb_put_hcd(hcd);
94 dev_warn(&pdev->dev, "no platform data or transceiver defined\n");
95 return -EPROBE_DEFER;
ed993bf1
VG
96 } else {
97 exynos_ohci->phy = phy;
98 exynos_ohci->otg = phy->otg;
99 }
100
2871782a 101skip_phy:
60d80adb 102 exynos_ohci->clk = devm_clk_get(&pdev->dev, "usbhost");
62194244
JH
103
104 if (IS_ERR(exynos_ohci->clk)) {
105 dev_err(&pdev->dev, "Failed to get usbhost clock\n");
106 err = PTR_ERR(exynos_ohci->clk);
107 goto fail_clk;
108 }
109
c05c946c 110 err = clk_prepare_enable(exynos_ohci->clk);
62194244 111 if (err)
60d80adb 112 goto fail_clk;
62194244
JH
113
114 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
115 if (!res) {
116 dev_err(&pdev->dev, "Failed to get I/O memory\n");
117 err = -ENXIO;
118 goto fail_io;
119 }
120
121 hcd->rsrc_start = res->start;
122 hcd->rsrc_len = resource_size(res);
390a0a78 123 hcd->regs = devm_ioremap(&pdev->dev, res->start, hcd->rsrc_len);
62194244
JH
124 if (!hcd->regs) {
125 dev_err(&pdev->dev, "Failed to remap I/O memory\n");
126 err = -ENOMEM;
127 goto fail_io;
128 }
129
130 irq = platform_get_irq(pdev, 0);
131 if (!irq) {
132 dev_err(&pdev->dev, "Failed to get IRQ\n");
133 err = -ENODEV;
390a0a78 134 goto fail_io;
62194244
JH
135 }
136
ed993bf1 137 if (exynos_ohci->otg)
50a97e05 138 exynos_ohci->otg->set_host(exynos_ohci->otg, &hcd->self);
ed993bf1 139
50a97e05 140 platform_set_drvdata(pdev, hcd);
62194244 141
50a97e05 142 exynos_ohci_phy_enable(pdev);
62194244
JH
143
144 err = usb_add_hcd(hcd, irq, IRQF_SHARED);
145 if (err) {
146 dev_err(&pdev->dev, "Failed to add USB HCD\n");
ed993bf1 147 goto fail_add_hcd;
62194244 148 }
3c9740a1 149 device_wakeup_enable(hcd->self.controller);
62194244
JH
150 return 0;
151
ed993bf1 152fail_add_hcd:
50a97e05 153 exynos_ohci_phy_disable(pdev);
62194244 154fail_io:
c05c946c 155 clk_disable_unprepare(exynos_ohci->clk);
62194244
JH
156fail_clk:
157 usb_put_hcd(hcd);
62194244
JH
158 return err;
159}
160
fb4e98ab 161static int exynos_ohci_remove(struct platform_device *pdev)
62194244 162{
50a97e05
MG
163 struct usb_hcd *hcd = platform_get_drvdata(pdev);
164 struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd);
62194244
JH
165
166 usb_remove_hcd(hcd);
167
ed993bf1 168 if (exynos_ohci->otg)
50a97e05 169 exynos_ohci->otg->set_host(exynos_ohci->otg, &hcd->self);
ed993bf1 170
50a97e05 171 exynos_ohci_phy_disable(pdev);
62194244 172
c05c946c 173 clk_disable_unprepare(exynos_ohci->clk);
62194244
JH
174
175 usb_put_hcd(hcd);
62194244
JH
176
177 return 0;
178}
179
180static void exynos_ohci_shutdown(struct platform_device *pdev)
181{
50a97e05 182 struct usb_hcd *hcd = platform_get_drvdata(pdev);
62194244
JH
183
184 if (hcd->driver->shutdown)
185 hcd->driver->shutdown(hcd);
186}
187
188#ifdef CONFIG_PM
189static int exynos_ohci_suspend(struct device *dev)
190{
50a97e05
MG
191 struct usb_hcd *hcd = dev_get_drvdata(dev);
192 struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd);
50a97e05 193 struct platform_device *pdev = to_platform_device(dev);
14982e31 194 bool do_wakeup = device_may_wakeup(dev);
14982e31 195 int rc = ohci_suspend(hcd, do_wakeup);
62194244 196
14982e31
MG
197 if (rc)
198 return rc;
066ba8e0 199
ed993bf1 200 if (exynos_ohci->otg)
50a97e05 201 exynos_ohci->otg->set_host(exynos_ohci->otg, &hcd->self);
ed993bf1 202
50a97e05 203 exynos_ohci_phy_disable(pdev);
e864abed 204
c05c946c 205 clk_disable_unprepare(exynos_ohci->clk);
e864abed 206
14982e31 207 return 0;
62194244
JH
208}
209
210static int exynos_ohci_resume(struct device *dev)
211{
50a97e05
MG
212 struct usb_hcd *hcd = dev_get_drvdata(dev);
213 struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd);
214 struct platform_device *pdev = to_platform_device(dev);
62194244 215
c05c946c 216 clk_prepare_enable(exynos_ohci->clk);
e864abed 217
ed993bf1 218 if (exynos_ohci->otg)
50a97e05 219 exynos_ohci->otg->set_host(exynos_ohci->otg, &hcd->self);
ed993bf1 220
50a97e05 221 exynos_ohci_phy_enable(pdev);
62194244 222
cfa49b4b 223 ohci_resume(hcd, false);
62194244
JH
224
225 return 0;
226}
227#else
228#define exynos_ohci_suspend NULL
229#define exynos_ohci_resume NULL
230#endif
231
50a97e05
MG
232static const struct ohci_driver_overrides exynos_overrides __initconst = {
233 .extra_priv_size = sizeof(struct exynos_ohci_hcd),
234};
235
62194244
JH
236static const struct dev_pm_ops exynos_ohci_pm_ops = {
237 .suspend = exynos_ohci_suspend,
238 .resume = exynos_ohci_resume,
239};
240
d5138930
VG
241#ifdef CONFIG_OF
242static const struct of_device_id exynos_ohci_match[] = {
6e247777 243 { .compatible = "samsung,exynos4210-ohci" },
2871782a 244 { .compatible = "samsung,exynos5440-ohci" },
d5138930
VG
245 {},
246};
247MODULE_DEVICE_TABLE(of, exynos_ohci_match);
248#endif
249
62194244
JH
250static struct platform_driver exynos_ohci_driver = {
251 .probe = exynos_ohci_probe,
7690417d 252 .remove = exynos_ohci_remove,
62194244
JH
253 .shutdown = exynos_ohci_shutdown,
254 .driver = {
255 .name = "exynos-ohci",
256 .owner = THIS_MODULE,
257 .pm = &exynos_ohci_pm_ops,
d5138930 258 .of_match_table = of_match_ptr(exynos_ohci_match),
62194244
JH
259 }
260};
50a97e05
MG
261static int __init ohci_exynos_init(void)
262{
263 if (usb_disabled())
264 return -ENODEV;
265
266 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
267 ohci_init_driver(&exynos_ohci_hc_driver, &exynos_overrides);
268 return platform_driver_register(&exynos_ohci_driver);
269}
270module_init(ohci_exynos_init);
271
272static void __exit ohci_exynos_cleanup(void)
273{
274 platform_driver_unregister(&exynos_ohci_driver);
275}
276module_exit(ohci_exynos_cleanup);
62194244
JH
277
278MODULE_ALIAS("platform:exynos-ohci");
279MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
50a97e05 280MODULE_LICENSE("GPL v2");
This page took 0.181952 seconds and 5 git commands to generate.