pic_splfuncs.c revision 1.8 1 1.8 ryo /* $NetBSD: pic_splfuncs.c,v 1.8 2018/04/01 04:35:04 ryo Exp $ */
2 1.1 bsh /*-
3 1.1 bsh * Copyright (c) 2008 The NetBSD Foundation, Inc.
4 1.1 bsh * All rights reserved.
5 1.1 bsh *
6 1.1 bsh * This code is derived from software contributed to The NetBSD Foundation
7 1.1 bsh * by Matt Thomas.
8 1.1 bsh *
9 1.1 bsh * Redistribution and use in source and binary forms, with or without
10 1.1 bsh * modification, are permitted provided that the following conditions
11 1.1 bsh * are met:
12 1.1 bsh * 1. Redistributions of source code must retain the above copyright
13 1.1 bsh * notice, this list of conditions and the following disclaimer.
14 1.1 bsh * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 bsh * notice, this list of conditions and the following disclaimer in the
16 1.1 bsh * documentation and/or other materials provided with the distribution.
17 1.1 bsh *
18 1.1 bsh * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19 1.1 bsh * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 1.1 bsh * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 1.1 bsh * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 1.1 bsh * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 1.1 bsh * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 1.1 bsh * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 1.1 bsh * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 1.1 bsh * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 1.1 bsh * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 1.1 bsh * POSSIBILITY OF SUCH DAMAGE.
29 1.1 bsh */
30 1.1 bsh #include <sys/cdefs.h>
31 1.8 ryo __KERNEL_RCSID(0, "$NetBSD: pic_splfuncs.c,v 1.8 2018/04/01 04:35:04 ryo Exp $");
32 1.1 bsh
33 1.1 bsh #define _INTR_PRIVATE
34 1.1 bsh #include <sys/param.h>
35 1.4 matt #include <sys/atomic.h>
36 1.1 bsh #include <sys/evcnt.h>
37 1.7 matt #include <sys/lwp.h>
38 1.4 matt #include <sys/kernel.h>
39 1.4 matt
40 1.4 matt #include <dev/cons.h>
41 1.1 bsh
42 1.1 bsh #include <arm/armreg.h>
43 1.1 bsh #include <arm/cpu.h>
44 1.1 bsh #include <arm/cpufunc.h>
45 1.8 ryo #include <arm/locore.h> /* for compat aarch64 */
46 1.1 bsh
47 1.1 bsh #include <arm/pic/picvar.h>
48 1.1 bsh
49 1.1 bsh
50 1.1 bsh int
51 1.1 bsh _splraise(int newipl)
52 1.1 bsh {
53 1.1 bsh struct cpu_info * const ci = curcpu();
54 1.1 bsh const int oldipl = ci->ci_cpl;
55 1.1 bsh KASSERT(newipl < NIPL);
56 1.3 matt if (newipl > ci->ci_cpl) {
57 1.3 matt pic_set_priority(ci, newipl);
58 1.3 matt }
59 1.1 bsh return oldipl;
60 1.1 bsh }
61 1.1 bsh int
62 1.1 bsh _spllower(int newipl)
63 1.1 bsh {
64 1.1 bsh struct cpu_info * const ci = curcpu();
65 1.1 bsh const int oldipl = ci->ci_cpl;
66 1.1 bsh KASSERT(panicstr || newipl <= ci->ci_cpl);
67 1.1 bsh if (newipl < ci->ci_cpl) {
68 1.4 matt register_t psw = cpsid(I32_bit);
69 1.2 jakllsch ci->ci_intr_depth++;
70 1.1 bsh pic_do_pending_ints(psw, newipl, NULL);
71 1.2 jakllsch ci->ci_intr_depth--;
72 1.6 matt if ((psw & I32_bit) == 0 || newipl == IPL_NONE)
73 1.4 matt cpsie(I32_bit);
74 1.4 matt cpu_dosoftints();
75 1.1 bsh }
76 1.1 bsh return oldipl;
77 1.1 bsh }
78 1.1 bsh
79 1.1 bsh void
80 1.1 bsh splx(int savedipl)
81 1.1 bsh {
82 1.1 bsh struct cpu_info * const ci = curcpu();
83 1.1 bsh KASSERT(savedipl < NIPL);
84 1.4 matt
85 1.4 matt if (__predict_false(savedipl == ci->ci_cpl)) {
86 1.4 matt return;
87 1.1 bsh }
88 1.4 matt
89 1.4 matt register_t psw = cpsid(I32_bit);
90 1.4 matt KASSERTMSG(panicstr != NULL || savedipl < ci->ci_cpl,
91 1.4 matt "splx(%d) to a higher ipl than %d", savedipl, ci->ci_cpl);
92 1.4 matt
93 1.4 matt ci->ci_intr_depth++;
94 1.4 matt pic_do_pending_ints(psw, savedipl, NULL);
95 1.4 matt ci->ci_intr_depth--;
96 1.4 matt KASSERTMSG(ci->ci_cpl == savedipl, "cpl %d savedipl %d",
97 1.4 matt ci->ci_cpl, savedipl);
98 1.4 matt if ((psw & I32_bit) == 0)
99 1.4 matt cpsie(I32_bit);
100 1.5 matt cpu_dosoftints();
101 1.4 matt KASSERTMSG(ci->ci_cpl == savedipl, "cpl %d savedipl %d",
102 1.4 matt ci->ci_cpl, savedipl);
103 1.1 bsh }
104