Lines Matching +full:ipc +full:- +full:3
1 /* SPDX-License-Identifier: GPL-2.0+ */
5 * Header file for the IPC implementation.
23 IMX_SC_RPC_SVC_RM = 3,
39 * This is an function to send an RPC message over an IPC channel.
40 * It is called by client-side SCFW API function shims.
42 * @param[in] ipc IPC handle
49 int imx_scu_call_rpc(struct imx_sc_ipc *ipc, void *msg, bool have_resp);
52 * This function gets the default ipc handle used by SCU
54 * @param[out] ipc sc ipc handle
58 int imx_scu_get_handle(struct imx_sc_ipc **ipc);
60 static inline int imx_scu_call_rpc(struct imx_sc_ipc *ipc, void *msg, in imx_scu_call_rpc() argument
63 return -ENOTSUPP; in imx_scu_call_rpc()
66 static inline int imx_scu_get_handle(struct imx_sc_ipc **ipc) in imx_scu_get_handle() argument
68 return -ENOTSUPP; in imx_scu_get_handle()