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