1 /*
2  * Copyright (c) 2019 Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef _IPC_CONFIG_H_
8 #define _IPC_CONFIG_H_
9 
10 #include "platform_multicore.h"
11 
12 #define IPC_RX_CHAN                            IPC_PSA_CLIENT_REPLY_CHAN
13 #define IPC_RX_INTR_STRUCT                     IPC_PSA_CLIENT_REPLY_INTR_STRUCT
14 #define IPC_RX_INT_MASK                        IPC_PSA_CLIENT_REPLY_INTR_MASK
15 
16 #define IPC_TX_CHAN                            IPC_PSA_CLIENT_CALL_CHAN
17 #define IPC_TX_NOTIFY_MASK                     IPC_PSA_CLIENT_CALL_NOTIFY_MASK
18 
19 #define PSA_CLIENT_REPLY_NVIC_IRQn             IPC_PSA_CLIENT_REPLY_IPC_INTR
20 #define PSA_CLIENT_REPLY_IRQ_PRIORITY          3
21 
22 #endif
23