blob: 4617ba66278ffadb2ceb1f3cb524eaaa804cbf49 [file] [log] [blame]
Yi Li6a01f232009-01-07 23:14:39 +08001/* -*- linux-c -*-
2 * include/asm-blackfin/ipipe.h
3 *
4 * Copyright (C) 2002-2007 Philippe Gerum.
5 *
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
10 * version.
11 *
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.
16 *
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.
20 */
21
22#ifndef __ASM_BLACKFIN_IPIPE_H
23#define __ASM_BLACKFIN_IPIPE_H
24
25#ifdef CONFIG_IPIPE
26
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>
33#include <asm/irq.h>
34#include <asm/bitops.h>
35#include <asm/atomic.h>
36#include <asm/traps.h>
37
Philippe Gerum7c039a92009-06-16 05:25:54 +020038#define IPIPE_ARCH_STRING "1.11-00"
Yi Li6a01f232009-01-07 23:14:39 +080039#define IPIPE_MAJOR_NUMBER 1
Philippe Gerum7c039a92009-06-16 05:25:54 +020040#define IPIPE_MINOR_NUMBER 11
Yi Li6640cfa2009-06-11 01:51:57 -040041#define IPIPE_PATCH_NUMBER 0
Yi Li6a01f232009-01-07 23:14:39 +080042
43#ifdef CONFIG_SMP
44#error "I-pipe/blackfin: SMP not implemented"
45#else /* !CONFIG_SMP */
46#define ipipe_processor_id() 0
47#endif /* CONFIG_SMP */
48
49#define prepare_arch_switch(next) \
50do { \
51 ipipe_schedule_notify(current, next); \
52 local_irq_disable_hw(); \
53} while (0)
54
55#define task_hijacked(p) \
56 ({ \
Yi Li6640cfa2009-06-11 01:51:57 -040057 int __x__ = __ipipe_root_domain_p; \
58 __clear_bit(IPIPE_SYNC_FLAG, &ipipe_root_cpudom_var(status)); \
59 if (__x__) \
60 local_irq_enable_hw(); \
61 !__x__; \
Yi Li6a01f232009-01-07 23:14:39 +080062 })
63
64struct ipipe_domain;
65
66struct ipipe_sysinfo {
67
68 int ncpus; /* Number of CPUs on board */
69 u64 cpufreq; /* CPU frequency (in Hz) */
70
71 /* Arch-dependent block */
72
73 struct {
74 unsigned tmirq; /* Timer tick IRQ */
75 u64 tmfreq; /* Timer frequency */
76 } archdep;
77};
78
79#define ipipe_read_tsc(t) \
80 ({ \
81 unsigned long __cy2; \
82 __asm__ __volatile__ ("1: %0 = CYCLES2\n" \
83 "%1 = CYCLES\n" \
84 "%2 = CYCLES2\n" \
85 "CC = %2 == %0\n" \
86 "if ! CC jump 1b\n" \
Philippe Gerum9bd50df2009-03-04 16:52:38 +080087 : "=d,a" (((unsigned long *)&t)[1]), \
88 "=d,a" (((unsigned long *)&t)[0]), \
89 "=d,a" (__cy2) \
Yi Li6a01f232009-01-07 23:14:39 +080090 : /*no input*/ : "CC"); \
91 t; \
92 })
93
94#define ipipe_cpu_freq() __ipipe_core_clock
95#define ipipe_tsc2ns(_t) (((unsigned long)(_t)) * __ipipe_freq_scale)
96#define ipipe_tsc2us(_t) (ipipe_tsc2ns(_t) / 1000 + 1)
97
98/* Private interface -- Internal use only */
99
100#define __ipipe_check_platform() do { } while (0)
101
102#define __ipipe_init_platform() do { } while (0)
103
104extern atomic_t __ipipe_irq_lvdepth[IVG15 + 1];
105
106extern unsigned long __ipipe_irq_lvmask;
107
108extern struct ipipe_domain ipipe_root;
109
110/* enable/disable_irqdesc _must_ be used in pairs. */
111
112void __ipipe_enable_irqdesc(struct ipipe_domain *ipd,
113 unsigned irq);
114
115void __ipipe_disable_irqdesc(struct ipipe_domain *ipd,
116 unsigned irq);
117
118#define __ipipe_enable_irq(irq) (irq_desc[irq].chip->unmask(irq))
119
120#define __ipipe_disable_irq(irq) (irq_desc[irq].chip->mask(irq))
121
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800122static inline int __ipipe_check_tickdev(const char *devname)
123{
124 return 1;
125}
Yi Li6a01f232009-01-07 23:14:39 +0800126
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800127static inline void __ipipe_lock_root(void)
128{
129 set_bit(IPIPE_SYNCDEFER_FLAG, &ipipe_root_cpudom_var(status));
130}
131
132static inline void __ipipe_unlock_root(void)
133{
134 clear_bit(IPIPE_SYNCDEFER_FLAG, &ipipe_root_cpudom_var(status));
135}
Yi Li6a01f232009-01-07 23:14:39 +0800136
137void __ipipe_enable_pipeline(void);
138
139#define __ipipe_hook_critical_ipi(ipd) do { } while (0)
140
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800141#define __ipipe_sync_pipeline ___ipipe_sync_pipeline
142void ___ipipe_sync_pipeline(unsigned long syncmask);
Yi Li6a01f232009-01-07 23:14:39 +0800143
144void __ipipe_handle_irq(unsigned irq, struct pt_regs *regs);
145
146int __ipipe_get_irq_priority(unsigned irq);
147
Yi Li6a01f232009-01-07 23:14:39 +0800148void __ipipe_serial_debug(const char *fmt, ...);
149
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800150asmlinkage void __ipipe_call_irqtail(unsigned long addr);
151
Yi Li6a01f232009-01-07 23:14:39 +0800152DECLARE_PER_CPU(struct pt_regs, __ipipe_tick_regs);
153
154extern unsigned long __ipipe_core_clock;
155
156extern unsigned long __ipipe_freq_scale;
157
158extern unsigned long __ipipe_irq_tail_hook;
159
160static inline unsigned long __ipipe_ffnz(unsigned long ul)
161{
162 return ffs(ul) - 1;
163}
164
165#define __ipipe_run_irqtail() /* Must be a macro */ \
166 do { \
Yi Li6a01f232009-01-07 23:14:39 +0800167 unsigned long __pending; \
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800168 CSYNC(); \
Yi Li6a01f232009-01-07 23:14:39 +0800169 __pending = bfin_read_IPEND(); \
170 if (__pending & 0x8000) { \
171 __pending &= ~0x8010; \
172 if (__pending && (__pending & (__pending - 1)) == 0) \
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800173 __ipipe_call_irqtail(__ipipe_irq_tail_hook); \
Yi Li6a01f232009-01-07 23:14:39 +0800174 } \
175 } while (0)
176
177#define __ipipe_run_isr(ipd, irq) \
178 do { \
Yi Li6640cfa2009-06-11 01:51:57 -0400179 if (!__ipipe_pipeline_head_p(ipd)) \
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800180 local_irq_enable_hw(); \
Yi Li6640cfa2009-06-11 01:51:57 -0400181 if (ipd == ipipe_root_domain) { \
182 if (unlikely(ipipe_virtual_irq_p(irq))) { \
183 irq_enter(); \
Yi Li6a01f232009-01-07 23:14:39 +0800184 ipd->irqs[irq].handler(irq, ipd->irqs[irq].cookie); \
Yi Li6640cfa2009-06-11 01:51:57 -0400185 irq_exit(); \
186 } else \
Yi Li6a01f232009-01-07 23:14:39 +0800187 ipd->irqs[irq].handler(irq, &__raw_get_cpu_var(__ipipe_tick_regs)); \
188 } else { \
189 __clear_bit(IPIPE_SYNC_FLAG, &ipipe_cpudom_var(ipd, status)); \
Yi Li6a01f232009-01-07 23:14:39 +0800190 ipd->irqs[irq].handler(irq, ipd->irqs[irq].cookie); \
191 /* Attempt to exit the outer interrupt level before \
192 * starting the deferred IRQ processing. */ \
Yi Li6a01f232009-01-07 23:14:39 +0800193 __ipipe_run_irqtail(); \
194 __set_bit(IPIPE_SYNC_FLAG, &ipipe_cpudom_var(ipd, status)); \
195 } \
Yi Li6640cfa2009-06-11 01:51:57 -0400196 local_irq_disable_hw(); \
Yi Li6a01f232009-01-07 23:14:39 +0800197 } while (0)
198
199#define __ipipe_syscall_watched_p(p, sc) \
200 (((p)->flags & PF_EVNOTIFY) || (unsigned long)sc >= NR_syscalls)
201
202void ipipe_init_irq_threads(void);
203
204int ipipe_start_irq_thread(unsigned irq, struct irq_desc *desc);
205
Philippe Geruma40494a2009-06-16 05:25:42 +0200206#ifdef CONFIG_TICKSOURCE_CORETMR
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800207#define IRQ_SYSTMR IRQ_CORETMR
208#define IRQ_PRIOTMR IRQ_CORETMR
209#else
Yi Li6a01f232009-01-07 23:14:39 +0800210#define IRQ_SYSTMR IRQ_TIMER0
211#define IRQ_PRIOTMR CONFIG_IRQ_TIMER0
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800212#endif
Yi Li6a01f232009-01-07 23:14:39 +0800213
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800214#ifdef CONFIG_BF561
Yi Li6a01f232009-01-07 23:14:39 +0800215#define bfin_write_TIMER_DISABLE(val) bfin_write_TMRS8_DISABLE(val)
216#define bfin_write_TIMER_ENABLE(val) bfin_write_TMRS8_ENABLE(val)
217#define bfin_write_TIMER_STATUS(val) bfin_write_TMRS8_STATUS(val)
218#define bfin_read_TIMER_STATUS() bfin_read_TMRS8_STATUS()
219#elif defined(CONFIG_BF54x)
Yi Li6a01f232009-01-07 23:14:39 +0800220#define bfin_write_TIMER_DISABLE(val) bfin_write_TIMER_DISABLE0(val)
221#define bfin_write_TIMER_ENABLE(val) bfin_write_TIMER_ENABLE0(val)
222#define bfin_write_TIMER_STATUS(val) bfin_write_TIMER_STATUS0(val)
223#define bfin_read_TIMER_STATUS(val) bfin_read_TIMER_STATUS0(val)
Yi Li6a01f232009-01-07 23:14:39 +0800224#endif
225
226#define __ipipe_root_tick_p(regs) ((regs->ipend & 0x10) != 0)
227
228#else /* !CONFIG_IPIPE */
229
230#define task_hijacked(p) 0
231#define ipipe_trap_notify(t, r) 0
232
Yi Li6a01f232009-01-07 23:14:39 +0800233#define ipipe_init_irq_threads() do { } while (0)
234#define ipipe_start_irq_thread(irq, desc) 0
235
Philippe Geruma40494a2009-06-16 05:25:42 +0200236#ifndef CONFIG_TICKSOURCE_GPTMR0
Yi Li6a01f232009-01-07 23:14:39 +0800237#define IRQ_SYSTMR IRQ_CORETMR
238#define IRQ_PRIOTMR IRQ_CORETMR
Philippe Geruma40494a2009-06-16 05:25:42 +0200239#else
240#define IRQ_SYSTMR IRQ_TIMER0
241#define IRQ_PRIOTMR CONFIG_IRQ_TIMER0
242#endif
Yi Li6a01f232009-01-07 23:14:39 +0800243
244#define __ipipe_root_tick_p(regs) 1
245
246#endif /* !CONFIG_IPIPE */
247
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800248#define ipipe_update_tick_evtdev(evtdev) do { } while (0)
249
Yi Li6a01f232009-01-07 23:14:39 +0800250#endif /* !__ASM_BLACKFIN_IPIPE_H */