2023-05-28 19:22:52 +00:00
|
|
|
define KernelPackage/ata-dwc
|
|
|
|
TITLE:=DesignWare Cores SATA support
|
|
|
|
KCONFIG:=CONFIG_SATA_DWC
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/ata/sata_dwc_460ex.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,40,sata_dwc_460ex,1)
|
|
|
|
$(call AddDepends/ata)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/ata-dwc/description
|
|
|
|
Platform support for the on-chip SATA controller.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,ata-dwc))
|
2023-05-28 20:13:52 +00:00
|
|
|
|
|
|
|
define KernelPackage/hw-crypto-4xx
|
|
|
|
TITLE:=Driver AMCC PPC4xx crypto accelerator
|
|
|
|
KCONFIG:= \
|
|
|
|
CONFIG_CRYPTO_HW=y \
|
|
|
|
CONFIG_HW_RANDOM=y \
|
|
|
|
CONFIG_CRYPTO_DEV_PPC4XX \
|
|
|
|
CONFIG_HW_RANDOM_PPC4XX=y
|
2023-05-31 12:15:56 +00:00
|
|
|
DEPENDS:=@TARGET_apm821xx +kmod-random-core +kmod-crypto-manager \
|
2023-05-28 20:13:52 +00:00
|
|
|
+kmod-crypto-ccm +kmod-crypto-gcm \
|
|
|
|
+kmod-crypto-sha1 +kmod-crypto-sha256 +kmod-crypto-sha512
|
|
|
|
FILES:=$(LINUX_DIR)/drivers/crypto/amcc/crypto4xx.ko
|
2023-07-07 15:26:32 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,09,crypto4xx,1)
|
2023-05-31 12:15:56 +00:00
|
|
|
$(call AddDepends/crypto)
|
2023-05-28 20:13:52 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define KernelPackage/hw-crypto-4xx/description
|
|
|
|
Platform support for the on-chip crypto acceleration.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,hw-crypto-4xx))
|