plat_private.h 788 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (c) 2019, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef PLAT_PRIVATE_H
  7. #define PLAT_PRIVATE_H
  8. /*******************************************************************************
  9. * Function and variable prototypes
  10. ******************************************************************************/
  11. void plat_configure_mmu_el3(uintptr_t total_base,
  12. uintptr_t total_size,
  13. uintptr_t ro_start,
  14. uintptr_t ro_limit,
  15. uintptr_t coh_start,
  16. uintptr_t coh_limit);
  17. void plat_mtk_cci_init(void);
  18. void plat_mtk_cci_enable(void);
  19. void plat_mtk_cci_disable(void);
  20. void plat_mtk_cci_init_sf(void);
  21. /* Declarations for plat_topology.c */
  22. int mt_setup_topology(void);
  23. #endif /* PLAT_PRIVATE_H */