diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2008-12-09 08:11:49 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2008-12-09 08:11:49 +0000 |
commit | a2cda74350e3fe7d984af8217f5b949422b62673 (patch) | |
tree | 8323a631ec4b53c1e4e99f78e0d50b4382e55a0e /target/linux/ar71xx/patches-2.6.28/003-ar71xx_usb_host.patch | |
parent | 0de40f55dc5e818f91e2266790ca410502e9cee7 (diff) | |
download | mtk-20170518-a2cda74350e3fe7d984af8217f5b949422b62673.zip mtk-20170518-a2cda74350e3fe7d984af8217f5b949422b62673.tar.gz mtk-20170518-a2cda74350e3fe7d984af8217f5b949422b62673.tar.bz2 |
preliminary 2.6.28 support
SVN-Revision: 13559
Diffstat (limited to 'target/linux/ar71xx/patches-2.6.28/003-ar71xx_usb_host.patch')
-rw-r--r-- | target/linux/ar71xx/patches-2.6.28/003-ar71xx_usb_host.patch | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/target/linux/ar71xx/patches-2.6.28/003-ar71xx_usb_host.patch b/target/linux/ar71xx/patches-2.6.28/003-ar71xx_usb_host.patch new file mode 100644 index 0000000..8392f48 --- /dev/null +++ b/target/linux/ar71xx/patches-2.6.28/003-ar71xx_usb_host.patch @@ -0,0 +1,56 @@ +--- a/drivers/usb/host/Kconfig ++++ b/drivers/usb/host/Kconfig +@@ -81,6 +81,12 @@ config USB_EHCI_BIG_ENDIAN_DESC + depends on USB_EHCI_HCD && (440EPX || ARCH_IXP4XX) + default y + ++config USB_EHCI_AR71XX ++ bool "USB EHCI support for AR71xx" ++ depends on USB_EHCI_HCD && ATHEROS_AR71XX ++ 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 +@@ -140,6 +146,12 @@ config USB_OHCI_HCD + To compile this driver as a module, choose M here: the + module will be called ohci-hcd. + ++config USB_OHCI_AR71XX ++ bool "USB OHCI support for Atheros AR71xx" ++ depends on USB_OHCI_HCD && ATHEROS_AR71XX ++ 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 +@@ -1034,6 +1034,11 @@ MODULE_LICENSE ("GPL"); + #define PLATFORM_DRIVER ixp4xx_ehci_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) && \ + !defined(PS3_SYSTEM_BUS_DRIVER) && !defined(OF_PLATFORM_DRIVER) + #error "missing bus glue for ehci-hcd" +--- a/drivers/usb/host/ohci-hcd.c ++++ b/drivers/usb/host/ohci-hcd.c +@@ -1080,6 +1080,11 @@ MODULE_LICENSE ("GPL"); + #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) && \ + !defined(OF_PLATFORM_DRIVER) && \ |