diff options
author | Jan Andersson <jan@gaisler.com> | 2011-05-03 14:11:58 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-05-03 14:43:48 -0400 |
commit | 9be0392989306361d4a63a06a8ee281efbead548 (patch) | |
tree | f2dab853430cbdb78b5a639031ebfa6ea5c2479f /drivers/usb/host/ehci-hcd.c | |
parent | c430131a02d677aa708f56342c1565edfdacb3c0 (diff) |
USB: EHCI: Add bus glue for GRLIB GRUSBHC controller
This patch adds support for the GRLIB GRUSBHC EHCI controller from
Aeroflex Gaisler. The controller is typically found on LEON/GRLIB
SoCs.
Tested on GR-LEON4-ITX with with little endian interface and on
LEON3 system on GR-PCI-XC5V development board for big endian
controller.
Signed-off-by: Jan Andersson <jan@gaisler.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host/ehci-hcd.c')
-rw-r--r-- | drivers/usb/host/ehci-hcd.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index 8164ffafd10a..c5719cd258c3 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c | |||
@@ -1275,6 +1275,11 @@ MODULE_LICENSE ("GPL"); | |||
1275 | #define PLATFORM_DRIVER ehci_ath79_driver | 1275 | #define PLATFORM_DRIVER ehci_ath79_driver |
1276 | #endif | 1276 | #endif |
1277 | 1277 | ||
1278 | #ifdef CONFIG_SPARC_LEON | ||
1279 | #include "ehci-grlib.c" | ||
1280 | #define PLATFORM_DRIVER ehci_grlib_driver | ||
1281 | #endif | ||
1282 | |||
1278 | #if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER) && \ | 1283 | #if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER) && \ |
1279 | !defined(PS3_SYSTEM_BUS_DRIVER) && !defined(OF_PLATFORM_DRIVER) && \ | 1284 | !defined(PS3_SYSTEM_BUS_DRIVER) && !defined(OF_PLATFORM_DRIVER) && \ |
1280 | !defined(XILINX_OF_PLATFORM_DRIVER) | 1285 | !defined(XILINX_OF_PLATFORM_DRIVER) |