blob: 3704aafdc3d7349381af306f35ec32167b604489 [file] [log] [blame]
Graeme Russabf0cd32009-02-24 21:13:40 +11001/*
2 * (C) Copyright 2009
Graeme Russdbf71152011-04-13 19:43:26 +10003 * Graeme Russ, <graeme.russ@gmail.com>
Graeme Russabf0cd32009-02-24 21:13:40 +11004 *
5 * (C) Copyright 2002
Albert ARIBAUDfa82f872011-08-04 18:45:45 +02006 * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
Graeme Russabf0cd32009-02-24 21:13:40 +11007 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Graeme Russabf0cd32009-02-24 21:13:40 +11009 */
10
11/*
12 * This file provides the interrupt handling functionality for systems
13 * based on the standard PC/AT architecture using two cascaded i8259
14 * Programmable Interrupt Controllers.
15 */
16
17#include <common.h>
18#include <asm/io.h>
19#include <asm/i8259.h>
20#include <asm/ibmpc.h>
21#include <asm/interrupt.h>
22
Bin Meng1dae2e02014-11-20 16:11:16 +080023int i8259_init(void)
Graeme Russabf0cd32009-02-24 21:13:40 +110024{
25 u8 i;
26
Graeme Russabf0cd32009-02-24 21:13:40 +110027 /* Mask all interrupts */
28 outb(0xff, MASTER_PIC + IMR);
29 outb(0xff, SLAVE_PIC + IMR);
30
31 /* Master PIC */
32 /* Place master PIC interrupts at INT20 */
33 /* ICW3, One slave PIC is present */
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);
38
39 for (i = 0; i < 8; i++)
40 outb(OCW2_SEOI | i, MASTER_PIC + OCW2);
41
42 /* Slave PIC */
43 /* Place slave PIC interrupts at INT28 */
44 /* Slave ID */
45 outb(ICW1_SEL|ICW1_EICW4, SLAVE_PIC + ICW1);
46 outb(0x28, SLAVE_PIC + ICW2);
47 outb(0x02, SLAVE_PIC + ICW3);
48 outb(ICW4_PM, SLAVE_PIC + ICW4);
49
50 for (i = 0; i < 8; i++)
51 outb(OCW2_SEOI | i, SLAVE_PIC + OCW2);
52
53 /*
54 * Enable cascaded interrupts by unmasking the cascade IRQ pin of
55 * the master PIC
56 */
Graeme Russ83088af2011-11-08 02:33:15 +000057 unmask_irq(2);
Graeme Russabf0cd32009-02-24 21:13:40 +110058
Simon Glassa0bd8512014-11-14 18:18:31 -070059 /* Interrupt 9 should be level triggered (SCI). The OS might do this */
60 configure_irq_trigger(9, true);
61
Graeme Russabf0cd32009-02-24 21:13:40 +110062 return 0;
63}
64
65void mask_irq(int irq)
66{
67 int imr_port;
68
Bin Meng6c505272015-10-22 19:13:26 -070069 if (irq >= SYS_NUM_IRQS)
Graeme Russabf0cd32009-02-24 21:13:40 +110070 return;
71
72 if (irq > 7)
73 imr_port = SLAVE_PIC + IMR;
74 else
75 imr_port = MASTER_PIC + IMR;
76
77 outb(inb(imr_port) | (1 << (irq & 7)), imr_port);
78}
79
80void unmask_irq(int irq)
81{
82 int imr_port;
83
Bin Meng6c505272015-10-22 19:13:26 -070084 if (irq >= SYS_NUM_IRQS)
Graeme Russabf0cd32009-02-24 21:13:40 +110085 return;
86
87 if (irq > 7)
88 imr_port = SLAVE_PIC + IMR;
89 else
90 imr_port = MASTER_PIC + IMR;
91
92 outb(inb(imr_port) & ~(1 << (irq & 7)), imr_port);
93}
94
95void specific_eoi(int irq)
96{
Bin Meng6c505272015-10-22 19:13:26 -070097 if (irq >= SYS_NUM_IRQS)
Graeme Russabf0cd32009-02-24 21:13:40 +110098 return;
99
100 if (irq > 7) {
101 /*
102 * IRQ is on the slave - Issue a corresponding EOI to the
103 * slave PIC and an EOI for IRQ2 (the cascade interrupt)
104 * on the master PIC
105 */
106 outb(OCW2_SEOI | (irq & 7), SLAVE_PIC + OCW2);
107 irq = SEOI_IR2;
108 }
109
110 outb(OCW2_SEOI | irq, MASTER_PIC + OCW2);
111}
Simon Glassa0bd8512014-11-14 18:18:31 -0700112
113#define ELCR1 0x4d0
114#define ELCR2 0x4d1
115
116void configure_irq_trigger(int int_num, bool is_level_triggered)
117{
118 u16 int_bits = inb(ELCR1) | (((u16)inb(ELCR2)) << 8);
119
120 debug("%s: current interrupts are 0x%x\n", __func__, int_bits);
121 if (is_level_triggered)
122 int_bits |= (1 << int_num);
123 else
124 int_bits &= ~(1 << int_num);
125
126 /* Write new values */
127 debug("%s: try to set interrupts 0x%x\n", __func__, int_bits);
128 outb((u8)(int_bits & 0xff), ELCR1);
129 outb((u8)(int_bits >> 8), ELCR2);
130
131#ifdef PARANOID_IRQ_TRIGGERS
132 /*
133 * Try reading back the new values. This seems like an error but is
134 * not
135 */
136 if (inb(ELCR1) != (int_bits & 0xff)) {
137 printf("%s: lower order bits are wrong: want 0x%x, got 0x%x\n",
138 __func__, (int_bits & 0xff), inb(ELCR1));
139 }
140
141 if (inb(ELCR2) != (int_bits >> 8)) {
142 printf("%s: higher order bits are wrong: want 0x%x, got 0x%x\n",
143 __func__, (int_bits>>8), inb(ELCR2));
144 }
145#endif
146}