1 /* 2 * Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef STM32MP1_PRIVATE_H 8 #define STM32MP1_PRIVATE_H 9 10 #include <stdint.h> 11 12 void configure_mmu(void); 13 14 void stm32mp1_arch_security_setup(void); 15 void stm32mp1_security_setup(void); 16 17 void stm32mp1_gic_pcpu_init(void); 18 void stm32mp1_gic_init(void); 19 20 #endif /* STM32MP1_PRIVATE_H */ 21