pic_splfuncs.c revision 1.1 1 1.1 bsh /* $NetBSD: pic_splfuncs.c,v 1.1 2011/03/11 03:16:14 bsh 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.1 bsh __KERNEL_RCSID(0, "$NetBSD: pic_splfuncs.c,v 1.1 2011/03/11 03:16:14 bsh Exp $");
32 1.1 bsh
33 1.1 bsh #define _INTR_PRIVATE
34 1.1 bsh #include <sys/param.h>
35 1.1 bsh #include <sys/evcnt.h>
36 1.1 bsh #include <sys/atomic.h>
37 1.1 bsh #include <sys/malloc.h>
38 1.1 bsh #include <sys/mallocvar.h>
39 1.1 bsh #include <sys/atomic.h>
40 1.1 bsh
41 1.1 bsh #include <arm/armreg.h>
42 1.1 bsh #include <arm/cpu.h>
43 1.1 bsh #include <arm/cpufunc.h>
44 1.1 bsh
45 1.1 bsh #include <arm/pic/picvar.h>
46 1.1 bsh
47 1.1 bsh
48 1.1 bsh int
49 1.1 bsh _splraise(int newipl)
50 1.1 bsh {
51 1.1 bsh struct cpu_info * const ci = curcpu();
52 1.1 bsh const int oldipl = ci->ci_cpl;
53 1.1 bsh KASSERT(newipl < NIPL);
54 1.1 bsh if (newipl > ci->ci_cpl)
55 1.1 bsh ci->ci_cpl = newipl;
56 1.1 bsh return oldipl;
57 1.1 bsh }
58 1.1 bsh int
59 1.1 bsh _spllower(int newipl)
60 1.1 bsh {
61 1.1 bsh struct cpu_info * const ci = curcpu();
62 1.1 bsh const int oldipl = ci->ci_cpl;
63 1.1 bsh KASSERT(panicstr || newipl <= ci->ci_cpl);
64 1.1 bsh if (newipl < ci->ci_cpl) {
65 1.1 bsh register_t psw = disable_interrupts(I32_bit);
66 1.1 bsh pic_do_pending_ints(psw, newipl, NULL);
67 1.1 bsh restore_interrupts(psw);
68 1.1 bsh }
69 1.1 bsh return oldipl;
70 1.1 bsh }
71 1.1 bsh
72 1.1 bsh void
73 1.1 bsh splx(int savedipl)
74 1.1 bsh {
75 1.1 bsh struct cpu_info * const ci = curcpu();
76 1.1 bsh KASSERT(savedipl < NIPL);
77 1.1 bsh if (savedipl < ci->ci_cpl) {
78 1.1 bsh register_t psw = disable_interrupts(I32_bit);
79 1.1 bsh pic_do_pending_ints(psw, savedipl, NULL);
80 1.1 bsh restore_interrupts(psw);
81 1.1 bsh }
82 1.1 bsh ci->ci_cpl = savedipl;
83 1.1 bsh }
84