Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / usb / host / ohci-sa1111.c
blob814d2be4ee7b93e06b94203ac313473a02b41d41
1 /*
2 * OHCI HCD (Host Controller Driver) for USB.
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 *
8 * SA1111 Bus Glue
10 * Written by Christopher Hoover <ch@hpl.hp.com>
11 * Based on fragments of previous driver by Rusell King et al.
13 * This file is licenced under the GPL.
16 #include <asm/hardware.h>
17 #include <asm/mach-types.h>
18 #include <asm/arch/assabet.h>
19 #include <asm/arch/badge4.h>
20 #include <asm/hardware/sa1111.h>
22 #ifndef CONFIG_SA1111
23 #error "This file is SA-1111 bus glue. CONFIG_SA1111 must be defined."
24 #endif
26 extern int usb_disabled(void);
28 /*-------------------------------------------------------------------------*/
30 static void sa1111_start_hc(struct sa1111_dev *dev)
32 unsigned int usb_rst = 0;
34 printk(KERN_DEBUG __FILE__
35 ": starting SA-1111 OHCI USB Controller\n");
37 #ifdef CONFIG_SA1100_BADGE4
38 if (machine_is_badge4()) {
39 badge4_set_5V(BADGE4_5V_USB, 1);
41 #endif
43 if (machine_is_xp860() ||
44 machine_has_neponset() ||
45 machine_is_pfs168() ||
46 machine_is_badge4())
47 usb_rst = USB_RESET_PWRSENSELOW | USB_RESET_PWRCTRLLOW;
50 * Configure the power sense and control lines. Place the USB
51 * host controller in reset.
53 sa1111_writel(usb_rst | USB_RESET_FORCEIFRESET | USB_RESET_FORCEHCRESET,
54 dev->mapbase + SA1111_USB_RESET);
57 * Now, carefully enable the USB clock, and take
58 * the USB host controller out of reset.
60 sa1111_enable_device(dev);
61 udelay(11);
62 sa1111_writel(usb_rst, dev->mapbase + SA1111_USB_RESET);
65 static void sa1111_stop_hc(struct sa1111_dev *dev)
67 unsigned int usb_rst;
68 printk(KERN_DEBUG __FILE__
69 ": stopping SA-1111 OHCI USB Controller\n");
72 * Put the USB host controller into reset.
74 usb_rst = sa1111_readl(dev->mapbase + SA1111_USB_RESET);
75 sa1111_writel(usb_rst | USB_RESET_FORCEIFRESET | USB_RESET_FORCEHCRESET,
76 dev->mapbase + SA1111_USB_RESET);
79 * Stop the USB clock.
81 sa1111_disable_device(dev);
83 #ifdef CONFIG_SA1100_BADGE4
84 if (machine_is_badge4()) {
85 /* Disable power to the USB bus */
86 badge4_set_5V(BADGE4_5V_USB, 0);
88 #endif
92 /*-------------------------------------------------------------------------*/
94 #if 0
95 static void dump_hci_status(struct usb_hcd *hcd, const char *label)
97 unsigned long status = sa1111_readl(hcd->regs + SA1111_USB_STATUS);
99 dbg ("%s USB_STATUS = { %s%s%s%s%s}", label,
100 ((status & USB_STATUS_IRQHCIRMTWKUP) ? "IRQHCIRMTWKUP " : ""),
101 ((status & USB_STATUS_IRQHCIBUFFACC) ? "IRQHCIBUFFACC " : ""),
102 ((status & USB_STATUS_NIRQHCIM) ? "" : "IRQHCIM "),
103 ((status & USB_STATUS_NHCIMFCLR) ? "" : "HCIMFCLR "),
104 ((status & USB_STATUS_USBPWRSENSE) ? "USBPWRSENSE " : ""));
106 #endif
108 /*-------------------------------------------------------------------------*/
110 /* configure so an HC device and id are always provided */
111 /* always called with process context; sleeping is OK */
115 * usb_hcd_sa1111_probe - initialize SA-1111-based HCDs
116 * Context: !in_interrupt()
118 * Allocates basic resources for this USB host controller, and
119 * then invokes the start() method for the HCD associated with it
120 * through the hotplug entry's driver_data.
122 * Store this function in the HCD's struct pci_driver as probe().
124 int usb_hcd_sa1111_probe (const struct hc_driver *driver,
125 struct sa1111_dev *dev)
127 struct usb_hcd *hcd;
128 int retval;
130 hcd = usb_create_hcd (driver, &dev->dev, "sa1111");
131 if (!hcd)
132 return -ENOMEM;
133 hcd->rsrc_start = dev->res.start;
134 hcd->rsrc_len = dev->res.end - dev->res.start + 1;
136 if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) {
137 dbg("request_mem_region failed");
138 retval = -EBUSY;
139 goto err1;
141 hcd->regs = dev->mapbase;
143 sa1111_start_hc(dev);
144 ohci_hcd_init(hcd_to_ohci(hcd));
146 retval = usb_add_hcd(hcd, dev->irq[1], SA_INTERRUPT);
147 if (retval == 0)
148 return retval;
150 sa1111_stop_hc(dev);
151 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
152 err1:
153 usb_put_hcd(hcd);
154 return retval;
158 /* may be called without controller electrically present */
159 /* may be called with controller, bus, and devices active */
162 * usb_hcd_sa1111_remove - shutdown processing for SA-1111-based HCDs
163 * @dev: USB Host Controller being removed
164 * Context: !in_interrupt()
166 * Reverses the effect of usb_hcd_sa1111_probe(), first invoking
167 * the HCD's stop() method. It is always called from a thread
168 * context, normally "rmmod", "apmd", or something similar.
171 void usb_hcd_sa1111_remove (struct usb_hcd *hcd, struct sa1111_dev *dev)
173 usb_remove_hcd(hcd);
174 sa1111_stop_hc(dev);
175 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
176 usb_put_hcd(hcd);
179 /*-------------------------------------------------------------------------*/
181 static int __devinit
182 ohci_sa1111_start (struct usb_hcd *hcd)
184 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
185 int ret;
187 if ((ret = ohci_init(ohci)) < 0)
188 return ret;
190 if ((ret = ohci_run (ohci)) < 0) {
191 err ("can't start %s", hcd->self.bus_name);
192 ohci_stop (hcd);
193 return ret;
195 return 0;
198 /*-------------------------------------------------------------------------*/
200 static const struct hc_driver ohci_sa1111_hc_driver = {
201 .description = hcd_name,
202 .product_desc = "SA-1111 OHCI",
203 .hcd_priv_size = sizeof(struct ohci_hcd),
206 * generic hardware linkage
208 .irq = ohci_irq,
209 .flags = HCD_USB11 | HCD_MEMORY,
212 * basic lifecycle operations
214 .start = ohci_sa1111_start,
215 #ifdef CONFIG_PM
216 /* suspend: ohci_sa1111_suspend, -- tbd */
217 /* resume: ohci_sa1111_resume, -- tbd */
218 #endif
219 .stop = ohci_stop,
222 * managing i/o requests and associated device resources
224 .urb_enqueue = ohci_urb_enqueue,
225 .urb_dequeue = ohci_urb_dequeue,
226 .endpoint_disable = ohci_endpoint_disable,
229 * scheduling support
231 .get_frame_number = ohci_get_frame,
234 * root hub support
236 .hub_status_data = ohci_hub_status_data,
237 .hub_control = ohci_hub_control,
238 #ifdef CONFIG_USB_SUSPEND
239 .hub_suspend = ohci_hub_suspend,
240 .hub_resume = ohci_hub_resume,
241 #endif
244 /*-------------------------------------------------------------------------*/
246 static int ohci_hcd_sa1111_drv_probe(struct sa1111_dev *dev)
248 int ret;
250 if (usb_disabled())
251 return -ENODEV;
253 ret = usb_hcd_sa1111_probe(&ohci_sa1111_hc_driver, dev);
254 return ret;
257 static int ohci_hcd_sa1111_drv_remove(struct sa1111_dev *dev)
259 struct usb_hcd *hcd = sa1111_get_drvdata(dev);
261 usb_hcd_sa1111_remove(hcd, dev);
262 return 0;
265 static struct sa1111_driver ohci_hcd_sa1111_driver = {
266 .drv = {
267 .name = "sa1111-ohci",
269 .devid = SA1111_DEVID_USB,
270 .probe = ohci_hcd_sa1111_drv_probe,
271 .remove = ohci_hcd_sa1111_drv_remove,
274 static int __init ohci_hcd_sa1111_init (void)
276 dbg (DRIVER_INFO " (SA-1111)");
277 dbg ("block sizes: ed %d td %d",
278 sizeof (struct ed), sizeof (struct td));
280 return sa1111_driver_register(&ohci_hcd_sa1111_driver);
283 static void __exit ohci_hcd_sa1111_cleanup (void)
285 sa1111_driver_unregister(&ohci_hcd_sa1111_driver);
288 module_init (ohci_hcd_sa1111_init);
289 module_exit (ohci_hcd_sa1111_cleanup);