mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-05-02 00:20:05 +00:00
plat/arm: Move dynamic xlat enable logic to makefile
The PLAT_XLAT_TABLES_DYNAMIC build option, defined in platform_def.h in Arm platforms, is checked by several headers, affecting their behaviour. To avoid issues around the include ordering of the headers, the definition should be moved to the platform's makefile. Change-Id: I0e12365c8d66309122e8a20790e1641a4f480a10 Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
This commit is contained in:
parent
bd9344f670
commit
3661d8e7ad
4 changed files with 30 additions and 26 deletions
|
@ -7,17 +7,6 @@
|
||||||
#ifndef PLATFORM_DEF_H
|
#ifndef PLATFORM_DEF_H
|
||||||
#define PLATFORM_DEF_H
|
#define PLATFORM_DEF_H
|
||||||
|
|
||||||
/* Enable the dynamic translation tables library. */
|
|
||||||
#ifdef AARCH32
|
|
||||||
# if defined(IMAGE_BL32) && RESET_TO_SP_MIN
|
|
||||||
# define PLAT_XLAT_TABLES_DYNAMIC 1
|
|
||||||
# endif
|
|
||||||
#else
|
|
||||||
# if defined(IMAGE_BL31) && (RESET_TO_BL31 || (ENABLE_SPM && !SPM_MM))
|
|
||||||
# define PLAT_XLAT_TABLES_DYNAMIC 1
|
|
||||||
# endif
|
|
||||||
#endif /* AARCH32 */
|
|
||||||
|
|
||||||
#include <drivers/arm/tzc400.h>
|
#include <drivers/arm/tzc400.h>
|
||||||
#include <lib/utils_def.h>
|
#include <lib/utils_def.h>
|
||||||
#include <plat/arm/board/common/v2m_def.h>
|
#include <plat/arm/board/common/v2m_def.h>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
|
# Copyright (c) 2013-2019, ARM Limited and Contributors. All rights reserved.
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: BSD-3-Clause
|
# SPDX-License-Identifier: BSD-3-Clause
|
||||||
#
|
#
|
||||||
|
@ -231,6 +231,22 @@ ifeq (${ARCH},aarch32)
|
||||||
NEED_BL32 := yes
|
NEED_BL32 := yes
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# Enable the dynamic translation tables library.
|
||||||
|
ifeq (${ARCH},aarch32)
|
||||||
|
ifeq (${RESET_TO_SP_MIN},1)
|
||||||
|
BL32_CFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC=1
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
ifeq (${RESET_TO_BL31},1)
|
||||||
|
BL31_CFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC=1
|
||||||
|
endif
|
||||||
|
ifeq (${ENABLE_SPM},1)
|
||||||
|
ifeq (${SPM_MM},0)
|
||||||
|
BL31_CFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC=1
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
# Add support for platform supplied linker script for BL31 build
|
# Add support for platform supplied linker script for BL31 build
|
||||||
$(eval $(call add_define,PLAT_EXTRA_LD_SCRIPT))
|
$(eval $(call add_define,PLAT_EXTRA_LD_SCRIPT))
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2014-2018, ARM Limited and Contributors. All rights reserved.
|
* Copyright (c) 2014-2019, ARM Limited and Contributors. All rights reserved.
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: BSD-3-Clause
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
*/
|
*/
|
||||||
|
@ -7,18 +7,6 @@
|
||||||
#ifndef PLATFORM_DEF_H
|
#ifndef PLATFORM_DEF_H
|
||||||
#define PLATFORM_DEF_H
|
#define PLATFORM_DEF_H
|
||||||
|
|
||||||
/* Enable the dynamic translation tables library. */
|
|
||||||
#ifdef AARCH32
|
|
||||||
# if defined(IMAGE_BL32) && RESET_TO_SP_MIN
|
|
||||||
# define PLAT_XLAT_TABLES_DYNAMIC 1
|
|
||||||
# endif
|
|
||||||
#else
|
|
||||||
# if defined(IMAGE_BL31) && RESET_TO_BL31
|
|
||||||
# define PLAT_XLAT_TABLES_DYNAMIC 1
|
|
||||||
# endif
|
|
||||||
#endif /* AARCH32 */
|
|
||||||
|
|
||||||
|
|
||||||
#include <drivers/arm/tzc400.h>
|
#include <drivers/arm/tzc400.h>
|
||||||
#if TRUSTED_BOARD_BOOT
|
#if TRUSTED_BOARD_BOOT
|
||||||
#include <drivers/auth/mbedtls/mbedtls_config.h>
|
#include <drivers/auth/mbedtls/mbedtls_config.h>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
|
# Copyright (c) 2013-2019, ARM Limited and Contributors. All rights reserved.
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: BSD-3-Clause
|
# SPDX-License-Identifier: BSD-3-Clause
|
||||||
#
|
#
|
||||||
|
@ -134,6 +134,17 @@ SKIP_A57_L1_FLUSH_PWR_DWN := 1
|
||||||
# Do not enable SVE
|
# Do not enable SVE
|
||||||
ENABLE_SVE_FOR_NS := 0
|
ENABLE_SVE_FOR_NS := 0
|
||||||
|
|
||||||
|
# Enable the dynamic translation tables library.
|
||||||
|
ifeq (${ARCH},aarch32)
|
||||||
|
ifeq (${RESET_TO_SP_MIN},1)
|
||||||
|
BL32_CFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC=1
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
ifeq (${RESET_TO_BL31},1)
|
||||||
|
BL31_CFLAGS += -DPLAT_XLAT_TABLES_DYNAMIC=1
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
include plat/arm/board/common/board_common.mk
|
include plat/arm/board/common/board_common.mk
|
||||||
include plat/arm/common/arm_common.mk
|
include plat/arm/common/arm_common.mk
|
||||||
include plat/arm/soc/common/soc_css.mk
|
include plat/arm/soc/common/soc_css.mk
|
||||||
|
|
Loading…
Add table
Reference in a new issue