aboutsummaryrefslogtreecommitdiff
path: root/include/lib/fconf/fconf_tbbr_getter.h
blob: 6066af6df6599d330d226b04fcd9eea89e01d47d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
 * Copyright (c) 2019-2020, ARM Limited. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef FCONF_TBBR_GETTER_H
#define FCONF_TBBR_GETTER_H

#include <assert.h>

#include <lib/fconf/fconf.h>

/* TBBR related getter */
#define tbbr__cot_getter(id) __extension__ ({	\
	assert((id) < cot_desc_size);		\
	cot_desc_ptr[id];			\
})

#define tbbr__dyn_config_getter(id)	tbbr_dyn_config.id

struct tbbr_dyn_config_t {
	uint32_t disable_auth;
	void *mbedtls_heap_addr;
	size_t mbedtls_heap_size;
#if MEASURED_BOOT
	uint8_t bl2_hash_data[TCG_DIGEST_SIZE];
#endif
};

extern struct tbbr_dyn_config_t tbbr_dyn_config;

int fconf_populate_tbbr_dyn_config(uintptr_t config);

#endif /* FCONF_TBBR_GETTER_H */