crypto: tegra - Add Tegra Security Engine driver
authorAkhil R <akhilrajeev@nvidia.com>
Wed, 3 Apr 2024 10:00:37 +0000 (15:30 +0530)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 12 Apr 2024 07:07:51 +0000 (15:07 +0800)
commit0880bb3b00c855fc244b7177ffdaafef4d0aa1e0
tree9148527e387e249e511bd5f2d925f31375716cef
parentcc370ff85bae5373330518e4ebb2d36c0ca8a470
crypto: tegra - Add Tegra Security Engine driver

Add support for Tegra Security Engine which can accelerate various
crypto algorithms. The Engine has two separate instances within for
AES and HASH algorithms respectively.

The driver registers two crypto engines - one for AES and another for
HASH algorithms and these operate independently and both uses the host1x
bus. Additionally, it provides  hardware-assisted key protection for up
to 15 symmetric keys which it can use for the cipher operations.

Signed-off-by: Akhil R <akhilrajeev@nvidia.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
MAINTAINERS
drivers/crypto/Kconfig
drivers/crypto/Makefile
drivers/crypto/tegra/Makefile [new file with mode: 0644]
drivers/crypto/tegra/tegra-se-aes.c [new file with mode: 0644]
drivers/crypto/tegra/tegra-se-hash.c [new file with mode: 0644]
drivers/crypto/tegra/tegra-se-key.c [new file with mode: 0644]
drivers/crypto/tegra/tegra-se-main.c [new file with mode: 0644]
drivers/crypto/tegra/tegra-se.h [new file with mode: 0644]