xref: /rk3399_ARM-atf/plat/socionext/synquacer/include/sq_common.h (revision 0eb275c9a2a78d30f3bc937a1ce59051dfa87c8d)
1 /*
2  * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef __SQ_COMMON_H__
8 #define __SQ_COMMON_H__
9 
10 #include <sys/types.h>
11 
12 void plat_sq_interconnect_init(void);
13 void plat_sq_interconnect_enter_coherency(void);
14 void plat_sq_interconnect_exit_coherency(void);
15 
16 unsigned int sq_calc_core_pos(u_register_t mpidr);
17 
18 #endif /* __SQ_COMMON_H__ */
19