blob: cd271288a84120c87eb8eb7fe825aa7fe81a16f8 [file] [log] [blame]
Bryan O'Donoghue59ca2f62018-10-26 14:19:43 +01001/*
Ambroise Vincentd207f562019-04-10 12:50:27 +01002 * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
Bryan O'Donoghue59ca2f62018-10-26 14:19:43 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <plat/common/platform.h>
8
Jun Nie8cfd4b52019-06-13 11:38:24 +08009extern char imx7_rotpk_hash[], imx7_rotpk_hash_end[];
Bryan O'Donoghue59ca2f62018-10-26 14:19:43 +010010
11int plat_get_rotpk_info(void *cookie, void **key_ptr, unsigned int *key_len,
12 unsigned int *flags)
13{
Jun Nie8cfd4b52019-06-13 11:38:24 +080014 *key_ptr = imx7_rotpk_hash;
15 *key_len = imx7_rotpk_hash_end - imx7_rotpk_hash;
Bryan O'Donoghue59ca2f62018-10-26 14:19:43 +010016 *flags = ROTPK_IS_HASH;
17
18 return 0;
19}
20
21int plat_get_nv_ctr(void *cookie, unsigned int *nv_ctr)
22{
23 *nv_ctr = 0;
24
25 return 0;
26}
27
28int plat_set_nv_ctr(void *cookie, unsigned int nv_ctr)
29{
30 return 1;
31}
Ambroise Vincentd207f562019-04-10 12:50:27 +010032
33int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size)
34{
35 return get_mbedtls_heap_helper(heap_addr, heap_size);
36}