Masahiro Yamada | 574388c | 2016-09-03 11:37:40 +0900 | [diff] [blame] | 1 | /* |
Ambroise Vincent | d207f56 | 2019-04-10 12:50:27 +0100 | [diff] [blame] | 2 | * Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved. |
Masahiro Yamada | 574388c | 2016-09-03 11:37:40 +0900 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 7 | #include <plat/common/platform.h> |
Masahiro Yamada | 574388c | 2016-09-03 11:37:40 +0900 | [diff] [blame] | 8 | |
Masahiro Yamada | 9679c9c | 2017-06-14 20:38:12 +0900 | [diff] [blame] | 9 | extern char uniphier_rotpk_hash[], uniphier_rotpk_hash_end[]; |
| 10 | |
Masahiro Yamada | 574388c | 2016-09-03 11:37:40 +0900 | [diff] [blame] | 11 | int plat_get_rotpk_info(void *cookie, void **key_ptr, unsigned int *key_len, |
| 12 | unsigned int *flags) |
| 13 | { |
Masahiro Yamada | 9679c9c | 2017-06-14 20:38:12 +0900 | [diff] [blame] | 14 | *key_ptr = uniphier_rotpk_hash; |
| 15 | *key_len = uniphier_rotpk_hash_end - uniphier_rotpk_hash; |
| 16 | *flags = ROTPK_IS_HASH; |
Masahiro Yamada | 574388c | 2016-09-03 11:37:40 +0900 | [diff] [blame] | 17 | |
| 18 | return 0; |
| 19 | } |
| 20 | |
| 21 | int plat_get_nv_ctr(void *cookie, unsigned int *nv_ctr) |
| 22 | { |
| 23 | /* |
| 24 | * No support for non-volatile counter. Update the ROT key to protect |
| 25 | * the system against rollback. |
| 26 | */ |
| 27 | *nv_ctr = 0; |
| 28 | |
| 29 | return 0; |
| 30 | } |
| 31 | |
| 32 | int plat_set_nv_ctr(void *cookie, unsigned int nv_ctr) |
| 33 | { |
| 34 | return 0; |
| 35 | } |
Ambroise Vincent | d207f56 | 2019-04-10 12:50:27 +0100 | [diff] [blame] | 36 | |
| 37 | int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) |
| 38 | { |
| 39 | return get_mbedtls_heap_helper(heap_addr, heap_size); |
| 40 | } |