patch-2.1.110 linux/include/asm-arm/arch-nexuspci/irq.h
Next file: linux/include/asm-arm/arch-nexuspci/irqs.h
Previous file: linux/include/asm-arm/arch-ebsa285/serial.h
Back to the patch index
Back to the overall index
- Lines: 48
- Date:
Sat Jul 18 11:55:25 1998
- Orig file:
v2.1.109/linux/include/asm-arm/arch-nexuspci/irq.h
- Orig date:
Fri May 8 23:14:54 1998
diff -u --recursive --new-file v2.1.109/linux/include/asm-arm/arch-nexuspci/irq.h linux/include/asm-arm/arch-nexuspci/irq.h
@@ -4,35 +4,35 @@
* Copyright (C) 1998 Philip Blundell
*/
-#define INT_RESET ((volatile unsigned char *)0xfff00000)
-#define INT_ENABLE ((volatile unsigned char *)0xfff00000)
-#define INT_DISABLE ((volatile unsigned char *)0xfff00000)
+#include <asm/io.h>
-static __inline__ void mask_and_ack_irq(unsigned int irq)
-{
- INT_DISABLE[irq << 2] = 0;
- INT_RESET[irq << 2] = 0;
-}
+#define INTCONT 0xffe00000
+
+extern unsigned long soft_irq_mask;
static __inline__ void mask_irq(unsigned int irq)
{
- INT_DISABLE[irq << 2] = 0;
+ writel((irq << 1), INTCONT);
+ soft_irq_mask &= ~(1<<irq);
}
+#define mask_and_ack_irq(_x) mask_irq(_x)
+
static __inline__ void unmask_irq(unsigned int irq)
{
- INT_ENABLE[irq << 2] = 0;
+ writel((irq << 1) + 1, INTCONT);
+ soft_irq_mask |= (1<<irq);
}
static __inline__ unsigned long get_enabled_irqs(void)
{
- return 0;
+ return soft_irq_mask;
}
static __inline__ void irq_init_irq(void)
{
unsigned int i;
/* Disable all interrupts initially. */
- for (i = 0; i < 8; i++)
+ for (i = 0; i < NR_IRQS; i++)
mask_irq(i);
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov