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
48f4bcd2
Commit
48f4bcd2
authored
7 years ago
by
danh-arm
Committed by
GitHub
7 years ago
Browse files
Options
Download
Plain Diff
Merge pull request #1068 from jenswi-linaro/optee_arm_plat
Optee arm platform common
parents
913c3842
810d9213
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
v1.5
v1.5-rc3
v1.5-rc2
v1.5-rc1
v1.5-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/plat/arm/common/arm_def.h
+11
-9
include/plat/arm/common/arm_def.h
plat/arm/board/fvp/fvp_common.c
+3
-0
plat/arm/board/fvp/fvp_common.c
with
14 additions
and
9 deletions
+14
-9
include/plat/arm/common/arm_def.h
View file @
48f4bcd2
...
...
@@ -97,16 +97,18 @@
#ifdef SPD_opteed
/*
* BL2 needs to map
3.5MB from 512KB offset in
TZC_DRAM1 in order to
* load/authenticate the trusted os extra image. The first 512KB of
TZC_DRAM1
* are reserved for trusted os (OPTEE). The extra image loading
for OPTEE is
* paged image which only include the paging part using
virtual memory but
* without "init" data. OPTEE will copy the "init" data
(from pager image) to
* the first 512KB of TZC_DRAM, and then copy the
extra image behind the "init"
* data.
* BL2 needs to map
4MB at the end of
TZC_DRAM1 in order to
* load/authenticate the trusted os extra image. The first 512KB of
*
TZC_DRAM1
are reserved for trusted os (OPTEE). The extra image loading
*
for OPTEE is
paged image which only include the paging part using
*
virtual memory but
without "init" data. OPTEE will copy the "init" data
*
(from pager image) to
the first 512KB of TZC_DRAM, and then copy the
*
extra image behind the "init"
data.
*/
#define ARM_OPTEE_PAGEABLE_LOAD_BASE (ARM_AP_TZC_DRAM1_BASE + 0x80000)
#define ARM_OPTEE_PAGEABLE_LOAD_SIZE 0x380000
#define ARM_OPTEE_PAGEABLE_LOAD_BASE (ARM_AP_TZC_DRAM1_BASE + \
ARM_AP_TZC_DRAM1_SIZE - \
ARM_OPTEE_PAGEABLE_LOAD_SIZE)
#define ARM_OPTEE_PAGEABLE_LOAD_SIZE 0x400000
#define ARM_OPTEE_PAGEABLE_LOAD_MEM MAP_REGION_FLAT( \
ARM_OPTEE_PAGEABLE_LOAD_BASE, \
ARM_OPTEE_PAGEABLE_LOAD_SIZE, \
...
...
This diff is collapsed.
Click to expand it.
plat/arm/board/fvp/fvp_common.c
View file @
48f4bcd2
...
...
@@ -86,6 +86,9 @@ const mmap_region_t plat_arm_mmap[] = {
#endif
#if ARM_BL31_IN_DRAM
ARM_MAP_BL31_SEC_DRAM
,
#endif
#ifdef SPD_opteed
ARM_OPTEE_PAGEABLE_LOAD_MEM
,
#endif
{
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