From: David Bauer Date: Mon, 8 Apr 2019 18:09:33 +0000 (+0200) Subject: kernel: usb: add FSL EHCI package X-Git-Tag: v19.07.0-rc1~787 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=68b8d3b0796d202a2d2aa1a9fc781f186e54e8be;ds=sidebyside kernel: usb: add FSL EHCI package Add kernel module package for the Freescale USB2 EHCI used on the mpc85xx platform. Signed-off-by: David Bauer --- diff --git a/package/kernel/linux/modules/usb.mk b/package/kernel/linux/modules/usb.mk index 88bb4a91eb..f11758c662 100644 --- a/package/kernel/linux/modules/usb.mk +++ b/package/kernel/linux/modules/usb.mk @@ -385,8 +385,7 @@ define KernelPackage/usb2 CONFIG_USB_EHCI_MXC=y \ CONFIG_USB_OCTEON_EHCI=y \ CONFIG_USB_EHCI_HCD_ORION=y \ - CONFIG_USB_EHCI_HCD_AT91=y \ - CONFIG_USB_EHCI_FSL + CONFIG_USB_EHCI_HCD_AT91=y FILES:= \ $(LINUX_DIR)/drivers/usb/host/ehci-platform.ko ifneq ($(wildcard $(LINUX_DIR)/drivers/usb/host/ehci-orion.ko),) @@ -406,6 +405,26 @@ endef $(eval $(call KernelPackage,usb2)) +define KernelPackage/usb2-fsl + TITLE:=Support for Freescale USB2 controllers + DEPENDS:=+kmod-usb-ehci @TARGET_mpc85xx + KCONFIG:= \ + CONFIG_USB_EHCI_HCD_PPC_OF=y \ + CONFIG_USB_EHCI_FSL=y + FILES:= \ + $(LINUX_DIR)/drivers/usb/host/ehci-fsl.ko \ + $(LINUX_DIR)/drivers/usb/host/fsl-mph-dr-of.ko + AUTOLOAD:=$(call AutoLoad,42,ehci-fsl fsl-mph-dr-of,1) + $(call AddDepends/usb) +endef + +define KernelPackage/usb2-fsl/description + Kernel support for Freescale USB2 (EHCI) controllers +endef + +$(eval $(call KernelPackage,usb2-fsl)) + + define KernelPackage/usb2-pci TITLE:=Support for PCI USB2 controllers DEPENDS:=@PCI_SUPPORT +kmod-usb2