2010-06-09 10:45:47 +00:00
|
|
|
--- a/drivers/usb/host/Kconfig
|
|
|
|
+++ b/drivers/usb/host/Kconfig
|
|
|
|
@@ -109,6 +109,13 @@ config XPS_USB_HCD_XILINX
|
|
|
|
support both high speed and full speed devices, or high speed
|
|
|
|
devices only.
|
|
|
|
|
|
|
|
+config USB_EHCI_AR71XX
|
|
|
|
+ bool "USB EHCI support for AR71xx"
|
|
|
|
+ depends on USB_EHCI_HCD && ATHEROS_AR71XX
|
|
|
|
+ default y
|
|
|
|
+ help
|
|
|
|
+ Support for Atheros AR71xx built-in EHCI controller
|
|
|
|
+
|
|
|
|
config USB_EHCI_FSL
|
|
|
|
bool "Support for Freescale on-chip EHCI USB controller"
|
|
|
|
depends on USB_EHCI_HCD && FSL_SOC
|
2010-08-25 19:57:11 +00:00
|
|
|
@@ -222,6 +229,13 @@ config USB_OHCI_HCD_OMAP3
|
|
|
|
Enables support for the on-chip OHCI controller on
|
|
|
|
OMAP3 and later chips.
|
2010-06-09 10:45:47 +00:00
|
|
|
|
|
|
|
+config USB_OHCI_AR71XX
|
|
|
|
+ bool "USB OHCI support for Atheros AR71xx"
|
|
|
|
+ depends on USB_OHCI_HCD && ATHEROS_AR71XX
|
|
|
|
+ default y
|
|
|
|
+ help
|
|
|
|
+ Support for Atheros AR71xx built-in OHCI controller
|
|
|
|
+
|
|
|
|
config USB_OHCI_HCD_PPC_SOC
|
|
|
|
bool "OHCI support for on-chip PPC USB controller"
|
|
|
|
depends on USB_OHCI_HCD && (STB03xxx || PPC_MPC52xx)
|
|
|
|
--- a/drivers/usb/host/ehci-hcd.c
|
|
|
|
+++ b/drivers/usb/host/ehci-hcd.c
|
|
|
|
@@ -1158,6 +1158,11 @@ MODULE_LICENSE ("GPL");
|
|
|
|
#define PLATFORM_DRIVER ehci_atmel_driver
|
|
|
|
#endif
|
|
|
|
|
|
|
|
+#ifdef CONFIG_USB_EHCI_AR71XX
|
|
|
|
+#include "ehci-ar71xx.c"
|
|
|
|
+#define PLATFORM_DRIVER ehci_ar71xx_driver
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
#if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER) && \
|
2010-08-25 19:57:11 +00:00
|
|
|
!defined(PS3_SYSTEM_BUS_DRIVER) && !defined(OF_PLATFORM_DRIVER) && \
|
|
|
|
!defined(XILINX_OF_PLATFORM_DRIVER)
|
2010-06-09 10:45:47 +00:00
|
|
|
--- a/drivers/usb/host/ohci-hcd.c
|
|
|
|
+++ b/drivers/usb/host/ohci-hcd.c
|
2010-08-25 19:57:11 +00:00
|
|
|
@@ -1095,6 +1095,11 @@ MODULE_LICENSE ("GPL");
|
2010-06-09 10:45:47 +00:00
|
|
|
#define TMIO_OHCI_DRIVER ohci_hcd_tmio_driver
|
|
|
|
#endif
|
|
|
|
|
|
|
|
+#ifdef CONFIG_USB_OHCI_AR71XX
|
|
|
|
+#include "ohci-ar71xx.c"
|
|
|
|
+#define PLATFORM_DRIVER ohci_hcd_ar71xx_driver
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
#if !defined(PCI_DRIVER) && \
|
|
|
|
!defined(PLATFORM_DRIVER) && \
|
2010-08-25 19:57:11 +00:00
|
|
|
!defined(OMAP1_PLATFORM_DRIVER) && \
|