@@ -149,6 +149,8 @@ void check_local_cpu_features(void);
bool cpu_supports_mixed_endian_el0(void);
bool system_supports_mixed_endian_el0(void);
+u64 read_system_reg(u32 id);
+
#endif /* __ASSEMBLY__ */
#endif
@@ -593,6 +593,15 @@ void update_cpu_features(int cpu,
update_mixed_endian_el0_support(info);
}
+u64 read_system_reg(u32 id)
+{
+ struct arm64_ftr_reg *regp = get_arm64_sys_reg(id);
+
+ /* We shouldn't get a request for an unsupported register */
+ BUG_ON(!regp);
+ return regp->sys_val;
+}
+
static bool
feature_matches(u64 reg, const struct arm64_cpu_capabilities *entry)
{