2 * linux/arch/mips/dec/kn02-irq.c
4 * DECstation 5000/200 (KN02) Control and Status Register
7 * Copyright (c) 2002, 2003, 2005 Maciej W. Rozycki
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
15 #include <linux/init.h>
16 #include <linux/irq.h>
17 #include <linux/spinlock.h>
18 #include <linux/types.h>
20 #include <asm/dec/kn02.h>
24 * Bits 7:0 of the Control Register are write-only -- the
25 * corresponding bits of the Status Register have a different
26 * meaning. Hence we use a cache. It speeds up things a bit
29 * There is no default value -- it has to be initialized.
32 DEFINE_SPINLOCK(kn02_lock
);
35 static int kn02_irq_base
;
38 static inline void unmask_kn02_irq(unsigned int irq
)
40 volatile u32
*csr
= (volatile u32
*)CKSEG1ADDR(KN02_SLOT_BASE
+
43 cached_kn02_csr
|= (1 << (irq
- kn02_irq_base
+ 16));
44 *csr
= cached_kn02_csr
;
47 static inline void mask_kn02_irq(unsigned int irq
)
49 volatile u32
*csr
= (volatile u32
*)CKSEG1ADDR(KN02_SLOT_BASE
+
52 cached_kn02_csr
&= ~(1 << (irq
- kn02_irq_base
+ 16));
53 *csr
= cached_kn02_csr
;
56 static inline void enable_kn02_irq(unsigned int irq
)
60 spin_lock_irqsave(&kn02_lock
, flags
);
62 spin_unlock_irqrestore(&kn02_lock
, flags
);
65 static inline void disable_kn02_irq(unsigned int irq
)
69 spin_lock_irqsave(&kn02_lock
, flags
);
71 spin_unlock_irqrestore(&kn02_lock
, flags
);
75 static unsigned int startup_kn02_irq(unsigned int irq
)
81 #define shutdown_kn02_irq disable_kn02_irq
83 static void ack_kn02_irq(unsigned int irq
)
85 spin_lock(&kn02_lock
);
87 spin_unlock(&kn02_lock
);
91 static void end_kn02_irq(unsigned int irq
)
93 if (!(irq_desc
[irq
].status
& (IRQ_DISABLED
| IRQ_INPROGRESS
)))
97 static struct hw_interrupt_type kn02_irq_type
= {
98 .typename
= "KN02-CSR",
99 .startup
= startup_kn02_irq
,
100 .shutdown
= shutdown_kn02_irq
,
101 .enable
= enable_kn02_irq
,
102 .disable
= disable_kn02_irq
,
108 void __init
init_kn02_irqs(int base
)
110 volatile u32
*csr
= (volatile u32
*)CKSEG1ADDR(KN02_SLOT_BASE
+
115 /* Mask interrupts. */
116 spin_lock_irqsave(&kn02_lock
, flags
);
117 cached_kn02_csr
&= ~KN02_CSR_IOINTEN
;
118 *csr
= cached_kn02_csr
;
120 spin_unlock_irqrestore(&kn02_lock
, flags
);
122 for (i
= base
; i
< base
+ KN02_IRQ_LINES
; i
++) {
123 irq_desc
[i
].status
= IRQ_DISABLED
;
124 irq_desc
[i
].action
= 0;
125 irq_desc
[i
].depth
= 1;
126 irq_desc
[i
].handler
= &kn02_irq_type
;
129 kn02_irq_base
= base
;