xref: /illumos-gate/usr/src/uts/common/os/sunndi.c (revision 737d277a)
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 /*
23*737d277aScth  * Copyright 2006 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 #include <sys/types.h>
307c478bd9Sstevel@tonic-gate #include <sys/param.h>
317c478bd9Sstevel@tonic-gate #include <sys/systm.h>
327c478bd9Sstevel@tonic-gate #include <sys/buf.h>
337c478bd9Sstevel@tonic-gate #include <sys/uio.h>
347c478bd9Sstevel@tonic-gate #include <sys/cred.h>
357c478bd9Sstevel@tonic-gate #include <sys/poll.h>
367c478bd9Sstevel@tonic-gate #include <sys/mman.h>
377c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
387c478bd9Sstevel@tonic-gate #include <sys/model.h>
397c478bd9Sstevel@tonic-gate #include <sys/file.h>
407c478bd9Sstevel@tonic-gate #include <sys/proc.h>
417c478bd9Sstevel@tonic-gate #include <sys/open.h>
427c478bd9Sstevel@tonic-gate #include <sys/user.h>
437c478bd9Sstevel@tonic-gate #include <sys/t_lock.h>
447c478bd9Sstevel@tonic-gate #include <sys/vm.h>
457c478bd9Sstevel@tonic-gate #include <sys/stat.h>
467c478bd9Sstevel@tonic-gate #include <vm/hat.h>
477c478bd9Sstevel@tonic-gate #include <vm/seg.h>
487c478bd9Sstevel@tonic-gate #include <vm/as.h>
497c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
507c478bd9Sstevel@tonic-gate #include <sys/debug.h>
517c478bd9Sstevel@tonic-gate #include <sys/avintr.h>
527c478bd9Sstevel@tonic-gate #include <sys/autoconf.h>
537c478bd9Sstevel@tonic-gate #include <sys/sunddi.h>
547c478bd9Sstevel@tonic-gate #include <sys/esunddi.h>
557c478bd9Sstevel@tonic-gate #include <sys/sunndi.h>
567c478bd9Sstevel@tonic-gate #include <sys/ddi.h>
577c478bd9Sstevel@tonic-gate #include <sys/kstat.h>
587c478bd9Sstevel@tonic-gate #include <sys/conf.h>
597c478bd9Sstevel@tonic-gate #include <sys/ddi_impldefs.h>	/* include implementation structure defs */
607c478bd9Sstevel@tonic-gate #include <sys/ndi_impldefs.h>
617c478bd9Sstevel@tonic-gate #include <sys/hwconf.h>
627c478bd9Sstevel@tonic-gate #include <sys/pathname.h>
637c478bd9Sstevel@tonic-gate #include <sys/modctl.h>
647c478bd9Sstevel@tonic-gate #include <sys/epm.h>
657c478bd9Sstevel@tonic-gate #include <sys/devctl.h>
667c478bd9Sstevel@tonic-gate #include <sys/callb.h>
677c478bd9Sstevel@tonic-gate #include <sys/bootconf.h>
687c478bd9Sstevel@tonic-gate #include <sys/dacf_impl.h>
697c478bd9Sstevel@tonic-gate #include <sys/nvpair.h>
707c478bd9Sstevel@tonic-gate #include <sys/sunmdi.h>
717c478bd9Sstevel@tonic-gate #include <sys/fs/dv_node.h>
727c478bd9Sstevel@tonic-gate 
737c478bd9Sstevel@tonic-gate #ifdef __sparc
747c478bd9Sstevel@tonic-gate #include <sys/archsystm.h>	/* getpil/setpil */
757c478bd9Sstevel@tonic-gate #include <sys/membar.h>		/* membar_sync */
767c478bd9Sstevel@tonic-gate #endif
777c478bd9Sstevel@tonic-gate 
787c478bd9Sstevel@tonic-gate /*
797c478bd9Sstevel@tonic-gate  * ndi property handling
807c478bd9Sstevel@tonic-gate  */
817c478bd9Sstevel@tonic-gate int
827c478bd9Sstevel@tonic-gate ndi_prop_update_int(dev_t match_dev, dev_info_t *dip,
837c478bd9Sstevel@tonic-gate     char *name, int data)
847c478bd9Sstevel@tonic-gate {
857c478bd9Sstevel@tonic-gate 	return (ddi_prop_update_common(match_dev, dip,
867c478bd9Sstevel@tonic-gate 	    DDI_PROP_HW_DEF | DDI_PROP_TYPE_INT | DDI_PROP_DONTSLEEP,
877c478bd9Sstevel@tonic-gate 	    name, &data, 1, ddi_prop_fm_encode_ints));
887c478bd9Sstevel@tonic-gate }
897c478bd9Sstevel@tonic-gate 
907c478bd9Sstevel@tonic-gate int
917c478bd9Sstevel@tonic-gate ndi_prop_update_int64(dev_t match_dev, dev_info_t *dip,
927c478bd9Sstevel@tonic-gate     char *name, int64_t data)
937c478bd9Sstevel@tonic-gate {
947c478bd9Sstevel@tonic-gate 	return (ddi_prop_update_common(match_dev, dip,
957c478bd9Sstevel@tonic-gate 	    DDI_PROP_HW_DEF | DDI_PROP_TYPE_INT64 | DDI_PROP_DONTSLEEP,
967c478bd9Sstevel@tonic-gate 	    name, &data, 1, ddi_prop_fm_encode_int64));
977c478bd9Sstevel@tonic-gate }
987c478bd9Sstevel@tonic-gate 
997c478bd9Sstevel@tonic-gate int
1007c478bd9Sstevel@tonic-gate ndi_prop_create_boolean(dev_t match_dev, dev_info_t *dip,
1017c478bd9Sstevel@tonic-gate     char *name)
1027c478bd9Sstevel@tonic-gate {
1037c478bd9Sstevel@tonic-gate 	return (ddi_prop_update_common(match_dev, dip,
1047c478bd9Sstevel@tonic-gate 	    DDI_PROP_HW_DEF | DDI_PROP_TYPE_ANY | DDI_PROP_DONTSLEEP,
1057c478bd9Sstevel@tonic-gate 	    name, NULL, 0, ddi_prop_fm_encode_bytes));
1067c478bd9Sstevel@tonic-gate }
1077c478bd9Sstevel@tonic-gate 
1087c478bd9Sstevel@tonic-gate int
1097c478bd9Sstevel@tonic-gate ndi_prop_update_int_array(dev_t match_dev, dev_info_t *dip,
1107c478bd9Sstevel@tonic-gate     char *name, int *data, uint_t nelements)
1117c478bd9Sstevel@tonic-gate {
1127c478bd9Sstevel@tonic-gate 	return (ddi_prop_update_common(match_dev, dip,
1137c478bd9Sstevel@tonic-gate 	    DDI_PROP_HW_DEF | DDI_PROP_TYPE_INT | DDI_PROP_DONTSLEEP,
1147c478bd9Sstevel@tonic-gate 	    name, data, nelements, ddi_prop_fm_encode_ints));
1157c478bd9Sstevel@tonic-gate }
1167c478bd9Sstevel@tonic-gate 
1177c478bd9Sstevel@tonic-gate int
1187c478bd9Sstevel@tonic-gate ndi_prop_update_int64_array(dev_t match_dev, dev_info_t *dip,
1197c478bd9Sstevel@tonic-gate     char *name, int64_t *data, uint_t nelements)
1207c478bd9Sstevel@tonic-gate {
1217c478bd9Sstevel@tonic-gate 	return (ddi_prop_update_common(match_dev, dip,
1227c478bd9Sstevel@tonic-gate 	    DDI_PROP_HW_DEF | DDI_PROP_TYPE_INT64 | DDI_PROP_DONTSLEEP,
1237c478bd9Sstevel@tonic-gate 	    name, data, nelements, ddi_prop_fm_encode_int64));
1247c478bd9Sstevel@tonic-gate }
1257c478bd9Sstevel@tonic-gate 
1267c478bd9Sstevel@tonic-gate int
1277c478bd9Sstevel@tonic-gate ndi_prop_update_string(dev_t match_dev, dev_info_t *dip,
1287c478bd9Sstevel@tonic-gate     char *name, char *data)
1297c478bd9Sstevel@tonic-gate {
1307c478bd9Sstevel@tonic-gate 	return (ddi_prop_update_common(match_dev, dip,
1317c478bd9Sstevel@tonic-gate 	    DDI_PROP_HW_DEF | DDI_PROP_TYPE_STRING | DDI_PROP_DONTSLEEP,
1327c478bd9Sstevel@tonic-gate 	    name, &data, 1, ddi_prop_fm_encode_string));
1337c478bd9Sstevel@tonic-gate }
1347c478bd9Sstevel@tonic-gate 
1357c478bd9Sstevel@tonic-gate int
1367c478bd9Sstevel@tonic-gate ndi_prop_update_string_array(dev_t match_dev, dev_info_t *dip,
1377c478bd9Sstevel@tonic-gate     char *name, char **data, uint_t nelements)
1387c478bd9Sstevel@tonic-gate {
1397c478bd9Sstevel@tonic-gate 	return (ddi_prop_update_common(match_dev, dip,
1407c478bd9Sstevel@tonic-gate 	    DDI_PROP_HW_DEF | DDI_PROP_TYPE_STRING | DDI_PROP_DONTSLEEP,
1417c478bd9Sstevel@tonic-gate 	    name, data, nelements,
1427c478bd9Sstevel@tonic-gate 	    ddi_prop_fm_encode_strings));
1437c478bd9Sstevel@tonic-gate }
1447c478bd9Sstevel@tonic-gate 
1457c478bd9Sstevel@tonic-gate int
1467c478bd9Sstevel@tonic-gate ndi_prop_update_byte_array(dev_t match_dev, dev_info_t *dip,
1477c478bd9Sstevel@tonic-gate     char *name, uchar_t *data, uint_t nelements)
1487c478bd9Sstevel@tonic-gate {
1497c478bd9Sstevel@tonic-gate 	if (nelements == 0)
1507c478bd9Sstevel@tonic-gate 		return (DDI_PROP_INVAL_ARG);
1517c478bd9Sstevel@tonic-gate 
1527c478bd9Sstevel@tonic-gate 	return (ddi_prop_update_common(match_dev, dip,
1537c478bd9Sstevel@tonic-gate 	    DDI_PROP_HW_DEF | DDI_PROP_TYPE_BYTE | DDI_PROP_DONTSLEEP,
1547c478bd9Sstevel@tonic-gate 	    name, data, nelements, ddi_prop_fm_encode_bytes));
1557c478bd9Sstevel@tonic-gate }
1567c478bd9Sstevel@tonic-gate 
1577c478bd9Sstevel@tonic-gate int
1587c478bd9Sstevel@tonic-gate ndi_prop_remove(dev_t dev, dev_info_t *dip, char *name)
1597c478bd9Sstevel@tonic-gate {
1607c478bd9Sstevel@tonic-gate 	return (ddi_prop_remove_common(dev, dip, name, DDI_PROP_HW_DEF));
1617c478bd9Sstevel@tonic-gate }
1627c478bd9Sstevel@tonic-gate 
1637c478bd9Sstevel@tonic-gate void
1647c478bd9Sstevel@tonic-gate ndi_prop_remove_all(dev_info_t *dip)
1657c478bd9Sstevel@tonic-gate {
1667c478bd9Sstevel@tonic-gate 	ddi_prop_remove_all_common(dip, (int)DDI_PROP_HW_DEF);
1677c478bd9Sstevel@tonic-gate }
1687c478bd9Sstevel@tonic-gate 
1697c478bd9Sstevel@tonic-gate /*
1707c478bd9Sstevel@tonic-gate  * Post an event notification to nexus driver responsible for handling
1717c478bd9Sstevel@tonic-gate  * the event.  The responsible nexus is defined in the cookie passed in as
1727c478bd9Sstevel@tonic-gate  * the third parameter.
1737c478bd9Sstevel@tonic-gate  * The dip parameter is an artifact of an older implementation in which all
1747c478bd9Sstevel@tonic-gate  * requests to remove an eventcall would bubble up the tree.  Today, this
1757c478bd9Sstevel@tonic-gate  * parameter is ignored.
1767c478bd9Sstevel@tonic-gate  * Input Parameters:
1777c478bd9Sstevel@tonic-gate  *	dip 	- Ignored.
1787c478bd9Sstevel@tonic-gate  *	rdip 	- device driver posting the event
1797c478bd9Sstevel@tonic-gate  *	cookie	- valid ddi_eventcookie_t, obtained by caller prior to
1807c478bd9Sstevel@tonic-gate  *		  invocation of this routine
1817c478bd9Sstevel@tonic-gate  *	impl_data - used by framework
1827c478bd9Sstevel@tonic-gate  */
1837c478bd9Sstevel@tonic-gate /*ARGSUSED*/
1847c478bd9Sstevel@tonic-gate int
1857c478bd9Sstevel@tonic-gate ndi_post_event(dev_info_t *dip, dev_info_t *rdip,
1867c478bd9Sstevel@tonic-gate 		ddi_eventcookie_t cookie, void *impl_data)
1877c478bd9Sstevel@tonic-gate {
1887c478bd9Sstevel@tonic-gate 	dev_info_t *ddip;
1897c478bd9Sstevel@tonic-gate 
1907c478bd9Sstevel@tonic-gate 	ASSERT(cookie);
1917c478bd9Sstevel@tonic-gate 	ddip = NDI_EVENT_DDIP(cookie);
1927c478bd9Sstevel@tonic-gate 
1937c478bd9Sstevel@tonic-gate 	/*
1947c478bd9Sstevel@tonic-gate 	 * perform sanity checks.  These conditions should never be true.
1957c478bd9Sstevel@tonic-gate 	 */
1967c478bd9Sstevel@tonic-gate 
1977c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(ddip)->devi_ops->devo_bus_ops != NULL);
1987c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(ddip)->devi_ops->devo_bus_ops->busops_rev >= BUSO_REV_6);
1997c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(ddip)->devi_ops->devo_bus_ops->bus_post_event != NULL);
2007c478bd9Sstevel@tonic-gate 
2017c478bd9Sstevel@tonic-gate 	/*
2027c478bd9Sstevel@tonic-gate 	 * post the event to the responsible ancestor
2037c478bd9Sstevel@tonic-gate 	 */
2047c478bd9Sstevel@tonic-gate 	return ((*(DEVI(ddip)->devi_ops->devo_bus_ops->bus_post_event))
2057c478bd9Sstevel@tonic-gate 		(ddip, rdip, cookie, impl_data));
2067c478bd9Sstevel@tonic-gate }
2077c478bd9Sstevel@tonic-gate 
2087c478bd9Sstevel@tonic-gate /*
2097c478bd9Sstevel@tonic-gate  * Calls the bus nexus driver's implementation of the
2107c478bd9Sstevel@tonic-gate  * (*bus_remove_eventcall)() interface.
2117c478bd9Sstevel@tonic-gate  */
2127c478bd9Sstevel@tonic-gate int
2137c478bd9Sstevel@tonic-gate ndi_busop_remove_eventcall(dev_info_t *ddip, ddi_callback_id_t id)
2147c478bd9Sstevel@tonic-gate {
2157c478bd9Sstevel@tonic-gate 
2167c478bd9Sstevel@tonic-gate 	ASSERT(id);
2177c478bd9Sstevel@tonic-gate 	/* check for a correct revno before calling up the device tree. */
2187c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(ddip)->devi_ops->devo_bus_ops != NULL);
2197c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(ddip)->devi_ops->devo_bus_ops->busops_rev >= BUSO_REV_6);
2207c478bd9Sstevel@tonic-gate 
2217c478bd9Sstevel@tonic-gate 	if (DEVI(ddip)->devi_ops->devo_bus_ops->bus_remove_eventcall == NULL)
2227c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
2237c478bd9Sstevel@tonic-gate 
2247c478bd9Sstevel@tonic-gate 	/*
2257c478bd9Sstevel@tonic-gate 	 * request responsible nexus to remove the eventcall
2267c478bd9Sstevel@tonic-gate 	 */
2277c478bd9Sstevel@tonic-gate 	return ((*(DEVI(ddip)->devi_ops->devo_bus_ops->bus_remove_eventcall))
2287c478bd9Sstevel@tonic-gate 		(ddip, id));
2297c478bd9Sstevel@tonic-gate }
2307c478bd9Sstevel@tonic-gate 
2317c478bd9Sstevel@tonic-gate /*
2327c478bd9Sstevel@tonic-gate  * Calls the bus nexus driver's implementation of the
2337c478bd9Sstevel@tonic-gate  * (*bus_add_eventcall)() interface.  The dip parameter is an
2347c478bd9Sstevel@tonic-gate  * artifact of an older implementation in which all requests to
2357c478bd9Sstevel@tonic-gate  * add an eventcall would bubble up the tree.  Today, this parameter is
2367c478bd9Sstevel@tonic-gate  * ignored.
2377c478bd9Sstevel@tonic-gate  */
2387c478bd9Sstevel@tonic-gate /*ARGSUSED*/
2397c478bd9Sstevel@tonic-gate int
2407c478bd9Sstevel@tonic-gate ndi_busop_add_eventcall(dev_info_t *dip, dev_info_t *rdip,
2417c478bd9Sstevel@tonic-gate 		ddi_eventcookie_t cookie, void (*callback)(), void *arg,
2427c478bd9Sstevel@tonic-gate 		ddi_callback_id_t *cb_id)
2437c478bd9Sstevel@tonic-gate {
2447c478bd9Sstevel@tonic-gate 	dev_info_t *ddip = (dev_info_t *)NDI_EVENT_DDIP(cookie);
2457c478bd9Sstevel@tonic-gate 
2467c478bd9Sstevel@tonic-gate 	/*
2477c478bd9Sstevel@tonic-gate 	 * check for a correct revno before calling up the device tree.
2487c478bd9Sstevel@tonic-gate 	 */
2497c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(ddip)->devi_ops->devo_bus_ops != NULL);
2507c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(ddip)->devi_ops->devo_bus_ops->busops_rev >= BUSO_REV_6);
2517c478bd9Sstevel@tonic-gate 
2527c478bd9Sstevel@tonic-gate 	if (DEVI(ddip)->devi_ops->devo_bus_ops->bus_add_eventcall == NULL)
2537c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
2547c478bd9Sstevel@tonic-gate 
2557c478bd9Sstevel@tonic-gate 	/*
2567c478bd9Sstevel@tonic-gate 	 * request responsible ancestor to add the eventcall
2577c478bd9Sstevel@tonic-gate 	 */
2587c478bd9Sstevel@tonic-gate 	return ((*(DEVI(ddip)->devi_ops->devo_bus_ops->bus_add_eventcall))
2597c478bd9Sstevel@tonic-gate 		(ddip, rdip, cookie, callback, arg, cb_id));
2607c478bd9Sstevel@tonic-gate }
2617c478bd9Sstevel@tonic-gate 
2627c478bd9Sstevel@tonic-gate /*
2637c478bd9Sstevel@tonic-gate  * Calls the bus nexus driver's implementation of the
2647c478bd9Sstevel@tonic-gate  * (*bus_get_eventcookie)() interface up the device tree hierarchy.
2657c478bd9Sstevel@tonic-gate  */
2667c478bd9Sstevel@tonic-gate int
2677c478bd9Sstevel@tonic-gate ndi_busop_get_eventcookie(dev_info_t *dip, dev_info_t *rdip, char *name,
2687c478bd9Sstevel@tonic-gate 		ddi_eventcookie_t *event_cookiep)
2697c478bd9Sstevel@tonic-gate {
2707c478bd9Sstevel@tonic-gate 	dev_info_t *pdip = (dev_info_t *)DEVI(dip)->devi_parent;
2717c478bd9Sstevel@tonic-gate 
2727c478bd9Sstevel@tonic-gate 	/* Can not be called from rootnex. */
2737c478bd9Sstevel@tonic-gate 	ASSERT(pdip);
2747c478bd9Sstevel@tonic-gate 
2757c478bd9Sstevel@tonic-gate 	/*
2767c478bd9Sstevel@tonic-gate 	 * check for a correct revno before calling up the device tree.
2777c478bd9Sstevel@tonic-gate 	 */
2787c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(pdip)->devi_ops->devo_bus_ops != NULL);
2797c478bd9Sstevel@tonic-gate 
2807c478bd9Sstevel@tonic-gate 	if ((DEVI(pdip)->devi_ops->devo_bus_ops->busops_rev < BUSO_REV_6) ||
2817c478bd9Sstevel@tonic-gate 	    (DEVI(pdip)->devi_ops->devo_bus_ops->bus_get_eventcookie == NULL)) {
2827c478bd9Sstevel@tonic-gate #ifdef DEBUG
2837c478bd9Sstevel@tonic-gate 		if ((DEVI(pdip)->devi_ops->devo_bus_ops->busops_rev >=
2847c478bd9Sstevel@tonic-gate 		    BUSO_REV_3) &&
2857c478bd9Sstevel@tonic-gate 		    (DEVI(pdip)->devi_ops->devo_bus_ops->bus_get_eventcookie)) {
2867c478bd9Sstevel@tonic-gate 			cmn_err(CE_WARN,
2877c478bd9Sstevel@tonic-gate 			    "Warning: %s%d busops_rev=%d no longer supported"
2887c478bd9Sstevel@tonic-gate 			    " by the NDI event framework.\nBUSO_REV_6 or "
2897c478bd9Sstevel@tonic-gate 			    "greater must be used.",
2907c478bd9Sstevel@tonic-gate 			    DEVI(pdip)->devi_binding_name,
2917c478bd9Sstevel@tonic-gate 			    DEVI(pdip)->devi_instance,
2927c478bd9Sstevel@tonic-gate 			    DEVI(pdip)->devi_ops->devo_bus_ops->busops_rev);
2937c478bd9Sstevel@tonic-gate 		}
2947c478bd9Sstevel@tonic-gate #endif /* DEBUG */
2957c478bd9Sstevel@tonic-gate 
2967c478bd9Sstevel@tonic-gate 		return (ndi_busop_get_eventcookie(pdip, rdip, name,
2977c478bd9Sstevel@tonic-gate 			    event_cookiep));
2987c478bd9Sstevel@tonic-gate 	}
2997c478bd9Sstevel@tonic-gate 
3007c478bd9Sstevel@tonic-gate 	return ((*(DEVI(pdip)->devi_ops->devo_bus_ops->bus_get_eventcookie))
3017c478bd9Sstevel@tonic-gate 		(pdip, rdip, name, event_cookiep));
3027c478bd9Sstevel@tonic-gate }
3037c478bd9Sstevel@tonic-gate 
3047c478bd9Sstevel@tonic-gate /*
3057c478bd9Sstevel@tonic-gate  * Copy in the devctl IOCTL data and return a handle to
3067c478bd9Sstevel@tonic-gate  * the data.
3077c478bd9Sstevel@tonic-gate  */
3087c478bd9Sstevel@tonic-gate int
3097c478bd9Sstevel@tonic-gate ndi_dc_allochdl(void *iocarg, struct devctl_iocdata **rdcp)
3107c478bd9Sstevel@tonic-gate {
3117c478bd9Sstevel@tonic-gate 	struct devctl_iocdata *dcp;
3127c478bd9Sstevel@tonic-gate 	char *cpybuf;
3137c478bd9Sstevel@tonic-gate 
3147c478bd9Sstevel@tonic-gate 	ASSERT(rdcp != NULL);
3157c478bd9Sstevel@tonic-gate 
3167c478bd9Sstevel@tonic-gate 	dcp = kmem_zalloc(sizeof (*dcp), KM_SLEEP);
3177c478bd9Sstevel@tonic-gate 
3187c478bd9Sstevel@tonic-gate 	if (get_udatamodel() == DATAMODEL_NATIVE) {
3197c478bd9Sstevel@tonic-gate 		if (copyin(iocarg, dcp, sizeof (*dcp)) != 0) {
3207c478bd9Sstevel@tonic-gate 			kmem_free(dcp, sizeof (*dcp));
3217c478bd9Sstevel@tonic-gate 			return (NDI_FAULT);
3227c478bd9Sstevel@tonic-gate 		}
3237c478bd9Sstevel@tonic-gate 	}
3247c478bd9Sstevel@tonic-gate #ifdef _SYSCALL32_IMPL
3257c478bd9Sstevel@tonic-gate 	else {
3267c478bd9Sstevel@tonic-gate 		struct devctl_iocdata32 dcp32;
3277c478bd9Sstevel@tonic-gate 
3287c478bd9Sstevel@tonic-gate 		if (copyin(iocarg, &dcp32, sizeof (dcp32)) != 0) {
3297c478bd9Sstevel@tonic-gate 			kmem_free(dcp, sizeof (*dcp));
3307c478bd9Sstevel@tonic-gate 			return (NDI_FAULT);
3317c478bd9Sstevel@tonic-gate 		}
3327c478bd9Sstevel@tonic-gate 		dcp->cmd = (uint_t)dcp32.cmd;
3337c478bd9Sstevel@tonic-gate 		dcp->flags = (uint_t)dcp32.flags;
3347c478bd9Sstevel@tonic-gate 		dcp->cpyout_buf = (uint_t *)(uintptr_t)dcp32.cpyout_buf;
3357c478bd9Sstevel@tonic-gate 		dcp->nvl_user = (nvlist_t *)(uintptr_t)dcp32.nvl_user;
3367c478bd9Sstevel@tonic-gate 		dcp->nvl_usersz = (size_t)dcp32.nvl_usersz;
3377c478bd9Sstevel@tonic-gate 		dcp->c_nodename = (char *)(uintptr_t)dcp32.c_nodename;
3387c478bd9Sstevel@tonic-gate 		dcp->c_unitaddr = (char *)(uintptr_t)dcp32.c_unitaddr;
3397c478bd9Sstevel@tonic-gate 	}
3407c478bd9Sstevel@tonic-gate #endif
3417c478bd9Sstevel@tonic-gate 	if (dcp->c_nodename != NULL) {
3427c478bd9Sstevel@tonic-gate 		cpybuf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
3437c478bd9Sstevel@tonic-gate 		if (copyinstr(dcp->c_nodename, cpybuf, MAXNAMELEN, 0) != 0) {
3447c478bd9Sstevel@tonic-gate 			kmem_free(cpybuf, MAXNAMELEN);
3457c478bd9Sstevel@tonic-gate 			kmem_free(dcp, sizeof (*dcp));
3467c478bd9Sstevel@tonic-gate 			return (NDI_FAULT);
3477c478bd9Sstevel@tonic-gate 		}
3487c478bd9Sstevel@tonic-gate 		cpybuf[MAXNAMELEN - 1] = '\0';
3497c478bd9Sstevel@tonic-gate 		dcp->c_nodename = cpybuf;
3507c478bd9Sstevel@tonic-gate 	}
3517c478bd9Sstevel@tonic-gate 
3527c478bd9Sstevel@tonic-gate 	if (dcp->c_unitaddr != NULL) {
3537c478bd9Sstevel@tonic-gate 		cpybuf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
3547c478bd9Sstevel@tonic-gate 		if (copyinstr(dcp->c_unitaddr, cpybuf, MAXNAMELEN, 0) != 0) {
3557c478bd9Sstevel@tonic-gate 			kmem_free(cpybuf, MAXNAMELEN);
3567c478bd9Sstevel@tonic-gate 			if (dcp->c_nodename != NULL)
3577c478bd9Sstevel@tonic-gate 				kmem_free(dcp->c_nodename, MAXNAMELEN);
3587c478bd9Sstevel@tonic-gate 			kmem_free(dcp, sizeof (*dcp));
3597c478bd9Sstevel@tonic-gate 			return (NDI_FAULT);
3607c478bd9Sstevel@tonic-gate 		}
3617c478bd9Sstevel@tonic-gate 		cpybuf[MAXNAMELEN - 1] = '\0';
3627c478bd9Sstevel@tonic-gate 		dcp->c_unitaddr = cpybuf;
3637c478bd9Sstevel@tonic-gate 	}
3647c478bd9Sstevel@tonic-gate 
3657c478bd9Sstevel@tonic-gate 	/*
3667c478bd9Sstevel@tonic-gate 	 * copyin and unpack a user defined nvlist if one was passed
3677c478bd9Sstevel@tonic-gate 	 */
3687c478bd9Sstevel@tonic-gate 	if (dcp->nvl_user != NULL) {
36992d20396Scth 		if (dcp->nvl_usersz == 0) {
37092d20396Scth 			if (dcp->c_nodename != NULL)
37192d20396Scth 				kmem_free(dcp->c_nodename, MAXNAMELEN);
37292d20396Scth 			if (dcp->c_unitaddr != NULL)
37392d20396Scth 				kmem_free(dcp->c_unitaddr, MAXNAMELEN);
37492d20396Scth 			kmem_free(dcp, sizeof (*dcp));
37592d20396Scth 			return (NDI_FAILURE);
37692d20396Scth 		}
3777c478bd9Sstevel@tonic-gate 		cpybuf = kmem_alloc(dcp->nvl_usersz, KM_SLEEP);
3787c478bd9Sstevel@tonic-gate 		if (copyin(dcp->nvl_user, cpybuf, dcp->nvl_usersz) != 0) {
3797c478bd9Sstevel@tonic-gate 			kmem_free(cpybuf, dcp->nvl_usersz);
3807c478bd9Sstevel@tonic-gate 			if (dcp->c_nodename != NULL)
3817c478bd9Sstevel@tonic-gate 				kmem_free(dcp->c_nodename, MAXNAMELEN);
3827c478bd9Sstevel@tonic-gate 			if (dcp->c_unitaddr != NULL)
3837c478bd9Sstevel@tonic-gate 				kmem_free(dcp->c_unitaddr, MAXNAMELEN);
3847c478bd9Sstevel@tonic-gate 			kmem_free(dcp, sizeof (*dcp));
3857c478bd9Sstevel@tonic-gate 			return (NDI_FAULT);
3867c478bd9Sstevel@tonic-gate 		}
3877c478bd9Sstevel@tonic-gate 
3887c478bd9Sstevel@tonic-gate 		if (nvlist_unpack(cpybuf, dcp->nvl_usersz, &dcp->nvl_user,
3897c478bd9Sstevel@tonic-gate 		    KM_SLEEP)) {
3907c478bd9Sstevel@tonic-gate 			kmem_free(cpybuf, dcp->nvl_usersz);
3917c478bd9Sstevel@tonic-gate 			if (dcp->c_nodename != NULL)
3927c478bd9Sstevel@tonic-gate 				kmem_free(dcp->c_nodename, MAXNAMELEN);
3937c478bd9Sstevel@tonic-gate 			if (dcp->c_unitaddr != NULL)
3947c478bd9Sstevel@tonic-gate 				kmem_free(dcp->c_unitaddr, MAXNAMELEN);
3957c478bd9Sstevel@tonic-gate 			kmem_free(dcp, sizeof (*dcp));
3967c478bd9Sstevel@tonic-gate 			return (NDI_FAULT);
3977c478bd9Sstevel@tonic-gate 		}
3987c478bd9Sstevel@tonic-gate 		/*
3997c478bd9Sstevel@tonic-gate 		 * free the buffer containing the packed nvlist
4007c478bd9Sstevel@tonic-gate 		 */
4017c478bd9Sstevel@tonic-gate 		kmem_free(cpybuf, dcp->nvl_usersz);
4027c478bd9Sstevel@tonic-gate 
4037c478bd9Sstevel@tonic-gate 	}
4047c478bd9Sstevel@tonic-gate 
4057c478bd9Sstevel@tonic-gate 	*rdcp = dcp;
4067c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
4077c478bd9Sstevel@tonic-gate }
4087c478bd9Sstevel@tonic-gate 
4097c478bd9Sstevel@tonic-gate /*
4107c478bd9Sstevel@tonic-gate  * free all space allocated to a handle.
4117c478bd9Sstevel@tonic-gate  */
4127c478bd9Sstevel@tonic-gate void
4137c478bd9Sstevel@tonic-gate ndi_dc_freehdl(struct devctl_iocdata *dcp)
4147c478bd9Sstevel@tonic-gate {
4157c478bd9Sstevel@tonic-gate 	ASSERT(dcp != NULL);
4167c478bd9Sstevel@tonic-gate 
4177c478bd9Sstevel@tonic-gate 	if (dcp->c_nodename != NULL)
4187c478bd9Sstevel@tonic-gate 		kmem_free(dcp->c_nodename, MAXNAMELEN);
4197c478bd9Sstevel@tonic-gate 
4207c478bd9Sstevel@tonic-gate 	if (dcp->c_unitaddr != NULL)
4217c478bd9Sstevel@tonic-gate 		kmem_free(dcp->c_unitaddr, MAXNAMELEN);
4227c478bd9Sstevel@tonic-gate 
4237c478bd9Sstevel@tonic-gate 	if (dcp->nvl_user != NULL)
4247c478bd9Sstevel@tonic-gate 		nvlist_free(dcp->nvl_user);
4257c478bd9Sstevel@tonic-gate 
4267c478bd9Sstevel@tonic-gate 	kmem_free(dcp, sizeof (*dcp));
4277c478bd9Sstevel@tonic-gate }
4287c478bd9Sstevel@tonic-gate 
4297c478bd9Sstevel@tonic-gate char *
4307c478bd9Sstevel@tonic-gate ndi_dc_getname(struct devctl_iocdata *dcp)
4317c478bd9Sstevel@tonic-gate {
4327c478bd9Sstevel@tonic-gate 	ASSERT(dcp != NULL);
4337c478bd9Sstevel@tonic-gate 	return (dcp->c_nodename);
4347c478bd9Sstevel@tonic-gate 
4357c478bd9Sstevel@tonic-gate }
4367c478bd9Sstevel@tonic-gate 
4377c478bd9Sstevel@tonic-gate char *
4387c478bd9Sstevel@tonic-gate ndi_dc_getaddr(struct devctl_iocdata *dcp)
4397c478bd9Sstevel@tonic-gate {
4407c478bd9Sstevel@tonic-gate 	ASSERT(dcp != NULL);
4417c478bd9Sstevel@tonic-gate 	return (dcp->c_unitaddr);
4427c478bd9Sstevel@tonic-gate }
4437c478bd9Sstevel@tonic-gate 
4447c478bd9Sstevel@tonic-gate nvlist_t *
4457c478bd9Sstevel@tonic-gate ndi_dc_get_ap_data(struct devctl_iocdata *dcp)
4467c478bd9Sstevel@tonic-gate {
4477c478bd9Sstevel@tonic-gate 	ASSERT(dcp != NULL);
4487c478bd9Sstevel@tonic-gate 
4497c478bd9Sstevel@tonic-gate 	return (dcp->nvl_user);
4507c478bd9Sstevel@tonic-gate }
4517c478bd9Sstevel@tonic-gate 
4527c478bd9Sstevel@tonic-gate /*
4537c478bd9Sstevel@tonic-gate  * Transition the child named by "devname@devaddr" to the online state.
4547c478bd9Sstevel@tonic-gate  * For use by a driver's DEVCTL_DEVICE_ONLINE handler.
4557c478bd9Sstevel@tonic-gate  */
4567c478bd9Sstevel@tonic-gate int
4577c478bd9Sstevel@tonic-gate ndi_devctl_device_online(dev_info_t *dip, struct devctl_iocdata *dcp,
4587c478bd9Sstevel@tonic-gate 	uint_t flags)
4597c478bd9Sstevel@tonic-gate {
4607c478bd9Sstevel@tonic-gate 	int	rval;
4617c478bd9Sstevel@tonic-gate 	char	*name;
4627c478bd9Sstevel@tonic-gate 	dev_info_t *rdip;
4637c478bd9Sstevel@tonic-gate 
4647c478bd9Sstevel@tonic-gate 	if (ndi_dc_getname(dcp) == NULL || ndi_dc_getaddr(dcp) == NULL)
4657c478bd9Sstevel@tonic-gate 		return (EINVAL);
4667c478bd9Sstevel@tonic-gate 
4677c478bd9Sstevel@tonic-gate 	name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
4687c478bd9Sstevel@tonic-gate 	(void) snprintf(name, MAXNAMELEN, "%s@%s",
4697c478bd9Sstevel@tonic-gate 		ndi_dc_getname(dcp), ndi_dc_getaddr(dcp));
4707c478bd9Sstevel@tonic-gate 
4717c478bd9Sstevel@tonic-gate 	if ((rval = ndi_devi_config_one(dip, name, &rdip,
4727c478bd9Sstevel@tonic-gate 	    flags | NDI_DEVI_ONLINE | NDI_CONFIG)) == NDI_SUCCESS) {
4737c478bd9Sstevel@tonic-gate 		ndi_rele_devi(rdip);
4747c478bd9Sstevel@tonic-gate 
4757c478bd9Sstevel@tonic-gate 		/*
4767c478bd9Sstevel@tonic-gate 		 * Invalidate devfs cached directory contents. For the checks
4777c478bd9Sstevel@tonic-gate 		 * in the "if" condition see the comment in ndi_devi_online().
4787c478bd9Sstevel@tonic-gate 		 */
479*737d277aScth 		if (i_ddi_devi_attached(dip) && !DEVI_BUSY_OWNED(dip))
4807c478bd9Sstevel@tonic-gate 			(void) devfs_clean(dip, NULL, 0);
4817c478bd9Sstevel@tonic-gate 
4827c478bd9Sstevel@tonic-gate 	} else if (rval == NDI_BUSY) {
4837c478bd9Sstevel@tonic-gate 		rval = EBUSY;
4847c478bd9Sstevel@tonic-gate 	} else if (rval == NDI_FAILURE) {
4857c478bd9Sstevel@tonic-gate 		rval = EIO;
4867c478bd9Sstevel@tonic-gate 	}
4877c478bd9Sstevel@tonic-gate 
4887c478bd9Sstevel@tonic-gate 	NDI_DEBUG(flags, (CE_CONT, "%s%d: online: %s: %s\n",
4897c478bd9Sstevel@tonic-gate 		ddi_driver_name(dip), ddi_get_instance(dip), name,
4907c478bd9Sstevel@tonic-gate 		((rval == NDI_SUCCESS) ? "ok" : "failed")));
4917c478bd9Sstevel@tonic-gate 
4927c478bd9Sstevel@tonic-gate 	kmem_free(name, MAXNAMELEN);
4937c478bd9Sstevel@tonic-gate 
4947c478bd9Sstevel@tonic-gate 	return (rval);
4957c478bd9Sstevel@tonic-gate }
4967c478bd9Sstevel@tonic-gate 
4977c478bd9Sstevel@tonic-gate /*
4987c478bd9Sstevel@tonic-gate  * Transition the child named by "devname@devaddr" to the offline state.
4997c478bd9Sstevel@tonic-gate  * For use by a driver's DEVCTL_DEVICE_OFFLINE handler.
5007c478bd9Sstevel@tonic-gate  */
5017c478bd9Sstevel@tonic-gate int
5027c478bd9Sstevel@tonic-gate ndi_devctl_device_offline(dev_info_t *dip, struct devctl_iocdata *dcp,
5037c478bd9Sstevel@tonic-gate 	uint_t flags)
5047c478bd9Sstevel@tonic-gate {
5057c478bd9Sstevel@tonic-gate 	int	rval;
5067c478bd9Sstevel@tonic-gate 	char	*name;
5077c478bd9Sstevel@tonic-gate 
5087c478bd9Sstevel@tonic-gate 	if (ndi_dc_getname(dcp) == NULL || ndi_dc_getaddr(dcp) == NULL)
5097c478bd9Sstevel@tonic-gate 		return (EINVAL);
5107c478bd9Sstevel@tonic-gate 
5117c478bd9Sstevel@tonic-gate 	name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
5127c478bd9Sstevel@tonic-gate 	(void) snprintf(name, MAXNAMELEN, "%s@%s",
5137c478bd9Sstevel@tonic-gate 		ndi_dc_getname(dcp), ndi_dc_getaddr(dcp));
5147c478bd9Sstevel@tonic-gate 
5157c478bd9Sstevel@tonic-gate 	rval = devfs_clean(dip, name, DV_CLEAN_FORCE);
5167c478bd9Sstevel@tonic-gate 	if (rval) {
5177c478bd9Sstevel@tonic-gate 		rval = EBUSY;
5187c478bd9Sstevel@tonic-gate 	} else {
5197c478bd9Sstevel@tonic-gate 		rval = ndi_devi_unconfig_one(dip, name, NULL,
5207c478bd9Sstevel@tonic-gate 		    flags | NDI_DEVI_OFFLINE);
5217c478bd9Sstevel@tonic-gate 
5227c478bd9Sstevel@tonic-gate 		if (rval == NDI_BUSY) {
5237c478bd9Sstevel@tonic-gate 			rval = EBUSY;
5247c478bd9Sstevel@tonic-gate 		} else if (rval == NDI_FAILURE) {
5257c478bd9Sstevel@tonic-gate 			rval = EIO;
5267c478bd9Sstevel@tonic-gate 		}
5277c478bd9Sstevel@tonic-gate 	}
5287c478bd9Sstevel@tonic-gate 
5297c478bd9Sstevel@tonic-gate 	NDI_DEBUG(flags, (CE_CONT, "%s%d: offline: %s: %s\n",
5307c478bd9Sstevel@tonic-gate 		ddi_driver_name(dip), ddi_get_instance(dip), name,
5317c478bd9Sstevel@tonic-gate 		(rval == NDI_SUCCESS) ? "ok" : "failed"));
5327c478bd9Sstevel@tonic-gate 
5337c478bd9Sstevel@tonic-gate 	kmem_free(name, MAXNAMELEN);
5347c478bd9Sstevel@tonic-gate 
5357c478bd9Sstevel@tonic-gate 	return (rval);
5367c478bd9Sstevel@tonic-gate }
5377c478bd9Sstevel@tonic-gate 
5387c478bd9Sstevel@tonic-gate /*
5397c478bd9Sstevel@tonic-gate  * Remove the child named by "devname@devaddr".
5407c478bd9Sstevel@tonic-gate  * For use by a driver's DEVCTL_DEVICE_REMOVE handler.
5417c478bd9Sstevel@tonic-gate  */
5427c478bd9Sstevel@tonic-gate int
5437c478bd9Sstevel@tonic-gate ndi_devctl_device_remove(dev_info_t *dip, struct devctl_iocdata *dcp,
5447c478bd9Sstevel@tonic-gate 	uint_t flags)
5457c478bd9Sstevel@tonic-gate {
5467c478bd9Sstevel@tonic-gate 	int	rval;
5477c478bd9Sstevel@tonic-gate 	char	*name;
5487c478bd9Sstevel@tonic-gate 
5497c478bd9Sstevel@tonic-gate 	if (ndi_dc_getname(dcp) == NULL || ndi_dc_getaddr(dcp) == NULL)
5507c478bd9Sstevel@tonic-gate 		return (EINVAL);
5517c478bd9Sstevel@tonic-gate 
5527c478bd9Sstevel@tonic-gate 	name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
5537c478bd9Sstevel@tonic-gate 	(void) snprintf(name, MAXNAMELEN, "%s@%s",
5547c478bd9Sstevel@tonic-gate 		ndi_dc_getname(dcp), ndi_dc_getaddr(dcp));
5557c478bd9Sstevel@tonic-gate 
5567c478bd9Sstevel@tonic-gate 	(void) devfs_clean(dip, name, DV_CLEAN_FORCE);
5577c478bd9Sstevel@tonic-gate 
5587c478bd9Sstevel@tonic-gate 	rval = ndi_devi_unconfig_one(dip, name, NULL, flags | NDI_DEVI_REMOVE);
5597c478bd9Sstevel@tonic-gate 
5607c478bd9Sstevel@tonic-gate 	if (rval == NDI_BUSY) {
5617c478bd9Sstevel@tonic-gate 		rval = EBUSY;
5627c478bd9Sstevel@tonic-gate 	} else if (rval == NDI_FAILURE) {
5637c478bd9Sstevel@tonic-gate 		rval = EIO;
5647c478bd9Sstevel@tonic-gate 	}
5657c478bd9Sstevel@tonic-gate 
5667c478bd9Sstevel@tonic-gate 	NDI_DEBUG(flags, (CE_CONT, "%s%d: remove: %s: %s\n",
5677c478bd9Sstevel@tonic-gate 		ddi_driver_name(dip), ddi_get_instance(dip), name,
5687c478bd9Sstevel@tonic-gate 		(rval == NDI_SUCCESS) ? "ok" : "failed"));
5697c478bd9Sstevel@tonic-gate 
5707c478bd9Sstevel@tonic-gate 	kmem_free(name, MAXNAMELEN);
5717c478bd9Sstevel@tonic-gate 
5727c478bd9Sstevel@tonic-gate 	return (rval);
5737c478bd9Sstevel@tonic-gate }
5747c478bd9Sstevel@tonic-gate 
5757c478bd9Sstevel@tonic-gate /*
5767c478bd9Sstevel@tonic-gate  * Return devctl state of the child named by "name@addr".
5777c478bd9Sstevel@tonic-gate  * For use by a driver's DEVCTL_DEVICE_GETSTATE handler.
5787c478bd9Sstevel@tonic-gate  */
5797c478bd9Sstevel@tonic-gate int
5807c478bd9Sstevel@tonic-gate ndi_devctl_device_getstate(dev_info_t *parent, struct devctl_iocdata *dcp,
5817c478bd9Sstevel@tonic-gate 	uint_t *state)
5827c478bd9Sstevel@tonic-gate {
5837c478bd9Sstevel@tonic-gate 	dev_info_t *dip;
5847c478bd9Sstevel@tonic-gate 	char *name, *addr;
5857c478bd9Sstevel@tonic-gate 	char *devname;
5867c478bd9Sstevel@tonic-gate 	int devnamelen;
5877c478bd9Sstevel@tonic-gate 	int circ;
5887c478bd9Sstevel@tonic-gate 
5897c478bd9Sstevel@tonic-gate 	if (parent == NULL ||
5907c478bd9Sstevel@tonic-gate 	    ((name = ndi_dc_getname(dcp)) == NULL) ||
5917c478bd9Sstevel@tonic-gate 	    ((addr = ndi_dc_getaddr(dcp)) == NULL))
5927c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
5937c478bd9Sstevel@tonic-gate 
5947c478bd9Sstevel@tonic-gate 	devnamelen = strlen(name) + strlen(addr) + 2;
5957c478bd9Sstevel@tonic-gate 	devname = kmem_alloc(devnamelen, KM_SLEEP);
5967c478bd9Sstevel@tonic-gate 	if (strlen(addr) > 0) {
5977c478bd9Sstevel@tonic-gate 		(void) snprintf(devname, devnamelen, "%s@%s", name, addr);
5987c478bd9Sstevel@tonic-gate 	} else {
5997c478bd9Sstevel@tonic-gate 		(void) snprintf(devname, devnamelen, "%s", name);
6007c478bd9Sstevel@tonic-gate 	}
6017c478bd9Sstevel@tonic-gate 
6027c478bd9Sstevel@tonic-gate 	ndi_devi_enter(parent, &circ);
6037c478bd9Sstevel@tonic-gate 
6047c478bd9Sstevel@tonic-gate 	dip = ndi_devi_findchild(parent, devname);
6057c478bd9Sstevel@tonic-gate 	kmem_free(devname, devnamelen);
6067c478bd9Sstevel@tonic-gate 
6077c478bd9Sstevel@tonic-gate 	if (dip == NULL) {
6087c478bd9Sstevel@tonic-gate 		ndi_devi_exit(parent, circ);
6097c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
6107c478bd9Sstevel@tonic-gate 	}
6117c478bd9Sstevel@tonic-gate 
6127c478bd9Sstevel@tonic-gate 	mutex_enter(&(DEVI(dip)->devi_lock));
6137c478bd9Sstevel@tonic-gate 	if (DEVI_IS_DEVICE_OFFLINE(dip)) {
6147c478bd9Sstevel@tonic-gate 		*state = DEVICE_OFFLINE;
6157c478bd9Sstevel@tonic-gate 	} else if (DEVI_IS_DEVICE_DOWN(dip)) {
6167c478bd9Sstevel@tonic-gate 		*state = DEVICE_DOWN;
6177c478bd9Sstevel@tonic-gate 	} else {
6187c478bd9Sstevel@tonic-gate 		*state = DEVICE_ONLINE;
6197c478bd9Sstevel@tonic-gate 		if (devi_stillreferenced(dip) == DEVI_REFERENCED)
6207c478bd9Sstevel@tonic-gate 			*state |= DEVICE_BUSY;
6217c478bd9Sstevel@tonic-gate 	}
6227c478bd9Sstevel@tonic-gate 
6237c478bd9Sstevel@tonic-gate 	mutex_exit(&(DEVI(dip)->devi_lock));
6247c478bd9Sstevel@tonic-gate 	ndi_devi_exit(parent, circ);
6257c478bd9Sstevel@tonic-gate 
6267c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
6277c478bd9Sstevel@tonic-gate }
6287c478bd9Sstevel@tonic-gate 
6297c478bd9Sstevel@tonic-gate /*
6307c478bd9Sstevel@tonic-gate  * return the current state of the device "dip"
6317c478bd9Sstevel@tonic-gate  *
6327c478bd9Sstevel@tonic-gate  * recommend using ndi_devctl_ioctl() or
6337c478bd9Sstevel@tonic-gate  * ndi_devctl_device_getstate() instead
6347c478bd9Sstevel@tonic-gate  */
6357c478bd9Sstevel@tonic-gate int
6367c478bd9Sstevel@tonic-gate ndi_dc_return_dev_state(dev_info_t *dip, struct devctl_iocdata *dcp)
6377c478bd9Sstevel@tonic-gate {
6387c478bd9Sstevel@tonic-gate 	dev_info_t *pdip;
6397c478bd9Sstevel@tonic-gate 	uint_t devstate = 0;
6407c478bd9Sstevel@tonic-gate 	int circ;
6417c478bd9Sstevel@tonic-gate 
6427c478bd9Sstevel@tonic-gate 	if ((dip == NULL) || (dcp == NULL))
6437c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
6447c478bd9Sstevel@tonic-gate 
6457c478bd9Sstevel@tonic-gate 	pdip = ddi_get_parent(dip);
6467c478bd9Sstevel@tonic-gate 
6477c478bd9Sstevel@tonic-gate 	ndi_devi_enter(pdip, &circ);
6487c478bd9Sstevel@tonic-gate 	mutex_enter(&(DEVI(dip)->devi_lock));
6497c478bd9Sstevel@tonic-gate 	if (DEVI_IS_DEVICE_OFFLINE(dip)) {
6507c478bd9Sstevel@tonic-gate 		devstate = DEVICE_OFFLINE;
6517c478bd9Sstevel@tonic-gate 	} else if (DEVI_IS_DEVICE_DOWN(dip)) {
6527c478bd9Sstevel@tonic-gate 		devstate = DEVICE_DOWN;
6537c478bd9Sstevel@tonic-gate 	} else {
6547c478bd9Sstevel@tonic-gate 		devstate = DEVICE_ONLINE;
6557c478bd9Sstevel@tonic-gate 		if (devi_stillreferenced(dip) == DEVI_REFERENCED)
6567c478bd9Sstevel@tonic-gate 			devstate |= DEVICE_BUSY;
6577c478bd9Sstevel@tonic-gate 	}
6587c478bd9Sstevel@tonic-gate 
6597c478bd9Sstevel@tonic-gate 	mutex_exit(&(DEVI(dip)->devi_lock));
6607c478bd9Sstevel@tonic-gate 	ndi_devi_exit(pdip, circ);
6617c478bd9Sstevel@tonic-gate 
6627c478bd9Sstevel@tonic-gate 	if (copyout(&devstate, dcp->cpyout_buf, sizeof (uint_t)) != 0)
6637c478bd9Sstevel@tonic-gate 		return (NDI_FAULT);
6647c478bd9Sstevel@tonic-gate 
6657c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
6667c478bd9Sstevel@tonic-gate }
6677c478bd9Sstevel@tonic-gate 
6687c478bd9Sstevel@tonic-gate /*
6697c478bd9Sstevel@tonic-gate  * Return device's bus state
6707c478bd9Sstevel@tonic-gate  * For use by a driver's DEVCTL_BUS_GETSTATE handler.
6717c478bd9Sstevel@tonic-gate  */
6727c478bd9Sstevel@tonic-gate int
6737c478bd9Sstevel@tonic-gate ndi_devctl_bus_getstate(dev_info_t *dip, struct devctl_iocdata *dcp,
6747c478bd9Sstevel@tonic-gate 	uint_t *state)
6757c478bd9Sstevel@tonic-gate {
6767c478bd9Sstevel@tonic-gate 	if ((dip == NULL) || (dcp == NULL))
6777c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
6787c478bd9Sstevel@tonic-gate 
6797c478bd9Sstevel@tonic-gate 	return (ndi_get_bus_state(dip, state));
6807c478bd9Sstevel@tonic-gate }
6817c478bd9Sstevel@tonic-gate 
6827c478bd9Sstevel@tonic-gate /*
6837c478bd9Sstevel@tonic-gate  * Generic devctl ioctl handler
6847c478bd9Sstevel@tonic-gate  */
6857c478bd9Sstevel@tonic-gate int
6867c478bd9Sstevel@tonic-gate ndi_devctl_ioctl(dev_info_t *dip, int cmd, intptr_t arg, int mode, uint_t flags)
6877c478bd9Sstevel@tonic-gate {
6887c478bd9Sstevel@tonic-gate 	_NOTE(ARGUNUSED(mode))
6897c478bd9Sstevel@tonic-gate 	struct devctl_iocdata *dcp;
6907c478bd9Sstevel@tonic-gate 	uint_t state;
6917c478bd9Sstevel@tonic-gate 	int rval = ENOTTY;
6927c478bd9Sstevel@tonic-gate 
6937c478bd9Sstevel@tonic-gate 	/*
6947c478bd9Sstevel@tonic-gate 	 * read devctl ioctl data
6957c478bd9Sstevel@tonic-gate 	 */
6967c478bd9Sstevel@tonic-gate 	if (ndi_dc_allochdl((void *)arg, &dcp) != NDI_SUCCESS)
6977c478bd9Sstevel@tonic-gate 		return (EFAULT);
6987c478bd9Sstevel@tonic-gate 
6997c478bd9Sstevel@tonic-gate 	switch (cmd) {
7007c478bd9Sstevel@tonic-gate 
7017c478bd9Sstevel@tonic-gate 	case DEVCTL_BUS_GETSTATE:
7027c478bd9Sstevel@tonic-gate 		rval = ndi_devctl_bus_getstate(dip, dcp, &state);
7037c478bd9Sstevel@tonic-gate 		if (rval == NDI_SUCCESS) {
7047c478bd9Sstevel@tonic-gate 			if (copyout(&state, dcp->cpyout_buf,
7057c478bd9Sstevel@tonic-gate 			    sizeof (uint_t)) != 0)
7067c478bd9Sstevel@tonic-gate 				rval = NDI_FAULT;
7077c478bd9Sstevel@tonic-gate 		}
7087c478bd9Sstevel@tonic-gate 		break;
7097c478bd9Sstevel@tonic-gate 
7107c478bd9Sstevel@tonic-gate 	case DEVCTL_DEVICE_ONLINE:
7117c478bd9Sstevel@tonic-gate 		rval = ndi_devctl_device_online(dip, dcp, flags);
7127c478bd9Sstevel@tonic-gate 		break;
7137c478bd9Sstevel@tonic-gate 
7147c478bd9Sstevel@tonic-gate 	case DEVCTL_DEVICE_OFFLINE:
7157c478bd9Sstevel@tonic-gate 		rval = ndi_devctl_device_offline(dip, dcp, flags);
7167c478bd9Sstevel@tonic-gate 		break;
7177c478bd9Sstevel@tonic-gate 
7187c478bd9Sstevel@tonic-gate 	case DEVCTL_DEVICE_GETSTATE:
7197c478bd9Sstevel@tonic-gate 		rval = ndi_devctl_device_getstate(dip, dcp, &state);
7207c478bd9Sstevel@tonic-gate 		if (rval == NDI_SUCCESS) {
7217c478bd9Sstevel@tonic-gate 			if (copyout(&state, dcp->cpyout_buf,
7227c478bd9Sstevel@tonic-gate 			    sizeof (uint_t)) != 0)
7237c478bd9Sstevel@tonic-gate 				rval = NDI_FAULT;
7247c478bd9Sstevel@tonic-gate 		}
7257c478bd9Sstevel@tonic-gate 		break;
7267c478bd9Sstevel@tonic-gate 
7277c478bd9Sstevel@tonic-gate 	case DEVCTL_DEVICE_REMOVE:
7287c478bd9Sstevel@tonic-gate 		rval = ndi_devctl_device_remove(dip, dcp, flags);
7297c478bd9Sstevel@tonic-gate 		break;
7307c478bd9Sstevel@tonic-gate 
7317c478bd9Sstevel@tonic-gate 	case DEVCTL_BUS_DEV_CREATE:
7327c478bd9Sstevel@tonic-gate 		rval = ndi_dc_devi_create(dcp, dip, 0, NULL);
7337c478bd9Sstevel@tonic-gate 		break;
7347c478bd9Sstevel@tonic-gate 
7357c478bd9Sstevel@tonic-gate 	/*
7367c478bd9Sstevel@tonic-gate 	 * ioctls for which a generic implementation makes no sense
7377c478bd9Sstevel@tonic-gate 	 */
7387c478bd9Sstevel@tonic-gate 	case DEVCTL_BUS_RESET:
7397c478bd9Sstevel@tonic-gate 	case DEVCTL_BUS_RESETALL:
7407c478bd9Sstevel@tonic-gate 	case DEVCTL_DEVICE_RESET:
7417c478bd9Sstevel@tonic-gate 	case DEVCTL_AP_CONNECT:
7427c478bd9Sstevel@tonic-gate 	case DEVCTL_AP_DISCONNECT:
7437c478bd9Sstevel@tonic-gate 	case DEVCTL_AP_INSERT:
7447c478bd9Sstevel@tonic-gate 	case DEVCTL_AP_REMOVE:
7457c478bd9Sstevel@tonic-gate 	case DEVCTL_AP_CONFIGURE:
7467c478bd9Sstevel@tonic-gate 	case DEVCTL_AP_UNCONFIGURE:
7477c478bd9Sstevel@tonic-gate 	case DEVCTL_AP_GETSTATE:
7487c478bd9Sstevel@tonic-gate 	case DEVCTL_AP_CONTROL:
7497c478bd9Sstevel@tonic-gate 	case DEVCTL_BUS_QUIESCE:
7507c478bd9Sstevel@tonic-gate 	case DEVCTL_BUS_UNQUIESCE:
7517c478bd9Sstevel@tonic-gate 		rval = ENOTSUP;
7527c478bd9Sstevel@tonic-gate 		break;
7537c478bd9Sstevel@tonic-gate 	}
7547c478bd9Sstevel@tonic-gate 
7557c478bd9Sstevel@tonic-gate 	ndi_dc_freehdl(dcp);
7567c478bd9Sstevel@tonic-gate 	return (rval);
7577c478bd9Sstevel@tonic-gate }
7587c478bd9Sstevel@tonic-gate 
7597c478bd9Sstevel@tonic-gate /*
7607c478bd9Sstevel@tonic-gate  * Copyout the state of the Attachment Point "ap" to the requesting
7617c478bd9Sstevel@tonic-gate  * user process.
7627c478bd9Sstevel@tonic-gate  */
7637c478bd9Sstevel@tonic-gate int
7647c478bd9Sstevel@tonic-gate ndi_dc_return_ap_state(devctl_ap_state_t *ap, struct devctl_iocdata *dcp)
7657c478bd9Sstevel@tonic-gate {
7667c478bd9Sstevel@tonic-gate 	if ((ap == NULL) || (dcp == NULL))
7677c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
7687c478bd9Sstevel@tonic-gate 
7697c478bd9Sstevel@tonic-gate 
7707c478bd9Sstevel@tonic-gate 	if (get_udatamodel() == DATAMODEL_NATIVE) {
7717c478bd9Sstevel@tonic-gate 		if (copyout(ap, dcp->cpyout_buf,
7727c478bd9Sstevel@tonic-gate 			sizeof (devctl_ap_state_t)) != 0)
7737c478bd9Sstevel@tonic-gate 		    return (NDI_FAULT);
7747c478bd9Sstevel@tonic-gate 	}
7757c478bd9Sstevel@tonic-gate #ifdef _SYSCALL32_IMPL
7767c478bd9Sstevel@tonic-gate 	else {
7777c478bd9Sstevel@tonic-gate 		struct devctl_ap_state32 ap_state32;
7787c478bd9Sstevel@tonic-gate 
7797c478bd9Sstevel@tonic-gate 		ap_state32.ap_rstate = ap->ap_rstate;
7807c478bd9Sstevel@tonic-gate 		ap_state32.ap_ostate = ap->ap_ostate;
7817c478bd9Sstevel@tonic-gate 		ap_state32.ap_condition = ap->ap_condition;
7827c478bd9Sstevel@tonic-gate 		ap_state32.ap_error_code = ap->ap_error_code;
7837c478bd9Sstevel@tonic-gate 		ap_state32.ap_in_transition = ap->ap_in_transition;
7847c478bd9Sstevel@tonic-gate 		ap_state32.ap_last_change = (time32_t)ap->ap_last_change;
7857c478bd9Sstevel@tonic-gate 		if (copyout(&ap_state32, dcp->cpyout_buf,
7867c478bd9Sstevel@tonic-gate 			sizeof (devctl_ap_state32_t)) != 0)
7877c478bd9Sstevel@tonic-gate 		    return (NDI_FAULT);
7887c478bd9Sstevel@tonic-gate 	}
7897c478bd9Sstevel@tonic-gate #endif
7907c478bd9Sstevel@tonic-gate 
7917c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
7927c478bd9Sstevel@tonic-gate }
7937c478bd9Sstevel@tonic-gate 
7947c478bd9Sstevel@tonic-gate /*
7957c478bd9Sstevel@tonic-gate  * Copyout the bus state of the bus nexus device "dip" to the requesting
7967c478bd9Sstevel@tonic-gate  * user process.
7977c478bd9Sstevel@tonic-gate  */
7987c478bd9Sstevel@tonic-gate int
7997c478bd9Sstevel@tonic-gate ndi_dc_return_bus_state(dev_info_t *dip, struct devctl_iocdata *dcp)
8007c478bd9Sstevel@tonic-gate {
8017c478bd9Sstevel@tonic-gate 	uint_t devstate = 0;
8027c478bd9Sstevel@tonic-gate 
8037c478bd9Sstevel@tonic-gate 	if ((dip == NULL) || (dcp == NULL))
8047c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
8057c478bd9Sstevel@tonic-gate 
8067c478bd9Sstevel@tonic-gate 	if (ndi_get_bus_state(dip, &devstate) != NDI_SUCCESS)
8077c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
8087c478bd9Sstevel@tonic-gate 
8097c478bd9Sstevel@tonic-gate 	if (copyout(&devstate, dcp->cpyout_buf, sizeof (uint_t)) != 0)
8107c478bd9Sstevel@tonic-gate 		return (NDI_FAULT);
8117c478bd9Sstevel@tonic-gate 
8127c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
8137c478bd9Sstevel@tonic-gate }
8147c478bd9Sstevel@tonic-gate 
8157c478bd9Sstevel@tonic-gate static int
8167c478bd9Sstevel@tonic-gate i_dc_devi_create(struct devctl_iocdata *, dev_info_t *, dev_info_t **);
8177c478bd9Sstevel@tonic-gate 
8187c478bd9Sstevel@tonic-gate /*
8197c478bd9Sstevel@tonic-gate  * create a child device node given the property definitions
8207c478bd9Sstevel@tonic-gate  * supplied by the userland process
8217c478bd9Sstevel@tonic-gate  */
8227c478bd9Sstevel@tonic-gate int
8237c478bd9Sstevel@tonic-gate ndi_dc_devi_create(struct devctl_iocdata *dcp, dev_info_t *pdip, int flags,
8247c478bd9Sstevel@tonic-gate     dev_info_t **rdip)
8257c478bd9Sstevel@tonic-gate {
8267c478bd9Sstevel@tonic-gate 	dev_info_t *cdip;
8277c478bd9Sstevel@tonic-gate 	int rv, circular = 0;
8287c478bd9Sstevel@tonic-gate 	char devnm[MAXNAMELEN];
8297c478bd9Sstevel@tonic-gate 	int nmlen;
8307c478bd9Sstevel@tonic-gate 
8317c478bd9Sstevel@tonic-gate 	/*
8327c478bd9Sstevel@tonic-gate 	 * The child device may have been pre-constructed by an earlier
8337c478bd9Sstevel@tonic-gate 	 * call to this function with the flag DEVCTL_CONSTRUCT set.
8347c478bd9Sstevel@tonic-gate 	 */
8357c478bd9Sstevel@tonic-gate 
8367c478bd9Sstevel@tonic-gate 	if ((cdip = (rdip != NULL) ? *rdip : NULL) == NULL)
8377c478bd9Sstevel@tonic-gate 		if ((rv = i_dc_devi_create(dcp, pdip, &cdip)) != 0)
8387c478bd9Sstevel@tonic-gate 			return (rv);
8397c478bd9Sstevel@tonic-gate 
8407c478bd9Sstevel@tonic-gate 	ASSERT(cdip != NULL);
8417c478bd9Sstevel@tonic-gate 
8427c478bd9Sstevel@tonic-gate 	/*
8437c478bd9Sstevel@tonic-gate 	 * Return the device node partially constructed if the
8447c478bd9Sstevel@tonic-gate 	 * DEVCTL_CONSTRUCT flag is set.
8457c478bd9Sstevel@tonic-gate 	 */
8467c478bd9Sstevel@tonic-gate 	if (flags & DEVCTL_CONSTRUCT) {
8477c478bd9Sstevel@tonic-gate 		if (rdip == NULL) {
8487c478bd9Sstevel@tonic-gate 			(void) ndi_devi_free(cdip);
8497c478bd9Sstevel@tonic-gate 			return (EINVAL);
8507c478bd9Sstevel@tonic-gate 		}
8517c478bd9Sstevel@tonic-gate 		*rdip = cdip;
8527c478bd9Sstevel@tonic-gate 		return (0);
8537c478bd9Sstevel@tonic-gate 	}
8547c478bd9Sstevel@tonic-gate 
8557c478bd9Sstevel@tonic-gate 	/*
8567c478bd9Sstevel@tonic-gate 	 * Bring the node up to a named but OFFLINE state.  The calling
8577c478bd9Sstevel@tonic-gate 	 * application will need to manage the node from here on.
8587c478bd9Sstevel@tonic-gate 	 */
8597c478bd9Sstevel@tonic-gate 	if (dcp->flags & DEVCTL_OFFLINE) {
8607c478bd9Sstevel@tonic-gate 		/*
8617c478bd9Sstevel@tonic-gate 		 * hand set the OFFLINE flag to prevent any asynchronous
8627c478bd9Sstevel@tonic-gate 		 * autoconfiguration operations from attaching this node.
8637c478bd9Sstevel@tonic-gate 		 */
86416747f41Scth 		mutex_enter(&(DEVI(cdip)->devi_lock));
86516747f41Scth 		DEVI_SET_DEVICE_OFFLINE(cdip);
86616747f41Scth 		mutex_exit(&(DEVI(cdip)->devi_lock));
86716747f41Scth 
8687c478bd9Sstevel@tonic-gate 		rv = ndi_devi_bind_driver(cdip, flags);
8697c478bd9Sstevel@tonic-gate 		if (rv != NDI_SUCCESS) {
8707c478bd9Sstevel@tonic-gate 			(void) ndi_devi_offline(cdip, NDI_DEVI_REMOVE);
8717c478bd9Sstevel@tonic-gate 			return (ENXIO);
8727c478bd9Sstevel@tonic-gate 		}
8737c478bd9Sstevel@tonic-gate 
8747c478bd9Sstevel@tonic-gate 		/*
8757c478bd9Sstevel@tonic-gate 		 * remove the dev_info node if it failed to bind to a
8767c478bd9Sstevel@tonic-gate 		 * driver above.
8777c478bd9Sstevel@tonic-gate 		 */
8787c478bd9Sstevel@tonic-gate 		if (i_ddi_node_state(cdip) < DS_BOUND) {
8797c478bd9Sstevel@tonic-gate 			(void) ndi_devi_offline(cdip, NDI_DEVI_REMOVE);
8807c478bd9Sstevel@tonic-gate 			return (ENXIO);
8817c478bd9Sstevel@tonic-gate 		}
8827c478bd9Sstevel@tonic-gate 
8837c478bd9Sstevel@tonic-gate 		/*
8847c478bd9Sstevel@tonic-gate 		 * add the node to the per-driver list and INITCHILD it
8857c478bd9Sstevel@tonic-gate 		 * to give it a name.
8867c478bd9Sstevel@tonic-gate 		 */
8877c478bd9Sstevel@tonic-gate 		ndi_devi_enter(pdip, &circular);
8887c478bd9Sstevel@tonic-gate 		if ((rv = ddi_initchild(pdip, cdip)) != DDI_SUCCESS) {
8897c478bd9Sstevel@tonic-gate 			(void) ndi_devi_offline(cdip, NDI_DEVI_REMOVE);
8907c478bd9Sstevel@tonic-gate 			ndi_devi_exit(pdip, circular);
8917c478bd9Sstevel@tonic-gate 			return (EINVAL);
8927c478bd9Sstevel@tonic-gate 		}
8937c478bd9Sstevel@tonic-gate 		ndi_devi_exit(pdip, circular);
8947c478bd9Sstevel@tonic-gate 
8957c478bd9Sstevel@tonic-gate 	} else {
8967c478bd9Sstevel@tonic-gate 		/*
8977c478bd9Sstevel@tonic-gate 		 * Attempt to bring the device ONLINE. If the request to
8987c478bd9Sstevel@tonic-gate 		 * fails, remove the dev_info node.
8997c478bd9Sstevel@tonic-gate 		 */
9007c478bd9Sstevel@tonic-gate 		if (ndi_devi_online(cdip, NDI_ONLINE_ATTACH) != NDI_SUCCESS) {
9017c478bd9Sstevel@tonic-gate 			(void) ndi_devi_offline(cdip, NDI_DEVI_REMOVE);
9027c478bd9Sstevel@tonic-gate 			return (ENXIO);
9037c478bd9Sstevel@tonic-gate 		}
9047c478bd9Sstevel@tonic-gate 
9057c478bd9Sstevel@tonic-gate 		/*
9067c478bd9Sstevel@tonic-gate 		 * if the node was successfully added but there was
9077c478bd9Sstevel@tonic-gate 		 * no driver available for the device, remove the node
9087c478bd9Sstevel@tonic-gate 		 */
9097c478bd9Sstevel@tonic-gate 		if (i_ddi_node_state(cdip) < DS_BOUND) {
9107c478bd9Sstevel@tonic-gate 			(void) ndi_devi_offline(cdip, NDI_DEVI_REMOVE);
9117c478bd9Sstevel@tonic-gate 			return (ENODEV);
9127c478bd9Sstevel@tonic-gate 		}
9137c478bd9Sstevel@tonic-gate 	}
9147c478bd9Sstevel@tonic-gate 
9157c478bd9Sstevel@tonic-gate 	/*
9167c478bd9Sstevel@tonic-gate 	 * return a handle to the child device
9177c478bd9Sstevel@tonic-gate 	 * copy out the name of the newly attached child device if
9187c478bd9Sstevel@tonic-gate 	 * the IOCTL request has provided a copyout buffer.
9197c478bd9Sstevel@tonic-gate 	 */
9207c478bd9Sstevel@tonic-gate 	if (rdip != NULL)
9217c478bd9Sstevel@tonic-gate 		*rdip = cdip;
9227c478bd9Sstevel@tonic-gate 
9237c478bd9Sstevel@tonic-gate 	if (dcp->cpyout_buf == NULL)
9247c478bd9Sstevel@tonic-gate 		return (0);
9257c478bd9Sstevel@tonic-gate 
9267c478bd9Sstevel@tonic-gate 	ASSERT(ddi_node_name(cdip) != NULL);
9277c478bd9Sstevel@tonic-gate 	ASSERT(ddi_get_name_addr(cdip) != NULL);
9287c478bd9Sstevel@tonic-gate 
9297c478bd9Sstevel@tonic-gate 	nmlen = snprintf(devnm, MAXNAMELEN, "%s@%s",
9307c478bd9Sstevel@tonic-gate 	    ddi_node_name(cdip), ddi_get_name_addr(cdip));
9317c478bd9Sstevel@tonic-gate 
9327c478bd9Sstevel@tonic-gate 	if (copyout(&devnm, dcp->cpyout_buf, nmlen) != 0) {
9337c478bd9Sstevel@tonic-gate 		(void) ndi_devi_offline(cdip, NDI_DEVI_REMOVE);
9347c478bd9Sstevel@tonic-gate 		return (EFAULT);
9357c478bd9Sstevel@tonic-gate 	}
9367c478bd9Sstevel@tonic-gate 	return (0);
9377c478bd9Sstevel@tonic-gate }
9387c478bd9Sstevel@tonic-gate 
9397c478bd9Sstevel@tonic-gate static int
9407c478bd9Sstevel@tonic-gate i_dc_devi_create(struct devctl_iocdata *dcp, dev_info_t *pdip,
9417c478bd9Sstevel@tonic-gate     dev_info_t **rdip)
9427c478bd9Sstevel@tonic-gate {
9437c478bd9Sstevel@tonic-gate 
9447c478bd9Sstevel@tonic-gate 	dev_info_t *cdip;
9457c478bd9Sstevel@tonic-gate 	char *cname = NULL;
9467c478bd9Sstevel@tonic-gate 	nvlist_t *nvlp = dcp->nvl_user;
9477c478bd9Sstevel@tonic-gate 	nvpair_t *npp;
9487c478bd9Sstevel@tonic-gate 	char *np;
9497c478bd9Sstevel@tonic-gate 	int rv = 0;
9507c478bd9Sstevel@tonic-gate 
9517c478bd9Sstevel@tonic-gate 	ASSERT(rdip != NULL && *rdip == NULL);
9527c478bd9Sstevel@tonic-gate 
9537c478bd9Sstevel@tonic-gate 	if ((nvlp == NULL) ||
9547c478bd9Sstevel@tonic-gate 	    (nvlist_lookup_string(nvlp, DC_DEVI_NODENAME, &cname) != 0))
9557c478bd9Sstevel@tonic-gate 		return (EINVAL);
9567c478bd9Sstevel@tonic-gate 
9577c478bd9Sstevel@tonic-gate 	/*
9587c478bd9Sstevel@tonic-gate 	 * construct a new dev_info node with a user-provided nodename
9597c478bd9Sstevel@tonic-gate 	 */
960fa9e4066Sahrens 	ndi_devi_alloc_sleep(pdip, cname, (pnode_t)DEVI_SID_NODEID, &cdip);
9617c478bd9Sstevel@tonic-gate 
9627c478bd9Sstevel@tonic-gate 	/*
9637c478bd9Sstevel@tonic-gate 	 * create hardware properties for each member in the property
9647c478bd9Sstevel@tonic-gate 	 * list.
9657c478bd9Sstevel@tonic-gate 	 */
9667c478bd9Sstevel@tonic-gate 	for (npp = nvlist_next_nvpair(nvlp, NULL); (npp != NULL && !rv);
9677c478bd9Sstevel@tonic-gate 	    npp = nvlist_next_nvpair(nvlp, npp)) {
9687c478bd9Sstevel@tonic-gate 
9697c478bd9Sstevel@tonic-gate 		np = nvpair_name(npp);
9707c478bd9Sstevel@tonic-gate 
9717c478bd9Sstevel@tonic-gate 		/*
9727c478bd9Sstevel@tonic-gate 		 * skip the nodename property
9737c478bd9Sstevel@tonic-gate 		 */
9747c478bd9Sstevel@tonic-gate 		if (strcmp(np, DC_DEVI_NODENAME) == 0)
9757c478bd9Sstevel@tonic-gate 			continue;
9767c478bd9Sstevel@tonic-gate 
9777c478bd9Sstevel@tonic-gate 		switch (nvpair_type(npp)) {
9787c478bd9Sstevel@tonic-gate 
9797c478bd9Sstevel@tonic-gate 		case DATA_TYPE_INT32: {
9807c478bd9Sstevel@tonic-gate 			int32_t prop_val;
9817c478bd9Sstevel@tonic-gate 
9827c478bd9Sstevel@tonic-gate 			if ((rv = nvpair_value_int32(npp, &prop_val)) != 0)
9837c478bd9Sstevel@tonic-gate 				break;
9847c478bd9Sstevel@tonic-gate 
9857c478bd9Sstevel@tonic-gate 			(void) ndi_prop_update_int(DDI_DEV_T_NONE, cdip, np,
9867c478bd9Sstevel@tonic-gate 			    (int)prop_val);
9877c478bd9Sstevel@tonic-gate 			break;
9887c478bd9Sstevel@tonic-gate 		}
9897c478bd9Sstevel@tonic-gate 
9907c478bd9Sstevel@tonic-gate 		case DATA_TYPE_STRING: {
9917c478bd9Sstevel@tonic-gate 			char *prop_val;
9927c478bd9Sstevel@tonic-gate 
9937c478bd9Sstevel@tonic-gate 			if ((rv = nvpair_value_string(npp, &prop_val)) != 0)
9947c478bd9Sstevel@tonic-gate 				break;
9957c478bd9Sstevel@tonic-gate 
9967c478bd9Sstevel@tonic-gate 			(void) ndi_prop_update_string(DDI_DEV_T_NONE, cdip,
9977c478bd9Sstevel@tonic-gate 			    np, prop_val);
9987c478bd9Sstevel@tonic-gate 			break;
9997c478bd9Sstevel@tonic-gate 		}
10007c478bd9Sstevel@tonic-gate 
10017c478bd9Sstevel@tonic-gate 		case DATA_TYPE_BYTE_ARRAY: {
10027c478bd9Sstevel@tonic-gate 			uchar_t *val;
10037c478bd9Sstevel@tonic-gate 			uint_t nelms;
10047c478bd9Sstevel@tonic-gate 
10057c478bd9Sstevel@tonic-gate 			if ((rv = nvpair_value_byte_array(npp, &val,
10067c478bd9Sstevel@tonic-gate 			    &nelms)) != 0)
10077c478bd9Sstevel@tonic-gate 				break;
10087c478bd9Sstevel@tonic-gate 
10097c478bd9Sstevel@tonic-gate 			(void) ndi_prop_update_byte_array(DDI_DEV_T_NONE,
10107c478bd9Sstevel@tonic-gate 			    cdip, np, (uchar_t *)val, nelms);
10117c478bd9Sstevel@tonic-gate 			break;
10127c478bd9Sstevel@tonic-gate 		}
10137c478bd9Sstevel@tonic-gate 
10147c478bd9Sstevel@tonic-gate 		case DATA_TYPE_INT32_ARRAY: {
10157c478bd9Sstevel@tonic-gate 			int32_t *val;
10167c478bd9Sstevel@tonic-gate 			uint_t nelms;
10177c478bd9Sstevel@tonic-gate 
10187c478bd9Sstevel@tonic-gate 			if ((rv = nvpair_value_int32_array(npp, &val,
10197c478bd9Sstevel@tonic-gate 			    &nelms)) != 0)
10207c478bd9Sstevel@tonic-gate 				break;
10217c478bd9Sstevel@tonic-gate 
10227c478bd9Sstevel@tonic-gate 			(void) ndi_prop_update_int_array(DDI_DEV_T_NONE,
10237c478bd9Sstevel@tonic-gate 			    cdip, np, val, nelms);
10247c478bd9Sstevel@tonic-gate 			break;
10257c478bd9Sstevel@tonic-gate 		}
10267c478bd9Sstevel@tonic-gate 
10277c478bd9Sstevel@tonic-gate 		case DATA_TYPE_STRING_ARRAY: {
10287c478bd9Sstevel@tonic-gate 			char **val;
10297c478bd9Sstevel@tonic-gate 			uint_t nelms;
10307c478bd9Sstevel@tonic-gate 
10317c478bd9Sstevel@tonic-gate 			if ((rv = nvpair_value_string_array(npp, &val,
10327c478bd9Sstevel@tonic-gate 			    &nelms)) != 0)
10337c478bd9Sstevel@tonic-gate 				break;
10347c478bd9Sstevel@tonic-gate 
10357c478bd9Sstevel@tonic-gate 			(void) ndi_prop_update_string_array(DDI_DEV_T_NONE,
10367c478bd9Sstevel@tonic-gate 			    cdip, np, val, nelms);
10377c478bd9Sstevel@tonic-gate 			break;
10387c478bd9Sstevel@tonic-gate 		}
10397c478bd9Sstevel@tonic-gate 
10407c478bd9Sstevel@tonic-gate 		/*
10417c478bd9Sstevel@tonic-gate 		 * unsupported property data type
10427c478bd9Sstevel@tonic-gate 		 */
10437c478bd9Sstevel@tonic-gate 		default:
10447c478bd9Sstevel@tonic-gate 			rv = EINVAL;
10457c478bd9Sstevel@tonic-gate 		}
10467c478bd9Sstevel@tonic-gate 	}
10477c478bd9Sstevel@tonic-gate 
10487c478bd9Sstevel@tonic-gate 	/*
10497c478bd9Sstevel@tonic-gate 	 * something above failed
10507c478bd9Sstevel@tonic-gate 	 * destroy the partially child device and abort the request
10517c478bd9Sstevel@tonic-gate 	 */
10527c478bd9Sstevel@tonic-gate 	if (rv != 0) {
10537c478bd9Sstevel@tonic-gate 		(void) ndi_devi_free(cdip);
10547c478bd9Sstevel@tonic-gate 		return (rv);
10557c478bd9Sstevel@tonic-gate 	}
10567c478bd9Sstevel@tonic-gate 
10577c478bd9Sstevel@tonic-gate 	*rdip = cdip;
10587c478bd9Sstevel@tonic-gate 	return (0);
10597c478bd9Sstevel@tonic-gate }
10607c478bd9Sstevel@tonic-gate 
10617c478bd9Sstevel@tonic-gate /*
10627c478bd9Sstevel@tonic-gate  * return current soft bus state of bus nexus "dip"
10637c478bd9Sstevel@tonic-gate  */
10647c478bd9Sstevel@tonic-gate int
10657c478bd9Sstevel@tonic-gate ndi_get_bus_state(dev_info_t *dip, uint_t *rstate)
10667c478bd9Sstevel@tonic-gate {
10677c478bd9Sstevel@tonic-gate 	if (dip == NULL || rstate == NULL)
10687c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
10697c478bd9Sstevel@tonic-gate 
10707c478bd9Sstevel@tonic-gate 	if (DEVI(dip)->devi_ops->devo_bus_ops == NULL)
10717c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
10727c478bd9Sstevel@tonic-gate 
10737c478bd9Sstevel@tonic-gate 	mutex_enter(&(DEVI(dip)->devi_lock));
10747c478bd9Sstevel@tonic-gate 	if (DEVI_IS_BUS_QUIESCED(dip))
10757c478bd9Sstevel@tonic-gate 		*rstate = BUS_QUIESCED;
10767c478bd9Sstevel@tonic-gate 	else if (DEVI_IS_BUS_DOWN(dip))
10777c478bd9Sstevel@tonic-gate 		*rstate = BUS_SHUTDOWN;
10787c478bd9Sstevel@tonic-gate 	else
10797c478bd9Sstevel@tonic-gate 		*rstate = BUS_ACTIVE;
10807c478bd9Sstevel@tonic-gate 	mutex_exit(&(DEVI(dip)->devi_lock));
10817c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
10827c478bd9Sstevel@tonic-gate }
10837c478bd9Sstevel@tonic-gate 
10847c478bd9Sstevel@tonic-gate /*
10857c478bd9Sstevel@tonic-gate  * Set the soft state of bus nexus "dip"
10867c478bd9Sstevel@tonic-gate  */
10877c478bd9Sstevel@tonic-gate int
10887c478bd9Sstevel@tonic-gate ndi_set_bus_state(dev_info_t *dip, uint_t state)
10897c478bd9Sstevel@tonic-gate {
10907c478bd9Sstevel@tonic-gate 	int rv = NDI_SUCCESS;
10917c478bd9Sstevel@tonic-gate 
10927c478bd9Sstevel@tonic-gate 	if (dip == NULL)
10937c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
10947c478bd9Sstevel@tonic-gate 
10957c478bd9Sstevel@tonic-gate 	mutex_enter(&(DEVI(dip)->devi_lock));
10967c478bd9Sstevel@tonic-gate 
10977c478bd9Sstevel@tonic-gate 	switch (state) {
10987c478bd9Sstevel@tonic-gate 	case BUS_QUIESCED:
10997c478bd9Sstevel@tonic-gate 		DEVI_SET_BUS_QUIESCE(dip);
11007c478bd9Sstevel@tonic-gate 		break;
11017c478bd9Sstevel@tonic-gate 
11027c478bd9Sstevel@tonic-gate 	case BUS_ACTIVE:
11037c478bd9Sstevel@tonic-gate 		DEVI_SET_BUS_ACTIVE(dip);
11047c478bd9Sstevel@tonic-gate 		DEVI_SET_BUS_UP(dip);
11057c478bd9Sstevel@tonic-gate 		break;
11067c478bd9Sstevel@tonic-gate 
11077c478bd9Sstevel@tonic-gate 	case BUS_SHUTDOWN:
11087c478bd9Sstevel@tonic-gate 		DEVI_SET_BUS_DOWN(dip);
11097c478bd9Sstevel@tonic-gate 		break;
11107c478bd9Sstevel@tonic-gate 
11117c478bd9Sstevel@tonic-gate 	default:
11127c478bd9Sstevel@tonic-gate 		rv = NDI_FAILURE;
11137c478bd9Sstevel@tonic-gate 	}
11147c478bd9Sstevel@tonic-gate 
11157c478bd9Sstevel@tonic-gate 	mutex_exit(&(DEVI(dip)->devi_lock));
11167c478bd9Sstevel@tonic-gate 	return (rv);
11177c478bd9Sstevel@tonic-gate }
11187c478bd9Sstevel@tonic-gate 
11197c478bd9Sstevel@tonic-gate /*
11207c478bd9Sstevel@tonic-gate  * These dummy functions are obsolete and may be removed.
11217c478bd9Sstevel@tonic-gate  * Retained for existing driver compatibility only.
11227c478bd9Sstevel@tonic-gate  * Drivers should be fixed not to use these functions.
11237c478bd9Sstevel@tonic-gate  * Don't write new code using these obsolete interfaces.
11247c478bd9Sstevel@tonic-gate  */
11257c478bd9Sstevel@tonic-gate /*ARGSUSED*/
11267c478bd9Sstevel@tonic-gate void
11277c478bd9Sstevel@tonic-gate i_ndi_block_device_tree_changes(uint_t *lkcnt)	/* obsolete */
11287c478bd9Sstevel@tonic-gate {
11297c478bd9Sstevel@tonic-gate 	/* obsolete dummy function */
11307c478bd9Sstevel@tonic-gate }
11317c478bd9Sstevel@tonic-gate 
11327c478bd9Sstevel@tonic-gate /*ARGSUSED*/
11337c478bd9Sstevel@tonic-gate void
11347c478bd9Sstevel@tonic-gate i_ndi_allow_device_tree_changes(uint_t lkcnt)	/* obsolete */
11357c478bd9Sstevel@tonic-gate {
11367c478bd9Sstevel@tonic-gate 	/* obsolete dummy function */
11377c478bd9Sstevel@tonic-gate }
11387c478bd9Sstevel@tonic-gate 
11397c478bd9Sstevel@tonic-gate /*
11407c478bd9Sstevel@tonic-gate  * Single thread entry into per-driver list
11417c478bd9Sstevel@tonic-gate  */
11427c478bd9Sstevel@tonic-gate /*ARGSUSED*/
11437c478bd9Sstevel@tonic-gate void
11447c478bd9Sstevel@tonic-gate e_ddi_enter_driver_list(struct devnames *dnp, int *listcnt)	/* obsolete */
11457c478bd9Sstevel@tonic-gate {
11467c478bd9Sstevel@tonic-gate 	/* obsolete dummy function */
11477c478bd9Sstevel@tonic-gate }
11487c478bd9Sstevel@tonic-gate 
11497c478bd9Sstevel@tonic-gate /*
11507c478bd9Sstevel@tonic-gate  * release the per-driver list
11517c478bd9Sstevel@tonic-gate  */
11527c478bd9Sstevel@tonic-gate /*ARGSUSED*/
11537c478bd9Sstevel@tonic-gate void
11547c478bd9Sstevel@tonic-gate e_ddi_exit_driver_list(struct devnames *dnp, int listcnt)	/* obsolete */
11557c478bd9Sstevel@tonic-gate {
11567c478bd9Sstevel@tonic-gate 	/* obsolete dummy function */
11577c478bd9Sstevel@tonic-gate }
11587c478bd9Sstevel@tonic-gate 
11597c478bd9Sstevel@tonic-gate /*
11607c478bd9Sstevel@tonic-gate  * Attempt to enter driver list
11617c478bd9Sstevel@tonic-gate  */
11627c478bd9Sstevel@tonic-gate /*ARGSUSED*/
11637c478bd9Sstevel@tonic-gate int
11647c478bd9Sstevel@tonic-gate e_ddi_tryenter_driver_list(struct devnames *dnp, int *listcnt)	/* obsolete */
11657c478bd9Sstevel@tonic-gate {
11667c478bd9Sstevel@tonic-gate 	return (1);	/* obsolete dummy function */
11677c478bd9Sstevel@tonic-gate }
11687c478bd9Sstevel@tonic-gate 
11697c478bd9Sstevel@tonic-gate /*
11707c478bd9Sstevel@tonic-gate  * ndi event handling support functions:
11717c478bd9Sstevel@tonic-gate  * The NDI event support model is as follows:
11727c478bd9Sstevel@tonic-gate  *
11737c478bd9Sstevel@tonic-gate  * The nexus driver defines a set of events using some static structures (so
11747c478bd9Sstevel@tonic-gate  * these structures can be shared by all instances of the nexus driver).
11757c478bd9Sstevel@tonic-gate  * The nexus driver allocates an event handle and binds the event set
11767c478bd9Sstevel@tonic-gate  * to this handle. The nexus driver's event busop functions can just
11777c478bd9Sstevel@tonic-gate  * call the appropriate NDI event support function using this handle
11787c478bd9Sstevel@tonic-gate  * as the first argument.
11797c478bd9Sstevel@tonic-gate  *
11807c478bd9Sstevel@tonic-gate  * The reasoning for tying events to the device tree is that the entity
11817c478bd9Sstevel@tonic-gate  * generating the callback will typically be one of the device driver's
11827c478bd9Sstevel@tonic-gate  * ancestors in the tree.
11837c478bd9Sstevel@tonic-gate  */
11847c478bd9Sstevel@tonic-gate static int ndi_event_debug = 0;
11857c478bd9Sstevel@tonic-gate 
11867c478bd9Sstevel@tonic-gate #ifdef DEBUG
11877c478bd9Sstevel@tonic-gate #define	NDI_EVENT_DEBUG	ndi_event_debug
11887c478bd9Sstevel@tonic-gate #endif /* DEBUG */
11897c478bd9Sstevel@tonic-gate 
11907c478bd9Sstevel@tonic-gate /*
11917c478bd9Sstevel@tonic-gate  * allocate a new ndi event handle
11927c478bd9Sstevel@tonic-gate  */
11937c478bd9Sstevel@tonic-gate int
11947c478bd9Sstevel@tonic-gate ndi_event_alloc_hdl(dev_info_t *dip, ddi_iblock_cookie_t cookie,
11957c478bd9Sstevel@tonic-gate 	ndi_event_hdl_t *handle, uint_t flag)
11967c478bd9Sstevel@tonic-gate {
11977c478bd9Sstevel@tonic-gate 	struct ndi_event_hdl *ndi_event_hdl;
11987c478bd9Sstevel@tonic-gate 
11997c478bd9Sstevel@tonic-gate 	ndi_event_hdl = kmem_zalloc(sizeof (struct ndi_event_hdl),
12007c478bd9Sstevel@tonic-gate 		((flag & NDI_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP));
12017c478bd9Sstevel@tonic-gate 
12027c478bd9Sstevel@tonic-gate 	if (!ndi_event_hdl) {
12037c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
12047c478bd9Sstevel@tonic-gate 	}
12057c478bd9Sstevel@tonic-gate 
12067c478bd9Sstevel@tonic-gate 	ndi_event_hdl->ndi_evthdl_dip = dip;
12077c478bd9Sstevel@tonic-gate 	ndi_event_hdl->ndi_evthdl_iblock_cookie = cookie;
12087c478bd9Sstevel@tonic-gate 	mutex_init(&ndi_event_hdl->ndi_evthdl_mutex, NULL,
12097c478bd9Sstevel@tonic-gate 	    MUTEX_DRIVER, (void *)cookie);
12107c478bd9Sstevel@tonic-gate 
12117c478bd9Sstevel@tonic-gate 	mutex_init(&ndi_event_hdl->ndi_evthdl_cb_mutex, NULL,
12127c478bd9Sstevel@tonic-gate 	    MUTEX_DRIVER, (void *)cookie);
12137c478bd9Sstevel@tonic-gate 
12147c478bd9Sstevel@tonic-gate 	*handle = (ndi_event_hdl_t)ndi_event_hdl;
12157c478bd9Sstevel@tonic-gate 
12167c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
12177c478bd9Sstevel@tonic-gate }
12187c478bd9Sstevel@tonic-gate 
12197c478bd9Sstevel@tonic-gate /*
12207c478bd9Sstevel@tonic-gate  * free the ndi event handle
12217c478bd9Sstevel@tonic-gate  */
12227c478bd9Sstevel@tonic-gate int
12237c478bd9Sstevel@tonic-gate ndi_event_free_hdl(ndi_event_hdl_t handle)
12247c478bd9Sstevel@tonic-gate {
12257c478bd9Sstevel@tonic-gate 	struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle;
12267c478bd9Sstevel@tonic-gate 	ndi_event_cookie_t *cookie;
12277c478bd9Sstevel@tonic-gate 	ndi_event_cookie_t *free;
12287c478bd9Sstevel@tonic-gate 
12297c478bd9Sstevel@tonic-gate 	ASSERT(handle);
12307c478bd9Sstevel@tonic-gate 
12317c478bd9Sstevel@tonic-gate 	mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex);
12327c478bd9Sstevel@tonic-gate 	mutex_enter(&ndi_event_hdl->ndi_evthdl_cb_mutex);
12337c478bd9Sstevel@tonic-gate 
12347c478bd9Sstevel@tonic-gate 	cookie = ndi_event_hdl->ndi_evthdl_cookie_list;
12357c478bd9Sstevel@tonic-gate 
12367c478bd9Sstevel@tonic-gate 	/* deallocate all defined cookies */
12377c478bd9Sstevel@tonic-gate 	while (cookie != NULL) {
12387c478bd9Sstevel@tonic-gate 		ASSERT(cookie->callback_list == NULL);
12397c478bd9Sstevel@tonic-gate 		free = cookie;
12407c478bd9Sstevel@tonic-gate 		cookie = cookie->next_cookie;
12417c478bd9Sstevel@tonic-gate 
12427c478bd9Sstevel@tonic-gate 		kmem_free(free, sizeof (ndi_event_cookie_t));
12437c478bd9Sstevel@tonic-gate 	}
12447c478bd9Sstevel@tonic-gate 
12457c478bd9Sstevel@tonic-gate 
12467c478bd9Sstevel@tonic-gate 	mutex_exit(&ndi_event_hdl->ndi_evthdl_cb_mutex);
12477c478bd9Sstevel@tonic-gate 	mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
12487c478bd9Sstevel@tonic-gate 
12497c478bd9Sstevel@tonic-gate 	/* destroy mutexes */
12507c478bd9Sstevel@tonic-gate 	mutex_destroy(&ndi_event_hdl->ndi_evthdl_mutex);
12517c478bd9Sstevel@tonic-gate 	mutex_destroy(&ndi_event_hdl->ndi_evthdl_cb_mutex);
12527c478bd9Sstevel@tonic-gate 
12537c478bd9Sstevel@tonic-gate 	/* free event handle */
12547c478bd9Sstevel@tonic-gate 	kmem_free(ndi_event_hdl, sizeof (struct ndi_event_hdl));
12557c478bd9Sstevel@tonic-gate 
12567c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
12577c478bd9Sstevel@tonic-gate }
12587c478bd9Sstevel@tonic-gate 
12597c478bd9Sstevel@tonic-gate 
12607c478bd9Sstevel@tonic-gate /*
12617c478bd9Sstevel@tonic-gate  * ndi_event_bind_set() adds a set of events to the NDI event
12627c478bd9Sstevel@tonic-gate  * handle.
12637c478bd9Sstevel@tonic-gate  *
12647c478bd9Sstevel@tonic-gate  * Events generated by high level interrupts should not
12657c478bd9Sstevel@tonic-gate  * be mixed in the same event set with events generated by
12667c478bd9Sstevel@tonic-gate  * normal interrupts or kernel events.
12677c478bd9Sstevel@tonic-gate  *
12687c478bd9Sstevel@tonic-gate  * This function can be called multiple times to bind
12697c478bd9Sstevel@tonic-gate  * additional sets to the event handle.
12707c478bd9Sstevel@tonic-gate  * However, events generated by high level interrupts cannot
12717c478bd9Sstevel@tonic-gate  * be bound to a handle that already has bound events generated
12727c478bd9Sstevel@tonic-gate  * by normal interrupts or from kernel context and vice versa.
12737c478bd9Sstevel@tonic-gate  */
12747c478bd9Sstevel@tonic-gate int
12757c478bd9Sstevel@tonic-gate ndi_event_bind_set(ndi_event_hdl_t handle,
12767c478bd9Sstevel@tonic-gate 	ndi_event_set_t		*ndi_events,
12777c478bd9Sstevel@tonic-gate 	uint_t			flag)
12787c478bd9Sstevel@tonic-gate {
12797c478bd9Sstevel@tonic-gate 	struct ndi_event_hdl	*ndi_event_hdl;
12807c478bd9Sstevel@tonic-gate 	ndi_event_cookie_t	*next, *prev, *new_cookie;
12817c478bd9Sstevel@tonic-gate 	uint_t			i, len;
12827c478bd9Sstevel@tonic-gate 	uint_t			dup = 0;
12837c478bd9Sstevel@tonic-gate 	uint_t			high_plevels, other_plevels;
12847c478bd9Sstevel@tonic-gate 	ndi_event_definition_t *ndi_event_defs;
12857c478bd9Sstevel@tonic-gate 
12867c478bd9Sstevel@tonic-gate 	int km_flag = ((flag & NDI_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP);
12877c478bd9Sstevel@tonic-gate 
12887c478bd9Sstevel@tonic-gate 	ASSERT(handle);
12897c478bd9Sstevel@tonic-gate 	ASSERT(ndi_events);
12907c478bd9Sstevel@tonic-gate 
12917c478bd9Sstevel@tonic-gate 	/*
12927c478bd9Sstevel@tonic-gate 	 * binding must be performed during attach/detach
12937c478bd9Sstevel@tonic-gate 	 */
12947c478bd9Sstevel@tonic-gate 	if (!DEVI_IS_ATTACHING(handle->ndi_evthdl_dip) &&
12957c478bd9Sstevel@tonic-gate 	    !DEVI_IS_DETACHING(handle->ndi_evthdl_dip)) {
12967c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "ndi_event_bind_set must be called within "
12977c478bd9Sstevel@tonic-gate 		    "attach or detach");
12987c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
12997c478bd9Sstevel@tonic-gate 	}
13007c478bd9Sstevel@tonic-gate 
13017c478bd9Sstevel@tonic-gate 	/*
13027c478bd9Sstevel@tonic-gate 	 * if it is not the correct version or the event set is
13037c478bd9Sstevel@tonic-gate 	 * empty, bail out
13047c478bd9Sstevel@tonic-gate 	 */
13057c478bd9Sstevel@tonic-gate 	if (ndi_events->ndi_events_version != NDI_EVENTS_REV1)
13067c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
13077c478bd9Sstevel@tonic-gate 
13087c478bd9Sstevel@tonic-gate 	ndi_event_hdl	= (struct ndi_event_hdl *)handle;
13097c478bd9Sstevel@tonic-gate 	ndi_event_defs = ndi_events->ndi_event_defs;
13107c478bd9Sstevel@tonic-gate 	high_plevels	= other_plevels = 0;
13117c478bd9Sstevel@tonic-gate 
13127c478bd9Sstevel@tonic-gate 	mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex);
13137c478bd9Sstevel@tonic-gate 
13147c478bd9Sstevel@tonic-gate 	/* check for mixing events at high level with the other types */
13157c478bd9Sstevel@tonic-gate 	for (i = 0; i < ndi_events->ndi_n_events; i++) {
13167c478bd9Sstevel@tonic-gate 		if (ndi_event_defs[i].ndi_event_plevel == EPL_HIGHLEVEL) {
13177c478bd9Sstevel@tonic-gate 			high_plevels++;
13187c478bd9Sstevel@tonic-gate 		} else {
13197c478bd9Sstevel@tonic-gate 			other_plevels++;
13207c478bd9Sstevel@tonic-gate 		}
13217c478bd9Sstevel@tonic-gate 	}
13227c478bd9Sstevel@tonic-gate 
13237c478bd9Sstevel@tonic-gate 	/*
13247c478bd9Sstevel@tonic-gate 	 * bail out if high level events are mixed with other types in this
13257c478bd9Sstevel@tonic-gate 	 * event set or the set is incompatible with the set in the handle
13267c478bd9Sstevel@tonic-gate 	 */
13277c478bd9Sstevel@tonic-gate 	if ((high_plevels && other_plevels) ||
13287c478bd9Sstevel@tonic-gate 	    (other_plevels && ndi_event_hdl->ndi_evthdl_high_plevels) ||
13297c478bd9Sstevel@tonic-gate 	    (high_plevels && ndi_event_hdl->ndi_evthdl_other_plevels)) {
13307c478bd9Sstevel@tonic-gate 		mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
13317c478bd9Sstevel@tonic-gate 
13327c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
13337c478bd9Sstevel@tonic-gate 	}
13347c478bd9Sstevel@tonic-gate 
13357c478bd9Sstevel@tonic-gate 	/*
13367c478bd9Sstevel@tonic-gate 	 * check for duplicate events in both the existing handle
13377c478bd9Sstevel@tonic-gate 	 * and the event set, add events if not duplicates
13387c478bd9Sstevel@tonic-gate 	 */
13397c478bd9Sstevel@tonic-gate 	next = ndi_event_hdl->ndi_evthdl_cookie_list;
13407c478bd9Sstevel@tonic-gate 	for (i = 0; i < ndi_events->ndi_n_events; i++) {
13417c478bd9Sstevel@tonic-gate 		while (next != NULL) {
13427c478bd9Sstevel@tonic-gate 			len = strlen(NDI_EVENT_NAME(next)) + 1;
13437c478bd9Sstevel@tonic-gate 			if (strncmp(NDI_EVENT_NAME(next),
13447c478bd9Sstevel@tonic-gate 			    ndi_event_defs[i].ndi_event_name, len) == 0) {
13457c478bd9Sstevel@tonic-gate 				dup = 1;
13467c478bd9Sstevel@tonic-gate 				break;
13477c478bd9Sstevel@tonic-gate 			}
13487c478bd9Sstevel@tonic-gate 
13497c478bd9Sstevel@tonic-gate 			prev = next;
13507c478bd9Sstevel@tonic-gate 			next = next->next_cookie;
13517c478bd9Sstevel@tonic-gate 		}
13527c478bd9Sstevel@tonic-gate 
13537c478bd9Sstevel@tonic-gate 		if (dup == 0) {
13547c478bd9Sstevel@tonic-gate 			new_cookie = kmem_zalloc(sizeof (ndi_event_cookie_t),
13557c478bd9Sstevel@tonic-gate 			    km_flag);
13567c478bd9Sstevel@tonic-gate 
13577c478bd9Sstevel@tonic-gate 			if (!new_cookie)
13587c478bd9Sstevel@tonic-gate 				return (NDI_FAILURE);
13597c478bd9Sstevel@tonic-gate 
13607c478bd9Sstevel@tonic-gate 			if (ndi_event_hdl->ndi_evthdl_n_events == 0) {
13617c478bd9Sstevel@tonic-gate 				ndi_event_hdl->ndi_evthdl_cookie_list =
13627c478bd9Sstevel@tonic-gate 				    new_cookie;
13637c478bd9Sstevel@tonic-gate 			} else {
13647c478bd9Sstevel@tonic-gate 				prev->next_cookie = new_cookie;
13657c478bd9Sstevel@tonic-gate 			}
13667c478bd9Sstevel@tonic-gate 
13677c478bd9Sstevel@tonic-gate 			ndi_event_hdl->ndi_evthdl_n_events++;
13687c478bd9Sstevel@tonic-gate 
13697c478bd9Sstevel@tonic-gate 			/*
13707c478bd9Sstevel@tonic-gate 			 * set up new cookie
13717c478bd9Sstevel@tonic-gate 			 */
13727c478bd9Sstevel@tonic-gate 			new_cookie->definition = &ndi_event_defs[i];
13737c478bd9Sstevel@tonic-gate 			new_cookie->ddip = ndi_event_hdl->ndi_evthdl_dip;
13747c478bd9Sstevel@tonic-gate 
13757c478bd9Sstevel@tonic-gate 		} else {
13767c478bd9Sstevel@tonic-gate 			/*
13777c478bd9Sstevel@tonic-gate 			 * event not added, must correct plevel numbers
13787c478bd9Sstevel@tonic-gate 			 */
13797c478bd9Sstevel@tonic-gate 			if (ndi_event_defs[i].ndi_event_plevel ==
13807c478bd9Sstevel@tonic-gate 			    EPL_HIGHLEVEL) {
13817c478bd9Sstevel@tonic-gate 				high_plevels--;
13827c478bd9Sstevel@tonic-gate 			} else {
13837c478bd9Sstevel@tonic-gate 				other_plevels--;
13847c478bd9Sstevel@tonic-gate 			}
13857c478bd9Sstevel@tonic-gate 		}
13867c478bd9Sstevel@tonic-gate 
13877c478bd9Sstevel@tonic-gate 		dup = 0;
13887c478bd9Sstevel@tonic-gate 		next = ndi_event_hdl->ndi_evthdl_cookie_list;
13897c478bd9Sstevel@tonic-gate 		prev = NULL;
13907c478bd9Sstevel@tonic-gate 
13917c478bd9Sstevel@tonic-gate 	}
13927c478bd9Sstevel@tonic-gate 
13937c478bd9Sstevel@tonic-gate 	ndi_event_hdl->ndi_evthdl_high_plevels	+= high_plevels;
13947c478bd9Sstevel@tonic-gate 	ndi_event_hdl->ndi_evthdl_other_plevels += other_plevels;
13957c478bd9Sstevel@tonic-gate 
13967c478bd9Sstevel@tonic-gate 	ASSERT((ndi_event_hdl->ndi_evthdl_high_plevels == 0) ||
13977c478bd9Sstevel@tonic-gate 	    (ndi_event_hdl->ndi_evthdl_other_plevels == 0));
13987c478bd9Sstevel@tonic-gate 
13997c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG
14007c478bd9Sstevel@tonic-gate 	if (ndi_event_debug) {
14017c478bd9Sstevel@tonic-gate 		ndi_event_dump_hdl(ndi_event_hdl, "ndi_event_bind_set");
14027c478bd9Sstevel@tonic-gate 	}
14037c478bd9Sstevel@tonic-gate #endif /* NDI_EVENT_DEBUG */
14047c478bd9Sstevel@tonic-gate 
14057c478bd9Sstevel@tonic-gate 	mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
14067c478bd9Sstevel@tonic-gate 
14077c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
14087c478bd9Sstevel@tonic-gate }
14097c478bd9Sstevel@tonic-gate 
14107c478bd9Sstevel@tonic-gate /*
14117c478bd9Sstevel@tonic-gate  * ndi_event_unbind_set() unbinds a set of events, previously
14127c478bd9Sstevel@tonic-gate  * bound using ndi_event_bind_set(), from the NDI event
14137c478bd9Sstevel@tonic-gate  * handle.
14147c478bd9Sstevel@tonic-gate  *
14157c478bd9Sstevel@tonic-gate  * This routine will unbind all events in the event set.  If an event,
14167c478bd9Sstevel@tonic-gate  * specified in the event set, is not found in the handle, this
14177c478bd9Sstevel@tonic-gate  * routine will proceed onto the next member of the set as if the event
14187c478bd9Sstevel@tonic-gate  * was never specified.
14197c478bd9Sstevel@tonic-gate  *
14207c478bd9Sstevel@tonic-gate  * The event set may be a subset of the set of events that
14217c478bd9Sstevel@tonic-gate  * was previously bound to the handle. For example, events
14227c478bd9Sstevel@tonic-gate  * can be individually unbound.
14237c478bd9Sstevel@tonic-gate  *
14247c478bd9Sstevel@tonic-gate  * An event cannot be unbound if callbacks are still
14257c478bd9Sstevel@tonic-gate  * registered against the event.
14267c478bd9Sstevel@tonic-gate  */
14277c478bd9Sstevel@tonic-gate /*ARGSUSED*/
14287c478bd9Sstevel@tonic-gate int
14297c478bd9Sstevel@tonic-gate ndi_event_unbind_set(ndi_event_hdl_t   handle, ndi_event_set_t	*ndi_events,
14307c478bd9Sstevel@tonic-gate     uint_t flag)
14317c478bd9Sstevel@tonic-gate {
14327c478bd9Sstevel@tonic-gate 	ndi_event_definition_t	*ndi_event_defs;
14337c478bd9Sstevel@tonic-gate 	int			len;
14347c478bd9Sstevel@tonic-gate 	uint_t			i;
14357c478bd9Sstevel@tonic-gate 	int			rval;
14367c478bd9Sstevel@tonic-gate 	ndi_event_cookie_t *cookie_list;
14377c478bd9Sstevel@tonic-gate 	ndi_event_cookie_t *prev = NULL;
14387c478bd9Sstevel@tonic-gate 
14397c478bd9Sstevel@tonic-gate 	ASSERT(ndi_events);
14407c478bd9Sstevel@tonic-gate 	ASSERT(handle);
14417c478bd9Sstevel@tonic-gate 
14427c478bd9Sstevel@tonic-gate 	/*
14437c478bd9Sstevel@tonic-gate 	 * binding must be performed during attach/detac
14447c478bd9Sstevel@tonic-gate 	 */
14457c478bd9Sstevel@tonic-gate 	if (!DEVI_IS_ATTACHING(handle->ndi_evthdl_dip) &&
14467c478bd9Sstevel@tonic-gate 	    !DEVI_IS_DETACHING(handle->ndi_evthdl_dip)) {
14477c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "ndi_event_bind_set must be called within "
14487c478bd9Sstevel@tonic-gate 		    "attach or detach");
14497c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
14507c478bd9Sstevel@tonic-gate 	}
14517c478bd9Sstevel@tonic-gate 
14527c478bd9Sstevel@tonic-gate 	/* bail out if ndi_event_set is outdated */
14537c478bd9Sstevel@tonic-gate 	if (ndi_events->ndi_events_version != NDI_EVENTS_REV1) {
14547c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
14557c478bd9Sstevel@tonic-gate 	}
14567c478bd9Sstevel@tonic-gate 
14577c478bd9Sstevel@tonic-gate 	ASSERT(ndi_events->ndi_event_defs);
14587c478bd9Sstevel@tonic-gate 
14597c478bd9Sstevel@tonic-gate 	ndi_event_defs = ndi_events->ndi_event_defs;
14607c478bd9Sstevel@tonic-gate 
14617c478bd9Sstevel@tonic-gate 	mutex_enter(&handle->ndi_evthdl_mutex);
14627c478bd9Sstevel@tonic-gate 	mutex_enter(&handle->ndi_evthdl_cb_mutex);
14637c478bd9Sstevel@tonic-gate 
14647c478bd9Sstevel@tonic-gate 	/*
14657c478bd9Sstevel@tonic-gate 	 * Verify that all events in the event set are eligible
14667c478bd9Sstevel@tonic-gate 	 * for unbinding(ie. there are no outstanding callbacks).
14677c478bd9Sstevel@tonic-gate 	 * If any one of the events are ineligible, fail entire
14687c478bd9Sstevel@tonic-gate 	 * operation.
14697c478bd9Sstevel@tonic-gate 	 */
14707c478bd9Sstevel@tonic-gate 
14717c478bd9Sstevel@tonic-gate 	for (i = 0; i < ndi_events->ndi_n_events; i++) {
14727c478bd9Sstevel@tonic-gate 		cookie_list = handle->ndi_evthdl_cookie_list;
14737c478bd9Sstevel@tonic-gate 		while (cookie_list != NULL) {
14747c478bd9Sstevel@tonic-gate 			len = strlen(NDI_EVENT_NAME(cookie_list)) + 1;
14757c478bd9Sstevel@tonic-gate 			if (strncmp(NDI_EVENT_NAME(cookie_list),
14767c478bd9Sstevel@tonic-gate 			    ndi_event_defs[i].ndi_event_name, len) == 0) {
14777c478bd9Sstevel@tonic-gate 
14787c478bd9Sstevel@tonic-gate 			    ASSERT(cookie_list->callback_list == NULL);
14797c478bd9Sstevel@tonic-gate 			    if (cookie_list->callback_list) {
14807c478bd9Sstevel@tonic-gate 				    rval = NDI_FAILURE;
14817c478bd9Sstevel@tonic-gate 				    goto done;
14827c478bd9Sstevel@tonic-gate 			    }
14837c478bd9Sstevel@tonic-gate 			    break;
14847c478bd9Sstevel@tonic-gate 			} else {
14857c478bd9Sstevel@tonic-gate 				cookie_list = cookie_list->next_cookie;
14867c478bd9Sstevel@tonic-gate 			}
14877c478bd9Sstevel@tonic-gate 		}
14887c478bd9Sstevel@tonic-gate 	}
14897c478bd9Sstevel@tonic-gate 
14907c478bd9Sstevel@tonic-gate 	/*
14917c478bd9Sstevel@tonic-gate 	 * remove all events found within the handle
14927c478bd9Sstevel@tonic-gate 	 * If an event is not found, this function will proceed as if the event
14937c478bd9Sstevel@tonic-gate 	 * was never specified.
14947c478bd9Sstevel@tonic-gate 	 */
14957c478bd9Sstevel@tonic-gate 
14967c478bd9Sstevel@tonic-gate 	for (i = 0; i < ndi_events->ndi_n_events; i++) {
14977c478bd9Sstevel@tonic-gate 		cookie_list = handle->ndi_evthdl_cookie_list;
14987c478bd9Sstevel@tonic-gate 		prev = NULL;
14997c478bd9Sstevel@tonic-gate 		while (cookie_list != NULL) {
15007c478bd9Sstevel@tonic-gate 			len = strlen(NDI_EVENT_NAME(cookie_list)) + 1;
15017c478bd9Sstevel@tonic-gate 			if (strncmp(NDI_EVENT_NAME(cookie_list),
15027c478bd9Sstevel@tonic-gate 			    ndi_event_defs[i].ndi_event_name, len) == 0) {
15037c478bd9Sstevel@tonic-gate 
15047c478bd9Sstevel@tonic-gate 				/*
15057c478bd9Sstevel@tonic-gate 				 * can not unbind an event definition with
15067c478bd9Sstevel@tonic-gate 				 * outstanding callbacks
15077c478bd9Sstevel@tonic-gate 				 */
15087c478bd9Sstevel@tonic-gate 				if (cookie_list->callback_list) {
15097c478bd9Sstevel@tonic-gate 					rval = NDI_FAILURE;
15107c478bd9Sstevel@tonic-gate 					goto done;
15117c478bd9Sstevel@tonic-gate 				}
15127c478bd9Sstevel@tonic-gate 
15137c478bd9Sstevel@tonic-gate 				/* remove this cookie from the list */
15147c478bd9Sstevel@tonic-gate 				if (prev != NULL) {
15157c478bd9Sstevel@tonic-gate 					prev->next_cookie =
15167c478bd9Sstevel@tonic-gate 					    cookie_list->next_cookie;
15177c478bd9Sstevel@tonic-gate 				} else {
15187c478bd9Sstevel@tonic-gate 					handle->ndi_evthdl_cookie_list =
15197c478bd9Sstevel@tonic-gate 					    cookie_list->next_cookie;
15207c478bd9Sstevel@tonic-gate 				}
15217c478bd9Sstevel@tonic-gate 
15227c478bd9Sstevel@tonic-gate 				/* adjust plevel counts */
15237c478bd9Sstevel@tonic-gate 				if (NDI_EVENT_PLEVEL(cookie_list) ==
15247c478bd9Sstevel@tonic-gate 				    EPL_HIGHLEVEL) {
15257c478bd9Sstevel@tonic-gate 					handle->ndi_evthdl_high_plevels--;
15267c478bd9Sstevel@tonic-gate 				} else {
15277c478bd9Sstevel@tonic-gate 					handle->ndi_evthdl_other_plevels--;
15287c478bd9Sstevel@tonic-gate 				}
15297c478bd9Sstevel@tonic-gate 
15307c478bd9Sstevel@tonic-gate 				/* adjust cookie count */
15317c478bd9Sstevel@tonic-gate 				handle->ndi_evthdl_n_events--;
15327c478bd9Sstevel@tonic-gate 
15337c478bd9Sstevel@tonic-gate 				/* free the cookie */
15347c478bd9Sstevel@tonic-gate 				kmem_free(cookie_list,
15357c478bd9Sstevel@tonic-gate 				    sizeof (ndi_event_cookie_t));
15367c478bd9Sstevel@tonic-gate 
15377c478bd9Sstevel@tonic-gate 				cookie_list = handle->ndi_evthdl_cookie_list;
15387c478bd9Sstevel@tonic-gate 				break;
15397c478bd9Sstevel@tonic-gate 
15407c478bd9Sstevel@tonic-gate 			} else {
15417c478bd9Sstevel@tonic-gate 				prev = cookie_list;
15427c478bd9Sstevel@tonic-gate 				cookie_list = cookie_list->next_cookie;
15437c478bd9Sstevel@tonic-gate 			}
15447c478bd9Sstevel@tonic-gate 
15457c478bd9Sstevel@tonic-gate 		}
15467c478bd9Sstevel@tonic-gate 
15477c478bd9Sstevel@tonic-gate 	}
15487c478bd9Sstevel@tonic-gate 
15497c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG
15507c478bd9Sstevel@tonic-gate 	if (ndi_event_debug) {
15517c478bd9Sstevel@tonic-gate 		ndi_event_dump_hdl(handle, "ndi_event_unbind_set");
15527c478bd9Sstevel@tonic-gate 	}
15537c478bd9Sstevel@tonic-gate #endif /* NDI_EVENT_DEBUG */
15547c478bd9Sstevel@tonic-gate 
15557c478bd9Sstevel@tonic-gate 	rval = NDI_SUCCESS;
15567c478bd9Sstevel@tonic-gate 
15577c478bd9Sstevel@tonic-gate done:
15587c478bd9Sstevel@tonic-gate 	mutex_exit(&handle->ndi_evthdl_cb_mutex);
15597c478bd9Sstevel@tonic-gate 	mutex_exit(&handle->ndi_evthdl_mutex);
15607c478bd9Sstevel@tonic-gate 
15617c478bd9Sstevel@tonic-gate 	return (rval);
15627c478bd9Sstevel@tonic-gate }
15637c478bd9Sstevel@tonic-gate 
15647c478bd9Sstevel@tonic-gate /*
15657c478bd9Sstevel@tonic-gate  * ndi_event_retrieve_cookie():
15667c478bd9Sstevel@tonic-gate  * Return an event cookie for eventname if this nexus driver
15677c478bd9Sstevel@tonic-gate  * has defined the named event. The event cookie returned
15687c478bd9Sstevel@tonic-gate  * by this function is used to register callback handlers
15697c478bd9Sstevel@tonic-gate  * for the event.
15707c478bd9Sstevel@tonic-gate  *
15717c478bd9Sstevel@tonic-gate  * ndi_event_retrieve_cookie() is intended to be used in the
15727c478bd9Sstevel@tonic-gate  * nexus driver's bus_get_eventcookie busop routine.
15737c478bd9Sstevel@tonic-gate  *
15747c478bd9Sstevel@tonic-gate  * If the event is not defined by this bus nexus driver, and flag
15757c478bd9Sstevel@tonic-gate  * does not include NDI_EVENT_NOPASS, then ndi_event_retrieve_cookie()
15767c478bd9Sstevel@tonic-gate  * will pass the request up the device tree hierarchy by calling
15777c478bd9Sstevel@tonic-gate  * ndi_busop_get_eventcookie(9N).
15787c478bd9Sstevel@tonic-gate  * If the event is not defined by this bus nexus driver, and flag
15797c478bd9Sstevel@tonic-gate  * does include NDI_EVENT_NOPASS, ndi_event_retrieve_cookie()
15807c478bd9Sstevel@tonic-gate  * will return NDI_FAILURE.  The caller may then determine what further
15817c478bd9Sstevel@tonic-gate  * action to take, such as using a different handle, passing the
15827c478bd9Sstevel@tonic-gate  * request up the device tree using ndi_busop_get_eventcookie(9N),
15837c478bd9Sstevel@tonic-gate  * or returning the failure to the caller, thus blocking the
15847c478bd9Sstevel@tonic-gate  * progress of the request up the tree.
15857c478bd9Sstevel@tonic-gate  */
15867c478bd9Sstevel@tonic-gate int
15877c478bd9Sstevel@tonic-gate ndi_event_retrieve_cookie(ndi_event_hdl_t handle,
15887c478bd9Sstevel@tonic-gate 	dev_info_t		*rdip,
15897c478bd9Sstevel@tonic-gate 	char			*eventname,
15907c478bd9Sstevel@tonic-gate 	ddi_eventcookie_t	*cookiep,
15917c478bd9Sstevel@tonic-gate 	uint_t			flag)
15927c478bd9Sstevel@tonic-gate {
15937c478bd9Sstevel@tonic-gate 	struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle;
15947c478bd9Sstevel@tonic-gate 	int		len;
15957c478bd9Sstevel@tonic-gate 	ndi_event_cookie_t *cookie_list;
15967c478bd9Sstevel@tonic-gate 
15977c478bd9Sstevel@tonic-gate 	mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex);
15987c478bd9Sstevel@tonic-gate 
15997c478bd9Sstevel@tonic-gate 	cookie_list = ndi_event_hdl->ndi_evthdl_cookie_list;
16007c478bd9Sstevel@tonic-gate 	/*
16017c478bd9Sstevel@tonic-gate 	 * search the cookie list for the event name and return
16027c478bd9Sstevel@tonic-gate 	 * cookie if found.
16037c478bd9Sstevel@tonic-gate 	 */
16047c478bd9Sstevel@tonic-gate 	while (cookie_list != NULL) {
16057c478bd9Sstevel@tonic-gate 
16067c478bd9Sstevel@tonic-gate 		len = strlen(NDI_EVENT_NAME(cookie_list)) + 1;
16077c478bd9Sstevel@tonic-gate 		if (strncmp(NDI_EVENT_NAME(cookie_list), eventname,
16087c478bd9Sstevel@tonic-gate 		    len) == 0) {
16097c478bd9Sstevel@tonic-gate 			*cookiep = (ddi_eventcookie_t)cookie_list;
16107c478bd9Sstevel@tonic-gate 
16117c478bd9Sstevel@tonic-gate 			mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
16127c478bd9Sstevel@tonic-gate 			return (NDI_SUCCESS);
16137c478bd9Sstevel@tonic-gate 		}
16147c478bd9Sstevel@tonic-gate 
16157c478bd9Sstevel@tonic-gate 		cookie_list = cookie_list->next_cookie;
16167c478bd9Sstevel@tonic-gate 	}
16177c478bd9Sstevel@tonic-gate 
16187c478bd9Sstevel@tonic-gate 	mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
16197c478bd9Sstevel@tonic-gate 	/*
16207c478bd9Sstevel@tonic-gate 	 * event was not found, pass up or return failure
16217c478bd9Sstevel@tonic-gate 	 */
16227c478bd9Sstevel@tonic-gate 	if ((flag & NDI_EVENT_NOPASS) == 0) {
16237c478bd9Sstevel@tonic-gate 		return (ndi_busop_get_eventcookie(
16247c478bd9Sstevel@tonic-gate 			ndi_event_hdl->ndi_evthdl_dip, rdip,
16257c478bd9Sstevel@tonic-gate 			eventname, cookiep));
16267c478bd9Sstevel@tonic-gate 	} else {
16277c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
16287c478bd9Sstevel@tonic-gate 	}
16297c478bd9Sstevel@tonic-gate }
16307c478bd9Sstevel@tonic-gate 
16317c478bd9Sstevel@tonic-gate /*
16327c478bd9Sstevel@tonic-gate  * check whether this nexus defined this event and look up attributes
16337c478bd9Sstevel@tonic-gate  */
16347c478bd9Sstevel@tonic-gate static int
16357c478bd9Sstevel@tonic-gate ndi_event_is_defined(ndi_event_hdl_t handle,
16367c478bd9Sstevel@tonic-gate 	ddi_eventcookie_t cookie, int *attributes)
16377c478bd9Sstevel@tonic-gate {
16387c478bd9Sstevel@tonic-gate 
16397c478bd9Sstevel@tonic-gate 	struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle;
16407c478bd9Sstevel@tonic-gate 	ndi_event_cookie_t *cookie_list;
16417c478bd9Sstevel@tonic-gate 
16427c478bd9Sstevel@tonic-gate 	ASSERT(mutex_owned(&handle->ndi_evthdl_mutex));
16437c478bd9Sstevel@tonic-gate 
16447c478bd9Sstevel@tonic-gate 	cookie_list = ndi_event_hdl->ndi_evthdl_cookie_list;
16457c478bd9Sstevel@tonic-gate 	while (cookie_list != NULL) {
16467c478bd9Sstevel@tonic-gate 		if (cookie_list == NDI_EVENT(cookie)) {
16477c478bd9Sstevel@tonic-gate 			if (attributes)
16487c478bd9Sstevel@tonic-gate 				*attributes =
16497c478bd9Sstevel@tonic-gate 				    NDI_EVENT_ATTRIBUTES(cookie_list);
16507c478bd9Sstevel@tonic-gate 
16517c478bd9Sstevel@tonic-gate 			return (NDI_SUCCESS);
16527c478bd9Sstevel@tonic-gate 		}
16537c478bd9Sstevel@tonic-gate 
16547c478bd9Sstevel@tonic-gate 		cookie_list = cookie_list->next_cookie;
16557c478bd9Sstevel@tonic-gate 	}
16567c478bd9Sstevel@tonic-gate 
16577c478bd9Sstevel@tonic-gate 	return (NDI_FAILURE);
16587c478bd9Sstevel@tonic-gate }
16597c478bd9Sstevel@tonic-gate 
16607c478bd9Sstevel@tonic-gate /*
16617c478bd9Sstevel@tonic-gate  * ndi_event_add_callback(): adds an event callback registration
16627c478bd9Sstevel@tonic-gate  * to the event cookie defining this event.
16637c478bd9Sstevel@tonic-gate  *
16647c478bd9Sstevel@tonic-gate  * Refer also to bus_add_eventcall(9n) and ndi_busop_add_eventcall(9n).
16657c478bd9Sstevel@tonic-gate  *
16667c478bd9Sstevel@tonic-gate  * ndi_event_add_callback(9n) is intended to be used in
16677c478bd9Sstevel@tonic-gate  * the nexus driver's bus_add_eventcall(9n) busop function.
16687c478bd9Sstevel@tonic-gate  *
16697c478bd9Sstevel@tonic-gate  * If the event is not defined by this bus nexus driver,
16707c478bd9Sstevel@tonic-gate  * ndi_event_add_callback() will return NDI_FAILURE.
16717c478bd9Sstevel@tonic-gate  */
16727c478bd9Sstevel@tonic-gate int
16737c478bd9Sstevel@tonic-gate ndi_event_add_callback(ndi_event_hdl_t handle, dev_info_t *child_dip,
16747c478bd9Sstevel@tonic-gate 	ddi_eventcookie_t cookie,
16757c478bd9Sstevel@tonic-gate 	void		(*event_callback)(dev_info_t *,
16767c478bd9Sstevel@tonic-gate 			ddi_eventcookie_t, void *arg, void *impldata),
16777c478bd9Sstevel@tonic-gate 	void		*arg,
16787c478bd9Sstevel@tonic-gate 	uint_t		flag,
16797c478bd9Sstevel@tonic-gate 	ddi_callback_id_t *cb_id)
16807c478bd9Sstevel@tonic-gate {
16817c478bd9Sstevel@tonic-gate 	struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle;
16827c478bd9Sstevel@tonic-gate 	int km_flag = ((flag & NDI_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP);
16837c478bd9Sstevel@tonic-gate 	ndi_event_callbacks_t *cb;
16847c478bd9Sstevel@tonic-gate 
16857c478bd9Sstevel@tonic-gate 	mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex);
16867c478bd9Sstevel@tonic-gate 
16877c478bd9Sstevel@tonic-gate 	/*
16887c478bd9Sstevel@tonic-gate 	 * if the event was not bound to this handle, return failure
16897c478bd9Sstevel@tonic-gate 	 */
16907c478bd9Sstevel@tonic-gate 	if (ndi_event_is_defined(handle, cookie, NULL) != NDI_SUCCESS) {
16917c478bd9Sstevel@tonic-gate 
16927c478bd9Sstevel@tonic-gate 		mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
16937c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
16947c478bd9Sstevel@tonic-gate 
16957c478bd9Sstevel@tonic-gate 	}
16967c478bd9Sstevel@tonic-gate 
16977c478bd9Sstevel@tonic-gate 	mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
16987c478bd9Sstevel@tonic-gate 
16997c478bd9Sstevel@tonic-gate 	/*
17007c478bd9Sstevel@tonic-gate 	 * allocate space for a callback structure
17017c478bd9Sstevel@tonic-gate 	 */
17027c478bd9Sstevel@tonic-gate 	cb = kmem_zalloc(sizeof (ndi_event_callbacks_t), km_flag);
17037c478bd9Sstevel@tonic-gate 	if (cb == NULL) {
17047c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
17057c478bd9Sstevel@tonic-gate 	}
17067c478bd9Sstevel@tonic-gate 
17077c478bd9Sstevel@tonic-gate 	mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex);
17087c478bd9Sstevel@tonic-gate 
17097c478bd9Sstevel@tonic-gate 	/* initialize callback structure */
17107c478bd9Sstevel@tonic-gate 	cb->ndi_evtcb_dip	= child_dip;
17117c478bd9Sstevel@tonic-gate 	cb->ndi_evtcb_callback	= event_callback;
17127c478bd9Sstevel@tonic-gate 	cb->ndi_evtcb_arg	= arg;
17137c478bd9Sstevel@tonic-gate 	cb->ndi_evtcb_cookie	= cookie;
17147c478bd9Sstevel@tonic-gate 	cb->devname 		= (char *)ddi_driver_name(child_dip);
17157c478bd9Sstevel@tonic-gate 
17167c478bd9Sstevel@tonic-gate 	*cb_id = (ddi_callback_id_t)cb;
17177c478bd9Sstevel@tonic-gate 	mutex_enter(&ndi_event_hdl->ndi_evthdl_cb_mutex);
17187c478bd9Sstevel@tonic-gate 
17197c478bd9Sstevel@tonic-gate 	/* add this callback structure to the list */
17207c478bd9Sstevel@tonic-gate 	if (NDI_EVENT(cookie)->callback_list) {
17217c478bd9Sstevel@tonic-gate 		cb->ndi_evtcb_next = NDI_EVENT(cookie)->callback_list;
17227c478bd9Sstevel@tonic-gate 		NDI_EVENT(cookie)->callback_list->ndi_evtcb_prev = cb;
17237c478bd9Sstevel@tonic-gate 		NDI_EVENT(cookie)->callback_list = cb;
17247c478bd9Sstevel@tonic-gate 	} else {
17257c478bd9Sstevel@tonic-gate 		NDI_EVENT(cookie)->callback_list = cb;
17267c478bd9Sstevel@tonic-gate 	}
17277c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG
17287c478bd9Sstevel@tonic-gate 	if (ndi_event_debug) {
17297c478bd9Sstevel@tonic-gate 		ndi_event_dump_hdl(ndi_event_hdl, "ndi_event_add_callback");
17307c478bd9Sstevel@tonic-gate 	}
17317c478bd9Sstevel@tonic-gate #endif /* NDI_EVENT_DEBUG */
17327c478bd9Sstevel@tonic-gate 
17337c478bd9Sstevel@tonic-gate 	mutex_exit(&ndi_event_hdl->ndi_evthdl_cb_mutex);
17347c478bd9Sstevel@tonic-gate 	mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
17357c478bd9Sstevel@tonic-gate 
17367c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
17377c478bd9Sstevel@tonic-gate }
17387c478bd9Sstevel@tonic-gate 
17397c478bd9Sstevel@tonic-gate /*
17407c478bd9Sstevel@tonic-gate  * ndi_event_remove_callback():
17417c478bd9Sstevel@tonic-gate  *
17427c478bd9Sstevel@tonic-gate  * ndi_event_remove_callback() removes a callback that was
17437c478bd9Sstevel@tonic-gate  * previously registered using ndi_event_add_callback(9N).
17447c478bd9Sstevel@tonic-gate  * Refer also to bus_remove_eventcall(9n) and
17457c478bd9Sstevel@tonic-gate  * ndi_busop_remove_eventcall(9n).
17467c478bd9Sstevel@tonic-gate  * ndi_event_remove_callback(9n) is intended to be used in
17477c478bd9Sstevel@tonic-gate  * the nexus driver's bus_remove_eventcall (9n) busop function.
17487c478bd9Sstevel@tonic-gate  * If the event is not defined by this bus nexus driver,
17497c478bd9Sstevel@tonic-gate  * ndi_event_remove_callback() will return NDI_FAILURE.
17507c478bd9Sstevel@tonic-gate  */
17517c478bd9Sstevel@tonic-gate static void do_ndi_event_remove_callback(struct ndi_event_hdl *ndi_event_hdl,
17527c478bd9Sstevel@tonic-gate 	ddi_callback_id_t cb_id);
17537c478bd9Sstevel@tonic-gate 
17547c478bd9Sstevel@tonic-gate int
17557c478bd9Sstevel@tonic-gate ndi_event_remove_callback(ndi_event_hdl_t handle, ddi_callback_id_t cb_id)
17567c478bd9Sstevel@tonic-gate {
17577c478bd9Sstevel@tonic-gate 	struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle;
17587c478bd9Sstevel@tonic-gate 
17597c478bd9Sstevel@tonic-gate 	ASSERT(cb_id);
17607c478bd9Sstevel@tonic-gate 
17617c478bd9Sstevel@tonic-gate 	mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex);
17627c478bd9Sstevel@tonic-gate 	mutex_enter(&ndi_event_hdl->ndi_evthdl_cb_mutex);
17637c478bd9Sstevel@tonic-gate 
17647c478bd9Sstevel@tonic-gate 	do_ndi_event_remove_callback(ndi_event_hdl, cb_id);
17657c478bd9Sstevel@tonic-gate 
17667c478bd9Sstevel@tonic-gate 	mutex_exit(&ndi_event_hdl->ndi_evthdl_cb_mutex);
17677c478bd9Sstevel@tonic-gate 	mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
17687c478bd9Sstevel@tonic-gate 
17697c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
17707c478bd9Sstevel@tonic-gate }
17717c478bd9Sstevel@tonic-gate 
17727c478bd9Sstevel@tonic-gate /*ARGSUSED*/
17737c478bd9Sstevel@tonic-gate static void
17747c478bd9Sstevel@tonic-gate do_ndi_event_remove_callback(struct ndi_event_hdl *ndi_event_hdl,
17757c478bd9Sstevel@tonic-gate     ddi_callback_id_t cb_id)
17767c478bd9Sstevel@tonic-gate {
17777c478bd9Sstevel@tonic-gate 	ndi_event_callbacks_t *cb = (ndi_event_callbacks_t *)cb_id;
17787c478bd9Sstevel@tonic-gate 	ASSERT(cb);
17797c478bd9Sstevel@tonic-gate 
17807c478bd9Sstevel@tonic-gate 	ASSERT(mutex_owned(&ndi_event_hdl->ndi_evthdl_mutex));
17817c478bd9Sstevel@tonic-gate 	ASSERT(mutex_owned(&ndi_event_hdl->ndi_evthdl_cb_mutex));
17827c478bd9Sstevel@tonic-gate 
17837c478bd9Sstevel@tonic-gate 	/* remove from callback linked list */
17847c478bd9Sstevel@tonic-gate 	if (cb->ndi_evtcb_prev) {
17857c478bd9Sstevel@tonic-gate 		cb->ndi_evtcb_prev->ndi_evtcb_next = cb->ndi_evtcb_next;
17867c478bd9Sstevel@tonic-gate 	}
17877c478bd9Sstevel@tonic-gate 
17887c478bd9Sstevel@tonic-gate 	if (cb->ndi_evtcb_next) {
17897c478bd9Sstevel@tonic-gate 		cb->ndi_evtcb_next->ndi_evtcb_prev = cb->ndi_evtcb_prev;
17907c478bd9Sstevel@tonic-gate 	}
17917c478bd9Sstevel@tonic-gate 
17927c478bd9Sstevel@tonic-gate 	if (NDI_EVENT(cb->ndi_evtcb_cookie)->callback_list == cb) {
17937c478bd9Sstevel@tonic-gate 		NDI_EVENT(cb->ndi_evtcb_cookie)->callback_list =
17947c478bd9Sstevel@tonic-gate 		    cb->ndi_evtcb_next;
17957c478bd9Sstevel@tonic-gate 	}
17967c478bd9Sstevel@tonic-gate 
17977c478bd9Sstevel@tonic-gate 	kmem_free(cb, sizeof (ndi_event_callbacks_t));
17987c478bd9Sstevel@tonic-gate }
17997c478bd9Sstevel@tonic-gate 
18007c478bd9Sstevel@tonic-gate /*
18017c478bd9Sstevel@tonic-gate  * ndi_event_run_callbacks() performs event callbacks for the event
18027c478bd9Sstevel@tonic-gate  * specified by cookie, if this is among those bound to the
18037c478bd9Sstevel@tonic-gate  * supplied handle.
18047c478bd9Sstevel@tonic-gate  * If the event is among those bound to the handle, none,
18057c478bd9Sstevel@tonic-gate  * some, or all of the handlers registered for the event
18067c478bd9Sstevel@tonic-gate  * will be called, according to the delivery attributes of
18077c478bd9Sstevel@tonic-gate  * the event.
18087c478bd9Sstevel@tonic-gate  * If the event attributes include NDI_EVENT_POST_TO_ALL
18097c478bd9Sstevel@tonic-gate  * (the default), all the handlers for the event will be
18107c478bd9Sstevel@tonic-gate  * called in an unspecified order.
18117c478bd9Sstevel@tonic-gate  * If the event attributes include NDI_EVENT_POST_TO_TGT, only
18127c478bd9Sstevel@tonic-gate  * the handlers (if any) registered by the driver identified by
18137c478bd9Sstevel@tonic-gate  * rdip will be called.
18147c478bd9Sstevel@tonic-gate  * If the event identified by cookie is not bound to the handle,
18157c478bd9Sstevel@tonic-gate  * NDI_FAILURE will be returned.
18167c478bd9Sstevel@tonic-gate  */
18177c478bd9Sstevel@tonic-gate int
18187c478bd9Sstevel@tonic-gate ndi_event_run_callbacks(ndi_event_hdl_t handle, dev_info_t *child_dip,
18197c478bd9Sstevel@tonic-gate 	ddi_eventcookie_t cookie, void *bus_impldata)
18207c478bd9Sstevel@tonic-gate {
18217c478bd9Sstevel@tonic-gate 	struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle;
18227c478bd9Sstevel@tonic-gate 	ndi_event_callbacks_t *next, *cb;
18237c478bd9Sstevel@tonic-gate 	int attributes;
18247c478bd9Sstevel@tonic-gate 
18257c478bd9Sstevel@tonic-gate 	mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex);
18267c478bd9Sstevel@tonic-gate 
18277c478bd9Sstevel@tonic-gate 	/* if this is not our event, fail */
18287c478bd9Sstevel@tonic-gate 	if (ndi_event_is_defined(handle, cookie, &attributes) !=
18297c478bd9Sstevel@tonic-gate 	    NDI_SUCCESS) {
18307c478bd9Sstevel@tonic-gate 
18317c478bd9Sstevel@tonic-gate 		mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
18327c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
18337c478bd9Sstevel@tonic-gate 	}
18347c478bd9Sstevel@tonic-gate 
18357c478bd9Sstevel@tonic-gate 	mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
18367c478bd9Sstevel@tonic-gate 
18377c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG
18387c478bd9Sstevel@tonic-gate 	if (ndi_event_debug) {
18397c478bd9Sstevel@tonic-gate 		cmn_err(CE_CONT, "ndi_event_run_callbacks:\n\t"
18407c478bd9Sstevel@tonic-gate 		    "producer dip=%p (%s%d): cookie = %p, name = %s\n",
18417c478bd9Sstevel@tonic-gate 		    (void *)ndi_event_hdl->ndi_evthdl_dip,
18427c478bd9Sstevel@tonic-gate 		    ddi_node_name(ndi_event_hdl->ndi_evthdl_dip),
18437c478bd9Sstevel@tonic-gate 		    ddi_get_instance(ndi_event_hdl->ndi_evthdl_dip),
18447c478bd9Sstevel@tonic-gate 		    (void *)cookie,
18457c478bd9Sstevel@tonic-gate 		    ndi_event_cookie_to_name(handle, cookie));
18467c478bd9Sstevel@tonic-gate 	}
18477c478bd9Sstevel@tonic-gate #endif /* #ifdef NDI_EVENT_DEBUG */
18487c478bd9Sstevel@tonic-gate 
18497c478bd9Sstevel@tonic-gate 
18507c478bd9Sstevel@tonic-gate 	/*
18517c478bd9Sstevel@tonic-gate 	 * The callback handlers may call conversion functions.  The conversion
18527c478bd9Sstevel@tonic-gate 	 * functions may hold the ndi_evthdl_mutex during execution.  Thus, to
18537c478bd9Sstevel@tonic-gate 	 * avoid a recursive mutex problem, only the ndi_evthdl_cb_mutex is
18547c478bd9Sstevel@tonic-gate 	 * held.  The ndi_evthdl_mutex is not held when running the callbacks.
18557c478bd9Sstevel@tonic-gate 	 */
18567c478bd9Sstevel@tonic-gate 	mutex_enter(&ndi_event_hdl->ndi_evthdl_cb_mutex);
18577c478bd9Sstevel@tonic-gate 
18587c478bd9Sstevel@tonic-gate 	/* perform callbacks */
18597c478bd9Sstevel@tonic-gate 	next = NDI_EVENT(cookie)->callback_list;
18607c478bd9Sstevel@tonic-gate 	while (next != NULL) {
18617c478bd9Sstevel@tonic-gate 
18627c478bd9Sstevel@tonic-gate 		cb = next;
18637c478bd9Sstevel@tonic-gate 		next = next->ndi_evtcb_next;
18647c478bd9Sstevel@tonic-gate 
18657c478bd9Sstevel@tonic-gate 		ASSERT(cb->ndi_evtcb_cookie == cookie);
18667c478bd9Sstevel@tonic-gate 
18677c478bd9Sstevel@tonic-gate 		if (attributes == NDI_EVENT_POST_TO_TGT &&
18687c478bd9Sstevel@tonic-gate 		    child_dip != cb->ndi_evtcb_dip) {
18697c478bd9Sstevel@tonic-gate 			continue;
18707c478bd9Sstevel@tonic-gate 		}
18717c478bd9Sstevel@tonic-gate 
18727c478bd9Sstevel@tonic-gate 		cb->ndi_evtcb_callback(cb->ndi_evtcb_dip, cb->ndi_evtcb_cookie,
18737c478bd9Sstevel@tonic-gate 		    cb->ndi_evtcb_arg, bus_impldata);
18747c478bd9Sstevel@tonic-gate 
18757c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG
18767c478bd9Sstevel@tonic-gate 		if (ndi_event_debug) {
18777c478bd9Sstevel@tonic-gate 			cmn_err(CE_CONT,
18787c478bd9Sstevel@tonic-gate 			    "\t\tconsumer dip=%p (%s%d)\n",
18797c478bd9Sstevel@tonic-gate 			    (void *)cb->ndi_evtcb_dip,
18807c478bd9Sstevel@tonic-gate 			    ddi_node_name(cb->ndi_evtcb_dip),
18817c478bd9Sstevel@tonic-gate 			    ddi_get_instance(cb->ndi_evtcb_dip));
18827c478bd9Sstevel@tonic-gate 		}
18837c478bd9Sstevel@tonic-gate #endif
18847c478bd9Sstevel@tonic-gate 
18857c478bd9Sstevel@tonic-gate 	}
18867c478bd9Sstevel@tonic-gate 
18877c478bd9Sstevel@tonic-gate 	mutex_exit(&ndi_event_hdl->ndi_evthdl_cb_mutex);
18887c478bd9Sstevel@tonic-gate 
18897c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG
18907c478bd9Sstevel@tonic-gate 	if (ndi_event_debug) {
18917c478bd9Sstevel@tonic-gate 		mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex);
18927c478bd9Sstevel@tonic-gate 		ndi_event_dump_hdl(ndi_event_hdl, "ndi_event_run_callbacks");
18937c478bd9Sstevel@tonic-gate 		mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
18947c478bd9Sstevel@tonic-gate 	}
18957c478bd9Sstevel@tonic-gate #endif /* NDI_EVENT_DEBUG */
18967c478bd9Sstevel@tonic-gate 
18977c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
18987c478bd9Sstevel@tonic-gate }
18997c478bd9Sstevel@tonic-gate 
19007c478bd9Sstevel@tonic-gate 
19017c478bd9Sstevel@tonic-gate /*
19027c478bd9Sstevel@tonic-gate  * perform one callback for a specified cookie and just one target
19037c478bd9Sstevel@tonic-gate  */
19047c478bd9Sstevel@tonic-gate int
19057c478bd9Sstevel@tonic-gate ndi_event_do_callback(ndi_event_hdl_t handle, dev_info_t *child_dip,
19067c478bd9Sstevel@tonic-gate 	ddi_eventcookie_t cookie, void *bus_impldata)
19077c478bd9Sstevel@tonic-gate {
19087c478bd9Sstevel@tonic-gate 	struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle;
19097c478bd9Sstevel@tonic-gate 	ndi_event_callbacks_t *next, *cb;
19107c478bd9Sstevel@tonic-gate 	int attributes;
19117c478bd9Sstevel@tonic-gate 
19127c478bd9Sstevel@tonic-gate 	mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex);
19137c478bd9Sstevel@tonic-gate 
19147c478bd9Sstevel@tonic-gate 	/* if this is not our event, fail */
19157c478bd9Sstevel@tonic-gate 	if (ndi_event_is_defined(handle, cookie, &attributes) !=
19167c478bd9Sstevel@tonic-gate 	    NDI_SUCCESS) {
19177c478bd9Sstevel@tonic-gate 
19187c478bd9Sstevel@tonic-gate 		mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
19197c478bd9Sstevel@tonic-gate 
19207c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
19217c478bd9Sstevel@tonic-gate 	}
19227c478bd9Sstevel@tonic-gate 
19237c478bd9Sstevel@tonic-gate 	mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
19247c478bd9Sstevel@tonic-gate 
19257c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG
19267c478bd9Sstevel@tonic-gate 	if (ndi_event_debug) {
19277c478bd9Sstevel@tonic-gate 		cmn_err(CE_CONT, "ndi_event_run_callbacks:\n\t"
19287c478bd9Sstevel@tonic-gate 		    "producer dip=%p (%s%d): cookie = %p, name = %s\n",
19297c478bd9Sstevel@tonic-gate 		    (void *)ndi_event_hdl->ndi_evthdl_dip,
19307c478bd9Sstevel@tonic-gate 		    ddi_node_name(ndi_event_hdl->ndi_evthdl_dip),
19317c478bd9Sstevel@tonic-gate 		    ddi_get_instance(ndi_event_hdl->ndi_evthdl_dip),
19327c478bd9Sstevel@tonic-gate 		    (void *)cookie,
19337c478bd9Sstevel@tonic-gate 		    ndi_event_cookie_to_name(handle, cookie));
19347c478bd9Sstevel@tonic-gate 	}
19357c478bd9Sstevel@tonic-gate #endif
19367c478bd9Sstevel@tonic-gate 
19377c478bd9Sstevel@tonic-gate 
19387c478bd9Sstevel@tonic-gate 	/*
19397c478bd9Sstevel@tonic-gate 	 * we only grab the cb mutex because the callback handlers
19407c478bd9Sstevel@tonic-gate 	 * may call the conversion functions which would cause a recursive
19417c478bd9Sstevel@tonic-gate 	 * mutex problem
19427c478bd9Sstevel@tonic-gate 	 */
19437c478bd9Sstevel@tonic-gate 	mutex_enter(&ndi_event_hdl->ndi_evthdl_cb_mutex);
19447c478bd9Sstevel@tonic-gate 
19457c478bd9Sstevel@tonic-gate 	/* perform callbacks */
19467c478bd9Sstevel@tonic-gate 	for (next = NDI_EVENT(cookie)->callback_list; next != NULL; ) {
19477c478bd9Sstevel@tonic-gate 		cb = next;
19487c478bd9Sstevel@tonic-gate 		next = next->ndi_evtcb_next;
19497c478bd9Sstevel@tonic-gate 
19507c478bd9Sstevel@tonic-gate 		if (cb->ndi_evtcb_dip == child_dip) {
19517c478bd9Sstevel@tonic-gate 			cb->ndi_evtcb_callback(cb->ndi_evtcb_dip,
19527c478bd9Sstevel@tonic-gate 			    cb->ndi_evtcb_cookie, cb->ndi_evtcb_arg,
19537c478bd9Sstevel@tonic-gate 			    bus_impldata);
19547c478bd9Sstevel@tonic-gate 
19557c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG
19567c478bd9Sstevel@tonic-gate 			if (ndi_event_debug) {
19577c478bd9Sstevel@tonic-gate 				cmn_err(CE_CONT,
19587c478bd9Sstevel@tonic-gate 				    "\t\tconsumer dip=%p (%s%d)\n",
19597c478bd9Sstevel@tonic-gate 				    (void *)cb->ndi_evtcb_dip,
19607c478bd9Sstevel@tonic-gate 				    ddi_node_name(cb->ndi_evtcb_dip),
19617c478bd9Sstevel@tonic-gate 				    ddi_get_instance(cb->ndi_evtcb_dip));
19627c478bd9Sstevel@tonic-gate 			}
19637c478bd9Sstevel@tonic-gate #endif
19647c478bd9Sstevel@tonic-gate 			break;
19657c478bd9Sstevel@tonic-gate 		}
19667c478bd9Sstevel@tonic-gate 	}
19677c478bd9Sstevel@tonic-gate 
19687c478bd9Sstevel@tonic-gate 	mutex_exit(&ndi_event_hdl->ndi_evthdl_cb_mutex);
19697c478bd9Sstevel@tonic-gate 
19707c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG
19717c478bd9Sstevel@tonic-gate 	if (ndi_event_debug) {
19727c478bd9Sstevel@tonic-gate 		mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex);
19737c478bd9Sstevel@tonic-gate 		ndi_event_dump_hdl(ndi_event_hdl, "ndi_event_run_callbacks");
19747c478bd9Sstevel@tonic-gate 		mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
19757c478bd9Sstevel@tonic-gate 	}
19767c478bd9Sstevel@tonic-gate #endif /* NDI_EVENT_DEBUG */
19777c478bd9Sstevel@tonic-gate 
19787c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
19797c478bd9Sstevel@tonic-gate }
19807c478bd9Sstevel@tonic-gate 
19817c478bd9Sstevel@tonic-gate 
19827c478bd9Sstevel@tonic-gate /*
19837c478bd9Sstevel@tonic-gate  * ndi_event_tag_to_cookie: utility function to find an event cookie
19847c478bd9Sstevel@tonic-gate  * given an event tag
19857c478bd9Sstevel@tonic-gate  */
19867c478bd9Sstevel@tonic-gate ddi_eventcookie_t
19877c478bd9Sstevel@tonic-gate ndi_event_tag_to_cookie(ndi_event_hdl_t handle, int event_tag)
19887c478bd9Sstevel@tonic-gate {
19897c478bd9Sstevel@tonic-gate 	struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle;
19907c478bd9Sstevel@tonic-gate 	ndi_event_cookie_t *list;
19917c478bd9Sstevel@tonic-gate 
19927c478bd9Sstevel@tonic-gate 	mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex);
19937c478bd9Sstevel@tonic-gate 
19947c478bd9Sstevel@tonic-gate 	list = ndi_event_hdl->ndi_evthdl_cookie_list;
19957c478bd9Sstevel@tonic-gate 	while (list != NULL) {
19967c478bd9Sstevel@tonic-gate 		if (NDI_EVENT_TAG(list) == event_tag) {
19977c478bd9Sstevel@tonic-gate 			mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
19987c478bd9Sstevel@tonic-gate 			return ((ddi_eventcookie_t)list);
19997c478bd9Sstevel@tonic-gate 		}
20007c478bd9Sstevel@tonic-gate 
20017c478bd9Sstevel@tonic-gate 		list = list->next_cookie;
20027c478bd9Sstevel@tonic-gate 	}
20037c478bd9Sstevel@tonic-gate 
20047c478bd9Sstevel@tonic-gate 	mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
20057c478bd9Sstevel@tonic-gate 	return (NULL);
20067c478bd9Sstevel@tonic-gate }
20077c478bd9Sstevel@tonic-gate 
20087c478bd9Sstevel@tonic-gate /*
20097c478bd9Sstevel@tonic-gate  * ndi_event_cookie_to_tag: utility function to find a event tag
20107c478bd9Sstevel@tonic-gate  * given an event_cookie
20117c478bd9Sstevel@tonic-gate  */
20127c478bd9Sstevel@tonic-gate int
20137c478bd9Sstevel@tonic-gate ndi_event_cookie_to_tag(ndi_event_hdl_t handle, ddi_eventcookie_t cookie)
20147c478bd9Sstevel@tonic-gate {
20157c478bd9Sstevel@tonic-gate 	struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle;
20167c478bd9Sstevel@tonic-gate 	ndi_event_cookie_t *list;
20177c478bd9Sstevel@tonic-gate 
20187c478bd9Sstevel@tonic-gate 	mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex);
20197c478bd9Sstevel@tonic-gate 
20207c478bd9Sstevel@tonic-gate 	list = ndi_event_hdl->ndi_evthdl_cookie_list;
20217c478bd9Sstevel@tonic-gate 
20227c478bd9Sstevel@tonic-gate 	while (list != NULL) {
20237c478bd9Sstevel@tonic-gate 		if ((ddi_eventcookie_t)list == cookie) {
20247c478bd9Sstevel@tonic-gate 			mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
20257c478bd9Sstevel@tonic-gate 			return (NDI_EVENT_TAG(list));
20267c478bd9Sstevel@tonic-gate 		}
20277c478bd9Sstevel@tonic-gate 
20287c478bd9Sstevel@tonic-gate 		list = list->next_cookie;
20297c478bd9Sstevel@tonic-gate 	}
20307c478bd9Sstevel@tonic-gate 
20317c478bd9Sstevel@tonic-gate 	mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
20327c478bd9Sstevel@tonic-gate 	return (NDI_FAILURE);
20337c478bd9Sstevel@tonic-gate 
20347c478bd9Sstevel@tonic-gate }
20357c478bd9Sstevel@tonic-gate 
20367c478bd9Sstevel@tonic-gate /*
20377c478bd9Sstevel@tonic-gate  * ndi_event_cookie_to_name: utility function to find an event name
20387c478bd9Sstevel@tonic-gate  * given an event_cookie
20397c478bd9Sstevel@tonic-gate  */
20407c478bd9Sstevel@tonic-gate char *
20417c478bd9Sstevel@tonic-gate ndi_event_cookie_to_name(ndi_event_hdl_t handle, ddi_eventcookie_t cookie)
20427c478bd9Sstevel@tonic-gate {
20437c478bd9Sstevel@tonic-gate 	struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle;
20447c478bd9Sstevel@tonic-gate 	ndi_event_cookie_t *list;
20457c478bd9Sstevel@tonic-gate 
20467c478bd9Sstevel@tonic-gate 	mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex);
20477c478bd9Sstevel@tonic-gate 
20487c478bd9Sstevel@tonic-gate 	list = ndi_event_hdl->ndi_evthdl_cookie_list;
20497c478bd9Sstevel@tonic-gate 
20507c478bd9Sstevel@tonic-gate 	while (list != NULL) {
20517c478bd9Sstevel@tonic-gate 		if (list == NDI_EVENT(cookie)) {
20527c478bd9Sstevel@tonic-gate 			mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
20537c478bd9Sstevel@tonic-gate 			return (NDI_EVENT_NAME(list));
20547c478bd9Sstevel@tonic-gate 		}
20557c478bd9Sstevel@tonic-gate 
20567c478bd9Sstevel@tonic-gate 		list = list->next_cookie;
20577c478bd9Sstevel@tonic-gate 	}
20587c478bd9Sstevel@tonic-gate 
20597c478bd9Sstevel@tonic-gate 	mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
20607c478bd9Sstevel@tonic-gate 	return (NULL);
20617c478bd9Sstevel@tonic-gate }
20627c478bd9Sstevel@tonic-gate 
20637c478bd9Sstevel@tonic-gate /*
20647c478bd9Sstevel@tonic-gate  * ndi_event_tag_to_name: utility function to find an event name
20657c478bd9Sstevel@tonic-gate  * given an event tag
20667c478bd9Sstevel@tonic-gate  */
20677c478bd9Sstevel@tonic-gate char *
20687c478bd9Sstevel@tonic-gate ndi_event_tag_to_name(ndi_event_hdl_t handle, int event_tag)
20697c478bd9Sstevel@tonic-gate {
20707c478bd9Sstevel@tonic-gate 	struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle;
20717c478bd9Sstevel@tonic-gate 	ndi_event_cookie_t *list;
20727c478bd9Sstevel@tonic-gate 
20737c478bd9Sstevel@tonic-gate 	mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex);
20747c478bd9Sstevel@tonic-gate 
20757c478bd9Sstevel@tonic-gate 	list = ndi_event_hdl->ndi_evthdl_cookie_list;
20767c478bd9Sstevel@tonic-gate 
20777c478bd9Sstevel@tonic-gate 	while (list) {
20787c478bd9Sstevel@tonic-gate 		if (NDI_EVENT_TAG(list) == event_tag) {
20797c478bd9Sstevel@tonic-gate 			mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
20807c478bd9Sstevel@tonic-gate 			return (NDI_EVENT_NAME(list));
20817c478bd9Sstevel@tonic-gate 		}
20827c478bd9Sstevel@tonic-gate 
20837c478bd9Sstevel@tonic-gate 		list = list->next_cookie;
20847c478bd9Sstevel@tonic-gate 	}
20857c478bd9Sstevel@tonic-gate 
20867c478bd9Sstevel@tonic-gate 	mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex);
20877c478bd9Sstevel@tonic-gate 
20887c478bd9Sstevel@tonic-gate 	return (NULL);
20897c478bd9Sstevel@tonic-gate }
20907c478bd9Sstevel@tonic-gate 
20917c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG
20927c478bd9Sstevel@tonic-gate void
20937c478bd9Sstevel@tonic-gate ndi_event_dump_hdl(struct ndi_event_hdl *hdl, char *location)
20947c478bd9Sstevel@tonic-gate {
20957c478bd9Sstevel@tonic-gate 
20967c478bd9Sstevel@tonic-gate 
20977c478bd9Sstevel@tonic-gate 	ndi_event_callbacks_t *next;
20987c478bd9Sstevel@tonic-gate 	ndi_event_cookie_t *list;
20997c478bd9Sstevel@tonic-gate 
21007c478bd9Sstevel@tonic-gate 	ASSERT(mutex_owned(&hdl->ndi_evthdl_mutex));
21017c478bd9Sstevel@tonic-gate 	list = hdl->ndi_evthdl_cookie_list;
21027c478bd9Sstevel@tonic-gate 
21037c478bd9Sstevel@tonic-gate 	cmn_err(CE_CONT, "%s: event handle (%p): dip = %p (%s%d)\n",
21047c478bd9Sstevel@tonic-gate 		location, (void *)hdl,
21057c478bd9Sstevel@tonic-gate 		(void *)hdl->ndi_evthdl_dip,
21067c478bd9Sstevel@tonic-gate 		ddi_node_name(hdl->ndi_evthdl_dip),
21077c478bd9Sstevel@tonic-gate 		ddi_get_instance(hdl->ndi_evthdl_dip));
21087c478bd9Sstevel@tonic-gate 	cmn_err(CE_CONT, "\thigh=%d other=%d n=%d\n",
21097c478bd9Sstevel@tonic-gate 		hdl->ndi_evthdl_high_plevels,
21107c478bd9Sstevel@tonic-gate 		hdl->ndi_evthdl_other_plevels,
21117c478bd9Sstevel@tonic-gate 		hdl->ndi_evthdl_n_events);
21127c478bd9Sstevel@tonic-gate 
21137c478bd9Sstevel@tonic-gate 
21147c478bd9Sstevel@tonic-gate 	cmn_err(CE_CONT, "\tevent cookies:\n");
21157c478bd9Sstevel@tonic-gate 	while (list) {
21167c478bd9Sstevel@tonic-gate 		cmn_err(CE_CONT,
21177c478bd9Sstevel@tonic-gate 			"\t\ttag=%d name=%s p=%d a=%x dd=%p\n",
21187c478bd9Sstevel@tonic-gate 			NDI_EVENT_TAG(list),
21197c478bd9Sstevel@tonic-gate 			NDI_EVENT_NAME(list),
21207c478bd9Sstevel@tonic-gate 			NDI_EVENT_PLEVEL(list),
21217c478bd9Sstevel@tonic-gate 			NDI_EVENT_ATTRIBUTES(list),
21227c478bd9Sstevel@tonic-gate 			(void *)NDI_EVENT_DDIP(list));
21237c478bd9Sstevel@tonic-gate 		cmn_err(CE_CONT, "\t\tcallbacks:\n");
21247c478bd9Sstevel@tonic-gate 		for (next = list->callback_list; next != NULL;
21257c478bd9Sstevel@tonic-gate 		    next = next->ndi_evtcb_next) {
21267c478bd9Sstevel@tonic-gate 			cmn_err(CE_CONT,
21277c478bd9Sstevel@tonic-gate 			    "\t\t  dip=%p (%s%d) cookie=%p arg=%p\n",
21287c478bd9Sstevel@tonic-gate 			    (void*)next->ndi_evtcb_dip,
21297c478bd9Sstevel@tonic-gate 			    ddi_driver_name(next->ndi_evtcb_dip),
21307c478bd9Sstevel@tonic-gate 			    ddi_get_instance(next->ndi_evtcb_dip),
21317c478bd9Sstevel@tonic-gate 			    (void *)next->ndi_evtcb_cookie,
21327c478bd9Sstevel@tonic-gate 			    next->ndi_evtcb_arg);
21337c478bd9Sstevel@tonic-gate 		}
21347c478bd9Sstevel@tonic-gate 
21357c478bd9Sstevel@tonic-gate 		list = list->next_cookie;
21367c478bd9Sstevel@tonic-gate 	}
21377c478bd9Sstevel@tonic-gate 
21387c478bd9Sstevel@tonic-gate 	cmn_err(CE_CONT, "\n");
21397c478bd9Sstevel@tonic-gate }
21407c478bd9Sstevel@tonic-gate #endif
21417c478bd9Sstevel@tonic-gate 
21427c478bd9Sstevel@tonic-gate int
21437c478bd9Sstevel@tonic-gate ndi_dev_is_prom_node(dev_info_t *dip)
21447c478bd9Sstevel@tonic-gate {
21457c478bd9Sstevel@tonic-gate 	return (DEVI(dip)->devi_node_class == DDI_NC_PROM);
21467c478bd9Sstevel@tonic-gate }
21477c478bd9Sstevel@tonic-gate 
21487c478bd9Sstevel@tonic-gate int
21497c478bd9Sstevel@tonic-gate ndi_dev_is_pseudo_node(dev_info_t *dip)
21507c478bd9Sstevel@tonic-gate {
21517c478bd9Sstevel@tonic-gate 	/*
21527c478bd9Sstevel@tonic-gate 	 * NOTE: this does NOT mean the pseudo branch of the device tree,
21537c478bd9Sstevel@tonic-gate 	 * it means the node was created by software (DEVI_SID_NODEID |
21547c478bd9Sstevel@tonic-gate 	 * DEVI_PSEUDO_NODEID) instead of being generated from a PROM node.
21557c478bd9Sstevel@tonic-gate 	 */
21567c478bd9Sstevel@tonic-gate 	return (DEVI(dip)->devi_node_class == DDI_NC_PSEUDO);
21577c478bd9Sstevel@tonic-gate }
21587c478bd9Sstevel@tonic-gate 
21597c478bd9Sstevel@tonic-gate int
21607c478bd9Sstevel@tonic-gate ndi_dev_is_persistent_node(dev_info_t *dip)
21617c478bd9Sstevel@tonic-gate {
21627c478bd9Sstevel@tonic-gate 	return ((DEVI(dip)->devi_node_attributes & DDI_PERSISTENT) != 0);
21637c478bd9Sstevel@tonic-gate }
21647c478bd9Sstevel@tonic-gate 
21657c478bd9Sstevel@tonic-gate int
21667c478bd9Sstevel@tonic-gate i_ndi_dev_is_auto_assigned_node(dev_info_t *dip)
21677c478bd9Sstevel@tonic-gate {
21687c478bd9Sstevel@tonic-gate 	return ((DEVI(dip)->devi_node_attributes &
21697c478bd9Sstevel@tonic-gate 	    DDI_AUTO_ASSIGNED_NODEID) != 0);
21707c478bd9Sstevel@tonic-gate }
21717c478bd9Sstevel@tonic-gate 
21727c478bd9Sstevel@tonic-gate void
21737c478bd9Sstevel@tonic-gate i_ndi_set_node_class(dev_info_t *dip, ddi_node_class_t c)
21747c478bd9Sstevel@tonic-gate {
21757c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_node_class = c;
21767c478bd9Sstevel@tonic-gate }
21777c478bd9Sstevel@tonic-gate 
21787c478bd9Sstevel@tonic-gate ddi_node_class_t
21797c478bd9Sstevel@tonic-gate i_ndi_get_node_class(dev_info_t *dip)
21807c478bd9Sstevel@tonic-gate {
21817c478bd9Sstevel@tonic-gate 	return (DEVI(dip)->devi_node_class);
21827c478bd9Sstevel@tonic-gate }
21837c478bd9Sstevel@tonic-gate 
21847c478bd9Sstevel@tonic-gate void
21857c478bd9Sstevel@tonic-gate i_ndi_set_node_attributes(dev_info_t *dip, int p)
21867c478bd9Sstevel@tonic-gate {
21877c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_node_attributes = p;
21887c478bd9Sstevel@tonic-gate }
21897c478bd9Sstevel@tonic-gate 
21907c478bd9Sstevel@tonic-gate int
21917c478bd9Sstevel@tonic-gate i_ndi_get_node_attributes(dev_info_t *dip)
21927c478bd9Sstevel@tonic-gate {
21937c478bd9Sstevel@tonic-gate 	return (DEVI(dip)->devi_node_attributes);
21947c478bd9Sstevel@tonic-gate }
21957c478bd9Sstevel@tonic-gate 
21967c478bd9Sstevel@tonic-gate void
21977c478bd9Sstevel@tonic-gate i_ndi_set_nodeid(dev_info_t *dip, int n)
21987c478bd9Sstevel@tonic-gate {
21997c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_nodeid = n;
22007c478bd9Sstevel@tonic-gate }
22017c478bd9Sstevel@tonic-gate 
22027c478bd9Sstevel@tonic-gate void
22037c478bd9Sstevel@tonic-gate ndi_set_acc_fault(ddi_acc_handle_t ah)
22047c478bd9Sstevel@tonic-gate {
22057c478bd9Sstevel@tonic-gate 	i_ddi_acc_set_fault(ah);
22067c478bd9Sstevel@tonic-gate }
22077c478bd9Sstevel@tonic-gate 
22087c478bd9Sstevel@tonic-gate void
22097c478bd9Sstevel@tonic-gate ndi_clr_acc_fault(ddi_acc_handle_t ah)
22107c478bd9Sstevel@tonic-gate {
22117c478bd9Sstevel@tonic-gate 	i_ddi_acc_clr_fault(ah);
22127c478bd9Sstevel@tonic-gate }
22137c478bd9Sstevel@tonic-gate 
22147c478bd9Sstevel@tonic-gate void
22157c478bd9Sstevel@tonic-gate ndi_set_dma_fault(ddi_dma_handle_t dh)
22167c478bd9Sstevel@tonic-gate {
22177c478bd9Sstevel@tonic-gate 	i_ddi_dma_set_fault(dh);
22187c478bd9Sstevel@tonic-gate }
22197c478bd9Sstevel@tonic-gate 
22207c478bd9Sstevel@tonic-gate void
22217c478bd9Sstevel@tonic-gate ndi_clr_dma_fault(ddi_dma_handle_t dh)
22227c478bd9Sstevel@tonic-gate {
22237c478bd9Sstevel@tonic-gate 	i_ddi_dma_clr_fault(dh);
22247c478bd9Sstevel@tonic-gate }
22257c478bd9Sstevel@tonic-gate 
22267c478bd9Sstevel@tonic-gate /*
22277c478bd9Sstevel@tonic-gate  *  The default fault-handler, called when the event posted by
22287c478bd9Sstevel@tonic-gate  *  ddi_dev_report_fault() reaches rootnex.
22297c478bd9Sstevel@tonic-gate  */
22307c478bd9Sstevel@tonic-gate static void
22317c478bd9Sstevel@tonic-gate i_ddi_fault_handler(dev_info_t *dip, struct ddi_fault_event_data *fedp)
22327c478bd9Sstevel@tonic-gate {
22337c478bd9Sstevel@tonic-gate 	ASSERT(fedp);
22347c478bd9Sstevel@tonic-gate 
22357c478bd9Sstevel@tonic-gate 	mutex_enter(&(DEVI(dip)->devi_lock));
22367c478bd9Sstevel@tonic-gate 	if (!DEVI_IS_DEVICE_OFFLINE(dip)) {
22377c478bd9Sstevel@tonic-gate 		switch (fedp->f_impact) {
22387c478bd9Sstevel@tonic-gate 		case DDI_SERVICE_LOST:
22397c478bd9Sstevel@tonic-gate 			DEVI_SET_DEVICE_DOWN(dip);
22407c478bd9Sstevel@tonic-gate 			break;
22417c478bd9Sstevel@tonic-gate 
22427c478bd9Sstevel@tonic-gate 		case DDI_SERVICE_DEGRADED:
22437c478bd9Sstevel@tonic-gate 			DEVI_SET_DEVICE_DEGRADED(dip);
22447c478bd9Sstevel@tonic-gate 			break;
22457c478bd9Sstevel@tonic-gate 
22467c478bd9Sstevel@tonic-gate 		case DDI_SERVICE_UNAFFECTED:
22477c478bd9Sstevel@tonic-gate 		default:
22487c478bd9Sstevel@tonic-gate 			break;
22497c478bd9Sstevel@tonic-gate 
22507c478bd9Sstevel@tonic-gate 		case DDI_SERVICE_RESTORED:
22517c478bd9Sstevel@tonic-gate 			DEVI_SET_DEVICE_UP(dip);
22527c478bd9Sstevel@tonic-gate 			break;
22537c478bd9Sstevel@tonic-gate 		}
22547c478bd9Sstevel@tonic-gate 	}
22557c478bd9Sstevel@tonic-gate 	mutex_exit(&(DEVI(dip)->devi_lock));
22567c478bd9Sstevel@tonic-gate }
22577c478bd9Sstevel@tonic-gate 
22587c478bd9Sstevel@tonic-gate /*
22597c478bd9Sstevel@tonic-gate  * The default fault-logger, called when the event posted by
22607c478bd9Sstevel@tonic-gate  * ddi_dev_report_fault() reaches rootnex.
22617c478bd9Sstevel@tonic-gate  */
22627c478bd9Sstevel@tonic-gate /*ARGSUSED*/
22637c478bd9Sstevel@tonic-gate static void
22647c478bd9Sstevel@tonic-gate i_ddi_fault_logger(dev_info_t *rdip, struct ddi_fault_event_data *fedp)
22657c478bd9Sstevel@tonic-gate {
22667c478bd9Sstevel@tonic-gate 	ddi_devstate_t newstate;
22677c478bd9Sstevel@tonic-gate 	const char *action;
22687c478bd9Sstevel@tonic-gate 	const char *servstate;
22697c478bd9Sstevel@tonic-gate 	const char *location;
22707c478bd9Sstevel@tonic-gate 	int bad;
22717c478bd9Sstevel@tonic-gate 	int changed;
22727c478bd9Sstevel@tonic-gate 	int level;
22737c478bd9Sstevel@tonic-gate 	int still;
22747c478bd9Sstevel@tonic-gate 
22757c478bd9Sstevel@tonic-gate 	ASSERT(fedp);
22767c478bd9Sstevel@tonic-gate 
22777c478bd9Sstevel@tonic-gate 	bad = 0;
22787c478bd9Sstevel@tonic-gate 	switch (fedp->f_location) {
22797c478bd9Sstevel@tonic-gate 	case DDI_DATAPATH_FAULT:
22807c478bd9Sstevel@tonic-gate 		location = "in datapath to";
22817c478bd9Sstevel@tonic-gate 		break;
22827c478bd9Sstevel@tonic-gate 	case DDI_DEVICE_FAULT:
22837c478bd9Sstevel@tonic-gate 		location = "in";
22847c478bd9Sstevel@tonic-gate 		break;
22857c478bd9Sstevel@tonic-gate 	case DDI_EXTERNAL_FAULT:
22867c478bd9Sstevel@tonic-gate 		location = "external to";
22877c478bd9Sstevel@tonic-gate 		break;
22887c478bd9Sstevel@tonic-gate 	default:
22897c478bd9Sstevel@tonic-gate 		location = "somewhere near";
22907c478bd9Sstevel@tonic-gate 		bad = 1;
22917c478bd9Sstevel@tonic-gate 		break;
22927c478bd9Sstevel@tonic-gate 	}
22937c478bd9Sstevel@tonic-gate 
22947c478bd9Sstevel@tonic-gate 	newstate = ddi_get_devstate(fedp->f_dip);
22957c478bd9Sstevel@tonic-gate 	switch (newstate) {
22967c478bd9Sstevel@tonic-gate 	case DDI_DEVSTATE_OFFLINE:
22977c478bd9Sstevel@tonic-gate 		servstate = "unavailable";
22987c478bd9Sstevel@tonic-gate 		break;
22997c478bd9Sstevel@tonic-gate 	case DDI_DEVSTATE_DOWN:
23007c478bd9Sstevel@tonic-gate 		servstate = "unavailable";
23017c478bd9Sstevel@tonic-gate 		break;
23027c478bd9Sstevel@tonic-gate 	case DDI_DEVSTATE_QUIESCED:
23037c478bd9Sstevel@tonic-gate 		servstate = "suspended";
23047c478bd9Sstevel@tonic-gate 		break;
23057c478bd9Sstevel@tonic-gate 	case DDI_DEVSTATE_DEGRADED:
23067c478bd9Sstevel@tonic-gate 		servstate = "degraded";
23077c478bd9Sstevel@tonic-gate 		break;
23087c478bd9Sstevel@tonic-gate 	default:
23097c478bd9Sstevel@tonic-gate 		servstate = "available";
23107c478bd9Sstevel@tonic-gate 		break;
23117c478bd9Sstevel@tonic-gate 	}
23127c478bd9Sstevel@tonic-gate 
23137c478bd9Sstevel@tonic-gate 	changed = (newstate != fedp->f_oldstate);
23147c478bd9Sstevel@tonic-gate 	level = (newstate < fedp->f_oldstate) ? CE_WARN : CE_NOTE;
23157c478bd9Sstevel@tonic-gate 	switch (fedp->f_impact) {
23167c478bd9Sstevel@tonic-gate 	case DDI_SERVICE_LOST:
23177c478bd9Sstevel@tonic-gate 	case DDI_SERVICE_DEGRADED:
23187c478bd9Sstevel@tonic-gate 	case DDI_SERVICE_UNAFFECTED:
23197c478bd9Sstevel@tonic-gate 		/* fault detected; service [still] <servstate> */
23207c478bd9Sstevel@tonic-gate 		action = "fault detected";
23217c478bd9Sstevel@tonic-gate 		still = !changed;
23227c478bd9Sstevel@tonic-gate 		break;
23237c478bd9Sstevel@tonic-gate 
23247c478bd9Sstevel@tonic-gate 	case DDI_SERVICE_RESTORED:
23257c478bd9Sstevel@tonic-gate 		if (newstate != DDI_DEVSTATE_UP) {
23267c478bd9Sstevel@tonic-gate 			/* fault cleared; service still <servstate> */
23277c478bd9Sstevel@tonic-gate 			action = "fault cleared";
23287c478bd9Sstevel@tonic-gate 			still = 1;
23297c478bd9Sstevel@tonic-gate 		} else if (changed) {
23307c478bd9Sstevel@tonic-gate 			/* fault cleared; service <servstate> */
23317c478bd9Sstevel@tonic-gate 			action = "fault cleared";
23327c478bd9Sstevel@tonic-gate 			still = 0;
23337c478bd9Sstevel@tonic-gate 		} else {
23347c478bd9Sstevel@tonic-gate 			/* no fault; service <servstate> */
23357c478bd9Sstevel@tonic-gate 			action = "no fault";
23367c478bd9Sstevel@tonic-gate 			still = 0;
23377c478bd9Sstevel@tonic-gate 		}
23387c478bd9Sstevel@tonic-gate 		break;
23397c478bd9Sstevel@tonic-gate 
23407c478bd9Sstevel@tonic-gate 	default:
23417c478bd9Sstevel@tonic-gate 		bad = 1;
23427c478bd9Sstevel@tonic-gate 		break;
23437c478bd9Sstevel@tonic-gate 	}
23447c478bd9Sstevel@tonic-gate 
23457c478bd9Sstevel@tonic-gate 	cmn_err(level, "!%s%d: %s %s device; service %s%s"+(bad|changed),
23467c478bd9Sstevel@tonic-gate 		ddi_driver_name(fedp->f_dip),
23477c478bd9Sstevel@tonic-gate 		ddi_get_instance(fedp->f_dip),
23487c478bd9Sstevel@tonic-gate 		bad ? "invalid report of fault" : action,
23497c478bd9Sstevel@tonic-gate 		location, still ? "still " : "", servstate);
23507c478bd9Sstevel@tonic-gate 
23517c478bd9Sstevel@tonic-gate 	cmn_err(level, "!%s%d: %s"+(bad|changed),
23527c478bd9Sstevel@tonic-gate 		ddi_driver_name(fedp->f_dip),
23537c478bd9Sstevel@tonic-gate 		ddi_get_instance(fedp->f_dip),
23547c478bd9Sstevel@tonic-gate 		fedp->f_message);
23557c478bd9Sstevel@tonic-gate }
23567c478bd9Sstevel@tonic-gate 
23577c478bd9Sstevel@tonic-gate /*
23587c478bd9Sstevel@tonic-gate  * Platform-settable pointers to fault handler and logger functions.
23597c478bd9Sstevel@tonic-gate  * These are called by the default rootnex event-posting code when
23607c478bd9Sstevel@tonic-gate  * a fault event reaches rootnex.
23617c478bd9Sstevel@tonic-gate  */
23627c478bd9Sstevel@tonic-gate void (*plat_fault_handler)(dev_info_t *, struct ddi_fault_event_data *) =
23637c478bd9Sstevel@tonic-gate 	i_ddi_fault_handler;
23647c478bd9Sstevel@tonic-gate void (*plat_fault_logger)(dev_info_t *, struct ddi_fault_event_data *) =
23657c478bd9Sstevel@tonic-gate 	i_ddi_fault_logger;
23667c478bd9Sstevel@tonic-gate 
23677c478bd9Sstevel@tonic-gate /*
23687c478bd9Sstevel@tonic-gate  * Rootnex event definitions ...
23697c478bd9Sstevel@tonic-gate  */
23707c478bd9Sstevel@tonic-gate enum rootnex_event_tags {
23717c478bd9Sstevel@tonic-gate 	ROOTNEX_FAULT_EVENT
23727c478bd9Sstevel@tonic-gate };
23737c478bd9Sstevel@tonic-gate static ndi_event_hdl_t rootnex_event_hdl;
23747c478bd9Sstevel@tonic-gate static ndi_event_definition_t rootnex_event_set[] = {
23757c478bd9Sstevel@tonic-gate 	{
23767c478bd9Sstevel@tonic-gate 		ROOTNEX_FAULT_EVENT,
23777c478bd9Sstevel@tonic-gate 		DDI_DEVI_FAULT_EVENT,
23787c478bd9Sstevel@tonic-gate 		EPL_INTERRUPT,
23797c478bd9Sstevel@tonic-gate 		NDI_EVENT_POST_TO_ALL
23807c478bd9Sstevel@tonic-gate 	}
23817c478bd9Sstevel@tonic-gate };
23827c478bd9Sstevel@tonic-gate static ndi_event_set_t rootnex_events = {
23837c478bd9Sstevel@tonic-gate 	NDI_EVENTS_REV1,
23847c478bd9Sstevel@tonic-gate 	sizeof (rootnex_event_set) / sizeof (rootnex_event_set[0]),
23857c478bd9Sstevel@tonic-gate 	rootnex_event_set
23867c478bd9Sstevel@tonic-gate };
23877c478bd9Sstevel@tonic-gate 
23887c478bd9Sstevel@tonic-gate /*
23897c478bd9Sstevel@tonic-gate  * Initialize rootnex event handle
23907c478bd9Sstevel@tonic-gate  */
23917c478bd9Sstevel@tonic-gate void
23927c478bd9Sstevel@tonic-gate i_ddi_rootnex_init_events(dev_info_t *dip)
23937c478bd9Sstevel@tonic-gate {
23947c478bd9Sstevel@tonic-gate 	if (ndi_event_alloc_hdl(dip, (ddi_iblock_cookie_t)(LOCK_LEVEL-1),
23957c478bd9Sstevel@tonic-gate 	    &rootnex_event_hdl, NDI_SLEEP) == NDI_SUCCESS) {
23967c478bd9Sstevel@tonic-gate 		if (ndi_event_bind_set(rootnex_event_hdl,
23977c478bd9Sstevel@tonic-gate 		    &rootnex_events, NDI_SLEEP) != NDI_SUCCESS) {
23987c478bd9Sstevel@tonic-gate 			(void) ndi_event_free_hdl(rootnex_event_hdl);
23997c478bd9Sstevel@tonic-gate 			rootnex_event_hdl = NULL;
24007c478bd9Sstevel@tonic-gate 		}
24017c478bd9Sstevel@tonic-gate 	}
24027c478bd9Sstevel@tonic-gate }
24037c478bd9Sstevel@tonic-gate 
24047c478bd9Sstevel@tonic-gate /*
24057c478bd9Sstevel@tonic-gate  *      Event-handling functions for rootnex
24067c478bd9Sstevel@tonic-gate  *      These provide the standard implementation of fault handling
24077c478bd9Sstevel@tonic-gate  */
24087c478bd9Sstevel@tonic-gate /*ARGSUSED*/
24097c478bd9Sstevel@tonic-gate int
24107c478bd9Sstevel@tonic-gate i_ddi_rootnex_get_eventcookie(dev_info_t *dip, dev_info_t *rdip,
24117c478bd9Sstevel@tonic-gate 	char *eventname, ddi_eventcookie_t *cookiep)
24127c478bd9Sstevel@tonic-gate {
24137c478bd9Sstevel@tonic-gate 	if (rootnex_event_hdl == NULL)
24147c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
24157c478bd9Sstevel@tonic-gate 	return (ndi_event_retrieve_cookie(rootnex_event_hdl, rdip, eventname,
24167c478bd9Sstevel@tonic-gate 		cookiep, NDI_EVENT_NOPASS));
24177c478bd9Sstevel@tonic-gate }
24187c478bd9Sstevel@tonic-gate 
24197c478bd9Sstevel@tonic-gate /*ARGSUSED*/
24207c478bd9Sstevel@tonic-gate int
24217c478bd9Sstevel@tonic-gate i_ddi_rootnex_add_eventcall(dev_info_t *dip, dev_info_t *rdip,
24227c478bd9Sstevel@tonic-gate 	ddi_eventcookie_t eventid, void (*handler)(dev_info_t *dip,
24237c478bd9Sstevel@tonic-gate 	ddi_eventcookie_t event, void *arg, void *impl_data), void *arg,
24247c478bd9Sstevel@tonic-gate 	ddi_callback_id_t *cb_id)
24257c478bd9Sstevel@tonic-gate {
24267c478bd9Sstevel@tonic-gate 	if (rootnex_event_hdl == NULL)
24277c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
24287c478bd9Sstevel@tonic-gate 	return (ndi_event_add_callback(rootnex_event_hdl, rdip,
24297c478bd9Sstevel@tonic-gate 		eventid, handler, arg, NDI_SLEEP, cb_id));
24307c478bd9Sstevel@tonic-gate }
24317c478bd9Sstevel@tonic-gate 
24327c478bd9Sstevel@tonic-gate /*ARGSUSED*/
24337c478bd9Sstevel@tonic-gate int
24347c478bd9Sstevel@tonic-gate i_ddi_rootnex_remove_eventcall(dev_info_t *dip, ddi_callback_id_t cb_id)
24357c478bd9Sstevel@tonic-gate {
24367c478bd9Sstevel@tonic-gate 	if (rootnex_event_hdl == NULL)
24377c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
24387c478bd9Sstevel@tonic-gate 
24397c478bd9Sstevel@tonic-gate 	return (ndi_event_remove_callback(rootnex_event_hdl, cb_id));
24407c478bd9Sstevel@tonic-gate }
24417c478bd9Sstevel@tonic-gate 
24427c478bd9Sstevel@tonic-gate /*ARGSUSED*/
24437c478bd9Sstevel@tonic-gate int
24447c478bd9Sstevel@tonic-gate i_ddi_rootnex_post_event(dev_info_t *dip, dev_info_t *rdip,
24457c478bd9Sstevel@tonic-gate 	ddi_eventcookie_t eventid, void *impl_data)
24467c478bd9Sstevel@tonic-gate {
24477c478bd9Sstevel@tonic-gate 	int tag;
24487c478bd9Sstevel@tonic-gate 
24497c478bd9Sstevel@tonic-gate 	if (rootnex_event_hdl == NULL)
24507c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
24517c478bd9Sstevel@tonic-gate 
24527c478bd9Sstevel@tonic-gate 	tag = ndi_event_cookie_to_tag(rootnex_event_hdl, eventid);
24537c478bd9Sstevel@tonic-gate 	if (tag == ROOTNEX_FAULT_EVENT) {
24547c478bd9Sstevel@tonic-gate 		(*plat_fault_handler)(rdip, impl_data);
24557c478bd9Sstevel@tonic-gate 		(*plat_fault_logger)(rdip, impl_data);
24567c478bd9Sstevel@tonic-gate 	}
24577c478bd9Sstevel@tonic-gate 	return (ndi_event_run_callbacks(rootnex_event_hdl, rdip,
24587c478bd9Sstevel@tonic-gate 		eventid, impl_data));
24597c478bd9Sstevel@tonic-gate }
2460