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
6ba5c70d
Commit
6ba5c70d
authored
Jan 20, 2014
by
Jon Medhurst
Committed by
Sandrine Bailleux
Jun 04, 2014
Browse files
juno: Port CCI
Signed-off-by:
Jon Medhurst
<
tixy@linaro.org
>
parent
7d571f3a
Changes
2
Hide whitespace changes
Inline
Side-by-side
plat/juno/bl1_plat_setup.c
View file @
6ba5c70d
...
...
@@ -123,17 +123,12 @@ void bl1_platform_setup(void)
******************************************************************************/
void
bl1_plat_arch_setup
(
void
)
{
unsigned
long
cci_setup
;
/*
* Enable CCI-400 for this cluster. No need
* for locks as no other cpu is active at the
* moment
*/
cci_setup
=
platform_get_cfgvar
(
CONFIG_HAS_CCI
);
if
(
cci_setup
)
{
cci_enable_coherency
(
read_mpidr
());
}
cci_enable_coherency
(
read_mpidr
());
configure_mmu
(
&
bl1_tzram_layout
,
TZROM_BASE
,
...
...
plat/juno/platform.h
View file @
6ba5c70d
...
...
@@ -160,8 +160,8 @@
* CCI-400 related constants
******************************************************************************/
#define CCI400_BASE 0x2c090000
#define CCI400_SL_IFACE_CLUSTER0
3
#define CCI400_SL_IFACE_CLUSTER1
4
#define CCI400_SL_IFACE_CLUSTER0
4
#define CCI400_SL_IFACE_CLUSTER1
3
#define CCI400_SL_IFACE_INDEX(mpidr) (mpidr & MPIDR_CLUSTER_MASK ? \
CCI400_SL_IFACE_CLUSTER1 : \
CCI400_SL_IFACE_CLUSTER0)
...
...
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