modules.mk 967 B

1234567891011121314151617181920212223242526272829303132
  1. define KernelPackage/usb-phy-qcom-dwc3
  2. TITLE:=DWC3 USB QCOM PHY driver
  3. DEPENDS:=@TARGET_ipq806x
  4. KCONFIG:= CONFIG_PHY_QCOM_DWC3
  5. FILES:= $(LINUX_DIR)/drivers/phy/phy-qcom-dwc3.ko
  6. AUTOLOAD:=$(call AutoLoad,45,phy-qcom-dwc3,1)
  7. $(call AddDepends/usb)
  8. endef
  9. define KernelPackage/usb-phy-qcom-dwc3/description
  10. This driver provides support for the integrated DesignWare
  11. USB3 IP Core within the QCOM SoCs.
  12. endef
  13. $(eval $(call KernelPackage,usb-phy-qcom-dwc3))
  14. define KernelPackage/usb-dwc3-qcom
  15. TITLE:=DWC3 USB QCOM controller driver
  16. DEPENDS:=@TARGET_ipq806x +kmod-usb-dwc3 +kmod-usb-phy-qcom-dwc3
  17. KCONFIG:= CONFIG_USB_DWC3_QCOM
  18. FILES:= $(LINUX_DIR)/drivers/usb/dwc3/dwc3-qcom.ko
  19. AUTOLOAD:=$(call AutoLoad,53,dwc3-qcom,1)
  20. $(call AddDepends/usb)
  21. endef
  22. define KernelPackage/usb-dwc3-qcom/description
  23. This driver provides support for the integrated DesignWare
  24. USB3 IP Core within the QCOM SoCs.
  25. endef
  26. $(eval $(call KernelPackage,usb-dwc3-qcom))