Newer
Older
arm-trusted-firmware / plat / hisilicon / hikey960 / hikey960_tbbr.c
@Teddy Reed Teddy Reed on 9 Sep 2018 604 bytes hikey960: Add development TBB support
/*
 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <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,
			unsigned int *flags)
{
	*key_ptr = hikey960_rotpk_hash;
	*key_len = hikey960_rotpk_hash_end - hikey960_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;
}