summaryrefslogtreecommitdiff
path: root/i386/pc/pic.h
diff options
context:
space:
mode:
Diffstat (limited to 'i386/pc/pic.h')
-rw-r--r--i386/pc/pic.h204
1 files changed, 0 insertions, 204 deletions
diff --git a/i386/pc/pic.h b/i386/pc/pic.h
deleted file mode 100644
index 51911cc..0000000
--- a/i386/pc/pic.h
+++ /dev/null
@@ -1,204 +0,0 @@
-/*
- * Mach Operating System
- * Copyright (c) 1991,1990,1989 Carnegie Mellon University
- * All Rights Reserved.
- *
- * Permission to use, copy, modify and distribute this software and its
- * documentation is hereby granted, provided that both the copyright
- * notice and this permission notice appear in all copies of the
- * software, derivative works or modified versions, and any portions
- * thereof, and that both notices appear in supporting documentation.
- *
- * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
- * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
- * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
- *
- * Carnegie Mellon requests users of this software to return to
- *
- * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
- * School of Computer Science
- * Carnegie Mellon University
- * Pittsburgh PA 15213-3890
- *
- * any improvements or extensions that they make and grant Carnegie Mellon
- * the rights to redistribute these changes.
- */
-/*
-Copyright (c) 1988,1989 Prime Computer, Inc. Natick, MA 01760
-All Rights Reserved.
-
-Permission to use, copy, modify, and distribute this
-software and its documentation for any purpose and
-without fee is hereby granted, provided that the above
-copyright notice appears in all copies and that both the
-copyright notice and this permission notice appear in
-supporting documentation, and that the name of Prime
-Computer, Inc. not be used in advertising or publicity
-pertaining to distribution of the software without
-specific, written prior permission.
-
-THIS SOFTWARE IS PROVIDED "AS IS", AND PRIME COMPUTER,
-INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
-SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN
-NO EVENT SHALL PRIME COMPUTER, INC. BE LIABLE FOR ANY
-SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
-DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
-PROFITS, WHETHER IN ACTION OF CONTRACT, NEGLIGENCE, OR
-OTHER TORTIOUS ACTION, ARISING OUR OF OR IN CONNECTION
-WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-*/
-
-#ifndef _I386_PIC_H_
-#define _I386_PIC_H_
-
-#include "irq.h"
-
-#define NINTR 0x10
-#define NPICS 0x02
-
-/*
-** The following are definitions used to locate the PICs in the system
-*/
-
-#define ADDR_PIC_BASE 0x20
-#define OFF_ICW 0x00
-#define OFF_OCW 0x01
-#define SIZE_PIC 0x80
-
-#define MASTER_ICW (ADDR_PIC_BASE + OFF_ICW)
-#define MASTER_OCW (ADDR_PIC_BASE + OFF_OCW)
-#define SLAVES_ICW (ADDR_PIC_BASE + OFF_ICW + SIZE_PIC)
-#define SLAVES_OCW (ADDR_PIC_BASE + OFF_OCW + SIZE_PIC)
-
-/*
-** The following banks of definitions ICW1, ICW2, ICW3, and ICW4 are used
-** to define the fields of the various ICWs for initialisation of the PICs
-*/
-
-/*
-** ICW1
-*/
-
-#define ICW_TEMPLATE 0x10
-
-#define LEVL_TRIGGER 0x08
-#define EDGE_TRIGGER 0x00
-#define ADDR_INTRVL4 0x04
-#define ADDR_INTRVL8 0x00
-#define SINGLE__MODE 0x02
-#define CASCADE_MODE 0x00
-#define ICW4__NEEDED 0x01
-#define NO_ICW4_NEED 0x00
-
-/*
-** ICW2
-*/
-
-#define PICM_VECTBASE IDT_IRQ_BASE
-#define PICS_VECTBASE (PICM_VECTBASE + 0x08)
-
-/*
-** ICW3
-*/
-
-#define SLAVE_ON_IR0 0x01
-#define SLAVE_ON_IR1 0x02
-#define SLAVE_ON_IR2 0x04
-#define SLAVE_ON_IR3 0x08
-#define SLAVE_ON_IR4 0x10
-#define SLAVE_ON_IR5 0x20
-#define SLAVE_ON_IR6 0x40
-#define SLAVE_ON_IR7 0x80
-
-#define I_AM_SLAVE_0 0x00
-#define I_AM_SLAVE_1 0x01
-#define I_AM_SLAVE_2 0x02
-#define I_AM_SLAVE_3 0x03
-#define I_AM_SLAVE_4 0x04
-#define I_AM_SLAVE_5 0x05
-#define I_AM_SLAVE_6 0x06
-#define I_AM_SLAVE_7 0x07
-
-/*
-** ICW4
-*/
-
-#define SNF_MODE_ENA 0x10
-#define SNF_MODE_DIS 0x00
-#define BUFFERD_MODE 0x08
-#define NONBUFD_MODE 0x00
-#define AUTO_EOI_MOD 0x02
-#define NRML_EOI_MOD 0x00
-#define I8086_EMM_MOD 0x01
-#define SET_MCS_MODE 0x00
-
-/*
-** OCW1
-*/
-
-#define PICM_MASK 0xFF
-#define PICS_MASK 0xFF
-
-/*
-** OCW2
-*/
-
-#define NON_SPEC_EOI 0x20
-#define SPECIFIC_EOI 0x30
-#define ROT_NON_SPEC 0x50
-#define SET_ROT_AEOI 0x40
-#define RSET_ROTAEOI 0x00
-#define ROT_SPEC_EOI 0x70
-#define SET_PRIORITY 0x60
-#define NO_OPERATION 0x20
-
-#define SEND_EOI_IR0 0x00
-#define SEND_EOI_IR1 0x01
-#define SEND_EOI_IR2 0x02
-#define SEND_EOI_IR3 0x03
-#define SEND_EOI_IR4 0x04
-#define SEND_EOI_IR5 0x05
-#define SEND_EOI_IR6 0x06
-#define SEND_EOI_IR7 0x07
-
-/*
-** OCW3
-*/
-
-#define OCW_TEMPLATE 0x08
-#define SPECIAL_MASK 0x40
-#define MASK_MDE_SET 0x20
-#define MASK_MDE_RST 0x00
-#define POLL_COMMAND 0x04
-#define NO_POLL_CMND 0x00
-#define READ_NEXT_RD 0x02
-#define READ_IR_ONRD 0x00
-#define READ_IS_ONRD 0x01
-
-
-/*
-** Standard PIC initialization values for PCs.
-*/
-#define PICM_ICW1 (ICW_TEMPLATE | EDGE_TRIGGER | ADDR_INTRVL8 \
- | CASCADE_MODE | ICW4__NEEDED)
-#define PICM_ICW3 (SLAVE_ON_IR2)
-#define PICM_ICW4 (SNF_MODE_DIS | NONBUFD_MODE | NRML_EOI_MOD \
- | I8086_EMM_MOD)
-
-#define PICS_ICW1 (ICW_TEMPLATE | EDGE_TRIGGER | ADDR_INTRVL8 \
- | CASCADE_MODE | ICW4__NEEDED)
-#define PICS_ICW3 (I_AM_SLAVE_2)
-#define PICS_ICW4 (SNF_MODE_DIS | NONBUFD_MODE | NRML_EOI_MOD \
- | I8086_EMM_MOD)
-
-/* Some systems need a little bit of delay
- while fiddling with PIC registers. */
-#ifndef ASSEMBLER
-#define PIC_DELAY() asm volatile("jmp 1f; 1: jmp 1f; 1:")
-#else
-#define PIC_DELAY jmp 9f; 9: jmp 9f; 9:
-#endif
-
-
-#endif _I386_PIC_H_