Home | History | Annotate | Line # | Download | only in pic
pic_splfuncs.c revision 1.3
      1  1.3      matt /*	$NetBSD: pic_splfuncs.c,v 1.3 2012/07/14 07:52:53 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.3      matt __KERNEL_RCSID(0, "$NetBSD: pic_splfuncs.c,v 1.3 2012/07/14 07:52:53 matt 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.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.1       bsh 		register_t psw = disable_interrupts(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.1       bsh 		restore_interrupts(psw);
     71  1.1       bsh 	}
     72  1.1       bsh 	return oldipl;
     73  1.1       bsh }
     74  1.1       bsh 
     75  1.1       bsh void
     76  1.1       bsh splx(int savedipl)
     77  1.1       bsh {
     78  1.1       bsh 	struct cpu_info * const ci = curcpu();
     79  1.1       bsh 	KASSERT(savedipl < NIPL);
     80  1.1       bsh 	if (savedipl < ci->ci_cpl) {
     81  1.1       bsh 		register_t psw = disable_interrupts(I32_bit);
     82  1.2  jakllsch 		ci->ci_intr_depth++;
     83  1.1       bsh 		pic_do_pending_ints(psw, savedipl, NULL);
     84  1.2  jakllsch 		ci->ci_intr_depth--;
     85  1.1       bsh 		restore_interrupts(psw);
     86  1.1       bsh 	}
     87  1.1       bsh 	ci->ci_cpl = savedipl;
     88  1.1       bsh }
     89