xref: /titanic_52/usr/src/uts/common/io/avintr.c (revision e23a7e348c32cb3a1a7072dcac6905a150a028d7)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
57c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate  * with the License.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate  * and limitations under the License.
137c478bd9Sstevel@tonic-gate  *
147c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * CDDL HEADER END
217c478bd9Sstevel@tonic-gate  */
227c478bd9Sstevel@tonic-gate /*
237c478bd9Sstevel@tonic-gate  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate /*
307c478bd9Sstevel@tonic-gate  * Autovectored Interrupt Configuration and Deconfiguration
317c478bd9Sstevel@tonic-gate  */
327c478bd9Sstevel@tonic-gate 
337c478bd9Sstevel@tonic-gate #include <sys/param.h>
347c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
357c478bd9Sstevel@tonic-gate #include <sys/trap.h>
367c478bd9Sstevel@tonic-gate #include <sys/t_lock.h>
377c478bd9Sstevel@tonic-gate #include <sys/avintr.h>
387c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
397c478bd9Sstevel@tonic-gate #include <sys/machlock.h>
407c478bd9Sstevel@tonic-gate #include <sys/systm.h>
417c478bd9Sstevel@tonic-gate #include <sys/machsystm.h>
427c478bd9Sstevel@tonic-gate #include <sys/sunddi.h>
437c478bd9Sstevel@tonic-gate #include <sys/x_call.h>
447c478bd9Sstevel@tonic-gate #include <sys/cpuvar.h>
457c478bd9Sstevel@tonic-gate #include <sys/atomic.h>
467c478bd9Sstevel@tonic-gate #include <sys/smp_impldefs.h>
477c478bd9Sstevel@tonic-gate #include <sys/sdt.h>
487c478bd9Sstevel@tonic-gate #include <sys/stack.h>
497c478bd9Sstevel@tonic-gate #include <sys/ddi_impldefs.h>
507c478bd9Sstevel@tonic-gate 
51*e23a7e34Slq150181 typedef struct av_softinfo {
52*e23a7e34Slq150181 	cpuset_t	av_pending;	/* pending bitmasks */
53*e23a7e34Slq150181 } av_softinfo_t;
54*e23a7e34Slq150181 
55*e23a7e34Slq150181 static void insert_av(void *intr_id, struct av_head *vectp, avfunc f,
567a364d25Sschwartz 	caddr_t arg1, caddr_t arg2, uint64_t *ticksp, int pri_level,
577a364d25Sschwartz 	dev_info_t *dip);
587c478bd9Sstevel@tonic-gate static void remove_av(void *intr_id, struct av_head *vectp, avfunc f,
597c478bd9Sstevel@tonic-gate 	int pri_level, int vect);
607c478bd9Sstevel@tonic-gate 
617c478bd9Sstevel@tonic-gate /*
627c478bd9Sstevel@tonic-gate  * Arrange for a driver to be called when a particular
637c478bd9Sstevel@tonic-gate  * auto-vectored interrupt occurs.
647c478bd9Sstevel@tonic-gate  * NOTE: if a device can generate interrupts on more than
657c478bd9Sstevel@tonic-gate  * one level, or if a driver services devices that interrupt
667c478bd9Sstevel@tonic-gate  * on more than one level, then the driver should install
677c478bd9Sstevel@tonic-gate  * itself on each of those levels.
687c478bd9Sstevel@tonic-gate  */
697c478bd9Sstevel@tonic-gate static char badsoft[] =
707c478bd9Sstevel@tonic-gate 	"add_avintr: bad soft interrupt level %d for driver '%s'\n";
717c478bd9Sstevel@tonic-gate static char multilevel[] =
727c478bd9Sstevel@tonic-gate 	"!IRQ%d is being shared by drivers with different interrupt levels.\n"
737c478bd9Sstevel@tonic-gate 	"This may result in reduced system performance.";
747c478bd9Sstevel@tonic-gate static char multilevel2[] =
757c478bd9Sstevel@tonic-gate 	"Cannot register interrupt for '%s' device at IPL %d because it\n"
767c478bd9Sstevel@tonic-gate 	"conflicts with another device using the same vector %d with an IPL\n"
777c478bd9Sstevel@tonic-gate 	"of %d. Reconfigure the conflicting devices to use different vectors.";
787c478bd9Sstevel@tonic-gate 
797c478bd9Sstevel@tonic-gate #define	MAX_VECT	256
807c478bd9Sstevel@tonic-gate struct autovec *nmivect = NULL;
817c478bd9Sstevel@tonic-gate struct av_head autovect[MAX_VECT];
827c478bd9Sstevel@tonic-gate struct av_head softvect[LOCK_LEVEL + 1];
837c478bd9Sstevel@tonic-gate kmutex_t av_lock;
847c478bd9Sstevel@tonic-gate ddi_softint_hdl_impl_t softlevel1_hdl =
85*e23a7e34Slq150181 	{0, NULL, NULL, NULL, 0, NULL, NULL, NULL};
867c478bd9Sstevel@tonic-gate 
87*e23a7e34Slq150181 
88*e23a7e34Slq150181 /*
89*e23a7e34Slq150181  * clear/check softint pending flag corresponding for
90*e23a7e34Slq150181  * the current CPU
91*e23a7e34Slq150181  */
927c478bd9Sstevel@tonic-gate void
93*e23a7e34Slq150181 av_clear_softint_pending(av_softinfo_t *infop)
947c478bd9Sstevel@tonic-gate {
95*e23a7e34Slq150181 	CPUSET_ATOMIC_DEL(infop->av_pending, CPU->cpu_seqid);
96*e23a7e34Slq150181 }
97*e23a7e34Slq150181 
98*e23a7e34Slq150181 boolean_t
99*e23a7e34Slq150181 av_check_softint_pending(av_softinfo_t *infop, boolean_t check_all)
100*e23a7e34Slq150181 {
101*e23a7e34Slq150181 	if (check_all)
102*e23a7e34Slq150181 		return (!CPUSET_ISNULL(infop->av_pending));
103*e23a7e34Slq150181 	else
104*e23a7e34Slq150181 		return (CPU_IN_SET(infop->av_pending, CPU->cpu_seqid) != 0);
105*e23a7e34Slq150181 }
106*e23a7e34Slq150181 
107*e23a7e34Slq150181 /*
108*e23a7e34Slq150181  * It first sets our av softint pending bit for the current CPU,
109*e23a7e34Slq150181  * then it sets the CPU softint pending bit for pri.
110*e23a7e34Slq150181  */
111*e23a7e34Slq150181 void
112*e23a7e34Slq150181 av_set_softint_pending(int pri, av_softinfo_t *infop)
113*e23a7e34Slq150181 {
114*e23a7e34Slq150181 	CPUSET_ATOMIC_ADD(infop->av_pending, CPU->cpu_seqid);
115*e23a7e34Slq150181 
1167c478bd9Sstevel@tonic-gate 	atomic_or_32((uint32_t *)&CPU->cpu_softinfo.st_pending, 1 << pri);
1177c478bd9Sstevel@tonic-gate }
1187c478bd9Sstevel@tonic-gate 
1197c478bd9Sstevel@tonic-gate /*
1207c478bd9Sstevel@tonic-gate  * register nmi interrupt routine. The first arg is used only to order
1217c478bd9Sstevel@tonic-gate  * various nmi interrupt service routines in the chain. Higher lvls will
1227c478bd9Sstevel@tonic-gate  * be called first
1237c478bd9Sstevel@tonic-gate  */
1247c478bd9Sstevel@tonic-gate int
1257c478bd9Sstevel@tonic-gate add_nmintr(int lvl, avfunc nmintr, char *name, caddr_t arg)
1267c478bd9Sstevel@tonic-gate {
1277c478bd9Sstevel@tonic-gate 	struct autovec  *mem;
1287c478bd9Sstevel@tonic-gate 	struct autovec *p, *prev = NULL;
1297c478bd9Sstevel@tonic-gate 
1307c478bd9Sstevel@tonic-gate 	if (nmintr == NULL) {
1317c478bd9Sstevel@tonic-gate 		printf("Attempt to add null vect for %s on nmi\n", name);
1327c478bd9Sstevel@tonic-gate 		return (0);
1337c478bd9Sstevel@tonic-gate 
1347c478bd9Sstevel@tonic-gate 	}
1357c478bd9Sstevel@tonic-gate 
1367c478bd9Sstevel@tonic-gate 	mem = kmem_zalloc(sizeof (struct autovec), KM_SLEEP);
1377c478bd9Sstevel@tonic-gate 	mem->av_vector = nmintr;
1387c478bd9Sstevel@tonic-gate 	mem->av_intarg1 = arg;
1397c478bd9Sstevel@tonic-gate 	mem->av_intarg2 = NULL;
1407c478bd9Sstevel@tonic-gate 	mem->av_intr_id = NULL;
1417c478bd9Sstevel@tonic-gate 	mem->av_prilevel = lvl;
1420b38a8bdSahl 	mem->av_dip = NULL;
1437c478bd9Sstevel@tonic-gate 	mem->av_link = NULL;
1447c478bd9Sstevel@tonic-gate 
1457c478bd9Sstevel@tonic-gate 	mutex_enter(&av_lock);
1467c478bd9Sstevel@tonic-gate 
1477c478bd9Sstevel@tonic-gate 	if (!nmivect) {
1487c478bd9Sstevel@tonic-gate 		nmivect = mem;
1497c478bd9Sstevel@tonic-gate 		mutex_exit(&av_lock);
1507c478bd9Sstevel@tonic-gate 		return (1);
1517c478bd9Sstevel@tonic-gate 	}
1527c478bd9Sstevel@tonic-gate 	/* find where it goes in list */
1537c478bd9Sstevel@tonic-gate 	for (p = nmivect; p != NULL; p = p->av_link) {
1547c478bd9Sstevel@tonic-gate 		if (p->av_vector == nmintr && p->av_intarg1 == arg) {
1557c478bd9Sstevel@tonic-gate 			/*
1567c478bd9Sstevel@tonic-gate 			 * already in list
1577c478bd9Sstevel@tonic-gate 			 * So? Somebody added the same interrupt twice.
1587c478bd9Sstevel@tonic-gate 			 */
1597c478bd9Sstevel@tonic-gate 			cmn_err(CE_WARN, "Driver already registered '%s'",
1607c478bd9Sstevel@tonic-gate 			    name);
1617c478bd9Sstevel@tonic-gate 			kmem_free(mem, sizeof (struct autovec));
1627c478bd9Sstevel@tonic-gate 			mutex_exit(&av_lock);
1637c478bd9Sstevel@tonic-gate 			return (0);
1647c478bd9Sstevel@tonic-gate 		}
1657c478bd9Sstevel@tonic-gate 		if (p->av_prilevel < lvl) {
1667c478bd9Sstevel@tonic-gate 			if (p == nmivect) {   /* it's at head of list */
1677c478bd9Sstevel@tonic-gate 				mem->av_link = p;
1687c478bd9Sstevel@tonic-gate 				nmivect = mem;
1697c478bd9Sstevel@tonic-gate 			} else {
1707c478bd9Sstevel@tonic-gate 				mem->av_link = p;
1717c478bd9Sstevel@tonic-gate 				prev->av_link = mem;
1727c478bd9Sstevel@tonic-gate 			}
1737c478bd9Sstevel@tonic-gate 			mutex_exit(&av_lock);
1747c478bd9Sstevel@tonic-gate 			return (1);
1757c478bd9Sstevel@tonic-gate 		}
1767c478bd9Sstevel@tonic-gate 		prev = p;
1777c478bd9Sstevel@tonic-gate 
1787c478bd9Sstevel@tonic-gate 	}
1797c478bd9Sstevel@tonic-gate 	/* didn't find it, add it to the end */
1807c478bd9Sstevel@tonic-gate 	prev->av_link = mem;
1817c478bd9Sstevel@tonic-gate 	mutex_exit(&av_lock);
1827c478bd9Sstevel@tonic-gate 	return (1);
1837c478bd9Sstevel@tonic-gate 
1847c478bd9Sstevel@tonic-gate }
1857c478bd9Sstevel@tonic-gate 
1867c478bd9Sstevel@tonic-gate /*
1877c478bd9Sstevel@tonic-gate  * register a hardware interrupt handler.
1887c478bd9Sstevel@tonic-gate  */
1897c478bd9Sstevel@tonic-gate int
1907c478bd9Sstevel@tonic-gate add_avintr(void *intr_id, int lvl, avfunc xxintr, char *name, int vect,
1917a364d25Sschwartz     caddr_t arg1, caddr_t arg2, uint64_t *ticksp, dev_info_t *dip)
1927c478bd9Sstevel@tonic-gate {
1937c478bd9Sstevel@tonic-gate 	struct av_head *vecp = (struct av_head *)0;
1947c478bd9Sstevel@tonic-gate 	avfunc f;
1957c478bd9Sstevel@tonic-gate 	int s, vectindex;			/* save old spl value */
1967c478bd9Sstevel@tonic-gate 	ushort_t hi_pri;
1977c478bd9Sstevel@tonic-gate 
1987c478bd9Sstevel@tonic-gate 	if ((f = xxintr) == NULL) {
1997c478bd9Sstevel@tonic-gate 		printf("Attempt to add null vect for %s on vector %d\n",
2007c478bd9Sstevel@tonic-gate 			name, vect);
2017c478bd9Sstevel@tonic-gate 		return (0);
2027c478bd9Sstevel@tonic-gate 
2037c478bd9Sstevel@tonic-gate 	}
2047c478bd9Sstevel@tonic-gate 	vectindex = vect % MAX_VECT;
2057c478bd9Sstevel@tonic-gate 
2067c478bd9Sstevel@tonic-gate 	vecp = &autovect[vectindex];
2077c478bd9Sstevel@tonic-gate 
2087c478bd9Sstevel@tonic-gate 	/*
2097c478bd9Sstevel@tonic-gate 	 * "hi_pri == 0" implies all entries on list are "unused",
2107c478bd9Sstevel@tonic-gate 	 * which means that it's OK to just insert this one.
2117c478bd9Sstevel@tonic-gate 	 */
2127c478bd9Sstevel@tonic-gate 	hi_pri = vecp->avh_hi_pri;
2137c478bd9Sstevel@tonic-gate 	if (vecp->avh_link && (hi_pri != 0)) {
2147c478bd9Sstevel@tonic-gate 		if (((hi_pri > LOCK_LEVEL) && (lvl < LOCK_LEVEL)) ||
2157c478bd9Sstevel@tonic-gate 		    ((hi_pri < LOCK_LEVEL) && (lvl > LOCK_LEVEL))) {
2167c478bd9Sstevel@tonic-gate 			cmn_err(CE_WARN, multilevel2, name, lvl, vect,
2177c478bd9Sstevel@tonic-gate 				hi_pri);
2187c478bd9Sstevel@tonic-gate 			return (0);
2197c478bd9Sstevel@tonic-gate 		}
2207c478bd9Sstevel@tonic-gate 		if ((vecp->avh_lo_pri != lvl) || (hi_pri != lvl))
2217c478bd9Sstevel@tonic-gate 			cmn_err(CE_NOTE, multilevel, vect);
2227c478bd9Sstevel@tonic-gate 	}
2237c478bd9Sstevel@tonic-gate 
224*e23a7e34Slq150181 	insert_av(intr_id, vecp, f, arg1, arg2, ticksp, lvl, dip);
2257c478bd9Sstevel@tonic-gate 	s = splhi();
2267c478bd9Sstevel@tonic-gate 	/*
2277c478bd9Sstevel@tonic-gate 	 * do what ever machine specific things are necessary
2287c478bd9Sstevel@tonic-gate 	 * to set priority level (e.g. set picmasks)
2297c478bd9Sstevel@tonic-gate 	 */
2307c478bd9Sstevel@tonic-gate 	mutex_enter(&av_lock);
2317c478bd9Sstevel@tonic-gate 	(*addspl)(vect, lvl, vecp->avh_lo_pri, vecp->avh_hi_pri);
2327c478bd9Sstevel@tonic-gate 	mutex_exit(&av_lock);
2337c478bd9Sstevel@tonic-gate 	splx(s);
2347c478bd9Sstevel@tonic-gate 	return (1);
2357c478bd9Sstevel@tonic-gate 
2367c478bd9Sstevel@tonic-gate }
2377c478bd9Sstevel@tonic-gate 
2387c478bd9Sstevel@tonic-gate void
2397c478bd9Sstevel@tonic-gate update_avsoftintr_args(void *intr_id, int lvl, caddr_t arg2)
2407c478bd9Sstevel@tonic-gate {
2417c478bd9Sstevel@tonic-gate 	struct autovec *p;
2427c478bd9Sstevel@tonic-gate 	struct autovec *target = NULL;
2437c478bd9Sstevel@tonic-gate 	struct av_head *vectp = (struct av_head *)&softvect[lvl];
2447c478bd9Sstevel@tonic-gate 
2457c478bd9Sstevel@tonic-gate 	for (p = vectp->avh_link; p && p->av_vector; p = p->av_link) {
2467c478bd9Sstevel@tonic-gate 		if (p->av_intr_id == intr_id) {
2477c478bd9Sstevel@tonic-gate 			target = p;
2487c478bd9Sstevel@tonic-gate 			break;
2497c478bd9Sstevel@tonic-gate 		}
2507c478bd9Sstevel@tonic-gate 	}
2517c478bd9Sstevel@tonic-gate 
2527c478bd9Sstevel@tonic-gate 	if (target == NULL)
2537c478bd9Sstevel@tonic-gate 		return;
2547c478bd9Sstevel@tonic-gate 	target->av_intarg2 = arg2;
2557c478bd9Sstevel@tonic-gate }
2567c478bd9Sstevel@tonic-gate 
2577c478bd9Sstevel@tonic-gate /*
2587c478bd9Sstevel@tonic-gate  * Register a software interrupt handler
2597c478bd9Sstevel@tonic-gate  */
2607c478bd9Sstevel@tonic-gate int
2617c478bd9Sstevel@tonic-gate add_avsoftintr(void *intr_id, int lvl, avfunc xxintr, char *name,
2627c478bd9Sstevel@tonic-gate     caddr_t arg1, caddr_t arg2)
2637c478bd9Sstevel@tonic-gate {
2647c478bd9Sstevel@tonic-gate 	int slvl;
265*e23a7e34Slq150181 	ddi_softint_hdl_impl_t	*hdlp = (ddi_softint_hdl_impl_t *)intr_id;
2667c478bd9Sstevel@tonic-gate 
2677c478bd9Sstevel@tonic-gate 	if ((slvl = slvltovect(lvl)) != -1)
2687c478bd9Sstevel@tonic-gate 		return (add_avintr(intr_id, lvl, xxintr,
2697a364d25Sschwartz 		    name, slvl, arg1, arg2, NULL, NULL));
2707c478bd9Sstevel@tonic-gate 
2717c478bd9Sstevel@tonic-gate 	if (intr_id == NULL) {
2727c478bd9Sstevel@tonic-gate 		printf("Attempt to add null intr_id for %s on level %d\n",
2737c478bd9Sstevel@tonic-gate 		    name, lvl);
2747c478bd9Sstevel@tonic-gate 		return (0);
2757c478bd9Sstevel@tonic-gate 	}
2767c478bd9Sstevel@tonic-gate 
2777c478bd9Sstevel@tonic-gate 	if (xxintr == NULL) {
2787c478bd9Sstevel@tonic-gate 		printf("Attempt to add null handler for %s on level %d\n",
2797c478bd9Sstevel@tonic-gate 		    name, lvl);
2807c478bd9Sstevel@tonic-gate 		return (0);
2817c478bd9Sstevel@tonic-gate 	}
2827c478bd9Sstevel@tonic-gate 
2837c478bd9Sstevel@tonic-gate 	if (lvl <= 0 || lvl > LOCK_LEVEL) {
2847c478bd9Sstevel@tonic-gate 		printf(badsoft, lvl, name);
2857c478bd9Sstevel@tonic-gate 		return (0);
2867c478bd9Sstevel@tonic-gate 	}
287*e23a7e34Slq150181 
288*e23a7e34Slq150181 	if (hdlp->ih_pending == NULL) {
289*e23a7e34Slq150181 		hdlp->ih_pending =
290*e23a7e34Slq150181 			kmem_zalloc(sizeof (av_softinfo_t), KM_SLEEP);
2917c478bd9Sstevel@tonic-gate 	}
292*e23a7e34Slq150181 
293*e23a7e34Slq150181 	insert_av(intr_id, &softvect[lvl], xxintr, arg1, arg2, NULL, lvl, NULL);
294*e23a7e34Slq150181 
2957c478bd9Sstevel@tonic-gate 	return (1);
2967c478bd9Sstevel@tonic-gate }
2977c478bd9Sstevel@tonic-gate 
2987c478bd9Sstevel@tonic-gate /* insert an interrupt vector into chain */
299*e23a7e34Slq150181 static void
3007c478bd9Sstevel@tonic-gate insert_av(void *intr_id, struct av_head *vectp, avfunc f, caddr_t arg1,
3017a364d25Sschwartz     caddr_t arg2, uint64_t *ticksp, int pri_level, dev_info_t *dip)
3027c478bd9Sstevel@tonic-gate {
3037c478bd9Sstevel@tonic-gate 	/*
3047c478bd9Sstevel@tonic-gate 	 * Protect rewrites of the list
3057c478bd9Sstevel@tonic-gate 	 */
3067c478bd9Sstevel@tonic-gate 	struct autovec *p, *mem;
3077c478bd9Sstevel@tonic-gate 
3087c478bd9Sstevel@tonic-gate 	mem = kmem_zalloc(sizeof (struct autovec), KM_SLEEP);
3097c478bd9Sstevel@tonic-gate 	mem->av_vector = f;
3107c478bd9Sstevel@tonic-gate 	mem->av_intarg1 = arg1;
3117c478bd9Sstevel@tonic-gate 	mem->av_intarg2 = arg2;
3127a364d25Sschwartz 	mem->av_ticksp = ticksp;
3137c478bd9Sstevel@tonic-gate 	mem->av_intr_id = intr_id;
3147c478bd9Sstevel@tonic-gate 	mem->av_prilevel = pri_level;
3157c478bd9Sstevel@tonic-gate 	mem->av_dip = dip;
3167c478bd9Sstevel@tonic-gate 	mem->av_link = NULL;
3177c478bd9Sstevel@tonic-gate 
3187c478bd9Sstevel@tonic-gate 	mutex_enter(&av_lock);
3197c478bd9Sstevel@tonic-gate 
3207c478bd9Sstevel@tonic-gate 	if (vectp->avh_link == NULL) {	/* Nothing on list - put it at head */
3217c478bd9Sstevel@tonic-gate 		vectp->avh_link = mem;
3227c478bd9Sstevel@tonic-gate 		vectp->avh_hi_pri = vectp->avh_lo_pri = (ushort_t)pri_level;
3237c478bd9Sstevel@tonic-gate 
3247c478bd9Sstevel@tonic-gate 		mutex_exit(&av_lock);
325*e23a7e34Slq150181 		return;
3267c478bd9Sstevel@tonic-gate 	}
3277c478bd9Sstevel@tonic-gate 
3287c478bd9Sstevel@tonic-gate 	/* find where it goes in list */
3297c478bd9Sstevel@tonic-gate 	for (p = vectp->avh_link; p != NULL; p = p->av_link) {
3307c478bd9Sstevel@tonic-gate 		if (p->av_vector == NULL) {	/* freed struct available */
3317c478bd9Sstevel@tonic-gate 			kmem_free(mem, sizeof (struct autovec));
3327c478bd9Sstevel@tonic-gate 			p->av_intarg1 = arg1;
3337c478bd9Sstevel@tonic-gate 			p->av_intarg2 = arg2;
3347a364d25Sschwartz 			p->av_ticksp = ticksp;
3357c478bd9Sstevel@tonic-gate 			p->av_intr_id = intr_id;
3367c478bd9Sstevel@tonic-gate 			p->av_prilevel = pri_level;
3370b38a8bdSahl 			p->av_dip = dip;
3387c478bd9Sstevel@tonic-gate 			if (pri_level > (int)vectp->avh_hi_pri) {
3397c478bd9Sstevel@tonic-gate 				vectp->avh_hi_pri = (ushort_t)pri_level;
3407c478bd9Sstevel@tonic-gate 			}
3417c478bd9Sstevel@tonic-gate 			if (pri_level < (int)vectp->avh_lo_pri) {
3427c478bd9Sstevel@tonic-gate 				vectp->avh_lo_pri = (ushort_t)pri_level;
3437c478bd9Sstevel@tonic-gate 			}
3447c478bd9Sstevel@tonic-gate 			p->av_vector = f;
3457c478bd9Sstevel@tonic-gate 			mutex_exit(&av_lock);
346*e23a7e34Slq150181 			return;
3477c478bd9Sstevel@tonic-gate 		}
3487c478bd9Sstevel@tonic-gate 	}
3497c478bd9Sstevel@tonic-gate 	/* insert new intpt at beginning of chain */
3507c478bd9Sstevel@tonic-gate 	mem->av_link = vectp->avh_link;
3517c478bd9Sstevel@tonic-gate 	vectp->avh_link = mem;
3527c478bd9Sstevel@tonic-gate 	if (pri_level > (int)vectp->avh_hi_pri) {
3537c478bd9Sstevel@tonic-gate 		vectp->avh_hi_pri = (ushort_t)pri_level;
3547c478bd9Sstevel@tonic-gate 	}
3557c478bd9Sstevel@tonic-gate 	if (pri_level < (int)vectp->avh_lo_pri) {
3567c478bd9Sstevel@tonic-gate 		vectp->avh_lo_pri = (ushort_t)pri_level;
3577c478bd9Sstevel@tonic-gate 	}
3587c478bd9Sstevel@tonic-gate 	mutex_exit(&av_lock);
3597c478bd9Sstevel@tonic-gate }
3607c478bd9Sstevel@tonic-gate 
361*e23a7e34Slq150181 static int
362*e23a7e34Slq150181 av_rem_softintr(void *intr_id, int lvl, avfunc xxintr, boolean_t rem_softinfo)
3637c478bd9Sstevel@tonic-gate {
3647c478bd9Sstevel@tonic-gate 	struct av_head *vecp = (struct av_head *)0;
3657c478bd9Sstevel@tonic-gate 	int slvl;
366*e23a7e34Slq150181 	ddi_softint_hdl_impl_t	*hdlp = (ddi_softint_hdl_impl_t *)intr_id;
367*e23a7e34Slq150181 	av_softinfo_t *infop = (av_softinfo_t *)hdlp->ih_pending;
3687c478bd9Sstevel@tonic-gate 
3697c478bd9Sstevel@tonic-gate 	if (xxintr == NULL)
3707c478bd9Sstevel@tonic-gate 		return (0);
3717c478bd9Sstevel@tonic-gate 
3727c478bd9Sstevel@tonic-gate 	if ((slvl = slvltovect(lvl)) != -1) {
3737c478bd9Sstevel@tonic-gate 		rem_avintr(intr_id, lvl, xxintr, slvl);
3747c478bd9Sstevel@tonic-gate 		return (1);
3757c478bd9Sstevel@tonic-gate 	}
3767c478bd9Sstevel@tonic-gate 
3777c478bd9Sstevel@tonic-gate 	if (lvl <= 0 && lvl >= LOCK_LEVEL) {
3787c478bd9Sstevel@tonic-gate 		return (0);
3797c478bd9Sstevel@tonic-gate 	}
3807c478bd9Sstevel@tonic-gate 	vecp = &softvect[lvl];
3817c478bd9Sstevel@tonic-gate 	remove_av(intr_id, vecp, xxintr, lvl, 0);
3827c478bd9Sstevel@tonic-gate 
383*e23a7e34Slq150181 	if (rem_softinfo) {
384*e23a7e34Slq150181 		kmem_free(infop, sizeof (av_softinfo_t));
385*e23a7e34Slq150181 		hdlp->ih_pending = NULL;
386*e23a7e34Slq150181 	}
387*e23a7e34Slq150181 
3887c478bd9Sstevel@tonic-gate 	return (1);
3897c478bd9Sstevel@tonic-gate }
3907c478bd9Sstevel@tonic-gate 
391*e23a7e34Slq150181 int
392*e23a7e34Slq150181 av_softint_movepri(void *intr_id, int old_lvl)
393*e23a7e34Slq150181 {
394*e23a7e34Slq150181 	int ret;
395*e23a7e34Slq150181 	ddi_softint_hdl_impl_t	*hdlp = (ddi_softint_hdl_impl_t *)intr_id;
396*e23a7e34Slq150181 
397*e23a7e34Slq150181 	ret = add_avsoftintr(intr_id, hdlp->ih_pri, hdlp->ih_cb_func,
398*e23a7e34Slq150181 	    DEVI(hdlp->ih_dip)->devi_name, hdlp->ih_cb_arg1, hdlp->ih_cb_arg2);
399*e23a7e34Slq150181 
400*e23a7e34Slq150181 	if (ret) {
401*e23a7e34Slq150181 		(void) av_rem_softintr(intr_id, old_lvl, hdlp->ih_cb_func,
402*e23a7e34Slq150181 		    B_FALSE);
403*e23a7e34Slq150181 	}
404*e23a7e34Slq150181 
405*e23a7e34Slq150181 	return (ret);
406*e23a7e34Slq150181 }
407*e23a7e34Slq150181 
408*e23a7e34Slq150181 /*
409*e23a7e34Slq150181  * Remove a driver from the autovector list.
410*e23a7e34Slq150181  */
411*e23a7e34Slq150181 int
412*e23a7e34Slq150181 rem_avsoftintr(void *intr_id, int lvl, avfunc xxintr)
413*e23a7e34Slq150181 {
414*e23a7e34Slq150181 	return (av_rem_softintr(intr_id, lvl, xxintr, B_TRUE));
415*e23a7e34Slq150181 }
416*e23a7e34Slq150181 
4177c478bd9Sstevel@tonic-gate void
4187c478bd9Sstevel@tonic-gate rem_avintr(void *intr_id, int lvl, avfunc xxintr, int vect)
4197c478bd9Sstevel@tonic-gate {
4207c478bd9Sstevel@tonic-gate 	struct av_head *vecp = (struct av_head *)0;
4217c478bd9Sstevel@tonic-gate 	avfunc f;
4227c478bd9Sstevel@tonic-gate 	int s, vectindex;			/* save old spl value */
4237c478bd9Sstevel@tonic-gate 
4247c478bd9Sstevel@tonic-gate 	if ((f = xxintr) == NULL)
4257c478bd9Sstevel@tonic-gate 		return;
4267c478bd9Sstevel@tonic-gate 
4277c478bd9Sstevel@tonic-gate 	vectindex = vect % MAX_VECT;
4287c478bd9Sstevel@tonic-gate 	vecp = &autovect[vectindex];
4297c478bd9Sstevel@tonic-gate 	remove_av(intr_id, vecp, f, lvl, vect);
4307c478bd9Sstevel@tonic-gate 	s = splhi();
4317c478bd9Sstevel@tonic-gate 	mutex_enter(&av_lock);
4327c478bd9Sstevel@tonic-gate 	(*delspl)(vect, lvl, vecp->avh_lo_pri, vecp->avh_hi_pri);
4337c478bd9Sstevel@tonic-gate 	mutex_exit(&av_lock);
4347c478bd9Sstevel@tonic-gate 	splx(s);
4357c478bd9Sstevel@tonic-gate }
4367c478bd9Sstevel@tonic-gate 
4377c478bd9Sstevel@tonic-gate 
4387c478bd9Sstevel@tonic-gate /*
4397c478bd9Sstevel@tonic-gate  * After having made a change to an autovector list, wait until we have
4407c478bd9Sstevel@tonic-gate  * seen each cpu not executing an interrupt at that level--so we know our
4417c478bd9Sstevel@tonic-gate  * change has taken effect completely (no old state in registers, etc).
4427c478bd9Sstevel@tonic-gate  */
4437c478bd9Sstevel@tonic-gate void
4447c478bd9Sstevel@tonic-gate wait_till_seen(int ipl)
4457c478bd9Sstevel@tonic-gate {
4467c478bd9Sstevel@tonic-gate 	int cpu_in_chain, cix;
4477c478bd9Sstevel@tonic-gate 	struct cpu *cpup;
4487c478bd9Sstevel@tonic-gate 	cpuset_t cpus_to_check;
4497c478bd9Sstevel@tonic-gate 
4507c478bd9Sstevel@tonic-gate 	CPUSET_ALL(cpus_to_check);
4517c478bd9Sstevel@tonic-gate 	do {
4527c478bd9Sstevel@tonic-gate 		cpu_in_chain = 0;
4537c478bd9Sstevel@tonic-gate 		for (cix = 0; cix < NCPU; cix++) {
4547c478bd9Sstevel@tonic-gate 			cpup = cpu[cix];
4557c478bd9Sstevel@tonic-gate 			if (cpup != NULL && CPU_IN_SET(cpus_to_check, cix)) {
4567c478bd9Sstevel@tonic-gate 				if (intr_active(cpup, ipl)) {
4577c478bd9Sstevel@tonic-gate 					cpu_in_chain = 1;
4587c478bd9Sstevel@tonic-gate 				} else {
4597c478bd9Sstevel@tonic-gate 					CPUSET_DEL(cpus_to_check, cix);
4607c478bd9Sstevel@tonic-gate 				}
4617c478bd9Sstevel@tonic-gate 			}
4627c478bd9Sstevel@tonic-gate 		}
4637c478bd9Sstevel@tonic-gate 	} while (cpu_in_chain);
4647c478bd9Sstevel@tonic-gate }
4657c478bd9Sstevel@tonic-gate 
4667c478bd9Sstevel@tonic-gate /* remove an interrupt vector from the chain */
4677c478bd9Sstevel@tonic-gate static void
4687c478bd9Sstevel@tonic-gate remove_av(void *intr_id, struct av_head *vectp, avfunc f, int pri_level,
4697c478bd9Sstevel@tonic-gate 	int vect)
4707c478bd9Sstevel@tonic-gate {
4717c478bd9Sstevel@tonic-gate 	struct autovec *endp, *p, *target;
4727c478bd9Sstevel@tonic-gate 	int	lo_pri, hi_pri;
4737c478bd9Sstevel@tonic-gate 	int	ipl;
4747c478bd9Sstevel@tonic-gate 	/*
4757c478bd9Sstevel@tonic-gate 	 * Protect rewrites of the list
4767c478bd9Sstevel@tonic-gate 	 */
4777c478bd9Sstevel@tonic-gate 	target = NULL;
4787c478bd9Sstevel@tonic-gate 
4797c478bd9Sstevel@tonic-gate 	mutex_enter(&av_lock);
4807c478bd9Sstevel@tonic-gate 	ipl = pri_level;
4817c478bd9Sstevel@tonic-gate 	lo_pri = MAXIPL;
4827c478bd9Sstevel@tonic-gate 	hi_pri = 0;
4837c478bd9Sstevel@tonic-gate 	for (endp = p = vectp->avh_link; p && p->av_vector; p = p->av_link) {
4847c478bd9Sstevel@tonic-gate 		endp = p;
4857c478bd9Sstevel@tonic-gate 		if ((p->av_vector == f) && (p->av_intr_id == intr_id)) {
4867c478bd9Sstevel@tonic-gate 			/* found the handler */
4877c478bd9Sstevel@tonic-gate 			target = p;
4887c478bd9Sstevel@tonic-gate 			continue;
4897c478bd9Sstevel@tonic-gate 		}
4907c478bd9Sstevel@tonic-gate 		if (p->av_prilevel > hi_pri)
4917c478bd9Sstevel@tonic-gate 			hi_pri = p->av_prilevel;
4927c478bd9Sstevel@tonic-gate 		if (p->av_prilevel < lo_pri)
4937c478bd9Sstevel@tonic-gate 			lo_pri = p->av_prilevel;
4947c478bd9Sstevel@tonic-gate 	}
4957c478bd9Sstevel@tonic-gate 	if (ipl < hi_pri)
4967c478bd9Sstevel@tonic-gate 		ipl = hi_pri;
4977c478bd9Sstevel@tonic-gate 	if (target == NULL) {	/* not found */
4987c478bd9Sstevel@tonic-gate 		printf("Couldn't remove function %p at %d, %d\n",
4997c478bd9Sstevel@tonic-gate 			(void *)f, vect, pri_level);
5007c478bd9Sstevel@tonic-gate 		mutex_exit(&av_lock);
5017c478bd9Sstevel@tonic-gate 		return;
5027c478bd9Sstevel@tonic-gate 	}
5037c478bd9Sstevel@tonic-gate 
5047c478bd9Sstevel@tonic-gate 	target->av_vector = NULL;
5057a364d25Sschwartz 	target->av_ticksp = NULL;
5067c478bd9Sstevel@tonic-gate 	wait_till_seen(ipl);
5077c478bd9Sstevel@tonic-gate 	if (endp != target) {	/* vector to be removed is not last in chain */
5080b38a8bdSahl 		target->av_vector = endp->av_vector;
5097c478bd9Sstevel@tonic-gate 		target->av_intarg1 = endp->av_intarg1;
5107c478bd9Sstevel@tonic-gate 		target->av_intarg2 = endp->av_intarg2;
5117a364d25Sschwartz 		target->av_ticksp = endp->av_ticksp;
5127c478bd9Sstevel@tonic-gate 		target->av_intr_id = endp->av_intr_id;
5130b38a8bdSahl 		target->av_prilevel = endp->av_prilevel;
5140b38a8bdSahl 		target->av_dip = endp->av_dip;
5157c478bd9Sstevel@tonic-gate 		/*
5167c478bd9Sstevel@tonic-gate 		 * We have a hole here where the routine corresponding to
5177c478bd9Sstevel@tonic-gate 		 * endp may not get called. Do a wait_till_seen to take care
5187c478bd9Sstevel@tonic-gate 		 * of this.
5197c478bd9Sstevel@tonic-gate 		 */
5207c478bd9Sstevel@tonic-gate 		wait_till_seen(ipl);
5217c478bd9Sstevel@tonic-gate 		endp->av_vector = NULL;
5227a364d25Sschwartz 		endp->av_ticksp = NULL;
5237c478bd9Sstevel@tonic-gate 	}
5247c478bd9Sstevel@tonic-gate 
5257c478bd9Sstevel@tonic-gate 	if (lo_pri > hi_pri) {	/* the chain is now empty */
5267c478bd9Sstevel@tonic-gate 		/* Leave the unused entries here for probable future use */
5277c478bd9Sstevel@tonic-gate 		vectp->avh_lo_pri = MAXIPL;
5287c478bd9Sstevel@tonic-gate 		vectp->avh_hi_pri = 0;
5297c478bd9Sstevel@tonic-gate 	} else {
5307c478bd9Sstevel@tonic-gate 		if ((int)vectp->avh_lo_pri < lo_pri)
5317c478bd9Sstevel@tonic-gate 			vectp->avh_lo_pri = (ushort_t)lo_pri;
5327c478bd9Sstevel@tonic-gate 		if ((int)vectp->avh_hi_pri > hi_pri)
5337c478bd9Sstevel@tonic-gate 			vectp->avh_hi_pri = (ushort_t)hi_pri;
5347c478bd9Sstevel@tonic-gate 	}
5357c478bd9Sstevel@tonic-gate 	mutex_exit(&av_lock);
5367c478bd9Sstevel@tonic-gate 	wait_till_seen(ipl);
5377c478bd9Sstevel@tonic-gate }
5387c478bd9Sstevel@tonic-gate 
5397c478bd9Sstevel@tonic-gate /*
5407c478bd9Sstevel@tonic-gate  * Trigger a soft interrupt.
5417c478bd9Sstevel@tonic-gate  */
5427c478bd9Sstevel@tonic-gate void
5437c478bd9Sstevel@tonic-gate siron(void)
5447c478bd9Sstevel@tonic-gate {
545*e23a7e34Slq150181 	(*setsoftint)(1, softlevel1_hdl.ih_pending);
5467c478bd9Sstevel@tonic-gate }
5477c478bd9Sstevel@tonic-gate 
5487c478bd9Sstevel@tonic-gate /*
5497c478bd9Sstevel@tonic-gate  * Walk the autovector table for this vector, invoking each
5507c478bd9Sstevel@tonic-gate  * interrupt handler as we go.
5517c478bd9Sstevel@tonic-gate  */
5527a364d25Sschwartz 
5537a364d25Sschwartz extern uint64_t intr_get_time(void);
5547a364d25Sschwartz 
5557c478bd9Sstevel@tonic-gate void
5567c478bd9Sstevel@tonic-gate av_dispatch_autovect(uint_t vec)
5577c478bd9Sstevel@tonic-gate {
5587c478bd9Sstevel@tonic-gate 	struct autovec *av;
5597c478bd9Sstevel@tonic-gate 
5607c478bd9Sstevel@tonic-gate 	ASSERT_STACK_ALIGNED();
5617c478bd9Sstevel@tonic-gate 
5627c478bd9Sstevel@tonic-gate 	while ((av = autovect[vec].avh_link) != NULL) {
5637c478bd9Sstevel@tonic-gate 		uint_t numcalled = 0;
5647c478bd9Sstevel@tonic-gate 		uint_t claimed = 0;
5657c478bd9Sstevel@tonic-gate 
5667c478bd9Sstevel@tonic-gate 		for (; av; av = av->av_link) {
5677c478bd9Sstevel@tonic-gate 			uint_t r;
5687c478bd9Sstevel@tonic-gate 			uint_t (*intr)() = av->av_vector;
5697c478bd9Sstevel@tonic-gate 			caddr_t arg1 = av->av_intarg1;
5707c478bd9Sstevel@tonic-gate 			caddr_t arg2 = av->av_intarg2;
5717c478bd9Sstevel@tonic-gate 			dev_info_t *dip = av->av_dip;
5727c478bd9Sstevel@tonic-gate 
5737c478bd9Sstevel@tonic-gate 			numcalled++;
5747c478bd9Sstevel@tonic-gate 			if (intr == NULL)
5757c478bd9Sstevel@tonic-gate 				break;
5767c478bd9Sstevel@tonic-gate 
5777c478bd9Sstevel@tonic-gate 			DTRACE_PROBE4(interrupt__start, dev_info_t *, dip,
5787c478bd9Sstevel@tonic-gate 			    void *, intr, caddr_t, arg1, caddr_t, arg2);
5797c478bd9Sstevel@tonic-gate 			r = (*intr)(arg1, arg2);
5807c478bd9Sstevel@tonic-gate 			DTRACE_PROBE4(interrupt__complete, dev_info_t *, dip,
5817c478bd9Sstevel@tonic-gate 			    void *, intr, caddr_t, arg1, uint_t, r);
5827c478bd9Sstevel@tonic-gate 			claimed |= r;
5837a364d25Sschwartz 			if (av->av_ticksp && av->av_prilevel <= LOCK_LEVEL)
5847a364d25Sschwartz 				atomic_add_64(av->av_ticksp, intr_get_time());
5857c478bd9Sstevel@tonic-gate 		}
5867c478bd9Sstevel@tonic-gate 
5877c478bd9Sstevel@tonic-gate 		/*
5887c478bd9Sstevel@tonic-gate 		 * If there's only one interrupt handler in the chain,
5897c478bd9Sstevel@tonic-gate 		 * or if no-one claimed the interrupt at all give up now.
5907c478bd9Sstevel@tonic-gate 		 */
5917c478bd9Sstevel@tonic-gate 		if (numcalled == 1 || claimed == 0)
5927c478bd9Sstevel@tonic-gate 			break;
5937c478bd9Sstevel@tonic-gate 	}
5947c478bd9Sstevel@tonic-gate }
5957c478bd9Sstevel@tonic-gate 
5967c478bd9Sstevel@tonic-gate /*
5977c478bd9Sstevel@tonic-gate  * Call every soft interrupt handler we can find at this level once.
5987c478bd9Sstevel@tonic-gate  */
5997c478bd9Sstevel@tonic-gate void
6007c478bd9Sstevel@tonic-gate av_dispatch_softvect(uint_t pil)
6017c478bd9Sstevel@tonic-gate {
6027c478bd9Sstevel@tonic-gate 	struct autovec *av;
6037c478bd9Sstevel@tonic-gate 	ddi_softint_hdl_impl_t	*hdlp;
6047c478bd9Sstevel@tonic-gate 	uint_t (*intr)();
6057c478bd9Sstevel@tonic-gate 	caddr_t arg1;
6067c478bd9Sstevel@tonic-gate 	caddr_t arg2;
6077c478bd9Sstevel@tonic-gate 
6087c478bd9Sstevel@tonic-gate 	ASSERT_STACK_ALIGNED();
6097c478bd9Sstevel@tonic-gate 	ASSERT(pil >= 0 && pil <= PIL_MAX);
6107c478bd9Sstevel@tonic-gate 
6117c478bd9Sstevel@tonic-gate 	for (av = softvect[pil].avh_link; av; av = av->av_link) {
6127c478bd9Sstevel@tonic-gate 		if ((intr = av->av_vector) == NULL)
6137c478bd9Sstevel@tonic-gate 			break;
6147c478bd9Sstevel@tonic-gate 		arg1 = av->av_intarg1;
6157c478bd9Sstevel@tonic-gate 		arg2 = av->av_intarg2;
6167c478bd9Sstevel@tonic-gate 
6177c478bd9Sstevel@tonic-gate 		hdlp = (ddi_softint_hdl_impl_t *)av->av_intr_id;
6187c478bd9Sstevel@tonic-gate 		ASSERT(hdlp);
6197c478bd9Sstevel@tonic-gate 
620*e23a7e34Slq150181 		/*
621*e23a7e34Slq150181 		 * Each cpu has its own pending bit in hdlp->ih_pending,
622*e23a7e34Slq150181 		 * here av_check/clear_softint_pending is just checking
623*e23a7e34Slq150181 		 * and clearing the pending bit for the current cpu, who
624*e23a7e34Slq150181 		 * has just triggered a softint.
625*e23a7e34Slq150181 		 */
626*e23a7e34Slq150181 		if (av_check_softint_pending(hdlp->ih_pending, B_FALSE)) {
627*e23a7e34Slq150181 			av_clear_softint_pending(hdlp->ih_pending);
6287c478bd9Sstevel@tonic-gate 			(void) (*intr)(arg1, arg2);
6297c478bd9Sstevel@tonic-gate 		}
6307c478bd9Sstevel@tonic-gate 	}
6317c478bd9Sstevel@tonic-gate }
6327c478bd9Sstevel@tonic-gate 
6337c478bd9Sstevel@tonic-gate struct regs;
6347c478bd9Sstevel@tonic-gate 
6357c478bd9Sstevel@tonic-gate /*
6367c478bd9Sstevel@tonic-gate  * Call every NMI handler we know of once.
6377c478bd9Sstevel@tonic-gate  */
6387c478bd9Sstevel@tonic-gate void
6397c478bd9Sstevel@tonic-gate av_dispatch_nmivect(struct regs *rp)
6407c478bd9Sstevel@tonic-gate {
6417c478bd9Sstevel@tonic-gate 	struct autovec *av;
6427c478bd9Sstevel@tonic-gate 
6437c478bd9Sstevel@tonic-gate 	ASSERT_STACK_ALIGNED();
6447c478bd9Sstevel@tonic-gate 
6457c478bd9Sstevel@tonic-gate 	for (av = nmivect; av; av = av->av_link)
6467c478bd9Sstevel@tonic-gate 		(void) (av->av_vector)(av->av_intarg1, rp);
6477c478bd9Sstevel@tonic-gate }
648