fsl_secure_boot.h 904 B

123456789101112131415161718192021222324252627282930313233343536
  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. #elif defined(CONFIG_C29XPCIE)
  14. #define CONFIG_SYS_PBI_FLASH_BASE 0xcc000000
  15. #else
  16. #define CONFIG_SYS_PBI_FLASH_BASE 0xce000000
  17. #endif
  18. #define CONFIG_SYS_PBI_FLASH_WINDOW 0xcff80000
  19. #if defined(CONFIG_B4860QDS) || \
  20. defined(CONFIG_T4240QDS) || \
  21. defined(CONFIG_T2080QDS) || \
  22. defined(CONFIG_T2080RDB) || \
  23. defined(CONFIG_T1040QDS) || \
  24. defined(CONFIG_T104xRDB) || \
  25. defined(CONFIG_PPC_T1023) || \
  26. defined(CONFIG_PPC_T1024)
  27. #define CONFIG_SYS_CPC_REINIT_F
  28. #undef CONFIG_SYS_INIT_L3_ADDR
  29. #define CONFIG_SYS_INIT_L3_ADDR 0xbff00000
  30. #endif
  31. #endif
  32. #endif