summaryrefslogtreecommitdiff
path: root/plat/imx/common/sci/svc/pad/sci_pad_rpc.h
diff options
context:
space:
mode:
Diffstat (limited to 'plat/imx/common/sci/svc/pad/sci_pad_rpc.h')
-rw-r--r--plat/imx/common/sci/svc/pad/sci_pad_rpc.h52
1 files changed, 23 insertions, 29 deletions
diff --git a/plat/imx/common/sci/svc/pad/sci_pad_rpc.h b/plat/imx/common/sci/svc/pad/sci_pad_rpc.h
index 8e9c4bb3..b3e7f790 100644
--- a/plat/imx/common/sci/svc/pad/sci_pad_rpc.h
+++ b/plat/imx/common/sci/svc/pad/sci_pad_rpc.h
@@ -1,5 +1,6 @@
/*
- * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
+ * Copyright (C) 2016 Freescale Semiconductor, Inc.
+ * Copyright 2017-2019 NXP
*
* SPDX-License-Identifier: BSD-3-Clause
*/
@@ -11,8 +12,8 @@
* @{
*/
-#ifndef SCI_PAD_RPC_H
-#define SCI_PAD_RPC_H
+#ifndef SC_PAD_RPC_H
+#define SC_PAD_RPC_H
/* Includes */
@@ -23,22 +24,22 @@
*/
/*@{*/
#define PAD_FUNC_UNKNOWN 0 /* Unknown function */
-#define PAD_FUNC_SET_MUX 1U /* Index for pad_set_mux() RPC call */
-#define PAD_FUNC_GET_MUX 6U /* Index for pad_get_mux() RPC call */
-#define PAD_FUNC_SET_GP 2U /* Index for pad_set_gp() RPC call */
-#define PAD_FUNC_GET_GP 7U /* Index for pad_get_gp() RPC call */
-#define PAD_FUNC_SET_WAKEUP 4U /* Index for pad_set_wakeup() RPC call */
-#define PAD_FUNC_GET_WAKEUP 9U /* Index for pad_get_wakeup() RPC call */
-#define PAD_FUNC_SET_ALL 5U /* Index for pad_set_all() RPC call */
-#define PAD_FUNC_GET_ALL 10U /* Index for pad_get_all() RPC call */
-#define PAD_FUNC_SET 15U /* Index for pad_set() RPC call */
-#define PAD_FUNC_GET 16U /* Index for pad_get() RPC call */
-#define PAD_FUNC_SET_GP_28FDSOI 11U /* Index for pad_set_gp_28fdsoi() RPC call */
-#define PAD_FUNC_GET_GP_28FDSOI 12U /* Index for pad_get_gp_28fdsoi() RPC call */
-#define PAD_FUNC_SET_GP_28FDSOI_HSIC 3U /* Index for pad_set_gp_28fdsoi_hsic() RPC call */
-#define PAD_FUNC_GET_GP_28FDSOI_HSIC 8U /* Index for pad_get_gp_28fdsoi_hsic() RPC call */
-#define PAD_FUNC_SET_GP_28FDSOI_COMP 13U /* Index for pad_set_gp_28fdsoi_comp() RPC call */
-#define PAD_FUNC_GET_GP_28FDSOI_COMP 14U /* Index for pad_get_gp_28fdsoi_comp() RPC call */
+#define PAD_FUNC_SET_MUX 1U /* Index for sc_pad_set_mux() RPC call */
+#define PAD_FUNC_GET_MUX 6U /* Index for sc_pad_get_mux() RPC call */
+#define PAD_FUNC_SET_GP 2U /* Index for sc_pad_set_gp() RPC call */
+#define PAD_FUNC_GET_GP 7U /* Index for sc_pad_get_gp() RPC call */
+#define PAD_FUNC_SET_WAKEUP 4U /* Index for sc_pad_set_wakeup() RPC call */
+#define PAD_FUNC_GET_WAKEUP 9U /* Index for sc_pad_get_wakeup() RPC call */
+#define PAD_FUNC_SET_ALL 5U /* Index for sc_pad_set_all() RPC call */
+#define PAD_FUNC_GET_ALL 10U /* Index for sc_pad_get_all() RPC call */
+#define PAD_FUNC_SET 15U /* Index for sc_pad_set() RPC call */
+#define PAD_FUNC_GET 16U /* Index for sc_pad_get() RPC call */
+#define PAD_FUNC_SET_GP_28FDSOI 11U /* Index for sc_pad_set_gp_28fdsoi() RPC call */
+#define PAD_FUNC_GET_GP_28FDSOI 12U /* Index for sc_pad_get_gp_28fdsoi() RPC call */
+#define PAD_FUNC_SET_GP_28FDSOI_HSIC 3U /* Index for sc_pad_set_gp_28fdsoi_hsic() RPC call */
+#define PAD_FUNC_GET_GP_28FDSOI_HSIC 8U /* Index for sc_pad_get_gp_28fdsoi_hsic() RPC call */
+#define PAD_FUNC_SET_GP_28FDSOI_COMP 13U /* Index for sc_pad_set_gp_28fdsoi_comp() RPC call */
+#define PAD_FUNC_GET_GP_28FDSOI_COMP 14U /* Index for sc_pad_get_gp_28fdsoi_comp() RPC call */
/*@}*/
/* Types */
@@ -49,18 +50,11 @@
* This function dispatches an incoming PAD RPC request.
*
* @param[in] caller_pt caller partition
+ * @param[in] mu MU message came from
* @param[in] msg pointer to RPC message
*/
-void pad_dispatch(sc_rm_pt_t caller_pt, sc_rpc_msg_t *msg);
+void pad_dispatch(sc_rm_pt_t caller_pt, sc_rsrc_t mu, sc_rpc_msg_t *msg);
-/*!
- * This function translates and dispatches an PAD RPC request.
- *
- * @param[in] ipc IPC handle
- * @param[in] msg pointer to RPC message
- */
-void pad_xlate(sc_ipc_t ipc, sc_rpc_msg_t *msg);
-
-#endif /* SCI_PAD_RPC_H */
+#endif /* SC_PAD_RPC_H */
/**@}*/