Skip to content
GitLab
Menu
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
28441f94
Unverified
Commit
28441f94
authored
Sep 18, 2018
by
Soby Mathew
Committed by
GitHub
Sep 18, 2018
Browse files
Merge pull request #1575 from soby-mathew/sm/fix_cryptocell_mem
ARM platforms: Reintroduce coherent memory for BL1 and BL2
parents
e52ed092
943bb7f8
Changes
3
Hide whitespace changes
Inline
Side-by-side
plat/arm/common/arm_bl1_setup.c
View file @
28441f94
...
...
@@ -111,8 +111,11 @@ void bl1_early_platform_setup(void)
*****************************************************************************/
void
arm_bl1_plat_arch_setup
(
void
)
{
#if USE_COHERENT_MEM
/* ARM platforms dont use coherent memory in BL1 */
#if USE_COHERENT_MEM && !ARM_CRYPTOCELL_INTEG
/*
* Ensure ARM platforms don't use coherent memory in BL1 unless
* cryptocell integration is enabled.
*/
assert
((
BL_COHERENT_RAM_END
-
BL_COHERENT_RAM_BASE
)
==
0U
);
#endif
...
...
@@ -122,7 +125,10 @@ void arm_bl1_plat_arch_setup(void)
#if USE_ROMLIB
ARM_MAP_ROMLIB_CODE
,
ARM_MAP_ROMLIB_DATA
,
#endif
#endif
#if ARM_CRYPTOCELL_INTEG
ARM_MAP_BL_COHERENT_RAM
,
#endif
{
0
}
};
...
...
plat/arm/common/arm_bl2_setup.c
View file @
28441f94
...
...
@@ -237,9 +237,11 @@ void bl2_platform_setup(void)
******************************************************************************/
void
arm_bl2_plat_arch_setup
(
void
)
{
#if USE_COHERENT_MEM
/* Ensure ARM platforms dont use coherent memory in BL2 */
#if USE_COHERENT_MEM && !ARM_CRYPTOCELL_INTEG
/*
* Ensure ARM platforms don't use coherent memory in BL2 unless
* cryptocell integration is enabled.
*/
assert
((
BL_COHERENT_RAM_END
-
BL_COHERENT_RAM_BASE
)
==
0U
);
#endif
...
...
@@ -249,6 +251,9 @@ void arm_bl2_plat_arch_setup(void)
#if USE_ROMLIB
ARM_MAP_ROMLIB_CODE
,
ARM_MAP_ROMLIB_DATA
,
#endif
#if ARM_CRYPTOCELL_INTEG
ARM_MAP_BL_COHERENT_RAM
,
#endif
{
0
}
};
...
...
plat/arm/common/arm_common.mk
View file @
28441f94
...
...
@@ -138,6 +138,14 @@ ARM_CRYPTOCELL_INTEG := 0
$(eval
$(call
assert_boolean,ARM_CRYPTOCELL_INTEG))
$(eval
$(call
add_define,ARM_CRYPTOCELL_INTEG))
# CryptoCell integration relies on coherent buffers for passing data from
# the AP CPU to the CryptoCell
ifeq
(${ARM_CRYPTOCELL_INTEG},1)
ifeq
(${USE_COHERENT_MEM},0)
$(error
"ARM_CRYPTOCELL_INTEG needs USE_COHERENT_MEM to be set."
)
endif
endif
PLAT_INCLUDES
+=
-Iinclude
/common/tbbr
\
-Iinclude
/plat/arm/common
...
...
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