fvp: skip cpu cluster power-on check
On newer FVP models there is known issue which would report
cluster power-on check with incorrect bits causing this test to
fail.
So skip this test for FVP, the issue is expected to fixed in 11.27
FVP models we could enable it back then.
Change-Id: I7f4e7ba1f4b7473736276958663622a9436fcadb
Signed-off-by: Govindraj Raja <govindraj.raja@arm.com>
(cherry picked from commit 11f6ee85b015635021083db0f494a2c2957566ef)
diff --git a/tftf/tests/runtime_services/standard_service/psci/api_tests/psci_node_hw_state/test_node_hw_state.c b/tftf/tests/runtime_services/standard_service/psci/api_tests/psci_node_hw_state/test_node_hw_state.c
index d39cf5b..0b7cff1 100644
--- a/tftf/tests/runtime_services/standard_service/psci/api_tests/psci_node_hw_state/test_node_hw_state.c
+++ b/tftf/tests/runtime_services/standard_service/psci/api_tests/psci_node_hw_state/test_node_hw_state.c
@@ -86,6 +86,14 @@
*/
static test_result_t test_self_cluster(void)
{
+#if PLAT_fvp
+ /*
+ * Skip this check for fvp plaform due to presence of a known bug
+ * in 11.26-FVP
+ */
+ return TEST_RESULT_SKIPPED;
+#endif
+
if (tftf_psci_node_hw_state(read_mpidr_el1(), 1) != PSCI_HW_STATE_ON) {
DBGMSG("%s: failed\n", __func__);
return TEST_RESULT_FAIL;