Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
34c4f86a
Commit
34c4f86a
authored
5 years ago
by
Soby Mathew
Committed by
TrustedFirmware Code Review
5 years ago
Browse files
Options
Download
Plain Diff
Merge "Add missing support for BL2_AT_EL3 in XIP memory" into integration
parents
efcf951f
0a12302c
master
v2.5
v2.5-rc1
v2.5-rc0
v2.4
v2.4-rc2
v2.4-rc1
v2.4-rc0
v2.3
v2.3-rc2
v2.3-rc1
v2.3-rc0
v2.2
v2.2-rc2
v2.2-rc1
v2.2-rc0
arm_cca_v0.2
arm_cca_v0.1
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/arch/aarch32/el3_common_macros.S
+1
-1
include/arch/aarch32/el3_common_macros.S
include/arch/aarch64/el3_common_macros.S
+1
-1
include/arch/aarch64/el3_common_macros.S
with
2 additions
and
2 deletions
+2
-2
include/arch/aarch32/el3_common_macros.S
View file @
34c4f86a
...
...
@@ -339,7 +339,7 @@
bl
zeromem
#endif
#ifdef
IMAGE_BL1
#if
def
ined(
IMAGE_BL1
) || (defined(IMAGE_BL2) && BL2_AT_EL3 && BL2_IN_XIP_MEM)
/
*
-----------------------------------------------------
*
Copy
data
from
ROM
to
RAM
.
*
-----------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
include/arch/aarch64/el3_common_macros.S
View file @
34c4f86a
...
...
@@ -366,7 +366,7 @@
bl
zeromem
#endif
#if defined(IMAGE_BL1) || (defined(IMAGE_BL2) && BL2_IN_XIP_MEM)
#if defined(IMAGE_BL1) || (defined(IMAGE_BL2) &&
BL2_AT_EL3 &&
BL2_IN_XIP_MEM)
adrp
x0
,
__DATA_RAM_START__
add
x0
,
x0
,
:
lo12
:
__DATA_RAM_START__
adrp
x1
,
__DATA_ROM_START__
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help