summaryrefslogtreecommitdiff
path: root/plat/imx/common/scu_otp.c
diff options
context:
space:
mode:
Diffstat (limited to 'plat/imx/common/scu_otp.c')
-rw-r--r--plat/imx/common/scu_otp.c40
1 files changed, 40 insertions, 0 deletions
diff --git a/plat/imx/common/scu_otp.c b/plat/imx/common/scu_otp.c
new file mode 100644
index 00000000..73dd7250
--- /dev/null
+++ b/plat/imx/common/scu_otp.c
@@ -0,0 +1,40 @@
+/*
+ * Copyright 2018 NXP
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#include <debug.h>
+#include <stdlib.h>
+#include <stdint.h>
+#include <smcc_helpers.h>
+#include <std_svc.h>
+#include <types.h>
+#include <platform_def.h>
+#include <fsl_sip.h>
+#include <sci/sci.h>
+
+extern sc_ipc_t ipc_handle;
+
+int imx_otp_handler(uint32_t smc_fid,
+ void *handle,
+ u_register_t x1,
+ u_register_t x2)
+{
+ int ret;
+ uint32_t fuse;
+
+ switch (smc_fid) {
+ case FSL_SIP_OTP_READ:
+ ret = sc_misc_otp_fuse_read(ipc_handle, x1, &fuse);
+ SMC_RET2(handle, ret, fuse);
+ break;
+ case FSL_SIP_OTP_WRITE:
+ ret = sc_misc_otp_fuse_write(ipc_handle, x1, x2);
+ SMC_RET1(handle, ret);
+ default:
+ ret = SMC_UNK;
+ SMC_RET1(handle, ret);
+ }
+}
+