2 * Copyright 2002 Momentum Computer
3 * Author: mdharm@momenco.com
4 * Copyright (C) 2004 Ralf Baechle <ralf@linux-mips.org>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
11 #include <linux/module.h>
12 #include <linux/interrupt.h>
13 #include <linux/kernel.h>
14 #include <asm/ptrace.h>
15 #include <linux/sched.h>
16 #include <linux/kernel_stat.h>
19 #include <linux/mv643xx.h>
21 static unsigned int irq_base
;
23 static inline int ls1bit32(unsigned int x
)
27 s
= 16; if (x
<< 16 == 0) s
= 0; b
-= s
; x
<<= s
;
28 s
= 8; if (x
<< 8 == 0) s
= 0; b
-= s
; x
<<= s
;
29 s
= 4; if (x
<< 4 == 0) s
= 0; b
-= s
; x
<<= s
;
30 s
= 2; if (x
<< 2 == 0) s
= 0; b
-= s
; x
<<= s
;
31 s
= 1; if (x
<< 1 == 0) s
= 0; b
-= s
;
36 /* mask off an interrupt -- 1 is enable, 0 is disable */
37 static inline void mask_mv64340_irq(unsigned int irq
)
41 if (irq
< (irq_base
+ 32)) {
42 value
= MV_READ(MV64340_INTERRUPT0_MASK_0_LOW
);
43 value
&= ~(1 << (irq
- irq_base
));
44 MV_WRITE(MV64340_INTERRUPT0_MASK_0_LOW
, value
);
46 value
= MV_READ(MV64340_INTERRUPT0_MASK_0_HIGH
);
47 value
&= ~(1 << (irq
- irq_base
- 32));
48 MV_WRITE(MV64340_INTERRUPT0_MASK_0_HIGH
, value
);
52 /* unmask an interrupt -- 1 is enable, 0 is disable */
53 static inline void unmask_mv64340_irq(unsigned int irq
)
57 if (irq
< (irq_base
+ 32)) {
58 value
= MV_READ(MV64340_INTERRUPT0_MASK_0_LOW
);
59 value
|= 1 << (irq
- irq_base
);
60 MV_WRITE(MV64340_INTERRUPT0_MASK_0_LOW
, value
);
62 value
= MV_READ(MV64340_INTERRUPT0_MASK_0_HIGH
);
63 value
|= 1 << (irq
- irq_base
- 32);
64 MV_WRITE(MV64340_INTERRUPT0_MASK_0_HIGH
, value
);
69 * Enables the IRQ on Marvell Chip
71 static void enable_mv64340_irq(unsigned int irq
)
73 unmask_mv64340_irq(irq
);
77 * Initialize the IRQ on Marvell Chip
79 static unsigned int startup_mv64340_irq(unsigned int irq
)
81 unmask_mv64340_irq(irq
);
86 * Disables the IRQ on Marvell Chip
88 static void disable_mv64340_irq(unsigned int irq
)
90 mask_mv64340_irq(irq
);
94 * Masks and ACKs an IRQ
96 static void mask_and_ack_mv64340_irq(unsigned int irq
)
98 mask_mv64340_irq(irq
);
104 static void end_mv64340_irq(unsigned int irq
)
106 if (!(irq_desc
[irq
].status
& (IRQ_DISABLED
|IRQ_INPROGRESS
)))
107 unmask_mv64340_irq(irq
);
111 * Interrupt handler for interrupts coming from the Marvell chip.
112 * It could be built in ethernet ports etc...
114 void ll_mv64340_irq(struct pt_regs
*regs
)
116 unsigned int irq_src_low
, irq_src_high
;
117 unsigned int irq_mask_low
, irq_mask_high
;
119 /* read the interrupt status registers */
120 irq_mask_low
= MV_READ(MV64340_INTERRUPT0_MASK_0_LOW
);
121 irq_mask_high
= MV_READ(MV64340_INTERRUPT0_MASK_0_HIGH
);
122 irq_src_low
= MV_READ(MV64340_MAIN_INTERRUPT_CAUSE_LOW
);
123 irq_src_high
= MV_READ(MV64340_MAIN_INTERRUPT_CAUSE_HIGH
);
125 /* mask for just the interrupts we want */
126 irq_src_low
&= irq_mask_low
;
127 irq_src_high
&= irq_mask_high
;
130 do_IRQ(ls1bit32(irq_src_low
) + irq_base
, regs
);
132 do_IRQ(ls1bit32(irq_src_high
) + irq_base
+ 32, regs
);
135 #define shutdown_mv64340_irq disable_mv64340_irq
137 struct hw_interrupt_type mv64340_irq_type
= {
140 shutdown_mv64340_irq
,
143 mask_and_ack_mv64340_irq
,
148 void __init
mv64340_irq_init(unsigned int base
)
152 /* Reset irq handlers pointers to NULL */
153 for (i
= base
; i
< base
+ 64; i
++) {
154 irq_desc
[i
].status
= IRQ_DISABLED
;
155 irq_desc
[i
].action
= 0;
156 irq_desc
[i
].depth
= 2;
157 irq_desc
[i
].handler
= &mv64340_irq_type
;