xref: /rk3399_ARM-atf/plat/st/stm32mp1/include/stm32mp1_private.h (revision 09d40e0e08283a249e7dce0e106c07c5141f9b7e)
1 /*
2  * Copyright (c) 2015-2018, 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 stm32mp1_io_setup(void);
13 void configure_mmu(void);
14 
15 void stm32mp1_arch_security_setup(void);
16 void stm32mp1_security_setup(void);
17 
18 void stm32mp1_save_boot_ctx_address(uintptr_t address);
19 uintptr_t stm32mp1_get_boot_ctx_address(void);
20 
21 void stm32mp1_gic_pcpu_init(void);
22 void stm32mp1_gic_init(void);
23 
24 #endif /* STM32MP1_PRIVATE_H */
25