Parse HW features from the SP manifest

Read the "arm,hw-features" node of the SP manifest and add its contents
to the config store. This way the SPMC can pass information about which
HW features are implemented by the core, since the SP itself cannot
discover this info (to read the necessary feature description registers
the exception level must be EL1 or higher).

Signed-off-by: Balint Dobszay <balint.dobszay@arm.com>
Change-Id: I47844189c70e536817d32b674c7253f4f16efd75
diff --git a/components/config/interface/config_store.h b/components/config/interface/config_store.h
index 63f9282..25744cf 100644
--- a/components/config/interface/config_store.h
+++ b/components/config/interface/config_store.h
@@ -34,6 +34,9 @@
 	/* A classifier for a memory region that describes a region of memory */
 	CONFIG_CLASSIFIER_MEMORY_REGION,
 
+	/* A classifier to describe a hardware feature's availability */
+	CONFIG_CLASSIFIER_HW_FEATURE,
+
 	/* A classifier for an opaque configuration blob */
 	CONFIG_CLASSIFIER_BLOB
 };