blob: d6f40631cca339c3faf7bb04a6d9aa16a2be2149 [file] [log] [blame]
Siva Durga Prasad Paladugu37e3a362018-06-26 15:02:19 +05301# SPDX-License-Identifier: GPL-2.0
2#
3# Copyright (c) 2018, Xilinx, Inc.
4
5if ARCH_ZYNQ
6
7config CMD_ZYNQ
8 bool "Enable Zynq specific commands"
9 default y
10 help
11 Enables Zynq specific commands.
12
13config CMD_ZYNQ_AES
14 bool "Enable zynq aes command for decryption of encrypted images"
15 depends on CMD_ZYNQ
16 depends on FPGA_ZYNQPL
17 help
18 Decrypts the encrypted image present in source address
19 and places the decrypted image at destination address.
20
21config CMD_ZYNQ_RSA
22 bool "Enable zynq rsa command for loading secure images"
23 default y
24 depends on CMD_ZYNQ
25 depends on CMD_ZYNQ_AES
26 help
27 Enabling this will support zynq secure image verification.
28 The secure image is a xilinx specific BOOT.BIN with
29 either authentication or encryption or both encryption
30 and authentication feature enabled while generating
31 BOOT.BIN using Xilinx bootgen tool.
32
33endif