psl.h revision 1.2 1 /* $NetBSD: psl.h,v 1.2 2003/08/31 01:26:37 chs Exp $ */
2
3 /* $OpenBSD: psl.h,v 1.6 1999/11/25 18:29:01 mickey Exp $ */
4
5 /*
6 * Copyright (c) 1999 Michael Shalayeff
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed by Michael Shalayeff.
20 * 4. The name of the author may not be used to endorse or promote products
21 * derived from this software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 * IN NO EVENT SHALL THE AUTHOR OR HIS RELATIVES BE LIABLE FOR ANY DIRECT,
27 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
28 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
29 * SERVICES; LOSS OF MIND, USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
31 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
32 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
33 * THE POSSIBILITY OF SUCH DAMAGE.
34 */
35
36 #ifndef _HPPA_PSL_H_
37 #define _HPPA_PSL_H_
38
39 /*
40 * Rference:
41 * 1. PA-RISC 1.1 Architecture and Instruction Set Manual
42 * Hewlett Packard, 3rd Edition, February 1994; Part Number 09740-90039
43 */
44
45 /*
46 * Processor Status Word Bit Positions (in PA-RISC bit order)
47 */
48 #define PSW_Y_POS (0)
49 #define PSW_Z_POS (1)
50 #define PSW_SS_POS (3) /* Reserved, Software-defined */
51 #define PSW_E_POS (5)
52 #define PSW_S_POS (6)
53 #define PSW_T_POS (7)
54 #define PSW_H_POS (8)
55 #define PSW_L_POS (9)
56 #define PSW_N_POS (10)
57 #define PSW_X_POS (11)
58 #define PSW_B_POS (12)
59 #define PSW_C_POS (13)
60 #define PSW_V_POS (14)
61 #define PSW_M_POS (15)
62 #define PSW_CB_POS (16)
63 #define PSW_G_POS (25)
64 #define PSW_F_POS (26)
65 #define PSW_R_POS (27)
66 #define PSW_Q_POS (28)
67 #define PSW_P_POS (29)
68 #define PSW_D_POS (30)
69 #define PSW_I_POS (31)
70
71 #define PSW_BITS "\020\001I\002D\003P\004Q\005R\006F\007G" \
72 "\021M\022V\023C\024B\025X\026N\027L\030H" \
73 "\031T\032S\033E\037Z\040Y"
74
75 /*
76 * Processor Status Word Bit Values
77 */
78 #define PSW_Y (1 << (31-PSW_Y_POS)) /* Data Debug Trap Disable */
79 #define PSW_Z (1 << (31-PSW_Z_POS)) /* Instruction Debug Trap Disable */
80 #define PSW_SS (1 << (31-PSW_SS_POS)) /* Reserved; Software Single-Step */
81 #define PSW_E (1 << (31-PSW_E_POS)) /* Little Endian Memory Access Enable */
82 #define PSW_S (1 << (31-PSW_S_POS)) /* Secure Interval Timer */
83 #define PSW_T (1 << (31-PSW_T_POS)) /* Taken Branch Trap Enable */
84 #define PSW_H (1 << (31-PSW_H_POS)) /* Higher-privilege Transfer Trap Enable */
85 #define PSW_L (1 << (31-PSW_L_POS)) /* Lower-privilege Transfer Trap Enable */
86 #define PSW_N (1 << (31-PSW_N_POS)) /* Nullify */
87 #define PSW_X (1 << (31-PSW_X_POS)) /* Data Memory Break Disable */
88 #define PSW_B (1 << (31-PSW_B_POS)) /* Taken Branch */
89 #define PSW_C (1 << (31-PSW_C_POS)) /* Instruction Address Translation Enable */
90 #define PSW_V (1 << (31-PSW_V_POS)) /* Divide Step Correction */
91 #define PSW_M (1 << (31-PSW_M_POS)) /* High-priority Machine Check Mask */
92 #define PSW_CB (1 << (31-PSW_CB_POS)) /* Carry/Borrow Bits */
93 #define PSW_G (1 << (31-PSW_G_POS)) /* Debug Trap Enable */
94 #define PSW_F (1 << (31-PSW_F_POS)) /* Perfomance Monitor Interrupt Unmask */
95 #define PSW_R (1 << (31-PSW_R_POS)) /* Recover Counter Enable */
96 #define PSW_Q (1 << (31-PSW_Q_POS)) /* Interrupt State Collection Enable */
97 #define PSW_P (1 << (31-PSW_P_POS)) /* Protection Identifier Validation Enable */
98 #define PSW_D (1 << (31-PSW_D_POS)) /* Data Address Translation Enable */
99 #define PSW_I (1 << (31-PSW_I_POS)) /* External Interrupt, Power Failure
100 Interrupt, and Low-Priority Machine
101 Check Interrupt unmask */
102
103 /*
104 * Frequently Used PSW Values
105 */
106 #define RESET_PSW (PSW_R | PSW_Q | PSW_P | PSW_D | PSW_I)
107
108 #ifdef _KERNEL
109 #include <machine/intr.h>
110 #endif
111
112 #endif /* _HPPA_PSL_H_ */
113