Don't send an EOI to the slave interrupt controller if the interrupt
[unix-history] / usr / src / sys / i386 / isa / icu.h
CommitLineData
d8b6dae7
WN
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
1e03b479 8 * %sccs.include.redist.c%
d8b6dae7 9 *
1e03b479 10 * @(#)icu.h 5.9 (Berkeley) %G%
d8b6dae7
WN
11 */
12
78c0d757
DA
13#ifndef __ICU__
14#define __ICU__
15
d8b6dae7 16#ifndef LOCORE
4686adac
BJ
17
18/*
19 * Interrupt "level" mechanism variables, masks, and macros
20 */
d8b6dae7 21extern unsigned short imen; /* interrupt mask enable */
4686adac 22extern unsigned short cpl; /* current priority level mask */
d8b6dae7 23
4686adac
BJ
24extern unsigned short highmask; /* group of interrupts masked with splhigh() */
25extern unsigned short ttymask; /* group of interrupts masked with spltty() */
26extern unsigned short biomask; /* group of interrupts masked with splbio() */
27extern unsigned short netmask; /* group of interrupts masked with splimp() */
78c0d757 28
d8b6dae7
WN
29#define INTREN(s) imen &= ~(s)
30#define INTRDIS(s) imen |= (s)
0018230c 31#define INTRMASK(msk,s) msk |= (s)
4686adac
BJ
32
33#else
34
35/*
36 * Macro's for interrupt level priority masks (used in interrupt vector entry)
37 */
38
4686adac 39/* Mask a group of interrupts atomically */
d6cc2eb0
KB
40#define INTR_HEAD(unit,mask,offst) \
41 pushl $ offst ; \
4686adac
BJ
42 pushl $ T_ASTFLT ; \
43 pushal ; \
fa8fe0b9 44 movb $0x20,%al ; \
d6cc2eb0
KB
45
46#define INTR_TAIL(unit,mask,offst) \
fa8fe0b9 47 outb %al,$ IO_ICU1 ; \
fa8fe0b9
WN
48 pushl %ds ; \
49 pushl %es ; \
4686adac
BJ
50 movw $0x10, %ax ; \
51 movw %ax, %ds ; \
52 movw %ax,%es ; \
53 incl _cnt+V_INTR ; \
d0d290ad 54 incl _isa_intr + offst * 4 ; \
4686adac
BJ
55 movzwl _cpl,%eax ; \
56 pushl %eax ; \
d0d290ad
WN
57 pushl $ unit ; \
58 orw mask ,%ax ; \
4686adac
BJ
59 movw %ax,_cpl ; \
60 orw _imen,%ax ; \
4686adac 61 outb %al,$ IO_ICU1+1 ; \
4686adac
BJ
62 movb %ah,%al ; \
63 outb %al,$ IO_ICU2+1 ; \
fa8fe0b9 64 sti ;
4686adac 65
d6cc2eb0
KB
66#define INTR1(unit,mask,offst) \
67 INTR_HEAD(unit,mask,offst) \
68 INTR_TAIL(unit,mask,offst)
69
70#define INTR2(unit,mask,offst) \
71 INTR_HEAD(unit,mask,offst) \
72 outb %al,$ IO_ICU2 ; \
73 INTR_TAIL(unit,mask,offst)
74
75
76
4686adac
BJ
77/* Interrupt vector exit macros */
78
79/* First eight interrupts (ICU1) */
d0d290ad 80#define INTREXIT1 \
4686adac
BJ
81 jmp doreti
82
83/* Second eight interrupts (ICU2) */
d0d290ad 84#define INTREXIT2 \
4686adac
BJ
85 jmp doreti
86
d8b6dae7
WN
87#endif
88
4686adac
BJ
89/*
90 * Interrupt enable bits -- in order of priority
91 */
0018230c
BJ
92#define IRQ0 0x0001 /* highest priority - timer */
93#define IRQ1 0x0002
94#define IRQ_SLAVE 0x0004
95#define IRQ8 0x0100
96#define IRQ9 0x0200
97#define IRQ2 IRQ9
98#define IRQ10 0x0400
99#define IRQ11 0x0800
100#define IRQ12 0x1000
101#define IRQ13 0x2000
102#define IRQ14 0x4000
103#define IRQ15 0x8000
104#define IRQ3 0x0008
105#define IRQ4 0x0010
106#define IRQ5 0x0020
107#define IRQ6 0x0040
108#define IRQ7 0x0080 /* lowest - parallel printer */
d8b6dae7 109
4686adac
BJ
110/*
111 * Interrupt Control offset into Interrupt descriptor table (IDT)
112 */
113#define ICU_OFFSET 32 /* 0-31 are processor exceptions */
114#define ICU_LEN 16 /* 32-47 are ISA interrupts */
115
78c0d757 116#endif __ICU__