blob: 6865b919403f761efc3c732f28930b097ca4b05b [file] [log] [blame]
Jingoo Han62194242011-12-23 11:20:54 +09001/*
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>
Manjunath Goudar50a97e02013-09-21 16:38:38 +053015#include <linux/dma-mapping.h>
16#include <linux/io.h>
17#include <linux/kernel.h>
18#include <linux/module.h>
Vivek Gautamd5138932012-07-16 11:25:36 +053019#include <linux/of.h>
Jingoo Han62194242011-12-23 11:20:54 +090020#include <linux/platform_device.h>
Vivek Gautam7d28e542014-05-05 10:32:57 +053021#include <linux/phy/phy.h>
Manjunath Goudar50a97e02013-09-21 16:38:38 +053022#include <linux/usb.h>
23#include <linux/usb/hcd.h>
Manjunath Goudar50a97e02013-09-21 16:38:38 +053024
25#include "ohci.h"
26
27#define DRIVER_DESC "OHCI EXYNOS driver"
28
29static const char hcd_name[] = "ohci-exynos";
30static struct hc_driver __read_mostly exynos_ohci_hc_driver;
31
32#define to_exynos_ohci(hcd) (struct exynos_ohci_hcd *)(hcd_to_ohci(hcd)->priv)
Jingoo Han62194242011-12-23 11:20:54 +090033
Vivek Gautam7d28e542014-05-05 10:32:57 +053034#define PHY_NUMBER 3
35
Jingoo Han62194242011-12-23 11:20:54 +090036struct exynos_ohci_hcd {
Jingoo Han62194242011-12-23 11:20:54 +090037 struct clk *clk;
Vivek Gautam2db94162014-09-22 11:16:19 +053038 struct phy *phy[PHY_NUMBER];
Jingoo Han62194242011-12-23 11:20:54 +090039};
40
Vivek Gautam7d28e542014-05-05 10:32:57 +053041static int exynos_ohci_get_phy(struct device *dev,
42 struct exynos_ohci_hcd *exynos_ohci)
43{
44 struct device_node *child;
45 struct phy *phy;
46 int phy_number;
Vivek Gautam2db94162014-09-22 11:16:19 +053047 int ret;
Vivek Gautam7d28e542014-05-05 10:32:57 +053048
Vivek Gautam2db94162014-09-22 11:16:19 +053049 /* Get PHYs for the controller */
Vivek Gautam7d28e542014-05-05 10:32:57 +053050 for_each_available_child_of_node(dev->of_node, child) {
51 ret = of_property_read_u32(child, "reg", &phy_number);
52 if (ret) {
53 dev_err(dev, "Failed to parse device tree\n");
54 of_node_put(child);
55 return ret;
56 }
57
58 if (phy_number >= PHY_NUMBER) {
59 dev_err(dev, "Invalid number of PHYs\n");
60 of_node_put(child);
61 return -EINVAL;
62 }
63
Sachin Kamat473e92e2014-06-06 14:13:44 +053064 phy = devm_of_phy_get(dev, child, NULL);
Vivek Gautam2db94162014-09-22 11:16:19 +053065 exynos_ohci->phy[phy_number] = phy;
Vivek Gautam2db94162014-09-22 11:16:19 +053066 if (IS_ERR(phy)) {
67 ret = PTR_ERR(phy);
68 if (ret == -EPROBE_DEFER) {
Krzysztof Kozlowski4a36b6a2017-01-07 10:41:41 +020069 of_node_put(child);
Vivek Gautam2db94162014-09-22 11:16:19 +053070 return ret;
71 } else if (ret != -ENOSYS && ret != -ENODEV) {
72 dev_err(dev,
73 "Error retrieving usb2 phy: %d\n", ret);
Krzysztof Kozlowski4a36b6a2017-01-07 10:41:41 +020074 of_node_put(child);
Vivek Gautam2db94162014-09-22 11:16:19 +053075 return ret;
76 }
77 }
Vivek Gautam2f7f41c2014-08-05 16:09:08 +053078 }
79
80 return 0;
Vivek Gautam7d28e542014-05-05 10:32:57 +053081}
82
83static int exynos_ohci_phy_enable(struct device *dev)
Vivek Gautamed993bf2013-01-22 18:30:43 +053084{
Vivek Gautam54969ed2014-05-05 10:33:42 +053085 struct usb_hcd *hcd = dev_get_drvdata(dev);
Manjunath Goudar50a97e02013-09-21 16:38:38 +053086 struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd);
Vivek Gautam7d28e542014-05-05 10:32:57 +053087 int i;
88 int ret = 0;
Vivek Gautamed993bf2013-01-22 18:30:43 +053089
Vivek Gautam7d28e542014-05-05 10:32:57 +053090 for (i = 0; ret == 0 && i < PHY_NUMBER; i++)
Vivek Gautam2db94162014-09-22 11:16:19 +053091 if (!IS_ERR(exynos_ohci->phy[i]))
92 ret = phy_power_on(exynos_ohci->phy[i]);
Vivek Gautam7d28e542014-05-05 10:32:57 +053093 if (ret)
94 for (i--; i >= 0; i--)
Vivek Gautam2db94162014-09-22 11:16:19 +053095 if (!IS_ERR(exynos_ohci->phy[i]))
96 phy_power_off(exynos_ohci->phy[i]);
Vivek Gautam7d28e542014-05-05 10:32:57 +053097
98 return ret;
Vivek Gautamed993bf2013-01-22 18:30:43 +053099}
100
Vivek Gautam54969ed2014-05-05 10:33:42 +0530101static void exynos_ohci_phy_disable(struct device *dev)
Vivek Gautamed993bf2013-01-22 18:30:43 +0530102{
Vivek Gautam54969ed2014-05-05 10:33:42 +0530103 struct usb_hcd *hcd = dev_get_drvdata(dev);
Manjunath Goudar50a97e02013-09-21 16:38:38 +0530104 struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd);
Vivek Gautam7d28e542014-05-05 10:32:57 +0530105 int i;
Vivek Gautamed993bf2013-01-22 18:30:43 +0530106
Vivek Gautam7d28e542014-05-05 10:32:57 +0530107 for (i = 0; i < PHY_NUMBER; i++)
Vivek Gautam2db94162014-09-22 11:16:19 +0530108 if (!IS_ERR(exynos_ohci->phy[i]))
109 phy_power_off(exynos_ohci->phy[i]);
Vivek Gautamed993bf2013-01-22 18:30:43 +0530110}
111
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500112static int exynos_ohci_probe(struct platform_device *pdev)
Jingoo Han62194242011-12-23 11:20:54 +0900113{
Jingoo Han62194242011-12-23 11:20:54 +0900114 struct exynos_ohci_hcd *exynos_ohci;
115 struct usb_hcd *hcd;
Jingoo Han62194242011-12-23 11:20:54 +0900116 struct resource *res;
117 int irq;
118 int err;
119
Vivek Gautamd5138932012-07-16 11:25:36 +0530120 /*
121 * Right now device-tree probed devices don't get dma_mask set.
122 * Since shared usb code relies on it, set it here for now.
123 * Once we move to full device tree support this will vanish off.
124 */
Russell Kinge1fd7342013-06-27 12:36:37 +0100125 err = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +0100126 if (err)
127 return err;
Vivek Gautamd5138932012-07-16 11:25:36 +0530128
Manjunath Goudar50a97e02013-09-21 16:38:38 +0530129 hcd = usb_create_hcd(&exynos_ohci_hc_driver,
130 &pdev->dev, dev_name(&pdev->dev));
131 if (!hcd) {
132 dev_err(&pdev->dev, "Unable to create HCD\n");
Jingoo Han62194242011-12-23 11:20:54 +0900133 return -ENOMEM;
Manjunath Goudar50a97e02013-09-21 16:38:38 +0530134 }
135
136 exynos_ohci = to_exynos_ohci(hcd);
Jingoo Han62194242011-12-23 11:20:54 +0900137
Thomas Abraham28717822013-04-11 17:12:30 +0530138 if (of_device_is_compatible(pdev->dev.of_node,
139 "samsung,exynos5440-ohci"))
140 goto skip_phy;
141
Vivek Gautam7d28e542014-05-05 10:32:57 +0530142 err = exynos_ohci_get_phy(&pdev->dev, exynos_ohci);
143 if (err)
144 goto fail_clk;
Vivek Gautamed993bf2013-01-22 18:30:43 +0530145
Thomas Abraham28717822013-04-11 17:12:30 +0530146skip_phy:
Jingoo Han60d80ad2012-10-04 16:11:50 +0900147 exynos_ohci->clk = devm_clk_get(&pdev->dev, "usbhost");
Jingoo Han62194242011-12-23 11:20:54 +0900148
149 if (IS_ERR(exynos_ohci->clk)) {
150 dev_err(&pdev->dev, "Failed to get usbhost clock\n");
151 err = PTR_ERR(exynos_ohci->clk);
152 goto fail_clk;
153 }
154
Thomas Abrahamc05c9462012-10-03 08:41:37 +0900155 err = clk_prepare_enable(exynos_ohci->clk);
Jingoo Han62194242011-12-23 11:20:54 +0900156 if (err)
Jingoo Han60d80ad2012-10-04 16:11:50 +0900157 goto fail_clk;
Jingoo Han62194242011-12-23 11:20:54 +0900158
159 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Vivek Gautambae00c12014-05-10 17:30:10 +0530160 hcd->regs = devm_ioremap_resource(&pdev->dev, res);
161 if (IS_ERR(hcd->regs)) {
162 err = PTR_ERR(hcd->regs);
Jingoo Han62194242011-12-23 11:20:54 +0900163 goto fail_io;
164 }
Varka Bhadramb87a9c52014-11-04 07:51:13 +0530165 hcd->rsrc_start = res->start;
166 hcd->rsrc_len = resource_size(res);
Jingoo Han62194242011-12-23 11:20:54 +0900167
168 irq = platform_get_irq(pdev, 0);
169 if (!irq) {
170 dev_err(&pdev->dev, "Failed to get IRQ\n");
171 err = -ENODEV;
Jingoo Han390a0a72012-06-28 16:30:30 +0900172 goto fail_io;
Jingoo Han62194242011-12-23 11:20:54 +0900173 }
174
Manjunath Goudar50a97e02013-09-21 16:38:38 +0530175 platform_set_drvdata(pdev, hcd);
Jingoo Han62194242011-12-23 11:20:54 +0900176
Vivek Gautam7d28e542014-05-05 10:32:57 +0530177 err = exynos_ohci_phy_enable(&pdev->dev);
178 if (err) {
179 dev_err(&pdev->dev, "Failed to enable USB phy\n");
180 goto fail_io;
181 }
Jingoo Han62194242011-12-23 11:20:54 +0900182
183 err = usb_add_hcd(hcd, irq, IRQF_SHARED);
184 if (err) {
185 dev_err(&pdev->dev, "Failed to add USB HCD\n");
Vivek Gautamed993bf2013-01-22 18:30:43 +0530186 goto fail_add_hcd;
Jingoo Han62194242011-12-23 11:20:54 +0900187 }
Peter Chen3c9740a2013-11-05 10:46:02 +0800188 device_wakeup_enable(hcd->self.controller);
Jingoo Han62194242011-12-23 11:20:54 +0900189 return 0;
190
Vivek Gautamed993bf2013-01-22 18:30:43 +0530191fail_add_hcd:
Vivek Gautam54969ed2014-05-05 10:33:42 +0530192 exynos_ohci_phy_disable(&pdev->dev);
Jingoo Han62194242011-12-23 11:20:54 +0900193fail_io:
Thomas Abrahamc05c9462012-10-03 08:41:37 +0900194 clk_disable_unprepare(exynos_ohci->clk);
Jingoo Han62194242011-12-23 11:20:54 +0900195fail_clk:
196 usb_put_hcd(hcd);
Jingoo Han62194242011-12-23 11:20:54 +0900197 return err;
198}
199
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500200static int exynos_ohci_remove(struct platform_device *pdev)
Jingoo Han62194242011-12-23 11:20:54 +0900201{
Manjunath Goudar50a97e02013-09-21 16:38:38 +0530202 struct usb_hcd *hcd = platform_get_drvdata(pdev);
203 struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd);
Jingoo Han62194242011-12-23 11:20:54 +0900204
205 usb_remove_hcd(hcd);
206
Vivek Gautam54969ed2014-05-05 10:33:42 +0530207 exynos_ohci_phy_disable(&pdev->dev);
Jingoo Han62194242011-12-23 11:20:54 +0900208
Thomas Abrahamc05c9462012-10-03 08:41:37 +0900209 clk_disable_unprepare(exynos_ohci->clk);
Jingoo Han62194242011-12-23 11:20:54 +0900210
211 usb_put_hcd(hcd);
Jingoo Han62194242011-12-23 11:20:54 +0900212
213 return 0;
214}
215
216static void exynos_ohci_shutdown(struct platform_device *pdev)
217{
Manjunath Goudar50a97e02013-09-21 16:38:38 +0530218 struct usb_hcd *hcd = platform_get_drvdata(pdev);
Jingoo Han62194242011-12-23 11:20:54 +0900219
220 if (hcd->driver->shutdown)
221 hcd->driver->shutdown(hcd);
222}
223
224#ifdef CONFIG_PM
225static int exynos_ohci_suspend(struct device *dev)
226{
Manjunath Goudar50a97e02013-09-21 16:38:38 +0530227 struct usb_hcd *hcd = dev_get_drvdata(dev);
228 struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd);
Majunath Goudar14982e32013-11-13 17:40:20 +0530229 bool do_wakeup = device_may_wakeup(dev);
Majunath Goudar14982e32013-11-13 17:40:20 +0530230 int rc = ohci_suspend(hcd, do_wakeup);
Jingoo Han62194242011-12-23 11:20:54 +0900231
Majunath Goudar14982e32013-11-13 17:40:20 +0530232 if (rc)
233 return rc;
234
Vivek Gautam54969ed2014-05-05 10:33:42 +0530235 exynos_ohci_phy_disable(dev);
Jingoo Hane864abe2012-06-28 16:49:42 +0900236
Thomas Abrahamc05c9462012-10-03 08:41:37 +0900237 clk_disable_unprepare(exynos_ohci->clk);
Jingoo Hane864abe2012-06-28 16:49:42 +0900238
Majunath Goudar14982e32013-11-13 17:40:20 +0530239 return 0;
Jingoo Han62194242011-12-23 11:20:54 +0900240}
241
242static int exynos_ohci_resume(struct device *dev)
243{
Manjunath Goudar50a97e02013-09-21 16:38:38 +0530244 struct usb_hcd *hcd = dev_get_drvdata(dev);
245 struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd);
Vivek Gautam7d28e542014-05-05 10:32:57 +0530246 int ret;
Jingoo Han62194242011-12-23 11:20:54 +0900247
Thomas Abrahamc05c9462012-10-03 08:41:37 +0900248 clk_prepare_enable(exynos_ohci->clk);
Jingoo Hane864abe2012-06-28 16:49:42 +0900249
Vivek Gautam7d28e542014-05-05 10:32:57 +0530250 ret = exynos_ohci_phy_enable(dev);
251 if (ret) {
252 dev_err(dev, "Failed to enable USB phy\n");
253 clk_disable_unprepare(exynos_ohci->clk);
254 return ret;
255 }
Jingoo Han62194242011-12-23 11:20:54 +0900256
Florian Fainellicfa49b42012-10-08 15:11:29 +0200257 ohci_resume(hcd, false);
Jingoo Han62194242011-12-23 11:20:54 +0900258
259 return 0;
260}
261#else
262#define exynos_ohci_suspend NULL
263#define exynos_ohci_resume NULL
264#endif
265
Manjunath Goudar50a97e02013-09-21 16:38:38 +0530266static const struct ohci_driver_overrides exynos_overrides __initconst = {
267 .extra_priv_size = sizeof(struct exynos_ohci_hcd),
268};
269
Jingoo Han62194242011-12-23 11:20:54 +0900270static const struct dev_pm_ops exynos_ohci_pm_ops = {
271 .suspend = exynos_ohci_suspend,
272 .resume = exynos_ohci_resume,
273};
274
Vivek Gautamd5138932012-07-16 11:25:36 +0530275#ifdef CONFIG_OF
276static const struct of_device_id exynos_ohci_match[] = {
Vivek Gautam6e247772013-01-24 19:15:29 +0530277 { .compatible = "samsung,exynos4210-ohci" },
Thomas Abraham28717822013-04-11 17:12:30 +0530278 { .compatible = "samsung,exynos5440-ohci" },
Vivek Gautamd5138932012-07-16 11:25:36 +0530279 {},
280};
281MODULE_DEVICE_TABLE(of, exynos_ohci_match);
282#endif
283
Jingoo Han62194242011-12-23 11:20:54 +0900284static struct platform_driver exynos_ohci_driver = {
285 .probe = exynos_ohci_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500286 .remove = exynos_ohci_remove,
Jingoo Han62194242011-12-23 11:20:54 +0900287 .shutdown = exynos_ohci_shutdown,
288 .driver = {
289 .name = "exynos-ohci",
Jingoo Han62194242011-12-23 11:20:54 +0900290 .pm = &exynos_ohci_pm_ops,
Vivek Gautamd5138932012-07-16 11:25:36 +0530291 .of_match_table = of_match_ptr(exynos_ohci_match),
Jingoo Han62194242011-12-23 11:20:54 +0900292 }
293};
Manjunath Goudar50a97e02013-09-21 16:38:38 +0530294static int __init ohci_exynos_init(void)
295{
296 if (usb_disabled())
297 return -ENODEV;
298
299 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
300 ohci_init_driver(&exynos_ohci_hc_driver, &exynos_overrides);
301 return platform_driver_register(&exynos_ohci_driver);
302}
303module_init(ohci_exynos_init);
304
305static void __exit ohci_exynos_cleanup(void)
306{
307 platform_driver_unregister(&exynos_ohci_driver);
308}
309module_exit(ohci_exynos_cleanup);
Jingoo Han62194242011-12-23 11:20:54 +0900310
311MODULE_ALIAS("platform:exynos-ohci");
312MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
Manjunath Goudar50a97e02013-09-21 16:38:38 +0530313MODULE_LICENSE("GPL v2");