blob: eb35d96302373c7e9e2fa3345f7d81008aa802f9 [file] [log] [blame]
Anand Gadiyar88ed0c92010-05-10 21:56:11 +05301/*
2 * ohci-omap3.c - driver for OHCI on OMAP3 and later processors
3 *
4 * Bus Glue for OMAP3 USBHOST 3 port OHCI controller
5 * This controller is also used in later OMAPs and AM35x chips
6 *
7 * Copyright (C) 2007-2010 Texas Instruments, Inc.
8 * Author: Vikram Pandita <vikram.pandita@ti.com>
9 * Author: Anand Gadiyar <gadiyar@ti.com>
Keshava Munegowda19403162011-03-01 20:08:21 +053010 * Author: Keshava Munegowda <keshava_mgowda@ti.com>
Anand Gadiyar88ed0c92010-05-10 21:56:11 +053011 *
12 * Based on ehci-omap.c and some other ohci glue layers
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 *
Keshava Munegowda19403162011-03-01 20:08:21 +053028 * TODO (last updated Feb 27, 2011):
Anand Gadiyar88ed0c92010-05-10 21:56:11 +053029 * - add kernel-doc
Anand Gadiyar88ed0c92010-05-10 21:56:11 +053030 */
31
32#include <linux/platform_device.h>
Keshava Munegowda6c984b02011-10-11 13:22:11 +053033#include <linux/pm_runtime.h>
Anand Gadiyar88ed0c92010-05-10 21:56:11 +053034
Anand Gadiyar88ed0c92010-05-10 21:56:11 +053035/*-------------------------------------------------------------------------*/
36
Anand Gadiyar88ed0c92010-05-10 21:56:11 +053037static int ohci_omap3_init(struct usb_hcd *hcd)
38{
39 dev_dbg(hcd->self.controller, "starting OHCI controller\n");
40
41 return ohci_init(hcd_to_ohci(hcd));
42}
43
Anand Gadiyar88ed0c92010-05-10 21:56:11 +053044/*-------------------------------------------------------------------------*/
45
46static int ohci_omap3_start(struct usb_hcd *hcd)
47{
48 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
49 int ret;
50
51 /*
52 * RemoteWakeupConnected has to be set explicitly before
53 * calling ohci_run. The reset value of RWC is 0.
54 */
55 ohci->hc_control = OHCI_CTRL_RWC;
56 writel(OHCI_CTRL_RWC, &ohci->regs->control);
57
58 ret = ohci_run(ohci);
59
60 if (ret < 0) {
61 dev_err(hcd->self.controller, "can't start\n");
62 ohci_stop(hcd);
63 }
64
65 return ret;
66}
67
68/*-------------------------------------------------------------------------*/
69
Anand Gadiyar88ed0c92010-05-10 21:56:11 +053070static const struct hc_driver ohci_omap3_hc_driver = {
71 .description = hcd_name,
72 .product_desc = "OMAP3 OHCI Host Controller",
73 .hcd_priv_size = sizeof(struct ohci_hcd),
74
75 /*
76 * generic hardware linkage
77 */
78 .irq = ohci_irq,
79 .flags = HCD_USB11 | HCD_MEMORY,
80
81 /*
82 * basic lifecycle operations
83 */
84 .reset = ohci_omap3_init,
85 .start = ohci_omap3_start,
86 .stop = ohci_stop,
87 .shutdown = ohci_shutdown,
88
89 /*
90 * managing i/o requests and associated device resources
91 */
92 .urb_enqueue = ohci_urb_enqueue,
93 .urb_dequeue = ohci_urb_dequeue,
94 .endpoint_disable = ohci_endpoint_disable,
95
96 /*
97 * scheduling support
98 */
99 .get_frame_number = ohci_get_frame,
100
101 /*
102 * root hub support
103 */
104 .hub_status_data = ohci_hub_status_data,
105 .hub_control = ohci_hub_control,
106#ifdef CONFIG_PM
107 .bus_suspend = ohci_bus_suspend,
108 .bus_resume = ohci_bus_resume,
109#endif
110 .start_port_reset = ohci_start_port_reset,
111};
112
113/*-------------------------------------------------------------------------*/
114
115/*
116 * configure so an HC device and id are always provided
117 * always called with process context; sleeping is OK
118 */
119
120/**
121 * ohci_hcd_omap3_probe - initialize OMAP-based HCDs
122 *
123 * Allocates basic resources for this USB host controller, and
124 * then invokes the start() method for the HCD associated with it
125 * through the hotplug entry's driver_data.
126 */
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500127static int ohci_hcd_omap3_probe(struct platform_device *pdev)
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530128{
Keshava Munegowda19403162011-03-01 20:08:21 +0530129 struct device *dev = &pdev->dev;
130 struct usb_hcd *hcd = NULL;
131 void __iomem *regs = NULL;
132 struct resource *res;
133 int ret = -ENODEV;
134 int irq;
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530135
136 if (usb_disabled())
Keshava Munegowda6c984b02011-10-11 13:22:11 +0530137 return -ENODEV;
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530138
Keshava Munegowda19403162011-03-01 20:08:21 +0530139 if (!dev->parent) {
140 dev_err(dev, "Missing parent device\n");
141 return -ENODEV;
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530142 }
143
Keshava Munegowda19403162011-03-01 20:08:21 +0530144 irq = platform_get_irq_byname(pdev, "ohci-irq");
145 if (irq < 0) {
146 dev_err(dev, "OHCI irq failed\n");
147 return -ENODEV;
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530148 }
149
Keshava Munegowda19403162011-03-01 20:08:21 +0530150 res = platform_get_resource_byname(pdev,
151 IORESOURCE_MEM, "ohci");
Julia Lawalld80cba62011-08-22 16:00:35 +0200152 if (!res) {
Keshava Munegowda19403162011-03-01 20:08:21 +0530153 dev_err(dev, "UHH OHCI get resource failed\n");
154 return -ENOMEM;
155 }
156
157 regs = ioremap(res->start, resource_size(res));
158 if (!regs) {
159 dev_err(dev, "UHH OHCI ioremap failed\n");
160 return -ENOMEM;
161 }
162
163
164 hcd = usb_create_hcd(&ohci_omap3_hc_driver, dev,
165 dev_name(dev));
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530166 if (!hcd) {
Keshava Munegowda19403162011-03-01 20:08:21 +0530167 dev_err(dev, "usb_create_hcd failed\n");
168 goto err_io;
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530169 }
170
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530171 hcd->rsrc_start = res->start;
172 hcd->rsrc_len = resource_size(res);
Keshava Munegowda19403162011-03-01 20:08:21 +0530173 hcd->regs = regs;
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530174
Keshava Munegowda6c984b02011-10-11 13:22:11 +0530175 pm_runtime_enable(dev);
176 pm_runtime_get_sync(dev);
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530177
Keshava Munegowda19403162011-03-01 20:08:21 +0530178 ohci_hcd_init(hcd_to_ohci(hcd));
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530179
Yong Zhangb5dd18d2011-09-07 16:10:52 +0800180 ret = usb_add_hcd(hcd, irq, 0);
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530181 if (ret) {
Keshava Munegowda19403162011-03-01 20:08:21 +0530182 dev_dbg(dev, "failed to add hcd with err %d\n", ret);
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530183 goto err_add_hcd;
184 }
185
186 return 0;
187
188err_add_hcd:
Keshava Munegowda6c984b02011-10-11 13:22:11 +0530189 pm_runtime_put_sync(dev);
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530190 usb_put_hcd(hcd);
191
Keshava Munegowda19403162011-03-01 20:08:21 +0530192err_io:
193 iounmap(regs);
194
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530195 return ret;
196}
197
198/*
199 * may be called without controller electrically present
200 * may be called with controller, bus, and devices active
201 */
202
203/**
204 * ohci_hcd_omap3_remove - shutdown processing for OHCI HCDs
205 * @pdev: USB Host Controller being removed
206 *
207 * Reverses the effect of ohci_hcd_omap3_probe(), first invoking
208 * the HCD's stop() method. It is always called from a thread
209 * context, normally "rmmod", "apmd", or something similar.
210 */
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500211static int ohci_hcd_omap3_remove(struct platform_device *pdev)
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530212{
Keshava Munegowda19403162011-03-01 20:08:21 +0530213 struct device *dev = &pdev->dev;
214 struct usb_hcd *hcd = dev_get_drvdata(dev);
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530215
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530216 iounmap(hcd->regs);
Keshava Munegowda19403162011-03-01 20:08:21 +0530217 usb_remove_hcd(hcd);
Keshava Munegowda6c984b02011-10-11 13:22:11 +0530218 pm_runtime_put_sync(dev);
219 pm_runtime_disable(dev);
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530220 usb_put_hcd(hcd);
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530221 return 0;
222}
223
224static void ohci_hcd_omap3_shutdown(struct platform_device *pdev)
225{
Keshava Munegowda19403162011-03-01 20:08:21 +0530226 struct usb_hcd *hcd = dev_get_drvdata(&pdev->dev);
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530227
228 if (hcd->driver->shutdown)
229 hcd->driver->shutdown(hcd);
230}
231
232static struct platform_driver ohci_hcd_omap3_driver = {
233 .probe = ohci_hcd_omap3_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500234 .remove = ohci_hcd_omap3_remove,
Anand Gadiyar88ed0c92010-05-10 21:56:11 +0530235 .shutdown = ohci_hcd_omap3_shutdown,
236 .driver = {
237 .name = "ohci-omap3",
238 },
239};
240
241MODULE_ALIAS("platform:ohci-omap3");
242MODULE_AUTHOR("Anand Gadiyar <gadiyar@ti.com>");