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>
17 #include <linux/of_platform.h>
18 #include <linux/of_gpio.h>
20 #include <mach/hardware.h>
23 #include <mach/board.h>
26 #ifndef CONFIG_ARCH_AT91
27 #error "CONFIG_ARCH_AT91 must be defined."
30 #define valid_port(index) ((index) >= 0 && (index) < AT91_MAX_USBH_PORTS)
31 #define at91_for_each_port(index) \
32 for ((index) = 0; (index) < AT91_MAX_USBH_PORTS; (index)++)
34 /* interface and function clocks; sometimes also an AHB clock */
35 static struct clk
*iclk
, *fclk
, *hclk
;
38 extern int usb_disabled(void);
40 /*-------------------------------------------------------------------------*/
42 static void at91_start_clock(void)
50 static void at91_stop_clock(void)
58 static void at91_start_hc(struct platform_device
*pdev
)
60 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
61 struct ohci_regs __iomem
*regs
= hcd
->regs
;
63 dev_dbg(&pdev
->dev
, "start\n");
66 * Start the USB clocks.
71 * The USB host controller must remain in reset.
73 writel(0, ®s
->control
);
76 static void at91_stop_hc(struct platform_device
*pdev
)
78 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
79 struct ohci_regs __iomem
*regs
= hcd
->regs
;
81 dev_dbg(&pdev
->dev
, "stop\n");
84 * Put the USB host controller into reset.
86 writel(0, ®s
->control
);
89 * Stop the USB clocks.
95 /*-------------------------------------------------------------------------*/
97 static void __devexit
usb_hcd_at91_remove (struct usb_hcd
*, struct platform_device
*);
99 /* configure so an HC device and id are always provided */
100 /* always called with process context; sleeping is OK */
104 * usb_hcd_at91_probe - initialize AT91-based HCDs
105 * Context: !in_interrupt()
107 * Allocates basic resources for this USB host controller, and
108 * then invokes the start() method for the HCD associated with it
109 * through the hotplug entry's driver_data.
111 static int __devinit
usb_hcd_at91_probe(const struct hc_driver
*driver
,
112 struct platform_device
*pdev
)
115 struct usb_hcd
*hcd
= NULL
;
117 if (pdev
->num_resources
!= 2) {
118 pr_debug("hcd probe: invalid num_resources");
122 if ((pdev
->resource
[0].flags
!= IORESOURCE_MEM
)
123 || (pdev
->resource
[1].flags
!= IORESOURCE_IRQ
)) {
124 pr_debug("hcd probe: invalid resource type\n");
128 hcd
= usb_create_hcd(driver
, &pdev
->dev
, "at91");
131 hcd
->rsrc_start
= pdev
->resource
[0].start
;
132 hcd
->rsrc_len
= resource_size(&pdev
->resource
[0]);
134 if (!request_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
, hcd_name
)) {
135 pr_debug("request_mem_region failed\n");
140 hcd
->regs
= ioremap(hcd
->rsrc_start
, hcd
->rsrc_len
);
142 pr_debug("ioremap failed\n");
147 iclk
= clk_get(&pdev
->dev
, "ohci_clk");
149 dev_err(&pdev
->dev
, "failed to get ohci_clk\n");
150 retval
= PTR_ERR(iclk
);
153 fclk
= clk_get(&pdev
->dev
, "uhpck");
155 dev_err(&pdev
->dev
, "failed to get uhpck\n");
156 retval
= PTR_ERR(fclk
);
159 hclk
= clk_get(&pdev
->dev
, "hclk");
161 dev_err(&pdev
->dev
, "failed to get hclk\n");
162 retval
= PTR_ERR(hclk
);
167 ohci_hcd_init(hcd_to_ohci(hcd
));
169 retval
= usb_add_hcd(hcd
, pdev
->resource
[1].start
, IRQF_SHARED
);
186 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
194 /* may be called with controller, bus, and devices active */
197 * usb_hcd_at91_remove - shutdown processing for AT91-based HCDs
198 * @dev: USB Host Controller being removed
199 * Context: !in_interrupt()
201 * Reverses the effect of usb_hcd_at91_probe(), first invoking
202 * the HCD's stop() method. It is always called from a thread
203 * context, "rmmod" or something similar.
206 static void __devexit
usb_hcd_at91_remove(struct usb_hcd
*hcd
,
207 struct platform_device
*pdev
)
212 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
218 fclk
= iclk
= hclk
= NULL
;
220 dev_set_drvdata(&pdev
->dev
, NULL
);
223 /*-------------------------------------------------------------------------*/
226 ohci_at91_start (struct usb_hcd
*hcd
)
228 struct at91_usbh_data
*board
= hcd
->self
.controller
->platform_data
;
229 struct ohci_hcd
*ohci
= hcd_to_ohci (hcd
);
232 if ((ret
= ohci_init(ohci
)) < 0)
235 ohci
->num_ports
= board
->ports
;
237 if ((ret
= ohci_run(ohci
)) < 0) {
238 dev_err(hcd
->self
.controller
, "can't start %s\n",
246 static void ohci_at91_usb_set_power(struct at91_usbh_data
*pdata
, int port
, int enable
)
248 if (!valid_port(port
))
251 if (!gpio_is_valid(pdata
->vbus_pin
[port
]))
254 gpio_set_value(pdata
->vbus_pin
[port
],
255 pdata
->vbus_pin_active_low
[port
] ^ enable
);
258 static int ohci_at91_usb_get_power(struct at91_usbh_data
*pdata
, int port
)
260 if (!valid_port(port
))
263 if (!gpio_is_valid(pdata
->vbus_pin
[port
]))
266 return gpio_get_value(pdata
->vbus_pin
[port
]) ^
267 pdata
->vbus_pin_active_low
[port
];
271 * Update the status data from the hub with the over-current indicator change.
273 static int ohci_at91_hub_status_data(struct usb_hcd
*hcd
, char *buf
)
275 struct at91_usbh_data
*pdata
= hcd
->self
.controller
->platform_data
;
276 int length
= ohci_hub_status_data(hcd
, buf
);
279 at91_for_each_port(port
) {
280 if (pdata
->overcurrent_changed
[port
]) {
283 buf
[0] |= 1 << (port
+ 1);
291 * Look at the control requests to the root hub and see if we need to override.
293 static int ohci_at91_hub_control(struct usb_hcd
*hcd
, u16 typeReq
, u16 wValue
,
294 u16 wIndex
, char *buf
, u16 wLength
)
296 struct at91_usbh_data
*pdata
= hcd
->self
.controller
->platform_data
;
297 struct usb_hub_descriptor
*desc
;
299 u32
*data
= (u32
*)buf
;
301 dev_dbg(hcd
->self
.controller
,
302 "ohci_at91_hub_control(%p,0x%04x,0x%04x,0x%04x,%p,%04x)\n",
303 hcd
, typeReq
, wValue
, wIndex
, buf
, wLength
);
309 if (wValue
== USB_PORT_FEAT_POWER
) {
310 dev_dbg(hcd
->self
.controller
, "SetPortFeat: POWER\n");
311 if (valid_port(wIndex
)) {
312 ohci_at91_usb_set_power(pdata
, wIndex
, 1);
320 case ClearPortFeature
:
322 case USB_PORT_FEAT_C_OVER_CURRENT
:
323 dev_dbg(hcd
->self
.controller
,
324 "ClearPortFeature: C_OVER_CURRENT\n");
326 if (valid_port(wIndex
)) {
327 pdata
->overcurrent_changed
[wIndex
] = 0;
328 pdata
->overcurrent_status
[wIndex
] = 0;
333 case USB_PORT_FEAT_OVER_CURRENT
:
334 dev_dbg(hcd
->self
.controller
,
335 "ClearPortFeature: OVER_CURRENT\n");
337 if (valid_port(wIndex
))
338 pdata
->overcurrent_status
[wIndex
] = 0;
342 case USB_PORT_FEAT_POWER
:
343 dev_dbg(hcd
->self
.controller
,
344 "ClearPortFeature: POWER\n");
346 if (valid_port(wIndex
)) {
347 ohci_at91_usb_set_power(pdata
, wIndex
, 0);
354 ret
= ohci_hub_control(hcd
, typeReq
, wValue
, wIndex
+ 1, buf
, wLength
);
359 case GetHubDescriptor
:
361 /* update the hub's descriptor */
363 desc
= (struct usb_hub_descriptor
*)buf
;
365 dev_dbg(hcd
->self
.controller
, "wHubCharacteristics 0x%04x\n",
366 desc
->wHubCharacteristics
);
368 /* remove the old configurations for power-switching, and
369 * over-current protection, and insert our new configuration
372 desc
->wHubCharacteristics
&= ~cpu_to_le16(HUB_CHAR_LPSM
);
373 desc
->wHubCharacteristics
|= cpu_to_le16(0x0001);
375 if (pdata
->overcurrent_supported
) {
376 desc
->wHubCharacteristics
&= ~cpu_to_le16(HUB_CHAR_OCPM
);
377 desc
->wHubCharacteristics
|= cpu_to_le16(0x0008|0x0001);
380 dev_dbg(hcd
->self
.controller
, "wHubCharacteristics after 0x%04x\n",
381 desc
->wHubCharacteristics
);
386 /* check port status */
388 dev_dbg(hcd
->self
.controller
, "GetPortStatus(%d)\n", wIndex
);
390 if (valid_port(wIndex
)) {
391 if (!ohci_at91_usb_get_power(pdata
, wIndex
))
392 *data
&= ~cpu_to_le32(RH_PS_PPS
);
394 if (pdata
->overcurrent_changed
[wIndex
])
395 *data
|= cpu_to_le32(RH_PS_OCIC
);
397 if (pdata
->overcurrent_status
[wIndex
])
398 *data
|= cpu_to_le32(RH_PS_POCI
);
406 /*-------------------------------------------------------------------------*/
408 static const struct hc_driver ohci_at91_hc_driver
= {
409 .description
= hcd_name
,
410 .product_desc
= "AT91 OHCI",
411 .hcd_priv_size
= sizeof(struct ohci_hcd
),
414 * generic hardware linkage
417 .flags
= HCD_USB11
| HCD_MEMORY
,
420 * basic lifecycle operations
422 .start
= ohci_at91_start
,
424 .shutdown
= ohci_shutdown
,
427 * managing i/o requests and associated device resources
429 .urb_enqueue
= ohci_urb_enqueue
,
430 .urb_dequeue
= ohci_urb_dequeue
,
431 .endpoint_disable
= ohci_endpoint_disable
,
436 .get_frame_number
= ohci_get_frame
,
441 .hub_status_data
= ohci_at91_hub_status_data
,
442 .hub_control
= ohci_at91_hub_control
,
444 .bus_suspend
= ohci_bus_suspend
,
445 .bus_resume
= ohci_bus_resume
,
447 .start_port_reset
= ohci_start_port_reset
,
450 /*-------------------------------------------------------------------------*/
452 static irqreturn_t
ohci_hcd_at91_overcurrent_irq(int irq
, void *data
)
454 struct platform_device
*pdev
= data
;
455 struct at91_usbh_data
*pdata
= pdev
->dev
.platform_data
;
458 /* From the GPIO notifying the over-current situation, find
459 * out the corresponding port */
460 at91_for_each_port(port
) {
461 if (gpio_to_irq(pdata
->overcurrent_pin
[port
]) == irq
) {
462 gpio
= pdata
->overcurrent_pin
[port
];
467 if (port
== AT91_MAX_USBH_PORTS
) {
468 dev_err(& pdev
->dev
, "overcurrent interrupt from unknown GPIO\n");
472 val
= gpio_get_value(gpio
);
474 /* When notified of an over-current situation, disable power
475 on the corresponding port, and mark this port in
478 ohci_at91_usb_set_power(pdata
, port
, 0);
479 pdata
->overcurrent_status
[port
] = 1;
480 pdata
->overcurrent_changed
[port
] = 1;
483 dev_dbg(& pdev
->dev
, "overcurrent situation %s\n",
484 val
? "exited" : "notified");
490 static const struct of_device_id at91_ohci_dt_ids
[] = {
491 { .compatible
= "atmel,at91rm9200-ohci" },
495 MODULE_DEVICE_TABLE(of
, at91_ohci_dt_ids
);
497 static u64 at91_ohci_dma_mask
= DMA_BIT_MASK(32);
499 static int __devinit
ohci_at91_of_init(struct platform_device
*pdev
)
501 struct device_node
*np
= pdev
->dev
.of_node
;
503 enum of_gpio_flags flags
;
504 struct at91_usbh_data
*pdata
;
510 /* Right now device-tree probed devices don't get dma_mask set.
511 * Since shared usb code relies on it, set it here for now.
512 * Once we have dma capability bindings this can go away.
514 if (!pdev
->dev
.dma_mask
)
515 pdev
->dev
.dma_mask
= &at91_ohci_dma_mask
;
517 pdata
= devm_kzalloc(&pdev
->dev
, sizeof(*pdata
), GFP_KERNEL
);
521 if (!of_property_read_u32(np
, "num-ports", &ports
))
522 pdata
->ports
= ports
;
524 at91_for_each_port(i
) {
525 gpio
= of_get_named_gpio_flags(np
, "atmel,vbus-gpio", i
, &flags
);
526 pdata
->vbus_pin
[i
] = gpio
;
527 if (!gpio_is_valid(gpio
))
529 pdata
->vbus_pin_active_low
[i
] = flags
& OF_GPIO_ACTIVE_LOW
;
532 at91_for_each_port(i
)
533 pdata
->overcurrent_pin
[i
] =
534 of_get_named_gpio_flags(np
, "atmel,oc-gpio", i
, &flags
);
536 pdev
->dev
.platform_data
= pdata
;
541 static int __devinit
ohci_at91_of_init(struct platform_device
*pdev
)
547 /*-------------------------------------------------------------------------*/
549 static int __devinit
ohci_hcd_at91_drv_probe(struct platform_device
*pdev
)
551 struct at91_usbh_data
*pdata
;
556 ret
= ohci_at91_of_init(pdev
);
560 pdata
= pdev
->dev
.platform_data
;
563 at91_for_each_port(i
) {
564 if (!gpio_is_valid(pdata
->vbus_pin
[i
]))
566 gpio
= pdata
->vbus_pin
[i
];
568 ret
= gpio_request(gpio
, "ohci_vbus");
571 "can't request vbus gpio %d\n", gpio
);
574 ret
= gpio_direction_output(gpio
,
575 !pdata
->vbus_pin_active_low
[i
]);
578 "can't put vbus gpio %d as output %d\n",
579 gpio
, !pdata
->vbus_pin_active_low
[i
]);
584 ohci_at91_usb_set_power(pdata
, i
, 1);
587 at91_for_each_port(i
) {
588 if (!gpio_is_valid(pdata
->overcurrent_pin
[i
]))
590 gpio
= pdata
->overcurrent_pin
[i
];
592 ret
= gpio_request(gpio
, "ohci_overcurrent");
595 "can't request overcurrent gpio %d\n",
600 ret
= gpio_direction_input(gpio
);
603 "can't configure overcurrent gpio %d as input\n",
609 ret
= request_irq(gpio_to_irq(gpio
),
610 ohci_hcd_at91_overcurrent_irq
,
611 IRQF_SHARED
, "ohci_overcurrent", pdev
);
615 "can't get gpio IRQ for overcurrent\n");
620 device_init_wakeup(&pdev
->dev
, 1);
621 return usb_hcd_at91_probe(&ohci_at91_hc_driver
, pdev
);
624 static int __devexit
ohci_hcd_at91_drv_remove(struct platform_device
*pdev
)
626 struct at91_usbh_data
*pdata
= pdev
->dev
.platform_data
;
630 at91_for_each_port(i
) {
631 if (!gpio_is_valid(pdata
->vbus_pin
[i
]))
633 ohci_at91_usb_set_power(pdata
, i
, 0);
634 gpio_free(pdata
->vbus_pin
[i
]);
637 at91_for_each_port(i
) {
638 if (!gpio_is_valid(pdata
->overcurrent_pin
[i
]))
640 free_irq(gpio_to_irq(pdata
->overcurrent_pin
[i
]), pdev
);
641 gpio_free(pdata
->overcurrent_pin
[i
]);
645 device_init_wakeup(&pdev
->dev
, 0);
646 usb_hcd_at91_remove(platform_get_drvdata(pdev
), pdev
);
653 ohci_hcd_at91_drv_suspend(struct platform_device
*pdev
, pm_message_t mesg
)
655 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
656 struct ohci_hcd
*ohci
= hcd_to_ohci(hcd
);
658 if (device_may_wakeup(&pdev
->dev
))
659 enable_irq_wake(hcd
->irq
);
662 * The integrated transceivers seem unable to notice disconnect,
663 * reconnect, or wakeup without the 48 MHz clock active. so for
664 * correctness, always discard connection state (using reset).
666 * REVISIT: some boards will be able to turn VBUS off...
668 if (at91_suspend_entering_slow_clock()) {
669 ohci_usb_reset (ohci
);
670 /* flush the writes */
671 (void) ohci_readl (ohci
, &ohci
->regs
->control
);
678 static int ohci_hcd_at91_drv_resume(struct platform_device
*pdev
)
680 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
682 if (device_may_wakeup(&pdev
->dev
))
683 disable_irq_wake(hcd
->irq
);
688 ohci_finish_controller_resume(hcd
);
692 #define ohci_hcd_at91_drv_suspend NULL
693 #define ohci_hcd_at91_drv_resume NULL
696 MODULE_ALIAS("platform:at91_ohci");
698 static struct platform_driver ohci_hcd_at91_driver
= {
699 .probe
= ohci_hcd_at91_drv_probe
,
700 .remove
= __devexit_p(ohci_hcd_at91_drv_remove
),
701 .shutdown
= usb_hcd_platform_shutdown
,
702 .suspend
= ohci_hcd_at91_drv_suspend
,
703 .resume
= ohci_hcd_at91_drv_resume
,
706 .owner
= THIS_MODULE
,
707 .of_match_table
= of_match_ptr(at91_ohci_dt_ids
),