1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28#include <linux/signal.h>
29
30#include <linux/of.h>
31#include <linux/of_platform.h>
32#include <linux/of_address.h>
33
34
35
36
37
38
39
40static int ehci_xilinx_of_setup(struct usb_hcd *hcd)
41{
42 struct ehci_hcd *ehci = hcd_to_ehci(hcd);
43 int retval;
44
45 retval = ehci_halt(ehci);
46 if (retval)
47 return retval;
48
49 retval = ehci_init(hcd);
50 if (retval)
51 return retval;
52
53 ehci->sbrn = 0x20;
54
55 return ehci_reset(ehci);
56}
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72static int ehci_xilinx_port_handed_over(struct usb_hcd *hcd, int portnum)
73{
74 dev_warn(hcd->self.controller, "port %d cannot be enabled\n", portnum);
75 if (hcd->has_tt) {
76 dev_warn(hcd->self.controller,
77 "Maybe you have connected a low speed device?\n");
78
79 dev_warn(hcd->self.controller,
80 "We do not support low speed devices\n");
81 } else {
82 dev_warn(hcd->self.controller,
83 "Maybe your device is not a high speed device?\n");
84 dev_warn(hcd->self.controller,
85 "The USB host controller does not support full speed "
86 "nor low speed devices\n");
87 dev_warn(hcd->self.controller,
88 "You can reconfigure the host controller to have "
89 "full speed support\n");
90 }
91
92 return 0;
93}
94
95
96static const struct hc_driver ehci_xilinx_of_hc_driver = {
97 .description = hcd_name,
98 .product_desc = "OF EHCI",
99 .hcd_priv_size = sizeof(struct ehci_hcd),
100
101
102
103
104 .irq = ehci_irq,
105 .flags = HCD_MEMORY | HCD_USB2,
106
107
108
109
110 .reset = ehci_xilinx_of_setup,
111 .start = ehci_run,
112 .stop = ehci_stop,
113 .shutdown = ehci_shutdown,
114
115
116
117
118 .urb_enqueue = ehci_urb_enqueue,
119 .urb_dequeue = ehci_urb_dequeue,
120 .endpoint_disable = ehci_endpoint_disable,
121 .endpoint_reset = ehci_endpoint_reset,
122
123
124
125
126 .get_frame_number = ehci_get_frame,
127
128
129
130
131 .hub_status_data = ehci_hub_status_data,
132 .hub_control = ehci_hub_control,
133#ifdef CONFIG_PM
134 .bus_suspend = ehci_bus_suspend,
135 .bus_resume = ehci_bus_resume,
136#endif
137 .relinquish_port = NULL,
138 .port_handed_over = ehci_xilinx_port_handed_over,
139
140 .clear_tt_buffer_complete = ehci_clear_tt_buffer_complete,
141};
142
143
144
145
146
147
148
149
150
151
152static int __devinit ehci_hcd_xilinx_of_probe(struct platform_device *op)
153{
154 struct device_node *dn = op->dev.of_node;
155 struct usb_hcd *hcd;
156 struct ehci_hcd *ehci;
157 struct resource res;
158 int irq;
159 int rv;
160 int *value;
161
162 if (usb_disabled())
163 return -ENODEV;
164
165 dev_dbg(&op->dev, "initializing XILINX-OF USB Controller\n");
166
167 rv = of_address_to_resource(dn, 0, &res);
168 if (rv)
169 return rv;
170
171 hcd = usb_create_hcd(&ehci_xilinx_of_hc_driver, &op->dev,
172 "XILINX-OF USB");
173 if (!hcd)
174 return -ENOMEM;
175
176 hcd->rsrc_start = res.start;
177 hcd->rsrc_len = resource_size(&res);
178
179 if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) {
180 printk(KERN_ERR "%s: request_mem_region failed\n", __FILE__);
181 rv = -EBUSY;
182 goto err_rmr;
183 }
184
185 irq = irq_of_parse_and_map(dn, 0);
186 if (!irq) {
187 printk(KERN_ERR "%s: irq_of_parse_and_map failed\n", __FILE__);
188 rv = -EBUSY;
189 goto err_irq;
190 }
191
192 hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len);
193 if (!hcd->regs) {
194 printk(KERN_ERR "%s: ioremap failed\n", __FILE__);
195 rv = -ENOMEM;
196 goto err_ioremap;
197 }
198
199 ehci = hcd_to_ehci(hcd);
200
201
202
203
204 ehci->big_endian_mmio = 1;
205 ehci->big_endian_desc = 1;
206
207
208
209 value = (int *)of_get_property(dn, "xlnx,support-usb-fs", NULL);
210 if (value && (*value == 1)) {
211 ehci_dbg(ehci, "USB host controller supports FS devices\n");
212 hcd->has_tt = 1;
213 } else {
214 ehci_dbg(ehci,
215 "USB host controller is HS only\n");
216 hcd->has_tt = 0;
217 }
218
219
220
221 ehci->caps = hcd->regs + 0x100;
222 ehci->regs = hcd->regs + 0x100 +
223 HC_LENGTH(ehci, ehci_readl(ehci, &ehci->caps->hc_capbase));
224
225
226 ehci->hcs_params = ehci_readl(ehci, &ehci->caps->hcs_params);
227
228 rv = usb_add_hcd(hcd, irq, 0);
229 if (rv == 0)
230 return 0;
231
232 iounmap(hcd->regs);
233
234err_ioremap:
235err_irq:
236 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
237err_rmr:
238 usb_put_hcd(hcd);
239
240 return rv;
241}
242
243
244
245
246
247
248
249
250static int ehci_hcd_xilinx_of_remove(struct platform_device *op)
251{
252 struct usb_hcd *hcd = dev_get_drvdata(&op->dev);
253 dev_set_drvdata(&op->dev, NULL);
254
255 dev_dbg(&op->dev, "stopping XILINX-OF USB Controller\n");
256
257 usb_remove_hcd(hcd);
258
259 iounmap(hcd->regs);
260 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
261
262 usb_put_hcd(hcd);
263
264 return 0;
265}
266
267
268
269
270
271
272
273static int ehci_hcd_xilinx_of_shutdown(struct platform_device *op)
274{
275 struct usb_hcd *hcd = dev_get_drvdata(&op->dev);
276
277 if (hcd->driver->shutdown)
278 hcd->driver->shutdown(hcd);
279
280 return 0;
281}
282
283
284static const struct of_device_id ehci_hcd_xilinx_of_match[] = {
285 {.compatible = "xlnx,xps-usb-host-1.00.a",},
286 {},
287};
288MODULE_DEVICE_TABLE(of, ehci_hcd_xilinx_of_match);
289
290static struct platform_driver ehci_hcd_xilinx_of_driver = {
291 .probe = ehci_hcd_xilinx_of_probe,
292 .remove = ehci_hcd_xilinx_of_remove,
293 .shutdown = ehci_hcd_xilinx_of_shutdown,
294 .driver = {
295 .name = "xilinx-of-ehci",
296 .owner = THIS_MODULE,
297 .of_match_table = ehci_hcd_xilinx_of_match,
298 },
299};
300