RTEMS
5.2
Toggle main menu visibility
Main Page
Related Pages
Modules
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
_
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
v
w
Typedefs
a
b
c
d
e
f
g
h
i
l
m
o
p
q
r
s
t
u
v
w
x
Enumerations
a
b
c
e
h
i
l
m
o
p
q
r
s
t
w
Enumerator
a
c
d
h
i
l
m
p
r
s
t
w
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
bsps
i386
include
bsp
irq_asm.h
Go to the documentation of this file.
1
7
/* irq_asm.h
8
*
9
* This include file has defines to represent some contant used
10
* to program and manage the Intel 8259 interrupt controller
11
*
12
*
13
* COPYRIGHT (c) 1998 valette@crf.canon.fr
14
*
15
* Copyright (c) 2016 Chris Johns <chrisj@rtems.org>
16
*
17
* The license and distribution terms for this file may be
18
* found in the file LICENSE in this distribution or at
19
* http://www.rtems.org/license/LICENSE.
20
*/
21
#ifndef __I8259S_H__
22
#define __I8259S_H__
23
24
#define BSP_ASM_IRQ_VECTOR_BASE 0x20
26
#define PIC_MASTER_COMMAND_IO_PORT 0x20
27
#define PIC_SLAVE_COMMAND_IO_PORT 0xa0
28
#define PIC_MASTER_IMR_IO_PORT 0x21
29
#define PIC_SLAVE_IMR_IO_PORT 0xa1
30
32
#define PIC_EOSI 0x60
33
#define PIC_EOI 0x20
34
35
/* Operation control word type 3. Bit 3 (0x08) must be set. Even address. */
36
#define PIC_OCW3_RIS 0x01
/* 1 = read IS, 0 = read IR */
37
#define PIC_OCW3_RR 0x02
/* register read */
38
#define PIC_OCW3_P 0x04
/* poll mode command */
39
/* 0x08 must be 1 to select OCW3 vs OCW2 */
40
#define PIC_OCW3_SEL 0x08
/* must be 1 */
41
/* 0x10 must be 0 to select OCW3 vs ICW1 */
42
#define PIC_OCW3_SMM 0x20
/* special mode mask */
43
#define PIC_OCW3_ESMM 0x40
/* enable SMM */
44
45
#endif
Generated by
1.9.4