2 * Copyright (C) 1997 Geert Uytterhoeven
4 * This file is based on the following documentation:
6 * The Open Programmable Interrupt Controller (PIC)
7 * Register Interface Specification Revision 1.2
9 * Issue Date: October 1995
11 * Issued jointly by Advanced Micro Devices and Cyrix Corporation
13 * AMD is a registered trademark of Advanced Micro Devices, Inc.
14 * Copyright (C) 1995, Advanced Micro Devices, Inc. and Cyrix, Inc.
15 * All Rights Reserved.
17 * To receive a copy of this documentation, send an email to openpic@amd.com.
19 * This file is subject to the terms and conditions of the GNU General Public
20 * License. See the file COPYING in the main directory of this archive
24 #ifndef _LINUX_OPENPIC_H
25 #define _LINUX_OPENPIC_H
30 * OpenPIC supports up to 2048 interrupt sources and up to 32 processors
33 #define OPENPIC_MAX_SOURCES 2048
34 #define OPENPIC_MAX_PROCESSORS 32
35 #define OPENPIC_MAX_ISU 16
37 #define OPENPIC_NUM_TIMERS 4
38 #define OPENPIC_NUM_IPI 4
39 #define OPENPIC_NUM_PRI 16
40 #define OPENPIC_NUM_VECTORS 256
45 * OpenPIC Registers are 32 bits and aligned on 128 bit boundaries
48 typedef struct _OpenPIC_Reg
{
49 u_int Reg
; /* Little endian! */
55 * Per Processor Registers
58 typedef struct _OpenPIC_Processor
{
60 * Private Shadow Registers (for SLiC backwards compatibility)
62 u_int IPI0_Dispatch_Shadow
; /* Write Only */
64 u_int IPI0_Vector_Priority_Shadow
; /* Read/Write */
67 * Interprocessor Interrupt Command Ports
69 OpenPIC_Reg _IPI_Dispatch
[OPENPIC_NUM_IPI
]; /* Write Only */
71 * Current Task Priority Register
73 OpenPIC_Reg _Current_Task_Priority
; /* Read/Write */
76 * Interrupt Acknowledge Register
78 OpenPIC_Reg _Interrupt_Acknowledge
; /* Read Only */
80 * End of Interrupt (EOI) Register
82 OpenPIC_Reg _EOI
; /* Read/Write */
91 typedef struct _OpenPIC_Timer
{
92 OpenPIC_Reg _Current_Count
; /* Read Only */
93 OpenPIC_Reg _Base_Count
; /* Read/Write */
94 OpenPIC_Reg _Vector_Priority
; /* Read/Write */
95 OpenPIC_Reg _Destination
; /* Read/Write */
103 typedef struct _OpenPIC_Global
{
105 * Feature Reporting Registers
107 OpenPIC_Reg _Feature_Reporting0
; /* Read Only */
108 OpenPIC_Reg _Feature_Reporting1
; /* Future Expansion */
110 * Global Configuration Registers
112 OpenPIC_Reg _Global_Configuration0
; /* Read/Write */
113 OpenPIC_Reg _Global_Configuration1
; /* Future Expansion */
115 * Vendor Specific Registers
117 OpenPIC_Reg _Vendor_Specific
[4];
119 * Vendor Identification Register
121 OpenPIC_Reg _Vendor_Identification
; /* Read Only */
123 * Processor Initialization Register
125 OpenPIC_Reg _Processor_Initialization
; /* Read/Write */
127 * IPI Vector/Priority Registers
129 OpenPIC_Reg _IPI_Vector_Priority
[OPENPIC_NUM_IPI
]; /* Read/Write */
131 * Spurious Vector Register
133 OpenPIC_Reg _Spurious_Vector
; /* Read/Write */
135 * Global Timer Registers
137 OpenPIC_Reg _Timer_Frequency
; /* Read/Write */
138 OpenPIC_Timer Timer
[OPENPIC_NUM_TIMERS
];
144 * Interrupt Source Registers
147 typedef struct _OpenPIC_Source
{
148 OpenPIC_Reg _Vector_Priority
; /* Read/Write */
149 OpenPIC_Reg _Destination
; /* Read/Write */
150 } OpenPIC_Source
, *OpenPIC_SourcePtr
;
154 * OpenPIC Register Map
162 OpenPIC_Global Global
;
164 * Interrupt Source Configuration Registers
166 OpenPIC_Source Source
[OPENPIC_MAX_SOURCES
];
168 * Per Processor Registers
170 OpenPIC_Processor Processor
[OPENPIC_MAX_PROCESSORS
];
174 * Current Task Priority Register
177 #define OPENPIC_CURRENT_TASK_PRIORITY_MASK 0x0000000f
183 #define OPENPIC_WHO_AM_I_ID_MASK 0x0000001f
186 * Feature Reporting Register 0
189 #define OPENPIC_FEATURE_LAST_SOURCE_MASK 0x07ff0000
190 #define OPENPIC_FEATURE_LAST_SOURCE_SHIFT 16
191 #define OPENPIC_FEATURE_LAST_PROCESSOR_MASK 0x00001f00
192 #define OPENPIC_FEATURE_LAST_PROCESSOR_SHIFT 8
193 #define OPENPIC_FEATURE_VERSION_MASK 0x000000ff
196 * Global Configuration Register 0
199 #define OPENPIC_CONFIG_RESET 0x80000000
200 #define OPENPIC_CONFIG_8259_PASSTHROUGH_DISABLE 0x20000000
201 #define OPENPIC_CONFIG_BASE_MASK 0x000fffff
204 * Global Configuration Register 1
205 * This is the EICR on EPICs.
208 #define OPENPIC_EICR_S_CLK_MASK 0x70000000
209 #define OPENPIC_EICR_SIE 0x08000000
212 * Vendor Identification Register
215 #define OPENPIC_VENDOR_ID_STEPPING_MASK 0x00ff0000
216 #define OPENPIC_VENDOR_ID_STEPPING_SHIFT 16
217 #define OPENPIC_VENDOR_ID_DEVICE_ID_MASK 0x0000ff00
218 #define OPENPIC_VENDOR_ID_DEVICE_ID_SHIFT 8
219 #define OPENPIC_VENDOR_ID_VENDOR_ID_MASK 0x000000ff
222 * Vector/Priority Registers
225 #define OPENPIC_MASK 0x80000000
226 #define OPENPIC_ACTIVITY 0x40000000 /* Read Only */
227 #define OPENPIC_PRIORITY_MASK 0x000f0000
228 #define OPENPIC_PRIORITY_SHIFT 16
229 #define OPENPIC_VECTOR_MASK 0x000000ff
233 * Interrupt Source Registers
236 #define OPENPIC_POLARITY_POSITIVE 0x00800000
237 #define OPENPIC_POLARITY_NEGATIVE 0x00000000
238 #define OPENPIC_POLARITY_MASK 0x00800000
239 #define OPENPIC_SENSE_LEVEL 0x00400000
240 #define OPENPIC_SENSE_EDGE 0x00000000
241 #define OPENPIC_SENSE_MASK 0x00400000
248 #define OPENPIC_COUNT_MASK 0x7fffffff
249 #define OPENPIC_TIMER_TOGGLE 0x80000000
250 #define OPENPIC_TIMER_COUNT_INHIBIT 0x80000000
254 * Aliases to make life simpler
257 /* Per Processor Registers */
258 #define IPI_Dispatch(i) _IPI_Dispatch[i].Reg
259 #define Current_Task_Priority _Current_Task_Priority.Reg
260 #define Interrupt_Acknowledge _Interrupt_Acknowledge.Reg
263 /* Global Registers */
264 #define Feature_Reporting0 _Feature_Reporting0.Reg
265 #define Feature_Reporting1 _Feature_Reporting1.Reg
266 #define Global_Configuration0 _Global_Configuration0.Reg
267 #define Global_Configuration1 _Global_Configuration1.Reg
268 #define Vendor_Specific(i) _Vendor_Specific[i].Reg
269 #define Vendor_Identification _Vendor_Identification.Reg
270 #define Processor_Initialization _Processor_Initialization.Reg
271 #define IPI_Vector_Priority(i) _IPI_Vector_Priority[i].Reg
272 #define Spurious_Vector _Spurious_Vector.Reg
273 #define Timer_Frequency _Timer_Frequency.Reg
275 /* Timer Registers */
276 #define Current_Count _Current_Count.Reg
277 #define Base_Count _Base_Count.Reg
278 #define Vector_Priority _Vector_Priority.Reg
279 #define Destination _Destination.Reg
281 /* Interrupt Source Registers */
282 #define Vector_Priority _Vector_Priority.Reg
283 #define Destination _Destination.Reg
285 #endif /* __KERNEL__ */
287 #endif /* _LINUX_OPENPIC_H */