2 * arch/sh/boards/superh/microdev/irq.c
4 * Copyright (C) 2003 Sean McGoogan (Sean.McGoogan@superh.com)
6 * SuperH SH4-202 MicroDev board support.
8 * May be copied or modified under the terms of the GNU General Public
9 * License. See linux/COPYING for more information.
12 #include <linux/init.h>
13 #include <linux/irq.h>
14 #include <linux/interrupt.h>
15 #include <asm/system.h>
17 #include <asm/microdev.h>
19 #define NUM_EXTERNAL_IRQS 16 /* IRL0 .. IRL15 */
22 unsigned char fpgaIrq
;
25 } fpgaIrqTable
[NUM_EXTERNAL_IRQS
] = {
26 { 0, 0, "unused" }, /* IRQ #0 IRL=15 0x200 */
27 { MICRODEV_FPGA_IRQ_KEYBOARD
, 1, "keyboard" }, /* IRQ #1 IRL=14 0x220 */
28 { MICRODEV_FPGA_IRQ_SERIAL1
, 1, "Serial #1"}, /* IRQ #2 IRL=13 0x240 */
29 { MICRODEV_FPGA_IRQ_ETHERNET
, 1, "Ethernet" }, /* IRQ #3 IRL=12 0x260 */
30 { MICRODEV_FPGA_IRQ_SERIAL2
, 0, "Serial #2"}, /* IRQ #4 IRL=11 0x280 */
31 { 0, 0, "unused" }, /* IRQ #5 IRL=10 0x2a0 */
32 { 0, 0, "unused" }, /* IRQ #6 IRL=9 0x2c0 */
33 { MICRODEV_FPGA_IRQ_USB_HC
, 1, "USB" }, /* IRQ #7 IRL=8 0x2e0 */
34 { MICRODEV_IRQ_PCI_INTA
, 1, "PCI INTA" }, /* IRQ #8 IRL=7 0x300 */
35 { MICRODEV_IRQ_PCI_INTB
, 1, "PCI INTB" }, /* IRQ #9 IRL=6 0x320 */
36 { MICRODEV_IRQ_PCI_INTC
, 1, "PCI INTC" }, /* IRQ #10 IRL=5 0x340 */
37 { MICRODEV_IRQ_PCI_INTD
, 1, "PCI INTD" }, /* IRQ #11 IRL=4 0x360 */
38 { MICRODEV_FPGA_IRQ_MOUSE
, 1, "mouse" }, /* IRQ #12 IRL=3 0x380 */
39 { MICRODEV_FPGA_IRQ_IDE2
, 1, "IDE #2" }, /* IRQ #13 IRL=2 0x3a0 */
40 { MICRODEV_FPGA_IRQ_IDE1
, 1, "IDE #1" }, /* IRQ #14 IRL=1 0x3c0 */
41 { 0, 0, "unused" }, /* IRQ #15 IRL=0 0x3e0 */
44 #if (MICRODEV_LINUX_IRQ_KEYBOARD != 1)
45 # error Inconsistancy in defining the IRQ# for Keyboard!
48 #if (MICRODEV_LINUX_IRQ_ETHERNET != 3)
49 # error Inconsistancy in defining the IRQ# for Ethernet!
52 #if (MICRODEV_LINUX_IRQ_USB_HC != 7)
53 # error Inconsistancy in defining the IRQ# for USB!
56 #if (MICRODEV_LINUX_IRQ_MOUSE != 12)
57 # error Inconsistancy in defining the IRQ# for PS/2 Mouse!
60 #if (MICRODEV_LINUX_IRQ_IDE2 != 13)
61 # error Inconsistancy in defining the IRQ# for secondary IDE!
64 #if (MICRODEV_LINUX_IRQ_IDE1 != 14)
65 # error Inconsistancy in defining the IRQ# for primary IDE!
68 static void enable_microdev_irq(unsigned int irq
);
69 static void disable_microdev_irq(unsigned int irq
);
71 /* shutdown is same as "disable" */
72 #define shutdown_microdev_irq disable_microdev_irq
74 static void mask_and_ack_microdev(unsigned int);
75 static void end_microdev_irq(unsigned int irq
);
77 static unsigned int startup_microdev_irq(unsigned int irq
)
79 enable_microdev_irq(irq
);
80 return 0; /* never anything pending */
83 static struct hw_interrupt_type microdev_irq_type
= {
84 .typename
= "MicroDev-IRQ",
85 .startup
= startup_microdev_irq
,
86 .shutdown
= shutdown_microdev_irq
,
87 .enable
= enable_microdev_irq
,
88 .disable
= disable_microdev_irq
,
89 .ack
= mask_and_ack_microdev
,
90 .end
= end_microdev_irq
93 static void disable_microdev_irq(unsigned int irq
)
97 if (irq
>= NUM_EXTERNAL_IRQS
)
99 if (!fpgaIrqTable
[irq
].mapped
)
102 fpgaIrq
= fpgaIrqTable
[irq
].fpgaIrq
;
104 /* disable interrupts on the FPGA INTC register */
105 ctrl_outl(MICRODEV_FPGA_INTC_MASK(fpgaIrq
), MICRODEV_FPGA_INTDSB_REG
);
108 static void enable_microdev_irq(unsigned int irq
)
110 unsigned long priorityReg
, priorities
, pri
;
111 unsigned int fpgaIrq
;
113 if (unlikely(irq
>= NUM_EXTERNAL_IRQS
))
115 if (unlikely(!fpgaIrqTable
[irq
].mapped
))
120 fpgaIrq
= fpgaIrqTable
[irq
].fpgaIrq
;
121 priorityReg
= MICRODEV_FPGA_INTPRI_REG(fpgaIrq
);
123 /* set priority for the interrupt */
124 priorities
= ctrl_inl(priorityReg
);
125 priorities
&= ~MICRODEV_FPGA_INTPRI_MASK(fpgaIrq
);
126 priorities
|= MICRODEV_FPGA_INTPRI_LEVEL(fpgaIrq
, pri
);
127 ctrl_outl(priorities
, priorityReg
);
129 /* enable interrupts on the FPGA INTC register */
130 ctrl_outl(MICRODEV_FPGA_INTC_MASK(fpgaIrq
), MICRODEV_FPGA_INTENB_REG
);
133 /* This functions sets the desired irq handler to be a MicroDev type */
134 static void __init
make_microdev_irq(unsigned int irq
)
136 disable_irq_nosync(irq
);
137 irq_desc
[irq
].chip
= µdev_irq_type
;
138 disable_microdev_irq(irq
);
141 static void mask_and_ack_microdev(unsigned int irq
)
143 disable_microdev_irq(irq
);
146 static void end_microdev_irq(unsigned int irq
)
148 if (!(irq_desc
[irq
].status
& (IRQ_DISABLED
|IRQ_INPROGRESS
)))
149 enable_microdev_irq(irq
);
152 extern void __init
init_microdev_irq(void)
156 /* disable interrupts on the FPGA INTC register */
157 ctrl_outl(~0ul, MICRODEV_FPGA_INTDSB_REG
);
159 for (i
= 0; i
< NUM_EXTERNAL_IRQS
; i
++)
160 make_microdev_irq(i
);
163 extern void microdev_print_fpga_intc_status(void)
165 volatile unsigned int * const intenb
= (unsigned int*)MICRODEV_FPGA_INTENB_REG
;
166 volatile unsigned int * const intdsb
= (unsigned int*)MICRODEV_FPGA_INTDSB_REG
;
167 volatile unsigned int * const intpria
= (unsigned int*)MICRODEV_FPGA_INTPRI_REG(0);
168 volatile unsigned int * const intprib
= (unsigned int*)MICRODEV_FPGA_INTPRI_REG(8);
169 volatile unsigned int * const intpric
= (unsigned int*)MICRODEV_FPGA_INTPRI_REG(16);
170 volatile unsigned int * const intprid
= (unsigned int*)MICRODEV_FPGA_INTPRI_REG(24);
171 volatile unsigned int * const intsrc
= (unsigned int*)MICRODEV_FPGA_INTSRC_REG
;
172 volatile unsigned int * const intreq
= (unsigned int*)MICRODEV_FPGA_INTREQ_REG
;
174 printk("-------------------------- microdev_print_fpga_intc_status() ------------------\n");
175 printk("FPGA_INTENB = 0x%08x\n", *intenb
);
176 printk("FPGA_INTDSB = 0x%08x\n", *intdsb
);
177 printk("FPGA_INTSRC = 0x%08x\n", *intsrc
);
178 printk("FPGA_INTREQ = 0x%08x\n", *intreq
);
179 printk("FPGA_INTPRI[3..0] = %08x:%08x:%08x:%08x\n", *intprid
, *intpric
, *intprib
, *intpria
);
180 printk("-------------------------------------------------------------------------------\n");