[TG3]: Set minimal hw interrupt mitigation.
[linux-2.6/verdex.git] / arch / ppc / syslib / open_pic.c
blob7619e16fccaef18ddd666a5058487283f884af5c
1 /*
2 * arch/ppc/kernel/open_pic.c -- OpenPIC Interrupt Handling
4 * Copyright (C) 1997 Geert Uytterhoeven
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file COPYING in the main directory of this archive
8 * for more details.
9 */
11 #include <linux/config.h>
12 #include <linux/types.h>
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
15 #include <linux/init.h>
16 #include <linux/irq.h>
17 #include <linux/interrupt.h>
18 #include <linux/sysdev.h>
19 #include <linux/errno.h>
20 #include <asm/ptrace.h>
21 #include <asm/signal.h>
22 #include <asm/io.h>
23 #include <asm/irq.h>
24 #include <asm/prom.h>
25 #include <asm/sections.h>
26 #include <asm/open_pic.h>
27 #include <asm/i8259.h>
29 #include "open_pic_defs.h"
31 #if defined(CONFIG_PRPMC800) || defined(CONFIG_85xx)
32 #define OPENPIC_BIG_ENDIAN
33 #endif
35 void __iomem *OpenPIC_Addr;
36 static volatile struct OpenPIC __iomem *OpenPIC = NULL;
39 * We define OpenPIC_InitSenses table thusly:
40 * bit 0x1: sense, 0 for edge and 1 for level.
41 * bit 0x2: polarity, 0 for negative, 1 for positive.
43 u_int OpenPIC_NumInitSenses __initdata = 0;
44 u_char *OpenPIC_InitSenses __initdata = NULL;
45 extern int use_of_interrupt_tree;
47 static u_int NumProcessors;
48 static u_int NumSources;
49 static int open_pic_irq_offset;
50 static volatile OpenPIC_Source __iomem *ISR[NR_IRQS];
51 static int openpic_cascade_irq = -1;
52 static int (*openpic_cascade_fn)(struct pt_regs *);
54 /* Global Operations */
55 static void openpic_disable_8259_pass_through(void);
56 static void openpic_set_spurious(u_int vector);
58 #ifdef CONFIG_SMP
59 /* Interprocessor Interrupts */
60 static void openpic_initipi(u_int ipi, u_int pri, u_int vector);
61 static irqreturn_t openpic_ipi_action(int cpl, void *dev_id, struct pt_regs *);
62 #endif
64 /* Timer Interrupts */
65 static void openpic_inittimer(u_int timer, u_int pri, u_int vector);
66 static void openpic_maptimer(u_int timer, cpumask_t cpumask);
68 /* Interrupt Sources */
69 static void openpic_enable_irq(u_int irq);
70 static void openpic_disable_irq(u_int irq);
71 static void openpic_initirq(u_int irq, u_int pri, u_int vector, int polarity,
72 int is_level);
73 static void openpic_mapirq(u_int irq, cpumask_t cpumask, cpumask_t keepmask);
76 * These functions are not used but the code is kept here
77 * for completeness and future reference.
79 #ifdef notused
80 static void openpic_enable_8259_pass_through(void);
81 static u_int openpic_get_spurious(void);
82 static void openpic_set_sense(u_int irq, int sense);
83 #endif /* notused */
86 * Description of the openpic for the higher-level irq code
88 static void openpic_end_irq(unsigned int irq_nr);
89 static void openpic_ack_irq(unsigned int irq_nr);
90 static void openpic_set_affinity(unsigned int irq_nr, cpumask_t cpumask);
92 struct hw_interrupt_type open_pic = {
93 .typename = " OpenPIC ",
94 .enable = openpic_enable_irq,
95 .disable = openpic_disable_irq,
96 .ack = openpic_ack_irq,
97 .end = openpic_end_irq,
98 .set_affinity = openpic_set_affinity,
101 #ifdef CONFIG_SMP
102 static void openpic_end_ipi(unsigned int irq_nr);
103 static void openpic_ack_ipi(unsigned int irq_nr);
104 static void openpic_enable_ipi(unsigned int irq_nr);
105 static void openpic_disable_ipi(unsigned int irq_nr);
107 struct hw_interrupt_type open_pic_ipi = {
108 .typename = " OpenPIC ",
109 .enable = openpic_enable_ipi,
110 .disable = openpic_disable_ipi,
111 .ack = openpic_ack_ipi,
112 .end = openpic_end_ipi,
114 #endif /* CONFIG_SMP */
117 * Accesses to the current processor's openpic registers
119 #ifdef CONFIG_SMP
120 #define THIS_CPU Processor[cpu]
121 #define DECL_THIS_CPU int cpu = smp_hw_index[smp_processor_id()]
122 #define CHECK_THIS_CPU check_arg_cpu(cpu)
123 #else
124 #define THIS_CPU Processor[0]
125 #define DECL_THIS_CPU
126 #define CHECK_THIS_CPU
127 #endif /* CONFIG_SMP */
129 #if 1
130 #define check_arg_ipi(ipi) \
131 if (ipi < 0 || ipi >= OPENPIC_NUM_IPI) \
132 printk("open_pic.c:%d: invalid ipi %d\n", __LINE__, ipi);
133 #define check_arg_timer(timer) \
134 if (timer < 0 || timer >= OPENPIC_NUM_TIMERS) \
135 printk("open_pic.c:%d: invalid timer %d\n", __LINE__, timer);
136 #define check_arg_vec(vec) \
137 if (vec < 0 || vec >= OPENPIC_NUM_VECTORS) \
138 printk("open_pic.c:%d: invalid vector %d\n", __LINE__, vec);
139 #define check_arg_pri(pri) \
140 if (pri < 0 || pri >= OPENPIC_NUM_PRI) \
141 printk("open_pic.c:%d: invalid priority %d\n", __LINE__, pri);
143 * Print out a backtrace if it's out of range, since if it's larger than NR_IRQ's
144 * data has probably been corrupted and we're going to panic or deadlock later
145 * anyway --Troy
147 #define check_arg_irq(irq) \
148 if (irq < open_pic_irq_offset || irq >= NumSources+open_pic_irq_offset \
149 || ISR[irq - open_pic_irq_offset] == 0) { \
150 printk("open_pic.c:%d: invalid irq %d\n", __LINE__, irq); \
151 dump_stack(); }
152 #define check_arg_cpu(cpu) \
153 if (cpu < 0 || cpu >= NumProcessors){ \
154 printk("open_pic.c:%d: invalid cpu %d\n", __LINE__, cpu); \
155 dump_stack(); }
156 #else
157 #define check_arg_ipi(ipi) do {} while (0)
158 #define check_arg_timer(timer) do {} while (0)
159 #define check_arg_vec(vec) do {} while (0)
160 #define check_arg_pri(pri) do {} while (0)
161 #define check_arg_irq(irq) do {} while (0)
162 #define check_arg_cpu(cpu) do {} while (0)
163 #endif
165 u_int openpic_read(volatile u_int __iomem *addr)
167 u_int val;
169 #ifdef OPENPIC_BIG_ENDIAN
170 val = in_be32(addr);
171 #else
172 val = in_le32(addr);
173 #endif
174 return val;
177 static inline void openpic_write(volatile u_int __iomem *addr, u_int val)
179 #ifdef OPENPIC_BIG_ENDIAN
180 out_be32(addr, val);
181 #else
182 out_le32(addr, val);
183 #endif
186 static inline u_int openpic_readfield(volatile u_int __iomem *addr, u_int mask)
188 u_int val = openpic_read(addr);
189 return val & mask;
192 inline void openpic_writefield(volatile u_int __iomem *addr, u_int mask,
193 u_int field)
195 u_int val = openpic_read(addr);
196 openpic_write(addr, (val & ~mask) | (field & mask));
199 static inline void openpic_clearfield(volatile u_int __iomem *addr, u_int mask)
201 openpic_writefield(addr, mask, 0);
204 static inline void openpic_setfield(volatile u_int __iomem *addr, u_int mask)
206 openpic_writefield(addr, mask, mask);
209 static void openpic_safe_writefield(volatile u_int __iomem *addr, u_int mask,
210 u_int field)
212 openpic_setfield(addr, OPENPIC_MASK);
213 while (openpic_read(addr) & OPENPIC_ACTIVITY);
214 openpic_writefield(addr, mask | OPENPIC_MASK, field | OPENPIC_MASK);
217 #ifdef CONFIG_SMP
218 /* yes this is right ... bug, feature, you decide! -- tgall */
219 u_int openpic_read_IPI(volatile u_int __iomem * addr)
221 u_int val = 0;
222 #if defined(OPENPIC_BIG_ENDIAN) || defined(CONFIG_POWER3)
223 val = in_be32(addr);
224 #else
225 val = in_le32(addr);
226 #endif
227 return val;
230 /* because of the power3 be / le above, this is needed */
231 inline void openpic_writefield_IPI(volatile u_int __iomem * addr, u_int mask, u_int field)
233 u_int val = openpic_read_IPI(addr);
234 openpic_write(addr, (val & ~mask) | (field & mask));
237 static inline void openpic_clearfield_IPI(volatile u_int __iomem *addr, u_int mask)
239 openpic_writefield_IPI(addr, mask, 0);
242 static inline void openpic_setfield_IPI(volatile u_int __iomem *addr, u_int mask)
244 openpic_writefield_IPI(addr, mask, mask);
247 static void openpic_safe_writefield_IPI(volatile u_int __iomem *addr, u_int mask, u_int field)
249 openpic_setfield_IPI(addr, OPENPIC_MASK);
251 /* wait until it's not in use */
252 /* BenH: Is this code really enough ? I would rather check the result
253 * and eventually retry ...
255 while(openpic_read_IPI(addr) & OPENPIC_ACTIVITY);
257 openpic_writefield_IPI(addr, mask | OPENPIC_MASK, field | OPENPIC_MASK);
259 #endif /* CONFIG_SMP */
261 #ifdef CONFIG_EPIC_SERIAL_MODE
262 /* On platforms that may use EPIC serial mode, the default is enabled. */
263 int epic_serial_mode = 1;
265 static void __init openpic_eicr_set_clk(u_int clkval)
267 openpic_writefield(&OpenPIC->Global.Global_Configuration1,
268 OPENPIC_EICR_S_CLK_MASK, (clkval << 28));
271 static void __init openpic_enable_sie(void)
273 openpic_setfield(&OpenPIC->Global.Global_Configuration1,
274 OPENPIC_EICR_SIE);
276 #endif
278 #if defined(CONFIG_EPIC_SERIAL_MODE) || defined(CONFIG_PM)
279 static void openpic_reset(void)
281 openpic_setfield(&OpenPIC->Global.Global_Configuration0,
282 OPENPIC_CONFIG_RESET);
283 while (openpic_readfield(&OpenPIC->Global.Global_Configuration0,
284 OPENPIC_CONFIG_RESET))
285 mb();
287 #endif
289 void __init openpic_set_sources(int first_irq, int num_irqs, void __iomem *first_ISR)
291 volatile OpenPIC_Source __iomem *src = first_ISR;
292 int i, last_irq;
294 last_irq = first_irq + num_irqs;
295 if (last_irq > NumSources)
296 NumSources = last_irq;
297 if (src == 0)
298 src = &((struct OpenPIC __iomem *)OpenPIC_Addr)->Source[first_irq];
299 for (i = first_irq; i < last_irq; ++i, ++src)
300 ISR[i] = src;
304 * The `offset' parameter defines where the interrupts handled by the
305 * OpenPIC start in the space of interrupt numbers that the kernel knows
306 * about. In other words, the OpenPIC's IRQ0 is numbered `offset' in the
307 * kernel's interrupt numbering scheme.
308 * We assume there is only one OpenPIC.
310 void __init openpic_init(int offset)
312 u_int t, i;
313 u_int timerfreq;
314 const char *version;
316 if (!OpenPIC_Addr) {
317 printk("No OpenPIC found !\n");
318 return;
320 OpenPIC = (volatile struct OpenPIC __iomem *)OpenPIC_Addr;
322 #ifdef CONFIG_EPIC_SERIAL_MODE
323 /* Have to start from ground zero.
325 openpic_reset();
326 #endif
328 if (ppc_md.progress) ppc_md.progress("openpic: enter", 0x122);
330 t = openpic_read(&OpenPIC->Global.Feature_Reporting0);
331 switch (t & OPENPIC_FEATURE_VERSION_MASK) {
332 case 1:
333 version = "1.0";
334 break;
335 case 2:
336 version = "1.2";
337 break;
338 case 3:
339 version = "1.3";
340 break;
341 default:
342 version = "?";
343 break;
345 NumProcessors = ((t & OPENPIC_FEATURE_LAST_PROCESSOR_MASK) >>
346 OPENPIC_FEATURE_LAST_PROCESSOR_SHIFT) + 1;
347 if (NumSources == 0)
348 openpic_set_sources(0,
349 ((t & OPENPIC_FEATURE_LAST_SOURCE_MASK) >>
350 OPENPIC_FEATURE_LAST_SOURCE_SHIFT) + 1,
351 NULL);
352 printk("OpenPIC Version %s (%d CPUs and %d IRQ sources) at %p\n",
353 version, NumProcessors, NumSources, OpenPIC);
354 timerfreq = openpic_read(&OpenPIC->Global.Timer_Frequency);
355 if (timerfreq)
356 printk("OpenPIC timer frequency is %d.%06d MHz\n",
357 timerfreq / 1000000, timerfreq % 1000000);
359 open_pic_irq_offset = offset;
361 /* Initialize timer interrupts */
362 if ( ppc_md.progress ) ppc_md.progress("openpic: timer",0x3ba);
363 for (i = 0; i < OPENPIC_NUM_TIMERS; i++) {
364 /* Disabled, Priority 0 */
365 openpic_inittimer(i, 0, OPENPIC_VEC_TIMER+i+offset);
366 /* No processor */
367 openpic_maptimer(i, CPU_MASK_NONE);
370 #ifdef CONFIG_SMP
371 /* Initialize IPI interrupts */
372 if ( ppc_md.progress ) ppc_md.progress("openpic: ipi",0x3bb);
373 for (i = 0; i < OPENPIC_NUM_IPI; i++) {
374 /* Disabled, Priority 10..13 */
375 openpic_initipi(i, 10+i, OPENPIC_VEC_IPI+i+offset);
376 /* IPIs are per-CPU */
377 irq_desc[OPENPIC_VEC_IPI+i+offset].status |= IRQ_PER_CPU;
378 irq_desc[OPENPIC_VEC_IPI+i+offset].handler = &open_pic_ipi;
380 #endif
382 /* Initialize external interrupts */
383 if (ppc_md.progress) ppc_md.progress("openpic: external",0x3bc);
385 openpic_set_priority(0xf);
387 /* Init all external sources, including possibly the cascade. */
388 for (i = 0; i < NumSources; i++) {
389 int sense;
391 if (ISR[i] == 0)
392 continue;
394 /* the bootloader may have left it enabled (bad !) */
395 openpic_disable_irq(i+offset);
397 sense = (i < OpenPIC_NumInitSenses)? OpenPIC_InitSenses[i]: \
398 (IRQ_SENSE_LEVEL | IRQ_POLARITY_NEGATIVE);
400 if (sense & IRQ_SENSE_MASK)
401 irq_desc[i+offset].status = IRQ_LEVEL;
403 /* Enabled, Priority 8 */
404 openpic_initirq(i, 8, i+offset, (sense & IRQ_POLARITY_MASK),
405 (sense & IRQ_SENSE_MASK));
406 /* Processor 0 */
407 openpic_mapirq(i, CPU_MASK_CPU0, CPU_MASK_NONE);
410 /* Init descriptors */
411 for (i = offset; i < NumSources + offset; i++)
412 irq_desc[i].handler = &open_pic;
414 /* Initialize the spurious interrupt */
415 if (ppc_md.progress) ppc_md.progress("openpic: spurious",0x3bd);
416 openpic_set_spurious(OPENPIC_VEC_SPURIOUS);
417 openpic_disable_8259_pass_through();
418 #ifdef CONFIG_EPIC_SERIAL_MODE
419 if (epic_serial_mode) {
420 openpic_eicr_set_clk(7); /* Slowest value until we know better */
421 openpic_enable_sie();
423 #endif
424 openpic_set_priority(0);
426 if (ppc_md.progress) ppc_md.progress("openpic: exit",0x222);
429 #ifdef notused
430 static void openpic_enable_8259_pass_through(void)
432 openpic_clearfield(&OpenPIC->Global.Global_Configuration0,
433 OPENPIC_CONFIG_8259_PASSTHROUGH_DISABLE);
435 #endif /* notused */
437 static void openpic_disable_8259_pass_through(void)
439 openpic_setfield(&OpenPIC->Global.Global_Configuration0,
440 OPENPIC_CONFIG_8259_PASSTHROUGH_DISABLE);
444 * Find out the current interrupt
446 u_int openpic_irq(void)
448 u_int vec;
449 DECL_THIS_CPU;
451 CHECK_THIS_CPU;
452 vec = openpic_readfield(&OpenPIC->THIS_CPU.Interrupt_Acknowledge,
453 OPENPIC_VECTOR_MASK);
454 return vec;
457 void openpic_eoi(void)
459 DECL_THIS_CPU;
461 CHECK_THIS_CPU;
462 openpic_write(&OpenPIC->THIS_CPU.EOI, 0);
463 /* Handle PCI write posting */
464 (void)openpic_read(&OpenPIC->THIS_CPU.EOI);
467 u_int openpic_get_priority(void)
469 DECL_THIS_CPU;
471 CHECK_THIS_CPU;
472 return openpic_readfield(&OpenPIC->THIS_CPU.Current_Task_Priority,
473 OPENPIC_CURRENT_TASK_PRIORITY_MASK);
476 void openpic_set_priority(u_int pri)
478 DECL_THIS_CPU;
480 CHECK_THIS_CPU;
481 check_arg_pri(pri);
482 openpic_writefield(&OpenPIC->THIS_CPU.Current_Task_Priority,
483 OPENPIC_CURRENT_TASK_PRIORITY_MASK, pri);
487 * Get/set the spurious vector
489 #ifdef notused
490 static u_int openpic_get_spurious(void)
492 return openpic_readfield(&OpenPIC->Global.Spurious_Vector,
493 OPENPIC_VECTOR_MASK);
495 #endif /* notused */
497 static void openpic_set_spurious(u_int vec)
499 check_arg_vec(vec);
500 openpic_writefield(&OpenPIC->Global.Spurious_Vector, OPENPIC_VECTOR_MASK,
501 vec);
504 #ifdef CONFIG_SMP
506 * Convert a cpu mask from logical to physical cpu numbers.
508 static inline cpumask_t physmask(cpumask_t cpumask)
510 int i;
511 cpumask_t mask = CPU_MASK_NONE;
513 cpus_and(cpumask, cpu_online_map, cpumask);
515 for (i = 0; i < NR_CPUS; i++)
516 if (cpu_isset(i, cpumask))
517 cpu_set(smp_hw_index[i], mask);
519 return mask;
521 #else
522 #define physmask(cpumask) (cpumask)
523 #endif
525 void openpic_reset_processor_phys(u_int mask)
527 openpic_write(&OpenPIC->Global.Processor_Initialization, mask);
530 #if defined(CONFIG_SMP) || defined(CONFIG_PM)
531 static DEFINE_SPINLOCK(openpic_setup_lock);
532 #endif
534 #ifdef CONFIG_SMP
536 * Initialize an interprocessor interrupt (and disable it)
538 * ipi: OpenPIC interprocessor interrupt number
539 * pri: interrupt source priority
540 * vec: the vector it will produce
542 static void __init openpic_initipi(u_int ipi, u_int pri, u_int vec)
544 check_arg_ipi(ipi);
545 check_arg_pri(pri);
546 check_arg_vec(vec);
547 openpic_safe_writefield_IPI(&OpenPIC->Global.IPI_Vector_Priority(ipi),
548 OPENPIC_PRIORITY_MASK | OPENPIC_VECTOR_MASK,
549 (pri << OPENPIC_PRIORITY_SHIFT) | vec);
553 * Send an IPI to one or more CPUs
555 * Externally called, however, it takes an IPI number (0...OPENPIC_NUM_IPI)
556 * and not a system-wide interrupt number
558 void openpic_cause_IPI(u_int ipi, cpumask_t cpumask)
560 cpumask_t phys;
561 DECL_THIS_CPU;
563 CHECK_THIS_CPU;
564 check_arg_ipi(ipi);
565 phys = physmask(cpumask);
566 openpic_write(&OpenPIC->THIS_CPU.IPI_Dispatch(ipi),
567 cpus_addr(physmask(cpumask))[0]);
570 void openpic_request_IPIs(void)
572 int i;
575 * Make sure this matches what is defined in smp.c for
576 * smp_message_{pass|recv}() or what shows up in
577 * /proc/interrupts will be wrong!!! --Troy */
579 if (OpenPIC == NULL)
580 return;
582 /* IPIs are marked SA_INTERRUPT as they must run with irqs disabled */
583 request_irq(OPENPIC_VEC_IPI+open_pic_irq_offset,
584 openpic_ipi_action, SA_INTERRUPT,
585 "IPI0 (call function)", NULL);
586 request_irq(OPENPIC_VEC_IPI+open_pic_irq_offset+1,
587 openpic_ipi_action, SA_INTERRUPT,
588 "IPI1 (reschedule)", NULL);
589 request_irq(OPENPIC_VEC_IPI+open_pic_irq_offset+2,
590 openpic_ipi_action, SA_INTERRUPT,
591 "IPI2 (invalidate tlb)", NULL);
592 request_irq(OPENPIC_VEC_IPI+open_pic_irq_offset+3,
593 openpic_ipi_action, SA_INTERRUPT,
594 "IPI3 (xmon break)", NULL);
596 for ( i = 0; i < OPENPIC_NUM_IPI ; i++ )
597 openpic_enable_ipi(OPENPIC_VEC_IPI+open_pic_irq_offset+i);
601 * Do per-cpu setup for SMP systems.
603 * Get IPI's working and start taking interrupts.
604 * -- Cort
607 void __devinit do_openpic_setup_cpu(void)
609 #ifdef CONFIG_IRQ_ALL_CPUS
610 int i;
611 cpumask_t msk = CPU_MASK_NONE;
612 #endif
613 spin_lock(&openpic_setup_lock);
615 #ifdef CONFIG_IRQ_ALL_CPUS
616 cpu_set(smp_hw_index[smp_processor_id()], msk);
618 /* let the openpic know we want intrs. default affinity
619 * is 0xffffffff until changed via /proc
620 * That's how it's done on x86. If we want it differently, then
621 * we should make sure we also change the default values of irq_affinity
622 * in irq.c.
624 for (i = 0; i < NumSources; i++)
625 openpic_mapirq(i, msk, CPU_MASK_ALL);
626 #endif /* CONFIG_IRQ_ALL_CPUS */
627 openpic_set_priority(0);
629 spin_unlock(&openpic_setup_lock);
631 #endif /* CONFIG_SMP */
634 * Initialize a timer interrupt (and disable it)
636 * timer: OpenPIC timer number
637 * pri: interrupt source priority
638 * vec: the vector it will produce
640 static void __init openpic_inittimer(u_int timer, u_int pri, u_int vec)
642 check_arg_timer(timer);
643 check_arg_pri(pri);
644 check_arg_vec(vec);
645 openpic_safe_writefield(&OpenPIC->Global.Timer[timer].Vector_Priority,
646 OPENPIC_PRIORITY_MASK | OPENPIC_VECTOR_MASK,
647 (pri << OPENPIC_PRIORITY_SHIFT) | vec);
651 * Map a timer interrupt to one or more CPUs
653 static void __init openpic_maptimer(u_int timer, cpumask_t cpumask)
655 cpumask_t phys = physmask(cpumask);
656 check_arg_timer(timer);
657 openpic_write(&OpenPIC->Global.Timer[timer].Destination,
658 cpus_addr(phys)[0]);
662 * Initalize the interrupt source which will generate an NMI.
663 * This raises the interrupt's priority from 8 to 9.
665 * irq: The logical IRQ which generates an NMI.
667 void __init
668 openpic_init_nmi_irq(u_int irq)
670 check_arg_irq(irq);
671 openpic_safe_writefield(&ISR[irq - open_pic_irq_offset]->Vector_Priority,
672 OPENPIC_PRIORITY_MASK,
673 9 << OPENPIC_PRIORITY_SHIFT);
678 * All functions below take an offset'ed irq argument
683 * Hookup a cascade to the OpenPIC.
686 static struct irqaction openpic_cascade_irqaction = {
687 .handler = no_action,
688 .flags = SA_INTERRUPT,
689 .mask = CPU_MASK_NONE,
692 void __init
693 openpic_hookup_cascade(u_int irq, char *name,
694 int (*cascade_fn)(struct pt_regs *))
696 openpic_cascade_irq = irq;
697 openpic_cascade_fn = cascade_fn;
699 if (setup_irq(irq, &openpic_cascade_irqaction))
700 printk("Unable to get OpenPIC IRQ %d for cascade\n",
701 irq - open_pic_irq_offset);
705 * Enable/disable an external interrupt source
707 * Externally called, irq is an offseted system-wide interrupt number
709 static void openpic_enable_irq(u_int irq)
711 volatile u_int __iomem *vpp;
713 check_arg_irq(irq);
714 vpp = &ISR[irq - open_pic_irq_offset]->Vector_Priority;
715 openpic_clearfield(vpp, OPENPIC_MASK);
716 /* make sure mask gets to controller before we return to user */
717 do {
718 mb(); /* sync is probably useless here */
719 } while (openpic_readfield(vpp, OPENPIC_MASK));
722 static void openpic_disable_irq(u_int irq)
724 volatile u_int __iomem *vpp;
725 u32 vp;
727 check_arg_irq(irq);
728 vpp = &ISR[irq - open_pic_irq_offset]->Vector_Priority;
729 openpic_setfield(vpp, OPENPIC_MASK);
730 /* make sure mask gets to controller before we return to user */
731 do {
732 mb(); /* sync is probably useless here */
733 vp = openpic_readfield(vpp, OPENPIC_MASK | OPENPIC_ACTIVITY);
734 } while((vp & OPENPIC_ACTIVITY) && !(vp & OPENPIC_MASK));
737 #ifdef CONFIG_SMP
739 * Enable/disable an IPI interrupt source
741 * Externally called, irq is an offseted system-wide interrupt number
743 void openpic_enable_ipi(u_int irq)
745 irq -= (OPENPIC_VEC_IPI+open_pic_irq_offset);
746 check_arg_ipi(irq);
747 openpic_clearfield_IPI(&OpenPIC->Global.IPI_Vector_Priority(irq), OPENPIC_MASK);
751 void openpic_disable_ipi(u_int irq)
753 irq -= (OPENPIC_VEC_IPI+open_pic_irq_offset);
754 check_arg_ipi(irq);
755 openpic_setfield_IPI(&OpenPIC->Global.IPI_Vector_Priority(irq), OPENPIC_MASK);
757 #endif
760 * Initialize an interrupt source (and disable it!)
762 * irq: OpenPIC interrupt number
763 * pri: interrupt source priority
764 * vec: the vector it will produce
765 * pol: polarity (1 for positive, 0 for negative)
766 * sense: 1 for level, 0 for edge
768 static void __init
769 openpic_initirq(u_int irq, u_int pri, u_int vec, int pol, int sense)
771 openpic_safe_writefield(&ISR[irq]->Vector_Priority,
772 OPENPIC_PRIORITY_MASK | OPENPIC_VECTOR_MASK |
773 OPENPIC_SENSE_MASK | OPENPIC_POLARITY_MASK,
774 (pri << OPENPIC_PRIORITY_SHIFT) | vec |
775 (pol ? OPENPIC_POLARITY_POSITIVE :
776 OPENPIC_POLARITY_NEGATIVE) |
777 (sense ? OPENPIC_SENSE_LEVEL : OPENPIC_SENSE_EDGE));
781 * Map an interrupt source to one or more CPUs
783 static void openpic_mapirq(u_int irq, cpumask_t physmask, cpumask_t keepmask)
785 if (ISR[irq] == 0)
786 return;
787 if (!cpus_empty(keepmask)) {
788 cpumask_t irqdest = { .bits[0] = openpic_read(&ISR[irq]->Destination) };
789 cpus_and(irqdest, irqdest, keepmask);
790 cpus_or(physmask, physmask, irqdest);
792 openpic_write(&ISR[irq]->Destination, cpus_addr(physmask)[0]);
795 #ifdef notused
797 * Set the sense for an interrupt source (and disable it!)
799 * sense: 1 for level, 0 for edge
801 static void openpic_set_sense(u_int irq, int sense)
803 if (ISR[irq] != 0)
804 openpic_safe_writefield(&ISR[irq]->Vector_Priority,
805 OPENPIC_SENSE_LEVEL,
806 (sense ? OPENPIC_SENSE_LEVEL : 0));
808 #endif /* notused */
810 /* No spinlocks, should not be necessary with the OpenPIC
811 * (1 register = 1 interrupt and we have the desc lock).
813 static void openpic_ack_irq(unsigned int irq_nr)
815 #ifdef __SLOW_VERSION__
816 openpic_disable_irq(irq_nr);
817 openpic_eoi();
818 #else
819 if ((irq_desc[irq_nr].status & IRQ_LEVEL) == 0)
820 openpic_eoi();
821 #endif
824 static void openpic_end_irq(unsigned int irq_nr)
826 #ifdef __SLOW_VERSION__
827 if (!(irq_desc[irq_nr].status & (IRQ_DISABLED|IRQ_INPROGRESS))
828 && irq_desc[irq_nr].action)
829 openpic_enable_irq(irq_nr);
830 #else
831 if ((irq_desc[irq_nr].status & IRQ_LEVEL) != 0)
832 openpic_eoi();
833 #endif
836 static void openpic_set_affinity(unsigned int irq_nr, cpumask_t cpumask)
838 openpic_mapirq(irq_nr - open_pic_irq_offset, physmask(cpumask), CPU_MASK_NONE);
841 #ifdef CONFIG_SMP
842 static void openpic_ack_ipi(unsigned int irq_nr)
844 openpic_eoi();
847 static void openpic_end_ipi(unsigned int irq_nr)
851 static irqreturn_t openpic_ipi_action(int cpl, void *dev_id, struct pt_regs *regs)
853 smp_message_recv(cpl-OPENPIC_VEC_IPI-open_pic_irq_offset, regs);
854 return IRQ_HANDLED;
857 #endif /* CONFIG_SMP */
860 openpic_get_irq(struct pt_regs *regs)
862 int irq = openpic_irq();
865 * Check for the cascade interrupt and call the cascaded
866 * interrupt controller function (usually i8259_irq) if so.
867 * This should move to irq.c eventually. -- paulus
869 if (irq == openpic_cascade_irq && openpic_cascade_fn != NULL) {
870 int cirq = openpic_cascade_fn(regs);
872 /* Allow for the cascade being shared with other devices */
873 if (cirq != -1) {
874 irq = cirq;
875 openpic_eoi();
877 } else if (irq == OPENPIC_VEC_SPURIOUS)
878 irq = -1;
879 return irq;
882 #ifdef CONFIG_SMP
883 void
884 smp_openpic_message_pass(int target, int msg, unsigned long data, int wait)
886 cpumask_t mask = CPU_MASK_ALL;
887 /* make sure we're sending something that translates to an IPI */
888 if (msg > 0x3) {
889 printk("SMP %d: smp_message_pass: unknown msg %d\n",
890 smp_processor_id(), msg);
891 return;
893 switch (target) {
894 case MSG_ALL:
895 openpic_cause_IPI(msg, mask);
896 break;
897 case MSG_ALL_BUT_SELF:
898 cpu_clear(smp_processor_id(), mask);
899 openpic_cause_IPI(msg, mask);
900 break;
901 default:
902 openpic_cause_IPI(msg, cpumask_of_cpu(target));
903 break;
906 #endif /* CONFIG_SMP */
908 #ifdef CONFIG_PM
911 * We implement the IRQ controller as a sysdev and put it
912 * to sleep at powerdown stage (the callback is named suspend,
913 * but it's old semantics, for the Device Model, it's really
914 * powerdown). The possible problem is that another sysdev that
915 * happens to be suspend after this one will have interrupts off,
916 * that may be an issue... For now, this isn't an issue on pmac
917 * though...
920 static u32 save_ipi_vp[OPENPIC_NUM_IPI];
921 static u32 save_irq_src_vp[OPENPIC_MAX_SOURCES];
922 static u32 save_irq_src_dest[OPENPIC_MAX_SOURCES];
923 static u32 save_cpu_task_pri[OPENPIC_MAX_PROCESSORS];
924 static int openpic_suspend_count;
926 static void openpic_cached_enable_irq(u_int irq)
928 check_arg_irq(irq);
929 save_irq_src_vp[irq - open_pic_irq_offset] &= ~OPENPIC_MASK;
932 static void openpic_cached_disable_irq(u_int irq)
934 check_arg_irq(irq);
935 save_irq_src_vp[irq - open_pic_irq_offset] |= OPENPIC_MASK;
938 /* WARNING: Can be called directly by the cpufreq code with NULL parameter,
939 * we need something better to deal with that... Maybe switch to S1 for
940 * cpufreq changes
942 int openpic_suspend(struct sys_device *sysdev, u32 state)
944 int i;
945 unsigned long flags;
947 spin_lock_irqsave(&openpic_setup_lock, flags);
949 if (openpic_suspend_count++ > 0) {
950 spin_unlock_irqrestore(&openpic_setup_lock, flags);
951 return 0;
954 openpic_set_priority(0xf);
956 open_pic.enable = openpic_cached_enable_irq;
957 open_pic.disable = openpic_cached_disable_irq;
959 for (i=0; i<NumProcessors; i++) {
960 save_cpu_task_pri[i] = openpic_read(&OpenPIC->Processor[i].Current_Task_Priority);
961 openpic_writefield(&OpenPIC->Processor[i].Current_Task_Priority,
962 OPENPIC_CURRENT_TASK_PRIORITY_MASK, 0xf);
965 for (i=0; i<OPENPIC_NUM_IPI; i++)
966 save_ipi_vp[i] = openpic_read(&OpenPIC->Global.IPI_Vector_Priority(i));
967 for (i=0; i<NumSources; i++) {
968 if (ISR[i] == 0)
969 continue;
970 save_irq_src_vp[i] = openpic_read(&ISR[i]->Vector_Priority) & ~OPENPIC_ACTIVITY;
971 save_irq_src_dest[i] = openpic_read(&ISR[i]->Destination);
974 spin_unlock_irqrestore(&openpic_setup_lock, flags);
976 return 0;
979 /* WARNING: Can be called directly by the cpufreq code with NULL parameter,
980 * we need something better to deal with that... Maybe switch to S1 for
981 * cpufreq changes
983 int openpic_resume(struct sys_device *sysdev)
985 int i;
986 unsigned long flags;
987 u32 vppmask = OPENPIC_PRIORITY_MASK | OPENPIC_VECTOR_MASK |
988 OPENPIC_SENSE_MASK | OPENPIC_POLARITY_MASK |
989 OPENPIC_MASK;
991 spin_lock_irqsave(&openpic_setup_lock, flags);
993 if ((--openpic_suspend_count) > 0) {
994 spin_unlock_irqrestore(&openpic_setup_lock, flags);
995 return 0;
998 openpic_reset();
1000 /* OpenPIC sometimes seem to need some time to be fully back up... */
1001 do {
1002 openpic_set_spurious(OPENPIC_VEC_SPURIOUS);
1003 } while(openpic_readfield(&OpenPIC->Global.Spurious_Vector, OPENPIC_VECTOR_MASK)
1004 != OPENPIC_VEC_SPURIOUS);
1006 openpic_disable_8259_pass_through();
1008 for (i=0; i<OPENPIC_NUM_IPI; i++)
1009 openpic_write(&OpenPIC->Global.IPI_Vector_Priority(i),
1010 save_ipi_vp[i]);
1011 for (i=0; i<NumSources; i++) {
1012 if (ISR[i] == 0)
1013 continue;
1014 openpic_write(&ISR[i]->Destination, save_irq_src_dest[i]);
1015 openpic_write(&ISR[i]->Vector_Priority, save_irq_src_vp[i]);
1016 /* make sure mask gets to controller before we return to user */
1017 do {
1018 openpic_write(&ISR[i]->Vector_Priority, save_irq_src_vp[i]);
1019 } while (openpic_readfield(&ISR[i]->Vector_Priority, vppmask)
1020 != (save_irq_src_vp[i] & vppmask));
1022 for (i=0; i<NumProcessors; i++)
1023 openpic_write(&OpenPIC->Processor[i].Current_Task_Priority,
1024 save_cpu_task_pri[i]);
1026 open_pic.enable = openpic_enable_irq;
1027 open_pic.disable = openpic_disable_irq;
1029 openpic_set_priority(0);
1031 spin_unlock_irqrestore(&openpic_setup_lock, flags);
1033 return 0;
1036 #endif /* CONFIG_PM */
1038 static struct sysdev_class openpic_sysclass = {
1039 set_kset_name("openpic"),
1042 static struct sys_device device_openpic = {
1043 .id = 0,
1044 .cls = &openpic_sysclass,
1047 static struct sysdev_driver driver_openpic = {
1048 #ifdef CONFIG_PM
1049 .suspend = &openpic_suspend,
1050 .resume = &openpic_resume,
1051 #endif /* CONFIG_PM */
1054 static int __init init_openpic_sysfs(void)
1056 int rc;
1058 if (!OpenPIC_Addr)
1059 return -ENODEV;
1060 printk(KERN_DEBUG "Registering openpic with sysfs...\n");
1061 rc = sysdev_class_register(&openpic_sysclass);
1062 if (rc) {
1063 printk(KERN_ERR "Failed registering openpic sys class\n");
1064 return -ENODEV;
1066 rc = sysdev_register(&device_openpic);
1067 if (rc) {
1068 printk(KERN_ERR "Failed registering openpic sys device\n");
1069 return -ENODEV;
1071 rc = sysdev_driver_register(&openpic_sysclass, &driver_openpic);
1072 if (rc) {
1073 printk(KERN_ERR "Failed registering openpic sys driver\n");
1074 return -ENODEV;
1076 return 0;
1079 subsys_initcall(init_openpic_sysfs);