summaryrefslogtreecommitdiff
path: root/bl2
diff options
context:
space:
mode:
authordavidcunado-arm <david.cunado@arm.com>2018-02-28 01:26:21 +0000
committerGitHub <noreply@github.com>2018-02-28 01:26:21 +0000
commitc69145fc2a8f1660131f555f286c6989c8343c74 (patch)
tree57f5e8ea7244c33953999e97299b482fbe67a433 /bl2
parent99e198ecd869d33a5948445dd17c5e0920ef5477 (diff)
parent264410306381d4edceeb03b3a0e8db66605427be (diff)
Merge pull request #1286 from antonio-nino-diaz-arm/an/mmu-mismatch
Clarify comments in xlat tables lib and fixes related to the TLB
Diffstat (limited to 'bl2')
-rw-r--r--bl2/bl2.ld.S5
-rw-r--r--bl2/bl2_el3.ld.S5
2 files changed, 6 insertions, 4 deletions
diff --git a/bl2/bl2.ld.S b/bl2/bl2.ld.S
index 4fe78f9e..69c22eb3 100644
--- a/bl2/bl2.ld.S
+++ b/bl2/bl2.ld.S
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved.
+ * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
@@ -108,7 +108,8 @@ SECTIONS
/*
* The xlat_table section is for full, aligned page tables (4K).
* Removing them from .bss avoids forcing 4K alignment on
- * the .bss section and eliminates the unecessary zero init
+ * the .bss section. The tables are initialized to zero by the translation
+ * tables library.
*/
xlat_table (NOLOAD) : {
*(xlat_table)
diff --git a/bl2/bl2_el3.ld.S b/bl2/bl2_el3.ld.S
index 57709e35..3728643c 100644
--- a/bl2/bl2_el3.ld.S
+++ b/bl2/bl2_el3.ld.S
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
+ * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
@@ -139,7 +139,8 @@ SECTIONS
/*
* The xlat_table section is for full, aligned page tables (4K).
* Removing them from .bss avoids forcing 4K alignment on
- * the .bss section and eliminates the unnecessary zero init
+ * the .bss section. The tables are initialized to zero by the translation
+ * tables library.
*/
xlat_table (NOLOAD) : {
*(xlat_table)