blob: d9d1ae236bd517458ca7bbd27a80f17663c837c8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * OHCI HCD (Host Controller Driver) for USB.
3 *
4 * (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
5 * (C) Copyright 2000-2002 David Brownell <dbrownell@users.sourceforge.net>
6 * (C) Copyright 2002 Hewlett-Packard Company
7 * (C) Copyright 2003-2005 MontaVista Software Inc.
8 *
9 * Bus Glue for PPC On-Chip OHCI driver
10 * Tested on Freescale MPC5200 and IBM STB04xxx
11 *
12 * Modified by Dale Farnsworth <dale@farnsworth.org> from ohci-sa1111.c
13 *
14 * This file is licenced under the GPL.
15 */
16
Russell Kingd052d1b2005-10-29 19:07:23 +010017#include <linux/platform_device.h>
Tim Schmielaude259682006-01-08 01:02:05 -080018#include <linux/signal.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010019
Linus Torvalds1da177e2005-04-16 15:20:36 -070020/* configure so an HC device and id are always provided */
21/* always called with process context; sleeping is OK */
22
23/**
24 * usb_hcd_ppc_soc_probe - initialize On-Chip HCDs
25 * Context: !in_interrupt()
26 *
Dale Farnsworth4fbd55f2005-08-10 17:25:25 -070027 * Allocates basic resources for this USB host controller.
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 *
29 * Store this function in the HCD's struct pci_driver as probe().
30 */
31static int usb_hcd_ppc_soc_probe(const struct hc_driver *driver,
32 struct platform_device *pdev)
33{
34 int retval;
35 struct usb_hcd *hcd;
36 struct ohci_hcd *ohci;
37 struct resource *res;
38 int irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40 pr_debug("initializing PPC-SOC USB Controller\n");
41
42 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
43 if (!res) {
44 pr_debug(__FILE__ ": no irq\n");
45 return -ENODEV;
46 }
47 irq = res->start;
48
49 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
50 if (!res) {
51 pr_debug(__FILE__ ": no reg addr\n");
52 return -ENODEV;
53 }
54
55 hcd = usb_create_hcd(driver, &pdev->dev, "PPC-SOC USB");
56 if (!hcd)
57 return -ENOMEM;
58 hcd->rsrc_start = res->start;
59 hcd->rsrc_len = res->end - res->start + 1;
60
61 if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) {
62 pr_debug(__FILE__ ": request_mem_region failed\n");
63 retval = -EBUSY;
64 goto err1;
65 }
66
67 hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len);
68 if (!hcd->regs) {
69 pr_debug(__FILE__ ": ioremap failed\n");
70 retval = -ENOMEM;
71 goto err2;
72 }
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 ohci = hcd_to_ohci(hcd);
75 ohci->flags |= OHCI_BIG_ENDIAN;
76 ohci_hcd_init(ohci);
77
Thomas Gleixnerd54b5ca2006-07-01 19:29:44 -070078 retval = usb_add_hcd(hcd, irq, IRQF_DISABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 if (retval == 0)
80 return retval;
81
82 pr_debug("Removing PPC-SOC USB Controller\n");
Dale Farnsworth4fbd55f2005-08-10 17:25:25 -070083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 iounmap(hcd->regs);
85 err2:
86 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
87 err1:
88 usb_put_hcd(hcd);
89 return retval;
90}
91
92
93/* may be called without controller electrically present */
94/* may be called with controller, bus, and devices active */
95
96/**
97 * usb_hcd_ppc_soc_remove - shutdown processing for On-Chip HCDs
98 * @pdev: USB Host Controller being removed
99 * Context: !in_interrupt()
100 *
Dale Farnsworth4fbd55f2005-08-10 17:25:25 -0700101 * Reverses the effect of usb_hcd_ppc_soc_probe().
102 * It is always called from a thread
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 * context, normally "rmmod", "apmd", or something similar.
104 *
105 */
106static void usb_hcd_ppc_soc_remove(struct usb_hcd *hcd,
107 struct platform_device *pdev)
108{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 usb_remove_hcd(hcd);
110
111 pr_debug("stopping PPC-SOC USB Controller\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 iounmap(hcd->regs);
114 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
Dale Farnsworthe52b1d32005-08-09 12:13:35 -0700115 usb_put_hcd(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
118static int __devinit
119ohci_ppc_soc_start(struct usb_hcd *hcd)
120{
121 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
122 int ret;
123
124 if ((ret = ohci_init(ohci)) < 0)
125 return ret;
126
127 if ((ret = ohci_run(ohci)) < 0) {
128 err("can't start %s", ohci_to_hcd(ohci)->self.bus_name);
129 ohci_stop(hcd);
130 return ret;
131 }
132
133 return 0;
134}
135
136static const struct hc_driver ohci_ppc_soc_hc_driver = {
137 .description = hcd_name,
138 .hcd_priv_size = sizeof(struct ohci_hcd),
139
140 /*
141 * generic hardware linkage
142 */
143 .irq = ohci_irq,
144 .flags = HCD_USB11 | HCD_MEMORY,
145
146 /*
147 * basic lifecycle operations
148 */
149 .start = ohci_ppc_soc_start,
150 .stop = ohci_stop,
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700151 .shutdown = ohci_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 /*
154 * managing i/o requests and associated device resources
155 */
156 .urb_enqueue = ohci_urb_enqueue,
157 .urb_dequeue = ohci_urb_dequeue,
158 .endpoint_disable = ohci_endpoint_disable,
159
160 /*
161 * scheduling support
162 */
163 .get_frame_number = ohci_get_frame,
164
165 /*
166 * root hub support
167 */
168 .hub_status_data = ohci_hub_status_data,
169 .hub_control = ohci_hub_control,
David Brownelld4139842006-08-04 11:31:55 -0700170 .hub_irq_enable = ohci_rhsc_enable,
David Brownell8ad7fe12005-09-13 19:59:11 -0700171#ifdef CONFIG_PM
Alan Stern0c0382e2005-10-13 17:08:02 -0400172 .bus_suspend = ohci_bus_suspend,
173 .bus_resume = ohci_bus_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#endif
175 .start_port_reset = ohci_start_port_reset,
176};
177
Russell King3ae5eae2005-11-09 22:32:44 +0000178static int ohci_hcd_ppc_soc_drv_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 int ret;
181
182 if (usb_disabled())
183 return -ENODEV;
184
185 ret = usb_hcd_ppc_soc_probe(&ohci_ppc_soc_hc_driver, pdev);
186 return ret;
187}
188
Russell King3ae5eae2005-11-09 22:32:44 +0000189static int ohci_hcd_ppc_soc_drv_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Andrey Volkov2463ade2005-11-18 01:10:48 -0800191 struct usb_hcd *hcd = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 usb_hcd_ppc_soc_remove(hcd, pdev);
194 return 0;
195}
196
Russell King3ae5eae2005-11-09 22:32:44 +0000197static struct platform_driver ohci_hcd_ppc_soc_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 .probe = ohci_hcd_ppc_soc_drv_probe,
199 .remove = ohci_hcd_ppc_soc_drv_remove,
Aleksey Gorelov64a21d02006-08-08 17:24:08 -0700200 .shutdown = usb_hcd_platform_shutdown,
David Brownell8ad7fe12005-09-13 19:59:11 -0700201#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /*.suspend = ohci_hcd_ppc_soc_drv_suspend,*/
203 /*.resume = ohci_hcd_ppc_soc_drv_resume,*/
204#endif
Russell King3ae5eae2005-11-09 22:32:44 +0000205 .driver = {
206 .name = "ppc-soc-ohci",
207 .owner = THIS_MODULE,
208 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209};
210
211static int __init ohci_hcd_ppc_soc_init(void)
212{
213 pr_debug(DRIVER_INFO " (PPC SOC)\n");
214 pr_debug("block sizes: ed %d td %d\n", sizeof(struct ed),
215 sizeof(struct td));
216
Russell King3ae5eae2005-11-09 22:32:44 +0000217 return platform_driver_register(&ohci_hcd_ppc_soc_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
220static void __exit ohci_hcd_ppc_soc_cleanup(void)
221{
Russell King3ae5eae2005-11-09 22:32:44 +0000222 platform_driver_unregister(&ohci_hcd_ppc_soc_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
225module_init(ohci_hcd_ppc_soc_init);
226module_exit(ohci_hcd_ppc_soc_cleanup);