UbixOS  2.0
8259.h
Go to the documentation of this file.
1 /*-
2  * Copyright (c) 2002-2018 The UbixOS Project.
3  * All rights reserved.
4  *
5  * This was developed by Christopher W. Olsen for the UbixOS Project.
6  *
7  * Redistribution and use in source and binary forms, with or without modification, are permitted
8  * provided that the following conditions are met:
9  *
10  * 1) Redistributions of source code must retain the above copyright notice, this list of
11  * conditions, the following disclaimer and the list of authors.
12  * 2) Redistributions in binary form must reproduce the above copyright notice, this list of
13  * conditions, the following disclaimer and the list of authors in the documentation and/or
14  * other materials provided with the distribution.
15  * 3) Neither the name of the UbixOS Project nor the names of its contributors may be used to
16  * endorse or promote products derived from this software without specific prior written
17  * permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
20  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
22  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
24  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
26  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #ifndef _ISA_8259_H
30 #define _ISA_8259_H
31 
32 #include <sys/types.h>
33 
34 #define mPic 0x20 // I/O for master PIC
35 #define mImr 0x21 // I/O for master IMR
36 #define sPic 0xA0 // I/O for slave PIC
37 #define sImr 0xA1 // I/O for slace IMR
38 #define eoi 0x20 // EOI command
39 #define icw1 0x11 // Cascade, Edge triggered
40 #define icw4 0x01 // 8088 mode
41 #define mVec 0x68 // Vector for master
42 #define sVec 0x70 // Vector for slave
43 #define ocw3Irr 0x0A // Read IRR
44 #define ocw3Isr 0x0B // Read ISR
45 
46 int i8259_init();
47 void irqEnable(uInt16 irqNo);
48 void irqDisable(uInt16 irqNo);
49 
50 #endif
51 
52 /***
53  $Log: 8259.h,v $
54  Revision 1.1.1.1 2006/06/01 12:46:14 reddawg
55  ubix2
56 
57  Revision 1.2 2005/10/12 00:13:36 reddawg
58  Removed
59 
60  Revision 1.1.1.1 2005/09/26 17:23:39 reddawg
61  no message
62 
63  Revision 1.4 2004/07/09 13:20:08 reddawg
64  Oh yeah duh you can not name functions with numbers
65 
66  Revision 1.3 2004/07/09 13:14:29 reddawg
67  8259: changed init8259 to 8259_init
68  Adjusted Startup Routines
69 
70  Revision 1.2 2004/05/21 14:57:16 reddawg
71  Cleaned up
72 
73  END
74  ***/
i8259_init
int i8259_init()
initialize the 8259 PIC
Definition: 8259.c:41
uInt16
unsigned short int uInt16
Definition: objgfx30.h:48
irqDisable
void irqDisable(uInt16 irqNo)
types.h
irqEnable
void irqEnable(uInt16 irqNo)