spl.S revision 1.2 1 1.2 chris /* $NetBSD: spl.S,v 1.2 2001/09/28 10:01:02 chris Exp $ */
2 1.1 chris
3 1.1 chris /*
4 1.1 chris * Copyright (c) 1996-1998 Mark Brinicombe.
5 1.1 chris * Copyright (c) Brini.
6 1.1 chris * All rights reserved.
7 1.1 chris *
8 1.1 chris * Redistribution and use in source and binary forms, with or without
9 1.1 chris * modification, are permitted provided that the following conditions
10 1.1 chris * are met:
11 1.1 chris * 1. Redistributions of source code must retain the above copyright
12 1.1 chris * notice, this list of conditions and the following disclaimer.
13 1.1 chris * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 chris * notice, this list of conditions and the following disclaimer in the
15 1.1 chris * documentation and/or other materials provided with the distribution.
16 1.1 chris * 3. All advertising materials mentioning features or use of this software
17 1.1 chris * must display the following acknowledgement:
18 1.1 chris * This product includes software developed by Mark Brinicombe
19 1.1 chris * for the NetBSD Project.
20 1.1 chris * 4. The name of the company nor the name of the author may be used to
21 1.1 chris * endorse or promote products derived from this software without specific
22 1.1 chris * prior written permission.
23 1.1 chris *
24 1.1 chris * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
25 1.1 chris * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 1.1 chris * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
27 1.1 chris * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
28 1.1 chris * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
29 1.1 chris * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
30 1.1 chris * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 1.1 chris * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 1.1 chris * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 1.1 chris * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 1.1 chris * SUCH DAMAGE.
35 1.1 chris *
36 1.1 chris * spl routines
37 1.1 chris *
38 1.1 chris * Created : 01/03/96
39 1.1 chris */
40 1.1 chris
41 1.1 chris #include "assym.h"
42 1.1 chris #include <machine/psl.h>
43 1.1 chris #include <machine/asm.h>
44 1.1 chris
45 1.1 chris .text
46 1.1 chris .align 0
47 1.1 chris
48 1.1 chris Lcurrent_spl_level:
49 1.1 chris .word _C_LABEL(current_spl_level)
50 1.1 chris
51 1.1 chris Lspl_masks:
52 1.1 chris .word _C_LABEL(spl_masks)
53 1.1 chris
54 1.1 chris Lspl_mask:
55 1.1 chris .word _C_LABEL(spl_mask)
56 1.1 chris
57 1.1 chris ENTRY(raisespl)
58 1.1 chris mov r3, r0 /* Save the new value */
59 1.1 chris ldr r1, Lcurrent_spl_level /* Get the current spl level */
60 1.1 chris ldr r0, [r1]
61 1.1 chris cmp r3, r0
62 1.1 chris movle pc, lr
63 1.1 chris
64 1.1 chris str r3, [r1] /* Store the new spl level */
65 1.1 chris
66 1.1 chris ldr r2, Lspl_masks /* Get the spl mask */
67 1.1 chris ldr r2, [r2, r3, lsl #2]
68 1.1 chris
69 1.1 chris ldr r1, Lspl_mask /* Store in the current spl mask */
70 1.1 chris str r2, [r1]
71 1.1 chris
72 1.2 chris /* stack alignment is 8 bytes */
73 1.1 chris stmfd sp!, {r0, lr} /* Preserve registers */
74 1.1 chris bl _C_LABEL(irq_setmasks) /* Update the actual masks */
75 1.1 chris ldmfd sp!, {r0, pc} /* Exit */
76 1.1 chris
77 1.1 chris ENTRY(lowerspl)
78 1.1 chris mov r3, r0 /* Save the new value */
79 1.1 chris ldr r1, Lcurrent_spl_level /* Get the current spl level */
80 1.1 chris ldr r0, [r1]
81 1.1 chris cmp r3, r0
82 1.1 chris movge pc, lr
83 1.1 chris
84 1.1 chris str r3, [r1] /* Store the new spl level */
85 1.1 chris
86 1.1 chris ldr r2, Lspl_masks /* Get the spl mask */
87 1.1 chris ldr r2, [r2, r3, lsl #2]
88 1.1 chris
89 1.1 chris ldr r1, Lspl_mask /* Store in the current spl mask */
90 1.1 chris str r2, [r1]
91 1.1 chris
92 1.2 chris /* stack alignment is 8 bytes */
93 1.1 chris stmfd sp!, {r0, lr} /* Preserve registers */
94 1.1 chris bl _C_LABEL(irq_setmasks) /* Update the actual masks */
95 1.1 chris bl _C_LABEL(dosoftints) /* Process any pending soft ints */
96 1.1 chris ldmfd sp!, {r0, pc} /* Exit */
97 1.1 chris
98 1.1 chris ENTRY(splx)
99 1.2 chris ldr r1, Lcurrent_spl_level /* Get the current spl level */
100 1.1 chris mov r3, r0 /* Save the new value */
101 1.1 chris ldr r0, [r1]
102 1.1 chris cmp r3, r0
103 1.1 chris moveq pc, lr
104 1.1 chris
105 1.1 chris str r3, [r1] /* Store the new spl level */
106 1.1 chris
107 1.1 chris ldr r2, Lspl_masks /* Get the spl mask */
108 1.1 chris
109 1.1 chris ldr r1, Lspl_mask /* Store in the current spl mask */
110 1.2 chris
111 1.2 chris ldr r2, [r2, r3, lsl #2] /* Use r4 so available later */
112 1.2 chris
113 1.2 chris /* stack alignment is 8 bytes */
114 1.2 chris stmfd sp!, {r0, lr} /* Preserve registers */
115 1.1 chris str r2, [r1]
116 1.1 chris
117 1.1 chris bl _C_LABEL(irq_setmasks) /* Update the actual masks */
118 1.1 chris bl _C_LABEL(dosoftints) /* Process any pending soft ints */
119 1.1 chris ldmfd sp!, {r0, pc} /* Exit */
120