diff options
author | Antoine Ténart | 2017-05-24 16:10:34 +0200 |
---|---|---|
committer | Herbert Xu | 2017-06-10 06:04:21 +0200 |
commit | 1b44c5a60c137e5fd0c2c8b86e58fdbc9cd181ce (patch) | |
tree | 963e4bea0aadf317d3d32114da91373577f7073c /drivers/crypto/Makefile | |
parent | crypto: omap-sham - force word alignment on the xmit-buf also (diff) | |
download | kernel-qcow2-linux-1b44c5a60c137e5fd0c2c8b86e58fdbc9cd181ce.tar.gz kernel-qcow2-linux-1b44c5a60c137e5fd0c2c8b86e58fdbc9cd181ce.tar.xz kernel-qcow2-linux-1b44c5a60c137e5fd0c2c8b86e58fdbc9cd181ce.zip |
crypto: inside-secure - add SafeXcel EIP197 crypto engine driver
Add support for Inside Secure SafeXcel EIP197 cryptographic engine,
which can be found on Marvell Armada 7k and 8k boards. This driver
currently implements: ecb(aes), cbc(aes), sha1, sha224, sha256 and
hmac(sah1) algorithms.
Two firmwares are needed for this engine to work. Their are mostly used
for more advanced operations than the ones supported (as of now), but we
still need them to pass the data to the internal cryptographic engine.
Signed-off-by: Antoine Tenart <antoine.tenart@free-electrons.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/Makefile')
-rw-r--r-- | drivers/crypto/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/crypto/Makefile b/drivers/crypto/Makefile index 8177388f5c85..28786321b118 100644 --- a/drivers/crypto/Makefile +++ b/drivers/crypto/Makefile @@ -41,3 +41,4 @@ obj-$(CONFIG_CRYPTO_DEV_UX500) += ux500/ obj-$(CONFIG_CRYPTO_DEV_VIRTIO) += virtio/ obj-$(CONFIG_CRYPTO_DEV_VMX) += vmx/ obj-$(CONFIG_CRYPTO_DEV_BCM_SPU) += bcm/ +obj-$(CONFIG_CRYPTO_DEV_SAFEXCEL) += inside-secure/ |