summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1999-09-07 19:05:26 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1999-09-07 19:05:26 +0000
commitc4f9760f3638f40b866b666bd010a42fc3a1f798 (patch)
tree209e6cff894b5c1006246571e001533b45a2015f /sys/arch
parent2ede6d4bc98082e96ffb83027c7e8023777510fb (diff)
rewrite to define bit positions; more bits from the pa1.1 manual
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/hppa/include/psl.h130
1 files changed, 83 insertions, 47 deletions
diff --git a/sys/arch/hppa/include/psl.h b/sys/arch/hppa/include/psl.h
index 1100b7163a1..86997685fe7 100644
--- a/sys/arch/hppa/include/psl.h
+++ b/sys/arch/hppa/include/psl.h
@@ -1,67 +1,103 @@
-/* $OpenBSD: psl.h,v 1.3 1998/10/30 19:33:38 mickey Exp $ */
+/* $OpenBSD: psl.h,v 1.4 1999/09/07 19:05:25 mickey Exp $ */
/*
- * (c) Copyright 1987 HEWLETT-PACKARD COMPANY
+ * Copyright (c) 1999 Michael Shalayeff
+ * All rights reserved.
*
- * To anyone who acknowledges that this file is provided "AS IS"
- * without any express or implied warranty:
- * permission to use, copy, modify, and distribute this file
- * for any purpose is hereby granted without fee, provided that
- * the above copyright notice and this notice appears in all
- * copies, and that the name of Hewlett-Packard Company not be
- * used in advertising or publicity pertaining to distribution
- * of the software without specific, written prior permission.
- * Hewlett-Packard Company makes no representations about the
- * suitability of this software for any purpose.
- */
-/*
- * Copyright (c) 1990,1991,1994 The University of Utah and
- * the Computer Systems Laboratory (CSL). All rights reserved.
- *
- * THE UNIVERSITY OF UTAH AND CSL PROVIDE THIS SOFTWARE IN ITS "AS IS"
- * CONDITION, AND DISCLAIM ANY LIABILITY OF ANY KIND FOR ANY DAMAGES
- * WHATSOEVER RESULTING FROM ITS USE.
- *
- * CSL requests users of this software to return to csl-dist@cs.utah.edu any
- * improvements that they make and grant CSL redistribution rights.
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by Michael Shalayeff.
+ * 4. The name of the author may not be used to endorse or promote products
+ * derived from this software without specific prior written permission.
*
- * Utah $Hdr: psl.h 1.3 94/12/14$
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR OR HIS RELATIVES BE LIABLE FOR ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ * SERVICES; LOSS OF MIND, USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
+ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _MACHINE_PSL_H_
#define _MACHINE_PSL_H_
/*
- * Processor Status Word (PSW) Masks
+ * Rference:
+ * 1. PA-RISC 1.1 Architecture and Instruction Set Manual
+ * Hewlett Packard, 3rd Edition, February 1994; Part Number 09740-90039
*/
-#define PSW_T 0x01000000 /* Taken Branch Trap Enable */
-#define PSW_H 0x00800000 /* Higher-Privilege Transfer Trap Enable */
-#define PSW_L 0x00400000 /* Lower-Privilege Transfer Trap Enable */
-#define PSW_N 0x00200000 /* PC Queue Front Instruction Nullified */
-#define PSW_X 0x00100000 /* Data Memory Break Disable */
-#define PSW_B 0x00080000 /* Taken Branch in Previous Cycle */
-#define PSW_C 0x00040000 /* Code Address Translation Enable */
-#define PSW_V 0x00020000 /* Divide Step Correction */
-#define PSW_M 0x00010000 /* High-Priority Machine Check Disable */
-#define PSW_CB 0x0000ff00 /* Carry/Borrow Bits */
-#define PSW_R 0x00000010 /* Recovery Counter Enable */
-#define PSW_Q 0x00000008 /* Interruption State Collection Enable */
-#define PSW_P 0x00000004 /* Protection ID Validation Enable */
-#define PSW_D 0x00000002 /* Data Address Translation Enable */
-#define PSW_I 0x00000001 /* External, Power Failure, Low-Priority */
- /* Machine Check Interruption Enable */
+
+/*
+ * Processor Status Word Bit Positions (in PA-RISC bit order)
+ */
+#define PSW_Y_POS (0)
+#define PSW_Z_POS (1)
+#define PSW_SS_POS (3) /* Reserved, Software-defined */
+#define PSW_E_POS (5)
+#define PSW_S_POS (6)
+#define PSW_T_POS (7)
+#define PSW_H_POS (8)
+#define PSW_L_POS (9)
+#define PSW_N_POS (10)
+#define PSW_X_POS (11)
+#define PSW_B_POS (12)
+#define PSW_C_POS (13)
+#define PSW_V_POS (14)
+#define PSW_M_POS (15)
+#define PSW_CB_POS (16)
+#define PSW_G_POS (25)
+#define PSW_F_POS (26)
+#define PSW_R_POS (27)
+#define PSW_Q_POS (28)
+#define PSW_P_POS (29)
+#define PSW_D_POS (30)
+#define PSW_I_POS (31)
+
/*
- * Software defined PSW masks.
+ * Processor Status Word Bit Values
*/
-#define PSW_SS 0x10000000 /* Kernel managed single step */
+#define PSW_Y (1 << (31-PSW_Y_POS)) /* Data Debug Trap Disable */
+#define PSW_Z (1 << (31-PSW_Z_POS)) /* Instruction Debug Trap Disable */
+#define PSW_SS (1 << (31-PSW_SS_POS)) /* Reserved; Software Single-Step */
+#define PSW_E (1 << (31-PSW_E_POS)) /* Little Endian Memory Access Enable */
+#define PSW_S (1 << (31-PSW_S_POS)) /* Secure Interval Timer */
+#define PSW_T (1 << (31-PSW_T_POS)) /* Taken Branch Trap Enable */
+#define PSW_H (1 << (31-PSW_H_POS)) /* Higher-privilege Transfer Trap Enable */
+#define PSW_L (1 << (31-PSW_L_POS)) /* Lower-privilege Transfer Trap Enable */
+#define PSW_N (1 << (31-PSW_N_POS)) /* Nullify */
+#define PSW_X (1 << (31-PSW_X_POS)) /* Data Memory Break Disable */
+#define PSW_B (1 << (31-PSW_B_POS)) /* Taken Branch */
+#define PSW_C (1 << (31-PSW_C_POS)) /* Instruction Address Translation Enable */
+#define PSW_V (1 << (31-PSW_V_POS)) /* Divide Step Correction */
+#define PSW_M (1 << (31-PSW_M_POS)) /* High-priority Machine Check Mask */
+#define PSW_CB (1 << (31-PSW_CB_POS)) /* Carry/Borrow Bits */
+#define PSW_G (1 << (31-PSW_G_POS)) /* Debug Trap Enable */
+#define PSW_F (1 << (31-PSW_F_POS)) /* Perfomance Monitor Interrupt Unmask */
+#define PSW_R (1 << (31-PSW_R_POS)) /* Recover Counter Enable */
+#define PSW_Q (1 << (31-PSW_Q_POS)) /* Interrupt State Collection Enable */
+#define PSW_P (1 << (31-PSW_P_POS)) /* Protection Identifier Validation Enable */
+#define PSW_D (1 << (31-PSW_D_POS)) /* Data Adress Translation Enable */
+#define PSW_I (1 << (31-PSW_I_POS)) /* External Interrupt, Power Failure
+ Interrupt, and Low-Priority Machine
+ Check Interrupt unmask */
/*
- * Kernel PSW Masks
+ * Frequently Used PSL Values
*/
#define RESET_PSW (PSW_R | PSW_Q | PSW_P | PSW_D | PSW_I)
#define KERNEL_PSW (PSW_C | PSW_Q | PSW_P | PSW_D)
-#define SYSTEM_MASK (PSW_R | PSW_Q | PSW_P | PSW_D | PSW_I)
-#define GLOBAL_VAR_MASK (PSW_H | PSW_L | PSW_C | PSW_M)
-#define PTRACE_MASK (PSW_N | PSW_V | PSW_CB)
#endif /* _MACHINE_PSL_H_ */