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
8 * Bus Glue for AMD Alchemy Au1xxx
10 * Written by Christopher Hoover <ch@hpl.hp.com>
11 * Based on fragments of previous driver by Russell King et al.
13 * Modified for LH7A404 from ohci-sa1111.c
14 * by Durgesh Pattamatta <pattamattad@sharpsec.com>
15 * Modified for AMD Alchemy Au1xxx
16 * by Matt Porter <mporter@kernel.crashing.org>
18 * This file is licenced under the GPL.
21 #include <linux/platform_device.h>
22 #include <linux/signal.h>
24 #include <asm/mach-au1x00/au1000.h>
26 #ifndef CONFIG_SOC_AU1200
28 #define USBH_ENABLE_BE (1<<0)
29 #define USBH_ENABLE_C (1<<1)
30 #define USBH_ENABLE_E (1<<2)
31 #define USBH_ENABLE_CE (1<<3)
32 #define USBH_ENABLE_RD (1<<4)
34 #ifdef __LITTLE_ENDIAN
35 #define USBH_ENABLE_INIT (USBH_ENABLE_CE | USBH_ENABLE_E | USBH_ENABLE_C)
37 #define USBH_ENABLE_INIT (USBH_ENABLE_CE | USBH_ENABLE_E | USBH_ENABLE_C | \
40 #error not byte order defined
45 #define USB_HOST_CONFIG (USB_MSR_BASE + USB_MSR_MCFG)
46 #define USB_MCFG_PFEN (1<<31)
47 #define USB_MCFG_RDCOMB (1<<30)
48 #define USB_MCFG_SSDEN (1<<23)
49 #define USB_MCFG_OHCCLKEN (1<<16)
50 #ifdef CONFIG_DMA_COHERENT
51 #define USB_MCFG_UCAM (1<<7)
53 #define USB_MCFG_UCAM (0)
55 #define USB_MCFG_OBMEN (1<<1)
56 #define USB_MCFG_OMEMEN (1<<0)
58 #define USBH_ENABLE_CE USB_MCFG_OHCCLKEN
60 #define USBH_ENABLE_INIT (USB_MCFG_PFEN | USB_MCFG_RDCOMB | \
61 USBH_ENABLE_CE | USB_MCFG_SSDEN | \
63 USB_MCFG_OBMEN | USB_MCFG_OMEMEN)
65 #define USBH_DISABLE (USB_MCFG_OBMEN | USB_MCFG_OMEMEN)
69 extern int usb_disabled(void);
71 static void au1xxx_start_ohc(void)
73 /* enable host controller */
74 #ifndef CONFIG_SOC_AU1200
75 au_writel(USBH_ENABLE_CE, USB_HOST_CONFIG);
79 au_writel(au_readl(USB_HOST_CONFIG) | USBH_ENABLE_INIT, USB_HOST_CONFIG);
83 /* wait for reset complete (read register twice; see au1500 errata) */
84 while (au_readl(USB_HOST_CONFIG),
85 !(au_readl(USB_HOST_CONFIG) & USBH_ENABLE_RD))
89 au_writel(au_readl(USB_HOST_CONFIG) | USBH_ENABLE_CE, USB_HOST_CONFIG);
93 au_writel(au_readl(USB_HOST_CONFIG) | USBH_ENABLE_INIT, USB_HOST_CONFIG);
99 static void au1xxx_stop_ohc(void)
101 #ifdef CONFIG_SOC_AU1200
103 au_writel(au_readl(USB_HOST_CONFIG) & ~USBH_DISABLE, USB_HOST_CONFIG);
108 au_writel(au_readl(USB_HOST_CONFIG) & ~USBH_ENABLE_CE, USB_HOST_CONFIG);
112 static int __devinit ohci_au1xxx_start(struct usb_hcd *hcd)
114 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
117 ohci_dbg(ohci, "ohci_au1xxx_start, ohci:%p", ohci);
119 if ((ret = ohci_init(ohci)) < 0)
122 if ((ret = ohci_run(ohci)) < 0) {
123 err ("can't start %s", hcd->self.bus_name);
131 static const struct hc_driver ohci_au1xxx_hc_driver = {
132 .description = hcd_name,
133 .product_desc = "Au1xxx OHCI",
134 .hcd_priv_size = sizeof(struct ohci_hcd),
137 * generic hardware linkage
140 .flags = HCD_USB11 | HCD_MEMORY,
143 * basic lifecycle operations
145 .start = ohci_au1xxx_start,
147 .shutdown = ohci_shutdown,
150 * managing i/o requests and associated device resources
152 .urb_enqueue = ohci_urb_enqueue,
153 .urb_dequeue = ohci_urb_dequeue,
154 .endpoint_disable = ohci_endpoint_disable,
159 .get_frame_number = ohci_get_frame,
164 .hub_status_data = ohci_hub_status_data,
165 .hub_control = ohci_hub_control,
167 .bus_suspend = ohci_bus_suspend,
168 .bus_resume = ohci_bus_resume,
170 .start_port_reset = ohci_start_port_reset,
173 static int ohci_hcd_au1xxx_drv_probe(struct platform_device *pdev)
181 #if defined(CONFIG_SOC_AU1200) && defined(CONFIG_DMA_COHERENT)
182 /* Au1200 AB USB does not support coherent memory */
183 if (!(read_c0_prid() & 0xff)) {
184 printk(KERN_INFO "%s: this is chip revision AB !!\n",
186 printk(KERN_INFO "%s: update your board or re-configure "
187 "the kernel\n", pdev->name);
192 if (pdev->resource[1].flags != IORESOURCE_IRQ) {
193 pr_debug("resource[1] is not IORESOURCE_IRQ\n");
197 hcd = usb_create_hcd(&ohci_au1xxx_hc_driver, &pdev->dev, "au1xxx");
201 hcd->rsrc_start = pdev->resource[0].start;
202 hcd->rsrc_len = pdev->resource[0].end - pdev->resource[0].start + 1;
204 if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) {
205 pr_debug("request_mem_region failed\n");
210 hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len);
212 pr_debug("ioremap failed\n");
218 ohci_hcd_init(hcd_to_ohci(hcd));
220 ret = usb_add_hcd(hcd, pdev->resource[1].start,
221 IRQF_DISABLED | IRQF_SHARED);
223 platform_set_drvdata(pdev, hcd);
230 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
236 static int ohci_hcd_au1xxx_drv_remove(struct platform_device *pdev)
238 struct usb_hcd *hcd = platform_get_drvdata(pdev);
243 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
245 platform_set_drvdata(pdev, NULL);
251 static int ohci_hcd_au1xxx_drv_suspend(struct platform_device *pdev,
252 pm_message_t message)
254 struct usb_hcd *hcd = platform_get_drvdata(pdev);
255 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
261 /* Root hub was already suspended. Disable irq emission and
262 * mark HW unaccessible, bail out if RH has been resumed. Use
263 * the spinlock to properly synchronize with possible pending
264 * RH suspend or resume activity.
266 * This is still racy as hcd->state is manipulated outside of
267 * any locks =P But that will be a different fix.
269 spin_lock_irqsave(&ohci->lock, flags);
270 if (hcd->state != HC_STATE_SUSPENDED) {
274 ohci_writel(ohci, OHCI_INTR_MIE, &ohci->regs->intrdisable);
275 (void)ohci_readl(ohci, &ohci->regs->intrdisable);
277 /* make sure snapshot being resumed re-enumerates everything */
278 if (message.event == PM_EVENT_PRETHAW)
279 ohci_usb_reset(ohci);
281 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
285 spin_unlock_irqrestore(&ohci->lock, flags);
290 static int ohci_hcd_au1xxx_drv_resume(struct platform_device *pdev)
292 struct usb_hcd *hcd = platform_get_drvdata(pdev);
296 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
297 ohci_finish_controller_resume(hcd);
302 #define ohci_hcd_au1xxx_drv_suspend NULL
303 #define ohci_hcd_au1xxx_drv_resume NULL
306 static struct platform_driver ohci_hcd_au1xxx_driver = {
307 .probe = ohci_hcd_au1xxx_drv_probe,
308 .remove = ohci_hcd_au1xxx_drv_remove,
309 .shutdown = usb_hcd_platform_shutdown,
310 .suspend = ohci_hcd_au1xxx_drv_suspend,
311 .resume = ohci_hcd_au1xxx_drv_resume,
313 .name = "au1xxx-ohci",
314 .owner = THIS_MODULE,
318 MODULE_ALIAS("platform:au1xxx-ohci");