blob: 83e33d46408287ceff4db04a4e127078406c0916 [file] [log] [blame]
Sylvain Munaut495a6782006-12-13 21:09:55 +01001/*
2 * OHCI HCD (Host Controller Driver) for USB.
3 *
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>
8 *
9 * Bus glue for OHCI HC on the of_platform bus
10 *
11 * Modified for of_platform bus from ohci-sa1111.c
12 *
13 * This file is licenced under the GPL.
14 */
15
16#include <linux/signal.h>
Rob Herring5af50732013-09-17 14:28:33 -050017#include <linux/of_address.h>
18#include <linux/of_irq.h>
Stephen Rothwell554cc172008-05-23 16:37:58 +100019#include <linux/of_platform.h>
Sylvain Munaut495a6782006-12-13 21:09:55 +010020
Sylvain Munaut495a6782006-12-13 21:09:55 +010021#include <asm/prom.h>
22
23
Bill Pemberton41ac7b32012-11-19 13:21:48 -050024static int
Sylvain Munaut495a6782006-12-13 21:09:55 +010025ohci_ppc_of_start(struct usb_hcd *hcd)
26{
27 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
28 int ret;
29
30 if ((ret = ohci_init(ohci)) < 0)
31 return ret;
32
33 if ((ret = ohci_run(ohci)) < 0) {
Greg Kroah-Hartman1d55b762012-04-27 11:24:42 -070034 dev_err(hcd->self.controller, "can't start %s\n",
35 hcd->self.bus_name);
Sylvain Munaut495a6782006-12-13 21:09:55 +010036 ohci_stop(hcd);
37 return ret;
38 }
39
40 return 0;
41}
42
43static const struct hc_driver ohci_ppc_of_hc_driver = {
44 .description = hcd_name,
45 .product_desc = "OF OHCI",
46 .hcd_priv_size = sizeof(struct ohci_hcd),
47
48 /*
49 * generic hardware linkage
50 */
51 .irq = ohci_irq,
52 .flags = HCD_USB11 | HCD_MEMORY,
53
54 /*
55 * basic lifecycle operations
56 */
57 .start = ohci_ppc_of_start,
58 .stop = ohci_stop,
59 .shutdown = ohci_shutdown,
60
61 /*
62 * managing i/o requests and associated device resources
63 */
64 .urb_enqueue = ohci_urb_enqueue,
65 .urb_dequeue = ohci_urb_dequeue,
66 .endpoint_disable = ohci_endpoint_disable,
67
68 /*
69 * scheduling support
70 */
71 .get_frame_number = ohci_get_frame,
72
73 /*
74 * root hub support
75 */
76 .hub_status_data = ohci_hub_status_data,
77 .hub_control = ohci_hub_control,
Sylvain Munaut495a6782006-12-13 21:09:55 +010078#ifdef CONFIG_PM
79 .bus_suspend = ohci_bus_suspend,
80 .bus_resume = ohci_bus_resume,
81#endif
82 .start_port_reset = ohci_start_port_reset,
83};
84
85
Bill Pemberton41ac7b32012-11-19 13:21:48 -050086static int ohci_hcd_ppc_of_probe(struct platform_device *op)
Sylvain Munaut495a6782006-12-13 21:09:55 +010087{
Grant Likely61c7a082010-04-13 16:12:29 -070088 struct device_node *dn = op->dev.of_node;
Sylvain Munaut495a6782006-12-13 21:09:55 +010089 struct usb_hcd *hcd;
90 struct ohci_hcd *ohci;
91 struct resource res;
92 int irq;
93
94 int rv;
95 int is_bigendian;
Vitaly Bordug796bcae2008-11-09 19:43:30 +010096 struct device_node *np;
Sylvain Munaut495a6782006-12-13 21:09:55 +010097
98 if (usb_disabled())
99 return -ENODEV;
100
101 is_bigendian =
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000102 of_device_is_compatible(dn, "ohci-bigendian") ||
103 of_device_is_compatible(dn, "ohci-be");
Sylvain Munaut495a6782006-12-13 21:09:55 +0100104
105 dev_dbg(&op->dev, "initializing PPC-OF USB Controller\n");
106
107 rv = of_address_to_resource(dn, 0, &res);
108 if (rv)
109 return rv;
110
111 hcd = usb_create_hcd(&ohci_ppc_of_hc_driver, &op->dev, "PPC-OF USB");
112 if (!hcd)
113 return -ENOMEM;
114
115 hcd->rsrc_start = res.start;
Joe Perches28f65c112011-06-09 09:13:32 -0700116 hcd->rsrc_len = resource_size(&res);
Sylvain Munaut495a6782006-12-13 21:09:55 +0100117
118 if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) {
Joe Perchesf45ba772010-02-05 17:51:13 -0800119 printk(KERN_ERR "%s: request_mem_region failed\n", __FILE__);
Sylvain Munaut495a6782006-12-13 21:09:55 +0100120 rv = -EBUSY;
121 goto err_rmr;
122 }
123
124 irq = irq_of_parse_and_map(dn, 0);
125 if (irq == NO_IRQ) {
Joe Perchesf45ba772010-02-05 17:51:13 -0800126 printk(KERN_ERR "%s: irq_of_parse_and_map failed\n", __FILE__);
Sylvain Munaut495a6782006-12-13 21:09:55 +0100127 rv = -EBUSY;
128 goto err_irq;
129 }
130
131 hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len);
132 if (!hcd->regs) {
Joe Perchesf45ba772010-02-05 17:51:13 -0800133 printk(KERN_ERR "%s: ioremap failed\n", __FILE__);
Sylvain Munaut495a6782006-12-13 21:09:55 +0100134 rv = -ENOMEM;
135 goto err_ioremap;
136 }
137
138 ohci = hcd_to_ohci(hcd);
Valentine Barshak4f454262007-10-09 15:00:05 -0700139 if (is_bigendian) {
Sylvain Munaut495a6782006-12-13 21:09:55 +0100140 ohci->flags |= OHCI_QUIRK_BE_MMIO | OHCI_QUIRK_BE_DESC;
Grant Likely66ffbe42008-01-24 22:25:31 -0700141 if (of_device_is_compatible(dn, "fsl,mpc5200-ohci"))
142 ohci->flags |= OHCI_QUIRK_FRAME_NO;
Valentine Barshak4f454262007-10-09 15:00:05 -0700143 if (of_device_is_compatible(dn, "mpc5200-ohci"))
144 ohci->flags |= OHCI_QUIRK_FRAME_NO;
145 }
Sylvain Munaut495a6782006-12-13 21:09:55 +0100146
147 ohci_hcd_init(ohci);
148
Yong Zhangb5dd18d2011-09-07 16:10:52 +0800149 rv = usb_add_hcd(hcd, irq, 0);
Peter Chen3c9740a2013-11-05 10:46:02 +0800150 if (rv == 0) {
151 device_wakeup_enable(hcd->self.controller);
Sylvain Munaut495a6782006-12-13 21:09:55 +0100152 return 0;
Peter Chen3c9740a2013-11-05 10:46:02 +0800153 }
Sylvain Munaut495a6782006-12-13 21:09:55 +0100154
Vitaly Bordug796bcae2008-11-09 19:43:30 +0100155 /* by now, 440epx is known to show usb_23 erratum */
156 np = of_find_compatible_node(NULL, NULL, "ibm,usb-ehci-440epx");
157
158 /* Work around - At this point ohci_run has executed, the
159 * controller is running, everything, the root ports, etc., is
160 * set up. If the ehci driver is loaded, put the ohci core in
161 * the suspended state. The ehci driver will bring it out of
162 * suspended state when / if a non-high speed USB device is
163 * attached to the USB Host port. If the ehci driver is not
164 * loaded, do nothing. request_mem_region is used to test if
165 * the ehci driver is loaded.
166 */
167 if (np != NULL) {
168 if (!of_address_to_resource(np, 0, &res)) {
169 if (!request_mem_region(res.start, 0x4, hcd_name)) {
170 writel_be((readl_be(&ohci->regs->control) |
171 OHCI_USB_SUSPEND), &ohci->regs->control);
172 (void) readl_be(&ohci->regs->control);
173 } else
174 release_mem_region(res.start, 0x4);
175 } else
Joe Perchesf45ba772010-02-05 17:51:13 -0800176 pr_debug("%s: cannot get ehci offset from fdt\n", __FILE__);
Vitaly Bordug796bcae2008-11-09 19:43:30 +0100177 }
178
Sylvain Munaut495a6782006-12-13 21:09:55 +0100179 iounmap(hcd->regs);
180err_ioremap:
181 irq_dispose_mapping(irq);
182err_irq:
183 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
184err_rmr:
185 usb_put_hcd(hcd);
186
187 return rv;
188}
189
Grant Likely2dc11582010-08-06 09:25:50 -0600190static int ohci_hcd_ppc_of_remove(struct platform_device *op)
Sylvain Munaut495a6782006-12-13 21:09:55 +0100191{
Jingoo Han477527b2013-05-23 19:18:39 +0900192 struct usb_hcd *hcd = platform_get_drvdata(op);
Sylvain Munaut495a6782006-12-13 21:09:55 +0100193
194 dev_dbg(&op->dev, "stopping PPC-OF USB Controller\n");
195
196 usb_remove_hcd(hcd);
197
198 iounmap(hcd->regs);
199 irq_dispose_mapping(hcd->irq);
200 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
201
202 usb_put_hcd(hcd);
203
204 return 0;
205}
206
Németh Mártonc4386ad2010-01-10 15:35:03 +0100207static const struct of_device_id ohci_hcd_ppc_of_match[] = {
Sylvain Munaut495a6782006-12-13 21:09:55 +0100208#ifdef CONFIG_USB_OHCI_HCD_PPC_OF_BE
209 {
210 .name = "usb",
211 .compatible = "ohci-bigendian",
212 },
213 {
214 .name = "usb",
215 .compatible = "ohci-be",
216 },
217#endif
218#ifdef CONFIG_USB_OHCI_HCD_PPC_OF_LE
219 {
220 .name = "usb",
221 .compatible = "ohci-littledian",
222 },
223 {
224 .name = "usb",
225 .compatible = "ohci-le",
226 },
227#endif
228 {},
229};
230MODULE_DEVICE_TABLE(of, ohci_hcd_ppc_of_match);
231
232#if !defined(CONFIG_USB_OHCI_HCD_PPC_OF_BE) && \
233 !defined(CONFIG_USB_OHCI_HCD_PPC_OF_LE)
Masanari Iida1c1301d2012-04-19 00:04:46 +0900234#error "No endianness selected for ppc-of-ohci"
Sylvain Munaut495a6782006-12-13 21:09:55 +0100235#endif
236
237
Grant Likelyd35fb642011-02-22 21:08:34 -0700238static struct platform_driver ohci_hcd_ppc_of_driver = {
Sylvain Munaut495a6782006-12-13 21:09:55 +0100239 .probe = ohci_hcd_ppc_of_probe,
240 .remove = ohci_hcd_ppc_of_remove,
Roger Quadrosaaf6b522013-07-22 15:04:50 +0300241 .shutdown = usb_hcd_platform_shutdown,
Grant Likely40182942010-04-13 16:13:02 -0700242 .driver = {
243 .name = "ppc-of-ohci",
244 .owner = THIS_MODULE,
245 .of_match_table = ohci_hcd_ppc_of_match,
Sylvain Munaut495a6782006-12-13 21:09:55 +0100246 },
247};
248