RTEMS  5.0.0
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
25 
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 
31 
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