blob: 2f8d3af811ce0689b15eb1f19b98edd092d61198 [file] [log] [blame]
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +05301/* ehci-msm.c - HSUSB Host Controller Driver Implementation
2 *
Pavankumar Kondeti18f53462011-02-18 17:30:11 +05303 * Copyright (c) 2008-2011, Code Aurora Forum. All rights reserved.
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +05304 *
5 * Partly derived from ehci-fsl.c and ehci-hcd.c
6 * Copyright (c) 2000-2004 by David Brownell
7 * Copyright (c) 2005 MontaVista Software
8 *
9 * All source code in this file is licensed under the following license except
10 * where indicated.
11 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License version 2 as published
14 * by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 *
20 * See the GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, you can find it at http://www.fsf.org
23 */
24
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053025#include <linux/clk.h>
26#include <linux/err.h>
Manjunath Goudar8c68e842013-04-02 18:24:03 +020027#include <linux/io.h>
28#include <linux/kernel.h>
29#include <linux/module.h>
30#include <linux/platform_device.h>
Pavankumar Kondeti8bb6a162010-12-07 17:53:57 +053031#include <linux/pm_runtime.h>
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053032#include <linux/usb/otg.h>
33#include <linux/usb/msm_hsusb_hw.h>
Manjunath Goudar8c68e842013-04-02 18:24:03 +020034#include <linux/usb.h>
35#include <linux/usb/hcd.h>
Jack Phamf13f0e62015-12-10 18:28:55 -060036#include <linux/acpi.h>
Manjunath Goudar8c68e842013-04-02 18:24:03 +020037
38#include "ehci.h"
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053039
40#define MSM_USB_BASE (hcd->regs)
41
Manjunath Goudar8c68e842013-04-02 18:24:03 +020042#define DRIVER_DESC "Qualcomm On-Chip EHCI Host Controller"
43
44static const char hcd_name[] = "ehci-msm";
45static struct hc_driver __read_mostly msm_hc_driver;
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053046
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053047static int ehci_msm_reset(struct usb_hcd *hcd)
48{
49 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
50 int retval;
51
52 ehci->caps = USB_CAPLENGTH;
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053053 hcd->has_tt = 1;
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053054
Matthieu CASTET2cb30bb2011-07-02 20:59:46 +020055 retval = ehci_setup(hcd);
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053056 if (retval)
57 return retval;
58
Jack Phame8f55b92015-12-10 18:28:56 -060059 /* select ULPI phy and clear other status/control bits in PORTSC */
60 writel(PORTSC_PTS_ULPI, USB_PORTSC);
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053061 /* bursts of unspecified length. */
62 writel(0, USB_AHBBURST);
Andy Grossc56a2b22015-11-06 00:04:07 -060063 /* Use the AHB transactor, allow posted data writes */
64 writel(0x8, USB_AHBMODE);
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053065 /* Disable streaming mode and select host mode */
66 writel(0x13, USB_USBMODE);
Jack Pham132f5002015-12-10 18:28:53 -060067 /* Disable ULPI_TX_PKT_EN_CLR_FIX which is valid only for HSIC */
68 writel(readl(USB_GENCONFIG_2) & ~ULPI_TX_PKT_EN_CLR_FIX, USB_GENCONFIG_2);
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053069
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053070 return 0;
71}
72
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053073static int ehci_msm_probe(struct platform_device *pdev)
74{
75 struct usb_hcd *hcd;
76 struct resource *res;
Ivan T. Ivanove4f0da02013-10-11 14:46:09 +030077 struct usb_phy *phy;
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053078 int ret;
79
80 dev_dbg(&pdev->dev, "ehci_msm proble\n");
81
82 hcd = usb_create_hcd(&msm_hc_driver, &pdev->dev, dev_name(&pdev->dev));
83 if (!hcd) {
84 dev_err(&pdev->dev, "Unable to create HCD\n");
85 return -ENOMEM;
86 }
87
Andrzej Hajda0c43e9d2015-09-21 15:33:39 +020088 ret = platform_get_irq(pdev, 0);
89 if (ret < 0) {
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053090 dev_err(&pdev->dev, "Unable to get IRQ resource\n");
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053091 goto put_hcd;
92 }
Andrzej Hajda0c43e9d2015-09-21 15:33:39 +020093 hcd->irq = ret;
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053094
95 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Ivan T. Ivanovbb304b72015-04-27 15:27:36 +030096 if (!res) {
97 dev_err(&pdev->dev, "Unable to get memory resource\n");
98 ret = -ENODEV;
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +053099 goto put_hcd;
100 }
Ivan T. Ivanovbb304b72015-04-27 15:27:36 +0300101
Varka Bhadrame507bf52014-11-04 07:51:20 +0530102 hcd->rsrc_start = res->start;
103 hcd->rsrc_len = resource_size(res);
Ivan T. Ivanovbb304b72015-04-27 15:27:36 +0300104 hcd->regs = devm_ioremap(&pdev->dev, hcd->rsrc_start, hcd->rsrc_len);
105 if (!hcd->regs) {
106 dev_err(&pdev->dev, "ioremap failed\n");
107 ret = -ENOMEM;
108 goto put_hcd;
109 }
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +0530110
111 /*
Jack Phamc4398ef2015-12-10 18:28:54 -0600112 * If there is an OTG driver, let it take care of PHY initialization,
113 * clock management, powering up VBUS, mapping of registers address
114 * space and power management.
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +0530115 */
Ivan T. Ivanov0fc924b2013-10-11 14:46:10 +0300116 if (pdev->dev.of_node)
117 phy = devm_usb_get_phy_by_phandle(&pdev->dev, "usb-phy", 0);
118 else
119 phy = devm_usb_get_phy(&pdev->dev, USB_PHY_TYPE_USB2);
120
Felipe Balbie299bd92013-03-15 11:02:56 +0200121 if (IS_ERR(phy)) {
Jack Phamc4398ef2015-12-10 18:28:54 -0600122 if (PTR_ERR(phy) == -EPROBE_DEFER) {
123 dev_err(&pdev->dev, "unable to find transceiver\n");
124 ret = -EPROBE_DEFER;
125 goto put_hcd;
126 }
127 phy = NULL;
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +0530128 }
129
Antoine Tenart3d46e732014-09-24 23:05:50 +0400130 hcd->usb_phy = phy;
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +0530131 device_init_wakeup(&pdev->dev, 1);
Pavankumar Kondeti8bb6a162010-12-07 17:53:57 +0530132
Jack Phamc4398ef2015-12-10 18:28:54 -0600133 if (phy && phy->otg) {
134 /*
135 * MSM OTG driver takes care of adding the HCD and
136 * placing hardware into low power mode via runtime PM.
137 */
138 ret = otg_set_host(phy->otg, &hcd->self);
139 if (ret < 0) {
140 dev_err(&pdev->dev, "unable to register with transceiver\n");
141 goto put_hcd;
142 }
143
144 pm_runtime_no_callbacks(&pdev->dev);
145 pm_runtime_enable(&pdev->dev);
146 } else {
147 ret = usb_add_hcd(hcd, hcd->irq, IRQF_SHARED);
148 if (ret)
149 goto put_hcd;
150 }
Manjunath Goudar8c68e842013-04-02 18:24:03 +0200151
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +0530152 return 0;
153
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +0530154put_hcd:
155 usb_put_hcd(hcd);
156
157 return ret;
158}
159
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500160static int ehci_msm_remove(struct platform_device *pdev)
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +0530161{
162 struct usb_hcd *hcd = platform_get_drvdata(pdev);
163
164 device_init_wakeup(&pdev->dev, 0);
Pavankumar Kondeti8bb6a162010-12-07 17:53:57 +0530165 pm_runtime_disable(&pdev->dev);
166 pm_runtime_set_suspended(&pdev->dev);
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +0530167
Jack Phamc4398ef2015-12-10 18:28:54 -0600168 if (hcd->usb_phy && hcd->usb_phy->otg)
169 otg_set_host(hcd->usb_phy->otg, NULL);
170 else
171 usb_remove_hcd(hcd);
Manjunath Goudar8c68e842013-04-02 18:24:03 +0200172
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +0530173 usb_put_hcd(hcd);
174
175 return 0;
176}
177
Pavankumar Kondeti8bb6a162010-12-07 17:53:57 +0530178#ifdef CONFIG_PM
179static int ehci_msm_pm_suspend(struct device *dev)
180{
181 struct usb_hcd *hcd = dev_get_drvdata(dev);
Andy Gross815c9d62016-05-20 16:35:07 -0500182 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
Alan Sternc5cf9212012-06-28 11:19:02 -0400183 bool do_wakeup = device_may_wakeup(dev);
Pavankumar Kondeti8bb6a162010-12-07 17:53:57 +0530184
185 dev_dbg(dev, "ehci-msm PM suspend\n");
186
Andy Gross815c9d62016-05-20 16:35:07 -0500187 /* Only call ehci_suspend if ehci_setup has been done */
188 if (ehci->sbrn)
189 return ehci_suspend(hcd, do_wakeup);
190
191 return 0;
Pavankumar Kondeti8bb6a162010-12-07 17:53:57 +0530192}
193
194static int ehci_msm_pm_resume(struct device *dev)
195{
196 struct usb_hcd *hcd = dev_get_drvdata(dev);
Andy Gross815c9d62016-05-20 16:35:07 -0500197 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
Pavankumar Kondeti8bb6a162010-12-07 17:53:57 +0530198
199 dev_dbg(dev, "ehci-msm PM resume\n");
Andy Gross815c9d62016-05-20 16:35:07 -0500200
201 /* Only call ehci_resume if ehci_setup has been done */
202 if (ehci->sbrn)
203 ehci_resume(hcd, false);
Pavankumar Kondeti8bb6a162010-12-07 17:53:57 +0530204
205 return 0;
206}
Andy Gross815c9d62016-05-20 16:35:07 -0500207
Pavankumar Kondeti8bb6a162010-12-07 17:53:57 +0530208#else
209#define ehci_msm_pm_suspend NULL
210#define ehci_msm_pm_resume NULL
211#endif
212
213static const struct dev_pm_ops ehci_msm_dev_pm_ops = {
214 .suspend = ehci_msm_pm_suspend,
215 .resume = ehci_msm_pm_resume,
216};
217
Jack Phamf13f0e62015-12-10 18:28:55 -0600218static const struct acpi_device_id msm_ehci_acpi_ids[] = {
219 { "QCOM8040", 0 },
220 { }
221};
222MODULE_DEVICE_TABLE(acpi, msm_ehci_acpi_ids);
223
Jingoo Han3587fb32014-06-18 13:33:17 +0900224static const struct of_device_id msm_ehci_dt_match[] = {
Ivan T. Ivanov0fc924b2013-10-11 14:46:10 +0300225 { .compatible = "qcom,ehci-host", },
226 {}
227};
228MODULE_DEVICE_TABLE(of, msm_ehci_dt_match);
229
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +0530230static struct platform_driver ehci_msm_driver = {
231 .probe = ehci_msm_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500232 .remove = ehci_msm_remove,
Azriel Samson4bb3cad2015-12-10 18:28:57 -0600233 .shutdown = usb_hcd_platform_shutdown,
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +0530234 .driver = {
235 .name = "msm_hsusb_host",
Pavankumar Kondeti8bb6a162010-12-07 17:53:57 +0530236 .pm = &ehci_msm_dev_pm_ops,
Ivan T. Ivanov0fc924b2013-10-11 14:46:10 +0300237 .of_match_table = msm_ehci_dt_match,
Jack Phamf13f0e62015-12-10 18:28:55 -0600238 .acpi_match_table = ACPI_PTR(msm_ehci_acpi_ids),
Pavankumar Kondetib0848ae2010-12-07 17:53:56 +0530239 },
240};
Manjunath Goudar8c68e842013-04-02 18:24:03 +0200241
Nicolas Pitreedc8c542016-04-27 13:28:32 -0400242static const struct ehci_driver_overrides msm_overrides __initconst = {
Manjunath Goudar8c68e842013-04-02 18:24:03 +0200243 .reset = ehci_msm_reset,
244};
245
246static int __init ehci_msm_init(void)
247{
248 if (usb_disabled())
249 return -ENODEV;
250
251 pr_info("%s: " DRIVER_DESC "\n", hcd_name);
252 ehci_init_driver(&msm_hc_driver, &msm_overrides);
253 return platform_driver_register(&ehci_msm_driver);
254}
255module_init(ehci_msm_init);
256
257static void __exit ehci_msm_cleanup(void)
258{
259 platform_driver_unregister(&ehci_msm_driver);
260}
261module_exit(ehci_msm_cleanup);
262
263MODULE_DESCRIPTION(DRIVER_DESC);
264MODULE_ALIAS("platform:msm-ehci");
265MODULE_LICENSE("GPL");