2 * linux/arch/mips/dec/kn02-irq.c
4 * DECstation 5000/200 (KN02) Control and Status Register
7 * Copyright (c) 2002, 2003 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
*)KN02_CSR_BASE
;
42 cached_kn02_csr
|= (1 << (irq
- kn02_irq_base
+ 16));
43 *csr
= cached_kn02_csr
;
46 static inline void mask_kn02_irq(unsigned int irq
)
48 volatile u32
*csr
= (volatile u32
*)KN02_CSR_BASE
;
50 cached_kn02_csr
&= ~(1 << (irq
- kn02_irq_base
+ 16));
51 *csr
= cached_kn02_csr
;
54 static inline void enable_kn02_irq(unsigned int irq
)
58 spin_lock_irqsave(&kn02_lock
, flags
);
60 spin_unlock_irqrestore(&kn02_lock
, flags
);
63 static inline void disable_kn02_irq(unsigned int irq
)
67 spin_lock_irqsave(&kn02_lock
, flags
);
69 spin_unlock_irqrestore(&kn02_lock
, flags
);
73 static unsigned int startup_kn02_irq(unsigned int irq
)
79 #define shutdown_kn02_irq disable_kn02_irq
81 static void ack_kn02_irq(unsigned int irq
)
83 spin_lock(&kn02_lock
);
85 spin_unlock(&kn02_lock
);
89 static void end_kn02_irq(unsigned int irq
)
91 if (!(irq_desc
[irq
].status
& (IRQ_DISABLED
| IRQ_INPROGRESS
)))
95 static struct hw_interrupt_type kn02_irq_type
= {
96 .typename
= "KN02-CSR",
97 .startup
= startup_kn02_irq
,
98 .shutdown
= shutdown_kn02_irq
,
99 .enable
= enable_kn02_irq
,
100 .disable
= disable_kn02_irq
,
106 void __init
init_kn02_irqs(int base
)
108 volatile u32
*csr
= (volatile u32
*)KN02_CSR_BASE
;
112 /* Mask interrupts. */
113 spin_lock_irqsave(&kn02_lock
, flags
);
114 cached_kn02_csr
&= ~KN03_CSR_IOINTEN
;
115 *csr
= cached_kn02_csr
;
117 spin_unlock_irqrestore(&kn02_lock
, flags
);
119 for (i
= base
; i
< base
+ KN02_IRQ_LINES
; i
++) {
120 irq_desc
[i
].status
= IRQ_DISABLED
;
121 irq_desc
[i
].action
= 0;
122 irq_desc
[i
].depth
= 1;
123 irq_desc
[i
].handler
= &kn02_irq_type
;
126 kn02_irq_base
= base
;