fsl_secure_boot.h 384 B

12345678910111213141516171819
  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. #else
  12. #define CONFIG_SYS_PBI_FLASH_BASE 0xce000000
  13. #endif
  14. #define CONFIG_SYS_PBI_FLASH_WINDOW 0xcff80000
  15. #endif
  16. #endif