mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-19 11:04:20 +00:00

Update the data type of the member 'config_max_size' present in the structure 'dyn_cfg_dtb_info_t' to uint32_t. This change is being done so that dyn_cfg_dtb_info_t and image_info structure should use same data type for maximum size. Change-Id: I9b5927a47eb8351bbf3664b8b1e047ae1ae5a260 Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
27 lines
710 B
C
27 lines
710 B
C
/*
|
|
* Copyright (c) 2019-2020, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef FCONF_DYN_CFG_GETTER_H
|
|
#define FCONF_DYN_CFG_GETTER_H
|
|
|
|
#include <lib/fconf/fconf.h>
|
|
|
|
/* Dynamic configuration related getter */
|
|
#define dyn_cfg__dtb_getter(id) dyn_cfg_dtb_info_getter(id)
|
|
|
|
struct dyn_cfg_dtb_info_t {
|
|
uintptr_t config_addr;
|
|
uint32_t config_max_size;
|
|
unsigned int config_id;
|
|
};
|
|
|
|
struct dyn_cfg_dtb_info_t *dyn_cfg_dtb_info_getter(unsigned int config_id);
|
|
int fconf_populate_dtb_registry(uintptr_t config);
|
|
|
|
/* Set fw_config information in global DTB array */
|
|
void set_fw_config_info(uintptr_t config_addr, uint32_t config_max_size);
|
|
|
|
#endif /* FCONF_DYN_CFG_GETTER_H */
|