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 <mach/hardware.h>
21 #include <mach/board.h>
24 #ifndef CONFIG_ARCH_AT91
25 #error "CONFIG_ARCH_AT91 must be defined."
28 /* interface and function clocks; sometimes also an AHB clock */
29 static struct clk
*iclk
, *fclk
, *hclk
;
32 extern int usb_disabled(void);
34 /*-------------------------------------------------------------------------*/
36 static void at91_start_clock(void)
44 static void at91_stop_clock(void)
52 static void at91_start_hc(struct platform_device
*pdev
)
54 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
55 struct ohci_regs __iomem
*regs
= hcd
->regs
;
57 dev_dbg(&pdev
->dev
, "start\n");
60 * Start the USB clocks.
65 * The USB host controller must remain in reset.
67 writel(0, ®s
->control
);
70 static void at91_stop_hc(struct platform_device
*pdev
)
72 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
73 struct ohci_regs __iomem
*regs
= hcd
->regs
;
75 dev_dbg(&pdev
->dev
, "stop\n");
78 * Put the USB host controller into reset.
80 writel(0, ®s
->control
);
83 * Stop the USB clocks.
89 /*-------------------------------------------------------------------------*/
91 static void usb_hcd_at91_remove (struct usb_hcd
*, struct platform_device
*);
93 /* configure so an HC device and id are always provided */
94 /* always called with process context; sleeping is OK */
98 * usb_hcd_at91_probe - initialize AT91-based HCDs
99 * Context: !in_interrupt()
101 * Allocates basic resources for this USB host controller, and
102 * then invokes the start() method for the HCD associated with it
103 * through the hotplug entry's driver_data.
105 static int usb_hcd_at91_probe(const struct hc_driver
*driver
,
106 struct platform_device
*pdev
)
109 struct usb_hcd
*hcd
= NULL
;
111 if (pdev
->num_resources
!= 2) {
112 pr_debug("hcd probe: invalid num_resources");
116 if ((pdev
->resource
[0].flags
!= IORESOURCE_MEM
)
117 || (pdev
->resource
[1].flags
!= IORESOURCE_IRQ
)) {
118 pr_debug("hcd probe: invalid resource type\n");
122 hcd
= usb_create_hcd(driver
, &pdev
->dev
, "at91");
125 hcd
->rsrc_start
= pdev
->resource
[0].start
;
126 hcd
->rsrc_len
= pdev
->resource
[0].end
- pdev
->resource
[0].start
+ 1;
128 if (!request_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
, hcd_name
)) {
129 pr_debug("request_mem_region failed\n");
134 hcd
->regs
= ioremap(hcd
->rsrc_start
, hcd
->rsrc_len
);
136 pr_debug("ioremap failed\n");
141 iclk
= clk_get(&pdev
->dev
, "ohci_clk");
142 fclk
= clk_get(&pdev
->dev
, "uhpck");
143 hclk
= clk_get(&pdev
->dev
, "hclk");
146 ohci_hcd_init(hcd_to_ohci(hcd
));
148 retval
= usb_add_hcd(hcd
, pdev
->resource
[1].start
, IRQF_SHARED
);
162 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
170 /* may be called with controller, bus, and devices active */
173 * usb_hcd_at91_remove - shutdown processing for AT91-based HCDs
174 * @dev: USB Host Controller being removed
175 * Context: !in_interrupt()
177 * Reverses the effect of usb_hcd_at91_probe(), first invoking
178 * the HCD's stop() method. It is always called from a thread
179 * context, "rmmod" or something similar.
182 static void usb_hcd_at91_remove(struct usb_hcd
*hcd
,
183 struct platform_device
*pdev
)
188 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
194 fclk
= iclk
= hclk
= NULL
;
196 dev_set_drvdata(&pdev
->dev
, NULL
);
199 /*-------------------------------------------------------------------------*/
202 ohci_at91_start (struct usb_hcd
*hcd
)
204 struct at91_usbh_data
*board
= hcd
->self
.controller
->platform_data
;
205 struct ohci_hcd
*ohci
= hcd_to_ohci (hcd
);
208 if ((ret
= ohci_init(ohci
)) < 0)
211 ohci
->num_ports
= board
->ports
;
213 if ((ret
= ohci_run(ohci
)) < 0) {
214 err("can't start %s", hcd
->self
.bus_name
);
221 static void ohci_at91_usb_set_power(struct at91_usbh_data
*pdata
, int port
, int enable
)
223 if (port
< 0 || port
>= 2)
226 gpio_set_value(pdata
->vbus_pin
[port
], !pdata
->vbus_pin_inverted
^ enable
);
229 static int ohci_at91_usb_get_power(struct at91_usbh_data
*pdata
, int port
)
231 if (port
< 0 || port
>= 2)
234 return gpio_get_value(pdata
->vbus_pin
[port
]) ^ !pdata
->vbus_pin_inverted
;
238 * Update the status data from the hub with the over-current indicator change.
240 static int ohci_at91_hub_status_data(struct usb_hcd
*hcd
, char *buf
)
242 struct at91_usbh_data
*pdata
= hcd
->self
.controller
->platform_data
;
243 int length
= ohci_hub_status_data(hcd
, buf
);
246 for (port
= 0; port
< ARRAY_SIZE(pdata
->overcurrent_pin
); port
++) {
247 if (pdata
->overcurrent_changed
[port
]) {
250 buf
[0] |= 1 << (port
+ 1);
258 * Look at the control requests to the root hub and see if we need to override.
260 static int ohci_at91_hub_control(struct usb_hcd
*hcd
, u16 typeReq
, u16 wValue
,
261 u16 wIndex
, char *buf
, u16 wLength
)
263 struct at91_usbh_data
*pdata
= hcd
->self
.controller
->platform_data
;
264 struct usb_hub_descriptor
*desc
;
266 u32
*data
= (u32
*)buf
;
268 dev_dbg(hcd
->self
.controller
,
269 "ohci_at91_hub_control(%p,0x%04x,0x%04x,0x%04x,%p,%04x)\n",
270 hcd
, typeReq
, wValue
, wIndex
, buf
, wLength
);
274 if (wValue
== USB_PORT_FEAT_POWER
) {
275 dev_dbg(hcd
->self
.controller
, "SetPortFeat: POWER\n");
276 ohci_at91_usb_set_power(pdata
, wIndex
- 1, 1);
281 case ClearPortFeature
:
283 case USB_PORT_FEAT_C_OVER_CURRENT
:
284 dev_dbg(hcd
->self
.controller
,
285 "ClearPortFeature: C_OVER_CURRENT\n");
287 if (wIndex
== 1 || wIndex
== 2) {
288 pdata
->overcurrent_changed
[wIndex
-1] = 0;
289 pdata
->overcurrent_status
[wIndex
-1] = 0;
294 case USB_PORT_FEAT_OVER_CURRENT
:
295 dev_dbg(hcd
->self
.controller
,
296 "ClearPortFeature: OVER_CURRENT\n");
298 if (wIndex
== 1 || wIndex
== 2) {
299 pdata
->overcurrent_status
[wIndex
-1] = 0;
304 case USB_PORT_FEAT_POWER
:
305 dev_dbg(hcd
->self
.controller
,
306 "ClearPortFeature: POWER\n");
308 if (wIndex
== 1 || wIndex
== 2) {
309 ohci_at91_usb_set_power(pdata
, wIndex
- 1, 0);
316 ret
= ohci_hub_control(hcd
, typeReq
, wValue
, wIndex
, buf
, wLength
);
321 case GetHubDescriptor
:
323 /* update the hub's descriptor */
325 desc
= (struct usb_hub_descriptor
*)buf
;
327 dev_dbg(hcd
->self
.controller
, "wHubCharacteristics 0x%04x\n",
328 desc
->wHubCharacteristics
);
330 /* remove the old configurations for power-switching, and
331 * over-current protection, and insert our new configuration
334 desc
->wHubCharacteristics
&= ~cpu_to_le16(HUB_CHAR_LPSM
);
335 desc
->wHubCharacteristics
|= cpu_to_le16(0x0001);
337 if (pdata
->overcurrent_supported
) {
338 desc
->wHubCharacteristics
&= ~cpu_to_le16(HUB_CHAR_OCPM
);
339 desc
->wHubCharacteristics
|= cpu_to_le16(0x0008|0x0001);
342 dev_dbg(hcd
->self
.controller
, "wHubCharacteristics after 0x%04x\n",
343 desc
->wHubCharacteristics
);
348 /* check port status */
350 dev_dbg(hcd
->self
.controller
, "GetPortStatus(%d)\n", wIndex
);
352 if (wIndex
== 1 || wIndex
== 2) {
353 if (! ohci_at91_usb_get_power(pdata
, wIndex
-1)) {
354 *data
&= ~cpu_to_le32(RH_PS_PPS
);
357 if (pdata
->overcurrent_changed
[wIndex
-1]) {
358 *data
|= cpu_to_le32(RH_PS_OCIC
);
361 if (pdata
->overcurrent_status
[wIndex
-1]) {
362 *data
|= cpu_to_le32(RH_PS_POCI
);
371 /*-------------------------------------------------------------------------*/
373 static const struct hc_driver ohci_at91_hc_driver
= {
374 .description
= hcd_name
,
375 .product_desc
= "AT91 OHCI",
376 .hcd_priv_size
= sizeof(struct ohci_hcd
),
379 * generic hardware linkage
382 .flags
= HCD_USB11
| HCD_MEMORY
,
385 * basic lifecycle operations
387 .start
= ohci_at91_start
,
389 .shutdown
= ohci_shutdown
,
392 * managing i/o requests and associated device resources
394 .urb_enqueue
= ohci_urb_enqueue
,
395 .urb_dequeue
= ohci_urb_dequeue
,
396 .endpoint_disable
= ohci_endpoint_disable
,
401 .get_frame_number
= ohci_get_frame
,
406 .hub_status_data
= ohci_at91_hub_status_data
,
407 .hub_control
= ohci_at91_hub_control
,
409 .bus_suspend
= ohci_bus_suspend
,
410 .bus_resume
= ohci_bus_resume
,
412 .start_port_reset
= ohci_start_port_reset
,
415 /*-------------------------------------------------------------------------*/
417 static irqreturn_t
ohci_hcd_at91_overcurrent_irq(int irq
, void *data
)
419 struct platform_device
*pdev
= data
;
420 struct at91_usbh_data
*pdata
= pdev
->dev
.platform_data
;
423 /* From the GPIO notifying the over-current situation, find
424 * out the corresponding port */
425 gpio
= irq_to_gpio(irq
);
426 for (port
= 0; port
< ARRAY_SIZE(pdata
->overcurrent_pin
); port
++) {
427 if (pdata
->overcurrent_pin
[port
] == gpio
)
431 if (port
== ARRAY_SIZE(pdata
->overcurrent_pin
)) {
432 dev_err(& pdev
->dev
, "overcurrent interrupt from unknown GPIO\n");
436 val
= gpio_get_value(gpio
);
438 /* When notified of an over-current situation, disable power
439 on the corresponding port, and mark this port in
442 ohci_at91_usb_set_power(pdata
, port
, 0);
443 pdata
->overcurrent_status
[port
] = 1;
444 pdata
->overcurrent_changed
[port
] = 1;
447 dev_dbg(& pdev
->dev
, "overcurrent situation %s\n",
448 val
? "exited" : "notified");
453 /*-------------------------------------------------------------------------*/
455 static int ohci_hcd_at91_drv_probe(struct platform_device
*pdev
)
457 struct at91_usbh_data
*pdata
= pdev
->dev
.platform_data
;
461 for (i
= 0; i
< ARRAY_SIZE(pdata
->vbus_pin
); i
++) {
462 if (pdata
->vbus_pin
[i
] <= 0)
464 gpio_request(pdata
->vbus_pin
[i
], "ohci_vbus");
465 ohci_at91_usb_set_power(pdata
, i
, 1);
468 for (i
= 0; i
< ARRAY_SIZE(pdata
->overcurrent_pin
); i
++) {
471 if (pdata
->overcurrent_pin
[i
] <= 0)
473 gpio_request(pdata
->overcurrent_pin
[i
], "ohci_overcurrent");
475 ret
= request_irq(gpio_to_irq(pdata
->overcurrent_pin
[i
]),
476 ohci_hcd_at91_overcurrent_irq
,
477 IRQF_SHARED
, "ohci_overcurrent", pdev
);
479 gpio_free(pdata
->overcurrent_pin
[i
]);
480 dev_warn(& pdev
->dev
, "cannot get GPIO IRQ for overcurrent\n");
485 device_init_wakeup(&pdev
->dev
, 1);
486 return usb_hcd_at91_probe(&ohci_at91_hc_driver
, pdev
);
489 static int ohci_hcd_at91_drv_remove(struct platform_device
*pdev
)
491 struct at91_usbh_data
*pdata
= pdev
->dev
.platform_data
;
495 for (i
= 0; i
< ARRAY_SIZE(pdata
->vbus_pin
); i
++) {
496 if (pdata
->vbus_pin
[i
] <= 0)
498 ohci_at91_usb_set_power(pdata
, i
, 0);
499 gpio_free(pdata
->vbus_pin
[i
]);
502 for (i
= 0; i
< ARRAY_SIZE(pdata
->overcurrent_pin
); i
++) {
503 if (pdata
->overcurrent_pin
[i
] <= 0)
505 free_irq(gpio_to_irq(pdata
->overcurrent_pin
[i
]), pdev
);
506 gpio_free(pdata
->overcurrent_pin
[i
]);
510 device_init_wakeup(&pdev
->dev
, 0);
511 usb_hcd_at91_remove(platform_get_drvdata(pdev
), pdev
);
518 ohci_hcd_at91_drv_suspend(struct platform_device
*pdev
, pm_message_t mesg
)
520 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
521 struct ohci_hcd
*ohci
= hcd_to_ohci(hcd
);
523 if (device_may_wakeup(&pdev
->dev
))
524 enable_irq_wake(hcd
->irq
);
527 * The integrated transceivers seem unable to notice disconnect,
528 * reconnect, or wakeup without the 48 MHz clock active. so for
529 * correctness, always discard connection state (using reset).
531 * REVISIT: some boards will be able to turn VBUS off...
533 if (at91_suspend_entering_slow_clock()) {
534 ohci_usb_reset (ohci
);
535 /* flush the writes */
536 (void) ohci_readl (ohci
, &ohci
->regs
->control
);
543 static int ohci_hcd_at91_drv_resume(struct platform_device
*pdev
)
545 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
547 if (device_may_wakeup(&pdev
->dev
))
548 disable_irq_wake(hcd
->irq
);
553 ohci_finish_controller_resume(hcd
);
557 #define ohci_hcd_at91_drv_suspend NULL
558 #define ohci_hcd_at91_drv_resume NULL
561 MODULE_ALIAS("platform:at91_ohci");
563 static struct platform_driver ohci_hcd_at91_driver
= {
564 .probe
= ohci_hcd_at91_drv_probe
,
565 .remove
= ohci_hcd_at91_drv_remove
,
566 .shutdown
= usb_hcd_platform_shutdown
,
567 .suspend
= ohci_hcd_at91_drv_suspend
,
568 .resume
= ohci_hcd_at91_drv_resume
,
571 .owner
= THIS_MODULE
,