blob: b4bbb75a9e15a2483358a59599ca0eb677defc73 [file] [log] [blame]
Mike Frysinger8f860012009-06-08 12:49:48 -04001/*
2 * interface to Blackfin CEC
3 *
4 * Copyright 2009 Analog Devices Inc.
5 * Licensed under the GPL-2 or later.
6 */
7
8#ifndef __ASM_BFIN_IRQFLAGS_H__
9#define __ASM_BFIN_IRQFLAGS_H__
10
David Howells5c748742010-10-07 14:08:51 +010011#include <mach/blackfin.h>
12
Mike Frysinger8f860012009-06-08 12:49:48 -040013#ifdef CONFIG_SMP
14# include <asm/pda.h>
15# include <asm/processor.h>
Mike Frysinger8f860012009-06-08 12:49:48 -040016# define bfin_irq_flags cpu_pda[blackfin_core_id()].imask
17#else
18extern unsigned long bfin_irq_flags;
19#endif
20
21static inline void bfin_sti(unsigned long flags)
22{
23 asm volatile("sti %0;" : : "d" (flags));
24}
25
26static inline unsigned long bfin_cli(void)
27{
28 unsigned long flags;
29 asm volatile("cli %0;" : "=d" (flags));
30 return flags;
31}
32
Philippe Gerum06ecc192009-06-16 05:25:37 +020033#ifdef CONFIG_DEBUG_HWERR
34# define bfin_no_irqs 0x3f
35#else
36# define bfin_no_irqs 0x1f
37#endif
38
David Howells3b139cd2010-10-07 14:08:52 +010039/*****************************************************************************/
40/*
41 * Hard, untraced CPU interrupt flag manipulation and access.
42 */
43static inline void __hard_local_irq_disable(void)
44{
45 bfin_cli();
46}
Philippe Gerum06ecc192009-06-16 05:25:37 +020047
David Howells3b139cd2010-10-07 14:08:52 +010048static inline void __hard_local_irq_enable(void)
49{
50 bfin_sti(bfin_irq_flags);
51}
Philippe Gerum06ecc192009-06-16 05:25:37 +020052
David Howells3b139cd2010-10-07 14:08:52 +010053static inline unsigned long hard_local_save_flags(void)
54{
55 return bfin_read_IMASK();
56}
Philippe Gerum06ecc192009-06-16 05:25:37 +020057
David Howells3b139cd2010-10-07 14:08:52 +010058static inline unsigned long __hard_local_irq_save(void)
59{
60 unsigned long flags;
61 flags = bfin_cli();
62#ifdef CONFIG_DEBUG_HWERR
63 bfin_sti(0x3f);
64#endif
65 return flags;
66}
Philippe Gerum06ecc192009-06-16 05:25:37 +020067
David Howells3b139cd2010-10-07 14:08:52 +010068static inline int hard_irqs_disabled_flags(unsigned long flags)
69{
70 return (flags & ~0x3f) == 0;
71}
Philippe Gerum06ecc192009-06-16 05:25:37 +020072
David Howells3b139cd2010-10-07 14:08:52 +010073static inline int hard_irqs_disabled(void)
74{
75 unsigned long flags = hard_local_save_flags();
76 return hard_irqs_disabled_flags(flags);
77}
Philippe Gerum06ecc192009-06-16 05:25:37 +020078
David Howells3b139cd2010-10-07 14:08:52 +010079static inline void __hard_local_irq_restore(unsigned long flags)
80{
81 if (!hard_irqs_disabled_flags(flags))
82 __hard_local_irq_enable();
83}
Philippe Gerum06ecc192009-06-16 05:25:37 +020084
David Howells3b139cd2010-10-07 14:08:52 +010085/*****************************************************************************/
86/*
87 * Interrupt pipe handling.
88 */
89#ifdef CONFIG_IPIPE
90
91#include <linux/compiler.h>
David Howells3b139cd2010-10-07 14:08:52 +010092#include <linux/ipipe_trace.h>
Philippe Gerum1353d052011-03-17 02:16:16 -040093/*
94 * Way too many inter-deps between low-level headers in this port, so
95 * we redeclare the required bits we cannot pick from
96 * <asm/ipipe_base.h> to prevent circular dependencies.
97 */
98void __ipipe_stall_root(void);
99void __ipipe_unstall_root(void);
100unsigned long __ipipe_test_root(void);
101unsigned long __ipipe_test_and_stall_root(void);
102void __ipipe_restore_root(unsigned long flags);
103
104#ifdef CONFIG_IPIPE_DEBUG_CONTEXT
105struct ipipe_domain;
106extern struct ipipe_domain ipipe_root;
107void ipipe_check_context(struct ipipe_domain *ipd);
108#define __check_irqop_context(ipd) ipipe_check_context(&ipipe_root)
109#else /* !CONFIG_IPIPE_DEBUG_CONTEXT */
110#define __check_irqop_context(ipd) do { } while (0)
111#endif /* !CONFIG_IPIPE_DEBUG_CONTEXT */
David Howells3b139cd2010-10-07 14:08:52 +0100112
113/*
114 * Interrupt pipe interface to linux/irqflags.h.
115 */
116static inline void arch_local_irq_disable(void)
117{
Philippe Gerum1353d052011-03-17 02:16:16 -0400118 __check_irqop_context();
David Howells3b139cd2010-10-07 14:08:52 +0100119 __ipipe_stall_root();
120 barrier();
121}
122
123static inline void arch_local_irq_enable(void)
124{
125 barrier();
Philippe Gerum1353d052011-03-17 02:16:16 -0400126 __check_irqop_context();
David Howells3b139cd2010-10-07 14:08:52 +0100127 __ipipe_unstall_root();
128}
129
130static inline unsigned long arch_local_save_flags(void)
131{
132 return __ipipe_test_root() ? bfin_no_irqs : bfin_irq_flags;
133}
134
135static inline int arch_irqs_disabled_flags(unsigned long flags)
136{
137 return flags == bfin_no_irqs;
138}
139
David Howells3b139cd2010-10-07 14:08:52 +0100140static inline unsigned long arch_local_irq_save(void)
141{
Philippe Gerum1353d052011-03-17 02:16:16 -0400142 unsigned long flags;
143
144 __check_irqop_context();
145 flags = __ipipe_test_and_stall_root() ? bfin_no_irqs : bfin_irq_flags;
146 barrier();
147
148 return flags;
149}
150
151static inline void arch_local_irq_restore(unsigned long flags)
152{
153 __check_irqop_context();
154 __ipipe_restore_root(flags == bfin_no_irqs);
David Howells3b139cd2010-10-07 14:08:52 +0100155}
156
157static inline unsigned long arch_mangle_irq_bits(int virt, unsigned long real)
Philippe Gerum06ecc192009-06-16 05:25:37 +0200158{
159 /*
160 * Merge virtual and real interrupt mask bits into a single
161 * 32bit word.
162 */
163 return (real & ~(1 << 31)) | ((virt != 0) << 31);
164}
165
David Howells3b139cd2010-10-07 14:08:52 +0100166static inline int arch_demangle_irq_bits(unsigned long *x)
Philippe Gerum06ecc192009-06-16 05:25:37 +0200167{
168 int virt = (*x & (1 << 31)) != 0;
169 *x &= ~(1L << 31);
170 return virt;
171}
172
David Howells3b139cd2010-10-07 14:08:52 +0100173/*
174 * Interface to various arch routines that may be traced.
175 */
Philippe Gerum06ecc192009-06-16 05:25:37 +0200176#ifdef CONFIG_IPIPE_TRACE_IRQSOFF
David Howells3b139cd2010-10-07 14:08:52 +0100177static inline void hard_local_irq_disable(void)
178{
179 if (!hard_irqs_disabled()) {
180 __hard_local_irq_disable();
181 ipipe_trace_begin(0x80000000);
182 }
183}
184
185static inline void hard_local_irq_enable(void)
186{
187 if (hard_irqs_disabled()) {
188 ipipe_trace_end(0x80000000);
189 __hard_local_irq_enable();
190 }
191}
192
193static inline unsigned long hard_local_irq_save(void)
194{
195 unsigned long flags = hard_local_save_flags();
196 if (!hard_irqs_disabled_flags(flags)) {
197 __hard_local_irq_disable();
198 ipipe_trace_begin(0x80000001);
199 }
200 return flags;
201}
202
203static inline void hard_local_irq_restore(unsigned long flags)
204{
205 if (!hard_irqs_disabled_flags(flags)) {
206 ipipe_trace_end(0x80000001);
207 __hard_local_irq_enable();
208 }
209}
210
Philippe Gerum06ecc192009-06-16 05:25:37 +0200211#else /* !CONFIG_IPIPE_TRACE_IRQSOFF */
David Howells3b139cd2010-10-07 14:08:52 +0100212# define hard_local_irq_disable() __hard_local_irq_disable()
213# define hard_local_irq_enable() __hard_local_irq_enable()
214# define hard_local_irq_save() __hard_local_irq_save()
215# define hard_local_irq_restore(flags) __hard_local_irq_restore(flags)
Philippe Gerum06ecc192009-06-16 05:25:37 +0200216#endif /* !CONFIG_IPIPE_TRACE_IRQSOFF */
217
Philippe Gerum1353d052011-03-17 02:16:16 -0400218#define hard_local_irq_save_cond() hard_local_irq_save()
219#define hard_local_irq_restore_cond(flags) hard_local_irq_restore(flags)
220
221#else /* !CONFIG_IPIPE */
Philippe Gerum06ecc192009-06-16 05:25:37 +0200222
David Howells3b139cd2010-10-07 14:08:52 +0100223/*
224 * Direct interface to linux/irqflags.h.
225 */
226#define arch_local_save_flags() hard_local_save_flags()
227#define arch_local_irq_save(flags) __hard_local_irq_save()
228#define arch_local_irq_restore(flags) __hard_local_irq_restore(flags)
229#define arch_local_irq_enable() __hard_local_irq_enable()
230#define arch_local_irq_disable() __hard_local_irq_disable()
231#define arch_irqs_disabled_flags(flags) hard_irqs_disabled_flags(flags)
232#define arch_irqs_disabled() hard_irqs_disabled()
Mike Frysinger8f860012009-06-08 12:49:48 -0400233
David Howells3b139cd2010-10-07 14:08:52 +0100234/*
235 * Interface to various arch routines that may be traced.
236 */
237#define hard_local_irq_save() __hard_local_irq_save()
238#define hard_local_irq_restore(flags) __hard_local_irq_restore(flags)
239#define hard_local_irq_enable() __hard_local_irq_enable()
240#define hard_local_irq_disable() __hard_local_irq_disable()
Philippe Gerum1353d052011-03-17 02:16:16 -0400241#define hard_local_irq_save_cond() hard_local_save_flags()
242#define hard_local_irq_restore_cond(flags) do { (void)(flags); } while (0)
Philippe Gerum06ecc192009-06-16 05:25:37 +0200243
244#endif /* !CONFIG_IPIPE */
Philippe Gerum1353d052011-03-17 02:16:16 -0400245
246#ifdef CONFIG_SMP
247#define hard_local_irq_save_smp() hard_local_irq_save()
248#define hard_local_irq_restore_smp(flags) hard_local_irq_restore(flags)
249#else
250#define hard_local_irq_save_smp() hard_local_save_flags()
251#define hard_local_irq_restore_smp(flags) do { (void)(flags); } while (0)
252#endif
253
254/*
255 * Remap the arch-neutral IRQ state manipulation macros to the
256 * blackfin-specific hard_local_irq_* API.
257 */
258#define local_irq_save_hw(flags) \
259 do { \
260 (flags) = hard_local_irq_save(); \
261 } while (0)
262#define local_irq_restore_hw(flags) \
263 do { \
264 hard_local_irq_restore(flags); \
265 } while (0)
266#define local_irq_disable_hw() \
267 do { \
268 hard_local_irq_disable(); \
269 } while (0)
270#define local_irq_enable_hw() \
271 do { \
272 hard_local_irq_enable(); \
273 } while (0)
274#define local_irq_save_hw_notrace(flags) \
275 do { \
276 (flags) = __hard_local_irq_save(); \
277 } while (0)
278#define local_irq_restore_hw_notrace(flags) \
279 do { \
280 __hard_local_irq_restore(flags); \
281 } while (0)
282
283#define irqs_disabled_hw() hard_irqs_disabled()
284
Mike Frysinger8f860012009-06-08 12:49:48 -0400285#endif