1 1.11 rin /* $NetBSD: spl.S,v 1.11 2021/10/11 07:26:17 rin 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.9 matt #include <arm/asm.h> 43 1.9 matt #include <arm/locore.h> 44 1.3 thorpej #include <arm/arm32/psl.h> 45 1.8 matt 46 1.11 rin RCSID("$NetBSD: spl.S,v 1.11 2021/10/11 07:26:17 rin Exp $") 47 1.1 chris 48 1.1 chris .text 49 1.1 chris .align 0 50 1.1 chris 51 1.8 matt .Lcpu_info_store: 52 1.8 matt .word _C_LABEL(cpu_info_store) 53 1.1 chris 54 1.1 chris ENTRY(raisespl) 55 1.1 chris mov r3, r0 /* Save the new value */ 56 1.8 matt ldr r1, .Lcpu_info_store /* Get the current spl level */ 57 1.8 matt ldr r0, [r1, #CI_CPL] 58 1.1 chris cmp r3, r0 59 1.8 matt RETc(le) 60 1.8 matt 61 1.8 matt stmfd sp!, {r0, r1, r4, lr} /* Preserve registers */ 62 1.1 chris 63 1.8 matt /* Disable interrupts */ 64 1.10 joerg mrs r4, cpsr 65 1.8 matt orr r2, r4, #(I32_bit) 66 1.8 matt msr cpsr_c, r2 67 1.1 chris 68 1.8 matt str r3, [r1, #CI_CPL] /* Store the new spl level */ 69 1.1 chris bl _C_LABEL(irq_setmasks) /* Update the actual masks */ 70 1.8 matt msr cpsr_c, r4 /* Restore interrupts */ 71 1.8 matt 72 1.8 matt ldmfd sp!, {r0, r1, r4, pc} /* Restore registers */ 73 1.1 chris 74 1.1 chris ENTRY(lowerspl) 75 1.1 chris mov r3, r0 /* Save the new value */ 76 1.8 matt ldr r1, .Lcpu_info_store /* Get the current spl level */ 77 1.8 matt ldr r0, [r1, #CI_CPL] 78 1.1 chris cmp r3, r0 79 1.8 matt RETc(ge) 80 1.1 chris 81 1.8 matt stmfd sp!, {r0, r1, r4, lr} /* Preserve registers */ 82 1.8 matt 83 1.8 matt /* Disable interrupts */ 84 1.10 joerg mrs r4, cpsr 85 1.8 matt orr r2, r4, #(I32_bit) 86 1.8 matt msr cpsr_c, r2 87 1.8 matt 88 1.8 matt str r3, [r1, #CI_CPL] /* Store the new spl level */ 89 1.1 chris 90 1.1 chris bl _C_LABEL(irq_setmasks) /* Update the actual masks */ 91 1.8 matt msr cpsr_all, r4 92 1.7 ad #ifdef __HAVE_FAST_SOFTINTS 93 1.1 chris bl _C_LABEL(dosoftints) /* Process any pending soft ints */ 94 1.7 ad #endif 95 1.8 matt ldmfd sp!, {r0, r1, r4, pc} /* restore registers */ 96 1.1 chris 97 1.1 chris ENTRY(splx) 98 1.1 chris mov r3, r0 /* Save the new value */ 99 1.8 matt ldr r1, .Lcpu_info_store /* Get the current spl level */ 100 1.8 matt ldr r0, [r1, #CI_CPL] 101 1.1 chris cmp r3, r0 102 1.8 matt RETc(eq) 103 1.8 matt 104 1.8 matt stmfd sp!, {r0, r1, r4, lr} 105 1.1 chris 106 1.8 matt /* Disable interrupts */ 107 1.10 joerg mrs r4, cpsr 108 1.8 matt orr r2, r4, #(I32_bit) 109 1.8 matt msr cpsr_c, r2 110 1.1 chris 111 1.8 matt str r3, [r1, #CI_CPL] /* Store the new spl level */ 112 1.1 chris 113 1.1 chris bl _C_LABEL(irq_setmasks) /* Update the actual masks */ 114 1.11 rin msr cpsr_c, r4 115 1.7 ad #ifdef __HAVE_FAST_SOFTINTS 116 1.1 chris bl _C_LABEL(dosoftints) /* Process any pending soft ints */ 117 1.7 ad #endif 118 1.8 matt ldmfd sp!, {r0, r1, r4, pc} 119