]> git.ipfire.org Git - thirdparty/linux.git/blame - arch/arm64/include/asm/daifflags.h
Merge tag 'hyperv-fixes-signed' of git://git.kernel.org/pub/scm/linux/kernel/git...
[thirdparty/linux.git] / arch / arm64 / include / asm / daifflags.h
CommitLineData
caab277b 1/* SPDX-License-Identifier: GPL-2.0-only */
0fbeb318
JM
2/*
3 * Copyright (C) 2017 ARM Ltd.
0fbeb318
JM
4 */
5#ifndef __ASM_DAIFFLAGS_H
6#define __ASM_DAIFFLAGS_H
7
8#include <linux/irqflags.h>
9
bd82d4bd 10#include <asm/arch_gicv3.h>
8cb7eff3
JT
11#include <asm/cpufeature.h>
12
41bd5b5d
JM
13#define DAIF_PROCCTX 0
14#define DAIF_PROCCTX_NOIRQ PSR_I_BIT
d44f1b8d 15#define DAIF_ERRCTX (PSR_I_BIT | PSR_A_BIT)
b3980e48
MH
16#define DAIF_MASK (PSR_D_BIT | PSR_A_BIT | PSR_I_BIT | PSR_F_BIT)
17
41bd5b5d 18
0fbeb318
JM
19/* mask/save/unmask/restore all exceptions, including interrupts. */
20static inline void local_daif_mask(void)
21{
48ce8f80
JT
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)));
25
0fbeb318
JM
26 asm volatile(
27 "msr daifset, #0xf // local_daif_mask\n"
28 :
29 :
30 : "memory");
bd82d4bd
JT
31
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);
35
0fbeb318
JM
36 trace_hardirqs_off();
37}
38
39static inline unsigned long local_daif_save(void)
40{
41 unsigned long flags;
42
8cb7eff3
JT
43 flags = read_sysreg(daif);
44
45 if (system_uses_irq_prio_masking()) {
46 /* If IRQs are masked with PMR, reflect it in the flags */
bd82d4bd 47 if (read_sysreg_s(SYS_ICC_PMR_EL1) != GIC_PRIO_IRQON)
8cb7eff3
JT
48 flags |= PSR_I_BIT;
49 }
f0569291 50
0fbeb318
JM
51 local_daif_mask();
52
53 return flags;
54}
55
0fbeb318
JM
56static inline void local_daif_restore(unsigned long flags)
57{
8cb7eff3
JT
58 bool irq_disabled = flags & PSR_I_BIT;
59
48ce8f80
JT
60 WARN_ON(system_has_prio_mask_debugging() &&
61 !(read_sysreg(daif) & PSR_I_BIT));
62
8cb7eff3 63 if (!irq_disabled) {
0fbeb318 64 trace_hardirqs_on();
f0569291 65
8cb7eff3 66 if (system_uses_irq_prio_masking()) {
bd82d4bd
JT
67 gic_write_pmr(GIC_PRIO_IRQON);
68 dsb(sy);
69 }
70 } else if (system_uses_irq_prio_masking()) {
71 u64 pmr;
72
73 if (!(flags & PSR_A_BIT)) {
8cb7eff3 74 /*
bd82d4bd
JT
75 * If interrupts are disabled but we can take
76 * asynchronous errors, we can take NMIs
8cb7eff3 77 */
bd82d4bd
JT
78 flags &= ~PSR_I_BIT;
79 pmr = GIC_PRIO_IRQOFF;
80 } else {
81 pmr = GIC_PRIO_IRQON | GIC_PRIO_PSR_I_SET;
8cb7eff3 82 }
bd82d4bd
JT
83
84 /*
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
95 * execution stream
96 *
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.
100 *
101 * So we don't need additional synchronization here.
102 */
103 gic_write_pmr(pmr);
8cb7eff3
JT
104 }
105
106 write_sysreg(flags, daif);
f0569291 107
8cb7eff3 108 if (irq_disabled)
0fbeb318
JM
109 trace_hardirqs_off();
110}
111
112#endif