s390/bpf: Fix skb_copy_bits() parameter passing
[linux/fpc-iii.git] / arch / ia64 / include / asm / irqflags.h
blobcec6c06b52c0fba49a53bb1ee7a925520bf27b9d
1 /*
2 * IRQ flags defines.
4 * Copyright (C) 1998-2003 Hewlett-Packard Co
5 * David Mosberger-Tang <davidm@hpl.hp.com>
6 * Copyright (C) 1999 Asit Mallick <asit.k.mallick@intel.com>
7 * Copyright (C) 1999 Don Dugger <don.dugger@intel.com>
8 */
10 #ifndef _ASM_IA64_IRQFLAGS_H
11 #define _ASM_IA64_IRQFLAGS_H
13 #include <asm/pal.h>
14 #include <asm/kregs.h>
16 #ifdef CONFIG_IA64_DEBUG_IRQ
17 extern unsigned long last_cli_ip;
18 static inline void arch_maybe_save_ip(unsigned long flags)
20 if (flags & IA64_PSR_I)
21 last_cli_ip = ia64_getreg(_IA64_REG_IP);
23 #else
24 #define arch_maybe_save_ip(flags) do {} while (0)
25 #endif
28 * - clearing psr.i is implicitly serialized (visible by next insn)
29 * - setting psr.i requires data serialization
30 * - we need a stop-bit before reading PSR because we sometimes
31 * write a floating-point register right before reading the PSR
32 * and that writes to PSR.mfl
35 static inline unsigned long arch_local_save_flags(void)
37 ia64_stop();
38 #ifdef CONFIG_PARAVIRT
39 return ia64_get_psr_i();
40 #else
41 return ia64_getreg(_IA64_REG_PSR);
42 #endif
45 static inline unsigned long arch_local_irq_save(void)
47 unsigned long flags = arch_local_save_flags();
49 ia64_stop();
50 ia64_rsm(IA64_PSR_I);
51 arch_maybe_save_ip(flags);
52 return flags;
55 static inline void arch_local_irq_disable(void)
57 #ifdef CONFIG_IA64_DEBUG_IRQ
58 arch_local_irq_save();
59 #else
60 ia64_stop();
61 ia64_rsm(IA64_PSR_I);
62 #endif
65 static inline void arch_local_irq_enable(void)
67 ia64_stop();
68 ia64_ssm(IA64_PSR_I);
69 ia64_srlz_d();
72 static inline void arch_local_irq_restore(unsigned long flags)
74 #ifdef CONFIG_IA64_DEBUG_IRQ
75 unsigned long old_psr = arch_local_save_flags();
76 #endif
77 ia64_intrin_local_irq_restore(flags & IA64_PSR_I);
78 arch_maybe_save_ip(old_psr & ~flags);
81 static inline bool arch_irqs_disabled_flags(unsigned long flags)
83 return (flags & IA64_PSR_I) == 0;
86 static inline bool arch_irqs_disabled(void)
88 return arch_irqs_disabled_flags(arch_local_save_flags());
91 static inline void arch_safe_halt(void)
93 arch_local_irq_enable();
94 ia64_pal_halt_light(); /* PAL_HALT_LIGHT */
98 #endif /* _ASM_IA64_IRQFLAGS_H */