1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2017 ARM Ltd.
5 #ifndef __ASM_DAIFFLAGS_H
6 #define __ASM_DAIFFLAGS_H
8 #include <linux/irqflags.h>
10 #include <asm/arch_gicv3.h>
11 #include <asm/cpufeature.h>
13 #define DAIF_PROCCTX 0
14 #define DAIF_PROCCTX_NOIRQ PSR_I_BIT
15 #define DAIF_ERRCTX (PSR_I_BIT | PSR_A_BIT)
16 #define DAIF_MASK (PSR_D_BIT | PSR_A_BIT | PSR_I_BIT | PSR_F_BIT)
19 /* mask/save/unmask/restore all exceptions, including interrupts. */
20 static inline void local_daif_mask(void)
22 WARN_ON(system_has_prio_mask_debugging() &&
23 (read_sysreg_s(SYS_ICC_PMR_EL1
) == (GIC_PRIO_IRQOFF
|
24 GIC_PRIO_PSR_I_SET
)));
27 "msr daifset, #0xf // local_daif_mask\n"
32 /* Don't really care for a dsb here, we don't intend to enable IRQs */
33 if (system_uses_irq_prio_masking())
34 gic_write_pmr(GIC_PRIO_IRQON
| GIC_PRIO_PSR_I_SET
);
39 static inline unsigned long local_daif_save(void)
43 flags
= read_sysreg(daif
);
45 if (system_uses_irq_prio_masking()) {
46 /* If IRQs are masked with PMR, reflect it in the flags */
47 if (read_sysreg_s(SYS_ICC_PMR_EL1
) != GIC_PRIO_IRQON
)
56 static inline void local_daif_restore(unsigned long flags
)
58 bool irq_disabled
= flags
& PSR_I_BIT
;
60 WARN_ON(system_has_prio_mask_debugging() &&
61 !(read_sysreg(daif
) & PSR_I_BIT
));
66 if (system_uses_irq_prio_masking()) {
67 gic_write_pmr(GIC_PRIO_IRQON
);
70 } else if (system_uses_irq_prio_masking()) {
73 if (!(flags
& PSR_A_BIT
)) {
75 * If interrupts are disabled but we can take
76 * asynchronous errors, we can take NMIs
79 pmr
= GIC_PRIO_IRQOFF
;
81 pmr
= GIC_PRIO_IRQON
| GIC_PRIO_PSR_I_SET
;
85 * There has been concern that the write to daif
86 * might be reordered before this write to PMR.
87 * From the ARM ARM DDI 0487D.a, section D1.7.1
88 * "Accessing PSTATE fields":
89 * Writes to the PSTATE fields have side-effects on
90 * various aspects of the PE operation. All of these
91 * side-effects are guaranteed:
92 * - Not to be visible to earlier instructions in
93 * the execution stream.
94 * - To be visible to later instructions in the
97 * Also, writes to PMR are self-synchronizing, so no
98 * interrupts with a lower priority than PMR is signaled
99 * to the PE after the write.
101 * So we don't need additional synchronization here.
106 write_sysreg(flags
, daif
);
109 trace_hardirqs_off();