Home | History | Annotate | Line # | Download | only in pic
pic_splfuncs.c revision 1.5
      1  1.5      matt /*	$NetBSD: pic_splfuncs.c,v 1.5 2014/04/16 22:44:42 matt 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.5      matt __KERNEL_RCSID(0, "$NetBSD: pic_splfuncs.c,v 1.5 2014/04/16 22:44:42 matt 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.4      matt #include <sys/kernel.h>
     38  1.4      matt 
     39  1.4      matt #include <dev/cons.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.3      matt 	if (newipl > ci->ci_cpl) {
     55  1.3      matt 		pic_set_priority(ci, newipl);
     56  1.3      matt 	}
     57  1.1       bsh 	return oldipl;
     58  1.1       bsh }
     59  1.1       bsh int
     60  1.1       bsh _spllower(int newipl)
     61  1.1       bsh {
     62  1.1       bsh 	struct cpu_info * const ci = curcpu();
     63  1.1       bsh 	const int oldipl = ci->ci_cpl;
     64  1.1       bsh 	KASSERT(panicstr || newipl <= ci->ci_cpl);
     65  1.1       bsh 	if (newipl < ci->ci_cpl) {
     66  1.4      matt 		register_t psw = cpsid(I32_bit);
     67  1.2  jakllsch 		ci->ci_intr_depth++;
     68  1.1       bsh 		pic_do_pending_ints(psw, newipl, NULL);
     69  1.2  jakllsch 		ci->ci_intr_depth--;
     70  1.4      matt 		if ((psw & I32_bit) == 0)
     71  1.4      matt 			cpsie(I32_bit);
     72  1.4      matt 		cpu_dosoftints();
     73  1.1       bsh 	}
     74  1.1       bsh 	return oldipl;
     75  1.1       bsh }
     76  1.1       bsh 
     77  1.1       bsh void
     78  1.1       bsh splx(int savedipl)
     79  1.1       bsh {
     80  1.1       bsh 	struct cpu_info * const ci = curcpu();
     81  1.1       bsh 	KASSERT(savedipl < NIPL);
     82  1.4      matt 
     83  1.4      matt 	if (__predict_false(savedipl == ci->ci_cpl)) {
     84  1.4      matt 		return;
     85  1.1       bsh 	}
     86  1.4      matt 
     87  1.4      matt 	register_t psw = cpsid(I32_bit);
     88  1.4      matt 	KASSERTMSG(panicstr != NULL || savedipl < ci->ci_cpl,
     89  1.4      matt 	    "splx(%d) to a higher ipl than %d", savedipl, ci->ci_cpl);
     90  1.4      matt 
     91  1.4      matt 	ci->ci_intr_depth++;
     92  1.4      matt 	pic_do_pending_ints(psw, savedipl, NULL);
     93  1.4      matt 	ci->ci_intr_depth--;
     94  1.4      matt 	KASSERTMSG(ci->ci_cpl == savedipl, "cpl %d savedipl %d",
     95  1.4      matt 	    ci->ci_cpl, savedipl);
     96  1.4      matt 	if ((psw & I32_bit) == 0)
     97  1.4      matt 		cpsie(I32_bit);
     98  1.5      matt 	cpu_dosoftints();
     99  1.4      matt 	KASSERTMSG(ci->ci_cpl == savedipl, "cpl %d savedipl %d",
    100  1.4      matt 	    ci->ci_cpl, savedipl);
    101  1.1       bsh }
    102