mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-19 02:54:24 +00:00
Merge "fix(aarch64): make AArch64 FGT feature detection more robust" into integration
This commit is contained in:
commit
e3dcd5078a
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ static inline bool is_armv8_6_twed_present(void)
|
|||
static inline bool is_armv8_6_fgt_present(void)
|
||||
{
|
||||
return ((read_id_aa64mmfr0_el1() >> ID_AA64MMFR0_EL1_FGT_SHIFT) &
|
||||
ID_AA64MMFR0_EL1_FGT_MASK) == ID_AA64MMFR0_EL1_FGT_SUPPORTED;
|
||||
ID_AA64MMFR0_EL1_FGT_MASK) != 0U;
|
||||
}
|
||||
|
||||
static inline unsigned long int get_armv8_6_ecv_support(void)
|
||||
|
|
Loading…
Add table
Reference in a new issue