diff options
author | Usama Arif <usama.arif@arm.com> | 2018-12-12 17:14:29 +0000 |
---|---|---|
committer | Usama Arif <usama.arif@arm.com> | 2019-02-19 17:07:48 +0000 |
commit | 8f73663b5963ff10ec946b1faa92b4311f28cbd9 (patch) | |
tree | a0c9a47b834e819f84e1d27d6a590eb1f4f39b86 /make_helpers | |
parent | a5aa25af6514ff04721efce05e46b4daf8729a85 (diff) | |
download | platform_external_arm-trusted-firmware-8f73663b5963ff10ec946b1faa92b4311f28cbd9.tar.gz platform_external_arm-trusted-firmware-8f73663b5963ff10ec946b1faa92b4311f28cbd9.tar.bz2 platform_external_arm-trusted-firmware-8f73663b5963ff10ec946b1faa92b4311f28cbd9.zip |
plat/arm: Support for Cortex A5 in FVP Versatile Express platform
Cortex A5 doesnt support VFP, Large Page addressing and generic timer
which are addressed in this patch. The device tree for Cortex a5
is also included.
Change-Id: I0722345721b145dfcc80bebd36a1afbdc44bb678
Signed-off-by: Usama Arif <usama.arif@arm.com>
Diffstat (limited to 'make_helpers')
-rw-r--r-- | make_helpers/armv7-a-cpus.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/make_helpers/armv7-a-cpus.mk b/make_helpers/armv7-a-cpus.mk index 20e7ec533..5571ab0f7 100644 --- a/make_helpers/armv7-a-cpus.mk +++ b/make_helpers/armv7-a-cpus.mk @@ -47,4 +47,9 @@ ifeq ($(filter yes,$(ARM_CORTEX_A7) $(ARM_CORTEX_A12) $(ARM_CORTEX_A15) $(ARM_CO $(eval $(call add_define,ARMV7_SUPPORTS_LARGE_PAGE_ADDRESSING)) $(eval $(call add_define,ARMV7_SUPPORTS_VIRTUALIZATION)) $(eval $(call add_define,ARMV7_SUPPORTS_GENERIC_TIMER)) +$(eval $(call add_define,ARMV7_SUPPORTS_VFP)) +endif + +ifeq ($(ARM_CORTEX_A5),yes) +$(eval $(call add_define,ARM_CORTEX_A5)) endif |