kernel: crypto: add fsl CAAM package

Kernel package enables the Freescale CAAM (crypto accelerator and assurance
module, aka SEC4). Sets kernel defaults for ringsize, intc, and debug.

Signed-off-by: Pushpal Sidhu <psidhu@gateworks.com>

SVN-Revision: 48773
This commit is contained in:
John Crispin 2016-02-25 10:14:24 +00:00
parent 074cc7ac38
commit 3f76eeaadc

View file

@ -159,6 +159,32 @@ endef
$(eval $(call KernelPackage,crypto-seqiv))
define KernelPackage/crypto-hw-caam
TITLE:=Freescale CAAM driver (SEC4)
DEPENDS:=@TARGET_imx6||TARGET_mpc85xx +kmod-crypto-aead +kmod-crypto-authenc +kmod-crypto-hash +kmod-random-core
KCONFIG:= \
CONFIG_CRYPTO_HW=y \
CONFIG_CRYPTO_DEV_FSL_CAAM \
CONFIG_CRYPTO_DEV_FSL_CAAM_JR \
CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API \
CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API \
CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API \
CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE=9 \
CONFIG_CRYPTO_DEV_FSL_CAAM_INTC=n \
CONFIG_CRYPTO_DEV_FSL_CAAM_DEBUG=n
FILES:= \
$(LINUX_DIR)/drivers/crypto/caam/caam.ko \
$(LINUX_DIR)/drivers/crypto/caam/caamalg.ko \
$(LINUX_DIR)/drivers/crypto/caam/caamhash.ko \
$(LINUX_DIR)/drivers/crypto/caam/caam_jr.ko \
$(LINUX_DIR)/drivers/crypto/caam/caamrng.ko
AUTOLOAD:=$(call AutoLoad,09,caam caamalg caamhash caam_jr caamrng)
$(call AddDepends/crypto)
endef
$(eval $(call KernelPackage,crypto-hw-caam))
define KernelPackage/crypto-hw-talitos
TITLE:=Freescale integrated security engine (SEC) driver
DEPENDS:=+kmod-crypto-manager +kmod-crypto-hash +kmod-random-core +kmod-crypto-authenc