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 2003-2005 MontaVista Software Inc.
9 * Bus Glue for PPC On-Chip OHCI driver
10 * Tested on Freescale MPC5200 and IBM STB04xxx
12 * Modified by Dale Farnsworth <dale@farnsworth.org> from ohci-sa1111.c
14 * This file is licenced under the GPL.
17 #include <linux/platform_device.h>
18 #include <linux/signal.h>
20 /* configure so an HC device and id are always provided */
21 /* always called with process context; sleeping is OK */
24 * usb_hcd_ppc_soc_probe - initialize On-Chip HCDs
25 * Context: !in_interrupt()
27 * Allocates basic resources for this USB host controller.
29 * Store this function in the HCD's struct pci_driver as probe().
31 static int usb_hcd_ppc_soc_probe(const struct hc_driver
*driver
,
32 struct platform_device
*pdev
)
36 struct ohci_hcd
*ohci
;
40 pr_debug("initializing PPC-SOC USB Controller\n");
42 res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
44 pr_debug(__FILE__
": no irq\n");
49 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
51 pr_debug(__FILE__
": no reg addr\n");
55 hcd
= usb_create_hcd(driver
, &pdev
->dev
, "PPC-SOC USB");
58 hcd
->rsrc_start
= res
->start
;
59 hcd
->rsrc_len
= res
->end
- res
->start
+ 1;
61 if (!request_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
, hcd_name
)) {
62 pr_debug(__FILE__
": request_mem_region failed\n");
67 hcd
->regs
= ioremap(hcd
->rsrc_start
, hcd
->rsrc_len
);
69 pr_debug(__FILE__
": ioremap failed\n");
74 ohci
= hcd_to_ohci(hcd
);
75 ohci
->flags
|= OHCI_QUIRK_BE_MMIO
| OHCI_QUIRK_BE_DESC
;
77 #ifdef CONFIG_PPC_MPC52xx
78 /* MPC52xx doesn't need frame_no shift */
79 ohci
->flags
|= OHCI_QUIRK_FRAME_NO
;
83 retval
= usb_add_hcd(hcd
, irq
, IRQF_DISABLED
);
87 pr_debug("Removing PPC-SOC USB Controller\n");
91 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
98 /* may be called without controller electrically present */
99 /* may be called with controller, bus, and devices active */
102 * usb_hcd_ppc_soc_remove - shutdown processing for On-Chip HCDs
103 * @pdev: USB Host Controller being removed
104 * Context: !in_interrupt()
106 * Reverses the effect of usb_hcd_ppc_soc_probe().
107 * It is always called from a thread
108 * context, normally "rmmod", "apmd", or something similar.
111 static void usb_hcd_ppc_soc_remove(struct usb_hcd
*hcd
,
112 struct platform_device
*pdev
)
116 pr_debug("stopping PPC-SOC USB Controller\n");
119 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
124 ohci_ppc_soc_start(struct usb_hcd
*hcd
)
126 struct ohci_hcd
*ohci
= hcd_to_ohci(hcd
);
129 if ((ret
= ohci_init(ohci
)) < 0)
132 if ((ret
= ohci_run(ohci
)) < 0) {
133 err("can't start %s", ohci_to_hcd(ohci
)->self
.bus_name
);
141 static const struct hc_driver ohci_ppc_soc_hc_driver
= {
142 .description
= hcd_name
,
143 .hcd_priv_size
= sizeof(struct ohci_hcd
),
146 * generic hardware linkage
149 .flags
= HCD_USB11
| HCD_MEMORY
,
152 * basic lifecycle operations
154 .start
= ohci_ppc_soc_start
,
156 .shutdown
= ohci_shutdown
,
159 * managing i/o requests and associated device resources
161 .urb_enqueue
= ohci_urb_enqueue
,
162 .urb_dequeue
= ohci_urb_dequeue
,
163 .endpoint_disable
= ohci_endpoint_disable
,
168 .get_frame_number
= ohci_get_frame
,
173 .hub_status_data
= ohci_hub_status_data
,
174 .hub_control
= ohci_hub_control
,
176 .bus_suspend
= ohci_bus_suspend
,
177 .bus_resume
= ohci_bus_resume
,
179 .start_port_reset
= ohci_start_port_reset
,
182 static int ohci_hcd_ppc_soc_drv_probe(struct platform_device
*pdev
)
189 ret
= usb_hcd_ppc_soc_probe(&ohci_ppc_soc_hc_driver
, pdev
);
193 static int ohci_hcd_ppc_soc_drv_remove(struct platform_device
*pdev
)
195 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
197 usb_hcd_ppc_soc_remove(hcd
, pdev
);
201 static struct platform_driver ohci_hcd_ppc_soc_driver
= {
202 .probe
= ohci_hcd_ppc_soc_drv_probe
,
203 .remove
= ohci_hcd_ppc_soc_drv_remove
,
204 .shutdown
= usb_hcd_platform_shutdown
,
206 /*.suspend = ohci_hcd_ppc_soc_drv_suspend,*/
207 /*.resume = ohci_hcd_ppc_soc_drv_resume,*/
210 .name
= "ppc-soc-ohci",
211 .owner
= THIS_MODULE
,
215 MODULE_ALIAS("platform:ppc-soc-ohci");