diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-07-24 19:43:54 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2012-07-24 19:43:54 +0000 |
commit | 93dc8c8d1b69beabdaa92760fb05bf22ddbc0257 (patch) | |
tree | 0676693775d21d82c8ed509921297890d70aa971 /target | |
parent | 82c7e05d429dc15413dff5549f9db580d0f0509f (diff) | |
download | upstream-93dc8c8d1b69beabdaa92760fb05bf22ddbc0257.tar.gz upstream-93dc8c8d1b69beabdaa92760fb05bf22ddbc0257.tar.bz2 upstream-93dc8c8d1b69beabdaa92760fb05bf22ddbc0257.zip |
move omap specific modules to modules.mk
SVN-Revision: 32810
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/omap24xx/modules.mk | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/target/linux/omap24xx/modules.mk b/target/linux/omap24xx/modules.mk index e0a54db444..182c5f19c0 100644 --- a/target/linux/omap24xx/modules.mk +++ b/target/linux/omap24xx/modules.mk @@ -61,3 +61,76 @@ define KernelPackage/n810bm/description endef $(eval $(call KernelPackage,n810bm)) + + +define KernelPackage/musb-hdrc + TITLE:=Support for Mentor Graphics silicon dual role USB + KCONFIG:= \ + CONFIG_USB_MUSB_HDRC \ + CONFIG_MUSB_PIO_ONLY=n \ + CONFIG_USB_MUSB_OTG=y \ + CONFIG_USB_MUSB_DEBUG=y + DEPENDS:=@TARGET_omap24xx + FILES:=$(LINUX_DIR)/drivers/usb/musb/musb_hdrc.ko + AUTOLOAD:=$(call AutoLoad,46,musb_hdrc) + $(call AddDepends/usb) +endef + +define KernelPackage/musb-hdrc/description + Kernel support for Mentor Graphics silicon dual role USB device. +endef + +$(eval $(call KernelPackage,musb-hdrc)) + + +define KernelPackage/nop-usb-xceiv + TITLE:=Support for USB OTG NOP transceiver + KCONFIG:= \ + CONFIG_NOP_USB_XCEIV + DEPENDS:=@TARGET_omap24xx + FILES:=$(LINUX_DIR)/drivers/usb/otg/nop-usb-xceiv.ko + AUTOLOAD:=$(call AutoLoad,45,nop-usb-xceiv) + $(call AddDepends/usb) +endef + +define KernelPackage/nop-usb-xceiv/description + Support for USB OTG NOP transceiver +endef + +$(eval $(call KernelPackage,nop-usb-xceiv)) + + +define KernelPackage/tusb6010 + TITLE:=Support for TUSB 6010 + KCONFIG:= \ + CONFIG_USB_MUSB_TUSB6010 \ + CONFIG_USB_TUSB6010=y + DEPENDS:=+kmod-musb-hdrc +kmod-nop-usb-xceiv + $(call AddDepends/usb) +endef + +define KernelPackage/tusb6010/description + TUSB6010 support +endef + +$(eval $(call KernelPackage,tusb6010)) + + +define KernelPackage/usb-tahvo + TITLE:=Support for Tahvo (Nokia n810) USB + KCONFIG:= \ + CONFIG_CBUS_TAHVO_USB \ + CONFIG_CBUS_TAHVO_USB_HOST_BY_DEFAULT=n \ + CONFIG_USB_OHCI_HCD_OMAP1=y \ + CONFIG_USB_GADGET_DEBUG_FS=n + DEPENDS:=@TARGET_omap24xx +kmod-tusb6010 +kmod-usb-gadget + FILES:=$(LINUX_DIR)/drivers/cbus/tahvo-usb.ko + AUTOLOAD:=$(call AutoLoad,45,tahvo-usb) + $(call AddDepends/usb) +endef + +define KernelPackage/usb-tahvo/description + Kernel support for Nokia n810 USB OHCI controller. +endef + +$(eval $(call KernelPackage,usb-tahvo)) |