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>
10 #ifndef _ASM_IA64_IRQFLAGS_H
11 #define _ASM_IA64_IRQFLAGS_H
15 #ifdef CONFIG_IA64_DEBUG_IRQ
16 extern unsigned long last_cli_ip
;
17 static inline void arch_maybe_save_ip(unsigned long flags
)
19 if (flags
& IA64_PSR_I
)
20 last_cli_ip
= ia64_getreg(_IA64_REG_IP
);
23 #define arch_maybe_save_ip(flags) do {} while (0)
27 * - clearing psr.i is implicitly serialized (visible by next insn)
28 * - setting psr.i requires data serialization
29 * - we need a stop-bit before reading PSR because we sometimes
30 * write a floating-point register right before reading the PSR
31 * and that writes to PSR.mfl
34 static inline unsigned long arch_local_save_flags(void)
37 #ifdef CONFIG_PARAVIRT
38 return ia64_get_psr_i();
40 return ia64_getreg(_IA64_REG_PSR
);
44 static inline unsigned long arch_local_irq_save(void)
46 unsigned long flags
= arch_local_save_flags();
50 arch_maybe_save_ip(flags
);
54 static inline void arch_local_irq_disable(void)
56 #ifdef CONFIG_IA64_DEBUG_IRQ
57 arch_local_irq_save();
64 static inline void arch_local_irq_enable(void)
71 static inline void arch_local_irq_restore(unsigned long flags
)
73 #ifdef CONFIG_IA64_DEBUG_IRQ
74 unsigned long old_psr
= arch_local_save_flags();
76 ia64_intrin_local_irq_restore(flags
& IA64_PSR_I
);
77 arch_maybe_save_ip(old_psr
& ~flags
);
80 static inline bool arch_irqs_disabled_flags(unsigned long flags
)
82 return (flags
& IA64_PSR_I
) == 0;
85 static inline bool arch_irqs_disabled(void)
87 return arch_irqs_disabled_flags(arch_local_save_flags());
90 static inline void arch_safe_halt(void)
92 arch_local_irq_enable();
93 ia64_pal_halt_light(); /* PAL_HALT_LIGHT */
97 #endif /* _ASM_IA64_IRQFLAGS_H */