|
@@ -728,6 +728,17 @@ asm(
|
|
asm volatile("msr_s " __stringify(r) ", %x0" : : "rZ" (__val)); \
|
|
asm volatile("msr_s " __stringify(r) ", %x0" : : "rZ" (__val)); \
|
|
} while (0)
|
|
} while (0)
|
|
|
|
|
|
|
|
+/*
|
|
|
|
+ * Modify bits in a sysreg. Bits in the clear mask are zeroed, then bits in the
|
|
|
|
+ * set mask are set. Other bits are left as-is.
|
|
|
|
+ */
|
|
|
|
+#define sysreg_clear_set(sysreg, clear, set) do { \
|
|
|
|
+ u64 __scs_val = read_sysreg(sysreg); \
|
|
|
|
+ u64 __scs_new = (__scs_val & ~(u64)(clear)) | (set); \
|
|
|
|
+ if (__scs_new != __scs_val) \
|
|
|
|
+ write_sysreg(__scs_new, sysreg); \
|
|
|
|
+} while (0)
|
|
|
|
+
|
|
static inline void config_sctlr_el1(u32 clear, u32 set)
|
|
static inline void config_sctlr_el1(u32 clear, u32 set)
|
|
{
|
|
{
|
|
u32 val;
|
|
u32 val;
|