mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-30 21:44:27 -04:00 
			
		
		
		
	bluetooth on mt7622 needs a firmware to start. It can't be built-in or it tries to load firmware before rootfs is mounted, and then fails. build it as a kernel module to fix that. Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| define KernelPackage/ata-ahci-mtk
 | |
|   TITLE:=Mediatek AHCI Serial ATA support
 | |
|   KCONFIG:=CONFIG_AHCI_MTK
 | |
|   FILES:= \
 | |
| 	$(LINUX_DIR)/drivers/ata/ahci_mtk.ko \
 | |
| 	$(LINUX_DIR)/drivers/ata/libahci_platform.ko
 | |
|   AUTOLOAD:=$(call AutoLoad,40,libahci libahci_platform ahci_mtk,1)
 | |
|   $(call AddDepends/ata)
 | |
|   DEPENDS+=@(TARGET_mediatek_mt7622||TARGET_mediatek_mt7623)
 | |
| endef
 | |
| 
 | |
| define KernelPackage/ata-ahci-mtk/description
 | |
|  Mediatek AHCI Serial ATA host controllers
 | |
| endef
 | |
| 
 | |
| $(eval $(call KernelPackage,ata-ahci-mtk))
 | |
| 
 | |
| define KernelPackage/btmtkuart
 | |
|   SUBMENU:=Other modules
 | |
|   TITLE:=MediaTek HCI UART driver
 | |
|   DEPENDS:=@TARGET_mediatek_mt7622 +kmod-bluetooth +mt7622bt-firmware
 | |
|   KCONFIG:=CONFIG_BT_MTKUART
 | |
|   FILES:= \
 | |
| 	$(LINUX_DIR)/drivers/bluetooth/btmtkuart.ko
 | |
|   AUTOLOAD:=$(call AutoProbe,btmtkuart)
 | |
| endef
 | |
| 
 | |
| $(eval $(call KernelPackage,btmtkuart))
 | |
| 
 | |
| define KernelPackage/sdhci-mtk
 | |
|   SUBMENU:=Other modules
 | |
|   TITLE:=Mediatek SDHCI driver
 | |
|   DEPENDS:=@TARGET_mediatek_mt7622 +kmod-sdhci
 | |
|   KCONFIG:=CONFIG_MMC_MTK 
 | |
|   FILES:= \
 | |
| 	$(LINUX_DIR)/drivers/mmc/host/mtk-sd.ko
 | |
|   AUTOLOAD:=$(call AutoProbe,mtk-sd,1)
 | |
| endef
 | |
| 
 | |
| $(eval $(call KernelPackage,sdhci-mtk))
 | |
| 
 | |
| define KernelPackage/crypto-hw-mtk
 | |
|   TITLE:= MediaTek's Crypto Engine module
 | |
|   DEPENDS:=@TARGET_mediatek
 | |
|   KCONFIG:= \
 | |
| 	CONFIG_CRYPTO_HW=y \
 | |
| 	CONFIG_CRYPTO_AES=y \
 | |
| 	CONFIG_CRYPTO_AEAD=y \
 | |
| 	CONFIG_CRYPTO_SHA1=y \
 | |
| 	CONFIG_CRYPTO_SHA256=y \
 | |
| 	CONFIG_CRYPTO_SHA512=y \
 | |
| 	CONFIG_CRYPTO_HMAC=y \
 | |
| 	CONFIG_CRYPTO_DEV_MEDIATEK
 | |
|   FILES:=$(LINUX_DIR)/drivers/crypto/mediatek/mtk-crypto.ko
 | |
|   AUTOLOAD:=$(call AutoLoad,90,mtk-crypto)
 | |
|   $(call AddDepends/crypto)
 | |
| endef
 | |
| 
 | |
| define KernelPackage/crypto-hw-mtk/description
 | |
|   MediaTek's EIP97 Cryptographic Engine driver.
 | |
| endef
 | |
| 
 | |
| $(eval $(call KernelPackage,crypto-hw-mtk))
 |