1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2018-2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #ifndef N1SDP_SCP_PIK_H
9 #define N1SDP_SCP_PIK_H
10 
11 #include "n1sdp_pik_cpu.h"
12 #include "n1sdp_pik_debug.h"
13 #include "n1sdp_pik_scp.h"
14 #include "n1sdp_pik_system.h"
15 #include "n1sdp_scc_reg.h"
16 #include "n1sdp_scp_mmap.h"
17 
18 #define PIK_CLUSTER(IDX) ((struct pik_cpu_reg *)SCP_PIK_CLUSTER_BASE(IDX))
19 #define PIK_SCP          ((struct pik_scp_reg *)SCP_PIK_SCP_BASE)
20 #define PIK_SYSTEM       ((struct pik_system_reg *)SCP_PIK_SYSTEM_BASE)
21 #define PIK_DEBUG        ((struct pik_debug_reg *)SCP_PIK_DEBUG_BASE)
22 #define SCC              ((struct scc_reg *)SCP_SCC_BASE)
23 
24 #endif /* N1SDP_SCP_PIK_H */
25