1 /*
2  * Copyright (c) 2021, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <plat/common/platform.h>
8 
9 extern char imx8mm_rotpk_hash[], imx8mm_rotpk_hash_end[];
10 
plat_get_rotpk_info(void * cookie,void ** key_ptr,unsigned int * key_len,unsigned int * flags)11 int plat_get_rotpk_info(void *cookie, void **key_ptr, unsigned int *key_len,
12 			unsigned int *flags)
13 {
14 	*key_ptr = imx8mm_rotpk_hash;
15 	*key_len = imx8mm_rotpk_hash_end - imx8mm_rotpk_hash;
16 	*flags = ROTPK_IS_HASH;
17 
18 	return 0;
19 }
20 
plat_get_nv_ctr(void * cookie,unsigned int * nv_ctr)21 int plat_get_nv_ctr(void *cookie, unsigned int *nv_ctr)
22 {
23 	*nv_ctr = 0;
24 
25 	return 0;
26 }
27 
plat_set_nv_ctr(void * cookie,unsigned int nv_ctr)28 int plat_set_nv_ctr(void *cookie, unsigned int nv_ctr)
29 {
30 	return 1;
31 }
32 
plat_get_mbedtls_heap(void ** heap_addr,size_t * heap_size)33 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size)
34 {
35 	return get_mbedtls_heap_helper(heap_addr, heap_size);
36 }
37