We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I saw ACS test_c021.c only checked ID_AA64MMFR1_EL1.HAFDBS[3:0] = 0b0010 as below: /* Read ID_AA64MMFR1_EL1.HAFDBS[3:0] = 0b0010 For Hardware update supported */ data = VAL_EXTRACT_BITS(val_pe_reg_read(ID_AA64MMFR1_EL1), 0, 3); if (data != 2) val_set_status(index, RESULT_FAIL(TEST_NUM, 01)); else val_set_status(index, RESULT_PASS(TEST_NUM, 01)); }
Do you plan to add ID_AA64MMFR1_EL1.HAFDBS[3:0] = 0b0011 to check if PE support dirty bit update + HAFT Table AF update which added in ARM V9.4?
Thanks!
The text was updated successfully, but these errors were encountered:
Fixes ARM-software#488 : PE Test 21
cbfb548
- Test checks for all values >= 0b0010 Signed-off-by: Rajat Goyal <Rajat.Goyal@arm.com>
f04c500
No branches or pull requests
Hi,
I saw ACS test_c021.c only checked ID_AA64MMFR1_EL1.HAFDBS[3:0] = 0b0010 as below:
/* Read ID_AA64MMFR1_EL1.HAFDBS[3:0] = 0b0010 For Hardware update supported */
data = VAL_EXTRACT_BITS(val_pe_reg_read(ID_AA64MMFR1_EL1), 0, 3);
if (data != 2)
val_set_status(index, RESULT_FAIL(TEST_NUM, 01));
else
val_set_status(index, RESULT_PASS(TEST_NUM, 01));
}
Do you plan to add ID_AA64MMFR1_EL1.HAFDBS[3:0] = 0b0011 to check if PE support dirty bit update + HAFT Table AF update which added in ARM V9.4?
Thanks!
The text was updated successfully, but these errors were encountered: