This driver allows using Tegra AES engines within BSEV and BSEA blocks to encrypt and decrypt data using different AES algorithms. One use case is allowing u-boot to self update by using the already loaded AES key in the engine's SBK slot by the bootrom. Particular care must be taken as chainloaded u-boot's may not have the SBK slot loaded as the vendor bootloader erases it before leaving it. Signed-off-by: Ion Agorria <ion@agorria.com>
14 lines
273 B
Makefile
14 lines
273 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2013 Samsung Electronics Co., Ltd.
|
|
# http://www.samsung.com
|
|
|
|
obj-$(CONFIG_EXYNOS_ACE_SHA) += ace_sha.o
|
|
obj-y += aes/
|
|
obj-y += rsa_mod_exp/
|
|
obj-y += fsl/
|
|
obj-y += hash/
|
|
obj-y += aspeed/
|
|
obj-y += nuvoton/
|
|
obj-y += tegra/
|