BSD 4_4_Lite1 release
[unix-history] / usr / src / sys / sparc / include / psl.h
CommitLineData
61cdb745 1/*
ad787160
C
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
61cdb745
CT
4 *
5 * This software was developed by the Computer Systems Engineering group
6 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
7 * contributed to Berkeley.
8 *
b480239a
KB
9 * All advertising materials mentioning features or use of this software
10 * must display the following acknowledgement:
11 * This product includes software developed by the University of
1869bdc0 12 * California, Lawrence Berkeley Laboratory.
b480239a 13 *
ad787160
C
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions
16 * are met:
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
22 * 3. All advertising materials mentioning features or use of this software
23 * must display the following acknowledgement:
24 * This product includes software developed by the University of
25 * California, Berkeley and its contributors.
26 * 4. Neither the name of the University nor the names of its contributors
27 * may be used to endorse or promote products derived from this software
28 * without specific prior written permission.
29 *
30 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
31 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
32 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
33 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
34 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
35 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
36 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
37 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
38 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
39 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 * SUCH DAMAGE.
61cdb745 41 *
ed554bc5 42 * @(#)psl.h 8.2 (Berkeley) 9/27/93
61cdb745 43 *
8b381045 44 * from: $Header: psl.h,v 1.13 93/09/27 01:37:25 torek Exp $
61cdb745
CT
45 */
46
47#ifndef PSR_IMPL
48
49/*
50 * SPARC Process Status Register (in psl.h for hysterical raisins).
51 *
52 * The picture in the Sun manuals looks like this:
53 * 1 1
54 * 31 28 27 24 23 20 19 14 3 2 11 8 7 6 5 4 0
55 * +-------+-------+-------+-----------+-+-+-------+-+-+-+---------+
56 * | impl | ver | icc | reserved |E|E| pil |S|P|E| CWP |
57 * | | |n z v c| |C|F| | |S|T| |
58 * +-------+-------+-------+-----------+-+-+-------+-+-+-+---------+
59 */
60
61#define PSR_IMPL 0xf0000000 /* implementation */
62#define PSR_VER 0x0f000000 /* version */
63#define PSR_ICC 0x00f00000 /* integer condition codes */
64#define PSR_N 0x00800000 /* negative */
65#define PSR_Z 0x00400000 /* zero */
66#define PSR_O 0x00200000 /* overflow */
67#define PSR_C 0x00100000 /* carry */
68#define PSR_EC 0x00002000 /* coprocessor enable */
69#define PSR_EF 0x00001000 /* FP enable */
70#define PSR_PIL 0x00000f00 /* interrupt level */
71#define PSR_S 0x00000080 /* supervisor (kernel) mode */
72#define PSR_PS 0x00000040 /* previous supervisor mode (traps) */
73#define PSR_ET 0x00000020 /* trap enable */
74#define PSR_CWP 0x0000001f /* current window pointer */
75
76#define PSR_BITS "\20\16EC\15EF\10S\7PS\6ET"
77
78#define PIL_CLOCK 10
79
8b381045 80#if defined(KERNEL) && !defined(LOCORE)
61cdb745
CT
81/*
82 * GCC pseudo-functions for manipulating PSR (primarily PIL field).
83 */
84static __inline int getpsr() {
85 int psr;
86
87 __asm __volatile("rd %%psr,%0" : "=r" (psr));
88 return (psr);
89}
90
91static __inline void setpsr(int newpsr) {
92 __asm __volatile("wr %0,0,%%psr" : : "r" (newpsr));
93 __asm __volatile("nop");
94 __asm __volatile("nop");
95 __asm __volatile("nop");
96}
97
98static __inline int spl0() {
99 int psr, oldipl;
100
101 /*
102 * wrpsr xors two values: we choose old psr and old ipl here,
103 * which gives us the same value as the old psr but with all
104 * the old PIL bits turned off.
105 */
106 __asm __volatile("rd %%psr,%0" : "=r" (psr));
107 oldipl = psr & PSR_PIL;
108 __asm __volatile("wr %0,%1,%%psr" : : "r" (psr), "r" (oldipl));
109
110 /*
111 * Three instructions must execute before we can depend
112 * on the bits to be changed.
113 */
114 __asm __volatile("nop; nop; nop");
115 return (oldipl);
116}
117
118/*
119 * PIL 1 through 14 can use this macro.
120 * (spl0 and splhigh are special since they put all 0s or all 1s
121 * into the ipl field.)
122 */
123#define SPL(name, newipl) \
124static __inline int name() { \
125 int psr, oldipl; \
126 __asm __volatile("rd %%psr,%0" : "=r" (psr)); \
127 oldipl = psr & PSR_PIL; \
128 psr &= ~oldipl; \
129 __asm __volatile("wr %0,%1,%%psr" : : \
130 "r" (psr), "n" ((newipl) << 8)); \
131 __asm __volatile("nop; nop; nop"); \
132 return (oldipl); \
133}
134
135SPL(splsoftint, 1)
136#define splnet splsoftint
137#define splsoftclock splsoftint
138
139/* Memory allocation (must be as high as highest network device) */
140SPL(splimp, 5)
141
142/* tty input runs at software level 6 */
143#define PIL_TTY 6
144SPL(spltty, PIL_TTY)
145
146/* audio software interrupts are at software level 4 */
147#define PIL_AUSOFT 4
148SPL(splausoft, PIL_AUSOFT)
149
150SPL(splbio, 9)
151
152SPL(splclock, PIL_CLOCK)
153
154/* zs hardware interrupts are at level 12 */
155SPL(splzs, 12)
156
157/* audio hardware interrupts are at level 13 */
158SPL(splaudio, 13)
159
160/* second sparc timer interrupts at level 14 */
161SPL(splstatclock, 14)
162
163static __inline int splhigh() {
164 int psr, oldipl;
165
166 __asm __volatile("rd %%psr,%0" : "=r" (psr));
167 __asm __volatile("wr %0,0,%%psr" : : "r" (psr | PSR_PIL));
168 __asm __volatile("and %1,%2,%0; nop; nop" : "=r" (oldipl) : \
169 "r" (psr), "n" (PSR_PIL));
170 return (oldipl);
171}
172
173/* splx does not have a return value */
174static __inline void splx(int newipl) {
175 int psr;
176
177 __asm __volatile("rd %%psr,%0" : "=r" (psr));
178 __asm __volatile("wr %0,%1,%%psr" : : \
179 "r" (psr & ~PSR_PIL), "rn" (newipl));
180 __asm __volatile("nop; nop; nop");
181}
8b381045 182#endif /* KERNEL && !LOCORE */
61cdb745
CT
183
184#endif /* PSR_IMPL */