mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-16 09:27:01 +02:00
A populate() function essentially captures the value of a property, defined by a platform, into a fconf related c structure. Such a callback is usually platform specific and is associated to a specific configuration source. For example, a populate() function which captures the hardware topology of the platform can only parse HW_CONFIG DTB. Hence each populator function must be registered with a specific 'config_type' identifier. It broadly represents a logical grouping of configuration properties which is usually a device tree source file. Example: > TB_FW: properties related to trusted firmware such as IO policies, base address of other DTBs, mbedtls heap info etc. > HW_CONFIG: properties related to hardware configuration of the SoC such as topology, GIC controller, PSCI hooks, CPU ID etc. This patch modifies FCONF_REGISTER_POPULATOR macro and fconf_populate() to register and invoke the appropriate callbacks selectively based on configuration type. Change-Id: I6f63b1fd7a8729c6c9137d5b63270af1857bb44a Signed-off-by: Madhukar Pappireddy <madhukar.pappireddy@arm.com>
76 lines
2.1 KiB
C
76 lines
2.1 KiB
C
/*
|
|
* Copyright (c) 2019-2020, ARM Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
#include <assert.h>
|
|
|
|
#include <common/bl_common.h>
|
|
#include <common/debug.h>
|
|
#include <common/fdt_wrappers.h>
|
|
#include <lib/fconf/fconf_tbbr_getter.h>
|
|
#include <libfdt.h>
|
|
|
|
struct tbbr_dyn_config_t tbbr_dyn_config;
|
|
|
|
int fconf_populate_tbbr_dyn_config(uintptr_t config)
|
|
{
|
|
int err;
|
|
int node;
|
|
|
|
/* As libfdt use void *, we can't avoid this cast */
|
|
const void *dtb = (void *)config;
|
|
|
|
/* Assert the node offset point to "arm,tb_fw" compatible property */
|
|
const char *compatible_str = "arm,tb_fw";
|
|
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;
|
|
}
|
|
|
|
/* Locate the disable_auth cell and read the value */
|
|
err = fdtw_read_cells(dtb, node, "disable_auth", 1, &tbbr_dyn_config.disable_auth);
|
|
if (err < 0) {
|
|
WARN("FCONF: Read cell failed for `disable_auth`\n");
|
|
return err;
|
|
}
|
|
|
|
/* Check if the value is boolean */
|
|
if ((tbbr_dyn_config.disable_auth != 0U) && (tbbr_dyn_config.disable_auth != 1U)) {
|
|
WARN("Invalid value for `disable_auth` cell %d\n", tbbr_dyn_config.disable_auth);
|
|
return -1;
|
|
}
|
|
|
|
#if defined(DYN_DISABLE_AUTH)
|
|
if (tbbr_dyn_config.disable_auth == 1)
|
|
dyn_disable_auth();
|
|
#endif
|
|
|
|
/* Retrieve the Mbed TLS heap details from the DTB */
|
|
err = fdtw_read_cells(dtb, node,
|
|
"mbedtls_heap_addr", 2, &tbbr_dyn_config.mbedtls_heap_addr);
|
|
if (err < 0) {
|
|
ERROR("FCONF: Read cell failed for mbedtls_heap\n");
|
|
return err;
|
|
}
|
|
|
|
err = fdtw_read_cells(dtb, node,
|
|
"mbedtls_heap_size", 1, &tbbr_dyn_config.mbedtls_heap_size);
|
|
if (err < 0) {
|
|
ERROR("FCONF: Read cell failed for mbedtls_heap\n");
|
|
return err;
|
|
}
|
|
|
|
VERBOSE("FCONF:tbbr.disable_auth cell found with value = %d\n",
|
|
tbbr_dyn_config.disable_auth);
|
|
VERBOSE("FCONF:tbbr.mbedtls_heap_addr cell found with value = %p\n",
|
|
tbbr_dyn_config.mbedtls_heap_addr);
|
|
VERBOSE("FCONF:tbbr.mbedtls_heap_size cell found with value = %zu\n",
|
|
tbbr_dyn_config.mbedtls_heap_size);
|
|
|
|
return 0;
|
|
}
|
|
|
|
FCONF_REGISTER_POPULATOR(TB_FW, tbbr, fconf_populate_tbbr_dyn_config);
|