xref: /onnv-gate/usr/src/uts/common/os/ddi_intr.c (revision 8817:18bb9bfcf6b5)
10Sstevel@tonic-gate /*
20Sstevel@tonic-gate  * CDDL HEADER START
30Sstevel@tonic-gate  *
40Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
51542Sjohnny  * Common Development and Distribution License (the "License").
61542Sjohnny  * You may not use this file except in compliance with the License.
70Sstevel@tonic-gate  *
80Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
90Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
100Sstevel@tonic-gate  * See the License for the specific language governing permissions
110Sstevel@tonic-gate  * and limitations under the License.
120Sstevel@tonic-gate  *
130Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
140Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
150Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
160Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
170Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
180Sstevel@tonic-gate  *
190Sstevel@tonic-gate  * CDDL HEADER END
200Sstevel@tonic-gate  */
210Sstevel@tonic-gate /*
228561SScott.Carter@Sun.COM  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
230Sstevel@tonic-gate  * Use is subject to license terms.
240Sstevel@tonic-gate  */
250Sstevel@tonic-gate 
260Sstevel@tonic-gate #include <sys/note.h>
270Sstevel@tonic-gate #include <sys/sysmacros.h>
280Sstevel@tonic-gate #include <sys/types.h>
290Sstevel@tonic-gate #include <sys/param.h>
300Sstevel@tonic-gate #include <sys/systm.h>
310Sstevel@tonic-gate #include <sys/kmem.h>
320Sstevel@tonic-gate #include <sys/cmn_err.h>
330Sstevel@tonic-gate #include <sys/debug.h>
340Sstevel@tonic-gate #include <sys/avintr.h>
350Sstevel@tonic-gate #include <sys/autoconf.h>
360Sstevel@tonic-gate #include <sys/sunndi.h>
370Sstevel@tonic-gate #include <sys/ndi_impldefs.h>	/* include prototypes */
381725Segillett #include <sys/atomic.h>
390Sstevel@tonic-gate 
400Sstevel@tonic-gate /*
410Sstevel@tonic-gate  * New DDI interrupt framework
420Sstevel@tonic-gate  */
430Sstevel@tonic-gate 
440Sstevel@tonic-gate /*
454974Segillett  * MSI-X allocation limit.
464974Segillett  *
474974Segillett  * This MSI-X limit or tunable may be obsolete or change with Interrupt
484974Segillett  * Resource Management (IRM) support.
490Sstevel@tonic-gate  */
504974Segillett uint_t		ddi_msix_alloc_limit = DDI_DEFAULT_MSIX_ALLOC;
510Sstevel@tonic-gate 
520Sstevel@tonic-gate /*
530Sstevel@tonic-gate  * ddi_intr_get_supported_types:
540Sstevel@tonic-gate  *	Return, as a bit mask, the hardware interrupt types supported by
550Sstevel@tonic-gate  *	both the device and by the host in the integer pointed
560Sstevel@tonic-gate  *	to be the 'typesp' argument.
570Sstevel@tonic-gate  */
580Sstevel@tonic-gate int
590Sstevel@tonic-gate ddi_intr_get_supported_types(dev_info_t *dip, int *typesp)
600Sstevel@tonic-gate {
610Sstevel@tonic-gate 	int			ret;
620Sstevel@tonic-gate 	ddi_intr_handle_impl_t	hdl;
630Sstevel@tonic-gate 
640Sstevel@tonic-gate 	if (dip == NULL)
650Sstevel@tonic-gate 		return (DDI_EINVAL);
660Sstevel@tonic-gate 
670Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_get_supported_types: dip %p\n",
680Sstevel@tonic-gate 	    (void *)dip));
690Sstevel@tonic-gate 
700Sstevel@tonic-gate 	if (*typesp = i_ddi_intr_get_supported_types(dip))
710Sstevel@tonic-gate 		return (DDI_SUCCESS);
720Sstevel@tonic-gate 
730Sstevel@tonic-gate 	bzero(&hdl, sizeof (ddi_intr_handle_impl_t));
740Sstevel@tonic-gate 	hdl.ih_dip = dip;
750Sstevel@tonic-gate 
76693Sgovinda 	ret = i_ddi_intr_ops(dip, dip, DDI_INTROP_SUPPORTED_TYPES, &hdl,
770Sstevel@tonic-gate 	    (void *)typesp);
780Sstevel@tonic-gate 
790Sstevel@tonic-gate 	if (ret != DDI_SUCCESS)
800Sstevel@tonic-gate 		return (DDI_INTR_NOTFOUND);
810Sstevel@tonic-gate 
820Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_get_supported_types: types %x\n",
830Sstevel@tonic-gate 	    *typesp));
840Sstevel@tonic-gate 
850Sstevel@tonic-gate 	return (ret);
860Sstevel@tonic-gate }
870Sstevel@tonic-gate 
880Sstevel@tonic-gate /*
890Sstevel@tonic-gate  * ddi_intr_get_nintrs:
900Sstevel@tonic-gate  * 	Return as an integer in the integer pointed to by the argument
910Sstevel@tonic-gate  * 	*nintrsp*, the number of interrupts the device supports for the
920Sstevel@tonic-gate  *	given interrupt type.
930Sstevel@tonic-gate  */
940Sstevel@tonic-gate int
950Sstevel@tonic-gate ddi_intr_get_nintrs(dev_info_t *dip, int type, int *nintrsp)
960Sstevel@tonic-gate {
970Sstevel@tonic-gate 	int			ret;
980Sstevel@tonic-gate 	ddi_intr_handle_impl_t	hdl;
990Sstevel@tonic-gate 
100693Sgovinda 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_get_nintrs: dip %p, type: %d\n",
101693Sgovinda 	    (void *)dip, type));
1020Sstevel@tonic-gate 
1038561SScott.Carter@Sun.COM 	if ((dip == NULL) || (nintrsp == NULL) ||
1048561SScott.Carter@Sun.COM 	    !DDI_INTR_TYPE_FLAG_VALID(type) ||
1052433Sanish 	    !(i_ddi_intr_get_supported_types(dip) & type)) {
1068561SScott.Carter@Sun.COM 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_get_nintrs: "
1078561SScott.Carter@Sun.COM 		    "Invalid input args\n"));
1080Sstevel@tonic-gate 		return (DDI_EINVAL);
109693Sgovinda 	}
1100Sstevel@tonic-gate 
1110Sstevel@tonic-gate 	if (*nintrsp = i_ddi_intr_get_supported_nintrs(dip, type))
1120Sstevel@tonic-gate 		return (DDI_SUCCESS);
1130Sstevel@tonic-gate 
1140Sstevel@tonic-gate 	bzero(&hdl, sizeof (ddi_intr_handle_impl_t));
1150Sstevel@tonic-gate 	hdl.ih_dip = dip;
1160Sstevel@tonic-gate 	hdl.ih_type = type;
1170Sstevel@tonic-gate 
118693Sgovinda 	ret = i_ddi_intr_ops(dip, dip, DDI_INTROP_NINTRS, &hdl,
1190Sstevel@tonic-gate 	    (void *)nintrsp);
1200Sstevel@tonic-gate 
1210Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_get_nintrs:: nintrs %x\n",
1220Sstevel@tonic-gate 	    *nintrsp));
1230Sstevel@tonic-gate 
1240Sstevel@tonic-gate 	return (ret);
1250Sstevel@tonic-gate }
1260Sstevel@tonic-gate 
1270Sstevel@tonic-gate /*
1280Sstevel@tonic-gate  * ddi_intr_get_navail:
1290Sstevel@tonic-gate  *	Bus nexus driver will return availble interrupt count value for
1300Sstevel@tonic-gate  *	a given interrupt type.
1310Sstevel@tonic-gate  *
1320Sstevel@tonic-gate  * 	Return as an integer in the integer pointed to by the argument
1330Sstevel@tonic-gate  * 	*navailp*, the number of interrupts currently available for the
1340Sstevel@tonic-gate  *	given interrupt type.
1350Sstevel@tonic-gate  */
1360Sstevel@tonic-gate int
1370Sstevel@tonic-gate ddi_intr_get_navail(dev_info_t *dip, int type, int *navailp)
1380Sstevel@tonic-gate {
139693Sgovinda 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_get_navail: dip %p, type: %d\n",
140693Sgovinda 	    (void *)dip, type));
1410Sstevel@tonic-gate 
1428561SScott.Carter@Sun.COM 	if ((dip == NULL) || (navailp == NULL) ||
1438561SScott.Carter@Sun.COM 	    !DDI_INTR_TYPE_FLAG_VALID(type) ||
1442433Sanish 	    !(i_ddi_intr_get_supported_types(dip) & type)) {
1458561SScott.Carter@Sun.COM 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_get_navail: "
1468561SScott.Carter@Sun.COM 		    "Invalid input args\n"));
1470Sstevel@tonic-gate 		return (DDI_EINVAL);
148693Sgovinda 	}
1490Sstevel@tonic-gate 
1508561SScott.Carter@Sun.COM 	if ((*navailp = i_ddi_intr_get_current_navail(dip, type)) == 0)
1518561SScott.Carter@Sun.COM 		return (DDI_INTR_NOTFOUND);
1520Sstevel@tonic-gate 
1538561SScott.Carter@Sun.COM 	return (DDI_SUCCESS);
1540Sstevel@tonic-gate }
1550Sstevel@tonic-gate 
1560Sstevel@tonic-gate /*
1570Sstevel@tonic-gate  * Interrupt allocate/free functions
1580Sstevel@tonic-gate  */
1590Sstevel@tonic-gate int
1600Sstevel@tonic-gate ddi_intr_alloc(dev_info_t *dip, ddi_intr_handle_t *h_array, int type, int inum,
1610Sstevel@tonic-gate     int count, int *actualp, int behavior)
1620Sstevel@tonic-gate {
1630Sstevel@tonic-gate 	ddi_intr_handle_impl_t	*hdlp, tmp_hdl;
1648561SScott.Carter@Sun.COM 	int			i, ret, cap = 0, curr_type, nintrs;
1658561SScott.Carter@Sun.COM 	uint_t			pri, navail, curr_nintrs = 0;
1660Sstevel@tonic-gate 
1670Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: name %s dip 0x%p "
1680Sstevel@tonic-gate 	    "type %x inum %x count %x behavior %x\n", ddi_driver_name(dip),
1690Sstevel@tonic-gate 	    (void *)dip, type, inum, count, behavior));
1700Sstevel@tonic-gate 
1710Sstevel@tonic-gate 	/* Validate parameters */
1728561SScott.Carter@Sun.COM 	if ((dip == NULL) || (h_array == NULL) || (inum < 0) || (count < 1) ||
1738561SScott.Carter@Sun.COM 	    (actualp == NULL) || !DDI_INTR_BEHAVIOR_FLAG_VALID(behavior)) {
1748561SScott.Carter@Sun.COM 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: "
1758561SScott.Carter@Sun.COM 		    "Invalid input args\n"));
1760Sstevel@tonic-gate 		return (DDI_EINVAL);
1770Sstevel@tonic-gate 	}
1780Sstevel@tonic-gate 
1790Sstevel@tonic-gate 	/* Validate interrupt type */
1802433Sanish 	if (!DDI_INTR_TYPE_FLAG_VALID(type) ||
1812433Sanish 	    !(i_ddi_intr_get_supported_types(dip) & type)) {
1820Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: type %x not "
1830Sstevel@tonic-gate 		    "supported\n", type));
1840Sstevel@tonic-gate 		return (DDI_EINVAL);
1850Sstevel@tonic-gate 	}
1860Sstevel@tonic-gate 
1878561SScott.Carter@Sun.COM 	/* Validate inum not previously allocated */
1882433Sanish 	if ((type == DDI_INTR_TYPE_FIXED) &&
1892433Sanish 	    (i_ddi_get_intr_handle(dip, inum) != NULL)) {
1902433Sanish 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: inum %d is already "
1918561SScott.Carter@Sun.COM 		    "in use, cannot allocate again!!\n", inum));
1922433Sanish 		return (DDI_EINVAL);
1932433Sanish 	}
1942433Sanish 
1958561SScott.Carter@Sun.COM 	/* Get how many interrupts the device supports */
1968561SScott.Carter@Sun.COM 	if ((nintrs = i_ddi_intr_get_supported_nintrs(dip, type)) == 0) {
1970Sstevel@tonic-gate 		if (ddi_intr_get_nintrs(dip, type, &nintrs) != DDI_SUCCESS) {
1980Sstevel@tonic-gate 			DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: no "
1990Sstevel@tonic-gate 			    "interrupts found of type %d\n", type));
2000Sstevel@tonic-gate 			return (DDI_INTR_NOTFOUND);
2010Sstevel@tonic-gate 		}
2020Sstevel@tonic-gate 	}
2030Sstevel@tonic-gate 
2048561SScott.Carter@Sun.COM 	/* Get how many interrupts the device is already using */
2058561SScott.Carter@Sun.COM 	if ((curr_type = i_ddi_intr_get_current_type(dip)) != 0) {
2068561SScott.Carter@Sun.COM 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: type %x "
2078561SScott.Carter@Sun.COM 		    "is already being used\n", curr_type));
2088561SScott.Carter@Sun.COM 		curr_nintrs = i_ddi_intr_get_current_nintrs(dip);
2098561SScott.Carter@Sun.COM 	}
2108561SScott.Carter@Sun.COM 
2118561SScott.Carter@Sun.COM 	/* Validate interrupt type consistency */
2128561SScott.Carter@Sun.COM 	if ((curr_type != 0) && (type != curr_type)) {
2138561SScott.Carter@Sun.COM 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: Requested "
2148561SScott.Carter@Sun.COM 		    "interrupt type %x is different from interrupt type %x"
2158561SScott.Carter@Sun.COM 		    "already in use\n", type, curr_type));
2168561SScott.Carter@Sun.COM 		return (DDI_EINVAL);
2178561SScott.Carter@Sun.COM 	}
2188561SScott.Carter@Sun.COM 
2198561SScott.Carter@Sun.COM 	/* Validate count does not exceed what device supports */
2200Sstevel@tonic-gate 	if (count > nintrs) {
2210Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: no of interrupts "
2220Sstevel@tonic-gate 		    "requested %d is more than supported %d\n", count, nintrs));
2230Sstevel@tonic-gate 		return (DDI_EINVAL);
2248561SScott.Carter@Sun.COM 	} else if ((count + curr_nintrs) > nintrs) {
2258561SScott.Carter@Sun.COM 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: count %d "
2268561SScott.Carter@Sun.COM 		    "+ intrs in use %d exceeds supported %d intrs\n",
2278561SScott.Carter@Sun.COM 		    count, curr_nintrs, nintrs));
2280Sstevel@tonic-gate 		return (DDI_EINVAL);
2290Sstevel@tonic-gate 	}
2300Sstevel@tonic-gate 
2318561SScott.Carter@Sun.COM 	/* Validate power of 2 requirements for MSI */
2328561SScott.Carter@Sun.COM 	if ((type == DDI_INTR_TYPE_MSI) && !ISP2(curr_nintrs + count)) {
2330Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: "
2340Sstevel@tonic-gate 		    "MSI count %d is not a power of two\n", count));
2350Sstevel@tonic-gate 		return (DDI_EINVAL);
2360Sstevel@tonic-gate 	}
2370Sstevel@tonic-gate 
2380Sstevel@tonic-gate 	/*
2398561SScott.Carter@Sun.COM 	 * Initialize the device's interrupt information structure,
2408561SScott.Carter@Sun.COM 	 * and establish an association with IRM if it is supported.
2414974Segillett 	 *
2428561SScott.Carter@Sun.COM 	 * NOTE: IRM checks minimum support, and can return DDI_EAGAIN.
2430Sstevel@tonic-gate 	 */
2448561SScott.Carter@Sun.COM 	if (curr_nintrs == 0) {
2458561SScott.Carter@Sun.COM 		i_ddi_intr_devi_init(dip);
2468561SScott.Carter@Sun.COM 		if (i_ddi_irm_insert(dip, type, count) == DDI_EAGAIN) {
2478561SScott.Carter@Sun.COM 			cmn_err(CE_WARN, "ddi_intr_alloc: "
2488561SScott.Carter@Sun.COM 			    "cannot fit into interrupt pool\n");
2498561SScott.Carter@Sun.COM 			return (DDI_EAGAIN);
2508561SScott.Carter@Sun.COM 		}
2518561SScott.Carter@Sun.COM 	}
2528561SScott.Carter@Sun.COM 
2538561SScott.Carter@Sun.COM 	/* Get how many interrupts are currently available */
2548561SScott.Carter@Sun.COM 	navail = i_ddi_intr_get_current_navail(dip, type);
2554974Segillett 
2568561SScott.Carter@Sun.COM 	/* Validate that requested number of interrupts are available */
2578561SScott.Carter@Sun.COM 	if (curr_nintrs == navail) {
2588561SScott.Carter@Sun.COM 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: max # of intrs %d "
2598561SScott.Carter@Sun.COM 		    "already allocated\n", navail));
2608561SScott.Carter@Sun.COM 		return (DDI_EAGAIN);
2618561SScott.Carter@Sun.COM 	}
2628561SScott.Carter@Sun.COM 	if ((count + curr_nintrs) > navail) {
2638561SScott.Carter@Sun.COM 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: requested # of "
2648561SScott.Carter@Sun.COM 		    "intrs %d exceeds # of available intrs %d\n", count,
2658561SScott.Carter@Sun.COM 		    navail - curr_nintrs));
2668561SScott.Carter@Sun.COM 		if (behavior == DDI_INTR_ALLOC_STRICT) {
2670Sstevel@tonic-gate 			DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: "
2688561SScott.Carter@Sun.COM 			    "DDI_INTR_ALLOC_STRICT flag is passed, "
2698561SScott.Carter@Sun.COM 			    "return failure\n"));
2708561SScott.Carter@Sun.COM 			i_ddi_intr_devi_fini(dip);
2718561SScott.Carter@Sun.COM 			return (DDI_EAGAIN);
2723625Segillett 		}
2738561SScott.Carter@Sun.COM 		count = navail - curr_nintrs;
2740Sstevel@tonic-gate 	}
2750Sstevel@tonic-gate 
2760Sstevel@tonic-gate 	/* Now allocate required number of interrupts */
2770Sstevel@tonic-gate 	bzero(&tmp_hdl, sizeof (ddi_intr_handle_impl_t));
2780Sstevel@tonic-gate 	tmp_hdl.ih_type = type;
2790Sstevel@tonic-gate 	tmp_hdl.ih_inum = inum;
2800Sstevel@tonic-gate 	tmp_hdl.ih_scratch1 = count;
2811717Swesolows 	tmp_hdl.ih_scratch2 = (void *)(uintptr_t)behavior;
2820Sstevel@tonic-gate 	tmp_hdl.ih_dip = dip;
2830Sstevel@tonic-gate 
284693Sgovinda 	if (i_ddi_intr_ops(dip, dip, DDI_INTROP_ALLOC,
2850Sstevel@tonic-gate 	    &tmp_hdl, (void *)actualp) != DDI_SUCCESS) {
2860Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: allocation "
2870Sstevel@tonic-gate 		    "failed\n"));
2881725Segillett 		i_ddi_intr_devi_fini(dip);
2890Sstevel@tonic-gate 		return (*actualp ? DDI_EAGAIN : DDI_INTR_NOTFOUND);
2900Sstevel@tonic-gate 	}
2910Sstevel@tonic-gate 
292693Sgovinda 	if ((ret = i_ddi_intr_ops(dip, dip, DDI_INTROP_GETPRI,
2930Sstevel@tonic-gate 	    &tmp_hdl, (void *)&pri)) != DDI_SUCCESS) {
2940Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: get priority "
2950Sstevel@tonic-gate 		    "failed\n"));
2961725Segillett 		goto fail;
2970Sstevel@tonic-gate 	}
2980Sstevel@tonic-gate 
2990Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: getting capability\n"));
3000Sstevel@tonic-gate 
301693Sgovinda 	if ((ret = i_ddi_intr_ops(dip, dip, DDI_INTROP_GETCAP,
3020Sstevel@tonic-gate 	    &tmp_hdl, (void *)&cap)) != DDI_SUCCESS) {
3030Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: get capability "
3040Sstevel@tonic-gate 		    "failed\n"));
3051725Segillett 		goto fail;
3060Sstevel@tonic-gate 	}
3070Sstevel@tonic-gate 
3081725Segillett 	/*
3091725Segillett 	 * Save current interrupt type, supported and current intr count.
3101725Segillett 	 */
3110Sstevel@tonic-gate 	i_ddi_intr_set_current_type(dip, type);
3120Sstevel@tonic-gate 	i_ddi_intr_set_supported_nintrs(dip, nintrs);
3130Sstevel@tonic-gate 	i_ddi_intr_set_current_nintrs(dip,
3140Sstevel@tonic-gate 	    i_ddi_intr_get_current_nintrs(dip) + *actualp);
3150Sstevel@tonic-gate 
3160Sstevel@tonic-gate 	/* Now, go and handle each "handle" */
3178561SScott.Carter@Sun.COM 	for (i = inum; i < (inum + *actualp); i++) {
3180Sstevel@tonic-gate 		hdlp = (ddi_intr_handle_impl_t *)kmem_zalloc(
3190Sstevel@tonic-gate 		    (sizeof (ddi_intr_handle_impl_t)), KM_SLEEP);
3200Sstevel@tonic-gate 		rw_init(&hdlp->ih_rwlock, NULL, RW_DRIVER, NULL);
3210Sstevel@tonic-gate 		h_array[i] = (struct __ddi_intr_handle *)hdlp;
3220Sstevel@tonic-gate 		hdlp->ih_type = type;
3230Sstevel@tonic-gate 		hdlp->ih_pri = pri;
3240Sstevel@tonic-gate 		hdlp->ih_cap = cap;
3250Sstevel@tonic-gate 		hdlp->ih_ver = DDI_INTR_VERSION;
3260Sstevel@tonic-gate 		hdlp->ih_state = DDI_IHDL_STATE_ALLOC;
3270Sstevel@tonic-gate 		hdlp->ih_dip = dip;
3288561SScott.Carter@Sun.COM 		hdlp->ih_inum = i;
329916Sschwartz 		i_ddi_alloc_intr_phdl(hdlp);
3300Sstevel@tonic-gate 		if (type & DDI_INTR_TYPE_FIXED)
3318561SScott.Carter@Sun.COM 			i_ddi_set_intr_handle(dip, hdlp->ih_inum,
3328561SScott.Carter@Sun.COM 			    (ddi_intr_handle_t)hdlp);
3330Sstevel@tonic-gate 
3340Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_alloc: hdlp = 0x%p\n",
3350Sstevel@tonic-gate 		    (void *)h_array[i]));
3360Sstevel@tonic-gate 	}
3370Sstevel@tonic-gate 
3380Sstevel@tonic-gate 	return (DDI_SUCCESS);
3391725Segillett 
3401725Segillett fail:
3411725Segillett 	(void) i_ddi_intr_ops(tmp_hdl.ih_dip, tmp_hdl.ih_dip,
3421725Segillett 	    DDI_INTROP_FREE, &tmp_hdl, NULL);
3431725Segillett 	i_ddi_intr_devi_fini(dip);
3441725Segillett 
3451725Segillett 	return (ret);
3460Sstevel@tonic-gate }
3470Sstevel@tonic-gate 
3480Sstevel@tonic-gate int
3490Sstevel@tonic-gate ddi_intr_free(ddi_intr_handle_t h)
3500Sstevel@tonic-gate {
3510Sstevel@tonic-gate 	ddi_intr_handle_impl_t	*hdlp = (ddi_intr_handle_impl_t *)h;
3520Sstevel@tonic-gate 	int			ret;
3530Sstevel@tonic-gate 
3540Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_free: hdlp = %p\n", (void *)hdlp));
3550Sstevel@tonic-gate 
3560Sstevel@tonic-gate 	if (hdlp == NULL)
3570Sstevel@tonic-gate 		return (DDI_EINVAL);
3580Sstevel@tonic-gate 
3590Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_WRITER);
3601725Segillett 	if (((hdlp->ih_flags & DDI_INTR_MSIX_DUP) &&
3611725Segillett 	    (hdlp->ih_state != DDI_IHDL_STATE_ADDED)) ||
3621725Segillett 	    ((hdlp->ih_state != DDI_IHDL_STATE_ALLOC) &&
3631725Segillett 	    (!(hdlp->ih_flags & DDI_INTR_MSIX_DUP)))) {
3640Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
3650Sstevel@tonic-gate 		return (DDI_EINVAL);
3660Sstevel@tonic-gate 	}
3670Sstevel@tonic-gate 
3682588Segillett 	/* Set the number of interrupts to free */
3692588Segillett 	hdlp->ih_scratch1 = 1;
3702588Segillett 
371693Sgovinda 	ret = i_ddi_intr_ops(hdlp->ih_dip, hdlp->ih_dip,
3720Sstevel@tonic-gate 	    DDI_INTROP_FREE, hdlp, NULL);
3730Sstevel@tonic-gate 
3740Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
3750Sstevel@tonic-gate 	if (ret == DDI_SUCCESS) {
3761725Segillett 		/* This would be the dup vector */
3771725Segillett 		if (hdlp->ih_flags & DDI_INTR_MSIX_DUP)
3781725Segillett 			atomic_dec_32(&hdlp->ih_main->ih_dup_cnt);
3791725Segillett 		else {
3801725Segillett 			i_ddi_intr_set_current_nintrs(hdlp->ih_dip,
3811725Segillett 			    i_ddi_intr_get_current_nintrs(hdlp->ih_dip) - 1);
3820Sstevel@tonic-gate 
3832588Segillett 			if (hdlp->ih_type & DDI_INTR_TYPE_FIXED)
3842588Segillett 				i_ddi_set_intr_handle(hdlp->ih_dip,
3852588Segillett 				    hdlp->ih_inum, NULL);
3861725Segillett 
3872588Segillett 			i_ddi_intr_devi_fini(hdlp->ih_dip);
3881725Segillett 			i_ddi_free_intr_phdl(hdlp);
389693Sgovinda 		}
3900Sstevel@tonic-gate 		rw_destroy(&hdlp->ih_rwlock);
3910Sstevel@tonic-gate 		kmem_free(hdlp, sizeof (ddi_intr_handle_impl_t));
3920Sstevel@tonic-gate 	}
3930Sstevel@tonic-gate 
3940Sstevel@tonic-gate 	return (ret);
3950Sstevel@tonic-gate }
3960Sstevel@tonic-gate 
3970Sstevel@tonic-gate /*
3980Sstevel@tonic-gate  * Interrupt get/set capacity functions
3990Sstevel@tonic-gate  *
4000Sstevel@tonic-gate  * The logic used to figure this out is shown here:
4010Sstevel@tonic-gate  *
4020Sstevel@tonic-gate  *			Device level		Platform level	    Intr source
4030Sstevel@tonic-gate  * 1. Fixed interrupts
4040Sstevel@tonic-gate  * (non-PCI)
4050Sstevel@tonic-gate  * o Flags supported	N/A			Maskable/Pending/    rootnex
4060Sstevel@tonic-gate  *						No Block Enable
4070Sstevel@tonic-gate  * o navail					1
4080Sstevel@tonic-gate  *
4090Sstevel@tonic-gate  * 2. PCI Fixed interrupts
4100Sstevel@tonic-gate  * o Flags supported	pending/Maskable	Maskable/pending/    pci
4110Sstevel@tonic-gate  *						No Block enable
4120Sstevel@tonic-gate  * o navail		N/A			1
4130Sstevel@tonic-gate  *
4140Sstevel@tonic-gate  * 3. PCI MSI
4150Sstevel@tonic-gate  * o Flags supported	Maskable/Pending	Maskable/Pending    pci
4160Sstevel@tonic-gate  *			Block Enable		(if drvr doesn't)   Block Enable
4170Sstevel@tonic-gate  * o navail		N/A			#vectors - #used    N/A
4180Sstevel@tonic-gate  *
4190Sstevel@tonic-gate  * 4. PCI MSI-X
4200Sstevel@tonic-gate  * o Flags supported	Maskable/Pending	Maskable/Pending    pci
4210Sstevel@tonic-gate  *			Block Enable				    Block Enable
4220Sstevel@tonic-gate  * o navail		N/A			#vectors - #used    N/A
4230Sstevel@tonic-gate  *
4240Sstevel@tonic-gate  * where:
4250Sstevel@tonic-gate  *	#vectors	- Total numbers of vectors available
4260Sstevel@tonic-gate  *	#used		- Total numbers of vectors currently being used
4270Sstevel@tonic-gate  *
4280Sstevel@tonic-gate  * For devices complying to PCI2.3 or greater, see bit10 of Command Register
4290Sstevel@tonic-gate  * 0 - enables assertion of INTx
4300Sstevel@tonic-gate  * 1 - disables assertion of INTx
4310Sstevel@tonic-gate  *
4320Sstevel@tonic-gate  * For non MSI/X interrupts; if the IRQ is shared then all ddi_intr_set_*()
4330Sstevel@tonic-gate  * operations return failure.
4340Sstevel@tonic-gate  */
4350Sstevel@tonic-gate int
4360Sstevel@tonic-gate ddi_intr_get_cap(ddi_intr_handle_t h, int *flagsp)
4370Sstevel@tonic-gate {
4380Sstevel@tonic-gate 	ddi_intr_handle_impl_t	*hdlp = (ddi_intr_handle_impl_t *)h;
4390Sstevel@tonic-gate 	int			ret;
4400Sstevel@tonic-gate 
4410Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_get_cap: hdlp = %p\n",
4420Sstevel@tonic-gate 	    (void *)hdlp));
4430Sstevel@tonic-gate 
4440Sstevel@tonic-gate 	*flagsp = 0;
4450Sstevel@tonic-gate 	if (hdlp == NULL)
4460Sstevel@tonic-gate 		return (DDI_EINVAL);
4470Sstevel@tonic-gate 
4480Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_READER);
4490Sstevel@tonic-gate 
4500Sstevel@tonic-gate 	if (hdlp->ih_cap) {
4510Sstevel@tonic-gate 		*flagsp = hdlp->ih_cap & ~DDI_INTR_FLAG_MSI64;
4520Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
4530Sstevel@tonic-gate 		return (DDI_SUCCESS);
4540Sstevel@tonic-gate 	}
4550Sstevel@tonic-gate 
456693Sgovinda 	ret = i_ddi_intr_ops(hdlp->ih_dip, hdlp->ih_dip,
4570Sstevel@tonic-gate 	    DDI_INTROP_GETCAP, hdlp, (void *)flagsp);
4580Sstevel@tonic-gate 
4590Sstevel@tonic-gate 	if (ret == DDI_SUCCESS) {
4600Sstevel@tonic-gate 		hdlp->ih_cap = *flagsp;
4610Sstevel@tonic-gate 
4620Sstevel@tonic-gate 		/* Mask out MSI/X 64-bit support to the consumer */
4630Sstevel@tonic-gate 		*flagsp &= ~DDI_INTR_FLAG_MSI64;
4640Sstevel@tonic-gate 	}
4650Sstevel@tonic-gate 
4660Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
4670Sstevel@tonic-gate 	return (ret);
4680Sstevel@tonic-gate }
4690Sstevel@tonic-gate 
4700Sstevel@tonic-gate int
4710Sstevel@tonic-gate ddi_intr_set_cap(ddi_intr_handle_t h, int flags)
4720Sstevel@tonic-gate {
4730Sstevel@tonic-gate 	ddi_intr_handle_impl_t	*hdlp = (ddi_intr_handle_impl_t *)h;
4740Sstevel@tonic-gate 	int			ret;
4750Sstevel@tonic-gate 
4760Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_set_cap: hdlp = %p", (void *)hdlp));
4770Sstevel@tonic-gate 
4780Sstevel@tonic-gate 	if (hdlp == NULL)
4790Sstevel@tonic-gate 		return (DDI_EINVAL);
4800Sstevel@tonic-gate 
4810Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_WRITER);
4820Sstevel@tonic-gate 	if (hdlp->ih_state != DDI_IHDL_STATE_ALLOC) {
4830Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
4840Sstevel@tonic-gate 		return (DDI_EINVAL);
4850Sstevel@tonic-gate 	}
4860Sstevel@tonic-gate 
4870Sstevel@tonic-gate 	/* Only DDI_INTR_FLAG_LEVEL or DDI_INTR_FLAG_EDGE are allowed */
4880Sstevel@tonic-gate 	if (!(flags & (DDI_INTR_FLAG_EDGE | DDI_INTR_FLAG_LEVEL))) {
4890Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "%s%d: only LEVEL or EDGE capability "
4900Sstevel@tonic-gate 		    "can be set\n", ddi_driver_name(hdlp->ih_dip),
4910Sstevel@tonic-gate 		    ddi_get_instance(hdlp->ih_dip)));
4920Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
4930Sstevel@tonic-gate 		return (DDI_EINVAL);
4940Sstevel@tonic-gate 	}
4950Sstevel@tonic-gate 
4960Sstevel@tonic-gate 	/* Both level/edge flags must be currently supported */
4970Sstevel@tonic-gate 	if (!(hdlp->ih_cap & (DDI_INTR_FLAG_EDGE | DDI_INTR_FLAG_LEVEL))) {
4980Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "%s%d: Both LEVEL and EDGE capability"
4990Sstevel@tonic-gate 		    " must be supported\n", ddi_driver_name(hdlp->ih_dip),
5000Sstevel@tonic-gate 		    ddi_get_instance(hdlp->ih_dip)));
5010Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
5020Sstevel@tonic-gate 		return (DDI_ENOTSUP);
5030Sstevel@tonic-gate 	}
5040Sstevel@tonic-gate 
505693Sgovinda 	ret = i_ddi_intr_ops(hdlp->ih_dip, hdlp->ih_dip,
5060Sstevel@tonic-gate 	    DDI_INTROP_SETCAP, hdlp, &flags);
5070Sstevel@tonic-gate 
5080Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
5090Sstevel@tonic-gate 	return (ret);
5100Sstevel@tonic-gate }
5110Sstevel@tonic-gate 
5120Sstevel@tonic-gate /*
5130Sstevel@tonic-gate  * Priority related functions
5140Sstevel@tonic-gate  */
5150Sstevel@tonic-gate 
5160Sstevel@tonic-gate /*
5170Sstevel@tonic-gate  * ddi_intr_get_hilevel_pri:
5180Sstevel@tonic-gate  *	Returns the minimum priority level for a
5190Sstevel@tonic-gate  *	high-level interrupt on a platform.
5200Sstevel@tonic-gate  */
5210Sstevel@tonic-gate uint_t
5220Sstevel@tonic-gate ddi_intr_get_hilevel_pri(void)
5230Sstevel@tonic-gate {
5240Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_get_hilevel_pri:\n"));
5250Sstevel@tonic-gate 	return (LOCK_LEVEL + 1);
5260Sstevel@tonic-gate }
5270Sstevel@tonic-gate 
5280Sstevel@tonic-gate int
5290Sstevel@tonic-gate ddi_intr_get_pri(ddi_intr_handle_t h, uint_t *prip)
5300Sstevel@tonic-gate {
5310Sstevel@tonic-gate 	ddi_intr_handle_impl_t	*hdlp = (ddi_intr_handle_impl_t *)h;
5320Sstevel@tonic-gate 	int			ret;
5330Sstevel@tonic-gate 
5340Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_get_pri: hdlp = %p\n",
5350Sstevel@tonic-gate 	    (void *)hdlp));
5360Sstevel@tonic-gate 
5370Sstevel@tonic-gate 	*prip = 0;
5380Sstevel@tonic-gate 	if (hdlp == NULL)
5390Sstevel@tonic-gate 		return (DDI_EINVAL);
5400Sstevel@tonic-gate 
5410Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_READER);
5420Sstevel@tonic-gate 	/* Already initialized, just return that */
5430Sstevel@tonic-gate 	if (hdlp->ih_pri) {
5440Sstevel@tonic-gate 		*prip = hdlp->ih_pri;
5450Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
5460Sstevel@tonic-gate 		return (DDI_SUCCESS);
5470Sstevel@tonic-gate 	}
5480Sstevel@tonic-gate 
549693Sgovinda 	ret = i_ddi_intr_ops(hdlp->ih_dip, hdlp->ih_dip,
5500Sstevel@tonic-gate 	    DDI_INTROP_GETPRI, hdlp, (void *)prip);
5510Sstevel@tonic-gate 
5520Sstevel@tonic-gate 	if (ret == DDI_SUCCESS)
5530Sstevel@tonic-gate 		hdlp->ih_pri = *prip;
5540Sstevel@tonic-gate 
5550Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
5560Sstevel@tonic-gate 	return (ret);
5570Sstevel@tonic-gate }
5580Sstevel@tonic-gate 
5590Sstevel@tonic-gate int
5600Sstevel@tonic-gate ddi_intr_set_pri(ddi_intr_handle_t h, uint_t pri)
5610Sstevel@tonic-gate {
5620Sstevel@tonic-gate 	ddi_intr_handle_impl_t	*hdlp = (ddi_intr_handle_impl_t *)h;
5630Sstevel@tonic-gate 	int			ret;
5640Sstevel@tonic-gate 
5650Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_set_pri: hdlp = %p", (void *)hdlp));
5660Sstevel@tonic-gate 
5670Sstevel@tonic-gate 	if (hdlp == NULL)
5680Sstevel@tonic-gate 		return (DDI_EINVAL);
5690Sstevel@tonic-gate 
5700Sstevel@tonic-gate 	/* Validate priority argument */
5710Sstevel@tonic-gate 	if (pri < DDI_INTR_PRI_MIN || pri > DDI_INTR_PRI_MAX) {
5720Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_set_pri: invalid priority "
5730Sstevel@tonic-gate 		    "specified  = %x\n", pri));
5740Sstevel@tonic-gate 		return (DDI_EINVAL);
5750Sstevel@tonic-gate 	}
5760Sstevel@tonic-gate 
5770Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_WRITER);
5780Sstevel@tonic-gate 	if (hdlp->ih_state != DDI_IHDL_STATE_ALLOC) {
5790Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
5800Sstevel@tonic-gate 		return (DDI_EINVAL);
5810Sstevel@tonic-gate 	}
5820Sstevel@tonic-gate 
5830Sstevel@tonic-gate 	/* If the passed priority is same as existing priority; do nothing */
5840Sstevel@tonic-gate 	if (pri == hdlp->ih_pri) {
5850Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
5860Sstevel@tonic-gate 		return (DDI_SUCCESS);
5870Sstevel@tonic-gate 	}
5880Sstevel@tonic-gate 
589693Sgovinda 	ret = i_ddi_intr_ops(hdlp->ih_dip, hdlp->ih_dip,
5900Sstevel@tonic-gate 	    DDI_INTROP_SETPRI, hdlp, &pri);
5910Sstevel@tonic-gate 
5920Sstevel@tonic-gate 	if (ret == DDI_SUCCESS)
5930Sstevel@tonic-gate 		hdlp->ih_pri = pri;
5940Sstevel@tonic-gate 
5950Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
5960Sstevel@tonic-gate 	return (ret);
5970Sstevel@tonic-gate }
5980Sstevel@tonic-gate 
5990Sstevel@tonic-gate /*
6000Sstevel@tonic-gate  * Interrupt add/duplicate/remove handlers
6010Sstevel@tonic-gate  */
6020Sstevel@tonic-gate int
6030Sstevel@tonic-gate ddi_intr_add_handler(ddi_intr_handle_t h, ddi_intr_handler_t inthandler,
6040Sstevel@tonic-gate     void *arg1, void *arg2)
6050Sstevel@tonic-gate {
6060Sstevel@tonic-gate 	ddi_intr_handle_impl_t	*hdlp = (ddi_intr_handle_impl_t *)h;
6070Sstevel@tonic-gate 	int			ret;
6080Sstevel@tonic-gate 
6090Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_add_handler: hdlp = 0x%p\n",
6100Sstevel@tonic-gate 	    (void *)hdlp));
6110Sstevel@tonic-gate 
6120Sstevel@tonic-gate 	if ((hdlp == NULL) || (inthandler == NULL))
6130Sstevel@tonic-gate 		return (DDI_EINVAL);
6140Sstevel@tonic-gate 
6150Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_WRITER);
6160Sstevel@tonic-gate 	if (hdlp->ih_state != DDI_IHDL_STATE_ALLOC) {
6170Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
6180Sstevel@tonic-gate 		return (DDI_EINVAL);
6190Sstevel@tonic-gate 	}
6200Sstevel@tonic-gate 
6210Sstevel@tonic-gate 	hdlp->ih_cb_func = inthandler;
6220Sstevel@tonic-gate 	hdlp->ih_cb_arg1 = arg1;
6230Sstevel@tonic-gate 	hdlp->ih_cb_arg2 = arg2;
6240Sstevel@tonic-gate 
625693Sgovinda 	ret = i_ddi_intr_ops(hdlp->ih_dip, hdlp->ih_dip,
6260Sstevel@tonic-gate 	    DDI_INTROP_ADDISR, hdlp, NULL);
6270Sstevel@tonic-gate 
6280Sstevel@tonic-gate 	if (ret != DDI_SUCCESS) {
6290Sstevel@tonic-gate 		hdlp->ih_cb_func = NULL;
6300Sstevel@tonic-gate 		hdlp->ih_cb_arg1 = NULL;
6310Sstevel@tonic-gate 		hdlp->ih_cb_arg2 = NULL;
6320Sstevel@tonic-gate 	} else
6330Sstevel@tonic-gate 		hdlp->ih_state = DDI_IHDL_STATE_ADDED;
6340Sstevel@tonic-gate 
6350Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
6360Sstevel@tonic-gate 	return (ret);
6370Sstevel@tonic-gate }
6380Sstevel@tonic-gate 
6390Sstevel@tonic-gate int
6401725Segillett ddi_intr_dup_handler(ddi_intr_handle_t org, int dup_inum,
6411725Segillett     ddi_intr_handle_t *dup)
6420Sstevel@tonic-gate {
6430Sstevel@tonic-gate 	ddi_intr_handle_impl_t	*hdlp = (ddi_intr_handle_impl_t *)org;
6440Sstevel@tonic-gate 	ddi_intr_handle_impl_t	*dup_hdlp;
6450Sstevel@tonic-gate 	int			ret;
6460Sstevel@tonic-gate 
6470Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_dup_handler: hdlp = 0x%p\n",
6480Sstevel@tonic-gate 	    (void *)hdlp));
6490Sstevel@tonic-gate 
6501725Segillett 	/* Do some input argument checking ("dup" handle is not allocated) */
6512433Sanish 	if ((hdlp == NULL) || (*dup != NULL) || (dup_inum < 0)) {
6522433Sanish 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_dup_handler: Invalid "
6532433Sanish 		    "input args\n"));
6540Sstevel@tonic-gate 		return (DDI_EINVAL);
6552433Sanish 	}
6560Sstevel@tonic-gate 
6570Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_READER);
6580Sstevel@tonic-gate 
6590Sstevel@tonic-gate 	/* Do some input argument checking */
6600Sstevel@tonic-gate 	if ((hdlp->ih_state == DDI_IHDL_STATE_ALLOC) ||	/* intr handle alloc? */
6611725Segillett 	    (hdlp->ih_type != DDI_INTR_TYPE_MSIX) ||	/* only MSI-X allowed */
6621725Segillett 	    (hdlp->ih_flags & DDI_INTR_MSIX_DUP)) {	/* only dup original */
6630Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
6640Sstevel@tonic-gate 		return (DDI_EINVAL);
6650Sstevel@tonic-gate 	}
6660Sstevel@tonic-gate 
6671725Segillett 	hdlp->ih_scratch1 = dup_inum;
668693Sgovinda 	ret = i_ddi_intr_ops(hdlp->ih_dip, hdlp->ih_dip,
6691725Segillett 	    DDI_INTROP_DUPVEC, hdlp, NULL);
6700Sstevel@tonic-gate 
6710Sstevel@tonic-gate 	if (ret == DDI_SUCCESS) {
6720Sstevel@tonic-gate 		dup_hdlp = (ddi_intr_handle_impl_t *)
6731725Segillett 		    kmem_alloc(sizeof (ddi_intr_handle_impl_t), KM_SLEEP);
6741725Segillett 
6751725Segillett 		atomic_add_32(&hdlp->ih_dup_cnt, 1);
6760Sstevel@tonic-gate 
6771725Segillett 		*dup = (ddi_intr_handle_t)dup_hdlp;
6781725Segillett 		bcopy(hdlp, dup_hdlp, sizeof (ddi_intr_handle_impl_t));
6791725Segillett 
6801725Segillett 		/* These fields are unique to each dupped msi-x vector */
6810Sstevel@tonic-gate 		rw_init(&dup_hdlp->ih_rwlock, NULL, RW_DRIVER, NULL);
6820Sstevel@tonic-gate 		dup_hdlp->ih_state = DDI_IHDL_STATE_ADDED;
6831725Segillett 		dup_hdlp->ih_inum = dup_inum;
6841725Segillett 		dup_hdlp->ih_flags |= DDI_INTR_MSIX_DUP;
6851725Segillett 		dup_hdlp->ih_dup_cnt = 0;
6860Sstevel@tonic-gate 
6871725Segillett 		/* Point back to original vector */
6881725Segillett 		dup_hdlp->ih_main = hdlp;
6890Sstevel@tonic-gate 	}
6900Sstevel@tonic-gate 
6910Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
6920Sstevel@tonic-gate 	return (ret);
6930Sstevel@tonic-gate }
6940Sstevel@tonic-gate 
6950Sstevel@tonic-gate int
6960Sstevel@tonic-gate ddi_intr_remove_handler(ddi_intr_handle_t h)
6970Sstevel@tonic-gate {
6980Sstevel@tonic-gate 	ddi_intr_handle_impl_t	*hdlp = (ddi_intr_handle_impl_t *)h;
6991725Segillett 	int			ret = DDI_SUCCESS;
7000Sstevel@tonic-gate 
7010Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_remove_handler: hdlp = %p\n",
7020Sstevel@tonic-gate 	    (void *)hdlp));
7030Sstevel@tonic-gate 
7040Sstevel@tonic-gate 	if (hdlp == NULL)
7050Sstevel@tonic-gate 		return (DDI_EINVAL);
7060Sstevel@tonic-gate 
7070Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_WRITER);
7081725Segillett 
7090Sstevel@tonic-gate 	if (hdlp->ih_state != DDI_IHDL_STATE_ADDED) {
7101725Segillett 		ret = DDI_EINVAL;
7111725Segillett 		goto done;
7121725Segillett 	} else if (hdlp->ih_flags & DDI_INTR_MSIX_DUP)
7131725Segillett 		goto done;
7141725Segillett 
7151725Segillett 	ASSERT(hdlp->ih_dup_cnt == 0);
7161725Segillett 	if (hdlp->ih_dup_cnt > 0) {
7171725Segillett 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_remove_handler: MSI-X "
7181725Segillett 		    "dup_cnt %d is not 0\n", hdlp->ih_dup_cnt));
7191725Segillett 		ret = DDI_FAILURE;
7201725Segillett 		goto done;
7210Sstevel@tonic-gate 	}
7220Sstevel@tonic-gate 
723693Sgovinda 	ret = i_ddi_intr_ops(hdlp->ih_dip, hdlp->ih_dip,
7240Sstevel@tonic-gate 	    DDI_INTROP_REMISR, hdlp, NULL);
7250Sstevel@tonic-gate 
7260Sstevel@tonic-gate 	if (ret == DDI_SUCCESS) {
7270Sstevel@tonic-gate 		hdlp->ih_state = DDI_IHDL_STATE_ALLOC;
7280Sstevel@tonic-gate 		hdlp->ih_cb_func = NULL;
7290Sstevel@tonic-gate 		hdlp->ih_cb_arg1 = NULL;
7300Sstevel@tonic-gate 		hdlp->ih_cb_arg2 = NULL;
7310Sstevel@tonic-gate 	}
7320Sstevel@tonic-gate 
7331725Segillett done:
7340Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
7350Sstevel@tonic-gate 	return (ret);
7360Sstevel@tonic-gate }
7370Sstevel@tonic-gate 
7380Sstevel@tonic-gate /*
7390Sstevel@tonic-gate  * Interrupt enable/disable/block_enable/block_disable handlers
7400Sstevel@tonic-gate  */
7410Sstevel@tonic-gate int
7420Sstevel@tonic-gate ddi_intr_enable(ddi_intr_handle_t h)
7430Sstevel@tonic-gate {
7440Sstevel@tonic-gate 	ddi_intr_handle_impl_t	*hdlp = (ddi_intr_handle_impl_t *)h;
7450Sstevel@tonic-gate 	int			ret;
7460Sstevel@tonic-gate 
7470Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_enable: hdlp = %p\n",
7480Sstevel@tonic-gate 	    (void *)hdlp));
7490Sstevel@tonic-gate 
7500Sstevel@tonic-gate 	if (hdlp == NULL)
7510Sstevel@tonic-gate 		return (DDI_EINVAL);
7520Sstevel@tonic-gate 
7530Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_WRITER);
7540Sstevel@tonic-gate 	if ((hdlp->ih_state != DDI_IHDL_STATE_ADDED) ||
7550Sstevel@tonic-gate 	    ((hdlp->ih_type == DDI_INTR_TYPE_MSI) &&
7560Sstevel@tonic-gate 	    (hdlp->ih_cap & DDI_INTR_FLAG_BLOCK))) {
7570Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
7580Sstevel@tonic-gate 		return (DDI_EINVAL);
7590Sstevel@tonic-gate 	}
7600Sstevel@tonic-gate 
7611725Segillett 	I_DDI_VERIFY_MSIX_HANDLE(hdlp);
7621725Segillett 
763693Sgovinda 	ret = i_ddi_intr_ops(hdlp->ih_dip, hdlp->ih_dip,
7640Sstevel@tonic-gate 	    DDI_INTROP_ENABLE, hdlp, NULL);
7650Sstevel@tonic-gate 
766*8817SKerry.Shu@Sun.COM 	if (ret == DDI_SUCCESS) {
7670Sstevel@tonic-gate 		hdlp->ih_state = DDI_IHDL_STATE_ENABLE;
768*8817SKerry.Shu@Sun.COM 		i_ddi_intr_set_current_nenables(hdlp->ih_dip,
769*8817SKerry.Shu@Sun.COM 		    i_ddi_intr_get_current_nenables(hdlp->ih_dip) + 1);
770*8817SKerry.Shu@Sun.COM 	}
7710Sstevel@tonic-gate 
7720Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
7730Sstevel@tonic-gate 	return (ret);
7740Sstevel@tonic-gate }
7750Sstevel@tonic-gate 
7760Sstevel@tonic-gate int
7770Sstevel@tonic-gate ddi_intr_disable(ddi_intr_handle_t h)
7780Sstevel@tonic-gate {
7790Sstevel@tonic-gate 	ddi_intr_handle_impl_t	*hdlp = (ddi_intr_handle_impl_t *)h;
7800Sstevel@tonic-gate 	int			ret;
7810Sstevel@tonic-gate 
7820Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_disable: hdlp = %p\n",
7830Sstevel@tonic-gate 	    (void *)hdlp));
7840Sstevel@tonic-gate 
7850Sstevel@tonic-gate 	if (hdlp == NULL)
7860Sstevel@tonic-gate 		return (DDI_EINVAL);
7870Sstevel@tonic-gate 
7880Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_WRITER);
7890Sstevel@tonic-gate 	if ((hdlp->ih_state != DDI_IHDL_STATE_ENABLE) ||
7900Sstevel@tonic-gate 	    ((hdlp->ih_type == DDI_INTR_TYPE_MSI) &&
7910Sstevel@tonic-gate 	    (hdlp->ih_cap & DDI_INTR_FLAG_BLOCK))) {
7920Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
7930Sstevel@tonic-gate 		return (DDI_EINVAL);
7940Sstevel@tonic-gate 	}
7950Sstevel@tonic-gate 
7961725Segillett 	I_DDI_VERIFY_MSIX_HANDLE(hdlp);
7971725Segillett 
798693Sgovinda 	ret = i_ddi_intr_ops(hdlp->ih_dip, hdlp->ih_dip,
7990Sstevel@tonic-gate 	    DDI_INTROP_DISABLE, hdlp, NULL);
8000Sstevel@tonic-gate 
801*8817SKerry.Shu@Sun.COM 	if (ret == DDI_SUCCESS) {
8020Sstevel@tonic-gate 		hdlp->ih_state = DDI_IHDL_STATE_ADDED;
803*8817SKerry.Shu@Sun.COM 		i_ddi_intr_set_current_nenables(hdlp->ih_dip,
804*8817SKerry.Shu@Sun.COM 		    i_ddi_intr_get_current_nenables(hdlp->ih_dip) - 1);
805*8817SKerry.Shu@Sun.COM 	}
8060Sstevel@tonic-gate 
8070Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
8080Sstevel@tonic-gate 	return (ret);
8090Sstevel@tonic-gate }
8100Sstevel@tonic-gate 
8110Sstevel@tonic-gate int
8120Sstevel@tonic-gate ddi_intr_block_enable(ddi_intr_handle_t *h_array, int count)
8130Sstevel@tonic-gate {
8140Sstevel@tonic-gate 	ddi_intr_handle_impl_t	*hdlp;
8150Sstevel@tonic-gate 	int			i, ret;
8160Sstevel@tonic-gate 
8170Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_block_enable: h_array = %p\n",
8180Sstevel@tonic-gate 	    (void *)h_array));
8190Sstevel@tonic-gate 
8200Sstevel@tonic-gate 	if (h_array == NULL)
8210Sstevel@tonic-gate 		return (DDI_EINVAL);
8220Sstevel@tonic-gate 
8230Sstevel@tonic-gate 	for (i = 0; i < count; i++) {
8240Sstevel@tonic-gate 		hdlp = (ddi_intr_handle_impl_t *)h_array[i];
8250Sstevel@tonic-gate 		rw_enter(&hdlp->ih_rwlock, RW_READER);
8260Sstevel@tonic-gate 
8270Sstevel@tonic-gate 		if (hdlp->ih_state != DDI_IHDL_STATE_ADDED ||
8280Sstevel@tonic-gate 		    hdlp->ih_type != DDI_INTR_TYPE_MSI ||
8290Sstevel@tonic-gate 		    !(hdlp->ih_cap & DDI_INTR_FLAG_BLOCK)) {
8300Sstevel@tonic-gate 			rw_exit(&hdlp->ih_rwlock);
8310Sstevel@tonic-gate 			return (DDI_EINVAL);
8320Sstevel@tonic-gate 		}
8330Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
8340Sstevel@tonic-gate 	}
8350Sstevel@tonic-gate 
8360Sstevel@tonic-gate 	hdlp = (ddi_intr_handle_impl_t *)h_array[0];
8370Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_WRITER);
8380Sstevel@tonic-gate 	hdlp->ih_scratch1 = count;
8391542Sjohnny 	hdlp->ih_scratch2 = (void *)h_array;
8400Sstevel@tonic-gate 
841693Sgovinda 	ret = i_ddi_intr_ops(hdlp->ih_dip, hdlp->ih_dip,
8420Sstevel@tonic-gate 	    DDI_INTROP_BLOCKENABLE, hdlp, NULL);
8430Sstevel@tonic-gate 
8440Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
8450Sstevel@tonic-gate 
8460Sstevel@tonic-gate 	if (ret == DDI_SUCCESS) {
8470Sstevel@tonic-gate 		for (i = 0; i < count; i++) {
8480Sstevel@tonic-gate 			hdlp = (ddi_intr_handle_impl_t *)h_array[i];
8490Sstevel@tonic-gate 			rw_enter(&hdlp->ih_rwlock, RW_WRITER);
8500Sstevel@tonic-gate 			hdlp->ih_state = DDI_IHDL_STATE_ENABLE;
8510Sstevel@tonic-gate 			rw_exit(&hdlp->ih_rwlock);
8520Sstevel@tonic-gate 		}
853*8817SKerry.Shu@Sun.COM 		i_ddi_intr_set_current_nenables(hdlp->ih_dip, 1);
8540Sstevel@tonic-gate 	}
8550Sstevel@tonic-gate 
8560Sstevel@tonic-gate 	return (ret);
8570Sstevel@tonic-gate }
8580Sstevel@tonic-gate 
8590Sstevel@tonic-gate int
8600Sstevel@tonic-gate ddi_intr_block_disable(ddi_intr_handle_t *h_array, int count)
8610Sstevel@tonic-gate {
8620Sstevel@tonic-gate 	ddi_intr_handle_impl_t	*hdlp;
8630Sstevel@tonic-gate 	int			i, ret;
8640Sstevel@tonic-gate 
8650Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_block_disable: h_array = %p\n",
8660Sstevel@tonic-gate 	    (void *)h_array));
8670Sstevel@tonic-gate 
8680Sstevel@tonic-gate 	if (h_array == NULL)
8690Sstevel@tonic-gate 		return (DDI_EINVAL);
8700Sstevel@tonic-gate 
8710Sstevel@tonic-gate 	for (i = 0; i < count; i++) {
8720Sstevel@tonic-gate 		hdlp = (ddi_intr_handle_impl_t *)h_array[i];
8730Sstevel@tonic-gate 		rw_enter(&hdlp->ih_rwlock, RW_READER);
8740Sstevel@tonic-gate 		if (hdlp->ih_state != DDI_IHDL_STATE_ENABLE ||
8750Sstevel@tonic-gate 		    hdlp->ih_type != DDI_INTR_TYPE_MSI ||
8760Sstevel@tonic-gate 		    !(hdlp->ih_cap & DDI_INTR_FLAG_BLOCK)) {
8770Sstevel@tonic-gate 			rw_exit(&hdlp->ih_rwlock);
8780Sstevel@tonic-gate 			return (DDI_EINVAL);
8790Sstevel@tonic-gate 		}
8800Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
8810Sstevel@tonic-gate 	}
8820Sstevel@tonic-gate 
8830Sstevel@tonic-gate 	hdlp = (ddi_intr_handle_impl_t *)h_array[0];
8840Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_WRITER);
8850Sstevel@tonic-gate 	hdlp->ih_scratch1 = count;
8861542Sjohnny 	hdlp->ih_scratch2 = (void *)h_array;
8870Sstevel@tonic-gate 
888693Sgovinda 	ret = i_ddi_intr_ops(hdlp->ih_dip, hdlp->ih_dip,
8890Sstevel@tonic-gate 	    DDI_INTROP_BLOCKDISABLE, hdlp, NULL);
8900Sstevel@tonic-gate 
8910Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
8920Sstevel@tonic-gate 
8930Sstevel@tonic-gate 	if (ret == DDI_SUCCESS) {
8940Sstevel@tonic-gate 		for (i = 0; i < count; i++) {
8950Sstevel@tonic-gate 			hdlp = (ddi_intr_handle_impl_t *)h_array[i];
8960Sstevel@tonic-gate 			rw_enter(&hdlp->ih_rwlock, RW_WRITER);
8970Sstevel@tonic-gate 			hdlp->ih_state = DDI_IHDL_STATE_ADDED;
8980Sstevel@tonic-gate 			rw_exit(&hdlp->ih_rwlock);
8990Sstevel@tonic-gate 		}
900*8817SKerry.Shu@Sun.COM 		i_ddi_intr_set_current_nenables(hdlp->ih_dip, 0);
9010Sstevel@tonic-gate 	}
9020Sstevel@tonic-gate 
9030Sstevel@tonic-gate 	return (ret);
9040Sstevel@tonic-gate }
9050Sstevel@tonic-gate 
9060Sstevel@tonic-gate /*
9070Sstevel@tonic-gate  * Interrupt set/clr mask handlers
9080Sstevel@tonic-gate  */
9090Sstevel@tonic-gate int
9100Sstevel@tonic-gate ddi_intr_set_mask(ddi_intr_handle_t h)
9110Sstevel@tonic-gate {
9120Sstevel@tonic-gate 	ddi_intr_handle_impl_t	*hdlp = (ddi_intr_handle_impl_t *)h;
9130Sstevel@tonic-gate 	int			ret;
9140Sstevel@tonic-gate 
9150Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_set_mask: hdlp = %p\n",
9160Sstevel@tonic-gate 	    (void *)hdlp));
9170Sstevel@tonic-gate 
9180Sstevel@tonic-gate 	if (hdlp == NULL)
9190Sstevel@tonic-gate 		return (DDI_EINVAL);
9200Sstevel@tonic-gate 
9210Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_WRITER);
9221653Sgovinda 	if ((hdlp->ih_state != DDI_IHDL_STATE_ENABLE) ||
9231653Sgovinda 	    (!(hdlp->ih_cap & DDI_INTR_FLAG_MASKABLE))) {
9240Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
9250Sstevel@tonic-gate 		return (DDI_EINVAL);
9260Sstevel@tonic-gate 	}
9270Sstevel@tonic-gate 
928693Sgovinda 	ret =  i_ddi_intr_ops(hdlp->ih_dip, hdlp->ih_dip,
9290Sstevel@tonic-gate 	    DDI_INTROP_SETMASK, hdlp, NULL);
9300Sstevel@tonic-gate 
9310Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
9320Sstevel@tonic-gate 	return (ret);
9330Sstevel@tonic-gate }
9340Sstevel@tonic-gate 
9350Sstevel@tonic-gate int
9360Sstevel@tonic-gate ddi_intr_clr_mask(ddi_intr_handle_t h)
9370Sstevel@tonic-gate {
9380Sstevel@tonic-gate 	ddi_intr_handle_impl_t	*hdlp = (ddi_intr_handle_impl_t *)h;
9390Sstevel@tonic-gate 	int			ret;
9400Sstevel@tonic-gate 
9410Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_clr_mask: hdlp = %p\n",
9420Sstevel@tonic-gate 	    (void *)hdlp));
9430Sstevel@tonic-gate 
9440Sstevel@tonic-gate 	if (hdlp == NULL)
9450Sstevel@tonic-gate 		return (DDI_EINVAL);
9460Sstevel@tonic-gate 
9470Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_WRITER);
9481653Sgovinda 	if ((hdlp->ih_state != DDI_IHDL_STATE_ENABLE) ||
9491653Sgovinda 	    (!(hdlp->ih_cap & DDI_INTR_FLAG_MASKABLE))) {
9500Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
9510Sstevel@tonic-gate 		return (DDI_EINVAL);
9520Sstevel@tonic-gate 	}
9530Sstevel@tonic-gate 
954693Sgovinda 	ret = i_ddi_intr_ops(hdlp->ih_dip, hdlp->ih_dip,
9550Sstevel@tonic-gate 	    DDI_INTROP_CLRMASK, hdlp, NULL);
9560Sstevel@tonic-gate 
9570Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
9580Sstevel@tonic-gate 	return (ret);
9590Sstevel@tonic-gate }
9600Sstevel@tonic-gate 
9610Sstevel@tonic-gate /*
9620Sstevel@tonic-gate  * Interrupt get_pending handler
9630Sstevel@tonic-gate  */
9640Sstevel@tonic-gate int
9650Sstevel@tonic-gate ddi_intr_get_pending(ddi_intr_handle_t h, int *pendingp)
9660Sstevel@tonic-gate {
9670Sstevel@tonic-gate 	ddi_intr_handle_impl_t	*hdlp = (ddi_intr_handle_impl_t *)h;
9680Sstevel@tonic-gate 	int			ret;
9690Sstevel@tonic-gate 
9700Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_get_pending: hdlp = %p\n",
9710Sstevel@tonic-gate 	    (void *)hdlp));
9720Sstevel@tonic-gate 
9730Sstevel@tonic-gate 	if (hdlp == NULL)
9740Sstevel@tonic-gate 		return (DDI_EINVAL);
9750Sstevel@tonic-gate 
9760Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_READER);
9770Sstevel@tonic-gate 	if (!(hdlp->ih_cap & DDI_INTR_FLAG_PENDING)) {
9780Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
9790Sstevel@tonic-gate 		return (DDI_EINVAL);
9800Sstevel@tonic-gate 	}
9810Sstevel@tonic-gate 
982693Sgovinda 	ret = i_ddi_intr_ops(hdlp->ih_dip, hdlp->ih_dip,
9830Sstevel@tonic-gate 	    DDI_INTROP_GETPENDING, hdlp, (void *)pendingp);
9840Sstevel@tonic-gate 
9850Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
9860Sstevel@tonic-gate 	return (ret);
9870Sstevel@tonic-gate }
9880Sstevel@tonic-gate 
9890Sstevel@tonic-gate /*
9900Sstevel@tonic-gate  * Soft interrupt handlers
9910Sstevel@tonic-gate  */
9920Sstevel@tonic-gate /*
9930Sstevel@tonic-gate  * Add a soft interrupt and register its handler
9940Sstevel@tonic-gate  */
9950Sstevel@tonic-gate /* ARGSUSED */
9960Sstevel@tonic-gate int
9970Sstevel@tonic-gate ddi_intr_add_softint(dev_info_t *dip, ddi_softint_handle_t *h_p, int soft_pri,
9980Sstevel@tonic-gate     ddi_intr_handler_t handler, void *arg1)
9990Sstevel@tonic-gate {
10000Sstevel@tonic-gate 	ddi_softint_hdl_impl_t	*hdlp;
10010Sstevel@tonic-gate 	int			ret;
10020Sstevel@tonic-gate 
10030Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_add_softint: dip = %p, "
10040Sstevel@tonic-gate 	    "softpri = 0x%x\n", (void *)dip, soft_pri));
10050Sstevel@tonic-gate 
10060Sstevel@tonic-gate 	if ((dip == NULL) || (h_p == NULL) || (handler == NULL)) {
10070Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_add_softint: "
10080Sstevel@tonic-gate 		    "invalid arguments"));
10090Sstevel@tonic-gate 
10100Sstevel@tonic-gate 		return (DDI_EINVAL);
10110Sstevel@tonic-gate 	}
10120Sstevel@tonic-gate 
10130Sstevel@tonic-gate 	/* Validate input arguments */
10140Sstevel@tonic-gate 	if (soft_pri < DDI_INTR_SOFTPRI_MIN ||
10150Sstevel@tonic-gate 	    soft_pri > DDI_INTR_SOFTPRI_MAX) {
10160Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_add_softint: invalid "
10170Sstevel@tonic-gate 		    "soft_pri input given  = %x\n", soft_pri));
10180Sstevel@tonic-gate 		return (DDI_EINVAL);
10190Sstevel@tonic-gate 	}
10200Sstevel@tonic-gate 
10210Sstevel@tonic-gate 	hdlp = (ddi_softint_hdl_impl_t *)kmem_zalloc(
10220Sstevel@tonic-gate 	    sizeof (ddi_softint_hdl_impl_t), KM_SLEEP);
10230Sstevel@tonic-gate 
10240Sstevel@tonic-gate 	/* fill up internally */
10250Sstevel@tonic-gate 	rw_init(&hdlp->ih_rwlock, NULL, RW_DRIVER, NULL);
10260Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_WRITER);
10270Sstevel@tonic-gate 	hdlp->ih_pri = soft_pri;
10280Sstevel@tonic-gate 	hdlp->ih_dip = dip;
10290Sstevel@tonic-gate 	hdlp->ih_cb_func = handler;
10300Sstevel@tonic-gate 	hdlp->ih_cb_arg1 = arg1;
10310Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_add_softint: hdlp = %p\n",
10320Sstevel@tonic-gate 	    (void *)hdlp));
10330Sstevel@tonic-gate 
10340Sstevel@tonic-gate 	/* do the platform specific calls */
10350Sstevel@tonic-gate 	if ((ret = i_ddi_add_softint(hdlp)) != DDI_SUCCESS) {
10360Sstevel@tonic-gate 		rw_exit(&hdlp->ih_rwlock);
10370Sstevel@tonic-gate 		rw_destroy(&hdlp->ih_rwlock);
10380Sstevel@tonic-gate 		kmem_free(hdlp, sizeof (ddi_softint_hdl_impl_t));
10390Sstevel@tonic-gate 		return (ret);
10400Sstevel@tonic-gate 	}
10410Sstevel@tonic-gate 
10420Sstevel@tonic-gate 	*h_p = (ddi_softint_handle_t)hdlp;
10430Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
10440Sstevel@tonic-gate 	return (ret);
10450Sstevel@tonic-gate }
10460Sstevel@tonic-gate 
10470Sstevel@tonic-gate /*
10480Sstevel@tonic-gate  * Remove the soft interrupt
10490Sstevel@tonic-gate  */
10500Sstevel@tonic-gate int
10510Sstevel@tonic-gate ddi_intr_remove_softint(ddi_softint_handle_t h)
10520Sstevel@tonic-gate {
10530Sstevel@tonic-gate 	ddi_softint_hdl_impl_t	*hdlp = (ddi_softint_hdl_impl_t *)h;
10540Sstevel@tonic-gate 
10550Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_remove_softint: hdlp = %p\n",
10560Sstevel@tonic-gate 	    (void *)hdlp));
10570Sstevel@tonic-gate 
10580Sstevel@tonic-gate 	if (hdlp == NULL)
10590Sstevel@tonic-gate 		return (DDI_EINVAL);
10600Sstevel@tonic-gate 
10610Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_WRITER);
10620Sstevel@tonic-gate 	i_ddi_remove_softint(hdlp);
10630Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
10640Sstevel@tonic-gate 	rw_destroy(&hdlp->ih_rwlock);
10650Sstevel@tonic-gate 
10660Sstevel@tonic-gate 	/* kmem_free the hdl impl_t structure allocated earlier */
10670Sstevel@tonic-gate 	kmem_free(hdlp, sizeof (ddi_softint_hdl_impl_t));
10680Sstevel@tonic-gate 	return (DDI_SUCCESS);
10690Sstevel@tonic-gate }
10700Sstevel@tonic-gate 
10710Sstevel@tonic-gate /*
10720Sstevel@tonic-gate  * Trigger a soft interrupt
10730Sstevel@tonic-gate  */
10740Sstevel@tonic-gate int
10750Sstevel@tonic-gate ddi_intr_trigger_softint(ddi_softint_handle_t h, void *arg2)
10760Sstevel@tonic-gate {
10770Sstevel@tonic-gate 	ddi_softint_hdl_impl_t	*hdlp = (ddi_softint_hdl_impl_t *)h;
10780Sstevel@tonic-gate 	int			ret;
10790Sstevel@tonic-gate 
10800Sstevel@tonic-gate 	if (hdlp == NULL)
10810Sstevel@tonic-gate 		return (DDI_EINVAL);
10820Sstevel@tonic-gate 
1083278Sgovinda 	if ((ret = i_ddi_trigger_softint(hdlp, arg2)) != DDI_SUCCESS) {
10840Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_trigger_softint: failed, "
10850Sstevel@tonic-gate 		    " ret 0%x\n", ret));
1086278Sgovinda 
1087278Sgovinda 		return (ret);
10880Sstevel@tonic-gate 	}
10890Sstevel@tonic-gate 
1090278Sgovinda 	hdlp->ih_cb_arg2 = arg2;
1091278Sgovinda 	return (DDI_SUCCESS);
10920Sstevel@tonic-gate }
10930Sstevel@tonic-gate 
10940Sstevel@tonic-gate /*
10950Sstevel@tonic-gate  * Get the soft interrupt priority
10960Sstevel@tonic-gate  */
10970Sstevel@tonic-gate int
10980Sstevel@tonic-gate ddi_intr_get_softint_pri(ddi_softint_handle_t h, uint_t *soft_prip)
10990Sstevel@tonic-gate {
11000Sstevel@tonic-gate 	ddi_softint_hdl_impl_t	*hdlp = (ddi_softint_hdl_impl_t *)h;
11010Sstevel@tonic-gate 
11020Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_get_softint_pri: h = %p\n",
11030Sstevel@tonic-gate 	    (void *)h));
11040Sstevel@tonic-gate 
11050Sstevel@tonic-gate 	if (hdlp == NULL)
11060Sstevel@tonic-gate 		return (DDI_EINVAL);
11070Sstevel@tonic-gate 
11080Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_READER);
11090Sstevel@tonic-gate 	*soft_prip = hdlp->ih_pri;
11100Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
11110Sstevel@tonic-gate 	return (DDI_SUCCESS);
11120Sstevel@tonic-gate }
11130Sstevel@tonic-gate 
11140Sstevel@tonic-gate /*
11150Sstevel@tonic-gate  * Set the soft interrupt priority
11160Sstevel@tonic-gate  */
11170Sstevel@tonic-gate int
11180Sstevel@tonic-gate ddi_intr_set_softint_pri(ddi_softint_handle_t h, uint_t soft_pri)
11190Sstevel@tonic-gate {
11200Sstevel@tonic-gate 	ddi_softint_hdl_impl_t	*hdlp = (ddi_softint_hdl_impl_t *)h;
11210Sstevel@tonic-gate 	int			ret;
11220Sstevel@tonic-gate 	uint_t			orig_soft_pri;
11230Sstevel@tonic-gate 
11240Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_set_softint_pri: h = %p\n",
11250Sstevel@tonic-gate 	    (void *)h));
11260Sstevel@tonic-gate 
11270Sstevel@tonic-gate 	if (hdlp == NULL)
11280Sstevel@tonic-gate 		return (DDI_EINVAL);
11290Sstevel@tonic-gate 
11300Sstevel@tonic-gate 	/* Validate priority argument */
11310Sstevel@tonic-gate 	if (soft_pri < DDI_INTR_SOFTPRI_MIN ||
11320Sstevel@tonic-gate 	    soft_pri > DDI_INTR_SOFTPRI_MAX) {
11330Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_set_softint_pri: invalid "
11340Sstevel@tonic-gate 		    "soft_pri input given  = %x\n", soft_pri));
11350Sstevel@tonic-gate 		return (DDI_EINVAL);
11360Sstevel@tonic-gate 	}
11370Sstevel@tonic-gate 
11380Sstevel@tonic-gate 	rw_enter(&hdlp->ih_rwlock, RW_WRITER);
11390Sstevel@tonic-gate 	orig_soft_pri = hdlp->ih_pri;
11400Sstevel@tonic-gate 	hdlp->ih_pri = soft_pri;
11410Sstevel@tonic-gate 
11420Sstevel@tonic-gate 	if ((ret = i_ddi_set_softint_pri(hdlp, orig_soft_pri)) != DDI_SUCCESS) {
11430Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_set_softint_pri: failed, "
11440Sstevel@tonic-gate 		    " ret 0%x\n", ret));
11450Sstevel@tonic-gate 		hdlp->ih_pri = orig_soft_pri;
11460Sstevel@tonic-gate 	}
11470Sstevel@tonic-gate 
11480Sstevel@tonic-gate 	rw_exit(&hdlp->ih_rwlock);
11490Sstevel@tonic-gate 	return (ret);
11500Sstevel@tonic-gate }
11510Sstevel@tonic-gate 
11520Sstevel@tonic-gate /*
11538561SScott.Carter@Sun.COM  * Set the number of interrupts requested from IRM
11548561SScott.Carter@Sun.COM  */
11558561SScott.Carter@Sun.COM int
11568561SScott.Carter@Sun.COM ddi_intr_set_nreq(dev_info_t *dip, int nreq)
11578561SScott.Carter@Sun.COM {
11588561SScott.Carter@Sun.COM 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_set_nreq: dip %p, nreq %d\n",
11598561SScott.Carter@Sun.COM 	    (void *)dip, nreq));
11608561SScott.Carter@Sun.COM 
11618561SScott.Carter@Sun.COM 	if (dip == NULL)
11628561SScott.Carter@Sun.COM 		return (DDI_EINVAL);
11638561SScott.Carter@Sun.COM 
11648561SScott.Carter@Sun.COM 	return (i_ddi_irm_modify(dip, nreq));
11658561SScott.Carter@Sun.COM }
11668561SScott.Carter@Sun.COM 
11678561SScott.Carter@Sun.COM /*
11680Sstevel@tonic-gate  * Old DDI interrupt framework
1169693Sgovinda  *
1170693Sgovinda  * The following DDI interrupt interfaces are obsolete.
1171693Sgovinda  * Use the above new DDI interrupt interfaces instead.
11720Sstevel@tonic-gate  */
11730Sstevel@tonic-gate 
11740Sstevel@tonic-gate int
11750Sstevel@tonic-gate ddi_intr_hilevel(dev_info_t *dip, uint_t inumber)
11760Sstevel@tonic-gate {
11778561SScott.Carter@Sun.COM 	ddi_intr_handle_t	hdl;
11788561SScott.Carter@Sun.COM 	ddi_intr_handle_t	*hdl_p;
11798561SScott.Carter@Sun.COM 	size_t			hdl_sz = 0;
11800Sstevel@tonic-gate 	int			actual, ret;
11810Sstevel@tonic-gate 	uint_t			high_pri, pri;
11820Sstevel@tonic-gate 
11830Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_hilevel: name=%s%d dip=0x%p "
11840Sstevel@tonic-gate 	    "inum=0x%x\n", ddi_driver_name(dip), ddi_get_instance(dip),
11850Sstevel@tonic-gate 	    (void *)dip, inumber));
11860Sstevel@tonic-gate 
11870Sstevel@tonic-gate 	/*
11880Sstevel@tonic-gate 	 * The device driver may have already registed with the
11890Sstevel@tonic-gate 	 * framework. If so, first try to get the existing interrupt handle
11900Sstevel@tonic-gate 	 * for that given inumber and use that handle.
11910Sstevel@tonic-gate 	 */
11928561SScott.Carter@Sun.COM 	if ((hdl = i_ddi_get_intr_handle(dip, inumber)) == NULL) {
11938561SScott.Carter@Sun.COM 		hdl_sz = sizeof (ddi_intr_handle_t) * (inumber + 1);
11948561SScott.Carter@Sun.COM 		hdl_p = kmem_zalloc(hdl_sz, KM_SLEEP);
11958561SScott.Carter@Sun.COM 		if ((ret = ddi_intr_alloc(dip, hdl_p, DDI_INTR_TYPE_FIXED,
1196965Sgovinda 		    inumber, 1, &actual,
1197965Sgovinda 		    DDI_INTR_ALLOC_NORMAL)) != DDI_SUCCESS) {
11980Sstevel@tonic-gate 			DDI_INTR_APIDBG((CE_CONT, "ddi_intr_hilevel: "
11990Sstevel@tonic-gate 			    "ddi_intr_alloc failed, ret 0x%x\n", ret));
12008561SScott.Carter@Sun.COM 			kmem_free(hdl_p, hdl_sz);
12010Sstevel@tonic-gate 			return (0);
12020Sstevel@tonic-gate 		}
12038561SScott.Carter@Sun.COM 		hdl = hdl_p[inumber];
12040Sstevel@tonic-gate 	}
12050Sstevel@tonic-gate 
12060Sstevel@tonic-gate 	if ((ret = ddi_intr_get_pri(hdl, &pri)) != DDI_SUCCESS) {
12070Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_intr_hilevel: "
12080Sstevel@tonic-gate 		    "ddi_intr_get_pri failed, ret 0x%x\n", ret));
12090Sstevel@tonic-gate 		(void) ddi_intr_free(hdl);
12108561SScott.Carter@Sun.COM 		if (hdl_sz)
12118561SScott.Carter@Sun.COM 			kmem_free(hdl_p, hdl_sz);
12120Sstevel@tonic-gate 		return (0);
12130Sstevel@tonic-gate 	}
12140Sstevel@tonic-gate 
12150Sstevel@tonic-gate 	high_pri = ddi_intr_get_hilevel_pri();
12160Sstevel@tonic-gate 
12170Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_intr_hilevel: pri = %x, "
12180Sstevel@tonic-gate 	    "high_pri = %x\n", pri, high_pri));
12190Sstevel@tonic-gate 
12200Sstevel@tonic-gate 	/* Free the handle allocated here only if no existing handle exists */
12218561SScott.Carter@Sun.COM 	if (hdl_sz) {
12220Sstevel@tonic-gate 		(void) ddi_intr_free(hdl);
12238561SScott.Carter@Sun.COM 		kmem_free(hdl_p, hdl_sz);
12248561SScott.Carter@Sun.COM 	}
12250Sstevel@tonic-gate 
12260Sstevel@tonic-gate 	return (pri >= high_pri);
12270Sstevel@tonic-gate }
12280Sstevel@tonic-gate 
12290Sstevel@tonic-gate int
12300Sstevel@tonic-gate ddi_dev_nintrs(dev_info_t *dip, int *result)
12310Sstevel@tonic-gate {
12320Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_dev_nintrs: name=%s%d dip=0x%p\n",
12330Sstevel@tonic-gate 	    ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip));
12340Sstevel@tonic-gate 
12350Sstevel@tonic-gate 	if (ddi_intr_get_nintrs(dip, DDI_INTR_TYPE_FIXED,
12360Sstevel@tonic-gate 	    result) != DDI_SUCCESS) {
12370Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_dev_nintrs: "
12380Sstevel@tonic-gate 		    "ddi_intr_get_nintrs failed\n"));
12390Sstevel@tonic-gate 		*result = 0;
12400Sstevel@tonic-gate 	}
12410Sstevel@tonic-gate 
12420Sstevel@tonic-gate 	return (DDI_SUCCESS);
12430Sstevel@tonic-gate }
12440Sstevel@tonic-gate 
12450Sstevel@tonic-gate int
12460Sstevel@tonic-gate ddi_get_iblock_cookie(dev_info_t *dip, uint_t inumber,
12470Sstevel@tonic-gate     ddi_iblock_cookie_t *iblock_cookiep)
12480Sstevel@tonic-gate {
12498561SScott.Carter@Sun.COM 	ddi_intr_handle_t	hdl;
12508561SScott.Carter@Sun.COM 	ddi_intr_handle_t	*hdl_p;
12518561SScott.Carter@Sun.COM 	size_t			hdl_sz = 0;
12520Sstevel@tonic-gate 	int			actual, ret;
12530Sstevel@tonic-gate 	uint_t			pri;
12540Sstevel@tonic-gate 
12550Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_get_iblock_cookie: name=%s%d dip=0x%p "
12560Sstevel@tonic-gate 	    "inum=0x%x\n", ddi_driver_name(dip), ddi_get_instance(dip),
12570Sstevel@tonic-gate 	    (void *)dip, inumber));
12580Sstevel@tonic-gate 
12590Sstevel@tonic-gate 	ASSERT(iblock_cookiep != NULL);
12600Sstevel@tonic-gate 
12610Sstevel@tonic-gate 	/*
12620Sstevel@tonic-gate 	 * The device driver may have already registed with the
12630Sstevel@tonic-gate 	 * framework. If so, first try to get the existing interrupt handle
12640Sstevel@tonic-gate 	 * for that given inumber and use that handle.
12650Sstevel@tonic-gate 	 */
12668561SScott.Carter@Sun.COM 	if ((hdl = i_ddi_get_intr_handle(dip, inumber)) == NULL) {
12678561SScott.Carter@Sun.COM 		hdl_sz = sizeof (ddi_intr_handle_t) * (inumber + 1);
12688561SScott.Carter@Sun.COM 		hdl_p = kmem_zalloc(hdl_sz, KM_SLEEP);
12698561SScott.Carter@Sun.COM 		if ((ret = ddi_intr_alloc(dip, hdl_p,
12708561SScott.Carter@Sun.COM 		    DDI_INTR_TYPE_FIXED, inumber, 1, &actual,
1271965Sgovinda 		    DDI_INTR_ALLOC_NORMAL)) != DDI_SUCCESS) {
12720Sstevel@tonic-gate 			DDI_INTR_APIDBG((CE_CONT, "ddi_get_iblock_cookie: "
12730Sstevel@tonic-gate 			    "ddi_intr_alloc failed, ret 0x%x\n", ret));
12748561SScott.Carter@Sun.COM 			kmem_free(hdl_p, hdl_sz);
12750Sstevel@tonic-gate 			return (DDI_INTR_NOTFOUND);
12760Sstevel@tonic-gate 		}
12778561SScott.Carter@Sun.COM 		hdl = hdl_p[inumber];
12780Sstevel@tonic-gate 	}
12790Sstevel@tonic-gate 
12800Sstevel@tonic-gate 	if ((ret = ddi_intr_get_pri(hdl, &pri)) != DDI_SUCCESS) {
12810Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_get_iblock_cookie: "
12820Sstevel@tonic-gate 		    "ddi_intr_get_pri failed, ret 0x%x\n", ret));
12830Sstevel@tonic-gate 		(void) ddi_intr_free(hdl);
12848561SScott.Carter@Sun.COM 		if (hdl_sz)
12858561SScott.Carter@Sun.COM 			kmem_free(hdl_p, hdl_sz);
12860Sstevel@tonic-gate 		return (DDI_FAILURE);
12870Sstevel@tonic-gate 	}
12880Sstevel@tonic-gate 
128942Sagiri 	*iblock_cookiep = (ddi_iblock_cookie_t)(uintptr_t)pri;
12900Sstevel@tonic-gate 	/* Free the handle allocated here only if no existing handle exists */
12918561SScott.Carter@Sun.COM 	if (hdl_sz) {
12920Sstevel@tonic-gate 		(void) ddi_intr_free(hdl);
12938561SScott.Carter@Sun.COM 		kmem_free(hdl_p, hdl_sz);
12948561SScott.Carter@Sun.COM 	}
12950Sstevel@tonic-gate 
12960Sstevel@tonic-gate 	return (DDI_SUCCESS);
12970Sstevel@tonic-gate }
12980Sstevel@tonic-gate 
12990Sstevel@tonic-gate int
13000Sstevel@tonic-gate ddi_add_intr(dev_info_t *dip, uint_t inumber,
13010Sstevel@tonic-gate     ddi_iblock_cookie_t *iblock_cookiep,
13020Sstevel@tonic-gate     ddi_idevice_cookie_t *idevice_cookiep,
13030Sstevel@tonic-gate     uint_t (*int_handler)(caddr_t int_handler_arg),
13040Sstevel@tonic-gate     caddr_t int_handler_arg)
13050Sstevel@tonic-gate {
13060Sstevel@tonic-gate 	ddi_intr_handle_t	*hdl_p;
13078561SScott.Carter@Sun.COM 	size_t			hdl_sz;
13080Sstevel@tonic-gate 	int			actual, ret;
13090Sstevel@tonic-gate 	uint_t			pri;
13100Sstevel@tonic-gate 
13110Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_add_intr: name=%s%d dip=0x%p "
13120Sstevel@tonic-gate 	    "inum=0x%x\n", ddi_driver_name(dip), ddi_get_instance(dip),
13130Sstevel@tonic-gate 	    (void *)dip, inumber));
13140Sstevel@tonic-gate 
13158561SScott.Carter@Sun.COM 	hdl_sz = sizeof (ddi_intr_handle_t) * (inumber + 1);
13168561SScott.Carter@Sun.COM 	hdl_p = kmem_zalloc(hdl_sz, KM_SLEEP);
13170Sstevel@tonic-gate 
13180Sstevel@tonic-gate 	if ((ret = ddi_intr_alloc(dip, hdl_p, DDI_INTR_TYPE_FIXED,
1319965Sgovinda 	    inumber, 1, &actual, DDI_INTR_ALLOC_NORMAL)) != DDI_SUCCESS) {
13200Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_add_intr: "
13210Sstevel@tonic-gate 		    "ddi_intr_alloc failed, ret 0x%x\n", ret));
13228561SScott.Carter@Sun.COM 		kmem_free(hdl_p, hdl_sz);
13230Sstevel@tonic-gate 		return (DDI_INTR_NOTFOUND);
13240Sstevel@tonic-gate 	}
13250Sstevel@tonic-gate 
13268561SScott.Carter@Sun.COM 	if ((ret = ddi_intr_get_pri(hdl_p[inumber], &pri)) != DDI_SUCCESS)  {
13270Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_add_intr: "
13280Sstevel@tonic-gate 		    "ddi_intr_get_pri failed, ret 0x%x\n", ret));
13298561SScott.Carter@Sun.COM 		(void) ddi_intr_free(hdl_p[inumber]);
13308561SScott.Carter@Sun.COM 		kmem_free(hdl_p, hdl_sz);
13310Sstevel@tonic-gate 		return (DDI_FAILURE);
13320Sstevel@tonic-gate 	}
13330Sstevel@tonic-gate 
13348561SScott.Carter@Sun.COM 	if ((ret = ddi_intr_add_handler(hdl_p[inumber], (ddi_intr_handler_t *)
13350Sstevel@tonic-gate 	    int_handler, int_handler_arg, NULL)) != DDI_SUCCESS) {
13360Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_add_intr: "
13370Sstevel@tonic-gate 		    "ddi_intr_add_handler failed, ret 0x%x\n", ret));
13388561SScott.Carter@Sun.COM 		(void) ddi_intr_free(hdl_p[inumber]);
13398561SScott.Carter@Sun.COM 		kmem_free(hdl_p, hdl_sz);
13400Sstevel@tonic-gate 		return (DDI_FAILURE);
13410Sstevel@tonic-gate 	}
13420Sstevel@tonic-gate 
13438561SScott.Carter@Sun.COM 	if ((ret = ddi_intr_enable(hdl_p[inumber])) != DDI_SUCCESS) {
13440Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_add_intr: "
13450Sstevel@tonic-gate 		    "ddi_intr_enable failed, ret 0x%x\n", ret));
13468561SScott.Carter@Sun.COM 		(void) ddi_intr_remove_handler(hdl_p[inumber]);
13478561SScott.Carter@Sun.COM 		(void) ddi_intr_free(hdl_p[inumber]);
13488561SScott.Carter@Sun.COM 		kmem_free(hdl_p, hdl_sz);
13490Sstevel@tonic-gate 		return (DDI_FAILURE);
13500Sstevel@tonic-gate 	}
13510Sstevel@tonic-gate 
13520Sstevel@tonic-gate 	if (iblock_cookiep)
135342Sagiri 		*iblock_cookiep = (ddi_iblock_cookie_t)(uintptr_t)pri;
13540Sstevel@tonic-gate 
13550Sstevel@tonic-gate 	if (idevice_cookiep) {
13560Sstevel@tonic-gate 		idevice_cookiep->idev_vector = 0;
13570Sstevel@tonic-gate 		idevice_cookiep->idev_priority = pri;
13580Sstevel@tonic-gate 	}
13590Sstevel@tonic-gate 
13608561SScott.Carter@Sun.COM 	kmem_free(hdl_p, hdl_sz);
13618561SScott.Carter@Sun.COM 
13620Sstevel@tonic-gate 	return (DDI_SUCCESS);
13630Sstevel@tonic-gate }
13640Sstevel@tonic-gate 
13650Sstevel@tonic-gate /* ARGSUSED */
13660Sstevel@tonic-gate int
13670Sstevel@tonic-gate ddi_add_fastintr(dev_info_t *dip, uint_t inumber,
13680Sstevel@tonic-gate     ddi_iblock_cookie_t *iblock_cookiep,
13690Sstevel@tonic-gate     ddi_idevice_cookie_t *idevice_cookiep,
13700Sstevel@tonic-gate     uint_t (*hi_int_handler)(void))
13710Sstevel@tonic-gate {
13720Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_add_fastintr: name=%s%d dip=0x%p "
13730Sstevel@tonic-gate 	    "inum=0x%x: Not supported, return failure\n", ddi_driver_name(dip),
13740Sstevel@tonic-gate 	    ddi_get_instance(dip), (void *)dip, inumber));
13750Sstevel@tonic-gate 
13760Sstevel@tonic-gate 	return (DDI_FAILURE);
13770Sstevel@tonic-gate }
13780Sstevel@tonic-gate 
13790Sstevel@tonic-gate /* ARGSUSED */
13800Sstevel@tonic-gate void
13810Sstevel@tonic-gate ddi_remove_intr(dev_info_t *dip, uint_t inum, ddi_iblock_cookie_t iblock_cookie)
13820Sstevel@tonic-gate {
13838561SScott.Carter@Sun.COM 	ddi_intr_handle_t	hdl;
13840Sstevel@tonic-gate 	int			ret;
13850Sstevel@tonic-gate 
13860Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_remove_intr: name=%s%d dip=0x%p "
13870Sstevel@tonic-gate 	    "inum=0x%x\n", ddi_driver_name(dip), ddi_get_instance(dip),
13880Sstevel@tonic-gate 	    (void *)dip, inum));
13890Sstevel@tonic-gate 
13908561SScott.Carter@Sun.COM 	if ((hdl = i_ddi_get_intr_handle(dip, inum)) == NULL) {
13910Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_remove_intr: no handle "
13920Sstevel@tonic-gate 		    "found\n"));
13930Sstevel@tonic-gate 		return;
13940Sstevel@tonic-gate 	}
13950Sstevel@tonic-gate 
13968561SScott.Carter@Sun.COM 	if ((ret = ddi_intr_disable(hdl)) != DDI_SUCCESS) {
13970Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_remove_intr: "
13980Sstevel@tonic-gate 		    "ddi_intr_disable failed, ret 0x%x\n", ret));
13990Sstevel@tonic-gate 		return;
14000Sstevel@tonic-gate 	}
14010Sstevel@tonic-gate 
14028561SScott.Carter@Sun.COM 	if ((ret = ddi_intr_remove_handler(hdl)) != DDI_SUCCESS) {
14030Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_remove_intr: "
14040Sstevel@tonic-gate 		    "ddi_intr_remove_handler failed, ret 0x%x\n", ret));
14050Sstevel@tonic-gate 		return;
14060Sstevel@tonic-gate 	}
14070Sstevel@tonic-gate 
14088561SScott.Carter@Sun.COM 	if ((ret = ddi_intr_free(hdl)) != DDI_SUCCESS) {
14090Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_remove_intr: "
14100Sstevel@tonic-gate 		    "ddi_intr_free failed, ret 0x%x\n", ret));
14110Sstevel@tonic-gate 		return;
14120Sstevel@tonic-gate 	}
14130Sstevel@tonic-gate }
14140Sstevel@tonic-gate 
14150Sstevel@tonic-gate /* ARGSUSED */
14160Sstevel@tonic-gate int
14170Sstevel@tonic-gate ddi_get_soft_iblock_cookie(dev_info_t *dip, int preference,
14180Sstevel@tonic-gate     ddi_iblock_cookie_t *iblock_cookiep)
14190Sstevel@tonic-gate {
14200Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_get_soft_iblock_cookie: name=%s%d "
14210Sstevel@tonic-gate 	    "dip=0x%p pref=0x%x\n", ddi_driver_name(dip), ddi_get_instance(dip),
14220Sstevel@tonic-gate 	    (void *)dip, preference));
14230Sstevel@tonic-gate 
14240Sstevel@tonic-gate 	ASSERT(iblock_cookiep != NULL);
14250Sstevel@tonic-gate 
14260Sstevel@tonic-gate 	if (preference == DDI_SOFTINT_FIXED)
14270Sstevel@tonic-gate 		return (DDI_FAILURE);
14280Sstevel@tonic-gate 
142942Sagiri 	*iblock_cookiep = (ddi_iblock_cookie_t)((uintptr_t)
14300Sstevel@tonic-gate 	    ((preference > DDI_SOFTINT_MED) ? DDI_SOFT_INTR_PRI_H :
14310Sstevel@tonic-gate 	    DDI_SOFT_INTR_PRI_M));
14320Sstevel@tonic-gate 
14330Sstevel@tonic-gate 	return (DDI_SUCCESS);
14340Sstevel@tonic-gate }
14350Sstevel@tonic-gate 
14360Sstevel@tonic-gate int
14370Sstevel@tonic-gate ddi_add_softintr(dev_info_t *dip, int preference, ddi_softintr_t *idp,
14380Sstevel@tonic-gate     ddi_iblock_cookie_t *iblock_cookiep,
14390Sstevel@tonic-gate     ddi_idevice_cookie_t *idevice_cookiep,
14400Sstevel@tonic-gate     uint_t (*int_handler)(caddr_t int_handler_arg),
14410Sstevel@tonic-gate     caddr_t int_handler_arg)
14420Sstevel@tonic-gate {
14430Sstevel@tonic-gate 	ddi_softint_handle_t	*hdl_p;
14440Sstevel@tonic-gate 	uint64_t		softpri;
14450Sstevel@tonic-gate 	int			ret;
14460Sstevel@tonic-gate 
14470Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_add_softintr: name=%s%d dip=0x%p "
14480Sstevel@tonic-gate 	    "pref=0x%x\n", ddi_driver_name(dip), ddi_get_instance(dip),
14490Sstevel@tonic-gate 	    (void *)dip, preference));
14500Sstevel@tonic-gate 
14510Sstevel@tonic-gate 	if ((idp == NULL) || ((preference == DDI_SOFTINT_FIXED) &&
14520Sstevel@tonic-gate 	    (iblock_cookiep == NULL)))
14530Sstevel@tonic-gate 		return (DDI_FAILURE);
14540Sstevel@tonic-gate 
14550Sstevel@tonic-gate 	/* Translate the priority preference */
14560Sstevel@tonic-gate 	if (preference == DDI_SOFTINT_FIXED) {
1457190Seota 		softpri = (uint64_t)(uintptr_t)*iblock_cookiep;
14580Sstevel@tonic-gate 		softpri = MIN(softpri, DDI_SOFT_INTR_PRI_H);
14590Sstevel@tonic-gate 	} else {
14600Sstevel@tonic-gate 		softpri = (uint64_t)((preference > DDI_SOFTINT_MED) ?
14610Sstevel@tonic-gate 		    DDI_SOFT_INTR_PRI_H : DDI_SOFT_INTR_PRI_M);
14620Sstevel@tonic-gate 	}
14630Sstevel@tonic-gate 
14640Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_add_softintr: preference 0x%x "
14650Sstevel@tonic-gate 	    "softpri 0x%lx\n", preference, (long)softpri));
14660Sstevel@tonic-gate 
14670Sstevel@tonic-gate 	hdl_p = kmem_zalloc(sizeof (ddi_softint_handle_t), KM_SLEEP);
14680Sstevel@tonic-gate 	if ((ret = ddi_intr_add_softint(dip, hdl_p, softpri,
14690Sstevel@tonic-gate 	    (ddi_intr_handler_t *)int_handler, int_handler_arg)) !=
14700Sstevel@tonic-gate 	    DDI_SUCCESS) {
14710Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_add_softintr: "
14720Sstevel@tonic-gate 		    "ddi_intr_add_softint failed, ret 0x%x\n", ret));
14730Sstevel@tonic-gate 
14740Sstevel@tonic-gate 		kmem_free(hdl_p, sizeof (ddi_softint_handle_t));
14750Sstevel@tonic-gate 		return (DDI_FAILURE);
14760Sstevel@tonic-gate 	}
14770Sstevel@tonic-gate 
14780Sstevel@tonic-gate 	if (iblock_cookiep)
1479190Seota 		*iblock_cookiep =  (ddi_iblock_cookie_t)(uintptr_t)softpri;
14800Sstevel@tonic-gate 
14810Sstevel@tonic-gate 	if (idevice_cookiep) {
14820Sstevel@tonic-gate 		idevice_cookiep->idev_vector = 0;
14830Sstevel@tonic-gate 		idevice_cookiep->idev_priority = softpri;
14840Sstevel@tonic-gate 	}
14850Sstevel@tonic-gate 
14860Sstevel@tonic-gate 	*idp = (ddi_softintr_t)hdl_p;
14870Sstevel@tonic-gate 
14880Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_add_softintr: dip = 0x%p, "
14890Sstevel@tonic-gate 	    "idp = 0x%p, ret = %x\n", (void *)dip, (void *)*idp, ret));
14900Sstevel@tonic-gate 
14910Sstevel@tonic-gate 	return (DDI_SUCCESS);
14920Sstevel@tonic-gate }
14930Sstevel@tonic-gate 
14940Sstevel@tonic-gate void
14950Sstevel@tonic-gate ddi_remove_softintr(ddi_softintr_t id)
14960Sstevel@tonic-gate {
14970Sstevel@tonic-gate 	ddi_softint_handle_t	*h_p = (ddi_softint_handle_t *)id;
14980Sstevel@tonic-gate 
14990Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_remove_softintr: id=0x%p\n",
15000Sstevel@tonic-gate 	    (void *)id));
15010Sstevel@tonic-gate 
15020Sstevel@tonic-gate 	if (h_p == NULL)
15030Sstevel@tonic-gate 		return;
15040Sstevel@tonic-gate 
15050Sstevel@tonic-gate 	DDI_INTR_APIDBG((CE_CONT, "ddi_remove_softintr: handle 0x%p\n",
15060Sstevel@tonic-gate 	    (void *)h_p));
15070Sstevel@tonic-gate 
15080Sstevel@tonic-gate 	(void) ddi_intr_remove_softint(*h_p);
15090Sstevel@tonic-gate 	kmem_free(h_p, sizeof (ddi_softint_handle_t));
15100Sstevel@tonic-gate }
15110Sstevel@tonic-gate 
15120Sstevel@tonic-gate void
15130Sstevel@tonic-gate ddi_trigger_softintr(ddi_softintr_t id)
15140Sstevel@tonic-gate {
15150Sstevel@tonic-gate 	ddi_softint_handle_t	*h_p = (ddi_softint_handle_t *)id;
15160Sstevel@tonic-gate 	int			ret;
15170Sstevel@tonic-gate 
15180Sstevel@tonic-gate 	if (h_p == NULL)
15190Sstevel@tonic-gate 		return;
15200Sstevel@tonic-gate 
15210Sstevel@tonic-gate 	if ((ret = ddi_intr_trigger_softint(*h_p, NULL)) != DDI_SUCCESS) {
15220Sstevel@tonic-gate 		DDI_INTR_APIDBG((CE_CONT, "ddi_trigger_softintr: "
15230Sstevel@tonic-gate 		    "ddi_intr_trigger_softint failed, hdlp 0x%p "
15240Sstevel@tonic-gate 		    "ret 0x%x\n", (void *)h_p, ret));
15250Sstevel@tonic-gate 	}
15260Sstevel@tonic-gate }
1527