aboutsummaryrefslogtreecommitdiff
path: root/plat/imx/imx6/imx6ul_picopi/imx6ul_picopi_trusted_boot.c
diff options
context:
space:
mode:
Diffstat (limited to 'plat/imx/imx6/imx6ul_picopi/imx6ul_picopi_trusted_boot.c')
-rw-r--r--plat/imx/imx6/imx6ul_picopi/imx6ul_picopi_trusted_boot.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/plat/imx/imx6/imx6ul_picopi/imx6ul_picopi_trusted_boot.c b/plat/imx/imx6/imx6ul_picopi/imx6ul_picopi_trusted_boot.c
new file mode 100644
index 00000000..126e3875
--- /dev/null
+++ b/plat/imx/imx6/imx6ul_picopi/imx6ul_picopi_trusted_boot.c
@@ -0,0 +1,37 @@
+/*
+ * Copyright (c) 2019, ARM Limited and Contributors. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#include <common/debug.h>
+#include <plat/common/platform.h>
+
+extern char imx6ul_picopi_rotpk_hash[], imx6ul_picopi_rotpk_hash_end[];
+
+int plat_get_rotpk_info(void *cookie, void **key_ptr, unsigned int *key_len,
+ unsigned int *flags)
+{
+ *key_ptr = imx6ul_picopi_rotpk_hash;
+ *key_len = imx6ul_picopi_rotpk_hash_end - imx6ul_picopi_rotpk_hash;
+ *flags = ROTPK_IS_HASH;
+
+ return 0;
+}
+
+int plat_get_nv_ctr(void *cookie, unsigned int *nv_ctr)
+{
+ *nv_ctr = 0;
+
+ return 0;
+}
+
+int plat_set_nv_ctr(void *cookie, unsigned int nv_ctr)
+{
+ return 1;
+}
+
+int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size)
+{
+ return get_mbedtls_heap_helper(heap_addr, heap_size);
+}