Louis Mayencourt | 6d2b573 | 2019-12-17 13:17:25 +0000 | [diff] [blame] | 1 | /* |
Yann Gautier | 5a57e25 | 2021-12-13 15:22:45 +0100 | [diff] [blame] | 2 | * Copyright (c) 2019-2021, Arm Limited. All rights reserved. |
Louis Mayencourt | 6d2b573 | 2019-12-17 13:17:25 +0000 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #ifndef FCONF_DYN_CFG_GETTER_H |
| 8 | #define FCONF_DYN_CFG_GETTER_H |
| 9 | |
| 10 | #include <lib/fconf/fconf.h> |
| 11 | |
Yann Gautier | 5a57e25 | 2021-12-13 15:22:45 +0100 | [diff] [blame] | 12 | #define FCONF_INVALID_IDX 0xFFFFFFFFU |
| 13 | |
Louis Mayencourt | 6d2b573 | 2019-12-17 13:17:25 +0000 | [diff] [blame] | 14 | /* Dynamic configuration related getter */ |
| 15 | #define dyn_cfg__dtb_getter(id) dyn_cfg_dtb_info_getter(id) |
| 16 | |
| 17 | struct dyn_cfg_dtb_info_t { |
| 18 | uintptr_t config_addr; |
Manish V Badarkhe | a8be3bb | 2020-07-15 04:27:57 +0100 | [diff] [blame] | 19 | uint32_t config_max_size; |
Louis Mayencourt | 6d2b573 | 2019-12-17 13:17:25 +0000 | [diff] [blame] | 20 | unsigned int config_id; |
| 21 | }; |
| 22 | |
Yann Gautier | 5a57e25 | 2021-12-13 15:22:45 +0100 | [diff] [blame] | 23 | unsigned int dyn_cfg_dtb_info_get_index(unsigned int config_id); |
Louis Mayencourt | 6d2b573 | 2019-12-17 13:17:25 +0000 | [diff] [blame] | 24 | struct dyn_cfg_dtb_info_t *dyn_cfg_dtb_info_getter(unsigned int config_id); |
| 25 | int fconf_populate_dtb_registry(uintptr_t config); |
| 26 | |
Manish V Badarkhe | 6a91e59 | 2020-07-15 05:08:37 +0100 | [diff] [blame] | 27 | /* Set config information in global DTB array */ |
| 28 | void set_config_info(uintptr_t config_addr, uint32_t config_max_size, |
| 29 | unsigned int config_id); |
Manish V Badarkhe | 99a8e14 | 2020-06-11 22:32:11 +0100 | [diff] [blame] | 30 | |
Louis Mayencourt | 6d2b573 | 2019-12-17 13:17:25 +0000 | [diff] [blame] | 31 | #endif /* FCONF_DYN_CFG_GETTER_H */ |