]> git.baikalelectronics.ru Git - arm-tf.git/commit
bl2-el3: Add BL2_EL3 image
authorRoberto Vargas <roberto.vargas@arm.com>
Mon, 30 Oct 2017 14:43:43 +0000 (14:43 +0000)
committerRoberto Vargas <roberto.vargas@arm.com>
Thu, 18 Jan 2018 09:42:35 +0000 (09:42 +0000)
commitb1d27b484f4172542eca074fdac42ffd13736a0f
treeaa9ceb97f7bb103de9bfc7237169aa3e833c2ba7
parent34c2b9c2f144e213533c00bbdedb8da5b786311b
bl2-el3: Add BL2_EL3 image

This patch enables BL2 to execute at the highest exception level
without any dependancy on TF BL1. This enables platforms which already
have a non-TF Boot ROM to directly load and execute BL2 and subsequent BL
stages without need for BL1.  This is not currently possible because
BL2 executes at S-EL1 and cannot jump straight to EL3.

Change-Id: Ief1efca4598560b1b8c8e61fbe26d1f44e929d69
Signed-off-by: Roberto Vargas <roberto.vargas@arm.com>
20 files changed:
Makefile
bl2/aarch32/bl2_el3_entrypoint.S [new file with mode: 0644]
bl2/aarch32/bl2_el3_exceptions.S [new file with mode: 0644]
bl2/aarch64/bl2_el3_entrypoint.S [new file with mode: 0644]
bl2/aarch64/bl2_el3_exceptions.S [new file with mode: 0644]
bl2/bl2.mk
bl2/bl2_el3.ld.S [new file with mode: 0644]
bl2/bl2_main.c
bl2/bl2_private.h
include/common/aarch32/el3_common_macros.S
include/common/aarch64/el3_common_macros.S
include/lib/cpus/aarch32/cpu_macros.S
include/lib/cpus/aarch64/cpu_macros.S
include/lib/xlat_tables/xlat_tables_v2_helpers.h
include/plat/common/platform.h
lib/cpus/aarch32/cpu_helpers.S
lib/cpus/aarch64/cpu_helpers.S
lib/cpus/errata_report.c
make_helpers/defaults.mk
plat/common/plat_bl2_el3_common.c [new file with mode: 0644]