xfs: XFS_IS_REALTIME_INODE() should be false if no rt device present
[linux/fpc-iii.git] / arch / arc / include / asm / irqflags-arcv2.h
blob68b6092349d7e2ac41d5375613bbd84872eb2d90
1 /*
2 * Copyright (C) 2014-15 Synopsys, Inc. (www.synopsys.com)
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
9 #ifndef __ASM_IRQFLAGS_ARCV2_H
10 #define __ASM_IRQFLAGS_ARCV2_H
12 #include <asm/arcregs.h>
14 /* status32 Bits */
15 #define STATUS_AD_BIT 19 /* Disable Align chk: core supports non-aligned */
16 #define STATUS_IE_BIT 31
18 #define STATUS_AD_MASK (1<<STATUS_AD_BIT)
19 #define STATUS_IE_MASK (1<<STATUS_IE_BIT)
21 #define AUX_USER_SP 0x00D
22 #define AUX_IRQ_CTRL 0x00E
23 #define AUX_IRQ_ACT 0x043 /* Active Intr across all levels */
24 #define AUX_IRQ_LVL_PEND 0x200 /* Pending Intr across all levels */
25 #define AUX_IRQ_HINT 0x201 /* For generating Soft Interrupts */
26 #define AUX_IRQ_PRIORITY 0x206
27 #define ICAUSE 0x40a
28 #define AUX_IRQ_SELECT 0x40b
29 #define AUX_IRQ_ENABLE 0x40c
31 /* Was Intr taken in User Mode */
32 #define AUX_IRQ_ACT_BIT_U 31
34 /* 0 is highest level, but taken by FIRQs, if present in design */
35 #define ARCV2_IRQ_DEF_PRIO 0
37 /* seed value for status register */
38 #define ISA_INIT_STATUS_BITS (STATUS_IE_MASK | STATUS_AD_MASK | \
39 (ARCV2_IRQ_DEF_PRIO << 1))
41 /* SLEEP needs default irq priority (<=) which can interrupt the doze */
42 #define ISA_SLEEP_ARG (0x10 | ARCV2_IRQ_DEF_PRIO)
44 #ifndef __ASSEMBLY__
47 * Save IRQ state and disable IRQs
49 static inline long arch_local_irq_save(void)
51 unsigned long flags;
53 __asm__ __volatile__(" clri %0 \n" : "=r" (flags) : : "memory");
55 return flags;
59 * restore saved IRQ state
61 static inline void arch_local_irq_restore(unsigned long flags)
63 __asm__ __volatile__(" seti %0 \n" : : "r" (flags) : "memory");
67 * Unconditionally Enable IRQs
69 static inline void arch_local_irq_enable(void)
71 unsigned int irqact = read_aux_reg(AUX_IRQ_ACT);
73 if (irqact & 0xffff)
74 write_aux_reg(AUX_IRQ_ACT, irqact & ~0xffff);
76 __asm__ __volatile__(" seti \n" : : : "memory");
80 * Unconditionally Disable IRQs
82 static inline void arch_local_irq_disable(void)
84 __asm__ __volatile__(" clri \n" : : : "memory");
88 * save IRQ state
90 static inline long arch_local_save_flags(void)
92 unsigned long temp;
94 __asm__ __volatile__(
95 " lr %0, [status32] \n"
96 : "=&r"(temp)
98 : "memory");
100 return temp;
104 * Query IRQ state
106 static inline int arch_irqs_disabled_flags(unsigned long flags)
108 return !(flags & (STATUS_IE_MASK));
111 static inline int arch_irqs_disabled(void)
113 return arch_irqs_disabled_flags(arch_local_save_flags());
116 static inline void arc_softirq_trigger(int irq)
118 write_aux_reg(AUX_IRQ_HINT, irq);
121 static inline void arc_softirq_clear(int irq)
123 write_aux_reg(AUX_IRQ_HINT, 0);
126 #else
128 .macro IRQ_DISABLE scratch
129 clri
130 .endm
132 .macro IRQ_ENABLE scratch
133 seti
134 .endm
136 #endif /* __ASSEMBLY__ */
138 #endif