blob: 7ca3eaf3dace99783b7b8f52c7c02adabe2f6475 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Sam Ravnborga439fe52008-07-27 23:00:59 +02002/*
3 * include/asm/irqflags.h
4 *
5 * IRQ flags handling
6 *
7 * This file gets included from lowlevel asm headers too, to provide
8 * wrapped versions of the local_irq_*() APIs, based on the
David Howellsdf9ee292010-10-07 14:08:55 +01009 * arch_local_irq_*() functions from the lowlevel headers.
Sam Ravnborga439fe52008-07-27 23:00:59 +020010 */
11#ifndef _ASM_IRQFLAGS_H
12#define _ASM_IRQFLAGS_H
13
14#ifndef __ASSEMBLY__
15
David Howellsdf9ee292010-10-07 14:08:55 +010016#include <linux/types.h>
David Howellsd550bbd2012-03-28 18:30:03 +010017#include <asm/psr.h>
Sam Ravnborga439fe52008-07-27 23:00:59 +020018
Sam Ravnborgf05a6862014-05-16 23:25:50 +020019void arch_local_irq_restore(unsigned long);
20unsigned long arch_local_irq_save(void);
21void arch_local_irq_enable(void);
David Howellsdf9ee292010-10-07 14:08:55 +010022
Steven Rostedt18d85bc2011-07-06 08:00:29 -070023static inline notrace unsigned long arch_local_save_flags(void)
Sam Ravnborga439fe52008-07-27 23:00:59 +020024{
David Howellsdf9ee292010-10-07 14:08:55 +010025 unsigned long flags;
Sam Ravnborga439fe52008-07-27 23:00:59 +020026
David Howellsdf9ee292010-10-07 14:08:55 +010027 asm volatile("rd %%psr, %0" : "=r" (flags));
28 return flags;
Sam Ravnborga439fe52008-07-27 23:00:59 +020029}
30
Steven Rostedt18d85bc2011-07-06 08:00:29 -070031static inline notrace void arch_local_irq_disable(void)
Sam Ravnborga439fe52008-07-27 23:00:59 +020032{
David Howellsdf9ee292010-10-07 14:08:55 +010033 arch_local_irq_save();
34}
35
Steven Rostedt18d85bc2011-07-06 08:00:29 -070036static inline notrace bool arch_irqs_disabled_flags(unsigned long flags)
David Howellsdf9ee292010-10-07 14:08:55 +010037{
38 return (flags & PSR_PIL) != 0;
39}
40
Steven Rostedt18d85bc2011-07-06 08:00:29 -070041static inline notrace bool arch_irqs_disabled(void)
David Howellsdf9ee292010-10-07 14:08:55 +010042{
43 return arch_irqs_disabled_flags(arch_local_save_flags());
Sam Ravnborga439fe52008-07-27 23:00:59 +020044}
45
46#endif /* (__ASSEMBLY__) */
47
48#endif /* !(_ASM_IRQFLAGS_H) */