1 // SPDX-License-Identifier: GPL-2.0+
11 * This file provides the interrupt handling functionality for systems
12 * based on the standard PC/AT architecture using two cascaded i8259
13 * Programmable Interrupt Controllers.
18 #include <asm/i8259.h>
19 #include <asm/ibmpc.h>
20 #include <asm/interrupt.h>
26 /* Mask all interrupts */
27 outb(0xff, MASTER_PIC + IMR);
28 outb(0xff, SLAVE_PIC + IMR);
32 * Place master PIC interrupts at INT20
34 outb(ICW1_SEL | ICW1_EICW4, MASTER_PIC + ICW1);
35 outb(0x20, MASTER_PIC + ICW2);
36 outb(IR2, MASTER_PIC + ICW3);
37 outb(ICW4_PM, MASTER_PIC + ICW4);
39 for (i = 0; i < 8; i++)
40 outb(OCW2_SEOI | i, MASTER_PIC + OCW2);
44 * Place slave PIC interrupts at INT28
46 outb(ICW1_SEL | ICW1_EICW4, SLAVE_PIC + ICW1);
47 outb(0x28, SLAVE_PIC + ICW2);
48 outb(0x02, SLAVE_PIC + ICW3);
49 outb(ICW4_PM, SLAVE_PIC + ICW4);
51 for (i = 0; i < 8; i++)
52 outb(OCW2_SEOI | i, SLAVE_PIC + OCW2);
55 * Enable cascaded interrupts by unmasking the cascade IRQ pin of
60 /* Interrupt 9 should be level triggered (SCI). The OS might do this */
61 configure_irq_trigger(9, true);
66 void mask_irq(int irq)
70 if (irq >= SYS_NUM_IRQS)
74 imr_port = SLAVE_PIC + IMR;
76 imr_port = MASTER_PIC + IMR;
78 outb(inb(imr_port) | (1 << (irq & 7)), imr_port);
81 void unmask_irq(int irq)
85 if (irq >= SYS_NUM_IRQS)
89 imr_port = SLAVE_PIC + IMR;
91 imr_port = MASTER_PIC + IMR;
93 outb(inb(imr_port) & ~(1 << (irq & 7)), imr_port);
96 void specific_eoi(int irq)
98 if (irq >= SYS_NUM_IRQS)
103 * IRQ is on the slave - Issue a corresponding EOI to the
104 * slave PIC and an EOI for IRQ2 (the cascade interrupt)
107 outb(OCW2_SEOI | (irq & 7), SLAVE_PIC + OCW2);
111 outb(OCW2_SEOI | irq, MASTER_PIC + OCW2);
114 void configure_irq_trigger(int int_num, bool is_level_triggered)
116 u16 int_bits = inb(ELCR1) | (((u16)inb(ELCR2)) << 8);
118 debug("%s: current interrupts are 0x%x\n", __func__, int_bits);
119 if (is_level_triggered)
120 int_bits |= (1 << int_num);
122 int_bits &= ~(1 << int_num);
124 /* Write new values */
125 debug("%s: try to set interrupts 0x%x\n", __func__, int_bits);
126 outb((u8)(int_bits & 0xff), ELCR1);
127 outb((u8)(int_bits >> 8), ELCR2);