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)
16 * Note: this needs to be "=r" not "=rm", because we have the
17 * stack offset from what gcc expects at the time the "pop" is
18 * executed, and so a memory reference with respect to the stack
19 * would end up using the wrong address.
21 asm volatile("# __raw_save_flags\n\t"
30 static inline void native_restore_fl(unsigned long flags
)
32 asm volatile("push %0 ; popf"
38 static inline void native_irq_disable(void)
40 asm volatile("cli": : :"memory");
43 static inline void native_irq_enable(void)
45 asm volatile("sti": : :"memory");
48 static inline void native_safe_halt(void)
50 asm volatile("sti; hlt": : :"memory");
53 static inline void native_halt(void)
55 asm volatile("hlt": : :"memory");
60 #ifdef CONFIG_PARAVIRT
61 #include <asm/paravirt.h>
65 static inline unsigned long __raw_local_save_flags(void)
67 return native_save_fl();
70 static inline void raw_local_irq_restore(unsigned long flags
)
72 native_restore_fl(flags
);
75 static inline void raw_local_irq_disable(void)
80 static inline void raw_local_irq_enable(void)
86 * Used in the idle loop; sti takes one instruction cycle
89 static inline void raw_safe_halt(void)
95 * Used when interrupts are already enabled or to
96 * shutdown the processor:
98 static inline void halt(void)
104 * For spinlocks, etc:
106 static inline unsigned long __raw_local_irq_save(void)
108 unsigned long flags
= __raw_local_save_flags();
110 raw_local_irq_disable();
116 #define ENABLE_INTERRUPTS(x) sti
117 #define DISABLE_INTERRUPTS(x) cli
120 #define SWAPGS swapgs
122 * Currently paravirt can't handle swapgs nicely when we
123 * don't have a stack we can rely on (such as a user space
124 * stack). So we either find a way around these or just fault
125 * and emulate if a guest tries to call swapgs directly.
127 * Either way, this is a good way to document that we don't
128 * have a reliable stack. x86_64 only.
130 #define SWAPGS_UNSAFE_STACK swapgs
132 #define PARAVIRT_ADJUST_EXCEPTION_FRAME /* */
134 #define INTERRUPT_RETURN iretq
135 #define USERGS_SYSRET64 \
138 #define USERGS_SYSRET32 \
141 #define ENABLE_INTERRUPTS_SYSEXIT32 \
147 #define INTERRUPT_RETURN iret
148 #define ENABLE_INTERRUPTS_SYSEXIT sti; sysexit
149 #define GET_CR0_INTO_EAX movl %cr0, %eax
153 #endif /* __ASSEMBLY__ */
154 #endif /* CONFIG_PARAVIRT */
157 #define raw_local_save_flags(flags) \
158 do { (flags) = __raw_local_save_flags(); } while (0)
160 #define raw_local_irq_save(flags) \
161 do { (flags) = __raw_local_irq_save(); } while (0)
163 static inline int raw_irqs_disabled_flags(unsigned long flags
)
165 return !(flags
& X86_EFLAGS_IF
);
168 static inline int raw_irqs_disabled(void)
170 unsigned long flags
= __raw_local_save_flags();
172 return raw_irqs_disabled_flags(flags
);
178 #define ARCH_LOCKDEP_SYS_EXIT call lockdep_sys_exit_thunk
179 #define ARCH_LOCKDEP_SYS_EXIT_IRQ \
189 #define ARCH_LOCKDEP_SYS_EXIT \
193 call lockdep_sys_exit; \
198 #define ARCH_LOCKDEP_SYS_EXIT_IRQ
201 #ifdef CONFIG_TRACE_IRQFLAGS
202 # define TRACE_IRQS_ON call trace_hardirqs_on_thunk;
203 # define TRACE_IRQS_OFF call trace_hardirqs_off_thunk;
205 # define TRACE_IRQS_ON
206 # define TRACE_IRQS_OFF
208 #ifdef CONFIG_DEBUG_LOCK_ALLOC
209 # define LOCKDEP_SYS_EXIT ARCH_LOCKDEP_SYS_EXIT
210 # define LOCKDEP_SYS_EXIT_IRQ ARCH_LOCKDEP_SYS_EXIT_IRQ
212 # define LOCKDEP_SYS_EXIT
213 # define LOCKDEP_SYS_EXIT_IRQ
216 #endif /* __ASSEMBLY__ */