USB: ohci-omap3: Get platform resources by index rather than by name
[deliverable/linux.git] / drivers / usb / host / ohci-omap3.c
CommitLineData
88ed0c97
AG
1/*
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>
19403165 10 * Author: Keshava Munegowda <keshava_mgowda@ti.com>
88ed0c97
AG
11 *
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 *
19403165 28 * TODO (last updated Feb 27, 2011):
88ed0c97 29 * - add kernel-doc
88ed0c97
AG
30 */
31
32#include <linux/platform_device.h>
6c984b06 33#include <linux/pm_runtime.h>
88ed0c97 34
88ed0c97
AG
35/*-------------------------------------------------------------------------*/
36
88ed0c97
AG
37static 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
88ed0c97
AG
44/*-------------------------------------------------------------------------*/
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
88ed0c97
AG
70static 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 */
41ac7b3a 127static int ohci_hcd_omap3_probe(struct platform_device *pdev)
88ed0c97 128{
19403165
KM
129 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;
88ed0c97
AG
135
136 if (usb_disabled())
6c984b06 137 return -ENODEV;
88ed0c97 138
19403165
KM
139 if (!dev->parent) {
140 dev_err(dev, "Missing parent device\n");
141 return -ENODEV;
88ed0c97
AG
142 }
143
8c3ec385 144 irq = platform_get_irq(pdev, 0);
19403165
KM
145 if (irq < 0) {
146 dev_err(dev, "OHCI irq failed\n");
147 return -ENODEV;
148 }
88ed0c97 149
8c3ec385 150 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
d80cba6c 151 if (!res) {
19403165
KM
152 dev_err(dev, "UHH OHCI get resource failed\n");
153 return -ENOMEM;
88ed0c97
AG
154 }
155
19403165
KM
156 regs = ioremap(res->start, resource_size(res));
157 if (!regs) {
158 dev_err(dev, "UHH OHCI ioremap failed\n");
159 return -ENOMEM;
88ed0c97
AG
160 }
161
88ed0c97 162
19403165
KM
163 hcd = usb_create_hcd(&ohci_omap3_hc_driver, dev,
164 dev_name(dev));
165 if (!hcd) {
166 dev_err(dev, "usb_create_hcd failed\n");
167 goto err_io;
168 }
88ed0c97
AG
169
170 hcd->rsrc_start = res->start;
171 hcd->rsrc_len = resource_size(res);
19403165 172 hcd->regs = regs;
88ed0c97 173
6c984b06
KM
174 pm_runtime_enable(dev);
175 pm_runtime_get_sync(dev);
88ed0c97 176
19403165 177 ohci_hcd_init(hcd_to_ohci(hcd));
88ed0c97 178
b5dd18d8 179 ret = usb_add_hcd(hcd, irq, 0);
88ed0c97 180 if (ret) {
19403165 181 dev_dbg(dev, "failed to add hcd with err %d\n", ret);
88ed0c97
AG
182 goto err_add_hcd;
183 }
184
185 return 0;
186
187err_add_hcd:
6c984b06 188 pm_runtime_put_sync(dev);
88ed0c97
AG
189 usb_put_hcd(hcd);
190
19403165
KM
191err_io:
192 iounmap(regs);
193
88ed0c97
AG
194 return ret;
195}
196
197/*
198 * may be called without controller electrically present
199 * may be called with controller, bus, and devices active
200 */
201
202/**
203 * ohci_hcd_omap3_remove - shutdown processing for OHCI HCDs
204 * @pdev: USB Host Controller being removed
205 *
206 * Reverses the effect of ohci_hcd_omap3_probe(), first invoking
207 * the HCD's stop() method. It is always called from a thread
208 * context, normally "rmmod", "apmd", or something similar.
209 */
fb4e98ab 210static int ohci_hcd_omap3_remove(struct platform_device *pdev)
88ed0c97 211{
19403165
KM
212 struct device *dev = &pdev->dev;
213 struct usb_hcd *hcd = dev_get_drvdata(dev);
88ed0c97 214
88ed0c97 215 iounmap(hcd->regs);
19403165 216 usb_remove_hcd(hcd);
6c984b06
KM
217 pm_runtime_put_sync(dev);
218 pm_runtime_disable(dev);
88ed0c97 219 usb_put_hcd(hcd);
88ed0c97
AG
220 return 0;
221}
222
223static void ohci_hcd_omap3_shutdown(struct platform_device *pdev)
224{
19403165 225 struct usb_hcd *hcd = dev_get_drvdata(&pdev->dev);
88ed0c97
AG
226
227 if (hcd->driver->shutdown)
228 hcd->driver->shutdown(hcd);
229}
230
231static struct platform_driver ohci_hcd_omap3_driver = {
232 .probe = ohci_hcd_omap3_probe,
7690417d 233 .remove = ohci_hcd_omap3_remove,
88ed0c97
AG
234 .shutdown = ohci_hcd_omap3_shutdown,
235 .driver = {
236 .name = "ohci-omap3",
237 },
238};
239
240MODULE_ALIAS("platform:ohci-omap3");
241MODULE_AUTHOR("Anand Gadiyar <gadiyar@ti.com>");
This page took 0.221424 seconds and 5 git commands to generate.