2 * EHCI HCD (Host Controller Driver) for USB.
4 * Bus Glue for Xilinx EHCI core on the of_platform bus
6 * Copyright (c) 2009 Xilinx, Inc.
8 * Based on "ehci-ppc-of.c" by Valentine Barshak <vbarshak@ru.mvista.com>
9 * and "ehci-ppc-soc.c" by Stefan Roese <sr@denx.de>
10 * and "ohci-ppc-of.c" by Sylvain Munaut <tnt@246tNt.com>
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software Foundation,
24 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #include <linux/err.h>
29 #include <linux/signal.h>
32 #include <linux/of_platform.h>
33 #include <linux/of_address.h>
34 #include <linux/of_irq.h>
37 * ehci_xilinx_port_handed_over - hand the port out if failed to enable it
38 * @hcd: Pointer to the usb_hcd device to which the host controller bound
39 * @portnum:Port number to which the device is attached.
41 * This function is used as a place to tell the user that the Xilinx USB host
42 * controller does support LS devices. And in an HS only configuration, it
43 * does not support FS devices either. It is hoped that this can help a
46 * There are cases when the host controller fails to enable the port due to,
47 * for example, insufficient power that can be supplied to the device from
48 * the USB bus. In those cases, the messages printed here are not helpful.
50 static int ehci_xilinx_port_handed_over(struct usb_hcd
*hcd
, int portnum
)
52 dev_warn(hcd
->self
.controller
, "port %d cannot be enabled\n", portnum
);
54 dev_warn(hcd
->self
.controller
,
55 "Maybe you have connected a low speed device?\n");
57 dev_warn(hcd
->self
.controller
,
58 "We do not support low speed devices\n");
60 dev_warn(hcd
->self
.controller
,
61 "Maybe your device is not a high speed device?\n");
62 dev_warn(hcd
->self
.controller
,
63 "The USB host controller does not support full speed "
64 "nor low speed devices\n");
65 dev_warn(hcd
->self
.controller
,
66 "You can reconfigure the host controller to have "
67 "full speed support\n");
74 static const struct hc_driver ehci_xilinx_of_hc_driver
= {
75 .description
= hcd_name
,
76 .product_desc
= "OF EHCI",
77 .hcd_priv_size
= sizeof(struct ehci_hcd
),
80 * generic hardware linkage
83 .flags
= HCD_MEMORY
| HCD_USB2
| HCD_BH
,
86 * basic lifecycle operations
91 .shutdown
= ehci_shutdown
,
94 * managing i/o requests and associated device resources
96 .urb_enqueue
= ehci_urb_enqueue
,
97 .urb_dequeue
= ehci_urb_dequeue
,
98 .endpoint_disable
= ehci_endpoint_disable
,
99 .endpoint_reset
= ehci_endpoint_reset
,
104 .get_frame_number
= ehci_get_frame
,
109 .hub_status_data
= ehci_hub_status_data
,
110 .hub_control
= ehci_hub_control
,
112 .bus_suspend
= ehci_bus_suspend
,
113 .bus_resume
= ehci_bus_resume
,
115 .relinquish_port
= NULL
,
116 .port_handed_over
= ehci_xilinx_port_handed_over
,
118 .clear_tt_buffer_complete
= ehci_clear_tt_buffer_complete
,
122 * ehci_hcd_xilinx_of_probe - Probe method for the USB host controller
123 * @op: pointer to the platform_device bound to the host controller
125 * This function requests resources and sets up appropriate properties for the
126 * host controller. Because the Xilinx USB host controller can be configured
127 * as HS only or HS/FS only, it checks the configuration in the device tree
128 * entry, and sets an appropriate value for hcd->has_tt.
130 static int ehci_hcd_xilinx_of_probe(struct platform_device
*op
)
132 struct device_node
*dn
= op
->dev
.of_node
;
134 struct ehci_hcd
*ehci
;
143 dev_dbg(&op
->dev
, "initializing XILINX-OF USB Controller\n");
145 rv
= of_address_to_resource(dn
, 0, &res
);
149 hcd
= usb_create_hcd(&ehci_xilinx_of_hc_driver
, &op
->dev
,
154 hcd
->rsrc_start
= res
.start
;
155 hcd
->rsrc_len
= resource_size(&res
);
157 irq
= irq_of_parse_and_map(dn
, 0);
159 dev_err(&op
->dev
, "%s: irq_of_parse_and_map failed\n",
165 hcd
->regs
= devm_ioremap_resource(&op
->dev
, &res
);
166 if (IS_ERR(hcd
->regs
)) {
167 rv
= PTR_ERR(hcd
->regs
);
171 ehci
= hcd_to_ehci(hcd
);
173 /* This core always has big-endian register interface and uses
174 * big-endian memory descriptors.
176 ehci
->big_endian_mmio
= 1;
177 ehci
->big_endian_desc
= 1;
179 /* Check whether the FS support option is selected in the hardware.
181 value
= (int *)of_get_property(dn
, "xlnx,support-usb-fs", NULL
);
182 if (value
&& (*value
== 1)) {
183 ehci_dbg(ehci
, "USB host controller supports FS devices\n");
187 "USB host controller is HS only\n");
191 /* Debug registers are at the first 0x100 region
193 ehci
->caps
= hcd
->regs
+ 0x100;
195 rv
= usb_add_hcd(hcd
, irq
, 0);
197 device_wakeup_enable(hcd
->self
.controller
);
208 * ehci_hcd_xilinx_of_remove - shutdown hcd and release resources
209 * @op: pointer to platform_device structure that is to be removed
211 * Remove the hcd structure, and release resources that has been requested
214 static int ehci_hcd_xilinx_of_remove(struct platform_device
*op
)
216 struct usb_hcd
*hcd
= platform_get_drvdata(op
);
218 dev_dbg(&op
->dev
, "stopping XILINX-OF USB Controller\n");
227 static const struct of_device_id ehci_hcd_xilinx_of_match
[] = {
228 {.compatible
= "xlnx,xps-usb-host-1.00.a",},
231 MODULE_DEVICE_TABLE(of
, ehci_hcd_xilinx_of_match
);
233 static struct platform_driver ehci_hcd_xilinx_of_driver
= {
234 .probe
= ehci_hcd_xilinx_of_probe
,
235 .remove
= ehci_hcd_xilinx_of_remove
,
236 .shutdown
= usb_hcd_platform_shutdown
,
238 .name
= "xilinx-of-ehci",
239 .of_match_table
= ehci_hcd_xilinx_of_match
,