fsl_secure_boot.h 763 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Copyright 2010-2011 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. #if defined(CONFIG_FSL_CORENET)
  10. #define CONFIG_SYS_PBI_FLASH_BASE 0xc0000000
  11. #elif defined(CONFIG_BSC9132QDS)
  12. #define CONFIG_SYS_PBI_FLASH_BASE 0xc8000000
  13. #else
  14. #define CONFIG_SYS_PBI_FLASH_BASE 0xce000000
  15. #endif
  16. #define CONFIG_SYS_PBI_FLASH_WINDOW 0xcff80000
  17. #if defined(CONFIG_B4860QDS) || \
  18. defined(CONFIG_T4240QDS) || \
  19. defined(CONFIG_T2080QDS) || \
  20. defined(CONFIG_T2080RDB) || \
  21. defined(CONFIG_T1040QDS) || \
  22. defined(CONFIG_T104xRDB)
  23. #define CONFIG_SYS_CPC_REINIT_F
  24. #undef CONFIG_SYS_INIT_L3_ADDR
  25. #define CONFIG_SYS_INIT_L3_ADDR 0xbff00000
  26. #endif
  27. #endif
  28. #endif