xref: /titanic_53/usr/src/uts/common/os/devcfg.c (revision facf4a8d7b59fde89a8662b4f4c73a758e6c402c)
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
5144dfaa9Scth  * Common Development and Distribution License (the "License").
6144dfaa9Scth  * 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 /*
22245c82d9Scth  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
267c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
277c478bd9Sstevel@tonic-gate 
287c478bd9Sstevel@tonic-gate #include <sys/note.h>
297c478bd9Sstevel@tonic-gate #include <sys/t_lock.h>
307c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
317c478bd9Sstevel@tonic-gate #include <sys/instance.h>
327c478bd9Sstevel@tonic-gate #include <sys/conf.h>
337c478bd9Sstevel@tonic-gate #include <sys/stat.h>
347c478bd9Sstevel@tonic-gate #include <sys/ddi.h>
357c478bd9Sstevel@tonic-gate #include <sys/hwconf.h>
367c478bd9Sstevel@tonic-gate #include <sys/sunddi.h>
377c478bd9Sstevel@tonic-gate #include <sys/sunndi.h>
387c478bd9Sstevel@tonic-gate #include <sys/ddi_impldefs.h>
397c478bd9Sstevel@tonic-gate #include <sys/ndi_impldefs.h>
407c478bd9Sstevel@tonic-gate #include <sys/modctl.h>
417c478bd9Sstevel@tonic-gate #include <sys/dacf.h>
427c478bd9Sstevel@tonic-gate #include <sys/promif.h>
437c478bd9Sstevel@tonic-gate #include <sys/cpuvar.h>
447c478bd9Sstevel@tonic-gate #include <sys/pathname.h>
457c478bd9Sstevel@tonic-gate #include <sys/taskq.h>
467c478bd9Sstevel@tonic-gate #include <sys/sysevent.h>
477c478bd9Sstevel@tonic-gate #include <sys/sunmdi.h>
487c478bd9Sstevel@tonic-gate #include <sys/stream.h>
497c478bd9Sstevel@tonic-gate #include <sys/strsubr.h>
507c478bd9Sstevel@tonic-gate #include <sys/fs/snode.h>
517c478bd9Sstevel@tonic-gate #include <sys/fs/dv_node.h>
52*facf4a8dSllai1 #include <sys/reboot.h>
537c478bd9Sstevel@tonic-gate 
547c478bd9Sstevel@tonic-gate #ifdef DEBUG
557c478bd9Sstevel@tonic-gate int ddidebug = DDI_AUDIT;
567c478bd9Sstevel@tonic-gate #else
577c478bd9Sstevel@tonic-gate int ddidebug = 0;
587c478bd9Sstevel@tonic-gate #endif
597c478bd9Sstevel@tonic-gate 
607c478bd9Sstevel@tonic-gate #define	MT_CONFIG_OP	0
617c478bd9Sstevel@tonic-gate #define	MT_UNCONFIG_OP	1
627c478bd9Sstevel@tonic-gate 
637c478bd9Sstevel@tonic-gate /* Multi-threaded configuration */
647c478bd9Sstevel@tonic-gate struct mt_config_handle {
657c478bd9Sstevel@tonic-gate 	kmutex_t mtc_lock;
667c478bd9Sstevel@tonic-gate 	kcondvar_t mtc_cv;
677c478bd9Sstevel@tonic-gate 	int mtc_thr_count;
687c478bd9Sstevel@tonic-gate 	dev_info_t *mtc_pdip;	/* parent dip for mt_config_children */
697c478bd9Sstevel@tonic-gate 	dev_info_t **mtc_fdip;	/* "a" dip where unconfigure failed */
707c478bd9Sstevel@tonic-gate 	major_t mtc_parmajor;	/* parent major for mt_config_driver */
717c478bd9Sstevel@tonic-gate 	major_t mtc_major;
727c478bd9Sstevel@tonic-gate 	int mtc_flags;
737c478bd9Sstevel@tonic-gate 	int mtc_op;		/* config or unconfig */
747c478bd9Sstevel@tonic-gate 	int mtc_error;		/* operation error */
757c478bd9Sstevel@tonic-gate 	struct brevq_node **mtc_brevqp;	/* outstanding branch events queue */
767c478bd9Sstevel@tonic-gate #ifdef DEBUG
777c478bd9Sstevel@tonic-gate 	int total_time;
787c478bd9Sstevel@tonic-gate 	timestruc_t start_time;
797c478bd9Sstevel@tonic-gate #endif /* DEBUG */
807c478bd9Sstevel@tonic-gate };
817c478bd9Sstevel@tonic-gate 
827c478bd9Sstevel@tonic-gate struct devi_nodeid {
83fa9e4066Sahrens 	pnode_t nodeid;
847c478bd9Sstevel@tonic-gate 	dev_info_t *dip;
857c478bd9Sstevel@tonic-gate 	struct devi_nodeid *next;
867c478bd9Sstevel@tonic-gate };
877c478bd9Sstevel@tonic-gate 
887c478bd9Sstevel@tonic-gate struct devi_nodeid_list {
897c478bd9Sstevel@tonic-gate 	kmutex_t dno_lock;		/* Protects other fields */
907c478bd9Sstevel@tonic-gate 	struct devi_nodeid *dno_head;	/* list of devi nodeid elements */
917c478bd9Sstevel@tonic-gate 	struct devi_nodeid *dno_free;	/* Free list */
927c478bd9Sstevel@tonic-gate 	uint_t dno_list_length;		/* number of dips in list */
937c478bd9Sstevel@tonic-gate };
947c478bd9Sstevel@tonic-gate 
957c478bd9Sstevel@tonic-gate /* used to keep track of branch remove events to be generated */
967c478bd9Sstevel@tonic-gate struct brevq_node {
97245c82d9Scth 	char *brn_deviname;
98245c82d9Scth 	struct brevq_node *brn_sibling;
99245c82d9Scth 	struct brevq_node *brn_child;
1007c478bd9Sstevel@tonic-gate };
1017c478bd9Sstevel@tonic-gate 
1027c478bd9Sstevel@tonic-gate static struct devi_nodeid_list devi_nodeid_list;
1037c478bd9Sstevel@tonic-gate static struct devi_nodeid_list *devimap = &devi_nodeid_list;
1047c478bd9Sstevel@tonic-gate 
1057c478bd9Sstevel@tonic-gate /*
1067c478bd9Sstevel@tonic-gate  * Well known nodes which are attached first at boot time.
1077c478bd9Sstevel@tonic-gate  */
1087c478bd9Sstevel@tonic-gate dev_info_t *top_devinfo;		/* root of device tree */
1097c478bd9Sstevel@tonic-gate dev_info_t *options_dip;
1107c478bd9Sstevel@tonic-gate dev_info_t *pseudo_dip;
1117c478bd9Sstevel@tonic-gate dev_info_t *clone_dip;
1127c478bd9Sstevel@tonic-gate dev_info_t *scsi_vhci_dip;		/* MPXIO dip */
1137c478bd9Sstevel@tonic-gate major_t clone_major;
1147c478bd9Sstevel@tonic-gate 
115*facf4a8dSllai1 /*
116*facf4a8dSllai1  * A non-global zone's /dev is derived from the device tree.
117*facf4a8dSllai1  * This generation number serves to indicate when a zone's
118*facf4a8dSllai1  * /dev may need to be updated.
119*facf4a8dSllai1  */
120*facf4a8dSllai1 volatile ulong_t devtree_gen;		/* generation number */
121*facf4a8dSllai1 
1227c478bd9Sstevel@tonic-gate /* block all future dev_info state changes */
1237c478bd9Sstevel@tonic-gate static hrtime_t volatile devinfo_freeze = 0;
1247c478bd9Sstevel@tonic-gate 
1257c478bd9Sstevel@tonic-gate /* number of dev_info attaches/detaches currently in progress */
1267c478bd9Sstevel@tonic-gate static ulong_t devinfo_attach_detach = 0;
1277c478bd9Sstevel@tonic-gate 
1287c478bd9Sstevel@tonic-gate extern kmutex_t global_vhci_lock;
1297c478bd9Sstevel@tonic-gate 
130*facf4a8dSllai1 /* bitset of DS_SYSAVAIL & DS_RECONFIG - no races, no lock */
131*facf4a8dSllai1 static int devname_state = 0;
132*facf4a8dSllai1 
1337c478bd9Sstevel@tonic-gate /*
1347c478bd9Sstevel@tonic-gate  * The devinfo snapshot cache and related variables.
1357c478bd9Sstevel@tonic-gate  * The only field in the di_cache structure that needs initialization
1367c478bd9Sstevel@tonic-gate  * is the mutex (cache_lock). However, since this is an adaptive mutex
1377c478bd9Sstevel@tonic-gate  * (MUTEX_DEFAULT) - it is automatically initialized by being allocated
1387c478bd9Sstevel@tonic-gate  * in zeroed memory (static storage class). Therefore no explicit
1397c478bd9Sstevel@tonic-gate  * initialization of the di_cache structure is needed.
1407c478bd9Sstevel@tonic-gate  */
1417c478bd9Sstevel@tonic-gate struct di_cache	di_cache = {1};
1427c478bd9Sstevel@tonic-gate int		di_cache_debug = 0;
1437c478bd9Sstevel@tonic-gate 
1447c478bd9Sstevel@tonic-gate /* For ddvis, which needs pseudo children under PCI */
1457c478bd9Sstevel@tonic-gate int pci_allow_pseudo_children = 0;
1467c478bd9Sstevel@tonic-gate 
1477c478bd9Sstevel@tonic-gate /*
1487c478bd9Sstevel@tonic-gate  * The following switch is for service people, in case a
1497c478bd9Sstevel@tonic-gate  * 3rd party driver depends on identify(9e) being called.
1507c478bd9Sstevel@tonic-gate  */
1517c478bd9Sstevel@tonic-gate int identify_9e = 0;
1527c478bd9Sstevel@tonic-gate 
1537c478bd9Sstevel@tonic-gate int mtc_off;					/* turn off mt config */
1547c478bd9Sstevel@tonic-gate 
1557c478bd9Sstevel@tonic-gate static kmem_cache_t *ddi_node_cache;		/* devinfo node cache */
1567c478bd9Sstevel@tonic-gate static devinfo_log_header_t *devinfo_audit_log;	/* devinfo log */
1577c478bd9Sstevel@tonic-gate static int devinfo_log_size;			/* size in pages */
1587c478bd9Sstevel@tonic-gate 
1597c478bd9Sstevel@tonic-gate static int lookup_compatible(dev_info_t *, uint_t);
1607c478bd9Sstevel@tonic-gate static char *encode_composite_string(char **, uint_t, size_t *, uint_t);
1617c478bd9Sstevel@tonic-gate static void link_to_driver_list(dev_info_t *);
1627c478bd9Sstevel@tonic-gate static void unlink_from_driver_list(dev_info_t *);
1637c478bd9Sstevel@tonic-gate static void add_to_dn_list(struct devnames *, dev_info_t *);
1647c478bd9Sstevel@tonic-gate static void remove_from_dn_list(struct devnames *, dev_info_t *);
1657c478bd9Sstevel@tonic-gate static dev_info_t *find_child_by_callback(dev_info_t *, char *, char *,
1667c478bd9Sstevel@tonic-gate     int (*)(dev_info_t *, char *, int));
1677c478bd9Sstevel@tonic-gate static dev_info_t *find_duplicate_child();
1687c478bd9Sstevel@tonic-gate static void add_global_props(dev_info_t *);
1697c478bd9Sstevel@tonic-gate static void remove_global_props(dev_info_t *);
1707c478bd9Sstevel@tonic-gate static int uninit_node(dev_info_t *);
1717c478bd9Sstevel@tonic-gate static void da_log_init(void);
1727c478bd9Sstevel@tonic-gate static void da_log_enter(dev_info_t *);
1737c478bd9Sstevel@tonic-gate static int walk_devs(dev_info_t *, int (*f)(dev_info_t *, void *), void *, int);
1747c478bd9Sstevel@tonic-gate static int reset_nexus_flags(dev_info_t *, void *);
1757c478bd9Sstevel@tonic-gate static void ddi_optimize_dtree(dev_info_t *);
1767c478bd9Sstevel@tonic-gate static int is_leaf_node(dev_info_t *);
1777c478bd9Sstevel@tonic-gate static struct mt_config_handle *mt_config_init(dev_info_t *, dev_info_t **,
1787c478bd9Sstevel@tonic-gate     int, major_t, int, struct brevq_node **);
1797c478bd9Sstevel@tonic-gate static void mt_config_children(struct mt_config_handle *);
1807c478bd9Sstevel@tonic-gate static void mt_config_driver(struct mt_config_handle *);
1817c478bd9Sstevel@tonic-gate static int mt_config_fini(struct mt_config_handle *);
1827c478bd9Sstevel@tonic-gate static int devi_unconfig_common(dev_info_t *, dev_info_t **, int, major_t,
1837c478bd9Sstevel@tonic-gate     struct brevq_node **);
1847c478bd9Sstevel@tonic-gate static int
1857c478bd9Sstevel@tonic-gate ndi_devi_config_obp_args(dev_info_t *parent, char *devnm,
1867c478bd9Sstevel@tonic-gate     dev_info_t **childp, int flags);
1879d3d2ed0Shiremath static void i_link_vhci_node(dev_info_t *);
1885e3986cbScth static void ndi_devi_exit_and_wait(dev_info_t *dip,
1895e3986cbScth     int circular, clock_t end_time);
1907c478bd9Sstevel@tonic-gate 
1917c478bd9Sstevel@tonic-gate /*
1927c478bd9Sstevel@tonic-gate  * dev_info cache and node management
1937c478bd9Sstevel@tonic-gate  */
1947c478bd9Sstevel@tonic-gate 
1957c478bd9Sstevel@tonic-gate /* initialize dev_info node cache */
1967c478bd9Sstevel@tonic-gate void
1977c478bd9Sstevel@tonic-gate i_ddi_node_cache_init()
1987c478bd9Sstevel@tonic-gate {
1997c478bd9Sstevel@tonic-gate 	ASSERT(ddi_node_cache == NULL);
2007c478bd9Sstevel@tonic-gate 	ddi_node_cache = kmem_cache_create("dev_info_node_cache",
2017c478bd9Sstevel@tonic-gate 	    sizeof (struct dev_info), 0, NULL, NULL, NULL, NULL, NULL, 0);
2027c478bd9Sstevel@tonic-gate 
2037c478bd9Sstevel@tonic-gate 	if (ddidebug & DDI_AUDIT)
2047c478bd9Sstevel@tonic-gate 		da_log_init();
2057c478bd9Sstevel@tonic-gate }
2067c478bd9Sstevel@tonic-gate 
2077c478bd9Sstevel@tonic-gate /*
2087c478bd9Sstevel@tonic-gate  * Allocating a dev_info node, callable from interrupt context with KM_NOSLEEP
2097c478bd9Sstevel@tonic-gate  * The allocated node has a reference count of 0.
2107c478bd9Sstevel@tonic-gate  */
2117c478bd9Sstevel@tonic-gate dev_info_t *
212fa9e4066Sahrens i_ddi_alloc_node(dev_info_t *pdip, char *node_name, pnode_t nodeid,
2137c478bd9Sstevel@tonic-gate     int instance, ddi_prop_t *sys_prop, int flag)
2147c478bd9Sstevel@tonic-gate {
2157c478bd9Sstevel@tonic-gate 	struct dev_info *devi;
2167c478bd9Sstevel@tonic-gate 	struct devi_nodeid *elem;
2177c478bd9Sstevel@tonic-gate 	static char failed[] = "i_ddi_alloc_node: out of memory";
2187c478bd9Sstevel@tonic-gate 
2197c478bd9Sstevel@tonic-gate 	ASSERT(node_name != NULL);
2207c478bd9Sstevel@tonic-gate 
2217c478bd9Sstevel@tonic-gate 	if ((devi = kmem_cache_alloc(ddi_node_cache, flag)) == NULL) {
2227c478bd9Sstevel@tonic-gate 		cmn_err(CE_NOTE, failed);
2237c478bd9Sstevel@tonic-gate 		return (NULL);
2247c478bd9Sstevel@tonic-gate 	}
2257c478bd9Sstevel@tonic-gate 
2267c478bd9Sstevel@tonic-gate 	bzero(devi, sizeof (struct dev_info));
2277c478bd9Sstevel@tonic-gate 
2287c478bd9Sstevel@tonic-gate 	if (devinfo_audit_log) {
2297c478bd9Sstevel@tonic-gate 		devi->devi_audit = kmem_zalloc(sizeof (devinfo_audit_t), flag);
2307c478bd9Sstevel@tonic-gate 		if (devi->devi_audit == NULL)
2317c478bd9Sstevel@tonic-gate 			goto fail;
2327c478bd9Sstevel@tonic-gate 	}
2337c478bd9Sstevel@tonic-gate 
2347c478bd9Sstevel@tonic-gate 	if ((devi->devi_node_name = i_ddi_strdup(node_name, flag)) == NULL)
2357c478bd9Sstevel@tonic-gate 		goto fail;
2367c478bd9Sstevel@tonic-gate 	/* default binding name is node name */
2377c478bd9Sstevel@tonic-gate 	devi->devi_binding_name = devi->devi_node_name;
2387c478bd9Sstevel@tonic-gate 	devi->devi_major = (major_t)-1;	/* unbound by default */
2397c478bd9Sstevel@tonic-gate 
2407c478bd9Sstevel@tonic-gate 	/*
2417c478bd9Sstevel@tonic-gate 	 * Make a copy of system property
2427c478bd9Sstevel@tonic-gate 	 */
2437c478bd9Sstevel@tonic-gate 	if (sys_prop &&
2447c478bd9Sstevel@tonic-gate 	    (devi->devi_sys_prop_ptr = i_ddi_prop_list_dup(sys_prop, flag))
2457c478bd9Sstevel@tonic-gate 	    == NULL)
2467c478bd9Sstevel@tonic-gate 		goto fail;
2477c478bd9Sstevel@tonic-gate 
2487c478bd9Sstevel@tonic-gate 	/*
2497c478bd9Sstevel@tonic-gate 	 * Assign devi_nodeid, devi_node_class, devi_node_attributes
2507c478bd9Sstevel@tonic-gate 	 * according to the following algorithm:
2517c478bd9Sstevel@tonic-gate 	 *
2527c478bd9Sstevel@tonic-gate 	 * nodeid arg			node class		node attributes
2537c478bd9Sstevel@tonic-gate 	 *
2547c478bd9Sstevel@tonic-gate 	 * DEVI_PSEUDO_NODEID		DDI_NC_PSEUDO		A
2557c478bd9Sstevel@tonic-gate 	 * DEVI_SID_NODEID		DDI_NC_PSEUDO		A,P
2567c478bd9Sstevel@tonic-gate 	 * other			DDI_NC_PROM		P
2577c478bd9Sstevel@tonic-gate 	 *
2587c478bd9Sstevel@tonic-gate 	 * Where A = DDI_AUTO_ASSIGNED_NODEID (auto-assign a nodeid)
2597c478bd9Sstevel@tonic-gate 	 * and	 P = DDI_PERSISTENT
2607c478bd9Sstevel@tonic-gate 	 *
2617c478bd9Sstevel@tonic-gate 	 * auto-assigned nodeids are also auto-freed.
2627c478bd9Sstevel@tonic-gate 	 */
2637c478bd9Sstevel@tonic-gate 	switch (nodeid) {
2647c478bd9Sstevel@tonic-gate 	case DEVI_SID_NODEID:
2657c478bd9Sstevel@tonic-gate 		devi->devi_node_attributes = DDI_PERSISTENT;
2667c478bd9Sstevel@tonic-gate 		if ((elem = kmem_zalloc(sizeof (*elem), flag)) == NULL)
2677c478bd9Sstevel@tonic-gate 			goto fail;
2687c478bd9Sstevel@tonic-gate 		/*FALLTHROUGH*/
2697c478bd9Sstevel@tonic-gate 	case DEVI_PSEUDO_NODEID:
2707c478bd9Sstevel@tonic-gate 		devi->devi_node_attributes |= DDI_AUTO_ASSIGNED_NODEID;
2717c478bd9Sstevel@tonic-gate 		devi->devi_node_class = DDI_NC_PSEUDO;
2727c478bd9Sstevel@tonic-gate 		if (impl_ddi_alloc_nodeid(&devi->devi_nodeid)) {
2737c478bd9Sstevel@tonic-gate 			panic("i_ddi_alloc_node: out of nodeids");
2747c478bd9Sstevel@tonic-gate 			/*NOTREACHED*/
2757c478bd9Sstevel@tonic-gate 		}
2767c478bd9Sstevel@tonic-gate 		break;
2777c478bd9Sstevel@tonic-gate 	default:
2787c478bd9Sstevel@tonic-gate 		if ((elem = kmem_zalloc(sizeof (*elem), flag)) == NULL)
2797c478bd9Sstevel@tonic-gate 			goto fail;
2807c478bd9Sstevel@tonic-gate 		/*
2817c478bd9Sstevel@tonic-gate 		 * the nodetype is 'prom', try to 'take' the nodeid now.
2827c478bd9Sstevel@tonic-gate 		 * This requires memory allocation, so check for failure.
2837c478bd9Sstevel@tonic-gate 		 */
2847c478bd9Sstevel@tonic-gate 		if (impl_ddi_take_nodeid(nodeid, flag) != 0) {
2857c478bd9Sstevel@tonic-gate 			kmem_free(elem, sizeof (*elem));
2867c478bd9Sstevel@tonic-gate 			goto fail;
2877c478bd9Sstevel@tonic-gate 		}
2887c478bd9Sstevel@tonic-gate 
2897c478bd9Sstevel@tonic-gate 		devi->devi_nodeid = nodeid;
2907c478bd9Sstevel@tonic-gate 		devi->devi_node_class = DDI_NC_PROM;
2917c478bd9Sstevel@tonic-gate 		devi->devi_node_attributes = DDI_PERSISTENT;
2927c478bd9Sstevel@tonic-gate 
2937c478bd9Sstevel@tonic-gate 	}
2947c478bd9Sstevel@tonic-gate 
2957c478bd9Sstevel@tonic-gate 	if (ndi_dev_is_persistent_node((dev_info_t *)devi)) {
2967c478bd9Sstevel@tonic-gate 		mutex_enter(&devimap->dno_lock);
2977c478bd9Sstevel@tonic-gate 		elem->next = devimap->dno_free;
2987c478bd9Sstevel@tonic-gate 		devimap->dno_free = elem;
2997c478bd9Sstevel@tonic-gate 		mutex_exit(&devimap->dno_lock);
3007c478bd9Sstevel@tonic-gate 	}
3017c478bd9Sstevel@tonic-gate 
3027c478bd9Sstevel@tonic-gate 	/*
3037c478bd9Sstevel@tonic-gate 	 * Instance is normally initialized to -1. In a few special
3047c478bd9Sstevel@tonic-gate 	 * cases, the caller may specify an instance (e.g. CPU nodes).
3057c478bd9Sstevel@tonic-gate 	 */
3067c478bd9Sstevel@tonic-gate 	devi->devi_instance = instance;
3077c478bd9Sstevel@tonic-gate 
3087c478bd9Sstevel@tonic-gate 	/*
3097c478bd9Sstevel@tonic-gate 	 * set parent and bus_ctl parent
3107c478bd9Sstevel@tonic-gate 	 */
3117c478bd9Sstevel@tonic-gate 	devi->devi_parent = DEVI(pdip);
3127c478bd9Sstevel@tonic-gate 	devi->devi_bus_ctl = DEVI(pdip);
3137c478bd9Sstevel@tonic-gate 
3147c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT,
3157c478bd9Sstevel@tonic-gate 	    "i_ddi_alloc_node: name=%s id=%d\n", node_name, devi->devi_nodeid));
3167c478bd9Sstevel@tonic-gate 
3177c478bd9Sstevel@tonic-gate 	cv_init(&(devi->devi_cv), NULL, CV_DEFAULT, NULL);
3187c478bd9Sstevel@tonic-gate 	mutex_init(&(devi->devi_lock), NULL, MUTEX_DEFAULT, NULL);
3197c478bd9Sstevel@tonic-gate 	mutex_init(&(devi->devi_pm_lock), NULL, MUTEX_DEFAULT, NULL);
3207c478bd9Sstevel@tonic-gate 	mutex_init(&(devi->devi_pm_busy_lock), NULL, MUTEX_DEFAULT, NULL);
3217c478bd9Sstevel@tonic-gate 
3227c478bd9Sstevel@tonic-gate 	i_ddi_set_node_state((dev_info_t *)devi, DS_PROTO);
3237c478bd9Sstevel@tonic-gate 	da_log_enter((dev_info_t *)devi);
3247c478bd9Sstevel@tonic-gate 	return ((dev_info_t *)devi);
3257c478bd9Sstevel@tonic-gate 
3267c478bd9Sstevel@tonic-gate fail:
3277c478bd9Sstevel@tonic-gate 	if (devi->devi_sys_prop_ptr)
3287c478bd9Sstevel@tonic-gate 		i_ddi_prop_list_delete(devi->devi_sys_prop_ptr);
3297c478bd9Sstevel@tonic-gate 	if (devi->devi_node_name)
3307c478bd9Sstevel@tonic-gate 		kmem_free(devi->devi_node_name, strlen(node_name) + 1);
3317c478bd9Sstevel@tonic-gate 	if (devi->devi_audit)
3327c478bd9Sstevel@tonic-gate 		kmem_free(devi->devi_audit, sizeof (devinfo_audit_t));
3337c478bd9Sstevel@tonic-gate 	kmem_cache_free(ddi_node_cache, devi);
3347c478bd9Sstevel@tonic-gate 	cmn_err(CE_NOTE, failed);
3357c478bd9Sstevel@tonic-gate 	return (NULL);
3367c478bd9Sstevel@tonic-gate }
3377c478bd9Sstevel@tonic-gate 
3387c478bd9Sstevel@tonic-gate /*
3397c478bd9Sstevel@tonic-gate  * free a dev_info structure.
3407c478bd9Sstevel@tonic-gate  * NB. Not callable from interrupt since impl_ddi_free_nodeid may block.
3417c478bd9Sstevel@tonic-gate  */
3427c478bd9Sstevel@tonic-gate void
3437c478bd9Sstevel@tonic-gate i_ddi_free_node(dev_info_t *dip)
3447c478bd9Sstevel@tonic-gate {
3457c478bd9Sstevel@tonic-gate 	struct dev_info *devi = DEVI(dip);
3467c478bd9Sstevel@tonic-gate 	struct devi_nodeid *elem;
3477c478bd9Sstevel@tonic-gate 
3487c478bd9Sstevel@tonic-gate 	ASSERT(devi->devi_ref == 0);
3497c478bd9Sstevel@tonic-gate 	ASSERT(devi->devi_addr == NULL);
3507c478bd9Sstevel@tonic-gate 	ASSERT(devi->devi_node_state == DS_PROTO);
3517c478bd9Sstevel@tonic-gate 	ASSERT(devi->devi_child == NULL);
3527c478bd9Sstevel@tonic-gate 
353fe9fe9fbScth 	/* free devi_addr_buf allocated by ddi_set_name_addr() */
354fe9fe9fbScth 	if (devi->devi_addr_buf)
355fe9fe9fbScth 		kmem_free(devi->devi_addr_buf, 2 * MAXNAMELEN);
3567c478bd9Sstevel@tonic-gate 
3577c478bd9Sstevel@tonic-gate 	if (i_ndi_dev_is_auto_assigned_node(dip))
3587c478bd9Sstevel@tonic-gate 		impl_ddi_free_nodeid(DEVI(dip)->devi_nodeid);
3597c478bd9Sstevel@tonic-gate 
3607c478bd9Sstevel@tonic-gate 	if (ndi_dev_is_persistent_node(dip)) {
3617c478bd9Sstevel@tonic-gate 		mutex_enter(&devimap->dno_lock);
3627c478bd9Sstevel@tonic-gate 		ASSERT(devimap->dno_free);
3637c478bd9Sstevel@tonic-gate 		elem = devimap->dno_free;
3647c478bd9Sstevel@tonic-gate 		devimap->dno_free = elem->next;
3657c478bd9Sstevel@tonic-gate 		mutex_exit(&devimap->dno_lock);
3667c478bd9Sstevel@tonic-gate 		kmem_free(elem, sizeof (*elem));
3677c478bd9Sstevel@tonic-gate 	}
3687c478bd9Sstevel@tonic-gate 
3697c478bd9Sstevel@tonic-gate 	if (DEVI(dip)->devi_compat_names)
3707c478bd9Sstevel@tonic-gate 		kmem_free(DEVI(dip)->devi_compat_names,
3717c478bd9Sstevel@tonic-gate 		    DEVI(dip)->devi_compat_length);
3727c478bd9Sstevel@tonic-gate 
3737c478bd9Sstevel@tonic-gate 	ddi_prop_remove_all(dip);	/* remove driver properties */
3747c478bd9Sstevel@tonic-gate 	if (devi->devi_sys_prop_ptr)
3757c478bd9Sstevel@tonic-gate 		i_ddi_prop_list_delete(devi->devi_sys_prop_ptr);
3767c478bd9Sstevel@tonic-gate 	if (devi->devi_hw_prop_ptr)
3777c478bd9Sstevel@tonic-gate 		i_ddi_prop_list_delete(devi->devi_hw_prop_ptr);
3787c478bd9Sstevel@tonic-gate 
3797c478bd9Sstevel@tonic-gate 	i_ddi_set_node_state(dip, DS_INVAL);
3807c478bd9Sstevel@tonic-gate 	da_log_enter(dip);
3817c478bd9Sstevel@tonic-gate 	if (devi->devi_audit) {
3827c478bd9Sstevel@tonic-gate 		kmem_free(devi->devi_audit, sizeof (devinfo_audit_t));
3837c478bd9Sstevel@tonic-gate 	}
3847c478bd9Sstevel@tonic-gate 	kmem_free(devi->devi_node_name, strlen(devi->devi_node_name) + 1);
3857c478bd9Sstevel@tonic-gate 	if (devi->devi_device_class)
3867c478bd9Sstevel@tonic-gate 		kmem_free(devi->devi_device_class,
3877c478bd9Sstevel@tonic-gate 		    strlen(devi->devi_device_class) + 1);
3887c478bd9Sstevel@tonic-gate 	cv_destroy(&(devi->devi_cv));
3897c478bd9Sstevel@tonic-gate 	mutex_destroy(&(devi->devi_lock));
3907c478bd9Sstevel@tonic-gate 	mutex_destroy(&(devi->devi_pm_lock));
3917c478bd9Sstevel@tonic-gate 	mutex_destroy(&(devi->devi_pm_busy_lock));
3927c478bd9Sstevel@tonic-gate 
3937c478bd9Sstevel@tonic-gate 	kmem_cache_free(ddi_node_cache, devi);
3947c478bd9Sstevel@tonic-gate }
3957c478bd9Sstevel@tonic-gate 
3967c478bd9Sstevel@tonic-gate 
3977c478bd9Sstevel@tonic-gate /*
3987c478bd9Sstevel@tonic-gate  * Node state transitions
3997c478bd9Sstevel@tonic-gate  */
4007c478bd9Sstevel@tonic-gate 
4017c478bd9Sstevel@tonic-gate /*
4027c478bd9Sstevel@tonic-gate  * Change the node name
4037c478bd9Sstevel@tonic-gate  */
4047c478bd9Sstevel@tonic-gate int
4057c478bd9Sstevel@tonic-gate ndi_devi_set_nodename(dev_info_t *dip, char *name, int flags)
4067c478bd9Sstevel@tonic-gate {
4077c478bd9Sstevel@tonic-gate 	_NOTE(ARGUNUSED(flags))
4087c478bd9Sstevel@tonic-gate 	char *nname, *oname;
4097c478bd9Sstevel@tonic-gate 
4107c478bd9Sstevel@tonic-gate 	ASSERT(dip && name);
4117c478bd9Sstevel@tonic-gate 
4127c478bd9Sstevel@tonic-gate 	oname = DEVI(dip)->devi_node_name;
4137c478bd9Sstevel@tonic-gate 	if (strcmp(oname, name) == 0)
4147c478bd9Sstevel@tonic-gate 		return (DDI_SUCCESS);
4157c478bd9Sstevel@tonic-gate 
4167c478bd9Sstevel@tonic-gate 	/*
4177c478bd9Sstevel@tonic-gate 	 * pcicfg_fix_ethernet requires a name change after node
4187c478bd9Sstevel@tonic-gate 	 * is linked into the tree. When pcicfg is fixed, we
4197c478bd9Sstevel@tonic-gate 	 * should only allow name change in DS_PROTO state.
4207c478bd9Sstevel@tonic-gate 	 */
4217c478bd9Sstevel@tonic-gate 	if (i_ddi_node_state(dip) >= DS_BOUND) {
4227c478bd9Sstevel@tonic-gate 		/*
4237c478bd9Sstevel@tonic-gate 		 * Don't allow name change once node is bound
4247c478bd9Sstevel@tonic-gate 		 */
4257c478bd9Sstevel@tonic-gate 		cmn_err(CE_NOTE,
4267c478bd9Sstevel@tonic-gate 		    "ndi_devi_set_nodename: node already bound dip = %p,"
4277c478bd9Sstevel@tonic-gate 		    " %s -> %s", (void *)dip, ddi_node_name(dip), name);
4287c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
4297c478bd9Sstevel@tonic-gate 	}
4307c478bd9Sstevel@tonic-gate 
4317c478bd9Sstevel@tonic-gate 	nname = i_ddi_strdup(name, KM_SLEEP);
4327c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_node_name = nname;
4337c478bd9Sstevel@tonic-gate 	i_ddi_set_binding_name(dip, nname);
4347c478bd9Sstevel@tonic-gate 	kmem_free(oname, strlen(oname) + 1);
4357c478bd9Sstevel@tonic-gate 
4367c478bd9Sstevel@tonic-gate 	da_log_enter(dip);
4377c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
4387c478bd9Sstevel@tonic-gate }
4397c478bd9Sstevel@tonic-gate 
4407c478bd9Sstevel@tonic-gate void
4417c478bd9Sstevel@tonic-gate i_ddi_add_devimap(dev_info_t *dip)
4427c478bd9Sstevel@tonic-gate {
4437c478bd9Sstevel@tonic-gate 	struct devi_nodeid *elem;
4447c478bd9Sstevel@tonic-gate 
4457c478bd9Sstevel@tonic-gate 	ASSERT(dip);
4467c478bd9Sstevel@tonic-gate 
4477c478bd9Sstevel@tonic-gate 	if (!ndi_dev_is_persistent_node(dip))
4487c478bd9Sstevel@tonic-gate 		return;
4497c478bd9Sstevel@tonic-gate 
4507c478bd9Sstevel@tonic-gate 	ASSERT(ddi_get_parent(dip) == NULL || (DEVI_VHCI_NODE(dip)) ||
4517c478bd9Sstevel@tonic-gate 	    DEVI_BUSY_OWNED(ddi_get_parent(dip)));
4527c478bd9Sstevel@tonic-gate 
4537c478bd9Sstevel@tonic-gate 	mutex_enter(&devimap->dno_lock);
4547c478bd9Sstevel@tonic-gate 
4557c478bd9Sstevel@tonic-gate 	ASSERT(devimap->dno_free);
4567c478bd9Sstevel@tonic-gate 
4577c478bd9Sstevel@tonic-gate 	elem = devimap->dno_free;
4587c478bd9Sstevel@tonic-gate 	devimap->dno_free = elem->next;
4597c478bd9Sstevel@tonic-gate 
4607c478bd9Sstevel@tonic-gate 	elem->nodeid = ddi_get_nodeid(dip);
4617c478bd9Sstevel@tonic-gate 	elem->dip = dip;
4627c478bd9Sstevel@tonic-gate 	elem->next = devimap->dno_head;
4637c478bd9Sstevel@tonic-gate 	devimap->dno_head = elem;
4647c478bd9Sstevel@tonic-gate 
4657c478bd9Sstevel@tonic-gate 	devimap->dno_list_length++;
4667c478bd9Sstevel@tonic-gate 
4677c478bd9Sstevel@tonic-gate 	mutex_exit(&devimap->dno_lock);
4687c478bd9Sstevel@tonic-gate }
4697c478bd9Sstevel@tonic-gate 
4707c478bd9Sstevel@tonic-gate static int
4717c478bd9Sstevel@tonic-gate i_ddi_remove_devimap(dev_info_t *dip)
4727c478bd9Sstevel@tonic-gate {
4737c478bd9Sstevel@tonic-gate 	struct devi_nodeid *prev, *elem;
4747c478bd9Sstevel@tonic-gate 	static const char *fcn = "i_ddi_remove_devimap";
4757c478bd9Sstevel@tonic-gate 
4767c478bd9Sstevel@tonic-gate 	ASSERT(dip);
4777c478bd9Sstevel@tonic-gate 
4787c478bd9Sstevel@tonic-gate 	if (!ndi_dev_is_persistent_node(dip))
4797c478bd9Sstevel@tonic-gate 		return (DDI_SUCCESS);
4807c478bd9Sstevel@tonic-gate 
4817c478bd9Sstevel@tonic-gate 	mutex_enter(&devimap->dno_lock);
4827c478bd9Sstevel@tonic-gate 
4837c478bd9Sstevel@tonic-gate 	/*
4847c478bd9Sstevel@tonic-gate 	 * The following check is done with dno_lock held
4857c478bd9Sstevel@tonic-gate 	 * to prevent race between dip removal and
4867c478bd9Sstevel@tonic-gate 	 * e_ddi_prom_node_to_dip()
4877c478bd9Sstevel@tonic-gate 	 */
4887c478bd9Sstevel@tonic-gate 	if (e_ddi_devi_holdcnt(dip)) {
4897c478bd9Sstevel@tonic-gate 		mutex_exit(&devimap->dno_lock);
4907c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
4917c478bd9Sstevel@tonic-gate 	}
4927c478bd9Sstevel@tonic-gate 
4937c478bd9Sstevel@tonic-gate 	ASSERT(devimap->dno_head);
4947c478bd9Sstevel@tonic-gate 	ASSERT(devimap->dno_list_length > 0);
4957c478bd9Sstevel@tonic-gate 
4967c478bd9Sstevel@tonic-gate 	prev = NULL;
4977c478bd9Sstevel@tonic-gate 	for (elem = devimap->dno_head; elem; elem = elem->next) {
4987c478bd9Sstevel@tonic-gate 		if (elem->dip == dip) {
4997c478bd9Sstevel@tonic-gate 			ASSERT(elem->nodeid == ddi_get_nodeid(dip));
5007c478bd9Sstevel@tonic-gate 			break;
5017c478bd9Sstevel@tonic-gate 		}
5027c478bd9Sstevel@tonic-gate 		prev = elem;
5037c478bd9Sstevel@tonic-gate 	}
5047c478bd9Sstevel@tonic-gate 
5057c478bd9Sstevel@tonic-gate 	if (elem && prev)
5067c478bd9Sstevel@tonic-gate 		prev->next = elem->next;
5077c478bd9Sstevel@tonic-gate 	else if (elem)
5087c478bd9Sstevel@tonic-gate 		devimap->dno_head = elem->next;
5097c478bd9Sstevel@tonic-gate 	else
5107c478bd9Sstevel@tonic-gate 		panic("%s: devinfo node(%p) not found",
5117c478bd9Sstevel@tonic-gate 		    fcn, (void *)dip);
5127c478bd9Sstevel@tonic-gate 
5137c478bd9Sstevel@tonic-gate 	devimap->dno_list_length--;
5147c478bd9Sstevel@tonic-gate 
5157c478bd9Sstevel@tonic-gate 	elem->nodeid = 0;
5167c478bd9Sstevel@tonic-gate 	elem->dip = NULL;
5177c478bd9Sstevel@tonic-gate 
5187c478bd9Sstevel@tonic-gate 	elem->next = devimap->dno_free;
5197c478bd9Sstevel@tonic-gate 	devimap->dno_free = elem;
5207c478bd9Sstevel@tonic-gate 
5217c478bd9Sstevel@tonic-gate 	mutex_exit(&devimap->dno_lock);
5227c478bd9Sstevel@tonic-gate 
5237c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
5247c478bd9Sstevel@tonic-gate }
5257c478bd9Sstevel@tonic-gate 
5267c478bd9Sstevel@tonic-gate /*
5277c478bd9Sstevel@tonic-gate  * Link this node into the devinfo tree and add to orphan list
5287c478bd9Sstevel@tonic-gate  * Not callable from interrupt context
5297c478bd9Sstevel@tonic-gate  */
5307c478bd9Sstevel@tonic-gate static void
5317c478bd9Sstevel@tonic-gate link_node(dev_info_t *dip)
5327c478bd9Sstevel@tonic-gate {
5337c478bd9Sstevel@tonic-gate 	struct dev_info *devi = DEVI(dip);
5347c478bd9Sstevel@tonic-gate 	struct dev_info *parent = devi->devi_parent;
5357c478bd9Sstevel@tonic-gate 	dev_info_t **dipp;
5367c478bd9Sstevel@tonic-gate 
5377c478bd9Sstevel@tonic-gate 	ASSERT(parent);	/* never called for root node */
5387c478bd9Sstevel@tonic-gate 
5397c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT, "link_node: parent = %s child = %s\n",
5407c478bd9Sstevel@tonic-gate 	    parent->devi_node_name, devi->devi_node_name));
5417c478bd9Sstevel@tonic-gate 
5427c478bd9Sstevel@tonic-gate 	/*
5437c478bd9Sstevel@tonic-gate 	 * Hold the global_vhci_lock before linking any direct
5447c478bd9Sstevel@tonic-gate 	 * children of rootnex driver. This special lock protects
5457c478bd9Sstevel@tonic-gate 	 * linking and unlinking for rootnext direct children.
5467c478bd9Sstevel@tonic-gate 	 */
5477c478bd9Sstevel@tonic-gate 	if ((dev_info_t *)parent == ddi_root_node())
5487c478bd9Sstevel@tonic-gate 		mutex_enter(&global_vhci_lock);
5497c478bd9Sstevel@tonic-gate 
5507c478bd9Sstevel@tonic-gate 	/*
5517c478bd9Sstevel@tonic-gate 	 * attach the node to end of the list unless the node is already there
5527c478bd9Sstevel@tonic-gate 	 */
5537c478bd9Sstevel@tonic-gate 	dipp = (dev_info_t **)(&DEVI(parent)->devi_child);
5547c478bd9Sstevel@tonic-gate 	while (*dipp && (*dipp != dip)) {
5557c478bd9Sstevel@tonic-gate 		dipp = (dev_info_t **)(&DEVI(*dipp)->devi_sibling);
5567c478bd9Sstevel@tonic-gate 	}
5577c478bd9Sstevel@tonic-gate 	ASSERT(*dipp == NULL);	/* node is not linked */
5587c478bd9Sstevel@tonic-gate 
5597c478bd9Sstevel@tonic-gate 	/*
5607c478bd9Sstevel@tonic-gate 	 * Now that we are in the tree, update the devi-nodeid map.
5617c478bd9Sstevel@tonic-gate 	 */
5627c478bd9Sstevel@tonic-gate 	i_ddi_add_devimap(dip);
5637c478bd9Sstevel@tonic-gate 
5647c478bd9Sstevel@tonic-gate 	/*
5657c478bd9Sstevel@tonic-gate 	 * This is a temporary workaround for Bug 4618861.
5667c478bd9Sstevel@tonic-gate 	 * We keep the scsi_vhci nexus node on the left side of the devinfo
5677c478bd9Sstevel@tonic-gate 	 * tree (under the root nexus driver), so that virtual nodes under
5687c478bd9Sstevel@tonic-gate 	 * scsi_vhci will be SUSPENDed first and RESUMEd last.  This ensures
5697c478bd9Sstevel@tonic-gate 	 * that the pHCI nodes are active during times when their clients
5707c478bd9Sstevel@tonic-gate 	 * may be depending on them.  This workaround embodies the knowledge
5717c478bd9Sstevel@tonic-gate 	 * that system PM and CPR both traverse the tree left-to-right during
5727c478bd9Sstevel@tonic-gate 	 * SUSPEND and right-to-left during RESUME.
5739d3d2ed0Shiremath 	 * Extending the workaround to IB Nexus/VHCI
5749d3d2ed0Shiremath 	 * driver also.
5757c478bd9Sstevel@tonic-gate 	 */
5767c478bd9Sstevel@tonic-gate 	if (strcmp(devi->devi_name, "scsi_vhci") == 0) {
5777c478bd9Sstevel@tonic-gate 		/* Add scsi_vhci to beginning of list */
5787c478bd9Sstevel@tonic-gate 		ASSERT((dev_info_t *)parent == top_devinfo);
5797c478bd9Sstevel@tonic-gate 		/* scsi_vhci under rootnex */
5807c478bd9Sstevel@tonic-gate 		devi->devi_sibling = parent->devi_child;
5817c478bd9Sstevel@tonic-gate 		parent->devi_child = devi;
5829d3d2ed0Shiremath 	} else if (strcmp(devi->devi_name, "ib") == 0) {
5839d3d2ed0Shiremath 		i_link_vhci_node(dip);
5847c478bd9Sstevel@tonic-gate 	} else {
5857c478bd9Sstevel@tonic-gate 		/* Add to end of list */
5867c478bd9Sstevel@tonic-gate 		*dipp = dip;
5877c478bd9Sstevel@tonic-gate 		DEVI(dip)->devi_sibling = NULL;
5887c478bd9Sstevel@tonic-gate 	}
5897c478bd9Sstevel@tonic-gate 
5907c478bd9Sstevel@tonic-gate 	/*
5917c478bd9Sstevel@tonic-gate 	 * Release the global_vhci_lock before linking any direct
5927c478bd9Sstevel@tonic-gate 	 * children of rootnex driver.
5937c478bd9Sstevel@tonic-gate 	 */
5947c478bd9Sstevel@tonic-gate 	if ((dev_info_t *)parent == ddi_root_node())
5957c478bd9Sstevel@tonic-gate 		mutex_exit(&global_vhci_lock);
5967c478bd9Sstevel@tonic-gate 
5977c478bd9Sstevel@tonic-gate 	/* persistent nodes go on orphan list */
5987c478bd9Sstevel@tonic-gate 	if (ndi_dev_is_persistent_node(dip))
5997c478bd9Sstevel@tonic-gate 		add_to_dn_list(&orphanlist, dip);
6007c478bd9Sstevel@tonic-gate }
6017c478bd9Sstevel@tonic-gate 
6027c478bd9Sstevel@tonic-gate /*
6037c478bd9Sstevel@tonic-gate  * Unlink this node from the devinfo tree
6047c478bd9Sstevel@tonic-gate  */
6057c478bd9Sstevel@tonic-gate static int
6067c478bd9Sstevel@tonic-gate unlink_node(dev_info_t *dip)
6077c478bd9Sstevel@tonic-gate {
6087c478bd9Sstevel@tonic-gate 	struct dev_info *devi = DEVI(dip);
6097c478bd9Sstevel@tonic-gate 	struct dev_info *parent = devi->devi_parent;
6107c478bd9Sstevel@tonic-gate 	dev_info_t **dipp;
6117c478bd9Sstevel@tonic-gate 
6127c478bd9Sstevel@tonic-gate 	ASSERT(parent != NULL);
6137c478bd9Sstevel@tonic-gate 	ASSERT(devi->devi_node_state == DS_LINKED);
6147c478bd9Sstevel@tonic-gate 
6157c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT, "unlink_node: name = %s\n",
6167c478bd9Sstevel@tonic-gate 	    ddi_node_name(dip)));
6177c478bd9Sstevel@tonic-gate 
6187c478bd9Sstevel@tonic-gate 	/* check references */
6197c478bd9Sstevel@tonic-gate 	if (devi->devi_ref || i_ddi_remove_devimap(dip) != DDI_SUCCESS)
6207c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
6217c478bd9Sstevel@tonic-gate 
6227c478bd9Sstevel@tonic-gate 	/*
6237c478bd9Sstevel@tonic-gate 	 * Hold the global_vhci_lock before linking any direct
6247c478bd9Sstevel@tonic-gate 	 * children of rootnex driver.
6257c478bd9Sstevel@tonic-gate 	 */
6267c478bd9Sstevel@tonic-gate 	if ((dev_info_t *)parent == ddi_root_node())
6277c478bd9Sstevel@tonic-gate 		mutex_enter(&global_vhci_lock);
6287c478bd9Sstevel@tonic-gate 
6297c478bd9Sstevel@tonic-gate 	dipp = (dev_info_t **)(&DEVI(parent)->devi_child);
6307c478bd9Sstevel@tonic-gate 	while (*dipp && (*dipp != dip)) {
6317c478bd9Sstevel@tonic-gate 		dipp = (dev_info_t **)(&DEVI(*dipp)->devi_sibling);
6327c478bd9Sstevel@tonic-gate 	}
6337c478bd9Sstevel@tonic-gate 	if (*dipp) {
6347c478bd9Sstevel@tonic-gate 		*dipp = (dev_info_t *)(devi->devi_sibling);
6357c478bd9Sstevel@tonic-gate 		devi->devi_sibling = NULL;
6367c478bd9Sstevel@tonic-gate 	} else {
6377c478bd9Sstevel@tonic-gate 		NDI_CONFIG_DEBUG((CE_NOTE, "unlink_node: %s not linked",
6387c478bd9Sstevel@tonic-gate 		    devi->devi_node_name));
6397c478bd9Sstevel@tonic-gate 	}
6407c478bd9Sstevel@tonic-gate 
6417c478bd9Sstevel@tonic-gate 	/*
6427c478bd9Sstevel@tonic-gate 	 * Release the global_vhci_lock before linking any direct
6437c478bd9Sstevel@tonic-gate 	 * children of rootnex driver.
6447c478bd9Sstevel@tonic-gate 	 */
6457c478bd9Sstevel@tonic-gate 	if ((dev_info_t *)parent == ddi_root_node())
6467c478bd9Sstevel@tonic-gate 		mutex_exit(&global_vhci_lock);
6477c478bd9Sstevel@tonic-gate 
6487c478bd9Sstevel@tonic-gate 	/* Remove node from orphan list */
6497c478bd9Sstevel@tonic-gate 	if (ndi_dev_is_persistent_node(dip)) {
6507c478bd9Sstevel@tonic-gate 		remove_from_dn_list(&orphanlist, dip);
6517c478bd9Sstevel@tonic-gate 	}
6527c478bd9Sstevel@tonic-gate 
6537c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
6547c478bd9Sstevel@tonic-gate }
6557c478bd9Sstevel@tonic-gate 
6567c478bd9Sstevel@tonic-gate /*
6577c478bd9Sstevel@tonic-gate  * Bind this devinfo node to a driver. If compat is NON-NULL, try that first.
6587c478bd9Sstevel@tonic-gate  * Else, use the node-name.
6597c478bd9Sstevel@tonic-gate  *
6607c478bd9Sstevel@tonic-gate  * NOTE: IEEE1275 specifies that nodename should be tried before compatible.
6617c478bd9Sstevel@tonic-gate  *	Solaris implementation binds nodename after compatible.
6627c478bd9Sstevel@tonic-gate  *
6637c478bd9Sstevel@tonic-gate  * If we find a binding,
6647c478bd9Sstevel@tonic-gate  * - set the binding name to the the string,
6657c478bd9Sstevel@tonic-gate  * - set major number to driver major
6667c478bd9Sstevel@tonic-gate  *
6677c478bd9Sstevel@tonic-gate  * If we don't find a binding,
6687c478bd9Sstevel@tonic-gate  * - return failure
6697c478bd9Sstevel@tonic-gate  */
6707c478bd9Sstevel@tonic-gate static int
6717c478bd9Sstevel@tonic-gate bind_node(dev_info_t *dip)
6727c478bd9Sstevel@tonic-gate {
6737c478bd9Sstevel@tonic-gate 	char *p = NULL;
6747c478bd9Sstevel@tonic-gate 	major_t major = (major_t)(major_t)-1;
6757c478bd9Sstevel@tonic-gate 	struct dev_info *devi = DEVI(dip);
6767c478bd9Sstevel@tonic-gate 	dev_info_t *parent = ddi_get_parent(dip);
6777c478bd9Sstevel@tonic-gate 
6787c478bd9Sstevel@tonic-gate 	ASSERT(devi->devi_node_state == DS_LINKED);
6797c478bd9Sstevel@tonic-gate 
6807c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT, "bind_node: 0x%p(name = %s)\n",
6817c478bd9Sstevel@tonic-gate 	    (void *)dip, ddi_node_name(dip)));
6827c478bd9Sstevel@tonic-gate 
6837c478bd9Sstevel@tonic-gate 	mutex_enter(&DEVI(dip)->devi_lock);
6847c478bd9Sstevel@tonic-gate 	if (DEVI(dip)->devi_flags & DEVI_NO_BIND) {
6857c478bd9Sstevel@tonic-gate 		mutex_exit(&DEVI(dip)->devi_lock);
6867c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
6877c478bd9Sstevel@tonic-gate 	}
6887c478bd9Sstevel@tonic-gate 	mutex_exit(&DEVI(dip)->devi_lock);
6897c478bd9Sstevel@tonic-gate 
6907c478bd9Sstevel@tonic-gate 	/* find the driver with most specific binding using compatible */
6917c478bd9Sstevel@tonic-gate 	major = ddi_compatible_driver_major(dip, &p);
6927c478bd9Sstevel@tonic-gate 	if (major == (major_t)-1)
6937c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
6947c478bd9Sstevel@tonic-gate 
6957c478bd9Sstevel@tonic-gate 	devi->devi_major = major;
6967c478bd9Sstevel@tonic-gate 	if (p != NULL) {
6977c478bd9Sstevel@tonic-gate 		i_ddi_set_binding_name(dip, p);
6987c478bd9Sstevel@tonic-gate 		NDI_CONFIG_DEBUG((CE_CONT, "bind_node: %s bound to %s\n",
6997c478bd9Sstevel@tonic-gate 		    devi->devi_node_name, p));
7007c478bd9Sstevel@tonic-gate 	}
7017c478bd9Sstevel@tonic-gate 
7027c478bd9Sstevel@tonic-gate 	/* Link node to per-driver list */
7037c478bd9Sstevel@tonic-gate 	link_to_driver_list(dip);
7047c478bd9Sstevel@tonic-gate 
7057c478bd9Sstevel@tonic-gate 	/*
7067c478bd9Sstevel@tonic-gate 	 * reset parent flag so that nexus will merge .conf props
7077c478bd9Sstevel@tonic-gate 	 */
7087c478bd9Sstevel@tonic-gate 	if (ndi_dev_is_persistent_node(dip)) {
7097c478bd9Sstevel@tonic-gate 		mutex_enter(&DEVI(parent)->devi_lock);
7107c478bd9Sstevel@tonic-gate 		DEVI(parent)->devi_flags &=
7117c478bd9Sstevel@tonic-gate 		    ~(DEVI_ATTACHED_CHILDREN|DEVI_MADE_CHILDREN);
7127c478bd9Sstevel@tonic-gate 		mutex_exit(&DEVI(parent)->devi_lock);
7137c478bd9Sstevel@tonic-gate 	}
7147c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
7157c478bd9Sstevel@tonic-gate }
7167c478bd9Sstevel@tonic-gate 
7177c478bd9Sstevel@tonic-gate /*
7187c478bd9Sstevel@tonic-gate  * Unbind this devinfo node
7197c478bd9Sstevel@tonic-gate  * Called before the node is destroyed or driver is removed from system
7207c478bd9Sstevel@tonic-gate  */
7217c478bd9Sstevel@tonic-gate static int
7227c478bd9Sstevel@tonic-gate unbind_node(dev_info_t *dip)
7237c478bd9Sstevel@tonic-gate {
7247c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(dip)->devi_node_state == DS_BOUND);
7257c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(dip)->devi_major != (major_t)-1);
7267c478bd9Sstevel@tonic-gate 
7277c478bd9Sstevel@tonic-gate 	/* check references */
7287c478bd9Sstevel@tonic-gate 	if (DEVI(dip)->devi_ref)
7297c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
7307c478bd9Sstevel@tonic-gate 
7317c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT, "unbind_node: 0x%p(name = %s)\n",
7327c478bd9Sstevel@tonic-gate 	    (void *)dip, ddi_node_name(dip)));
7337c478bd9Sstevel@tonic-gate 
7347c478bd9Sstevel@tonic-gate 	unlink_from_driver_list(dip);
7357c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_major = (major_t)-1;
7367c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
7377c478bd9Sstevel@tonic-gate }
7387c478bd9Sstevel@tonic-gate 
7397c478bd9Sstevel@tonic-gate /*
7407c478bd9Sstevel@tonic-gate  * Initialize a node: calls the parent nexus' bus_ctl ops to do the operation.
7417c478bd9Sstevel@tonic-gate  * Must hold parent and per-driver list while calling this function.
7427c478bd9Sstevel@tonic-gate  * A successful init_node() returns with an active ndi_hold_devi() hold on
7437c478bd9Sstevel@tonic-gate  * the parent.
7447c478bd9Sstevel@tonic-gate  */
7457c478bd9Sstevel@tonic-gate static int
7467c478bd9Sstevel@tonic-gate init_node(dev_info_t *dip)
7477c478bd9Sstevel@tonic-gate {
7487c478bd9Sstevel@tonic-gate 	int error;
7497c478bd9Sstevel@tonic-gate 	dev_info_t *pdip = ddi_get_parent(dip);
7507c478bd9Sstevel@tonic-gate 	int (*f)(dev_info_t *, dev_info_t *, ddi_ctl_enum_t, void *, void *);
7517c478bd9Sstevel@tonic-gate 	char *path;
7527c478bd9Sstevel@tonic-gate 
7537c478bd9Sstevel@tonic-gate 	ASSERT(i_ddi_node_state(dip) == DS_BOUND);
7547c478bd9Sstevel@tonic-gate 
7557c478bd9Sstevel@tonic-gate 	/* should be DS_READY except for pcmcia ... */
7567c478bd9Sstevel@tonic-gate 	ASSERT(i_ddi_node_state(pdip) >= DS_PROBED);
7577c478bd9Sstevel@tonic-gate 
7587c478bd9Sstevel@tonic-gate 	path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
7597c478bd9Sstevel@tonic-gate 	(void) ddi_pathname(dip, path);
7607c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT, "init_node: entry: path %s 0x%p\n",
7617c478bd9Sstevel@tonic-gate 	    path, (void *)dip));
7627c478bd9Sstevel@tonic-gate 
7637c478bd9Sstevel@tonic-gate 	/*
7647c478bd9Sstevel@tonic-gate 	 * The parent must have a bus_ctl operation.
7657c478bd9Sstevel@tonic-gate 	 */
7667c478bd9Sstevel@tonic-gate 	if ((DEVI(pdip)->devi_ops->devo_bus_ops == NULL) ||
7677c478bd9Sstevel@tonic-gate 	    (f = DEVI(pdip)->devi_ops->devo_bus_ops->bus_ctl) == NULL) {
7687c478bd9Sstevel@tonic-gate 		error = DDI_FAILURE;
7697c478bd9Sstevel@tonic-gate 		goto out;
7707c478bd9Sstevel@tonic-gate 	}
7717c478bd9Sstevel@tonic-gate 
7727c478bd9Sstevel@tonic-gate 	add_global_props(dip);
7737c478bd9Sstevel@tonic-gate 
7747c478bd9Sstevel@tonic-gate 	/*
7757c478bd9Sstevel@tonic-gate 	 * Invoke the parent's bus_ctl operation with the DDI_CTLOPS_INITCHILD
7767c478bd9Sstevel@tonic-gate 	 * command to transform the child to canonical form 1. If there
7777c478bd9Sstevel@tonic-gate 	 * is an error, ddi_remove_child should be called, to clean up.
7787c478bd9Sstevel@tonic-gate 	 */
7797c478bd9Sstevel@tonic-gate 	error = (*f)(pdip, pdip, DDI_CTLOPS_INITCHILD, dip, NULL);
7807c478bd9Sstevel@tonic-gate 	if (error != DDI_SUCCESS) {
7817c478bd9Sstevel@tonic-gate 		NDI_CONFIG_DEBUG((CE_CONT, "init_node: %s 0x%p failed\n",
7827c478bd9Sstevel@tonic-gate 		    path, (void *)dip));
7837c478bd9Sstevel@tonic-gate 		remove_global_props(dip);
7847c478bd9Sstevel@tonic-gate 		/* in case nexus driver didn't clear this field */
7857c478bd9Sstevel@tonic-gate 		ddi_set_name_addr(dip, NULL);
7867c478bd9Sstevel@tonic-gate 		error = DDI_FAILURE;
7877c478bd9Sstevel@tonic-gate 		goto out;
7887c478bd9Sstevel@tonic-gate 	}
7897c478bd9Sstevel@tonic-gate 
7907c478bd9Sstevel@tonic-gate 	ndi_hold_devi(pdip);
7917c478bd9Sstevel@tonic-gate 
7927c478bd9Sstevel@tonic-gate 	/* check for duplicate nodes */
7937c478bd9Sstevel@tonic-gate 	if (find_duplicate_child(pdip, dip) != NULL) {
7947c478bd9Sstevel@tonic-gate 		/* recompute path after initchild for @addr information */
7957c478bd9Sstevel@tonic-gate 		(void) ddi_pathname(dip, path);
7967c478bd9Sstevel@tonic-gate 
7977c478bd9Sstevel@tonic-gate 		/*
7987c478bd9Sstevel@tonic-gate 		 * uninit_node() the duplicate - a successful uninit_node()
7997c478bd9Sstevel@tonic-gate 		 * does a ndi_rele_devi
8007c478bd9Sstevel@tonic-gate 		 */
8017c478bd9Sstevel@tonic-gate 		if ((error = uninit_node(dip)) != DDI_SUCCESS) {
8027c478bd9Sstevel@tonic-gate 			ndi_rele_devi(pdip);
8037c478bd9Sstevel@tonic-gate 			cmn_err(CE_WARN, "init_node: uninit of duplicate "
8047c478bd9Sstevel@tonic-gate 			    "node %s failed", path);
8057c478bd9Sstevel@tonic-gate 		}
8067c478bd9Sstevel@tonic-gate 		NDI_CONFIG_DEBUG((CE_CONT, "init_node: duplicate uninit "
8077c478bd9Sstevel@tonic-gate 		    "%s 0x%p%s\n", path, (void *)dip,
8087c478bd9Sstevel@tonic-gate 		    (error == DDI_SUCCESS) ? "" : " failed"));
8097c478bd9Sstevel@tonic-gate 		error = DDI_FAILURE;
8107c478bd9Sstevel@tonic-gate 		goto out;
8117c478bd9Sstevel@tonic-gate 	}
8127c478bd9Sstevel@tonic-gate 
8137c478bd9Sstevel@tonic-gate 	/*
8147c478bd9Sstevel@tonic-gate 	 * Apply multi-parent/deep-nexus optimization to the new node
8157c478bd9Sstevel@tonic-gate 	 */
8167c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_instance = e_ddi_assign_instance(dip);
8177c478bd9Sstevel@tonic-gate 	ddi_optimize_dtree(dip);
8187c478bd9Sstevel@tonic-gate 	error = DDI_SUCCESS;
8197c478bd9Sstevel@tonic-gate 
8207c478bd9Sstevel@tonic-gate out:	kmem_free(path, MAXPATHLEN);
8217c478bd9Sstevel@tonic-gate 	return (error);
8227c478bd9Sstevel@tonic-gate }
8237c478bd9Sstevel@tonic-gate 
8247c478bd9Sstevel@tonic-gate /*
8257c478bd9Sstevel@tonic-gate  * Uninitialize node
8267c478bd9Sstevel@tonic-gate  * The per-driver list must be held busy during the call.
8277c478bd9Sstevel@tonic-gate  * A successful uninit_node() releases the init_node() hold on
8287c478bd9Sstevel@tonic-gate  * the parent by calling ndi_rele_devi().
8297c478bd9Sstevel@tonic-gate  */
8307c478bd9Sstevel@tonic-gate static int
8317c478bd9Sstevel@tonic-gate uninit_node(dev_info_t *dip)
8327c478bd9Sstevel@tonic-gate {
8337c478bd9Sstevel@tonic-gate 	int node_state_entry;
8347c478bd9Sstevel@tonic-gate 	dev_info_t *pdip;
8357c478bd9Sstevel@tonic-gate 	struct dev_ops *ops;
8367c478bd9Sstevel@tonic-gate 	int (*f)();
8377c478bd9Sstevel@tonic-gate 	int error;
8387c478bd9Sstevel@tonic-gate 	char *addr;
8397c478bd9Sstevel@tonic-gate 
8407c478bd9Sstevel@tonic-gate 	/*
8417c478bd9Sstevel@tonic-gate 	 * Don't check for references here or else a ref-counted
8427c478bd9Sstevel@tonic-gate 	 * dip cannot be downgraded by the framework.
8437c478bd9Sstevel@tonic-gate 	 */
8447c478bd9Sstevel@tonic-gate 	node_state_entry = i_ddi_node_state(dip);
8457c478bd9Sstevel@tonic-gate 	ASSERT((node_state_entry == DS_BOUND) ||
8467c478bd9Sstevel@tonic-gate 		(node_state_entry == DS_INITIALIZED));
8477c478bd9Sstevel@tonic-gate 	pdip = ddi_get_parent(dip);
8487c478bd9Sstevel@tonic-gate 	ASSERT(pdip);
8497c478bd9Sstevel@tonic-gate 
8507c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT, "uninit_node: 0x%p(%s%d)\n",
8517c478bd9Sstevel@tonic-gate 	    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip)));
8527c478bd9Sstevel@tonic-gate 
8537c478bd9Sstevel@tonic-gate 	if (((ops = ddi_get_driver(pdip)) == NULL) ||
8547c478bd9Sstevel@tonic-gate 	    (ops->devo_bus_ops == NULL) ||
8557c478bd9Sstevel@tonic-gate 	    ((f = ops->devo_bus_ops->bus_ctl) == NULL)) {
8567c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
8577c478bd9Sstevel@tonic-gate 	}
8587c478bd9Sstevel@tonic-gate 
8597c478bd9Sstevel@tonic-gate 	/*
8607c478bd9Sstevel@tonic-gate 	 * save the @addr prior to DDI_CTLOPS_UNINITCHILD for use in
8617c478bd9Sstevel@tonic-gate 	 * freeing the instance if it succeeds.
8627c478bd9Sstevel@tonic-gate 	 */
8637c478bd9Sstevel@tonic-gate 	if (node_state_entry == DS_INITIALIZED) {
8647c478bd9Sstevel@tonic-gate 		addr = ddi_get_name_addr(dip);
8657c478bd9Sstevel@tonic-gate 		if (addr)
8667c478bd9Sstevel@tonic-gate 			addr = i_ddi_strdup(addr, KM_SLEEP);
8677c478bd9Sstevel@tonic-gate 	} else {
8687c478bd9Sstevel@tonic-gate 		addr = NULL;
8697c478bd9Sstevel@tonic-gate 	}
8707c478bd9Sstevel@tonic-gate 
8717c478bd9Sstevel@tonic-gate 	error = (*f)(pdip, pdip, DDI_CTLOPS_UNINITCHILD, dip, (void *)NULL);
8727c478bd9Sstevel@tonic-gate 	if (error == DDI_SUCCESS) {
8737c478bd9Sstevel@tonic-gate 		/* if uninitchild forgot to set devi_addr to NULL do it now */
8747c478bd9Sstevel@tonic-gate 		ddi_set_name_addr(dip, NULL);
8757c478bd9Sstevel@tonic-gate 
8767c478bd9Sstevel@tonic-gate 		/*
8777c478bd9Sstevel@tonic-gate 		 * Free instance number. This is a no-op if instance has
8787c478bd9Sstevel@tonic-gate 		 * been kept by probe_node().  Avoid free when we are called
8797c478bd9Sstevel@tonic-gate 		 * from init_node (DS_BOUND) because the instance has not yet
8807c478bd9Sstevel@tonic-gate 		 * been assigned.
8817c478bd9Sstevel@tonic-gate 		 */
8827c478bd9Sstevel@tonic-gate 		if (node_state_entry == DS_INITIALIZED) {
8837c478bd9Sstevel@tonic-gate 			e_ddi_free_instance(dip, addr);
8847c478bd9Sstevel@tonic-gate 			DEVI(dip)->devi_instance = -1;
8857c478bd9Sstevel@tonic-gate 		}
8867c478bd9Sstevel@tonic-gate 
8877c478bd9Sstevel@tonic-gate 		/* release the init_node hold */
8887c478bd9Sstevel@tonic-gate 		ndi_rele_devi(pdip);
8897c478bd9Sstevel@tonic-gate 
8907c478bd9Sstevel@tonic-gate 		remove_global_props(dip);
8917c478bd9Sstevel@tonic-gate 		e_ddi_prop_remove_all(dip);
8927c478bd9Sstevel@tonic-gate 	} else {
8937c478bd9Sstevel@tonic-gate 		NDI_CONFIG_DEBUG((CE_CONT, "uninit_node failed: 0x%p(%s%d)\n",
8947c478bd9Sstevel@tonic-gate 		    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip)));
8957c478bd9Sstevel@tonic-gate 	}
8967c478bd9Sstevel@tonic-gate 
8977c478bd9Sstevel@tonic-gate 	if (addr)
8987c478bd9Sstevel@tonic-gate 		kmem_free(addr, strlen(addr) + 1);
8997c478bd9Sstevel@tonic-gate 	return (error);
9007c478bd9Sstevel@tonic-gate }
9017c478bd9Sstevel@tonic-gate 
9027c478bd9Sstevel@tonic-gate /*
9037c478bd9Sstevel@tonic-gate  * Invoke driver's probe entry point to probe for existence of hardware.
9047c478bd9Sstevel@tonic-gate  * Keep instance permanent for successful probe and leaf nodes.
9057c478bd9Sstevel@tonic-gate  *
9067c478bd9Sstevel@tonic-gate  * Per-driver list must be held busy while calling this function.
9077c478bd9Sstevel@tonic-gate  */
9087c478bd9Sstevel@tonic-gate static int
9097c478bd9Sstevel@tonic-gate probe_node(dev_info_t *dip)
9107c478bd9Sstevel@tonic-gate {
9117c478bd9Sstevel@tonic-gate 	int rv;
9127c478bd9Sstevel@tonic-gate 
9137c478bd9Sstevel@tonic-gate 	ASSERT(i_ddi_node_state(dip) == DS_INITIALIZED);
9147c478bd9Sstevel@tonic-gate 
9157c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT, "probe_node: 0x%p(%s%d)\n",
9167c478bd9Sstevel@tonic-gate 	    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip)));
9177c478bd9Sstevel@tonic-gate 
9187c478bd9Sstevel@tonic-gate 	/* temporarily hold the driver while we probe */
9197c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_ops = ndi_hold_driver(dip);
9207c478bd9Sstevel@tonic-gate 	if (DEVI(dip)->devi_ops == NULL) {
9217c478bd9Sstevel@tonic-gate 		NDI_CONFIG_DEBUG((CE_CONT,
9227c478bd9Sstevel@tonic-gate 		    "probe_node: 0x%p(%s%d) cannot load driver\n",
9237c478bd9Sstevel@tonic-gate 		    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip)));
9247c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
9257c478bd9Sstevel@tonic-gate 	}
9267c478bd9Sstevel@tonic-gate 
9277c478bd9Sstevel@tonic-gate 	if (identify_9e != 0)
9287c478bd9Sstevel@tonic-gate 		(void) devi_identify(dip);
9297c478bd9Sstevel@tonic-gate 
9307c478bd9Sstevel@tonic-gate 	rv = devi_probe(dip);
9317c478bd9Sstevel@tonic-gate 
9327c478bd9Sstevel@tonic-gate 	/* release the driver now that probe is complete */
9337c478bd9Sstevel@tonic-gate 	ndi_rele_driver(dip);
9347c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_ops = NULL;
9357c478bd9Sstevel@tonic-gate 
9367c478bd9Sstevel@tonic-gate 	switch (rv) {
9377c478bd9Sstevel@tonic-gate 	case DDI_PROBE_SUCCESS:			/* found */
9387c478bd9Sstevel@tonic-gate 	case DDI_PROBE_DONTCARE:		/* ddi_dev_is_sid */
9397c478bd9Sstevel@tonic-gate 		e_ddi_keep_instance(dip);	/* persist instance */
9407c478bd9Sstevel@tonic-gate 		rv = DDI_SUCCESS;
9417c478bd9Sstevel@tonic-gate 		break;
9427c478bd9Sstevel@tonic-gate 
9437c478bd9Sstevel@tonic-gate 	case DDI_PROBE_PARTIAL:			/* maybe later */
9447c478bd9Sstevel@tonic-gate 	case DDI_PROBE_FAILURE:			/* not found */
9457c478bd9Sstevel@tonic-gate 		NDI_CONFIG_DEBUG((CE_CONT,
9467c478bd9Sstevel@tonic-gate 		    "probe_node: 0x%p(%s%d) no hardware found%s\n",
9477c478bd9Sstevel@tonic-gate 		    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip),
9487c478bd9Sstevel@tonic-gate 		    (rv == DDI_PROBE_PARTIAL) ? " yet" : ""));
9497c478bd9Sstevel@tonic-gate 		rv = DDI_FAILURE;
9507c478bd9Sstevel@tonic-gate 		break;
9517c478bd9Sstevel@tonic-gate 
9527c478bd9Sstevel@tonic-gate 	default:
9537c478bd9Sstevel@tonic-gate #ifdef	DEBUG
9547c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "probe_node: %s%d: illegal probe(9E) value",
9557c478bd9Sstevel@tonic-gate 		    ddi_driver_name(dip), ddi_get_instance(dip));
9567c478bd9Sstevel@tonic-gate #endif	/* DEBUG */
9577c478bd9Sstevel@tonic-gate 		rv = DDI_FAILURE;
9587c478bd9Sstevel@tonic-gate 		break;
9597c478bd9Sstevel@tonic-gate 	}
9607c478bd9Sstevel@tonic-gate 	return (rv);
9617c478bd9Sstevel@tonic-gate }
9627c478bd9Sstevel@tonic-gate 
9637c478bd9Sstevel@tonic-gate /*
9647c478bd9Sstevel@tonic-gate  * Unprobe a node. Simply reset the node state.
9657c478bd9Sstevel@tonic-gate  * Per-driver list must be held busy while calling this function.
9667c478bd9Sstevel@tonic-gate  */
9677c478bd9Sstevel@tonic-gate static int
9687c478bd9Sstevel@tonic-gate unprobe_node(dev_info_t *dip)
9697c478bd9Sstevel@tonic-gate {
9707c478bd9Sstevel@tonic-gate 	ASSERT(i_ddi_node_state(dip) == DS_PROBED);
9717c478bd9Sstevel@tonic-gate 
9727c478bd9Sstevel@tonic-gate 	/*
9737c478bd9Sstevel@tonic-gate 	 * Don't check for references here or else a ref-counted
9747c478bd9Sstevel@tonic-gate 	 * dip cannot be downgraded by the framework.
9757c478bd9Sstevel@tonic-gate 	 */
9767c478bd9Sstevel@tonic-gate 
9777c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT, "unprobe_node: 0x%p(name = %s)\n",
9787c478bd9Sstevel@tonic-gate 	    (void *)dip, ddi_node_name(dip)));
9797c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
9807c478bd9Sstevel@tonic-gate }
9817c478bd9Sstevel@tonic-gate 
9827c478bd9Sstevel@tonic-gate /*
9837c478bd9Sstevel@tonic-gate  * Attach devinfo node.
9847c478bd9Sstevel@tonic-gate  * Per-driver list must be held busy.
9857c478bd9Sstevel@tonic-gate  */
9867c478bd9Sstevel@tonic-gate static int
9877c478bd9Sstevel@tonic-gate attach_node(dev_info_t *dip)
9887c478bd9Sstevel@tonic-gate {
9897c478bd9Sstevel@tonic-gate 	int rv;
9907c478bd9Sstevel@tonic-gate 
9915e3986cbScth 	ASSERT(DEVI_BUSY_OWNED(ddi_get_parent(dip)));
9927c478bd9Sstevel@tonic-gate 	ASSERT(i_ddi_node_state(dip) == DS_PROBED);
9937c478bd9Sstevel@tonic-gate 
9947c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT, "attach_node: 0x%p(%s%d)\n",
9957c478bd9Sstevel@tonic-gate 	    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip)));
9967c478bd9Sstevel@tonic-gate 
9977c478bd9Sstevel@tonic-gate 	/*
9987c478bd9Sstevel@tonic-gate 	 * Tell mpxio framework that a node is about to online.
9997c478bd9Sstevel@tonic-gate 	 */
10007c478bd9Sstevel@tonic-gate 	if ((rv = mdi_devi_online(dip, 0)) != NDI_SUCCESS) {
10017c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
10027c478bd9Sstevel@tonic-gate 	}
10037c478bd9Sstevel@tonic-gate 
10047c478bd9Sstevel@tonic-gate 	/* no recursive attachment */
10057c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(dip)->devi_ops == NULL);
10067c478bd9Sstevel@tonic-gate 
10077c478bd9Sstevel@tonic-gate 	/*
10087c478bd9Sstevel@tonic-gate 	 * Hold driver the node is bound to.
10097c478bd9Sstevel@tonic-gate 	 */
10107c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_ops = ndi_hold_driver(dip);
10117c478bd9Sstevel@tonic-gate 	if (DEVI(dip)->devi_ops == NULL) {
10127c478bd9Sstevel@tonic-gate 		/*
10137c478bd9Sstevel@tonic-gate 		 * We were able to load driver for probing, so we should
10147c478bd9Sstevel@tonic-gate 		 * not get here unless something really bad happened.
10157c478bd9Sstevel@tonic-gate 		 */
10167c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "attach_node: no driver for major %d",
10177c478bd9Sstevel@tonic-gate 		    DEVI(dip)->devi_major);
10187c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
10197c478bd9Sstevel@tonic-gate 	}
10207c478bd9Sstevel@tonic-gate 
10217c478bd9Sstevel@tonic-gate 	if (NEXUS_DRV(DEVI(dip)->devi_ops))
10227c478bd9Sstevel@tonic-gate 		DEVI(dip)->devi_taskq = ddi_taskq_create(dip,
10237c478bd9Sstevel@tonic-gate 		    "nexus_enum_tq", 1,
10247c478bd9Sstevel@tonic-gate 		    TASKQ_DEFAULTPRI, 0);
10257c478bd9Sstevel@tonic-gate 
102616747f41Scth 	mutex_enter(&(DEVI(dip)->devi_lock));
1027c73a93f2Sdm120769 	DEVI_SET_ATTACHING(dip);
10287c478bd9Sstevel@tonic-gate 	DEVI_SET_NEED_RESET(dip);
102916747f41Scth 	mutex_exit(&(DEVI(dip)->devi_lock));
103016747f41Scth 
10317c478bd9Sstevel@tonic-gate 	rv = devi_attach(dip, DDI_ATTACH);
103216747f41Scth 
1033144dfaa9Scth 	mutex_enter(&(DEVI(dip)->devi_lock));
1034c73a93f2Sdm120769 	DEVI_CLR_ATTACHING(dip);
1035144dfaa9Scth 
1036c73a93f2Sdm120769 	if (rv != DDI_SUCCESS) {
10375e3986cbScth 		DEVI_CLR_NEED_RESET(dip);
10385e3986cbScth 
1039225b11cdScth 		/* ensure that devids are unregistered */
10407c478bd9Sstevel@tonic-gate 		if (DEVI(dip)->devi_flags & DEVI_REGISTERED_DEVID) {
10417c478bd9Sstevel@tonic-gate 			DEVI(dip)->devi_flags &= ~DEVI_REGISTERED_DEVID;
1042225b11cdScth 			mutex_exit(&DEVI(dip)->devi_lock);
1043225b11cdScth 
1044225b11cdScth 			e_devid_cache_unregister(dip);
1045225b11cdScth 		} else
1046225b11cdScth 			mutex_exit(&DEVI(dip)->devi_lock);
1047225b11cdScth 
10487c478bd9Sstevel@tonic-gate 		/*
10497c478bd9Sstevel@tonic-gate 		 * Cleanup dacf reservations
10507c478bd9Sstevel@tonic-gate 		 */
10517c478bd9Sstevel@tonic-gate 		mutex_enter(&dacf_lock);
10527c478bd9Sstevel@tonic-gate 		dacf_clr_rsrvs(dip, DACF_OPID_POSTATTACH);
10537c478bd9Sstevel@tonic-gate 		dacf_clr_rsrvs(dip, DACF_OPID_PREDETACH);
10547c478bd9Sstevel@tonic-gate 		mutex_exit(&dacf_lock);
10557c478bd9Sstevel@tonic-gate 		if (DEVI(dip)->devi_taskq)
10567c478bd9Sstevel@tonic-gate 			ddi_taskq_destroy(DEVI(dip)->devi_taskq);
10577c478bd9Sstevel@tonic-gate 		ddi_remove_minor_node(dip, NULL);
10587c478bd9Sstevel@tonic-gate 
10597c478bd9Sstevel@tonic-gate 		/* release the driver if attach failed */
10607c478bd9Sstevel@tonic-gate 		ndi_rele_driver(dip);
10617c478bd9Sstevel@tonic-gate 		DEVI(dip)->devi_ops = NULL;
10627c478bd9Sstevel@tonic-gate 		NDI_CONFIG_DEBUG((CE_CONT, "attach_node: 0x%p(%s%d) failed\n",
10637c478bd9Sstevel@tonic-gate 		    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip)));
10647c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
1065c73a93f2Sdm120769 	} else
1066c73a93f2Sdm120769 		mutex_exit(&DEVI(dip)->devi_lock);
10677c478bd9Sstevel@tonic-gate 
10687c478bd9Sstevel@tonic-gate 	/* successful attach, return with driver held */
106916747f41Scth 
10707c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
10717c478bd9Sstevel@tonic-gate }
10727c478bd9Sstevel@tonic-gate 
10737c478bd9Sstevel@tonic-gate /*
10747c478bd9Sstevel@tonic-gate  * Detach devinfo node.
10757c478bd9Sstevel@tonic-gate  * Per-driver list must be held busy.
10767c478bd9Sstevel@tonic-gate  */
10777c478bd9Sstevel@tonic-gate static int
10787c478bd9Sstevel@tonic-gate detach_node(dev_info_t *dip, uint_t flag)
10797c478bd9Sstevel@tonic-gate {
1080cfbaf6c3Scth 	struct devnames	*dnp;
10817c478bd9Sstevel@tonic-gate 	int		rv;
1082cfbaf6c3Scth 
10835e3986cbScth 	ASSERT(DEVI_BUSY_OWNED(ddi_get_parent(dip)));
10847c478bd9Sstevel@tonic-gate 	ASSERT(i_ddi_node_state(dip) == DS_ATTACHED);
10857c478bd9Sstevel@tonic-gate 
10867c478bd9Sstevel@tonic-gate 	/* check references */
10877c478bd9Sstevel@tonic-gate 	if (DEVI(dip)->devi_ref)
10887c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
10897c478bd9Sstevel@tonic-gate 
10907c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT, "detach_node: 0x%p(%s%d)\n",
10917c478bd9Sstevel@tonic-gate 	    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip)));
10927c478bd9Sstevel@tonic-gate 
10935e3986cbScth 	/*
10945e3986cbScth 	 * NOTE: If we are processing a pHCI node then the calling code
10955e3986cbScth 	 * must detect this and ndi_devi_enter() in (vHCI, parent(pHCI))
10965e3986cbScth 	 * order unless pHCI and vHCI are siblings.  Code paths leading
10975e3986cbScth 	 * here that must ensure this ordering include:
10985e3986cbScth 	 * unconfig_immediate_children(), devi_unconfig_one(),
10995e3986cbScth 	 * ndi_devi_unconfig_one(), ndi_devi_offline().
11005e3986cbScth 	 */
11015e3986cbScth 	ASSERT(!MDI_PHCI(dip) ||
11025e3986cbScth 	    (ddi_get_parent(mdi_devi_get_vdip(dip)) == ddi_get_parent(dip)) ||
11035e3986cbScth 	    DEVI_BUSY_OWNED(mdi_devi_get_vdip(dip)));
11045e3986cbScth 
11057c478bd9Sstevel@tonic-gate 	/* Offline the device node with the mpxio framework. */
11067c478bd9Sstevel@tonic-gate 	if (mdi_devi_offline(dip, flag) != NDI_SUCCESS) {
11077c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
11087c478bd9Sstevel@tonic-gate 	}
11097c478bd9Sstevel@tonic-gate 
11107c478bd9Sstevel@tonic-gate 	/* drain the taskq */
11117c478bd9Sstevel@tonic-gate 	if (DEVI(dip)->devi_taskq)
11127c478bd9Sstevel@tonic-gate 		ddi_taskq_wait(DEVI(dip)->devi_taskq);
11137c478bd9Sstevel@tonic-gate 
11147c478bd9Sstevel@tonic-gate 	rv = devi_detach(dip, DDI_DETACH);
11157c478bd9Sstevel@tonic-gate 
11167c478bd9Sstevel@tonic-gate 	if (rv != DDI_SUCCESS) {
11177c478bd9Sstevel@tonic-gate 		NDI_CONFIG_DEBUG((CE_CONT,
11187c478bd9Sstevel@tonic-gate 		    "detach_node: 0x%p(%s%d) failed\n",
11197c478bd9Sstevel@tonic-gate 		    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip)));
11207c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
11217c478bd9Sstevel@tonic-gate 	}
11227c478bd9Sstevel@tonic-gate 
11235e3986cbScth 	mutex_enter(&(DEVI(dip)->devi_lock));
11245e3986cbScth 	DEVI_CLR_NEED_RESET(dip);
11255e3986cbScth 	mutex_exit(&(DEVI(dip)->devi_lock));
11265e3986cbScth 
11277c478bd9Sstevel@tonic-gate 	/* destroy the taskq */
11287c478bd9Sstevel@tonic-gate 	if (DEVI(dip)->devi_taskq) {
11297c478bd9Sstevel@tonic-gate 		ddi_taskq_destroy(DEVI(dip)->devi_taskq);
11307c478bd9Sstevel@tonic-gate 		DEVI(dip)->devi_taskq = NULL;
11317c478bd9Sstevel@tonic-gate 	}
11327c478bd9Sstevel@tonic-gate 
11337c478bd9Sstevel@tonic-gate 	/* Cleanup dacf reservations */
11347c478bd9Sstevel@tonic-gate 	mutex_enter(&dacf_lock);
11357c478bd9Sstevel@tonic-gate 	dacf_clr_rsrvs(dip, DACF_OPID_POSTATTACH);
11367c478bd9Sstevel@tonic-gate 	dacf_clr_rsrvs(dip, DACF_OPID_PREDETACH);
11377c478bd9Sstevel@tonic-gate 	mutex_exit(&dacf_lock);
11387c478bd9Sstevel@tonic-gate 
11397c478bd9Sstevel@tonic-gate 	/* Remove properties and minor nodes in case driver forgots */
11407c478bd9Sstevel@tonic-gate 	ddi_remove_minor_node(dip, NULL);
11417c478bd9Sstevel@tonic-gate 	ddi_prop_remove_all(dip);
11427c478bd9Sstevel@tonic-gate 
11437c478bd9Sstevel@tonic-gate 	/* a detached node can't have attached or .conf children */
11447c478bd9Sstevel@tonic-gate 	mutex_enter(&DEVI(dip)->devi_lock);
11457c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_flags &= ~(DEVI_MADE_CHILDREN|DEVI_ATTACHED_CHILDREN);
1146225b11cdScth 
1147225b11cdScth 	/* ensure that devids registered during attach are unregistered */
11487c478bd9Sstevel@tonic-gate 	if (DEVI(dip)->devi_flags & DEVI_REGISTERED_DEVID) {
11497c478bd9Sstevel@tonic-gate 		DEVI(dip)->devi_flags &= ~DEVI_REGISTERED_DEVID;
1150225b11cdScth 		mutex_exit(&DEVI(dip)->devi_lock);
1151225b11cdScth 
1152225b11cdScth 		e_devid_cache_unregister(dip);
1153225b11cdScth 	} else
11547c478bd9Sstevel@tonic-gate 		mutex_exit(&DEVI(dip)->devi_lock);
11557c478bd9Sstevel@tonic-gate 
1156cfbaf6c3Scth 	/*
1157cfbaf6c3Scth 	 * If the instance has successfully detached in detach_driver() context,
1158cfbaf6c3Scth 	 * clear DN_DRIVER_HELD for correct ddi_hold_installed_driver()
1159cfbaf6c3Scth 	 * behavior. Consumers like qassociate() depend on this (via clnopen()).
1160cfbaf6c3Scth 	 */
1161cfbaf6c3Scth 	if (flag & NDI_DETACH_DRIVER) {
1162cfbaf6c3Scth 		dnp = &(devnamesp[DEVI(dip)->devi_major]);
1163cfbaf6c3Scth 		LOCK_DEV_OPS(&dnp->dn_lock);
1164cfbaf6c3Scth 		dnp->dn_flags &= ~DN_DRIVER_HELD;
1165cfbaf6c3Scth 		UNLOCK_DEV_OPS(&dnp->dn_lock);
1166cfbaf6c3Scth 	}
1167cfbaf6c3Scth 
11687c478bd9Sstevel@tonic-gate 	/* successful detach, release the driver */
11697c478bd9Sstevel@tonic-gate 	ndi_rele_driver(dip);
11707c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_ops = NULL;
11717c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
11727c478bd9Sstevel@tonic-gate }
11737c478bd9Sstevel@tonic-gate 
11747c478bd9Sstevel@tonic-gate /*
11757c478bd9Sstevel@tonic-gate  * Run dacf post_attach routines
11767c478bd9Sstevel@tonic-gate  */
11777c478bd9Sstevel@tonic-gate static int
11787c478bd9Sstevel@tonic-gate postattach_node(dev_info_t *dip)
11797c478bd9Sstevel@tonic-gate {
11807c478bd9Sstevel@tonic-gate 	int rval;
11817c478bd9Sstevel@tonic-gate 
11827c478bd9Sstevel@tonic-gate 	/*
11837c478bd9Sstevel@tonic-gate 	 * For hotplug busses like USB, it's possible that devices
11847c478bd9Sstevel@tonic-gate 	 * are removed but dip is still around. We don't want to
11857c478bd9Sstevel@tonic-gate 	 * run dacf routines as part of detach failure recovery.
11867c478bd9Sstevel@tonic-gate 	 *
11877c478bd9Sstevel@tonic-gate 	 * Pretend success until we figure out how to prevent
11887c478bd9Sstevel@tonic-gate 	 * access to such devinfo nodes.
11897c478bd9Sstevel@tonic-gate 	 */
11907c478bd9Sstevel@tonic-gate 	if (DEVI_IS_DEVICE_REMOVED(dip))
11917c478bd9Sstevel@tonic-gate 		return (DDI_SUCCESS);
11927c478bd9Sstevel@tonic-gate 
11937c478bd9Sstevel@tonic-gate 	/*
11947c478bd9Sstevel@tonic-gate 	 * if dacf_postattach failed, report it to the framework
11957c478bd9Sstevel@tonic-gate 	 * so that it can be retried later at the open time.
11967c478bd9Sstevel@tonic-gate 	 */
11977c478bd9Sstevel@tonic-gate 	mutex_enter(&dacf_lock);
11987c478bd9Sstevel@tonic-gate 	rval = dacfc_postattach(dip);
11997c478bd9Sstevel@tonic-gate 	mutex_exit(&dacf_lock);
12007c478bd9Sstevel@tonic-gate 
12017c478bd9Sstevel@tonic-gate 	/*
12027c478bd9Sstevel@tonic-gate 	 * Plumbing during postattach may fail because of the
12037c478bd9Sstevel@tonic-gate 	 * underlying device is not ready. This will fail ndi_devi_config()
12047c478bd9Sstevel@tonic-gate 	 * in dv_filldir() and a warning message is issued. The message
12057c478bd9Sstevel@tonic-gate 	 * from here will explain what happened
12067c478bd9Sstevel@tonic-gate 	 */
12077c478bd9Sstevel@tonic-gate 	if (rval != DACF_SUCCESS) {
12087c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "Postattach failed for %s%d\n",
12097c478bd9Sstevel@tonic-gate 		    ddi_driver_name(dip), ddi_get_instance(dip));
12107c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
12117c478bd9Sstevel@tonic-gate 	}
12127c478bd9Sstevel@tonic-gate 
12137c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
12147c478bd9Sstevel@tonic-gate }
12157c478bd9Sstevel@tonic-gate 
12167c478bd9Sstevel@tonic-gate /*
12177c478bd9Sstevel@tonic-gate  * Run dacf pre-detach routines
12187c478bd9Sstevel@tonic-gate  */
12197c478bd9Sstevel@tonic-gate static int
12207c478bd9Sstevel@tonic-gate predetach_node(dev_info_t *dip, uint_t flag)
12217c478bd9Sstevel@tonic-gate {
12227c478bd9Sstevel@tonic-gate 	int ret;
12237c478bd9Sstevel@tonic-gate 
12247c478bd9Sstevel@tonic-gate 	/*
12257c478bd9Sstevel@tonic-gate 	 * Don't auto-detach if DDI_FORCEATTACH or DDI_NO_AUTODETACH
12267c478bd9Sstevel@tonic-gate 	 * properties are set.
12277c478bd9Sstevel@tonic-gate 	 */
12287c478bd9Sstevel@tonic-gate 	if (flag & NDI_AUTODETACH) {
12297c478bd9Sstevel@tonic-gate 		struct devnames *dnp;
12307c478bd9Sstevel@tonic-gate 		int pflag = DDI_PROP_NOTPROM | DDI_PROP_DONTPASS;
12317c478bd9Sstevel@tonic-gate 
12327c478bd9Sstevel@tonic-gate 		if ((ddi_prop_get_int(DDI_DEV_T_ANY, dip,
12337c478bd9Sstevel@tonic-gate 			pflag, DDI_FORCEATTACH, 0) == 1) ||
12347c478bd9Sstevel@tonic-gate 		    (ddi_prop_get_int(DDI_DEV_T_ANY, dip,
12357c478bd9Sstevel@tonic-gate 			pflag, DDI_NO_AUTODETACH, 0) == 1))
12367c478bd9Sstevel@tonic-gate 			return (DDI_FAILURE);
12377c478bd9Sstevel@tonic-gate 
12387c478bd9Sstevel@tonic-gate 		/* check for driver global version of DDI_NO_AUTODETACH */
12397c478bd9Sstevel@tonic-gate 		dnp = &devnamesp[DEVI(dip)->devi_major];
12407c478bd9Sstevel@tonic-gate 		LOCK_DEV_OPS(&dnp->dn_lock);
12417c478bd9Sstevel@tonic-gate 		if (dnp->dn_flags & DN_NO_AUTODETACH) {
12427c478bd9Sstevel@tonic-gate 			UNLOCK_DEV_OPS(&dnp->dn_lock);
12437c478bd9Sstevel@tonic-gate 			return (DDI_FAILURE);
12447c478bd9Sstevel@tonic-gate 		}
12457c478bd9Sstevel@tonic-gate 		UNLOCK_DEV_OPS(&dnp->dn_lock);
12467c478bd9Sstevel@tonic-gate 	}
12477c478bd9Sstevel@tonic-gate 
12487c478bd9Sstevel@tonic-gate 	mutex_enter(&dacf_lock);
12497c478bd9Sstevel@tonic-gate 	ret = dacfc_predetach(dip);
12507c478bd9Sstevel@tonic-gate 	mutex_exit(&dacf_lock);
12517c478bd9Sstevel@tonic-gate 
12527c478bd9Sstevel@tonic-gate 	return (ret);
12537c478bd9Sstevel@tonic-gate }
12547c478bd9Sstevel@tonic-gate 
12557c478bd9Sstevel@tonic-gate /*
12567c478bd9Sstevel@tonic-gate  * Wrapper for making multiple state transitions
12577c478bd9Sstevel@tonic-gate  */
12587c478bd9Sstevel@tonic-gate 
12597c478bd9Sstevel@tonic-gate /*
12607c478bd9Sstevel@tonic-gate  * i_ndi_config_node: upgrade dev_info node into a specified state.
12617c478bd9Sstevel@tonic-gate  * It is a bit tricky because the locking protocol changes before and
12627c478bd9Sstevel@tonic-gate  * after a node is bound to a driver. All locks are held external to
12637c478bd9Sstevel@tonic-gate  * this function.
12647c478bd9Sstevel@tonic-gate  */
12657c478bd9Sstevel@tonic-gate int
12667c478bd9Sstevel@tonic-gate i_ndi_config_node(dev_info_t *dip, ddi_node_state_t state, uint_t flag)
12677c478bd9Sstevel@tonic-gate {
12687c478bd9Sstevel@tonic-gate 	_NOTE(ARGUNUSED(flag))
12697c478bd9Sstevel@tonic-gate 	int rv = DDI_SUCCESS;
12707c478bd9Sstevel@tonic-gate 
12717c478bd9Sstevel@tonic-gate 	ASSERT(DEVI_BUSY_OWNED(ddi_get_parent(dip)));
12727c478bd9Sstevel@tonic-gate 
12737c478bd9Sstevel@tonic-gate 	while ((i_ddi_node_state(dip) < state) && (rv == DDI_SUCCESS)) {
12747c478bd9Sstevel@tonic-gate 
12757c478bd9Sstevel@tonic-gate 		/* don't allow any more changes to the device tree */
12767c478bd9Sstevel@tonic-gate 		if (devinfo_freeze) {
12777c478bd9Sstevel@tonic-gate 			rv = DDI_FAILURE;
12787c478bd9Sstevel@tonic-gate 			break;
12797c478bd9Sstevel@tonic-gate 		}
12807c478bd9Sstevel@tonic-gate 
12817c478bd9Sstevel@tonic-gate 		switch (i_ddi_node_state(dip)) {
12827c478bd9Sstevel@tonic-gate 		case DS_PROTO:
12837c478bd9Sstevel@tonic-gate 			/*
12847c478bd9Sstevel@tonic-gate 			 * only caller can reference this node, no external
12857c478bd9Sstevel@tonic-gate 			 * locking needed.
12867c478bd9Sstevel@tonic-gate 			 */
12877c478bd9Sstevel@tonic-gate 			link_node(dip);
12887c478bd9Sstevel@tonic-gate 			i_ddi_set_node_state(dip, DS_LINKED);
12897c478bd9Sstevel@tonic-gate 			break;
12907c478bd9Sstevel@tonic-gate 		case DS_LINKED:
12917c478bd9Sstevel@tonic-gate 			/*
12927c478bd9Sstevel@tonic-gate 			 * Three code path may attempt to bind a node:
12937c478bd9Sstevel@tonic-gate 			 * - boot code
12947c478bd9Sstevel@tonic-gate 			 * - add_drv
12957c478bd9Sstevel@tonic-gate 			 * - hotplug thread
12967c478bd9Sstevel@tonic-gate 			 * Boot code is single threaded, add_drv synchronize
12977c478bd9Sstevel@tonic-gate 			 * on a userland lock, and hotplug synchronize on
12987c478bd9Sstevel@tonic-gate 			 * hotplug_lk. There could be a race between add_drv
12997c478bd9Sstevel@tonic-gate 			 * and hotplug thread. We'll live with this until the
13007c478bd9Sstevel@tonic-gate 			 * conversion to top-down loading.
13017c478bd9Sstevel@tonic-gate 			 */
13027c478bd9Sstevel@tonic-gate 			if ((rv = bind_node(dip)) == DDI_SUCCESS)
13037c478bd9Sstevel@tonic-gate 				i_ddi_set_node_state(dip, DS_BOUND);
13047c478bd9Sstevel@tonic-gate 			break;
13057c478bd9Sstevel@tonic-gate 		case DS_BOUND:
13067c478bd9Sstevel@tonic-gate 			/*
13077c478bd9Sstevel@tonic-gate 			 * The following transitions synchronizes on the
13087c478bd9Sstevel@tonic-gate 			 * per-driver busy changing flag, since we already
13097c478bd9Sstevel@tonic-gate 			 * have a driver.
13107c478bd9Sstevel@tonic-gate 			 */
13117c478bd9Sstevel@tonic-gate 			if ((rv = init_node(dip)) == DDI_SUCCESS)
13127c478bd9Sstevel@tonic-gate 				i_ddi_set_node_state(dip, DS_INITIALIZED);
13137c478bd9Sstevel@tonic-gate 			break;
13147c478bd9Sstevel@tonic-gate 		case DS_INITIALIZED:
13157c478bd9Sstevel@tonic-gate 			if ((rv = probe_node(dip)) == DDI_SUCCESS)
13167c478bd9Sstevel@tonic-gate 				i_ddi_set_node_state(dip, DS_PROBED);
13177c478bd9Sstevel@tonic-gate 			break;
13187c478bd9Sstevel@tonic-gate 		case DS_PROBED:
13197c478bd9Sstevel@tonic-gate 			atomic_add_long(&devinfo_attach_detach, 1);
13207c478bd9Sstevel@tonic-gate 			if ((rv = attach_node(dip)) == DDI_SUCCESS)
13217c478bd9Sstevel@tonic-gate 				i_ddi_set_node_state(dip, DS_ATTACHED);
13227c478bd9Sstevel@tonic-gate 			atomic_add_long(&devinfo_attach_detach, -1);
13237c478bd9Sstevel@tonic-gate 			break;
13247c478bd9Sstevel@tonic-gate 		case DS_ATTACHED:
13257c478bd9Sstevel@tonic-gate 			if ((rv = postattach_node(dip)) == DDI_SUCCESS)
13267c478bd9Sstevel@tonic-gate 				i_ddi_set_node_state(dip, DS_READY);
13277c478bd9Sstevel@tonic-gate 			break;
13287c478bd9Sstevel@tonic-gate 		case DS_READY:
13297c478bd9Sstevel@tonic-gate 			break;
13307c478bd9Sstevel@tonic-gate 		default:
13317c478bd9Sstevel@tonic-gate 			/* should never reach here */
13327c478bd9Sstevel@tonic-gate 			ASSERT("unknown devinfo state");
13337c478bd9Sstevel@tonic-gate 		}
13347c478bd9Sstevel@tonic-gate 	}
13357c478bd9Sstevel@tonic-gate 
13367c478bd9Sstevel@tonic-gate 	if (ddidebug & DDI_AUDIT)
13377c478bd9Sstevel@tonic-gate 		da_log_enter(dip);
13387c478bd9Sstevel@tonic-gate 	return (rv);
13397c478bd9Sstevel@tonic-gate }
13407c478bd9Sstevel@tonic-gate 
13417c478bd9Sstevel@tonic-gate /*
13427c478bd9Sstevel@tonic-gate  * i_ndi_unconfig_node: downgrade dev_info node into a specified state.
13437c478bd9Sstevel@tonic-gate  */
13447c478bd9Sstevel@tonic-gate int
13457c478bd9Sstevel@tonic-gate i_ndi_unconfig_node(dev_info_t *dip, ddi_node_state_t state, uint_t flag)
13467c478bd9Sstevel@tonic-gate {
13477c478bd9Sstevel@tonic-gate 	int rv = DDI_SUCCESS;
13487c478bd9Sstevel@tonic-gate 
13497c478bd9Sstevel@tonic-gate 	ASSERT(DEVI_BUSY_OWNED(ddi_get_parent(dip)));
13507c478bd9Sstevel@tonic-gate 
13517c478bd9Sstevel@tonic-gate 	while ((i_ddi_node_state(dip) > state) && (rv == DDI_SUCCESS)) {
13527c478bd9Sstevel@tonic-gate 
13537c478bd9Sstevel@tonic-gate 		/* don't allow any more changes to the device tree */
13547c478bd9Sstevel@tonic-gate 		if (devinfo_freeze) {
13557c478bd9Sstevel@tonic-gate 			rv = DDI_FAILURE;
13567c478bd9Sstevel@tonic-gate 			break;
13577c478bd9Sstevel@tonic-gate 		}
13587c478bd9Sstevel@tonic-gate 
13597c478bd9Sstevel@tonic-gate 		switch (i_ddi_node_state(dip)) {
13607c478bd9Sstevel@tonic-gate 		case DS_PROTO:
13617c478bd9Sstevel@tonic-gate 			break;
13627c478bd9Sstevel@tonic-gate 		case DS_LINKED:
13637c478bd9Sstevel@tonic-gate 			/*
13647c478bd9Sstevel@tonic-gate 			 * Persistent nodes are only removed by hotplug code
13657c478bd9Sstevel@tonic-gate 			 * .conf nodes synchronizes on per-driver list.
13667c478bd9Sstevel@tonic-gate 			 */
13677c478bd9Sstevel@tonic-gate 			if ((rv = unlink_node(dip)) == DDI_SUCCESS)
13687c478bd9Sstevel@tonic-gate 				i_ddi_set_node_state(dip, DS_PROTO);
13697c478bd9Sstevel@tonic-gate 			break;
13707c478bd9Sstevel@tonic-gate 		case DS_BOUND:
13717c478bd9Sstevel@tonic-gate 			/*
13727c478bd9Sstevel@tonic-gate 			 * The following transitions synchronizes on the
13737c478bd9Sstevel@tonic-gate 			 * per-driver busy changing flag, since we already
13747c478bd9Sstevel@tonic-gate 			 * have a driver.
13757c478bd9Sstevel@tonic-gate 			 */
13767c478bd9Sstevel@tonic-gate 			if ((rv = unbind_node(dip)) == DDI_SUCCESS)
13777c478bd9Sstevel@tonic-gate 				i_ddi_set_node_state(dip, DS_LINKED);
13787c478bd9Sstevel@tonic-gate 			break;
13797c478bd9Sstevel@tonic-gate 		case DS_INITIALIZED:
13807c478bd9Sstevel@tonic-gate 			if ((rv = uninit_node(dip)) == DDI_SUCCESS)
13817c478bd9Sstevel@tonic-gate 				i_ddi_set_node_state(dip, DS_BOUND);
13827c478bd9Sstevel@tonic-gate 			break;
13837c478bd9Sstevel@tonic-gate 		case DS_PROBED:
13847c478bd9Sstevel@tonic-gate 			if ((rv = unprobe_node(dip)) == DDI_SUCCESS)
13857c478bd9Sstevel@tonic-gate 				i_ddi_set_node_state(dip, DS_INITIALIZED);
13867c478bd9Sstevel@tonic-gate 			break;
13877c478bd9Sstevel@tonic-gate 		case DS_ATTACHED:
13887c478bd9Sstevel@tonic-gate 			atomic_add_long(&devinfo_attach_detach, 1);
138916747f41Scth 
139016747f41Scth 			mutex_enter(&(DEVI(dip)->devi_lock));
13917c478bd9Sstevel@tonic-gate 			DEVI_SET_DETACHING(dip);
139216747f41Scth 			mutex_exit(&(DEVI(dip)->devi_lock));
139316747f41Scth 
13947c478bd9Sstevel@tonic-gate 			membar_enter();	/* ensure visibility for hold_devi */
13957c478bd9Sstevel@tonic-gate 
13967c478bd9Sstevel@tonic-gate 			if ((rv = detach_node(dip, flag)) == DDI_SUCCESS)
13977c478bd9Sstevel@tonic-gate 				i_ddi_set_node_state(dip, DS_PROBED);
139816747f41Scth 
139916747f41Scth 			mutex_enter(&(DEVI(dip)->devi_lock));
14007c478bd9Sstevel@tonic-gate 			DEVI_CLR_DETACHING(dip);
140116747f41Scth 			mutex_exit(&(DEVI(dip)->devi_lock));
140216747f41Scth 
14037c478bd9Sstevel@tonic-gate 			atomic_add_long(&devinfo_attach_detach, -1);
14047c478bd9Sstevel@tonic-gate 			break;
14057c478bd9Sstevel@tonic-gate 		case DS_READY:
14067c478bd9Sstevel@tonic-gate 			if ((rv = predetach_node(dip, flag)) == DDI_SUCCESS)
14077c478bd9Sstevel@tonic-gate 				i_ddi_set_node_state(dip, DS_ATTACHED);
14087c478bd9Sstevel@tonic-gate 			break;
14097c478bd9Sstevel@tonic-gate 		default:
14107c478bd9Sstevel@tonic-gate 			ASSERT("unknown devinfo state");
14117c478bd9Sstevel@tonic-gate 		}
14127c478bd9Sstevel@tonic-gate 	}
14137c478bd9Sstevel@tonic-gate 	da_log_enter(dip);
14147c478bd9Sstevel@tonic-gate 	return (rv);
14157c478bd9Sstevel@tonic-gate }
14167c478bd9Sstevel@tonic-gate 
14177c478bd9Sstevel@tonic-gate /*
14187c478bd9Sstevel@tonic-gate  * ddi_initchild: transform node to DS_INITIALIZED state
14197c478bd9Sstevel@tonic-gate  */
14207c478bd9Sstevel@tonic-gate int
14217c478bd9Sstevel@tonic-gate ddi_initchild(dev_info_t *parent, dev_info_t *proto)
14227c478bd9Sstevel@tonic-gate {
14237c478bd9Sstevel@tonic-gate 	int ret, circ;
14247c478bd9Sstevel@tonic-gate 
14257c478bd9Sstevel@tonic-gate 	ndi_devi_enter(parent, &circ);
14267c478bd9Sstevel@tonic-gate 	ret = i_ndi_config_node(proto, DS_INITIALIZED, 0);
14277c478bd9Sstevel@tonic-gate 	ndi_devi_exit(parent, circ);
14287c478bd9Sstevel@tonic-gate 
14297c478bd9Sstevel@tonic-gate 	return (ret);
14307c478bd9Sstevel@tonic-gate }
14317c478bd9Sstevel@tonic-gate 
14327c478bd9Sstevel@tonic-gate /*
14337c478bd9Sstevel@tonic-gate  * ddi_uninitchild: transform node down to DS_BOUND state
14347c478bd9Sstevel@tonic-gate  */
14357c478bd9Sstevel@tonic-gate int
14367c478bd9Sstevel@tonic-gate ddi_uninitchild(dev_info_t *dip)
14377c478bd9Sstevel@tonic-gate {
14387c478bd9Sstevel@tonic-gate 	int ret, circ;
14397c478bd9Sstevel@tonic-gate 	dev_info_t *parent = ddi_get_parent(dip);
14407c478bd9Sstevel@tonic-gate 	ASSERT(parent);
14417c478bd9Sstevel@tonic-gate 
14427c478bd9Sstevel@tonic-gate 	ndi_devi_enter(parent, &circ);
14437c478bd9Sstevel@tonic-gate 	ret = i_ndi_unconfig_node(dip, DS_BOUND, 0);
14447c478bd9Sstevel@tonic-gate 	ndi_devi_exit(parent, circ);
14457c478bd9Sstevel@tonic-gate 
14467c478bd9Sstevel@tonic-gate 	return (ret);
14477c478bd9Sstevel@tonic-gate }
14487c478bd9Sstevel@tonic-gate 
14497c478bd9Sstevel@tonic-gate /*
1450737d277aScth  * i_ddi_attachchild: transform node to DS_READY/i_ddi_devi_attached() state
14517c478bd9Sstevel@tonic-gate  */
14527c478bd9Sstevel@tonic-gate static int
14537c478bd9Sstevel@tonic-gate i_ddi_attachchild(dev_info_t *dip)
14547c478bd9Sstevel@tonic-gate {
14557c478bd9Sstevel@tonic-gate 	dev_info_t	*parent = ddi_get_parent(dip);
14565e3986cbScth 	int		ret;
14575e3986cbScth 
14585e3986cbScth 	ASSERT(parent && DEVI_BUSY_OWNED(parent));
14597c478bd9Sstevel@tonic-gate 
14607c478bd9Sstevel@tonic-gate 	if ((i_ddi_node_state(dip) < DS_BOUND) || DEVI_IS_DEVICE_OFFLINE(dip))
14617c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
14627c478bd9Sstevel@tonic-gate 
14637c478bd9Sstevel@tonic-gate 	ret = i_ndi_config_node(dip, DS_READY, 0);
14647c478bd9Sstevel@tonic-gate 	if (ret == NDI_SUCCESS) {
14657c478bd9Sstevel@tonic-gate 		ret = DDI_SUCCESS;
14667c478bd9Sstevel@tonic-gate 	} else {
14677c478bd9Sstevel@tonic-gate 		/*
14687c478bd9Sstevel@tonic-gate 		 * Take it down to DS_INITIALIZED so pm_pre_probe is run
14697c478bd9Sstevel@tonic-gate 		 * on the next attach
14707c478bd9Sstevel@tonic-gate 		 */
14717c478bd9Sstevel@tonic-gate 		(void) i_ndi_unconfig_node(dip, DS_INITIALIZED, 0);
14727c478bd9Sstevel@tonic-gate 		ret = DDI_FAILURE;
14737c478bd9Sstevel@tonic-gate 	}
14747c478bd9Sstevel@tonic-gate 
14757c478bd9Sstevel@tonic-gate 	return (ret);
14767c478bd9Sstevel@tonic-gate }
14777c478bd9Sstevel@tonic-gate 
14787c478bd9Sstevel@tonic-gate /*
14797c478bd9Sstevel@tonic-gate  * i_ddi_detachchild: transform node down to DS_PROBED state
14807c478bd9Sstevel@tonic-gate  *	If it fails, put it back to DS_READY state.
14817c478bd9Sstevel@tonic-gate  * NOTE: A node that fails detach may be at DS_ATTACHED instead
1482737d277aScth  * of DS_READY for a small amount of time - this is the source of
1483737d277aScth  * transient DS_READY->DS_ATTACHED->DS_READY state changes.
14847c478bd9Sstevel@tonic-gate  */
14857c478bd9Sstevel@tonic-gate static int
14867c478bd9Sstevel@tonic-gate i_ddi_detachchild(dev_info_t *dip, uint_t flags)
14877c478bd9Sstevel@tonic-gate {
14887c478bd9Sstevel@tonic-gate 	dev_info_t	*parent = ddi_get_parent(dip);
14895e3986cbScth 	int		ret;
14907c478bd9Sstevel@tonic-gate 
14915e3986cbScth 	ASSERT(parent && DEVI_BUSY_OWNED(parent));
14925e3986cbScth 
14937c478bd9Sstevel@tonic-gate 	ret = i_ndi_unconfig_node(dip, DS_PROBED, flags);
14947c478bd9Sstevel@tonic-gate 	if (ret != DDI_SUCCESS)
14957c478bd9Sstevel@tonic-gate 		(void) i_ndi_config_node(dip, DS_READY, 0);
14967c478bd9Sstevel@tonic-gate 	else
14977c478bd9Sstevel@tonic-gate 		/* allow pm_pre_probe to reestablish pm state */
14987c478bd9Sstevel@tonic-gate 		(void) i_ndi_unconfig_node(dip, DS_INITIALIZED, 0);
14997c478bd9Sstevel@tonic-gate 	return (ret);
15007c478bd9Sstevel@tonic-gate }
15017c478bd9Sstevel@tonic-gate 
15027c478bd9Sstevel@tonic-gate /*
15037c478bd9Sstevel@tonic-gate  * Add a child and bind to driver
15047c478bd9Sstevel@tonic-gate  */
15057c478bd9Sstevel@tonic-gate dev_info_t *
15067c478bd9Sstevel@tonic-gate ddi_add_child(dev_info_t *pdip, char *name, uint_t nodeid, uint_t unit)
15077c478bd9Sstevel@tonic-gate {
15087c478bd9Sstevel@tonic-gate 	int circ;
15097c478bd9Sstevel@tonic-gate 	dev_info_t *dip;
15107c478bd9Sstevel@tonic-gate 
15117c478bd9Sstevel@tonic-gate 	/* allocate a new node */
15127c478bd9Sstevel@tonic-gate 	dip = i_ddi_alloc_node(pdip, name, nodeid, (int)unit, NULL, KM_SLEEP);
15137c478bd9Sstevel@tonic-gate 
15147c478bd9Sstevel@tonic-gate 	ndi_devi_enter(pdip, &circ);
15157c478bd9Sstevel@tonic-gate 	(void) i_ndi_config_node(dip, DS_BOUND, 0);
15167c478bd9Sstevel@tonic-gate 	ndi_devi_exit(pdip, circ);
15177c478bd9Sstevel@tonic-gate 	return (dip);
15187c478bd9Sstevel@tonic-gate }
15197c478bd9Sstevel@tonic-gate 
15207c478bd9Sstevel@tonic-gate /*
15217c478bd9Sstevel@tonic-gate  * ddi_remove_child: remove the dip. The parent must be attached and held
15227c478bd9Sstevel@tonic-gate  */
15237c478bd9Sstevel@tonic-gate int
15247c478bd9Sstevel@tonic-gate ddi_remove_child(dev_info_t *dip, int dummy)
15257c478bd9Sstevel@tonic-gate {
15267c478bd9Sstevel@tonic-gate 	_NOTE(ARGUNUSED(dummy))
15277c478bd9Sstevel@tonic-gate 	int circ, ret;
15287c478bd9Sstevel@tonic-gate 	dev_info_t *parent = ddi_get_parent(dip);
15297c478bd9Sstevel@tonic-gate 	ASSERT(parent);
15307c478bd9Sstevel@tonic-gate 
15317c478bd9Sstevel@tonic-gate 	ndi_devi_enter(parent, &circ);
15327c478bd9Sstevel@tonic-gate 
15337c478bd9Sstevel@tonic-gate 	/*
15347c478bd9Sstevel@tonic-gate 	 * If we still have children, for example SID nodes marked
15357c478bd9Sstevel@tonic-gate 	 * as persistent but not attached, attempt to remove them.
15367c478bd9Sstevel@tonic-gate 	 */
15377c478bd9Sstevel@tonic-gate 	if (DEVI(dip)->devi_child) {
15387c478bd9Sstevel@tonic-gate 		ret = ndi_devi_unconfig(dip, NDI_DEVI_REMOVE);
15397c478bd9Sstevel@tonic-gate 		if (ret != NDI_SUCCESS) {
15407c478bd9Sstevel@tonic-gate 			ndi_devi_exit(parent, circ);
15417c478bd9Sstevel@tonic-gate 			return (DDI_FAILURE);
15427c478bd9Sstevel@tonic-gate 		}
15437c478bd9Sstevel@tonic-gate 		ASSERT(DEVI(dip)->devi_child == NULL);
15447c478bd9Sstevel@tonic-gate 	}
15457c478bd9Sstevel@tonic-gate 
15467c478bd9Sstevel@tonic-gate 	ret = i_ndi_unconfig_node(dip, DS_PROTO, 0);
15477c478bd9Sstevel@tonic-gate 	ndi_devi_exit(parent, circ);
15487c478bd9Sstevel@tonic-gate 
15497c478bd9Sstevel@tonic-gate 	if (ret != DDI_SUCCESS)
15507c478bd9Sstevel@tonic-gate 		return (ret);
15517c478bd9Sstevel@tonic-gate 
15527c478bd9Sstevel@tonic-gate 	ASSERT(i_ddi_node_state(dip) == DS_PROTO);
15537c478bd9Sstevel@tonic-gate 	i_ddi_free_node(dip);
15547c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
15557c478bd9Sstevel@tonic-gate }
15567c478bd9Sstevel@tonic-gate 
15577c478bd9Sstevel@tonic-gate /*
15587c478bd9Sstevel@tonic-gate  * NDI wrappers for ref counting, node allocation, and transitions
15597c478bd9Sstevel@tonic-gate  */
15607c478bd9Sstevel@tonic-gate 
15617c478bd9Sstevel@tonic-gate /*
15627c478bd9Sstevel@tonic-gate  * Hold/release the devinfo node itself.
15637c478bd9Sstevel@tonic-gate  * Caller is assumed to prevent the devi from detaching during this call
15647c478bd9Sstevel@tonic-gate  */
15657c478bd9Sstevel@tonic-gate void
15667c478bd9Sstevel@tonic-gate ndi_hold_devi(dev_info_t *dip)
15677c478bd9Sstevel@tonic-gate {
15687c478bd9Sstevel@tonic-gate 	mutex_enter(&DEVI(dip)->devi_lock);
15697c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(dip)->devi_ref >= 0);
15707c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_ref++;
15717c478bd9Sstevel@tonic-gate 	membar_enter();			/* make sure stores are flushed */
15727c478bd9Sstevel@tonic-gate 	mutex_exit(&DEVI(dip)->devi_lock);
15737c478bd9Sstevel@tonic-gate }
15747c478bd9Sstevel@tonic-gate 
15757c478bd9Sstevel@tonic-gate void
15767c478bd9Sstevel@tonic-gate ndi_rele_devi(dev_info_t *dip)
15777c478bd9Sstevel@tonic-gate {
15787c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(dip)->devi_ref > 0);
15797c478bd9Sstevel@tonic-gate 
15807c478bd9Sstevel@tonic-gate 	mutex_enter(&DEVI(dip)->devi_lock);
15817c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_ref--;
15827c478bd9Sstevel@tonic-gate 	membar_enter();			/* make sure stores are flushed */
15837c478bd9Sstevel@tonic-gate 	mutex_exit(&DEVI(dip)->devi_lock);
15847c478bd9Sstevel@tonic-gate }
15857c478bd9Sstevel@tonic-gate 
15867c478bd9Sstevel@tonic-gate int
15877c478bd9Sstevel@tonic-gate e_ddi_devi_holdcnt(dev_info_t *dip)
15887c478bd9Sstevel@tonic-gate {
15897c478bd9Sstevel@tonic-gate 	return (DEVI(dip)->devi_ref);
15907c478bd9Sstevel@tonic-gate }
15917c478bd9Sstevel@tonic-gate 
15927c478bd9Sstevel@tonic-gate /*
15937c478bd9Sstevel@tonic-gate  * Hold/release the driver the devinfo node is bound to.
15947c478bd9Sstevel@tonic-gate  */
15957c478bd9Sstevel@tonic-gate struct dev_ops *
15967c478bd9Sstevel@tonic-gate ndi_hold_driver(dev_info_t *dip)
15977c478bd9Sstevel@tonic-gate {
15987c478bd9Sstevel@tonic-gate 	if (i_ddi_node_state(dip) < DS_BOUND)
15997c478bd9Sstevel@tonic-gate 		return (NULL);
16007c478bd9Sstevel@tonic-gate 
16017c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(dip)->devi_major != -1);
16027c478bd9Sstevel@tonic-gate 	return (mod_hold_dev_by_major(DEVI(dip)->devi_major));
16037c478bd9Sstevel@tonic-gate }
16047c478bd9Sstevel@tonic-gate 
16057c478bd9Sstevel@tonic-gate void
16067c478bd9Sstevel@tonic-gate ndi_rele_driver(dev_info_t *dip)
16077c478bd9Sstevel@tonic-gate {
16087c478bd9Sstevel@tonic-gate 	ASSERT(i_ddi_node_state(dip) >= DS_BOUND);
16097c478bd9Sstevel@tonic-gate 	mod_rele_dev_by_major(DEVI(dip)->devi_major);
16107c478bd9Sstevel@tonic-gate }
16117c478bd9Sstevel@tonic-gate 
16127c478bd9Sstevel@tonic-gate /*
16137c478bd9Sstevel@tonic-gate  * Single thread entry into devinfo node for modifying its children.
16147c478bd9Sstevel@tonic-gate  * To verify in ASSERTS use DEVI_BUSY_OWNED macro.
16157c478bd9Sstevel@tonic-gate  */
16167c478bd9Sstevel@tonic-gate void
16177c478bd9Sstevel@tonic-gate ndi_devi_enter(dev_info_t *dip, int *circular)
16187c478bd9Sstevel@tonic-gate {
16197c478bd9Sstevel@tonic-gate 	struct dev_info *devi = DEVI(dip);
16207c478bd9Sstevel@tonic-gate 	ASSERT(dip != NULL);
16217c478bd9Sstevel@tonic-gate 
16225e3986cbScth 	/* for vHCI, enforce (vHCI, pHCI) ndi_deve_enter() order */
16235e3986cbScth 	ASSERT(!MDI_VHCI(dip) || (mdi_devi_pdip_entered(dip) == 0) ||
16245e3986cbScth 	    DEVI_BUSY_OWNED(dip));
16255e3986cbScth 
16267c478bd9Sstevel@tonic-gate 	mutex_enter(&devi->devi_lock);
16277c478bd9Sstevel@tonic-gate 	if (devi->devi_busy_thread == curthread) {
16287c478bd9Sstevel@tonic-gate 		devi->devi_circular++;
16297c478bd9Sstevel@tonic-gate 	} else {
16307c478bd9Sstevel@tonic-gate 		while (DEVI_BUSY_CHANGING(devi) && !panicstr)
16317c478bd9Sstevel@tonic-gate 			cv_wait(&(devi->devi_cv), &(devi->devi_lock));
16327c478bd9Sstevel@tonic-gate 		if (panicstr) {
16337c478bd9Sstevel@tonic-gate 			mutex_exit(&devi->devi_lock);
16347c478bd9Sstevel@tonic-gate 			return;
16357c478bd9Sstevel@tonic-gate 		}
16367c478bd9Sstevel@tonic-gate 		devi->devi_flags |= DEVI_BUSY;
16377c478bd9Sstevel@tonic-gate 		devi->devi_busy_thread = curthread;
16387c478bd9Sstevel@tonic-gate 	}
16397c478bd9Sstevel@tonic-gate 	*circular = devi->devi_circular;
16407c478bd9Sstevel@tonic-gate 	mutex_exit(&devi->devi_lock);
16417c478bd9Sstevel@tonic-gate }
16427c478bd9Sstevel@tonic-gate 
16437c478bd9Sstevel@tonic-gate /*
16447c478bd9Sstevel@tonic-gate  * Release ndi_devi_enter or successful ndi_devi_tryenter.
16457c478bd9Sstevel@tonic-gate  */
16467c478bd9Sstevel@tonic-gate void
16477c478bd9Sstevel@tonic-gate ndi_devi_exit(dev_info_t *dip, int circular)
16487c478bd9Sstevel@tonic-gate {
16497c478bd9Sstevel@tonic-gate 	struct dev_info	*devi = DEVI(dip);
16505e3986cbScth 	struct dev_info	*vdevi;
16517c478bd9Sstevel@tonic-gate 	ASSERT(dip != NULL);
16527c478bd9Sstevel@tonic-gate 
16537c478bd9Sstevel@tonic-gate 	if (panicstr)
16547c478bd9Sstevel@tonic-gate 		return;
16557c478bd9Sstevel@tonic-gate 
16567c478bd9Sstevel@tonic-gate 	mutex_enter(&(devi->devi_lock));
16577c478bd9Sstevel@tonic-gate 	if (circular != 0) {
16587c478bd9Sstevel@tonic-gate 		devi->devi_circular--;
16597c478bd9Sstevel@tonic-gate 	} else {
16607c478bd9Sstevel@tonic-gate 		devi->devi_flags &= ~DEVI_BUSY;
16617c478bd9Sstevel@tonic-gate 		ASSERT(devi->devi_busy_thread == curthread);
16627c478bd9Sstevel@tonic-gate 		devi->devi_busy_thread = NULL;
16637c478bd9Sstevel@tonic-gate 		cv_broadcast(&(devi->devi_cv));
16647c478bd9Sstevel@tonic-gate 	}
16657c478bd9Sstevel@tonic-gate 	mutex_exit(&(devi->devi_lock));
16665e3986cbScth 
16675e3986cbScth 	/*
16685e3986cbScth 	 * For pHCI exit we issue a broadcast to vHCI for ndi_devi_config_one()
16695e3986cbScth 	 * doing cv_wait on vHCI.
16705e3986cbScth 	 */
16715e3986cbScth 	if (MDI_PHCI(dip)) {
16725e3986cbScth 		vdevi = DEVI(mdi_devi_get_vdip(dip));
16735e3986cbScth 		if (vdevi) {
16745e3986cbScth 			mutex_enter(&(vdevi->devi_lock));
16755e3986cbScth 			if (vdevi->devi_flags & DEVI_PHCI_SIGNALS_VHCI) {
16765e3986cbScth 				vdevi->devi_flags &= ~DEVI_PHCI_SIGNALS_VHCI;
16775e3986cbScth 				cv_broadcast(&(vdevi->devi_cv));
16785e3986cbScth 			}
16795e3986cbScth 			mutex_exit(&(vdevi->devi_lock));
16805e3986cbScth 		}
16815e3986cbScth 	}
16825e3986cbScth }
16835e3986cbScth 
16845e3986cbScth /*
16855e3986cbScth  * Release ndi_devi_enter and wait for possibility of new children, avoiding
16865e3986cbScth  * possibility of missing broadcast before getting to cv_timedwait().
16875e3986cbScth  */
16885e3986cbScth static void
16895e3986cbScth ndi_devi_exit_and_wait(dev_info_t *dip, int circular, clock_t end_time)
16905e3986cbScth {
16915e3986cbScth 	struct dev_info	*devi = DEVI(dip);
16925e3986cbScth 	ASSERT(dip != NULL);
16935e3986cbScth 
16945e3986cbScth 	if (panicstr)
16955e3986cbScth 		return;
16965e3986cbScth 
16975e3986cbScth 	/*
16985e3986cbScth 	 * We are called to wait for of a new child, and new child can
16995e3986cbScth 	 * only be added if circular is zero.
17005e3986cbScth 	 */
17015e3986cbScth 	ASSERT(circular == 0);
17025e3986cbScth 
17035e3986cbScth 	/* like ndi_devi_exit with circular of zero */
17045e3986cbScth 	mutex_enter(&(devi->devi_lock));
17055e3986cbScth 	devi->devi_flags &= ~DEVI_BUSY;
17065e3986cbScth 	ASSERT(devi->devi_busy_thread == curthread);
17075e3986cbScth 	devi->devi_busy_thread = NULL;
17085e3986cbScth 	cv_broadcast(&(devi->devi_cv));
17095e3986cbScth 
17105e3986cbScth 	/* now wait for new children while still holding devi_lock */
17115e3986cbScth 	(void) cv_timedwait(&devi->devi_cv, &(devi->devi_lock), end_time);
17125e3986cbScth 	mutex_exit(&(devi->devi_lock));
17137c478bd9Sstevel@tonic-gate }
17147c478bd9Sstevel@tonic-gate 
17157c478bd9Sstevel@tonic-gate /*
17167c478bd9Sstevel@tonic-gate  * Attempt to single thread entry into devinfo node for modifying its children.
17177c478bd9Sstevel@tonic-gate  */
17187c478bd9Sstevel@tonic-gate int
17197c478bd9Sstevel@tonic-gate ndi_devi_tryenter(dev_info_t *dip, int *circular)
17207c478bd9Sstevel@tonic-gate {
17217c478bd9Sstevel@tonic-gate 	int rval = 1;		   /* assume we enter */
17227c478bd9Sstevel@tonic-gate 	struct dev_info *devi = DEVI(dip);
17237c478bd9Sstevel@tonic-gate 	ASSERT(dip != NULL);
17247c478bd9Sstevel@tonic-gate 
17257c478bd9Sstevel@tonic-gate 	mutex_enter(&devi->devi_lock);
17267c478bd9Sstevel@tonic-gate 	if (devi->devi_busy_thread == (void *)curthread) {
17277c478bd9Sstevel@tonic-gate 		devi->devi_circular++;
17287c478bd9Sstevel@tonic-gate 	} else {
17297c478bd9Sstevel@tonic-gate 		if (!DEVI_BUSY_CHANGING(devi)) {
17307c478bd9Sstevel@tonic-gate 			devi->devi_flags |= DEVI_BUSY;
17317c478bd9Sstevel@tonic-gate 			devi->devi_busy_thread = (void *)curthread;
17327c478bd9Sstevel@tonic-gate 		} else {
17337c478bd9Sstevel@tonic-gate 			rval = 0;	/* devi is busy */
17347c478bd9Sstevel@tonic-gate 		}
17357c478bd9Sstevel@tonic-gate 	}
17367c478bd9Sstevel@tonic-gate 	*circular = devi->devi_circular;
17377c478bd9Sstevel@tonic-gate 	mutex_exit(&devi->devi_lock);
17387c478bd9Sstevel@tonic-gate 	return (rval);
17397c478bd9Sstevel@tonic-gate }
17407c478bd9Sstevel@tonic-gate 
17417c478bd9Sstevel@tonic-gate /*
17427c478bd9Sstevel@tonic-gate  * Allocate and initialize a new dev_info structure.
17437c478bd9Sstevel@tonic-gate  *
17447c478bd9Sstevel@tonic-gate  * This routine may be called at interrupt time by a nexus in
17457c478bd9Sstevel@tonic-gate  * response to a hotplug event, therefore memory allocations are
17467c478bd9Sstevel@tonic-gate  * not allowed to sleep.
17477c478bd9Sstevel@tonic-gate  */
17487c478bd9Sstevel@tonic-gate int
1749fa9e4066Sahrens ndi_devi_alloc(dev_info_t *parent, char *node_name, pnode_t nodeid,
17507c478bd9Sstevel@tonic-gate     dev_info_t **ret_dip)
17517c478bd9Sstevel@tonic-gate {
17527c478bd9Sstevel@tonic-gate 	ASSERT(node_name != NULL);
17537c478bd9Sstevel@tonic-gate 	ASSERT(ret_dip != NULL);
17547c478bd9Sstevel@tonic-gate 
17557c478bd9Sstevel@tonic-gate 	*ret_dip = i_ddi_alloc_node(parent, node_name, nodeid, -1, NULL,
17567c478bd9Sstevel@tonic-gate 	    KM_NOSLEEP);
17577c478bd9Sstevel@tonic-gate 	if (*ret_dip == NULL) {
17587c478bd9Sstevel@tonic-gate 		return (NDI_NOMEM);
17597c478bd9Sstevel@tonic-gate 	}
17607c478bd9Sstevel@tonic-gate 
17617c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
17627c478bd9Sstevel@tonic-gate }
17637c478bd9Sstevel@tonic-gate 
17647c478bd9Sstevel@tonic-gate /*
17657c478bd9Sstevel@tonic-gate  * Allocate and initialize a new dev_info structure
17667c478bd9Sstevel@tonic-gate  * This routine may sleep and should not be called at interrupt time
17677c478bd9Sstevel@tonic-gate  */
17687c478bd9Sstevel@tonic-gate void
1769fa9e4066Sahrens ndi_devi_alloc_sleep(dev_info_t *parent, char *node_name, pnode_t nodeid,
17707c478bd9Sstevel@tonic-gate     dev_info_t **ret_dip)
17717c478bd9Sstevel@tonic-gate {
17727c478bd9Sstevel@tonic-gate 	ASSERT(node_name != NULL);
17737c478bd9Sstevel@tonic-gate 	ASSERT(ret_dip != NULL);
17747c478bd9Sstevel@tonic-gate 
17757c478bd9Sstevel@tonic-gate 	*ret_dip = i_ddi_alloc_node(parent, node_name, nodeid, -1, NULL,
17767c478bd9Sstevel@tonic-gate 	    KM_SLEEP);
17777c478bd9Sstevel@tonic-gate 	ASSERT(*ret_dip);
17787c478bd9Sstevel@tonic-gate }
17797c478bd9Sstevel@tonic-gate 
17807c478bd9Sstevel@tonic-gate /*
17817c478bd9Sstevel@tonic-gate  * Remove an initialized (but not yet attached) dev_info
17827c478bd9Sstevel@tonic-gate  * node from it's parent.
17837c478bd9Sstevel@tonic-gate  */
17847c478bd9Sstevel@tonic-gate int
17857c478bd9Sstevel@tonic-gate ndi_devi_free(dev_info_t *dip)
17867c478bd9Sstevel@tonic-gate {
17877c478bd9Sstevel@tonic-gate 	ASSERT(dip != NULL);
17887c478bd9Sstevel@tonic-gate 
17897c478bd9Sstevel@tonic-gate 	if (i_ddi_node_state(dip) >= DS_INITIALIZED)
17907c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
17917c478bd9Sstevel@tonic-gate 
17927c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT, "ndi_devi_free: %s%d (%p)\n",
17937c478bd9Sstevel@tonic-gate 	    ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip));
17947c478bd9Sstevel@tonic-gate 
17957c478bd9Sstevel@tonic-gate 	(void) ddi_remove_child(dip, 0);
17967c478bd9Sstevel@tonic-gate 
17977c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
17987c478bd9Sstevel@tonic-gate }
17997c478bd9Sstevel@tonic-gate 
18007c478bd9Sstevel@tonic-gate /*
18017c478bd9Sstevel@tonic-gate  * ndi_devi_bind_driver() binds a driver to a given device. If it fails
18027c478bd9Sstevel@tonic-gate  * to bind the driver, it returns an appropriate error back. Some drivers
18037c478bd9Sstevel@tonic-gate  * may want to know if the actually failed to bind.
18047c478bd9Sstevel@tonic-gate  */
18057c478bd9Sstevel@tonic-gate int
18067c478bd9Sstevel@tonic-gate ndi_devi_bind_driver(dev_info_t *dip, uint_t flags)
18077c478bd9Sstevel@tonic-gate {
18087c478bd9Sstevel@tonic-gate 	int ret = NDI_FAILURE;
18097c478bd9Sstevel@tonic-gate 	int circ;
18107c478bd9Sstevel@tonic-gate 	dev_info_t *pdip = ddi_get_parent(dip);
18117c478bd9Sstevel@tonic-gate 	ASSERT(pdip);
18127c478bd9Sstevel@tonic-gate 
18137c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT,
18147c478bd9Sstevel@tonic-gate 	    "ndi_devi_bind_driver: %s%d (%p) flags: %x\n",
18157c478bd9Sstevel@tonic-gate 	    ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip, flags));
18167c478bd9Sstevel@tonic-gate 
18177c478bd9Sstevel@tonic-gate 	ndi_devi_enter(pdip, &circ);
18187c478bd9Sstevel@tonic-gate 	if (i_ndi_config_node(dip, DS_BOUND, flags) == DDI_SUCCESS)
18197c478bd9Sstevel@tonic-gate 		ret = NDI_SUCCESS;
18207c478bd9Sstevel@tonic-gate 	ndi_devi_exit(pdip, circ);
18217c478bd9Sstevel@tonic-gate 
18227c478bd9Sstevel@tonic-gate 	return (ret);
18237c478bd9Sstevel@tonic-gate }
18247c478bd9Sstevel@tonic-gate 
18257c478bd9Sstevel@tonic-gate /*
18267c478bd9Sstevel@tonic-gate  * ndi_devi_unbind_driver: unbind the dip
18277c478bd9Sstevel@tonic-gate  */
18287c478bd9Sstevel@tonic-gate static int
18297c478bd9Sstevel@tonic-gate ndi_devi_unbind_driver(dev_info_t *dip)
18307c478bd9Sstevel@tonic-gate {
18317c478bd9Sstevel@tonic-gate 	ASSERT(DEVI_BUSY_OWNED(ddi_get_parent(dip)));
18327c478bd9Sstevel@tonic-gate 
18337c478bd9Sstevel@tonic-gate 	return (i_ndi_unconfig_node(dip, DS_LINKED, 0));
18347c478bd9Sstevel@tonic-gate }
18357c478bd9Sstevel@tonic-gate 
18367c478bd9Sstevel@tonic-gate /*
18377c478bd9Sstevel@tonic-gate  * Misc. help routines called by framework only
18387c478bd9Sstevel@tonic-gate  */
18397c478bd9Sstevel@tonic-gate 
18407c478bd9Sstevel@tonic-gate /*
18417c478bd9Sstevel@tonic-gate  * Get the state of node
18427c478bd9Sstevel@tonic-gate  */
18437c478bd9Sstevel@tonic-gate ddi_node_state_t
18447c478bd9Sstevel@tonic-gate i_ddi_node_state(dev_info_t *dip)
18457c478bd9Sstevel@tonic-gate {
18467c478bd9Sstevel@tonic-gate 	return (DEVI(dip)->devi_node_state);
18477c478bd9Sstevel@tonic-gate }
18487c478bd9Sstevel@tonic-gate 
18497c478bd9Sstevel@tonic-gate /*
18507c478bd9Sstevel@tonic-gate  * Set the state of node
18517c478bd9Sstevel@tonic-gate  */
18527c478bd9Sstevel@tonic-gate void
18537c478bd9Sstevel@tonic-gate i_ddi_set_node_state(dev_info_t *dip, ddi_node_state_t state)
18547c478bd9Sstevel@tonic-gate {
18557c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_node_state = state;
18567c478bd9Sstevel@tonic-gate 	membar_enter();			/* make sure stores are flushed */
18577c478bd9Sstevel@tonic-gate }
18587c478bd9Sstevel@tonic-gate 
18597c478bd9Sstevel@tonic-gate /*
1860737d277aScth  * Determine if node is attached. The implementation accommodates transient
1861737d277aScth  * DS_READY->DS_ATTACHED->DS_READY state changes.  Outside this file, this
1862737d277aScth  * function should be instead of i_ddi_node_state() DS_ATTACHED/DS_READY
1863737d277aScth  * state checks.
1864737d277aScth  */
1865737d277aScth int
1866737d277aScth i_ddi_devi_attached(dev_info_t *dip)
1867737d277aScth {
1868737d277aScth 	return (DEVI(dip)->devi_node_state >= DS_ATTACHED);
1869737d277aScth }
1870737d277aScth 
1871737d277aScth /*
18727c478bd9Sstevel@tonic-gate  * Common function for finding a node in a sibling list given name and addr.
18737c478bd9Sstevel@tonic-gate  *
18747c478bd9Sstevel@tonic-gate  * By default, name is matched with devi_node_name. The following
18757c478bd9Sstevel@tonic-gate  * alternative match strategies are supported:
18767c478bd9Sstevel@tonic-gate  *
18777c478bd9Sstevel@tonic-gate  *	FIND_NAME_BY_DRIVER: A match on driver name bound to node is conducted.
18787c478bd9Sstevel@tonic-gate  *		This support is used for support of OBP generic names and
18797c478bd9Sstevel@tonic-gate  *		for the conversion from driver names to generic names.  When
18807c478bd9Sstevel@tonic-gate  *		more consistency in the generic name environment is achieved
18817c478bd9Sstevel@tonic-gate  *		(and not needed for upgrade) this support can be removed.
18827c478bd9Sstevel@tonic-gate  *
18837c478bd9Sstevel@tonic-gate  * If a child is not named (dev_addr == NULL), there are three
18847c478bd9Sstevel@tonic-gate  * possible actions:
18857c478bd9Sstevel@tonic-gate  *
18867c478bd9Sstevel@tonic-gate  *	(1) skip it
18877c478bd9Sstevel@tonic-gate  *	(2) FIND_ADDR_BY_INIT: bring child to DS_INITIALIZED state
18887c478bd9Sstevel@tonic-gate  *	(3) FIND_ADDR_BY_CALLBACK: use a caller-supplied callback function
18897c478bd9Sstevel@tonic-gate  */
18907c478bd9Sstevel@tonic-gate #define	FIND_NAME_BY_DRIVER	0x01
18917c478bd9Sstevel@tonic-gate #define	FIND_ADDR_BY_INIT	0x10
18927c478bd9Sstevel@tonic-gate #define	FIND_ADDR_BY_CALLBACK	0x20
18937c478bd9Sstevel@tonic-gate 
18947c478bd9Sstevel@tonic-gate static dev_info_t *
18957c478bd9Sstevel@tonic-gate find_sibling(dev_info_t *head, char *cname, char *caddr, uint_t flag,
18967c478bd9Sstevel@tonic-gate     int (*callback)(dev_info_t *, char *, int))
18977c478bd9Sstevel@tonic-gate {
18987c478bd9Sstevel@tonic-gate 	dev_info_t	*dip;
18997c478bd9Sstevel@tonic-gate 	char		*addr, *buf;
19007c478bd9Sstevel@tonic-gate 	major_t		major;
19017c478bd9Sstevel@tonic-gate 
19027c478bd9Sstevel@tonic-gate 	/* only one way to name a node */
19037c478bd9Sstevel@tonic-gate 	ASSERT(((flag & FIND_ADDR_BY_INIT) == 0) ||
19047c478bd9Sstevel@tonic-gate 	    ((flag & FIND_ADDR_BY_CALLBACK) == 0));
19057c478bd9Sstevel@tonic-gate 
19067c478bd9Sstevel@tonic-gate 	if (flag & FIND_NAME_BY_DRIVER) {
19077c478bd9Sstevel@tonic-gate 		major = ddi_name_to_major(cname);
19087c478bd9Sstevel@tonic-gate 		if (major == (major_t)-1)
19097c478bd9Sstevel@tonic-gate 			return (NULL);
19107c478bd9Sstevel@tonic-gate 	}
19117c478bd9Sstevel@tonic-gate 
19127c478bd9Sstevel@tonic-gate 	/* preallocate buffer of naming node by callback */
19137c478bd9Sstevel@tonic-gate 	if (flag & FIND_ADDR_BY_CALLBACK)
19147c478bd9Sstevel@tonic-gate 		buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
19157c478bd9Sstevel@tonic-gate 
19167c478bd9Sstevel@tonic-gate 	/*
19177c478bd9Sstevel@tonic-gate 	 * Walk the child list to find a match
19187c478bd9Sstevel@tonic-gate 	 */
19197c478bd9Sstevel@tonic-gate 
19207c478bd9Sstevel@tonic-gate 	for (dip = head; dip; dip = ddi_get_next_sibling(dip)) {
19217c478bd9Sstevel@tonic-gate 		if (flag & FIND_NAME_BY_DRIVER) {
19227c478bd9Sstevel@tonic-gate 			/* match driver major */
19237c478bd9Sstevel@tonic-gate 			if (DEVI(dip)->devi_major != major)
19247c478bd9Sstevel@tonic-gate 				continue;
19257c478bd9Sstevel@tonic-gate 		} else {
19267c478bd9Sstevel@tonic-gate 			/* match node name */
19277c478bd9Sstevel@tonic-gate 			if (strcmp(cname, DEVI(dip)->devi_node_name) != 0)
19287c478bd9Sstevel@tonic-gate 				continue;
19297c478bd9Sstevel@tonic-gate 		}
19307c478bd9Sstevel@tonic-gate 
19317c478bd9Sstevel@tonic-gate 		if ((addr = DEVI(dip)->devi_addr) == NULL) {
19327c478bd9Sstevel@tonic-gate 			/* name the child based on the flag */
19337c478bd9Sstevel@tonic-gate 			if (flag & FIND_ADDR_BY_INIT) {
19347c478bd9Sstevel@tonic-gate 				if (ddi_initchild(ddi_get_parent(dip), dip)
19357c478bd9Sstevel@tonic-gate 				    != DDI_SUCCESS)
19367c478bd9Sstevel@tonic-gate 					continue;
19377c478bd9Sstevel@tonic-gate 				addr = DEVI(dip)->devi_addr;
19387c478bd9Sstevel@tonic-gate 			} else if (flag & FIND_ADDR_BY_CALLBACK) {
19397c478bd9Sstevel@tonic-gate 				if ((callback == NULL) || (callback(
19407c478bd9Sstevel@tonic-gate 				    dip, buf, MAXNAMELEN) != DDI_SUCCESS))
19417c478bd9Sstevel@tonic-gate 					continue;
19427c478bd9Sstevel@tonic-gate 				addr = buf;
19437c478bd9Sstevel@tonic-gate 			} else {
19447c478bd9Sstevel@tonic-gate 				continue;	/* skip */
19457c478bd9Sstevel@tonic-gate 			}
19467c478bd9Sstevel@tonic-gate 		}
19477c478bd9Sstevel@tonic-gate 
19487c478bd9Sstevel@tonic-gate 		/* match addr */
19497c478bd9Sstevel@tonic-gate 		ASSERT(addr != NULL);
19507c478bd9Sstevel@tonic-gate 		if (strcmp(caddr, addr) == 0)
19517c478bd9Sstevel@tonic-gate 			break;	/* node found */
19527c478bd9Sstevel@tonic-gate 
19537c478bd9Sstevel@tonic-gate 	}
19547c478bd9Sstevel@tonic-gate 	if (flag & FIND_ADDR_BY_CALLBACK)
19557c478bd9Sstevel@tonic-gate 		kmem_free(buf, MAXNAMELEN);
19567c478bd9Sstevel@tonic-gate 	return (dip);
19577c478bd9Sstevel@tonic-gate }
19587c478bd9Sstevel@tonic-gate 
19597c478bd9Sstevel@tonic-gate /*
19607c478bd9Sstevel@tonic-gate  * Find child of pdip with name: cname@caddr
19617c478bd9Sstevel@tonic-gate  * Called by init_node() to look for duplicate nodes
19627c478bd9Sstevel@tonic-gate  */
19637c478bd9Sstevel@tonic-gate static dev_info_t *
19647c478bd9Sstevel@tonic-gate find_duplicate_child(dev_info_t *pdip, dev_info_t *dip)
19657c478bd9Sstevel@tonic-gate {
19667c478bd9Sstevel@tonic-gate 	dev_info_t *dup;
19677c478bd9Sstevel@tonic-gate 	char *cname = DEVI(dip)->devi_node_name;
19687c478bd9Sstevel@tonic-gate 	char *caddr = DEVI(dip)->devi_addr;
19697c478bd9Sstevel@tonic-gate 
19707c478bd9Sstevel@tonic-gate 	/* search nodes before dip */
19717c478bd9Sstevel@tonic-gate 	dup = find_sibling(ddi_get_child(pdip), cname, caddr, 0, NULL);
19727c478bd9Sstevel@tonic-gate 	if (dup != dip)
19737c478bd9Sstevel@tonic-gate 		return (dup);
19747c478bd9Sstevel@tonic-gate 
19757c478bd9Sstevel@tonic-gate 	/*
19767c478bd9Sstevel@tonic-gate 	 * search nodes after dip; normally this is not needed,
19777c478bd9Sstevel@tonic-gate 	 */
19787c478bd9Sstevel@tonic-gate 	return (find_sibling(ddi_get_next_sibling(dip), cname, caddr,
19797c478bd9Sstevel@tonic-gate 	    0, NULL));
19807c478bd9Sstevel@tonic-gate }
19817c478bd9Sstevel@tonic-gate 
19827c478bd9Sstevel@tonic-gate /*
19837c478bd9Sstevel@tonic-gate  * Find a child of a given name and address, using a callback to name
19847c478bd9Sstevel@tonic-gate  * unnamed children. cname is the binding name.
19857c478bd9Sstevel@tonic-gate  */
19867c478bd9Sstevel@tonic-gate static dev_info_t *
19877c478bd9Sstevel@tonic-gate find_child_by_callback(dev_info_t *pdip, char *cname, char *caddr,
19887c478bd9Sstevel@tonic-gate     int (*name_node)(dev_info_t *, char *, int))
19897c478bd9Sstevel@tonic-gate {
19907c478bd9Sstevel@tonic-gate 	return (find_sibling(ddi_get_child(pdip), cname, caddr,
19917c478bd9Sstevel@tonic-gate 	    FIND_NAME_BY_DRIVER|FIND_ADDR_BY_CALLBACK, name_node));
19927c478bd9Sstevel@tonic-gate }
19937c478bd9Sstevel@tonic-gate 
19947c478bd9Sstevel@tonic-gate /*
19957c478bd9Sstevel@tonic-gate  * Find a child of a given name and address, invoking initchild to name
19967c478bd9Sstevel@tonic-gate  * unnamed children. cname is the node name.
19977c478bd9Sstevel@tonic-gate  */
19987c478bd9Sstevel@tonic-gate static dev_info_t *
19997c478bd9Sstevel@tonic-gate find_child_by_name(dev_info_t *pdip, char *cname, char *caddr)
20007c478bd9Sstevel@tonic-gate {
20017c478bd9Sstevel@tonic-gate 	dev_info_t	*dip;
20027c478bd9Sstevel@tonic-gate 
20037c478bd9Sstevel@tonic-gate 	/* attempt search without changing state of preceeding siblings */
20047c478bd9Sstevel@tonic-gate 	dip = find_sibling(ddi_get_child(pdip), cname, caddr, 0, NULL);
20057c478bd9Sstevel@tonic-gate 	if (dip)
20067c478bd9Sstevel@tonic-gate 		return (dip);
20077c478bd9Sstevel@tonic-gate 
20087c478bd9Sstevel@tonic-gate 	return (find_sibling(ddi_get_child(pdip), cname, caddr,
20097c478bd9Sstevel@tonic-gate 	    FIND_ADDR_BY_INIT, NULL));
20107c478bd9Sstevel@tonic-gate }
20117c478bd9Sstevel@tonic-gate 
20127c478bd9Sstevel@tonic-gate /*
20137c478bd9Sstevel@tonic-gate  * Find a child of a given name and address, invoking initchild to name
20147c478bd9Sstevel@tonic-gate  * unnamed children. cname is the node name.
20157c478bd9Sstevel@tonic-gate  */
20167c478bd9Sstevel@tonic-gate static dev_info_t *
20177c478bd9Sstevel@tonic-gate find_child_by_driver(dev_info_t *pdip, char *cname, char *caddr)
20187c478bd9Sstevel@tonic-gate {
20197c478bd9Sstevel@tonic-gate 	dev_info_t	*dip;
20207c478bd9Sstevel@tonic-gate 
20217c478bd9Sstevel@tonic-gate 	/* attempt search without changing state of preceeding siblings */
20227c478bd9Sstevel@tonic-gate 	dip = find_sibling(ddi_get_child(pdip), cname, caddr,
20237c478bd9Sstevel@tonic-gate 	    FIND_NAME_BY_DRIVER, NULL);
20247c478bd9Sstevel@tonic-gate 	if (dip)
20257c478bd9Sstevel@tonic-gate 		return (dip);
20267c478bd9Sstevel@tonic-gate 
20277c478bd9Sstevel@tonic-gate 	return (find_sibling(ddi_get_child(pdip), cname, caddr,
20287c478bd9Sstevel@tonic-gate 	    FIND_NAME_BY_DRIVER|FIND_ADDR_BY_INIT, NULL));
20297c478bd9Sstevel@tonic-gate }
20307c478bd9Sstevel@tonic-gate 
20317c478bd9Sstevel@tonic-gate /*
20327c478bd9Sstevel@tonic-gate  * Deleting a property list. Take care, since some property structures
20337c478bd9Sstevel@tonic-gate  * may not be fully built.
20347c478bd9Sstevel@tonic-gate  */
20357c478bd9Sstevel@tonic-gate void
20367c478bd9Sstevel@tonic-gate i_ddi_prop_list_delete(ddi_prop_t *prop)
20377c478bd9Sstevel@tonic-gate {
20387c478bd9Sstevel@tonic-gate 	while (prop) {
20397c478bd9Sstevel@tonic-gate 		ddi_prop_t *next = prop->prop_next;
20407c478bd9Sstevel@tonic-gate 		if (prop->prop_name)
20417c478bd9Sstevel@tonic-gate 			kmem_free(prop->prop_name, strlen(prop->prop_name) + 1);
20427c478bd9Sstevel@tonic-gate 		if ((prop->prop_len != 0) && prop->prop_val)
20437c478bd9Sstevel@tonic-gate 			kmem_free(prop->prop_val, prop->prop_len);
20447c478bd9Sstevel@tonic-gate 		kmem_free(prop, sizeof (struct ddi_prop));
20457c478bd9Sstevel@tonic-gate 		prop = next;
20467c478bd9Sstevel@tonic-gate 	}
20477c478bd9Sstevel@tonic-gate }
20487c478bd9Sstevel@tonic-gate 
20497c478bd9Sstevel@tonic-gate /*
20507c478bd9Sstevel@tonic-gate  * Duplicate property list
20517c478bd9Sstevel@tonic-gate  */
20527c478bd9Sstevel@tonic-gate ddi_prop_t *
20537c478bd9Sstevel@tonic-gate i_ddi_prop_list_dup(ddi_prop_t *prop, uint_t flag)
20547c478bd9Sstevel@tonic-gate {
20557c478bd9Sstevel@tonic-gate 	ddi_prop_t *result, *prev, *copy;
20567c478bd9Sstevel@tonic-gate 
20577c478bd9Sstevel@tonic-gate 	if (prop == NULL)
20587c478bd9Sstevel@tonic-gate 		return (NULL);
20597c478bd9Sstevel@tonic-gate 
20607c478bd9Sstevel@tonic-gate 	result = prev = NULL;
20617c478bd9Sstevel@tonic-gate 	for (; prop != NULL; prop = prop->prop_next) {
20627c478bd9Sstevel@tonic-gate 		ASSERT(prop->prop_name != NULL);
20637c478bd9Sstevel@tonic-gate 		copy = kmem_zalloc(sizeof (struct ddi_prop), flag);
20647c478bd9Sstevel@tonic-gate 		if (copy == NULL)
20657c478bd9Sstevel@tonic-gate 			goto fail;
20667c478bd9Sstevel@tonic-gate 
20677c478bd9Sstevel@tonic-gate 		copy->prop_dev = prop->prop_dev;
20687c478bd9Sstevel@tonic-gate 		copy->prop_flags = prop->prop_flags;
20697c478bd9Sstevel@tonic-gate 		copy->prop_name = i_ddi_strdup(prop->prop_name, flag);
20707c478bd9Sstevel@tonic-gate 		if (copy->prop_name == NULL)
20717c478bd9Sstevel@tonic-gate 			goto fail;
20727c478bd9Sstevel@tonic-gate 
20737c478bd9Sstevel@tonic-gate 		if ((copy->prop_len = prop->prop_len) != 0) {
20747c478bd9Sstevel@tonic-gate 			copy->prop_val = kmem_zalloc(prop->prop_len, flag);
20757c478bd9Sstevel@tonic-gate 			if (copy->prop_val == NULL)
20767c478bd9Sstevel@tonic-gate 				goto fail;
20777c478bd9Sstevel@tonic-gate 
20787c478bd9Sstevel@tonic-gate 			bcopy(prop->prop_val, copy->prop_val, prop->prop_len);
20797c478bd9Sstevel@tonic-gate 		}
20807c478bd9Sstevel@tonic-gate 
20817c478bd9Sstevel@tonic-gate 		if (prev == NULL)
20827c478bd9Sstevel@tonic-gate 			result = prev = copy;
20837c478bd9Sstevel@tonic-gate 		else
20847c478bd9Sstevel@tonic-gate 			prev->prop_next = copy;
20857c478bd9Sstevel@tonic-gate 		prev = copy;
20867c478bd9Sstevel@tonic-gate 	}
20877c478bd9Sstevel@tonic-gate 	return (result);
20887c478bd9Sstevel@tonic-gate 
20897c478bd9Sstevel@tonic-gate fail:
20907c478bd9Sstevel@tonic-gate 	i_ddi_prop_list_delete(result);
20917c478bd9Sstevel@tonic-gate 	return (NULL);
20927c478bd9Sstevel@tonic-gate }
20937c478bd9Sstevel@tonic-gate 
20947c478bd9Sstevel@tonic-gate /*
20957c478bd9Sstevel@tonic-gate  * Create a reference property list, currently used only for
20967c478bd9Sstevel@tonic-gate  * driver global properties. Created with ref count of 1.
20977c478bd9Sstevel@tonic-gate  */
20987c478bd9Sstevel@tonic-gate ddi_prop_list_t *
20997c478bd9Sstevel@tonic-gate i_ddi_prop_list_create(ddi_prop_t *props)
21007c478bd9Sstevel@tonic-gate {
21017c478bd9Sstevel@tonic-gate 	ddi_prop_list_t *list = kmem_alloc(sizeof (*list), KM_SLEEP);
21027c478bd9Sstevel@tonic-gate 	list->prop_list = props;
21037c478bd9Sstevel@tonic-gate 	list->prop_ref = 1;
21047c478bd9Sstevel@tonic-gate 	return (list);
21057c478bd9Sstevel@tonic-gate }
21067c478bd9Sstevel@tonic-gate 
21077c478bd9Sstevel@tonic-gate /*
21087c478bd9Sstevel@tonic-gate  * Increment/decrement reference count. The reference is
21097c478bd9Sstevel@tonic-gate  * protected by dn_lock. The only interfaces modifying
21107c478bd9Sstevel@tonic-gate  * dn_global_prop_ptr is in impl_make[free]_parlist().
21117c478bd9Sstevel@tonic-gate  */
21127c478bd9Sstevel@tonic-gate void
21137c478bd9Sstevel@tonic-gate i_ddi_prop_list_hold(ddi_prop_list_t *prop_list, struct devnames *dnp)
21147c478bd9Sstevel@tonic-gate {
21157c478bd9Sstevel@tonic-gate 	ASSERT(prop_list->prop_ref >= 0);
21167c478bd9Sstevel@tonic-gate 	ASSERT(mutex_owned(&dnp->dn_lock));
21177c478bd9Sstevel@tonic-gate 	prop_list->prop_ref++;
21187c478bd9Sstevel@tonic-gate }
21197c478bd9Sstevel@tonic-gate 
21207c478bd9Sstevel@tonic-gate void
21217c478bd9Sstevel@tonic-gate i_ddi_prop_list_rele(ddi_prop_list_t *prop_list, struct devnames *dnp)
21227c478bd9Sstevel@tonic-gate {
21237c478bd9Sstevel@tonic-gate 	ASSERT(prop_list->prop_ref > 0);
21247c478bd9Sstevel@tonic-gate 	ASSERT(mutex_owned(&dnp->dn_lock));
21257c478bd9Sstevel@tonic-gate 	prop_list->prop_ref--;
21267c478bd9Sstevel@tonic-gate 
21277c478bd9Sstevel@tonic-gate 	if (prop_list->prop_ref == 0) {
21287c478bd9Sstevel@tonic-gate 		i_ddi_prop_list_delete(prop_list->prop_list);
21297c478bd9Sstevel@tonic-gate 		kmem_free(prop_list, sizeof (*prop_list));
21307c478bd9Sstevel@tonic-gate 	}
21317c478bd9Sstevel@tonic-gate }
21327c478bd9Sstevel@tonic-gate 
21337c478bd9Sstevel@tonic-gate /*
21347c478bd9Sstevel@tonic-gate  * Free table of classes by drivers
21357c478bd9Sstevel@tonic-gate  */
21367c478bd9Sstevel@tonic-gate void
21377c478bd9Sstevel@tonic-gate i_ddi_free_exported_classes(char **classes, int n)
21387c478bd9Sstevel@tonic-gate {
21397c478bd9Sstevel@tonic-gate 	if ((n == 0) || (classes == NULL))
21407c478bd9Sstevel@tonic-gate 		return;
21417c478bd9Sstevel@tonic-gate 
21427c478bd9Sstevel@tonic-gate 	kmem_free(classes, n * sizeof (char *));
21437c478bd9Sstevel@tonic-gate }
21447c478bd9Sstevel@tonic-gate 
21457c478bd9Sstevel@tonic-gate /*
21467c478bd9Sstevel@tonic-gate  * Get all classes exported by dip
21477c478bd9Sstevel@tonic-gate  */
21487c478bd9Sstevel@tonic-gate int
21497c478bd9Sstevel@tonic-gate i_ddi_get_exported_classes(dev_info_t *dip, char ***classes)
21507c478bd9Sstevel@tonic-gate {
21517c478bd9Sstevel@tonic-gate 	extern void lock_hw_class_list();
21527c478bd9Sstevel@tonic-gate 	extern void unlock_hw_class_list();
21537c478bd9Sstevel@tonic-gate 	extern int get_class(const char *, char **);
21547c478bd9Sstevel@tonic-gate 
21557c478bd9Sstevel@tonic-gate 	static char *rootclass = "root";
21567c478bd9Sstevel@tonic-gate 	int n = 0, nclass = 0;
21577c478bd9Sstevel@tonic-gate 	char **buf;
21587c478bd9Sstevel@tonic-gate 
21597c478bd9Sstevel@tonic-gate 	ASSERT(i_ddi_node_state(dip) >= DS_BOUND);
21607c478bd9Sstevel@tonic-gate 
21617c478bd9Sstevel@tonic-gate 	if (dip == ddi_root_node())	/* rootnode exports class "root" */
21627c478bd9Sstevel@tonic-gate 		nclass = 1;
21637c478bd9Sstevel@tonic-gate 	lock_hw_class_list();
21647c478bd9Sstevel@tonic-gate 	nclass += get_class(ddi_driver_name(dip), NULL);
21657c478bd9Sstevel@tonic-gate 	if (nclass == 0) {
21667c478bd9Sstevel@tonic-gate 		unlock_hw_class_list();
21677c478bd9Sstevel@tonic-gate 		return (0);		/* no class exported */
21687c478bd9Sstevel@tonic-gate 	}
21697c478bd9Sstevel@tonic-gate 
21707c478bd9Sstevel@tonic-gate 	*classes = buf = kmem_alloc(nclass * sizeof (char *), KM_SLEEP);
21717c478bd9Sstevel@tonic-gate 	if (dip == ddi_root_node()) {
21727c478bd9Sstevel@tonic-gate 		*buf++ = rootclass;
21737c478bd9Sstevel@tonic-gate 		n = 1;
21747c478bd9Sstevel@tonic-gate 	}
21757c478bd9Sstevel@tonic-gate 	n += get_class(ddi_driver_name(dip), buf);
21767c478bd9Sstevel@tonic-gate 	unlock_hw_class_list();
21777c478bd9Sstevel@tonic-gate 
21787c478bd9Sstevel@tonic-gate 	ASSERT(n == nclass);    /* make sure buf wasn't overrun */
21797c478bd9Sstevel@tonic-gate 	return (nclass);
21807c478bd9Sstevel@tonic-gate }
21817c478bd9Sstevel@tonic-gate 
21827c478bd9Sstevel@tonic-gate /*
21837c478bd9Sstevel@tonic-gate  * Helper functions, returns NULL if no memory.
21847c478bd9Sstevel@tonic-gate  */
21857c478bd9Sstevel@tonic-gate char *
21867c478bd9Sstevel@tonic-gate i_ddi_strdup(char *str, uint_t flag)
21877c478bd9Sstevel@tonic-gate {
21887c478bd9Sstevel@tonic-gate 	char *copy;
21897c478bd9Sstevel@tonic-gate 
21907c478bd9Sstevel@tonic-gate 	if (str == NULL)
21917c478bd9Sstevel@tonic-gate 		return (NULL);
21927c478bd9Sstevel@tonic-gate 
21937c478bd9Sstevel@tonic-gate 	copy = kmem_alloc(strlen(str) + 1, flag);
21947c478bd9Sstevel@tonic-gate 	if (copy == NULL)
21957c478bd9Sstevel@tonic-gate 		return (NULL);
21967c478bd9Sstevel@tonic-gate 
21977c478bd9Sstevel@tonic-gate 	(void) strcpy(copy, str);
21987c478bd9Sstevel@tonic-gate 	return (copy);
21997c478bd9Sstevel@tonic-gate }
22007c478bd9Sstevel@tonic-gate 
22017c478bd9Sstevel@tonic-gate /*
22027c478bd9Sstevel@tonic-gate  * Load driver.conf file for major. Load all if major == -1.
22037c478bd9Sstevel@tonic-gate  *
22047c478bd9Sstevel@tonic-gate  * This is called
22057c478bd9Sstevel@tonic-gate  * - early in boot after devnames array is initialized
22067c478bd9Sstevel@tonic-gate  * - from vfs code when certain file systems are mounted
22077c478bd9Sstevel@tonic-gate  * - from add_drv when a new driver is added
22087c478bd9Sstevel@tonic-gate  */
22097c478bd9Sstevel@tonic-gate int
22107c478bd9Sstevel@tonic-gate i_ddi_load_drvconf(major_t major)
22117c478bd9Sstevel@tonic-gate {
22127c478bd9Sstevel@tonic-gate 	extern int modrootloaded;
22137c478bd9Sstevel@tonic-gate 
22147c478bd9Sstevel@tonic-gate 	major_t low, high, m;
22157c478bd9Sstevel@tonic-gate 
22167c478bd9Sstevel@tonic-gate 	if (major == (major_t)-1) {
22177c478bd9Sstevel@tonic-gate 		low = 0;
22187c478bd9Sstevel@tonic-gate 		high = devcnt - 1;
22197c478bd9Sstevel@tonic-gate 	} else {
22207c478bd9Sstevel@tonic-gate 		if (major >= devcnt)
22217c478bd9Sstevel@tonic-gate 			return (EINVAL);
22227c478bd9Sstevel@tonic-gate 		low = high = major;
22237c478bd9Sstevel@tonic-gate 	}
22247c478bd9Sstevel@tonic-gate 
22257c478bd9Sstevel@tonic-gate 	for (m = low; m <= high; m++) {
22267c478bd9Sstevel@tonic-gate 		struct devnames *dnp = &devnamesp[m];
22277c478bd9Sstevel@tonic-gate 		LOCK_DEV_OPS(&dnp->dn_lock);
22287c478bd9Sstevel@tonic-gate 		dnp->dn_flags &= ~DN_DRIVER_HELD;
22297c478bd9Sstevel@tonic-gate 		(void) impl_make_parlist(m);
22307c478bd9Sstevel@tonic-gate 		UNLOCK_DEV_OPS(&dnp->dn_lock);
22317c478bd9Sstevel@tonic-gate 	}
22327c478bd9Sstevel@tonic-gate 
22337c478bd9Sstevel@tonic-gate 	if (modrootloaded) {
22347c478bd9Sstevel@tonic-gate 		ddi_walk_devs(ddi_root_node(), reset_nexus_flags,
22357c478bd9Sstevel@tonic-gate 		    (void *)(uintptr_t)major);
22367c478bd9Sstevel@tonic-gate 	}
22377c478bd9Sstevel@tonic-gate 
22387c478bd9Sstevel@tonic-gate 	/* build dn_list from old entries in path_to_inst */
22397c478bd9Sstevel@tonic-gate 	e_ddi_unorphan_instance_nos();
22407c478bd9Sstevel@tonic-gate 	return (0);
22417c478bd9Sstevel@tonic-gate }
22427c478bd9Sstevel@tonic-gate 
22437c478bd9Sstevel@tonic-gate /*
22447c478bd9Sstevel@tonic-gate  * Unload a specific driver.conf.
22457c478bd9Sstevel@tonic-gate  * Don't support unload all because it doesn't make any sense
22467c478bd9Sstevel@tonic-gate  */
22477c478bd9Sstevel@tonic-gate int
22487c478bd9Sstevel@tonic-gate i_ddi_unload_drvconf(major_t major)
22497c478bd9Sstevel@tonic-gate {
22507c478bd9Sstevel@tonic-gate 	int error;
22517c478bd9Sstevel@tonic-gate 	struct devnames *dnp;
22527c478bd9Sstevel@tonic-gate 
22537c478bd9Sstevel@tonic-gate 	if (major >= devcnt)
22547c478bd9Sstevel@tonic-gate 		return (EINVAL);
22557c478bd9Sstevel@tonic-gate 
22567c478bd9Sstevel@tonic-gate 	/*
22577c478bd9Sstevel@tonic-gate 	 * Take the per-driver lock while unloading driver.conf
22587c478bd9Sstevel@tonic-gate 	 */
22597c478bd9Sstevel@tonic-gate 	dnp = &devnamesp[major];
22607c478bd9Sstevel@tonic-gate 	LOCK_DEV_OPS(&dnp->dn_lock);
22617c478bd9Sstevel@tonic-gate 	error = impl_free_parlist(major);
22627c478bd9Sstevel@tonic-gate 	UNLOCK_DEV_OPS(&dnp->dn_lock);
22637c478bd9Sstevel@tonic-gate 	return (error);
22647c478bd9Sstevel@tonic-gate }
22657c478bd9Sstevel@tonic-gate 
22667c478bd9Sstevel@tonic-gate /*
22677c478bd9Sstevel@tonic-gate  * Merge a .conf node. This is called by nexus drivers to augment
22687c478bd9Sstevel@tonic-gate  * hw node with properties specified in driver.conf file. This function
22697c478bd9Sstevel@tonic-gate  * takes a callback routine to name nexus children.
22707c478bd9Sstevel@tonic-gate  * The parent node must be held busy.
22717c478bd9Sstevel@tonic-gate  *
22727c478bd9Sstevel@tonic-gate  * It returns DDI_SUCCESS if the node is merged and DDI_FAILURE otherwise.
22737c478bd9Sstevel@tonic-gate  */
22747c478bd9Sstevel@tonic-gate int
22757c478bd9Sstevel@tonic-gate ndi_merge_node(dev_info_t *dip, int (*name_node)(dev_info_t *, char *, int))
22767c478bd9Sstevel@tonic-gate {
22777c478bd9Sstevel@tonic-gate 	dev_info_t *hwdip;
22787c478bd9Sstevel@tonic-gate 
22797c478bd9Sstevel@tonic-gate 	ASSERT(ndi_dev_is_persistent_node(dip) == 0);
22807c478bd9Sstevel@tonic-gate 	ASSERT(ddi_get_name_addr(dip) != NULL);
22817c478bd9Sstevel@tonic-gate 
22827c478bd9Sstevel@tonic-gate 	hwdip = find_child_by_callback(ddi_get_parent(dip),
22837c478bd9Sstevel@tonic-gate 	    ddi_binding_name(dip), ddi_get_name_addr(dip), name_node);
22847c478bd9Sstevel@tonic-gate 
22857c478bd9Sstevel@tonic-gate 	/*
22867c478bd9Sstevel@tonic-gate 	 * Look for the hardware node that is the target of the merge;
22877c478bd9Sstevel@tonic-gate 	 * return failure if not found.
22887c478bd9Sstevel@tonic-gate 	 */
22897c478bd9Sstevel@tonic-gate 	if ((hwdip == NULL) || (hwdip == dip)) {
22907c478bd9Sstevel@tonic-gate 		char *buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
22917c478bd9Sstevel@tonic-gate 		NDI_CONFIG_DEBUG((CE_WARN, "No HW node to merge conf node %s",
22927c478bd9Sstevel@tonic-gate 		    ddi_deviname(dip, buf)));
22937c478bd9Sstevel@tonic-gate 		kmem_free(buf, MAXNAMELEN);
22947c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
22957c478bd9Sstevel@tonic-gate 	}
22967c478bd9Sstevel@tonic-gate 
22977c478bd9Sstevel@tonic-gate 	/*
22987c478bd9Sstevel@tonic-gate 	 * Make sure the hardware node is uninitialized and has no property.
22997c478bd9Sstevel@tonic-gate 	 * This may not be the case if new .conf files are load after some
23007c478bd9Sstevel@tonic-gate 	 * hardware nodes have already been initialized and attached.
23017c478bd9Sstevel@tonic-gate 	 *
23027c478bd9Sstevel@tonic-gate 	 * N.B. We return success here because the node was *intended*
23037c478bd9Sstevel@tonic-gate 	 * 	to be a merge node because there is a hw node with the name.
23047c478bd9Sstevel@tonic-gate 	 */
23057c478bd9Sstevel@tonic-gate 	mutex_enter(&DEVI(hwdip)->devi_lock);
23067c478bd9Sstevel@tonic-gate 	if (ndi_dev_is_persistent_node(hwdip) == 0) {
23077c478bd9Sstevel@tonic-gate 		char *buf;
23087c478bd9Sstevel@tonic-gate 		mutex_exit(&DEVI(hwdip)->devi_lock);
23097c478bd9Sstevel@tonic-gate 
23107c478bd9Sstevel@tonic-gate 		buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
23117c478bd9Sstevel@tonic-gate 		NDI_CONFIG_DEBUG((CE_NOTE, "Duplicate .conf node %s",
23127c478bd9Sstevel@tonic-gate 		    ddi_deviname(dip, buf)));
23137c478bd9Sstevel@tonic-gate 		kmem_free(buf, MAXNAMELEN);
23147c478bd9Sstevel@tonic-gate 		return (DDI_SUCCESS);
23157c478bd9Sstevel@tonic-gate 	}
23167c478bd9Sstevel@tonic-gate 
23177c478bd9Sstevel@tonic-gate 	/*
23187c478bd9Sstevel@tonic-gate 	 * If it is possible that the hardware has already been touched
23197c478bd9Sstevel@tonic-gate 	 * then don't merge.
23207c478bd9Sstevel@tonic-gate 	 */
23217c478bd9Sstevel@tonic-gate 	if (i_ddi_node_state(hwdip) >= DS_INITIALIZED ||
23227c478bd9Sstevel@tonic-gate 	    (DEVI(hwdip)->devi_sys_prop_ptr != NULL) ||
23237c478bd9Sstevel@tonic-gate 	    (DEVI(hwdip)->devi_drv_prop_ptr != NULL)) {
23247c478bd9Sstevel@tonic-gate 		char *buf;
23257c478bd9Sstevel@tonic-gate 		mutex_exit(&DEVI(hwdip)->devi_lock);
23267c478bd9Sstevel@tonic-gate 
23277c478bd9Sstevel@tonic-gate 		buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
23287c478bd9Sstevel@tonic-gate 		NDI_CONFIG_DEBUG((CE_NOTE,
23297c478bd9Sstevel@tonic-gate 		    "!Cannot merge .conf node %s with hw node %p "
23307c478bd9Sstevel@tonic-gate 		    "-- not in proper state",
23317c478bd9Sstevel@tonic-gate 		    ddi_deviname(dip, buf), (void *)hwdip));
23327c478bd9Sstevel@tonic-gate 		kmem_free(buf, MAXNAMELEN);
23337c478bd9Sstevel@tonic-gate 		return (DDI_SUCCESS);
23347c478bd9Sstevel@tonic-gate 	}
23357c478bd9Sstevel@tonic-gate 
23367c478bd9Sstevel@tonic-gate 	mutex_enter(&DEVI(dip)->devi_lock);
23377c478bd9Sstevel@tonic-gate 	DEVI(hwdip)->devi_sys_prop_ptr = DEVI(dip)->devi_sys_prop_ptr;
23387c478bd9Sstevel@tonic-gate 	DEVI(hwdip)->devi_drv_prop_ptr = DEVI(dip)->devi_drv_prop_ptr;
23397c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_sys_prop_ptr = NULL;
23407c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_drv_prop_ptr = NULL;
23417c478bd9Sstevel@tonic-gate 	mutex_exit(&DEVI(dip)->devi_lock);
23427c478bd9Sstevel@tonic-gate 	mutex_exit(&DEVI(hwdip)->devi_lock);
23437c478bd9Sstevel@tonic-gate 
23447c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
23457c478bd9Sstevel@tonic-gate }
23467c478bd9Sstevel@tonic-gate 
23477c478bd9Sstevel@tonic-gate /*
23487c478bd9Sstevel@tonic-gate  * Merge a "wildcard" .conf node. This is called by nexus drivers to
23497c478bd9Sstevel@tonic-gate  * augment a set of hw node with properties specified in driver.conf file.
23507c478bd9Sstevel@tonic-gate  * The parent node must be held busy.
23517c478bd9Sstevel@tonic-gate  *
23527c478bd9Sstevel@tonic-gate  * There is no failure mode, since the nexus may or may not have child
23537c478bd9Sstevel@tonic-gate  * node bound the driver specified by the wildcard node.
23547c478bd9Sstevel@tonic-gate  */
23557c478bd9Sstevel@tonic-gate void
23567c478bd9Sstevel@tonic-gate ndi_merge_wildcard_node(dev_info_t *dip)
23577c478bd9Sstevel@tonic-gate {
23587c478bd9Sstevel@tonic-gate 	dev_info_t *hwdip;
23597c478bd9Sstevel@tonic-gate 	dev_info_t *pdip = ddi_get_parent(dip);
23607c478bd9Sstevel@tonic-gate 	major_t major = ddi_driver_major(dip);
23617c478bd9Sstevel@tonic-gate 
23627c478bd9Sstevel@tonic-gate 	/* never attempt to merge a hw node */
23637c478bd9Sstevel@tonic-gate 	ASSERT(ndi_dev_is_persistent_node(dip) == 0);
23647c478bd9Sstevel@tonic-gate 	/* must be bound to a driver major number */
23657c478bd9Sstevel@tonic-gate 	ASSERT(major != (major_t)-1);
23667c478bd9Sstevel@tonic-gate 
23677c478bd9Sstevel@tonic-gate 	/*
23687c478bd9Sstevel@tonic-gate 	 * Walk the child list to find all nodes bound to major
23697c478bd9Sstevel@tonic-gate 	 * and copy properties.
23707c478bd9Sstevel@tonic-gate 	 */
23717c478bd9Sstevel@tonic-gate 	mutex_enter(&DEVI(dip)->devi_lock);
23727c478bd9Sstevel@tonic-gate 	for (hwdip = ddi_get_child(pdip); hwdip;
23737c478bd9Sstevel@tonic-gate 	    hwdip = ddi_get_next_sibling(hwdip)) {
23747c478bd9Sstevel@tonic-gate 		/*
23757c478bd9Sstevel@tonic-gate 		 * Skip nodes not bound to same driver
23767c478bd9Sstevel@tonic-gate 		 */
23777c478bd9Sstevel@tonic-gate 		if (ddi_driver_major(hwdip) != major)
23787c478bd9Sstevel@tonic-gate 			continue;
23797c478bd9Sstevel@tonic-gate 
23807c478bd9Sstevel@tonic-gate 		/*
23817c478bd9Sstevel@tonic-gate 		 * Skip .conf nodes
23827c478bd9Sstevel@tonic-gate 		 */
23837c478bd9Sstevel@tonic-gate 		if (ndi_dev_is_persistent_node(hwdip) == 0)
23847c478bd9Sstevel@tonic-gate 			continue;
23857c478bd9Sstevel@tonic-gate 
23867c478bd9Sstevel@tonic-gate 		/*
23877c478bd9Sstevel@tonic-gate 		 * Make sure the node is uninitialized and has no property.
23887c478bd9Sstevel@tonic-gate 		 */
23897c478bd9Sstevel@tonic-gate 		mutex_enter(&DEVI(hwdip)->devi_lock);
23907c478bd9Sstevel@tonic-gate 		if (i_ddi_node_state(hwdip) >= DS_INITIALIZED ||
23917c478bd9Sstevel@tonic-gate 		    (DEVI(hwdip)->devi_sys_prop_ptr != NULL) ||
23927c478bd9Sstevel@tonic-gate 		    (DEVI(hwdip)->devi_drv_prop_ptr != NULL)) {
23937c478bd9Sstevel@tonic-gate 			mutex_exit(&DEVI(hwdip)->devi_lock);
23947c478bd9Sstevel@tonic-gate 			NDI_CONFIG_DEBUG((CE_NOTE, "HW node %p state not "
23957c478bd9Sstevel@tonic-gate 			    "suitable for merging wildcard conf node %s",
23967c478bd9Sstevel@tonic-gate 			    (void *)hwdip, ddi_node_name(dip)));
23977c478bd9Sstevel@tonic-gate 			continue;
23987c478bd9Sstevel@tonic-gate 		}
23997c478bd9Sstevel@tonic-gate 
24007c478bd9Sstevel@tonic-gate 		DEVI(hwdip)->devi_sys_prop_ptr =
24017c478bd9Sstevel@tonic-gate 		    i_ddi_prop_list_dup(DEVI(dip)->devi_sys_prop_ptr, KM_SLEEP);
24027c478bd9Sstevel@tonic-gate 		DEVI(hwdip)->devi_drv_prop_ptr =
24037c478bd9Sstevel@tonic-gate 		    i_ddi_prop_list_dup(DEVI(dip)->devi_drv_prop_ptr, KM_SLEEP);
24047c478bd9Sstevel@tonic-gate 		mutex_exit(&DEVI(hwdip)->devi_lock);
24057c478bd9Sstevel@tonic-gate 	}
24067c478bd9Sstevel@tonic-gate 	mutex_exit(&DEVI(dip)->devi_lock);
24077c478bd9Sstevel@tonic-gate }
24087c478bd9Sstevel@tonic-gate 
24097c478bd9Sstevel@tonic-gate /*
24107c478bd9Sstevel@tonic-gate  * Return the major number based on the compatible property. This interface
24117c478bd9Sstevel@tonic-gate  * may be used in situations where we are trying to detect if a better driver
24127c478bd9Sstevel@tonic-gate  * now exists for a device, so it must use the 'compatible' property.  If
24137c478bd9Sstevel@tonic-gate  * a non-NULL formp is specified and the binding was based on compatible then
24147c478bd9Sstevel@tonic-gate  * return the pointer to the form used in *formp.
24157c478bd9Sstevel@tonic-gate  */
24167c478bd9Sstevel@tonic-gate major_t
24177c478bd9Sstevel@tonic-gate ddi_compatible_driver_major(dev_info_t *dip, char **formp)
24187c478bd9Sstevel@tonic-gate {
24197c478bd9Sstevel@tonic-gate 	struct dev_info *devi = DEVI(dip);
24207c478bd9Sstevel@tonic-gate 	void		*compat;
24217c478bd9Sstevel@tonic-gate 	size_t		len;
24227c478bd9Sstevel@tonic-gate 	char		*p = NULL;
24237c478bd9Sstevel@tonic-gate 	major_t		major = (major_t)-1;
24247c478bd9Sstevel@tonic-gate 
24257c478bd9Sstevel@tonic-gate 	if (formp)
24267c478bd9Sstevel@tonic-gate 		*formp = NULL;
24277c478bd9Sstevel@tonic-gate 
24287c478bd9Sstevel@tonic-gate 	/* look up compatible property */
24297c478bd9Sstevel@tonic-gate 	(void) lookup_compatible(dip, KM_SLEEP);
24307c478bd9Sstevel@tonic-gate 	compat = (void *)(devi->devi_compat_names);
24317c478bd9Sstevel@tonic-gate 	len = devi->devi_compat_length;
24327c478bd9Sstevel@tonic-gate 
24337c478bd9Sstevel@tonic-gate 	/* find the highest precedence compatible form with a driver binding */
24347c478bd9Sstevel@tonic-gate 	while ((p = prom_decode_composite_string(compat, len, p)) != NULL) {
24357c478bd9Sstevel@tonic-gate 		major = ddi_name_to_major(p);
24367c478bd9Sstevel@tonic-gate 		if ((major != (major_t)-1) &&
24377c478bd9Sstevel@tonic-gate 		    !(devnamesp[major].dn_flags & DN_DRIVER_REMOVED)) {
24387c478bd9Sstevel@tonic-gate 			if (formp)
24397c478bd9Sstevel@tonic-gate 				*formp = p;
24407c478bd9Sstevel@tonic-gate 			return (major);
24417c478bd9Sstevel@tonic-gate 		}
24427c478bd9Sstevel@tonic-gate 	}
24437c478bd9Sstevel@tonic-gate 
24447c478bd9Sstevel@tonic-gate 	/*
24457c478bd9Sstevel@tonic-gate 	 * none of the compatible forms have a driver binding, see if
24467c478bd9Sstevel@tonic-gate 	 * the node name has a driver binding.
24477c478bd9Sstevel@tonic-gate 	 */
24487c478bd9Sstevel@tonic-gate 	major = ddi_name_to_major(ddi_node_name(dip));
24497c478bd9Sstevel@tonic-gate 	if ((major != (major_t)-1) &&
24507c478bd9Sstevel@tonic-gate 	    !(devnamesp[major].dn_flags & DN_DRIVER_REMOVED))
24517c478bd9Sstevel@tonic-gate 		return (major);
24527c478bd9Sstevel@tonic-gate 
24537c478bd9Sstevel@tonic-gate 	/* no driver */
24547c478bd9Sstevel@tonic-gate 	return ((major_t)-1);
24557c478bd9Sstevel@tonic-gate }
24567c478bd9Sstevel@tonic-gate 
24577c478bd9Sstevel@tonic-gate /*
24587c478bd9Sstevel@tonic-gate  * Static help functions
24597c478bd9Sstevel@tonic-gate  */
24607c478bd9Sstevel@tonic-gate 
24617c478bd9Sstevel@tonic-gate /*
24627c478bd9Sstevel@tonic-gate  * lookup the "compatible" property and cache it's contents in the
24637c478bd9Sstevel@tonic-gate  * device node.
24647c478bd9Sstevel@tonic-gate  */
24657c478bd9Sstevel@tonic-gate static int
24667c478bd9Sstevel@tonic-gate lookup_compatible(dev_info_t *dip, uint_t flag)
24677c478bd9Sstevel@tonic-gate {
24687c478bd9Sstevel@tonic-gate 	int rv;
24697c478bd9Sstevel@tonic-gate 	int prop_flags;
24707c478bd9Sstevel@tonic-gate 	uint_t ncompatstrs;
24717c478bd9Sstevel@tonic-gate 	char **compatstrpp;
24727c478bd9Sstevel@tonic-gate 	char *di_compat_strp;
24737c478bd9Sstevel@tonic-gate 	size_t di_compat_strlen;
24747c478bd9Sstevel@tonic-gate 
24757c478bd9Sstevel@tonic-gate 	if (DEVI(dip)->devi_compat_names) {
24767c478bd9Sstevel@tonic-gate 		return (DDI_SUCCESS);
24777c478bd9Sstevel@tonic-gate 	}
24787c478bd9Sstevel@tonic-gate 
24797c478bd9Sstevel@tonic-gate 	prop_flags = DDI_PROP_TYPE_STRING | DDI_PROP_DONTPASS;
24807c478bd9Sstevel@tonic-gate 
24817c478bd9Sstevel@tonic-gate 	if (flag & KM_NOSLEEP) {
24827c478bd9Sstevel@tonic-gate 		prop_flags |= DDI_PROP_DONTSLEEP;
24837c478bd9Sstevel@tonic-gate 	}
24847c478bd9Sstevel@tonic-gate 
24857c478bd9Sstevel@tonic-gate 	if (ndi_dev_is_prom_node(dip) == 0) {
24867c478bd9Sstevel@tonic-gate 		prop_flags |= DDI_PROP_NOTPROM;
24877c478bd9Sstevel@tonic-gate 	}
24887c478bd9Sstevel@tonic-gate 
24897c478bd9Sstevel@tonic-gate 	rv = ddi_prop_lookup_common(DDI_DEV_T_ANY, dip, prop_flags,
24907c478bd9Sstevel@tonic-gate 	    "compatible", &compatstrpp, &ncompatstrs,
24917c478bd9Sstevel@tonic-gate 	    ddi_prop_fm_decode_strings);
24927c478bd9Sstevel@tonic-gate 
24937c478bd9Sstevel@tonic-gate 	if (rv == DDI_PROP_NOT_FOUND) {
24947c478bd9Sstevel@tonic-gate 		return (DDI_SUCCESS);
24957c478bd9Sstevel@tonic-gate 	}
24967c478bd9Sstevel@tonic-gate 
24977c478bd9Sstevel@tonic-gate 	if (rv != DDI_PROP_SUCCESS) {
24987c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
24997c478bd9Sstevel@tonic-gate 	}
25007c478bd9Sstevel@tonic-gate 
25017c478bd9Sstevel@tonic-gate 	/*
25027c478bd9Sstevel@tonic-gate 	 * encode the compatible property data in the dev_info node
25037c478bd9Sstevel@tonic-gate 	 */
25047c478bd9Sstevel@tonic-gate 	rv = DDI_SUCCESS;
25057c478bd9Sstevel@tonic-gate 	if (ncompatstrs != 0) {
25067c478bd9Sstevel@tonic-gate 		di_compat_strp = encode_composite_string(compatstrpp,
25077c478bd9Sstevel@tonic-gate 		    ncompatstrs, &di_compat_strlen, flag);
25087c478bd9Sstevel@tonic-gate 		if (di_compat_strp != NULL) {
25097c478bd9Sstevel@tonic-gate 			DEVI(dip)->devi_compat_names = di_compat_strp;
25107c478bd9Sstevel@tonic-gate 			DEVI(dip)->devi_compat_length = di_compat_strlen;
25117c478bd9Sstevel@tonic-gate 		} else {
25127c478bd9Sstevel@tonic-gate 			rv = DDI_FAILURE;
25137c478bd9Sstevel@tonic-gate 		}
25147c478bd9Sstevel@tonic-gate 	}
25157c478bd9Sstevel@tonic-gate 	ddi_prop_free(compatstrpp);
25167c478bd9Sstevel@tonic-gate 	return (rv);
25177c478bd9Sstevel@tonic-gate }
25187c478bd9Sstevel@tonic-gate 
25197c478bd9Sstevel@tonic-gate /*
25207c478bd9Sstevel@tonic-gate  * Create a composite string from a list of strings.
25217c478bd9Sstevel@tonic-gate  *
25227c478bd9Sstevel@tonic-gate  * A composite string consists of a single buffer containing one
25237c478bd9Sstevel@tonic-gate  * or more NULL terminated strings.
25247c478bd9Sstevel@tonic-gate  */
25257c478bd9Sstevel@tonic-gate static char *
25267c478bd9Sstevel@tonic-gate encode_composite_string(char **strings, uint_t nstrings, size_t *retsz,
25277c478bd9Sstevel@tonic-gate     uint_t flag)
25287c478bd9Sstevel@tonic-gate {
25297c478bd9Sstevel@tonic-gate 	uint_t index;
25307c478bd9Sstevel@tonic-gate 	char  **strpp;
25317c478bd9Sstevel@tonic-gate 	uint_t slen;
25327c478bd9Sstevel@tonic-gate 	size_t cbuf_sz = 0;
25337c478bd9Sstevel@tonic-gate 	char *cbuf_p;
25347c478bd9Sstevel@tonic-gate 	char *cbuf_ip;
25357c478bd9Sstevel@tonic-gate 
25367c478bd9Sstevel@tonic-gate 	if (strings == NULL || nstrings == 0 || retsz == NULL) {
25377c478bd9Sstevel@tonic-gate 		return (NULL);
25387c478bd9Sstevel@tonic-gate 	}
25397c478bd9Sstevel@tonic-gate 
25407c478bd9Sstevel@tonic-gate 	for (index = 0, strpp = strings; index < nstrings; index++)
25417c478bd9Sstevel@tonic-gate 		cbuf_sz += strlen(*(strpp++)) + 1;
25427c478bd9Sstevel@tonic-gate 
25437c478bd9Sstevel@tonic-gate 	if ((cbuf_p = kmem_alloc(cbuf_sz, flag)) == NULL) {
25447c478bd9Sstevel@tonic-gate 		cmn_err(CE_NOTE,
25457c478bd9Sstevel@tonic-gate 		    "?failed to allocate device node compatstr");
25467c478bd9Sstevel@tonic-gate 		return (NULL);
25477c478bd9Sstevel@tonic-gate 	}
25487c478bd9Sstevel@tonic-gate 
25497c478bd9Sstevel@tonic-gate 	cbuf_ip = cbuf_p;
25507c478bd9Sstevel@tonic-gate 	for (index = 0, strpp = strings; index < nstrings; index++) {
25517c478bd9Sstevel@tonic-gate 		slen = strlen(*strpp);
25527c478bd9Sstevel@tonic-gate 		bcopy(*(strpp++), cbuf_ip, slen);
25537c478bd9Sstevel@tonic-gate 		cbuf_ip += slen;
25547c478bd9Sstevel@tonic-gate 		*(cbuf_ip++) = '\0';
25557c478bd9Sstevel@tonic-gate 	}
25567c478bd9Sstevel@tonic-gate 
25577c478bd9Sstevel@tonic-gate 	*retsz = cbuf_sz;
25587c478bd9Sstevel@tonic-gate 	return (cbuf_p);
25597c478bd9Sstevel@tonic-gate }
25607c478bd9Sstevel@tonic-gate 
25617c478bd9Sstevel@tonic-gate static void
25627c478bd9Sstevel@tonic-gate link_to_driver_list(dev_info_t *dip)
25637c478bd9Sstevel@tonic-gate {
25647c478bd9Sstevel@tonic-gate 	major_t major = DEVI(dip)->devi_major;
25657c478bd9Sstevel@tonic-gate 	struct devnames *dnp;
25667c478bd9Sstevel@tonic-gate 
25677c478bd9Sstevel@tonic-gate 	ASSERT(major != (major_t)-1);
25687c478bd9Sstevel@tonic-gate 
25697c478bd9Sstevel@tonic-gate 	/*
25707c478bd9Sstevel@tonic-gate 	 * Remove from orphan list
25717c478bd9Sstevel@tonic-gate 	 */
25727c478bd9Sstevel@tonic-gate 	if (ndi_dev_is_persistent_node(dip)) {
25737c478bd9Sstevel@tonic-gate 		dnp = &orphanlist;
25747c478bd9Sstevel@tonic-gate 		remove_from_dn_list(dnp, dip);
25757c478bd9Sstevel@tonic-gate 	}
25767c478bd9Sstevel@tonic-gate 
25777c478bd9Sstevel@tonic-gate 	/*
25787c478bd9Sstevel@tonic-gate 	 * Add to per driver list
25797c478bd9Sstevel@tonic-gate 	 */
25807c478bd9Sstevel@tonic-gate 	dnp = &devnamesp[major];
25817c478bd9Sstevel@tonic-gate 	add_to_dn_list(dnp, dip);
25827c478bd9Sstevel@tonic-gate }
25837c478bd9Sstevel@tonic-gate 
25847c478bd9Sstevel@tonic-gate static void
25857c478bd9Sstevel@tonic-gate unlink_from_driver_list(dev_info_t *dip)
25867c478bd9Sstevel@tonic-gate {
25877c478bd9Sstevel@tonic-gate 	major_t major = DEVI(dip)->devi_major;
25887c478bd9Sstevel@tonic-gate 	struct devnames *dnp;
25897c478bd9Sstevel@tonic-gate 
25907c478bd9Sstevel@tonic-gate 	ASSERT(major != (major_t)-1);
25917c478bd9Sstevel@tonic-gate 
25927c478bd9Sstevel@tonic-gate 	/*
25937c478bd9Sstevel@tonic-gate 	 * Remove from per-driver list
25947c478bd9Sstevel@tonic-gate 	 */
25957c478bd9Sstevel@tonic-gate 	dnp = &devnamesp[major];
25967c478bd9Sstevel@tonic-gate 	remove_from_dn_list(dnp, dip);
25977c478bd9Sstevel@tonic-gate 
25987c478bd9Sstevel@tonic-gate 	/*
25997c478bd9Sstevel@tonic-gate 	 * Add to orphan list
26007c478bd9Sstevel@tonic-gate 	 */
26017c478bd9Sstevel@tonic-gate 	if (ndi_dev_is_persistent_node(dip)) {
26027c478bd9Sstevel@tonic-gate 		dnp = &orphanlist;
26037c478bd9Sstevel@tonic-gate 		add_to_dn_list(dnp, dip);
26047c478bd9Sstevel@tonic-gate 	}
26057c478bd9Sstevel@tonic-gate }
26067c478bd9Sstevel@tonic-gate 
26077c478bd9Sstevel@tonic-gate /*
26087c478bd9Sstevel@tonic-gate  * scan the per-driver list looking for dev_info "dip"
26097c478bd9Sstevel@tonic-gate  */
26107c478bd9Sstevel@tonic-gate static dev_info_t *
26117c478bd9Sstevel@tonic-gate in_dn_list(struct devnames *dnp, dev_info_t *dip)
26127c478bd9Sstevel@tonic-gate {
26137c478bd9Sstevel@tonic-gate 	struct dev_info *idevi;
26147c478bd9Sstevel@tonic-gate 
26157c478bd9Sstevel@tonic-gate 	if ((idevi = DEVI(dnp->dn_head)) == NULL)
26167c478bd9Sstevel@tonic-gate 		return (NULL);
26177c478bd9Sstevel@tonic-gate 
26187c478bd9Sstevel@tonic-gate 	while (idevi) {
26197c478bd9Sstevel@tonic-gate 		if (idevi == DEVI(dip))
26207c478bd9Sstevel@tonic-gate 			return (dip);
26217c478bd9Sstevel@tonic-gate 		idevi = idevi->devi_next;
26227c478bd9Sstevel@tonic-gate 	}
26237c478bd9Sstevel@tonic-gate 	return (NULL);
26247c478bd9Sstevel@tonic-gate }
26257c478bd9Sstevel@tonic-gate 
26267c478bd9Sstevel@tonic-gate /*
26277c478bd9Sstevel@tonic-gate  * insert devinfo node 'dip' into the per-driver instance list
26287c478bd9Sstevel@tonic-gate  * headed by 'dnp'
26297c478bd9Sstevel@tonic-gate  *
26307c478bd9Sstevel@tonic-gate  * Nodes on the per-driver list are ordered: HW - SID - PSEUDO.  The order is
26317c478bd9Sstevel@tonic-gate  * required for merging of .conf file data to work properly.
26327c478bd9Sstevel@tonic-gate  */
26337c478bd9Sstevel@tonic-gate static void
26347c478bd9Sstevel@tonic-gate add_to_ordered_dn_list(struct devnames *dnp, dev_info_t *dip)
26357c478bd9Sstevel@tonic-gate {
26367c478bd9Sstevel@tonic-gate 	dev_info_t **dipp;
26377c478bd9Sstevel@tonic-gate 
26387c478bd9Sstevel@tonic-gate 	ASSERT(mutex_owned(&(dnp->dn_lock)));
26397c478bd9Sstevel@tonic-gate 
26407c478bd9Sstevel@tonic-gate 	dipp = &dnp->dn_head;
26417c478bd9Sstevel@tonic-gate 	if (ndi_dev_is_prom_node(dip)) {
26427c478bd9Sstevel@tonic-gate 		/*
26437c478bd9Sstevel@tonic-gate 		 * Find the first non-prom node or end of list
26447c478bd9Sstevel@tonic-gate 		 */
26457c478bd9Sstevel@tonic-gate 		while (*dipp && (ndi_dev_is_prom_node(*dipp) != 0)) {
26467c478bd9Sstevel@tonic-gate 			dipp = (dev_info_t **)&DEVI(*dipp)->devi_next;
26477c478bd9Sstevel@tonic-gate 		}
26487c478bd9Sstevel@tonic-gate 	} else if (ndi_dev_is_persistent_node(dip)) {
26497c478bd9Sstevel@tonic-gate 		/*
26507c478bd9Sstevel@tonic-gate 		 * Find the first non-persistent node
26517c478bd9Sstevel@tonic-gate 		 */
26527c478bd9Sstevel@tonic-gate 		while (*dipp && (ndi_dev_is_persistent_node(*dipp) != 0)) {
26537c478bd9Sstevel@tonic-gate 			dipp = (dev_info_t **)&DEVI(*dipp)->devi_next;
26547c478bd9Sstevel@tonic-gate 		}
26557c478bd9Sstevel@tonic-gate 	} else {
26567c478bd9Sstevel@tonic-gate 		/*
26577c478bd9Sstevel@tonic-gate 		 * Find the end of the list
26587c478bd9Sstevel@tonic-gate 		 */
26597c478bd9Sstevel@tonic-gate 		while (*dipp) {
26607c478bd9Sstevel@tonic-gate 			dipp = (dev_info_t **)&DEVI(*dipp)->devi_next;
26617c478bd9Sstevel@tonic-gate 		}
26627c478bd9Sstevel@tonic-gate 	}
26637c478bd9Sstevel@tonic-gate 
26647c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_next = DEVI(*dipp);
26657c478bd9Sstevel@tonic-gate 	*dipp = dip;
26667c478bd9Sstevel@tonic-gate }
26677c478bd9Sstevel@tonic-gate 
26687c478bd9Sstevel@tonic-gate /*
26697c478bd9Sstevel@tonic-gate  * add a list of device nodes to the device node list in the
26707c478bd9Sstevel@tonic-gate  * devnames structure
26717c478bd9Sstevel@tonic-gate  */
26727c478bd9Sstevel@tonic-gate static void
26737c478bd9Sstevel@tonic-gate add_to_dn_list(struct devnames *dnp, dev_info_t *dip)
26747c478bd9Sstevel@tonic-gate {
26757c478bd9Sstevel@tonic-gate 	/*
26767c478bd9Sstevel@tonic-gate 	 * Look to see if node already exists
26777c478bd9Sstevel@tonic-gate 	 */
26787c478bd9Sstevel@tonic-gate 	LOCK_DEV_OPS(&(dnp->dn_lock));
26797c478bd9Sstevel@tonic-gate 	if (in_dn_list(dnp, dip)) {
26807c478bd9Sstevel@tonic-gate 		cmn_err(CE_NOTE, "add_to_dn_list: node %s already in list",
26817c478bd9Sstevel@tonic-gate 		    DEVI(dip)->devi_node_name);
26827c478bd9Sstevel@tonic-gate 	} else {
26837c478bd9Sstevel@tonic-gate 		add_to_ordered_dn_list(dnp, dip);
26847c478bd9Sstevel@tonic-gate 	}
26857c478bd9Sstevel@tonic-gate 	UNLOCK_DEV_OPS(&(dnp->dn_lock));
26867c478bd9Sstevel@tonic-gate }
26877c478bd9Sstevel@tonic-gate 
26887c478bd9Sstevel@tonic-gate static void
26897c478bd9Sstevel@tonic-gate remove_from_dn_list(struct devnames *dnp, dev_info_t *dip)
26907c478bd9Sstevel@tonic-gate {
26917c478bd9Sstevel@tonic-gate 	dev_info_t **plist;
26927c478bd9Sstevel@tonic-gate 
26937c478bd9Sstevel@tonic-gate 	LOCK_DEV_OPS(&(dnp->dn_lock));
26947c478bd9Sstevel@tonic-gate 
26957c478bd9Sstevel@tonic-gate 	plist = (dev_info_t **)&dnp->dn_head;
26967c478bd9Sstevel@tonic-gate 	while (*plist && (*plist != dip)) {
26977c478bd9Sstevel@tonic-gate 		plist = (dev_info_t **)&DEVI(*plist)->devi_next;
26987c478bd9Sstevel@tonic-gate 	}
26997c478bd9Sstevel@tonic-gate 
27007c478bd9Sstevel@tonic-gate 	if (*plist != NULL) {
27017c478bd9Sstevel@tonic-gate 		ASSERT(*plist == dip);
27027c478bd9Sstevel@tonic-gate 		*plist = (dev_info_t *)(DEVI(dip)->devi_next);
27037c478bd9Sstevel@tonic-gate 		DEVI(dip)->devi_next = NULL;
27047c478bd9Sstevel@tonic-gate 	} else {
27057c478bd9Sstevel@tonic-gate 		NDI_CONFIG_DEBUG((CE_NOTE,
27067c478bd9Sstevel@tonic-gate 		    "remove_from_dn_list: node %s not found in list",
27077c478bd9Sstevel@tonic-gate 		    DEVI(dip)->devi_node_name));
27087c478bd9Sstevel@tonic-gate 	}
27097c478bd9Sstevel@tonic-gate 
27107c478bd9Sstevel@tonic-gate 	UNLOCK_DEV_OPS(&(dnp->dn_lock));
27117c478bd9Sstevel@tonic-gate }
27127c478bd9Sstevel@tonic-gate 
27137c478bd9Sstevel@tonic-gate /*
27147c478bd9Sstevel@tonic-gate  * Add and remove reference driver global property list
27157c478bd9Sstevel@tonic-gate  */
27167c478bd9Sstevel@tonic-gate static void
27177c478bd9Sstevel@tonic-gate add_global_props(dev_info_t *dip)
27187c478bd9Sstevel@tonic-gate {
27197c478bd9Sstevel@tonic-gate 	struct devnames *dnp;
27207c478bd9Sstevel@tonic-gate 	ddi_prop_list_t *plist;
27217c478bd9Sstevel@tonic-gate 
27227c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(dip)->devi_global_prop_list == NULL);
27237c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(dip)->devi_major != (major_t)-1);
27247c478bd9Sstevel@tonic-gate 
27257c478bd9Sstevel@tonic-gate 	dnp = &devnamesp[DEVI(dip)->devi_major];
27267c478bd9Sstevel@tonic-gate 	LOCK_DEV_OPS(&dnp->dn_lock);
27277c478bd9Sstevel@tonic-gate 	plist = dnp->dn_global_prop_ptr;
27287c478bd9Sstevel@tonic-gate 	if (plist == NULL) {
27297c478bd9Sstevel@tonic-gate 		UNLOCK_DEV_OPS(&dnp->dn_lock);
27307c478bd9Sstevel@tonic-gate 		return;
27317c478bd9Sstevel@tonic-gate 	}
27327c478bd9Sstevel@tonic-gate 	i_ddi_prop_list_hold(plist, dnp);
27337c478bd9Sstevel@tonic-gate 	UNLOCK_DEV_OPS(&dnp->dn_lock);
27347c478bd9Sstevel@tonic-gate 
27357c478bd9Sstevel@tonic-gate 	mutex_enter(&DEVI(dip)->devi_lock);
27367c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_global_prop_list = plist;
27377c478bd9Sstevel@tonic-gate 	mutex_exit(&DEVI(dip)->devi_lock);
27387c478bd9Sstevel@tonic-gate }
27397c478bd9Sstevel@tonic-gate 
27407c478bd9Sstevel@tonic-gate static void
27417c478bd9Sstevel@tonic-gate remove_global_props(dev_info_t *dip)
27427c478bd9Sstevel@tonic-gate {
27437c478bd9Sstevel@tonic-gate 	ddi_prop_list_t *proplist;
27447c478bd9Sstevel@tonic-gate 
27457c478bd9Sstevel@tonic-gate 	mutex_enter(&DEVI(dip)->devi_lock);
27467c478bd9Sstevel@tonic-gate 	proplist = DEVI(dip)->devi_global_prop_list;
27477c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_global_prop_list = NULL;
27487c478bd9Sstevel@tonic-gate 	mutex_exit(&DEVI(dip)->devi_lock);
27497c478bd9Sstevel@tonic-gate 
27507c478bd9Sstevel@tonic-gate 	if (proplist) {
27517c478bd9Sstevel@tonic-gate 		major_t major;
27527c478bd9Sstevel@tonic-gate 		struct devnames *dnp;
27537c478bd9Sstevel@tonic-gate 
27547c478bd9Sstevel@tonic-gate 		major = ddi_driver_major(dip);
27557c478bd9Sstevel@tonic-gate 		ASSERT(major != (major_t)-1);
27567c478bd9Sstevel@tonic-gate 		dnp = &devnamesp[major];
27577c478bd9Sstevel@tonic-gate 		LOCK_DEV_OPS(&dnp->dn_lock);
27587c478bd9Sstevel@tonic-gate 		i_ddi_prop_list_rele(proplist, dnp);
27597c478bd9Sstevel@tonic-gate 		UNLOCK_DEV_OPS(&dnp->dn_lock);
27607c478bd9Sstevel@tonic-gate 	}
27617c478bd9Sstevel@tonic-gate }
27627c478bd9Sstevel@tonic-gate 
27637c478bd9Sstevel@tonic-gate #ifdef DEBUG
27647c478bd9Sstevel@tonic-gate /*
27657c478bd9Sstevel@tonic-gate  * Set this variable to '0' to disable the optimization,
27667c478bd9Sstevel@tonic-gate  * and to 2 to print debug message.
27677c478bd9Sstevel@tonic-gate  */
27687c478bd9Sstevel@tonic-gate static int optimize_dtree = 1;
27697c478bd9Sstevel@tonic-gate 
27707c478bd9Sstevel@tonic-gate static void
27717c478bd9Sstevel@tonic-gate debug_dtree(dev_info_t *devi, struct dev_info *adevi, char *service)
27727c478bd9Sstevel@tonic-gate {
27737c478bd9Sstevel@tonic-gate 	char *adeviname, *buf;
27747c478bd9Sstevel@tonic-gate 
27757c478bd9Sstevel@tonic-gate 	/*
27767c478bd9Sstevel@tonic-gate 	 * Don't print unless optimize dtree is set to 2+
27777c478bd9Sstevel@tonic-gate 	 */
27787c478bd9Sstevel@tonic-gate 	if (optimize_dtree <= 1)
27797c478bd9Sstevel@tonic-gate 		return;
27807c478bd9Sstevel@tonic-gate 
27817c478bd9Sstevel@tonic-gate 	buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
27827c478bd9Sstevel@tonic-gate 	adeviname = ddi_deviname((dev_info_t *)adevi, buf);
27837c478bd9Sstevel@tonic-gate 	if (*adeviname == '\0')
27847c478bd9Sstevel@tonic-gate 		adeviname = "root";
27857c478bd9Sstevel@tonic-gate 
27867c478bd9Sstevel@tonic-gate 	cmn_err(CE_CONT, "%s %s -> %s\n",
27877c478bd9Sstevel@tonic-gate 	    ddi_deviname(devi, buf), service, adeviname);
27887c478bd9Sstevel@tonic-gate 
27897c478bd9Sstevel@tonic-gate 	kmem_free(buf, MAXNAMELEN);
27907c478bd9Sstevel@tonic-gate }
27917c478bd9Sstevel@tonic-gate #else /* DEBUG */
27927c478bd9Sstevel@tonic-gate #define	debug_dtree(a1, a2, a3)	 /* nothing */
27937c478bd9Sstevel@tonic-gate #endif  /* DEBUG */
27947c478bd9Sstevel@tonic-gate 
27957c478bd9Sstevel@tonic-gate static void
27967c478bd9Sstevel@tonic-gate ddi_optimize_dtree(dev_info_t *devi)
27977c478bd9Sstevel@tonic-gate {
27987c478bd9Sstevel@tonic-gate 	struct dev_info *pdevi;
27997c478bd9Sstevel@tonic-gate 	struct bus_ops *b;
28007c478bd9Sstevel@tonic-gate 
28017c478bd9Sstevel@tonic-gate 	pdevi = DEVI(devi)->devi_parent;
28027c478bd9Sstevel@tonic-gate 	ASSERT(pdevi);
28037c478bd9Sstevel@tonic-gate 
28047c478bd9Sstevel@tonic-gate 	/*
28057c478bd9Sstevel@tonic-gate 	 * Set the unoptimized values
28067c478bd9Sstevel@tonic-gate 	 */
28077c478bd9Sstevel@tonic-gate 	DEVI(devi)->devi_bus_map_fault = pdevi;
28087c478bd9Sstevel@tonic-gate 	DEVI(devi)->devi_bus_dma_map = pdevi;
28097c478bd9Sstevel@tonic-gate 	DEVI(devi)->devi_bus_dma_allochdl = pdevi;
28107c478bd9Sstevel@tonic-gate 	DEVI(devi)->devi_bus_dma_freehdl = pdevi;
28117c478bd9Sstevel@tonic-gate 	DEVI(devi)->devi_bus_dma_bindhdl = pdevi;
28127c478bd9Sstevel@tonic-gate 	DEVI(devi)->devi_bus_dma_bindfunc =
28137c478bd9Sstevel@tonic-gate 	pdevi->devi_ops->devo_bus_ops->bus_dma_bindhdl;
28147c478bd9Sstevel@tonic-gate 	DEVI(devi)->devi_bus_dma_unbindhdl = pdevi;
28157c478bd9Sstevel@tonic-gate 	DEVI(devi)->devi_bus_dma_unbindfunc =
28167c478bd9Sstevel@tonic-gate 	    pdevi->devi_ops->devo_bus_ops->bus_dma_unbindhdl;
28177c478bd9Sstevel@tonic-gate 	DEVI(devi)->devi_bus_dma_flush = pdevi;
28187c478bd9Sstevel@tonic-gate 	DEVI(devi)->devi_bus_dma_win = pdevi;
28197c478bd9Sstevel@tonic-gate 	DEVI(devi)->devi_bus_dma_ctl = pdevi;
28207c478bd9Sstevel@tonic-gate 	DEVI(devi)->devi_bus_ctl = pdevi;
28217c478bd9Sstevel@tonic-gate 
28227c478bd9Sstevel@tonic-gate #ifdef DEBUG
28237c478bd9Sstevel@tonic-gate 	if (optimize_dtree == 0)
28247c478bd9Sstevel@tonic-gate 		return;
28257c478bd9Sstevel@tonic-gate #endif /* DEBUG */
28267c478bd9Sstevel@tonic-gate 
28277c478bd9Sstevel@tonic-gate 	b = pdevi->devi_ops->devo_bus_ops;
28287c478bd9Sstevel@tonic-gate 
28297c478bd9Sstevel@tonic-gate 	if (i_ddi_map_fault == b->bus_map_fault) {
28307c478bd9Sstevel@tonic-gate 		DEVI(devi)->devi_bus_map_fault = pdevi->devi_bus_map_fault;
28317c478bd9Sstevel@tonic-gate 		debug_dtree(devi, DEVI(devi)->devi_bus_map_fault,
28327c478bd9Sstevel@tonic-gate 		    "bus_map_fault");
28337c478bd9Sstevel@tonic-gate 	}
28347c478bd9Sstevel@tonic-gate 
28357c478bd9Sstevel@tonic-gate 	if (ddi_dma_map == b->bus_dma_map) {
28367c478bd9Sstevel@tonic-gate 		DEVI(devi)->devi_bus_dma_map = pdevi->devi_bus_dma_map;
28377c478bd9Sstevel@tonic-gate 		debug_dtree(devi, DEVI(devi)->devi_bus_dma_map, "bus_dma_map");
28387c478bd9Sstevel@tonic-gate 	}
28397c478bd9Sstevel@tonic-gate 
28407c478bd9Sstevel@tonic-gate 	if (ddi_dma_allochdl == b->bus_dma_allochdl) {
28417c478bd9Sstevel@tonic-gate 		DEVI(devi)->devi_bus_dma_allochdl =
28427c478bd9Sstevel@tonic-gate 		    pdevi->devi_bus_dma_allochdl;
28437c478bd9Sstevel@tonic-gate 		debug_dtree(devi, DEVI(devi)->devi_bus_dma_allochdl,
28447c478bd9Sstevel@tonic-gate 		    "bus_dma_allochdl");
28457c478bd9Sstevel@tonic-gate 	}
28467c478bd9Sstevel@tonic-gate 
28477c478bd9Sstevel@tonic-gate 	if (ddi_dma_freehdl == b->bus_dma_freehdl) {
28487c478bd9Sstevel@tonic-gate 		DEVI(devi)->devi_bus_dma_freehdl = pdevi->devi_bus_dma_freehdl;
28497c478bd9Sstevel@tonic-gate 		debug_dtree(devi, DEVI(devi)->devi_bus_dma_freehdl,
28507c478bd9Sstevel@tonic-gate 		    "bus_dma_freehdl");
28517c478bd9Sstevel@tonic-gate 	}
28527c478bd9Sstevel@tonic-gate 
28537c478bd9Sstevel@tonic-gate 	if (ddi_dma_bindhdl == b->bus_dma_bindhdl) {
28547c478bd9Sstevel@tonic-gate 		DEVI(devi)->devi_bus_dma_bindhdl = pdevi->devi_bus_dma_bindhdl;
28557c478bd9Sstevel@tonic-gate 		DEVI(devi)->devi_bus_dma_bindfunc =
28567c478bd9Sstevel@tonic-gate 		    pdevi->devi_bus_dma_bindhdl->devi_ops->
28577c478bd9Sstevel@tonic-gate 		    devo_bus_ops->bus_dma_bindhdl;
28587c478bd9Sstevel@tonic-gate 		debug_dtree(devi, DEVI(devi)->devi_bus_dma_bindhdl,
28597c478bd9Sstevel@tonic-gate 		    "bus_dma_bindhdl");
28607c478bd9Sstevel@tonic-gate 	}
28617c478bd9Sstevel@tonic-gate 
28627c478bd9Sstevel@tonic-gate 	if (ddi_dma_unbindhdl == b->bus_dma_unbindhdl) {
28637c478bd9Sstevel@tonic-gate 		DEVI(devi)->devi_bus_dma_unbindhdl =
28647c478bd9Sstevel@tonic-gate 		    pdevi->devi_bus_dma_unbindhdl;
28657c478bd9Sstevel@tonic-gate 		DEVI(devi)->devi_bus_dma_unbindfunc =
28667c478bd9Sstevel@tonic-gate 		    pdevi->devi_bus_dma_unbindhdl->devi_ops->
28677c478bd9Sstevel@tonic-gate 		    devo_bus_ops->bus_dma_unbindhdl;
28687c478bd9Sstevel@tonic-gate 		debug_dtree(devi, DEVI(devi)->devi_bus_dma_unbindhdl,
28697c478bd9Sstevel@tonic-gate 		    "bus_dma_unbindhdl");
28707c478bd9Sstevel@tonic-gate 	}
28717c478bd9Sstevel@tonic-gate 
28727c478bd9Sstevel@tonic-gate 	if (ddi_dma_flush == b->bus_dma_flush) {
28737c478bd9Sstevel@tonic-gate 		DEVI(devi)->devi_bus_dma_flush = pdevi->devi_bus_dma_flush;
28747c478bd9Sstevel@tonic-gate 		debug_dtree(devi, DEVI(devi)->devi_bus_dma_flush,
28757c478bd9Sstevel@tonic-gate 		    "bus_dma_flush");
28767c478bd9Sstevel@tonic-gate 	}
28777c478bd9Sstevel@tonic-gate 
28787c478bd9Sstevel@tonic-gate 	if (ddi_dma_win == b->bus_dma_win) {
28797c478bd9Sstevel@tonic-gate 		DEVI(devi)->devi_bus_dma_win = pdevi->devi_bus_dma_win;
28807c478bd9Sstevel@tonic-gate 		debug_dtree(devi, DEVI(devi)->devi_bus_dma_win,
28817c478bd9Sstevel@tonic-gate 		    "bus_dma_win");
28827c478bd9Sstevel@tonic-gate 	}
28837c478bd9Sstevel@tonic-gate 
28847c478bd9Sstevel@tonic-gate 	if (ddi_dma_mctl == b->bus_dma_ctl) {
28857c478bd9Sstevel@tonic-gate 		DEVI(devi)->devi_bus_dma_ctl = pdevi->devi_bus_dma_ctl;
28867c478bd9Sstevel@tonic-gate 		debug_dtree(devi, DEVI(devi)->devi_bus_dma_ctl, "bus_dma_ctl");
28877c478bd9Sstevel@tonic-gate 	}
28887c478bd9Sstevel@tonic-gate 
28897c478bd9Sstevel@tonic-gate 	if (ddi_ctlops == b->bus_ctl) {
28907c478bd9Sstevel@tonic-gate 		DEVI(devi)->devi_bus_ctl = pdevi->devi_bus_ctl;
28917c478bd9Sstevel@tonic-gate 		debug_dtree(devi, DEVI(devi)->devi_bus_ctl, "bus_ctl");
28927c478bd9Sstevel@tonic-gate 	}
28937c478bd9Sstevel@tonic-gate }
28947c478bd9Sstevel@tonic-gate 
28957c478bd9Sstevel@tonic-gate #define	MIN_DEVINFO_LOG_SIZE	max_ncpus
28967c478bd9Sstevel@tonic-gate #define	MAX_DEVINFO_LOG_SIZE	max_ncpus * 10
28977c478bd9Sstevel@tonic-gate 
28987c478bd9Sstevel@tonic-gate static void
28997c478bd9Sstevel@tonic-gate da_log_init()
29007c478bd9Sstevel@tonic-gate {
29017c478bd9Sstevel@tonic-gate 	devinfo_log_header_t *dh;
29027c478bd9Sstevel@tonic-gate 	int logsize = devinfo_log_size;
29037c478bd9Sstevel@tonic-gate 
29047c478bd9Sstevel@tonic-gate 	if (logsize == 0)
29057c478bd9Sstevel@tonic-gate 		logsize = MIN_DEVINFO_LOG_SIZE;
29067c478bd9Sstevel@tonic-gate 	else if (logsize > MAX_DEVINFO_LOG_SIZE)
29077c478bd9Sstevel@tonic-gate 		logsize = MAX_DEVINFO_LOG_SIZE;
29087c478bd9Sstevel@tonic-gate 
29097c478bd9Sstevel@tonic-gate 	dh = kmem_alloc(logsize * PAGESIZE, KM_SLEEP);
29107c478bd9Sstevel@tonic-gate 	mutex_init(&dh->dh_lock, NULL, MUTEX_DEFAULT, NULL);
29117c478bd9Sstevel@tonic-gate 	dh->dh_max = ((logsize * PAGESIZE) - sizeof (*dh)) /
29127c478bd9Sstevel@tonic-gate 	    sizeof (devinfo_audit_t) + 1;
29137c478bd9Sstevel@tonic-gate 	dh->dh_curr = -1;
29147c478bd9Sstevel@tonic-gate 	dh->dh_hits = 0;
29157c478bd9Sstevel@tonic-gate 
29167c478bd9Sstevel@tonic-gate 	devinfo_audit_log = dh;
29177c478bd9Sstevel@tonic-gate }
29187c478bd9Sstevel@tonic-gate 
29197c478bd9Sstevel@tonic-gate /*
29207c478bd9Sstevel@tonic-gate  * Log the stack trace in per-devinfo audit structure and also enter
29217c478bd9Sstevel@tonic-gate  * it into a system wide log for recording the time history.
29227c478bd9Sstevel@tonic-gate  */
29237c478bd9Sstevel@tonic-gate static void
29247c478bd9Sstevel@tonic-gate da_log_enter(dev_info_t *dip)
29257c478bd9Sstevel@tonic-gate {
29267c478bd9Sstevel@tonic-gate 	devinfo_audit_t *da_log, *da = DEVI(dip)->devi_audit;
29277c478bd9Sstevel@tonic-gate 	devinfo_log_header_t *dh = devinfo_audit_log;
29287c478bd9Sstevel@tonic-gate 
29297c478bd9Sstevel@tonic-gate 	if (devinfo_audit_log == NULL)
29307c478bd9Sstevel@tonic-gate 		return;
29317c478bd9Sstevel@tonic-gate 
29327c478bd9Sstevel@tonic-gate 	ASSERT(da != NULL);
29337c478bd9Sstevel@tonic-gate 
29347c478bd9Sstevel@tonic-gate 	da->da_devinfo = dip;
29357c478bd9Sstevel@tonic-gate 	da->da_timestamp = gethrtime();
29367c478bd9Sstevel@tonic-gate 	da->da_thread = curthread;
29377c478bd9Sstevel@tonic-gate 	da->da_node_state = DEVI(dip)->devi_node_state;
29387c478bd9Sstevel@tonic-gate 	da->da_device_state = DEVI(dip)->devi_state;
29397c478bd9Sstevel@tonic-gate 	da->da_depth = getpcstack(da->da_stack, DDI_STACK_DEPTH);
29407c478bd9Sstevel@tonic-gate 
29417c478bd9Sstevel@tonic-gate 	/*
29427c478bd9Sstevel@tonic-gate 	 * Copy into common log and note the location for tracing history
29437c478bd9Sstevel@tonic-gate 	 */
29447c478bd9Sstevel@tonic-gate 	mutex_enter(&dh->dh_lock);
29457c478bd9Sstevel@tonic-gate 	dh->dh_hits++;
29467c478bd9Sstevel@tonic-gate 	dh->dh_curr++;
29477c478bd9Sstevel@tonic-gate 	if (dh->dh_curr >= dh->dh_max)
29487c478bd9Sstevel@tonic-gate 		dh->dh_curr -= dh->dh_max;
29497c478bd9Sstevel@tonic-gate 	da_log = &dh->dh_entry[dh->dh_curr];
29507c478bd9Sstevel@tonic-gate 	mutex_exit(&dh->dh_lock);
29517c478bd9Sstevel@tonic-gate 
29527c478bd9Sstevel@tonic-gate 	bcopy(da, da_log, sizeof (devinfo_audit_t));
29537c478bd9Sstevel@tonic-gate 	da->da_lastlog = da_log;
29547c478bd9Sstevel@tonic-gate }
29557c478bd9Sstevel@tonic-gate 
29567c478bd9Sstevel@tonic-gate static void
29577c478bd9Sstevel@tonic-gate attach_drivers()
29587c478bd9Sstevel@tonic-gate {
29597c478bd9Sstevel@tonic-gate 	int i;
29607c478bd9Sstevel@tonic-gate 	for (i = 0; i < devcnt; i++) {
29617c478bd9Sstevel@tonic-gate 		struct devnames *dnp = &devnamesp[i];
29627c478bd9Sstevel@tonic-gate 		if ((dnp->dn_flags & DN_FORCE_ATTACH) &&
29637c478bd9Sstevel@tonic-gate 		    (ddi_hold_installed_driver((major_t)i) != NULL))
29647c478bd9Sstevel@tonic-gate 			ddi_rele_driver((major_t)i);
29657c478bd9Sstevel@tonic-gate 	}
29667c478bd9Sstevel@tonic-gate }
29677c478bd9Sstevel@tonic-gate 
29687c478bd9Sstevel@tonic-gate /*
29697c478bd9Sstevel@tonic-gate  * Launch a thread to force attach drivers. This avoids penalty on boot time.
29707c478bd9Sstevel@tonic-gate  */
29717c478bd9Sstevel@tonic-gate void
29727c478bd9Sstevel@tonic-gate i_ddi_forceattach_drivers()
29737c478bd9Sstevel@tonic-gate {
29747c478bd9Sstevel@tonic-gate 	/*
29757c478bd9Sstevel@tonic-gate 	 * On i386, the USB drivers need to load and take over from the
29767c478bd9Sstevel@tonic-gate 	 * SMM BIOS drivers ASAP after consconfig(), so make sure they
29777c478bd9Sstevel@tonic-gate 	 * get loaded right here rather than letting the thread do it.
29787c478bd9Sstevel@tonic-gate 	 *
29797c478bd9Sstevel@tonic-gate 	 * The order here is important.  EHCI must be loaded first, as
29807c478bd9Sstevel@tonic-gate 	 * we have observed many systems on which hangs occur if the
29817c478bd9Sstevel@tonic-gate 	 * {U,O}HCI companion controllers take over control from the BIOS
29827c478bd9Sstevel@tonic-gate 	 * before EHCI does.  These hangs are also caused by BIOSes leaving
29837c478bd9Sstevel@tonic-gate 	 * interrupt-on-port-change enabled in the ehci controller, so that
29847c478bd9Sstevel@tonic-gate 	 * when uhci/ohci reset themselves, it induces a port change on
29857c478bd9Sstevel@tonic-gate 	 * the ehci companion controller.  Since there's no interrupt handler
29867c478bd9Sstevel@tonic-gate 	 * installed at the time, the moment that interrupt is unmasked, an
29877c478bd9Sstevel@tonic-gate 	 * interrupt storm will occur.  All this is averted when ehci is
29887c478bd9Sstevel@tonic-gate 	 * loaded first.  And now you know..... the REST of the story.
29897c478bd9Sstevel@tonic-gate 	 *
29907c478bd9Sstevel@tonic-gate 	 * Regardless of platform, ehci needs to initialize first to avoid
29917c478bd9Sstevel@tonic-gate 	 * unnecessary connects and disconnects on the companion controller
29927c478bd9Sstevel@tonic-gate 	 * when ehci sets up the routing.
29937c478bd9Sstevel@tonic-gate 	 */
29947c478bd9Sstevel@tonic-gate 	(void) ddi_hold_installed_driver(ddi_name_to_major("ehci"));
29957c478bd9Sstevel@tonic-gate 	(void) ddi_hold_installed_driver(ddi_name_to_major("uhci"));
29967c478bd9Sstevel@tonic-gate 	(void) ddi_hold_installed_driver(ddi_name_to_major("ohci"));
29977c478bd9Sstevel@tonic-gate 
29989d3d2ed0Shiremath 	/*
29999d3d2ed0Shiremath 	 * Attach IB VHCI driver before the force-attach thread attaches the
30009d3d2ed0Shiremath 	 * IB HCA driver. IB HCA driver will fail if IB Nexus has not yet
30019d3d2ed0Shiremath 	 * been attached.
30029d3d2ed0Shiremath 	 */
30039d3d2ed0Shiremath 	(void) ddi_hold_installed_driver(ddi_name_to_major("ib"));
30049d3d2ed0Shiremath 
30057c478bd9Sstevel@tonic-gate 	(void) thread_create(NULL, 0, (void (*)())attach_drivers, NULL, 0, &p0,
30067c478bd9Sstevel@tonic-gate 	    TS_RUN, minclsyspri);
30077c478bd9Sstevel@tonic-gate }
30087c478bd9Sstevel@tonic-gate 
30097c478bd9Sstevel@tonic-gate /*
30107c478bd9Sstevel@tonic-gate  * This is a private DDI interface for optimizing boot performance.
30117c478bd9Sstevel@tonic-gate  * I/O subsystem initialization is considered complete when devfsadm
30127c478bd9Sstevel@tonic-gate  * is executed.
30137c478bd9Sstevel@tonic-gate  *
3014*facf4a8dSllai1  * NOTE: The start of syseventd happens to be a convenient indicator
3015*facf4a8dSllai1  *	of the completion of I/O initialization during boot.
30167c478bd9Sstevel@tonic-gate  *	The implementation should be replaced by something more robust.
30177c478bd9Sstevel@tonic-gate  */
30187c478bd9Sstevel@tonic-gate int
30197c478bd9Sstevel@tonic-gate i_ddi_io_initialized()
30207c478bd9Sstevel@tonic-gate {
30217c478bd9Sstevel@tonic-gate 	extern int sysevent_daemon_init;
30227c478bd9Sstevel@tonic-gate 	return (sysevent_daemon_init);
30237c478bd9Sstevel@tonic-gate }
30247c478bd9Sstevel@tonic-gate 
3025*facf4a8dSllai1 /*
3026*facf4a8dSllai1  * May be used to determine system boot state
3027*facf4a8dSllai1  * "Available" means the system is for the most part up
3028*facf4a8dSllai1  * and initialized, with all system services either up or
3029*facf4a8dSllai1  * capable of being started.  This state is set by devfsadm
3030*facf4a8dSllai1  * during the boot process.  The /dev filesystem infers
3031*facf4a8dSllai1  * from this when implicit reconfig can be performed,
3032*facf4a8dSllai1  * ie, devfsadm can be invoked.  Please avoid making
3033*facf4a8dSllai1  * further use of this unless it's really necessary.
3034*facf4a8dSllai1  */
3035*facf4a8dSllai1 int
3036*facf4a8dSllai1 i_ddi_sysavail()
3037*facf4a8dSllai1 {
3038*facf4a8dSllai1 	return (devname_state & DS_SYSAVAIL);
3039*facf4a8dSllai1 }
3040*facf4a8dSllai1 
3041*facf4a8dSllai1 /*
3042*facf4a8dSllai1  * May be used to determine if boot is a reconfigure boot.
3043*facf4a8dSllai1  */
3044*facf4a8dSllai1 int
3045*facf4a8dSllai1 i_ddi_reconfig()
3046*facf4a8dSllai1 {
3047*facf4a8dSllai1 	return (devname_state & DS_RECONFIG);
3048*facf4a8dSllai1 }
3049*facf4a8dSllai1 
3050*facf4a8dSllai1 /*
3051*facf4a8dSllai1  * Note system services are up, inform /dev.
3052*facf4a8dSllai1  */
3053*facf4a8dSllai1 void
3054*facf4a8dSllai1 i_ddi_set_sysavail()
3055*facf4a8dSllai1 {
3056*facf4a8dSllai1 	if ((devname_state & DS_SYSAVAIL) == 0) {
3057*facf4a8dSllai1 		devname_state |= DS_SYSAVAIL;
3058*facf4a8dSllai1 		sdev_devstate_change();
3059*facf4a8dSllai1 	}
3060*facf4a8dSllai1 }
3061*facf4a8dSllai1 
3062*facf4a8dSllai1 /*
3063*facf4a8dSllai1  * Note reconfiguration boot, inform /dev.
3064*facf4a8dSllai1  */
3065*facf4a8dSllai1 void
3066*facf4a8dSllai1 i_ddi_set_reconfig()
3067*facf4a8dSllai1 {
3068*facf4a8dSllai1 	if ((devname_state & DS_RECONFIG) == 0) {
3069*facf4a8dSllai1 		devname_state |= DS_RECONFIG;
3070*facf4a8dSllai1 		sdev_devstate_change();
3071*facf4a8dSllai1 	}
3072*facf4a8dSllai1 }
3073*facf4a8dSllai1 
30747c478bd9Sstevel@tonic-gate 
30757c478bd9Sstevel@tonic-gate /*
30767c478bd9Sstevel@tonic-gate  * device tree walking
30777c478bd9Sstevel@tonic-gate  */
30787c478bd9Sstevel@tonic-gate 
30797c478bd9Sstevel@tonic-gate struct walk_elem {
30807c478bd9Sstevel@tonic-gate 	struct walk_elem *next;
30817c478bd9Sstevel@tonic-gate 	dev_info_t *dip;
30827c478bd9Sstevel@tonic-gate };
30837c478bd9Sstevel@tonic-gate 
30847c478bd9Sstevel@tonic-gate static void
30857c478bd9Sstevel@tonic-gate free_list(struct walk_elem *list)
30867c478bd9Sstevel@tonic-gate {
30877c478bd9Sstevel@tonic-gate 	while (list) {
30887c478bd9Sstevel@tonic-gate 		struct walk_elem *next = list->next;
30897c478bd9Sstevel@tonic-gate 		kmem_free(list, sizeof (*list));
30907c478bd9Sstevel@tonic-gate 		list = next;
30917c478bd9Sstevel@tonic-gate 	}
30927c478bd9Sstevel@tonic-gate }
30937c478bd9Sstevel@tonic-gate 
30947c478bd9Sstevel@tonic-gate static void
30957c478bd9Sstevel@tonic-gate append_node(struct walk_elem **list, dev_info_t *dip)
30967c478bd9Sstevel@tonic-gate {
30977c478bd9Sstevel@tonic-gate 	struct walk_elem *tail;
30987c478bd9Sstevel@tonic-gate 	struct walk_elem *elem = kmem_alloc(sizeof (*elem), KM_SLEEP);
30997c478bd9Sstevel@tonic-gate 
31007c478bd9Sstevel@tonic-gate 	elem->next = NULL;
31017c478bd9Sstevel@tonic-gate 	elem->dip = dip;
31027c478bd9Sstevel@tonic-gate 
31037c478bd9Sstevel@tonic-gate 	if (*list == NULL) {
31047c478bd9Sstevel@tonic-gate 		*list = elem;
31057c478bd9Sstevel@tonic-gate 		return;
31067c478bd9Sstevel@tonic-gate 	}
31077c478bd9Sstevel@tonic-gate 
31087c478bd9Sstevel@tonic-gate 	tail = *list;
31097c478bd9Sstevel@tonic-gate 	while (tail->next)
31107c478bd9Sstevel@tonic-gate 		tail = tail->next;
31117c478bd9Sstevel@tonic-gate 
31127c478bd9Sstevel@tonic-gate 	tail->next = elem;
31137c478bd9Sstevel@tonic-gate }
31147c478bd9Sstevel@tonic-gate 
31157c478bd9Sstevel@tonic-gate /*
31167c478bd9Sstevel@tonic-gate  * The implementation of ddi_walk_devs().
31177c478bd9Sstevel@tonic-gate  */
31187c478bd9Sstevel@tonic-gate static int
31197c478bd9Sstevel@tonic-gate walk_devs(dev_info_t *dip, int (*f)(dev_info_t *, void *), void *arg,
31207c478bd9Sstevel@tonic-gate     int do_locking)
31217c478bd9Sstevel@tonic-gate {
31227c478bd9Sstevel@tonic-gate 	struct walk_elem *head = NULL;
31237c478bd9Sstevel@tonic-gate 
31247c478bd9Sstevel@tonic-gate 	/*
31257c478bd9Sstevel@tonic-gate 	 * Do it in two passes. First pass invoke callback on each
31267c478bd9Sstevel@tonic-gate 	 * dip on the sibling list. Second pass invoke callback on
31277c478bd9Sstevel@tonic-gate 	 * children of each dip.
31287c478bd9Sstevel@tonic-gate 	 */
31297c478bd9Sstevel@tonic-gate 	while (dip) {
31307c478bd9Sstevel@tonic-gate 		switch ((*f)(dip, arg)) {
31317c478bd9Sstevel@tonic-gate 		case DDI_WALK_TERMINATE:
31327c478bd9Sstevel@tonic-gate 			free_list(head);
31337c478bd9Sstevel@tonic-gate 			return (DDI_WALK_TERMINATE);
31347c478bd9Sstevel@tonic-gate 
31357c478bd9Sstevel@tonic-gate 		case DDI_WALK_PRUNESIB:
31367c478bd9Sstevel@tonic-gate 			/* ignore sibling by setting dip to NULL */
31377c478bd9Sstevel@tonic-gate 			append_node(&head, dip);
31387c478bd9Sstevel@tonic-gate 			dip = NULL;
31397c478bd9Sstevel@tonic-gate 			break;
31407c478bd9Sstevel@tonic-gate 
31417c478bd9Sstevel@tonic-gate 		case DDI_WALK_PRUNECHILD:
31427c478bd9Sstevel@tonic-gate 			/* don't worry about children */
31437c478bd9Sstevel@tonic-gate 			dip = ddi_get_next_sibling(dip);
31447c478bd9Sstevel@tonic-gate 			break;
31457c478bd9Sstevel@tonic-gate 
31467c478bd9Sstevel@tonic-gate 		case DDI_WALK_CONTINUE:
31477c478bd9Sstevel@tonic-gate 		default:
31487c478bd9Sstevel@tonic-gate 			append_node(&head, dip);
31497c478bd9Sstevel@tonic-gate 			dip = ddi_get_next_sibling(dip);
31507c478bd9Sstevel@tonic-gate 			break;
31517c478bd9Sstevel@tonic-gate 		}
31527c478bd9Sstevel@tonic-gate 
31537c478bd9Sstevel@tonic-gate 	}
31547c478bd9Sstevel@tonic-gate 
31557c478bd9Sstevel@tonic-gate 	/* second pass */
31567c478bd9Sstevel@tonic-gate 	while (head) {
31577c478bd9Sstevel@tonic-gate 		int circ;
31587c478bd9Sstevel@tonic-gate 		struct walk_elem *next = head->next;
31597c478bd9Sstevel@tonic-gate 
31607c478bd9Sstevel@tonic-gate 		if (do_locking)
31617c478bd9Sstevel@tonic-gate 			ndi_devi_enter(head->dip, &circ);
31627c478bd9Sstevel@tonic-gate 		if (walk_devs(ddi_get_child(head->dip), f, arg, do_locking) ==
31637c478bd9Sstevel@tonic-gate 		    DDI_WALK_TERMINATE) {
31647c478bd9Sstevel@tonic-gate 			if (do_locking)
31657c478bd9Sstevel@tonic-gate 				ndi_devi_exit(head->dip, circ);
31667c478bd9Sstevel@tonic-gate 			free_list(head);
31677c478bd9Sstevel@tonic-gate 			return (DDI_WALK_TERMINATE);
31687c478bd9Sstevel@tonic-gate 		}
31697c478bd9Sstevel@tonic-gate 		if (do_locking)
31707c478bd9Sstevel@tonic-gate 			ndi_devi_exit(head->dip, circ);
31717c478bd9Sstevel@tonic-gate 		kmem_free(head, sizeof (*head));
31727c478bd9Sstevel@tonic-gate 		head = next;
31737c478bd9Sstevel@tonic-gate 	}
31747c478bd9Sstevel@tonic-gate 
31757c478bd9Sstevel@tonic-gate 	return (DDI_WALK_CONTINUE);
31767c478bd9Sstevel@tonic-gate }
31777c478bd9Sstevel@tonic-gate 
31787c478bd9Sstevel@tonic-gate /*
31797c478bd9Sstevel@tonic-gate  * This general-purpose routine traverses the tree of dev_info nodes,
31807c478bd9Sstevel@tonic-gate  * starting from the given node, and calls the given function for each
31817c478bd9Sstevel@tonic-gate  * node that it finds with the current node and the pointer arg (which
31827c478bd9Sstevel@tonic-gate  * can point to a structure of information that the function
31837c478bd9Sstevel@tonic-gate  * needs) as arguments.
31847c478bd9Sstevel@tonic-gate  *
31857c478bd9Sstevel@tonic-gate  * It does the walk a layer at a time, not depth-first. The given function
31867c478bd9Sstevel@tonic-gate  * must return one of the following values:
31877c478bd9Sstevel@tonic-gate  *	DDI_WALK_CONTINUE
31887c478bd9Sstevel@tonic-gate  *	DDI_WALK_PRUNESIB
31897c478bd9Sstevel@tonic-gate  *	DDI_WALK_PRUNECHILD
31907c478bd9Sstevel@tonic-gate  *	DDI_WALK_TERMINATE
31917c478bd9Sstevel@tonic-gate  *
31927c478bd9Sstevel@tonic-gate  * N.B. Since we walk the sibling list, the caller must ensure that
31937c478bd9Sstevel@tonic-gate  *	the parent of dip is held against changes, unless the parent
31947c478bd9Sstevel@tonic-gate  *	is rootnode.  ndi_devi_enter() on the parent is sufficient.
31957c478bd9Sstevel@tonic-gate  *
31967c478bd9Sstevel@tonic-gate  *	To avoid deadlock situations, caller must not attempt to
31977c478bd9Sstevel@tonic-gate  *	configure/unconfigure/remove device node in (*f)(), nor should
31985e3986cbScth  *	it attempt to recurse on other nodes in the system. Any
31995e3986cbScth  *	ndi_devi_enter() done by (*f)() must occur 'at-or-below' the
32005e3986cbScth  *	node entered prior to ddi_walk_devs(). Furthermore, if (*f)()
32015e3986cbScth  *	does any multi-threading (in framework *or* in driver) then the
32025e3986cbScth  *	ndi_devi_enter() calls done by dependent threads must be
32035e3986cbScth  *	'strictly-below'.
32047c478bd9Sstevel@tonic-gate  *
32057c478bd9Sstevel@tonic-gate  *	This is not callable from device autoconfiguration routines.
32067c478bd9Sstevel@tonic-gate  *	They include, but not limited to, _init(9e), _fini(9e), probe(9e),
32077c478bd9Sstevel@tonic-gate  *	attach(9e), and detach(9e).
32087c478bd9Sstevel@tonic-gate  */
32097c478bd9Sstevel@tonic-gate 
32107c478bd9Sstevel@tonic-gate void
32117c478bd9Sstevel@tonic-gate ddi_walk_devs(dev_info_t *dip, int (*f)(dev_info_t *, void *), void *arg)
32127c478bd9Sstevel@tonic-gate {
32137c478bd9Sstevel@tonic-gate 
32147c478bd9Sstevel@tonic-gate 	ASSERT(dip == NULL || ddi_get_parent(dip) == NULL ||
32157c478bd9Sstevel@tonic-gate 		DEVI_BUSY_OWNED(ddi_get_parent(dip)));
32167c478bd9Sstevel@tonic-gate 
32177c478bd9Sstevel@tonic-gate 	(void) walk_devs(dip, f, arg, 1);
32187c478bd9Sstevel@tonic-gate }
32197c478bd9Sstevel@tonic-gate 
32207c478bd9Sstevel@tonic-gate /*
32217c478bd9Sstevel@tonic-gate  * This is a general-purpose routine traverses the per-driver list
32227c478bd9Sstevel@tonic-gate  * and calls the given function for each node. must return one of
32237c478bd9Sstevel@tonic-gate  * the following values:
32247c478bd9Sstevel@tonic-gate  *	DDI_WALK_CONTINUE
32257c478bd9Sstevel@tonic-gate  *	DDI_WALK_TERMINATE
32267c478bd9Sstevel@tonic-gate  *
32277c478bd9Sstevel@tonic-gate  * N.B. The same restrictions from ddi_walk_devs() apply.
32287c478bd9Sstevel@tonic-gate  */
32297c478bd9Sstevel@tonic-gate 
32307c478bd9Sstevel@tonic-gate void
32317c478bd9Sstevel@tonic-gate e_ddi_walk_driver(char *drv, int (*f)(dev_info_t *, void *), void *arg)
32327c478bd9Sstevel@tonic-gate {
32337c478bd9Sstevel@tonic-gate 	major_t major;
32347c478bd9Sstevel@tonic-gate 	struct devnames *dnp;
32357c478bd9Sstevel@tonic-gate 	dev_info_t *dip;
32367c478bd9Sstevel@tonic-gate 
32377c478bd9Sstevel@tonic-gate 	major = ddi_name_to_major(drv);
32387c478bd9Sstevel@tonic-gate 	if (major == (major_t)-1)
32397c478bd9Sstevel@tonic-gate 		return;
32407c478bd9Sstevel@tonic-gate 
32417c478bd9Sstevel@tonic-gate 	dnp = &devnamesp[major];
32427c478bd9Sstevel@tonic-gate 	LOCK_DEV_OPS(&dnp->dn_lock);
32437c478bd9Sstevel@tonic-gate 	dip = dnp->dn_head;
32447c478bd9Sstevel@tonic-gate 	while (dip) {
32457c478bd9Sstevel@tonic-gate 		ndi_hold_devi(dip);
32467c478bd9Sstevel@tonic-gate 		UNLOCK_DEV_OPS(&dnp->dn_lock);
32477c478bd9Sstevel@tonic-gate 		if ((*f)(dip, arg) == DDI_WALK_TERMINATE) {
32487c478bd9Sstevel@tonic-gate 			ndi_rele_devi(dip);
32497c478bd9Sstevel@tonic-gate 			return;
32507c478bd9Sstevel@tonic-gate 		}
32517c478bd9Sstevel@tonic-gate 		LOCK_DEV_OPS(&dnp->dn_lock);
32527c478bd9Sstevel@tonic-gate 		ndi_rele_devi(dip);
32537c478bd9Sstevel@tonic-gate 		dip = ddi_get_next(dip);
32547c478bd9Sstevel@tonic-gate 	}
32557c478bd9Sstevel@tonic-gate 	UNLOCK_DEV_OPS(&dnp->dn_lock);
32567c478bd9Sstevel@tonic-gate }
32577c478bd9Sstevel@tonic-gate 
32587c478bd9Sstevel@tonic-gate /*
32597c478bd9Sstevel@tonic-gate  * argument to i_find_devi, a devinfo node search callback function.
32607c478bd9Sstevel@tonic-gate  */
32617c478bd9Sstevel@tonic-gate struct match_info {
32627c478bd9Sstevel@tonic-gate 	dev_info_t	*dip;		/* result */
32637c478bd9Sstevel@tonic-gate 	char		*nodename;	/* if non-null, nodename must match */
32647c478bd9Sstevel@tonic-gate 	int		instance;	/* if != -1, instance must match */
3265737d277aScth 	int		attached;	/* if != 0, i_ddi_devi_attached() */
32667c478bd9Sstevel@tonic-gate };
32677c478bd9Sstevel@tonic-gate 
32687c478bd9Sstevel@tonic-gate static int
32697c478bd9Sstevel@tonic-gate i_find_devi(dev_info_t *dip, void *arg)
32707c478bd9Sstevel@tonic-gate {
32717c478bd9Sstevel@tonic-gate 	struct match_info *info = (struct match_info *)arg;
32727c478bd9Sstevel@tonic-gate 
32737c478bd9Sstevel@tonic-gate 	if (((info->nodename == NULL) ||
32747c478bd9Sstevel@tonic-gate 		(strcmp(ddi_node_name(dip), info->nodename) == 0)) &&
32757c478bd9Sstevel@tonic-gate 	    ((info->instance == -1) ||
32767c478bd9Sstevel@tonic-gate 		(ddi_get_instance(dip) == info->instance)) &&
3277737d277aScth 	    ((info->attached == 0) || i_ddi_devi_attached(dip))) {
32787c478bd9Sstevel@tonic-gate 		info->dip = dip;
32797c478bd9Sstevel@tonic-gate 		ndi_hold_devi(dip);
32807c478bd9Sstevel@tonic-gate 		return (DDI_WALK_TERMINATE);
32817c478bd9Sstevel@tonic-gate 	}
32827c478bd9Sstevel@tonic-gate 
32837c478bd9Sstevel@tonic-gate 	return (DDI_WALK_CONTINUE);
32847c478bd9Sstevel@tonic-gate }
32857c478bd9Sstevel@tonic-gate 
32867c478bd9Sstevel@tonic-gate /*
32877c478bd9Sstevel@tonic-gate  * Find dip with a known node name and instance and return with it held
32887c478bd9Sstevel@tonic-gate  */
32897c478bd9Sstevel@tonic-gate dev_info_t *
32907c478bd9Sstevel@tonic-gate ddi_find_devinfo(char *nodename, int instance, int attached)
32917c478bd9Sstevel@tonic-gate {
32927c478bd9Sstevel@tonic-gate 	struct match_info	info;
32937c478bd9Sstevel@tonic-gate 
32947c478bd9Sstevel@tonic-gate 	info.nodename = nodename;
32957c478bd9Sstevel@tonic-gate 	info.instance = instance;
32967c478bd9Sstevel@tonic-gate 	info.attached = attached;
32977c478bd9Sstevel@tonic-gate 	info.dip = NULL;
32987c478bd9Sstevel@tonic-gate 
32997c478bd9Sstevel@tonic-gate 	ddi_walk_devs(ddi_root_node(), i_find_devi, &info);
33007c478bd9Sstevel@tonic-gate 	return (info.dip);
33017c478bd9Sstevel@tonic-gate }
33027c478bd9Sstevel@tonic-gate 
33037c478bd9Sstevel@tonic-gate /*
33047c478bd9Sstevel@tonic-gate  * Parse for name, addr, and minor names. Some args may be NULL.
33057c478bd9Sstevel@tonic-gate  */
33067c478bd9Sstevel@tonic-gate void
33077c478bd9Sstevel@tonic-gate i_ddi_parse_name(char *name, char **nodename, char **addrname, char **minorname)
33087c478bd9Sstevel@tonic-gate {
33097c478bd9Sstevel@tonic-gate 	char *cp;
33107c478bd9Sstevel@tonic-gate 	static char nulladdrname[] = "";
33117c478bd9Sstevel@tonic-gate 
33127c478bd9Sstevel@tonic-gate 	/* default values */
33137c478bd9Sstevel@tonic-gate 	if (nodename)
33147c478bd9Sstevel@tonic-gate 		*nodename = name;
33157c478bd9Sstevel@tonic-gate 	if (addrname)
33167c478bd9Sstevel@tonic-gate 		*addrname = nulladdrname;
33177c478bd9Sstevel@tonic-gate 	if (minorname)
33187c478bd9Sstevel@tonic-gate 		*minorname = NULL;
33197c478bd9Sstevel@tonic-gate 
33207c478bd9Sstevel@tonic-gate 	cp = name;
33217c478bd9Sstevel@tonic-gate 	while (*cp != '\0') {
33227c478bd9Sstevel@tonic-gate 		if (addrname && *cp == '@') {
33237c478bd9Sstevel@tonic-gate 			*addrname = cp + 1;
33247c478bd9Sstevel@tonic-gate 			*cp = '\0';
33257c478bd9Sstevel@tonic-gate 		} else if (minorname && *cp == ':') {
33267c478bd9Sstevel@tonic-gate 			*minorname = cp + 1;
33277c478bd9Sstevel@tonic-gate 			*cp = '\0';
33287c478bd9Sstevel@tonic-gate 		}
33297c478bd9Sstevel@tonic-gate 		++cp;
33307c478bd9Sstevel@tonic-gate 	}
33317c478bd9Sstevel@tonic-gate }
33327c478bd9Sstevel@tonic-gate 
33337c478bd9Sstevel@tonic-gate static char *
33347c478bd9Sstevel@tonic-gate child_path_to_driver(dev_info_t *parent, char *child_name, char *unit_address)
33357c478bd9Sstevel@tonic-gate {
33367c478bd9Sstevel@tonic-gate 	char *p, *drvname = NULL;
33377c478bd9Sstevel@tonic-gate 	major_t maj;
33387c478bd9Sstevel@tonic-gate 
33397c478bd9Sstevel@tonic-gate 	/*
33407c478bd9Sstevel@tonic-gate 	 * Construct the pathname and ask the implementation
33417c478bd9Sstevel@tonic-gate 	 * if it can do a driver = f(pathname) for us, if not
33427c478bd9Sstevel@tonic-gate 	 * we'll just default to using the node-name that
33437c478bd9Sstevel@tonic-gate 	 * was given to us.  We want to do this first to
33447c478bd9Sstevel@tonic-gate 	 * allow the platform to use 'generic' names for
33457c478bd9Sstevel@tonic-gate 	 * legacy device drivers.
33467c478bd9Sstevel@tonic-gate 	 */
33477c478bd9Sstevel@tonic-gate 	p = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
33487c478bd9Sstevel@tonic-gate 	(void) ddi_pathname(parent, p);
33497c478bd9Sstevel@tonic-gate 	(void) strcat(p, "/");
33507c478bd9Sstevel@tonic-gate 	(void) strcat(p, child_name);
33517c478bd9Sstevel@tonic-gate 	if (unit_address && *unit_address) {
33527c478bd9Sstevel@tonic-gate 		(void) strcat(p, "@");
33537c478bd9Sstevel@tonic-gate 		(void) strcat(p, unit_address);
33547c478bd9Sstevel@tonic-gate 	}
33557c478bd9Sstevel@tonic-gate 
33567c478bd9Sstevel@tonic-gate 	/*
33577c478bd9Sstevel@tonic-gate 	 * Get the binding. If there is none, return the child_name
33587c478bd9Sstevel@tonic-gate 	 * and let the caller deal with it.
33597c478bd9Sstevel@tonic-gate 	 */
33607c478bd9Sstevel@tonic-gate 	maj = path_to_major(p);
33617c478bd9Sstevel@tonic-gate 
33627c478bd9Sstevel@tonic-gate 	kmem_free(p, MAXPATHLEN);
33637c478bd9Sstevel@tonic-gate 
33647c478bd9Sstevel@tonic-gate 	if (maj != (major_t)-1)
33657c478bd9Sstevel@tonic-gate 		drvname = ddi_major_to_name(maj);
33667c478bd9Sstevel@tonic-gate 	if (drvname == NULL)
33677c478bd9Sstevel@tonic-gate 		drvname = child_name;
33687c478bd9Sstevel@tonic-gate 
33697c478bd9Sstevel@tonic-gate 	return (drvname);
33707c478bd9Sstevel@tonic-gate }
33717c478bd9Sstevel@tonic-gate 
33727c478bd9Sstevel@tonic-gate 
33737c478bd9Sstevel@tonic-gate /*
33747c478bd9Sstevel@tonic-gate  * Given the pathname of a device, fill in the dev_info_t value and/or the
33757c478bd9Sstevel@tonic-gate  * dev_t value and/or the spectype, depending on which parameters are non-NULL.
33767c478bd9Sstevel@tonic-gate  * If there is an error, this function returns -1.
33777c478bd9Sstevel@tonic-gate  *
33787c478bd9Sstevel@tonic-gate  * NOTE: If this function returns the dev_info_t structure, then it
33797c478bd9Sstevel@tonic-gate  * does so with a hold on the devi. Caller should ensure that they get
33807c478bd9Sstevel@tonic-gate  * decremented via ddi_release_devi() or ndi_rele_devi();
33817c478bd9Sstevel@tonic-gate  *
33827c478bd9Sstevel@tonic-gate  * This function can be invoked in the boot case for a pathname without
33837c478bd9Sstevel@tonic-gate  * device argument (:xxxx), traditionally treated as a minor name.
33847c478bd9Sstevel@tonic-gate  * In this case, we do the following
33857c478bd9Sstevel@tonic-gate  * (1) search the minor node of type DDM_DEFAULT.
33867c478bd9Sstevel@tonic-gate  * (2) if no DDM_DEFAULT minor exists, then the first non-alias minor is chosen.
33877c478bd9Sstevel@tonic-gate  * (3) if neither exists, a dev_t is faked with minor number = instance.
33887c478bd9Sstevel@tonic-gate  * As of S9 FCS, no instance of #1 exists. #2 is used by several platforms
33897c478bd9Sstevel@tonic-gate  * to default the boot partition to :a possibly by other OBP definitions.
33907c478bd9Sstevel@tonic-gate  * #3 is used for booting off network interfaces, most SPARC network
33917c478bd9Sstevel@tonic-gate  * drivers support Style-2 only, so only DDM_ALIAS minor exists.
33927c478bd9Sstevel@tonic-gate  *
33937c478bd9Sstevel@tonic-gate  * It is possible for OBP to present device args at the end of the path as
33947c478bd9Sstevel@tonic-gate  * well as in the middle. For example, with IB the following strings are
33957c478bd9Sstevel@tonic-gate  * valid boot paths.
33967c478bd9Sstevel@tonic-gate  *	a /pci@8,700000/ib@1,2:port=1,pkey=ff,dhcp,...
33977c478bd9Sstevel@tonic-gate  *	b /pci@8,700000/ib@1,1:port=1/ioc@xxxxxx,yyyyyyy:dhcp
33987c478bd9Sstevel@tonic-gate  * Case (a), we first look for minor node "port=1,pkey...".
33997c478bd9Sstevel@tonic-gate  * Failing that, we will pass "port=1,pkey..." to the bus_config
34007c478bd9Sstevel@tonic-gate  * entry point of ib (HCA) driver.
34017c478bd9Sstevel@tonic-gate  * Case (b), configure ib@1,1 as usual. Then invoke ib's bus_config
34027c478bd9Sstevel@tonic-gate  * with argument "ioc@xxxxxxx,yyyyyyy:port=1". After configuring
34037c478bd9Sstevel@tonic-gate  * the ioc, look for minor node dhcp. If not found, pass ":dhcp"
34047c478bd9Sstevel@tonic-gate  * to ioc's bus_config entry point.
34057c478bd9Sstevel@tonic-gate  */
34067c478bd9Sstevel@tonic-gate int
34077c478bd9Sstevel@tonic-gate resolve_pathname(char *pathname,
34087c478bd9Sstevel@tonic-gate 	dev_info_t **dipp, dev_t *devtp, int *spectypep)
34097c478bd9Sstevel@tonic-gate {
34107c478bd9Sstevel@tonic-gate 	int error;
34117c478bd9Sstevel@tonic-gate 	dev_info_t *parent, *child;
34127c478bd9Sstevel@tonic-gate 	struct pathname pn;
34137c478bd9Sstevel@tonic-gate 	char *component, *config_name;
34147c478bd9Sstevel@tonic-gate 	char *minorname = NULL;
34157c478bd9Sstevel@tonic-gate 	char *prev_minor = NULL;
34167c478bd9Sstevel@tonic-gate 	dev_t devt = NODEV;
34177c478bd9Sstevel@tonic-gate 	int spectype;
34187c478bd9Sstevel@tonic-gate 	struct ddi_minor_data *dmn;
34197c478bd9Sstevel@tonic-gate 
34207c478bd9Sstevel@tonic-gate 	if (*pathname != '/')
34217c478bd9Sstevel@tonic-gate 		return (EINVAL);
34227c478bd9Sstevel@tonic-gate 	parent = ddi_root_node();	/* Begin at the top of the tree */
34237c478bd9Sstevel@tonic-gate 
34247c478bd9Sstevel@tonic-gate 	if (error = pn_get(pathname, UIO_SYSSPACE, &pn))
34257c478bd9Sstevel@tonic-gate 		return (error);
34267c478bd9Sstevel@tonic-gate 	pn_skipslash(&pn);
34277c478bd9Sstevel@tonic-gate 
3428737d277aScth 	ASSERT(i_ddi_devi_attached(parent));
34297c478bd9Sstevel@tonic-gate 	ndi_hold_devi(parent);
34307c478bd9Sstevel@tonic-gate 
34317c478bd9Sstevel@tonic-gate 	component = kmem_alloc(MAXNAMELEN, KM_SLEEP);
34327c478bd9Sstevel@tonic-gate 	config_name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
34337c478bd9Sstevel@tonic-gate 
34347c478bd9Sstevel@tonic-gate 	while (pn_pathleft(&pn)) {
34357c478bd9Sstevel@tonic-gate 		/* remember prev minor (:xxx) in the middle of path */
34367c478bd9Sstevel@tonic-gate 		if (minorname)
34377c478bd9Sstevel@tonic-gate 			prev_minor = i_ddi_strdup(minorname, KM_SLEEP);
34387c478bd9Sstevel@tonic-gate 
34397c478bd9Sstevel@tonic-gate 		/* Get component and chop off minorname */
34407c478bd9Sstevel@tonic-gate 		(void) pn_getcomponent(&pn, component);
34417c478bd9Sstevel@tonic-gate 		i_ddi_parse_name(component, NULL, NULL, &minorname);
34427c478bd9Sstevel@tonic-gate 
34437c478bd9Sstevel@tonic-gate 		if (prev_minor == NULL) {
34447c478bd9Sstevel@tonic-gate 			(void) snprintf(config_name, MAXNAMELEN, "%s",
34457c478bd9Sstevel@tonic-gate 			    component);
34467c478bd9Sstevel@tonic-gate 		} else {
34477c478bd9Sstevel@tonic-gate 			(void) snprintf(config_name, MAXNAMELEN, "%s:%s",
34487c478bd9Sstevel@tonic-gate 			    component, prev_minor);
34497c478bd9Sstevel@tonic-gate 			kmem_free(prev_minor, strlen(prev_minor) + 1);
34507c478bd9Sstevel@tonic-gate 			prev_minor = NULL;
34517c478bd9Sstevel@tonic-gate 		}
34527c478bd9Sstevel@tonic-gate 
34537c478bd9Sstevel@tonic-gate 		/*
34547c478bd9Sstevel@tonic-gate 		 * Find and configure the child
34557c478bd9Sstevel@tonic-gate 		 */
34567c478bd9Sstevel@tonic-gate 		if (ndi_devi_config_one(parent, config_name, &child,
34577c478bd9Sstevel@tonic-gate 		    NDI_PROMNAME | NDI_NO_EVENT) != NDI_SUCCESS) {
34587c478bd9Sstevel@tonic-gate 			ndi_rele_devi(parent);
34597c478bd9Sstevel@tonic-gate 			pn_free(&pn);
34607c478bd9Sstevel@tonic-gate 			kmem_free(component, MAXNAMELEN);
34617c478bd9Sstevel@tonic-gate 			kmem_free(config_name, MAXNAMELEN);
34627c478bd9Sstevel@tonic-gate 			return (-1);
34637c478bd9Sstevel@tonic-gate 		}
34647c478bd9Sstevel@tonic-gate 
3465737d277aScth 		ASSERT(i_ddi_devi_attached(child));
34667c478bd9Sstevel@tonic-gate 		ndi_rele_devi(parent);
34677c478bd9Sstevel@tonic-gate 		parent = child;
34687c478bd9Sstevel@tonic-gate 		pn_skipslash(&pn);
34697c478bd9Sstevel@tonic-gate 	}
34707c478bd9Sstevel@tonic-gate 
34717c478bd9Sstevel@tonic-gate 	/*
34727c478bd9Sstevel@tonic-gate 	 * First look for a minor node matching minorname.
34737c478bd9Sstevel@tonic-gate 	 * Failing that, try to pass minorname to bus_config().
34747c478bd9Sstevel@tonic-gate 	 */
34757c478bd9Sstevel@tonic-gate 	if (minorname && i_ddi_minorname_to_devtspectype(parent,
34767c478bd9Sstevel@tonic-gate 	    minorname, &devt, &spectype) == DDI_FAILURE) {
34777c478bd9Sstevel@tonic-gate 		(void) snprintf(config_name, MAXNAMELEN, "%s", minorname);
34787c478bd9Sstevel@tonic-gate 		if (ndi_devi_config_obp_args(parent,
34797c478bd9Sstevel@tonic-gate 		    config_name, &child, 0) != NDI_SUCCESS) {
34807c478bd9Sstevel@tonic-gate 			ndi_rele_devi(parent);
34817c478bd9Sstevel@tonic-gate 			pn_free(&pn);
34827c478bd9Sstevel@tonic-gate 			kmem_free(component, MAXNAMELEN);
34837c478bd9Sstevel@tonic-gate 			kmem_free(config_name, MAXNAMELEN);
34847c478bd9Sstevel@tonic-gate 			NDI_CONFIG_DEBUG((CE_NOTE,
34857c478bd9Sstevel@tonic-gate 			    "%s: minor node not found\n", pathname));
34867c478bd9Sstevel@tonic-gate 			return (-1);
34877c478bd9Sstevel@tonic-gate 		}
34887c478bd9Sstevel@tonic-gate 		minorname = NULL;	/* look for default minor */
3489737d277aScth 		ASSERT(i_ddi_devi_attached(child));
34907c478bd9Sstevel@tonic-gate 		ndi_rele_devi(parent);
34917c478bd9Sstevel@tonic-gate 		parent = child;
34927c478bd9Sstevel@tonic-gate 	}
34937c478bd9Sstevel@tonic-gate 
34947c478bd9Sstevel@tonic-gate 	if (devtp || spectypep) {
34957c478bd9Sstevel@tonic-gate 		if (minorname == NULL) {
34967c478bd9Sstevel@tonic-gate 			/* search for a default entry */
34977c478bd9Sstevel@tonic-gate 			mutex_enter(&(DEVI(parent)->devi_lock));
34987c478bd9Sstevel@tonic-gate 			for (dmn = DEVI(parent)->devi_minor; dmn;
34997c478bd9Sstevel@tonic-gate 			    dmn = dmn->next) {
35007c478bd9Sstevel@tonic-gate 				if (dmn->type == DDM_DEFAULT) {
35017c478bd9Sstevel@tonic-gate 					devt = dmn->ddm_dev;
35027c478bd9Sstevel@tonic-gate 					spectype = dmn->ddm_spec_type;
35037c478bd9Sstevel@tonic-gate 					break;
35047c478bd9Sstevel@tonic-gate 				}
35057c478bd9Sstevel@tonic-gate 			}
35067c478bd9Sstevel@tonic-gate 
35077c478bd9Sstevel@tonic-gate 			if (devt == NODEV) {
35087c478bd9Sstevel@tonic-gate 				/*
35097c478bd9Sstevel@tonic-gate 				 * No default minor node, try the first one;
35107c478bd9Sstevel@tonic-gate 				 * else, assume 1-1 instance-minor mapping
35117c478bd9Sstevel@tonic-gate 				 */
35127c478bd9Sstevel@tonic-gate 				dmn = DEVI(parent)->devi_minor;
35137c478bd9Sstevel@tonic-gate 				if (dmn && ((dmn->type == DDM_MINOR) ||
35147c478bd9Sstevel@tonic-gate 				    (dmn->type == DDM_INTERNAL_PATH))) {
35157c478bd9Sstevel@tonic-gate 					devt = dmn->ddm_dev;
35167c478bd9Sstevel@tonic-gate 					spectype = dmn->ddm_spec_type;
35177c478bd9Sstevel@tonic-gate 				} else {
35187c478bd9Sstevel@tonic-gate 					devt = makedevice(
35197c478bd9Sstevel@tonic-gate 					    DEVI(parent)->devi_major,
35207c478bd9Sstevel@tonic-gate 					    ddi_get_instance(parent));
35217c478bd9Sstevel@tonic-gate 					spectype = S_IFCHR;
35227c478bd9Sstevel@tonic-gate 				}
35237c478bd9Sstevel@tonic-gate 			}
35247c478bd9Sstevel@tonic-gate 			mutex_exit(&(DEVI(parent)->devi_lock));
35257c478bd9Sstevel@tonic-gate 		}
35267c478bd9Sstevel@tonic-gate 		if (devtp)
35277c478bd9Sstevel@tonic-gate 			*devtp = devt;
35287c478bd9Sstevel@tonic-gate 		if (spectypep)
35297c478bd9Sstevel@tonic-gate 			*spectypep = spectype;
35307c478bd9Sstevel@tonic-gate 	}
35317c478bd9Sstevel@tonic-gate 
35327c478bd9Sstevel@tonic-gate 	pn_free(&pn);
35337c478bd9Sstevel@tonic-gate 	kmem_free(component, MAXNAMELEN);
35347c478bd9Sstevel@tonic-gate 	kmem_free(config_name, MAXNAMELEN);
35357c478bd9Sstevel@tonic-gate 
35367c478bd9Sstevel@tonic-gate 	/*
35377c478bd9Sstevel@tonic-gate 	 * If there is no error, return the appropriate parameters
35387c478bd9Sstevel@tonic-gate 	 */
35397c478bd9Sstevel@tonic-gate 	if (dipp != NULL)
35407c478bd9Sstevel@tonic-gate 		*dipp = parent;
35417c478bd9Sstevel@tonic-gate 	else {
35427c478bd9Sstevel@tonic-gate 		/*
35437c478bd9Sstevel@tonic-gate 		 * We should really keep the ref count to keep the node from
35447c478bd9Sstevel@tonic-gate 		 * detaching but ddi_pathname_to_dev_t() specifies a NULL dipp,
35457c478bd9Sstevel@tonic-gate 		 * so we have no way of passing back the held dip.  Not holding
35467c478bd9Sstevel@tonic-gate 		 * the dip allows detaches to occur - which can cause problems
35477c478bd9Sstevel@tonic-gate 		 * for subsystems which call ddi_pathname_to_dev_t (console).
35487c478bd9Sstevel@tonic-gate 		 *
35497c478bd9Sstevel@tonic-gate 		 * Instead of holding the dip, we place a ddi-no-autodetach
35507c478bd9Sstevel@tonic-gate 		 * property on the node to prevent auto detaching.
35517c478bd9Sstevel@tonic-gate 		 *
35527c478bd9Sstevel@tonic-gate 		 * The right fix is to remove ddi_pathname_to_dev_t and replace
35537c478bd9Sstevel@tonic-gate 		 * it, and all references, with a call that specifies a dipp.
35547c478bd9Sstevel@tonic-gate 		 * In addition, the callers of this new interfaces would then
35557c478bd9Sstevel@tonic-gate 		 * need to call ndi_rele_devi when the reference is complete.
35567c478bd9Sstevel@tonic-gate 		 */
35577c478bd9Sstevel@tonic-gate 		(void) ddi_prop_update_int(DDI_DEV_T_NONE, parent,
35587c478bd9Sstevel@tonic-gate 		    DDI_NO_AUTODETACH, 1);
35597c478bd9Sstevel@tonic-gate 		ndi_rele_devi(parent);
35607c478bd9Sstevel@tonic-gate 	}
35617c478bd9Sstevel@tonic-gate 
35627c478bd9Sstevel@tonic-gate 	return (0);
35637c478bd9Sstevel@tonic-gate }
35647c478bd9Sstevel@tonic-gate 
35657c478bd9Sstevel@tonic-gate /*
35667c478bd9Sstevel@tonic-gate  * Given the pathname of a device, return the dev_t of the corresponding
35677c478bd9Sstevel@tonic-gate  * device.  Returns NODEV on failure.
35687c478bd9Sstevel@tonic-gate  *
35697c478bd9Sstevel@tonic-gate  * Note that this call sets the DDI_NO_AUTODETACH property on the devinfo node.
35707c478bd9Sstevel@tonic-gate  */
35717c478bd9Sstevel@tonic-gate dev_t
35727c478bd9Sstevel@tonic-gate ddi_pathname_to_dev_t(char *pathname)
35737c478bd9Sstevel@tonic-gate {
35747c478bd9Sstevel@tonic-gate 	dev_t devt;
35757c478bd9Sstevel@tonic-gate 	int error;
35767c478bd9Sstevel@tonic-gate 
35777c478bd9Sstevel@tonic-gate 	error = resolve_pathname(pathname, NULL, &devt, NULL);
35787c478bd9Sstevel@tonic-gate 
35797c478bd9Sstevel@tonic-gate 	return (error ? NODEV : devt);
35807c478bd9Sstevel@tonic-gate }
35817c478bd9Sstevel@tonic-gate 
35827c478bd9Sstevel@tonic-gate /*
35837c478bd9Sstevel@tonic-gate  * Translate a prom pathname to kernel devfs pathname.
35847c478bd9Sstevel@tonic-gate  * Caller is assumed to allocate devfspath memory of
35857c478bd9Sstevel@tonic-gate  * size at least MAXPATHLEN
35867c478bd9Sstevel@tonic-gate  *
35877c478bd9Sstevel@tonic-gate  * The prom pathname may not include minor name, but
35887c478bd9Sstevel@tonic-gate  * devfs pathname has a minor name portion.
35897c478bd9Sstevel@tonic-gate  */
35907c478bd9Sstevel@tonic-gate int
35917c478bd9Sstevel@tonic-gate i_ddi_prompath_to_devfspath(char *prompath, char *devfspath)
35927c478bd9Sstevel@tonic-gate {
35937c478bd9Sstevel@tonic-gate 	dev_t		devt = (dev_t)NODEV;
35947c478bd9Sstevel@tonic-gate 	dev_info_t	*dip = NULL;
35957c478bd9Sstevel@tonic-gate 	char		*minor_name = NULL;
35967c478bd9Sstevel@tonic-gate 	int		spectype;
35977c478bd9Sstevel@tonic-gate 	int		error;
35987c478bd9Sstevel@tonic-gate 
35997c478bd9Sstevel@tonic-gate 	error = resolve_pathname(prompath, &dip, &devt, &spectype);
36007c478bd9Sstevel@tonic-gate 	if (error)
36017c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
36027c478bd9Sstevel@tonic-gate 	ASSERT(dip && devt != NODEV);
36037c478bd9Sstevel@tonic-gate 
36047c478bd9Sstevel@tonic-gate 	/*
36057c478bd9Sstevel@tonic-gate 	 * Get in-kernel devfs pathname
36067c478bd9Sstevel@tonic-gate 	 */
36077c478bd9Sstevel@tonic-gate 	(void) ddi_pathname(dip, devfspath);
36087c478bd9Sstevel@tonic-gate 
36097c478bd9Sstevel@tonic-gate 	mutex_enter(&(DEVI(dip)->devi_lock));
36107c478bd9Sstevel@tonic-gate 	minor_name = i_ddi_devtspectype_to_minorname(dip, devt, spectype);
36117c478bd9Sstevel@tonic-gate 	if (minor_name) {
36127c478bd9Sstevel@tonic-gate 		(void) strcat(devfspath, ":");
36137c478bd9Sstevel@tonic-gate 		(void) strcat(devfspath, minor_name);
36147c478bd9Sstevel@tonic-gate 	} else {
36157c478bd9Sstevel@tonic-gate 		/*
36167c478bd9Sstevel@tonic-gate 		 * If minor_name is NULL, we have an alias minor node.
36177c478bd9Sstevel@tonic-gate 		 * So manufacture a path to the corresponding clone minor.
36187c478bd9Sstevel@tonic-gate 		 */
36197c478bd9Sstevel@tonic-gate 		(void) snprintf(devfspath, MAXPATHLEN, "%s:%s",
36207c478bd9Sstevel@tonic-gate 		    CLONE_PATH, ddi_driver_name(dip));
36217c478bd9Sstevel@tonic-gate 	}
36227c478bd9Sstevel@tonic-gate 	mutex_exit(&(DEVI(dip)->devi_lock));
36237c478bd9Sstevel@tonic-gate 
36247c478bd9Sstevel@tonic-gate 	/* release hold from resolve_pathname() */
36257c478bd9Sstevel@tonic-gate 	ndi_rele_devi(dip);
36267c478bd9Sstevel@tonic-gate 	return (0);
36277c478bd9Sstevel@tonic-gate }
36287c478bd9Sstevel@tonic-gate 
36297c478bd9Sstevel@tonic-gate /*
36307c478bd9Sstevel@tonic-gate  * Reset all the pure leaf drivers on the system at halt time
36317c478bd9Sstevel@tonic-gate  */
36327c478bd9Sstevel@tonic-gate static int
36337c478bd9Sstevel@tonic-gate reset_leaf_device(dev_info_t *dip, void *arg)
36347c478bd9Sstevel@tonic-gate {
36357c478bd9Sstevel@tonic-gate 	_NOTE(ARGUNUSED(arg))
36367c478bd9Sstevel@tonic-gate 	struct dev_ops *ops;
36377c478bd9Sstevel@tonic-gate 
36387c478bd9Sstevel@tonic-gate 	/* if the device doesn't need to be reset then there's nothing to do */
36397c478bd9Sstevel@tonic-gate 	if (!DEVI_NEED_RESET(dip))
36407c478bd9Sstevel@tonic-gate 		return (DDI_WALK_CONTINUE);
36417c478bd9Sstevel@tonic-gate 
36427c478bd9Sstevel@tonic-gate 	/*
36437c478bd9Sstevel@tonic-gate 	 * if the device isn't a char/block device or doesn't have a
36447c478bd9Sstevel@tonic-gate 	 * reset entry point then there's nothing to do.
36457c478bd9Sstevel@tonic-gate 	 */
36467c478bd9Sstevel@tonic-gate 	ops = ddi_get_driver(dip);
36477c478bd9Sstevel@tonic-gate 	if ((ops == NULL) || (ops->devo_cb_ops == NULL) ||
36487c478bd9Sstevel@tonic-gate 	    (ops->devo_reset == nodev) || (ops->devo_reset == nulldev) ||
36497c478bd9Sstevel@tonic-gate 	    (ops->devo_reset == NULL))
36507c478bd9Sstevel@tonic-gate 		return (DDI_WALK_CONTINUE);
36517c478bd9Sstevel@tonic-gate 
36527c478bd9Sstevel@tonic-gate 	if (DEVI_IS_ATTACHING(dip) || DEVI_IS_DETACHING(dip)) {
36537c478bd9Sstevel@tonic-gate 		static char path[MAXPATHLEN];
36547c478bd9Sstevel@tonic-gate 
36557c478bd9Sstevel@tonic-gate 		/*
36567c478bd9Sstevel@tonic-gate 		 * bad news, this device has blocked in it's attach or
36577c478bd9Sstevel@tonic-gate 		 * detach routine, which means it not safe to call it's
36587c478bd9Sstevel@tonic-gate 		 * devo_reset() entry point.
36597c478bd9Sstevel@tonic-gate 		 */
36607c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "unable to reset device: %s",
36617c478bd9Sstevel@tonic-gate 		    ddi_pathname(dip, path));
36627c478bd9Sstevel@tonic-gate 		return (DDI_WALK_CONTINUE);
36637c478bd9Sstevel@tonic-gate 	}
36647c478bd9Sstevel@tonic-gate 
36657c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_NOTE, "resetting %s%d\n",
36667c478bd9Sstevel@tonic-gate 		ddi_driver_name(dip), ddi_get_instance(dip)));
36677c478bd9Sstevel@tonic-gate 
36687c478bd9Sstevel@tonic-gate 	(void) devi_reset(dip, DDI_RESET_FORCE);
36697c478bd9Sstevel@tonic-gate 	return (DDI_WALK_CONTINUE);
36707c478bd9Sstevel@tonic-gate }
36717c478bd9Sstevel@tonic-gate 
36727c478bd9Sstevel@tonic-gate void
36737c478bd9Sstevel@tonic-gate reset_leaves(void)
36747c478bd9Sstevel@tonic-gate {
36757c478bd9Sstevel@tonic-gate 	/*
36767c478bd9Sstevel@tonic-gate 	 * if we're reached here, the device tree better not be changing.
36777c478bd9Sstevel@tonic-gate 	 * so either devinfo_freeze better be set or we better be panicing.
36787c478bd9Sstevel@tonic-gate 	 */
36797c478bd9Sstevel@tonic-gate 	ASSERT(devinfo_freeze || panicstr);
36807c478bd9Sstevel@tonic-gate 
36817c478bd9Sstevel@tonic-gate 	(void) walk_devs(top_devinfo, reset_leaf_device, NULL, 0);
36827c478bd9Sstevel@tonic-gate }
36837c478bd9Sstevel@tonic-gate 
36847c478bd9Sstevel@tonic-gate /*
36857c478bd9Sstevel@tonic-gate  * devtree_freeze() must be called before reset_leaves() during a
36867c478bd9Sstevel@tonic-gate  * normal system shutdown.  It attempts to ensure that there are no
36877c478bd9Sstevel@tonic-gate  * outstanding attach or detach operations in progress when reset_leaves()
36887c478bd9Sstevel@tonic-gate  * is invoked.  It must be called before the system becomes single-threaded
36897c478bd9Sstevel@tonic-gate  * because device attach and detach are multi-threaded operations.  (note
36907c478bd9Sstevel@tonic-gate  * that during system shutdown the system doesn't actually become
36917c478bd9Sstevel@tonic-gate  * single-thread since other threads still exist, but the shutdown thread
36927c478bd9Sstevel@tonic-gate  * will disable preemption for itself, raise it's pil, and stop all the
36937c478bd9Sstevel@tonic-gate  * other cpus in the system there by effectively making the system
36947c478bd9Sstevel@tonic-gate  * single-threaded.)
36957c478bd9Sstevel@tonic-gate  */
36967c478bd9Sstevel@tonic-gate void
36977c478bd9Sstevel@tonic-gate devtree_freeze(void)
36987c478bd9Sstevel@tonic-gate {
36997c478bd9Sstevel@tonic-gate 	int delayed = 0;
37007c478bd9Sstevel@tonic-gate 
37017c478bd9Sstevel@tonic-gate 	/* if we're panicing then the device tree isn't going to be changing */
37027c478bd9Sstevel@tonic-gate 	if (panicstr)
37037c478bd9Sstevel@tonic-gate 		return;
37047c478bd9Sstevel@tonic-gate 
37057c478bd9Sstevel@tonic-gate 	/* stop all dev_info state changes in the device tree */
37067c478bd9Sstevel@tonic-gate 	devinfo_freeze = gethrtime();
37077c478bd9Sstevel@tonic-gate 
37087c478bd9Sstevel@tonic-gate 	/*
37097c478bd9Sstevel@tonic-gate 	 * if we're not panicing and there are on-going attach or detach
37107c478bd9Sstevel@tonic-gate 	 * operations, wait for up to 3 seconds for them to finish.  This
37117c478bd9Sstevel@tonic-gate 	 * is a randomly chosen interval but this should be ok because:
37127c478bd9Sstevel@tonic-gate 	 * - 3 seconds is very small relative to the deadman timer.
37137c478bd9Sstevel@tonic-gate 	 * - normal attach and detach operations should be very quick.
37147c478bd9Sstevel@tonic-gate 	 * - attach and detach operations are fairly rare.
37157c478bd9Sstevel@tonic-gate 	 */
37167c478bd9Sstevel@tonic-gate 	while (!panicstr && atomic_add_long_nv(&devinfo_attach_detach, 0) &&
37177c478bd9Sstevel@tonic-gate 	    (delayed < 3)) {
37187c478bd9Sstevel@tonic-gate 		delayed += 1;
37197c478bd9Sstevel@tonic-gate 
37207c478bd9Sstevel@tonic-gate 		/* do a sleeping wait for one second */
37217c478bd9Sstevel@tonic-gate 		ASSERT(!servicing_interrupt());
37227c478bd9Sstevel@tonic-gate 		delay(drv_usectohz(MICROSEC));
37237c478bd9Sstevel@tonic-gate 	}
37247c478bd9Sstevel@tonic-gate }
37257c478bd9Sstevel@tonic-gate 
37267c478bd9Sstevel@tonic-gate static int
37277c478bd9Sstevel@tonic-gate bind_dip(dev_info_t *dip, void *arg)
37287c478bd9Sstevel@tonic-gate {
37297c478bd9Sstevel@tonic-gate 	_NOTE(ARGUNUSED(arg))
37307c478bd9Sstevel@tonic-gate 	if (i_ddi_node_state(dip) < DS_BOUND)
37317c478bd9Sstevel@tonic-gate 		(void) ndi_devi_bind_driver(dip, 0);
37327c478bd9Sstevel@tonic-gate 
37337c478bd9Sstevel@tonic-gate 	return (DDI_WALK_CONTINUE);
37347c478bd9Sstevel@tonic-gate }
37357c478bd9Sstevel@tonic-gate 
37367c478bd9Sstevel@tonic-gate void
37377c478bd9Sstevel@tonic-gate i_ddi_bind_devs(void)
37387c478bd9Sstevel@tonic-gate {
37397c478bd9Sstevel@tonic-gate 	ddi_walk_devs(top_devinfo, bind_dip, (void *)NULL);
37407c478bd9Sstevel@tonic-gate }
37417c478bd9Sstevel@tonic-gate 
37427c478bd9Sstevel@tonic-gate static int
37437c478bd9Sstevel@tonic-gate unbind_children(dev_info_t *dip, void *arg)
37447c478bd9Sstevel@tonic-gate {
37457c478bd9Sstevel@tonic-gate 	int circ;
37467c478bd9Sstevel@tonic-gate 	dev_info_t *cdip;
37477c478bd9Sstevel@tonic-gate 	major_t major = (major_t)(uintptr_t)arg;
37487c478bd9Sstevel@tonic-gate 
37497c478bd9Sstevel@tonic-gate 	ndi_devi_enter(dip, &circ);
37507c478bd9Sstevel@tonic-gate 	cdip = ddi_get_child(dip);
37517c478bd9Sstevel@tonic-gate 	/*
37527c478bd9Sstevel@tonic-gate 	 * We are called either from rem_drv or update_drv.
37537c478bd9Sstevel@tonic-gate 	 * In both cases, we unbind persistent nodes and destroy
37547c478bd9Sstevel@tonic-gate 	 * .conf nodes. In the case of rem_drv, this will be the
37557c478bd9Sstevel@tonic-gate 	 * final state. In the case of update_drv, i_ddi_bind_devs()
37567c478bd9Sstevel@tonic-gate 	 * will be invoked later to reenumerate (new) driver.conf
37577c478bd9Sstevel@tonic-gate 	 * rebind persistent nodes.
37587c478bd9Sstevel@tonic-gate 	 */
37597c478bd9Sstevel@tonic-gate 	while (cdip) {
37607c478bd9Sstevel@tonic-gate 		dev_info_t *next = ddi_get_next_sibling(cdip);
37617c478bd9Sstevel@tonic-gate 		if ((i_ddi_node_state(cdip) > DS_INITIALIZED) ||
37627c478bd9Sstevel@tonic-gate 		    (ddi_driver_major(cdip) != major)) {
37637c478bd9Sstevel@tonic-gate 			cdip = next;
37647c478bd9Sstevel@tonic-gate 			continue;
37657c478bd9Sstevel@tonic-gate 		}
37667c478bd9Sstevel@tonic-gate 		(void) ndi_devi_unbind_driver(cdip);
37677c478bd9Sstevel@tonic-gate 		if (ndi_dev_is_persistent_node(cdip) == 0)
37687c478bd9Sstevel@tonic-gate 			(void) ddi_remove_child(cdip, 0);
37697c478bd9Sstevel@tonic-gate 		cdip = next;
37707c478bd9Sstevel@tonic-gate 	}
37717c478bd9Sstevel@tonic-gate 	ndi_devi_exit(dip, circ);
37727c478bd9Sstevel@tonic-gate 
37737c478bd9Sstevel@tonic-gate 	return (DDI_WALK_CONTINUE);
37747c478bd9Sstevel@tonic-gate }
37757c478bd9Sstevel@tonic-gate 
37767c478bd9Sstevel@tonic-gate void
37777c478bd9Sstevel@tonic-gate i_ddi_unbind_devs(major_t major)
37787c478bd9Sstevel@tonic-gate {
37797c478bd9Sstevel@tonic-gate 	ddi_walk_devs(top_devinfo, unbind_children, (void *)(uintptr_t)major);
37807c478bd9Sstevel@tonic-gate }
37817c478bd9Sstevel@tonic-gate 
37827c478bd9Sstevel@tonic-gate /*
37837c478bd9Sstevel@tonic-gate  * I/O Hotplug control
37847c478bd9Sstevel@tonic-gate  */
37857c478bd9Sstevel@tonic-gate 
37867c478bd9Sstevel@tonic-gate /*
37877c478bd9Sstevel@tonic-gate  * create and attach a dev_info node from a .conf file spec
37887c478bd9Sstevel@tonic-gate  */
37897c478bd9Sstevel@tonic-gate static void
37907c478bd9Sstevel@tonic-gate init_spec_child(dev_info_t *pdip, struct hwc_spec *specp, uint_t flags)
37917c478bd9Sstevel@tonic-gate {
37927c478bd9Sstevel@tonic-gate 	_NOTE(ARGUNUSED(flags))
37937c478bd9Sstevel@tonic-gate 	dev_info_t *dip;
37947c478bd9Sstevel@tonic-gate 	char *node_name;
37957c478bd9Sstevel@tonic-gate 
37967c478bd9Sstevel@tonic-gate 	if (((node_name = specp->hwc_devi_name) == NULL) ||
37977c478bd9Sstevel@tonic-gate 	    (ddi_name_to_major(node_name) == (major_t)-1)) {
37987c478bd9Sstevel@tonic-gate 		char *tmp = node_name;
37997c478bd9Sstevel@tonic-gate 		if (tmp == NULL)
38007c478bd9Sstevel@tonic-gate 			tmp = "<none>";
38017c478bd9Sstevel@tonic-gate 		cmn_err(CE_CONT,
38027c478bd9Sstevel@tonic-gate 		    "init_spec_child: parent=%s, bad spec (%s)\n",
38037c478bd9Sstevel@tonic-gate 		    ddi_node_name(pdip), tmp);
38047c478bd9Sstevel@tonic-gate 		return;
38057c478bd9Sstevel@tonic-gate 	}
38067c478bd9Sstevel@tonic-gate 
3807fa9e4066Sahrens 	dip = i_ddi_alloc_node(pdip, node_name, (pnode_t)DEVI_PSEUDO_NODEID,
38087c478bd9Sstevel@tonic-gate 	    -1, specp->hwc_devi_sys_prop_ptr, KM_SLEEP);
38097c478bd9Sstevel@tonic-gate 
38107c478bd9Sstevel@tonic-gate 	if (dip == NULL)
38117c478bd9Sstevel@tonic-gate 		return;
38127c478bd9Sstevel@tonic-gate 
38137c478bd9Sstevel@tonic-gate 	if (ddi_initchild(pdip, dip) != DDI_SUCCESS)
38147c478bd9Sstevel@tonic-gate 		(void) ddi_remove_child(dip, 0);
38157c478bd9Sstevel@tonic-gate }
38167c478bd9Sstevel@tonic-gate 
38177c478bd9Sstevel@tonic-gate /*
38187c478bd9Sstevel@tonic-gate  * Lookup hwc specs from hash tables and make children from the spec
38197c478bd9Sstevel@tonic-gate  * Because some .conf children are "merge" nodes, we also initialize
38207c478bd9Sstevel@tonic-gate  * .conf children to merge properties onto hardware nodes.
38217c478bd9Sstevel@tonic-gate  *
38227c478bd9Sstevel@tonic-gate  * The pdip must be held busy.
38237c478bd9Sstevel@tonic-gate  */
38247c478bd9Sstevel@tonic-gate int
38257c478bd9Sstevel@tonic-gate i_ndi_make_spec_children(dev_info_t *pdip, uint_t flags)
38267c478bd9Sstevel@tonic-gate {
38277c478bd9Sstevel@tonic-gate 	extern struct hwc_spec *hwc_get_child_spec(dev_info_t *, major_t);
38286a41d557Scth 	int			circ;
38297c478bd9Sstevel@tonic-gate 	struct hwc_spec		*list, *spec;
38307c478bd9Sstevel@tonic-gate 
38316a41d557Scth 	ndi_devi_enter(pdip, &circ);
38326a41d557Scth 	if (DEVI(pdip)->devi_flags & DEVI_MADE_CHILDREN) {
38336a41d557Scth 		ndi_devi_exit(pdip, circ);
38347c478bd9Sstevel@tonic-gate 		return (DDI_SUCCESS);
38356a41d557Scth 	}
38367c478bd9Sstevel@tonic-gate 
38377c478bd9Sstevel@tonic-gate 	list = hwc_get_child_spec(pdip, (major_t)-1);
38387c478bd9Sstevel@tonic-gate 	for (spec = list; spec != NULL; spec = spec->hwc_next) {
38397c478bd9Sstevel@tonic-gate 		init_spec_child(pdip, spec, flags);
38407c478bd9Sstevel@tonic-gate 	}
38417c478bd9Sstevel@tonic-gate 	hwc_free_spec_list(list);
38427c478bd9Sstevel@tonic-gate 
38437c478bd9Sstevel@tonic-gate 	mutex_enter(&DEVI(pdip)->devi_lock);
38447c478bd9Sstevel@tonic-gate 	DEVI(pdip)->devi_flags |= DEVI_MADE_CHILDREN;
38457c478bd9Sstevel@tonic-gate 	mutex_exit(&DEVI(pdip)->devi_lock);
38466a41d557Scth 	ndi_devi_exit(pdip, circ);
38477c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
38487c478bd9Sstevel@tonic-gate }
38497c478bd9Sstevel@tonic-gate 
38507c478bd9Sstevel@tonic-gate /*
38517c478bd9Sstevel@tonic-gate  * Run initchild on all child nodes such that instance assignment
38527c478bd9Sstevel@tonic-gate  * for multiport network cards are contiguous.
38537c478bd9Sstevel@tonic-gate  *
38547c478bd9Sstevel@tonic-gate  * The pdip must be held busy.
38557c478bd9Sstevel@tonic-gate  */
38567c478bd9Sstevel@tonic-gate static void
38577c478bd9Sstevel@tonic-gate i_ndi_init_hw_children(dev_info_t *pdip, uint_t flags)
38587c478bd9Sstevel@tonic-gate {
38597c478bd9Sstevel@tonic-gate 	dev_info_t *dip;
38607c478bd9Sstevel@tonic-gate 
38617c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(pdip)->devi_flags & DEVI_MADE_CHILDREN);
38627c478bd9Sstevel@tonic-gate 
38637c478bd9Sstevel@tonic-gate 	/* contiguous instance assignment */
38647c478bd9Sstevel@tonic-gate 	e_ddi_enter_instance();
38657c478bd9Sstevel@tonic-gate 	dip = ddi_get_child(pdip);
38667c478bd9Sstevel@tonic-gate 	while (dip) {
38677c478bd9Sstevel@tonic-gate 		if (ndi_dev_is_persistent_node(dip))
38687c478bd9Sstevel@tonic-gate 			(void) i_ndi_config_node(dip, DS_INITIALIZED, flags);
38697c478bd9Sstevel@tonic-gate 		dip = ddi_get_next_sibling(dip);
38707c478bd9Sstevel@tonic-gate 	}
38717c478bd9Sstevel@tonic-gate 	e_ddi_exit_instance();
38727c478bd9Sstevel@tonic-gate }
38737c478bd9Sstevel@tonic-gate 
38747c478bd9Sstevel@tonic-gate /*
38757c478bd9Sstevel@tonic-gate  * report device status
38767c478bd9Sstevel@tonic-gate  */
38777c478bd9Sstevel@tonic-gate static void
38787c478bd9Sstevel@tonic-gate i_ndi_devi_report_status_change(dev_info_t *dip, char *path)
38797c478bd9Sstevel@tonic-gate {
38807c478bd9Sstevel@tonic-gate 	char *status;
38817c478bd9Sstevel@tonic-gate 
38827c478bd9Sstevel@tonic-gate 	if (!DEVI_NEED_REPORT(dip) ||
38837c478bd9Sstevel@tonic-gate 	    (i_ddi_node_state(dip) < DS_INITIALIZED)) {
38847c478bd9Sstevel@tonic-gate 		return;
38857c478bd9Sstevel@tonic-gate 	}
38867c478bd9Sstevel@tonic-gate 
38877c478bd9Sstevel@tonic-gate 	if (DEVI_IS_DEVICE_OFFLINE(dip)) {
38887c478bd9Sstevel@tonic-gate 		status = "offline";
38897c478bd9Sstevel@tonic-gate 	} else if (DEVI_IS_DEVICE_DOWN(dip)) {
38907c478bd9Sstevel@tonic-gate 		status = "down";
38917c478bd9Sstevel@tonic-gate 	} else if (DEVI_IS_BUS_QUIESCED(dip)) {
38927c478bd9Sstevel@tonic-gate 		status = "quiesced";
38937c478bd9Sstevel@tonic-gate 	} else if (DEVI_IS_BUS_DOWN(dip)) {
38947c478bd9Sstevel@tonic-gate 		status = "down";
3895737d277aScth 	} else if (i_ddi_devi_attached(dip)) {
38967c478bd9Sstevel@tonic-gate 		status = "online";
38977c478bd9Sstevel@tonic-gate 	} else {
38987c478bd9Sstevel@tonic-gate 		status = "unknown";
38997c478bd9Sstevel@tonic-gate 	}
39007c478bd9Sstevel@tonic-gate 
39017c478bd9Sstevel@tonic-gate 	if (path == NULL) {
39027c478bd9Sstevel@tonic-gate 		path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
39037c478bd9Sstevel@tonic-gate 		cmn_err(CE_CONT, "?%s (%s%d) %s\n",
39047c478bd9Sstevel@tonic-gate 			ddi_pathname(dip, path), ddi_driver_name(dip),
39057c478bd9Sstevel@tonic-gate 			ddi_get_instance(dip), status);
39067c478bd9Sstevel@tonic-gate 		kmem_free(path, MAXPATHLEN);
39077c478bd9Sstevel@tonic-gate 	} else {
39087c478bd9Sstevel@tonic-gate 		cmn_err(CE_CONT, "?%s (%s%d) %s\n",
39097c478bd9Sstevel@tonic-gate 			path, ddi_driver_name(dip),
39107c478bd9Sstevel@tonic-gate 			ddi_get_instance(dip), status);
39117c478bd9Sstevel@tonic-gate 	}
39127c478bd9Sstevel@tonic-gate 
391316747f41Scth 	mutex_enter(&(DEVI(dip)->devi_lock));
39147c478bd9Sstevel@tonic-gate 	DEVI_REPORT_DONE(dip);
391516747f41Scth 	mutex_exit(&(DEVI(dip)->devi_lock));
39167c478bd9Sstevel@tonic-gate }
39177c478bd9Sstevel@tonic-gate 
39187c478bd9Sstevel@tonic-gate /*
39197c478bd9Sstevel@tonic-gate  * log a notification that a dev_info node has been configured.
39207c478bd9Sstevel@tonic-gate  */
39217c478bd9Sstevel@tonic-gate static int
39227c478bd9Sstevel@tonic-gate i_log_devfs_add_devinfo(dev_info_t *dip, uint_t flags)
39237c478bd9Sstevel@tonic-gate {
39247c478bd9Sstevel@tonic-gate 	int se_err;
39257c478bd9Sstevel@tonic-gate 	char *pathname;
39267c478bd9Sstevel@tonic-gate 	sysevent_t *ev;
39277c478bd9Sstevel@tonic-gate 	sysevent_id_t eid;
39287c478bd9Sstevel@tonic-gate 	sysevent_value_t se_val;
39297c478bd9Sstevel@tonic-gate 	sysevent_attr_list_t *ev_attr_list = NULL;
39307c478bd9Sstevel@tonic-gate 	char *class_name;
39317c478bd9Sstevel@tonic-gate 	int no_transport = 0;
39327c478bd9Sstevel@tonic-gate 
39337c478bd9Sstevel@tonic-gate 	ASSERT(dip);
39347c478bd9Sstevel@tonic-gate 
39357c478bd9Sstevel@tonic-gate 	/*
39367c478bd9Sstevel@tonic-gate 	 * Invalidate the devinfo snapshot cache
39377c478bd9Sstevel@tonic-gate 	 */
39387c478bd9Sstevel@tonic-gate 	i_ddi_di_cache_invalidate(KM_SLEEP);
39397c478bd9Sstevel@tonic-gate 
39407c478bd9Sstevel@tonic-gate 	/* do not generate ESC_DEVFS_DEVI_ADD event during boot */
39417c478bd9Sstevel@tonic-gate 	if (!i_ddi_io_initialized())
39427c478bd9Sstevel@tonic-gate 		return (DDI_SUCCESS);
39437c478bd9Sstevel@tonic-gate 
39447c478bd9Sstevel@tonic-gate 	ev = sysevent_alloc(EC_DEVFS, ESC_DEVFS_DEVI_ADD, EP_DDI, SE_SLEEP);
39457c478bd9Sstevel@tonic-gate 
39467c478bd9Sstevel@tonic-gate 	pathname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
39477c478bd9Sstevel@tonic-gate 
39487c478bd9Sstevel@tonic-gate 	(void) ddi_pathname(dip, pathname);
39497c478bd9Sstevel@tonic-gate 	ASSERT(strlen(pathname));
39507c478bd9Sstevel@tonic-gate 
39517c478bd9Sstevel@tonic-gate 	se_val.value_type = SE_DATA_TYPE_STRING;
39527c478bd9Sstevel@tonic-gate 	se_val.value.sv_string = pathname;
39537c478bd9Sstevel@tonic-gate 	if (sysevent_add_attr(&ev_attr_list, DEVFS_PATHNAME,
39547c478bd9Sstevel@tonic-gate 	    &se_val, SE_SLEEP) != 0) {
39557c478bd9Sstevel@tonic-gate 		goto fail;
39567c478bd9Sstevel@tonic-gate 	}
39577c478bd9Sstevel@tonic-gate 
39587c478bd9Sstevel@tonic-gate 	/* add the device class attribute */
39597c478bd9Sstevel@tonic-gate 	if ((class_name = i_ddi_devi_class(dip)) != NULL) {
39607c478bd9Sstevel@tonic-gate 		se_val.value_type = SE_DATA_TYPE_STRING;
39617c478bd9Sstevel@tonic-gate 		se_val.value.sv_string = class_name;
39627c478bd9Sstevel@tonic-gate 
39637c478bd9Sstevel@tonic-gate 		if (sysevent_add_attr(&ev_attr_list,
39647c478bd9Sstevel@tonic-gate 		    DEVFS_DEVI_CLASS, &se_val, SE_SLEEP) != 0) {
39657c478bd9Sstevel@tonic-gate 			sysevent_free_attr(ev_attr_list);
39667c478bd9Sstevel@tonic-gate 			goto fail;
39677c478bd9Sstevel@tonic-gate 		}
39687c478bd9Sstevel@tonic-gate 	}
39697c478bd9Sstevel@tonic-gate 
39707c478bd9Sstevel@tonic-gate 	/*
39717c478bd9Sstevel@tonic-gate 	 * must log a branch event too unless NDI_BRANCH_EVENT_OP is set,
39727c478bd9Sstevel@tonic-gate 	 * in which case the branch event will be logged by the caller
39737c478bd9Sstevel@tonic-gate 	 * after the entire branch has been configured.
39747c478bd9Sstevel@tonic-gate 	 */
39757c478bd9Sstevel@tonic-gate 	if ((flags & NDI_BRANCH_EVENT_OP) == 0) {
39767c478bd9Sstevel@tonic-gate 		/*
39777c478bd9Sstevel@tonic-gate 		 * Instead of logging a separate branch event just add
39787c478bd9Sstevel@tonic-gate 		 * DEVFS_BRANCH_EVENT attribute. It indicates devfsadmd to
39797c478bd9Sstevel@tonic-gate 		 * generate a EC_DEV_BRANCH event.
39807c478bd9Sstevel@tonic-gate 		 */
39817c478bd9Sstevel@tonic-gate 		se_val.value_type = SE_DATA_TYPE_INT32;
39827c478bd9Sstevel@tonic-gate 		se_val.value.sv_int32 = 1;
39837c478bd9Sstevel@tonic-gate 		if (sysevent_add_attr(&ev_attr_list,
39847c478bd9Sstevel@tonic-gate 		    DEVFS_BRANCH_EVENT, &se_val, SE_SLEEP) != 0) {
39857c478bd9Sstevel@tonic-gate 			sysevent_free_attr(ev_attr_list);
39867c478bd9Sstevel@tonic-gate 			goto fail;
39877c478bd9Sstevel@tonic-gate 		}
39887c478bd9Sstevel@tonic-gate 	}
39897c478bd9Sstevel@tonic-gate 
39907c478bd9Sstevel@tonic-gate 	if (sysevent_attach_attributes(ev, ev_attr_list) != 0) {
39917c478bd9Sstevel@tonic-gate 		sysevent_free_attr(ev_attr_list);
39927c478bd9Sstevel@tonic-gate 		goto fail;
39937c478bd9Sstevel@tonic-gate 	}
39947c478bd9Sstevel@tonic-gate 
39957c478bd9Sstevel@tonic-gate 	if ((se_err = log_sysevent(ev, SE_SLEEP, &eid)) != 0) {
39967c478bd9Sstevel@tonic-gate 		if (se_err == SE_NO_TRANSPORT)
39977c478bd9Sstevel@tonic-gate 			no_transport = 1;
39987c478bd9Sstevel@tonic-gate 		goto fail;
39997c478bd9Sstevel@tonic-gate 	}
40007c478bd9Sstevel@tonic-gate 
40017c478bd9Sstevel@tonic-gate 	sysevent_free(ev);
40027c478bd9Sstevel@tonic-gate 	kmem_free(pathname, MAXPATHLEN);
40037c478bd9Sstevel@tonic-gate 
40047c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
40057c478bd9Sstevel@tonic-gate 
40067c478bd9Sstevel@tonic-gate fail:
40077c478bd9Sstevel@tonic-gate 	cmn_err(CE_WARN, "failed to log ESC_DEVFS_DEVI_ADD event for %s%s",
40087c478bd9Sstevel@tonic-gate 	    pathname, (no_transport) ? " (syseventd not responding)" : "");
40097c478bd9Sstevel@tonic-gate 
40107c478bd9Sstevel@tonic-gate 	cmn_err(CE_WARN, "/dev may not be current for driver %s. "
40117c478bd9Sstevel@tonic-gate 	    "Run devfsadm -i %s",
40127c478bd9Sstevel@tonic-gate 	    ddi_driver_name(dip), ddi_driver_name(dip));
40137c478bd9Sstevel@tonic-gate 
40147c478bd9Sstevel@tonic-gate 	sysevent_free(ev);
40157c478bd9Sstevel@tonic-gate 	kmem_free(pathname, MAXPATHLEN);
40167c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
40177c478bd9Sstevel@tonic-gate }
40187c478bd9Sstevel@tonic-gate 
40197c478bd9Sstevel@tonic-gate /*
40207c478bd9Sstevel@tonic-gate  * log a notification that a dev_info node has been unconfigured.
40217c478bd9Sstevel@tonic-gate  */
40227c478bd9Sstevel@tonic-gate static int
40237c478bd9Sstevel@tonic-gate i_log_devfs_remove_devinfo(char *pathname, char *class_name, char *driver_name,
40247c478bd9Sstevel@tonic-gate     int instance, uint_t flags)
40257c478bd9Sstevel@tonic-gate {
40267c478bd9Sstevel@tonic-gate 	sysevent_t *ev;
40277c478bd9Sstevel@tonic-gate 	sysevent_id_t eid;
40287c478bd9Sstevel@tonic-gate 	sysevent_value_t se_val;
40297c478bd9Sstevel@tonic-gate 	sysevent_attr_list_t *ev_attr_list = NULL;
40307c478bd9Sstevel@tonic-gate 	int se_err;
40317c478bd9Sstevel@tonic-gate 	int no_transport = 0;
40327c478bd9Sstevel@tonic-gate 
40337c478bd9Sstevel@tonic-gate 	i_ddi_di_cache_invalidate(KM_SLEEP);
40347c478bd9Sstevel@tonic-gate 
40357c478bd9Sstevel@tonic-gate 	if (!i_ddi_io_initialized())
40367c478bd9Sstevel@tonic-gate 		return (DDI_SUCCESS);
40377c478bd9Sstevel@tonic-gate 
40387c478bd9Sstevel@tonic-gate 	ev = sysevent_alloc(EC_DEVFS, ESC_DEVFS_DEVI_REMOVE, EP_DDI, SE_SLEEP);
40397c478bd9Sstevel@tonic-gate 
40407c478bd9Sstevel@tonic-gate 	se_val.value_type = SE_DATA_TYPE_STRING;
40417c478bd9Sstevel@tonic-gate 	se_val.value.sv_string = pathname;
40427c478bd9Sstevel@tonic-gate 	if (sysevent_add_attr(&ev_attr_list, DEVFS_PATHNAME,
40437c478bd9Sstevel@tonic-gate 	    &se_val, SE_SLEEP) != 0) {
40447c478bd9Sstevel@tonic-gate 		goto fail;
40457c478bd9Sstevel@tonic-gate 	}
40467c478bd9Sstevel@tonic-gate 
40477c478bd9Sstevel@tonic-gate 	if (class_name) {
40487c478bd9Sstevel@tonic-gate 		/* add the device class, driver name and instance attributes */
40497c478bd9Sstevel@tonic-gate 
40507c478bd9Sstevel@tonic-gate 		se_val.value_type = SE_DATA_TYPE_STRING;
40517c478bd9Sstevel@tonic-gate 		se_val.value.sv_string = class_name;
40527c478bd9Sstevel@tonic-gate 		if (sysevent_add_attr(&ev_attr_list,
40537c478bd9Sstevel@tonic-gate 		    DEVFS_DEVI_CLASS, &se_val, SE_SLEEP) != 0) {
40547c478bd9Sstevel@tonic-gate 			sysevent_free_attr(ev_attr_list);
40557c478bd9Sstevel@tonic-gate 			goto fail;
40567c478bd9Sstevel@tonic-gate 		}
40577c478bd9Sstevel@tonic-gate 
40587c478bd9Sstevel@tonic-gate 		se_val.value_type = SE_DATA_TYPE_STRING;
40597c478bd9Sstevel@tonic-gate 		se_val.value.sv_string = driver_name;
40607c478bd9Sstevel@tonic-gate 		if (sysevent_add_attr(&ev_attr_list,
40617c478bd9Sstevel@tonic-gate 		    DEVFS_DRIVER_NAME, &se_val, SE_SLEEP) != 0) {
40627c478bd9Sstevel@tonic-gate 			sysevent_free_attr(ev_attr_list);
40637c478bd9Sstevel@tonic-gate 			goto fail;
40647c478bd9Sstevel@tonic-gate 		}
40657c478bd9Sstevel@tonic-gate 
40667c478bd9Sstevel@tonic-gate 		se_val.value_type = SE_DATA_TYPE_INT32;
40677c478bd9Sstevel@tonic-gate 		se_val.value.sv_int32 = instance;
40687c478bd9Sstevel@tonic-gate 		if (sysevent_add_attr(&ev_attr_list,
40697c478bd9Sstevel@tonic-gate 		    DEVFS_INSTANCE, &se_val, SE_SLEEP) != 0) {
40707c478bd9Sstevel@tonic-gate 			sysevent_free_attr(ev_attr_list);
40717c478bd9Sstevel@tonic-gate 			goto fail;
40727c478bd9Sstevel@tonic-gate 		}
40737c478bd9Sstevel@tonic-gate 	}
40747c478bd9Sstevel@tonic-gate 
40757c478bd9Sstevel@tonic-gate 	/*
40767c478bd9Sstevel@tonic-gate 	 * must log a branch event too unless NDI_BRANCH_EVENT_OP is set,
40777c478bd9Sstevel@tonic-gate 	 * in which case the branch event will be logged by the caller
40787c478bd9Sstevel@tonic-gate 	 * after the entire branch has been unconfigured.
40797c478bd9Sstevel@tonic-gate 	 */
40807c478bd9Sstevel@tonic-gate 	if ((flags & NDI_BRANCH_EVENT_OP) == 0) {
40817c478bd9Sstevel@tonic-gate 		/*
40827c478bd9Sstevel@tonic-gate 		 * Instead of logging a separate branch event just add
40837c478bd9Sstevel@tonic-gate 		 * DEVFS_BRANCH_EVENT attribute. It indicates devfsadmd to
40847c478bd9Sstevel@tonic-gate 		 * generate a EC_DEV_BRANCH event.
40857c478bd9Sstevel@tonic-gate 		 */
40867c478bd9Sstevel@tonic-gate 		se_val.value_type = SE_DATA_TYPE_INT32;
40877c478bd9Sstevel@tonic-gate 		se_val.value.sv_int32 = 1;
40887c478bd9Sstevel@tonic-gate 		if (sysevent_add_attr(&ev_attr_list,
40897c478bd9Sstevel@tonic-gate 		    DEVFS_BRANCH_EVENT, &se_val, SE_SLEEP) != 0) {
40907c478bd9Sstevel@tonic-gate 			sysevent_free_attr(ev_attr_list);
40917c478bd9Sstevel@tonic-gate 			goto fail;
40927c478bd9Sstevel@tonic-gate 		}
40937c478bd9Sstevel@tonic-gate 	}
40947c478bd9Sstevel@tonic-gate 
40957c478bd9Sstevel@tonic-gate 	if (sysevent_attach_attributes(ev, ev_attr_list) != 0) {
40967c478bd9Sstevel@tonic-gate 		sysevent_free_attr(ev_attr_list);
40977c478bd9Sstevel@tonic-gate 		goto fail;
40987c478bd9Sstevel@tonic-gate 	}
40997c478bd9Sstevel@tonic-gate 
41007c478bd9Sstevel@tonic-gate 	if ((se_err = log_sysevent(ev, SE_SLEEP, &eid)) != 0) {
41017c478bd9Sstevel@tonic-gate 		if (se_err == SE_NO_TRANSPORT)
41027c478bd9Sstevel@tonic-gate 			no_transport = 1;
41037c478bd9Sstevel@tonic-gate 		goto fail;
41047c478bd9Sstevel@tonic-gate 	}
41057c478bd9Sstevel@tonic-gate 
41067c478bd9Sstevel@tonic-gate 	sysevent_free(ev);
41077c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
41087c478bd9Sstevel@tonic-gate 
41097c478bd9Sstevel@tonic-gate fail:
41107c478bd9Sstevel@tonic-gate 	sysevent_free(ev);
41117c478bd9Sstevel@tonic-gate 	cmn_err(CE_WARN, "failed to log ESC_DEVFS_DEVI_REMOVE event for %s%s",
41127c478bd9Sstevel@tonic-gate 	    pathname, (no_transport) ? " (syseventd not responding)" : "");
41137c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
41147c478bd9Sstevel@tonic-gate }
41157c478bd9Sstevel@tonic-gate 
41167c478bd9Sstevel@tonic-gate /*
41177c478bd9Sstevel@tonic-gate  * log an event that a dev_info branch has been configured or unconfigured.
41187c478bd9Sstevel@tonic-gate  */
41197c478bd9Sstevel@tonic-gate static int
41207c478bd9Sstevel@tonic-gate i_log_devfs_branch(char *node_path, char *subclass)
41217c478bd9Sstevel@tonic-gate {
41227c478bd9Sstevel@tonic-gate 	int se_err;
41237c478bd9Sstevel@tonic-gate 	sysevent_t *ev;
41247c478bd9Sstevel@tonic-gate 	sysevent_id_t eid;
41257c478bd9Sstevel@tonic-gate 	sysevent_value_t se_val;
41267c478bd9Sstevel@tonic-gate 	sysevent_attr_list_t *ev_attr_list = NULL;
41277c478bd9Sstevel@tonic-gate 	int no_transport = 0;
41287c478bd9Sstevel@tonic-gate 
41297c478bd9Sstevel@tonic-gate 	/* do not generate the event during boot */
41307c478bd9Sstevel@tonic-gate 	if (!i_ddi_io_initialized())
41317c478bd9Sstevel@tonic-gate 		return (DDI_SUCCESS);
41327c478bd9Sstevel@tonic-gate 
41337c478bd9Sstevel@tonic-gate 	ev = sysevent_alloc(EC_DEVFS, subclass, EP_DDI, SE_SLEEP);
41347c478bd9Sstevel@tonic-gate 
41357c478bd9Sstevel@tonic-gate 	se_val.value_type = SE_DATA_TYPE_STRING;
41367c478bd9Sstevel@tonic-gate 	se_val.value.sv_string = node_path;
41377c478bd9Sstevel@tonic-gate 
41387c478bd9Sstevel@tonic-gate 	if (sysevent_add_attr(&ev_attr_list, DEVFS_PATHNAME,
41397c478bd9Sstevel@tonic-gate 	    &se_val, SE_SLEEP) != 0) {
41407c478bd9Sstevel@tonic-gate 		goto fail;
41417c478bd9Sstevel@tonic-gate 	}
41427c478bd9Sstevel@tonic-gate 
41437c478bd9Sstevel@tonic-gate 	if (sysevent_attach_attributes(ev, ev_attr_list) != 0) {
41447c478bd9Sstevel@tonic-gate 		sysevent_free_attr(ev_attr_list);
41457c478bd9Sstevel@tonic-gate 		goto fail;
41467c478bd9Sstevel@tonic-gate 	}
41477c478bd9Sstevel@tonic-gate 
41487c478bd9Sstevel@tonic-gate 	if ((se_err = log_sysevent(ev, SE_SLEEP, &eid)) != 0) {
41497c478bd9Sstevel@tonic-gate 		if (se_err == SE_NO_TRANSPORT)
41507c478bd9Sstevel@tonic-gate 			no_transport = 1;
41517c478bd9Sstevel@tonic-gate 		goto fail;
41527c478bd9Sstevel@tonic-gate 	}
41537c478bd9Sstevel@tonic-gate 
41547c478bd9Sstevel@tonic-gate 	sysevent_free(ev);
41557c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
41567c478bd9Sstevel@tonic-gate 
41577c478bd9Sstevel@tonic-gate fail:
41587c478bd9Sstevel@tonic-gate 	cmn_err(CE_WARN, "failed to log %s branch event for %s%s",
41597c478bd9Sstevel@tonic-gate 	    subclass, node_path,
41607c478bd9Sstevel@tonic-gate 	    (no_transport) ? " (syseventd not responding)" : "");
41617c478bd9Sstevel@tonic-gate 
41627c478bd9Sstevel@tonic-gate 	sysevent_free(ev);
41637c478bd9Sstevel@tonic-gate 	return (DDI_FAILURE);
41647c478bd9Sstevel@tonic-gate }
41657c478bd9Sstevel@tonic-gate 
41667c478bd9Sstevel@tonic-gate /*
41677c478bd9Sstevel@tonic-gate  * log an event that a dev_info tree branch has been configured.
41687c478bd9Sstevel@tonic-gate  */
41697c478bd9Sstevel@tonic-gate static int
41707c478bd9Sstevel@tonic-gate i_log_devfs_branch_add(dev_info_t *dip)
41717c478bd9Sstevel@tonic-gate {
41727c478bd9Sstevel@tonic-gate 	char *node_path;
41737c478bd9Sstevel@tonic-gate 	int rv;
41747c478bd9Sstevel@tonic-gate 
41757c478bd9Sstevel@tonic-gate 	node_path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
41767c478bd9Sstevel@tonic-gate 	(void) ddi_pathname(dip, node_path);
41777c478bd9Sstevel@tonic-gate 	rv = i_log_devfs_branch(node_path, ESC_DEVFS_BRANCH_ADD);
41787c478bd9Sstevel@tonic-gate 	kmem_free(node_path, MAXPATHLEN);
41797c478bd9Sstevel@tonic-gate 
41807c478bd9Sstevel@tonic-gate 	return (rv);
41817c478bd9Sstevel@tonic-gate }
41827c478bd9Sstevel@tonic-gate 
41837c478bd9Sstevel@tonic-gate /*
41847c478bd9Sstevel@tonic-gate  * log an event that a dev_info tree branch has been unconfigured.
41857c478bd9Sstevel@tonic-gate  */
41867c478bd9Sstevel@tonic-gate static int
41877c478bd9Sstevel@tonic-gate i_log_devfs_branch_remove(char *node_path)
41887c478bd9Sstevel@tonic-gate {
41897c478bd9Sstevel@tonic-gate 	return (i_log_devfs_branch(node_path, ESC_DEVFS_BRANCH_REMOVE));
41907c478bd9Sstevel@tonic-gate }
41917c478bd9Sstevel@tonic-gate 
41927c478bd9Sstevel@tonic-gate /*
41937c478bd9Sstevel@tonic-gate  * enqueue the dip's deviname on the branch event queue.
41947c478bd9Sstevel@tonic-gate  */
41957c478bd9Sstevel@tonic-gate static struct brevq_node *
41967c478bd9Sstevel@tonic-gate brevq_enqueue(struct brevq_node **brevqp, dev_info_t *dip,
41977c478bd9Sstevel@tonic-gate     struct brevq_node *child)
41987c478bd9Sstevel@tonic-gate {
41997c478bd9Sstevel@tonic-gate 	struct brevq_node *brn;
42007c478bd9Sstevel@tonic-gate 	char *deviname;
42017c478bd9Sstevel@tonic-gate 
42027c478bd9Sstevel@tonic-gate 	deviname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
42037c478bd9Sstevel@tonic-gate 	(void) ddi_deviname(dip, deviname);
42047c478bd9Sstevel@tonic-gate 
42057c478bd9Sstevel@tonic-gate 	brn = kmem_zalloc(sizeof (*brn), KM_SLEEP);
4206245c82d9Scth 	brn->brn_deviname = i_ddi_strdup(deviname, KM_SLEEP);
42077c478bd9Sstevel@tonic-gate 	kmem_free(deviname, MAXNAMELEN);
4208245c82d9Scth 	brn->brn_child = child;
4209245c82d9Scth 	brn->brn_sibling = *brevqp;
42107c478bd9Sstevel@tonic-gate 	*brevqp = brn;
42117c478bd9Sstevel@tonic-gate 
42127c478bd9Sstevel@tonic-gate 	return (brn);
42137c478bd9Sstevel@tonic-gate }
42147c478bd9Sstevel@tonic-gate 
42157c478bd9Sstevel@tonic-gate /*
42167c478bd9Sstevel@tonic-gate  * free the memory allocated for the elements on the branch event queue.
42177c478bd9Sstevel@tonic-gate  */
42187c478bd9Sstevel@tonic-gate static void
42197c478bd9Sstevel@tonic-gate free_brevq(struct brevq_node *brevq)
42207c478bd9Sstevel@tonic-gate {
42217c478bd9Sstevel@tonic-gate 	struct brevq_node *brn, *next_brn;
42227c478bd9Sstevel@tonic-gate 
42237c478bd9Sstevel@tonic-gate 	for (brn = brevq; brn != NULL; brn = next_brn) {
4224245c82d9Scth 		next_brn = brn->brn_sibling;
4225245c82d9Scth 		ASSERT(brn->brn_child == NULL);
4226245c82d9Scth 		kmem_free(brn->brn_deviname, strlen(brn->brn_deviname) + 1);
42277c478bd9Sstevel@tonic-gate 		kmem_free(brn, sizeof (*brn));
42287c478bd9Sstevel@tonic-gate 	}
42297c478bd9Sstevel@tonic-gate }
42307c478bd9Sstevel@tonic-gate 
42317c478bd9Sstevel@tonic-gate /*
42327c478bd9Sstevel@tonic-gate  * log the events queued up on the branch event queue and free the
42337c478bd9Sstevel@tonic-gate  * associated memory.
42347c478bd9Sstevel@tonic-gate  *
42357c478bd9Sstevel@tonic-gate  * node_path must have been allocated with at least MAXPATHLEN bytes.
42367c478bd9Sstevel@tonic-gate  */
42377c478bd9Sstevel@tonic-gate static void
42387c478bd9Sstevel@tonic-gate log_and_free_brevq(char *node_path, struct brevq_node *brevq)
42397c478bd9Sstevel@tonic-gate {
42407c478bd9Sstevel@tonic-gate 	struct brevq_node *brn;
42417c478bd9Sstevel@tonic-gate 	char *p;
42427c478bd9Sstevel@tonic-gate 
42437c478bd9Sstevel@tonic-gate 	p = node_path + strlen(node_path);
4244245c82d9Scth 	for (brn = brevq; brn != NULL; brn = brn->brn_sibling) {
4245245c82d9Scth 		(void) strcpy(p, brn->brn_deviname);
42467c478bd9Sstevel@tonic-gate 		(void) i_log_devfs_branch_remove(node_path);
42477c478bd9Sstevel@tonic-gate 	}
42487c478bd9Sstevel@tonic-gate 	*p = '\0';
42497c478bd9Sstevel@tonic-gate 
42507c478bd9Sstevel@tonic-gate 	free_brevq(brevq);
42517c478bd9Sstevel@tonic-gate }
42527c478bd9Sstevel@tonic-gate 
42537c478bd9Sstevel@tonic-gate /*
42547c478bd9Sstevel@tonic-gate  * log the events queued up on the branch event queue and free the
42557c478bd9Sstevel@tonic-gate  * associated memory. Same as the previous function but operates on dip.
42567c478bd9Sstevel@tonic-gate  */
42577c478bd9Sstevel@tonic-gate static void
42587c478bd9Sstevel@tonic-gate log_and_free_brevq_dip(dev_info_t *dip, struct brevq_node *brevq)
42597c478bd9Sstevel@tonic-gate {
42607c478bd9Sstevel@tonic-gate 	char *path;
42617c478bd9Sstevel@tonic-gate 
42627c478bd9Sstevel@tonic-gate 	path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
42637c478bd9Sstevel@tonic-gate 	(void) ddi_pathname(dip, path);
42647c478bd9Sstevel@tonic-gate 	log_and_free_brevq(path, brevq);
42657c478bd9Sstevel@tonic-gate 	kmem_free(path, MAXPATHLEN);
42667c478bd9Sstevel@tonic-gate }
42677c478bd9Sstevel@tonic-gate 
42687c478bd9Sstevel@tonic-gate /*
42697c478bd9Sstevel@tonic-gate  * log the outstanding branch remove events for the grand children of the dip
42707c478bd9Sstevel@tonic-gate  * and free the associated memory.
42717c478bd9Sstevel@tonic-gate  */
42727c478bd9Sstevel@tonic-gate static void
42737c478bd9Sstevel@tonic-gate log_and_free_br_events_on_grand_children(dev_info_t *dip,
42747c478bd9Sstevel@tonic-gate     struct brevq_node *brevq)
42757c478bd9Sstevel@tonic-gate {
42767c478bd9Sstevel@tonic-gate 	struct brevq_node *brn;
42777c478bd9Sstevel@tonic-gate 	char *path;
42787c478bd9Sstevel@tonic-gate 	char *p;
42797c478bd9Sstevel@tonic-gate 
42807c478bd9Sstevel@tonic-gate 	path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
42817c478bd9Sstevel@tonic-gate 	(void) ddi_pathname(dip, path);
42827c478bd9Sstevel@tonic-gate 	p = path + strlen(path);
4283245c82d9Scth 	for (brn = brevq; brn != NULL; brn = brn->brn_sibling) {
4284245c82d9Scth 		if (brn->brn_child) {
4285245c82d9Scth 			(void) strcpy(p, brn->brn_deviname);
42867c478bd9Sstevel@tonic-gate 			/* now path contains the node path to the dip's child */
4287245c82d9Scth 			log_and_free_brevq(path, brn->brn_child);
4288245c82d9Scth 			brn->brn_child = NULL;
42897c478bd9Sstevel@tonic-gate 		}
42907c478bd9Sstevel@tonic-gate 	}
42917c478bd9Sstevel@tonic-gate 	kmem_free(path, MAXPATHLEN);
42927c478bd9Sstevel@tonic-gate }
42937c478bd9Sstevel@tonic-gate 
42947c478bd9Sstevel@tonic-gate /*
42957c478bd9Sstevel@tonic-gate  * log and cleanup branch remove events for the grand children of the dip.
42967c478bd9Sstevel@tonic-gate  */
42977c478bd9Sstevel@tonic-gate static void
42987c478bd9Sstevel@tonic-gate cleanup_br_events_on_grand_children(dev_info_t *dip, struct brevq_node **brevqp)
42997c478bd9Sstevel@tonic-gate {
43007c478bd9Sstevel@tonic-gate 	dev_info_t *child;
43017c478bd9Sstevel@tonic-gate 	struct brevq_node *brevq, *brn, *prev_brn, *next_brn;
43027c478bd9Sstevel@tonic-gate 	char *path;
43037c478bd9Sstevel@tonic-gate 	int circ;
43047c478bd9Sstevel@tonic-gate 
43057c478bd9Sstevel@tonic-gate 	path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
43067c478bd9Sstevel@tonic-gate 	prev_brn = NULL;
43077c478bd9Sstevel@tonic-gate 	brevq = *brevqp;
43087c478bd9Sstevel@tonic-gate 
43097c478bd9Sstevel@tonic-gate 	ndi_devi_enter(dip, &circ);
43107c478bd9Sstevel@tonic-gate 	for (brn = brevq; brn != NULL; brn = next_brn) {
4311245c82d9Scth 		next_brn = brn->brn_sibling;
43127c478bd9Sstevel@tonic-gate 		for (child = ddi_get_child(dip); child != NULL;
43137c478bd9Sstevel@tonic-gate 		    child = ddi_get_next_sibling(child)) {
43147c478bd9Sstevel@tonic-gate 			if (i_ddi_node_state(child) >= DS_INITIALIZED) {
43157c478bd9Sstevel@tonic-gate 				(void) ddi_deviname(child, path);
4316245c82d9Scth 				if (strcmp(path, brn->brn_deviname) == 0)
43177c478bd9Sstevel@tonic-gate 					break;
43187c478bd9Sstevel@tonic-gate 			}
43197c478bd9Sstevel@tonic-gate 		}
43207c478bd9Sstevel@tonic-gate 
43217c478bd9Sstevel@tonic-gate 		if (child != NULL && !(DEVI_EVREMOVE(child))) {
43227c478bd9Sstevel@tonic-gate 			/*
43237c478bd9Sstevel@tonic-gate 			 * Event state is not REMOVE. So branch remove event
4324245c82d9Scth 			 * is not going be generated on brn->brn_child.
43257c478bd9Sstevel@tonic-gate 			 * If any branch remove events were queued up on
4326245c82d9Scth 			 * brn->brn_child log them and remove the brn
43277c478bd9Sstevel@tonic-gate 			 * from the queue.
43287c478bd9Sstevel@tonic-gate 			 */
4329245c82d9Scth 			if (brn->brn_child) {
43307c478bd9Sstevel@tonic-gate 				(void) ddi_pathname(dip, path);
4331245c82d9Scth 				(void) strcat(path, brn->brn_deviname);
4332245c82d9Scth 				log_and_free_brevq(path, brn->brn_child);
43337c478bd9Sstevel@tonic-gate 			}
43347c478bd9Sstevel@tonic-gate 
43357c478bd9Sstevel@tonic-gate 			if (prev_brn)
4336245c82d9Scth 				prev_brn->brn_sibling = next_brn;
43377c478bd9Sstevel@tonic-gate 			else
43387c478bd9Sstevel@tonic-gate 				*brevqp = next_brn;
43397c478bd9Sstevel@tonic-gate 
4340245c82d9Scth 			kmem_free(brn->brn_deviname,
4341245c82d9Scth 			    strlen(brn->brn_deviname) + 1);
43427c478bd9Sstevel@tonic-gate 			kmem_free(brn, sizeof (*brn));
43437c478bd9Sstevel@tonic-gate 		} else {
43447c478bd9Sstevel@tonic-gate 			/*
43457c478bd9Sstevel@tonic-gate 			 * Free up the outstanding branch remove events
4346245c82d9Scth 			 * queued on brn->brn_child since brn->brn_child
43477c478bd9Sstevel@tonic-gate 			 * itself is eligible for branch remove event.
43487c478bd9Sstevel@tonic-gate 			 */
4349245c82d9Scth 			if (brn->brn_child) {
4350245c82d9Scth 				free_brevq(brn->brn_child);
4351245c82d9Scth 				brn->brn_child = NULL;
43527c478bd9Sstevel@tonic-gate 			}
43537c478bd9Sstevel@tonic-gate 			prev_brn = brn;
43547c478bd9Sstevel@tonic-gate 		}
43557c478bd9Sstevel@tonic-gate 	}
43567c478bd9Sstevel@tonic-gate 
43577c478bd9Sstevel@tonic-gate 	ndi_devi_exit(dip, circ);
43587c478bd9Sstevel@tonic-gate 	kmem_free(path, MAXPATHLEN);
43597c478bd9Sstevel@tonic-gate }
43607c478bd9Sstevel@tonic-gate 
43617c478bd9Sstevel@tonic-gate static int
43627c478bd9Sstevel@tonic-gate need_remove_event(dev_info_t *dip, int flags)
43637c478bd9Sstevel@tonic-gate {
43647c478bd9Sstevel@tonic-gate 	if ((flags & (NDI_NO_EVENT | NDI_AUTODETACH)) == 0 &&
43657c478bd9Sstevel@tonic-gate 	    (flags & (NDI_DEVI_OFFLINE | NDI_UNCONFIG | NDI_DEVI_REMOVE)) &&
43667c478bd9Sstevel@tonic-gate 	    !(DEVI_EVREMOVE(dip)))
43677c478bd9Sstevel@tonic-gate 		return (1);
43687c478bd9Sstevel@tonic-gate 	else
43697c478bd9Sstevel@tonic-gate 		return (0);
43707c478bd9Sstevel@tonic-gate }
43717c478bd9Sstevel@tonic-gate 
43727c478bd9Sstevel@tonic-gate /*
43737c478bd9Sstevel@tonic-gate  * Unconfigure children/descendants of the dip.
43747c478bd9Sstevel@tonic-gate  *
43757c478bd9Sstevel@tonic-gate  * If the operation involves a branch event NDI_BRANCH_EVENT_OP is set
43767c478bd9Sstevel@tonic-gate  * through out the unconfiguration. On successful return *brevqp is set to
43777c478bd9Sstevel@tonic-gate  * a queue of dip's child devinames for which branch remove events need
43787c478bd9Sstevel@tonic-gate  * to be generated.
43797c478bd9Sstevel@tonic-gate  */
43807c478bd9Sstevel@tonic-gate static int
43817c478bd9Sstevel@tonic-gate devi_unconfig_branch(dev_info_t *dip, dev_info_t **dipp, int flags,
43827c478bd9Sstevel@tonic-gate     struct brevq_node **brevqp)
43837c478bd9Sstevel@tonic-gate {
43847c478bd9Sstevel@tonic-gate 	int rval;
43857c478bd9Sstevel@tonic-gate 
43867c478bd9Sstevel@tonic-gate 	*brevqp = NULL;
43877c478bd9Sstevel@tonic-gate 
43887c478bd9Sstevel@tonic-gate 	if ((!(flags & NDI_BRANCH_EVENT_OP)) && need_remove_event(dip, flags))
43897c478bd9Sstevel@tonic-gate 		flags |= NDI_BRANCH_EVENT_OP;
43907c478bd9Sstevel@tonic-gate 
43917c478bd9Sstevel@tonic-gate 	if (flags & NDI_BRANCH_EVENT_OP) {
43927c478bd9Sstevel@tonic-gate 		rval = devi_unconfig_common(dip, dipp, flags, (major_t)-1,
43937c478bd9Sstevel@tonic-gate 		    brevqp);
43947c478bd9Sstevel@tonic-gate 
43957c478bd9Sstevel@tonic-gate 		if (rval != NDI_SUCCESS && (*brevqp)) {
43967c478bd9Sstevel@tonic-gate 			log_and_free_brevq_dip(dip, *brevqp);
43977c478bd9Sstevel@tonic-gate 			*brevqp = NULL;
43987c478bd9Sstevel@tonic-gate 		}
43997c478bd9Sstevel@tonic-gate 	} else
44007c478bd9Sstevel@tonic-gate 		rval = devi_unconfig_common(dip, dipp, flags, (major_t)-1,
44017c478bd9Sstevel@tonic-gate 		    NULL);
44027c478bd9Sstevel@tonic-gate 
44037c478bd9Sstevel@tonic-gate 	return (rval);
44047c478bd9Sstevel@tonic-gate }
44057c478bd9Sstevel@tonic-gate 
44067c478bd9Sstevel@tonic-gate /*
44077c478bd9Sstevel@tonic-gate  * If the dip is already bound to a driver transition to DS_INITIALIZED
44087c478bd9Sstevel@tonic-gate  * in order to generate an event in the case where the node was left in
44097c478bd9Sstevel@tonic-gate  * DS_BOUND state since boot (never got attached) and the node is now
44107c478bd9Sstevel@tonic-gate  * being offlined.
44117c478bd9Sstevel@tonic-gate  */
44127c478bd9Sstevel@tonic-gate static void
44137c478bd9Sstevel@tonic-gate init_bound_node_ev(dev_info_t *pdip, dev_info_t *dip, int flags)
44147c478bd9Sstevel@tonic-gate {
44157c478bd9Sstevel@tonic-gate 	if (need_remove_event(dip, flags) &&
44167c478bd9Sstevel@tonic-gate 	    i_ddi_node_state(dip) == DS_BOUND &&
4417737d277aScth 	    i_ddi_devi_attached(pdip) && !DEVI_IS_DEVICE_OFFLINE(dip))
44187c478bd9Sstevel@tonic-gate 		(void) ddi_initchild(pdip, dip);
44197c478bd9Sstevel@tonic-gate }
44207c478bd9Sstevel@tonic-gate 
44217c478bd9Sstevel@tonic-gate /*
44227c478bd9Sstevel@tonic-gate  * attach a node/branch with parent already held busy
44237c478bd9Sstevel@tonic-gate  */
44247c478bd9Sstevel@tonic-gate static int
44257c478bd9Sstevel@tonic-gate devi_attach_node(dev_info_t *dip, uint_t flags)
44267c478bd9Sstevel@tonic-gate {
44275e3986cbScth 	dev_info_t *pdip = ddi_get_parent(dip);
44285e3986cbScth 
44295e3986cbScth 	ASSERT(pdip && DEVI_BUSY_OWNED(pdip));
44305e3986cbScth 
443116747f41Scth 	mutex_enter(&(DEVI(dip)->devi_lock));
44327c478bd9Sstevel@tonic-gate 	if (flags & NDI_DEVI_ONLINE) {
4433737d277aScth 		if (!i_ddi_devi_attached(dip))
443416747f41Scth 			DEVI_SET_REPORT(dip);
44357c478bd9Sstevel@tonic-gate 		DEVI_SET_DEVICE_ONLINE(dip);
44367c478bd9Sstevel@tonic-gate 	}
44377c478bd9Sstevel@tonic-gate 	if (DEVI_IS_DEVICE_OFFLINE(dip)) {
443816747f41Scth 		mutex_exit(&(DEVI(dip)->devi_lock));
44397c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
44407c478bd9Sstevel@tonic-gate 	}
444116747f41Scth 	mutex_exit(&(DEVI(dip)->devi_lock));
44427c478bd9Sstevel@tonic-gate 
44437c478bd9Sstevel@tonic-gate 	if (i_ddi_attachchild(dip) != DDI_SUCCESS) {
444416747f41Scth 		mutex_enter(&(DEVI(dip)->devi_lock));
44457c478bd9Sstevel@tonic-gate 		DEVI_SET_EVUNINIT(dip);
444616747f41Scth 		mutex_exit(&(DEVI(dip)->devi_lock));
444716747f41Scth 
44487c478bd9Sstevel@tonic-gate 		if (ndi_dev_is_persistent_node(dip))
44497c478bd9Sstevel@tonic-gate 			(void) ddi_uninitchild(dip);
44507c478bd9Sstevel@tonic-gate 		else {
44517c478bd9Sstevel@tonic-gate 			/*
44527c478bd9Sstevel@tonic-gate 			 * Delete .conf nodes and nodes that are not
44537c478bd9Sstevel@tonic-gate 			 * well formed.
44547c478bd9Sstevel@tonic-gate 			 */
44557c478bd9Sstevel@tonic-gate 			(void) ddi_remove_child(dip, 0);
44567c478bd9Sstevel@tonic-gate 		}
44577c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
44587c478bd9Sstevel@tonic-gate 	}
44597c478bd9Sstevel@tonic-gate 
44607c478bd9Sstevel@tonic-gate 	i_ndi_devi_report_status_change(dip, NULL);
44617c478bd9Sstevel@tonic-gate 
44627c478bd9Sstevel@tonic-gate 	/*
44637c478bd9Sstevel@tonic-gate 	 * log an event, but not during devfs lookups in which case
44647c478bd9Sstevel@tonic-gate 	 * NDI_NO_EVENT is set.
44657c478bd9Sstevel@tonic-gate 	 */
44667c478bd9Sstevel@tonic-gate 	if ((flags & NDI_NO_EVENT) == 0 && !(DEVI_EVADD(dip))) {
44677c478bd9Sstevel@tonic-gate 		(void) i_log_devfs_add_devinfo(dip, flags);
446816747f41Scth 
446916747f41Scth 		mutex_enter(&(DEVI(dip)->devi_lock));
44707c478bd9Sstevel@tonic-gate 		DEVI_SET_EVADD(dip);
447116747f41Scth 		mutex_exit(&(DEVI(dip)->devi_lock));
447216747f41Scth 	} else if (!(flags & NDI_NO_EVENT_STATE_CHNG)) {
447316747f41Scth 		mutex_enter(&(DEVI(dip)->devi_lock));
44747c478bd9Sstevel@tonic-gate 		DEVI_SET_EVADD(dip);
447516747f41Scth 		mutex_exit(&(DEVI(dip)->devi_lock));
447616747f41Scth 	}
44777c478bd9Sstevel@tonic-gate 
44787c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
44797c478bd9Sstevel@tonic-gate }
44807c478bd9Sstevel@tonic-gate 
44817c478bd9Sstevel@tonic-gate /* internal function to config immediate children */
44827c478bd9Sstevel@tonic-gate static int
44837c478bd9Sstevel@tonic-gate config_immediate_children(dev_info_t *pdip, uint_t flags, major_t major)
44847c478bd9Sstevel@tonic-gate {
44855e3986cbScth 	dev_info_t	*child, *next;
44867c478bd9Sstevel@tonic-gate 	int		circ;
44875e3986cbScth 
4488737d277aScth 	ASSERT(i_ddi_devi_attached(pdip));
44897c478bd9Sstevel@tonic-gate 
44907c478bd9Sstevel@tonic-gate 	if (!NEXUS_DRV(ddi_get_driver(pdip)))
44917c478bd9Sstevel@tonic-gate 		return (NDI_SUCCESS);
44927c478bd9Sstevel@tonic-gate 
44937c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT,
44947c478bd9Sstevel@tonic-gate 	    "config_immediate_children: %s%d (%p), flags=%x\n",
44957c478bd9Sstevel@tonic-gate 	    ddi_driver_name(pdip), ddi_get_instance(pdip),
44967c478bd9Sstevel@tonic-gate 	    (void *)pdip, flags));
44977c478bd9Sstevel@tonic-gate 
44987c478bd9Sstevel@tonic-gate 	ndi_devi_enter(pdip, &circ);
44997c478bd9Sstevel@tonic-gate 
45007c478bd9Sstevel@tonic-gate 	if (flags & NDI_CONFIG_REPROBE) {
45017c478bd9Sstevel@tonic-gate 		mutex_enter(&DEVI(pdip)->devi_lock);
45027c478bd9Sstevel@tonic-gate 		DEVI(pdip)->devi_flags &= ~DEVI_MADE_CHILDREN;
45037c478bd9Sstevel@tonic-gate 		mutex_exit(&DEVI(pdip)->devi_lock);
45047c478bd9Sstevel@tonic-gate 	}
45057c478bd9Sstevel@tonic-gate 	(void) i_ndi_make_spec_children(pdip, flags);
45067c478bd9Sstevel@tonic-gate 	i_ndi_init_hw_children(pdip, flags);
45075e3986cbScth 
45085e3986cbScth 	child = ddi_get_child(pdip);
45095e3986cbScth 	while (child) {
45105e3986cbScth 		/* NOTE: devi_attach_node() may remove the dip */
45115e3986cbScth 		next = ddi_get_next_sibling(child);
45125e3986cbScth 
45135e3986cbScth 		/*
45145e3986cbScth 		 * Configure all nexus nodes or leaf nodes with
45155e3986cbScth 		 * matching driver major
45165e3986cbScth 		 */
45175e3986cbScth 		if ((major == (major_t)-1) ||
45185e3986cbScth 		    (major == ddi_driver_major(child)) ||
45195e3986cbScth 		    ((flags & NDI_CONFIG) && (is_leaf_node(child) == 0)))
45205e3986cbScth 			(void) devi_attach_node(child, flags);
45215e3986cbScth 		child = next;
45225e3986cbScth 	}
45237c478bd9Sstevel@tonic-gate 
45247c478bd9Sstevel@tonic-gate 	ndi_devi_exit(pdip, circ);
45257c478bd9Sstevel@tonic-gate 
45267c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
45277c478bd9Sstevel@tonic-gate }
45287c478bd9Sstevel@tonic-gate 
45297c478bd9Sstevel@tonic-gate /* internal function to config grand children */
45307c478bd9Sstevel@tonic-gate static int
45317c478bd9Sstevel@tonic-gate config_grand_children(dev_info_t *pdip, uint_t flags, major_t major)
45327c478bd9Sstevel@tonic-gate {
45337c478bd9Sstevel@tonic-gate 	struct mt_config_handle *hdl;
45347c478bd9Sstevel@tonic-gate 
45357c478bd9Sstevel@tonic-gate 	/* multi-threaded configuration of child nexus */
45367c478bd9Sstevel@tonic-gate 	hdl = mt_config_init(pdip, NULL, flags, major, MT_CONFIG_OP, NULL);
45377c478bd9Sstevel@tonic-gate 	mt_config_children(hdl);
45387c478bd9Sstevel@tonic-gate 
45397c478bd9Sstevel@tonic-gate 	return (mt_config_fini(hdl));	/* wait for threads to exit */
45407c478bd9Sstevel@tonic-gate }
45417c478bd9Sstevel@tonic-gate 
45427c478bd9Sstevel@tonic-gate /*
45437c478bd9Sstevel@tonic-gate  * Common function for device tree configuration,
45447c478bd9Sstevel@tonic-gate  * either BUS_CONFIG_ALL or BUS_CONFIG_DRIVER.
45457c478bd9Sstevel@tonic-gate  * The NDI_CONFIG flag causes recursive configuration of
45467c478bd9Sstevel@tonic-gate  * grandchildren, devfs usage should not recurse.
45477c478bd9Sstevel@tonic-gate  */
45487c478bd9Sstevel@tonic-gate static int
45497c478bd9Sstevel@tonic-gate devi_config_common(dev_info_t *dip, int flags, major_t major)
45507c478bd9Sstevel@tonic-gate {
45517c478bd9Sstevel@tonic-gate 	int error;
45527c478bd9Sstevel@tonic-gate 	int (*f)();
45537c478bd9Sstevel@tonic-gate 
4554737d277aScth 	if (!i_ddi_devi_attached(dip))
45557c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
45567c478bd9Sstevel@tonic-gate 
45577c478bd9Sstevel@tonic-gate 	if (pm_pre_config(dip, NULL) != DDI_SUCCESS)
45587c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
45597c478bd9Sstevel@tonic-gate 
45607c478bd9Sstevel@tonic-gate 	if ((DEVI(dip)->devi_ops->devo_bus_ops == NULL) ||
45617c478bd9Sstevel@tonic-gate 	    (DEVI(dip)->devi_ops->devo_bus_ops->busops_rev < BUSO_REV_5) ||
45627c478bd9Sstevel@tonic-gate 	    (f = DEVI(dip)->devi_ops->devo_bus_ops->bus_config) == NULL) {
45637c478bd9Sstevel@tonic-gate 		error = config_immediate_children(dip, flags, major);
45647c478bd9Sstevel@tonic-gate 	} else {
45657c478bd9Sstevel@tonic-gate 		/* call bus_config entry point */
45667c478bd9Sstevel@tonic-gate 		ddi_bus_config_op_t bus_op = (major == (major_t)-1) ?
45677c478bd9Sstevel@tonic-gate 		    BUS_CONFIG_ALL : BUS_CONFIG_DRIVER;
45687c478bd9Sstevel@tonic-gate 		error = (*f)(dip,
45697c478bd9Sstevel@tonic-gate 		    flags, bus_op, (void *)(uintptr_t)major, NULL, 0);
45707c478bd9Sstevel@tonic-gate 	}
45717c478bd9Sstevel@tonic-gate 
45727c478bd9Sstevel@tonic-gate 	if (error) {
45737c478bd9Sstevel@tonic-gate 		pm_post_config(dip, NULL);
45747c478bd9Sstevel@tonic-gate 		return (error);
45757c478bd9Sstevel@tonic-gate 	}
45767c478bd9Sstevel@tonic-gate 
45777c478bd9Sstevel@tonic-gate 	/*
45787c478bd9Sstevel@tonic-gate 	 * Some callers, notably SCSI, need to mark the devfs cache
45797c478bd9Sstevel@tonic-gate 	 * to be rebuilt together with the config operation.
45807c478bd9Sstevel@tonic-gate 	 */
45817c478bd9Sstevel@tonic-gate 	if (flags & NDI_DEVFS_CLEAN)
45827c478bd9Sstevel@tonic-gate 		(void) devfs_clean(dip, NULL, 0);
45837c478bd9Sstevel@tonic-gate 
45847c478bd9Sstevel@tonic-gate 	if (flags & NDI_CONFIG)
45857c478bd9Sstevel@tonic-gate 		(void) config_grand_children(dip, flags, major);
45867c478bd9Sstevel@tonic-gate 
45877c478bd9Sstevel@tonic-gate 	pm_post_config(dip, NULL);
45887c478bd9Sstevel@tonic-gate 
45897c478bd9Sstevel@tonic-gate 	return (NDI_SUCCESS);
45907c478bd9Sstevel@tonic-gate }
45917c478bd9Sstevel@tonic-gate 
45927c478bd9Sstevel@tonic-gate /*
45937c478bd9Sstevel@tonic-gate  * Framework entry point for BUS_CONFIG_ALL
45947c478bd9Sstevel@tonic-gate  */
45957c478bd9Sstevel@tonic-gate int
45967c478bd9Sstevel@tonic-gate ndi_devi_config(dev_info_t *dip, int flags)
45977c478bd9Sstevel@tonic-gate {
45987c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT,
45997c478bd9Sstevel@tonic-gate 	    "ndi_devi_config: par = %s%d (%p), flags = 0x%x\n",
46007c478bd9Sstevel@tonic-gate 	    ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip, flags));
46017c478bd9Sstevel@tonic-gate 
46027c478bd9Sstevel@tonic-gate 	return (devi_config_common(dip, flags, (major_t)-1));
46037c478bd9Sstevel@tonic-gate }
46047c478bd9Sstevel@tonic-gate 
46057c478bd9Sstevel@tonic-gate /*
46067c478bd9Sstevel@tonic-gate  * Framework entry point for BUS_CONFIG_DRIVER, bound to major
46077c478bd9Sstevel@tonic-gate  */
46087c478bd9Sstevel@tonic-gate int
46097c478bd9Sstevel@tonic-gate ndi_devi_config_driver(dev_info_t *dip, int flags, major_t major)
46107c478bd9Sstevel@tonic-gate {
46117c478bd9Sstevel@tonic-gate 	/* don't abuse this function */
46127c478bd9Sstevel@tonic-gate 	ASSERT(major != (major_t)-1);
46137c478bd9Sstevel@tonic-gate 
46147c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT,
46157c478bd9Sstevel@tonic-gate 	    "ndi_devi_config_driver: par = %s%d (%p), flags = 0x%x\n",
46167c478bd9Sstevel@tonic-gate 	    ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip, flags));
46177c478bd9Sstevel@tonic-gate 
46187c478bd9Sstevel@tonic-gate 	return (devi_config_common(dip, flags, major));
46197c478bd9Sstevel@tonic-gate }
46207c478bd9Sstevel@tonic-gate 
46217c478bd9Sstevel@tonic-gate /*
46225e3986cbScth  * Called by nexus drivers to configure its children.
46237c478bd9Sstevel@tonic-gate  */
46247c478bd9Sstevel@tonic-gate static int
46255e3986cbScth devi_config_one(dev_info_t *pdip, char *devnm, dev_info_t **cdipp,
46267c478bd9Sstevel@tonic-gate     uint_t flags, clock_t timeout)
46277c478bd9Sstevel@tonic-gate {
46285e3986cbScth 	dev_info_t	*vdip = NULL;
46295e3986cbScth 	char		*drivername = NULL;
46305e3986cbScth 	char		*name, *addr;
46315e3986cbScth 	int		v_circ, p_circ;
46327c478bd9Sstevel@tonic-gate 	clock_t		end_time;	/* 60 sec */
46335e3986cbScth 	int		probed;
46345e3986cbScth 	dev_info_t	*cdip;
46355e3986cbScth 	mdi_pathinfo_t	*cpip;
46365e3986cbScth 
46375e3986cbScth 	*cdipp = NULL;
46387c478bd9Sstevel@tonic-gate 
46397c478bd9Sstevel@tonic-gate 	if (!NEXUS_DRV(ddi_get_driver(pdip)))
46407c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
46417c478bd9Sstevel@tonic-gate 
46427c478bd9Sstevel@tonic-gate 	/* split name into "name@addr" parts */
46437c478bd9Sstevel@tonic-gate 	i_ddi_parse_name(devnm, &name, &addr, NULL);
46447c478bd9Sstevel@tonic-gate 
46457c478bd9Sstevel@tonic-gate 	/*
46465e3986cbScth 	 * If the nexus is a pHCI and we are not processing a pHCI from
46475e3986cbScth 	 * mdi bus_config code then we need to know the vHCI.
46487c478bd9Sstevel@tonic-gate 	 */
46495e3986cbScth 	if (MDI_PHCI(pdip))
46505e3986cbScth 		vdip = mdi_devi_get_vdip(pdip);
46515e3986cbScth 
46525e3986cbScth 	/*
46535e3986cbScth 	 * We may have a genericname on a system that creates drivername
46545e3986cbScth 	 * nodes (from .conf files).  Find the drivername by nodeid. If we
46555e3986cbScth 	 * can't find a node with devnm as the node name then we search by
46565e3986cbScth 	 * drivername.  This allows an implementation to supply a genericly
46575e3986cbScth 	 * named boot path (disk) and locate drivename nodes (sd).
46585e3986cbScth 	 */
46595e3986cbScth 	if (flags & NDI_PROMNAME)
46607c478bd9Sstevel@tonic-gate 		drivername = child_path_to_driver(pdip, name, addr);
46617c478bd9Sstevel@tonic-gate 
4662144dfaa9Scth 	/*
46635e3986cbScth 	 * Determine end_time: This routine should *not* be called with a
46645e3986cbScth 	 * constant non-zero timeout argument, the caller should be adjusting
46655e3986cbScth 	 * the timeout argument relative to when it *started* its asynchronous
46665e3986cbScth 	 * enumeration.
4667144dfaa9Scth 	 */
46685e3986cbScth 	if (timeout > 0)
46695e3986cbScth 		end_time = ddi_get_lbolt() + timeout;
4670c73a93f2Sdm120769 
46715e3986cbScth 	for (;;) {
46725e3986cbScth 		/*
46735e3986cbScth 		 * For pHCI, enter (vHCI, pHCI) and search for pathinfo/client
46745e3986cbScth 		 * child - break out of for(;;) loop if child found.
46755e3986cbScth 		 * NOTE: Lock order for ndi_devi_enter is (vHCI, pHCI).
46765e3986cbScth 		 */
46775e3986cbScth 		if (vdip) {
46785e3986cbScth 			/* use mdi_devi_enter ordering */
46795e3986cbScth 			ndi_devi_enter(vdip, &v_circ);
46805e3986cbScth 			ndi_devi_enter(pdip, &p_circ);
46815e3986cbScth 			cpip = mdi_pi_find(pdip, NULL, addr);
46825e3986cbScth 			cdip = mdi_pi_get_client(cpip);
46835e3986cbScth 			if (cdip)
46845e3986cbScth 				break;
46855e3986cbScth 		} else
46865e3986cbScth 			ndi_devi_enter(pdip, &p_circ);
46875e3986cbScth 
46885e3986cbScth 		/*
46895e3986cbScth 		 * When not a  vHCI or not all pHCI devices are required to
46905e3986cbScth 		 * enumerated under the vHCI (NDI_MDI_FALLBACK) search for
46915e3986cbScth 		 * devinfo child.
46925e3986cbScth 		 */
46935e3986cbScth 		if ((vdip == NULL) || (flags & NDI_MDI_FALLBACK)) {
46945e3986cbScth 			/* determine if .conf nodes already built */
46955e3986cbScth 			probed = (DEVI(pdip)->devi_flags & DEVI_MADE_CHILDREN);
46965e3986cbScth 
46975e3986cbScth 			/*
46985e3986cbScth 			 * Search for child by name, if not found then search
46995e3986cbScth 			 * for a node bound to the drivername driver with the
47005e3986cbScth 			 * specified "@addr". Break out of for(;;) loop if
47015e3986cbScth 			 * child found.
47025e3986cbScth 			 */
47035e3986cbScth again:			(void) i_ndi_make_spec_children(pdip, flags);
47045e3986cbScth 			cdip = find_child_by_name(pdip, name, addr);
47055e3986cbScth 			if ((cdip == NULL) && drivername)
47065e3986cbScth 				cdip = find_child_by_driver(pdip,
47075e3986cbScth 				    drivername, addr);
47085e3986cbScth 			if (cdip)
47097c478bd9Sstevel@tonic-gate 				break;
47107c478bd9Sstevel@tonic-gate 
47117c478bd9Sstevel@tonic-gate 			/*
47125e3986cbScth 			 * determine if we should reenumerate .conf nodes
47135e3986cbScth 			 * and look for child again.
47147c478bd9Sstevel@tonic-gate 			 */
47155e3986cbScth 			if (probed &&
47165e3986cbScth 			    i_ddi_io_initialized() &&
47175e3986cbScth 			    (flags & NDI_CONFIG_REPROBE) &&
47185e3986cbScth 			    ((timeout <= 0) || (ddi_get_lbolt() >= end_time))) {
47195e3986cbScth 				probed = 0;
47205e3986cbScth 				mutex_enter(&DEVI(pdip)->devi_lock);
47215e3986cbScth 				DEVI(pdip)->devi_flags &= ~DEVI_MADE_CHILDREN;
47225e3986cbScth 				mutex_exit(&DEVI(pdip)->devi_lock);
47235e3986cbScth 				goto again;
47245e3986cbScth 			}
47255e3986cbScth 		}
47265e3986cbScth 
47275e3986cbScth 		/* break out of for(;;) if time expired */
47285e3986cbScth 		if ((timeout <= 0) || (ddi_get_lbolt() >= end_time))
47295e3986cbScth 			break;
47305e3986cbScth 
47315e3986cbScth 		/*
47325e3986cbScth 		 * Child not found, exit and wait for asynchronous enumeration
47335e3986cbScth 		 * to add child (or timeout). The addition of a new child (vhci
47345e3986cbScth 		 * or phci) requires the asynchronous enumeration thread to
47355e3986cbScth 		 * ndi_devi_enter/ndi_devi_exit. This exit will signal devi_cv
47365e3986cbScth 		 * and cause us to return from ndi_devi_exit_and_wait, after
47375e3986cbScth 		 * which we loop and search for the requested child again.
47385e3986cbScth 		 */
47397c478bd9Sstevel@tonic-gate 		NDI_DEBUG(flags, (CE_CONT,
47407c478bd9Sstevel@tonic-gate 		    "%s%d: waiting for child %s@%s, timeout %ld",
47417c478bd9Sstevel@tonic-gate 		    ddi_driver_name(pdip), ddi_get_instance(pdip),
47427c478bd9Sstevel@tonic-gate 		    name, addr, timeout));
47435e3986cbScth 		if (vdip) {
4744c73a93f2Sdm120769 			/*
47455e3986cbScth 			 * Mark vHCI for pHCI ndi_devi_exit broadcast.
4746c73a93f2Sdm120769 			 */
47475e3986cbScth 			mutex_enter(&DEVI(vdip)->devi_lock);
47485e3986cbScth 			DEVI(vdip)->devi_flags |=
47495e3986cbScth 			    DEVI_PHCI_SIGNALS_VHCI;
47505e3986cbScth 			mutex_exit(&DEVI(vdip)->devi_lock);
47515e3986cbScth 			ndi_devi_exit(pdip, p_circ);
47525e3986cbScth 
47535e3986cbScth 			/*
47545e3986cbScth 			 * NB: There is a small race window from above
47555e3986cbScth 			 * ndi_devi_exit() of pdip to cv_wait() in
47565e3986cbScth 			 * ndi_devi_exit_and_wait() which can result in
47575e3986cbScth 			 * not immediately finding a new pHCI child
47585e3986cbScth 			 * of a pHCI that uses NDI_MDI_FAILBACK.
47595e3986cbScth 			 */
47605e3986cbScth 			ndi_devi_exit_and_wait(vdip, v_circ, end_time);
47615e3986cbScth 		} else {
47625e3986cbScth 			ndi_devi_exit_and_wait(pdip, p_circ, end_time);
47635e3986cbScth 		}
4764c73a93f2Sdm120769 	}
4765c73a93f2Sdm120769 
47665e3986cbScth 	/* done with paddr, fixup i_ddi_parse_name '@'->'\0' change */
47675e3986cbScth 	if (addr && *addr != '\0')
47687c478bd9Sstevel@tonic-gate 		*(addr - 1) = '@';
47697c478bd9Sstevel@tonic-gate 
47705e3986cbScth 	/* attach and hold the child, returning pointer to child */
47715e3986cbScth 	if (cdip && (devi_attach_node(cdip, flags) == NDI_SUCCESS)) {
47725e3986cbScth 		ndi_hold_devi(cdip);
47735e3986cbScth 		*cdipp = cdip;
47747c478bd9Sstevel@tonic-gate 	}
47757c478bd9Sstevel@tonic-gate 
47765e3986cbScth 	ndi_devi_exit(pdip, p_circ);
47775e3986cbScth 	if (vdip)
47785e3986cbScth 		ndi_devi_exit(vdip, v_circ);
47795e3986cbScth 	return (*cdipp ? NDI_SUCCESS : NDI_FAILURE);
47807c478bd9Sstevel@tonic-gate }
47817c478bd9Sstevel@tonic-gate 
47827c478bd9Sstevel@tonic-gate /*
47837c478bd9Sstevel@tonic-gate  * Enumerate and attach a child specified by name 'devnm'.
47847c478bd9Sstevel@tonic-gate  * Called by devfs lookup and DR to perform a BUS_CONFIG_ONE.
47857c478bd9Sstevel@tonic-gate  * Note: devfs does not make use of NDI_CONFIG to configure
47867c478bd9Sstevel@tonic-gate  * an entire branch.
47877c478bd9Sstevel@tonic-gate  */
47887c478bd9Sstevel@tonic-gate int
47897c478bd9Sstevel@tonic-gate ndi_devi_config_one(dev_info_t *dip, char *devnm, dev_info_t **dipp, int flags)
47907c478bd9Sstevel@tonic-gate {
47917c478bd9Sstevel@tonic-gate 	int error;
47927c478bd9Sstevel@tonic-gate 	int (*f)();
47937c478bd9Sstevel@tonic-gate 	int branch_event = 0;
47947c478bd9Sstevel@tonic-gate 
47957c478bd9Sstevel@tonic-gate 	ASSERT(dipp);
4796737d277aScth 	ASSERT(i_ddi_devi_attached(dip));
47977c478bd9Sstevel@tonic-gate 
47987c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT,
47997c478bd9Sstevel@tonic-gate 	    "ndi_devi_config_one: par = %s%d (%p), child = %s\n",
48007c478bd9Sstevel@tonic-gate 	    ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip, devnm));
48017c478bd9Sstevel@tonic-gate 
48027c478bd9Sstevel@tonic-gate 	if (pm_pre_config(dip, devnm) != DDI_SUCCESS)
48037c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
48047c478bd9Sstevel@tonic-gate 
48057c478bd9Sstevel@tonic-gate 	if ((flags & (NDI_NO_EVENT | NDI_BRANCH_EVENT_OP)) == 0 &&
48067c478bd9Sstevel@tonic-gate 	    (flags & NDI_CONFIG)) {
48077c478bd9Sstevel@tonic-gate 		flags |= NDI_BRANCH_EVENT_OP;
48087c478bd9Sstevel@tonic-gate 		branch_event = 1;
48097c478bd9Sstevel@tonic-gate 	}
48107c478bd9Sstevel@tonic-gate 
48117c478bd9Sstevel@tonic-gate 	if ((DEVI(dip)->devi_ops->devo_bus_ops == NULL) ||
48127c478bd9Sstevel@tonic-gate 	    (DEVI(dip)->devi_ops->devo_bus_ops->busops_rev < BUSO_REV_5) ||
48137c478bd9Sstevel@tonic-gate 	    (f = DEVI(dip)->devi_ops->devo_bus_ops->bus_config) == NULL) {
48147c478bd9Sstevel@tonic-gate 		error = devi_config_one(dip, devnm, dipp, flags, 0);
48157c478bd9Sstevel@tonic-gate 	} else {
48167c478bd9Sstevel@tonic-gate 		/* call bus_config entry point */
48177c478bd9Sstevel@tonic-gate 		error = (*f)(dip, flags, BUS_CONFIG_ONE, (void *)devnm, dipp);
48187c478bd9Sstevel@tonic-gate 	}
48197c478bd9Sstevel@tonic-gate 
48207c478bd9Sstevel@tonic-gate 	if (error || (flags & NDI_CONFIG) == 0) {
48217c478bd9Sstevel@tonic-gate 		pm_post_config(dip, devnm);
48227c478bd9Sstevel@tonic-gate 		return (error);
48237c478bd9Sstevel@tonic-gate 	}
48247c478bd9Sstevel@tonic-gate 
48257c478bd9Sstevel@tonic-gate 	/*
48267c478bd9Sstevel@tonic-gate 	 * DR usage ((i.e. call with NDI_CONFIG) recursively configures
48277c478bd9Sstevel@tonic-gate 	 * grandchildren, performing a BUS_CONFIG_ALL from the node attached
48287c478bd9Sstevel@tonic-gate 	 * by the BUS_CONFIG_ONE.
48297c478bd9Sstevel@tonic-gate 	 */
48307c478bd9Sstevel@tonic-gate 	ASSERT(*dipp);
48317c478bd9Sstevel@tonic-gate 
48327c478bd9Sstevel@tonic-gate 	error = devi_config_common(*dipp, flags, (major_t)-1);
48337c478bd9Sstevel@tonic-gate 
48347c478bd9Sstevel@tonic-gate 	pm_post_config(dip, devnm);
48357c478bd9Sstevel@tonic-gate 
48367c478bd9Sstevel@tonic-gate 	if (branch_event)
48377c478bd9Sstevel@tonic-gate 		(void) i_log_devfs_branch_add(*dipp);
48387c478bd9Sstevel@tonic-gate 
48397c478bd9Sstevel@tonic-gate 	return (error);
48407c478bd9Sstevel@tonic-gate }
48417c478bd9Sstevel@tonic-gate 
48427c478bd9Sstevel@tonic-gate 
48437c478bd9Sstevel@tonic-gate /*
48447c478bd9Sstevel@tonic-gate  * Enumerate and attach a child specified by name 'devnm'.
48457c478bd9Sstevel@tonic-gate  * Called during configure the OBP options. This configures
48467c478bd9Sstevel@tonic-gate  * only one node.
48477c478bd9Sstevel@tonic-gate  */
48487c478bd9Sstevel@tonic-gate static int
48497c478bd9Sstevel@tonic-gate ndi_devi_config_obp_args(dev_info_t *parent, char *devnm,
48507c478bd9Sstevel@tonic-gate     dev_info_t **childp, int flags)
48517c478bd9Sstevel@tonic-gate {
48527c478bd9Sstevel@tonic-gate 	int error;
48537c478bd9Sstevel@tonic-gate 	int (*f)();
48547c478bd9Sstevel@tonic-gate 
48557c478bd9Sstevel@tonic-gate 	ASSERT(childp);
4856737d277aScth 	ASSERT(i_ddi_devi_attached(parent));
48577c478bd9Sstevel@tonic-gate 
48587c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT, "ndi_devi_config_obp_args: "
48597c478bd9Sstevel@tonic-gate 	    "par = %s%d (%p), child = %s\n", ddi_driver_name(parent),
48607c478bd9Sstevel@tonic-gate 	    ddi_get_instance(parent), (void *)parent, devnm));
48617c478bd9Sstevel@tonic-gate 
48627c478bd9Sstevel@tonic-gate 	if ((DEVI(parent)->devi_ops->devo_bus_ops == NULL) ||
48637c478bd9Sstevel@tonic-gate 	    (DEVI(parent)->devi_ops->devo_bus_ops->busops_rev < BUSO_REV_5) ||
48647c478bd9Sstevel@tonic-gate 	    (f = DEVI(parent)->devi_ops->devo_bus_ops->bus_config) == NULL) {
48657c478bd9Sstevel@tonic-gate 		error = NDI_FAILURE;
48667c478bd9Sstevel@tonic-gate 	} else {
48677c478bd9Sstevel@tonic-gate 		/* call bus_config entry point */
48687c478bd9Sstevel@tonic-gate 		error = (*f)(parent, flags,
48697c478bd9Sstevel@tonic-gate 		    BUS_CONFIG_OBP_ARGS, (void *)devnm, childp);
48707c478bd9Sstevel@tonic-gate 	}
48717c478bd9Sstevel@tonic-gate 	return (error);
48727c478bd9Sstevel@tonic-gate }
48737c478bd9Sstevel@tonic-gate 
48747c478bd9Sstevel@tonic-gate 
48757c478bd9Sstevel@tonic-gate /*
48767c478bd9Sstevel@tonic-gate  * detach a node with parent already held busy
48777c478bd9Sstevel@tonic-gate  */
48787c478bd9Sstevel@tonic-gate static int
48797c478bd9Sstevel@tonic-gate devi_detach_node(dev_info_t *dip, uint_t flags)
48807c478bd9Sstevel@tonic-gate {
48817c478bd9Sstevel@tonic-gate 	dev_info_t *pdip = ddi_get_parent(dip);
48827c478bd9Sstevel@tonic-gate 	int ret = NDI_SUCCESS;
48837c478bd9Sstevel@tonic-gate 	ddi_eventcookie_t cookie;
48847c478bd9Sstevel@tonic-gate 
48855e3986cbScth 	ASSERT(pdip && DEVI_BUSY_OWNED(pdip));
48865e3986cbScth 
48877c478bd9Sstevel@tonic-gate 	if (flags & NDI_POST_EVENT) {
48885e3986cbScth 		if (i_ddi_devi_attached(pdip)) {
48897c478bd9Sstevel@tonic-gate 			if (ddi_get_eventcookie(dip, DDI_DEVI_REMOVE_EVENT,
48907c478bd9Sstevel@tonic-gate 			    &cookie) == NDI_SUCCESS)
48917c478bd9Sstevel@tonic-gate 				(void) ndi_post_event(dip, dip, cookie, NULL);
48927c478bd9Sstevel@tonic-gate 		}
48937c478bd9Sstevel@tonic-gate 	}
48947c478bd9Sstevel@tonic-gate 
48957c478bd9Sstevel@tonic-gate 	if (i_ddi_detachchild(dip, flags) != DDI_SUCCESS)
48967c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
48977c478bd9Sstevel@tonic-gate 
48987c478bd9Sstevel@tonic-gate 	if (flags & NDI_AUTODETACH)
48997c478bd9Sstevel@tonic-gate 		return (NDI_SUCCESS);
49007c478bd9Sstevel@tonic-gate 
49017c478bd9Sstevel@tonic-gate 	/*
49027c478bd9Sstevel@tonic-gate 	 * For DR, even bound nodes may need to have offline
49037c478bd9Sstevel@tonic-gate 	 * flag set.
49047c478bd9Sstevel@tonic-gate 	 */
49057c478bd9Sstevel@tonic-gate 	if (flags & NDI_DEVI_OFFLINE) {
490616747f41Scth 		mutex_enter(&(DEVI(dip)->devi_lock));
49077c478bd9Sstevel@tonic-gate 		DEVI_SET_DEVICE_OFFLINE(dip);
490816747f41Scth 		mutex_exit(&(DEVI(dip)->devi_lock));
49097c478bd9Sstevel@tonic-gate 	}
49107c478bd9Sstevel@tonic-gate 
49117c478bd9Sstevel@tonic-gate 	if (i_ddi_node_state(dip) == DS_INITIALIZED) {
49127c478bd9Sstevel@tonic-gate 		char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
49137c478bd9Sstevel@tonic-gate 		(void) ddi_pathname(dip, path);
49147c478bd9Sstevel@tonic-gate 		if (flags & NDI_DEVI_OFFLINE)
49157c478bd9Sstevel@tonic-gate 			i_ndi_devi_report_status_change(dip, path);
49167c478bd9Sstevel@tonic-gate 
49177c478bd9Sstevel@tonic-gate 		if (need_remove_event(dip, flags)) {
49187c478bd9Sstevel@tonic-gate 			(void) i_log_devfs_remove_devinfo(path,
49197c478bd9Sstevel@tonic-gate 			    i_ddi_devi_class(dip),
49207c478bd9Sstevel@tonic-gate 			    (char *)ddi_driver_name(dip),
49217c478bd9Sstevel@tonic-gate 			    ddi_get_instance(dip),
49227c478bd9Sstevel@tonic-gate 			    flags);
492316747f41Scth 			mutex_enter(&(DEVI(dip)->devi_lock));
49247c478bd9Sstevel@tonic-gate 			DEVI_SET_EVREMOVE(dip);
492516747f41Scth 			mutex_exit(&(DEVI(dip)->devi_lock));
49267c478bd9Sstevel@tonic-gate 		}
49277c478bd9Sstevel@tonic-gate 		kmem_free(path, MAXPATHLEN);
49287c478bd9Sstevel@tonic-gate 	}
49297c478bd9Sstevel@tonic-gate 
49307c478bd9Sstevel@tonic-gate 	if (flags & (NDI_UNCONFIG | NDI_DEVI_REMOVE)) {
49317c478bd9Sstevel@tonic-gate 		ret = ddi_uninitchild(dip);
49327c478bd9Sstevel@tonic-gate 		if (ret == NDI_SUCCESS) {
49337c478bd9Sstevel@tonic-gate 			/*
49347c478bd9Sstevel@tonic-gate 			 * Remove uninitialized pseudo nodes because
49357c478bd9Sstevel@tonic-gate 			 * system props are lost and the node cannot be
49367c478bd9Sstevel@tonic-gate 			 * reattached.
49377c478bd9Sstevel@tonic-gate 			 */
49387c478bd9Sstevel@tonic-gate 			if (!ndi_dev_is_persistent_node(dip))
49397c478bd9Sstevel@tonic-gate 				flags |= NDI_DEVI_REMOVE;
49407c478bd9Sstevel@tonic-gate 
49417c478bd9Sstevel@tonic-gate 			if (flags & NDI_DEVI_REMOVE)
49427c478bd9Sstevel@tonic-gate 				ret = ddi_remove_child(dip, 0);
49437c478bd9Sstevel@tonic-gate 		}
49447c478bd9Sstevel@tonic-gate 	}
49457c478bd9Sstevel@tonic-gate 
49467c478bd9Sstevel@tonic-gate 	return (ret);
49477c478bd9Sstevel@tonic-gate }
49487c478bd9Sstevel@tonic-gate 
49497c478bd9Sstevel@tonic-gate /*
49507c478bd9Sstevel@tonic-gate  * unconfigure immediate children of bus nexus device
49517c478bd9Sstevel@tonic-gate  */
49527c478bd9Sstevel@tonic-gate static int
49537c478bd9Sstevel@tonic-gate unconfig_immediate_children(
49547c478bd9Sstevel@tonic-gate 	dev_info_t *dip,
49557c478bd9Sstevel@tonic-gate 	dev_info_t **dipp,
49567c478bd9Sstevel@tonic-gate 	int flags,
49577c478bd9Sstevel@tonic-gate 	major_t major)
49587c478bd9Sstevel@tonic-gate {
49595e3986cbScth 	int rv = NDI_SUCCESS;
49605e3986cbScth 	int circ, vcirc;
49617c478bd9Sstevel@tonic-gate 	dev_info_t *child;
49625e3986cbScth 	dev_info_t *vdip = NULL;
49635e3986cbScth 	dev_info_t *next;
49647c478bd9Sstevel@tonic-gate 
49657c478bd9Sstevel@tonic-gate 	ASSERT(dipp == NULL || *dipp == NULL);
49667c478bd9Sstevel@tonic-gate 
49675e3986cbScth 	/*
49685e3986cbScth 	 * Scan forward to see if we will be processing a pHCI child. If we
49695e3986cbScth 	 * have a child that is a pHCI and vHCI and pHCI are not siblings then
49705e3986cbScth 	 * enter vHCI before parent(pHCI) to prevent deadlock with mpxio
49715e3986cbScth 	 * Client power management operations.
49725e3986cbScth 	 */
49737c478bd9Sstevel@tonic-gate 	ndi_devi_enter(dip, &circ);
49745e3986cbScth 	for (child = ddi_get_child(dip); child;
49755e3986cbScth 	    child = ddi_get_next_sibling(child)) {
49765e3986cbScth 		/* skip same nodes we skip below */
49775e3986cbScth 		if (((major != (major_t)-1) &&
49785e3986cbScth 		    (major != ddi_driver_major(child))) ||
49795e3986cbScth 		    ((flags & NDI_AUTODETACH) && !is_leaf_node(child)))
49805e3986cbScth 			continue;
49815e3986cbScth 
49825e3986cbScth 		if (MDI_PHCI(child)) {
49835e3986cbScth 			vdip = mdi_devi_get_vdip(child);
49845e3986cbScth 			/*
49855e3986cbScth 			 * If vHCI and vHCI is not a sibling of pHCI
49865e3986cbScth 			 * then enter in (vHCI, parent(pHCI)) order.
49875e3986cbScth 			 */
49885e3986cbScth 			if (vdip && (ddi_get_parent(vdip) != dip)) {
49895e3986cbScth 				ndi_devi_exit(dip, circ);
49905e3986cbScth 
49915e3986cbScth 				/* use mdi_devi_enter ordering */
49925e3986cbScth 				ndi_devi_enter(vdip, &vcirc);
49935e3986cbScth 				ndi_devi_enter(dip, &circ);
49945e3986cbScth 				break;
49955e3986cbScth 			} else
49965e3986cbScth 				vdip = NULL;
49975e3986cbScth 		}
49985e3986cbScth 	}
49995e3986cbScth 
50007c478bd9Sstevel@tonic-gate 	child = ddi_get_child(dip);
50017c478bd9Sstevel@tonic-gate 	while (child) {
50025e3986cbScth 		next = ddi_get_next_sibling(child);
50035e3986cbScth 
50047c478bd9Sstevel@tonic-gate 		if ((major != (major_t)-1) &&
50057c478bd9Sstevel@tonic-gate 		    (major != ddi_driver_major(child))) {
50067c478bd9Sstevel@tonic-gate 			child = next;
50077c478bd9Sstevel@tonic-gate 			continue;
50087c478bd9Sstevel@tonic-gate 		}
50097c478bd9Sstevel@tonic-gate 
50107c478bd9Sstevel@tonic-gate 		/* skip nexus nodes during autodetach */
50117c478bd9Sstevel@tonic-gate 		if ((flags & NDI_AUTODETACH) && !is_leaf_node(child)) {
50127c478bd9Sstevel@tonic-gate 			child = next;
50137c478bd9Sstevel@tonic-gate 			continue;
50147c478bd9Sstevel@tonic-gate 		}
50157c478bd9Sstevel@tonic-gate 
50167c478bd9Sstevel@tonic-gate 		if (devi_detach_node(child, flags) != NDI_SUCCESS) {
50177c478bd9Sstevel@tonic-gate 			if (dipp && *dipp == NULL) {
50187c478bd9Sstevel@tonic-gate 				ndi_hold_devi(child);
50197c478bd9Sstevel@tonic-gate 				*dipp = child;
50207c478bd9Sstevel@tonic-gate 			}
50217c478bd9Sstevel@tonic-gate 			rv = NDI_FAILURE;
50227c478bd9Sstevel@tonic-gate 		}
50237c478bd9Sstevel@tonic-gate 
50247c478bd9Sstevel@tonic-gate 		/*
50257c478bd9Sstevel@tonic-gate 		 * Continue upon failure--best effort algorithm
50267c478bd9Sstevel@tonic-gate 		 */
50277c478bd9Sstevel@tonic-gate 		child = next;
50287c478bd9Sstevel@tonic-gate 	}
50295e3986cbScth 
50307c478bd9Sstevel@tonic-gate 	ndi_devi_exit(dip, circ);
50315e3986cbScth 	if (vdip)
50325e3986cbScth 		ndi_devi_exit(vdip, vcirc);
50335e3986cbScth 
50347c478bd9Sstevel@tonic-gate 	return (rv);
50357c478bd9Sstevel@tonic-gate }
50367c478bd9Sstevel@tonic-gate 
50377c478bd9Sstevel@tonic-gate /*
50387c478bd9Sstevel@tonic-gate  * unconfigure grand children of bus nexus device
50397c478bd9Sstevel@tonic-gate  */
50407c478bd9Sstevel@tonic-gate static int
50417c478bd9Sstevel@tonic-gate unconfig_grand_children(
50427c478bd9Sstevel@tonic-gate 	dev_info_t *dip,
50437c478bd9Sstevel@tonic-gate 	dev_info_t **dipp,
50447c478bd9Sstevel@tonic-gate 	int flags,
50457c478bd9Sstevel@tonic-gate 	major_t major,
50467c478bd9Sstevel@tonic-gate 	struct brevq_node **brevqp)
50477c478bd9Sstevel@tonic-gate {
50487c478bd9Sstevel@tonic-gate 	struct mt_config_handle *hdl;
50497c478bd9Sstevel@tonic-gate 
50507c478bd9Sstevel@tonic-gate 	if (brevqp)
50517c478bd9Sstevel@tonic-gate 		*brevqp = NULL;
50527c478bd9Sstevel@tonic-gate 
50537c478bd9Sstevel@tonic-gate 	/* multi-threaded configuration of child nexus */
50547c478bd9Sstevel@tonic-gate 	hdl = mt_config_init(dip, dipp, flags, major, MT_UNCONFIG_OP, brevqp);
50557c478bd9Sstevel@tonic-gate 	mt_config_children(hdl);
50567c478bd9Sstevel@tonic-gate 
50577c478bd9Sstevel@tonic-gate 	return (mt_config_fini(hdl));	/* wait for threads to exit */
50587c478bd9Sstevel@tonic-gate }
50597c478bd9Sstevel@tonic-gate 
50607c478bd9Sstevel@tonic-gate /*
50617c478bd9Sstevel@tonic-gate  * Unconfigure children/descendants of the dip.
50627c478bd9Sstevel@tonic-gate  *
50637c478bd9Sstevel@tonic-gate  * If brevqp is not NULL, on return *brevqp is set to a queue of dip's
50647c478bd9Sstevel@tonic-gate  * child devinames for which branch remove events need to be generated.
50657c478bd9Sstevel@tonic-gate  */
50667c478bd9Sstevel@tonic-gate static int
50677c478bd9Sstevel@tonic-gate devi_unconfig_common(
50687c478bd9Sstevel@tonic-gate 	dev_info_t *dip,
50697c478bd9Sstevel@tonic-gate 	dev_info_t **dipp,
50707c478bd9Sstevel@tonic-gate 	int flags,
50717c478bd9Sstevel@tonic-gate 	major_t major,
50727c478bd9Sstevel@tonic-gate 	struct brevq_node **brevqp)
50737c478bd9Sstevel@tonic-gate {
50747c478bd9Sstevel@tonic-gate 	int rv;
50757c478bd9Sstevel@tonic-gate 	int pm_cookie;
50767c478bd9Sstevel@tonic-gate 	int (*f)();
50777c478bd9Sstevel@tonic-gate 	ddi_bus_config_op_t bus_op;
50787c478bd9Sstevel@tonic-gate 
50797c478bd9Sstevel@tonic-gate 	if (dipp)
50807c478bd9Sstevel@tonic-gate 		*dipp = NULL;
50817c478bd9Sstevel@tonic-gate 	if (brevqp)
50827c478bd9Sstevel@tonic-gate 		*brevqp = NULL;
50837c478bd9Sstevel@tonic-gate 
50847c478bd9Sstevel@tonic-gate 	/*
50857c478bd9Sstevel@tonic-gate 	 * Power up the dip if it is powered off.  If the flag bit
50867c478bd9Sstevel@tonic-gate 	 * NDI_AUTODETACH is set and the dip is not at its full power,
50877c478bd9Sstevel@tonic-gate 	 * skip the rest of the branch.
50887c478bd9Sstevel@tonic-gate 	 */
50897c478bd9Sstevel@tonic-gate 	if (pm_pre_unconfig(dip, flags, &pm_cookie, NULL) != DDI_SUCCESS)
50907c478bd9Sstevel@tonic-gate 		return ((flags & NDI_AUTODETACH) ? NDI_SUCCESS :
50917c478bd9Sstevel@tonic-gate 		    NDI_FAILURE);
50927c478bd9Sstevel@tonic-gate 
50937c478bd9Sstevel@tonic-gate 	/*
50947c478bd9Sstevel@tonic-gate 	 * Some callers, notably SCSI, need to clear out the devfs
50957c478bd9Sstevel@tonic-gate 	 * cache together with the unconfig to prevent stale entries.
50967c478bd9Sstevel@tonic-gate 	 */
50977c478bd9Sstevel@tonic-gate 	if (flags & NDI_DEVFS_CLEAN)
50987c478bd9Sstevel@tonic-gate 		(void) devfs_clean(dip, NULL, 0);
50997c478bd9Sstevel@tonic-gate 
51007c478bd9Sstevel@tonic-gate 	rv = unconfig_grand_children(dip, dipp, flags, major, brevqp);
51017c478bd9Sstevel@tonic-gate 
51027c478bd9Sstevel@tonic-gate 	if ((rv != NDI_SUCCESS) && ((flags & NDI_AUTODETACH) == 0)) {
51037c478bd9Sstevel@tonic-gate 		if (brevqp && *brevqp) {
51047c478bd9Sstevel@tonic-gate 			log_and_free_br_events_on_grand_children(dip, *brevqp);
51057c478bd9Sstevel@tonic-gate 			free_brevq(*brevqp);
51067c478bd9Sstevel@tonic-gate 			*brevqp = NULL;
51077c478bd9Sstevel@tonic-gate 		}
51087c478bd9Sstevel@tonic-gate 		pm_post_unconfig(dip, pm_cookie, NULL);
51097c478bd9Sstevel@tonic-gate 		return (rv);
51107c478bd9Sstevel@tonic-gate 	}
51117c478bd9Sstevel@tonic-gate 
51127c478bd9Sstevel@tonic-gate 	if (dipp && *dipp) {
51137c478bd9Sstevel@tonic-gate 		ndi_rele_devi(*dipp);
51147c478bd9Sstevel@tonic-gate 		*dipp = NULL;
51157c478bd9Sstevel@tonic-gate 	}
51167c478bd9Sstevel@tonic-gate 
51177c478bd9Sstevel@tonic-gate 	/*
51187c478bd9Sstevel@tonic-gate 	 * It is possible to have a detached nexus with children
51197c478bd9Sstevel@tonic-gate 	 * and grandchildren (for example: a branch consisting
51207c478bd9Sstevel@tonic-gate 	 * entirely of bound nodes.) Since the nexus is detached
51217c478bd9Sstevel@tonic-gate 	 * the bus_unconfig entry point cannot be used to remove
51227c478bd9Sstevel@tonic-gate 	 * or unconfigure the descendants.
51237c478bd9Sstevel@tonic-gate 	 */
5124737d277aScth 	if (!i_ddi_devi_attached(dip) ||
51257c478bd9Sstevel@tonic-gate 	    (DEVI(dip)->devi_ops->devo_bus_ops == NULL) ||
51267c478bd9Sstevel@tonic-gate 	    (DEVI(dip)->devi_ops->devo_bus_ops->busops_rev < BUSO_REV_5) ||
51277c478bd9Sstevel@tonic-gate 	    (f = DEVI(dip)->devi_ops->devo_bus_ops->bus_unconfig) == NULL) {
51287c478bd9Sstevel@tonic-gate 		rv = unconfig_immediate_children(dip, dipp, flags, major);
51297c478bd9Sstevel@tonic-gate 	} else {
51307c478bd9Sstevel@tonic-gate 		/*
51317c478bd9Sstevel@tonic-gate 		 * call bus_unconfig entry point
51327c478bd9Sstevel@tonic-gate 		 * It should reset nexus flags if unconfigure succeeds.
51337c478bd9Sstevel@tonic-gate 		 */
51347c478bd9Sstevel@tonic-gate 		bus_op = (major == (major_t)-1) ?
51357c478bd9Sstevel@tonic-gate 		    BUS_UNCONFIG_ALL : BUS_UNCONFIG_DRIVER;
51367c478bd9Sstevel@tonic-gate 		rv = (*f)(dip, flags, bus_op, (void *)(uintptr_t)major);
51377c478bd9Sstevel@tonic-gate 	}
51387c478bd9Sstevel@tonic-gate 
51397c478bd9Sstevel@tonic-gate 	pm_post_unconfig(dip, pm_cookie, NULL);
51407c478bd9Sstevel@tonic-gate 
51417c478bd9Sstevel@tonic-gate 	if (brevqp && *brevqp)
51427c478bd9Sstevel@tonic-gate 		cleanup_br_events_on_grand_children(dip, brevqp);
51437c478bd9Sstevel@tonic-gate 
51447c478bd9Sstevel@tonic-gate 	return (rv);
51457c478bd9Sstevel@tonic-gate }
51467c478bd9Sstevel@tonic-gate 
51477c478bd9Sstevel@tonic-gate /*
51487c478bd9Sstevel@tonic-gate  * called by devfs/framework to unconfigure children bound to major
51497c478bd9Sstevel@tonic-gate  * If NDI_AUTODETACH is specified, this is invoked by either the
51507c478bd9Sstevel@tonic-gate  * moduninstall daemon or the modunload -i 0 command.
51517c478bd9Sstevel@tonic-gate  */
51527c478bd9Sstevel@tonic-gate int
51537c478bd9Sstevel@tonic-gate ndi_devi_unconfig_driver(dev_info_t *dip, int flags, major_t major)
51547c478bd9Sstevel@tonic-gate {
51557c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT,
51567c478bd9Sstevel@tonic-gate 	    "ndi_devi_unconfig_driver: par = %s%d (%p), flags = 0x%x\n",
51577c478bd9Sstevel@tonic-gate 	    ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip, flags));
51587c478bd9Sstevel@tonic-gate 
51597c478bd9Sstevel@tonic-gate 	return (devi_unconfig_common(dip, NULL, flags, major, NULL));
51607c478bd9Sstevel@tonic-gate }
51617c478bd9Sstevel@tonic-gate 
51627c478bd9Sstevel@tonic-gate int
51637c478bd9Sstevel@tonic-gate ndi_devi_unconfig(dev_info_t *dip, int flags)
51647c478bd9Sstevel@tonic-gate {
51657c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT,
51667c478bd9Sstevel@tonic-gate 	    "ndi_devi_unconfig: par = %s%d (%p), flags = 0x%x\n",
51677c478bd9Sstevel@tonic-gate 	    ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip, flags));
51687c478bd9Sstevel@tonic-gate 
51697c478bd9Sstevel@tonic-gate 	return (devi_unconfig_common(dip, NULL, flags, (major_t)-1, NULL));
51707c478bd9Sstevel@tonic-gate }
51717c478bd9Sstevel@tonic-gate 
51727c478bd9Sstevel@tonic-gate int
51737c478bd9Sstevel@tonic-gate e_ddi_devi_unconfig(dev_info_t *dip, dev_info_t **dipp, int flags)
51747c478bd9Sstevel@tonic-gate {
51757c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT,
51767c478bd9Sstevel@tonic-gate 	    "e_ddi_devi_unconfig: par = %s%d (%p), flags = 0x%x\n",
51777c478bd9Sstevel@tonic-gate 	    ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip, flags));
51787c478bd9Sstevel@tonic-gate 
51797c478bd9Sstevel@tonic-gate 	return (devi_unconfig_common(dip, dipp, flags, (major_t)-1, NULL));
51807c478bd9Sstevel@tonic-gate }
51817c478bd9Sstevel@tonic-gate 
51827c478bd9Sstevel@tonic-gate /*
51837c478bd9Sstevel@tonic-gate  * Unconfigure child by name
51847c478bd9Sstevel@tonic-gate  */
51857c478bd9Sstevel@tonic-gate static int
51867c478bd9Sstevel@tonic-gate devi_unconfig_one(dev_info_t *pdip, char *devnm, int flags)
51877c478bd9Sstevel@tonic-gate {
51887c478bd9Sstevel@tonic-gate 	int		rv, circ;
51897c478bd9Sstevel@tonic-gate 	dev_info_t	*child;
51905e3986cbScth 	dev_info_t	*vdip = NULL;
51915e3986cbScth 	int		v_circ;
51927c478bd9Sstevel@tonic-gate 
51937c478bd9Sstevel@tonic-gate 	ndi_devi_enter(pdip, &circ);
51947c478bd9Sstevel@tonic-gate 	child = ndi_devi_findchild(pdip, devnm);
51955e3986cbScth 
51965e3986cbScth 	/*
51975e3986cbScth 	 * If child is pHCI and vHCI and pHCI are not siblings then enter vHCI
51985e3986cbScth 	 * before parent(pHCI) to avoid deadlock with mpxio Client power
51995e3986cbScth 	 * management operations.
52005e3986cbScth 	 */
52015e3986cbScth 	if (child && MDI_PHCI(child)) {
52025e3986cbScth 		vdip = mdi_devi_get_vdip(child);
52035e3986cbScth 		if (vdip && (ddi_get_parent(vdip) != pdip)) {
52045e3986cbScth 			ndi_devi_exit(pdip, circ);
52055e3986cbScth 
52065e3986cbScth 			/* use mdi_devi_enter ordering */
52075e3986cbScth 			ndi_devi_enter(vdip, &v_circ);
52085e3986cbScth 			ndi_devi_enter(pdip, &circ);
52095e3986cbScth 			child = ndi_devi_findchild(pdip, devnm);
52105e3986cbScth 		} else
52115e3986cbScth 			vdip = NULL;
52125e3986cbScth 	}
52135e3986cbScth 
52145e3986cbScth 	if (child) {
52155e3986cbScth 		rv = devi_detach_node(child, flags);
52165e3986cbScth 	} else {
52177c478bd9Sstevel@tonic-gate 		NDI_CONFIG_DEBUG((CE_CONT,
52187c478bd9Sstevel@tonic-gate 		    "devi_unconfig_one: %s not found\n", devnm));
52195e3986cbScth 		rv = NDI_SUCCESS;
5220c73a93f2Sdm120769 	}
52215e3986cbScth 
5222c73a93f2Sdm120769 	ndi_devi_exit(pdip, circ);
52235e3986cbScth 	if (vdip)
52245e3986cbScth 		ndi_devi_exit(pdip, v_circ);
52255e3986cbScth 
52267c478bd9Sstevel@tonic-gate 	return (rv);
52277c478bd9Sstevel@tonic-gate }
52287c478bd9Sstevel@tonic-gate 
52297c478bd9Sstevel@tonic-gate int
52307c478bd9Sstevel@tonic-gate ndi_devi_unconfig_one(
52317c478bd9Sstevel@tonic-gate 	dev_info_t *pdip,
52327c478bd9Sstevel@tonic-gate 	char *devnm,
52337c478bd9Sstevel@tonic-gate 	dev_info_t **dipp,
52347c478bd9Sstevel@tonic-gate 	int flags)
52357c478bd9Sstevel@tonic-gate {
52367c478bd9Sstevel@tonic-gate 	int		(*f)();
52377c478bd9Sstevel@tonic-gate 	int		circ, rv;
52387c478bd9Sstevel@tonic-gate 	int		pm_cookie;
52397c478bd9Sstevel@tonic-gate 	dev_info_t	*child;
52405e3986cbScth 	dev_info_t	*vdip = NULL;
52415e3986cbScth 	int		v_circ;
52427c478bd9Sstevel@tonic-gate 	struct brevq_node *brevq = NULL;
52437c478bd9Sstevel@tonic-gate 
5244737d277aScth 	ASSERT(i_ddi_devi_attached(pdip));
52457c478bd9Sstevel@tonic-gate 
52467c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT,
52477c478bd9Sstevel@tonic-gate 	    "ndi_devi_unconfig_one: par = %s%d (%p), child = %s\n",
52487c478bd9Sstevel@tonic-gate 	    ddi_driver_name(pdip), ddi_get_instance(pdip),
52497c478bd9Sstevel@tonic-gate 	    (void *)pdip, devnm));
52507c478bd9Sstevel@tonic-gate 
52517c478bd9Sstevel@tonic-gate 	if (pm_pre_unconfig(pdip, flags, &pm_cookie, devnm) != DDI_SUCCESS)
52527c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
52537c478bd9Sstevel@tonic-gate 
52547c478bd9Sstevel@tonic-gate 	if (dipp)
52557c478bd9Sstevel@tonic-gate 		*dipp = NULL;
52567c478bd9Sstevel@tonic-gate 
52577c478bd9Sstevel@tonic-gate 	ndi_devi_enter(pdip, &circ);
52587c478bd9Sstevel@tonic-gate 	child = ndi_devi_findchild(pdip, devnm);
52595e3986cbScth 
52605e3986cbScth 	/*
52615e3986cbScth 	 * If child is pHCI and vHCI and pHCI are not siblings then enter vHCI
52625e3986cbScth 	 * before parent(pHCI) to avoid deadlock with mpxio Client power
52635e3986cbScth 	 * management operations.
52645e3986cbScth 	 */
52655e3986cbScth 	if (child && MDI_PHCI(child)) {
52665e3986cbScth 		vdip = mdi_devi_get_vdip(child);
52675e3986cbScth 		if (vdip && (ddi_get_parent(vdip) != pdip)) {
52685e3986cbScth 			ndi_devi_exit(pdip, circ);
52695e3986cbScth 
52705e3986cbScth 			/* use mdi_devi_enter ordering */
52715e3986cbScth 			ndi_devi_enter(vdip, &v_circ);
52725e3986cbScth 			ndi_devi_enter(pdip, &circ);
52735e3986cbScth 			child = ndi_devi_findchild(pdip, devnm);
52745e3986cbScth 		} else
52755e3986cbScth 			vdip = NULL;
52765e3986cbScth 	}
52775e3986cbScth 
52787c478bd9Sstevel@tonic-gate 	if (child == NULL) {
52797c478bd9Sstevel@tonic-gate 		NDI_CONFIG_DEBUG((CE_CONT, "ndi_devi_unconfig_one: %s"
52807c478bd9Sstevel@tonic-gate 		    " not found\n", devnm));
52815e3986cbScth 		rv = NDI_SUCCESS;
52825e3986cbScth 		goto out;
52837c478bd9Sstevel@tonic-gate 	}
52847c478bd9Sstevel@tonic-gate 
52857c478bd9Sstevel@tonic-gate 	/*
52867c478bd9Sstevel@tonic-gate 	 * Unconfigure children/descendants of named child
52877c478bd9Sstevel@tonic-gate 	 */
52887c478bd9Sstevel@tonic-gate 	rv = devi_unconfig_branch(child, dipp, flags | NDI_UNCONFIG, &brevq);
52897c478bd9Sstevel@tonic-gate 	if (rv != NDI_SUCCESS)
52907c478bd9Sstevel@tonic-gate 		goto out;
52917c478bd9Sstevel@tonic-gate 
52927c478bd9Sstevel@tonic-gate 	init_bound_node_ev(pdip, child, flags);
52937c478bd9Sstevel@tonic-gate 
52947c478bd9Sstevel@tonic-gate 	if ((DEVI(pdip)->devi_ops->devo_bus_ops == NULL) ||
52957c478bd9Sstevel@tonic-gate 	    (DEVI(pdip)->devi_ops->devo_bus_ops->busops_rev < BUSO_REV_5) ||
52967c478bd9Sstevel@tonic-gate 	    (f = DEVI(pdip)->devi_ops->devo_bus_ops->bus_unconfig) == NULL) {
52977c478bd9Sstevel@tonic-gate 		rv = devi_detach_node(child, flags);
52987c478bd9Sstevel@tonic-gate 	} else {
52997c478bd9Sstevel@tonic-gate 		/* call bus_config entry point */
53007c478bd9Sstevel@tonic-gate 		rv = (*f)(pdip, flags, BUS_UNCONFIG_ONE, (void *)devnm);
53017c478bd9Sstevel@tonic-gate 	}
53027c478bd9Sstevel@tonic-gate 
53037c478bd9Sstevel@tonic-gate 	if (brevq) {
53047c478bd9Sstevel@tonic-gate 		if (rv != NDI_SUCCESS)
53057c478bd9Sstevel@tonic-gate 			log_and_free_brevq_dip(child, brevq);
53067c478bd9Sstevel@tonic-gate 		else
53077c478bd9Sstevel@tonic-gate 			free_brevq(brevq);
53087c478bd9Sstevel@tonic-gate 	}
53097c478bd9Sstevel@tonic-gate 
53107c478bd9Sstevel@tonic-gate 	if (dipp && rv != NDI_SUCCESS) {
53117c478bd9Sstevel@tonic-gate 		ndi_hold_devi(child);
53127c478bd9Sstevel@tonic-gate 		ASSERT(*dipp == NULL);
53137c478bd9Sstevel@tonic-gate 		*dipp = child;
53147c478bd9Sstevel@tonic-gate 	}
53157c478bd9Sstevel@tonic-gate 
53167c478bd9Sstevel@tonic-gate out:
53177c478bd9Sstevel@tonic-gate 	ndi_devi_exit(pdip, circ);
53185e3986cbScth 	if (vdip)
53195e3986cbScth 		ndi_devi_exit(pdip, v_circ);
53205e3986cbScth 
53217c478bd9Sstevel@tonic-gate 	pm_post_unconfig(pdip, pm_cookie, devnm);
53227c478bd9Sstevel@tonic-gate 
53237c478bd9Sstevel@tonic-gate 	return (rv);
53247c478bd9Sstevel@tonic-gate }
53257c478bd9Sstevel@tonic-gate 
53267c478bd9Sstevel@tonic-gate struct async_arg {
53277c478bd9Sstevel@tonic-gate 	dev_info_t *dip;
53287c478bd9Sstevel@tonic-gate 	uint_t flags;
53297c478bd9Sstevel@tonic-gate };
53307c478bd9Sstevel@tonic-gate 
53317c478bd9Sstevel@tonic-gate /*
53327c478bd9Sstevel@tonic-gate  * Common async handler for:
53337c478bd9Sstevel@tonic-gate  *	ndi_devi_bind_driver_async
53347c478bd9Sstevel@tonic-gate  *	ndi_devi_online_async
53357c478bd9Sstevel@tonic-gate  */
53367c478bd9Sstevel@tonic-gate static int
53377c478bd9Sstevel@tonic-gate i_ndi_devi_async_common(dev_info_t *dip, uint_t flags, void (*func)())
53387c478bd9Sstevel@tonic-gate {
53397c478bd9Sstevel@tonic-gate 	int tqflag;
53407c478bd9Sstevel@tonic-gate 	int kmflag;
53417c478bd9Sstevel@tonic-gate 	struct async_arg *arg;
53427c478bd9Sstevel@tonic-gate 	dev_info_t *pdip = ddi_get_parent(dip);
53437c478bd9Sstevel@tonic-gate 
53447c478bd9Sstevel@tonic-gate 	ASSERT(pdip);
53457c478bd9Sstevel@tonic-gate 	ASSERT(DEVI(pdip)->devi_taskq);
53467c478bd9Sstevel@tonic-gate 	ASSERT(ndi_dev_is_persistent_node(dip));
53477c478bd9Sstevel@tonic-gate 
53487c478bd9Sstevel@tonic-gate 	if (flags & NDI_NOSLEEP) {
53497c478bd9Sstevel@tonic-gate 		kmflag = KM_NOSLEEP;
53507c478bd9Sstevel@tonic-gate 		tqflag = TQ_NOSLEEP;
53517c478bd9Sstevel@tonic-gate 	} else {
53527c478bd9Sstevel@tonic-gate 		kmflag = KM_SLEEP;
53537c478bd9Sstevel@tonic-gate 		tqflag = TQ_SLEEP;
53547c478bd9Sstevel@tonic-gate 	}
53557c478bd9Sstevel@tonic-gate 
53567c478bd9Sstevel@tonic-gate 	arg = kmem_alloc(sizeof (*arg), kmflag);
53577c478bd9Sstevel@tonic-gate 	if (arg == NULL)
53587c478bd9Sstevel@tonic-gate 		goto fail;
53597c478bd9Sstevel@tonic-gate 
53607c478bd9Sstevel@tonic-gate 	arg->flags = flags;
53617c478bd9Sstevel@tonic-gate 	arg->dip = dip;
53627c478bd9Sstevel@tonic-gate 	if (ddi_taskq_dispatch(DEVI(pdip)->devi_taskq, func, arg, tqflag) ==
53637c478bd9Sstevel@tonic-gate 	    DDI_SUCCESS) {
53647c478bd9Sstevel@tonic-gate 		return (NDI_SUCCESS);
53657c478bd9Sstevel@tonic-gate 	}
53667c478bd9Sstevel@tonic-gate 
53677c478bd9Sstevel@tonic-gate fail:
53687c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT, "%s%d: ddi_taskq_dispatch failed",
53697c478bd9Sstevel@tonic-gate 	    ddi_driver_name(pdip), ddi_get_instance(pdip)));
53707c478bd9Sstevel@tonic-gate 
53717c478bd9Sstevel@tonic-gate 	if (arg)
53727c478bd9Sstevel@tonic-gate 		kmem_free(arg, sizeof (*arg));
53737c478bd9Sstevel@tonic-gate 	return (NDI_FAILURE);
53747c478bd9Sstevel@tonic-gate }
53757c478bd9Sstevel@tonic-gate 
53767c478bd9Sstevel@tonic-gate static void
53777c478bd9Sstevel@tonic-gate i_ndi_devi_bind_driver_cb(struct async_arg *arg)
53787c478bd9Sstevel@tonic-gate {
53797c478bd9Sstevel@tonic-gate 	(void) ndi_devi_bind_driver(arg->dip, arg->flags);
53807c478bd9Sstevel@tonic-gate 	kmem_free(arg, sizeof (*arg));
53817c478bd9Sstevel@tonic-gate }
53827c478bd9Sstevel@tonic-gate 
53837c478bd9Sstevel@tonic-gate int
53847c478bd9Sstevel@tonic-gate ndi_devi_bind_driver_async(dev_info_t *dip, uint_t flags)
53857c478bd9Sstevel@tonic-gate {
53867c478bd9Sstevel@tonic-gate 	return (i_ndi_devi_async_common(dip, flags,
53877c478bd9Sstevel@tonic-gate 	    (void (*)())i_ndi_devi_bind_driver_cb));
53887c478bd9Sstevel@tonic-gate }
53897c478bd9Sstevel@tonic-gate 
53907c478bd9Sstevel@tonic-gate /*
53917c478bd9Sstevel@tonic-gate  * place the devinfo in the ONLINE state.
53927c478bd9Sstevel@tonic-gate  */
53937c478bd9Sstevel@tonic-gate int
53947c478bd9Sstevel@tonic-gate ndi_devi_online(dev_info_t *dip, uint_t flags)
53957c478bd9Sstevel@tonic-gate {
53967c478bd9Sstevel@tonic-gate 	int circ, rv;
53977c478bd9Sstevel@tonic-gate 	dev_info_t *pdip = ddi_get_parent(dip);
53987c478bd9Sstevel@tonic-gate 	int branch_event = 0;
53997c478bd9Sstevel@tonic-gate 
54007c478bd9Sstevel@tonic-gate 	ASSERT(pdip);
54017c478bd9Sstevel@tonic-gate 
54027c478bd9Sstevel@tonic-gate 	NDI_CONFIG_DEBUG((CE_CONT, "ndi_devi_online: %s%d (%p)\n",
54037c478bd9Sstevel@tonic-gate 		ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip));
54047c478bd9Sstevel@tonic-gate 
54057c478bd9Sstevel@tonic-gate 	ndi_devi_enter(pdip, &circ);
54067c478bd9Sstevel@tonic-gate 	/* bind child before merging .conf nodes */
54077c478bd9Sstevel@tonic-gate 	rv = i_ndi_config_node(dip, DS_BOUND, flags);
54087c478bd9Sstevel@tonic-gate 	if (rv != NDI_SUCCESS) {
54097c478bd9Sstevel@tonic-gate 		ndi_devi_exit(pdip, circ);
54107c478bd9Sstevel@tonic-gate 		return (rv);
54117c478bd9Sstevel@tonic-gate 	}
54127c478bd9Sstevel@tonic-gate 
54137c478bd9Sstevel@tonic-gate 	/* merge .conf properties */
54147c478bd9Sstevel@tonic-gate 	(void) i_ndi_make_spec_children(pdip, flags);
54157c478bd9Sstevel@tonic-gate 
5416c73a93f2Sdm120769 	flags |= (NDI_DEVI_ONLINE | NDI_CONFIG);
54177c478bd9Sstevel@tonic-gate 
54187c478bd9Sstevel@tonic-gate 	if (flags & NDI_NO_EVENT) {
54197c478bd9Sstevel@tonic-gate 		/*
54207c478bd9Sstevel@tonic-gate 		 * Caller is specifically asking for not to generate an event.
54217c478bd9Sstevel@tonic-gate 		 * Set the following flag so that devi_attach_node() don't
54227c478bd9Sstevel@tonic-gate 		 * change the event state.
54237c478bd9Sstevel@tonic-gate 		 */
54247c478bd9Sstevel@tonic-gate 		flags |= NDI_NO_EVENT_STATE_CHNG;
54257c478bd9Sstevel@tonic-gate 	}
54267c478bd9Sstevel@tonic-gate 
54277c478bd9Sstevel@tonic-gate 	if ((flags & (NDI_NO_EVENT | NDI_BRANCH_EVENT_OP)) == 0 &&
54287c478bd9Sstevel@tonic-gate 	    ((flags & NDI_CONFIG) || DEVI_NEED_NDI_CONFIG(dip))) {
54297c478bd9Sstevel@tonic-gate 		flags |= NDI_BRANCH_EVENT_OP;
54307c478bd9Sstevel@tonic-gate 		branch_event = 1;
54317c478bd9Sstevel@tonic-gate 	}
54327c478bd9Sstevel@tonic-gate 
54337c478bd9Sstevel@tonic-gate 	/*
54347c478bd9Sstevel@tonic-gate 	 * devi_attach_node() may remove dip on failure
54357c478bd9Sstevel@tonic-gate 	 */
54367c478bd9Sstevel@tonic-gate 	if ((rv = devi_attach_node(dip, flags)) == NDI_SUCCESS) {
54377c478bd9Sstevel@tonic-gate 		if ((flags & NDI_CONFIG) || DEVI_NEED_NDI_CONFIG(dip)) {
54387c478bd9Sstevel@tonic-gate 			(void) ndi_devi_config(dip, flags);
54397c478bd9Sstevel@tonic-gate 		}
54407c478bd9Sstevel@tonic-gate 
54417c478bd9Sstevel@tonic-gate 		if (branch_event)
54427c478bd9Sstevel@tonic-gate 			(void) i_log_devfs_branch_add(dip);
54437c478bd9Sstevel@tonic-gate 	}
54447c478bd9Sstevel@tonic-gate 
54457c478bd9Sstevel@tonic-gate 	ndi_devi_exit(pdip, circ);
54467c478bd9Sstevel@tonic-gate 
54477c478bd9Sstevel@tonic-gate 	/*
54487c478bd9Sstevel@tonic-gate 	 * Notify devfs that we have a new node. Devfs needs to invalidate
54497c478bd9Sstevel@tonic-gate 	 * cached directory contents.
54507c478bd9Sstevel@tonic-gate 	 *
54517c478bd9Sstevel@tonic-gate 	 * For PCMCIA devices, it is possible the pdip is not fully
54527c478bd9Sstevel@tonic-gate 	 * attached. In this case, calling back into devfs will
54537c478bd9Sstevel@tonic-gate 	 * result in a loop or assertion error. Hence, the check
54547c478bd9Sstevel@tonic-gate 	 * on node state.
54557c478bd9Sstevel@tonic-gate 	 *
54567c478bd9Sstevel@tonic-gate 	 * If we own parent lock, this is part of a branch operation.
54577c478bd9Sstevel@tonic-gate 	 * We skip the devfs_clean() step because the cache invalidation
54587c478bd9Sstevel@tonic-gate 	 * is done higher up in the device tree.
54597c478bd9Sstevel@tonic-gate 	 */
5460737d277aScth 	if (rv == NDI_SUCCESS && i_ddi_devi_attached(pdip) &&
54617c478bd9Sstevel@tonic-gate 	    !DEVI_BUSY_OWNED(pdip))
54627c478bd9Sstevel@tonic-gate 		(void) devfs_clean(pdip, NULL, 0);
54637c478bd9Sstevel@tonic-gate 	return (rv);
54647c478bd9Sstevel@tonic-gate }
54657c478bd9Sstevel@tonic-gate 
54667c478bd9Sstevel@tonic-gate static void
54677c478bd9Sstevel@tonic-gate i_ndi_devi_online_cb(struct async_arg *arg)
54687c478bd9Sstevel@tonic-gate {
54697c478bd9Sstevel@tonic-gate 	(void) ndi_devi_online(arg->dip, arg->flags);
54707c478bd9Sstevel@tonic-gate 	kmem_free(arg, sizeof (*arg));
54717c478bd9Sstevel@tonic-gate }
54727c478bd9Sstevel@tonic-gate 
54737c478bd9Sstevel@tonic-gate int
54747c478bd9Sstevel@tonic-gate ndi_devi_online_async(dev_info_t *dip, uint_t flags)
54757c478bd9Sstevel@tonic-gate {
54767c478bd9Sstevel@tonic-gate 	/* mark child as need config if requested. */
547716747f41Scth 	if (flags & NDI_CONFIG) {
547816747f41Scth 		mutex_enter(&(DEVI(dip)->devi_lock));
54797c478bd9Sstevel@tonic-gate 		DEVI_SET_NDI_CONFIG(dip);
548016747f41Scth 		mutex_exit(&(DEVI(dip)->devi_lock));
548116747f41Scth 	}
54827c478bd9Sstevel@tonic-gate 
54837c478bd9Sstevel@tonic-gate 	return (i_ndi_devi_async_common(dip, flags,
54847c478bd9Sstevel@tonic-gate 	    (void (*)())i_ndi_devi_online_cb));
54857c478bd9Sstevel@tonic-gate }
54867c478bd9Sstevel@tonic-gate 
54877c478bd9Sstevel@tonic-gate /*
54887c478bd9Sstevel@tonic-gate  * Take a device node Offline
54897c478bd9Sstevel@tonic-gate  * To take a device Offline means to detach the device instance from
54907c478bd9Sstevel@tonic-gate  * the driver and prevent devfs requests from re-attaching the device
54917c478bd9Sstevel@tonic-gate  * instance.
54927c478bd9Sstevel@tonic-gate  *
54937c478bd9Sstevel@tonic-gate  * The flag NDI_DEVI_REMOVE causes removes the device node from
54947c478bd9Sstevel@tonic-gate  * the driver list and the device tree. In this case, the device
54957c478bd9Sstevel@tonic-gate  * is assumed to be removed from the system.
54967c478bd9Sstevel@tonic-gate  */
54977c478bd9Sstevel@tonic-gate int
54987c478bd9Sstevel@tonic-gate ndi_devi_offline(dev_info_t *dip, uint_t flags)
54997c478bd9Sstevel@tonic-gate {
55007c478bd9Sstevel@tonic-gate 	int		circ, rval = 0;
55017c478bd9Sstevel@tonic-gate 	dev_info_t	*pdip = ddi_get_parent(dip);
55025e3986cbScth 	dev_info_t	*vdip = NULL;
55035e3986cbScth 	int		v_circ;
55047c478bd9Sstevel@tonic-gate 	struct brevq_node *brevq = NULL;
55057c478bd9Sstevel@tonic-gate 
55067c478bd9Sstevel@tonic-gate 	ASSERT(pdip);
55077c478bd9Sstevel@tonic-gate 
55087c478bd9Sstevel@tonic-gate 	flags |= NDI_DEVI_OFFLINE;
55095e3986cbScth 
55105e3986cbScth 	/*
55115e3986cbScth 	 * If child is pHCI and vHCI and pHCI are not siblings then enter vHCI
55125e3986cbScth 	 * before parent(pHCI) to avoid deadlock with mpxio Client power
55135e3986cbScth 	 * management operations.
55145e3986cbScth 	 */
55155e3986cbScth 	if (MDI_PHCI(dip)) {
55165e3986cbScth 		vdip = mdi_devi_get_vdip(dip);
55175e3986cbScth 		if (vdip && (ddi_get_parent(vdip) != pdip))
55185e3986cbScth 			ndi_devi_enter(vdip, &v_circ);
55195e3986cbScth 		else
55205e3986cbScth 			vdip = NULL;
55215e3986cbScth 	}
55227c478bd9Sstevel@tonic-gate 	ndi_devi_enter(pdip, &circ);
55235e3986cbScth 
55247c478bd9Sstevel@tonic-gate 	if (i_ddi_node_state(dip) == DS_READY) {
55257c478bd9Sstevel@tonic-gate 		/*
55267c478bd9Sstevel@tonic-gate 		 * If dip is in DS_READY state, there may be cached dv_nodes
55277c478bd9Sstevel@tonic-gate 		 * referencing this dip, so we invoke devfs code path.
55287c478bd9Sstevel@tonic-gate 		 * Note that we must release busy changing on pdip to
55297c478bd9Sstevel@tonic-gate 		 * avoid deadlock against devfs.
55307c478bd9Sstevel@tonic-gate 		 */
55317c478bd9Sstevel@tonic-gate 		char *devname = kmem_alloc(MAXNAMELEN + 1, KM_SLEEP);
55327c478bd9Sstevel@tonic-gate 		(void) ddi_deviname(dip, devname);
55335e3986cbScth 
55347c478bd9Sstevel@tonic-gate 		ndi_devi_exit(pdip, circ);
55355e3986cbScth 		if (vdip)
55365e3986cbScth 			ndi_devi_exit(vdip, v_circ);
55377c478bd9Sstevel@tonic-gate 
55387c478bd9Sstevel@tonic-gate 		/*
55397c478bd9Sstevel@tonic-gate 		 * If we own parent lock, this is part of a branch
55407c478bd9Sstevel@tonic-gate 		 * operation. We skip the devfs_clean() step.
55417c478bd9Sstevel@tonic-gate 		 */
55427c478bd9Sstevel@tonic-gate 		if (!DEVI_BUSY_OWNED(pdip))
55437c478bd9Sstevel@tonic-gate 			rval = devfs_clean(pdip, devname + 1, DV_CLEAN_FORCE);
55447c478bd9Sstevel@tonic-gate 		kmem_free(devname, MAXNAMELEN + 1);
55457c478bd9Sstevel@tonic-gate 
55467c478bd9Sstevel@tonic-gate 		if (rval == 0)
55477c478bd9Sstevel@tonic-gate 			rval = devi_unconfig_branch(dip, NULL,
55487c478bd9Sstevel@tonic-gate 			    flags|NDI_UNCONFIG, &brevq);
55497c478bd9Sstevel@tonic-gate 		if (rval)
55507c478bd9Sstevel@tonic-gate 			return (NDI_FAILURE);
55517c478bd9Sstevel@tonic-gate 
55525e3986cbScth 		if (vdip)
55535e3986cbScth 			ndi_devi_enter(vdip, &v_circ);
55547c478bd9Sstevel@tonic-gate 		ndi_devi_enter(pdip, &circ);
55557c478bd9Sstevel@tonic-gate 	}
55567c478bd9Sstevel@tonic-gate 
55577c478bd9Sstevel@tonic-gate 	init_bound_node_ev(pdip, dip, flags);
55587c478bd9Sstevel@tonic-gate 
55597c478bd9Sstevel@tonic-gate 	rval = devi_detach_node(dip, flags);
55607c478bd9Sstevel@tonic-gate 	if (brevq) {
55617c478bd9Sstevel@tonic-gate 		if (rval != NDI_SUCCESS)
55627c478bd9Sstevel@tonic-gate 			log_and_free_brevq_dip(dip, brevq);
55637c478bd9Sstevel@tonic-gate 		else
55647c478bd9Sstevel@tonic-gate 			free_brevq(brevq);
55657c478bd9Sstevel@tonic-gate 	}
55667c478bd9Sstevel@tonic-gate 
55677c478bd9Sstevel@tonic-gate 	ndi_devi_exit(pdip, circ);
55685e3986cbScth 	if (vdip)
55695e3986cbScth 		ndi_devi_exit(vdip, v_circ);
55707c478bd9Sstevel@tonic-gate 
55717c478bd9Sstevel@tonic-gate 	return (rval);
55727c478bd9Sstevel@tonic-gate }
55737c478bd9Sstevel@tonic-gate 
55747c478bd9Sstevel@tonic-gate /*
55757c478bd9Sstevel@tonic-gate  * Find the child dev_info node of parent nexus 'p' whose name
55767c478bd9Sstevel@tonic-gate  * matches "cname@caddr".  Recommend use of ndi_devi_findchild() instead.
55777c478bd9Sstevel@tonic-gate  */
55787c478bd9Sstevel@tonic-gate dev_info_t *
55797c478bd9Sstevel@tonic-gate ndi_devi_find(dev_info_t *pdip, char *cname, char *caddr)
55807c478bd9Sstevel@tonic-gate {
55817c478bd9Sstevel@tonic-gate 	dev_info_t *child;
55827c478bd9Sstevel@tonic-gate 	int circ;
55837c478bd9Sstevel@tonic-gate 
55847c478bd9Sstevel@tonic-gate 	if (pdip == NULL || cname == NULL || caddr == NULL)
55857c478bd9Sstevel@tonic-gate 		return ((dev_info_t *)NULL);
55867c478bd9Sstevel@tonic-gate 
55877c478bd9Sstevel@tonic-gate 	ndi_devi_enter(pdip, &circ);
55887c478bd9Sstevel@tonic-gate 	child = find_sibling(ddi_get_child(pdip), cname, caddr, 0, NULL);
55897c478bd9Sstevel@tonic-gate 	ndi_devi_exit(pdip, circ);
55907c478bd9Sstevel@tonic-gate 	return (child);
55917c478bd9Sstevel@tonic-gate }
55927c478bd9Sstevel@tonic-gate 
55937c478bd9Sstevel@tonic-gate /*
55947c478bd9Sstevel@tonic-gate  * Find the child dev_info node of parent nexus 'p' whose name
55957c478bd9Sstevel@tonic-gate  * matches devname "name@addr".  Permits caller to hold the parent.
55967c478bd9Sstevel@tonic-gate  */
55977c478bd9Sstevel@tonic-gate dev_info_t *
55987c478bd9Sstevel@tonic-gate ndi_devi_findchild(dev_info_t *pdip, char *devname)
55997c478bd9Sstevel@tonic-gate {
56007c478bd9Sstevel@tonic-gate 	dev_info_t *child;
56017c478bd9Sstevel@tonic-gate 	char	*cname, *caddr;
56027c478bd9Sstevel@tonic-gate 	char	*devstr;
56037c478bd9Sstevel@tonic-gate 
56047c478bd9Sstevel@tonic-gate 	ASSERT(DEVI_BUSY_OWNED(pdip));
56057c478bd9Sstevel@tonic-gate 
56067c478bd9Sstevel@tonic-gate 	devstr = i_ddi_strdup(devname, KM_SLEEP);
56077c478bd9Sstevel@tonic-gate 	i_ddi_parse_name(devstr, &cname, &caddr, NULL);
56087c478bd9Sstevel@tonic-gate 
56097c478bd9Sstevel@tonic-gate 	if (cname == NULL || caddr == NULL) {
56107c478bd9Sstevel@tonic-gate 		kmem_free(devstr, strlen(devname)+1);
56117c478bd9Sstevel@tonic-gate 		return ((dev_info_t *)NULL);
56127c478bd9Sstevel@tonic-gate 	}
56137c478bd9Sstevel@tonic-gate 
56147c478bd9Sstevel@tonic-gate 	child = find_sibling(ddi_get_child(pdip), cname, caddr, 0, NULL);
56157c478bd9Sstevel@tonic-gate 	kmem_free(devstr, strlen(devname)+1);
56167c478bd9Sstevel@tonic-gate 	return (child);
56177c478bd9Sstevel@tonic-gate }
56187c478bd9Sstevel@tonic-gate 
56197c478bd9Sstevel@tonic-gate /*
56207c478bd9Sstevel@tonic-gate  * Misc. routines called by framework only
56217c478bd9Sstevel@tonic-gate  */
56227c478bd9Sstevel@tonic-gate 
56237c478bd9Sstevel@tonic-gate /*
56247c478bd9Sstevel@tonic-gate  * Clear the DEVI_MADE_CHILDREN/DEVI_ATTACHED_CHILDREN flags
56257c478bd9Sstevel@tonic-gate  * if new child spec has been added.
56267c478bd9Sstevel@tonic-gate  */
56277c478bd9Sstevel@tonic-gate static int
56287c478bd9Sstevel@tonic-gate reset_nexus_flags(dev_info_t *dip, void *arg)
56297c478bd9Sstevel@tonic-gate {
56307c478bd9Sstevel@tonic-gate 	struct hwc_spec	*list;
56316a41d557Scth 	int		circ;
56327c478bd9Sstevel@tonic-gate 
56337c478bd9Sstevel@tonic-gate 	if (((DEVI(dip)->devi_flags & DEVI_MADE_CHILDREN) == 0) ||
56347c478bd9Sstevel@tonic-gate 	    ((list = hwc_get_child_spec(dip, (major_t)(uintptr_t)arg)) == NULL))
56357c478bd9Sstevel@tonic-gate 		return (DDI_WALK_CONTINUE);
56367c478bd9Sstevel@tonic-gate 
56377c478bd9Sstevel@tonic-gate 	hwc_free_spec_list(list);
56386a41d557Scth 
56396a41d557Scth 	/* coordinate child state update */
56406a41d557Scth 	ndi_devi_enter(dip, &circ);
56417c478bd9Sstevel@tonic-gate 	mutex_enter(&DEVI(dip)->devi_lock);
56427c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_flags &= ~(DEVI_MADE_CHILDREN | DEVI_ATTACHED_CHILDREN);
56437c478bd9Sstevel@tonic-gate 	mutex_exit(&DEVI(dip)->devi_lock);
56446a41d557Scth 	ndi_devi_exit(dip, circ);
56457c478bd9Sstevel@tonic-gate 
56467c478bd9Sstevel@tonic-gate 	return (DDI_WALK_CONTINUE);
56477c478bd9Sstevel@tonic-gate }
56487c478bd9Sstevel@tonic-gate 
56497c478bd9Sstevel@tonic-gate /*
56507c478bd9Sstevel@tonic-gate  * Helper functions, returns NULL if no memory.
56517c478bd9Sstevel@tonic-gate  */
56527c478bd9Sstevel@tonic-gate 
56537c478bd9Sstevel@tonic-gate /*
56547c478bd9Sstevel@tonic-gate  * path_to_major:
56557c478bd9Sstevel@tonic-gate  *
56567c478bd9Sstevel@tonic-gate  * Return an alternate driver name binding for the leaf device
56577c478bd9Sstevel@tonic-gate  * of the given pathname, if there is one. The purpose of this
56587c478bd9Sstevel@tonic-gate  * function is to deal with generic pathnames. The default action
56597c478bd9Sstevel@tonic-gate  * for platforms that can't do this (ie: x86 or any platform that
56607c478bd9Sstevel@tonic-gate  * does not have prom_finddevice functionality, which matches
56617c478bd9Sstevel@tonic-gate  * nodenames and unit-addresses without the drivers participation)
56627c478bd9Sstevel@tonic-gate  * is to return (major_t)-1.
56637c478bd9Sstevel@tonic-gate  *
56647c478bd9Sstevel@tonic-gate  * Used in loadrootmodules() in the swapgeneric module to
56657c478bd9Sstevel@tonic-gate  * associate a given pathname with a given leaf driver.
56667c478bd9Sstevel@tonic-gate  *
56677c478bd9Sstevel@tonic-gate  */
56687c478bd9Sstevel@tonic-gate major_t
56697c478bd9Sstevel@tonic-gate path_to_major(char *path)
56707c478bd9Sstevel@tonic-gate {
56717c478bd9Sstevel@tonic-gate 	dev_info_t *dip;
56727c478bd9Sstevel@tonic-gate 	char *p, *q;
5673fa9e4066Sahrens 	pnode_t nodeid;
56747c478bd9Sstevel@tonic-gate 	major_t maj;
56757c478bd9Sstevel@tonic-gate 
56767c478bd9Sstevel@tonic-gate 	/*
56777c478bd9Sstevel@tonic-gate 	 * Get the nodeid of the given pathname, if such a mapping exists.
56787c478bd9Sstevel@tonic-gate 	 */
56797c478bd9Sstevel@tonic-gate 	dip = NULL;
56807c478bd9Sstevel@tonic-gate 	nodeid = prom_finddevice(path);
56817c478bd9Sstevel@tonic-gate 	if (nodeid != OBP_BADNODE) {
56827c478bd9Sstevel@tonic-gate 		/*
56837c478bd9Sstevel@tonic-gate 		 * Find the nodeid in our copy of the device tree and return
56847c478bd9Sstevel@tonic-gate 		 * whatever name we used to bind this node to a driver.
56857c478bd9Sstevel@tonic-gate 		 */
56867c478bd9Sstevel@tonic-gate 		dip = e_ddi_nodeid_to_dip(nodeid);
56877c478bd9Sstevel@tonic-gate 	}
56887c478bd9Sstevel@tonic-gate 
56897c478bd9Sstevel@tonic-gate 	if (dip == NULL) {
56907c478bd9Sstevel@tonic-gate 		NDI_CONFIG_DEBUG((CE_WARN,
56917c478bd9Sstevel@tonic-gate 		    "path_to_major: can't bind <%s>\n", path));
56927c478bd9Sstevel@tonic-gate 		return ((major_t)-1);
56937c478bd9Sstevel@tonic-gate 	}
56947c478bd9Sstevel@tonic-gate 
56957c478bd9Sstevel@tonic-gate 	/*
56967c478bd9Sstevel@tonic-gate 	 * If we're bound to something other than the nodename,
56977c478bd9Sstevel@tonic-gate 	 * note that in the message buffer and system log.
56987c478bd9Sstevel@tonic-gate 	 */
56997c478bd9Sstevel@tonic-gate 	p = ddi_binding_name(dip);
57007c478bd9Sstevel@tonic-gate 	q = ddi_node_name(dip);
57017c478bd9Sstevel@tonic-gate 	if (p && q && (strcmp(p, q) != 0))
57027c478bd9Sstevel@tonic-gate 		NDI_CONFIG_DEBUG((CE_NOTE, "path_to_major: %s bound to %s\n",
57037c478bd9Sstevel@tonic-gate 		    path, p));
57047c478bd9Sstevel@tonic-gate 
57057c478bd9Sstevel@tonic-gate 	maj = ddi_name_to_major(p);
57067c478bd9Sstevel@tonic-gate 
57077c478bd9Sstevel@tonic-gate 	ndi_rele_devi(dip);		/* release node held during walk */
57087c478bd9Sstevel@tonic-gate 
57097c478bd9Sstevel@tonic-gate 	return (maj);
57107c478bd9Sstevel@tonic-gate }
57117c478bd9Sstevel@tonic-gate 
57127c478bd9Sstevel@tonic-gate /*
57137c478bd9Sstevel@tonic-gate  * Return the held dip for the specified major and instance, attempting to do
57147c478bd9Sstevel@tonic-gate  * an attach if specified. Return NULL if the devi can't be found or put in
57157c478bd9Sstevel@tonic-gate  * the proper state. The caller must release the hold via ddi_release_devi if
57167c478bd9Sstevel@tonic-gate  * a non-NULL value is returned.
57177c478bd9Sstevel@tonic-gate  *
57187c478bd9Sstevel@tonic-gate  * Some callers expect to be able to perform a hold_devi() while in a context
57197c478bd9Sstevel@tonic-gate  * where using ndi_devi_enter() to ensure the hold might cause deadlock (see
57207c478bd9Sstevel@tonic-gate  * open-from-attach code in consconfig_dacf.c). Such special-case callers
57217c478bd9Sstevel@tonic-gate  * must ensure that an ndi_devi_enter(parent)/ndi_devi_hold() from a safe
57227c478bd9Sstevel@tonic-gate  * context is already active. The hold_devi() implementation must accommodate
57237c478bd9Sstevel@tonic-gate  * these callers.
57247c478bd9Sstevel@tonic-gate  */
57257c478bd9Sstevel@tonic-gate static dev_info_t *
57267c478bd9Sstevel@tonic-gate hold_devi(major_t major, int instance, int flags)
57277c478bd9Sstevel@tonic-gate {
57287c478bd9Sstevel@tonic-gate 	struct devnames	*dnp;
57297c478bd9Sstevel@tonic-gate 	dev_info_t	*dip;
57307c478bd9Sstevel@tonic-gate 	char		*path;
57317c478bd9Sstevel@tonic-gate 
57327c478bd9Sstevel@tonic-gate 	if ((major >= devcnt) || (instance == -1))
57337c478bd9Sstevel@tonic-gate 		return (NULL);
57347c478bd9Sstevel@tonic-gate 
57357c478bd9Sstevel@tonic-gate 	/* try to find the instance in the per driver list */
57367c478bd9Sstevel@tonic-gate 	dnp = &(devnamesp[major]);
57377c478bd9Sstevel@tonic-gate 	LOCK_DEV_OPS(&(dnp->dn_lock));
57387c478bd9Sstevel@tonic-gate 	for (dip = dnp->dn_head; dip;
57397c478bd9Sstevel@tonic-gate 	    dip = (dev_info_t *)DEVI(dip)->devi_next) {
57407c478bd9Sstevel@tonic-gate 		/* skip node if instance field is not valid */
57417c478bd9Sstevel@tonic-gate 		if (i_ddi_node_state(dip) < DS_INITIALIZED)
57427c478bd9Sstevel@tonic-gate 			continue;
57437c478bd9Sstevel@tonic-gate 
57447c478bd9Sstevel@tonic-gate 		/* look for instance match */
57457c478bd9Sstevel@tonic-gate 		if (DEVI(dip)->devi_instance == instance) {
57467c478bd9Sstevel@tonic-gate 			/*
57477c478bd9Sstevel@tonic-gate 			 * To accommodate callers that can't block in
57487c478bd9Sstevel@tonic-gate 			 * ndi_devi_enter() we do an ndi_devi_hold(), and
57497c478bd9Sstevel@tonic-gate 			 * afterwards check that the node is in a state where
57507c478bd9Sstevel@tonic-gate 			 * the hold prevents detach(). If we did not manage to
57517c478bd9Sstevel@tonic-gate 			 * prevent detach then we ndi_rele_devi() and perform
57527c478bd9Sstevel@tonic-gate 			 * the slow path below (which can result in a blocking
57537c478bd9Sstevel@tonic-gate 			 * ndi_devi_enter() while driving attach top-down).
57547c478bd9Sstevel@tonic-gate 			 * This code depends on the ordering of
57557c478bd9Sstevel@tonic-gate 			 * DEVI_SET_DETACHING and the devi_ref check in the
57567c478bd9Sstevel@tonic-gate 			 * detach_node() code path.
57577c478bd9Sstevel@tonic-gate 			 */
57587c478bd9Sstevel@tonic-gate 			ndi_hold_devi(dip);
5759737d277aScth 			if (i_ddi_devi_attached(dip) &&
57607c478bd9Sstevel@tonic-gate 			    !DEVI_IS_DETACHING(dip)) {
57617c478bd9Sstevel@tonic-gate 				UNLOCK_DEV_OPS(&(dnp->dn_lock));
57627c478bd9Sstevel@tonic-gate 				return (dip);	/* fast-path with devi held */
57637c478bd9Sstevel@tonic-gate 			}
57647c478bd9Sstevel@tonic-gate 			ndi_rele_devi(dip);
57657c478bd9Sstevel@tonic-gate 
57667c478bd9Sstevel@tonic-gate 			/* try slow-path */
57677c478bd9Sstevel@tonic-gate 			dip = NULL;
57687c478bd9Sstevel@tonic-gate 			break;
57697c478bd9Sstevel@tonic-gate 		}
57707c478bd9Sstevel@tonic-gate 	}
57717c478bd9Sstevel@tonic-gate 	ASSERT(dip == NULL);
57727c478bd9Sstevel@tonic-gate 	UNLOCK_DEV_OPS(&(dnp->dn_lock));
57737c478bd9Sstevel@tonic-gate 
57747c478bd9Sstevel@tonic-gate 	if (flags & E_DDI_HOLD_DEVI_NOATTACH)
57757c478bd9Sstevel@tonic-gate 		return (NULL);		/* told not to drive attach */
57767c478bd9Sstevel@tonic-gate 
57777c478bd9Sstevel@tonic-gate 	/* slow-path may block, so it should not occur from interrupt */
57787c478bd9Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
57797c478bd9Sstevel@tonic-gate 	if (servicing_interrupt())
57807c478bd9Sstevel@tonic-gate 		return (NULL);
57817c478bd9Sstevel@tonic-gate 
57827c478bd9Sstevel@tonic-gate 	/* reconstruct the path and drive attach by path through devfs. */
57837c478bd9Sstevel@tonic-gate 	path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
57847c478bd9Sstevel@tonic-gate 	if (e_ddi_majorinstance_to_path(major, instance, path) == 0)
57857c478bd9Sstevel@tonic-gate 		dip = e_ddi_hold_devi_by_path(path, flags);
57867c478bd9Sstevel@tonic-gate 	kmem_free(path, MAXPATHLEN);
57877c478bd9Sstevel@tonic-gate 	return (dip);			/* with devi held */
57887c478bd9Sstevel@tonic-gate }
57897c478bd9Sstevel@tonic-gate 
57907c478bd9Sstevel@tonic-gate /*
57917c478bd9Sstevel@tonic-gate  * The {e_}ddi_hold_devi{_by_{instance|dev|path}} hold the devinfo node
57927c478bd9Sstevel@tonic-gate  * associated with the specified arguments.  This hold should be released
57937c478bd9Sstevel@tonic-gate  * by calling ddi_release_devi.
57947c478bd9Sstevel@tonic-gate  *
57957c478bd9Sstevel@tonic-gate  * The E_DDI_HOLD_DEVI_NOATTACH flag argument allows the caller to to specify
57967c478bd9Sstevel@tonic-gate  * a failure return if the node is not already attached.
57977c478bd9Sstevel@tonic-gate  *
57987c478bd9Sstevel@tonic-gate  * NOTE: by the time we make e_ddi_hold_devi public, we should be able to reuse
57997c478bd9Sstevel@tonic-gate  * ddi_hold_devi again.
58007c478bd9Sstevel@tonic-gate  */
58017c478bd9Sstevel@tonic-gate dev_info_t *
58027c478bd9Sstevel@tonic-gate ddi_hold_devi_by_instance(major_t major, int instance, int flags)
58037c478bd9Sstevel@tonic-gate {
58047c478bd9Sstevel@tonic-gate 	return (hold_devi(major, instance, flags));
58057c478bd9Sstevel@tonic-gate }
58067c478bd9Sstevel@tonic-gate 
58077c478bd9Sstevel@tonic-gate dev_info_t *
58087c478bd9Sstevel@tonic-gate e_ddi_hold_devi_by_dev(dev_t dev, int flags)
58097c478bd9Sstevel@tonic-gate {
58107c478bd9Sstevel@tonic-gate 	major_t	major = getmajor(dev);
58117c478bd9Sstevel@tonic-gate 	dev_info_t	*dip;
58127c478bd9Sstevel@tonic-gate 	struct dev_ops	*ops;
58137c478bd9Sstevel@tonic-gate 	dev_info_t	*ddip = NULL;
58147c478bd9Sstevel@tonic-gate 
58157c478bd9Sstevel@tonic-gate 	dip = hold_devi(major, dev_to_instance(dev), flags);
58167c478bd9Sstevel@tonic-gate 
58177c478bd9Sstevel@tonic-gate 	/*
58187c478bd9Sstevel@tonic-gate 	 * The rest of this routine is legacy support for drivers that
58197c478bd9Sstevel@tonic-gate 	 * have broken DDI_INFO_DEVT2INSTANCE implementations but may have
58207c478bd9Sstevel@tonic-gate 	 * functional DDI_INFO_DEVT2DEVINFO implementations.  This code will
58217c478bd9Sstevel@tonic-gate 	 * diagnose inconsistency and, for maximum compatibility with legacy
58227c478bd9Sstevel@tonic-gate 	 * drivers, give preference to the drivers DDI_INFO_DEVT2DEVINFO
58237c478bd9Sstevel@tonic-gate 	 * implementation over the above derived dip based the driver's
58247c478bd9Sstevel@tonic-gate 	 * DDI_INFO_DEVT2INSTANCE implementation. This legacy support should
58257c478bd9Sstevel@tonic-gate 	 * be removed when DDI_INFO_DEVT2DEVINFO is deprecated.
58267c478bd9Sstevel@tonic-gate 	 *
58277c478bd9Sstevel@tonic-gate 	 * NOTE: The following code has a race condition. DEVT2DEVINFO
58287c478bd9Sstevel@tonic-gate 	 *	returns a dip which is not held. By the time we ref ddip,
58297c478bd9Sstevel@tonic-gate 	 *	it could have been freed. The saving grace is that for
58307c478bd9Sstevel@tonic-gate 	 *	most drivers, the dip returned from hold_devi() is the
58317c478bd9Sstevel@tonic-gate 	 *	same one as the one returned by DEVT2DEVINFO, so we are
58327c478bd9Sstevel@tonic-gate 	 *	safe for drivers with the correct getinfo(9e) impl.
58337c478bd9Sstevel@tonic-gate 	 */
58347c478bd9Sstevel@tonic-gate 	if (((ops = ddi_hold_driver(major)) != NULL) &&
58357c478bd9Sstevel@tonic-gate 	    CB_DRV_INSTALLED(ops) && ops->devo_getinfo)  {
58367c478bd9Sstevel@tonic-gate 		if ((*ops->devo_getinfo)(NULL, DDI_INFO_DEVT2DEVINFO,
58377c478bd9Sstevel@tonic-gate 		    (void *)dev, (void **)&ddip) != DDI_SUCCESS)
58387c478bd9Sstevel@tonic-gate 			ddip = NULL;
58397c478bd9Sstevel@tonic-gate 	}
58407c478bd9Sstevel@tonic-gate 
58417c478bd9Sstevel@tonic-gate 	/* give preference to the driver returned DEVT2DEVINFO dip */
58427c478bd9Sstevel@tonic-gate 	if (ddip && (dip != ddip)) {
58437c478bd9Sstevel@tonic-gate #ifdef	DEBUG
58447c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "%s: inconsistent getinfo(9E) implementation",
58457c478bd9Sstevel@tonic-gate 		    ddi_driver_name(ddip));
58467c478bd9Sstevel@tonic-gate #endif	/* DEBUG */
58477c478bd9Sstevel@tonic-gate 		ndi_hold_devi(ddip);
58487c478bd9Sstevel@tonic-gate 		if (dip)
58497c478bd9Sstevel@tonic-gate 			ndi_rele_devi(dip);
58507c478bd9Sstevel@tonic-gate 		dip = ddip;
58517c478bd9Sstevel@tonic-gate 	}
58527c478bd9Sstevel@tonic-gate 
58537c478bd9Sstevel@tonic-gate 	if (ops)
58547c478bd9Sstevel@tonic-gate 		ddi_rele_driver(major);
58557c478bd9Sstevel@tonic-gate 
58567c478bd9Sstevel@tonic-gate 	return (dip);
58577c478bd9Sstevel@tonic-gate }
58587c478bd9Sstevel@tonic-gate 
58597c478bd9Sstevel@tonic-gate /*
58607c478bd9Sstevel@tonic-gate  * For compatibility only. Do not call this function!
58617c478bd9Sstevel@tonic-gate  */
58627c478bd9Sstevel@tonic-gate dev_info_t *
58637c478bd9Sstevel@tonic-gate e_ddi_get_dev_info(dev_t dev, vtype_t type)
58647c478bd9Sstevel@tonic-gate {
58657c478bd9Sstevel@tonic-gate 	dev_info_t *dip = NULL;
58667c478bd9Sstevel@tonic-gate 	if (getmajor(dev) >= devcnt)
58677c478bd9Sstevel@tonic-gate 		return (NULL);
58687c478bd9Sstevel@tonic-gate 
58697c478bd9Sstevel@tonic-gate 	switch (type) {
58707c478bd9Sstevel@tonic-gate 	case VCHR:
58717c478bd9Sstevel@tonic-gate 	case VBLK:
58727c478bd9Sstevel@tonic-gate 		dip = e_ddi_hold_devi_by_dev(dev, 0);
58737c478bd9Sstevel@tonic-gate 	default:
58747c478bd9Sstevel@tonic-gate 		break;
58757c478bd9Sstevel@tonic-gate 	}
58767c478bd9Sstevel@tonic-gate 
58777c478bd9Sstevel@tonic-gate 	/*
58787c478bd9Sstevel@tonic-gate 	 * For compatibility reasons, we can only return the dip with
58797c478bd9Sstevel@tonic-gate 	 * the driver ref count held. This is not a safe thing to do.
58807c478bd9Sstevel@tonic-gate 	 * For certain broken third-party software, we are willing
58817c478bd9Sstevel@tonic-gate 	 * to venture into unknown territory.
58827c478bd9Sstevel@tonic-gate 	 */
58837c478bd9Sstevel@tonic-gate 	if (dip) {
58847c478bd9Sstevel@tonic-gate 		(void) ndi_hold_driver(dip);
58857c478bd9Sstevel@tonic-gate 		ndi_rele_devi(dip);
58867c478bd9Sstevel@tonic-gate 	}
58877c478bd9Sstevel@tonic-gate 	return (dip);
58887c478bd9Sstevel@tonic-gate }
58897c478bd9Sstevel@tonic-gate 
58907c478bd9Sstevel@tonic-gate dev_info_t *
58917c478bd9Sstevel@tonic-gate e_ddi_hold_devi_by_path(char *path, int flags)
58927c478bd9Sstevel@tonic-gate {
58937c478bd9Sstevel@tonic-gate 	dev_info_t	*dip;
58947c478bd9Sstevel@tonic-gate 
58957c478bd9Sstevel@tonic-gate 	/* can't specify NOATTACH by path */
58967c478bd9Sstevel@tonic-gate 	ASSERT(!(flags & E_DDI_HOLD_DEVI_NOATTACH));
58977c478bd9Sstevel@tonic-gate 
58987c478bd9Sstevel@tonic-gate 	return (resolve_pathname(path, &dip, NULL, NULL) ? NULL : dip);
58997c478bd9Sstevel@tonic-gate }
59007c478bd9Sstevel@tonic-gate 
59017c478bd9Sstevel@tonic-gate void
59027c478bd9Sstevel@tonic-gate e_ddi_hold_devi(dev_info_t *dip)
59037c478bd9Sstevel@tonic-gate {
59047c478bd9Sstevel@tonic-gate 	ndi_hold_devi(dip);
59057c478bd9Sstevel@tonic-gate }
59067c478bd9Sstevel@tonic-gate 
59077c478bd9Sstevel@tonic-gate void
59087c478bd9Sstevel@tonic-gate ddi_release_devi(dev_info_t *dip)
59097c478bd9Sstevel@tonic-gate {
59107c478bd9Sstevel@tonic-gate 	ndi_rele_devi(dip);
59117c478bd9Sstevel@tonic-gate }
59127c478bd9Sstevel@tonic-gate 
59137c478bd9Sstevel@tonic-gate /*
59147c478bd9Sstevel@tonic-gate  * Associate a streams queue with a devinfo node
59157c478bd9Sstevel@tonic-gate  * NOTE: This function is called by STREAM driver's put procedure.
59167c478bd9Sstevel@tonic-gate  *	It cannot block.
59177c478bd9Sstevel@tonic-gate  */
59187c478bd9Sstevel@tonic-gate void
59197c478bd9Sstevel@tonic-gate ddi_assoc_queue_with_devi(queue_t *q, dev_info_t *dip)
59207c478bd9Sstevel@tonic-gate {
59217c478bd9Sstevel@tonic-gate 	queue_t *rq = _RD(q);
59227c478bd9Sstevel@tonic-gate 	struct stdata *stp;
59237c478bd9Sstevel@tonic-gate 	vnode_t *vp;
59247c478bd9Sstevel@tonic-gate 
59257c478bd9Sstevel@tonic-gate 	/* set flag indicating that ddi_assoc_queue_with_devi was called */
59267c478bd9Sstevel@tonic-gate 	mutex_enter(QLOCK(rq));
59277c478bd9Sstevel@tonic-gate 	rq->q_flag |= _QASSOCIATED;
59287c478bd9Sstevel@tonic-gate 	mutex_exit(QLOCK(rq));
59297c478bd9Sstevel@tonic-gate 
59307c478bd9Sstevel@tonic-gate 	/* get the vnode associated with the queue */
59317c478bd9Sstevel@tonic-gate 	stp = STREAM(rq);
59327c478bd9Sstevel@tonic-gate 	vp = stp->sd_vnode;
59337c478bd9Sstevel@tonic-gate 	ASSERT(vp);
59347c478bd9Sstevel@tonic-gate 
59357c478bd9Sstevel@tonic-gate 	/* change the hardware association of the vnode */
59367c478bd9Sstevel@tonic-gate 	spec_assoc_vp_with_devi(vp, dip);
59377c478bd9Sstevel@tonic-gate }
59387c478bd9Sstevel@tonic-gate 
59397c478bd9Sstevel@tonic-gate /*
59407c478bd9Sstevel@tonic-gate  * ddi_install_driver(name)
59417c478bd9Sstevel@tonic-gate  *
59427c478bd9Sstevel@tonic-gate  * Driver installation is currently a byproduct of driver loading.  This
59437c478bd9Sstevel@tonic-gate  * may change.
59447c478bd9Sstevel@tonic-gate  */
59457c478bd9Sstevel@tonic-gate int
59467c478bd9Sstevel@tonic-gate ddi_install_driver(char *name)
59477c478bd9Sstevel@tonic-gate {
59487c478bd9Sstevel@tonic-gate 	major_t major = ddi_name_to_major(name);
59497c478bd9Sstevel@tonic-gate 
59507c478bd9Sstevel@tonic-gate 	if ((major == (major_t)-1) ||
59517c478bd9Sstevel@tonic-gate 	    (ddi_hold_installed_driver(major) == NULL)) {
59527c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
59537c478bd9Sstevel@tonic-gate 	}
59547c478bd9Sstevel@tonic-gate 	ddi_rele_driver(major);
59557c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
59567c478bd9Sstevel@tonic-gate }
59577c478bd9Sstevel@tonic-gate 
59587c478bd9Sstevel@tonic-gate struct dev_ops *
59597c478bd9Sstevel@tonic-gate ddi_hold_driver(major_t major)
59607c478bd9Sstevel@tonic-gate {
59617c478bd9Sstevel@tonic-gate 	return (mod_hold_dev_by_major(major));
59627c478bd9Sstevel@tonic-gate }
59637c478bd9Sstevel@tonic-gate 
59647c478bd9Sstevel@tonic-gate 
59657c478bd9Sstevel@tonic-gate void
59667c478bd9Sstevel@tonic-gate ddi_rele_driver(major_t major)
59677c478bd9Sstevel@tonic-gate {
59687c478bd9Sstevel@tonic-gate 	mod_rele_dev_by_major(major);
59697c478bd9Sstevel@tonic-gate }
59707c478bd9Sstevel@tonic-gate 
59717c478bd9Sstevel@tonic-gate 
59727c478bd9Sstevel@tonic-gate /*
59737c478bd9Sstevel@tonic-gate  * This is called during boot to force attachment order of special dips
59747c478bd9Sstevel@tonic-gate  * dip must be referenced via ndi_hold_devi()
59757c478bd9Sstevel@tonic-gate  */
59767c478bd9Sstevel@tonic-gate int
59777c478bd9Sstevel@tonic-gate i_ddi_attach_node_hierarchy(dev_info_t *dip)
59787c478bd9Sstevel@tonic-gate {
59797c478bd9Sstevel@tonic-gate 	dev_info_t	*parent;
59805e3986cbScth 	int		ret, circ;
5981c73a93f2Sdm120769 
5982c73a93f2Sdm120769 	/*
59835e3986cbScth 	 * Recurse up until attached parent is found.
5984c73a93f2Sdm120769 	 */
59855e3986cbScth 	if (i_ddi_devi_attached(dip))
59865e3986cbScth 		return (DDI_SUCCESS);
59877c478bd9Sstevel@tonic-gate 	parent = ddi_get_parent(dip);
59887c478bd9Sstevel@tonic-gate 	if (i_ddi_attach_node_hierarchy(parent) != DDI_SUCCESS)
59897c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
59907c478bd9Sstevel@tonic-gate 
59917c478bd9Sstevel@tonic-gate 	/*
59925e3986cbScth 	 * Come top-down, expanding .conf nodes under this parent
59935e3986cbScth 	 * and driving attach.
59947c478bd9Sstevel@tonic-gate 	 */
59955e3986cbScth 	ndi_devi_enter(parent, &circ);
59967c478bd9Sstevel@tonic-gate 	(void) i_ndi_make_spec_children(parent, 0);
59975e3986cbScth 	ret = i_ddi_attachchild(dip);
59985e3986cbScth 	ndi_devi_exit(parent, circ);
59995e3986cbScth 
60005e3986cbScth 	return (ret);
60017c478bd9Sstevel@tonic-gate }
60027c478bd9Sstevel@tonic-gate 
60037c478bd9Sstevel@tonic-gate /* keep this function static */
60047c478bd9Sstevel@tonic-gate static int
60057c478bd9Sstevel@tonic-gate attach_driver_nodes(major_t major)
60067c478bd9Sstevel@tonic-gate {
60077c478bd9Sstevel@tonic-gate 	struct devnames *dnp;
60087c478bd9Sstevel@tonic-gate 	dev_info_t *dip;
60097c478bd9Sstevel@tonic-gate 	int error = DDI_FAILURE;
60107c478bd9Sstevel@tonic-gate 
60117c478bd9Sstevel@tonic-gate 	dnp = &devnamesp[major];
60127c478bd9Sstevel@tonic-gate 	LOCK_DEV_OPS(&dnp->dn_lock);
60137c478bd9Sstevel@tonic-gate 	dip = dnp->dn_head;
60147c478bd9Sstevel@tonic-gate 	while (dip) {
60157c478bd9Sstevel@tonic-gate 		ndi_hold_devi(dip);
60167c478bd9Sstevel@tonic-gate 		UNLOCK_DEV_OPS(&dnp->dn_lock);
60177c478bd9Sstevel@tonic-gate 		if (i_ddi_attach_node_hierarchy(dip) == DDI_SUCCESS)
60187c478bd9Sstevel@tonic-gate 			error = DDI_SUCCESS;
60197c478bd9Sstevel@tonic-gate 		LOCK_DEV_OPS(&dnp->dn_lock);
60207c478bd9Sstevel@tonic-gate 		ndi_rele_devi(dip);
60217c478bd9Sstevel@tonic-gate 		dip = ddi_get_next(dip);
60227c478bd9Sstevel@tonic-gate 	}
60237c478bd9Sstevel@tonic-gate 	if (error == DDI_SUCCESS)
60247c478bd9Sstevel@tonic-gate 		dnp->dn_flags |= DN_NO_AUTODETACH;
60257c478bd9Sstevel@tonic-gate 	UNLOCK_DEV_OPS(&dnp->dn_lock);
60267c478bd9Sstevel@tonic-gate 
60277c478bd9Sstevel@tonic-gate 
60287c478bd9Sstevel@tonic-gate 	return (error);
60297c478bd9Sstevel@tonic-gate }
60307c478bd9Sstevel@tonic-gate 
60317c478bd9Sstevel@tonic-gate /*
60327c478bd9Sstevel@tonic-gate  * i_ddi_attach_hw_nodes configures and attaches all hw nodes
60337c478bd9Sstevel@tonic-gate  * bound to a specific driver. This function replaces calls to
60347c478bd9Sstevel@tonic-gate  * ddi_hold_installed_driver() for drivers with no .conf
60357c478bd9Sstevel@tonic-gate  * enumerated nodes.
60367c478bd9Sstevel@tonic-gate  *
60377c478bd9Sstevel@tonic-gate  * This facility is typically called at boot time to attach
60387c478bd9Sstevel@tonic-gate  * platform-specific hardware nodes, such as ppm nodes on xcal
60397c478bd9Sstevel@tonic-gate  * and grover and keyswitch nodes on cherrystone. It does not
60407c478bd9Sstevel@tonic-gate  * deal with .conf enumerated node. Calling it beyond the boot
60417c478bd9Sstevel@tonic-gate  * process is strongly discouraged.
60427c478bd9Sstevel@tonic-gate  */
60437c478bd9Sstevel@tonic-gate int
60447c478bd9Sstevel@tonic-gate i_ddi_attach_hw_nodes(char *driver)
60457c478bd9Sstevel@tonic-gate {
60467c478bd9Sstevel@tonic-gate 	major_t major;
60477c478bd9Sstevel@tonic-gate 
60487c478bd9Sstevel@tonic-gate 	major = ddi_name_to_major(driver);
60497c478bd9Sstevel@tonic-gate 	if (major == (major_t)-1)
60507c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
60517c478bd9Sstevel@tonic-gate 
60527c478bd9Sstevel@tonic-gate 	return (attach_driver_nodes(major));
60537c478bd9Sstevel@tonic-gate }
60547c478bd9Sstevel@tonic-gate 
60557c478bd9Sstevel@tonic-gate /*
60567c478bd9Sstevel@tonic-gate  * i_ddi_attach_pseudo_node configures pseudo drivers which
60577c478bd9Sstevel@tonic-gate  * has a single node. The .conf nodes must be enumerated
60587c478bd9Sstevel@tonic-gate  * before calling this interface. The dip is held attached
60597c478bd9Sstevel@tonic-gate  * upon returning.
60607c478bd9Sstevel@tonic-gate  *
60617c478bd9Sstevel@tonic-gate  * This facility should only be called only at boot time
60627c478bd9Sstevel@tonic-gate  * by the I/O framework.
60637c478bd9Sstevel@tonic-gate  */
60647c478bd9Sstevel@tonic-gate dev_info_t *
60657c478bd9Sstevel@tonic-gate i_ddi_attach_pseudo_node(char *driver)
60667c478bd9Sstevel@tonic-gate {
60677c478bd9Sstevel@tonic-gate 	major_t major;
60687c478bd9Sstevel@tonic-gate 	dev_info_t *dip;
60697c478bd9Sstevel@tonic-gate 
60707c478bd9Sstevel@tonic-gate 	major = ddi_name_to_major(driver);
60717c478bd9Sstevel@tonic-gate 	if (major == (major_t)-1)
60727c478bd9Sstevel@tonic-gate 		return (NULL);
60737c478bd9Sstevel@tonic-gate 
60747c478bd9Sstevel@tonic-gate 	if (attach_driver_nodes(major) != DDI_SUCCESS)
60757c478bd9Sstevel@tonic-gate 		return (NULL);
60767c478bd9Sstevel@tonic-gate 
60777c478bd9Sstevel@tonic-gate 	dip = devnamesp[major].dn_head;
60787c478bd9Sstevel@tonic-gate 	ASSERT(dip && ddi_get_next(dip) == NULL);
60797c478bd9Sstevel@tonic-gate 	ndi_hold_devi(dip);
60807c478bd9Sstevel@tonic-gate 	return (dip);
60817c478bd9Sstevel@tonic-gate }
60827c478bd9Sstevel@tonic-gate 
60837c478bd9Sstevel@tonic-gate static void
60847c478bd9Sstevel@tonic-gate diplist_to_parent_major(dev_info_t *head, char parents[])
60857c478bd9Sstevel@tonic-gate {
60867c478bd9Sstevel@tonic-gate 	major_t major;
60877c478bd9Sstevel@tonic-gate 	dev_info_t *dip, *pdip;
60887c478bd9Sstevel@tonic-gate 
60897c478bd9Sstevel@tonic-gate 	for (dip = head; dip != NULL; dip = ddi_get_next(dip)) {
60907c478bd9Sstevel@tonic-gate 		pdip = ddi_get_parent(dip);
60917c478bd9Sstevel@tonic-gate 		ASSERT(pdip);	/* disallow rootnex.conf nodes */
60927c478bd9Sstevel@tonic-gate 		major = ddi_driver_major(pdip);
60937c478bd9Sstevel@tonic-gate 		if ((major != (major_t)-1) && parents[major] == 0)
60947c478bd9Sstevel@tonic-gate 			parents[major] = 1;
60957c478bd9Sstevel@tonic-gate 	}
60967c478bd9Sstevel@tonic-gate }
60977c478bd9Sstevel@tonic-gate 
60987c478bd9Sstevel@tonic-gate /*
60997c478bd9Sstevel@tonic-gate  * Call ddi_hold_installed_driver() on each parent major
61007c478bd9Sstevel@tonic-gate  * and invoke mt_config_driver() to attach child major.
61017c478bd9Sstevel@tonic-gate  * This is part of the implementation of ddi_hold_installed_driver.
61027c478bd9Sstevel@tonic-gate  */
61037c478bd9Sstevel@tonic-gate static int
61047c478bd9Sstevel@tonic-gate attach_driver_by_parent(major_t child_major, char parents[])
61057c478bd9Sstevel@tonic-gate {
61067c478bd9Sstevel@tonic-gate 	major_t par_major;
61077c478bd9Sstevel@tonic-gate 	struct mt_config_handle *hdl;
61087c478bd9Sstevel@tonic-gate 	int flags = NDI_DEVI_PERSIST | NDI_NO_EVENT;
61097c478bd9Sstevel@tonic-gate 
61107c478bd9Sstevel@tonic-gate 	hdl = mt_config_init(NULL, NULL, flags, child_major, MT_CONFIG_OP,
61117c478bd9Sstevel@tonic-gate 	    NULL);
61127c478bd9Sstevel@tonic-gate 	for (par_major = 0; par_major < devcnt; par_major++) {
61137c478bd9Sstevel@tonic-gate 		/* disallow recursion on the same driver */
61147c478bd9Sstevel@tonic-gate 		if (parents[par_major] == 0 || par_major == child_major)
61157c478bd9Sstevel@tonic-gate 			continue;
61167c478bd9Sstevel@tonic-gate 		if (ddi_hold_installed_driver(par_major) == NULL)
61177c478bd9Sstevel@tonic-gate 			continue;
61187c478bd9Sstevel@tonic-gate 		hdl->mtc_parmajor = par_major;
61197c478bd9Sstevel@tonic-gate 		mt_config_driver(hdl);
61207c478bd9Sstevel@tonic-gate 		ddi_rele_driver(par_major);
61217c478bd9Sstevel@tonic-gate 	}
61227c478bd9Sstevel@tonic-gate 	(void) mt_config_fini(hdl);
61237c478bd9Sstevel@tonic-gate 
61247c478bd9Sstevel@tonic-gate 	return (i_ddi_devs_attached(child_major));
61257c478bd9Sstevel@tonic-gate }
61267c478bd9Sstevel@tonic-gate 
61277c478bd9Sstevel@tonic-gate int
61287c478bd9Sstevel@tonic-gate i_ddi_devs_attached(major_t major)
61297c478bd9Sstevel@tonic-gate {
61307c478bd9Sstevel@tonic-gate 	dev_info_t *dip;
61317c478bd9Sstevel@tonic-gate 	struct devnames *dnp;
61327c478bd9Sstevel@tonic-gate 	int error = DDI_FAILURE;
61337c478bd9Sstevel@tonic-gate 
61347c478bd9Sstevel@tonic-gate 	/* check for attached instances */
61357c478bd9Sstevel@tonic-gate 	dnp = &devnamesp[major];
61367c478bd9Sstevel@tonic-gate 	LOCK_DEV_OPS(&dnp->dn_lock);
61377c478bd9Sstevel@tonic-gate 	for (dip = dnp->dn_head; dip != NULL; dip = ddi_get_next(dip)) {
6138737d277aScth 		if (i_ddi_devi_attached(dip)) {
61397c478bd9Sstevel@tonic-gate 			error = DDI_SUCCESS;
61407c478bd9Sstevel@tonic-gate 			break;
61417c478bd9Sstevel@tonic-gate 		}
61427c478bd9Sstevel@tonic-gate 	}
61437c478bd9Sstevel@tonic-gate 	UNLOCK_DEV_OPS(&dnp->dn_lock);
61447c478bd9Sstevel@tonic-gate 
61457c478bd9Sstevel@tonic-gate 	return (error);
61467c478bd9Sstevel@tonic-gate }
61477c478bd9Sstevel@tonic-gate 
61487c478bd9Sstevel@tonic-gate /*
61497c478bd9Sstevel@tonic-gate  * ddi_hold_installed_driver configures and attaches all
61507c478bd9Sstevel@tonic-gate  * instances of the specified driver. To accomplish this
61517c478bd9Sstevel@tonic-gate  * it configures and attaches all possible parents of
61527c478bd9Sstevel@tonic-gate  * the driver, enumerated both in h/w nodes and in the
61537c478bd9Sstevel@tonic-gate  * driver's .conf file.
61547c478bd9Sstevel@tonic-gate  *
61557c478bd9Sstevel@tonic-gate  * NOTE: This facility is for compatibility purposes only and will
61567c478bd9Sstevel@tonic-gate  *	eventually go away. Its usage is strongly discouraged.
61577c478bd9Sstevel@tonic-gate  */
61587c478bd9Sstevel@tonic-gate static void
61597c478bd9Sstevel@tonic-gate enter_driver(struct devnames *dnp)
61607c478bd9Sstevel@tonic-gate {
61617c478bd9Sstevel@tonic-gate 	mutex_enter(&dnp->dn_lock);
61627c478bd9Sstevel@tonic-gate 	ASSERT(dnp->dn_busy_thread != curthread);
61637c478bd9Sstevel@tonic-gate 	while (dnp->dn_flags & DN_DRIVER_BUSY)
61647c478bd9Sstevel@tonic-gate 		cv_wait(&dnp->dn_wait, &dnp->dn_lock);
61657c478bd9Sstevel@tonic-gate 	dnp->dn_flags |= DN_DRIVER_BUSY;
61667c478bd9Sstevel@tonic-gate 	dnp->dn_busy_thread = curthread;
61677c478bd9Sstevel@tonic-gate 	mutex_exit(&dnp->dn_lock);
61687c478bd9Sstevel@tonic-gate }
61697c478bd9Sstevel@tonic-gate 
61707c478bd9Sstevel@tonic-gate static void
61717c478bd9Sstevel@tonic-gate exit_driver(struct devnames *dnp)
61727c478bd9Sstevel@tonic-gate {
61737c478bd9Sstevel@tonic-gate 	mutex_enter(&dnp->dn_lock);
61747c478bd9Sstevel@tonic-gate 	ASSERT(dnp->dn_busy_thread == curthread);
61757c478bd9Sstevel@tonic-gate 	dnp->dn_flags &= ~DN_DRIVER_BUSY;
61767c478bd9Sstevel@tonic-gate 	dnp->dn_busy_thread = NULL;
61777c478bd9Sstevel@tonic-gate 	cv_broadcast(&dnp->dn_wait);
61787c478bd9Sstevel@tonic-gate 	mutex_exit(&dnp->dn_lock);
61797c478bd9Sstevel@tonic-gate }
61807c478bd9Sstevel@tonic-gate 
61817c478bd9Sstevel@tonic-gate struct dev_ops *
61827c478bd9Sstevel@tonic-gate ddi_hold_installed_driver(major_t major)
61837c478bd9Sstevel@tonic-gate {
61847c478bd9Sstevel@tonic-gate 	struct dev_ops *ops;
61857c478bd9Sstevel@tonic-gate 	struct devnames *dnp;
61867c478bd9Sstevel@tonic-gate 	char *parents;
61877c478bd9Sstevel@tonic-gate 	int error;
61887c478bd9Sstevel@tonic-gate 
61897c478bd9Sstevel@tonic-gate 	ops = ddi_hold_driver(major);
61907c478bd9Sstevel@tonic-gate 	if (ops == NULL)
61917c478bd9Sstevel@tonic-gate 		return (NULL);
61927c478bd9Sstevel@tonic-gate 
61937c478bd9Sstevel@tonic-gate 	/*
61947c478bd9Sstevel@tonic-gate 	 * Return immediately if all the attach operations associated
61957c478bd9Sstevel@tonic-gate 	 * with a ddi_hold_installed_driver() call have already been done.
61967c478bd9Sstevel@tonic-gate 	 */
61977c478bd9Sstevel@tonic-gate 	dnp = &devnamesp[major];
61987c478bd9Sstevel@tonic-gate 	enter_driver(dnp);
61997c478bd9Sstevel@tonic-gate 	if (dnp->dn_flags & DN_DRIVER_HELD) {
62007c478bd9Sstevel@tonic-gate 		exit_driver(dnp);
62017c478bd9Sstevel@tonic-gate 		if (i_ddi_devs_attached(major) == DDI_SUCCESS)
62027c478bd9Sstevel@tonic-gate 			return (ops);
62037c478bd9Sstevel@tonic-gate 		ddi_rele_driver(major);
62047c478bd9Sstevel@tonic-gate 		return (NULL);
62057c478bd9Sstevel@tonic-gate 	}
62067c478bd9Sstevel@tonic-gate 
62077c478bd9Sstevel@tonic-gate 	LOCK_DEV_OPS(&dnp->dn_lock);
62087c478bd9Sstevel@tonic-gate 	dnp->dn_flags |= (DN_DRIVER_HELD | DN_NO_AUTODETACH);
62097c478bd9Sstevel@tonic-gate 	UNLOCK_DEV_OPS(&dnp->dn_lock);
62107c478bd9Sstevel@tonic-gate 
62117c478bd9Sstevel@tonic-gate 	DCOMPATPRINTF((CE_CONT,
62127c478bd9Sstevel@tonic-gate 	    "ddi_hold_installed_driver: %s\n", dnp->dn_name));
62137c478bd9Sstevel@tonic-gate 
62147c478bd9Sstevel@tonic-gate 	/*
62157c478bd9Sstevel@tonic-gate 	 * When the driver has no .conf children, it is sufficient
62167c478bd9Sstevel@tonic-gate 	 * to attach existing nodes in the device tree. Nodes not
62177c478bd9Sstevel@tonic-gate 	 * enumerated by the OBP are not attached.
62187c478bd9Sstevel@tonic-gate 	 */
62197c478bd9Sstevel@tonic-gate 	if (dnp->dn_pl == NULL) {
62207c478bd9Sstevel@tonic-gate 		if (attach_driver_nodes(major) == DDI_SUCCESS) {
62217c478bd9Sstevel@tonic-gate 			exit_driver(dnp);
62227c478bd9Sstevel@tonic-gate 			return (ops);
62237c478bd9Sstevel@tonic-gate 		}
62247c478bd9Sstevel@tonic-gate 		exit_driver(dnp);
62257c478bd9Sstevel@tonic-gate 		ddi_rele_driver(major);
62267c478bd9Sstevel@tonic-gate 		return (NULL);
62277c478bd9Sstevel@tonic-gate 	}
62287c478bd9Sstevel@tonic-gate 
62297c478bd9Sstevel@tonic-gate 	/*
62307c478bd9Sstevel@tonic-gate 	 * Driver has .conf nodes. We find all possible parents
62317c478bd9Sstevel@tonic-gate 	 * and recursively all ddi_hold_installed_driver on the
62327c478bd9Sstevel@tonic-gate 	 * parent driver; then we invoke ndi_config_driver()
62337c478bd9Sstevel@tonic-gate 	 * on all possible parent node in parallel to speed up
62347c478bd9Sstevel@tonic-gate 	 * performance.
62357c478bd9Sstevel@tonic-gate 	 */
62367c478bd9Sstevel@tonic-gate 	parents = kmem_zalloc(devcnt * sizeof (char), KM_SLEEP);
62377c478bd9Sstevel@tonic-gate 
62387c478bd9Sstevel@tonic-gate 	LOCK_DEV_OPS(&dnp->dn_lock);
62397c478bd9Sstevel@tonic-gate 	/* find .conf parents */
62407c478bd9Sstevel@tonic-gate 	(void) impl_parlist_to_major(dnp->dn_pl, parents);
62417c478bd9Sstevel@tonic-gate 	/* find hw node parents */
62427c478bd9Sstevel@tonic-gate 	diplist_to_parent_major(dnp->dn_head, parents);
62437c478bd9Sstevel@tonic-gate 	UNLOCK_DEV_OPS(&dnp->dn_lock);
62447c478bd9Sstevel@tonic-gate 
62457c478bd9Sstevel@tonic-gate 	error = attach_driver_by_parent(major, parents);
62467c478bd9Sstevel@tonic-gate 	kmem_free(parents, devcnt * sizeof (char));
62477c478bd9Sstevel@tonic-gate 	if (error == DDI_SUCCESS) {
62487c478bd9Sstevel@tonic-gate 		exit_driver(dnp);
62497c478bd9Sstevel@tonic-gate 		return (ops);
62507c478bd9Sstevel@tonic-gate 	}
62517c478bd9Sstevel@tonic-gate 
62527c478bd9Sstevel@tonic-gate 	exit_driver(dnp);
62537c478bd9Sstevel@tonic-gate 	ddi_rele_driver(major);
62547c478bd9Sstevel@tonic-gate 	return (NULL);
62557c478bd9Sstevel@tonic-gate }
62567c478bd9Sstevel@tonic-gate 
62577c478bd9Sstevel@tonic-gate /*
62587c478bd9Sstevel@tonic-gate  * Default bus_config entry point for nexus drivers
62597c478bd9Sstevel@tonic-gate  */
62607c478bd9Sstevel@tonic-gate int
62617c478bd9Sstevel@tonic-gate ndi_busop_bus_config(dev_info_t *pdip, uint_t flags, ddi_bus_config_op_t op,
62627c478bd9Sstevel@tonic-gate     void *arg, dev_info_t **child, clock_t timeout)
62637c478bd9Sstevel@tonic-gate {
62647c478bd9Sstevel@tonic-gate 	major_t major;
62657c478bd9Sstevel@tonic-gate 
62667c478bd9Sstevel@tonic-gate 	/*
62677c478bd9Sstevel@tonic-gate 	 * A timeout of 30 minutes or more is probably a mistake
62687c478bd9Sstevel@tonic-gate 	 * This is intended to catch uses where timeout is in
62697c478bd9Sstevel@tonic-gate 	 * the wrong units.  timeout must be in units of ticks.
62707c478bd9Sstevel@tonic-gate 	 */
62717c478bd9Sstevel@tonic-gate 	ASSERT(timeout < SEC_TO_TICK(1800));
62727c478bd9Sstevel@tonic-gate 
62737c478bd9Sstevel@tonic-gate 	major = (major_t)-1;
62747c478bd9Sstevel@tonic-gate 	switch (op) {
62757c478bd9Sstevel@tonic-gate 	case BUS_CONFIG_ONE:
62767c478bd9Sstevel@tonic-gate 		NDI_DEBUG(flags, (CE_CONT, "%s%d: bus config %s timeout=%ld\n",
62777c478bd9Sstevel@tonic-gate 			ddi_driver_name(pdip), ddi_get_instance(pdip),
62787c478bd9Sstevel@tonic-gate 			(char *)arg, timeout));
62797c478bd9Sstevel@tonic-gate 		return (devi_config_one(pdip, (char *)arg, child, flags,
62807c478bd9Sstevel@tonic-gate 		    timeout));
62817c478bd9Sstevel@tonic-gate 
62827c478bd9Sstevel@tonic-gate 	case BUS_CONFIG_DRIVER:
62837c478bd9Sstevel@tonic-gate 		major = (major_t)(uintptr_t)arg;
62847c478bd9Sstevel@tonic-gate 		/*FALLTHROUGH*/
62857c478bd9Sstevel@tonic-gate 	case BUS_CONFIG_ALL:
62867c478bd9Sstevel@tonic-gate 		NDI_DEBUG(flags, (CE_CONT, "%s%d: bus config timeout=%ld\n",
62877c478bd9Sstevel@tonic-gate 			ddi_driver_name(pdip), ddi_get_instance(pdip),
62887c478bd9Sstevel@tonic-gate 			timeout));
62897c478bd9Sstevel@tonic-gate 		if (timeout > 0) {
62907c478bd9Sstevel@tonic-gate 			NDI_DEBUG(flags, (CE_CONT,
62917c478bd9Sstevel@tonic-gate 			    "%s%d: bus config all timeout=%ld\n",
62927c478bd9Sstevel@tonic-gate 			    ddi_driver_name(pdip), ddi_get_instance(pdip),
62937c478bd9Sstevel@tonic-gate 			    timeout));
62947c478bd9Sstevel@tonic-gate 			delay(timeout);
62957c478bd9Sstevel@tonic-gate 		}
62967c478bd9Sstevel@tonic-gate 		return (config_immediate_children(pdip, flags, major));
62977c478bd9Sstevel@tonic-gate 
62987c478bd9Sstevel@tonic-gate 	default:
62997c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
63007c478bd9Sstevel@tonic-gate 	}
63017c478bd9Sstevel@tonic-gate 	/*NOTREACHED*/
63027c478bd9Sstevel@tonic-gate }
63037c478bd9Sstevel@tonic-gate 
63047c478bd9Sstevel@tonic-gate /*
63057c478bd9Sstevel@tonic-gate  * Default busop bus_unconfig handler for nexus drivers
63067c478bd9Sstevel@tonic-gate  */
63077c478bd9Sstevel@tonic-gate int
63087c478bd9Sstevel@tonic-gate ndi_busop_bus_unconfig(dev_info_t *pdip, uint_t flags, ddi_bus_config_op_t op,
63097c478bd9Sstevel@tonic-gate     void *arg)
63107c478bd9Sstevel@tonic-gate {
63117c478bd9Sstevel@tonic-gate 	major_t major;
63127c478bd9Sstevel@tonic-gate 
63137c478bd9Sstevel@tonic-gate 	major = (major_t)-1;
63147c478bd9Sstevel@tonic-gate 	switch (op) {
63157c478bd9Sstevel@tonic-gate 	case BUS_UNCONFIG_ONE:
63167c478bd9Sstevel@tonic-gate 		NDI_DEBUG(flags, (CE_CONT, "%s%d: bus unconfig %s\n",
63177c478bd9Sstevel@tonic-gate 		    ddi_driver_name(pdip), ddi_get_instance(pdip),
63187c478bd9Sstevel@tonic-gate 		    (char *)arg));
63197c478bd9Sstevel@tonic-gate 		return (devi_unconfig_one(pdip, (char *)arg, flags));
63207c478bd9Sstevel@tonic-gate 
63217c478bd9Sstevel@tonic-gate 	case BUS_UNCONFIG_DRIVER:
63227c478bd9Sstevel@tonic-gate 		major = (major_t)(uintptr_t)arg;
63237c478bd9Sstevel@tonic-gate 		/*FALLTHROUGH*/
63247c478bd9Sstevel@tonic-gate 	case BUS_UNCONFIG_ALL:
63257c478bd9Sstevel@tonic-gate 		NDI_DEBUG(flags, (CE_CONT, "%s%d: bus unconfig all\n",
63267c478bd9Sstevel@tonic-gate 		    ddi_driver_name(pdip), ddi_get_instance(pdip)));
63277c478bd9Sstevel@tonic-gate 		return (unconfig_immediate_children(pdip, NULL, flags, major));
63287c478bd9Sstevel@tonic-gate 
63297c478bd9Sstevel@tonic-gate 	default:
63307c478bd9Sstevel@tonic-gate 		return (NDI_FAILURE);
63317c478bd9Sstevel@tonic-gate 	}
63327c478bd9Sstevel@tonic-gate 	/*NOTREACHED*/
63337c478bd9Sstevel@tonic-gate }
63347c478bd9Sstevel@tonic-gate 
63357c478bd9Sstevel@tonic-gate /*
63367c478bd9Sstevel@tonic-gate  * dummy functions to be removed
63377c478bd9Sstevel@tonic-gate  */
63387c478bd9Sstevel@tonic-gate void
63397c478bd9Sstevel@tonic-gate impl_rem_dev_props(dev_info_t *dip)
63407c478bd9Sstevel@tonic-gate {
63417c478bd9Sstevel@tonic-gate 	_NOTE(ARGUNUSED(dip))
63427c478bd9Sstevel@tonic-gate 	/* do nothing */
63437c478bd9Sstevel@tonic-gate }
63447c478bd9Sstevel@tonic-gate 
63457c478bd9Sstevel@tonic-gate /*
63467c478bd9Sstevel@tonic-gate  * Determine if a node is a leaf node. If not sure, return false (0).
63477c478bd9Sstevel@tonic-gate  */
63487c478bd9Sstevel@tonic-gate static int
63497c478bd9Sstevel@tonic-gate is_leaf_node(dev_info_t *dip)
63507c478bd9Sstevel@tonic-gate {
63517c478bd9Sstevel@tonic-gate 	major_t major = ddi_driver_major(dip);
63527c478bd9Sstevel@tonic-gate 
63537c478bd9Sstevel@tonic-gate 	if (major == (major_t)-1)
63547c478bd9Sstevel@tonic-gate 		return (0);
63557c478bd9Sstevel@tonic-gate 
63567c478bd9Sstevel@tonic-gate 	return (devnamesp[major].dn_flags & DN_LEAF_DRIVER);
63577c478bd9Sstevel@tonic-gate }
63587c478bd9Sstevel@tonic-gate 
63597c478bd9Sstevel@tonic-gate /*
63607c478bd9Sstevel@tonic-gate  * Multithreaded [un]configuration
63617c478bd9Sstevel@tonic-gate  */
63627c478bd9Sstevel@tonic-gate static struct mt_config_handle *
63637c478bd9Sstevel@tonic-gate mt_config_init(dev_info_t *pdip, dev_info_t **dipp, int flags,
63647c478bd9Sstevel@tonic-gate     major_t major, int op, struct brevq_node **brevqp)
63657c478bd9Sstevel@tonic-gate {
63667c478bd9Sstevel@tonic-gate 	struct mt_config_handle	*hdl = kmem_alloc(sizeof (*hdl), KM_SLEEP);
63677c478bd9Sstevel@tonic-gate 
63687c478bd9Sstevel@tonic-gate 	mutex_init(&hdl->mtc_lock, NULL, MUTEX_DEFAULT, NULL);
63697c478bd9Sstevel@tonic-gate 	cv_init(&hdl->mtc_cv, NULL, CV_DEFAULT, NULL);
63707c478bd9Sstevel@tonic-gate 	hdl->mtc_pdip = pdip;
63717c478bd9Sstevel@tonic-gate 	hdl->mtc_fdip = dipp;
63727c478bd9Sstevel@tonic-gate 	hdl->mtc_parmajor = (major_t)-1;
63737c478bd9Sstevel@tonic-gate 	hdl->mtc_flags = flags;
63747c478bd9Sstevel@tonic-gate 	hdl->mtc_major = major;
63757c478bd9Sstevel@tonic-gate 	hdl->mtc_thr_count = 0;
63767c478bd9Sstevel@tonic-gate 	hdl->mtc_op = op;
63777c478bd9Sstevel@tonic-gate 	hdl->mtc_error = 0;
63787c478bd9Sstevel@tonic-gate 	hdl->mtc_brevqp = brevqp;
63797c478bd9Sstevel@tonic-gate 
63807c478bd9Sstevel@tonic-gate #ifdef DEBUG
63817c478bd9Sstevel@tonic-gate 	gethrestime(&hdl->start_time);
63827c478bd9Sstevel@tonic-gate 	hdl->total_time = 0;
63837c478bd9Sstevel@tonic-gate #endif /* DEBUG */
63847c478bd9Sstevel@tonic-gate 
63857c478bd9Sstevel@tonic-gate 	return (hdl);
63867c478bd9Sstevel@tonic-gate }
63877c478bd9Sstevel@tonic-gate 
63887c478bd9Sstevel@tonic-gate #ifdef DEBUG
63897c478bd9Sstevel@tonic-gate static int
63907c478bd9Sstevel@tonic-gate time_diff_in_msec(timestruc_t start, timestruc_t end)
63917c478bd9Sstevel@tonic-gate {
63927c478bd9Sstevel@tonic-gate 	int	nsec, sec;
63937c478bd9Sstevel@tonic-gate 
63947c478bd9Sstevel@tonic-gate 	sec = end.tv_sec - start.tv_sec;
63957c478bd9Sstevel@tonic-gate 	nsec = end.tv_nsec - start.tv_nsec;
63967c478bd9Sstevel@tonic-gate 	if (nsec < 0) {
63977c478bd9Sstevel@tonic-gate 		nsec += NANOSEC;
63987c478bd9Sstevel@tonic-gate 		sec -= 1;
63997c478bd9Sstevel@tonic-gate 	}
64007c478bd9Sstevel@tonic-gate 
64017c478bd9Sstevel@tonic-gate 	return (sec * (NANOSEC >> 20) + (nsec >> 20));
64027c478bd9Sstevel@tonic-gate }
64037c478bd9Sstevel@tonic-gate 
64047c478bd9Sstevel@tonic-gate #endif	/* DEBUG */
64057c478bd9Sstevel@tonic-gate 
64067c478bd9Sstevel@tonic-gate static int
64077c478bd9Sstevel@tonic-gate mt_config_fini(struct mt_config_handle *hdl)
64087c478bd9Sstevel@tonic-gate {
64097c478bd9Sstevel@tonic-gate 	int		rv;
64107c478bd9Sstevel@tonic-gate #ifdef DEBUG
64117c478bd9Sstevel@tonic-gate 	int		real_time;
64127c478bd9Sstevel@tonic-gate 	timestruc_t	end_time;
64137c478bd9Sstevel@tonic-gate #endif /* DEBUG */
64147c478bd9Sstevel@tonic-gate 
64157c478bd9Sstevel@tonic-gate 	mutex_enter(&hdl->mtc_lock);
64167c478bd9Sstevel@tonic-gate 	while (hdl->mtc_thr_count > 0)
64177c478bd9Sstevel@tonic-gate 		cv_wait(&hdl->mtc_cv, &hdl->mtc_lock);
64187c478bd9Sstevel@tonic-gate 	rv = hdl->mtc_error;
64197c478bd9Sstevel@tonic-gate 	mutex_exit(&hdl->mtc_lock);
64207c478bd9Sstevel@tonic-gate 
64217c478bd9Sstevel@tonic-gate #ifdef DEBUG
64227c478bd9Sstevel@tonic-gate 	gethrestime(&end_time);
64237c478bd9Sstevel@tonic-gate 	real_time = time_diff_in_msec(hdl->start_time, end_time);
64247c478bd9Sstevel@tonic-gate 	if ((ddidebug & DDI_MTCONFIG) && hdl->mtc_pdip)
64257c478bd9Sstevel@tonic-gate 		cmn_err(CE_NOTE,
64267c478bd9Sstevel@tonic-gate 		    "config %s%d: total time %d msec, real time %d msec",
64277c478bd9Sstevel@tonic-gate 			ddi_driver_name(hdl->mtc_pdip),
64287c478bd9Sstevel@tonic-gate 			ddi_get_instance(hdl->mtc_pdip),
64297c478bd9Sstevel@tonic-gate 			hdl->total_time, real_time);
64307c478bd9Sstevel@tonic-gate #endif /* DEBUG */
64317c478bd9Sstevel@tonic-gate 
64327c478bd9Sstevel@tonic-gate 	cv_destroy(&hdl->mtc_cv);
64337c478bd9Sstevel@tonic-gate 	mutex_destroy(&hdl->mtc_lock);
64347c478bd9Sstevel@tonic-gate 	kmem_free(hdl, sizeof (*hdl));
64357c478bd9Sstevel@tonic-gate 
64367c478bd9Sstevel@tonic-gate 	return (rv);
64377c478bd9Sstevel@tonic-gate }
64387c478bd9Sstevel@tonic-gate 
64397c478bd9Sstevel@tonic-gate struct mt_config_data {
64407c478bd9Sstevel@tonic-gate 	struct mt_config_handle	*mtc_hdl;
64417c478bd9Sstevel@tonic-gate 	dev_info_t		*mtc_dip;
64427c478bd9Sstevel@tonic-gate 	major_t			mtc_major;
64437c478bd9Sstevel@tonic-gate 	int			mtc_flags;
64447c478bd9Sstevel@tonic-gate 	struct brevq_node	*mtc_brn;
64457c478bd9Sstevel@tonic-gate 	struct mt_config_data	*mtc_next;
64467c478bd9Sstevel@tonic-gate };
64477c478bd9Sstevel@tonic-gate 
64487c478bd9Sstevel@tonic-gate static void
64497c478bd9Sstevel@tonic-gate mt_config_thread(void *arg)
64507c478bd9Sstevel@tonic-gate {
64517c478bd9Sstevel@tonic-gate 	struct mt_config_data	*mcd = (struct mt_config_data *)arg;
64527c478bd9Sstevel@tonic-gate 	struct mt_config_handle	*hdl = mcd->mtc_hdl;
64537c478bd9Sstevel@tonic-gate 	dev_info_t		*dip = mcd->mtc_dip;
64547c478bd9Sstevel@tonic-gate 	dev_info_t		*rdip, **dipp;
64557c478bd9Sstevel@tonic-gate 	major_t			major = mcd->mtc_major;
64567c478bd9Sstevel@tonic-gate 	int			flags = mcd->mtc_flags;
64577c478bd9Sstevel@tonic-gate 	int			rv = 0;
64587c478bd9Sstevel@tonic-gate 
64597c478bd9Sstevel@tonic-gate #ifdef DEBUG
64607c478bd9Sstevel@tonic-gate 	timestruc_t start_time, end_time;
64617c478bd9Sstevel@tonic-gate 	gethrestime(&start_time);
64627c478bd9Sstevel@tonic-gate #endif /* DEBUG */
64637c478bd9Sstevel@tonic-gate 
64647c478bd9Sstevel@tonic-gate 	rdip = NULL;
64657c478bd9Sstevel@tonic-gate 	dipp = hdl->mtc_fdip ? &rdip : NULL;
64667c478bd9Sstevel@tonic-gate 
64677c478bd9Sstevel@tonic-gate 	switch (hdl->mtc_op) {
64687c478bd9Sstevel@tonic-gate 	case MT_CONFIG_OP:
64697c478bd9Sstevel@tonic-gate 		rv = devi_config_common(dip, flags, major);
64707c478bd9Sstevel@tonic-gate 		break;
64717c478bd9Sstevel@tonic-gate 	case MT_UNCONFIG_OP:
64727c478bd9Sstevel@tonic-gate 		if (mcd->mtc_brn) {
64737c478bd9Sstevel@tonic-gate 			struct brevq_node *brevq = NULL;
64747c478bd9Sstevel@tonic-gate 			rv = devi_unconfig_common(dip, dipp, flags, major,
64757c478bd9Sstevel@tonic-gate 			    &brevq);
6476245c82d9Scth 			mcd->mtc_brn->brn_child = brevq;
64777c478bd9Sstevel@tonic-gate 		} else
64787c478bd9Sstevel@tonic-gate 			rv = devi_unconfig_common(dip, dipp, flags, major,
64797c478bd9Sstevel@tonic-gate 			    NULL);
64807c478bd9Sstevel@tonic-gate 		break;
64817c478bd9Sstevel@tonic-gate 	}
64827c478bd9Sstevel@tonic-gate 
64837c478bd9Sstevel@tonic-gate 	mutex_enter(&hdl->mtc_lock);
64847c478bd9Sstevel@tonic-gate #ifdef DEBUG
64857c478bd9Sstevel@tonic-gate 	gethrestime(&end_time);
64867c478bd9Sstevel@tonic-gate 	hdl->total_time += time_diff_in_msec(start_time, end_time);
64877c478bd9Sstevel@tonic-gate #endif /* DEBUG */
64885e3986cbScth 
64895e3986cbScth 	if ((rv != NDI_SUCCESS) && (hdl->mtc_error == 0)) {
64907c478bd9Sstevel@tonic-gate 		hdl->mtc_error = rv;
64915e3986cbScth #ifdef	DEBUG
64925e3986cbScth 		if ((ddidebug & DDI_DEBUG) && (major != (major_t)-1)) {
64935e3986cbScth 			char	*path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
64945e3986cbScth 
64955e3986cbScth 			(void) ddi_pathname(dip, path);
64965e3986cbScth 			cmn_err(CE_NOTE, "mt_config_thread: "
64975e3986cbScth 			    "op %d.%d.%x at %s failed %d",
64985e3986cbScth 			    hdl->mtc_op, major, flags, path, rv);
64995e3986cbScth 			kmem_free(path, MAXPATHLEN);
65005e3986cbScth 		}
65015e3986cbScth #endif	/* DEBUG */
65025e3986cbScth 	}
65035e3986cbScth 
65047c478bd9Sstevel@tonic-gate 	if (hdl->mtc_fdip && *hdl->mtc_fdip == NULL) {
65057c478bd9Sstevel@tonic-gate 		*hdl->mtc_fdip = rdip;
65067c478bd9Sstevel@tonic-gate 		rdip = NULL;
65077c478bd9Sstevel@tonic-gate 	}
65087c478bd9Sstevel@tonic-gate 
65097c478bd9Sstevel@tonic-gate 	if (rdip) {
65107c478bd9Sstevel@tonic-gate 		ASSERT(rv != NDI_SUCCESS);
65117c478bd9Sstevel@tonic-gate 		ndi_rele_devi(rdip);
65127c478bd9Sstevel@tonic-gate 	}
65137c478bd9Sstevel@tonic-gate 
65147c478bd9Sstevel@tonic-gate 	ndi_rele_devi(dip);
65153b3b7f33Sbm42561 
65163b3b7f33Sbm42561 	if (--hdl->mtc_thr_count == 0)
65173b3b7f33Sbm42561 		cv_broadcast(&hdl->mtc_cv);
65183b3b7f33Sbm42561 	mutex_exit(&hdl->mtc_lock);
65197c478bd9Sstevel@tonic-gate 	kmem_free(mcd, sizeof (*mcd));
65207c478bd9Sstevel@tonic-gate }
65217c478bd9Sstevel@tonic-gate 
65227c478bd9Sstevel@tonic-gate /*
65237c478bd9Sstevel@tonic-gate  * Multi-threaded config/unconfig of child nexus
65247c478bd9Sstevel@tonic-gate  */
65257c478bd9Sstevel@tonic-gate static void
65267c478bd9Sstevel@tonic-gate mt_config_children(struct mt_config_handle *hdl)
65277c478bd9Sstevel@tonic-gate {
65287c478bd9Sstevel@tonic-gate 	dev_info_t		*pdip = hdl->mtc_pdip;
65297c478bd9Sstevel@tonic-gate 	major_t			major = hdl->mtc_major;
65307c478bd9Sstevel@tonic-gate 	dev_info_t		*dip;
65317c478bd9Sstevel@tonic-gate 	int			circ;
6532245c82d9Scth 	struct brevq_node	*brn;
65337c478bd9Sstevel@tonic-gate 	struct mt_config_data	*mcd_head = NULL;
65347c478bd9Sstevel@tonic-gate 	struct mt_config_data	*mcd_tail = NULL;
65357c478bd9Sstevel@tonic-gate 	struct mt_config_data	*mcd;
65367c478bd9Sstevel@tonic-gate #ifdef DEBUG
65377c478bd9Sstevel@tonic-gate 	timestruc_t		end_time;
65387c478bd9Sstevel@tonic-gate 
65397c478bd9Sstevel@tonic-gate 	/* Update total_time in handle */
65407c478bd9Sstevel@tonic-gate 	gethrestime(&end_time);
65417c478bd9Sstevel@tonic-gate 	hdl->total_time += time_diff_in_msec(hdl->start_time, end_time);
65427c478bd9Sstevel@tonic-gate #endif
65437c478bd9Sstevel@tonic-gate 
65447c478bd9Sstevel@tonic-gate 	ndi_devi_enter(pdip, &circ);
65457c478bd9Sstevel@tonic-gate 	dip = ddi_get_child(pdip);
65467c478bd9Sstevel@tonic-gate 	while (dip) {
65477c478bd9Sstevel@tonic-gate 		if (hdl->mtc_op == MT_UNCONFIG_OP && hdl->mtc_brevqp &&
65487c478bd9Sstevel@tonic-gate 		    !(DEVI_EVREMOVE(dip)) &&
65497c478bd9Sstevel@tonic-gate 		    i_ddi_node_state(dip) >= DS_INITIALIZED) {
65507c478bd9Sstevel@tonic-gate 			/*
65517c478bd9Sstevel@tonic-gate 			 * Enqueue this dip's deviname.
65527c478bd9Sstevel@tonic-gate 			 * No need to hold a lock while enqueuing since this
65537c478bd9Sstevel@tonic-gate 			 * is the only thread doing the enqueue and no one
65547c478bd9Sstevel@tonic-gate 			 * walks the queue while we are in multithreaded
65557c478bd9Sstevel@tonic-gate 			 * unconfiguration.
65567c478bd9Sstevel@tonic-gate 			 */
65577c478bd9Sstevel@tonic-gate 			brn = brevq_enqueue(hdl->mtc_brevqp, dip, NULL);
6558245c82d9Scth 		} else
6559245c82d9Scth 			brn = NULL;
65607c478bd9Sstevel@tonic-gate 
65617c478bd9Sstevel@tonic-gate 		/*
65627c478bd9Sstevel@tonic-gate 		 * Hold the child that we are processing so he does not get
65637c478bd9Sstevel@tonic-gate 		 * removed. The corrisponding ndi_rele_devi() for children
65647c478bd9Sstevel@tonic-gate 		 * that are not being skipped is done at the end of
65657c478bd9Sstevel@tonic-gate 		 * mt_config_thread().
65667c478bd9Sstevel@tonic-gate 		 */
65677c478bd9Sstevel@tonic-gate 		ndi_hold_devi(dip);
65687c478bd9Sstevel@tonic-gate 
65697c478bd9Sstevel@tonic-gate 		/*
65707c478bd9Sstevel@tonic-gate 		 * skip leaf nodes and (for configure) nodes not
65717c478bd9Sstevel@tonic-gate 		 * fully attached.
65727c478bd9Sstevel@tonic-gate 		 */
65737c478bd9Sstevel@tonic-gate 		if (is_leaf_node(dip) ||
65747c478bd9Sstevel@tonic-gate 		    (hdl->mtc_op == MT_CONFIG_OP &&
65757c478bd9Sstevel@tonic-gate 		    i_ddi_node_state(dip) < DS_READY)) {
65767c478bd9Sstevel@tonic-gate 			ndi_rele_devi(dip);
65777c478bd9Sstevel@tonic-gate 			dip = ddi_get_next_sibling(dip);
65787c478bd9Sstevel@tonic-gate 			continue;
65797c478bd9Sstevel@tonic-gate 		}
65807c478bd9Sstevel@tonic-gate 
65817c478bd9Sstevel@tonic-gate 		mcd = kmem_alloc(sizeof (*mcd), KM_SLEEP);
65827c478bd9Sstevel@tonic-gate 		mcd->mtc_dip = dip;
65837c478bd9Sstevel@tonic-gate 		mcd->mtc_hdl = hdl;
65847c478bd9Sstevel@tonic-gate 		mcd->mtc_brn = brn;
65857c478bd9Sstevel@tonic-gate 
65867c478bd9Sstevel@tonic-gate 		/*
65877c478bd9Sstevel@tonic-gate 		 * Switch a 'driver' operation to an 'all' operation below a
65887c478bd9Sstevel@tonic-gate 		 * node bound to the driver.
65897c478bd9Sstevel@tonic-gate 		 */
65908c1b6884Sszhou 		if ((major == (major_t)-1) || (major == ddi_driver_major(dip)))
65917c478bd9Sstevel@tonic-gate 			mcd->mtc_major = (major_t)-1;
65927c478bd9Sstevel@tonic-gate 		else
65937c478bd9Sstevel@tonic-gate 			mcd->mtc_major = major;
65947c478bd9Sstevel@tonic-gate 
65957c478bd9Sstevel@tonic-gate 		/*
65967c478bd9Sstevel@tonic-gate 		 * The unconfig-driver to unconfig-all conversion above
65977c478bd9Sstevel@tonic-gate 		 * constitutes an autodetach for NDI_DETACH_DRIVER calls,
65987c478bd9Sstevel@tonic-gate 		 * set NDI_AUTODETACH.
65997c478bd9Sstevel@tonic-gate 		 */
66007c478bd9Sstevel@tonic-gate 		mcd->mtc_flags = hdl->mtc_flags;
66017c478bd9Sstevel@tonic-gate 		if ((mcd->mtc_flags & NDI_DETACH_DRIVER) &&
66027c478bd9Sstevel@tonic-gate 		    (hdl->mtc_op == MT_UNCONFIG_OP) &&
66037c478bd9Sstevel@tonic-gate 		    (major == ddi_driver_major(pdip)))
66047c478bd9Sstevel@tonic-gate 			mcd->mtc_flags |= NDI_AUTODETACH;
66057c478bd9Sstevel@tonic-gate 
66067c478bd9Sstevel@tonic-gate 		mutex_enter(&hdl->mtc_lock);
66077c478bd9Sstevel@tonic-gate 		hdl->mtc_thr_count++;
66087c478bd9Sstevel@tonic-gate 		mutex_exit(&hdl->mtc_lock);
66097c478bd9Sstevel@tonic-gate 
66107c478bd9Sstevel@tonic-gate 		/*
66117c478bd9Sstevel@tonic-gate 		 * Add to end of list to process after ndi_devi_exit to avoid
66127c478bd9Sstevel@tonic-gate 		 * locking differences depending on value of mtc_off.
66137c478bd9Sstevel@tonic-gate 		 */
66147c478bd9Sstevel@tonic-gate 		mcd->mtc_next = NULL;
66157c478bd9Sstevel@tonic-gate 		if (mcd_head == NULL)
66167c478bd9Sstevel@tonic-gate 			mcd_head = mcd;
66177c478bd9Sstevel@tonic-gate 		else
66187c478bd9Sstevel@tonic-gate 			mcd_tail->mtc_next = mcd;
66197c478bd9Sstevel@tonic-gate 		mcd_tail = mcd;
66207c478bd9Sstevel@tonic-gate 
66217c478bd9Sstevel@tonic-gate 		dip = ddi_get_next_sibling(dip);
66227c478bd9Sstevel@tonic-gate 	}
66237c478bd9Sstevel@tonic-gate 	ndi_devi_exit(pdip, circ);
66247c478bd9Sstevel@tonic-gate 
66257c478bd9Sstevel@tonic-gate 	/* go through the list of held children */
66267c478bd9Sstevel@tonic-gate 	for (mcd = mcd_head; mcd; mcd = mcd_head) {
66277c478bd9Sstevel@tonic-gate 		mcd_head = mcd->mtc_next;
66285e3986cbScth 		if (mtc_off || (mcd->mtc_flags & NDI_MTC_OFF))
66297c478bd9Sstevel@tonic-gate 			mt_config_thread(mcd);
66307c478bd9Sstevel@tonic-gate 		else
66317c478bd9Sstevel@tonic-gate 			(void) thread_create(NULL, 0, mt_config_thread, mcd,
66327c478bd9Sstevel@tonic-gate 			    0, &p0, TS_RUN, minclsyspri);
66337c478bd9Sstevel@tonic-gate 	}
66347c478bd9Sstevel@tonic-gate }
66357c478bd9Sstevel@tonic-gate 
66367c478bd9Sstevel@tonic-gate static void
66377c478bd9Sstevel@tonic-gate mt_config_driver(struct mt_config_handle *hdl)
66387c478bd9Sstevel@tonic-gate {
66397c478bd9Sstevel@tonic-gate 	major_t			par_major = hdl->mtc_parmajor;
66407c478bd9Sstevel@tonic-gate 	major_t			major = hdl->mtc_major;
66417c478bd9Sstevel@tonic-gate 	struct devnames		*dnp = &devnamesp[par_major];
66427c478bd9Sstevel@tonic-gate 	dev_info_t		*dip;
66437c478bd9Sstevel@tonic-gate 	struct mt_config_data	*mcd_head = NULL;
66447c478bd9Sstevel@tonic-gate 	struct mt_config_data	*mcd_tail = NULL;
66457c478bd9Sstevel@tonic-gate 	struct mt_config_data	*mcd;
66467c478bd9Sstevel@tonic-gate #ifdef DEBUG
66477c478bd9Sstevel@tonic-gate 	timestruc_t		end_time;
66487c478bd9Sstevel@tonic-gate 
66497c478bd9Sstevel@tonic-gate 	/* Update total_time in handle */
66507c478bd9Sstevel@tonic-gate 	gethrestime(&end_time);
66517c478bd9Sstevel@tonic-gate 	hdl->total_time += time_diff_in_msec(hdl->start_time, end_time);
66527c478bd9Sstevel@tonic-gate #endif
66537c478bd9Sstevel@tonic-gate 	ASSERT(par_major != (major_t)-1);
66547c478bd9Sstevel@tonic-gate 	ASSERT(major != (major_t)-1);
66557c478bd9Sstevel@tonic-gate 
66567c478bd9Sstevel@tonic-gate 	LOCK_DEV_OPS(&dnp->dn_lock);
66577c478bd9Sstevel@tonic-gate 	dip = devnamesp[par_major].dn_head;
66587c478bd9Sstevel@tonic-gate 	while (dip) {
66597c478bd9Sstevel@tonic-gate 		/*
66607c478bd9Sstevel@tonic-gate 		 * Hold the child that we are processing so he does not get
66617c478bd9Sstevel@tonic-gate 		 * removed. The corrisponding ndi_rele_devi() for children
66627c478bd9Sstevel@tonic-gate 		 * that are not being skipped is done at the end of
66637c478bd9Sstevel@tonic-gate 		 * mt_config_thread().
66647c478bd9Sstevel@tonic-gate 		 */
66657c478bd9Sstevel@tonic-gate 		ndi_hold_devi(dip);
66667c478bd9Sstevel@tonic-gate 
66677c478bd9Sstevel@tonic-gate 		/* skip leaf nodes and nodes not fully attached */
6668737d277aScth 		if (!i_ddi_devi_attached(dip) || is_leaf_node(dip)) {
66697c478bd9Sstevel@tonic-gate 			ndi_rele_devi(dip);
66707c478bd9Sstevel@tonic-gate 			dip = ddi_get_next(dip);
66717c478bd9Sstevel@tonic-gate 			continue;
66727c478bd9Sstevel@tonic-gate 		}
66737c478bd9Sstevel@tonic-gate 
66747c478bd9Sstevel@tonic-gate 		mcd = kmem_alloc(sizeof (*mcd), KM_SLEEP);
66757c478bd9Sstevel@tonic-gate 		mcd->mtc_dip = dip;
66767c478bd9Sstevel@tonic-gate 		mcd->mtc_hdl = hdl;
66777c478bd9Sstevel@tonic-gate 		mcd->mtc_major = major;
66787c478bd9Sstevel@tonic-gate 		mcd->mtc_flags = hdl->mtc_flags;
66797c478bd9Sstevel@tonic-gate 
66807c478bd9Sstevel@tonic-gate 		mutex_enter(&hdl->mtc_lock);
66817c478bd9Sstevel@tonic-gate 		hdl->mtc_thr_count++;
66827c478bd9Sstevel@tonic-gate 		mutex_exit(&hdl->mtc_lock);
66837c478bd9Sstevel@tonic-gate 
66847c478bd9Sstevel@tonic-gate 		/*
66857c478bd9Sstevel@tonic-gate 		 * Add to end of list to process after UNLOCK_DEV_OPS to avoid
66867c478bd9Sstevel@tonic-gate 		 * locking differences depending on value of mtc_off.
66877c478bd9Sstevel@tonic-gate 		 */
66887c478bd9Sstevel@tonic-gate 		mcd->mtc_next = NULL;
66897c478bd9Sstevel@tonic-gate 		if (mcd_head == NULL)
66907c478bd9Sstevel@tonic-gate 			mcd_head = mcd;
66917c478bd9Sstevel@tonic-gate 		else
66927c478bd9Sstevel@tonic-gate 			mcd_tail->mtc_next = mcd;
66937c478bd9Sstevel@tonic-gate 		mcd_tail = mcd;
66947c478bd9Sstevel@tonic-gate 
66957c478bd9Sstevel@tonic-gate 		dip = ddi_get_next(dip);
66967c478bd9Sstevel@tonic-gate 	}
66977c478bd9Sstevel@tonic-gate 	UNLOCK_DEV_OPS(&dnp->dn_lock);
66987c478bd9Sstevel@tonic-gate 
66997c478bd9Sstevel@tonic-gate 	/* go through the list of held children */
67007c478bd9Sstevel@tonic-gate 	for (mcd = mcd_head; mcd; mcd = mcd_head) {
67017c478bd9Sstevel@tonic-gate 		mcd_head = mcd->mtc_next;
67025e3986cbScth 		if (mtc_off || (mcd->mtc_flags & NDI_MTC_OFF))
67037c478bd9Sstevel@tonic-gate 			mt_config_thread(mcd);
67047c478bd9Sstevel@tonic-gate 		else
67057c478bd9Sstevel@tonic-gate 			(void) thread_create(NULL, 0, mt_config_thread, mcd,
67067c478bd9Sstevel@tonic-gate 			    0, &p0, TS_RUN, minclsyspri);
67077c478bd9Sstevel@tonic-gate 	}
67087c478bd9Sstevel@tonic-gate }
67097c478bd9Sstevel@tonic-gate 
67107c478bd9Sstevel@tonic-gate /*
67117c478bd9Sstevel@tonic-gate  * Given the nodeid for a persistent (PROM or SID) node, return
67127c478bd9Sstevel@tonic-gate  * the corresponding devinfo node
67137c478bd9Sstevel@tonic-gate  * NOTE: This function will return NULL for .conf nodeids.
67147c478bd9Sstevel@tonic-gate  */
67157c478bd9Sstevel@tonic-gate dev_info_t *
6716fa9e4066Sahrens e_ddi_nodeid_to_dip(pnode_t nodeid)
67177c478bd9Sstevel@tonic-gate {
67187c478bd9Sstevel@tonic-gate 	dev_info_t		*dip = NULL;
67197c478bd9Sstevel@tonic-gate 	struct devi_nodeid	*prev, *elem;
67207c478bd9Sstevel@tonic-gate 
67217c478bd9Sstevel@tonic-gate 	mutex_enter(&devimap->dno_lock);
67227c478bd9Sstevel@tonic-gate 
67237c478bd9Sstevel@tonic-gate 	prev = NULL;
67247c478bd9Sstevel@tonic-gate 	for (elem = devimap->dno_head; elem; elem = elem->next) {
67257c478bd9Sstevel@tonic-gate 		if (elem->nodeid == nodeid) {
67267c478bd9Sstevel@tonic-gate 			ndi_hold_devi(elem->dip);
67277c478bd9Sstevel@tonic-gate 			dip = elem->dip;
67287c478bd9Sstevel@tonic-gate 			break;
67297c478bd9Sstevel@tonic-gate 		}
67307c478bd9Sstevel@tonic-gate 		prev = elem;
67317c478bd9Sstevel@tonic-gate 	}
67327c478bd9Sstevel@tonic-gate 
67337c478bd9Sstevel@tonic-gate 	/*
67347c478bd9Sstevel@tonic-gate 	 * Move to head for faster lookup next time
67357c478bd9Sstevel@tonic-gate 	 */
67367c478bd9Sstevel@tonic-gate 	if (elem && prev) {
67377c478bd9Sstevel@tonic-gate 		prev->next = elem->next;
67387c478bd9Sstevel@tonic-gate 		elem->next = devimap->dno_head;
67397c478bd9Sstevel@tonic-gate 		devimap->dno_head = elem;
67407c478bd9Sstevel@tonic-gate 	}
67417c478bd9Sstevel@tonic-gate 
67427c478bd9Sstevel@tonic-gate 	mutex_exit(&devimap->dno_lock);
67437c478bd9Sstevel@tonic-gate 	return (dip);
67447c478bd9Sstevel@tonic-gate }
67457c478bd9Sstevel@tonic-gate 
67467c478bd9Sstevel@tonic-gate static void
67477c478bd9Sstevel@tonic-gate free_cache_task(void *arg)
67487c478bd9Sstevel@tonic-gate {
67497c478bd9Sstevel@tonic-gate 	ASSERT(arg == NULL);
67507c478bd9Sstevel@tonic-gate 
67517c478bd9Sstevel@tonic-gate 	mutex_enter(&di_cache.cache_lock);
67527c478bd9Sstevel@tonic-gate 
67537c478bd9Sstevel@tonic-gate 	/*
67547c478bd9Sstevel@tonic-gate 	 * The cache can be invalidated without holding the lock
67557c478bd9Sstevel@tonic-gate 	 * but it can be made valid again only while the lock is held.
67567c478bd9Sstevel@tonic-gate 	 * So if the cache is invalid when the lock is held, it will
67577c478bd9Sstevel@tonic-gate 	 * stay invalid until lock is released.
67587c478bd9Sstevel@tonic-gate 	 */
67597c478bd9Sstevel@tonic-gate 	if (!di_cache.cache_valid)
67607c478bd9Sstevel@tonic-gate 		i_ddi_di_cache_free(&di_cache);
67617c478bd9Sstevel@tonic-gate 
67627c478bd9Sstevel@tonic-gate 	mutex_exit(&di_cache.cache_lock);
67637c478bd9Sstevel@tonic-gate 
67647c478bd9Sstevel@tonic-gate 	if (di_cache_debug)
67657c478bd9Sstevel@tonic-gate 		cmn_err(CE_NOTE, "system_taskq: di_cache freed");
67667c478bd9Sstevel@tonic-gate }
67677c478bd9Sstevel@tonic-gate 
67687c478bd9Sstevel@tonic-gate extern int modrootloaded;
67697c478bd9Sstevel@tonic-gate 
67707c478bd9Sstevel@tonic-gate void
67717c478bd9Sstevel@tonic-gate i_ddi_di_cache_free(struct di_cache *cache)
67727c478bd9Sstevel@tonic-gate {
67737c478bd9Sstevel@tonic-gate 	int	error;
67747c478bd9Sstevel@tonic-gate 
67757c478bd9Sstevel@tonic-gate 	ASSERT(mutex_owned(&cache->cache_lock));
67767c478bd9Sstevel@tonic-gate 
67777c478bd9Sstevel@tonic-gate 	if (cache->cache_size) {
67787c478bd9Sstevel@tonic-gate 		ASSERT(cache->cache_size > 0);
67797c478bd9Sstevel@tonic-gate 		ASSERT(cache->cache_data);
67807c478bd9Sstevel@tonic-gate 
67817c478bd9Sstevel@tonic-gate 		kmem_free(cache->cache_data, cache->cache_size);
67827c478bd9Sstevel@tonic-gate 		cache->cache_data = NULL;
67837c478bd9Sstevel@tonic-gate 		cache->cache_size = 0;
67847c478bd9Sstevel@tonic-gate 
67857c478bd9Sstevel@tonic-gate 		if (di_cache_debug)
67867c478bd9Sstevel@tonic-gate 			cmn_err(CE_NOTE, "i_ddi_di_cache_free: freed cachemem");
67877c478bd9Sstevel@tonic-gate 	} else {
67887c478bd9Sstevel@tonic-gate 		ASSERT(cache->cache_data == NULL);
67897c478bd9Sstevel@tonic-gate 		if (di_cache_debug)
67907c478bd9Sstevel@tonic-gate 			cmn_err(CE_NOTE, "i_ddi_di_cache_free: NULL cache");
67917c478bd9Sstevel@tonic-gate 	}
67927c478bd9Sstevel@tonic-gate 
67937c478bd9Sstevel@tonic-gate 	if (!modrootloaded || rootvp == NULL || vn_is_readonly(rootvp)) {
67947c478bd9Sstevel@tonic-gate 		if (di_cache_debug) {
67957c478bd9Sstevel@tonic-gate 			cmn_err(CE_WARN, "/ not mounted/RDONLY. Skip unlink");
67967c478bd9Sstevel@tonic-gate 		}
67977c478bd9Sstevel@tonic-gate 		return;
67987c478bd9Sstevel@tonic-gate 	}
67997c478bd9Sstevel@tonic-gate 
68007c478bd9Sstevel@tonic-gate 	error = vn_remove(DI_CACHE_FILE, UIO_SYSSPACE, RMFILE);
68017c478bd9Sstevel@tonic-gate 	if (di_cache_debug && error && error != ENOENT) {
68027c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "%s: unlink failed: %d", DI_CACHE_FILE, error);
68037c478bd9Sstevel@tonic-gate 	} else if (di_cache_debug && !error) {
68047c478bd9Sstevel@tonic-gate 		cmn_err(CE_NOTE, "i_ddi_di_cache_free: unlinked cache file");
68057c478bd9Sstevel@tonic-gate 	}
68067c478bd9Sstevel@tonic-gate }
68077c478bd9Sstevel@tonic-gate 
68087c478bd9Sstevel@tonic-gate void
68097c478bd9Sstevel@tonic-gate i_ddi_di_cache_invalidate(int kmflag)
68107c478bd9Sstevel@tonic-gate {
68117c478bd9Sstevel@tonic-gate 	uint_t	flag;
68127c478bd9Sstevel@tonic-gate 
68137c478bd9Sstevel@tonic-gate 	if (!modrootloaded || !i_ddi_io_initialized()) {
68147c478bd9Sstevel@tonic-gate 		if (di_cache_debug)
68157c478bd9Sstevel@tonic-gate 			cmn_err(CE_NOTE, "I/O not inited. Skipping invalidate");
68167c478bd9Sstevel@tonic-gate 		return;
68177c478bd9Sstevel@tonic-gate 	}
68187c478bd9Sstevel@tonic-gate 
68197c478bd9Sstevel@tonic-gate 	/*
6820*facf4a8dSllai1 	 * Invalidate the in-core cache and
6821*facf4a8dSllai1 	 * increment devtree generation number
68227c478bd9Sstevel@tonic-gate 	 */
68237c478bd9Sstevel@tonic-gate 	atomic_and_32(&di_cache.cache_valid, 0);
6824*facf4a8dSllai1 	atomic_inc_ulong(&devtree_gen);
68257c478bd9Sstevel@tonic-gate 
68267c478bd9Sstevel@tonic-gate 	flag = (kmflag == KM_SLEEP) ? TQ_SLEEP : TQ_NOSLEEP;
68277c478bd9Sstevel@tonic-gate 
68287c478bd9Sstevel@tonic-gate 	(void) taskq_dispatch(system_taskq, free_cache_task, NULL, flag);
68297c478bd9Sstevel@tonic-gate 
68307c478bd9Sstevel@tonic-gate 	if (di_cache_debug) {
68317c478bd9Sstevel@tonic-gate 		cmn_err(CE_NOTE, "invalidation with km_flag: %s",
68327c478bd9Sstevel@tonic-gate 		    kmflag == KM_SLEEP ? "KM_SLEEP" : "KM_NOSLEEP");
68337c478bd9Sstevel@tonic-gate 	}
68347c478bd9Sstevel@tonic-gate }
68357c478bd9Sstevel@tonic-gate 
68367c478bd9Sstevel@tonic-gate 
68377c478bd9Sstevel@tonic-gate static void
68387c478bd9Sstevel@tonic-gate i_bind_vhci_node(dev_info_t *dip)
68397c478bd9Sstevel@tonic-gate {
68407c478bd9Sstevel@tonic-gate 	char	*node_name;
68417c478bd9Sstevel@tonic-gate 
68427c478bd9Sstevel@tonic-gate 	node_name = i_ddi_strdup(ddi_node_name(dip), KM_SLEEP);
68437c478bd9Sstevel@tonic-gate 	i_ddi_set_binding_name(dip, node_name);
68447c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_major = ddi_name_to_major(node_name);
68457c478bd9Sstevel@tonic-gate 	i_ddi_set_node_state(dip, DS_BOUND);
68467c478bd9Sstevel@tonic-gate }
68477c478bd9Sstevel@tonic-gate 
68487c478bd9Sstevel@tonic-gate 
68497c478bd9Sstevel@tonic-gate static void
68507c478bd9Sstevel@tonic-gate i_free_vhci_bind_name(dev_info_t *dip)
68517c478bd9Sstevel@tonic-gate {
68527c478bd9Sstevel@tonic-gate 	if (DEVI(dip)->devi_binding_name) {
68537c478bd9Sstevel@tonic-gate 		kmem_free(DEVI(dip)->devi_binding_name,
68547c478bd9Sstevel@tonic-gate 		    sizeof (ddi_node_name(dip)));
68557c478bd9Sstevel@tonic-gate 	}
68567c478bd9Sstevel@tonic-gate }
68577c478bd9Sstevel@tonic-gate 
68587c478bd9Sstevel@tonic-gate 
68597c478bd9Sstevel@tonic-gate static char vhci_node_addr[2];
68607c478bd9Sstevel@tonic-gate 
68617c478bd9Sstevel@tonic-gate static int
68627c478bd9Sstevel@tonic-gate i_init_vhci_node(dev_info_t *dip)
68637c478bd9Sstevel@tonic-gate {
68647c478bd9Sstevel@tonic-gate 	add_global_props(dip);
68657c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_ops = ndi_hold_driver(dip);
68667c478bd9Sstevel@tonic-gate 	if (DEVI(dip)->devi_ops == NULL)
68677c478bd9Sstevel@tonic-gate 		return (-1);
68687c478bd9Sstevel@tonic-gate 
68697c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_instance = e_ddi_assign_instance(dip);
68707c478bd9Sstevel@tonic-gate 	e_ddi_keep_instance(dip);
68717c478bd9Sstevel@tonic-gate 	vhci_node_addr[0]	= '\0';
68727c478bd9Sstevel@tonic-gate 	ddi_set_name_addr(dip, vhci_node_addr);
68737c478bd9Sstevel@tonic-gate 	i_ddi_set_node_state(dip, DS_INITIALIZED);
68747c478bd9Sstevel@tonic-gate 	return (0);
68757c478bd9Sstevel@tonic-gate }
68767c478bd9Sstevel@tonic-gate 
68777c478bd9Sstevel@tonic-gate static void
68787c478bd9Sstevel@tonic-gate i_link_vhci_node(dev_info_t *dip)
68797c478bd9Sstevel@tonic-gate {
68809d3d2ed0Shiremath 	ASSERT(MUTEX_HELD(&global_vhci_lock));
68819d3d2ed0Shiremath 
68827c478bd9Sstevel@tonic-gate 	/*
68837c478bd9Sstevel@tonic-gate 	 * scsi_vhci should be kept left most of the device tree.
68847c478bd9Sstevel@tonic-gate 	 */
68857c478bd9Sstevel@tonic-gate 	if (scsi_vhci_dip) {
68867c478bd9Sstevel@tonic-gate 		DEVI(dip)->devi_sibling = DEVI(scsi_vhci_dip)->devi_sibling;
68877c478bd9Sstevel@tonic-gate 		DEVI(scsi_vhci_dip)->devi_sibling = DEVI(dip);
68887c478bd9Sstevel@tonic-gate 	} else {
68897c478bd9Sstevel@tonic-gate 		DEVI(dip)->devi_sibling = DEVI(top_devinfo)->devi_child;
68907c478bd9Sstevel@tonic-gate 		DEVI(top_devinfo)->devi_child = DEVI(dip);
68917c478bd9Sstevel@tonic-gate 	}
68927c478bd9Sstevel@tonic-gate }
68937c478bd9Sstevel@tonic-gate 
68947c478bd9Sstevel@tonic-gate 
68957c478bd9Sstevel@tonic-gate /*
68967c478bd9Sstevel@tonic-gate  * This a special routine to enumerate vhci node (child of rootnex
68977c478bd9Sstevel@tonic-gate  * node) without holding the ndi_devi_enter() lock. The device node
68987c478bd9Sstevel@tonic-gate  * is allocated, initialized and brought into DS_READY state before
68997c478bd9Sstevel@tonic-gate  * inserting into the device tree. The VHCI node is handcrafted
69007c478bd9Sstevel@tonic-gate  * here to bring the node to DS_READY, similar to rootnex node.
69017c478bd9Sstevel@tonic-gate  *
69027c478bd9Sstevel@tonic-gate  * The global_vhci_lock protects linking the node into the device
69037c478bd9Sstevel@tonic-gate  * as same lock is held before linking/unlinking any direct child
69047c478bd9Sstevel@tonic-gate  * of rootnex children.
69057c478bd9Sstevel@tonic-gate  *
69067c478bd9Sstevel@tonic-gate  * This routine is a workaround to handle a possible deadlock
69077c478bd9Sstevel@tonic-gate  * that occurs while trying to enumerate node in a different sub-tree
69087c478bd9Sstevel@tonic-gate  * during _init/_attach entry points.
69097c478bd9Sstevel@tonic-gate  */
69107c478bd9Sstevel@tonic-gate /*ARGSUSED*/
69117c478bd9Sstevel@tonic-gate dev_info_t *
69127c478bd9Sstevel@tonic-gate ndi_devi_config_vhci(char *drvname, int flags)
69137c478bd9Sstevel@tonic-gate {
69147c478bd9Sstevel@tonic-gate 	struct devnames		*dnp;
69157c478bd9Sstevel@tonic-gate 	dev_info_t		*dip;
69167c478bd9Sstevel@tonic-gate 	major_t			major = ddi_name_to_major(drvname);
69177c478bd9Sstevel@tonic-gate 
69187c478bd9Sstevel@tonic-gate 	if (major == -1)
69197c478bd9Sstevel@tonic-gate 		return (NULL);
69207c478bd9Sstevel@tonic-gate 
69217c478bd9Sstevel@tonic-gate 	/* Make sure we create the VHCI node only once */
69227c478bd9Sstevel@tonic-gate 	dnp = &devnamesp[major];
69237c478bd9Sstevel@tonic-gate 	LOCK_DEV_OPS(&dnp->dn_lock);
69247c478bd9Sstevel@tonic-gate 	if (dnp->dn_head) {
69257c478bd9Sstevel@tonic-gate 		dip = dnp->dn_head;
69267c478bd9Sstevel@tonic-gate 		UNLOCK_DEV_OPS(&dnp->dn_lock);
69277c478bd9Sstevel@tonic-gate 		return (dip);
69287c478bd9Sstevel@tonic-gate 	}
69297c478bd9Sstevel@tonic-gate 	UNLOCK_DEV_OPS(&dnp->dn_lock);
69307c478bd9Sstevel@tonic-gate 
69317c478bd9Sstevel@tonic-gate 	/* Allocate the VHCI node */
69327c478bd9Sstevel@tonic-gate 	ndi_devi_alloc_sleep(top_devinfo, drvname, DEVI_SID_NODEID, &dip);
69337c478bd9Sstevel@tonic-gate 	ndi_hold_devi(dip);
69347c478bd9Sstevel@tonic-gate 
69357c478bd9Sstevel@tonic-gate 	/* Mark the node as VHCI */
69367c478bd9Sstevel@tonic-gate 	DEVI(dip)->devi_node_attributes |= DDI_VHCI_NODE;
69377c478bd9Sstevel@tonic-gate 
69387c478bd9Sstevel@tonic-gate 	i_ddi_add_devimap(dip);
69397c478bd9Sstevel@tonic-gate 	i_bind_vhci_node(dip);
69407c478bd9Sstevel@tonic-gate 	if (i_init_vhci_node(dip) == -1) {
69417c478bd9Sstevel@tonic-gate 		i_free_vhci_bind_name(dip);
69427c478bd9Sstevel@tonic-gate 		ndi_rele_devi(dip);
69437c478bd9Sstevel@tonic-gate 		(void) ndi_devi_free(dip);
69447c478bd9Sstevel@tonic-gate 		return (NULL);
69457c478bd9Sstevel@tonic-gate 	}
69467c478bd9Sstevel@tonic-gate 
694716747f41Scth 	mutex_enter(&(DEVI(dip)->devi_lock));
69487c478bd9Sstevel@tonic-gate 	DEVI_SET_ATTACHING(dip);
694916747f41Scth 	mutex_exit(&(DEVI(dip)->devi_lock));
695016747f41Scth 
69517c478bd9Sstevel@tonic-gate 	if (devi_attach(dip, DDI_ATTACH) != DDI_SUCCESS) {
69527c478bd9Sstevel@tonic-gate 		cmn_err(CE_CONT, "Could not attach %s driver", drvname);
69537c478bd9Sstevel@tonic-gate 		e_ddi_free_instance(dip, vhci_node_addr);
69547c478bd9Sstevel@tonic-gate 		i_free_vhci_bind_name(dip);
69557c478bd9Sstevel@tonic-gate 		ndi_rele_devi(dip);
69567c478bd9Sstevel@tonic-gate 		(void) ndi_devi_free(dip);
69577c478bd9Sstevel@tonic-gate 		return (NULL);
69587c478bd9Sstevel@tonic-gate 	}
695916747f41Scth 	mutex_enter(&(DEVI(dip)->devi_lock));
69607c478bd9Sstevel@tonic-gate 	DEVI_CLR_ATTACHING(dip);
696116747f41Scth 	mutex_exit(&(DEVI(dip)->devi_lock));
69627c478bd9Sstevel@tonic-gate 
69639d3d2ed0Shiremath 	mutex_enter(&global_vhci_lock);
69647c478bd9Sstevel@tonic-gate 	i_link_vhci_node(dip);
69659d3d2ed0Shiremath 	mutex_exit(&global_vhci_lock);
69667c478bd9Sstevel@tonic-gate 	i_ddi_set_node_state(dip, DS_READY);
69677c478bd9Sstevel@tonic-gate 
69687c478bd9Sstevel@tonic-gate 	LOCK_DEV_OPS(&dnp->dn_lock);
69697c478bd9Sstevel@tonic-gate 	dnp->dn_flags |= DN_DRIVER_HELD;
69707c478bd9Sstevel@tonic-gate 	dnp->dn_head = dip;
69717c478bd9Sstevel@tonic-gate 	UNLOCK_DEV_OPS(&dnp->dn_lock);
69727c478bd9Sstevel@tonic-gate 
69737c478bd9Sstevel@tonic-gate 	i_ndi_devi_report_status_change(dip, NULL);
69747c478bd9Sstevel@tonic-gate 
69757c478bd9Sstevel@tonic-gate 	return (dip);
69767c478bd9Sstevel@tonic-gate }
69777c478bd9Sstevel@tonic-gate 
69787c478bd9Sstevel@tonic-gate /*
69797c478bd9Sstevel@tonic-gate  * ibt_hw_is_present() returns 0 when there is no IB hardware actively
69807c478bd9Sstevel@tonic-gate  * running.  This is primarily useful for modules like rpcmod which
69817c478bd9Sstevel@tonic-gate  * needs a quick check to decide whether or not it should try to use
69827c478bd9Sstevel@tonic-gate  * InfiniBand
69837c478bd9Sstevel@tonic-gate  */
69847c478bd9Sstevel@tonic-gate int ib_hw_status = 0;
69857c478bd9Sstevel@tonic-gate int
69867c478bd9Sstevel@tonic-gate ibt_hw_is_present()
69877c478bd9Sstevel@tonic-gate {
69887c478bd9Sstevel@tonic-gate 	return (ib_hw_status);
69897c478bd9Sstevel@tonic-gate }
6990