bl31_param.h 815 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef BL31_PARAM_H
  7. #define BL31_PARAM_H
  8. /*******************************************************************************
  9. * Platform memory map related constants
  10. ******************************************************************************/
  11. /* TF text, ro, rw, Size: 1MB */
  12. #define TZRAM_BASE (0x0)
  13. #define TZRAM_SIZE (0x100000)
  14. /*******************************************************************************
  15. * BL31 specific defines.
  16. ******************************************************************************/
  17. /*
  18. * Put BL31 at the top of the Trusted RAM
  19. */
  20. #define BL31_BASE (TZRAM_BASE + 0x40000)
  21. #define BL31_LIMIT (TZRAM_BASE + TZRAM_SIZE)
  22. #endif /* BL31_PARAM_H */