target/cxgbit: Use T6 specific macros to get ETH/IP hdr len
[linux/fpc-iii.git] / arch / mn10300 / include / asm / irqflags.h
blob8730c0a3c37d222630da2eba69525a084da59c70
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>
16 /* linux/smp.h <- linux/irqflags.h needs asm/smp.h first */
17 #include <asm/smp.h>
20 * interrupt control
21 * - "disabled": run in IM1/2
22 * - level 0 - kernel debugger
23 * - level 1 - virtual serial DMA (if present)
24 * - level 5 - normal interrupt priority
25 * - level 6 - timer interrupt
26 * - "enabled": run in IM7
28 #define MN10300_CLI_LEVEL (CONFIG_LINUX_CLI_LEVEL << EPSW_IM_SHIFT)
30 #ifndef __ASSEMBLY__
32 static inline unsigned long arch_local_save_flags(void)
34 unsigned long flags;
36 asm volatile("mov epsw,%0" : "=d"(flags));
37 return flags;
40 static inline void arch_local_irq_disable(void)
42 asm volatile(
43 " and %0,epsw \n"
44 " or %1,epsw \n"
45 " nop \n"
46 " nop \n"
47 " nop \n"
49 : "i"(~EPSW_IM), "i"(EPSW_IE | MN10300_CLI_LEVEL)
50 : "memory");
53 static inline unsigned long arch_local_irq_save(void)
55 unsigned long flags;
57 flags = arch_local_save_flags();
58 arch_local_irq_disable();
59 return flags;
63 * we make sure arch_irq_enable() doesn't cause priority inversion
65 extern unsigned long __mn10300_irq_enabled_epsw[];
67 static inline void arch_local_irq_enable(void)
69 unsigned long tmp;
70 int cpu = raw_smp_processor_id();
72 asm volatile(
73 " mov epsw,%0 \n"
74 " and %1,%0 \n"
75 " or %2,%0 \n"
76 " mov %0,epsw \n"
77 : "=&d"(tmp)
78 : "i"(~EPSW_IM), "r"(__mn10300_irq_enabled_epsw[cpu])
79 : "memory", "cc");
82 static inline void arch_local_irq_restore(unsigned long flags)
84 asm volatile(
85 " mov %0,epsw \n"
86 " nop \n"
87 " nop \n"
88 " nop \n"
90 : "d"(flags)
91 : "memory", "cc");
94 static inline bool arch_irqs_disabled_flags(unsigned long flags)
96 return (flags & (EPSW_IE | EPSW_IM)) != (EPSW_IE | EPSW_IM_7);
99 static inline bool arch_irqs_disabled(void)
101 return arch_irqs_disabled_flags(arch_local_save_flags());
105 * Hook to save power by halting the CPU
106 * - called from the idle loop
107 * - must reenable interrupts (which takes three instruction cycles to complete)
109 static inline void arch_safe_halt(void)
111 #ifdef CONFIG_SMP
112 arch_local_irq_enable();
113 #else
114 asm volatile(
115 " or %0,epsw \n"
116 " nop \n"
117 " nop \n"
118 " bset %2,(%1) \n"
120 : "i"(EPSW_IE|EPSW_IM), "n"(&CPUM), "i"(CPUM_SLEEP)
121 : "cc");
122 #endif
125 #define __sleep_cpu() \
126 do { \
127 asm volatile( \
128 " bset %1,(%0)\n" \
129 "1: btst %1,(%0)\n" \
130 " bne 1b\n" \
132 : "i"(&CPUM), "i"(CPUM_SLEEP) \
133 : "cc" \
134 ); \
135 } while (0)
137 static inline void arch_local_cli(void)
139 asm volatile(
140 " and %0,epsw \n"
141 " nop \n"
142 " nop \n"
143 " nop \n"
145 : "i"(~EPSW_IE)
146 : "memory"
150 static inline unsigned long arch_local_cli_save(void)
152 unsigned long flags = arch_local_save_flags();
153 arch_local_cli();
154 return flags;
157 static inline void arch_local_sti(void)
159 asm volatile(
160 " or %0,epsw \n"
162 : "i"(EPSW_IE)
163 : "memory");
166 static inline void arch_local_change_intr_mask_level(unsigned long level)
168 asm volatile(
169 " and %0,epsw \n"
170 " or %1,epsw \n"
172 : "i"(~EPSW_IM), "i"(EPSW_IE | level)
173 : "cc", "memory");
176 #else /* !__ASSEMBLY__ */
178 #define LOCAL_SAVE_FLAGS(reg) \
179 mov epsw,reg
181 #define LOCAL_IRQ_DISABLE \
182 and ~EPSW_IM,epsw; \
183 or EPSW_IE|MN10300_CLI_LEVEL,epsw; \
184 nop; \
185 nop; \
188 #define LOCAL_IRQ_ENABLE \
189 or EPSW_IE|EPSW_IM_7,epsw
191 #define LOCAL_IRQ_RESTORE(reg) \
192 mov reg,epsw
194 #define LOCAL_CLI_SAVE(reg) \
195 mov epsw,reg; \
196 and ~EPSW_IE,epsw; \
197 nop; \
198 nop; \
201 #define LOCAL_CLI \
202 and ~EPSW_IE,epsw; \
203 nop; \
204 nop; \
207 #define LOCAL_STI \
208 or EPSW_IE,epsw
210 #define LOCAL_CHANGE_INTR_MASK_LEVEL(level) \
211 and ~EPSW_IM,epsw; \
212 or EPSW_IE|(level),epsw
214 #endif /* __ASSEMBLY__ */
215 #endif /* _ASM_IRQFLAGS_H */