fconf_dyn_cfg_getter.c 3.64 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Copyright (c) 2019-2020, Arm Limited. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <assert.h>

#include <common/debug.h>
#include <common/fdt_wrappers.h>
#include <lib/fconf/fconf_dyn_cfg_getter.h>
#include <lib/object_pool.h>
#include <libfdt.h>

15
/* We currently use FW, TB_FW, SOC_FW, TOS_FW, NT_FW and HW configs  */
16
#define MAX_DTB_INFO	U(6)
17
18
19
20
21
22
23
/*
 * Compile time assert if FW_CONFIG_ID is 0 which is more
 * unlikely as 0 is a valid image ID for FIP as per the current
 * code but still to avoid code breakage in case of unlikely
 * event when image IDs get changed.
 */
CASSERT(FW_CONFIG_ID != U(0), assert_invalid_fw_config_id);
24
25
26

static struct dyn_cfg_dtb_info_t dtb_infos[MAX_DTB_INFO];
static OBJECT_POOL_ARRAY(dtb_info_pool, dtb_infos);
27
28

/*
29
30
 * This function is used to alloc memory for config information from
 * global pool and set the configuration information.
31
 */
32
33
void set_config_info(uintptr_t config_addr, uint32_t config_max_size,
			unsigned int config_id)
34
35
36
37
38
39
{
	struct dyn_cfg_dtb_info_t *dtb_info;

	dtb_info = pool_alloc(&dtb_info_pool);
	dtb_info->config_addr = config_addr;
	dtb_info->config_max_size = config_max_size;
40
	dtb_info->config_id = config_id;
41
}
42
43
44
45
46
47

struct dyn_cfg_dtb_info_t *dyn_cfg_dtb_info_getter(unsigned int config_id)
{
	unsigned int index;

	/* Positions index to the proper config-id */
48
	for (index = 0U; index < MAX_DTB_INFO; index++) {
49
		if (dtb_infos[index].config_id == config_id) {
50
			return &dtb_infos[index];
51
52
53
		}
	}

54
	WARN("FCONF: Invalid config id %u\n", config_id);
55

56
	return NULL;
57
58
59
60
61
62
63
64
65
66
}

int fconf_populate_dtb_registry(uintptr_t config)
{
	int rc;
	int node, child;

	/* As libfdt use void *, we can't avoid this cast */
	const void *dtb = (void *)config;

67
68
69
70
71
72
73
74
75
	/*
	 * In case of BL1, fw_config dtb information is already
	 * populated in global dtb_infos array by 'set_fw_config_info'
	 * function, Below check is present to avoid re-population of
	 * fw_config information.
	 *
	 * Other BLs, satisfy below check and populate fw_config information
	 * in global dtb_infos array.
	 */
76
77
78
	if (dtb_infos[0].config_id == 0U) {
		uint32_t config_max_size = fdt_totalsize(dtb);
		set_config_info(config, config_max_size, FW_CONFIG_ID);
79
80
	}

81
82
	/* Find the node offset point to "fconf,dyn_cfg-dtb_registry" compatible property */
	const char *compatible_str = "fconf,dyn_cfg-dtb_registry";
83
84
85
86
87
88
89
	node = fdt_node_offset_by_compatible(dtb, -1, compatible_str);
	if (node < 0) {
		ERROR("FCONF: Can't find %s compatible in dtb\n", compatible_str);
		return node;
	}

	fdt_for_each_subnode(child, dtb, node) {
90
91
		uint32_t config_max_size, config_id;
		uintptr_t config_addr;
92
93
		uint64_t val64;

94
		/* Read configuration dtb information */
95
		rc = fdt_read_uint64(dtb, child, "load-address", &val64);
96
97
98
99
		if (rc < 0) {
			ERROR("FCONF: Incomplete configuration property in dtb-registry.\n");
			return rc;
		}
100
		config_addr = (uintptr_t)val64;
101

102
		rc = fdt_read_uint32(dtb, child, "max-size", &config_max_size);
103
104
105
106
107
		if (rc < 0) {
			ERROR("FCONF: Incomplete configuration property in dtb-registry.\n");
			return rc;
		}

108
		rc = fdt_read_uint32(dtb, child, "id", &config_id);
109
110
111
112
113
114
		if (rc < 0) {
			ERROR("FCONF: Incomplete configuration property in dtb-registry.\n");
			return rc;
		}

		VERBOSE("FCONF: dyn_cfg.dtb_registry cell found with:\n");
115
116
117
118
119
		VERBOSE("\tload-address = %lx\n", config_addr);
		VERBOSE("\tmax-size = 0x%x\n", config_max_size);
		VERBOSE("\tconfig-id = %u\n", config_id);

		set_config_info(config_addr, config_max_size, config_id);
120
121
122
123
124
125
126
127
128
129
	}

	if ((child < 0) && (child != -FDT_ERR_NOTFOUND)) {
		ERROR("%d: fdt_for_each_subnode(): %d\n", __LINE__, node);
		return child;
	}

	return 0;
}

130
FCONF_REGISTER_POPULATOR(FW_CONFIG, dyn_cfg, fconf_populate_dtb_registry);