summaryrefslogtreecommitdiff
path: root/drivers/soc/imx/sc/svc/misc/rpc.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/soc/imx/sc/svc/misc/rpc.h')
-rw-r--r--drivers/soc/imx/sc/svc/misc/rpc.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/drivers/soc/imx/sc/svc/misc/rpc.h b/drivers/soc/imx/sc/svc/misc/rpc.h
new file mode 100644
index 000000000000..087b6b9f6dea
--- /dev/null
+++ b/drivers/soc/imx/sc/svc/misc/rpc.h
@@ -0,0 +1,70 @@
+/*
+ * Copyright (C) 2016 Freescale Semiconductor, Inc.
+ * Copyright 2017 NXP
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+/*!
+ * Header file for the MISC RPC implementation.
+ *
+ * @addtogroup MISC_SVC
+ * @{
+ */
+
+#ifndef _SC_MISC_RPC_H
+#define _SC_MISC_RPC_H
+
+/* Includes */
+
+/* Defines */
+
+/* Types */
+
+/*!
+ * This type is used to indicate RPC MISC function calls.
+ */
+typedef enum misc_func_e {
+ MISC_FUNC_UNKNOWN = 0, /* Unknown function */
+ MISC_FUNC_SET_CONTROL = 1, /* Index for misc_set_control() RPC call */
+ MISC_FUNC_GET_CONTROL = 2, /* Index for misc_get_control() RPC call */
+ MISC_FUNC_SET_MAX_DMA_GROUP = 4, /* Index for misc_set_max_dma_group() RPC call */
+ MISC_FUNC_SET_DMA_GROUP = 5, /* Index for misc_set_dma_group() RPC call */
+ MISC_FUNC_SECO_IMAGE_LOAD = 8, /* Index for misc_seco_image_load() RPC call */
+ MISC_FUNC_SECO_AUTHENTICATE = 9, /* Index for misc_seco_authenticate() RPC call */
+ MISC_FUNC_DEBUG_OUT = 10, /* Index for misc_debug_out() RPC call */
+ MISC_FUNC_WAVEFORM_CAPTURE = 6, /* Index for misc_waveform_capture() RPC call */
+ MISC_FUNC_BUILD_INFO = 15, /* Index for misc_build_info() RPC call */
+ MISC_FUNC_UNIQUE_ID = 19, /* Index for misc_unique_id() RPC call */
+ MISC_FUNC_SET_ARI = 3, /* Index for misc_set_ari() RPC call */
+ MISC_FUNC_BOOT_STATUS = 7, /* Index for misc_boot_status() RPC call */
+ MISC_FUNC_BOOT_DONE = 14, /* Index for misc_boot_done() RPC call */
+ MISC_FUNC_OTP_FUSE_READ = 11, /* Index for misc_otp_fuse_read() RPC call */
+ MISC_FUNC_OTP_FUSE_WRITE = 17, /* Index for misc_otp_fuse_write() RPC call */
+ MISC_FUNC_SET_TEMP = 12, /* Index for misc_set_temp() RPC call */
+ MISC_FUNC_GET_TEMP = 13, /* Index for misc_get_temp() RPC call */
+ MISC_FUNC_GET_BOOT_DEV = 16, /* Index for misc_get_boot_dev() RPC call */
+ MISC_FUNC_GET_BUTTON_STATUS = 18, /* Index for misc_get_button_status() RPC call */
+} misc_func_t;
+
+/* Functions */
+
+/*!
+ * This function dispatches an incoming MISC RPC request.
+ *
+ * @param[in] caller_pt caller partition
+ * @param[in] msg pointer to RPC message
+ */
+void misc_dispatch(sc_rm_pt_t caller_pt, sc_rpc_msg_t *msg);
+
+/*!
+ * This function translates and dispatches an MISC RPC request.
+ *
+ * @param[in] ipc IPC handle
+ * @param[in] msg pointer to RPC message
+ */
+void misc_xlate(sc_ipc_t ipc, sc_rpc_msg_t *msg);
+
+#endif /* _SC_MISC_RPC_H */
+
+/**@}*/