fsl_secure_boot.h 538 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright 2015 Freescale Semiconductor, Inc.
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef __FSL_SECURE_BOOT_H
  7. #define __FSL_SECURE_BOOT_H
  8. #ifdef CONFIG_SECURE_BOOT
  9. #ifndef CONFIG_FIT_SIGNATURE
  10. #define CONFIG_EXTRA_ENV \
  11. "setenv fdt_high 0xcfffffff;" \
  12. "setenv initrd_high 0xcfffffff;" \
  13. "setenv hwconfig \'fsl_ddr:ctlr_intlv=null,bank_intlv=null\';"
  14. /* The address needs to be modified according to NOR memory map */
  15. #define CONFIG_BOOTSCRIPT_HDR_ADDR 0x600a0000
  16. #include <config_fsl_secboot.h>
  17. #endif
  18. #endif
  19. #endif