| * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved. |
| * SPDX-License-Identifier: BSD-3-Clause |
| #include <plat/common/platform.h> |
| extern char hikey960_rotpk_hash[], hikey960_rotpk_hash_end[]; |
| int plat_get_rotpk_info(void *cookie, void **key_ptr, unsigned int *key_len, |
| *key_ptr = hikey960_rotpk_hash; |
| *key_len = hikey960_rotpk_hash_end - hikey960_rotpk_hash; |
| int plat_get_nv_ctr(void *cookie, unsigned int *nv_ctr) |
| int plat_set_nv_ctr(void *cookie, unsigned int nv_ctr) |
| int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) |
| return get_mbedtls_heap_helper(heap_addr, heap_size); |