/* * 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 /* TBBR related getter */ #define tbbr__cot_getter(id) cot_desc_ptr[id] #define tbbr__dyn_config_getter(id) tbbr_dyn_config.id struct tbbr_dyn_config_t { uint32_t disable_auth; }; extern struct tbbr_dyn_config_t tbbr_dyn_config; int fconf_populate_tbbr_dyn_config(uintptr_t config); #endif /* FCONF_TBBR_GETTER_H */