blob: 2dc2fbd55b626166bfd8ca31f377b9e3c1d3fac6 [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
23#if CONFIG_SYS_NUM_IRQS != 16
24#error "CONFIG_SYS_NUM_IRQS must equal 16 if CONFIG_SYS_NUM_IRQS is defined"
25#endif
26
Graeme Russabf0cd32009-02-24 21:13:40 +110027int interrupt_init(void)
28{
29 u8 i;
30
31 disable_interrupts();
32
Graeme Russabf0cd32009-02-24 21:13:40 +110033 /* Mask all interrupts */
34 outb(0xff, MASTER_PIC + IMR);
35 outb(0xff, SLAVE_PIC + IMR);
36
37 /* Master PIC */
38 /* Place master PIC interrupts at INT20 */
39 /* ICW3, One slave PIC is present */
40 outb(ICW1_SEL|ICW1_EICW4, MASTER_PIC + ICW1);
41 outb(0x20, MASTER_PIC + ICW2);
42 outb(IR2, MASTER_PIC + ICW3);
43 outb(ICW4_PM, MASTER_PIC + ICW4);
44
45 for (i = 0; i < 8; i++)
46 outb(OCW2_SEOI | i, MASTER_PIC + OCW2);
47
48 /* Slave PIC */
49 /* Place slave PIC interrupts at INT28 */
50 /* Slave ID */
51 outb(ICW1_SEL|ICW1_EICW4, SLAVE_PIC + ICW1);
52 outb(0x28, SLAVE_PIC + ICW2);
53 outb(0x02, SLAVE_PIC + ICW3);
54 outb(ICW4_PM, SLAVE_PIC + ICW4);
55
56 for (i = 0; i < 8; i++)
57 outb(OCW2_SEOI | i, SLAVE_PIC + OCW2);
58
59 /*
60 * Enable cascaded interrupts by unmasking the cascade IRQ pin of
61 * the master PIC
62 */
Graeme Russ83088af2011-11-08 02:33:15 +000063 unmask_irq(2);
Graeme Russabf0cd32009-02-24 21:13:40 +110064
Simon Glassa0bd8512014-11-14 18:18:31 -070065 /* Interrupt 9 should be level triggered (SCI). The OS might do this */
66 configure_irq_trigger(9, true);
67
Graeme Russabf0cd32009-02-24 21:13:40 +110068 enable_interrupts();
69
70 return 0;
71}
72
73void mask_irq(int irq)
74{
75 int imr_port;
76
77 if (irq >= CONFIG_SYS_NUM_IRQS)
78 return;
79
80 if (irq > 7)
81 imr_port = SLAVE_PIC + IMR;
82 else
83 imr_port = MASTER_PIC + IMR;
84
85 outb(inb(imr_port) | (1 << (irq & 7)), imr_port);
86}
87
88void unmask_irq(int irq)
89{
90 int imr_port;
91
92 if (irq >= CONFIG_SYS_NUM_IRQS)
93 return;
94
95 if (irq > 7)
96 imr_port = SLAVE_PIC + IMR;
97 else
98 imr_port = MASTER_PIC + IMR;
99
100 outb(inb(imr_port) & ~(1 << (irq & 7)), imr_port);
101}
102
103void specific_eoi(int irq)
104{
105 if (irq >= CONFIG_SYS_NUM_IRQS)
106 return;
107
108 if (irq > 7) {
109 /*
110 * IRQ is on the slave - Issue a corresponding EOI to the
111 * slave PIC and an EOI for IRQ2 (the cascade interrupt)
112 * on the master PIC
113 */
114 outb(OCW2_SEOI | (irq & 7), SLAVE_PIC + OCW2);
115 irq = SEOI_IR2;
116 }
117
118 outb(OCW2_SEOI | irq, MASTER_PIC + OCW2);
119}
Simon Glassa0bd8512014-11-14 18:18:31 -0700120
121#define ELCR1 0x4d0
122#define ELCR2 0x4d1
123
124void configure_irq_trigger(int int_num, bool is_level_triggered)
125{
126 u16 int_bits = inb(ELCR1) | (((u16)inb(ELCR2)) << 8);
127
128 debug("%s: current interrupts are 0x%x\n", __func__, int_bits);
129 if (is_level_triggered)
130 int_bits |= (1 << int_num);
131 else
132 int_bits &= ~(1 << int_num);
133
134 /* Write new values */
135 debug("%s: try to set interrupts 0x%x\n", __func__, int_bits);
136 outb((u8)(int_bits & 0xff), ELCR1);
137 outb((u8)(int_bits >> 8), ELCR2);
138
139#ifdef PARANOID_IRQ_TRIGGERS
140 /*
141 * Try reading back the new values. This seems like an error but is
142 * not
143 */
144 if (inb(ELCR1) != (int_bits & 0xff)) {
145 printf("%s: lower order bits are wrong: want 0x%x, got 0x%x\n",
146 __func__, (int_bits & 0xff), inb(ELCR1));
147 }
148
149 if (inb(ELCR2) != (int_bits >> 8)) {
150 printf("%s: higher order bits are wrong: want 0x%x, got 0x%x\n",
151 __func__, (int_bits>>8), inb(ELCR2));
152 }
153#endif
154}