diff options
| author | Philippe Gerum <rpm@xenomai.org> | 2011-03-17 02:16:16 -0400 |
|---|---|---|
| committer | Mike Frysinger <vapier@gentoo.org> | 2011-03-18 04:01:11 -0400 |
| commit | 1353d050facf5efd8dc05ba6c4d7852fcb423b15 (patch) | |
| tree | cc33a181616f96f467b06a9c9a6f0f98bf89f78f | |
| parent | 9169b51f8ce6cd11cd19913b54466ec11e6a12f9 (diff) | |
Blackfin/ipipe: restore pipeline bits in irqflags
This patch fixes the Blackfin irqflags to make them I-pipe aware anew,
after the introduction of the hard_local_irq_*() API.
Signed-off-by: Philippe Gerum <rpm@xenomai.org>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
| -rw-r--r-- | arch/blackfin/include/asm/irqflags.h | 87 |
1 files changed, 77 insertions, 10 deletions
diff --git a/arch/blackfin/include/asm/irqflags.h b/arch/blackfin/include/asm/irqflags.h index 3365cb97f539..b4bbb75a9e15 100644 --- a/arch/blackfin/include/asm/irqflags.h +++ b/arch/blackfin/include/asm/irqflags.h | |||
| @@ -89,15 +89,33 @@ static inline void __hard_local_irq_restore(unsigned long flags) | |||
| 89 | #ifdef CONFIG_IPIPE | 89 | #ifdef CONFIG_IPIPE |
| 90 | 90 | ||
| 91 | #include <linux/compiler.h> | 91 | #include <linux/compiler.h> |
| 92 | #include <linux/ipipe_base.h> | ||
| 93 | #include <linux/ipipe_trace.h> | 92 | #include <linux/ipipe_trace.h> |
| 93 | /* | ||
| 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 | */ | ||
| 98 | void __ipipe_stall_root(void); | ||
| 99 | void __ipipe_unstall_root(void); | ||
| 100 | unsigned long __ipipe_test_root(void); | ||
| 101 | unsigned long __ipipe_test_and_stall_root(void); | ||
| 102 | void __ipipe_restore_root(unsigned long flags); | ||
| 103 | |||
| 104 | #ifdef CONFIG_IPIPE_DEBUG_CONTEXT | ||
| 105 | struct ipipe_domain; | ||
| 106 | extern struct ipipe_domain ipipe_root; | ||
| 107 | void 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 */ | ||
| 94 | 112 | ||
| 95 | /* | 113 | /* |
| 96 | * Interrupt pipe interface to linux/irqflags.h. | 114 | * Interrupt pipe interface to linux/irqflags.h. |
| 97 | */ | 115 | */ |
| 98 | static inline void arch_local_irq_disable(void) | 116 | static inline void arch_local_irq_disable(void) |
| 99 | { | 117 | { |
| 100 | ipipe_check_context(ipipe_root_domain); | 118 | __check_irqop_context(); |
| 101 | __ipipe_stall_root(); | 119 | __ipipe_stall_root(); |
| 102 | barrier(); | 120 | barrier(); |
| 103 | } | 121 | } |
| @@ -105,7 +123,7 @@ static inline void arch_local_irq_disable(void) | |||
| 105 | static inline void arch_local_irq_enable(void) | 123 | static inline void arch_local_irq_enable(void) |
| 106 | { | 124 | { |
| 107 | barrier(); | 125 | barrier(); |
| 108 | ipipe_check_context(ipipe_root_domain); | 126 | __check_irqop_context(); |
| 109 | __ipipe_unstall_root(); | 127 | __ipipe_unstall_root(); |
| 110 | } | 128 | } |
| 111 | 129 | ||
| @@ -119,16 +137,21 @@ static inline int arch_irqs_disabled_flags(unsigned long flags) | |||
| 119 | return flags == bfin_no_irqs; | 137 | return flags == bfin_no_irqs; |
| 120 | } | 138 | } |
| 121 | 139 | ||
| 122 | static inline void arch_local_irq_save_ptr(unsigned long *_flags) | 140 | static inline unsigned long arch_local_irq_save(void) |
| 123 | { | 141 | { |
| 124 | x = __ipipe_test_and_stall_root() ? bfin_no_irqs : bfin_irq_flags; | 142 | unsigned long flags; |
| 143 | |||
| 144 | __check_irqop_context(); | ||
| 145 | flags = __ipipe_test_and_stall_root() ? bfin_no_irqs : bfin_irq_flags; | ||
| 125 | barrier(); | 146 | barrier(); |
| 147 | |||
| 148 | return flags; | ||
| 126 | } | 149 | } |
| 127 | 150 | ||
| 128 | static inline unsigned long arch_local_irq_save(void) | 151 | static inline void arch_local_irq_restore(unsigned long flags) |
| 129 | { | 152 | { |
| 130 | ipipe_check_context(ipipe_root_domain); | 153 | __check_irqop_context(); |
| 131 | return __hard_local_irq_save(); | 154 | __ipipe_restore_root(flags == bfin_no_irqs); |
| 132 | } | 155 | } |
| 133 | 156 | ||
| 134 | static inline unsigned long arch_mangle_irq_bits(int virt, unsigned long real) | 157 | static inline unsigned long arch_mangle_irq_bits(int virt, unsigned long real) |
| @@ -192,7 +215,10 @@ static inline void hard_local_irq_restore(unsigned long flags) | |||
| 192 | # define hard_local_irq_restore(flags) __hard_local_irq_restore(flags) | 215 | # define hard_local_irq_restore(flags) __hard_local_irq_restore(flags) |
| 193 | #endif /* !CONFIG_IPIPE_TRACE_IRQSOFF */ | 216 | #endif /* !CONFIG_IPIPE_TRACE_IRQSOFF */ |
| 194 | 217 | ||
| 195 | #else /* CONFIG_IPIPE */ | 218 | #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 */ | ||
| 196 | 222 | ||
| 197 | /* | 223 | /* |
| 198 | * Direct interface to linux/irqflags.h. | 224 | * Direct interface to linux/irqflags.h. |
| @@ -212,7 +238,48 @@ static inline void hard_local_irq_restore(unsigned long flags) | |||
| 212 | #define hard_local_irq_restore(flags) __hard_local_irq_restore(flags) | 238 | #define hard_local_irq_restore(flags) __hard_local_irq_restore(flags) |
| 213 | #define hard_local_irq_enable() __hard_local_irq_enable() | 239 | #define hard_local_irq_enable() __hard_local_irq_enable() |
| 214 | #define hard_local_irq_disable() __hard_local_irq_disable() | 240 | #define hard_local_irq_disable() __hard_local_irq_disable() |
| 215 | 241 | #define hard_local_irq_save_cond() hard_local_save_flags() | |
| 242 | #define hard_local_irq_restore_cond(flags) do { (void)(flags); } while (0) | ||
| 216 | 243 | ||
| 217 | #endif /* !CONFIG_IPIPE */ | 244 | #endif /* !CONFIG_IPIPE */ |
| 245 | |||
| 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 | |||
| 218 | #endif | 285 | #endif |
