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>
27 extern int usb_disabled(void);
29 static int __devinit
ohci_au1xxx_start(struct usb_hcd
*hcd
)
31 struct ohci_hcd
*ohci
= hcd_to_ohci(hcd
);
34 ohci_dbg(ohci
, "ohci_au1xxx_start, ohci:%p", ohci
);
36 if ((ret
= ohci_init(ohci
)) < 0)
39 if ((ret
= ohci_run(ohci
)) < 0) {
40 err ("can't start %s", hcd
->self
.bus_name
);
48 static const struct hc_driver ohci_au1xxx_hc_driver
= {
49 .description
= hcd_name
,
50 .product_desc
= "Au1xxx OHCI",
51 .hcd_priv_size
= sizeof(struct ohci_hcd
),
54 * generic hardware linkage
57 .flags
= HCD_USB11
| HCD_MEMORY
,
60 * basic lifecycle operations
62 .start
= ohci_au1xxx_start
,
64 .shutdown
= ohci_shutdown
,
67 * managing i/o requests and associated device resources
69 .urb_enqueue
= ohci_urb_enqueue
,
70 .urb_dequeue
= ohci_urb_dequeue
,
71 .endpoint_disable
= ohci_endpoint_disable
,
76 .get_frame_number
= ohci_get_frame
,
81 .hub_status_data
= ohci_hub_status_data
,
82 .hub_control
= ohci_hub_control
,
84 .bus_suspend
= ohci_bus_suspend
,
85 .bus_resume
= ohci_bus_resume
,
87 .start_port_reset
= ohci_start_port_reset
,
90 static int ohci_hcd_au1xxx_drv_probe(struct platform_device
*pdev
)
98 if (pdev
->resource
[1].flags
!= IORESOURCE_IRQ
) {
99 pr_debug("resource[1] is not IORESOURCE_IRQ\n");
103 hcd
= usb_create_hcd(&ohci_au1xxx_hc_driver
, &pdev
->dev
, "au1xxx");
107 hcd
->rsrc_start
= pdev
->resource
[0].start
;
108 hcd
->rsrc_len
= pdev
->resource
[0].end
- pdev
->resource
[0].start
+ 1;
110 if (!request_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
, hcd_name
)) {
111 pr_debug("request_mem_region failed\n");
116 hcd
->regs
= ioremap(hcd
->rsrc_start
, hcd
->rsrc_len
);
118 pr_debug("ioremap failed\n");
123 unit
= (hcd
->rsrc_start
== AU1300_USB_OHCI1_PHYS_ADDR
) ?
124 ALCHEMY_USB_OHCI1
: ALCHEMY_USB_OHCI0
;
125 if (alchemy_usb_control(unit
, 1)) {
126 printk(KERN_INFO
"%s: controller init failed!\n", pdev
->name
);
131 ohci_hcd_init(hcd_to_ohci(hcd
));
133 ret
= usb_add_hcd(hcd
, pdev
->resource
[1].start
,
136 platform_set_drvdata(pdev
, hcd
);
140 alchemy_usb_control(unit
, 0);
144 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
150 static int ohci_hcd_au1xxx_drv_remove(struct platform_device
*pdev
)
152 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
155 unit
= (hcd
->rsrc_start
== AU1300_USB_OHCI1_PHYS_ADDR
) ?
156 ALCHEMY_USB_OHCI1
: ALCHEMY_USB_OHCI0
;
158 alchemy_usb_control(unit
, 0);
160 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
162 platform_set_drvdata(pdev
, NULL
);
168 static int ohci_hcd_au1xxx_drv_suspend(struct device
*dev
)
170 struct usb_hcd
*hcd
= dev_get_drvdata(dev
);
171 struct ohci_hcd
*ohci
= hcd_to_ohci(hcd
);
177 /* Root hub was already suspended. Disable irq emission and
178 * mark HW unaccessible, bail out if RH has been resumed. Use
179 * the spinlock to properly synchronize with possible pending
180 * RH suspend or resume activity.
182 spin_lock_irqsave(&ohci
->lock
, flags
);
183 if (ohci
->rh_state
!= OHCI_RH_SUSPENDED
) {
187 ohci_writel(ohci
, OHCI_INTR_MIE
, &ohci
->regs
->intrdisable
);
188 (void)ohci_readl(ohci
, &ohci
->regs
->intrdisable
);
190 clear_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
);
192 alchemy_usb_control(ALCHEMY_USB_OHCI0
, 0);
194 spin_unlock_irqrestore(&ohci
->lock
, flags
);
199 static int ohci_hcd_au1xxx_drv_resume(struct device
*dev
)
201 struct usb_hcd
*hcd
= dev_get_drvdata(dev
);
203 alchemy_usb_control(ALCHEMY_USB_OHCI0
, 1);
205 set_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
);
206 ohci_finish_controller_resume(hcd
);
211 static const struct dev_pm_ops au1xxx_ohci_pmops
= {
212 .suspend
= ohci_hcd_au1xxx_drv_suspend
,
213 .resume
= ohci_hcd_au1xxx_drv_resume
,
216 #define AU1XXX_OHCI_PMOPS &au1xxx_ohci_pmops
219 #define AU1XXX_OHCI_PMOPS NULL
222 static struct platform_driver ohci_hcd_au1xxx_driver
= {
223 .probe
= ohci_hcd_au1xxx_drv_probe
,
224 .remove
= ohci_hcd_au1xxx_drv_remove
,
225 .shutdown
= usb_hcd_platform_shutdown
,
227 .name
= "au1xxx-ohci",
228 .owner
= THIS_MODULE
,
229 .pm
= AU1XXX_OHCI_PMOPS
,
233 MODULE_ALIAS("platform:au1xxx-ohci");