1*7c478bd9Sstevel@tonic-gate /* 2*7c478bd9Sstevel@tonic-gate * CDDL HEADER START 3*7c478bd9Sstevel@tonic-gate * 4*7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*7c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*7c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*7c478bd9Sstevel@tonic-gate * with the License. 8*7c478bd9Sstevel@tonic-gate * 9*7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 12*7c478bd9Sstevel@tonic-gate * and limitations under the License. 13*7c478bd9Sstevel@tonic-gate * 14*7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*7c478bd9Sstevel@tonic-gate * 20*7c478bd9Sstevel@tonic-gate * CDDL HEADER END 21*7c478bd9Sstevel@tonic-gate */ 22*7c478bd9Sstevel@tonic-gate /* 23*7c478bd9Sstevel@tonic-gate * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 24*7c478bd9Sstevel@tonic-gate * Use is subject to license terms. 25*7c478bd9Sstevel@tonic-gate */ 26*7c478bd9Sstevel@tonic-gate 27*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 28*7c478bd9Sstevel@tonic-gate 29*7c478bd9Sstevel@tonic-gate #include <sys/types.h> 30*7c478bd9Sstevel@tonic-gate #include <sys/param.h> 31*7c478bd9Sstevel@tonic-gate #include <sys/t_lock.h> 32*7c478bd9Sstevel@tonic-gate #include <sys/systm.h> 33*7c478bd9Sstevel@tonic-gate #include <sys/spl.h> 34*7c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h> 35*7c478bd9Sstevel@tonic-gate #include <sys/debug.h> 36*7c478bd9Sstevel@tonic-gate #include <sys/kdi_impl.h> 37*7c478bd9Sstevel@tonic-gate 38*7c478bd9Sstevel@tonic-gate /* 39*7c478bd9Sstevel@tonic-gate * Handle software interrupts through 'softcall' mechanism 40*7c478bd9Sstevel@tonic-gate */ 41*7c478bd9Sstevel@tonic-gate 42*7c478bd9Sstevel@tonic-gate #define NSOFTCALLS 200 43*7c478bd9Sstevel@tonic-gate 44*7c478bd9Sstevel@tonic-gate typedef struct softcall { 45*7c478bd9Sstevel@tonic-gate void (*sc_func)(void *); /* function to call */ 46*7c478bd9Sstevel@tonic-gate void *sc_arg; /* arg to pass to func */ 47*7c478bd9Sstevel@tonic-gate struct softcall *sc_next; /* next in list */ 48*7c478bd9Sstevel@tonic-gate } softcall_t; 49*7c478bd9Sstevel@tonic-gate 50*7c478bd9Sstevel@tonic-gate static softcall_t softcalls[NSOFTCALLS], *softhead, *softtail, *softfree; 51*7c478bd9Sstevel@tonic-gate 52*7c478bd9Sstevel@tonic-gate static kmutex_t softcall_lock; /* protects softcall lists */ 53*7c478bd9Sstevel@tonic-gate 54*7c478bd9Sstevel@tonic-gate static void (*kdi_softcall_func)(void); 55*7c478bd9Sstevel@tonic-gate 56*7c478bd9Sstevel@tonic-gate extern void siron(void); 57*7c478bd9Sstevel@tonic-gate 58*7c478bd9Sstevel@tonic-gate void 59*7c478bd9Sstevel@tonic-gate softcall_init(void) 60*7c478bd9Sstevel@tonic-gate { 61*7c478bd9Sstevel@tonic-gate softcall_t *sc; 62*7c478bd9Sstevel@tonic-gate 63*7c478bd9Sstevel@tonic-gate for (sc = softcalls; sc < &softcalls[NSOFTCALLS]; sc++) { 64*7c478bd9Sstevel@tonic-gate sc->sc_next = softfree; 65*7c478bd9Sstevel@tonic-gate softfree = sc; 66*7c478bd9Sstevel@tonic-gate } 67*7c478bd9Sstevel@tonic-gate mutex_init(&softcall_lock, NULL, MUTEX_SPIN, (void *)ipltospl(SPL8)); 68*7c478bd9Sstevel@tonic-gate } 69*7c478bd9Sstevel@tonic-gate 70*7c478bd9Sstevel@tonic-gate /* 71*7c478bd9Sstevel@tonic-gate * Call function func with argument arg 72*7c478bd9Sstevel@tonic-gate * at some later time at software interrupt priority 73*7c478bd9Sstevel@tonic-gate */ 74*7c478bd9Sstevel@tonic-gate void 75*7c478bd9Sstevel@tonic-gate softcall(void (*func)(void *), void *arg) 76*7c478bd9Sstevel@tonic-gate { 77*7c478bd9Sstevel@tonic-gate softcall_t *sc; 78*7c478bd9Sstevel@tonic-gate 79*7c478bd9Sstevel@tonic-gate /* 80*7c478bd9Sstevel@tonic-gate * protect against cross-calls 81*7c478bd9Sstevel@tonic-gate */ 82*7c478bd9Sstevel@tonic-gate mutex_enter(&softcall_lock); 83*7c478bd9Sstevel@tonic-gate /* coalesce identical softcalls */ 84*7c478bd9Sstevel@tonic-gate for (sc = softhead; sc != 0; sc = sc->sc_next) { 85*7c478bd9Sstevel@tonic-gate if (sc->sc_func == func && sc->sc_arg == arg) { 86*7c478bd9Sstevel@tonic-gate mutex_exit(&softcall_lock); 87*7c478bd9Sstevel@tonic-gate return; 88*7c478bd9Sstevel@tonic-gate } 89*7c478bd9Sstevel@tonic-gate } 90*7c478bd9Sstevel@tonic-gate 91*7c478bd9Sstevel@tonic-gate if ((sc = softfree) == 0) 92*7c478bd9Sstevel@tonic-gate panic("too many softcalls"); 93*7c478bd9Sstevel@tonic-gate softfree = sc->sc_next; 94*7c478bd9Sstevel@tonic-gate sc->sc_func = func; 95*7c478bd9Sstevel@tonic-gate sc->sc_arg = arg; 96*7c478bd9Sstevel@tonic-gate sc->sc_next = 0; 97*7c478bd9Sstevel@tonic-gate 98*7c478bd9Sstevel@tonic-gate if (softhead) { 99*7c478bd9Sstevel@tonic-gate softtail->sc_next = sc; 100*7c478bd9Sstevel@tonic-gate softtail = sc; 101*7c478bd9Sstevel@tonic-gate mutex_exit(&softcall_lock); 102*7c478bd9Sstevel@tonic-gate } else { 103*7c478bd9Sstevel@tonic-gate softhead = softtail = sc; 104*7c478bd9Sstevel@tonic-gate mutex_exit(&softcall_lock); 105*7c478bd9Sstevel@tonic-gate siron(); 106*7c478bd9Sstevel@tonic-gate } 107*7c478bd9Sstevel@tonic-gate } 108*7c478bd9Sstevel@tonic-gate 109*7c478bd9Sstevel@tonic-gate void 110*7c478bd9Sstevel@tonic-gate kdi_softcall(void (*func)(void)) 111*7c478bd9Sstevel@tonic-gate { 112*7c478bd9Sstevel@tonic-gate kdi_softcall_func = func; 113*7c478bd9Sstevel@tonic-gate 114*7c478bd9Sstevel@tonic-gate if (softhead == NULL) 115*7c478bd9Sstevel@tonic-gate siron(); 116*7c478bd9Sstevel@tonic-gate } 117*7c478bd9Sstevel@tonic-gate 118*7c478bd9Sstevel@tonic-gate /* 119*7c478bd9Sstevel@tonic-gate * Called to process software interrupts 120*7c478bd9Sstevel@tonic-gate * take one off queue, call it, repeat 121*7c478bd9Sstevel@tonic-gate * Note queue may change during call 122*7c478bd9Sstevel@tonic-gate */ 123*7c478bd9Sstevel@tonic-gate void 124*7c478bd9Sstevel@tonic-gate softint(void) 125*7c478bd9Sstevel@tonic-gate { 126*7c478bd9Sstevel@tonic-gate softcall_t *sc; 127*7c478bd9Sstevel@tonic-gate void (*func)(); 128*7c478bd9Sstevel@tonic-gate caddr_t arg; 129*7c478bd9Sstevel@tonic-gate 130*7c478bd9Sstevel@tonic-gate for (;;) { 131*7c478bd9Sstevel@tonic-gate mutex_enter(&softcall_lock); 132*7c478bd9Sstevel@tonic-gate if ((sc = softhead) != NULL) { 133*7c478bd9Sstevel@tonic-gate func = sc->sc_func; 134*7c478bd9Sstevel@tonic-gate arg = sc->sc_arg; 135*7c478bd9Sstevel@tonic-gate softhead = sc->sc_next; 136*7c478bd9Sstevel@tonic-gate sc->sc_next = softfree; 137*7c478bd9Sstevel@tonic-gate softfree = sc; 138*7c478bd9Sstevel@tonic-gate } 139*7c478bd9Sstevel@tonic-gate mutex_exit(&softcall_lock); 140*7c478bd9Sstevel@tonic-gate if (sc == NULL) 141*7c478bd9Sstevel@tonic-gate break; 142*7c478bd9Sstevel@tonic-gate func(arg); 143*7c478bd9Sstevel@tonic-gate } 144*7c478bd9Sstevel@tonic-gate 145*7c478bd9Sstevel@tonic-gate if ((func = kdi_softcall_func) != NULL) { 146*7c478bd9Sstevel@tonic-gate kdi_softcall_func = NULL; 147*7c478bd9Sstevel@tonic-gate func(); 148*7c478bd9Sstevel@tonic-gate } 149*7c478bd9Sstevel@tonic-gate } 150