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
f68bc8a1
Unverified
Commit
f68bc8a1
authored
6 years ago
by
Dimitris Papastamos
Committed by
GitHub
6 years ago
Browse files
Options
Download
Plain Diff
Merge pull request #1506 from danielboulby-arm/db/SeparateCodeAndROData
Fix build for SEPARATE_CODE_AND_RODATA=0
parents
f943ce74
2ecaafd2
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
v2.1
v2.1-rc1
v2.1-rc0
v2.0
v2.0-rc0
v1.6
v1.6-rc1
v1.6-rc0
arm_cca_v0.2
arm_cca_v0.1
No related merge requests found
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
include/plat/arm/common/arm_def.h
+13
-8
include/plat/arm/common/arm_def.h
plat/arm/common/arm_bl1_setup.c
+15
-5
plat/arm/common/arm_bl1_setup.c
plat/arm/common/arm_bl2_el3_setup.c
+1
-2
plat/arm/common/arm_bl2_el3_setup.c
plat/arm/common/arm_bl2_setup.c
+1
-2
plat/arm/common/arm_bl2_setup.c
plat/arm/common/arm_bl2u_setup.c
+1
-2
plat/arm/common/arm_bl2u_setup.c
plat/arm/common/arm_bl31_setup.c
+1
-2
plat/arm/common/arm_bl31_setup.c
plat/arm/common/sp_min/arm_sp_min_setup.c
+1
-2
plat/arm/common/sp_min/arm_sp_min_setup.c
plat/arm/common/tsp/arm_tsp_setup.c
+1
-2
plat/arm/common/tsp/arm_tsp_setup.c
with
34 additions
and
25 deletions
+34
-25
include/plat/arm/common/arm_def.h
View file @
f68bc8a1
...
...
@@ -241,16 +241,25 @@
ARM_EL3_TZC_DRAM1_SIZE, \
MT_MEMORY | MT_RW | MT_SECURE)
/*
* If SEPARATE_CODE_AND_RODATA=1 we define a region for each section
* otherwise one region is defined containing both.
*/
#if SEPARATE_CODE_AND_RODATA
#define ARM_MAP_BL_
CODE
MAP_REGION_FLAT( \
#define ARM_MAP_BL_
RO
MAP_REGION_FLAT( \
BL_CODE_BASE, \
BL_CODE_END - BL_CODE_BASE, \
MT_CODE | MT_SECURE)
#define ARM_MAP_BL_RO_DATA
MAP_REGION_FLAT( \
MT_CODE | MT_SECURE)
, \
MAP_REGION_FLAT( \
BL_RO_DATA_BASE, \
BL_RO_DATA_END \
- BL_RO_DATA_BASE, \
MT_RO_DATA | MT_SECURE)
#else
#define ARM_MAP_BL_RO MAP_REGION_FLAT( \
BL_CODE_BASE, \
BL_CODE_END - BL_CODE_BASE, \
MT_CODE | MT_SECURE)
#endif
#if USE_COHERENT_MEM
#define ARM_MAP_BL_COHERENT_RAM MAP_REGION_FLAT( \
...
...
@@ -261,14 +270,10 @@
#endif
/*
* The number of regions like RO(code), coherent and data required by
* The
max
number of regions like RO(code), coherent and data required by
* different BL stages which need to be mapped in the MMU.
*/
#if USE_COHERENT_MEM
# define ARM_BL_REGIONS 4
#else
# define ARM_BL_REGIONS 3
#endif
#define MAX_MMAP_REGIONS (PLAT_ARM_MMAP_ENTRIES + \
ARM_BL_REGIONS)
...
...
This diff is collapsed.
Click to expand it.
plat/arm/common/arm_bl1_setup.c
View file @
f68bc8a1
...
...
@@ -28,15 +28,26 @@
bl1_tzram_layout.total_base, \
bl1_tzram_layout.total_size, \
MT_MEMORY | MT_RW | MT_SECURE)
#define MAP_BL1_CODE MAP_REGION_FLAT( \
/*
* If SEPARATE_CODE_AND_RODATA=1 we define a region for each section
* otherwise one region is defined containing both
*/
#if SEPARATE_CODE_AND_RODATA
#define MAP_BL1_RO MAP_REGION_FLAT( \
BL_CODE_BASE, \
BL1_CODE_END - BL_CODE_BASE, \
MT_CODE | MT_SECURE)
#define MAP_BL1_RO_DATA
MAP_REGION_FLAT( \
MT_CODE | MT_SECURE)
, \
MAP_REGION_FLAT( \
BL1_RO_DATA_BASE, \
BL1_RO_DATA_END \
- BL_RO_DATA_BASE, \
MT_RO_DATA | MT_SECURE)
#else
#define MAP_BL1_RO MAP_REGION_FLAT( \
BL_CODE_BASE, \
BL1_CODE_END - BL_CODE_BASE, \
MT_CODE | MT_SECURE)
#endif
/* Data structure which holds the extents of the trusted SRAM for BL1*/
static
meminfo_t
bl1_tzram_layout
;
...
...
@@ -105,8 +116,7 @@ void arm_bl1_plat_arch_setup(void)
const
mmap_region_t
bl_regions
[]
=
{
MAP_BL1_TOTAL
,
MAP_BL1_CODE
,
MAP_BL1_RO_DATA
,
MAP_BL1_RO
,
{
0
}
};
...
...
This diff is collapsed.
Click to expand it.
plat/arm/common/arm_bl2_el3_setup.c
View file @
f68bc8a1
...
...
@@ -75,8 +75,7 @@ void arm_bl2_el3_plat_arch_setup(void)
const
mmap_region_t
bl_regions
[]
=
{
MAP_BL2_EL3_TOTAL
,
ARM_MAP_BL_CODE
,
ARM_MAP_BL_RO_DATA
,
ARM_MAP_BL_RO
,
{
0
}
};
...
...
This diff is collapsed.
Click to expand it.
plat/arm/common/arm_bl2_setup.c
View file @
f68bc8a1
...
...
@@ -245,8 +245,7 @@ void arm_bl2_plat_arch_setup(void)
const
mmap_region_t
bl_regions
[]
=
{
MAP_BL2_TOTAL
,
ARM_MAP_BL_CODE
,
ARM_MAP_BL_RO_DATA
,
ARM_MAP_BL_RO
,
{
0
}
};
...
...
This diff is collapsed.
Click to expand it.
plat/arm/common/arm_bl2u_setup.c
View file @
f68bc8a1
...
...
@@ -72,8 +72,7 @@ void arm_bl2u_plat_arch_setup(void)
const
mmap_region_t
bl_regions
[]
=
{
MAP_BL2U_TOTAL
,
ARM_MAP_BL_CODE
,
ARM_MAP_BL_RO_DATA
,
ARM_MAP_BL_RO
,
{
0
}
};
...
...
This diff is collapsed.
Click to expand it.
plat/arm/common/arm_bl31_setup.c
View file @
f68bc8a1
...
...
@@ -287,8 +287,7 @@ void arm_bl31_plat_arch_setup(void)
const
mmap_region_t
bl_regions
[]
=
{
MAP_BL31_TOTAL
,
ARM_MAP_BL_CODE
,
ARM_MAP_BL_RO_DATA
,
ARM_MAP_BL_RO
,
#if USE_COHERENT_MEM
ARM_MAP_BL_COHERENT_RAM
,
#endif
...
...
This diff is collapsed.
Click to expand it.
plat/arm/common/sp_min/arm_sp_min_setup.c
View file @
f68bc8a1
...
...
@@ -203,8 +203,7 @@ void sp_min_plat_arch_setup(void)
{
const
mmap_region_t
bl_regions
[]
=
{
MAP_BL_SP_MIN_TOTAL
,
ARM_MAP_BL_CODE
,
ARM_MAP_BL_RO_DATA
,
ARM_MAP_BL_RO
,
#if USE_COHERENT_MEM
ARM_MAP_BL_COHERENT_RAM
,
#endif
...
...
This diff is collapsed.
Click to expand it.
plat/arm/common/tsp/arm_tsp_setup.c
View file @
f68bc8a1
...
...
@@ -81,8 +81,7 @@ void tsp_plat_arch_setup(void)
const
mmap_region_t
bl_regions
[]
=
{
MAP_BL_TSP_TOTAL
,
ARM_MAP_BL_CODE
,
ARM_MAP_BL_RO_DATA
,
ARM_MAP_BL_RO
,
{
0
}
};
...
...
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