aboutsummaryrefslogtreecommitdiff
path: root/tftf/framework
diff options
context:
space:
mode:
authorSandrine Bailleux <sandrine.bailleux@arm.com>2019-01-11 18:47:26 +0100
committerSandrine Bailleux <sandrine.bailleux@arm.com>2019-01-14 13:51:15 +0100
commit8b170a247ef0d45d0186cdc8b22257a9ee1f2a3f (patch)
tree76b5e04a5964b6d658e0564ad2ac08131499abac /tftf/framework
parenta17e77c53ba160e0394c331e6c37a4f3b271a78b (diff)
downloadtf-a-tests-8b170a247ef0d45d0186cdc8b22257a9ee1f2a3f.tar.gz
Fix comments in AArch64 exceptions code
Change-Id: I88216c14056bee4405233b3e47b59cd3ea355322 Signed-off-by: Sandrine Bailleux <sandrine.bailleux@arm.com>
Diffstat (limited to 'tftf/framework')
-rw-r--r--tftf/framework/aarch64/exceptions.S25
1 files changed, 13 insertions, 12 deletions
diff --git a/tftf/framework/aarch64/exceptions.S b/tftf/framework/aarch64/exceptions.S
index 08bef4663..b1c664a46 100644
--- a/tftf/framework/aarch64/exceptions.S
+++ b/tftf/framework/aarch64/exceptions.S
@@ -9,9 +9,10 @@
.globl tftf_vector
vector_base tftf_vector
- //-----------------------------------------------------
- // Current EL with SP0 : 0x0 - 0x180
- //-----------------------------------------------------
+
+ /*
+ * Current EL with SP0 : 0x0 - 0x200.
+ */
vector_entry SynchronousExceptionSP0
b SynchronousExceptionSP0
check_vector_size SynchronousExceptionSP0
@@ -28,9 +29,9 @@ vector_entry SErrorSP0
b SErrorSP0
check_vector_size SErrorSP0
- //-----------------------------------------------------
- // Current EL with SPx: 0x200 - 0x380
- //-----------------------------------------------------
+ /*
+ * Current EL with SPx : 0x200 - 0x400.
+ */
vector_entry SynchronousExceptionSPx
b SynchronousExceptionSPx
check_vector_size SynchronousExceptionSPx
@@ -56,9 +57,9 @@ vector_entry SErrorSPx
b SErrorSPx
check_vector_size SErrorSPx
- //-----------------------------------------------------
- // Lower EL using AArch64 : 0x400 - 0x580
- //-----------------------------------------------------
+ /*
+ * Lower EL using AArch64 : 0x400 - 0x600.
+ */
vector_entry SynchronousExceptionA64
b SynchronousExceptionA64
check_vector_size SynchronousExceptionA64
@@ -75,9 +76,9 @@ vector_entry SErrorA64
b SErrorA64
check_vector_size SErrorA64
- //-----------------------------------------------------
- // Lower EL using AArch32 : 0x0 - 0x180
- //-----------------------------------------------------
+ /*
+ * Lower EL using AArch32 : 0x600 - 0x800.
+ */
vector_entry SynchronousExceptionA32
b SynchronousExceptionA32
check_vector_size SynchronousExceptionA32