1 // SPDX-License-Identifier: GPL-1.0+
3 * OHCI HCD (Host Controller Driver) for USB.
5 * (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
6 * (C) Copyright 2000-2002 David Brownell <dbrownell@users.sourceforge.net>
7 * (C) Copyright 2002 Hewlett-Packard Company
8 * (C) Copyright 2006 Sylvain Munaut <tnt@246tNt.com>
10 * Bus glue for OHCI HC on the of_platform bus
12 * Modified for of_platform bus from ohci-sa1111.c
14 * This file is licenced under the GPL.
17 #include <linux/signal.h>
18 #include <linux/of_address.h>
19 #include <linux/of_irq.h>
20 #include <linux/of_platform.h>
26 ohci_ppc_of_start(struct usb_hcd
*hcd
)
28 struct ohci_hcd
*ohci
= hcd_to_ohci(hcd
);
31 if ((ret
= ohci_init(ohci
)) < 0)
34 if ((ret
= ohci_run(ohci
)) < 0) {
35 dev_err(hcd
->self
.controller
, "can't start %s\n",
44 static const struct hc_driver ohci_ppc_of_hc_driver
= {
45 .description
= hcd_name
,
46 .product_desc
= "OF OHCI",
47 .hcd_priv_size
= sizeof(struct ohci_hcd
),
50 * generic hardware linkage
53 .flags
= HCD_USB11
| HCD_DMA
| HCD_MEMORY
,
56 * basic lifecycle operations
58 .start
= ohci_ppc_of_start
,
60 .shutdown
= ohci_shutdown
,
63 * managing i/o requests and associated device resources
65 .urb_enqueue
= ohci_urb_enqueue
,
66 .urb_dequeue
= ohci_urb_dequeue
,
67 .endpoint_disable
= ohci_endpoint_disable
,
72 .get_frame_number
= ohci_get_frame
,
77 .hub_status_data
= ohci_hub_status_data
,
78 .hub_control
= ohci_hub_control
,
80 .bus_suspend
= ohci_bus_suspend
,
81 .bus_resume
= ohci_bus_resume
,
83 .start_port_reset
= ohci_start_port_reset
,
87 static int ohci_hcd_ppc_of_probe(struct platform_device
*op
)
89 struct device_node
*dn
= op
->dev
.of_node
;
91 struct ohci_hcd
*ohci
;
97 struct device_node
*np
;
103 of_device_is_compatible(dn
, "ohci-bigendian") ||
104 of_device_is_compatible(dn
, "ohci-be");
106 dev_dbg(&op
->dev
, "initializing PPC-OF USB Controller\n");
108 rv
= of_address_to_resource(dn
, 0, &res
);
112 hcd
= usb_create_hcd(&ohci_ppc_of_hc_driver
, &op
->dev
, "PPC-OF USB");
116 hcd
->rsrc_start
= res
.start
;
117 hcd
->rsrc_len
= resource_size(&res
);
119 hcd
->regs
= devm_ioremap_resource(&op
->dev
, &res
);
120 if (IS_ERR(hcd
->regs
)) {
121 rv
= PTR_ERR(hcd
->regs
);
125 irq
= irq_of_parse_and_map(dn
, 0);
127 dev_err(&op
->dev
, "%s: irq_of_parse_and_map failed\n",
133 ohci
= hcd_to_ohci(hcd
);
135 ohci
->flags
|= OHCI_QUIRK_BE_MMIO
| OHCI_QUIRK_BE_DESC
;
136 if (of_device_is_compatible(dn
, "fsl,mpc5200-ohci"))
137 ohci
->flags
|= OHCI_QUIRK_FRAME_NO
;
138 if (of_device_is_compatible(dn
, "mpc5200-ohci"))
139 ohci
->flags
|= OHCI_QUIRK_FRAME_NO
;
144 rv
= usb_add_hcd(hcd
, irq
, 0);
146 device_wakeup_enable(hcd
->self
.controller
);
150 /* by now, 440epx is known to show usb_23 erratum */
151 np
= of_find_compatible_node(NULL
, NULL
, "ibm,usb-ehci-440epx");
153 /* Work around - At this point ohci_run has executed, the
154 * controller is running, everything, the root ports, etc., is
155 * set up. If the ehci driver is loaded, put the ohci core in
156 * the suspended state. The ehci driver will bring it out of
157 * suspended state when / if a non-high speed USB device is
158 * attached to the USB Host port. If the ehci driver is not
159 * loaded, do nothing. request_mem_region is used to test if
160 * the ehci driver is loaded.
163 if (!of_address_to_resource(np
, 0, &res
)) {
164 if (!request_mem_region(res
.start
, 0x4, hcd_name
)) {
165 writel_be((readl_be(&ohci
->regs
->control
) |
166 OHCI_USB_SUSPEND
), &ohci
->regs
->control
);
167 (void) readl_be(&ohci
->regs
->control
);
169 release_mem_region(res
.start
, 0x4);
171 pr_debug("%s: cannot get ehci offset from fdt\n", __FILE__
);
174 irq_dispose_mapping(irq
);
181 static int ohci_hcd_ppc_of_remove(struct platform_device
*op
)
183 struct usb_hcd
*hcd
= platform_get_drvdata(op
);
185 dev_dbg(&op
->dev
, "stopping PPC-OF USB Controller\n");
189 irq_dispose_mapping(hcd
->irq
);
196 static const struct of_device_id ohci_hcd_ppc_of_match
[] = {
197 #ifdef CONFIG_USB_OHCI_HCD_PPC_OF_BE
200 .compatible
= "ohci-bigendian",
204 .compatible
= "ohci-be",
207 #ifdef CONFIG_USB_OHCI_HCD_PPC_OF_LE
210 .compatible
= "ohci-littledian",
214 .compatible
= "ohci-le",
219 MODULE_DEVICE_TABLE(of
, ohci_hcd_ppc_of_match
);
221 #if !defined(CONFIG_USB_OHCI_HCD_PPC_OF_BE) && \
222 !defined(CONFIG_USB_OHCI_HCD_PPC_OF_LE)
223 #error "No endianness selected for ppc-of-ohci"
227 static struct platform_driver ohci_hcd_ppc_of_driver
= {
228 .probe
= ohci_hcd_ppc_of_probe
,
229 .remove
= ohci_hcd_ppc_of_remove
,
230 .shutdown
= usb_hcd_platform_shutdown
,
232 .name
= "ppc-of-ohci",
233 .of_match_table
= ohci_hcd_ppc_of_match
,