blob: be4f24ebd40c79a3279952cb7f79ed7698dab53f [file] [log] [blame]
Yi Li6a01f232009-01-07 23:14:39 +08001/* -*- linux-c -*-
2 * linux/arch/blackfin/kernel/ipipe.c
3 *
4 * Copyright (C) 2005-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 * Architecture-dependent I-pipe support for the Blackfin.
22 */
23
24#include <linux/kernel.h>
25#include <linux/sched.h>
26#include <linux/module.h>
27#include <linux/interrupt.h>
28#include <linux/percpu.h>
29#include <linux/bitops.h>
30#include <linux/slab.h>
31#include <linux/errno.h>
32#include <linux/kthread.h>
Philippe Gerumd8ca6392009-06-22 18:22:25 +020033#include <linux/unistd.h>
34#include <linux/io.h>
Yi Li6a01f232009-01-07 23:14:39 +080035#include <asm/system.h>
36#include <asm/atomic.h>
Yi Li6a01f232009-01-07 23:14:39 +080037
Yi Li6a01f232009-01-07 23:14:39 +080038DEFINE_PER_CPU(struct pt_regs, __ipipe_tick_regs);
39
Yi Li6a01f232009-01-07 23:14:39 +080040asmlinkage void asm_do_IRQ(unsigned int irq, struct pt_regs *regs);
41
42static void __ipipe_no_irqtail(void);
43
44unsigned long __ipipe_irq_tail_hook = (unsigned long)&__ipipe_no_irqtail;
45EXPORT_SYMBOL(__ipipe_irq_tail_hook);
46
47unsigned long __ipipe_core_clock;
48EXPORT_SYMBOL(__ipipe_core_clock);
49
50unsigned long __ipipe_freq_scale;
51EXPORT_SYMBOL(__ipipe_freq_scale);
52
53atomic_t __ipipe_irq_lvdepth[IVG15 + 1];
54
Philippe Gerum06ecc192009-06-16 05:25:37 +020055unsigned long __ipipe_irq_lvmask = bfin_no_irqs;
Yi Li6a01f232009-01-07 23:14:39 +080056EXPORT_SYMBOL(__ipipe_irq_lvmask);
57
58static void __ipipe_ack_irq(unsigned irq, struct irq_desc *desc)
59{
60 desc->ipipe_ack(irq, desc);
61}
62
63/*
64 * __ipipe_enable_pipeline() -- We are running on the boot CPU, hw
65 * interrupts are off, and secondary CPUs are still lost in space.
66 */
67void __ipipe_enable_pipeline(void)
68{
69 unsigned irq;
70
71 __ipipe_core_clock = get_cclk(); /* Fetch this once. */
72 __ipipe_freq_scale = 1000000000UL / __ipipe_core_clock;
73
74 for (irq = 0; irq < NR_IRQS; ++irq)
75 ipipe_virtualize_irq(ipipe_root_domain,
76 irq,
77 (ipipe_irq_handler_t)&asm_do_IRQ,
78 NULL,
79 &__ipipe_ack_irq,
80 IPIPE_HANDLE_MASK | IPIPE_PASS_MASK);
81}
82
83/*
84 * __ipipe_handle_irq() -- IPIPE's generic IRQ handler. An optimistic
85 * interrupt protection log is maintained here for each domain. Hw
86 * interrupts are masked on entry.
87 */
88void __ipipe_handle_irq(unsigned irq, struct pt_regs *regs)
89{
Philippe Gerum9bd50df2009-03-04 16:52:38 +080090 struct ipipe_percpu_domain_data *p = ipipe_root_cpudom_ptr();
Yi Li6a01f232009-01-07 23:14:39 +080091 struct ipipe_domain *this_domain, *next_domain;
92 struct list_head *head, *pos;
Philippe Gerumd8ca6392009-06-22 18:22:25 +020093 struct ipipe_irqdesc *idesc;
Yi Li6a01f232009-01-07 23:14:39 +080094 int m_ack, s = -1;
95
96 /*
97 * Software-triggered IRQs do not need any ack. The contents
98 * of the register frame should only be used when processing
99 * the timer interrupt, but not for handling any other
100 * interrupt.
101 */
102 m_ack = (regs == NULL || irq == IRQ_SYSTMR || irq == IRQ_CORETMR);
Yi Li6640cfa2009-06-11 01:51:57 -0400103 this_domain = __ipipe_current_domain;
Philippe Gerumd8ca6392009-06-22 18:22:25 +0200104 idesc = &this_domain->irqs[irq];
Yi Li6a01f232009-01-07 23:14:39 +0800105
Philippe Gerumd8ca6392009-06-22 18:22:25 +0200106 if (unlikely(test_bit(IPIPE_STICKY_FLAG, &idesc->control)))
Yi Li6a01f232009-01-07 23:14:39 +0800107 head = &this_domain->p_link;
108 else {
109 head = __ipipe_pipeline.next;
110 next_domain = list_entry(head, struct ipipe_domain, p_link);
Philippe Gerumd8ca6392009-06-22 18:22:25 +0200111 idesc = &next_domain->irqs[irq];
112 if (likely(test_bit(IPIPE_WIRED_FLAG, &idesc->control))) {
113 if (!m_ack && idesc->acknowledge != NULL)
114 idesc->acknowledge(irq, irq_to_desc(irq));
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800115 if (test_bit(IPIPE_SYNCDEFER_FLAG, &p->status))
Philippe Gerumd8ca6392009-06-22 18:22:25 +0200116 s = __test_and_set_bit(IPIPE_STALL_FLAG,
117 &p->status);
Yi Li6a01f232009-01-07 23:14:39 +0800118 __ipipe_dispatch_wired(next_domain, irq);
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800119 goto out;
Yi Li6a01f232009-01-07 23:14:39 +0800120 }
121 }
122
123 /* Ack the interrupt. */
124
125 pos = head;
Yi Li6a01f232009-01-07 23:14:39 +0800126 while (pos != &__ipipe_pipeline) {
127 next_domain = list_entry(pos, struct ipipe_domain, p_link);
Philippe Gerumd8ca6392009-06-22 18:22:25 +0200128 idesc = &next_domain->irqs[irq];
129 if (test_bit(IPIPE_HANDLE_FLAG, &idesc->control)) {
Yi Li6a01f232009-01-07 23:14:39 +0800130 __ipipe_set_irq_pending(next_domain, irq);
Philippe Gerumd8ca6392009-06-22 18:22:25 +0200131 if (!m_ack && idesc->acknowledge != NULL) {
132 idesc->acknowledge(irq, irq_to_desc(irq));
Yi Li6a01f232009-01-07 23:14:39 +0800133 m_ack = 1;
134 }
135 }
Philippe Gerumd8ca6392009-06-22 18:22:25 +0200136 if (!test_bit(IPIPE_PASS_FLAG, &idesc->control))
Yi Li6a01f232009-01-07 23:14:39 +0800137 break;
Yi Li6a01f232009-01-07 23:14:39 +0800138 pos = next_domain->p_link.next;
139 }
140
141 /*
142 * Now walk the pipeline, yielding control to the highest
143 * priority domain that has pending interrupt(s) or
144 * immediately to the current domain if the interrupt has been
145 * marked as 'sticky'. This search does not go beyond the
146 * current domain in the pipeline. We also enforce the
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800147 * additional root stage lock (blackfin-specific).
148 */
149 if (test_bit(IPIPE_SYNCDEFER_FLAG, &p->status))
150 s = __test_and_set_bit(IPIPE_STALL_FLAG, &p->status);
Yi Li6a01f232009-01-07 23:14:39 +0800151
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800152 /*
153 * If the interrupt preempted the head domain, then do not
154 * even try to walk the pipeline, unless an interrupt is
155 * pending for it.
156 */
157 if (test_bit(IPIPE_AHEAD_FLAG, &this_domain->flags) &&
158 ipipe_head_cpudom_var(irqpend_himask) == 0)
159 goto out;
Yi Li6a01f232009-01-07 23:14:39 +0800160
161 __ipipe_walk_pipeline(head);
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800162out:
Yi Li6a01f232009-01-07 23:14:39 +0800163 if (!s)
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800164 __clear_bit(IPIPE_STALL_FLAG, &p->status);
Yi Li6a01f232009-01-07 23:14:39 +0800165}
166
167int __ipipe_check_root(void)
168{
169 return ipipe_root_domain_p;
170}
171
172void __ipipe_enable_irqdesc(struct ipipe_domain *ipd, unsigned irq)
173{
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800174 struct irq_desc *desc = irq_to_desc(irq);
Philippe Gerum51387002009-04-08 07:41:55 +0000175 int prio = __ipipe_get_irq_priority(irq);
Yi Li6a01f232009-01-07 23:14:39 +0800176
177 desc->depth = 0;
178 if (ipd != &ipipe_root &&
179 atomic_inc_return(&__ipipe_irq_lvdepth[prio]) == 1)
180 __set_bit(prio, &__ipipe_irq_lvmask);
181}
182EXPORT_SYMBOL(__ipipe_enable_irqdesc);
183
184void __ipipe_disable_irqdesc(struct ipipe_domain *ipd, unsigned irq)
185{
Philippe Gerum51387002009-04-08 07:41:55 +0000186 int prio = __ipipe_get_irq_priority(irq);
Yi Li6a01f232009-01-07 23:14:39 +0800187
188 if (ipd != &ipipe_root &&
189 atomic_dec_and_test(&__ipipe_irq_lvdepth[prio]))
190 __clear_bit(prio, &__ipipe_irq_lvmask);
191}
192EXPORT_SYMBOL(__ipipe_disable_irqdesc);
193
Yi Li6a01f232009-01-07 23:14:39 +0800194int __ipipe_syscall_root(struct pt_regs *regs)
195{
Yi Li6640cfa2009-06-11 01:51:57 -0400196 struct ipipe_percpu_domain_data *p;
Yi Li6a01f232009-01-07 23:14:39 +0800197 unsigned long flags;
Yi Li6640cfa2009-06-11 01:51:57 -0400198 int ret;
Yi Li6a01f232009-01-07 23:14:39 +0800199
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800200 /*
201 * We need to run the IRQ tail hook whenever we don't
Yi Li6a01f232009-01-07 23:14:39 +0800202 * propagate a syscall to higher domains, because we know that
203 * important operations might be pending there (e.g. Xenomai
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800204 * deferred rescheduling).
205 */
Yi Li6a01f232009-01-07 23:14:39 +0800206
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800207 if (regs->orig_p0 < NR_syscalls) {
Yi Li6a01f232009-01-07 23:14:39 +0800208 void (*hook)(void) = (void (*)(void))__ipipe_irq_tail_hook;
209 hook();
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800210 if ((current->flags & PF_EVNOTIFY) == 0)
211 return 0;
Yi Li6a01f232009-01-07 23:14:39 +0800212 }
213
214 /*
215 * This routine either returns:
216 * 0 -- if the syscall is to be passed to Linux;
Yi Li6640cfa2009-06-11 01:51:57 -0400217 * >0 -- if the syscall should not be passed to Linux, and no
Yi Li6a01f232009-01-07 23:14:39 +0800218 * tail work should be performed;
Yi Li6640cfa2009-06-11 01:51:57 -0400219 * <0 -- if the syscall should not be passed to Linux but the
Yi Li6a01f232009-01-07 23:14:39 +0800220 * tail work has to be performed (for handling signals etc).
221 */
222
Yi Li6640cfa2009-06-11 01:51:57 -0400223 if (!__ipipe_event_monitored_p(IPIPE_EVENT_SYSCALL))
224 return 0;
225
226 ret = __ipipe_dispatch_event(IPIPE_EVENT_SYSCALL, regs);
227
228 local_irq_save_hw(flags);
229
230 if (!__ipipe_root_domain_p) {
231 local_irq_restore_hw(flags);
Yi Li6a01f232009-01-07 23:14:39 +0800232 return 1;
233 }
234
Yi Li6640cfa2009-06-11 01:51:57 -0400235 p = ipipe_root_cpudom_ptr();
236 if ((p->irqpend_himask & IPIPE_IRQMASK_VIRT) != 0)
237 __ipipe_sync_pipeline(IPIPE_IRQMASK_VIRT);
238
239 local_irq_restore_hw(flags);
240
241 return -ret;
Yi Li6a01f232009-01-07 23:14:39 +0800242}
243
244unsigned long ipipe_critical_enter(void (*syncfn) (void))
245{
246 unsigned long flags;
247
248 local_irq_save_hw(flags);
249
250 return flags;
251}
252
253void ipipe_critical_exit(unsigned long flags)
254{
255 local_irq_restore_hw(flags);
256}
257
258static void __ipipe_no_irqtail(void)
259{
260}
261
262int ipipe_get_sysinfo(struct ipipe_sysinfo *info)
263{
264 info->ncpus = num_online_cpus();
265 info->cpufreq = ipipe_cpu_freq();
266 info->archdep.tmirq = IPIPE_TIMER_IRQ;
267 info->archdep.tmfreq = info->cpufreq;
268
269 return 0;
270}
271
272/*
273 * ipipe_trigger_irq() -- Push the interrupt at front of the pipeline
274 * just like if it has been actually received from a hw source. Also
275 * works for virtual interrupts.
276 */
277int ipipe_trigger_irq(unsigned irq)
278{
279 unsigned long flags;
280
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800281#ifdef CONFIG_IPIPE_DEBUG
Yi Li6a01f232009-01-07 23:14:39 +0800282 if (irq >= IPIPE_NR_IRQS ||
283 (ipipe_virtual_irq_p(irq)
284 && !test_bit(irq - IPIPE_VIRQ_BASE, &__ipipe_virtual_irq_map)))
285 return -EINVAL;
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800286#endif
Yi Li6a01f232009-01-07 23:14:39 +0800287
288 local_irq_save_hw(flags);
Yi Li6a01f232009-01-07 23:14:39 +0800289 __ipipe_handle_irq(irq, NULL);
Yi Li6a01f232009-01-07 23:14:39 +0800290 local_irq_restore_hw(flags);
291
292 return 1;
293}
294
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800295asmlinkage void __ipipe_sync_root(void)
Yi Li6a01f232009-01-07 23:14:39 +0800296{
Philippe Gerum51387002009-04-08 07:41:55 +0000297 void (*irq_tail_hook)(void) = (void (*)(void))__ipipe_irq_tail_hook;
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800298 unsigned long flags;
Yi Li6a01f232009-01-07 23:14:39 +0800299
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800300 BUG_ON(irqs_disabled());
Yi Li6a01f232009-01-07 23:14:39 +0800301
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800302 local_irq_save_hw(flags);
303
Philippe Gerum51387002009-04-08 07:41:55 +0000304 if (irq_tail_hook)
305 irq_tail_hook();
306
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800307 clear_thread_flag(TIF_IRQ_SYNC);
308
309 if (ipipe_root_cpudom_var(irqpend_himask) != 0)
310 __ipipe_sync_pipeline(IPIPE_IRQMASK_ANY);
311
312 local_irq_restore_hw(flags);
Yi Li6a01f232009-01-07 23:14:39 +0800313}
314
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800315void ___ipipe_sync_pipeline(unsigned long syncmask)
Yi Li6a01f232009-01-07 23:14:39 +0800316{
Philippe Gerumd8ca6392009-06-22 18:22:25 +0200317 if (__ipipe_root_domain_p &&
318 test_bit(IPIPE_SYNCDEFER_FLAG, &ipipe_root_cpudom_var(status)))
319 return;
Yi Li6a01f232009-01-07 23:14:39 +0800320
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800321 __ipipe_sync_stage(syncmask);
Yi Li6a01f232009-01-07 23:14:39 +0800322}
Philippe Gerumb9c7eb42009-06-22 18:22:48 +0200323
324void __ipipe_disable_root_irqs_hw(void)
325{
326 /*
327 * This code is called by the ins{bwl} routines (see
328 * arch/blackfin/lib/ins.S), which are heavily used by the
329 * network stack. It masks all interrupts but those handled by
330 * non-root domains, so that we keep decent network transfer
331 * rates for Linux without inducing pathological jitter for
332 * the real-time domain.
333 */
334 bfin_sti(__ipipe_irq_lvmask);
335 __set_bit(IPIPE_STALL_FLAG, &ipipe_root_cpudom_var(status));
336}
337
338void __ipipe_enable_root_irqs_hw(void)
339{
340 __clear_bit(IPIPE_STALL_FLAG, &ipipe_root_cpudom_var(status));
341 bfin_sti(bfin_irq_flags);
342}