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>
22 #include <asm/arch/board.h>
23 #include <asm/arch/cpu.h>
25 #ifndef CONFIG_ARCH_AT91
26 #error "CONFIG_ARCH_AT91 must be defined."
29 /* interface and function clocks; sometimes also an AHB clock */
30 static struct clk
*iclk
, *fclk
, *hclk
;
33 extern int usb_disabled(void);
35 /*-------------------------------------------------------------------------*/
37 static void at91_start_clock(void)
39 if (cpu_is_at91sam9261())
46 static void at91_stop_clock(void)
50 if (cpu_is_at91sam9261())
55 static void at91_start_hc(struct platform_device
*pdev
)
57 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
58 struct ohci_regs __iomem
*regs
= hcd
->regs
;
60 dev_dbg(&pdev
->dev
, "start\n");
63 * Start the USB clocks.
68 * The USB host controller must remain in reset.
70 writel(0, ®s
->control
);
73 static void at91_stop_hc(struct platform_device
*pdev
)
75 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
76 struct ohci_regs __iomem
*regs
= hcd
->regs
;
78 dev_dbg(&pdev
->dev
, "stop\n");
81 * Put the USB host controller into reset.
83 writel(0, ®s
->control
);
86 * Stop the USB clocks.
92 /*-------------------------------------------------------------------------*/
94 static int usb_hcd_at91_remove (struct usb_hcd
*, struct platform_device
*);
96 /* configure so an HC device and id are always provided */
97 /* always called with process context; sleeping is OK */
101 * usb_hcd_at91_probe - initialize AT91-based HCDs
102 * Context: !in_interrupt()
104 * Allocates basic resources for this USB host controller, and
105 * then invokes the start() method for the HCD associated with it
106 * through the hotplug entry's driver_data.
108 static int usb_hcd_at91_probe(const struct hc_driver
*driver
,
109 struct platform_device
*pdev
)
112 struct usb_hcd
*hcd
= NULL
;
114 if (pdev
->num_resources
!= 2) {
115 pr_debug("hcd probe: invalid num_resources");
119 if ((pdev
->resource
[0].flags
!= IORESOURCE_MEM
)
120 || (pdev
->resource
[1].flags
!= IORESOURCE_IRQ
)) {
121 pr_debug("hcd probe: invalid resource type\n");
125 hcd
= usb_create_hcd(driver
, &pdev
->dev
, "at91");
128 hcd
->rsrc_start
= pdev
->resource
[0].start
;
129 hcd
->rsrc_len
= pdev
->resource
[0].end
- pdev
->resource
[0].start
+ 1;
131 if (!request_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
, hcd_name
)) {
132 pr_debug("request_mem_region failed\n");
137 hcd
->regs
= ioremap(hcd
->rsrc_start
, hcd
->rsrc_len
);
139 pr_debug("ioremap failed\n");
144 iclk
= clk_get(&pdev
->dev
, "ohci_clk");
145 fclk
= clk_get(&pdev
->dev
, "uhpck");
146 if (cpu_is_at91sam9261())
147 hclk
= clk_get(&pdev
->dev
, "hck0");
150 ohci_hcd_init(hcd_to_ohci(hcd
));
152 retval
= usb_add_hcd(hcd
, pdev
->resource
[1].start
, IRQF_DISABLED
);
159 if (cpu_is_at91sam9261())
167 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
175 /* may be called with controller, bus, and devices active */
178 * usb_hcd_at91_remove - shutdown processing for AT91-based HCDs
179 * @dev: USB Host Controller being removed
180 * Context: !in_interrupt()
182 * Reverses the effect of usb_hcd_at91_probe(), first invoking
183 * the HCD's stop() method. It is always called from a thread
184 * context, "rmmod" or something similar.
187 static int usb_hcd_at91_remove(struct usb_hcd
*hcd
,
188 struct platform_device
*pdev
)
193 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
195 if (cpu_is_at91sam9261())
199 fclk
= iclk
= hclk
= NULL
;
201 dev_set_drvdata(&pdev
->dev
, NULL
);
205 /*-------------------------------------------------------------------------*/
208 ohci_at91_start (struct usb_hcd
*hcd
)
210 struct at91_usbh_data
*board
= hcd
->self
.controller
->platform_data
;
211 struct ohci_hcd
*ohci
= hcd_to_ohci (hcd
);
214 if ((ret
= ohci_init(ohci
)) < 0)
217 ohci
->num_ports
= board
->ports
;
219 if ((ret
= ohci_run(ohci
)) < 0) {
220 err("can't start %s", hcd
->self
.bus_name
);
227 /*-------------------------------------------------------------------------*/
229 static const struct hc_driver ohci_at91_hc_driver
= {
230 .description
= hcd_name
,
231 .product_desc
= "AT91 OHCI",
232 .hcd_priv_size
= sizeof(struct ohci_hcd
),
235 * generic hardware linkage
238 .flags
= HCD_USB11
| HCD_MEMORY
,
241 * basic lifecycle operations
243 .start
= ohci_at91_start
,
245 .shutdown
= ohci_shutdown
,
248 * managing i/o requests and associated device resources
250 .urb_enqueue
= ohci_urb_enqueue
,
251 .urb_dequeue
= ohci_urb_dequeue
,
252 .endpoint_disable
= ohci_endpoint_disable
,
257 .get_frame_number
= ohci_get_frame
,
262 .hub_status_data
= ohci_hub_status_data
,
263 .hub_control
= ohci_hub_control
,
265 .bus_suspend
= ohci_bus_suspend
,
266 .bus_resume
= ohci_bus_resume
,
268 .start_port_reset
= ohci_start_port_reset
,
271 /*-------------------------------------------------------------------------*/
273 static int ohci_hcd_at91_drv_probe(struct platform_device
*pdev
)
275 struct at91_usbh_data
*pdata
= pdev
->dev
.platform_data
;
279 /* REVISIT make the driver support per-port power switching,
280 * and also overcurrent detection. Here we assume the ports
281 * are always powered while this driver is active, and use
282 * active-low power switches.
284 for (i
= 0; i
< pdata
->ports
; i
++) {
285 if (pdata
->vbus_pin
[i
] <= 0)
287 gpio_request(pdata
->vbus_pin
[i
], "ohci_vbus");
288 gpio_direction_output(pdata
->vbus_pin
[i
], 0);
292 device_init_wakeup(&pdev
->dev
, 1);
293 return usb_hcd_at91_probe(&ohci_at91_hc_driver
, pdev
);
296 static int ohci_hcd_at91_drv_remove(struct platform_device
*pdev
)
298 struct at91_usbh_data
*pdata
= pdev
->dev
.platform_data
;
302 for (i
= 0; i
< pdata
->ports
; i
++) {
303 if (pdata
->vbus_pin
[i
] <= 0)
305 gpio_direction_output(pdata
->vbus_pin
[i
], 1);
306 gpio_free(pdata
->vbus_pin
[i
]);
310 device_init_wakeup(&pdev
->dev
, 0);
311 return usb_hcd_at91_remove(platform_get_drvdata(pdev
), pdev
);
317 ohci_hcd_at91_drv_suspend(struct platform_device
*pdev
, pm_message_t mesg
)
319 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
320 struct ohci_hcd
*ohci
= hcd_to_ohci(hcd
);
322 if (device_may_wakeup(&pdev
->dev
))
323 enable_irq_wake(hcd
->irq
);
326 * The integrated transceivers seem unable to notice disconnect,
327 * reconnect, or wakeup without the 48 MHz clock active. so for
328 * correctness, always discard connection state (using reset).
330 * REVISIT: some boards will be able to turn VBUS off...
332 if (at91_suspend_entering_slow_clock()) {
333 ohci_usb_reset (ohci
);
340 static int ohci_hcd_at91_drv_resume(struct platform_device
*pdev
)
342 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
344 if (device_may_wakeup(&pdev
->dev
))
345 disable_irq_wake(hcd
->irq
);
350 ohci_finish_controller_resume(hcd
);
354 #define ohci_hcd_at91_drv_suspend NULL
355 #define ohci_hcd_at91_drv_resume NULL
358 MODULE_ALIAS("platform:at91_ohci");
360 static struct platform_driver ohci_hcd_at91_driver
= {
361 .probe
= ohci_hcd_at91_drv_probe
,
362 .remove
= ohci_hcd_at91_drv_remove
,
363 .shutdown
= usb_hcd_platform_shutdown
,
364 .suspend
= ohci_hcd_at91_drv_suspend
,
365 .resume
= ohci_hcd_at91_drv_resume
,
368 .owner
= THIS_MODULE
,