2 * include/asm-blackfin/ipipe.h
4 * Copyright (C) 2002-2007 Philippe Gerum.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, Inc., 675 Mass Ave, Cambridge MA 02139,
9 * USA; either version 2 of the License, or (at your option) any later
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 #ifndef __ASM_BLACKFIN_IPIPE_H
23 #define __ASM_BLACKFIN_IPIPE_H
27 #include <linux/cpumask.h>
28 #include <linux/list.h>
29 #include <linux/threads.h>
30 #include <linux/irq.h>
31 #include <linux/ipipe_percpu.h>
32 #include <asm/ptrace.h>
34 #include <asm/bitops.h>
35 #include <asm/atomic.h>
36 #include <asm/traps.h>
38 #define IPIPE_ARCH_STRING "1.9-00"
39 #define IPIPE_MAJOR_NUMBER 1
40 #define IPIPE_MINOR_NUMBER 9
41 #define IPIPE_PATCH_NUMBER 0
44 #error "I-pipe/blackfin: SMP not implemented"
45 #else /* !CONFIG_SMP */
46 #define ipipe_processor_id() 0
47 #endif /* CONFIG_SMP */
49 #define prepare_arch_switch(next) \
51 ipipe_schedule_notify(current, next); \
52 local_irq_disable_hw(); \
55 #define task_hijacked(p) \
57 int __x__ = ipipe_current_domain != ipipe_root_domain; \
58 /* We would need to clear the SYNC flag for the root domain */ \
59 /* over the current processor in SMP mode. */ \
60 local_irq_enable_hw(); __x__; \
65 struct ipipe_sysinfo
{
67 int ncpus
; /* Number of CPUs on board */
68 u64 cpufreq
; /* CPU frequency (in Hz) */
70 /* Arch-dependent block */
73 unsigned tmirq
; /* Timer tick IRQ */
74 u64 tmfreq
; /* Timer frequency */
78 #define ipipe_read_tsc(t) \
80 unsigned long __cy2; \
81 __asm__ __volatile__ ("1: %0 = CYCLES2\n" \
86 : "=d,a" (((unsigned long *)&t)[1]), \
87 "=d,a" (((unsigned long *)&t)[0]), \
89 : /*no input*/ : "CC"); \
93 #define ipipe_cpu_freq() __ipipe_core_clock
94 #define ipipe_tsc2ns(_t) (((unsigned long)(_t)) * __ipipe_freq_scale)
95 #define ipipe_tsc2us(_t) (ipipe_tsc2ns(_t) / 1000 + 1)
97 /* Private interface -- Internal use only */
99 #define __ipipe_check_platform() do { } while (0)
101 #define __ipipe_init_platform() do { } while (0)
103 extern atomic_t __ipipe_irq_lvdepth
[IVG15
+ 1];
105 extern unsigned long __ipipe_irq_lvmask
;
107 extern struct ipipe_domain ipipe_root
;
109 /* enable/disable_irqdesc _must_ be used in pairs. */
111 void __ipipe_enable_irqdesc(struct ipipe_domain
*ipd
,
114 void __ipipe_disable_irqdesc(struct ipipe_domain
*ipd
,
117 #define __ipipe_enable_irq(irq) (irq_desc[irq].chip->unmask(irq))
119 #define __ipipe_disable_irq(irq) (irq_desc[irq].chip->mask(irq))
121 static inline int __ipipe_check_tickdev(const char *devname
)
126 static inline void __ipipe_lock_root(void)
128 set_bit(IPIPE_SYNCDEFER_FLAG
, &ipipe_root_cpudom_var(status
));
131 static inline void __ipipe_unlock_root(void)
133 clear_bit(IPIPE_SYNCDEFER_FLAG
, &ipipe_root_cpudom_var(status
));
136 void __ipipe_enable_pipeline(void);
138 #define __ipipe_hook_critical_ipi(ipd) do { } while (0)
140 #define __ipipe_sync_pipeline ___ipipe_sync_pipeline
141 void ___ipipe_sync_pipeline(unsigned long syncmask
);
143 void __ipipe_handle_irq(unsigned irq
, struct pt_regs
*regs
);
145 int __ipipe_get_irq_priority(unsigned irq
);
147 void __ipipe_stall_root_raw(void);
149 void __ipipe_unstall_root_raw(void);
151 void __ipipe_serial_debug(const char *fmt
, ...);
153 asmlinkage
void __ipipe_call_irqtail(unsigned long addr
);
155 DECLARE_PER_CPU(struct pt_regs
, __ipipe_tick_regs
);
157 extern unsigned long __ipipe_core_clock
;
159 extern unsigned long __ipipe_freq_scale
;
161 extern unsigned long __ipipe_irq_tail_hook
;
163 static inline unsigned long __ipipe_ffnz(unsigned long ul
)
168 #define __ipipe_run_irqtail() /* Must be a macro */ \
170 unsigned long __pending; \
172 __pending = bfin_read_IPEND(); \
173 if (__pending & 0x8000) { \
174 __pending &= ~0x8010; \
175 if (__pending && (__pending & (__pending - 1)) == 0) \
176 __ipipe_call_irqtail(__ipipe_irq_tail_hook); \
180 #define __ipipe_run_isr(ipd, irq) \
182 if (ipd == ipipe_root_domain) { \
183 local_irq_enable_hw(); \
184 if (ipipe_virtual_irq_p(irq)) \
185 ipd->irqs[irq].handler(irq, ipd->irqs[irq].cookie); \
187 ipd->irqs[irq].handler(irq, &__raw_get_cpu_var(__ipipe_tick_regs)); \
188 local_irq_disable_hw(); \
190 __clear_bit(IPIPE_SYNC_FLAG, &ipipe_cpudom_var(ipd, status)); \
191 local_irq_enable_nohead(ipd); \
192 ipd->irqs[irq].handler(irq, ipd->irqs[irq].cookie); \
193 /* Attempt to exit the outer interrupt level before \
194 * starting the deferred IRQ processing. */ \
195 local_irq_disable_nohead(ipd); \
196 __ipipe_run_irqtail(); \
197 __set_bit(IPIPE_SYNC_FLAG, &ipipe_cpudom_var(ipd, status)); \
201 #define __ipipe_syscall_watched_p(p, sc) \
202 (((p)->flags & PF_EVNOTIFY) || (unsigned long)sc >= NR_syscalls)
204 void ipipe_init_irq_threads(void);
206 int ipipe_start_irq_thread(unsigned irq
, struct irq_desc
*desc
);
208 #ifdef CONFIG_GENERIC_CLOCKEVENTS
209 #define IRQ_SYSTMR IRQ_CORETMR
210 #define IRQ_PRIOTMR IRQ_CORETMR
212 #define IRQ_SYSTMR IRQ_TIMER0
213 #define IRQ_PRIOTMR CONFIG_IRQ_TIMER0
217 #define bfin_write_TIMER_DISABLE(val) bfin_write_TMRS8_DISABLE(val)
218 #define bfin_write_TIMER_ENABLE(val) bfin_write_TMRS8_ENABLE(val)
219 #define bfin_write_TIMER_STATUS(val) bfin_write_TMRS8_STATUS(val)
220 #define bfin_read_TIMER_STATUS() bfin_read_TMRS8_STATUS()
221 #elif defined(CONFIG_BF54x)
222 #define bfin_write_TIMER_DISABLE(val) bfin_write_TIMER_DISABLE0(val)
223 #define bfin_write_TIMER_ENABLE(val) bfin_write_TIMER_ENABLE0(val)
224 #define bfin_write_TIMER_STATUS(val) bfin_write_TIMER_STATUS0(val)
225 #define bfin_read_TIMER_STATUS(val) bfin_read_TIMER_STATUS0(val)
228 #define __ipipe_root_tick_p(regs) ((regs->ipend & 0x10) != 0)
230 #else /* !CONFIG_IPIPE */
232 #define task_hijacked(p) 0
233 #define ipipe_trap_notify(t, r) 0
235 #define __ipipe_stall_root_raw() do { } while (0)
236 #define __ipipe_unstall_root_raw() do { } while (0)
238 #define ipipe_init_irq_threads() do { } while (0)
239 #define ipipe_start_irq_thread(irq, desc) 0
241 #define IRQ_SYSTMR IRQ_CORETMR
242 #define IRQ_PRIOTMR IRQ_CORETMR
244 #define __ipipe_root_tick_p(regs) 1
246 #endif /* !CONFIG_IPIPE */
248 #define ipipe_update_tick_evtdev(evtdev) do { } while (0)
250 #endif /* !__ASM_BLACKFIN_IPIPE_H */