plat_private.h 734 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (c) 2014-2015, 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(unsigned long total_base,
  12. unsigned long total_size,
  13. unsigned long,
  14. unsigned long,
  15. unsigned long,
  16. unsigned long);
  17. void plat_cci_init(void);
  18. void plat_cci_enable(void);
  19. void plat_cci_disable(void);
  20. /* Declarations for plat_topology.c */
  21. int mt_setup_topology(void);
  22. #endif /* PLAT_PRIVATE_H */