xref: /rk3399_ARM-atf/include/plat/arm/common/arm_dyn_cfg_helpers.h (revision ff2743e544f0f82381ebb9dff8f14eacb837d2e0)
1 /*
2  * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 #ifndef __ARM_DYN_CFG_HELPERS_H__
7 #define __ARM_DYN_CFG_HELPERS_H__
8 
9 #include <stdint.h>
10 
11 /* Function declaration */
12 int arm_dyn_get_config_load_info(void *dtb, int node, unsigned int config_id,
13 		uint64_t *config_addr, uint32_t *config_size);
14 int arm_dyn_tb_fw_cfg_init(void *dtb, int *node);
15 int arm_dyn_get_disable_auth(void *dtb, int node, uint32_t *disable_auth);
16 
17 #endif /* __ARM_DYN_CFG_HELPERS_H__ */
18