mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 18:14:24 +00:00
Merge pull request #1713 from chandnich/nt-fw-config
plat/arm/sgi: Use NT_FW_CONFIG instead of HW_CONFIG
This commit is contained in:
commit
f7ed4ab07a
7 changed files with 15 additions and 15 deletions
|
@ -9,8 +9,8 @@
|
|||
/ {
|
||||
/* Platform Config */
|
||||
compatible = "arm,tb_fw";
|
||||
hw_config_addr = <0x0 0xFEF00000>;
|
||||
hw_config_max_size = <0x0100000>;
|
||||
nt_fw_config_addr = <0x0 0xFEF00000>;
|
||||
nt_fw_config_max_size = <0x0100000>;
|
||||
/*
|
||||
* The following two entries are placeholders for Mbed TLS
|
||||
* heap information. The default values don't matter since
|
||||
|
|
|
@ -33,8 +33,8 @@ TB_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_tb_fw_config.dtb
|
|||
# Add the TB_FW_CONFIG to FIP and specify the same to certtool
|
||||
$(eval $(call TOOL_ADD_PAYLOAD,${TB_FW_CONFIG},--tb-fw-config))
|
||||
|
||||
FDT_SOURCES += ${SGI575_BASE}/fdts/${PLAT}.dts
|
||||
HW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}.dtb
|
||||
FDT_SOURCES += ${SGI575_BASE}/fdts/${PLAT}_nt_fw_config.dts
|
||||
NT_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_nt_fw_config.dtb
|
||||
|
||||
# Add the HW_CONFIG to FIP and specify the same to certtool
|
||||
$(eval $(call TOOL_ADD_PAYLOAD,${HW_CONFIG},--hw-config))
|
||||
# Add the NT_FW_CONFIG to FIP and specify the same to certtool
|
||||
$(eval $(call TOOL_ADD_PAYLOAD,${NT_FW_CONFIG},--nt-fw-config))
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
/ {
|
||||
/* Platform Config */
|
||||
compatible = "arm,tb_fw";
|
||||
hw_config_addr = <0x0 0xFEF00000>;
|
||||
hw_config_max_size = <0x0100000>;
|
||||
nt_fw_config_addr = <0x0 0xFEF00000>;
|
||||
nt_fw_config_max_size = <0x0100000>;
|
||||
/*
|
||||
* The following two entries are placeholders for Mbed TLS
|
||||
* heap information. The default values don't matter since
|
||||
|
|
|
@ -33,10 +33,10 @@ TB_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_tb_fw_config.dtb
|
|||
# Add the TB_FW_CONFIG to FIP and specify the same to certtool
|
||||
$(eval $(call TOOL_ADD_PAYLOAD,${TB_FW_CONFIG},--tb-fw-config))
|
||||
|
||||
FDT_SOURCES += ${SGICLARKA_BASE}/fdts/${PLAT}.dts
|
||||
HW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}.dtb
|
||||
FDT_SOURCES += ${SGICLARKA_BASE}/fdts/${PLAT}_nt_fw_config.dts
|
||||
NT_FW_CONFIG := ${BUILD_PLAT}/fdts/${PLAT}_nt_fw_config.dtb
|
||||
|
||||
# Add the HW_CONFIG to FIP and specify the same to certtool
|
||||
$(eval $(call TOOL_ADD_PAYLOAD,${HW_CONFIG},--hw-config))
|
||||
# Add the NT_FW_CONFIG to FIP and specify the same to certtool
|
||||
$(eval $(call TOOL_ADD_PAYLOAD,${NT_FW_CONFIG},--nt-fw-config))
|
||||
|
||||
override CTX_INCLUDE_AARCH32_REGS := 0
|
||||
|
|
|
@ -25,9 +25,9 @@ static int plat_sgi_append_config_node(void)
|
|||
int nodeoffset, err;
|
||||
unsigned int platid = 0, platcfg = 0;
|
||||
|
||||
mem_params = get_bl_mem_params_node(HW_CONFIG_ID);
|
||||
mem_params = get_bl_mem_params_node(NT_FW_CONFIG_ID);
|
||||
if (mem_params == NULL) {
|
||||
ERROR("HW CONFIG base address is NULL");
|
||||
ERROR("NT_FW CONFIG base address is NULL");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -35,7 +35,7 @@ static int plat_sgi_append_config_node(void)
|
|||
|
||||
/* Check the validity of the fdt */
|
||||
if (fdt_check_header(fdt) != 0) {
|
||||
ERROR("Invalid HW_CONFIG DTB passed\n");
|
||||
ERROR("Invalid NT_FW_CONFIG DTB passed\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue