xref: /rk3399_ARM-atf/plat/st/stm32mp1/include/stm32mp1_private.h (revision 61f72a34250d063da67f4fc2b0eb8c3fda3376be)
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 void stm32mp1_io_setup(void);
11 void configure_mmu(void);
12 
13 void stm32mp1_arch_security_setup(void);
14 void stm32mp1_security_setup(void);
15 
16 void stm32mp1_save_boot_ctx_address(uintptr_t address);
17 uintptr_t stm32mp1_get_boot_ctx_address(void);
18 
19 void stm32mp1_gic_pcpu_init(void);
20 void stm32mp1_gic_init(void);
21 
22 #endif /* __STM32MP1_PRIVATE_H__ */
23