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
afb33432
Commit
afb33432
authored
Aug 25, 2017
by
davidcunado-arm
Committed by
GitHub
Aug 25, 2017
Browse files
Merge pull request #1064 from islmit01/im/shifted_afinity
FVP: Always assume shifted affinity with MT bit
parents
01ebe3d2
8431635b
Changes
1
Hide whitespace changes
Inline
Side-by-side
plat/arm/board/fvp/fvp_common.c
View file @
afb33432
...
...
@@ -219,8 +219,7 @@ void fvp_config_setup(void)
arm_config
.
flags
|=
ARM_CONFIG_FVP_HAS_CCI400
;
break
;
case
REV_BASE_FVP_REVC
:
arm_config
.
flags
|=
(
ARM_CONFIG_FVP_SHIFTED_AFF
|
ARM_CONFIG_FVP_HAS_SMMUV3
|
arm_config
.
flags
|=
(
ARM_CONFIG_FVP_HAS_SMMUV3
|
ARM_CONFIG_FVP_HAS_CCI5XX
);
break
;
default:
...
...
@@ -232,6 +231,14 @@ void fvp_config_setup(void)
ERROR
(
"Unsupported board HBI number 0x%x
\n
"
,
hbi
);
panic
();
}
/*
* We assume that the presence of MT bit, and therefore shifted
* affinities, is uniform across the platform: either all CPUs, or no
* CPUs implement it.
*/
if
(
read_mpidr_el1
()
&
MPIDR_MT_MASK
)
arm_config
.
flags
|=
ARM_CONFIG_FVP_SHIFTED_AFF
;
}
...
...
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