WIP FPC-III support
[linux/fpc-iii.git] / arch / microblaze / include / asm / irqflags.h
blob818c6c9f550df5e94d9ec81266460bab857cf7b9
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * Copyright (C) 2006 Atmark Techno, Inc.
4 */
6 #ifndef _ASM_MICROBLAZE_IRQFLAGS_H
7 #define _ASM_MICROBLAZE_IRQFLAGS_H
9 #include <linux/types.h>
10 #include <asm/registers.h>
12 #if CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR
14 static inline notrace unsigned long arch_local_irq_save(void)
16 unsigned long flags;
17 asm volatile(" msrclr %0, %1 \n"
18 " nop \n"
19 : "=r"(flags)
20 : "i"(MSR_IE)
21 : "memory");
22 return flags;
25 static inline notrace void arch_local_irq_disable(void)
27 /* this uses r0 without declaring it - is that correct? */
28 asm volatile(" msrclr r0, %0 \n"
29 " nop \n"
31 : "i"(MSR_IE)
32 : "memory");
35 static inline notrace void arch_local_irq_enable(void)
37 /* this uses r0 without declaring it - is that correct? */
38 asm volatile(" msrset r0, %0 \n"
39 " nop \n"
41 : "i"(MSR_IE)
42 : "memory");
45 #else /* !CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR */
47 static inline notrace unsigned long arch_local_irq_save(void)
49 unsigned long flags, tmp;
50 asm volatile (" mfs %0, rmsr \n"
51 " nop \n"
52 " andi %1, %0, %2 \n"
53 " mts rmsr, %1 \n"
54 " nop \n"
55 : "=r"(flags), "=r"(tmp)
56 : "i"(~MSR_IE)
57 : "memory");
58 return flags;
61 static inline notrace void arch_local_irq_disable(void)
63 unsigned long tmp;
64 asm volatile(" mfs %0, rmsr \n"
65 " nop \n"
66 " andi %0, %0, %1 \n"
67 " mts rmsr, %0 \n"
68 " nop \n"
69 : "=r"(tmp)
70 : "i"(~MSR_IE)
71 : "memory");
74 static inline notrace void arch_local_irq_enable(void)
76 unsigned long tmp;
77 asm volatile(" mfs %0, rmsr \n"
78 " nop \n"
79 " ori %0, %0, %1 \n"
80 " mts rmsr, %0 \n"
81 " nop \n"
82 : "=r"(tmp)
83 : "i"(MSR_IE)
84 : "memory");
87 #endif /* CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR */
89 static inline notrace unsigned long arch_local_save_flags(void)
91 unsigned long flags;
92 asm volatile(" mfs %0, rmsr \n"
93 " nop \n"
94 : "=r"(flags)
96 : "memory");
97 return flags;
100 static inline notrace void arch_local_irq_restore(unsigned long flags)
102 asm volatile(" mts rmsr, %0 \n"
103 " nop \n"
105 : "r"(flags)
106 : "memory");
109 static inline notrace bool arch_irqs_disabled_flags(unsigned long flags)
111 return (flags & MSR_IE) == 0;
114 static inline notrace bool arch_irqs_disabled(void)
116 return arch_irqs_disabled_flags(arch_local_save_flags());
119 #endif /* _ASM_MICROBLAZE_IRQFLAGS_H */