Kconfig 866 B

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