i8259.h revision 1.1 1 1.1 fvdl /* $NetBSD: i8259.h,v 1.1 2003/02/26 21:26:10 fvdl Exp $ */
2 1.1 fvdl
3 1.1 fvdl /*-
4 1.1 fvdl * Copyright (c) 1990 The Regents of the University of California.
5 1.1 fvdl * All rights reserved.
6 1.1 fvdl *
7 1.1 fvdl * This code is derived from software contributed to Berkeley by
8 1.1 fvdl * William Jolitz.
9 1.1 fvdl *
10 1.1 fvdl * Redistribution and use in source and binary forms, with or without
11 1.1 fvdl * modification, are permitted provided that the following conditions
12 1.1 fvdl * are met:
13 1.1 fvdl * 1. Redistributions of source code must retain the above copyright
14 1.1 fvdl * notice, this list of conditions and the following disclaimer.
15 1.1 fvdl * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 fvdl * notice, this list of conditions and the following disclaimer in the
17 1.1 fvdl * documentation and/or other materials provided with the distribution.
18 1.1 fvdl * 3. All advertising materials mentioning features or use of this software
19 1.1 fvdl * must display the following acknowledgement:
20 1.1 fvdl * This product includes software developed by the University of
21 1.1 fvdl * California, Berkeley and its contributors.
22 1.1 fvdl * 4. Neither the name of the University nor the names of its contributors
23 1.1 fvdl * may be used to endorse or promote products derived from this software
24 1.1 fvdl * without specific prior written permission.
25 1.1 fvdl *
26 1.1 fvdl * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 1.1 fvdl * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 1.1 fvdl * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 1.1 fvdl * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 1.1 fvdl * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 1.1 fvdl * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 1.1 fvdl * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 1.1 fvdl * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 1.1 fvdl * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 1.1 fvdl * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 1.1 fvdl * SUCH DAMAGE.
37 1.1 fvdl *
38 1.1 fvdl * @(#)icu.h 5.6 (Berkeley) 5/9/91
39 1.1 fvdl */
40 1.1 fvdl
41 1.1 fvdl #ifndef _X86_I8259_H_
42 1.1 fvdl #define _X86_I8259_H_
43 1.1 fvdl
44 1.1 fvdl #include <dev/isa/isareg.h>
45 1.1 fvdl
46 1.1 fvdl #ifndef _LOCORE
47 1.1 fvdl
48 1.1 fvdl /*
49 1.1 fvdl * Interrupt "level" mechanism variables, masks, and macros
50 1.1 fvdl */
51 1.1 fvdl extern unsigned i8259_imen; /* interrupt mask enable */
52 1.1 fvdl extern unsigned i8259_setmask(unsigned);
53 1.1 fvdl
54 1.1 fvdl #define SET_ICUS() (outb(IO_ICU1 + 1, imen), outb(IO_ICU2 + 1, imen >> 8))
55 1.1 fvdl
56 1.1 fvdl extern void i8259_default_setup(void);
57 1.1 fvdl extern void i8259_reinit(void);
58 1.1 fvdl
59 1.1 fvdl #endif /* !_LOCORE */
60 1.1 fvdl
61 1.1 fvdl /*
62 1.1 fvdl * Interrupt enable bits -- in order of priority
63 1.1 fvdl */
64 1.1 fvdl #define IRQ_SLAVE 2
65 1.1 fvdl
66 1.1 fvdl /*
67 1.1 fvdl * Interrupt Control offset into Interrupt descriptor table (IDT)
68 1.1 fvdl */
69 1.1 fvdl #define ICU_OFFSET 32 /* 0-31 are processor exceptions */
70 1.1 fvdl #define ICU_LEN 16 /* 32-47 are ISA interrupts */
71 1.1 fvdl
72 1.1 fvdl
73 1.1 fvdl #define ICU_HARDWARE_MASK
74 1.1 fvdl
75 1.1 fvdl /*
76 1.1 fvdl * These macros are fairly self explanatory. If ICU_SPECIAL_MASK_MODE is
77 1.1 fvdl * defined, we try to take advantage of the ICU's `special mask mode' by only
78 1.1 fvdl * EOIing the interrupts on return. This avoids the requirement of masking and
79 1.1 fvdl * unmasking. We can't do this without special mask mode, because the ICU
80 1.1 fvdl * would also hold interrupts that it thinks are of lower priority.
81 1.1 fvdl *
82 1.1 fvdl * Many machines do not support special mask mode, so by default we don't try
83 1.1 fvdl * to use it.
84 1.1 fvdl */
85 1.1 fvdl
86 1.1 fvdl #define IRQ_BIT(num) (1 << ((num) % 8))
87 1.1 fvdl #define IRQ_BYTE(num) ((num) >> 3)
88 1.1 fvdl
89 1.1 fvdl #define i8259_late_ack(num)
90 1.1 fvdl
91 1.1 fvdl #ifdef ICU_SPECIAL_MASK_MODE
92 1.1 fvdl
93 1.1 fvdl #define i8259_asm_ack1(num)
94 1.1 fvdl #define i8259_asm_ack2(num) \
95 1.1 fvdl movb $(0x60|IRQ_SLAVE),%al /* specific EOI for IRQ2 */ ;\
96 1.1 fvdl outb %al,$IO_ICU1
97 1.1 fvdl #define i8259_asm_mask(num)
98 1.1 fvdl #define i8259_asm_unmask(num) \
99 1.1 fvdl movb $(0x60|(num%8)),%al /* specific EOI */ ;\
100 1.1 fvdl outb %al,$ICUADDR
101 1.1 fvdl
102 1.1 fvdl #else /* ICU_SPECIAL_MASK_MODE */
103 1.1 fvdl
104 1.1 fvdl #ifndef AUTO_EOI_1
105 1.1 fvdl #define i8259_asm_ack1(num) \
106 1.1 fvdl movb $(0x60|(num%8)),%al /* specific EOI */ ;\
107 1.1 fvdl outb %al,$IO_ICU1
108 1.1 fvdl #else
109 1.1 fvdl #define i8259_asm_ack1(num)
110 1.1 fvdl #endif
111 1.1 fvdl
112 1.1 fvdl #ifndef AUTO_EOI_2
113 1.1 fvdl #define i8259_asm_ack2(num) \
114 1.1 fvdl movb $(0x60|(num%8)),%al /* specific EOI */ ;\
115 1.1 fvdl outb %al,$IO_ICU2 /* do the second ICU first */ ;\
116 1.1 fvdl movb $(0x60|IRQ_SLAVE),%al /* specific EOI for IRQ2 */ ;\
117 1.1 fvdl outb %al,$IO_ICU1
118 1.1 fvdl #else
119 1.1 fvdl #define i8259_asm_ack2(num)
120 1.1 fvdl #endif
121 1.1 fvdl
122 1.1 fvdl #ifdef PIC_MASKDELAY
123 1.1 fvdl #define MASKDELAY pushl %eax ; inb $0x84,%al ; popl %eax
124 1.1 fvdl #else
125 1.1 fvdl #define MASKDELAY
126 1.1 fvdl #endif
127 1.1 fvdl
128 1.1 fvdl #ifdef ICU_HARDWARE_MASK
129 1.1 fvdl
130 1.1 fvdl #define i8259_asm_mask(num) \
131 1.1 fvdl movb CVAR(i8259_imen) + IRQ_BYTE(num),%al ;\
132 1.1 fvdl orb $IRQ_BIT(num),%al ;\
133 1.1 fvdl movb %al,CVAR(i8259_imen) + IRQ_BYTE(num) ;\
134 1.1 fvdl MASKDELAY ;\
135 1.1 fvdl outb %al,$(ICUADDR+1)
136 1.1 fvdl #define i8259_asm_unmask(num) \
137 1.1 fvdl cli ;\
138 1.1 fvdl movb CVAR(i8259_imen) + IRQ_BYTE(num),%al ;\
139 1.1 fvdl andb $~IRQ_BIT(num),%al ;\
140 1.1 fvdl movb %al,CVAR(i8259_imen) + IRQ_BYTE(num) ;\
141 1.1 fvdl MASKDELAY ;\
142 1.1 fvdl outb %al,$(ICUADDR+1) ;\
143 1.1 fvdl sti
144 1.1 fvdl
145 1.1 fvdl #else /* ICU_HARDWARE_MASK */
146 1.1 fvdl
147 1.1 fvdl #define i8259_asm_mask(num)
148 1.1 fvdl #define i8259_asm_unmask(num)
149 1.1 fvdl
150 1.1 fvdl #endif /* ICU_HARDWARE_MASK */
151 1.1 fvdl #endif /* ICU_SPECIAL_MASK_MODE */
152 1.1 fvdl
153 1.1 fvdl #endif /* !_X86_I8259_H_ */
154