1 /* MN10300 IRQ flag handling
3 * Copyright (C) 2010 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
12 #ifndef _ASM_IRQFLAGS_H
13 #define _ASM_IRQFLAGS_H
15 #include <asm/cpu-regs.h>
17 #include <linux/smp.h>
22 * - "disabled": run in IM1/2
23 * - level 0 - kernel debugger
24 * - level 1 - virtual serial DMA (if present)
25 * - level 5 - normal interrupt priority
26 * - level 6 - timer interrupt
27 * - "enabled": run in IM7
29 #define MN10300_CLI_LEVEL (CONFIG_LINUX_CLI_LEVEL << EPSW_IM_SHIFT)
33 static inline unsigned long arch_local_save_flags(void)
37 asm volatile("mov epsw,%0" : "=d"(flags
));
41 static inline void arch_local_irq_disable(void)
50 : "i"(~EPSW_IM
), "i"(EPSW_IE
| MN10300_CLI_LEVEL
)
54 static inline unsigned long arch_local_irq_save(void)
58 flags
= arch_local_save_flags();
59 arch_local_irq_disable();
64 * we make sure arch_irq_enable() doesn't cause priority inversion
66 extern unsigned long __mn10300_irq_enabled_epsw
[];
68 static inline void arch_local_irq_enable(void)
71 int cpu
= raw_smp_processor_id();
79 : "i"(~EPSW_IM
), "r"(__mn10300_irq_enabled_epsw
[cpu
])
83 static inline void arch_local_irq_restore(unsigned long flags
)
95 static inline bool arch_irqs_disabled_flags(unsigned long flags
)
97 return (flags
& (EPSW_IE
| EPSW_IM
)) != (EPSW_IE
| EPSW_IM_7
);
100 static inline bool arch_irqs_disabled(void)
102 return arch_irqs_disabled_flags(arch_local_save_flags());
106 * Hook to save power by halting the CPU
107 * - called from the idle loop
108 * - must reenable interrupts (which takes three instruction cycles to complete)
110 static inline void arch_safe_halt(void)
113 arch_local_irq_enable();
121 : "i"(EPSW_IE
|EPSW_IM
), "n"(&CPUM
), "i"(CPUM_SLEEP
)
126 #define __sleep_cpu() \
130 "1: btst %1,(%0)\n" \
133 : "i"(&CPUM), "i"(CPUM_SLEEP) \
138 static inline void arch_local_cli(void)
151 static inline unsigned long arch_local_cli_save(void)
153 unsigned long flags
= arch_local_save_flags();
158 static inline void arch_local_sti(void)
167 static inline void arch_local_change_intr_mask_level(unsigned long level
)
173 : "i"(~EPSW_IM
), "i"(EPSW_IE
| level
)
177 #else /* !__ASSEMBLY__ */
179 #define LOCAL_SAVE_FLAGS(reg) \
182 #define LOCAL_IRQ_DISABLE \
184 or EPSW_IE|MN10300_CLI_LEVEL,epsw; \
189 #define LOCAL_IRQ_ENABLE \
190 or EPSW_IE|EPSW_IM_7,epsw
192 #define LOCAL_IRQ_RESTORE(reg) \
195 #define LOCAL_CLI_SAVE(reg) \
211 #define LOCAL_CHANGE_INTR_MASK_LEVEL(level) \
213 or EPSW_IE|(level),epsw
215 #endif /* __ASSEMBLY__ */
216 #endif /* _ASM_IRQFLAGS_H */