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
7 * (C) Copyright 2006 Sylvain Munaut <tnt@246tNt.com>
9 * Bus glue for OHCI HC on the of_platform bus
11 * Modified for of_platform bus from ohci-sa1111.c
13 * This file is licenced under the GPL.
16 #include <linux/signal.h>
18 #include <asm/of_platform.h>
23 ohci_ppc_of_start(struct usb_hcd
*hcd
)
25 struct ohci_hcd
*ohci
= hcd_to_ohci(hcd
);
28 if ((ret
= ohci_init(ohci
)) < 0)
31 if ((ret
= ohci_run(ohci
)) < 0) {
32 err("can't start %s", ohci_to_hcd(ohci
)->self
.bus_name
);
40 static const struct hc_driver ohci_ppc_of_hc_driver
= {
41 .description
= hcd_name
,
42 .product_desc
= "OF OHCI",
43 .hcd_priv_size
= sizeof(struct ohci_hcd
),
46 * generic hardware linkage
49 .flags
= HCD_USB11
| HCD_MEMORY
,
52 * basic lifecycle operations
54 .start
= ohci_ppc_of_start
,
56 .shutdown
= ohci_shutdown
,
59 * managing i/o requests and associated device resources
61 .urb_enqueue
= ohci_urb_enqueue
,
62 .urb_dequeue
= ohci_urb_dequeue
,
63 .endpoint_disable
= ohci_endpoint_disable
,
68 .get_frame_number
= ohci_get_frame
,
73 .hub_status_data
= ohci_hub_status_data
,
74 .hub_control
= ohci_hub_control
,
75 .hub_irq_enable
= ohci_rhsc_enable
,
77 .bus_suspend
= ohci_bus_suspend
,
78 .bus_resume
= ohci_bus_resume
,
80 .start_port_reset
= ohci_start_port_reset
,
85 ohci_hcd_ppc_of_probe(struct of_device
*op
, const struct of_device_id
*match
)
87 struct device_node
*dn
= op
->node
;
89 struct ohci_hcd
*ohci
;
100 of_device_is_compatible(dn
, "ohci-bigendian") ||
101 of_device_is_compatible(dn
, "ohci-be");
103 dev_dbg(&op
->dev
, "initializing PPC-OF USB Controller\n");
105 rv
= of_address_to_resource(dn
, 0, &res
);
109 hcd
= usb_create_hcd(&ohci_ppc_of_hc_driver
, &op
->dev
, "PPC-OF USB");
113 hcd
->rsrc_start
= res
.start
;
114 hcd
->rsrc_len
= res
.end
- res
.start
+ 1;
116 if (!request_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
, hcd_name
)) {
117 printk(KERN_ERR __FILE__
": request_mem_region failed\n");
122 irq
= irq_of_parse_and_map(dn
, 0);
124 printk(KERN_ERR __FILE__
": irq_of_parse_and_map failed\n");
129 hcd
->regs
= ioremap(hcd
->rsrc_start
, hcd
->rsrc_len
);
131 printk(KERN_ERR __FILE__
": ioremap failed\n");
136 ohci
= hcd_to_ohci(hcd
);
138 ohci
->flags
|= OHCI_QUIRK_BE_MMIO
| OHCI_QUIRK_BE_DESC
;
142 rv
= usb_add_hcd(hcd
, irq
, 0);
148 irq_dispose_mapping(irq
);
150 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
157 static int ohci_hcd_ppc_of_remove(struct of_device
*op
)
159 struct usb_hcd
*hcd
= dev_get_drvdata(&op
->dev
);
160 dev_set_drvdata(&op
->dev
, NULL
);
162 dev_dbg(&op
->dev
, "stopping PPC-OF USB Controller\n");
167 irq_dispose_mapping(hcd
->irq
);
168 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
175 static int ohci_hcd_ppc_of_shutdown(struct of_device
*op
)
177 struct usb_hcd
*hcd
= dev_get_drvdata(&op
->dev
);
179 if (hcd
->driver
->shutdown
)
180 hcd
->driver
->shutdown(hcd
);
186 static struct of_device_id ohci_hcd_ppc_of_match
[] = {
187 #ifdef CONFIG_USB_OHCI_HCD_PPC_OF_BE
190 .compatible
= "ohci-bigendian",
194 .compatible
= "ohci-be",
197 #ifdef CONFIG_USB_OHCI_HCD_PPC_OF_LE
200 .compatible
= "ohci-littledian",
204 .compatible
= "ohci-le",
209 MODULE_DEVICE_TABLE(of
, ohci_hcd_ppc_of_match
);
211 #if !defined(CONFIG_USB_OHCI_HCD_PPC_OF_BE) && \
212 !defined(CONFIG_USB_OHCI_HCD_PPC_OF_LE)
213 #error "No endianess selected for ppc-of-ohci"
217 static struct of_platform_driver ohci_hcd_ppc_of_driver
= {
218 .name
= "ppc-of-ohci",
219 .match_table
= ohci_hcd_ppc_of_match
,
220 .probe
= ohci_hcd_ppc_of_probe
,
221 .remove
= ohci_hcd_ppc_of_remove
,
222 .shutdown
= ohci_hcd_ppc_of_shutdown
,
224 /*.suspend = ohci_hcd_ppc_soc_drv_suspend,*/
225 /*.resume = ohci_hcd_ppc_soc_drv_resume,*/
228 .name
= "ppc-of-ohci",
229 .owner
= THIS_MODULE
,