1 #ifndef _X86_IRQFLAGS_H_
2 #define _X86_IRQFLAGS_H_
4 #include <asm/processor-flags.h>
11 static inline unsigned long native_save_fl(void)
15 asm volatile("# __raw_save_flags\n\t"
24 static inline void native_restore_fl(unsigned long flags)
26 asm volatile("push %0 ; popf"
32 static inline void native_irq_disable(void)
34 asm volatile("cli": : :"memory");
37 static inline void native_irq_enable(void)
39 asm volatile("sti": : :"memory");
42 static inline void native_safe_halt(void)
44 asm volatile("sti; hlt": : :"memory");
47 static inline void native_halt(void)
49 asm volatile("hlt": : :"memory");
54 #ifdef CONFIG_PARAVIRT
55 #include <asm/paravirt.h>
59 static inline unsigned long __raw_local_save_flags(void)
61 return native_save_fl();
64 static inline void raw_local_irq_restore(unsigned long flags)
66 native_restore_fl(flags);
69 static inline void raw_local_irq_disable(void)
74 static inline void raw_local_irq_enable(void)
80 * Used in the idle loop; sti takes one instruction cycle
83 static inline void raw_safe_halt(void)
89 * Used when interrupts are already enabled or to
90 * shutdown the processor:
92 static inline void halt(void)
100 static inline unsigned long __raw_local_irq_save(void)
102 unsigned long flags = __raw_local_save_flags();
104 raw_local_irq_disable();
110 #define ENABLE_INTERRUPTS(x) sti
111 #define DISABLE_INTERRUPTS(x) cli
114 #define SWAPGS swapgs
116 * Currently paravirt can't handle swapgs nicely when we
117 * don't have a stack we can rely on (such as a user space
118 * stack). So we either find a way around these or just fault
119 * and emulate if a guest tries to call swapgs directly.
121 * Either way, this is a good way to document that we don't
122 * have a reliable stack. x86_64 only.
124 #define SWAPGS_UNSAFE_STACK swapgs
126 #define PARAVIRT_ADJUST_EXCEPTION_FRAME /* */
128 #define INTERRUPT_RETURN iretq
129 #define USERGS_SYSRET64 \
132 #define USERGS_SYSRET32 \
135 #define ENABLE_INTERRUPTS_SYSEXIT32 \
141 #define INTERRUPT_RETURN iret
142 #define ENABLE_INTERRUPTS_SYSEXIT sti; sysexit
143 #define GET_CR0_INTO_EAX movl %cr0, %eax
147 #endif /* __ASSEMBLY__ */
148 #endif /* CONFIG_PARAVIRT */
151 #define raw_local_save_flags(flags) \
152 do { (flags) = __raw_local_save_flags(); } while (0)
154 #define raw_local_irq_save(flags) \
155 do { (flags) = __raw_local_irq_save(); } while (0)
157 static inline int raw_irqs_disabled_flags(unsigned long flags)
159 return !(flags & X86_EFLAGS_IF);
162 static inline int raw_irqs_disabled(void)
164 unsigned long flags = __raw_local_save_flags();
166 return raw_irqs_disabled_flags(flags);
170 * makes the traced hardirq state match with the machine state
172 * should be a rarely used function, only in places where its
173 * otherwise impossible to know the irq state, like in traps.
175 static inline void trace_hardirqs_fixup_flags(unsigned long flags)
177 if (raw_irqs_disabled_flags(flags))
178 trace_hardirqs_off();
183 static inline void trace_hardirqs_fixup(void)
185 unsigned long flags = __raw_local_save_flags();
187 trace_hardirqs_fixup_flags(flags);
193 #define ARCH_LOCKDEP_SYS_EXIT call lockdep_sys_exit_thunk
194 #define ARCH_LOCKDEP_SYS_EXIT_IRQ \
204 #define ARCH_LOCKDEP_SYS_EXIT \
208 call lockdep_sys_exit; \
213 #define ARCH_LOCKDEP_SYS_EXIT_IRQ
216 #ifdef CONFIG_TRACE_IRQFLAGS
217 # define TRACE_IRQS_ON call trace_hardirqs_on_thunk;
218 # define TRACE_IRQS_OFF call trace_hardirqs_off_thunk;
220 # define TRACE_IRQS_ON
221 # define TRACE_IRQS_OFF
223 #ifdef CONFIG_DEBUG_LOCK_ALLOC
224 # define LOCKDEP_SYS_EXIT ARCH_LOCKDEP_SYS_EXIT
225 # define LOCKDEP_SYS_EXIT_IRQ ARCH_LOCKDEP_SYS_EXIT_IRQ
227 # define LOCKDEP_SYS_EXIT
228 # define LOCKDEP_SYS_EXIT_IRQ
231 #endif /* __ASSEMBLY__ */