blob: 22806b94025a1602874837f827f037d29d5fa551 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02002 * linux/arch/ia64/kernel/irq_ia64.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1998-2001 Hewlett-Packard Co
5 * Stephane Eranian <eranian@hpl.hp.com>
6 * David Mosberger-Tang <davidm@hpl.hp.com>
7 *
8 * 6/10/99: Updated to bring in sync with x86 version to facilitate
9 * support for SMP and different interrupt controllers.
10 *
11 * 09/15/00 Goutham Rao <goutham.rao@intel.com> Implemented pci_irq_to_vector
12 * PCI to vector allocation routine.
13 * 04/14/2004 Ashok Raj <ashok.raj@intel.com>
14 * Added CPU Hotplug handling for IPF.
15 */
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/module.h>
18
19#include <linux/jiffies.h>
20#include <linux/errno.h>
21#include <linux/init.h>
22#include <linux/interrupt.h>
23#include <linux/ioport.h>
24#include <linux/kernel_stat.h>
25#include <linux/slab.h>
26#include <linux/ptrace.h>
27#include <linux/random.h> /* for rand_initialize_irq() */
28#include <linux/signal.h>
29#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/threads.h>
31#include <linux/bitops.h>
Eric W. Biedermanb6cf2582006-10-04 02:16:38 -070032#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <asm/delay.h>
35#include <asm/intrinsics.h>
36#include <asm/io.h>
37#include <asm/hw_irq.h>
38#include <asm/machvec.h>
39#include <asm/pgtable.h>
40#include <asm/system.h>
Jack Steiner3be44b92007-05-08 14:50:43 -070041#include <asm/tlbflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#ifdef CONFIG_PERFMON
44# include <asm/perfmon.h>
45#endif
46
47#define IRQ_DEBUG 0
48
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +090049#define IRQ_VECTOR_UNASSIGNED (0)
50
51#define IRQ_UNUSED (0)
52#define IRQ_USED (1)
53#define IRQ_RSVD (2)
54
Mark Maule10083072006-04-14 16:03:49 -050055/* These can be overridden in platform_irq_init */
56int ia64_first_device_vector = IA64_DEF_FIRST_DEVICE_VECTOR;
57int ia64_last_device_vector = IA64_DEF_LAST_DEVICE_VECTOR;
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/* default base addr of IPI table */
60void __iomem *ipi_base_addr = ((void __iomem *)
61 (__IA64_UNCACHED_OFFSET | IA64_IPI_DEFAULT_BASE_ADDR));
62
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +090063static cpumask_t vector_allocation_domain(int cpu);
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/*
66 * Legacy IRQ to IA-64 vector translation table.
67 */
68__u8 isa_irq_to_vector_map[16] = {
69 /* 8259 IRQ translation, first 16 entries */
70 0x2f, 0x20, 0x2e, 0x2d, 0x2c, 0x2b, 0x2a, 0x29,
71 0x28, 0x27, 0x26, 0x25, 0x24, 0x23, 0x22, 0x21
72};
73EXPORT_SYMBOL(isa_irq_to_vector_map);
74
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +090075DEFINE_SPINLOCK(vector_lock);
76
77struct irq_cfg irq_cfg[NR_IRQS] __read_mostly = {
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +090078 [0 ... NR_IRQS - 1] = {
79 .vector = IRQ_VECTOR_UNASSIGNED,
80 .domain = CPU_MASK_NONE
81 }
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +090082};
83
84DEFINE_PER_CPU(int[IA64_NUM_VECTORS], vector_irq) = {
85 [0 ... IA64_NUM_VECTORS - 1] = IA64_SPURIOUS_INT_VECTOR
86};
87
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +090088static cpumask_t vector_table[IA64_MAX_DEVICE_VECTORS] = {
89 [0 ... IA64_MAX_DEVICE_VECTORS - 1] = CPU_MASK_NONE
90};
91
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +090092static int irq_status[NR_IRQS] = {
93 [0 ... NR_IRQS -1] = IRQ_UNUSED
94};
95
96int check_irq_used(int irq)
97{
98 if (irq_status[irq] == IRQ_USED)
99 return 1;
100
101 return -1;
102}
103
104static void reserve_irq(unsigned int irq)
105{
106 unsigned long flags;
107
108 spin_lock_irqsave(&vector_lock, flags);
109 irq_status[irq] = IRQ_RSVD;
110 spin_unlock_irqrestore(&vector_lock, flags);
111}
112
113static inline int find_unassigned_irq(void)
114{
115 int irq;
116
117 for (irq = IA64_FIRST_DEVICE_VECTOR; irq < NR_IRQS; irq++)
118 if (irq_status[irq] == IRQ_UNUSED)
119 return irq;
120 return -ENOSPC;
121}
122
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900123static inline int find_unassigned_vector(cpumask_t domain)
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900124{
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900125 cpumask_t mask;
126 int pos;
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900127
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900128 cpus_and(mask, domain, cpu_online_map);
129 if (cpus_empty(mask))
130 return -EINVAL;
131
132 for (pos = 0; pos < IA64_NUM_DEVICE_VECTORS; pos++) {
133 cpus_and(mask, domain, vector_table[pos]);
134 if (!cpus_empty(mask))
135 continue;
136 return IA64_FIRST_DEVICE_VECTOR + pos;
137 }
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900138 return -ENOSPC;
139}
140
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900141static int __bind_irq_vector(int irq, int vector, cpumask_t domain)
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900142{
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900143 cpumask_t mask;
144 int cpu, pos;
145 struct irq_cfg *cfg = &irq_cfg[irq];
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900146
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900147 cpus_and(mask, domain, cpu_online_map);
148 if (cpus_empty(mask))
149 return -EINVAL;
150 if ((cfg->vector == vector) && cpus_equal(cfg->domain, domain))
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900151 return 0;
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900152 if (cfg->vector != IRQ_VECTOR_UNASSIGNED)
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900153 return -EBUSY;
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900154 for_each_cpu_mask(cpu, mask)
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900155 per_cpu(vector_irq, cpu)[vector] = irq;
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900156 cfg->vector = vector;
157 cfg->domain = domain;
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900158 irq_status[irq] = IRQ_USED;
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900159 pos = vector - IA64_FIRST_DEVICE_VECTOR;
160 cpus_or(vector_table[pos], vector_table[pos], domain);
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900161 return 0;
162}
163
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900164int bind_irq_vector(int irq, int vector, cpumask_t domain)
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900165{
166 unsigned long flags;
167 int ret;
168
169 spin_lock_irqsave(&vector_lock, flags);
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900170 ret = __bind_irq_vector(irq, vector, domain);
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900171 spin_unlock_irqrestore(&vector_lock, flags);
172 return ret;
173}
174
Yasuaki Ishimatsucd378f12007-07-17 21:22:48 +0900175static void __clear_irq_vector(int irq)
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900176{
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900177 int vector, cpu, pos;
178 cpumask_t mask;
179 cpumask_t domain;
180 struct irq_cfg *cfg = &irq_cfg[irq];
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900181
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900182 BUG_ON((unsigned)irq >= NR_IRQS);
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900183 BUG_ON(cfg->vector == IRQ_VECTOR_UNASSIGNED);
184 vector = cfg->vector;
185 domain = cfg->domain;
186 cpus_and(mask, cfg->domain, cpu_online_map);
187 for_each_cpu_mask(cpu, mask)
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900188 per_cpu(vector_irq, cpu)[vector] = IA64_SPURIOUS_INT_VECTOR;
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900189 cfg->vector = IRQ_VECTOR_UNASSIGNED;
190 cfg->domain = CPU_MASK_NONE;
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900191 irq_status[irq] = IRQ_UNUSED;
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900192 pos = vector - IA64_FIRST_DEVICE_VECTOR;
193 cpus_andnot(vector_table[pos], vector_table[pos], domain);
Yasuaki Ishimatsucd378f12007-07-17 21:22:48 +0900194}
195
196static void clear_irq_vector(int irq)
197{
198 unsigned long flags;
199
200 spin_lock_irqsave(&vector_lock, flags);
201 __clear_irq_vector(irq);
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900202 spin_unlock_irqrestore(&vector_lock, flags);
203}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205int
Kenji Kaneshige3b5cc092005-07-10 21:49:00 -0700206assign_irq_vector (int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900208 unsigned long flags;
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900209 int vector, cpu;
210 cpumask_t domain;
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900211
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900212 vector = -ENOSPC;
213
214 spin_lock_irqsave(&vector_lock, flags);
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900215 if (irq < 0) {
216 goto out;
217 }
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900218 for_each_online_cpu(cpu) {
219 domain = vector_allocation_domain(cpu);
220 vector = find_unassigned_vector(domain);
221 if (vector >= 0)
222 break;
223 }
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900224 if (vector < 0)
225 goto out;
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900226 BUG_ON(__bind_irq_vector(irq, vector, domain));
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900227 out:
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900228 spin_unlock_irqrestore(&vector_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return vector;
230}
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232void
233free_irq_vector (int vector)
234{
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900235 if (vector < IA64_FIRST_DEVICE_VECTOR ||
236 vector > IA64_LAST_DEVICE_VECTOR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return;
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900238 clear_irq_vector(vector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
Mark Maule10083072006-04-14 16:03:49 -0500241int
242reserve_irq_vector (int vector)
243{
Mark Maule10083072006-04-14 16:03:49 -0500244 if (vector < IA64_FIRST_DEVICE_VECTOR ||
245 vector > IA64_LAST_DEVICE_VECTOR)
246 return -EINVAL;
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900247 return !!bind_irq_vector(vector, vector, CPU_MASK_ALL);
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900248}
Mark Maule10083072006-04-14 16:03:49 -0500249
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900250/*
251 * Initialize vector_irq on a new cpu. This function must be called
252 * with vector_lock held.
253 */
254void __setup_vector_irq(int cpu)
255{
256 int irq, vector;
257
258 /* Clear vector_irq */
259 for (vector = 0; vector < IA64_NUM_VECTORS; ++vector)
260 per_cpu(vector_irq, cpu)[vector] = IA64_SPURIOUS_INT_VECTOR;
261 /* Mark the inuse vectors */
262 for (irq = 0; irq < NR_IRQS; ++irq) {
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900263 if (!cpu_isset(cpu, irq_cfg[irq].domain))
264 continue;
265 vector = irq_to_vector(irq);
266 per_cpu(vector_irq, cpu)[vector] = irq;
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900267 }
268}
269
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900270static cpumask_t vector_allocation_domain(int cpu)
271{
272 return CPU_MASK_ALL;
273}
274
275
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900276void destroy_and_reserve_irq(unsigned int irq)
277{
278 dynamic_irq_cleanup(irq);
279
280 clear_irq_vector(irq);
281 reserve_irq(irq);
Mark Maule10083072006-04-14 16:03:49 -0500282}
283
Yasuaki Ishimatsucd378f12007-07-17 21:22:48 +0900284static int __reassign_irq_vector(int irq, int cpu)
285{
286 struct irq_cfg *cfg = &irq_cfg[irq];
287 int vector;
288 cpumask_t domain;
289
290 if (cfg->vector == IRQ_VECTOR_UNASSIGNED || !cpu_online(cpu))
291 return -EINVAL;
292 if (cpu_isset(cpu, cfg->domain))
293 return 0;
294 domain = vector_allocation_domain(cpu);
295 vector = find_unassigned_vector(domain);
296 if (vector < 0)
297 return -ENOSPC;
298 __clear_irq_vector(irq);
299 BUG_ON(__bind_irq_vector(irq, vector, domain));
300 return 0;
301}
302
303int reassign_irq_vector(int irq, int cpu)
304{
305 unsigned long flags;
306 int ret;
307
308 spin_lock_irqsave(&vector_lock, flags);
309 ret = __reassign_irq_vector(irq, cpu);
310 spin_unlock_irqrestore(&vector_lock, flags);
311 return ret;
312}
313
Eric W. Biedermanb6cf2582006-10-04 02:16:38 -0700314/*
315 * Dynamic irq allocate and deallocation for MSI
316 */
317int create_irq(void)
318{
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900319 unsigned long flags;
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900320 int irq, vector, cpu;
321 cpumask_t domain;
Eric W. Biedermanb6cf2582006-10-04 02:16:38 -0700322
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900323 irq = vector = -ENOSPC;
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900324 spin_lock_irqsave(&vector_lock, flags);
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900325 for_each_online_cpu(cpu) {
326 domain = vector_allocation_domain(cpu);
327 vector = find_unassigned_vector(domain);
328 if (vector >= 0)
329 break;
330 }
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900331 if (vector < 0)
332 goto out;
333 irq = find_unassigned_irq();
334 if (irq < 0)
335 goto out;
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900336 BUG_ON(__bind_irq_vector(irq, vector, domain));
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900337 out:
338 spin_unlock_irqrestore(&vector_lock, flags);
339 if (irq >= 0)
340 dynamic_irq_init(irq);
341 return irq;
Eric W. Biedermanb6cf2582006-10-04 02:16:38 -0700342}
343
344void destroy_irq(unsigned int irq)
345{
346 dynamic_irq_cleanup(irq);
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900347 clear_irq_vector(irq);
Eric W. Biedermanb6cf2582006-10-04 02:16:38 -0700348}
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350#ifdef CONFIG_SMP
351# define IS_RESCHEDULE(vec) (vec == IA64_IPI_RESCHEDULE)
Jack Steiner3be44b92007-05-08 14:50:43 -0700352# define IS_LOCAL_TLB_FLUSH(vec) (vec == IA64_IPI_LOCAL_TLB_FLUSH)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353#else
354# define IS_RESCHEDULE(vec) (0)
Jack Steiner3be44b92007-05-08 14:50:43 -0700355# define IS_LOCAL_TLB_FLUSH(vec) (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356#endif
357/*
358 * That's where the IVT branches when we get an external
359 * interrupt. This branches to the correct hardware IRQ handler via
360 * function ptr.
361 */
362void
363ia64_handle_irq (ia64_vector vector, struct pt_regs *regs)
364{
David Howells7d12e782006-10-05 14:55:46 +0100365 struct pt_regs *old_regs = set_irq_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 unsigned long saved_tpr;
367
368#if IRQ_DEBUG
369 {
370 unsigned long bsp, sp;
371
372 /*
373 * Note: if the interrupt happened while executing in
374 * the context switch routine (ia64_switch_to), we may
375 * get a spurious stack overflow here. This is
376 * because the register and the memory stack are not
377 * switched atomically.
378 */
379 bsp = ia64_getreg(_IA64_REG_AR_BSP);
380 sp = ia64_getreg(_IA64_REG_SP);
381
382 if ((sp - bsp) < 1024) {
383 static unsigned char count;
384 static long last_time;
385
386 if (jiffies - last_time > 5*HZ)
387 count = 0;
388 if (++count < 5) {
389 last_time = jiffies;
390 printk("ia64_handle_irq: DANGER: less than "
391 "1KB of free stack space!!\n"
392 "(bsp=0x%lx, sp=%lx)\n", bsp, sp);
393 }
394 }
395 }
396#endif /* IRQ_DEBUG */
397
398 /*
399 * Always set TPR to limit maximum interrupt nesting depth to
400 * 16 (without this, it would be ~240, which could easily lead
401 * to kernel stack overflows).
402 */
403 irq_enter();
404 saved_tpr = ia64_getreg(_IA64_REG_CR_TPR);
405 ia64_srlz_d();
406 while (vector != IA64_SPURIOUS_INT_VECTOR) {
Jack Steiner3be44b92007-05-08 14:50:43 -0700407 if (unlikely(IS_LOCAL_TLB_FLUSH(vector))) {
408 smp_local_flush_tlb();
409 kstat_this_cpu.irqs[vector]++;
410 } else if (unlikely(IS_RESCHEDULE(vector)))
411 kstat_this_cpu.irqs[vector]++;
Jack Steiner9b3377f2006-10-16 16:17:43 -0500412 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 ia64_setreg(_IA64_REG_CR_TPR, vector);
414 ia64_srlz_d();
415
Ingo Molnar5fbb0042006-11-16 00:43:07 -0800416 generic_handle_irq(local_vector_to_irq(vector));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 /*
419 * Disable interrupts and send EOI:
420 */
421 local_irq_disable();
422 ia64_setreg(_IA64_REG_CR_TPR, saved_tpr);
423 }
424 ia64_eoi();
425 vector = ia64_get_ivr();
426 }
427 /*
428 * This must be done *after* the ia64_eoi(). For example, the keyboard softirq
429 * handler needs to be able to wait for further keyboard interrupts, which can't
430 * come through until ia64_eoi() has been done.
431 */
432 irq_exit();
David Howells7d12e782006-10-05 14:55:46 +0100433 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
436#ifdef CONFIG_HOTPLUG_CPU
437/*
438 * This function emulates a interrupt processing when a cpu is about to be
439 * brought down.
440 */
441void ia64_process_pending_intr(void)
442{
443 ia64_vector vector;
444 unsigned long saved_tpr;
445 extern unsigned int vectors_in_migration[NR_IRQS];
446
447 vector = ia64_get_ivr();
448
449 irq_enter();
450 saved_tpr = ia64_getreg(_IA64_REG_CR_TPR);
451 ia64_srlz_d();
452
453 /*
454 * Perform normal interrupt style processing
455 */
456 while (vector != IA64_SPURIOUS_INT_VECTOR) {
Jack Steiner3be44b92007-05-08 14:50:43 -0700457 if (unlikely(IS_LOCAL_TLB_FLUSH(vector))) {
458 smp_local_flush_tlb();
459 kstat_this_cpu.irqs[vector]++;
460 } else if (unlikely(IS_RESCHEDULE(vector)))
461 kstat_this_cpu.irqs[vector]++;
Jack Steiner9b3377f2006-10-16 16:17:43 -0500462 else {
Tony Luck8c1addb2006-10-06 10:09:41 -0700463 struct pt_regs *old_regs = set_irq_regs(NULL);
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 ia64_setreg(_IA64_REG_CR_TPR, vector);
466 ia64_srlz_d();
467
468 /*
469 * Now try calling normal ia64_handle_irq as it would have got called
470 * from a real intr handler. Try passing null for pt_regs, hopefully
471 * it will work. I hope it works!.
472 * Probably could shared code.
473 */
474 vectors_in_migration[local_vector_to_irq(vector)]=0;
Ingo Molnar5fbb0042006-11-16 00:43:07 -0800475 generic_handle_irq(local_vector_to_irq(vector));
Tony Luck8c1addb2006-10-06 10:09:41 -0700476 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 /*
479 * Disable interrupts and send EOI
480 */
481 local_irq_disable();
482 ia64_setreg(_IA64_REG_CR_TPR, saved_tpr);
483 }
484 ia64_eoi();
485 vector = ia64_get_ivr();
486 }
487 irq_exit();
488}
489#endif
490
491
492#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Jack Steiner9b3377f2006-10-16 16:17:43 -0500494static irqreturn_t dummy_handler (int irq, void *dev_id)
495{
496 BUG();
497}
Jack Steiner3be44b92007-05-08 14:50:43 -0700498extern irqreturn_t handle_IPI (int irq, void *dev_id);
Jack Steiner9b3377f2006-10-16 16:17:43 -0500499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500static struct irqaction ipi_irqaction = {
501 .handler = handle_IPI,
Thomas Gleixner121a4222006-07-01 19:29:17 -0700502 .flags = IRQF_DISABLED,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 .name = "IPI"
504};
Jack Steiner9b3377f2006-10-16 16:17:43 -0500505
506static struct irqaction resched_irqaction = {
507 .handler = dummy_handler,
Thomas Gleixner38515e92007-02-14 00:33:16 -0800508 .flags = IRQF_DISABLED,
Jack Steiner9b3377f2006-10-16 16:17:43 -0500509 .name = "resched"
510};
Jack Steiner3be44b92007-05-08 14:50:43 -0700511
512static struct irqaction tlb_irqaction = {
513 .handler = dummy_handler,
akpm@linux-foundation.org53295712007-05-09 00:43:17 -0700514 .flags = IRQF_DISABLED,
Jack Steiner3be44b92007-05-08 14:50:43 -0700515 .name = "tlb_flush"
516};
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518#endif
519
520void
521register_percpu_irq (ia64_vector vec, struct irqaction *action)
522{
523 irq_desc_t *desc;
524 unsigned int irq;
525
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900526 irq = vec;
Yasuaki Ishimatsu4994be12007-07-17 21:22:33 +0900527 BUG_ON(bind_irq_vector(irq, vec, CPU_MASK_ALL));
Yasuaki Ishimatsue1b30a32007-07-17 21:22:23 +0900528 desc = irq_desc + irq;
529 desc->status |= IRQ_PER_CPU;
530 desc->chip = &irq_type_ia64_lsapic;
531 if (action)
532 setup_irq(irq, action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
535void __init
536init_IRQ (void)
537{
538 register_percpu_irq(IA64_SPURIOUS_INT_VECTOR, NULL);
539#ifdef CONFIG_SMP
540 register_percpu_irq(IA64_IPI_VECTOR, &ipi_irqaction);
Jack Steiner9b3377f2006-10-16 16:17:43 -0500541 register_percpu_irq(IA64_IPI_RESCHEDULE, &resched_irqaction);
Jack Steiner3be44b92007-05-08 14:50:43 -0700542 register_percpu_irq(IA64_IPI_LOCAL_TLB_FLUSH, &tlb_irqaction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543#endif
544#ifdef CONFIG_PERFMON
545 pfm_init_percpu();
546#endif
547 platform_irq_init();
548}
549
550void
551ia64_send_ipi (int cpu, int vector, int delivery_mode, int redirect)
552{
553 void __iomem *ipi_addr;
554 unsigned long ipi_data;
555 unsigned long phys_cpu_id;
556
557#ifdef CONFIG_SMP
558 phys_cpu_id = cpu_physical_id(cpu);
559#else
560 phys_cpu_id = (ia64_getreg(_IA64_REG_CR_LID) >> 16) & 0xffff;
561#endif
562
563 /*
564 * cpu number is in 8bit ID and 8bit EID
565 */
566
567 ipi_data = (delivery_mode << 8) | (vector & 0xff);
568 ipi_addr = ipi_base_addr + ((phys_cpu_id << 4) | ((redirect & 1) << 3));
569
570 writeq(ipi_data, ipi_addr);
571}