2 * OHCI HCD (Host Controller Driver) for USB.
4 * Copyright (C) 2004 SAN People (Pty) Ltd.
5 * Copyright (C) 2005 Thibaut VARENE <varenet@parisc-linux.org>
9 * Based on fragments of 2.4 driver by Rick Bronson.
10 * Based on ohci-omap.c
12 * This file is licenced under the GPL.
15 #include <linux/clk.h>
16 #include <linux/platform_device.h>
18 #include <asm/mach-types.h>
19 #include <asm/hardware.h>
20 #include <asm/arch/board.h>
22 #ifndef CONFIG_ARCH_AT91
23 #error "CONFIG_ARCH_AT91 must be defined."
26 /* interface and function clocks */
27 static struct clk
*iclk
, *fclk
;
30 extern int usb_disabled(void);
32 /*-------------------------------------------------------------------------*/
34 static void at91_start_hc(struct platform_device
*pdev
)
36 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
37 struct ohci_regs __iomem
*regs
= hcd
->regs
;
39 dev_dbg(&pdev
->dev
, "start\n");
42 * Start the USB clocks.
49 * The USB host controller must remain in reset.
51 writel(0, ®s
->control
);
54 static void at91_stop_hc(struct platform_device
*pdev
)
56 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
57 struct ohci_regs __iomem
*regs
= hcd
->regs
;
59 dev_dbg(&pdev
->dev
, "stop\n");
62 * Put the USB host controller into reset.
64 writel(0, ®s
->control
);
67 * Stop the USB clocks.
75 /*-------------------------------------------------------------------------*/
77 static int usb_hcd_at91_remove (struct usb_hcd
*, struct platform_device
*);
79 /* configure so an HC device and id are always provided */
80 /* always called with process context; sleeping is OK */
84 * usb_hcd_at91_probe - initialize AT91-based HCDs
85 * Context: !in_interrupt()
87 * Allocates basic resources for this USB host controller, and
88 * then invokes the start() method for the HCD associated with it
89 * through the hotplug entry's driver_data.
91 static int usb_hcd_at91_probe(const struct hc_driver
*driver
,
92 struct platform_device
*pdev
)
95 struct usb_hcd
*hcd
= NULL
;
97 if (pdev
->num_resources
!= 2) {
98 pr_debug("hcd probe: invalid num_resources");
102 if ((pdev
->resource
[0].flags
!= IORESOURCE_MEM
)
103 || (pdev
->resource
[1].flags
!= IORESOURCE_IRQ
)) {
104 pr_debug("hcd probe: invalid resource type\n");
108 hcd
= usb_create_hcd(driver
, &pdev
->dev
, "at91");
111 hcd
->rsrc_start
= pdev
->resource
[0].start
;
112 hcd
->rsrc_len
= pdev
->resource
[0].end
- pdev
->resource
[0].start
+ 1;
114 if (!request_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
, hcd_name
)) {
115 pr_debug("request_mem_region failed\n");
120 hcd
->regs
= ioremap(hcd
->rsrc_start
, hcd
->rsrc_len
);
122 pr_debug("ioremap failed\n");
127 iclk
= clk_get(&pdev
->dev
, "ohci_clk");
128 fclk
= clk_get(&pdev
->dev
, "uhpck");
131 ohci_hcd_init(hcd_to_ohci(hcd
));
133 retval
= usb_add_hcd(hcd
, pdev
->resource
[1].start
, IRQF_DISABLED
);
146 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
154 /* may be called with controller, bus, and devices active */
157 * usb_hcd_at91_remove - shutdown processing for AT91-based HCDs
158 * @dev: USB Host Controller being removed
159 * Context: !in_interrupt()
161 * Reverses the effect of usb_hcd_at91_probe(), first invoking
162 * the HCD's stop() method. It is always called from a thread
163 * context, "rmmod" or something similar.
166 static int usb_hcd_at91_remove(struct usb_hcd
*hcd
,
167 struct platform_device
*pdev
)
172 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
173 disable_irq_wake(hcd
->irq
);
179 dev_set_drvdata(&pdev
->dev
, NULL
);
183 /*-------------------------------------------------------------------------*/
186 ohci_at91_start (struct usb_hcd
*hcd
)
188 struct at91_usbh_data
*board
= hcd
->self
.controller
->platform_data
;
189 struct ohci_hcd
*ohci
= hcd_to_ohci (hcd
);
190 struct usb_device
*root
= hcd
->self
.root_hub
;
193 if ((ret
= ohci_init(ohci
)) < 0)
196 ohci
->num_ports
= board
->ports
;
198 if ((ret
= ohci_run(ohci
)) < 0) {
199 err("can't start %s", hcd
->self
.bus_name
);
206 /*-------------------------------------------------------------------------*/
208 static const struct hc_driver ohci_at91_hc_driver
= {
209 .description
= hcd_name
,
210 .product_desc
= "AT91 OHCI",
211 .hcd_priv_size
= sizeof(struct ohci_hcd
),
214 * generic hardware linkage
217 .flags
= HCD_USB11
| HCD_MEMORY
,
220 * basic lifecycle operations
222 .start
= ohci_at91_start
,
224 .shutdown
= ohci_shutdown
,
227 * managing i/o requests and associated device resources
229 .urb_enqueue
= ohci_urb_enqueue
,
230 .urb_dequeue
= ohci_urb_dequeue
,
231 .endpoint_disable
= ohci_endpoint_disable
,
236 .get_frame_number
= ohci_get_frame
,
241 .hub_status_data
= ohci_hub_status_data
,
242 .hub_control
= ohci_hub_control
,
243 .hub_irq_enable
= ohci_rhsc_enable
,
245 .bus_suspend
= ohci_bus_suspend
,
246 .bus_resume
= ohci_bus_resume
,
248 .start_port_reset
= ohci_start_port_reset
,
251 /*-------------------------------------------------------------------------*/
253 static int ohci_hcd_at91_drv_probe(struct platform_device
*pdev
)
255 device_init_wakeup(&pdev
->dev
, 1);
256 return usb_hcd_at91_probe(&ohci_at91_hc_driver
, pdev
);
259 static int ohci_hcd_at91_drv_remove(struct platform_device
*pdev
)
261 device_init_wakeup(&pdev
->dev
, 0);
262 return usb_hcd_at91_remove(platform_get_drvdata(pdev
), pdev
);
268 ohci_hcd_at91_drv_suspend(struct platform_device
*pdev
, pm_message_t mesg
)
270 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
271 struct ohci_hcd
*ohci
= hcd_to_ohci(hcd
);
273 if (device_may_wakeup(&pdev
->dev
))
274 enable_irq_wake(hcd
->irq
);
276 disable_irq_wake(hcd
->irq
);
279 * The integrated transceivers seem unable to notice disconnect,
280 * reconnect, or wakeup without the 48 MHz clock active. so for
281 * correctness, always discard connection state (using reset).
283 * REVISIT: some boards will be able to turn VBUS off...
285 if (at91_suspend_entering_slow_clock()) {
286 ohci_usb_reset (ohci
);
295 static int ohci_hcd_at91_drv_resume(struct platform_device
*pdev
)
306 #define ohci_hcd_at91_drv_suspend NULL
307 #define ohci_hcd_at91_drv_resume NULL
310 MODULE_ALIAS("at91_ohci");
312 static struct platform_driver ohci_hcd_at91_driver
= {
313 .probe
= ohci_hcd_at91_drv_probe
,
314 .remove
= ohci_hcd_at91_drv_remove
,
315 .shutdown
= usb_hcd_platform_shutdown
,
316 .suspend
= ohci_hcd_at91_drv_suspend
,
317 .resume
= ohci_hcd_at91_drv_resume
,
320 .owner
= THIS_MODULE
,
324 static int __init
ohci_hcd_at91_init (void)
329 return platform_driver_register(&ohci_hcd_at91_driver
);
332 static void __exit
ohci_hcd_at91_cleanup (void)
334 platform_driver_unregister(&ohci_hcd_at91_driver
);
337 module_init (ohci_hcd_at91_init
);
338 module_exit (ohci_hcd_at91_cleanup
);