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