xref: /titanic_51/usr/src/uts/common/os/devcfg.c (revision 9f67f65c3a3a663cb8bc47a96cf1551adeaf733d)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
23  */
24 /*
25  * Copyright 2012 Nexenta Systems, Inc. All rights reserved.
26  */
27 
28 #include <sys/note.h>
29 #include <sys/t_lock.h>
30 #include <sys/cmn_err.h>
31 #include <sys/instance.h>
32 #include <sys/conf.h>
33 #include <sys/stat.h>
34 #include <sys/ddi.h>
35 #include <sys/hwconf.h>
36 #include <sys/sunddi.h>
37 #include <sys/sunndi.h>
38 #include <sys/ddi_impldefs.h>
39 #include <sys/ndi_impldefs.h>
40 #include <sys/modctl.h>
41 #include <sys/contract/device_impl.h>
42 #include <sys/dacf.h>
43 #include <sys/promif.h>
44 #include <sys/pci.h>
45 #include <sys/cpuvar.h>
46 #include <sys/pathname.h>
47 #include <sys/taskq.h>
48 #include <sys/sysevent.h>
49 #include <sys/sunmdi.h>
50 #include <sys/stream.h>
51 #include <sys/strsubr.h>
52 #include <sys/fs/snode.h>
53 #include <sys/fs/dv_node.h>
54 #include <sys/reboot.h>
55 #include <sys/sysmacros.h>
56 #include <sys/systm.h>
57 #include <sys/fs/sdev_impl.h>
58 #include <sys/sunldi.h>
59 #include <sys/sunldi_impl.h>
60 #include <sys/bootprops.h>
61 #include <sys/varargs.h>
62 #include <sys/modhash.h>
63 #include <sys/instance.h>
64 
65 #if defined(__amd64) && !defined(__xpv)
66 #include <sys/iommulib.h>
67 #endif
68 
69 #ifdef DEBUG
70 int ddidebug = DDI_AUDIT;
71 #else
72 int ddidebug = 0;
73 #endif
74 
75 #define	MT_CONFIG_OP	0
76 #define	MT_UNCONFIG_OP	1
77 
78 /* Multi-threaded configuration */
79 struct mt_config_handle {
80 	kmutex_t mtc_lock;
81 	kcondvar_t mtc_cv;
82 	int mtc_thr_count;
83 	dev_info_t *mtc_pdip;	/* parent dip for mt_config_children */
84 	dev_info_t **mtc_fdip;	/* "a" dip where unconfigure failed */
85 	major_t mtc_parmajor;	/* parent major for mt_config_driver */
86 	major_t mtc_major;
87 	int mtc_flags;
88 	int mtc_op;		/* config or unconfig */
89 	int mtc_error;		/* operation error */
90 	struct brevq_node **mtc_brevqp;	/* outstanding branch events queue */
91 #ifdef DEBUG
92 	int total_time;
93 	timestruc_t start_time;
94 #endif /* DEBUG */
95 };
96 
97 struct devi_nodeid {
98 	pnode_t nodeid;
99 	dev_info_t *dip;
100 	struct devi_nodeid *next;
101 };
102 
103 struct devi_nodeid_list {
104 	kmutex_t dno_lock;		/* Protects other fields */
105 	struct devi_nodeid *dno_head;	/* list of devi nodeid elements */
106 	struct devi_nodeid *dno_free;	/* Free list */
107 	uint_t dno_list_length;		/* number of dips in list */
108 };
109 
110 /* used to keep track of branch remove events to be generated */
111 struct brevq_node {
112 	char *brn_deviname;
113 	struct brevq_node *brn_sibling;
114 	struct brevq_node *brn_child;
115 };
116 
117 static struct devi_nodeid_list devi_nodeid_list;
118 static struct devi_nodeid_list *devimap = &devi_nodeid_list;
119 
120 /*
121  * Well known nodes which are attached first at boot time.
122  */
123 dev_info_t *top_devinfo;		/* root of device tree */
124 dev_info_t *options_dip;
125 dev_info_t *pseudo_dip;
126 dev_info_t *clone_dip;
127 dev_info_t *scsi_vhci_dip;		/* MPXIO dip */
128 major_t clone_major;
129 
130 /*
131  * A non-global zone's /dev is derived from the device tree.
132  * This generation number serves to indicate when a zone's
133  * /dev may need to be updated.
134  */
135 volatile ulong_t devtree_gen;		/* generation number */
136 
137 /* block all future dev_info state changes */
138 hrtime_t volatile devinfo_freeze = 0;
139 
140 /* number of dev_info attaches/detaches currently in progress */
141 static ulong_t devinfo_attach_detach = 0;
142 
143 extern int	sys_shutdown;
144 extern kmutex_t global_vhci_lock;
145 
146 /* bitset of DS_SYSAVAIL & DS_RECONFIG - no races, no lock */
147 static int devname_state = 0;
148 
149 /*
150  * The devinfo snapshot cache and related variables.
151  * The only field in the di_cache structure that needs initialization
152  * is the mutex (cache_lock). However, since this is an adaptive mutex
153  * (MUTEX_DEFAULT) - it is automatically initialized by being allocated
154  * in zeroed memory (static storage class). Therefore no explicit
155  * initialization of the di_cache structure is needed.
156  */
157 struct di_cache	di_cache = {1};
158 int		di_cache_debug = 0;
159 
160 /* For ddvis, which needs pseudo children under PCI */
161 int pci_allow_pseudo_children = 0;
162 
163 /* Allow path-oriented alias driver binding on driver.conf enumerated nodes */
164 int driver_conf_allow_path_alias = 1;
165 
166 /*
167  * The following switch is for service people, in case a
168  * 3rd party driver depends on identify(9e) being called.
169  */
170 int identify_9e = 0;
171 
172 /*
173  * Add flag so behaviour of preventing attach for retired persistant nodes
174  * can be disabled.
175  */
176 int retire_prevents_attach = 1;
177 
178 int mtc_off;					/* turn off mt config */
179 
180 int quiesce_debug = 0;
181 
182 boolean_t ddi_aliases_present = B_FALSE;
183 ddi_alias_t ddi_aliases;
184 uint_t tsd_ddi_redirect;
185 
186 #define	DDI_ALIAS_HASH_SIZE	(2700)
187 
188 static kmem_cache_t *ddi_node_cache;		/* devinfo node cache */
189 static devinfo_log_header_t *devinfo_audit_log;	/* devinfo log */
190 static int devinfo_log_size;			/* size in pages */
191 
192 boolean_t ddi_err_panic = B_FALSE;
193 
194 static int lookup_compatible(dev_info_t *, uint_t);
195 static char *encode_composite_string(char **, uint_t, size_t *, uint_t);
196 static void link_to_driver_list(dev_info_t *);
197 static void unlink_from_driver_list(dev_info_t *);
198 static void add_to_dn_list(struct devnames *, dev_info_t *);
199 static void remove_from_dn_list(struct devnames *, dev_info_t *);
200 static dev_info_t *find_duplicate_child();
201 static void add_global_props(dev_info_t *);
202 static void remove_global_props(dev_info_t *);
203 static int uninit_node(dev_info_t *);
204 static void da_log_init(void);
205 static void da_log_enter(dev_info_t *);
206 static int walk_devs(dev_info_t *, int (*f)(dev_info_t *, void *), void *, int);
207 static int reset_nexus_flags(dev_info_t *, void *);
208 static void ddi_optimize_dtree(dev_info_t *);
209 static int is_leaf_node(dev_info_t *);
210 static struct mt_config_handle *mt_config_init(dev_info_t *, dev_info_t **,
211     int, major_t, int, struct brevq_node **);
212 static void mt_config_children(struct mt_config_handle *);
213 static void mt_config_driver(struct mt_config_handle *);
214 static int mt_config_fini(struct mt_config_handle *);
215 static int devi_unconfig_common(dev_info_t *, dev_info_t **, int, major_t,
216     struct brevq_node **);
217 static int
218 ndi_devi_config_obp_args(dev_info_t *parent, char *devnm,
219     dev_info_t **childp, int flags);
220 static void i_link_vhci_node(dev_info_t *);
221 static void ndi_devi_exit_and_wait(dev_info_t *dip,
222     int circular, clock_t end_time);
223 static int ndi_devi_unbind_driver(dev_info_t *dip);
224 
225 static int i_ddi_check_retire(dev_info_t *dip);
226 
227 static void quiesce_one_device(dev_info_t *, void *);
228 
229 dev_info_t *ddi_alias_redirect(char *alias);
230 char *ddi_curr_redirect(char *currpath);
231 
232 
233 /*
234  * dev_info cache and node management
235  */
236 
237 /* initialize dev_info node cache */
238 void
239 i_ddi_node_cache_init()
240 {
241 	ASSERT(ddi_node_cache == NULL);
242 	ddi_node_cache = kmem_cache_create("dev_info_node_cache",
243 	    sizeof (struct dev_info), 0, NULL, NULL, NULL, NULL, NULL, 0);
244 
245 	if (ddidebug & DDI_AUDIT)
246 		da_log_init();
247 }
248 
249 
250 /*
251  * Allocating a dev_info node, callable from interrupt context with KM_NOSLEEP
252  * The allocated node has a reference count of 0.
253  */
254 dev_info_t *
255 i_ddi_alloc_node(dev_info_t *pdip, char *node_name, pnode_t nodeid,
256     int instance, ddi_prop_t *sys_prop, int flag)
257 {
258 	struct dev_info *devi;
259 	struct devi_nodeid *elem;
260 	static char failed[] = "i_ddi_alloc_node: out of memory";
261 
262 	ASSERT(node_name != NULL);
263 
264 	if ((devi = kmem_cache_alloc(ddi_node_cache, flag)) == NULL) {
265 		cmn_err(CE_NOTE, failed);
266 		return (NULL);
267 	}
268 
269 	bzero(devi, sizeof (struct dev_info));
270 
271 	if (devinfo_audit_log) {
272 		devi->devi_audit = kmem_zalloc(sizeof (devinfo_audit_t), flag);
273 		if (devi->devi_audit == NULL)
274 			goto fail;
275 	}
276 
277 	if ((devi->devi_node_name = i_ddi_strdup(node_name, flag)) == NULL)
278 		goto fail;
279 
280 	/* default binding name is node name */
281 	devi->devi_binding_name = devi->devi_node_name;
282 	devi->devi_major = DDI_MAJOR_T_NONE;	/* unbound by default */
283 
284 	/*
285 	 * Make a copy of system property
286 	 */
287 	if (sys_prop &&
288 	    (devi->devi_sys_prop_ptr = i_ddi_prop_list_dup(sys_prop, flag))
289 	    == NULL)
290 		goto fail;
291 
292 	/*
293 	 * Assign devi_nodeid, devi_node_class, devi_node_attributes
294 	 * according to the following algorithm:
295 	 *
296 	 * nodeid arg			node class		node attributes
297 	 *
298 	 * DEVI_PSEUDO_NODEID		DDI_NC_PSEUDO		A
299 	 * DEVI_SID_NODEID		DDI_NC_PSEUDO		A,P
300 	 * DEVI_SID_HIDDEN_NODEID	DDI_NC_PSEUDO		A,P,H
301 	 * DEVI_SID_HP_NODEID		DDI_NC_PSEUDO		A,P,h
302 	 * DEVI_SID_HP_HIDDEN_NODEID	DDI_NC_PSEUDO		A,P,H,h
303 	 * other			DDI_NC_PROM		P
304 	 *
305 	 * Where A = DDI_AUTO_ASSIGNED_NODEID (auto-assign a nodeid)
306 	 * and	 P = DDI_PERSISTENT
307 	 * and	 H = DDI_HIDDEN_NODE
308 	 * and	 h = DDI_HOTPLUG_NODE
309 	 *
310 	 * auto-assigned nodeids are also auto-freed.
311 	 */
312 	devi->devi_node_attributes = 0;
313 	switch (nodeid) {
314 	case DEVI_SID_HIDDEN_NODEID:
315 		devi->devi_node_attributes |= DDI_HIDDEN_NODE;
316 		goto sid;
317 
318 	case DEVI_SID_HP_NODEID:
319 		devi->devi_node_attributes |= DDI_HOTPLUG_NODE;
320 		goto sid;
321 
322 	case DEVI_SID_HP_HIDDEN_NODEID:
323 		devi->devi_node_attributes |= DDI_HIDDEN_NODE;
324 		devi->devi_node_attributes |= DDI_HOTPLUG_NODE;
325 		goto sid;
326 
327 	case DEVI_SID_NODEID:
328 sid:		devi->devi_node_attributes |= DDI_PERSISTENT;
329 		if ((elem = kmem_zalloc(sizeof (*elem), flag)) == NULL)
330 			goto fail;
331 		/*FALLTHROUGH*/
332 
333 	case DEVI_PSEUDO_NODEID:
334 		devi->devi_node_attributes |= DDI_AUTO_ASSIGNED_NODEID;
335 		devi->devi_node_class = DDI_NC_PSEUDO;
336 		if (impl_ddi_alloc_nodeid(&devi->devi_nodeid)) {
337 			panic("i_ddi_alloc_node: out of nodeids");
338 			/*NOTREACHED*/
339 		}
340 		break;
341 
342 	default:
343 		if ((elem = kmem_zalloc(sizeof (*elem), flag)) == NULL)
344 			goto fail;
345 
346 		/*
347 		 * the nodetype is 'prom', try to 'take' the nodeid now.
348 		 * This requires memory allocation, so check for failure.
349 		 */
350 		if (impl_ddi_take_nodeid(nodeid, flag) != 0) {
351 			kmem_free(elem, sizeof (*elem));
352 			goto fail;
353 		}
354 
355 		devi->devi_nodeid = nodeid;
356 		devi->devi_node_class = DDI_NC_PROM;
357 		devi->devi_node_attributes = DDI_PERSISTENT;
358 		break;
359 	}
360 
361 	if (ndi_dev_is_persistent_node((dev_info_t *)devi)) {
362 		mutex_enter(&devimap->dno_lock);
363 		elem->next = devimap->dno_free;
364 		devimap->dno_free = elem;
365 		mutex_exit(&devimap->dno_lock);
366 	}
367 
368 	/*
369 	 * Instance is normally initialized to -1. In a few special
370 	 * cases, the caller may specify an instance (e.g. CPU nodes).
371 	 */
372 	devi->devi_instance = instance;
373 
374 	/*
375 	 * set parent and bus_ctl parent
376 	 */
377 	devi->devi_parent = DEVI(pdip);
378 	devi->devi_bus_ctl = DEVI(pdip);
379 
380 	NDI_CONFIG_DEBUG((CE_CONT,
381 	    "i_ddi_alloc_node: name=%s id=%d\n", node_name, devi->devi_nodeid));
382 
383 	cv_init(&(devi->devi_cv), NULL, CV_DEFAULT, NULL);
384 	mutex_init(&(devi->devi_lock), NULL, MUTEX_DEFAULT, NULL);
385 	mutex_init(&(devi->devi_pm_lock), NULL, MUTEX_DEFAULT, NULL);
386 	mutex_init(&(devi->devi_pm_busy_lock), NULL, MUTEX_DEFAULT, NULL);
387 
388 	RIO_TRACE((CE_NOTE, "i_ddi_alloc_node: Initing contract fields: "
389 	    "dip=%p, name=%s", (void *)devi, node_name));
390 
391 	mutex_init(&(devi->devi_ct_lock), NULL, MUTEX_DEFAULT, NULL);
392 	cv_init(&(devi->devi_ct_cv), NULL, CV_DEFAULT, NULL);
393 	devi->devi_ct_count = -1;	/* counter not in use if -1 */
394 	list_create(&(devi->devi_ct), sizeof (cont_device_t),
395 	    offsetof(cont_device_t, cond_next));
396 
397 	i_ddi_set_node_state((dev_info_t *)devi, DS_PROTO);
398 	da_log_enter((dev_info_t *)devi);
399 	return ((dev_info_t *)devi);
400 
401 fail:
402 	if (devi->devi_sys_prop_ptr)
403 		i_ddi_prop_list_delete(devi->devi_sys_prop_ptr);
404 	if (devi->devi_node_name)
405 		kmem_free(devi->devi_node_name, strlen(node_name) + 1);
406 	if (devi->devi_audit)
407 		kmem_free(devi->devi_audit, sizeof (devinfo_audit_t));
408 	kmem_cache_free(ddi_node_cache, devi);
409 	cmn_err(CE_NOTE, failed);
410 	return (NULL);
411 }
412 
413 /*
414  * free a dev_info structure.
415  * NB. Not callable from interrupt since impl_ddi_free_nodeid may block.
416  */
417 void
418 i_ddi_free_node(dev_info_t *dip)
419 {
420 	struct dev_info *devi = DEVI(dip);
421 	struct devi_nodeid *elem;
422 
423 	ASSERT(devi->devi_ref == 0);
424 	ASSERT(devi->devi_addr == NULL);
425 	ASSERT(devi->devi_node_state == DS_PROTO);
426 	ASSERT(devi->devi_child == NULL);
427 	ASSERT(devi->devi_hp_hdlp == NULL);
428 
429 	/* free devi_addr_buf allocated by ddi_set_name_addr() */
430 	if (devi->devi_addr_buf)
431 		kmem_free(devi->devi_addr_buf, 2 * MAXNAMELEN);
432 
433 	if (i_ndi_dev_is_auto_assigned_node(dip))
434 		impl_ddi_free_nodeid(DEVI(dip)->devi_nodeid);
435 
436 	if (ndi_dev_is_persistent_node(dip)) {
437 		mutex_enter(&devimap->dno_lock);
438 		ASSERT(devimap->dno_free);
439 		elem = devimap->dno_free;
440 		devimap->dno_free = elem->next;
441 		mutex_exit(&devimap->dno_lock);
442 		kmem_free(elem, sizeof (*elem));
443 	}
444 
445 	if (DEVI(dip)->devi_compat_names)
446 		kmem_free(DEVI(dip)->devi_compat_names,
447 		    DEVI(dip)->devi_compat_length);
448 	if (DEVI(dip)->devi_rebinding_name)
449 		kmem_free(DEVI(dip)->devi_rebinding_name,
450 		    strlen(DEVI(dip)->devi_rebinding_name) + 1);
451 
452 	ddi_prop_remove_all(dip);	/* remove driver properties */
453 	if (devi->devi_sys_prop_ptr)
454 		i_ddi_prop_list_delete(devi->devi_sys_prop_ptr);
455 	if (devi->devi_hw_prop_ptr)
456 		i_ddi_prop_list_delete(devi->devi_hw_prop_ptr);
457 
458 	if (DEVI(dip)->devi_devid_str)
459 		ddi_devid_str_free(DEVI(dip)->devi_devid_str);
460 
461 	i_ddi_set_node_state(dip, DS_INVAL);
462 	da_log_enter(dip);
463 	if (devi->devi_audit) {
464 		kmem_free(devi->devi_audit, sizeof (devinfo_audit_t));
465 	}
466 	if (devi->devi_device_class)
467 		kmem_free(devi->devi_device_class,
468 		    strlen(devi->devi_device_class) + 1);
469 	cv_destroy(&(devi->devi_cv));
470 	mutex_destroy(&(devi->devi_lock));
471 	mutex_destroy(&(devi->devi_pm_lock));
472 	mutex_destroy(&(devi->devi_pm_busy_lock));
473 
474 	RIO_TRACE((CE_NOTE, "i_ddi_free_node: destroying contract fields: "
475 	    "dip=%p", (void *)dip));
476 	contract_device_remove_dip(dip);
477 	ASSERT(devi->devi_ct_count == -1);
478 	ASSERT(list_is_empty(&(devi->devi_ct)));
479 	cv_destroy(&(devi->devi_ct_cv));
480 	list_destroy(&(devi->devi_ct));
481 	/* free this last since contract_device_remove_dip() uses it */
482 	mutex_destroy(&(devi->devi_ct_lock));
483 	RIO_TRACE((CE_NOTE, "i_ddi_free_node: destroyed all contract fields: "
484 	    "dip=%p, name=%s", (void *)dip, devi->devi_node_name));
485 
486 	kmem_free(devi->devi_node_name, strlen(devi->devi_node_name) + 1);
487 
488 	/* free event data */
489 	if (devi->devi_ev_path)
490 		kmem_free(devi->devi_ev_path, MAXPATHLEN);
491 
492 	kmem_cache_free(ddi_node_cache, devi);
493 }
494 
495 
496 /*
497  * Node state transitions
498  */
499 
500 /*
501  * Change the node name
502  */
503 int
504 ndi_devi_set_nodename(dev_info_t *dip, char *name, int flags)
505 {
506 	_NOTE(ARGUNUSED(flags))
507 	char *nname, *oname;
508 
509 	ASSERT(dip && name);
510 
511 	oname = DEVI(dip)->devi_node_name;
512 	if (strcmp(oname, name) == 0)
513 		return (DDI_SUCCESS);
514 
515 	/*
516 	 * pcicfg_fix_ethernet requires a name change after node
517 	 * is linked into the tree. When pcicfg is fixed, we
518 	 * should only allow name change in DS_PROTO state.
519 	 */
520 	if (i_ddi_node_state(dip) >= DS_BOUND) {
521 		/*
522 		 * Don't allow name change once node is bound
523 		 */
524 		cmn_err(CE_NOTE,
525 		    "ndi_devi_set_nodename: node already bound dip = %p,"
526 		    " %s -> %s", (void *)dip, ddi_node_name(dip), name);
527 		return (NDI_FAILURE);
528 	}
529 
530 	nname = i_ddi_strdup(name, KM_SLEEP);
531 	DEVI(dip)->devi_node_name = nname;
532 	i_ddi_set_binding_name(dip, nname);
533 	kmem_free(oname, strlen(oname) + 1);
534 
535 	da_log_enter(dip);
536 	return (NDI_SUCCESS);
537 }
538 
539 void
540 i_ddi_add_devimap(dev_info_t *dip)
541 {
542 	struct devi_nodeid *elem;
543 
544 	ASSERT(dip);
545 
546 	if (!ndi_dev_is_persistent_node(dip))
547 		return;
548 
549 	ASSERT(ddi_get_parent(dip) == NULL || (DEVI_VHCI_NODE(dip)) ||
550 	    DEVI_BUSY_OWNED(ddi_get_parent(dip)));
551 
552 	mutex_enter(&devimap->dno_lock);
553 
554 	ASSERT(devimap->dno_free);
555 
556 	elem = devimap->dno_free;
557 	devimap->dno_free = elem->next;
558 
559 	elem->nodeid = ddi_get_nodeid(dip);
560 	elem->dip = dip;
561 	elem->next = devimap->dno_head;
562 	devimap->dno_head = elem;
563 
564 	devimap->dno_list_length++;
565 
566 	mutex_exit(&devimap->dno_lock);
567 }
568 
569 static int
570 i_ddi_remove_devimap(dev_info_t *dip)
571 {
572 	struct devi_nodeid *prev, *elem;
573 	static const char *fcn = "i_ddi_remove_devimap";
574 
575 	ASSERT(dip);
576 
577 	if (!ndi_dev_is_persistent_node(dip))
578 		return (DDI_SUCCESS);
579 
580 	mutex_enter(&devimap->dno_lock);
581 
582 	/*
583 	 * The following check is done with dno_lock held
584 	 * to prevent race between dip removal and
585 	 * e_ddi_prom_node_to_dip()
586 	 */
587 	if (e_ddi_devi_holdcnt(dip)) {
588 		mutex_exit(&devimap->dno_lock);
589 		return (DDI_FAILURE);
590 	}
591 
592 	ASSERT(devimap->dno_head);
593 	ASSERT(devimap->dno_list_length > 0);
594 
595 	prev = NULL;
596 	for (elem = devimap->dno_head; elem; elem = elem->next) {
597 		if (elem->dip == dip) {
598 			ASSERT(elem->nodeid == ddi_get_nodeid(dip));
599 			break;
600 		}
601 		prev = elem;
602 	}
603 
604 	if (elem && prev)
605 		prev->next = elem->next;
606 	else if (elem)
607 		devimap->dno_head = elem->next;
608 	else
609 		panic("%s: devinfo node(%p) not found",
610 		    fcn, (void *)dip);
611 
612 	devimap->dno_list_length--;
613 
614 	elem->nodeid = 0;
615 	elem->dip = NULL;
616 
617 	elem->next = devimap->dno_free;
618 	devimap->dno_free = elem;
619 
620 	mutex_exit(&devimap->dno_lock);
621 
622 	return (DDI_SUCCESS);
623 }
624 
625 /*
626  * Link this node into the devinfo tree and add to orphan list
627  * Not callable from interrupt context
628  */
629 static void
630 link_node(dev_info_t *dip)
631 {
632 	struct dev_info *devi = DEVI(dip);
633 	struct dev_info *parent = devi->devi_parent;
634 	dev_info_t **dipp;
635 
636 	ASSERT(parent);	/* never called for root node */
637 
638 	NDI_CONFIG_DEBUG((CE_CONT, "link_node: parent = %s child = %s\n",
639 	    parent->devi_node_name, devi->devi_node_name));
640 
641 	/*
642 	 * Hold the global_vhci_lock before linking any direct
643 	 * children of rootnex driver. This special lock protects
644 	 * linking and unlinking for rootnext direct children.
645 	 */
646 	if ((dev_info_t *)parent == ddi_root_node())
647 		mutex_enter(&global_vhci_lock);
648 
649 	/*
650 	 * attach the node to end of the list unless the node is already there
651 	 */
652 	dipp = (dev_info_t **)(&DEVI(parent)->devi_child);
653 	while (*dipp && (*dipp != dip)) {
654 		dipp = (dev_info_t **)(&DEVI(*dipp)->devi_sibling);
655 	}
656 	ASSERT(*dipp == NULL);	/* node is not linked */
657 
658 	/*
659 	 * Now that we are in the tree, update the devi-nodeid map.
660 	 */
661 	i_ddi_add_devimap(dip);
662 
663 	/*
664 	 * This is a temporary workaround for Bug 4618861.
665 	 * We keep the scsi_vhci nexus node on the left side of the devinfo
666 	 * tree (under the root nexus driver), so that virtual nodes under
667 	 * scsi_vhci will be SUSPENDed first and RESUMEd last.	This ensures
668 	 * that the pHCI nodes are active during times when their clients
669 	 * may be depending on them.  This workaround embodies the knowledge
670 	 * that system PM and CPR both traverse the tree left-to-right during
671 	 * SUSPEND and right-to-left during RESUME.
672 	 * Extending the workaround to IB Nexus/VHCI
673 	 * driver also.
674 	 */
675 	if (strcmp(devi->devi_binding_name, "scsi_vhci") == 0) {
676 		/* Add scsi_vhci to beginning of list */
677 		ASSERT((dev_info_t *)parent == top_devinfo);
678 		/* scsi_vhci under rootnex */
679 		devi->devi_sibling = parent->devi_child;
680 		parent->devi_child = devi;
681 	} else if (strcmp(devi->devi_binding_name, "ib") == 0) {
682 		i_link_vhci_node(dip);
683 	} else {
684 		/* Add to end of list */
685 		*dipp = dip;
686 		DEVI(dip)->devi_sibling = NULL;
687 	}
688 
689 	/*
690 	 * Release the global_vhci_lock before linking any direct
691 	 * children of rootnex driver.
692 	 */
693 	if ((dev_info_t *)parent == ddi_root_node())
694 		mutex_exit(&global_vhci_lock);
695 
696 	/* persistent nodes go on orphan list */
697 	if (ndi_dev_is_persistent_node(dip))
698 		add_to_dn_list(&orphanlist, dip);
699 }
700 
701 /*
702  * Unlink this node from the devinfo tree
703  */
704 static int
705 unlink_node(dev_info_t *dip)
706 {
707 	struct dev_info *devi = DEVI(dip);
708 	struct dev_info *parent = devi->devi_parent;
709 	dev_info_t **dipp;
710 	ddi_hp_cn_handle_t *hdlp;
711 
712 	ASSERT(parent != NULL);
713 	ASSERT(devi->devi_node_state == DS_LINKED);
714 
715 	NDI_CONFIG_DEBUG((CE_CONT, "unlink_node: name = %s\n",
716 	    ddi_node_name(dip)));
717 
718 	/* check references */
719 	if (devi->devi_ref || i_ddi_remove_devimap(dip) != DDI_SUCCESS)
720 		return (DDI_FAILURE);
721 
722 	/*
723 	 * Hold the global_vhci_lock before linking any direct
724 	 * children of rootnex driver.
725 	 */
726 	if ((dev_info_t *)parent == ddi_root_node())
727 		mutex_enter(&global_vhci_lock);
728 
729 	dipp = (dev_info_t **)(&DEVI(parent)->devi_child);
730 	while (*dipp && (*dipp != dip)) {
731 		dipp = (dev_info_t **)(&DEVI(*dipp)->devi_sibling);
732 	}
733 	if (*dipp) {
734 		*dipp = (dev_info_t *)(devi->devi_sibling);
735 		devi->devi_sibling = NULL;
736 	} else {
737 		NDI_CONFIG_DEBUG((CE_NOTE, "unlink_node: %s not linked",
738 		    devi->devi_node_name));
739 	}
740 
741 	/*
742 	 * Release the global_vhci_lock before linking any direct
743 	 * children of rootnex driver.
744 	 */
745 	if ((dev_info_t *)parent == ddi_root_node())
746 		mutex_exit(&global_vhci_lock);
747 
748 	/* Remove node from orphan list */
749 	if (ndi_dev_is_persistent_node(dip)) {
750 		remove_from_dn_list(&orphanlist, dip);
751 	}
752 
753 	/* Update parent's hotplug handle list */
754 	for (hdlp = DEVI(parent)->devi_hp_hdlp; hdlp; hdlp = hdlp->next) {
755 		if (hdlp->cn_info.cn_child == dip)
756 			hdlp->cn_info.cn_child = NULL;
757 	}
758 	return (DDI_SUCCESS);
759 }
760 
761 /*
762  * Bind this devinfo node to a driver. If compat is NON-NULL, try that first.
763  * Else, use the node-name.
764  *
765  * NOTE: IEEE1275 specifies that nodename should be tried before compatible.
766  *	Solaris implementation binds nodename after compatible.
767  *
768  * If we find a binding,
769  * - set the binding name to the string,
770  * - set major number to driver major
771  *
772  * If we don't find a binding,
773  * - return failure
774  */
775 static int
776 bind_node(dev_info_t *dip)
777 {
778 	char *p = NULL;
779 	major_t major = DDI_MAJOR_T_NONE;
780 	struct dev_info *devi = DEVI(dip);
781 	dev_info_t *parent = ddi_get_parent(dip);
782 
783 	ASSERT(devi->devi_node_state == DS_LINKED);
784 
785 	NDI_CONFIG_DEBUG((CE_CONT, "bind_node: 0x%p(name = %s)\n",
786 	    (void *)dip, ddi_node_name(dip)));
787 
788 	mutex_enter(&DEVI(dip)->devi_lock);
789 	if (DEVI(dip)->devi_flags & DEVI_NO_BIND) {
790 		mutex_exit(&DEVI(dip)->devi_lock);
791 		return (DDI_FAILURE);
792 	}
793 	mutex_exit(&DEVI(dip)->devi_lock);
794 
795 	/* find the driver with most specific binding using compatible */
796 	major = ddi_compatible_driver_major(dip, &p);
797 	if (major == DDI_MAJOR_T_NONE)
798 		return (DDI_FAILURE);
799 
800 	devi->devi_major = major;
801 	if (p != NULL) {
802 		i_ddi_set_binding_name(dip, p);
803 		NDI_CONFIG_DEBUG((CE_CONT, "bind_node: %s bound to %s\n",
804 		    devi->devi_node_name, p));
805 	}
806 
807 	/* Link node to per-driver list */
808 	link_to_driver_list(dip);
809 
810 	/*
811 	 * reset parent flag so that nexus will merge .conf props
812 	 */
813 	if (ndi_dev_is_persistent_node(dip)) {
814 		mutex_enter(&DEVI(parent)->devi_lock);
815 		DEVI(parent)->devi_flags &=
816 		    ~(DEVI_ATTACHED_CHILDREN|DEVI_MADE_CHILDREN);
817 		mutex_exit(&DEVI(parent)->devi_lock);
818 	}
819 	return (DDI_SUCCESS);
820 }
821 
822 /*
823  * Unbind this devinfo node
824  * Called before the node is destroyed or driver is removed from system
825  */
826 static int
827 unbind_node(dev_info_t *dip)
828 {
829 	ASSERT(DEVI(dip)->devi_node_state == DS_BOUND);
830 	ASSERT(DEVI(dip)->devi_major != DDI_MAJOR_T_NONE);
831 
832 	/* check references */
833 	if (DEVI(dip)->devi_ref)
834 		return (DDI_FAILURE);
835 
836 	NDI_CONFIG_DEBUG((CE_CONT, "unbind_node: 0x%p(name = %s)\n",
837 	    (void *)dip, ddi_node_name(dip)));
838 
839 	unlink_from_driver_list(dip);
840 
841 	DEVI(dip)->devi_major = DDI_MAJOR_T_NONE;
842 	DEVI(dip)->devi_binding_name = DEVI(dip)->devi_node_name;
843 	return (DDI_SUCCESS);
844 }
845 
846 /*
847  * Initialize a node: calls the parent nexus' bus_ctl ops to do the operation.
848  * Must hold parent and per-driver list while calling this function.
849  * A successful init_node() returns with an active ndi_hold_devi() hold on
850  * the parent.
851  */
852 static int
853 init_node(dev_info_t *dip)
854 {
855 	int error;
856 	dev_info_t *pdip = ddi_get_parent(dip);
857 	int (*f)(dev_info_t *, dev_info_t *, ddi_ctl_enum_t, void *, void *);
858 	char *path;
859 	major_t	major;
860 	ddi_devid_t devid = NULL;
861 
862 	ASSERT(i_ddi_node_state(dip) == DS_BOUND);
863 
864 	/* should be DS_READY except for pcmcia ... */
865 	ASSERT(i_ddi_node_state(pdip) >= DS_PROBED);
866 
867 	path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
868 	(void) ddi_pathname(dip, path);
869 	NDI_CONFIG_DEBUG((CE_CONT, "init_node: entry: path %s 0x%p\n",
870 	    path, (void *)dip));
871 
872 	/*
873 	 * The parent must have a bus_ctl operation.
874 	 */
875 	if ((DEVI(pdip)->devi_ops->devo_bus_ops == NULL) ||
876 	    (f = DEVI(pdip)->devi_ops->devo_bus_ops->bus_ctl) == NULL) {
877 		error = DDI_FAILURE;
878 		goto out;
879 	}
880 
881 	add_global_props(dip);
882 
883 	/*
884 	 * Invoke the parent's bus_ctl operation with the DDI_CTLOPS_INITCHILD
885 	 * command to transform the child to canonical form 1. If there
886 	 * is an error, ddi_remove_child should be called, to clean up.
887 	 */
888 	error = (*f)(pdip, pdip, DDI_CTLOPS_INITCHILD, dip, NULL);
889 	if (error != DDI_SUCCESS) {
890 		NDI_CONFIG_DEBUG((CE_CONT, "init_node: %s 0x%p failed\n",
891 		    path, (void *)dip));
892 		remove_global_props(dip);
893 
894 		/*
895 		 * If a nexus INITCHILD implementation calls ddi_devid_regster()
896 		 * prior to setting devi_addr, the devid is not recorded in
897 		 * the devid cache (i.e. DEVI_CACHED_DEVID is not set).
898 		 * With mpxio, while the vhci client path may be missing
899 		 * from the cache, phci pathinfo paths may have already be
900 		 * added to the cache, against the client dip, by use of
901 		 * e_devid_cache_pathinfo().  Because of this, when INITCHILD
902 		 * of the client fails, we need to purge the client dip from
903 		 * the cache even if DEVI_CACHED_DEVID is not set - if only
904 		 * devi_devid_str is set.
905 		 */
906 		mutex_enter(&DEVI(dip)->devi_lock);
907 		if ((DEVI(dip)->devi_flags & DEVI_CACHED_DEVID) ||
908 		    DEVI(dip)->devi_devid_str) {
909 			DEVI(dip)->devi_flags &= ~DEVI_CACHED_DEVID;
910 			mutex_exit(&DEVI(dip)->devi_lock);
911 			ddi_devid_unregister(dip);
912 		} else
913 			mutex_exit(&DEVI(dip)->devi_lock);
914 
915 		/* in case nexus driver didn't clear this field */
916 		ddi_set_name_addr(dip, NULL);
917 		error = DDI_FAILURE;
918 		goto out;
919 	}
920 
921 	ndi_hold_devi(pdip);			/* initial hold of parent */
922 
923 	/* recompute path after initchild for @addr information */
924 	(void) ddi_pathname(dip, path);
925 
926 	/* Check for duplicate nodes */
927 	if (find_duplicate_child(pdip, dip) != NULL) {
928 		/*
929 		 * uninit_node() the duplicate - a successful uninit_node()
930 		 * will release inital hold of parent using ndi_rele_devi().
931 		 */
932 		if ((error = uninit_node(dip)) != DDI_SUCCESS) {
933 			ndi_rele_devi(pdip);	/* release initial hold */
934 			cmn_err(CE_WARN, "init_node: uninit of duplicate "
935 			    "node %s failed", path);
936 		}
937 		NDI_CONFIG_DEBUG((CE_CONT, "init_node: duplicate uninit "
938 		    "%s 0x%p%s\n", path, (void *)dip,
939 		    (error == DDI_SUCCESS) ? "" : " failed"));
940 		error = DDI_FAILURE;
941 		goto out;
942 	}
943 
944 	/*
945 	 * If a devid was registered for a DS_BOUND node then the devid_cache
946 	 * may not have captured the path. Detect this situation and ensure that
947 	 * the path enters the cache now that devi_addr is established.
948 	 */
949 	if (!(DEVI(dip)->devi_flags & DEVI_CACHED_DEVID) &&
950 	    (ddi_devid_get(dip, &devid) == DDI_SUCCESS)) {
951 		if (e_devid_cache_register(dip, devid) == DDI_SUCCESS) {
952 			mutex_enter(&DEVI(dip)->devi_lock);
953 			DEVI(dip)->devi_flags |= DEVI_CACHED_DEVID;
954 			mutex_exit(&DEVI(dip)->devi_lock);
955 		}
956 
957 		ddi_devid_free(devid);
958 	}
959 
960 	/*
961 	 * Check to see if we have a path-oriented driver alias that overrides
962 	 * the current driver binding. If so, we need to rebind. This check
963 	 * needs to be delayed until after a successful DDI_CTLOPS_INITCHILD,
964 	 * so the unit-address is established on the last component of the path.
965 	 *
966 	 * NOTE: Allowing a path-oriented alias to change the driver binding
967 	 * of a driver.conf node results in non-intuitive property behavior.
968 	 * We provide a tunable (driver_conf_allow_path_alias) to control
969 	 * this behavior. See uninit_node() for more details.
970 	 *
971 	 * NOTE: If you are adding a path-oriented alias for the boot device,
972 	 * and there is mismatch between OBP and the kernel in regard to
973 	 * generic name use, like "disk" .vs. "ssd", then you will need
974 	 * to add a path-oriented alias for both paths.
975 	 */
976 	major = ddi_name_to_major(path);
977 	if (driver_active(major) && (major != DEVI(dip)->devi_major) &&
978 	    (ndi_dev_is_persistent_node(dip) || driver_conf_allow_path_alias)) {
979 
980 		/* Mark node for rebind processing. */
981 		mutex_enter(&DEVI(dip)->devi_lock);
982 		DEVI(dip)->devi_flags |= DEVI_REBIND;
983 		mutex_exit(&DEVI(dip)->devi_lock);
984 
985 		/*
986 		 * Add an extra hold on the parent to prevent it from ever
987 		 * having a zero devi_ref during the child rebind process.
988 		 * This is necessary to ensure that the parent will never
989 		 * detach(9E) during the rebind.
990 		 */
991 		ndi_hold_devi(pdip);		/* extra hold of parent */
992 
993 		/*
994 		 * uninit_node() current binding - a successful uninit_node()
995 		 * will release extra hold of parent using ndi_rele_devi().
996 		 */
997 		if ((error = uninit_node(dip)) != DDI_SUCCESS) {
998 			ndi_rele_devi(pdip);	/* release extra hold */
999 			ndi_rele_devi(pdip);	/* release initial hold */
1000 			cmn_err(CE_WARN, "init_node: uninit for rebind "
1001 			    "of node %s failed", path);
1002 			goto out;
1003 		}
1004 
1005 		/* Unbind: demote the node back to DS_LINKED.  */
1006 		if ((error = ndi_devi_unbind_driver(dip)) != DDI_SUCCESS) {
1007 			ndi_rele_devi(pdip);	/* release initial hold */
1008 			cmn_err(CE_WARN, "init_node: unbind for rebind "
1009 			    "of node %s failed", path);
1010 			goto out;
1011 		}
1012 
1013 		/* establish rebinding name */
1014 		if (DEVI(dip)->devi_rebinding_name == NULL)
1015 			DEVI(dip)->devi_rebinding_name =
1016 			    i_ddi_strdup(path, KM_SLEEP);
1017 
1018 		/*
1019 		 * Now that we are demoted and marked for rebind, repromote.
1020 		 * We need to do this in steps, instead of just calling
1021 		 * ddi_initchild, so that we can redo the merge operation
1022 		 * after we are rebound to the path-bound driver.
1023 		 *
1024 		 * Start by rebinding node to the path-bound driver.
1025 		 */
1026 		if ((error = ndi_devi_bind_driver(dip, 0)) != DDI_SUCCESS) {
1027 			ndi_rele_devi(pdip);	/* release initial hold */
1028 			cmn_err(CE_WARN, "init_node: rebind "
1029 			    "of node %s failed", path);
1030 			goto out;
1031 		}
1032 
1033 		/*
1034 		 * If the node is not a driver.conf node then merge
1035 		 * driver.conf properties from new path-bound driver.conf.
1036 		 */
1037 		if (ndi_dev_is_persistent_node(dip))
1038 			(void) i_ndi_make_spec_children(pdip, 0);
1039 
1040 		/*
1041 		 * Now that we have taken care of merge, repromote back
1042 		 * to DS_INITIALIZED.
1043 		 */
1044 		error = ddi_initchild(pdip, dip);
1045 		NDI_CONFIG_DEBUG((CE_CONT, "init_node: rebind "
1046 		    "%s 0x%p\n", path, (void *)dip));
1047 
1048 		/*
1049 		 * Release our initial hold. If ddi_initchild() was
1050 		 * successful then it will return with the active hold.
1051 		 */
1052 		ndi_rele_devi(pdip);
1053 		goto out;
1054 	}
1055 
1056 	/*
1057 	 * Apply multi-parent/deep-nexus optimization to the new node
1058 	 */
1059 	DEVI(dip)->devi_instance = e_ddi_assign_instance(dip);
1060 	ddi_optimize_dtree(dip);
1061 	error = DDI_SUCCESS;		/* return with active hold */
1062 
1063 out:	if (error != DDI_SUCCESS) {
1064 		/* On failure ensure that DEVI_REBIND is cleared */
1065 		mutex_enter(&DEVI(dip)->devi_lock);
1066 		DEVI(dip)->devi_flags &= ~DEVI_REBIND;
1067 		mutex_exit(&DEVI(dip)->devi_lock);
1068 	}
1069 	kmem_free(path, MAXPATHLEN);
1070 	return (error);
1071 }
1072 
1073 /*
1074  * Uninitialize node
1075  * The per-driver list must be held busy during the call.
1076  * A successful uninit_node() releases the init_node() hold on
1077  * the parent by calling ndi_rele_devi().
1078  */
1079 static int
1080 uninit_node(dev_info_t *dip)
1081 {
1082 	int node_state_entry;
1083 	dev_info_t *pdip;
1084 	struct dev_ops *ops;
1085 	int (*f)();
1086 	int error;
1087 	char *addr;
1088 
1089 	/*
1090 	 * Don't check for references here or else a ref-counted
1091 	 * dip cannot be downgraded by the framework.
1092 	 */
1093 	node_state_entry = i_ddi_node_state(dip);
1094 	ASSERT((node_state_entry == DS_BOUND) ||
1095 	    (node_state_entry == DS_INITIALIZED));
1096 	pdip = ddi_get_parent(dip);
1097 	ASSERT(pdip);
1098 
1099 	NDI_CONFIG_DEBUG((CE_CONT, "uninit_node: 0x%p(%s%d)\n",
1100 	    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip)));
1101 
1102 	if (((ops = ddi_get_driver(pdip)) == NULL) ||
1103 	    (ops->devo_bus_ops == NULL) ||
1104 	    ((f = ops->devo_bus_ops->bus_ctl) == NULL)) {
1105 		return (DDI_FAILURE);
1106 	}
1107 
1108 	/*
1109 	 * save the @addr prior to DDI_CTLOPS_UNINITCHILD for use in
1110 	 * freeing the instance if it succeeds.
1111 	 */
1112 	if (node_state_entry == DS_INITIALIZED) {
1113 		addr = ddi_get_name_addr(dip);
1114 		if (addr)
1115 			addr = i_ddi_strdup(addr, KM_SLEEP);
1116 	} else {
1117 		addr = NULL;
1118 	}
1119 
1120 	error = (*f)(pdip, pdip, DDI_CTLOPS_UNINITCHILD, dip, (void *)NULL);
1121 	if (error == DDI_SUCCESS) {
1122 		/* ensure that devids are unregistered */
1123 		mutex_enter(&DEVI(dip)->devi_lock);
1124 		if ((DEVI(dip)->devi_flags & DEVI_CACHED_DEVID)) {
1125 			DEVI(dip)->devi_flags &= ~DEVI_CACHED_DEVID;
1126 			mutex_exit(&DEVI(dip)->devi_lock);
1127 			ddi_devid_unregister(dip);
1128 		} else
1129 			mutex_exit(&DEVI(dip)->devi_lock);
1130 
1131 		/* if uninitchild forgot to set devi_addr to NULL do it now */
1132 		ddi_set_name_addr(dip, NULL);
1133 
1134 		/*
1135 		 * Free instance number. This is a no-op if instance has
1136 		 * been kept by probe_node().  Avoid free when we are called
1137 		 * from init_node (DS_BOUND) because the instance has not yet
1138 		 * been assigned.
1139 		 */
1140 		if (node_state_entry == DS_INITIALIZED) {
1141 			e_ddi_free_instance(dip, addr);
1142 			DEVI(dip)->devi_instance = -1;
1143 		}
1144 
1145 		/* release the init_node hold */
1146 		ndi_rele_devi(pdip);
1147 
1148 		remove_global_props(dip);
1149 
1150 		/*
1151 		 * NOTE: The decision on whether to allow a path-oriented
1152 		 * rebind of a driver.conf enumerated node is made by
1153 		 * init_node() based on driver_conf_allow_path_alias. The
1154 		 * rebind code below prevents deletion of system properties
1155 		 * on driver.conf nodes.
1156 		 *
1157 		 * When driver_conf_allow_path_alias is set, property behavior
1158 		 * on rebound driver.conf file is non-intuitive. For a
1159 		 * driver.conf node, the unit-address properties come from
1160 		 * the driver.conf file as system properties. Removing system
1161 		 * properties from a driver.conf node makes the node
1162 		 * useless (we get node without unit-address properties) - so
1163 		 * we leave system properties in place. The result is a node
1164 		 * where system properties come from the node being rebound,
1165 		 * and global properties come from the driver.conf file
1166 		 * of the driver we are rebinding to.  If we could determine
1167 		 * that the path-oriented alias driver.conf file defined a
1168 		 * node at the same unit address, it would be best to use
1169 		 * that node and avoid the non-intuitive property behavior.
1170 		 * Unfortunately, the current "merge" code does not support
1171 		 * this, so we live with the non-intuitive property behavior.
1172 		 */
1173 		if (!((ndi_dev_is_persistent_node(dip) == 0) &&
1174 		    (DEVI(dip)->devi_flags & DEVI_REBIND)))
1175 			e_ddi_prop_remove_all(dip);
1176 	} else {
1177 		NDI_CONFIG_DEBUG((CE_CONT, "uninit_node failed: 0x%p(%s%d)\n",
1178 		    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip)));
1179 	}
1180 
1181 	if (addr)
1182 		kmem_free(addr, strlen(addr) + 1);
1183 	return (error);
1184 }
1185 
1186 /*
1187  * Invoke driver's probe entry point to probe for existence of hardware.
1188  * Keep instance permanent for successful probe and leaf nodes.
1189  *
1190  * Per-driver list must be held busy while calling this function.
1191  */
1192 static int
1193 probe_node(dev_info_t *dip)
1194 {
1195 	int rv;
1196 
1197 	ASSERT(i_ddi_node_state(dip) == DS_INITIALIZED);
1198 
1199 	NDI_CONFIG_DEBUG((CE_CONT, "probe_node: 0x%p(%s%d)\n",
1200 	    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip)));
1201 
1202 	/* temporarily hold the driver while we probe */
1203 	DEVI(dip)->devi_ops = ndi_hold_driver(dip);
1204 	if (DEVI(dip)->devi_ops == NULL) {
1205 		NDI_CONFIG_DEBUG((CE_CONT,
1206 		    "probe_node: 0x%p(%s%d) cannot load driver\n",
1207 		    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip)));
1208 		return (DDI_FAILURE);
1209 	}
1210 
1211 	if (identify_9e != 0)
1212 		(void) devi_identify(dip);
1213 
1214 	rv = devi_probe(dip);
1215 
1216 	/* release the driver now that probe is complete */
1217 	ndi_rele_driver(dip);
1218 	DEVI(dip)->devi_ops = NULL;
1219 
1220 	switch (rv) {
1221 	case DDI_PROBE_SUCCESS:			/* found */
1222 	case DDI_PROBE_DONTCARE:		/* ddi_dev_is_sid */
1223 		e_ddi_keep_instance(dip);	/* persist instance */
1224 		rv = DDI_SUCCESS;
1225 		break;
1226 
1227 	case DDI_PROBE_PARTIAL:			/* maybe later */
1228 	case DDI_PROBE_FAILURE:			/* not found */
1229 		NDI_CONFIG_DEBUG((CE_CONT,
1230 		    "probe_node: 0x%p(%s%d) no hardware found%s\n",
1231 		    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip),
1232 		    (rv == DDI_PROBE_PARTIAL) ? " yet" : ""));
1233 		rv = DDI_FAILURE;
1234 		break;
1235 
1236 	default:
1237 #ifdef	DEBUG
1238 		cmn_err(CE_WARN, "probe_node: %s%d: illegal probe(9E) value",
1239 		    ddi_driver_name(dip), ddi_get_instance(dip));
1240 #endif	/* DEBUG */
1241 		rv = DDI_FAILURE;
1242 		break;
1243 	}
1244 	return (rv);
1245 }
1246 
1247 /*
1248  * Unprobe a node. Simply reset the node state.
1249  * Per-driver list must be held busy while calling this function.
1250  */
1251 static int
1252 unprobe_node(dev_info_t *dip)
1253 {
1254 	ASSERT(i_ddi_node_state(dip) == DS_PROBED);
1255 
1256 	/*
1257 	 * Don't check for references here or else a ref-counted
1258 	 * dip cannot be downgraded by the framework.
1259 	 */
1260 
1261 	NDI_CONFIG_DEBUG((CE_CONT, "unprobe_node: 0x%p(name = %s)\n",
1262 	    (void *)dip, ddi_node_name(dip)));
1263 	return (DDI_SUCCESS);
1264 }
1265 
1266 /*
1267  * Attach devinfo node.
1268  * Per-driver list must be held busy.
1269  */
1270 static int
1271 attach_node(dev_info_t *dip)
1272 {
1273 	int rv;
1274 
1275 	ASSERT(DEVI_BUSY_OWNED(ddi_get_parent(dip)));
1276 	ASSERT(i_ddi_node_state(dip) == DS_PROBED);
1277 
1278 	NDI_CONFIG_DEBUG((CE_CONT, "attach_node: 0x%p(%s%d)\n",
1279 	    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip)));
1280 
1281 	/*
1282 	 * Tell mpxio framework that a node is about to online.
1283 	 */
1284 	if ((rv = mdi_devi_online(dip, 0)) != NDI_SUCCESS) {
1285 		return (DDI_FAILURE);
1286 	}
1287 
1288 	/* no recursive attachment */
1289 	ASSERT(DEVI(dip)->devi_ops == NULL);
1290 
1291 	/*
1292 	 * Hold driver the node is bound to.
1293 	 */
1294 	DEVI(dip)->devi_ops = ndi_hold_driver(dip);
1295 	if (DEVI(dip)->devi_ops == NULL) {
1296 		/*
1297 		 * We were able to load driver for probing, so we should
1298 		 * not get here unless something really bad happened.
1299 		 */
1300 		cmn_err(CE_WARN, "attach_node: no driver for major %d",
1301 		    DEVI(dip)->devi_major);
1302 		return (DDI_FAILURE);
1303 	}
1304 
1305 	if (NEXUS_DRV(DEVI(dip)->devi_ops))
1306 		DEVI(dip)->devi_taskq = ddi_taskq_create(dip,
1307 		    "nexus_enum_tq", 1,
1308 		    TASKQ_DEFAULTPRI, 0);
1309 
1310 	mutex_enter(&(DEVI(dip)->devi_lock));
1311 	DEVI_SET_ATTACHING(dip);
1312 	DEVI_SET_NEED_RESET(dip);
1313 	mutex_exit(&(DEVI(dip)->devi_lock));
1314 
1315 	rv = devi_attach(dip, DDI_ATTACH);
1316 
1317 	mutex_enter(&(DEVI(dip)->devi_lock));
1318 	DEVI_CLR_ATTACHING(dip);
1319 
1320 	if (rv != DDI_SUCCESS) {
1321 		DEVI_CLR_NEED_RESET(dip);
1322 		mutex_exit(&DEVI(dip)->devi_lock);
1323 
1324 		/*
1325 		 * Cleanup dacf reservations
1326 		 */
1327 		mutex_enter(&dacf_lock);
1328 		dacf_clr_rsrvs(dip, DACF_OPID_POSTATTACH);
1329 		dacf_clr_rsrvs(dip, DACF_OPID_PREDETACH);
1330 		mutex_exit(&dacf_lock);
1331 		if (DEVI(dip)->devi_taskq)
1332 			ddi_taskq_destroy(DEVI(dip)->devi_taskq);
1333 		ddi_remove_minor_node(dip, NULL);
1334 
1335 		/* release the driver if attach failed */
1336 		ndi_rele_driver(dip);
1337 		DEVI(dip)->devi_ops = NULL;
1338 		NDI_CONFIG_DEBUG((CE_CONT, "attach_node: 0x%p(%s%d) failed\n",
1339 		    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip)));
1340 		return (DDI_FAILURE);
1341 	} else
1342 		mutex_exit(&DEVI(dip)->devi_lock);
1343 
1344 	/* successful attach, return with driver held */
1345 
1346 	return (DDI_SUCCESS);
1347 }
1348 
1349 /*
1350  * Detach devinfo node.
1351  * Per-driver list must be held busy.
1352  */
1353 static int
1354 detach_node(dev_info_t *dip, uint_t flag)
1355 {
1356 	struct devnames	*dnp;
1357 	int		rv;
1358 
1359 	ASSERT(DEVI_BUSY_OWNED(ddi_get_parent(dip)));
1360 	ASSERT(i_ddi_node_state(dip) == DS_ATTACHED);
1361 
1362 	/* check references */
1363 	if (DEVI(dip)->devi_ref)
1364 		return (DDI_FAILURE);
1365 
1366 	NDI_CONFIG_DEBUG((CE_CONT, "detach_node: 0x%p(%s%d)\n",
1367 	    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip)));
1368 
1369 	/*
1370 	 * NOTE: If we are processing a pHCI node then the calling code
1371 	 * must detect this and ndi_devi_enter() in (vHCI, parent(pHCI))
1372 	 * order unless pHCI and vHCI are siblings.  Code paths leading
1373 	 * here that must ensure this ordering include:
1374 	 * unconfig_immediate_children(), devi_unconfig_one(),
1375 	 * ndi_devi_unconfig_one(), ndi_devi_offline().
1376 	 */
1377 	ASSERT(!MDI_PHCI(dip) ||
1378 	    (ddi_get_parent(mdi_devi_get_vdip(dip)) == ddi_get_parent(dip)) ||
1379 	    DEVI_BUSY_OWNED(mdi_devi_get_vdip(dip)));
1380 
1381 	/* Offline the device node with the mpxio framework. */
1382 	if (mdi_devi_offline(dip, flag) != NDI_SUCCESS) {
1383 		return (DDI_FAILURE);
1384 	}
1385 
1386 	/* drain the taskq */
1387 	if (DEVI(dip)->devi_taskq)
1388 		ddi_taskq_wait(DEVI(dip)->devi_taskq);
1389 
1390 	rv = devi_detach(dip, DDI_DETACH);
1391 
1392 	if (rv != DDI_SUCCESS) {
1393 		NDI_CONFIG_DEBUG((CE_CONT,
1394 		    "detach_node: 0x%p(%s%d) failed\n",
1395 		    (void *)dip, ddi_driver_name(dip), ddi_get_instance(dip)));
1396 		return (DDI_FAILURE);
1397 	}
1398 
1399 	mutex_enter(&(DEVI(dip)->devi_lock));
1400 	DEVI_CLR_NEED_RESET(dip);
1401 	mutex_exit(&(DEVI(dip)->devi_lock));
1402 
1403 #if defined(__amd64) && !defined(__xpv)
1404 	/*
1405 	 * Close any iommulib mediated linkage to an IOMMU
1406 	 */
1407 	if (IOMMU_USED(dip))
1408 		iommulib_nex_close(dip);
1409 #endif
1410 
1411 	/* destroy the taskq */
1412 	if (DEVI(dip)->devi_taskq) {
1413 		ddi_taskq_destroy(DEVI(dip)->devi_taskq);
1414 		DEVI(dip)->devi_taskq = NULL;
1415 	}
1416 
1417 	/* Cleanup dacf reservations */
1418 	mutex_enter(&dacf_lock);
1419 	dacf_clr_rsrvs(dip, DACF_OPID_POSTATTACH);
1420 	dacf_clr_rsrvs(dip, DACF_OPID_PREDETACH);
1421 	mutex_exit(&dacf_lock);
1422 
1423 	/* remove any additional flavors that were added */
1424 	if (DEVI(dip)->devi_flavorv_n > 1 && DEVI(dip)->devi_flavorv != NULL) {
1425 		kmem_free(DEVI(dip)->devi_flavorv,
1426 		    (DEVI(dip)->devi_flavorv_n - 1) * sizeof (void *));
1427 		DEVI(dip)->devi_flavorv = NULL;
1428 	}
1429 
1430 	/* Remove properties and minor nodes in case driver forgots */
1431 	ddi_remove_minor_node(dip, NULL);
1432 	ddi_prop_remove_all(dip);
1433 
1434 	/* a detached node can't have attached or .conf children */
1435 	mutex_enter(&DEVI(dip)->devi_lock);
1436 	DEVI(dip)->devi_flags &= ~(DEVI_MADE_CHILDREN|DEVI_ATTACHED_CHILDREN);
1437 	mutex_exit(&DEVI(dip)->devi_lock);
1438 
1439 	/*
1440 	 * If the instance has successfully detached in detach_driver() context,
1441 	 * clear DN_DRIVER_HELD for correct ddi_hold_installed_driver()
1442 	 * behavior. Consumers like qassociate() depend on this (via clnopen()).
1443 	 */
1444 	if (flag & NDI_DETACH_DRIVER) {
1445 		dnp = &(devnamesp[DEVI(dip)->devi_major]);
1446 		LOCK_DEV_OPS(&dnp->dn_lock);
1447 		dnp->dn_flags &= ~DN_DRIVER_HELD;
1448 		UNLOCK_DEV_OPS(&dnp->dn_lock);
1449 	}
1450 
1451 	/* successful detach, release the driver */
1452 	ndi_rele_driver(dip);
1453 	DEVI(dip)->devi_ops = NULL;
1454 	return (DDI_SUCCESS);
1455 }
1456 
1457 /*
1458  * Run dacf post_attach routines
1459  */
1460 static int
1461 postattach_node(dev_info_t *dip)
1462 {
1463 	int rval;
1464 
1465 	/*
1466 	 * For hotplug busses like USB, it's possible that devices
1467 	 * are removed but dip is still around. We don't want to
1468 	 * run dacf routines as part of detach failure recovery.
1469 	 *
1470 	 * Pretend success until we figure out how to prevent
1471 	 * access to such devinfo nodes.
1472 	 */
1473 	if (DEVI_IS_DEVICE_REMOVED(dip))
1474 		return (DDI_SUCCESS);
1475 
1476 	/*
1477 	 * if dacf_postattach failed, report it to the framework
1478 	 * so that it can be retried later at the open time.
1479 	 */
1480 	mutex_enter(&dacf_lock);
1481 	rval = dacfc_postattach(dip);
1482 	mutex_exit(&dacf_lock);
1483 
1484 	/*
1485 	 * Plumbing during postattach may fail because of the
1486 	 * underlying device is not ready. This will fail ndi_devi_config()
1487 	 * in dv_filldir() and a warning message is issued. The message
1488 	 * from here will explain what happened
1489 	 */
1490 	if (rval != DACF_SUCCESS) {
1491 		cmn_err(CE_WARN, "Postattach failed for %s%d\n",
1492 		    ddi_driver_name(dip), ddi_get_instance(dip));
1493 		return (DDI_FAILURE);
1494 	}
1495 
1496 	return (DDI_SUCCESS);
1497 }
1498 
1499 /*
1500  * Run dacf pre-detach routines
1501  */
1502 static int
1503 predetach_node(dev_info_t *dip, uint_t flag)
1504 {
1505 	int ret;
1506 
1507 	/*
1508 	 * Don't auto-detach if DDI_FORCEATTACH or DDI_NO_AUTODETACH
1509 	 * properties are set.
1510 	 */
1511 	if (flag & NDI_AUTODETACH) {
1512 		struct devnames *dnp;
1513 		int pflag = DDI_PROP_NOTPROM | DDI_PROP_DONTPASS;
1514 
1515 		if ((ddi_prop_get_int(DDI_DEV_T_ANY, dip,
1516 		    pflag, DDI_FORCEATTACH, 0) == 1) ||
1517 		    (ddi_prop_get_int(DDI_DEV_T_ANY, dip,
1518 		    pflag, DDI_NO_AUTODETACH, 0) == 1))
1519 			return (DDI_FAILURE);
1520 
1521 		/* check for driver global version of DDI_NO_AUTODETACH */
1522 		dnp = &devnamesp[DEVI(dip)->devi_major];
1523 		LOCK_DEV_OPS(&dnp->dn_lock);
1524 		if (dnp->dn_flags & DN_NO_AUTODETACH) {
1525 			UNLOCK_DEV_OPS(&dnp->dn_lock);
1526 			return (DDI_FAILURE);
1527 		}
1528 		UNLOCK_DEV_OPS(&dnp->dn_lock);
1529 	}
1530 
1531 	mutex_enter(&dacf_lock);
1532 	ret = dacfc_predetach(dip);
1533 	mutex_exit(&dacf_lock);
1534 
1535 	return (ret);
1536 }
1537 
1538 /*
1539  * Wrapper for making multiple state transitions
1540  */
1541 
1542 /*
1543  * i_ndi_config_node: upgrade dev_info node into a specified state.
1544  * It is a bit tricky because the locking protocol changes before and
1545  * after a node is bound to a driver. All locks are held external to
1546  * this function.
1547  */
1548 int
1549 i_ndi_config_node(dev_info_t *dip, ddi_node_state_t state, uint_t flag)
1550 {
1551 	_NOTE(ARGUNUSED(flag))
1552 	int rv = DDI_SUCCESS;
1553 
1554 	ASSERT(DEVI_BUSY_OWNED(ddi_get_parent(dip)));
1555 
1556 	while ((i_ddi_node_state(dip) < state) && (rv == DDI_SUCCESS)) {
1557 
1558 		/* don't allow any more changes to the device tree */
1559 		if (devinfo_freeze) {
1560 			rv = DDI_FAILURE;
1561 			break;
1562 		}
1563 
1564 		switch (i_ddi_node_state(dip)) {
1565 		case DS_PROTO:
1566 			/*
1567 			 * only caller can reference this node, no external
1568 			 * locking needed.
1569 			 */
1570 			link_node(dip);
1571 			translate_devid((dev_info_t *)dip);
1572 			i_ddi_set_node_state(dip, DS_LINKED);
1573 			break;
1574 		case DS_LINKED:
1575 			/*
1576 			 * Three code path may attempt to bind a node:
1577 			 * - boot code
1578 			 * - add_drv
1579 			 * - hotplug thread
1580 			 * Boot code is single threaded, add_drv synchronize
1581 			 * on a userland lock, and hotplug synchronize on
1582 			 * hotplug_lk. There could be a race between add_drv
1583 			 * and hotplug thread. We'll live with this until the
1584 			 * conversion to top-down loading.
1585 			 */
1586 			if ((rv = bind_node(dip)) == DDI_SUCCESS)
1587 				i_ddi_set_node_state(dip, DS_BOUND);
1588 
1589 			break;
1590 		case DS_BOUND:
1591 			/*
1592 			 * The following transitions synchronizes on the
1593 			 * per-driver busy changing flag, since we already
1594 			 * have a driver.
1595 			 */
1596 			if ((rv = init_node(dip)) == DDI_SUCCESS)
1597 				i_ddi_set_node_state(dip, DS_INITIALIZED);
1598 			break;
1599 		case DS_INITIALIZED:
1600 			if ((rv = probe_node(dip)) == DDI_SUCCESS)
1601 				i_ddi_set_node_state(dip, DS_PROBED);
1602 			break;
1603 		case DS_PROBED:
1604 			/*
1605 			 * If node is retired and persistent, then prevent
1606 			 * attach. We can't do this for non-persistent nodes
1607 			 * as we would lose evidence that the node existed.
1608 			 */
1609 			if (i_ddi_check_retire(dip) == 1 &&
1610 			    ndi_dev_is_persistent_node(dip) &&
1611 			    retire_prevents_attach == 1) {
1612 				rv = DDI_FAILURE;
1613 				break;
1614 			}
1615 			atomic_add_long(&devinfo_attach_detach, 1);
1616 			if ((rv = attach_node(dip)) == DDI_SUCCESS)
1617 				i_ddi_set_node_state(dip, DS_ATTACHED);
1618 			atomic_add_long(&devinfo_attach_detach, -1);
1619 			break;
1620 		case DS_ATTACHED:
1621 			if ((rv = postattach_node(dip)) == DDI_SUCCESS)
1622 				i_ddi_set_node_state(dip, DS_READY);
1623 			break;
1624 		case DS_READY:
1625 			break;
1626 		default:
1627 			/* should never reach here */
1628 			ASSERT("unknown devinfo state");
1629 		}
1630 	}
1631 
1632 	if (ddidebug & DDI_AUDIT)
1633 		da_log_enter(dip);
1634 	return (rv);
1635 }
1636 
1637 /*
1638  * i_ndi_unconfig_node: downgrade dev_info node into a specified state.
1639  */
1640 int
1641 i_ndi_unconfig_node(dev_info_t *dip, ddi_node_state_t state, uint_t flag)
1642 {
1643 	int	rv = DDI_SUCCESS;
1644 
1645 	ASSERT(DEVI_BUSY_OWNED(ddi_get_parent(dip)));
1646 
1647 	while ((i_ddi_node_state(dip) > state) && (rv == DDI_SUCCESS)) {
1648 
1649 		/* don't allow any more changes to the device tree */
1650 		if (devinfo_freeze) {
1651 			rv = DDI_FAILURE;
1652 			break;
1653 		}
1654 
1655 		switch (i_ddi_node_state(dip)) {
1656 		case DS_PROTO:
1657 			break;
1658 		case DS_LINKED:
1659 			/*
1660 			 * Persistent nodes are only removed by hotplug code
1661 			 * .conf nodes synchronizes on per-driver list.
1662 			 */
1663 			if ((rv = unlink_node(dip)) == DDI_SUCCESS)
1664 				i_ddi_set_node_state(dip, DS_PROTO);
1665 			break;
1666 		case DS_BOUND:
1667 			/*
1668 			 * The following transitions synchronizes on the
1669 			 * per-driver busy changing flag, since we already
1670 			 * have a driver.
1671 			 */
1672 			if ((rv = unbind_node(dip)) == DDI_SUCCESS)
1673 				i_ddi_set_node_state(dip, DS_LINKED);
1674 			break;
1675 		case DS_INITIALIZED:
1676 			if ((rv = uninit_node(dip)) == DDI_SUCCESS)
1677 				i_ddi_set_node_state(dip, DS_BOUND);
1678 			break;
1679 		case DS_PROBED:
1680 			if ((rv = unprobe_node(dip)) == DDI_SUCCESS)
1681 				i_ddi_set_node_state(dip, DS_INITIALIZED);
1682 			break;
1683 		case DS_ATTACHED:
1684 			atomic_add_long(&devinfo_attach_detach, 1);
1685 
1686 			mutex_enter(&(DEVI(dip)->devi_lock));
1687 			DEVI_SET_DETACHING(dip);
1688 			mutex_exit(&(DEVI(dip)->devi_lock));
1689 
1690 			membar_enter();	/* ensure visibility for hold_devi */
1691 
1692 			if ((rv = detach_node(dip, flag)) == DDI_SUCCESS)
1693 				i_ddi_set_node_state(dip, DS_PROBED);
1694 
1695 			mutex_enter(&(DEVI(dip)->devi_lock));
1696 			DEVI_CLR_DETACHING(dip);
1697 			mutex_exit(&(DEVI(dip)->devi_lock));
1698 
1699 			atomic_add_long(&devinfo_attach_detach, -1);
1700 			break;
1701 		case DS_READY:
1702 			if ((rv = predetach_node(dip, flag)) == DDI_SUCCESS)
1703 				i_ddi_set_node_state(dip, DS_ATTACHED);
1704 			break;
1705 		default:
1706 			ASSERT("unknown devinfo state");
1707 		}
1708 	}
1709 	da_log_enter(dip);
1710 	return (rv);
1711 }
1712 
1713 /*
1714  * ddi_initchild: transform node to DS_INITIALIZED state
1715  */
1716 int
1717 ddi_initchild(dev_info_t *parent, dev_info_t *proto)
1718 {
1719 	int ret, circ;
1720 
1721 	ndi_devi_enter(parent, &circ);
1722 	ret = i_ndi_config_node(proto, DS_INITIALIZED, 0);
1723 	ndi_devi_exit(parent, circ);
1724 
1725 	return (ret);
1726 }
1727 
1728 /*
1729  * ddi_uninitchild: transform node down to DS_BOUND state
1730  */
1731 int
1732 ddi_uninitchild(dev_info_t *dip)
1733 {
1734 	int ret, circ;
1735 	dev_info_t *parent = ddi_get_parent(dip);
1736 	ASSERT(parent);
1737 
1738 	ndi_devi_enter(parent, &circ);
1739 	ret = i_ndi_unconfig_node(dip, DS_BOUND, 0);
1740 	ndi_devi_exit(parent, circ);
1741 
1742 	return (ret);
1743 }
1744 
1745 /*
1746  * i_ddi_attachchild: transform node to DS_READY/i_ddi_devi_attached() state
1747  */
1748 static int
1749 i_ddi_attachchild(dev_info_t *dip)
1750 {
1751 	dev_info_t	*parent = ddi_get_parent(dip);
1752 	int		ret;
1753 
1754 	ASSERT(parent && DEVI_BUSY_OWNED(parent));
1755 
1756 	if ((i_ddi_node_state(dip) < DS_BOUND) || DEVI_IS_DEVICE_OFFLINE(dip))
1757 		return (DDI_FAILURE);
1758 
1759 	ret = i_ndi_config_node(dip, DS_READY, 0);
1760 	if (ret == NDI_SUCCESS) {
1761 		ret = DDI_SUCCESS;
1762 	} else {
1763 		/*
1764 		 * Take it down to DS_INITIALIZED so pm_pre_probe is run
1765 		 * on the next attach
1766 		 */
1767 		(void) i_ndi_unconfig_node(dip, DS_INITIALIZED, 0);
1768 		ret = DDI_FAILURE;
1769 	}
1770 
1771 	return (ret);
1772 }
1773 
1774 /*
1775  * i_ddi_detachchild: transform node down to DS_PROBED state
1776  *	If it fails, put it back to DS_READY state.
1777  * NOTE: A node that fails detach may be at DS_ATTACHED instead
1778  * of DS_READY for a small amount of time - this is the source of
1779  * transient DS_READY->DS_ATTACHED->DS_READY state changes.
1780  */
1781 static int
1782 i_ddi_detachchild(dev_info_t *dip, uint_t flags)
1783 {
1784 	dev_info_t	*parent = ddi_get_parent(dip);
1785 	int		ret;
1786 
1787 	ASSERT(parent && DEVI_BUSY_OWNED(parent));
1788 
1789 	ret = i_ndi_unconfig_node(dip, DS_PROBED, flags);
1790 	if (ret != DDI_SUCCESS)
1791 		(void) i_ndi_config_node(dip, DS_READY, 0);
1792 	else
1793 		/* allow pm_pre_probe to reestablish pm state */
1794 		(void) i_ndi_unconfig_node(dip, DS_INITIALIZED, 0);
1795 	return (ret);
1796 }
1797 
1798 /*
1799  * Add a child and bind to driver
1800  */
1801 dev_info_t *
1802 ddi_add_child(dev_info_t *pdip, char *name, uint_t nodeid, uint_t unit)
1803 {
1804 	int circ;
1805 	dev_info_t *dip;
1806 
1807 	/* allocate a new node */
1808 	dip = i_ddi_alloc_node(pdip, name, nodeid, (int)unit, NULL, KM_SLEEP);
1809 
1810 	ndi_devi_enter(pdip, &circ);
1811 	(void) i_ndi_config_node(dip, DS_BOUND, 0);
1812 	ndi_devi_exit(pdip, circ);
1813 	return (dip);
1814 }
1815 
1816 /*
1817  * ddi_remove_child: remove the dip. The parent must be attached and held
1818  */
1819 int
1820 ddi_remove_child(dev_info_t *dip, int dummy)
1821 {
1822 	_NOTE(ARGUNUSED(dummy))
1823 	int circ, ret;
1824 	dev_info_t *parent = ddi_get_parent(dip);
1825 	ASSERT(parent);
1826 
1827 	ndi_devi_enter(parent, &circ);
1828 
1829 	/*
1830 	 * If we still have children, for example SID nodes marked
1831 	 * as persistent but not attached, attempt to remove them.
1832 	 */
1833 	if (DEVI(dip)->devi_child) {
1834 		ret = ndi_devi_unconfig(dip, NDI_DEVI_REMOVE);
1835 		if (ret != NDI_SUCCESS) {
1836 			ndi_devi_exit(parent, circ);
1837 			return (DDI_FAILURE);
1838 		}
1839 		ASSERT(DEVI(dip)->devi_child == NULL);
1840 	}
1841 
1842 	ret = i_ndi_unconfig_node(dip, DS_PROTO, 0);
1843 	ndi_devi_exit(parent, circ);
1844 
1845 	if (ret != DDI_SUCCESS)
1846 		return (ret);
1847 
1848 	ASSERT(i_ddi_node_state(dip) == DS_PROTO);
1849 	i_ddi_free_node(dip);
1850 	return (DDI_SUCCESS);
1851 }
1852 
1853 /*
1854  * NDI wrappers for ref counting, node allocation, and transitions
1855  */
1856 
1857 /*
1858  * Hold/release the devinfo node itself.
1859  * Caller is assumed to prevent the devi from detaching during this call
1860  */
1861 void
1862 ndi_hold_devi(dev_info_t *dip)
1863 {
1864 	mutex_enter(&DEVI(dip)->devi_lock);
1865 	ASSERT(DEVI(dip)->devi_ref >= 0);
1866 	DEVI(dip)->devi_ref++;
1867 	membar_enter();			/* make sure stores are flushed */
1868 	mutex_exit(&DEVI(dip)->devi_lock);
1869 }
1870 
1871 void
1872 ndi_rele_devi(dev_info_t *dip)
1873 {
1874 	ASSERT(DEVI(dip)->devi_ref > 0);
1875 
1876 	mutex_enter(&DEVI(dip)->devi_lock);
1877 	DEVI(dip)->devi_ref--;
1878 	membar_enter();			/* make sure stores are flushed */
1879 	mutex_exit(&DEVI(dip)->devi_lock);
1880 }
1881 
1882 int
1883 e_ddi_devi_holdcnt(dev_info_t *dip)
1884 {
1885 	return (DEVI(dip)->devi_ref);
1886 }
1887 
1888 /*
1889  * Hold/release the driver the devinfo node is bound to.
1890  */
1891 struct dev_ops *
1892 ndi_hold_driver(dev_info_t *dip)
1893 {
1894 	if (i_ddi_node_state(dip) < DS_BOUND)
1895 		return (NULL);
1896 
1897 	ASSERT(DEVI(dip)->devi_major != -1);
1898 	return (mod_hold_dev_by_major(DEVI(dip)->devi_major));
1899 }
1900 
1901 void
1902 ndi_rele_driver(dev_info_t *dip)
1903 {
1904 	ASSERT(i_ddi_node_state(dip) >= DS_BOUND);
1905 	mod_rele_dev_by_major(DEVI(dip)->devi_major);
1906 }
1907 
1908 /*
1909  * Single thread entry into devinfo node for modifying its children (devinfo,
1910  * pathinfo, and minor). To verify in ASSERTS use DEVI_BUSY_OWNED macro.
1911  */
1912 void
1913 ndi_devi_enter(dev_info_t *dip, int *circular)
1914 {
1915 	struct dev_info *devi = DEVI(dip);
1916 	ASSERT(dip != NULL);
1917 
1918 	/* for vHCI, enforce (vHCI, pHCI) ndi_deve_enter() order */
1919 	ASSERT(!MDI_VHCI(dip) || (mdi_devi_pdip_entered(dip) == 0) ||
1920 	    DEVI_BUSY_OWNED(dip));
1921 
1922 	mutex_enter(&devi->devi_lock);
1923 	if (devi->devi_busy_thread == curthread) {
1924 		devi->devi_circular++;
1925 	} else {
1926 		while (DEVI_BUSY_CHANGING(devi) && !panicstr)
1927 			cv_wait(&(devi->devi_cv), &(devi->devi_lock));
1928 		if (panicstr) {
1929 			mutex_exit(&devi->devi_lock);
1930 			return;
1931 		}
1932 		devi->devi_flags |= DEVI_BUSY;
1933 		devi->devi_busy_thread = curthread;
1934 	}
1935 	*circular = devi->devi_circular;
1936 	mutex_exit(&devi->devi_lock);
1937 }
1938 
1939 /*
1940  * Release ndi_devi_enter or successful ndi_devi_tryenter.
1941  */
1942 void
1943 ndi_devi_exit(dev_info_t *dip, int circular)
1944 {
1945 	struct dev_info	*devi = DEVI(dip);
1946 	struct dev_info	*vdevi;
1947 	ASSERT(dip != NULL);
1948 
1949 	if (panicstr)
1950 		return;
1951 
1952 	mutex_enter(&(devi->devi_lock));
1953 	if (circular != 0) {
1954 		devi->devi_circular--;
1955 	} else {
1956 		devi->devi_flags &= ~DEVI_BUSY;
1957 		ASSERT(devi->devi_busy_thread == curthread);
1958 		devi->devi_busy_thread = NULL;
1959 		cv_broadcast(&(devi->devi_cv));
1960 	}
1961 	mutex_exit(&(devi->devi_lock));
1962 
1963 	/*
1964 	 * For pHCI exit we issue a broadcast to vHCI for ndi_devi_config_one()
1965 	 * doing cv_wait on vHCI.
1966 	 */
1967 	if (MDI_PHCI(dip)) {
1968 		vdevi = DEVI(mdi_devi_get_vdip(dip));
1969 		if (vdevi) {
1970 			mutex_enter(&(vdevi->devi_lock));
1971 			if (vdevi->devi_flags & DEVI_PHCI_SIGNALS_VHCI) {
1972 				vdevi->devi_flags &= ~DEVI_PHCI_SIGNALS_VHCI;
1973 				cv_broadcast(&(vdevi->devi_cv));
1974 			}
1975 			mutex_exit(&(vdevi->devi_lock));
1976 		}
1977 	}
1978 }
1979 
1980 /*
1981  * Release ndi_devi_enter and wait for possibility of new children, avoiding
1982  * possibility of missing broadcast before getting to cv_timedwait().
1983  */
1984 static void
1985 ndi_devi_exit_and_wait(dev_info_t *dip, int circular, clock_t end_time)
1986 {
1987 	struct dev_info	*devi = DEVI(dip);
1988 	ASSERT(dip != NULL);
1989 
1990 	if (panicstr)
1991 		return;
1992 
1993 	/*
1994 	 * We are called to wait for of a new child, and new child can
1995 	 * only be added if circular is zero.
1996 	 */
1997 	ASSERT(circular == 0);
1998 
1999 	/* like ndi_devi_exit with circular of zero */
2000 	mutex_enter(&(devi->devi_lock));
2001 	devi->devi_flags &= ~DEVI_BUSY;
2002 	ASSERT(devi->devi_busy_thread == curthread);
2003 	devi->devi_busy_thread = NULL;
2004 	cv_broadcast(&(devi->devi_cv));
2005 
2006 	/* now wait for new children while still holding devi_lock */
2007 	(void) cv_timedwait(&devi->devi_cv, &(devi->devi_lock), end_time);
2008 	mutex_exit(&(devi->devi_lock));
2009 }
2010 
2011 /*
2012  * Attempt to single thread entry into devinfo node for modifying its children.
2013  */
2014 int
2015 ndi_devi_tryenter(dev_info_t *dip, int *circular)
2016 {
2017 	int rval = 1;		   /* assume we enter */
2018 	struct dev_info *devi = DEVI(dip);
2019 	ASSERT(dip != NULL);
2020 
2021 	mutex_enter(&devi->devi_lock);
2022 	if (devi->devi_busy_thread == (void *)curthread) {
2023 		devi->devi_circular++;
2024 	} else {
2025 		if (!DEVI_BUSY_CHANGING(devi)) {
2026 			devi->devi_flags |= DEVI_BUSY;
2027 			devi->devi_busy_thread = (void *)curthread;
2028 		} else {
2029 			rval = 0;	/* devi is busy */
2030 		}
2031 	}
2032 	*circular = devi->devi_circular;
2033 	mutex_exit(&devi->devi_lock);
2034 	return (rval);
2035 }
2036 
2037 /*
2038  * Allocate and initialize a new dev_info structure.
2039  *
2040  * This routine may be called at interrupt time by a nexus in
2041  * response to a hotplug event, therefore memory allocations are
2042  * not allowed to sleep.
2043  */
2044 int
2045 ndi_devi_alloc(dev_info_t *parent, char *node_name, pnode_t nodeid,
2046     dev_info_t **ret_dip)
2047 {
2048 	ASSERT(node_name != NULL);
2049 	ASSERT(ret_dip != NULL);
2050 
2051 	*ret_dip = i_ddi_alloc_node(parent, node_name, nodeid, -1, NULL,
2052 	    KM_NOSLEEP);
2053 	if (*ret_dip == NULL) {
2054 		return (NDI_NOMEM);
2055 	}
2056 
2057 	return (NDI_SUCCESS);
2058 }
2059 
2060 /*
2061  * Allocate and initialize a new dev_info structure
2062  * This routine may sleep and should not be called at interrupt time
2063  */
2064 void
2065 ndi_devi_alloc_sleep(dev_info_t *parent, char *node_name, pnode_t nodeid,
2066     dev_info_t **ret_dip)
2067 {
2068 	ASSERT(node_name != NULL);
2069 	ASSERT(ret_dip != NULL);
2070 
2071 	*ret_dip = i_ddi_alloc_node(parent, node_name, nodeid, -1, NULL,
2072 	    KM_SLEEP);
2073 	ASSERT(*ret_dip);
2074 }
2075 
2076 /*
2077  * Remove an initialized (but not yet attached) dev_info
2078  * node from it's parent.
2079  */
2080 int
2081 ndi_devi_free(dev_info_t *dip)
2082 {
2083 	ASSERT(dip != NULL);
2084 
2085 	if (i_ddi_node_state(dip) >= DS_INITIALIZED)
2086 		return (DDI_FAILURE);
2087 
2088 	NDI_CONFIG_DEBUG((CE_CONT, "ndi_devi_free: %s%d (%p)\n",
2089 	    ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip));
2090 
2091 	(void) ddi_remove_child(dip, 0);
2092 
2093 	return (NDI_SUCCESS);
2094 }
2095 
2096 /*
2097  * ndi_devi_bind_driver() binds a driver to a given device. If it fails
2098  * to bind the driver, it returns an appropriate error back. Some drivers
2099  * may want to know if the actually failed to bind.
2100  */
2101 int
2102 ndi_devi_bind_driver(dev_info_t *dip, uint_t flags)
2103 {
2104 	int ret = NDI_FAILURE;
2105 	int circ;
2106 	dev_info_t *pdip = ddi_get_parent(dip);
2107 	ASSERT(pdip);
2108 
2109 	NDI_CONFIG_DEBUG((CE_CONT,
2110 	    "ndi_devi_bind_driver: %s%d (%p) flags: %x\n",
2111 	    ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip, flags));
2112 
2113 	ndi_devi_enter(pdip, &circ);
2114 	if (i_ndi_config_node(dip, DS_BOUND, flags) == DDI_SUCCESS)
2115 		ret = NDI_SUCCESS;
2116 	ndi_devi_exit(pdip, circ);
2117 
2118 	return (ret);
2119 }
2120 
2121 /*
2122  * ndi_devi_unbind_driver: unbind the dip
2123  */
2124 static int
2125 ndi_devi_unbind_driver(dev_info_t *dip)
2126 {
2127 	ASSERT(DEVI_BUSY_OWNED(ddi_get_parent(dip)));
2128 
2129 	return (i_ndi_unconfig_node(dip, DS_LINKED, 0));
2130 }
2131 
2132 /*
2133  * Misc. help routines called by framework only
2134  */
2135 
2136 /*
2137  * Get the state of node
2138  */
2139 ddi_node_state_t
2140 i_ddi_node_state(dev_info_t *dip)
2141 {
2142 	return (DEVI(dip)->devi_node_state);
2143 }
2144 
2145 /*
2146  * Set the state of node
2147  */
2148 void
2149 i_ddi_set_node_state(dev_info_t *dip, ddi_node_state_t state)
2150 {
2151 	DEVI(dip)->devi_node_state = state;
2152 	membar_enter();			/* make sure stores are flushed */
2153 }
2154 
2155 /*
2156  * Determine if node is attached. The implementation accommodates transient
2157  * DS_READY->DS_ATTACHED->DS_READY state changes.  Outside this file, this
2158  * function should be instead of i_ddi_node_state() DS_ATTACHED/DS_READY
2159  * state checks.
2160  */
2161 int
2162 i_ddi_devi_attached(dev_info_t *dip)
2163 {
2164 	return (DEVI(dip)->devi_node_state >= DS_ATTACHED);
2165 }
2166 
2167 /*
2168  * Common function for finding a node in a sibling list given name and addr.
2169  *
2170  * By default, name is matched with devi_node_name. The following
2171  * alternative match strategies are supported:
2172  *
2173  *	FIND_NODE_BY_NODENAME: Match on node name - typical use.
2174  *
2175  *	FIND_NODE_BY_DRIVER: A match on driver name bound to node is conducted.
2176  *		This support is used for support of OBP generic names and
2177  *		for the conversion from driver names to generic names. When
2178  *		more consistency in the generic name environment is achieved
2179  *		(and not needed for upgrade) this support can be removed.
2180  *
2181  *	FIND_NODE_BY_ADDR: Match on just the addr.
2182  *		This support is only used/needed during boot to match
2183  *		a node bound via a path-based driver alias.
2184  *
2185  * If a child is not named (dev_addr == NULL), there are three
2186  * possible actions:
2187  *
2188  *	(1) skip it
2189  *	(2) FIND_ADDR_BY_INIT: bring child to DS_INITIALIZED state
2190  *	(3) FIND_ADDR_BY_CALLBACK: use a caller-supplied callback function
2191  */
2192 #define	FIND_NODE_BY_NODENAME	0x01
2193 #define	FIND_NODE_BY_DRIVER	0x02
2194 #define	FIND_NODE_BY_ADDR	0x04
2195 #define	FIND_ADDR_BY_INIT	0x10
2196 #define	FIND_ADDR_BY_CALLBACK	0x20
2197 
2198 static dev_info_t *
2199 find_sibling(dev_info_t *head, char *cname, char *caddr, uint_t flag,
2200     int (*callback)(dev_info_t *, char *, int))
2201 {
2202 	dev_info_t	*dip;
2203 	char		*addr, *buf;
2204 	major_t		major;
2205 	uint_t		by;
2206 
2207 	/* only one way to find a node */
2208 	by = flag &
2209 	    (FIND_NODE_BY_DRIVER | FIND_NODE_BY_NODENAME | FIND_NODE_BY_ADDR);
2210 	ASSERT(by && BIT_ONLYONESET(by));
2211 
2212 	/* only one way to name a node */
2213 	ASSERT(((flag & FIND_ADDR_BY_INIT) == 0) ||
2214 	    ((flag & FIND_ADDR_BY_CALLBACK) == 0));
2215 
2216 	if (by == FIND_NODE_BY_DRIVER) {
2217 		major = ddi_name_to_major(cname);
2218 		if (major == DDI_MAJOR_T_NONE)
2219 			return (NULL);
2220 	}
2221 
2222 	/* preallocate buffer of naming node by callback */
2223 	if (flag & FIND_ADDR_BY_CALLBACK)
2224 		buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
2225 
2226 	/*
2227 	 * Walk the child list to find a match
2228 	 */
2229 	if (head == NULL)
2230 		return (NULL);
2231 	ASSERT(DEVI_BUSY_OWNED(ddi_get_parent(head)));
2232 	for (dip = head; dip; dip = ddi_get_next_sibling(dip)) {
2233 		if (by == FIND_NODE_BY_NODENAME) {
2234 			/* match node name */
2235 			if (strcmp(cname, DEVI(dip)->devi_node_name) != 0)
2236 				continue;
2237 		} else if (by == FIND_NODE_BY_DRIVER) {
2238 			/* match driver major */
2239 			if (DEVI(dip)->devi_major != major)
2240 				continue;
2241 		}
2242 
2243 		if ((addr = DEVI(dip)->devi_addr) == NULL) {
2244 			/* name the child based on the flag */
2245 			if (flag & FIND_ADDR_BY_INIT) {
2246 				if (ddi_initchild(ddi_get_parent(dip), dip)
2247 				    != DDI_SUCCESS)
2248 					continue;
2249 				addr = DEVI(dip)->devi_addr;
2250 			} else if (flag & FIND_ADDR_BY_CALLBACK) {
2251 				if ((callback == NULL) || (callback(
2252 				    dip, buf, MAXNAMELEN) != DDI_SUCCESS))
2253 					continue;
2254 				addr = buf;
2255 			} else {
2256 				continue;	/* skip */
2257 			}
2258 		}
2259 
2260 		/* match addr */
2261 		ASSERT(addr != NULL);
2262 		if (strcmp(caddr, addr) == 0)
2263 			break;	/* node found */
2264 
2265 	}
2266 	if (flag & FIND_ADDR_BY_CALLBACK)
2267 		kmem_free(buf, MAXNAMELEN);
2268 	return (dip);
2269 }
2270 
2271 /*
2272  * Find child of pdip with name: cname@caddr
2273  * Called by init_node() to look for duplicate nodes
2274  */
2275 static dev_info_t *
2276 find_duplicate_child(dev_info_t *pdip, dev_info_t *dip)
2277 {
2278 	dev_info_t *dup;
2279 	char *cname = DEVI(dip)->devi_node_name;
2280 	char *caddr = DEVI(dip)->devi_addr;
2281 
2282 	/* search nodes before dip */
2283 	dup = find_sibling(ddi_get_child(pdip), cname, caddr,
2284 	    FIND_NODE_BY_NODENAME, NULL);
2285 	if (dup != dip)
2286 		return (dup);
2287 
2288 	/*
2289 	 * search nodes after dip; normally this is not needed,
2290 	 */
2291 	return (find_sibling(ddi_get_next_sibling(dip), cname, caddr,
2292 	    FIND_NODE_BY_NODENAME, NULL));
2293 }
2294 
2295 /*
2296  * Find a child of a given name and address, using a callback to name
2297  * unnamed children. cname is the binding name.
2298  */
2299 dev_info_t *
2300 ndi_devi_findchild_by_callback(dev_info_t *pdip, char *dname, char *ua,
2301     int (*make_ua)(dev_info_t *, char *, int))
2302 {
2303 	int	by = FIND_ADDR_BY_CALLBACK;
2304 
2305 	ASSERT(DEVI_BUSY_OWNED(pdip));
2306 	by |= dname ? FIND_NODE_BY_DRIVER : FIND_NODE_BY_ADDR;
2307 	return (find_sibling(ddi_get_child(pdip), dname, ua, by, make_ua));
2308 }
2309 
2310 /*
2311  * Find a child of a given name and address, invoking initchild to name
2312  * unnamed children. cname is the node name.
2313  */
2314 static dev_info_t *
2315 find_child_by_name(dev_info_t *pdip, char *cname, char *caddr)
2316 {
2317 	dev_info_t	*dip;
2318 
2319 	/* attempt search without changing state of preceding siblings */
2320 	dip = find_sibling(ddi_get_child(pdip), cname, caddr,
2321 	    FIND_NODE_BY_NODENAME, NULL);
2322 	if (dip)
2323 		return (dip);
2324 
2325 	return (find_sibling(ddi_get_child(pdip), cname, caddr,
2326 	    FIND_NODE_BY_NODENAME|FIND_ADDR_BY_INIT, NULL));
2327 }
2328 
2329 /*
2330  * Find a child of a given name and address, invoking initchild to name
2331  * unnamed children. cname is the node name.
2332  */
2333 static dev_info_t *
2334 find_child_by_driver(dev_info_t *pdip, char *cname, char *caddr)
2335 {
2336 	dev_info_t	*dip;
2337 
2338 	/* attempt search without changing state of preceding siblings */
2339 	dip = find_sibling(ddi_get_child(pdip), cname, caddr,
2340 	    FIND_NODE_BY_DRIVER, NULL);
2341 	if (dip)
2342 		return (dip);
2343 
2344 	return (find_sibling(ddi_get_child(pdip), cname, caddr,
2345 	    FIND_NODE_BY_DRIVER|FIND_ADDR_BY_INIT, NULL));
2346 }
2347 
2348 /*
2349  * Find a child of a given address, invoking initchild to name
2350  * unnamed children. cname is the node name.
2351  *
2352  * NOTE: This function is only used during boot. One would hope that
2353  * unique sibling unit-addresses on hardware branches of the tree would
2354  * be a requirement to avoid two drivers trying to control the same
2355  * piece of hardware. Unfortunately there are some cases where this
2356  * situation exists (/ssm@0,0/pci@1c,700000 /ssm@0,0/sghsc@1c,700000).
2357  * Until unit-address uniqueness of siblings is guaranteed, use of this
2358  * interface for purposes other than boot should be avoided.
2359  */
2360 static dev_info_t *
2361 find_child_by_addr(dev_info_t *pdip, char *caddr)
2362 {
2363 	dev_info_t	*dip;
2364 
2365 	/* return NULL if called without a unit-address */
2366 	if ((caddr == NULL) || (*caddr == '\0'))
2367 		return (NULL);
2368 
2369 	/* attempt search without changing state of preceding siblings */
2370 	dip = find_sibling(ddi_get_child(pdip), NULL, caddr,
2371 	    FIND_NODE_BY_ADDR, NULL);
2372 	if (dip)
2373 		return (dip);
2374 
2375 	return (find_sibling(ddi_get_child(pdip), NULL, caddr,
2376 	    FIND_NODE_BY_ADDR|FIND_ADDR_BY_INIT, NULL));
2377 }
2378 
2379 /*
2380  * Deleting a property list. Take care, since some property structures
2381  * may not be fully built.
2382  */
2383 void
2384 i_ddi_prop_list_delete(ddi_prop_t *prop)
2385 {
2386 	while (prop) {
2387 		ddi_prop_t *next = prop->prop_next;
2388 		if (prop->prop_name)
2389 			kmem_free(prop->prop_name, strlen(prop->prop_name) + 1);
2390 		if ((prop->prop_len != 0) && prop->prop_val)
2391 			kmem_free(prop->prop_val, prop->prop_len);
2392 		kmem_free(prop, sizeof (struct ddi_prop));
2393 		prop = next;
2394 	}
2395 }
2396 
2397 /*
2398  * Duplicate property list
2399  */
2400 ddi_prop_t *
2401 i_ddi_prop_list_dup(ddi_prop_t *prop, uint_t flag)
2402 {
2403 	ddi_prop_t *result, *prev, *copy;
2404 
2405 	if (prop == NULL)
2406 		return (NULL);
2407 
2408 	result = prev = NULL;
2409 	for (; prop != NULL; prop = prop->prop_next) {
2410 		ASSERT(prop->prop_name != NULL);
2411 		copy = kmem_zalloc(sizeof (struct ddi_prop), flag);
2412 		if (copy == NULL)
2413 			goto fail;
2414 
2415 		copy->prop_dev = prop->prop_dev;
2416 		copy->prop_flags = prop->prop_flags;
2417 		copy->prop_name = i_ddi_strdup(prop->prop_name, flag);
2418 		if (copy->prop_name == NULL)
2419 			goto fail;
2420 
2421 		if ((copy->prop_len = prop->prop_len) != 0) {
2422 			copy->prop_val = kmem_zalloc(prop->prop_len, flag);
2423 			if (copy->prop_val == NULL)
2424 				goto fail;
2425 
2426 			bcopy(prop->prop_val, copy->prop_val, prop->prop_len);
2427 		}
2428 
2429 		if (prev == NULL)
2430 			result = prev = copy;
2431 		else
2432 			prev->prop_next = copy;
2433 		prev = copy;
2434 	}
2435 	return (result);
2436 
2437 fail:
2438 	i_ddi_prop_list_delete(result);
2439 	return (NULL);
2440 }
2441 
2442 /*
2443  * Create a reference property list, currently used only for
2444  * driver global properties. Created with ref count of 1.
2445  */
2446 ddi_prop_list_t *
2447 i_ddi_prop_list_create(ddi_prop_t *props)
2448 {
2449 	ddi_prop_list_t *list = kmem_alloc(sizeof (*list), KM_SLEEP);
2450 	list->prop_list = props;
2451 	list->prop_ref = 1;
2452 	return (list);
2453 }
2454 
2455 /*
2456  * Increment/decrement reference count. The reference is
2457  * protected by dn_lock. The only interfaces modifying
2458  * dn_global_prop_ptr is in impl_make[free]_parlist().
2459  */
2460 void
2461 i_ddi_prop_list_hold(ddi_prop_list_t *prop_list, struct devnames *dnp)
2462 {
2463 	ASSERT(prop_list->prop_ref >= 0);
2464 	ASSERT(mutex_owned(&dnp->dn_lock));
2465 	prop_list->prop_ref++;
2466 }
2467 
2468 void
2469 i_ddi_prop_list_rele(ddi_prop_list_t *prop_list, struct devnames *dnp)
2470 {
2471 	ASSERT(prop_list->prop_ref > 0);
2472 	ASSERT(mutex_owned(&dnp->dn_lock));
2473 	prop_list->prop_ref--;
2474 
2475 	if (prop_list->prop_ref == 0) {
2476 		i_ddi_prop_list_delete(prop_list->prop_list);
2477 		kmem_free(prop_list, sizeof (*prop_list));
2478 	}
2479 }
2480 
2481 /*
2482  * Free table of classes by drivers
2483  */
2484 void
2485 i_ddi_free_exported_classes(char **classes, int n)
2486 {
2487 	if ((n == 0) || (classes == NULL))
2488 		return;
2489 
2490 	kmem_free(classes, n * sizeof (char *));
2491 }
2492 
2493 /*
2494  * Get all classes exported by dip
2495  */
2496 int
2497 i_ddi_get_exported_classes(dev_info_t *dip, char ***classes)
2498 {
2499 	extern void lock_hw_class_list();
2500 	extern void unlock_hw_class_list();
2501 	extern int get_class(const char *, char **);
2502 
2503 	static char *rootclass = "root";
2504 	int n = 0, nclass = 0;
2505 	char **buf;
2506 
2507 	ASSERT(i_ddi_node_state(dip) >= DS_BOUND);
2508 
2509 	if (dip == ddi_root_node())	/* rootnode exports class "root" */
2510 		nclass = 1;
2511 	lock_hw_class_list();
2512 	nclass += get_class(ddi_driver_name(dip), NULL);
2513 	if (nclass == 0) {
2514 		unlock_hw_class_list();
2515 		return (0);		/* no class exported */
2516 	}
2517 
2518 	*classes = buf = kmem_alloc(nclass * sizeof (char *), KM_SLEEP);
2519 	if (dip == ddi_root_node()) {
2520 		*buf++ = rootclass;
2521 		n = 1;
2522 	}
2523 	n += get_class(ddi_driver_name(dip), buf);
2524 	unlock_hw_class_list();
2525 
2526 	ASSERT(n == nclass);	/* make sure buf wasn't overrun */
2527 	return (nclass);
2528 }
2529 
2530 /*
2531  * Helper functions, returns NULL if no memory.
2532  */
2533 char *
2534 i_ddi_strdup(char *str, uint_t flag)
2535 {
2536 	char *copy;
2537 
2538 	if (str == NULL)
2539 		return (NULL);
2540 
2541 	copy = kmem_alloc(strlen(str) + 1, flag);
2542 	if (copy == NULL)
2543 		return (NULL);
2544 
2545 	(void) strcpy(copy, str);
2546 	return (copy);
2547 }
2548 
2549 /*
2550  * Load driver.conf file for major. Load all if major == -1.
2551  *
2552  * This is called
2553  * - early in boot after devnames array is initialized
2554  * - from vfs code when certain file systems are mounted
2555  * - from add_drv when a new driver is added
2556  */
2557 int
2558 i_ddi_load_drvconf(major_t major)
2559 {
2560 	extern int modrootloaded;
2561 
2562 	major_t low, high, m;
2563 
2564 	if (major == DDI_MAJOR_T_NONE) {
2565 		low = 0;
2566 		high = devcnt - 1;
2567 	} else {
2568 		if (major >= devcnt)
2569 			return (EINVAL);
2570 		low = high = major;
2571 	}
2572 
2573 	for (m = low; m <= high; m++) {
2574 		struct devnames *dnp = &devnamesp[m];
2575 		LOCK_DEV_OPS(&dnp->dn_lock);
2576 		dnp->dn_flags &= ~(DN_DRIVER_HELD|DN_DRIVER_INACTIVE);
2577 		(void) impl_make_parlist(m);
2578 		UNLOCK_DEV_OPS(&dnp->dn_lock);
2579 	}
2580 
2581 	if (modrootloaded) {
2582 		ddi_walk_devs(ddi_root_node(), reset_nexus_flags,
2583 		    (void *)(uintptr_t)major);
2584 	}
2585 
2586 	/* build dn_list from old entries in path_to_inst */
2587 	e_ddi_unorphan_instance_nos();
2588 	return (0);
2589 }
2590 
2591 /*
2592  * Unload a specific driver.conf.
2593  * Don't support unload all because it doesn't make any sense
2594  */
2595 int
2596 i_ddi_unload_drvconf(major_t major)
2597 {
2598 	int error;
2599 	struct devnames *dnp;
2600 
2601 	if (major >= devcnt)
2602 		return (EINVAL);
2603 
2604 	/*
2605 	 * Take the per-driver lock while unloading driver.conf
2606 	 */
2607 	dnp = &devnamesp[major];
2608 	LOCK_DEV_OPS(&dnp->dn_lock);
2609 	error = impl_free_parlist(major);
2610 	UNLOCK_DEV_OPS(&dnp->dn_lock);
2611 	return (error);
2612 }
2613 
2614 /*
2615  * Merge a .conf node. This is called by nexus drivers to augment
2616  * hw node with properties specified in driver.conf file. This function
2617  * takes a callback routine to name nexus children.
2618  * The parent node must be held busy.
2619  *
2620  * It returns DDI_SUCCESS if the node is merged and DDI_FAILURE otherwise.
2621  */
2622 int
2623 ndi_merge_node(dev_info_t *dip, int (*make_ua)(dev_info_t *, char *, int))
2624 {
2625 	dev_info_t *hwdip;
2626 
2627 	ASSERT(ndi_dev_is_persistent_node(dip) == 0);
2628 	ASSERT(ddi_get_name_addr(dip) != NULL);
2629 
2630 	hwdip = ndi_devi_findchild_by_callback(ddi_get_parent(dip),
2631 	    ddi_binding_name(dip), ddi_get_name_addr(dip), make_ua);
2632 
2633 	/*
2634 	 * Look for the hardware node that is the target of the merge;
2635 	 * return failure if not found.
2636 	 */
2637 	if ((hwdip == NULL) || (hwdip == dip)) {
2638 		char *buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
2639 		NDI_CONFIG_DEBUG((CE_WARN, "No HW node to merge conf node %s",
2640 		    ddi_deviname(dip, buf)));
2641 		kmem_free(buf, MAXNAMELEN);
2642 		return (DDI_FAILURE);
2643 	}
2644 
2645 	/*
2646 	 * Make sure the hardware node is uninitialized and has no property.
2647 	 * This may not be the case if new .conf files are load after some
2648 	 * hardware nodes have already been initialized and attached.
2649 	 *
2650 	 * N.B. We return success here because the node was *intended*
2651 	 *	to be a merge node because there is a hw node with the name.
2652 	 */
2653 	mutex_enter(&DEVI(hwdip)->devi_lock);
2654 	if (ndi_dev_is_persistent_node(hwdip) == 0) {
2655 		char *buf;
2656 		mutex_exit(&DEVI(hwdip)->devi_lock);
2657 
2658 		buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
2659 		NDI_CONFIG_DEBUG((CE_NOTE, "Duplicate .conf node %s",
2660 		    ddi_deviname(dip, buf)));
2661 		kmem_free(buf, MAXNAMELEN);
2662 		return (DDI_SUCCESS);
2663 	}
2664 
2665 	/*
2666 	 * If it is possible that the hardware has already been touched
2667 	 * then don't merge.
2668 	 */
2669 	if (i_ddi_node_state(hwdip) >= DS_INITIALIZED ||
2670 	    (DEVI(hwdip)->devi_sys_prop_ptr != NULL) ||
2671 	    (DEVI(hwdip)->devi_drv_prop_ptr != NULL)) {
2672 		char *buf;
2673 		mutex_exit(&DEVI(hwdip)->devi_lock);
2674 
2675 		buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
2676 		NDI_CONFIG_DEBUG((CE_NOTE,
2677 		    "!Cannot merge .conf node %s with hw node %p "
2678 		    "-- not in proper state",
2679 		    ddi_deviname(dip, buf), (void *)hwdip));
2680 		kmem_free(buf, MAXNAMELEN);
2681 		return (DDI_SUCCESS);
2682 	}
2683 
2684 	mutex_enter(&DEVI(dip)->devi_lock);
2685 	DEVI(hwdip)->devi_sys_prop_ptr = DEVI(dip)->devi_sys_prop_ptr;
2686 	DEVI(hwdip)->devi_drv_prop_ptr = DEVI(dip)->devi_drv_prop_ptr;
2687 	DEVI(dip)->devi_sys_prop_ptr = NULL;
2688 	DEVI(dip)->devi_drv_prop_ptr = NULL;
2689 	mutex_exit(&DEVI(dip)->devi_lock);
2690 	mutex_exit(&DEVI(hwdip)->devi_lock);
2691 
2692 	return (DDI_SUCCESS);
2693 }
2694 
2695 /*
2696  * Merge a "wildcard" .conf node. This is called by nexus drivers to
2697  * augment a set of hw node with properties specified in driver.conf file.
2698  * The parent node must be held busy.
2699  *
2700  * There is no failure mode, since the nexus may or may not have child
2701  * node bound the driver specified by the wildcard node.
2702  */
2703 void
2704 ndi_merge_wildcard_node(dev_info_t *dip)
2705 {
2706 	dev_info_t *hwdip;
2707 	dev_info_t *pdip = ddi_get_parent(dip);
2708 	major_t major = ddi_driver_major(dip);
2709 
2710 	/* never attempt to merge a hw node */
2711 	ASSERT(ndi_dev_is_persistent_node(dip) == 0);
2712 	/* must be bound to a driver major number */
2713 	ASSERT(major != DDI_MAJOR_T_NONE);
2714 
2715 	/*
2716 	 * Walk the child list to find all nodes bound to major
2717 	 * and copy properties.
2718 	 */
2719 	mutex_enter(&DEVI(dip)->devi_lock);
2720 	ASSERT(DEVI_BUSY_OWNED(pdip));
2721 	for (hwdip = ddi_get_child(pdip); hwdip;
2722 	    hwdip = ddi_get_next_sibling(hwdip)) {
2723 		/*
2724 		 * Skip nodes not bound to same driver
2725 		 */
2726 		if (ddi_driver_major(hwdip) != major)
2727 			continue;
2728 
2729 		/*
2730 		 * Skip .conf nodes
2731 		 */
2732 		if (ndi_dev_is_persistent_node(hwdip) == 0)
2733 			continue;
2734 
2735 		/*
2736 		 * Make sure the node is uninitialized and has no property.
2737 		 */
2738 		mutex_enter(&DEVI(hwdip)->devi_lock);
2739 		if (i_ddi_node_state(hwdip) >= DS_INITIALIZED ||
2740 		    (DEVI(hwdip)->devi_sys_prop_ptr != NULL) ||
2741 		    (DEVI(hwdip)->devi_drv_prop_ptr != NULL)) {
2742 			mutex_exit(&DEVI(hwdip)->devi_lock);
2743 			NDI_CONFIG_DEBUG((CE_NOTE, "HW node %p state not "
2744 			    "suitable for merging wildcard conf node %s",
2745 			    (void *)hwdip, ddi_node_name(dip)));
2746 			continue;
2747 		}
2748 
2749 		DEVI(hwdip)->devi_sys_prop_ptr =
2750 		    i_ddi_prop_list_dup(DEVI(dip)->devi_sys_prop_ptr, KM_SLEEP);
2751 		DEVI(hwdip)->devi_drv_prop_ptr =
2752 		    i_ddi_prop_list_dup(DEVI(dip)->devi_drv_prop_ptr, KM_SLEEP);
2753 		mutex_exit(&DEVI(hwdip)->devi_lock);
2754 	}
2755 	mutex_exit(&DEVI(dip)->devi_lock);
2756 }
2757 
2758 /*
2759  * Return the major number based on the compatible property. This interface
2760  * may be used in situations where we are trying to detect if a better driver
2761  * now exists for a device, so it must use the 'compatible' property.  If
2762  * a non-NULL formp is specified and the binding was based on compatible then
2763  * return the pointer to the form used in *formp.
2764  */
2765 major_t
2766 ddi_compatible_driver_major(dev_info_t *dip, char **formp)
2767 {
2768 	struct dev_info *devi = DEVI(dip);
2769 	void		*compat;
2770 	size_t		len;
2771 	char		*p = NULL;
2772 	major_t		major = DDI_MAJOR_T_NONE;
2773 
2774 	if (formp)
2775 		*formp = NULL;
2776 
2777 	if (ddi_prop_exists(DDI_DEV_T_NONE, dip, DDI_PROP_DONTPASS,
2778 	    "ddi-assigned")) {
2779 		major = ddi_name_to_major("nulldriver");
2780 		return (major);
2781 	}
2782 
2783 	/*
2784 	 * Highest precedence binding is a path-oriented alias. Since this
2785 	 * requires a 'path', this type of binding occurs via more obtuse
2786 	 * 'rebind'. The need for a path-oriented alias 'rebind' is detected
2787 	 * after a successful DDI_CTLOPS_INITCHILD to another driver: this is
2788 	 * is the first point at which the unit-address (or instance) of the
2789 	 * last component of the path is available (even though the path is
2790 	 * bound to the wrong driver at this point).
2791 	 */
2792 	if (devi->devi_flags & DEVI_REBIND) {
2793 		p = devi->devi_rebinding_name;
2794 		major = ddi_name_to_major(p);
2795 		if (driver_active(major)) {
2796 			if (formp)
2797 				*formp = p;
2798 			return (major);
2799 		}
2800 
2801 		/*
2802 		 * If for some reason devi_rebinding_name no longer resolves
2803 		 * to a proper driver then clear DEVI_REBIND.
2804 		 */
2805 		mutex_enter(&devi->devi_lock);
2806 		devi->devi_flags &= ~DEVI_REBIND;
2807 		mutex_exit(&devi->devi_lock);
2808 	}
2809 
2810 	/* look up compatible property */
2811 	(void) lookup_compatible(dip, KM_SLEEP);
2812 	compat = (void *)(devi->devi_compat_names);
2813 	len = devi->devi_compat_length;
2814 
2815 	/* find the highest precedence compatible form with a driver binding */
2816 	while ((p = prom_decode_composite_string(compat, len, p)) != NULL) {
2817 		major = ddi_name_to_major(p);
2818 		if (driver_active(major)) {
2819 			if (formp)
2820 				*formp = p;
2821 			return (major);
2822 		}
2823 	}
2824 
2825 	/*
2826 	 * none of the compatible forms have a driver binding, see if
2827 	 * the node name has a driver binding.
2828 	 */
2829 	major = ddi_name_to_major(ddi_node_name(dip));
2830 	if (driver_active(major))
2831 		return (major);
2832 
2833 	/* no driver */
2834 	return (DDI_MAJOR_T_NONE);
2835 }
2836 
2837 /*
2838  * Static help functions
2839  */
2840 
2841 /*
2842  * lookup the "compatible" property and cache it's contents in the
2843  * device node.
2844  */
2845 static int
2846 lookup_compatible(dev_info_t *dip, uint_t flag)
2847 {
2848 	int rv;
2849 	int prop_flags;
2850 	uint_t ncompatstrs;
2851 	char **compatstrpp;
2852 	char *di_compat_strp;
2853 	size_t di_compat_strlen;
2854 
2855 	if (DEVI(dip)->devi_compat_names) {
2856 		return (DDI_SUCCESS);
2857 	}
2858 
2859 	prop_flags = DDI_PROP_TYPE_STRING | DDI_PROP_DONTPASS;
2860 
2861 	if (flag & KM_NOSLEEP) {
2862 		prop_flags |= DDI_PROP_DONTSLEEP;
2863 	}
2864 
2865 	if (ndi_dev_is_prom_node(dip) == 0) {
2866 		prop_flags |= DDI_PROP_NOTPROM;
2867 	}
2868 
2869 	rv = ddi_prop_lookup_common(DDI_DEV_T_ANY, dip, prop_flags,
2870 	    "compatible", &compatstrpp, &ncompatstrs,
2871 	    ddi_prop_fm_decode_strings);
2872 
2873 	if (rv == DDI_PROP_NOT_FOUND) {
2874 		return (DDI_SUCCESS);
2875 	}
2876 
2877 	if (rv != DDI_PROP_SUCCESS) {
2878 		return (DDI_FAILURE);
2879 	}
2880 
2881 	/*
2882 	 * encode the compatible property data in the dev_info node
2883 	 */
2884 	rv = DDI_SUCCESS;
2885 	if (ncompatstrs != 0) {
2886 		di_compat_strp = encode_composite_string(compatstrpp,
2887 		    ncompatstrs, &di_compat_strlen, flag);
2888 		if (di_compat_strp != NULL) {
2889 			DEVI(dip)->devi_compat_names = di_compat_strp;
2890 			DEVI(dip)->devi_compat_length = di_compat_strlen;
2891 		} else {
2892 			rv = DDI_FAILURE;
2893 		}
2894 	}
2895 	ddi_prop_free(compatstrpp);
2896 	return (rv);
2897 }
2898 
2899 /*
2900  * Create a composite string from a list of strings.
2901  *
2902  * A composite string consists of a single buffer containing one
2903  * or more NULL terminated strings.
2904  */
2905 static char *
2906 encode_composite_string(char **strings, uint_t nstrings, size_t *retsz,
2907     uint_t flag)
2908 {
2909 	uint_t index;
2910 	char  **strpp;
2911 	uint_t slen;
2912 	size_t cbuf_sz = 0;
2913 	char *cbuf_p;
2914 	char *cbuf_ip;
2915 
2916 	if (strings == NULL || nstrings == 0 || retsz == NULL) {
2917 		return (NULL);
2918 	}
2919 
2920 	for (index = 0, strpp = strings; index < nstrings; index++)
2921 		cbuf_sz += strlen(*(strpp++)) + 1;
2922 
2923 	if ((cbuf_p = kmem_alloc(cbuf_sz, flag)) == NULL) {
2924 		cmn_err(CE_NOTE,
2925 		    "?failed to allocate device node compatstr");
2926 		return (NULL);
2927 	}
2928 
2929 	cbuf_ip = cbuf_p;
2930 	for (index = 0, strpp = strings; index < nstrings; index++) {
2931 		slen = strlen(*strpp);
2932 		bcopy(*(strpp++), cbuf_ip, slen);
2933 		cbuf_ip += slen;
2934 		*(cbuf_ip++) = '\0';
2935 	}
2936 
2937 	*retsz = cbuf_sz;
2938 	return (cbuf_p);
2939 }
2940 
2941 static void
2942 link_to_driver_list(dev_info_t *dip)
2943 {
2944 	major_t major = DEVI(dip)->devi_major;
2945 	struct devnames *dnp;
2946 
2947 	ASSERT(major != DDI_MAJOR_T_NONE);
2948 
2949 	/*
2950 	 * Remove from orphan list
2951 	 */
2952 	if (ndi_dev_is_persistent_node(dip)) {
2953 		dnp = &orphanlist;
2954 		remove_from_dn_list(dnp, dip);
2955 	}
2956 
2957 	/*
2958 	 * Add to per driver list
2959 	 */
2960 	dnp = &devnamesp[major];
2961 	add_to_dn_list(dnp, dip);
2962 }
2963 
2964 static void
2965 unlink_from_driver_list(dev_info_t *dip)
2966 {
2967 	major_t major = DEVI(dip)->devi_major;
2968 	struct devnames *dnp;
2969 
2970 	ASSERT(major != DDI_MAJOR_T_NONE);
2971 
2972 	/*
2973 	 * Remove from per-driver list
2974 	 */
2975 	dnp = &devnamesp[major];
2976 	remove_from_dn_list(dnp, dip);
2977 
2978 	/*
2979 	 * Add to orphan list
2980 	 */
2981 	if (ndi_dev_is_persistent_node(dip)) {
2982 		dnp = &orphanlist;
2983 		add_to_dn_list(dnp, dip);
2984 	}
2985 }
2986 
2987 /*
2988  * scan the per-driver list looking for dev_info "dip"
2989  */
2990 static dev_info_t *
2991 in_dn_list(struct devnames *dnp, dev_info_t *dip)
2992 {
2993 	struct dev_info *idevi;
2994 
2995 	if ((idevi = DEVI(dnp->dn_head)) == NULL)
2996 		return (NULL);
2997 
2998 	while (idevi) {
2999 		if (idevi == DEVI(dip))
3000 			return (dip);
3001 		idevi = idevi->devi_next;
3002 	}
3003 	return (NULL);
3004 }
3005 
3006 /*
3007  * insert devinfo node 'dip' into the per-driver instance list
3008  * headed by 'dnp'
3009  *
3010  * Nodes on the per-driver list are ordered: HW - SID - PSEUDO.  The order is
3011  * required for merging of .conf file data to work properly.
3012  */
3013 static void
3014 add_to_ordered_dn_list(struct devnames *dnp, dev_info_t *dip)
3015 {
3016 	dev_info_t **dipp;
3017 
3018 	ASSERT(mutex_owned(&(dnp->dn_lock)));
3019 
3020 	dipp = &dnp->dn_head;
3021 	if (ndi_dev_is_prom_node(dip)) {
3022 		/*
3023 		 * Find the first non-prom node or end of list
3024 		 */
3025 		while (*dipp && (ndi_dev_is_prom_node(*dipp) != 0)) {
3026 			dipp = (dev_info_t **)&DEVI(*dipp)->devi_next;
3027 		}
3028 	} else if (ndi_dev_is_persistent_node(dip)) {
3029 		/*
3030 		 * Find the first non-persistent node
3031 		 */
3032 		while (*dipp && (ndi_dev_is_persistent_node(*dipp) != 0)) {
3033 			dipp = (dev_info_t **)&DEVI(*dipp)->devi_next;
3034 		}
3035 	} else {
3036 		/*
3037 		 * Find the end of the list
3038 		 */
3039 		while (*dipp) {
3040 			dipp = (dev_info_t **)&DEVI(*dipp)->devi_next;
3041 		}
3042 	}
3043 
3044 	DEVI(dip)->devi_next = DEVI(*dipp);
3045 	*dipp = dip;
3046 }
3047 
3048 /*
3049  * add a list of device nodes to the device node list in the
3050  * devnames structure
3051  */
3052 static void
3053 add_to_dn_list(struct devnames *dnp, dev_info_t *dip)
3054 {
3055 	/*
3056 	 * Look to see if node already exists
3057 	 */
3058 	LOCK_DEV_OPS(&(dnp->dn_lock));
3059 	if (in_dn_list(dnp, dip)) {
3060 		cmn_err(CE_NOTE, "add_to_dn_list: node %s already in list",
3061 		    DEVI(dip)->devi_node_name);
3062 	} else {
3063 		add_to_ordered_dn_list(dnp, dip);
3064 	}
3065 	UNLOCK_DEV_OPS(&(dnp->dn_lock));
3066 }
3067 
3068 static void
3069 remove_from_dn_list(struct devnames *dnp, dev_info_t *dip)
3070 {
3071 	dev_info_t **plist;
3072 
3073 	LOCK_DEV_OPS(&(dnp->dn_lock));
3074 
3075 	plist = (dev_info_t **)&dnp->dn_head;
3076 	while (*plist && (*plist != dip)) {
3077 		plist = (dev_info_t **)&DEVI(*plist)->devi_next;
3078 	}
3079 
3080 	if (*plist != NULL) {
3081 		ASSERT(*plist == dip);
3082 		*plist = (dev_info_t *)(DEVI(dip)->devi_next);
3083 		DEVI(dip)->devi_next = NULL;
3084 	} else {
3085 		NDI_CONFIG_DEBUG((CE_NOTE,
3086 		    "remove_from_dn_list: node %s not found in list",
3087 		    DEVI(dip)->devi_node_name));
3088 	}
3089 
3090 	UNLOCK_DEV_OPS(&(dnp->dn_lock));
3091 }
3092 
3093 /*
3094  * Add and remove reference driver global property list
3095  */
3096 static void
3097 add_global_props(dev_info_t *dip)
3098 {
3099 	struct devnames *dnp;
3100 	ddi_prop_list_t *plist;
3101 
3102 	ASSERT(DEVI(dip)->devi_global_prop_list == NULL);
3103 	ASSERT(DEVI(dip)->devi_major != DDI_MAJOR_T_NONE);
3104 
3105 	dnp = &devnamesp[DEVI(dip)->devi_major];
3106 	LOCK_DEV_OPS(&dnp->dn_lock);
3107 	plist = dnp->dn_global_prop_ptr;
3108 	if (plist == NULL) {
3109 		UNLOCK_DEV_OPS(&dnp->dn_lock);
3110 		return;
3111 	}
3112 	i_ddi_prop_list_hold(plist, dnp);
3113 	UNLOCK_DEV_OPS(&dnp->dn_lock);
3114 
3115 	mutex_enter(&DEVI(dip)->devi_lock);
3116 	DEVI(dip)->devi_global_prop_list = plist;
3117 	mutex_exit(&DEVI(dip)->devi_lock);
3118 }
3119 
3120 static void
3121 remove_global_props(dev_info_t *dip)
3122 {
3123 	ddi_prop_list_t *proplist;
3124 
3125 	mutex_enter(&DEVI(dip)->devi_lock);
3126 	proplist = DEVI(dip)->devi_global_prop_list;
3127 	DEVI(dip)->devi_global_prop_list = NULL;
3128 	mutex_exit(&DEVI(dip)->devi_lock);
3129 
3130 	if (proplist) {
3131 		major_t major;
3132 		struct devnames *dnp;
3133 
3134 		major = ddi_driver_major(dip);
3135 		ASSERT(major != DDI_MAJOR_T_NONE);
3136 		dnp = &devnamesp[major];
3137 		LOCK_DEV_OPS(&dnp->dn_lock);
3138 		i_ddi_prop_list_rele(proplist, dnp);
3139 		UNLOCK_DEV_OPS(&dnp->dn_lock);
3140 	}
3141 }
3142 
3143 #ifdef DEBUG
3144 /*
3145  * Set this variable to '0' to disable the optimization,
3146  * and to 2 to print debug message.
3147  */
3148 static int optimize_dtree = 1;
3149 
3150 static void
3151 debug_dtree(dev_info_t *devi, struct dev_info *adevi, char *service)
3152 {
3153 	char *adeviname, *buf;
3154 
3155 	/*
3156 	 * Don't print unless optimize dtree is set to 2+
3157 	 */
3158 	if (optimize_dtree <= 1)
3159 		return;
3160 
3161 	buf = kmem_alloc(MAXNAMELEN, KM_SLEEP);
3162 	adeviname = ddi_deviname((dev_info_t *)adevi, buf);
3163 	if (*adeviname == '\0')
3164 		adeviname = "root";
3165 
3166 	cmn_err(CE_CONT, "%s %s -> %s\n",
3167 	    ddi_deviname(devi, buf), service, adeviname);
3168 
3169 	kmem_free(buf, MAXNAMELEN);
3170 }
3171 #else /* DEBUG */
3172 #define	debug_dtree(a1, a2, a3)	 /* nothing */
3173 #endif	/* DEBUG */
3174 
3175 static void
3176 ddi_optimize_dtree(dev_info_t *devi)
3177 {
3178 	struct dev_info *pdevi;
3179 	struct bus_ops *b;
3180 
3181 	pdevi = DEVI(devi)->devi_parent;
3182 	ASSERT(pdevi);
3183 
3184 	/*
3185 	 * Set the unoptimized values
3186 	 */
3187 	DEVI(devi)->devi_bus_map_fault = pdevi;
3188 	DEVI(devi)->devi_bus_dma_map = pdevi;
3189 	DEVI(devi)->devi_bus_dma_allochdl = pdevi;
3190 	DEVI(devi)->devi_bus_dma_freehdl = pdevi;
3191 	DEVI(devi)->devi_bus_dma_bindhdl = pdevi;
3192 	DEVI(devi)->devi_bus_dma_bindfunc =
3193 	    pdevi->devi_ops->devo_bus_ops->bus_dma_bindhdl;
3194 	DEVI(devi)->devi_bus_dma_unbindhdl = pdevi;
3195 	DEVI(devi)->devi_bus_dma_unbindfunc =
3196 	    pdevi->devi_ops->devo_bus_ops->bus_dma_unbindhdl;
3197 	DEVI(devi)->devi_bus_dma_flush = pdevi;
3198 	DEVI(devi)->devi_bus_dma_win = pdevi;
3199 	DEVI(devi)->devi_bus_dma_ctl = pdevi;
3200 	DEVI(devi)->devi_bus_ctl = pdevi;
3201 
3202 #ifdef DEBUG
3203 	if (optimize_dtree == 0)
3204 		return;
3205 #endif /* DEBUG */
3206 
3207 	b = pdevi->devi_ops->devo_bus_ops;
3208 
3209 	if (i_ddi_map_fault == b->bus_map_fault) {
3210 		DEVI(devi)->devi_bus_map_fault = pdevi->devi_bus_map_fault;
3211 		debug_dtree(devi, DEVI(devi)->devi_bus_map_fault,
3212 		    "bus_map_fault");
3213 	}
3214 
3215 	if (ddi_dma_map == b->bus_dma_map) {
3216 		DEVI(devi)->devi_bus_dma_map = pdevi->devi_bus_dma_map;
3217 		debug_dtree(devi, DEVI(devi)->devi_bus_dma_map, "bus_dma_map");
3218 	}
3219 
3220 	if (ddi_dma_allochdl == b->bus_dma_allochdl) {
3221 		DEVI(devi)->devi_bus_dma_allochdl =
3222 		    pdevi->devi_bus_dma_allochdl;
3223 		debug_dtree(devi, DEVI(devi)->devi_bus_dma_allochdl,
3224 		    "bus_dma_allochdl");
3225 	}
3226 
3227 	if (ddi_dma_freehdl == b->bus_dma_freehdl) {
3228 		DEVI(devi)->devi_bus_dma_freehdl = pdevi->devi_bus_dma_freehdl;
3229 		debug_dtree(devi, DEVI(devi)->devi_bus_dma_freehdl,
3230 		    "bus_dma_freehdl");
3231 	}
3232 
3233 	if (ddi_dma_bindhdl == b->bus_dma_bindhdl) {
3234 		DEVI(devi)->devi_bus_dma_bindhdl = pdevi->devi_bus_dma_bindhdl;
3235 		DEVI(devi)->devi_bus_dma_bindfunc =
3236 		    pdevi->devi_bus_dma_bindhdl->devi_ops->
3237 		    devo_bus_ops->bus_dma_bindhdl;
3238 		debug_dtree(devi, DEVI(devi)->devi_bus_dma_bindhdl,
3239 		    "bus_dma_bindhdl");
3240 	}
3241 
3242 	if (ddi_dma_unbindhdl == b->bus_dma_unbindhdl) {
3243 		DEVI(devi)->devi_bus_dma_unbindhdl =
3244 		    pdevi->devi_bus_dma_unbindhdl;
3245 		DEVI(devi)->devi_bus_dma_unbindfunc =
3246 		    pdevi->devi_bus_dma_unbindhdl->devi_ops->
3247 		    devo_bus_ops->bus_dma_unbindhdl;
3248 		debug_dtree(devi, DEVI(devi)->devi_bus_dma_unbindhdl,
3249 		    "bus_dma_unbindhdl");
3250 	}
3251 
3252 	if (ddi_dma_flush == b->bus_dma_flush) {
3253 		DEVI(devi)->devi_bus_dma_flush = pdevi->devi_bus_dma_flush;
3254 		debug_dtree(devi, DEVI(devi)->devi_bus_dma_flush,
3255 		    "bus_dma_flush");
3256 	}
3257 
3258 	if (ddi_dma_win == b->bus_dma_win) {
3259 		DEVI(devi)->devi_bus_dma_win = pdevi->devi_bus_dma_win;
3260 		debug_dtree(devi, DEVI(devi)->devi_bus_dma_win,
3261 		    "bus_dma_win");
3262 	}
3263 
3264 	if (ddi_dma_mctl == b->bus_dma_ctl) {
3265 		DEVI(devi)->devi_bus_dma_ctl = pdevi->devi_bus_dma_ctl;
3266 		debug_dtree(devi, DEVI(devi)->devi_bus_dma_ctl, "bus_dma_ctl");
3267 	}
3268 
3269 	if (ddi_ctlops == b->bus_ctl) {
3270 		DEVI(devi)->devi_bus_ctl = pdevi->devi_bus_ctl;
3271 		debug_dtree(devi, DEVI(devi)->devi_bus_ctl, "bus_ctl");
3272 	}
3273 }
3274 
3275 #define	MIN_DEVINFO_LOG_SIZE	max_ncpus
3276 #define	MAX_DEVINFO_LOG_SIZE	max_ncpus * 10
3277 
3278 static void
3279 da_log_init()
3280 {
3281 	devinfo_log_header_t *dh;
3282 	int logsize = devinfo_log_size;
3283 
3284 	if (logsize == 0)
3285 		logsize = MIN_DEVINFO_LOG_SIZE;
3286 	else if (logsize > MAX_DEVINFO_LOG_SIZE)
3287 		logsize = MAX_DEVINFO_LOG_SIZE;
3288 
3289 	dh = kmem_alloc(logsize * PAGESIZE, KM_SLEEP);
3290 	mutex_init(&dh->dh_lock, NULL, MUTEX_DEFAULT, NULL);
3291 	dh->dh_max = ((logsize * PAGESIZE) - sizeof (*dh)) /
3292 	    sizeof (devinfo_audit_t) + 1;
3293 	dh->dh_curr = -1;
3294 	dh->dh_hits = 0;
3295 
3296 	devinfo_audit_log = dh;
3297 }
3298 
3299 /*
3300  * Log the stack trace in per-devinfo audit structure and also enter
3301  * it into a system wide log for recording the time history.
3302  */
3303 static void
3304 da_log_enter(dev_info_t *dip)
3305 {
3306 	devinfo_audit_t *da_log, *da = DEVI(dip)->devi_audit;
3307 	devinfo_log_header_t *dh = devinfo_audit_log;
3308 
3309 	if (devinfo_audit_log == NULL)
3310 		return;
3311 
3312 	ASSERT(da != NULL);
3313 
3314 	da->da_devinfo = dip;
3315 	da->da_timestamp = gethrtime();
3316 	da->da_thread = curthread;
3317 	da->da_node_state = DEVI(dip)->devi_node_state;
3318 	da->da_device_state = DEVI(dip)->devi_state;
3319 	da->da_depth = getpcstack(da->da_stack, DDI_STACK_DEPTH);
3320 
3321 	/*
3322 	 * Copy into common log and note the location for tracing history
3323 	 */
3324 	mutex_enter(&dh->dh_lock);
3325 	dh->dh_hits++;
3326 	dh->dh_curr++;
3327 	if (dh->dh_curr >= dh->dh_max)
3328 		dh->dh_curr -= dh->dh_max;
3329 	da_log = &dh->dh_entry[dh->dh_curr];
3330 	mutex_exit(&dh->dh_lock);
3331 
3332 	bcopy(da, da_log, sizeof (devinfo_audit_t));
3333 	da->da_lastlog = da_log;
3334 }
3335 
3336 static void
3337 attach_drivers()
3338 {
3339 	int i;
3340 	for (i = 0; i < devcnt; i++) {
3341 		struct devnames *dnp = &devnamesp[i];
3342 		if ((dnp->dn_flags & DN_FORCE_ATTACH) &&
3343 		    (ddi_hold_installed_driver((major_t)i) != NULL))
3344 			ddi_rele_driver((major_t)i);
3345 	}
3346 }
3347 
3348 /*
3349  * Launch a thread to force attach drivers. This avoids penalty on boot time.
3350  */
3351 void
3352 i_ddi_forceattach_drivers()
3353 {
3354 
3355 	/*
3356 	 * Attach IB VHCI driver before the force-attach thread attaches the
3357 	 * IB HCA driver. IB HCA driver will fail if IB Nexus has not yet
3358 	 * been attached.
3359 	 */
3360 	(void) ddi_hold_installed_driver(ddi_name_to_major("ib"));
3361 
3362 	(void) thread_create(NULL, 0, (void (*)())attach_drivers, NULL, 0, &p0,
3363 	    TS_RUN, minclsyspri);
3364 }
3365 
3366 /*
3367  * This is a private DDI interface for optimizing boot performance.
3368  * I/O subsystem initialization is considered complete when devfsadm
3369  * is executed.
3370  *
3371  * NOTE: The start of syseventd happens to be a convenient indicator
3372  *	of the completion of I/O initialization during boot.
3373  *	The implementation should be replaced by something more robust.
3374  */
3375 int
3376 i_ddi_io_initialized()
3377 {
3378 	extern int sysevent_daemon_init;
3379 	return (sysevent_daemon_init);
3380 }
3381 
3382 /*
3383  * May be used to determine system boot state
3384  * "Available" means the system is for the most part up
3385  * and initialized, with all system services either up or
3386  * capable of being started.  This state is set by devfsadm
3387  * during the boot process.  The /dev filesystem infers
3388  * from this when implicit reconfig can be performed,
3389  * ie, devfsadm can be invoked.  Please avoid making
3390  * further use of this unless it's really necessary.
3391  */
3392 int
3393 i_ddi_sysavail()
3394 {
3395 	return (devname_state & DS_SYSAVAIL);
3396 }
3397 
3398 /*
3399  * May be used to determine if boot is a reconfigure boot.
3400  */
3401 int
3402 i_ddi_reconfig()
3403 {
3404 	return (devname_state & DS_RECONFIG);
3405 }
3406 
3407 /*
3408  * Note system services are up, inform /dev.
3409  */
3410 void
3411 i_ddi_set_sysavail()
3412 {
3413 	if ((devname_state & DS_SYSAVAIL) == 0) {
3414 		devname_state |= DS_SYSAVAIL;
3415 		sdev_devstate_change();
3416 	}
3417 }
3418 
3419 /*
3420  * Note reconfiguration boot, inform /dev.
3421  */
3422 void
3423 i_ddi_set_reconfig()
3424 {
3425 	if ((devname_state & DS_RECONFIG) == 0) {
3426 		devname_state |= DS_RECONFIG;
3427 		sdev_devstate_change();
3428 	}
3429 }
3430 
3431 
3432 /*
3433  * device tree walking
3434  */
3435 
3436 struct walk_elem {
3437 	struct walk_elem *next;
3438 	dev_info_t *dip;
3439 };
3440 
3441 static void
3442 free_list(struct walk_elem *list)
3443 {
3444 	while (list) {
3445 		struct walk_elem *next = list->next;
3446 		kmem_free(list, sizeof (*list));
3447 		list = next;
3448 	}
3449 }
3450 
3451 static void
3452 append_node(struct walk_elem **list, dev_info_t *dip)
3453 {
3454 	struct walk_elem *tail;
3455 	struct walk_elem *elem = kmem_alloc(sizeof (*elem), KM_SLEEP);
3456 
3457 	elem->next = NULL;
3458 	elem->dip = dip;
3459 
3460 	if (*list == NULL) {
3461 		*list = elem;
3462 		return;
3463 	}
3464 
3465 	tail = *list;
3466 	while (tail->next)
3467 		tail = tail->next;
3468 
3469 	tail->next = elem;
3470 }
3471 
3472 /*
3473  * The implementation of ddi_walk_devs().
3474  */
3475 static int
3476 walk_devs(dev_info_t *dip, int (*f)(dev_info_t *, void *), void *arg,
3477     int do_locking)
3478 {
3479 	struct walk_elem *head = NULL;
3480 
3481 	/*
3482 	 * Do it in two passes. First pass invoke callback on each
3483 	 * dip on the sibling list. Second pass invoke callback on
3484 	 * children of each dip.
3485 	 */
3486 	while (dip) {
3487 		switch ((*f)(dip, arg)) {
3488 		case DDI_WALK_TERMINATE:
3489 			free_list(head);
3490 			return (DDI_WALK_TERMINATE);
3491 
3492 		case DDI_WALK_PRUNESIB:
3493 			/* ignore sibling by setting dip to NULL */
3494 			append_node(&head, dip);
3495 			dip = NULL;
3496 			break;
3497 
3498 		case DDI_WALK_PRUNECHILD:
3499 			/* don't worry about children */
3500 			dip = ddi_get_next_sibling(dip);
3501 			break;
3502 
3503 		case DDI_WALK_CONTINUE:
3504 		default:
3505 			append_node(&head, dip);
3506 			dip = ddi_get_next_sibling(dip);
3507 			break;
3508 		}
3509 
3510 	}
3511 
3512 	/* second pass */
3513 	while (head) {
3514 		int circ;
3515 		struct walk_elem *next = head->next;
3516 
3517 		if (do_locking)
3518 			ndi_devi_enter(head->dip, &circ);
3519 		if (walk_devs(ddi_get_child(head->dip), f, arg, do_locking) ==
3520 		    DDI_WALK_TERMINATE) {
3521 			if (do_locking)
3522 				ndi_devi_exit(head->dip, circ);
3523 			free_list(head);
3524 			return (DDI_WALK_TERMINATE);
3525 		}
3526 		if (do_locking)
3527 			ndi_devi_exit(head->dip, circ);
3528 		kmem_free(head, sizeof (*head));
3529 		head = next;
3530 	}
3531 
3532 	return (DDI_WALK_CONTINUE);
3533 }
3534 
3535 /*
3536  * This general-purpose routine traverses the tree of dev_info nodes,
3537  * starting from the given node, and calls the given function for each
3538  * node that it finds with the current node and the pointer arg (which
3539  * can point to a structure of information that the function
3540  * needs) as arguments.
3541  *
3542  * It does the walk a layer at a time, not depth-first. The given function
3543  * must return one of the following values:
3544  *	DDI_WALK_CONTINUE
3545  *	DDI_WALK_PRUNESIB
3546  *	DDI_WALK_PRUNECHILD
3547  *	DDI_WALK_TERMINATE
3548  *
3549  * N.B. Since we walk the sibling list, the caller must ensure that
3550  *	the parent of dip is held against changes, unless the parent
3551  *	is rootnode.  ndi_devi_enter() on the parent is sufficient.
3552  *
3553  *	To avoid deadlock situations, caller must not attempt to
3554  *	configure/unconfigure/remove device node in (*f)(), nor should
3555  *	it attempt to recurse on other nodes in the system. Any
3556  *	ndi_devi_enter() done by (*f)() must occur 'at-or-below' the
3557  *	node entered prior to ddi_walk_devs(). Furthermore, if (*f)()
3558  *	does any multi-threading (in framework *or* in driver) then the
3559  *	ndi_devi_enter() calls done by dependent threads must be
3560  *	'strictly-below'.
3561  *
3562  *	This is not callable from device autoconfiguration routines.
3563  *	They include, but not limited to, _init(9e), _fini(9e), probe(9e),
3564  *	attach(9e), and detach(9e).
3565  */
3566 
3567 void
3568 ddi_walk_devs(dev_info_t *dip, int (*f)(dev_info_t *, void *), void *arg)
3569 {
3570 
3571 	ASSERT(dip == NULL || ddi_get_parent(dip) == NULL ||
3572 	    DEVI_BUSY_OWNED(ddi_get_parent(dip)));
3573 
3574 	(void) walk_devs(dip, f, arg, 1);
3575 }
3576 
3577 /*
3578  * This is a general-purpose routine traverses the per-driver list
3579  * and calls the given function for each node. must return one of
3580  * the following values:
3581  *	DDI_WALK_CONTINUE
3582  *	DDI_WALK_TERMINATE
3583  *
3584  * N.B. The same restrictions from ddi_walk_devs() apply.
3585  */
3586 
3587 void
3588 e_ddi_walk_driver(char *drv, int (*f)(dev_info_t *, void *), void *arg)
3589 {
3590 	major_t major;
3591 	struct devnames *dnp;
3592 	dev_info_t *dip;
3593 
3594 	major = ddi_name_to_major(drv);
3595 	if (major == DDI_MAJOR_T_NONE)
3596 		return;
3597 
3598 	dnp = &devnamesp[major];
3599 	LOCK_DEV_OPS(&dnp->dn_lock);
3600 	dip = dnp->dn_head;
3601 	while (dip) {
3602 		ndi_hold_devi(dip);
3603 		UNLOCK_DEV_OPS(&dnp->dn_lock);
3604 		if ((*f)(dip, arg) == DDI_WALK_TERMINATE) {
3605 			ndi_rele_devi(dip);
3606 			return;
3607 		}
3608 		LOCK_DEV_OPS(&dnp->dn_lock);
3609 		ndi_rele_devi(dip);
3610 		dip = ddi_get_next(dip);
3611 	}
3612 	UNLOCK_DEV_OPS(&dnp->dn_lock);
3613 }
3614 
3615 /*
3616  * argument to i_find_devi, a devinfo node search callback function.
3617  */
3618 struct match_info {
3619 	dev_info_t	*dip;		/* result */
3620 	char		*nodename;	/* if non-null, nodename must match */
3621 	int		instance;	/* if != -1, instance must match */
3622 	int		attached;	/* if != 0, i_ddi_devi_attached() */
3623 };
3624 
3625 static int
3626 i_find_devi(dev_info_t *dip, void *arg)
3627 {
3628 	struct match_info *info = (struct match_info *)arg;
3629 
3630 	if (((info->nodename == NULL) ||
3631 	    (strcmp(ddi_node_name(dip), info->nodename) == 0)) &&
3632 	    ((info->instance == -1) ||
3633 	    (ddi_get_instance(dip) == info->instance)) &&
3634 	    ((info->attached == 0) || i_ddi_devi_attached(dip))) {
3635 		info->dip = dip;
3636 		ndi_hold_devi(dip);
3637 		return (DDI_WALK_TERMINATE);
3638 	}
3639 
3640 	return (DDI_WALK_CONTINUE);
3641 }
3642 
3643 /*
3644  * Find dip with a known node name and instance and return with it held
3645  */
3646 dev_info_t *
3647 ddi_find_devinfo(char *nodename, int instance, int attached)
3648 {
3649 	struct match_info	info;
3650 
3651 	info.nodename = nodename;
3652 	info.instance = instance;
3653 	info.attached = attached;
3654 	info.dip = NULL;
3655 
3656 	ddi_walk_devs(ddi_root_node(), i_find_devi, &info);
3657 	return (info.dip);
3658 }
3659 
3660 extern ib_boot_prop_t *iscsiboot_prop;
3661 static void
3662 i_ddi_parse_iscsi_name(char *name, char **nodename, char **addrname,
3663     char **minorname)
3664 {
3665 	char *cp, *colon;
3666 	static char nulladdrname[] = "";
3667 
3668 	/* default values */
3669 	if (nodename)
3670 		*nodename = name;
3671 	if (addrname)
3672 		*addrname = nulladdrname;
3673 	if (minorname)
3674 		*minorname = NULL;
3675 
3676 	cp = colon = name;
3677 	while (*cp != '\0') {
3678 		if (addrname && *cp == '@') {
3679 			*addrname = cp + 1;
3680 			*cp = '\0';
3681 		} else if (minorname && *cp == ':') {
3682 			*minorname = cp + 1;
3683 			colon = cp;
3684 		}
3685 		++cp;
3686 	}
3687 	if (colon != name) {
3688 		*colon = '\0';
3689 	}
3690 }
3691 
3692 /*
3693  * Parse for name, addr, and minor names. Some args may be NULL.
3694  */
3695 void
3696 i_ddi_parse_name(char *name, char **nodename, char **addrname, char **minorname)
3697 {
3698 	char *cp;
3699 	static char nulladdrname[] = "";
3700 
3701 	/* default values */
3702 	if (nodename)
3703 		*nodename = name;
3704 	if (addrname)
3705 		*addrname = nulladdrname;
3706 	if (minorname)
3707 		*minorname = NULL;
3708 
3709 	cp = name;
3710 	while (*cp != '\0') {
3711 		if (addrname && *cp == '@') {
3712 			*addrname = cp + 1;
3713 			*cp = '\0';
3714 		} else if (minorname && *cp == ':') {
3715 			*minorname = cp + 1;
3716 			*cp = '\0';
3717 		}
3718 		++cp;
3719 	}
3720 }
3721 
3722 static char *
3723 child_path_to_driver(dev_info_t *parent, char *child_name, char *unit_address)
3724 {
3725 	char *p, *drvname = NULL;
3726 	major_t maj;
3727 
3728 	/*
3729 	 * Construct the pathname and ask the implementation
3730 	 * if it can do a driver = f(pathname) for us, if not
3731 	 * we'll just default to using the node-name that
3732 	 * was given to us.  We want to do this first to
3733 	 * allow the platform to use 'generic' names for
3734 	 * legacy device drivers.
3735 	 */
3736 	p = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
3737 	(void) ddi_pathname(parent, p);
3738 	(void) strcat(p, "/");
3739 	(void) strcat(p, child_name);
3740 	if (unit_address && *unit_address) {
3741 		(void) strcat(p, "@");
3742 		(void) strcat(p, unit_address);
3743 	}
3744 
3745 	/*
3746 	 * Get the binding. If there is none, return the child_name
3747 	 * and let the caller deal with it.
3748 	 */
3749 	maj = path_to_major(p);
3750 
3751 	kmem_free(p, MAXPATHLEN);
3752 
3753 	if (maj != DDI_MAJOR_T_NONE)
3754 		drvname = ddi_major_to_name(maj);
3755 	if (drvname == NULL)
3756 		drvname = child_name;
3757 
3758 	return (drvname);
3759 }
3760 
3761 
3762 #define	PCI_EX_CLASS	"pciexclass"
3763 #define	PCI_EX		"pciex"
3764 #define	PCI_CLASS	"pciclass"
3765 #define	PCI		"pci"
3766 
3767 int
3768 ddi_is_pci_dip(dev_info_t *dip)
3769 {
3770 	char	*prop = NULL;
3771 
3772 	if (ddi_prop_lookup_string(DDI_DEV_T_ANY, dip, DDI_PROP_DONTPASS,
3773 	    "compatible", &prop) == DDI_PROP_SUCCESS) {
3774 		ASSERT(prop);
3775 		if (strncmp(prop, PCI_EX_CLASS, sizeof (PCI_EX_CLASS) - 1)
3776 		    == 0 ||
3777 		    strncmp(prop, PCI_EX, sizeof (PCI_EX)- 1)
3778 		    == 0 ||
3779 		    strncmp(prop, PCI_CLASS, sizeof (PCI_CLASS) - 1)
3780 		    == 0 ||
3781 		    strncmp(prop, PCI, sizeof (PCI) - 1)
3782 		    == 0) {
3783 			ddi_prop_free(prop);
3784 			return (1);
3785 		}
3786 	}
3787 
3788 	if (prop != NULL) {
3789 		ddi_prop_free(prop);
3790 	}
3791 
3792 	return (0);
3793 }
3794 
3795 /*
3796  * Given the pathname of a device, fill in the dev_info_t value and/or the
3797  * dev_t value and/or the spectype, depending on which parameters are non-NULL.
3798  * If there is an error, this function returns -1.
3799  *
3800  * NOTE: If this function returns the dev_info_t structure, then it
3801  * does so with a hold on the devi. Caller should ensure that they get
3802  * decremented via ddi_release_devi() or ndi_rele_devi();
3803  *
3804  * This function can be invoked in the boot case for a pathname without
3805  * device argument (:xxxx), traditionally treated as a minor name.
3806  * In this case, we do the following
3807  * (1) search the minor node of type DDM_DEFAULT.
3808  * (2) if no DDM_DEFAULT minor exists, then the first non-alias minor is chosen.
3809  * (3) if neither exists, a dev_t is faked with minor number = instance.
3810  * As of S9 FCS, no instance of #1 exists. #2 is used by several platforms
3811  * to default the boot partition to :a possibly by other OBP definitions.
3812  * #3 is used for booting off network interfaces, most SPARC network
3813  * drivers support Style-2 only, so only DDM_ALIAS minor exists.
3814  *
3815  * It is possible for OBP to present device args at the end of the path as
3816  * well as in the middle. For example, with IB the following strings are
3817  * valid boot paths.
3818  *	a /pci@8,700000/ib@1,2:port=1,pkey=ff,dhcp,...
3819  *	b /pci@8,700000/ib@1,1:port=1/ioc@xxxxxx,yyyyyyy:dhcp
3820  * Case (a), we first look for minor node "port=1,pkey...".
3821  * Failing that, we will pass "port=1,pkey..." to the bus_config
3822  * entry point of ib (HCA) driver.
3823  * Case (b), configure ib@1,1 as usual. Then invoke ib's bus_config
3824  * with argument "ioc@xxxxxxx,yyyyyyy:port=1". After configuring
3825  * the ioc, look for minor node dhcp. If not found, pass ":dhcp"
3826  * to ioc's bus_config entry point.
3827  */
3828 int
3829 resolve_pathname(char *pathname,
3830 	dev_info_t **dipp, dev_t *devtp, int *spectypep)
3831 {
3832 	int			error;
3833 	dev_info_t		*parent, *child;
3834 	struct pathname		pn;
3835 	char			*component, *config_name;
3836 	char			*minorname = NULL;
3837 	char			*prev_minor = NULL;
3838 	dev_t			devt = NODEV;
3839 	int			spectype;
3840 	struct ddi_minor_data	*dmn;
3841 	int			circ;
3842 
3843 	if (*pathname != '/')
3844 		return (EINVAL);
3845 	parent = ddi_root_node();	/* Begin at the top of the tree */
3846 
3847 	if (error = pn_get(pathname, UIO_SYSSPACE, &pn))
3848 		return (error);
3849 	pn_skipslash(&pn);
3850 
3851 	ASSERT(i_ddi_devi_attached(parent));
3852 	ndi_hold_devi(parent);
3853 
3854 	component = kmem_alloc(MAXNAMELEN, KM_SLEEP);
3855 	config_name = kmem_alloc(MAXNAMELEN, KM_SLEEP);
3856 
3857 	while (pn_pathleft(&pn)) {
3858 		/* remember prev minor (:xxx) in the middle of path */
3859 		if (minorname)
3860 			prev_minor = i_ddi_strdup(minorname, KM_SLEEP);
3861 
3862 		/* Get component and chop off minorname */
3863 		(void) pn_getcomponent(&pn, component);
3864 		if ((iscsiboot_prop != NULL) &&
3865 		    (strcmp((DEVI(parent)->devi_node_name), "iscsi") == 0)) {
3866 			i_ddi_parse_iscsi_name(component, NULL, NULL,
3867 			    &minorname);
3868 		} else {
3869 			i_ddi_parse_name(component, NULL, NULL, &minorname);
3870 		}
3871 		if (prev_minor == NULL) {
3872 			(void) snprintf(config_name, MAXNAMELEN, "%s",
3873 			    component);
3874 		} else {
3875 			(void) snprintf(config_name, MAXNAMELEN, "%s:%s",
3876 			    component, prev_minor);
3877 			kmem_free(prev_minor, strlen(prev_minor) + 1);
3878 			prev_minor = NULL;
3879 		}
3880 
3881 		/*
3882 		 * Find and configure the child
3883 		 */
3884 		if (ndi_devi_config_one(parent, config_name, &child,
3885 		    NDI_PROMNAME | NDI_NO_EVENT) != NDI_SUCCESS) {
3886 			ndi_rele_devi(parent);
3887 			pn_free(&pn);
3888 			kmem_free(component, MAXNAMELEN);
3889 			kmem_free(config_name, MAXNAMELEN);
3890 			return (-1);
3891 		}
3892 
3893 		ASSERT(i_ddi_devi_attached(child));
3894 		ndi_rele_devi(parent);
3895 		parent = child;
3896 		pn_skipslash(&pn);
3897 	}
3898 
3899 	/*
3900 	 * First look for a minor node matching minorname.
3901 	 * Failing that, try to pass minorname to bus_config().
3902 	 */
3903 	if (minorname && i_ddi_minorname_to_devtspectype(parent,
3904 	    minorname, &devt, &spectype) == DDI_FAILURE) {
3905 		(void) snprintf(config_name, MAXNAMELEN, "%s", minorname);
3906 		if (ndi_devi_config_obp_args(parent,
3907 		    config_name, &child, 0) != NDI_SUCCESS) {
3908 			ndi_rele_devi(parent);
3909 			pn_free(&pn);
3910 			kmem_free(component, MAXNAMELEN);
3911 			kmem_free(config_name, MAXNAMELEN);
3912 			NDI_CONFIG_DEBUG((CE_NOTE,
3913 			    "%s: minor node not found\n", pathname));
3914 			return (-1);
3915 		}
3916 		minorname = NULL;	/* look for default minor */
3917 		ASSERT(i_ddi_devi_attached(child));
3918 		ndi_rele_devi(parent);
3919 		parent = child;
3920 	}
3921 
3922 	if (devtp || spectypep) {
3923 		if (minorname == NULL) {
3924 			/*
3925 			 * Search for a default entry with an active
3926 			 * ndi_devi_enter to protect the devi_minor list.
3927 			 */
3928 			ndi_devi_enter(parent, &circ);
3929 			for (dmn = DEVI(parent)->devi_minor; dmn;
3930 			    dmn = dmn->next) {
3931 				if (dmn->type == DDM_DEFAULT) {
3932 					devt = dmn->ddm_dev;
3933 					spectype = dmn->ddm_spec_type;
3934 					break;
3935 				}
3936 			}
3937 
3938 			if (devt == NODEV) {
3939 				/*
3940 				 * No default minor node, try the first one;
3941 				 * else, assume 1-1 instance-minor mapping
3942 				 */
3943 				dmn = DEVI(parent)->devi_minor;
3944 				if (dmn && ((dmn->type == DDM_MINOR) ||
3945 				    (dmn->type == DDM_INTERNAL_PATH))) {
3946 					devt = dmn->ddm_dev;
3947 					spectype = dmn->ddm_spec_type;
3948 				} else {
3949 					devt = makedevice(
3950 					    DEVI(parent)->devi_major,
3951 					    ddi_get_instance(parent));
3952 					spectype = S_IFCHR;
3953 				}
3954 			}
3955 			ndi_devi_exit(parent, circ);
3956 		}
3957 		if (devtp)
3958 			*devtp = devt;
3959 		if (spectypep)
3960 			*spectypep = spectype;
3961 	}
3962 
3963 	pn_free(&pn);
3964 	kmem_free(component, MAXNAMELEN);
3965 	kmem_free(config_name, MAXNAMELEN);
3966 
3967 	/*
3968 	 * If there is no error, return the appropriate parameters
3969 	 */
3970 	if (dipp != NULL)
3971 		*dipp = parent;
3972 	else {
3973 		/*
3974 		 * We should really keep the ref count to keep the node from
3975 		 * detaching but ddi_pathname_to_dev_t() specifies a NULL dipp,
3976 		 * so we have no way of passing back the held dip.  Not holding
3977 		 * the dip allows detaches to occur - which can cause problems
3978 		 * for subsystems which call ddi_pathname_to_dev_t (console).
3979 		 *
3980 		 * Instead of holding the dip, we place a ddi-no-autodetach
3981 		 * property on the node to prevent auto detaching.
3982 		 *
3983 		 * The right fix is to remove ddi_pathname_to_dev_t and replace
3984 		 * it, and all references, with a call that specifies a dipp.
3985 		 * In addition, the callers of this new interfaces would then
3986 		 * need to call ndi_rele_devi when the reference is complete.
3987 		 *
3988 		 */
3989 		(void) ddi_prop_update_int(DDI_DEV_T_NONE, parent,
3990 		    DDI_NO_AUTODETACH, 1);
3991 		ndi_rele_devi(parent);
3992 	}
3993 
3994 	return (0);
3995 }
3996 
3997 /*
3998  * Given the pathname of a device, return the dev_t of the corresponding
3999  * device.  Returns NODEV on failure.
4000  *
4001  * Note that this call sets the DDI_NO_AUTODETACH property on the devinfo node.
4002  */
4003 dev_t
4004 ddi_pathname_to_dev_t(char *pathname)
4005 {
4006 	dev_t devt;
4007 	int error;
4008 
4009 	error = resolve_pathname(pathname, NULL, &devt, NULL);
4010 
4011 	return (error ? NODEV : devt);
4012 }
4013 
4014 /*
4015  * Translate a prom pathname to kernel devfs pathname.
4016  * Caller is assumed to allocate devfspath memory of
4017  * size at least MAXPATHLEN
4018  *
4019  * The prom pathname may not include minor name, but
4020  * devfs pathname has a minor name portion.
4021  */
4022 int
4023 i_ddi_prompath_to_devfspath(char *prompath, char *devfspath)
4024 {
4025 	dev_t		devt = (dev_t)NODEV;
4026 	dev_info_t	*dip = NULL;
4027 	char		*minor_name = NULL;
4028 	int		spectype;
4029 	int		error;
4030 	int		circ;
4031 
4032 	error = resolve_pathname(prompath, &dip, &devt, &spectype);
4033 	if (error)
4034 		return (DDI_FAILURE);
4035 	ASSERT(dip && devt != NODEV);
4036 
4037 	/*
4038 	 * Get in-kernel devfs pathname
4039 	 */
4040 	(void) ddi_pathname(dip, devfspath);
4041 
4042 	ndi_devi_enter(dip, &circ);
4043 	minor_name = i_ddi_devtspectype_to_minorname(dip, devt, spectype);
4044 	if (minor_name) {
4045 		(void) strcat(devfspath, ":");
4046 		(void) strcat(devfspath, minor_name);
4047 	} else {
4048 		/*
4049 		 * If minor_name is NULL, we have an alias minor node.
4050 		 * So manufacture a path to the corresponding clone minor.
4051 		 */
4052 		(void) snprintf(devfspath, MAXPATHLEN, "%s:%s",
4053 		    CLONE_PATH, ddi_driver_name(dip));
4054 	}
4055 	ndi_devi_exit(dip, circ);
4056 
4057 	/* release hold from resolve_pathname() */
4058 	ndi_rele_devi(dip);
4059 	return (0);
4060 }
4061 
4062 /*
4063  * This function is intended to identify drivers that must quiesce for fast
4064  * reboot to succeed.  It does not claim to have more knowledge about the device
4065  * than its driver.  If a driver has implemented quiesce(), it will be invoked;
4066  * if a so identified driver does not manage any device that needs to be
4067  * quiesced, it must explicitly set its devo_quiesce dev_op to
4068  * ddi_quiesce_not_needed.
4069  */
4070 static int skip_pseudo = 1;	/* Skip pseudo devices */
4071 static int skip_non_hw = 1;	/* Skip devices with no hardware property */
4072 static int
4073 should_implement_quiesce(dev_info_t *dip)
4074 {
4075 	struct dev_info *devi = DEVI(dip);
4076 	dev_info_t *pdip;
4077 
4078 	/*
4079 	 * If dip is pseudo and skip_pseudo is set, driver doesn't have to
4080 	 * implement quiesce().
4081 	 */
4082 	if (skip_pseudo &&
4083 	    strncmp(ddi_binding_name(dip), "pseudo", sizeof ("pseudo")) == 0)
4084 		return (0);
4085 
4086 	/*
4087 	 * If parent dip is pseudo and skip_pseudo is set, driver doesn't have
4088 	 * to implement quiesce().
4089 	 */
4090 	if (skip_pseudo && (pdip = ddi_get_parent(dip)) != NULL &&
4091 	    strncmp(ddi_binding_name(pdip), "pseudo", sizeof ("pseudo")) == 0)
4092 		return (0);
4093 
4094 	/*
4095 	 * If not attached, driver doesn't have to implement quiesce().
4096 	 */
4097 	if (!i_ddi_devi_attached(dip))
4098 		return (0);
4099 
4100 	/*
4101 	 * If dip has no hardware property and skip_non_hw is set,
4102 	 * driver doesn't have to implement quiesce().
4103 	 */
4104 	if (skip_non_hw && devi->devi_hw_prop_ptr == NULL)
4105 		return (0);
4106 
4107 	return (1);
4108 }
4109 
4110 static int
4111 driver_has_quiesce(struct dev_ops *ops)
4112 {
4113 	if ((ops->devo_rev >= 4) && (ops->devo_quiesce != nodev) &&
4114 	    (ops->devo_quiesce != NULL) && (ops->devo_quiesce != nulldev) &&
4115 	    (ops->devo_quiesce != ddi_quiesce_not_supported))
4116 		return (1);
4117 	else
4118 		return (0);
4119 }
4120 
4121 /*
4122  * Check to see if a driver has implemented the quiesce() DDI function.
4123  */
4124 int
4125 check_driver_quiesce(dev_info_t *dip, void *arg)
4126 {
4127 	struct dev_ops *ops;
4128 
4129 	if (!should_implement_quiesce(dip))
4130 		return (DDI_WALK_CONTINUE);
4131 
4132 	if ((ops = ddi_get_driver(dip)) == NULL)
4133 		return (DDI_WALK_CONTINUE);
4134 
4135 	if (driver_has_quiesce(ops)) {
4136 		if ((quiesce_debug & 0x2) == 0x2) {
4137 			if (ops->devo_quiesce == ddi_quiesce_not_needed)
4138 				cmn_err(CE_CONT, "%s does not need to be "
4139 				    "quiesced", ddi_driver_name(dip));
4140 			else
4141 				cmn_err(CE_CONT, "%s has quiesce routine",
4142 				    ddi_driver_name(dip));
4143 		}
4144 	} else {
4145 		if (arg != NULL)
4146 			*((int *)arg) = -1;
4147 		cmn_err(CE_WARN, "%s has no quiesce()", ddi_driver_name(dip));
4148 	}
4149 
4150 	return (DDI_WALK_CONTINUE);
4151 }
4152 
4153 /*
4154  * Quiesce device.
4155  */
4156 static void
4157 quiesce_one_device(dev_info_t *dip, void *arg)
4158 {
4159 	struct dev_ops *ops;
4160 	int should_quiesce = 0;
4161 
4162 	/*
4163 	 * If the device is not attached it doesn't need to be quiesced.
4164 	 */
4165 	if (!i_ddi_devi_attached(dip))
4166 		return;
4167 
4168 	if ((ops = ddi_get_driver(dip)) == NULL)
4169 		return;
4170 
4171 	should_quiesce = should_implement_quiesce(dip);
4172 
4173 	/*
4174 	 * If there's an implementation of quiesce(), always call it even if
4175 	 * some of the drivers don't have quiesce() or quiesce() have failed
4176 	 * so we can do force fast reboot.  The implementation of quiesce()
4177 	 * should not negatively affect a regular reboot.
4178 	 */
4179 	if (driver_has_quiesce(ops)) {
4180 		int rc = DDI_SUCCESS;
4181 
4182 		if (ops->devo_quiesce == ddi_quiesce_not_needed)
4183 			return;
4184 
4185 		rc = devi_quiesce(dip);
4186 
4187 		if (rc != DDI_SUCCESS && should_quiesce) {
4188 #ifdef DEBUG
4189 			cmn_err(CE_WARN, "quiesce() failed for %s%d",
4190 			    ddi_driver_name(dip), ddi_get_instance(dip));
4191 #endif /* DEBUG */
4192 			if (arg != NULL)
4193 				*((int *)arg) = -1;
4194 		}
4195 	} else if (should_quiesce && arg != NULL) {
4196 		*((int *)arg) = -1;
4197 	}
4198 }
4199 
4200 /*
4201  * Traverse the dev info tree in a breadth-first manner so that we quiesce
4202  * children first.  All subtrees under the parent of dip will be quiesced.
4203  */
4204 void
4205 quiesce_devices(dev_info_t *dip, void *arg)
4206 {
4207 	/*
4208 	 * if we're reached here, the device tree better not be changing.
4209 	 * so either devinfo_freeze better be set or we better be panicing.
4210 	 */
4211 	ASSERT(devinfo_freeze || panicstr);
4212 
4213 	for (; dip != NULL; dip = ddi_get_next_sibling(dip)) {
4214 		quiesce_devices(ddi_get_child(dip), arg);
4215 
4216 		quiesce_one_device(dip, arg);
4217 	}
4218 }
4219 
4220 /*
4221  * Reset all the pure leaf drivers on the system at halt time
4222  */
4223 static int
4224 reset_leaf_device(dev_info_t *dip, void *arg)
4225 {
4226 	_NOTE(ARGUNUSED(arg))
4227 	struct dev_ops *ops;
4228 
4229 	/* if the device doesn't need to be reset then there's nothing to do */
4230 	if (!DEVI_NEED_RESET(dip))
4231 		return (DDI_WALK_CONTINUE);
4232 
4233 	/*
4234 	 * if the device isn't a char/block device or doesn't have a
4235 	 * reset entry point then there's nothing to do.
4236 	 */
4237 	ops = ddi_get_driver(dip);
4238 	if ((ops == NULL) || (ops->devo_cb_ops == NULL) ||
4239 	    (ops->devo_reset == nodev) || (ops->devo_reset == nulldev) ||
4240 	    (ops->devo_reset == NULL))
4241 		return (DDI_WALK_CONTINUE);
4242 
4243 	if (DEVI_IS_ATTACHING(dip) || DEVI_IS_DETACHING(dip)) {
4244 		static char path[MAXPATHLEN];
4245 
4246 		/*
4247 		 * bad news, this device has blocked in it's attach or
4248 		 * detach routine, which means it not safe to call it's
4249 		 * devo_reset() entry point.
4250 		 */
4251 		cmn_err(CE_WARN, "unable to reset device: %s",
4252 		    ddi_pathname(dip, path));
4253 		return (DDI_WALK_CONTINUE);
4254 	}
4255 
4256 	NDI_CONFIG_DEBUG((CE_NOTE, "resetting %s%d\n",
4257 	    ddi_driver_name(dip), ddi_get_instance(dip)));
4258 
4259 	(void) devi_reset(dip, DDI_RESET_FORCE);
4260 	return (DDI_WALK_CONTINUE);
4261 }
4262 
4263 void
4264 reset_leaves(void)
4265 {
4266 	/*
4267 	 * if we're reached here, the device tree better not be changing.
4268 	 * so either devinfo_freeze better be set or we better be panicing.
4269 	 */
4270 	ASSERT(devinfo_freeze || panicstr);
4271 
4272 	(void) walk_devs(top_devinfo, reset_leaf_device, NULL, 0);
4273 }
4274 
4275 
4276 /*
4277  * devtree_freeze() must be called before quiesce_devices() and reset_leaves()
4278  * during a normal system shutdown.  It attempts to ensure that there are no
4279  * outstanding attach or detach operations in progress when quiesce_devices() or
4280  * reset_leaves()is invoked.  It must be called before the system becomes
4281  * single-threaded because device attach and detach are multi-threaded
4282  * operations.	(note that during system shutdown the system doesn't actually
4283  * become single-thread since other threads still exist, but the shutdown thread
4284  * will disable preemption for itself, raise it's pil, and stop all the other
4285  * cpus in the system there by effectively making the system single-threaded.)
4286  */
4287 void
4288 devtree_freeze(void)
4289 {
4290 	int delayed = 0;
4291 
4292 	/* if we're panicing then the device tree isn't going to be changing */
4293 	if (panicstr)
4294 		return;
4295 
4296 	/* stop all dev_info state changes in the device tree */
4297 	devinfo_freeze = gethrtime();
4298 
4299 	/*
4300 	 * if we're not panicing and there are on-going attach or detach
4301 	 * operations, wait for up to 3 seconds for them to finish.  This
4302 	 * is a randomly chosen interval but this should be ok because:
4303 	 * - 3 seconds is very small relative to the deadman timer.
4304 	 * - normal attach and detach operations should be very quick.
4305 	 * - attach and detach operations are fairly rare.
4306 	 */
4307 	while (!panicstr && atomic_add_long_nv(&devinfo_attach_detach, 0) &&
4308 	    (delayed < 3)) {
4309 		delayed += 1;
4310 
4311 		/* do a sleeping wait for one second */
4312 		ASSERT(!servicing_interrupt());
4313 		delay(drv_usectohz(MICROSEC));
4314 	}
4315 }
4316 
4317 static int
4318 bind_dip(dev_info_t *dip, void *arg)
4319 {
4320 	_NOTE(ARGUNUSED(arg))
4321 	char	*path;
4322 	major_t	major, pmajor;
4323 
4324 	/*
4325 	 * If the node is currently bound to the wrong driver, try to unbind
4326 	 * so that we can rebind to the correct driver.
4327 	 */
4328 	if (i_ddi_node_state(dip) >= DS_BOUND) {
4329 		major = ddi_compatible_driver_major(dip, NULL);
4330 		if ((DEVI(dip)->devi_major == major) &&
4331 		    (i_ddi_node_state(dip) >= DS_INITIALIZED)) {
4332 			/*
4333 			 * Check for a path-oriented driver alias that
4334 			 * takes precedence over current driver binding.
4335 			 */
4336 			path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
4337 			(void) ddi_pathname(dip, path);
4338 			pmajor = ddi_name_to_major(path);
4339 			if (driver_active(pmajor))
4340 				major = pmajor;
4341 			kmem_free(path, MAXPATHLEN);
4342 		}
4343 
4344 		/* attempt unbind if current driver is incorrect */
4345 		if (driver_active(major) &&
4346 		    (major != DEVI(dip)->devi_major))
4347 			(void) ndi_devi_unbind_driver(dip);
4348 	}
4349 
4350 	/* If unbound, try to bind to a driver */
4351 	if (i_ddi_node_state(dip) < DS_BOUND)
4352 		(void) ndi_devi_bind_driver(dip, 0);
4353 
4354 	return (DDI_WALK_CONTINUE);
4355 }
4356 
4357 void
4358 i_ddi_bind_devs(void)
4359 {
4360 	/* flush devfs so that ndi_devi_unbind_driver will work when possible */
4361 	(void) devfs_clean(top_devinfo, NULL, 0);
4362 
4363 	ddi_walk_devs(top_devinfo, bind_dip, (void *)NULL);
4364 }
4365 
4366 /* callback data for unbind_children_by_alias() */
4367 typedef struct unbind_data {
4368 	major_t	drv_major;
4369 	char	*drv_alias;
4370 	int	ndevs_bound;
4371 	int	unbind_errors;
4372 } unbind_data_t;
4373 
4374 /*
4375  * A utility function provided for testing and support convenience
4376  * Called for each device during an upgrade_drv -d bound to the alias
4377  * that cannot be unbound due to device in use.
4378  */
4379 static void
4380 unbind_alias_dev_in_use(dev_info_t *dip, char *alias)
4381 {
4382 	if (moddebug & MODDEBUG_BINDING) {
4383 		cmn_err(CE_CONT, "%s%d: state %d: bound to %s\n",
4384 		    ddi_driver_name(dip), ddi_get_instance(dip),
4385 		    i_ddi_node_state(dip), alias);
4386 	}
4387 }
4388 
4389 /*
4390  * walkdevs callback for unbind devices bound to specific driver
4391  * and alias.  Invoked within the context of update_drv -d <alias>.
4392  */
4393 static int
4394 unbind_children_by_alias(dev_info_t *dip, void *arg)
4395 {
4396 	int		circ;
4397 	dev_info_t	*cdip;
4398 	dev_info_t	*next;
4399 	unbind_data_t	*ub = (unbind_data_t *)(uintptr_t)arg;
4400 	int		rv;
4401 
4402 	/*
4403 	 * We are called from update_drv to try to unbind a specific
4404 	 * set of aliases for a driver.  Unbind what persistent nodes
4405 	 * we can, and return the number of nodes which cannot be unbound.
4406 	 * If not all nodes can be unbound, update_drv leaves the
4407 	 * state of the driver binding files unchanged, except in
4408 	 * the case of -f.
4409 	 */
4410 	ndi_devi_enter(dip, &circ);
4411 	for (cdip = ddi_get_child(dip); cdip; cdip = next) {
4412 		next = ddi_get_next_sibling(cdip);
4413 		if ((ddi_driver_major(cdip) != ub->drv_major) ||
4414 		    (strcmp(DEVI(cdip)->devi_node_name, ub->drv_alias) != 0))
4415 			continue;
4416 		if (i_ddi_node_state(cdip) >= DS_BOUND) {
4417 			rv = ndi_devi_unbind_driver(cdip);
4418 			if (rv != DDI_SUCCESS ||
4419 			    (i_ddi_node_state(cdip) >= DS_BOUND)) {
4420 				unbind_alias_dev_in_use(cdip, ub->drv_alias);
4421 				ub->ndevs_bound++;
4422 				continue;
4423 			}
4424 			if (ndi_dev_is_persistent_node(cdip) == 0)
4425 				(void) ddi_remove_child(cdip, 0);
4426 		}
4427 	}
4428 	ndi_devi_exit(dip, circ);
4429 
4430 	return (DDI_WALK_CONTINUE);
4431 }
4432 
4433 /*
4434  * Unbind devices by driver & alias
4435  * Context: update_drv [-f] -d -i <alias> <driver>
4436  */
4437 int
4438 i_ddi_unbind_devs_by_alias(major_t major, char *alias)
4439 {
4440 	unbind_data_t	*ub;
4441 	int		rv;
4442 
4443 	ub = kmem_zalloc(sizeof (*ub), KM_SLEEP);
4444 	ub->drv_major = major;
4445 	ub->drv_alias = alias;
4446 	ub->ndevs_bound = 0;
4447 	ub->unbind_errors = 0;
4448 
4449 	/* flush devfs so that ndi_devi_unbind_driver will work when possible */
4450 	(void) devfs_clean(top_devinfo, NULL, 0);
4451 	ddi_walk_devs(top_devinfo, unbind_children_by_alias,
4452 	    (void *)(uintptr_t)ub);
4453 
4454 	/* return the number of devices remaining bound to the alias */
4455 	rv = ub->ndevs_bound + ub->unbind_errors;
4456 	kmem_free(ub, sizeof (*ub));
4457 	return (rv);
4458 }
4459 
4460 /*
4461  * walkdevs callback for unbind devices by driver
4462  */
4463 static int
4464 unbind_children_by_driver(dev_info_t *dip, void *arg)
4465 {
4466 	int		circ;
4467 	dev_info_t	*cdip;
4468 	dev_info_t	*next;
4469 	major_t		major = (major_t)(uintptr_t)arg;
4470 	int		rv;
4471 
4472 	/*
4473 	 * We are called either from rem_drv or update_drv when reloading
4474 	 * a driver.conf file. In either case, we unbind persistent nodes
4475 	 * and destroy .conf nodes. In the case of rem_drv, this will be
4476 	 * the final state. In the case of update_drv,	i_ddi_bind_devs()
4477 	 * may be invoked later to re-enumerate (new) driver.conf rebind
4478 	 * persistent nodes.
4479 	 */
4480 	ndi_devi_enter(dip, &circ);
4481 	for (cdip = ddi_get_child(dip); cdip; cdip = next) {
4482 		next = ddi_get_next_sibling(cdip);
4483 		if (ddi_driver_major(cdip) != major)
4484 			continue;
4485 		if (i_ddi_node_state(cdip) >= DS_BOUND) {
4486 			rv = ndi_devi_unbind_driver(cdip);
4487 			if (rv == DDI_FAILURE ||
4488 			    (i_ddi_node_state(cdip) >= DS_BOUND))
4489 				continue;
4490 			if (ndi_dev_is_persistent_node(cdip) == 0)
4491 				(void) ddi_remove_child(cdip, 0);
4492 		}
4493 	}
4494 	ndi_devi_exit(dip, circ);
4495 
4496 	return (DDI_WALK_CONTINUE);
4497 }
4498 
4499 /*
4500  * Unbind devices by driver
4501  * Context: rem_drv or unload driver.conf
4502  */
4503 void
4504 i_ddi_unbind_devs(major_t major)
4505 {
4506 	/* flush devfs so that ndi_devi_unbind_driver will work when possible */
4507 	(void) devfs_clean(top_devinfo, NULL, 0);
4508 	ddi_walk_devs(top_devinfo, unbind_children_by_driver,
4509 	    (void *)(uintptr_t)major);
4510 }
4511 
4512 /*
4513  * I/O Hotplug control
4514  */
4515 
4516 /*
4517  * create and attach a dev_info node from a .conf file spec
4518  */
4519 static void
4520 init_spec_child(dev_info_t *pdip, struct hwc_spec *specp, uint_t flags)
4521 {
4522 	_NOTE(ARGUNUSED(flags))
4523 	dev_info_t *dip;
4524 	char *node_name;
4525 
4526 	if (((node_name = specp->hwc_devi_name) == NULL) ||
4527 	    (ddi_name_to_major(node_name) == DDI_MAJOR_T_NONE)) {
4528 		char *tmp = node_name;
4529 		if (tmp == NULL)
4530 			tmp = "<none>";
4531 		cmn_err(CE_CONT,
4532 		    "init_spec_child: parent=%s, bad spec (%s)\n",
4533 		    ddi_node_name(pdip), tmp);
4534 		return;
4535 	}
4536 
4537 	dip = i_ddi_alloc_node(pdip, node_name, (pnode_t)DEVI_PSEUDO_NODEID,
4538 	    -1, specp->hwc_devi_sys_prop_ptr, KM_SLEEP);
4539 
4540 	if (dip == NULL)
4541 		return;
4542 
4543 	if (ddi_initchild(pdip, dip) != DDI_SUCCESS)
4544 		(void) ddi_remove_child(dip, 0);
4545 }
4546 
4547 /*
4548  * Lookup hwc specs from hash tables and make children from the spec
4549  * Because some .conf children are "merge" nodes, we also initialize
4550  * .conf children to merge properties onto hardware nodes.
4551  *
4552  * The pdip must be held busy.
4553  */
4554 int
4555 i_ndi_make_spec_children(dev_info_t *pdip, uint_t flags)
4556 {
4557 	extern struct hwc_spec *hwc_get_child_spec(dev_info_t *, major_t);
4558 	int			circ;
4559 	struct hwc_spec		*list, *spec;
4560 
4561 	ndi_devi_enter(pdip, &circ);
4562 	if (DEVI(pdip)->devi_flags & DEVI_MADE_CHILDREN) {
4563 		ndi_devi_exit(pdip, circ);
4564 		return (DDI_SUCCESS);
4565 	}
4566 
4567 	list = hwc_get_child_spec(pdip, DDI_MAJOR_T_NONE);
4568 	for (spec = list; spec != NULL; spec = spec->hwc_next) {
4569 		init_spec_child(pdip, spec, flags);
4570 	}
4571 	hwc_free_spec_list(list);
4572 
4573 	mutex_enter(&DEVI(pdip)->devi_lock);
4574 	DEVI(pdip)->devi_flags |= DEVI_MADE_CHILDREN;
4575 	mutex_exit(&DEVI(pdip)->devi_lock);
4576 	ndi_devi_exit(pdip, circ);
4577 	return (DDI_SUCCESS);
4578 }
4579 
4580 /*
4581  * Run initchild on all child nodes such that instance assignment
4582  * for multiport network cards are contiguous.
4583  *
4584  * The pdip must be held busy.
4585  */
4586 static void
4587 i_ndi_init_hw_children(dev_info_t *pdip, uint_t flags)
4588 {
4589 	dev_info_t *dip;
4590 
4591 	ASSERT(DEVI(pdip)->devi_flags & DEVI_MADE_CHILDREN);
4592 
4593 	/* contiguous instance assignment */
4594 	e_ddi_enter_instance();
4595 	dip = ddi_get_child(pdip);
4596 	while (dip) {
4597 		if (ndi_dev_is_persistent_node(dip))
4598 			(void) i_ndi_config_node(dip, DS_INITIALIZED, flags);
4599 		dip = ddi_get_next_sibling(dip);
4600 	}
4601 	e_ddi_exit_instance();
4602 }
4603 
4604 /*
4605  * report device status
4606  */
4607 static void
4608 i_ndi_devi_report_status_change(dev_info_t *dip, char *path)
4609 {
4610 	char *status;
4611 
4612 	if (!DEVI_NEED_REPORT(dip) ||
4613 	    (i_ddi_node_state(dip) < DS_INITIALIZED) ||
4614 	    ndi_dev_is_hidden_node(dip)) {
4615 		return;
4616 	}
4617 
4618 	/* Invalidate the devinfo snapshot cache */
4619 	i_ddi_di_cache_invalidate();
4620 
4621 	if (DEVI_IS_DEVICE_REMOVED(dip)) {
4622 		status = "removed";
4623 	} else if (DEVI_IS_DEVICE_OFFLINE(dip)) {
4624 		status = "offline";
4625 	} else if (DEVI_IS_DEVICE_DOWN(dip)) {
4626 		status = "down";
4627 	} else if (DEVI_IS_BUS_QUIESCED(dip)) {
4628 		status = "quiesced";
4629 	} else if (DEVI_IS_BUS_DOWN(dip)) {
4630 		status = "down";
4631 	} else if (i_ddi_devi_attached(dip)) {
4632 		status = "online";
4633 	} else {
4634 		status = "unknown";
4635 	}
4636 
4637 	if (path == NULL) {
4638 		path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
4639 		cmn_err(CE_CONT, "?%s (%s%d) %s\n",
4640 		    ddi_pathname(dip, path), ddi_driver_name(dip),
4641 		    ddi_get_instance(dip), status);
4642 		kmem_free(path, MAXPATHLEN);
4643 	} else {
4644 		cmn_err(CE_CONT, "?%s (%s%d) %s\n",
4645 		    path, ddi_driver_name(dip),
4646 		    ddi_get_instance(dip), status);
4647 	}
4648 
4649 	mutex_enter(&(DEVI(dip)->devi_lock));
4650 	DEVI_REPORT_DONE(dip);
4651 	mutex_exit(&(DEVI(dip)->devi_lock));
4652 }
4653 
4654 /*
4655  * log a notification that a dev_info node has been configured.
4656  */
4657 static int
4658 i_log_devfs_add_devinfo(dev_info_t *dip, uint_t flags)
4659 {
4660 	int			se_err;
4661 	char			*pathname;
4662 	sysevent_t		*ev;
4663 	sysevent_id_t		eid;
4664 	sysevent_value_t	se_val;
4665 	sysevent_attr_list_t	*ev_attr_list = NULL;
4666 	char			*class_name;
4667 	int			no_transport = 0;
4668 
4669 	ASSERT(dip && ddi_get_parent(dip) &&
4670 	    DEVI_BUSY_OWNED(ddi_get_parent(dip)));
4671 
4672 	/* do not generate ESC_DEVFS_DEVI_ADD event during boot */
4673 	if (!i_ddi_io_initialized())
4674 		return (DDI_SUCCESS);
4675 
4676 	/* Invalidate the devinfo snapshot cache */
4677 	i_ddi_di_cache_invalidate();
4678 
4679 	ev = sysevent_alloc(EC_DEVFS, ESC_DEVFS_DEVI_ADD, EP_DDI, SE_SLEEP);
4680 
4681 	pathname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
4682 
4683 	(void) ddi_pathname(dip, pathname);
4684 	ASSERT(strlen(pathname));
4685 
4686 	se_val.value_type = SE_DATA_TYPE_STRING;
4687 	se_val.value.sv_string = pathname;
4688 	if (sysevent_add_attr(&ev_attr_list, DEVFS_PATHNAME,
4689 	    &se_val, SE_SLEEP) != 0) {
4690 		goto fail;
4691 	}
4692 
4693 	/* add the device class attribute */
4694 	if ((class_name = i_ddi_devi_class(dip)) != NULL) {
4695 		se_val.value_type = SE_DATA_TYPE_STRING;
4696 		se_val.value.sv_string = class_name;
4697 
4698 		if (sysevent_add_attr(&ev_attr_list,
4699 		    DEVFS_DEVI_CLASS, &se_val, SE_SLEEP) != 0) {
4700 			sysevent_free_attr(ev_attr_list);
4701 			goto fail;
4702 		}
4703 	}
4704 
4705 	/*
4706 	 * must log a branch event too unless NDI_BRANCH_EVENT_OP is set,
4707 	 * in which case the branch event will be logged by the caller
4708 	 * after the entire branch has been configured.
4709 	 */
4710 	if ((flags & NDI_BRANCH_EVENT_OP) == 0) {
4711 		/*
4712 		 * Instead of logging a separate branch event just add
4713 		 * DEVFS_BRANCH_EVENT attribute. It indicates devfsadmd to
4714 		 * generate a EC_DEV_BRANCH event.
4715 		 */
4716 		se_val.value_type = SE_DATA_TYPE_INT32;
4717 		se_val.value.sv_int32 = 1;
4718 		if (sysevent_add_attr(&ev_attr_list,
4719 		    DEVFS_BRANCH_EVENT, &se_val, SE_SLEEP) != 0) {
4720 			sysevent_free_attr(ev_attr_list);
4721 			goto fail;
4722 		}
4723 	}
4724 
4725 	if (sysevent_attach_attributes(ev, ev_attr_list) != 0) {
4726 		sysevent_free_attr(ev_attr_list);
4727 		goto fail;
4728 	}
4729 
4730 	if ((se_err = log_sysevent(ev, SE_SLEEP, &eid)) != 0) {
4731 		if (se_err == SE_NO_TRANSPORT)
4732 			no_transport = 1;
4733 		goto fail;
4734 	}
4735 
4736 	sysevent_free(ev);
4737 	kmem_free(pathname, MAXPATHLEN);
4738 
4739 	return (DDI_SUCCESS);
4740 
4741 fail:
4742 	cmn_err(CE_WARN, "failed to log ESC_DEVFS_DEVI_ADD event for %s%s",
4743 	    pathname, (no_transport) ? " (syseventd not responding)" : "");
4744 
4745 	cmn_err(CE_WARN, "/dev may not be current for driver %s. "
4746 	    "Run devfsadm -i %s",
4747 	    ddi_driver_name(dip), ddi_driver_name(dip));
4748 
4749 	sysevent_free(ev);
4750 	kmem_free(pathname, MAXPATHLEN);
4751 	return (DDI_SUCCESS);
4752 }
4753 
4754 /*
4755  * log a notification that a dev_info node has been unconfigured.
4756  */
4757 static int
4758 i_log_devfs_remove_devinfo(char *pathname, char *class_name, char *driver_name,
4759     int instance, uint_t flags)
4760 {
4761 	sysevent_t		*ev;
4762 	sysevent_id_t		eid;
4763 	sysevent_value_t	se_val;
4764 	sysevent_attr_list_t	*ev_attr_list = NULL;
4765 	int			se_err;
4766 	int			no_transport = 0;
4767 
4768 	if (!i_ddi_io_initialized())
4769 		return (DDI_SUCCESS);
4770 
4771 	/* Invalidate the devinfo snapshot cache */
4772 	i_ddi_di_cache_invalidate();
4773 
4774 	ev = sysevent_alloc(EC_DEVFS, ESC_DEVFS_DEVI_REMOVE, EP_DDI, SE_SLEEP);
4775 
4776 	se_val.value_type = SE_DATA_TYPE_STRING;
4777 	se_val.value.sv_string = pathname;
4778 	if (sysevent_add_attr(&ev_attr_list, DEVFS_PATHNAME,
4779 	    &se_val, SE_SLEEP) != 0) {
4780 		goto fail;
4781 	}
4782 
4783 	if (class_name) {
4784 		/* add the device class, driver name and instance attributes */
4785 
4786 		se_val.value_type = SE_DATA_TYPE_STRING;
4787 		se_val.value.sv_string = class_name;
4788 		if (sysevent_add_attr(&ev_attr_list,
4789 		    DEVFS_DEVI_CLASS, &se_val, SE_SLEEP) != 0) {
4790 			sysevent_free_attr(ev_attr_list);
4791 			goto fail;
4792 		}
4793 
4794 		se_val.value_type = SE_DATA_TYPE_STRING;
4795 		se_val.value.sv_string = driver_name;
4796 		if (sysevent_add_attr(&ev_attr_list,
4797 		    DEVFS_DRIVER_NAME, &se_val, SE_SLEEP) != 0) {
4798 			sysevent_free_attr(ev_attr_list);
4799 			goto fail;
4800 		}
4801 
4802 		se_val.value_type = SE_DATA_TYPE_INT32;
4803 		se_val.value.sv_int32 = instance;
4804 		if (sysevent_add_attr(&ev_attr_list,
4805 		    DEVFS_INSTANCE, &se_val, SE_SLEEP) != 0) {
4806 			sysevent_free_attr(ev_attr_list);
4807 			goto fail;
4808 		}
4809 	}
4810 
4811 	/*
4812 	 * must log a branch event too unless NDI_BRANCH_EVENT_OP is set,
4813 	 * in which case the branch event will be logged by the caller
4814 	 * after the entire branch has been unconfigured.
4815 	 */
4816 	if ((flags & NDI_BRANCH_EVENT_OP) == 0) {
4817 		/*
4818 		 * Instead of logging a separate branch event just add
4819 		 * DEVFS_BRANCH_EVENT attribute. It indicates devfsadmd to
4820 		 * generate a EC_DEV_BRANCH event.
4821 		 */
4822 		se_val.value_type = SE_DATA_TYPE_INT32;
4823 		se_val.value.sv_int32 = 1;
4824 		if (sysevent_add_attr(&ev_attr_list,
4825 		    DEVFS_BRANCH_EVENT, &se_val, SE_SLEEP) != 0) {
4826 			sysevent_free_attr(ev_attr_list);
4827 			goto fail;
4828 		}
4829 	}
4830 
4831 	if (sysevent_attach_attributes(ev, ev_attr_list) != 0) {
4832 		sysevent_free_attr(ev_attr_list);
4833 		goto fail;
4834 	}
4835 
4836 	if ((se_err = log_sysevent(ev, SE_SLEEP, &eid)) != 0) {
4837 		if (se_err == SE_NO_TRANSPORT)
4838 			no_transport = 1;
4839 		goto fail;
4840 	}
4841 
4842 	sysevent_free(ev);
4843 	return (DDI_SUCCESS);
4844 
4845 fail:
4846 	sysevent_free(ev);
4847 	cmn_err(CE_WARN, "failed to log ESC_DEVFS_DEVI_REMOVE event for %s%s",
4848 	    pathname, (no_transport) ? " (syseventd not responding)" : "");
4849 	return (DDI_SUCCESS);
4850 }
4851 
4852 static void
4853 i_ddi_log_devfs_device_remove(dev_info_t *dip)
4854 {
4855 	char	*path;
4856 
4857 	ASSERT(dip && ddi_get_parent(dip) &&
4858 	    DEVI_BUSY_OWNED(ddi_get_parent(dip)));
4859 	ASSERT(DEVI_IS_DEVICE_REMOVED(dip));
4860 
4861 	ASSERT(i_ddi_node_state(dip) >= DS_INITIALIZED);
4862 	if (i_ddi_node_state(dip) < DS_INITIALIZED)
4863 		return;
4864 
4865 	/* Inform LDI_EV_DEVICE_REMOVE callbacks. */
4866 	ldi_invoke_finalize(dip, DDI_DEV_T_ANY, 0, LDI_EV_DEVICE_REMOVE,
4867 	    LDI_EV_SUCCESS, NULL);
4868 
4869 	/* Generate EC_DEVFS_DEVI_REMOVE sysevent. */
4870 	path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
4871 	(void) i_log_devfs_remove_devinfo(ddi_pathname(dip, path),
4872 	    i_ddi_devi_class(dip), (char *)ddi_driver_name(dip),
4873 	    ddi_get_instance(dip), 0);
4874 	kmem_free(path, MAXPATHLEN);
4875 }
4876 
4877 static void
4878 i_ddi_log_devfs_device_insert(dev_info_t *dip)
4879 {
4880 	ASSERT(dip && ddi_get_parent(dip) &&
4881 	    DEVI_BUSY_OWNED(ddi_get_parent(dip)));
4882 	ASSERT(!DEVI_IS_DEVICE_REMOVED(dip));
4883 
4884 	(void) i_log_devfs_add_devinfo(dip, 0);
4885 }
4886 
4887 
4888 /*
4889  * log an event that a dev_info branch has been configured or unconfigured.
4890  */
4891 static int
4892 i_log_devfs_branch(char *node_path, char *subclass)
4893 {
4894 	int se_err;
4895 	sysevent_t *ev;
4896 	sysevent_id_t eid;
4897 	sysevent_value_t se_val;
4898 	sysevent_attr_list_t *ev_attr_list = NULL;
4899 	int no_transport = 0;
4900 
4901 	/* do not generate the event during boot */
4902 	if (!i_ddi_io_initialized())
4903 		return (DDI_SUCCESS);
4904 
4905 	/* Invalidate the devinfo snapshot cache */
4906 	i_ddi_di_cache_invalidate();
4907 
4908 	ev = sysevent_alloc(EC_DEVFS, subclass, EP_DDI, SE_SLEEP);
4909 
4910 	se_val.value_type = SE_DATA_TYPE_STRING;
4911 	se_val.value.sv_string = node_path;
4912 
4913 	if (sysevent_add_attr(&ev_attr_list, DEVFS_PATHNAME,
4914 	    &se_val, SE_SLEEP) != 0) {
4915 		goto fail;
4916 	}
4917 
4918 	if (sysevent_attach_attributes(ev, ev_attr_list) != 0) {
4919 		sysevent_free_attr(ev_attr_list);
4920 		goto fail;
4921 	}
4922 
4923 	if ((se_err = log_sysevent(ev, SE_SLEEP, &eid)) != 0) {
4924 		if (se_err == SE_NO_TRANSPORT)
4925 			no_transport = 1;
4926 		goto fail;
4927 	}
4928 
4929 	sysevent_free(ev);
4930 	return (DDI_SUCCESS);
4931 
4932 fail:
4933 	cmn_err(CE_WARN, "failed to log %s branch event for %s%s",
4934 	    subclass, node_path,
4935 	    (no_transport) ? " (syseventd not responding)" : "");
4936 
4937 	sysevent_free(ev);
4938 	return (DDI_FAILURE);
4939 }
4940 
4941 /*
4942  * log an event that a dev_info tree branch has been configured.
4943  */
4944 static int
4945 i_log_devfs_branch_add(dev_info_t *dip)
4946 {
4947 	char *node_path;
4948 	int rv;
4949 
4950 	node_path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
4951 	(void) ddi_pathname(dip, node_path);
4952 	rv = i_log_devfs_branch(node_path, ESC_DEVFS_BRANCH_ADD);
4953 	kmem_free(node_path, MAXPATHLEN);
4954 
4955 	return (rv);
4956 }
4957 
4958 /*
4959  * log an event that a dev_info tree branch has been unconfigured.
4960  */
4961 static int
4962 i_log_devfs_branch_remove(char *node_path)
4963 {
4964 	return (i_log_devfs_branch(node_path, ESC_DEVFS_BRANCH_REMOVE));
4965 }
4966 
4967 /*
4968  * enqueue the dip's deviname on the branch event queue.
4969  */
4970 static struct brevq_node *
4971 brevq_enqueue(struct brevq_node **brevqp, dev_info_t *dip,
4972     struct brevq_node *child)
4973 {
4974 	struct brevq_node *brn;
4975 	char *deviname;
4976 
4977 	deviname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
4978 	(void) ddi_deviname(dip, deviname);
4979 
4980 	brn = kmem_zalloc(sizeof (*brn), KM_SLEEP);
4981 	brn->brn_deviname = i_ddi_strdup(deviname, KM_SLEEP);
4982 	kmem_free(deviname, MAXNAMELEN);
4983 	brn->brn_child = child;
4984 	brn->brn_sibling = *brevqp;
4985 	*brevqp = brn;
4986 
4987 	return (brn);
4988 }
4989 
4990 /*
4991  * free the memory allocated for the elements on the branch event queue.
4992  */
4993 static void
4994 free_brevq(struct brevq_node *brevq)
4995 {
4996 	struct brevq_node *brn, *next_brn;
4997 
4998 	for (brn = brevq; brn != NULL; brn = next_brn) {
4999 		next_brn = brn->brn_sibling;
5000 		ASSERT(brn->brn_child == NULL);
5001 		kmem_free(brn->brn_deviname, strlen(brn->brn_deviname) + 1);
5002 		kmem_free(brn, sizeof (*brn));
5003 	}
5004 }
5005 
5006 /*
5007  * log the events queued up on the branch event queue and free the
5008  * associated memory.
5009  *
5010  * node_path must have been allocated with at least MAXPATHLEN bytes.
5011  */
5012 static void
5013 log_and_free_brevq(char *node_path, struct brevq_node *brevq)
5014 {
5015 	struct brevq_node *brn;
5016 	char *p;
5017 
5018 	p = node_path + strlen(node_path);
5019 	for (brn = brevq; brn != NULL; brn = brn->brn_sibling) {
5020 		(void) strcpy(p, brn->brn_deviname);
5021 		(void) i_log_devfs_branch_remove(node_path);
5022 	}
5023 	*p = '\0';
5024 
5025 	free_brevq(brevq);
5026 }
5027 
5028 /*
5029  * log the events queued up on the branch event queue and free the
5030  * associated memory. Same as the previous function but operates on dip.
5031  */
5032 static void
5033 log_and_free_brevq_dip(dev_info_t *dip, struct brevq_node *brevq)
5034 {
5035 	char *path;
5036 
5037 	path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
5038 	(void) ddi_pathname(dip, path);
5039 	log_and_free_brevq(path, brevq);
5040 	kmem_free(path, MAXPATHLEN);
5041 }
5042 
5043 /*
5044  * log the outstanding branch remove events for the grand children of the dip
5045  * and free the associated memory.
5046  */
5047 static void
5048 log_and_free_br_events_on_grand_children(dev_info_t *dip,
5049     struct brevq_node *brevq)
5050 {
5051 	struct brevq_node *brn;
5052 	char *path;
5053 	char *p;
5054 
5055 	path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
5056 	(void) ddi_pathname(dip, path);
5057 	p = path + strlen(path);
5058 	for (brn = brevq; brn != NULL; brn = brn->brn_sibling) {
5059 		if (brn->brn_child) {
5060 			(void) strcpy(p, brn->brn_deviname);
5061 			/* now path contains the node path to the dip's child */
5062 			log_and_free_brevq(path, brn->brn_child);
5063 			brn->brn_child = NULL;
5064 		}
5065 	}
5066 	kmem_free(path, MAXPATHLEN);
5067 }
5068 
5069 /*
5070  * log and cleanup branch remove events for the grand children of the dip.
5071  */
5072 static void
5073 cleanup_br_events_on_grand_children(dev_info_t *dip, struct brevq_node **brevqp)
5074 {
5075 	dev_info_t *child;
5076 	struct brevq_node *brevq, *brn, *prev_brn, *next_brn;
5077 	char *path;
5078 	int circ;
5079 
5080 	path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
5081 	prev_brn = NULL;
5082 	brevq = *brevqp;
5083 
5084 	ndi_devi_enter(dip, &circ);
5085 	for (brn = brevq; brn != NULL; brn = next_brn) {
5086 		next_brn = brn->brn_sibling;
5087 		for (child = ddi_get_child(dip); child != NULL;
5088 		    child = ddi_get_next_sibling(child)) {
5089 			if (i_ddi_node_state(child) >= DS_INITIALIZED) {
5090 				(void) ddi_deviname(child, path);
5091 				if (strcmp(path, brn->brn_deviname) == 0)
5092 					break;
5093 			}
5094 		}
5095 
5096 		if (child != NULL && !(DEVI_EVREMOVE(child))) {
5097 			/*
5098 			 * Event state is not REMOVE. So branch remove event
5099 			 * is not going be generated on brn->brn_child.
5100 			 * If any branch remove events were queued up on
5101 			 * brn->brn_child log them and remove the brn
5102 			 * from the queue.
5103 			 */
5104 			if (brn->brn_child) {
5105 				(void) ddi_pathname(dip, path);
5106 				(void) strcat(path, brn->brn_deviname);
5107 				log_and_free_brevq(path, brn->brn_child);
5108 			}
5109 
5110 			if (prev_brn)
5111 				prev_brn->brn_sibling = next_brn;
5112 			else
5113 				*brevqp = next_brn;
5114 
5115 			kmem_free(brn->brn_deviname,
5116 			    strlen(brn->brn_deviname) + 1);
5117 			kmem_free(brn, sizeof (*brn));
5118 		} else {
5119 			/*
5120 			 * Free up the outstanding branch remove events
5121 			 * queued on brn->brn_child since brn->brn_child
5122 			 * itself is eligible for branch remove event.
5123 			 */
5124 			if (brn->brn_child) {
5125 				free_brevq(brn->brn_child);
5126 				brn->brn_child = NULL;
5127 			}
5128 			prev_brn = brn;
5129 		}
5130 	}
5131 
5132 	ndi_devi_exit(dip, circ);
5133 	kmem_free(path, MAXPATHLEN);
5134 }
5135 
5136 static int
5137 need_remove_event(dev_info_t *dip, int flags)
5138 {
5139 	if ((flags & (NDI_NO_EVENT | NDI_AUTODETACH)) == 0 &&
5140 	    (flags & (NDI_DEVI_OFFLINE | NDI_UNCONFIG | NDI_DEVI_REMOVE)) &&
5141 	    !(DEVI_EVREMOVE(dip)))
5142 		return (1);
5143 	else
5144 		return (0);
5145 }
5146 
5147 /*
5148  * Unconfigure children/descendants of the dip.
5149  *
5150  * If the operation involves a branch event NDI_BRANCH_EVENT_OP is set
5151  * through out the unconfiguration. On successful return *brevqp is set to
5152  * a queue of dip's child devinames for which branch remove events need
5153  * to be generated.
5154  */
5155 static int
5156 devi_unconfig_branch(dev_info_t *dip, dev_info_t **dipp, int flags,
5157     struct brevq_node **brevqp)
5158 {
5159 	int rval;
5160 
5161 	*brevqp = NULL;
5162 
5163 	if ((!(flags & NDI_BRANCH_EVENT_OP)) && need_remove_event(dip, flags))
5164 		flags |= NDI_BRANCH_EVENT_OP;
5165 
5166 	if (flags & NDI_BRANCH_EVENT_OP) {
5167 		rval = devi_unconfig_common(dip, dipp, flags, DDI_MAJOR_T_NONE,
5168 		    brevqp);
5169 
5170 		if (rval != NDI_SUCCESS && (*brevqp)) {
5171 			log_and_free_brevq_dip(dip, *brevqp);
5172 			*brevqp = NULL;
5173 		}
5174 	} else
5175 		rval = devi_unconfig_common(dip, dipp, flags, DDI_MAJOR_T_NONE,
5176 		    NULL);
5177 
5178 	return (rval);
5179 }
5180 
5181 /*
5182  * If the dip is already bound to a driver transition to DS_INITIALIZED
5183  * in order to generate an event in the case where the node was left in
5184  * DS_BOUND state since boot (never got attached) and the node is now
5185  * being offlined.
5186  */
5187 static void
5188 init_bound_node_ev(dev_info_t *pdip, dev_info_t *dip, int flags)
5189 {
5190 	if (need_remove_event(dip, flags) &&
5191 	    i_ddi_node_state(dip) == DS_BOUND &&
5192 	    i_ddi_devi_attached(pdip) && !DEVI_IS_DEVICE_OFFLINE(dip))
5193 		(void) ddi_initchild(pdip, dip);
5194 }
5195 
5196 /*
5197  * attach a node/branch with parent already held busy
5198  */
5199 static int
5200 devi_attach_node(dev_info_t *dip, uint_t flags)
5201 {
5202 	dev_info_t *pdip = ddi_get_parent(dip);
5203 
5204 	ASSERT(pdip && DEVI_BUSY_OWNED(pdip));
5205 
5206 	mutex_enter(&(DEVI(dip)->devi_lock));
5207 	if (flags & NDI_DEVI_ONLINE) {
5208 		if (!i_ddi_devi_attached(dip))
5209 			DEVI_SET_REPORT(dip);
5210 		DEVI_SET_DEVICE_ONLINE(dip);
5211 	}
5212 	if (DEVI_IS_DEVICE_OFFLINE(dip)) {
5213 		mutex_exit(&(DEVI(dip)->devi_lock));
5214 		return (NDI_FAILURE);
5215 	}
5216 	mutex_exit(&(DEVI(dip)->devi_lock));
5217 
5218 	if (i_ddi_attachchild(dip) != DDI_SUCCESS) {
5219 		mutex_enter(&(DEVI(dip)->devi_lock));
5220 		DEVI_SET_EVUNINIT(dip);
5221 		mutex_exit(&(DEVI(dip)->devi_lock));
5222 
5223 		if (ndi_dev_is_persistent_node(dip))
5224 			(void) ddi_uninitchild(dip);
5225 		else {
5226 			/*
5227 			 * Delete .conf nodes and nodes that are not
5228 			 * well formed.
5229 			 */
5230 			(void) ddi_remove_child(dip, 0);
5231 		}
5232 		return (NDI_FAILURE);
5233 	}
5234 
5235 	i_ndi_devi_report_status_change(dip, NULL);
5236 
5237 	/*
5238 	 * log an event, but not during devfs lookups in which case
5239 	 * NDI_NO_EVENT is set.
5240 	 */
5241 	if ((flags & NDI_NO_EVENT) == 0 && !(DEVI_EVADD(dip))) {
5242 		(void) i_log_devfs_add_devinfo(dip, flags);
5243 
5244 		mutex_enter(&(DEVI(dip)->devi_lock));
5245 		DEVI_SET_EVADD(dip);
5246 		mutex_exit(&(DEVI(dip)->devi_lock));
5247 	} else if (!(flags & NDI_NO_EVENT_STATE_CHNG)) {
5248 		mutex_enter(&(DEVI(dip)->devi_lock));
5249 		DEVI_SET_EVADD(dip);
5250 		mutex_exit(&(DEVI(dip)->devi_lock));
5251 	}
5252 
5253 	return (NDI_SUCCESS);
5254 }
5255 
5256 /* internal function to config immediate children */
5257 static int
5258 config_immediate_children(dev_info_t *pdip, uint_t flags, major_t major)
5259 {
5260 	dev_info_t	*child, *next;
5261 	int		circ;
5262 
5263 	ASSERT(i_ddi_devi_attached(pdip));
5264 
5265 	if (!NEXUS_DRV(ddi_get_driver(pdip)))
5266 		return (NDI_SUCCESS);
5267 
5268 	NDI_CONFIG_DEBUG((CE_CONT,
5269 	    "config_immediate_children: %s%d (%p), flags=%x\n",
5270 	    ddi_driver_name(pdip), ddi_get_instance(pdip),
5271 	    (void *)pdip, flags));
5272 
5273 	ndi_devi_enter(pdip, &circ);
5274 
5275 	if (flags & NDI_CONFIG_REPROBE) {
5276 		mutex_enter(&DEVI(pdip)->devi_lock);
5277 		DEVI(pdip)->devi_flags &= ~DEVI_MADE_CHILDREN;
5278 		mutex_exit(&DEVI(pdip)->devi_lock);
5279 	}
5280 	(void) i_ndi_make_spec_children(pdip, flags);
5281 	i_ndi_init_hw_children(pdip, flags);
5282 
5283 	child = ddi_get_child(pdip);
5284 	while (child) {
5285 		/* NOTE: devi_attach_node() may remove the dip */
5286 		next = ddi_get_next_sibling(child);
5287 
5288 		/*
5289 		 * Configure all nexus nodes or leaf nodes with
5290 		 * matching driver major
5291 		 */
5292 		if ((major == DDI_MAJOR_T_NONE) ||
5293 		    (major == ddi_driver_major(child)) ||
5294 		    ((flags & NDI_CONFIG) && (is_leaf_node(child) == 0)))
5295 			(void) devi_attach_node(child, flags);
5296 		child = next;
5297 	}
5298 
5299 	ndi_devi_exit(pdip, circ);
5300 
5301 	return (NDI_SUCCESS);
5302 }
5303 
5304 /* internal function to config grand children */
5305 static int
5306 config_grand_children(dev_info_t *pdip, uint_t flags, major_t major)
5307 {
5308 	struct mt_config_handle *hdl;
5309 
5310 	/* multi-threaded configuration of child nexus */
5311 	hdl = mt_config_init(pdip, NULL, flags, major, MT_CONFIG_OP, NULL);
5312 	mt_config_children(hdl);
5313 
5314 	return (mt_config_fini(hdl));	/* wait for threads to exit */
5315 }
5316 
5317 /*
5318  * Common function for device tree configuration,
5319  * either BUS_CONFIG_ALL or BUS_CONFIG_DRIVER.
5320  * The NDI_CONFIG flag causes recursive configuration of
5321  * grandchildren, devfs usage should not recurse.
5322  */
5323 static int
5324 devi_config_common(dev_info_t *dip, int flags, major_t major)
5325 {
5326 	int error;
5327 	int (*f)();
5328 
5329 	if (!i_ddi_devi_attached(dip))
5330 		return (NDI_FAILURE);
5331 
5332 	if (pm_pre_config(dip, NULL) != DDI_SUCCESS)
5333 		return (NDI_FAILURE);
5334 
5335 	if ((DEVI(dip)->devi_ops->devo_bus_ops == NULL) ||
5336 	    (DEVI(dip)->devi_ops->devo_bus_ops->busops_rev < BUSO_REV_5) ||
5337 	    (f = DEVI(dip)->devi_ops->devo_bus_ops->bus_config) == NULL) {
5338 		error = config_immediate_children(dip, flags, major);
5339 	} else {
5340 		/* call bus_config entry point */
5341 		ddi_bus_config_op_t bus_op = (major == DDI_MAJOR_T_NONE) ?
5342 		    BUS_CONFIG_ALL : BUS_CONFIG_DRIVER;
5343 		error = (*f)(dip,
5344 		    flags, bus_op, (void *)(uintptr_t)major, NULL, 0);
5345 	}
5346 
5347 	if (error) {
5348 		pm_post_config(dip, NULL);
5349 		return (error);
5350 	}
5351 
5352 	/*
5353 	 * Some callers, notably SCSI, need to mark the devfs cache
5354 	 * to be rebuilt together with the config operation.
5355 	 */
5356 	if (flags & NDI_DEVFS_CLEAN)
5357 		(void) devfs_clean(dip, NULL, 0);
5358 
5359 	if (flags & NDI_CONFIG)
5360 		(void) config_grand_children(dip, flags, major);
5361 
5362 	pm_post_config(dip, NULL);
5363 
5364 	return (NDI_SUCCESS);
5365 }
5366 
5367 /*
5368  * Framework entry point for BUS_CONFIG_ALL
5369  */
5370 int
5371 ndi_devi_config(dev_info_t *dip, int flags)
5372 {
5373 	NDI_CONFIG_DEBUG((CE_CONT,
5374 	    "ndi_devi_config: par = %s%d (%p), flags = 0x%x\n",
5375 	    ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip, flags));
5376 
5377 	return (devi_config_common(dip, flags, DDI_MAJOR_T_NONE));
5378 }
5379 
5380 /*
5381  * Framework entry point for BUS_CONFIG_DRIVER, bound to major
5382  */
5383 int
5384 ndi_devi_config_driver(dev_info_t *dip, int flags, major_t major)
5385 {
5386 	/* don't abuse this function */
5387 	ASSERT(major != DDI_MAJOR_T_NONE);
5388 
5389 	NDI_CONFIG_DEBUG((CE_CONT,
5390 	    "ndi_devi_config_driver: par = %s%d (%p), flags = 0x%x\n",
5391 	    ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip, flags));
5392 
5393 	return (devi_config_common(dip, flags, major));
5394 }
5395 
5396 /*
5397  * Called by nexus drivers to configure its children.
5398  */
5399 static int
5400 devi_config_one(dev_info_t *pdip, char *devnm, dev_info_t **cdipp,
5401     uint_t flags, clock_t timeout)
5402 {
5403 	dev_info_t	*vdip = NULL;
5404 	char		*drivername = NULL;
5405 	int		find_by_addr = 0;
5406 	char		*name, *addr;
5407 	int		v_circ, p_circ;
5408 	clock_t		end_time;	/* 60 sec */
5409 	int		probed;
5410 	dev_info_t	*cdip;
5411 	mdi_pathinfo_t	*cpip;
5412 
5413 	*cdipp = NULL;
5414 
5415 	if (!NEXUS_DRV(ddi_get_driver(pdip)))
5416 		return (NDI_FAILURE);
5417 
5418 	/* split name into "name@addr" parts */
5419 	i_ddi_parse_name(devnm, &name, &addr, NULL);
5420 
5421 	/*
5422 	 * If the nexus is a pHCI and we are not processing a pHCI from
5423 	 * mdi bus_config code then we need to know the vHCI.
5424 	 */
5425 	if (MDI_PHCI(pdip))
5426 		vdip = mdi_devi_get_vdip(pdip);
5427 
5428 	/*
5429 	 * We may have a genericname on a system that creates drivername
5430 	 * nodes (from .conf files).  Find the drivername by nodeid. If we
5431 	 * can't find a node with devnm as the node name then we search by
5432 	 * drivername.	This allows an implementation to supply a genericly
5433 	 * named boot path (disk) and locate drivename nodes (sd).  The
5434 	 * NDI_PROMNAME flag does not apply to /devices/pseudo paths.
5435 	 */
5436 	if ((flags & NDI_PROMNAME) && (pdip != pseudo_dip)) {
5437 		drivername = child_path_to_driver(pdip, name, addr);
5438 		find_by_addr = 1;
5439 	}
5440 
5441 	/*
5442 	 * Determine end_time: This routine should *not* be called with a
5443 	 * constant non-zero timeout argument, the caller should be adjusting
5444 	 * the timeout argument relative to when it *started* its asynchronous
5445 	 * enumeration.
5446 	 */
5447 	if (timeout > 0)
5448 		end_time = ddi_get_lbolt() + timeout;
5449 
5450 	for (;;) {
5451 		/*
5452 		 * For pHCI, enter (vHCI, pHCI) and search for pathinfo/client
5453 		 * child - break out of for(;;) loop if child found.
5454 		 * NOTE: Lock order for ndi_devi_enter is (vHCI, pHCI).
5455 		 */
5456 		if (vdip) {
5457 			/* use mdi_devi_enter ordering */
5458 			ndi_devi_enter(vdip, &v_circ);
5459 			ndi_devi_enter(pdip, &p_circ);
5460 			cpip = mdi_pi_find(pdip, NULL, addr);
5461 			cdip = mdi_pi_get_client(cpip);
5462 			if (cdip)
5463 				break;
5464 		} else
5465 			ndi_devi_enter(pdip, &p_circ);
5466 
5467 		/*
5468 		 * When not a  vHCI or not all pHCI devices are required to
5469 		 * enumerated under the vHCI (NDI_MDI_FALLBACK) search for
5470 		 * devinfo child.
5471 		 */
5472 		if ((vdip == NULL) || (flags & NDI_MDI_FALLBACK)) {
5473 			/* determine if .conf nodes already built */
5474 			probed = (DEVI(pdip)->devi_flags & DEVI_MADE_CHILDREN);
5475 
5476 			/*
5477 			 * Search for child by name, if not found then search
5478 			 * for a node bound to the drivername driver with the
5479 			 * specified "@addr". Break out of for(;;) loop if
5480 			 * child found.  To support path-oriented aliases
5481 			 * binding on boot-device, we do a search_by_addr too.
5482 			 */
5483 again:			(void) i_ndi_make_spec_children(pdip, flags);
5484 			cdip = find_child_by_name(pdip, name, addr);
5485 			if ((cdip == NULL) && drivername)
5486 				cdip = find_child_by_driver(pdip,
5487 				    drivername, addr);
5488 			if ((cdip == NULL) && find_by_addr)
5489 				cdip = find_child_by_addr(pdip, addr);
5490 			if (cdip)
5491 				break;
5492 
5493 			/*
5494 			 * determine if we should reenumerate .conf nodes
5495 			 * and look for child again.
5496 			 */
5497 			if (probed &&
5498 			    i_ddi_io_initialized() &&
5499 			    (flags & NDI_CONFIG_REPROBE) &&
5500 			    ((timeout <= 0) || (ddi_get_lbolt() >= end_time))) {
5501 				probed = 0;
5502 				mutex_enter(&DEVI(pdip)->devi_lock);
5503 				DEVI(pdip)->devi_flags &= ~DEVI_MADE_CHILDREN;
5504 				mutex_exit(&DEVI(pdip)->devi_lock);
5505 				goto again;
5506 			}
5507 		}
5508 
5509 		/* break out of for(;;) if time expired */
5510 		if ((timeout <= 0) || (ddi_get_lbolt() >= end_time))
5511 			break;
5512 
5513 		/*
5514 		 * Child not found, exit and wait for asynchronous enumeration
5515 		 * to add child (or timeout). The addition of a new child (vhci
5516 		 * or phci) requires the asynchronous enumeration thread to
5517 		 * ndi_devi_enter/ndi_devi_exit. This exit will signal devi_cv
5518 		 * and cause us to return from ndi_devi_exit_and_wait, after
5519 		 * which we loop and search for the requested child again.
5520 		 */
5521 		NDI_DEBUG(flags, (CE_CONT,
5522 		    "%s%d: waiting for child %s@%s, timeout %ld",
5523 		    ddi_driver_name(pdip), ddi_get_instance(pdip),
5524 		    name, addr, timeout));
5525 		if (vdip) {
5526 			/*
5527 			 * Mark vHCI for pHCI ndi_devi_exit broadcast.
5528 			 */
5529 			mutex_enter(&DEVI(vdip)->devi_lock);
5530 			DEVI(vdip)->devi_flags |=
5531 			    DEVI_PHCI_SIGNALS_VHCI;
5532 			mutex_exit(&DEVI(vdip)->devi_lock);
5533 			ndi_devi_exit(pdip, p_circ);
5534 
5535 			/*
5536 			 * NB: There is a small race window from above
5537 			 * ndi_devi_exit() of pdip to cv_wait() in
5538 			 * ndi_devi_exit_and_wait() which can result in
5539 			 * not immediately finding a new pHCI child
5540 			 * of a pHCI that uses NDI_MDI_FAILBACK.
5541 			 */
5542 			ndi_devi_exit_and_wait(vdip, v_circ, end_time);
5543 		} else {
5544 			ndi_devi_exit_and_wait(pdip, p_circ, end_time);
5545 		}
5546 	}
5547 
5548 	/* done with paddr, fixup i_ddi_parse_name '@'->'\0' change */
5549 	if (addr && *addr != '\0')
5550 		*(addr - 1) = '@';
5551 
5552 	/* attach and hold the child, returning pointer to child */
5553 	if (cdip && (devi_attach_node(cdip, flags) == NDI_SUCCESS)) {
5554 		ndi_hold_devi(cdip);
5555 		*cdipp = cdip;
5556 	}
5557 
5558 	ndi_devi_exit(pdip, p_circ);
5559 	if (vdip)
5560 		ndi_devi_exit(vdip, v_circ);
5561 	return (*cdipp ? NDI_SUCCESS : NDI_FAILURE);
5562 }
5563 
5564 /*
5565  * Enumerate and attach a child specified by name 'devnm'.
5566  * Called by devfs lookup and DR to perform a BUS_CONFIG_ONE.
5567  * Note: devfs does not make use of NDI_CONFIG to configure
5568  * an entire branch.
5569  */
5570 int
5571 ndi_devi_config_one(dev_info_t *pdip, char *devnm, dev_info_t **dipp, int flags)
5572 {
5573 	int error;
5574 	int (*f)();
5575 	char *nmdup;
5576 	int duplen;
5577 	int branch_event = 0;
5578 
5579 	ASSERT(pdip);
5580 	ASSERT(devnm);
5581 	ASSERT(dipp);
5582 	ASSERT(i_ddi_devi_attached(pdip));
5583 
5584 	NDI_CONFIG_DEBUG((CE_CONT,
5585 	    "ndi_devi_config_one: par = %s%d (%p), child = %s\n",
5586 	    ddi_driver_name(pdip), ddi_get_instance(pdip),
5587 	    (void *)pdip, devnm));
5588 
5589 	*dipp = NULL;
5590 
5591 	if (pm_pre_config(pdip, devnm) != DDI_SUCCESS) {
5592 		cmn_err(CE_WARN, "preconfig failed: %s", devnm);
5593 		return (NDI_FAILURE);
5594 	}
5595 
5596 	if ((flags & (NDI_NO_EVENT | NDI_BRANCH_EVENT_OP)) == 0 &&
5597 	    (flags & NDI_CONFIG)) {
5598 		flags |= NDI_BRANCH_EVENT_OP;
5599 		branch_event = 1;
5600 	}
5601 
5602 	nmdup = strdup(devnm);
5603 	duplen = strlen(devnm) + 1;
5604 
5605 	if ((DEVI(pdip)->devi_ops->devo_bus_ops == NULL) ||
5606 	    (DEVI(pdip)->devi_ops->devo_bus_ops->busops_rev < BUSO_REV_5) ||
5607 	    (f = DEVI(pdip)->devi_ops->devo_bus_ops->bus_config) == NULL) {
5608 		error = devi_config_one(pdip, devnm, dipp, flags, 0);
5609 	} else {
5610 		/* call bus_config entry point */
5611 		error = (*f)(pdip, flags, BUS_CONFIG_ONE, (void *)devnm, dipp);
5612 	}
5613 
5614 	if (error) {
5615 		*dipp = NULL;
5616 	}
5617 
5618 	/*
5619 	 * if we fail to lookup and this could be an alias, lookup currdip
5620 	 * To prevent recursive lookups into the same hash table, only
5621 	 * do the currdip lookups once the hash table init is complete.
5622 	 * Use tsd so that redirection doesn't recurse
5623 	 */
5624 	if (error) {
5625 		char *alias = kmem_alloc(MAXPATHLEN, KM_NOSLEEP);
5626 		if (alias == NULL) {
5627 			ddi_err(DER_PANIC, pdip, "alias alloc failed: %s",
5628 			    nmdup);
5629 		}
5630 		(void) ddi_pathname(pdip, alias);
5631 		(void) strlcat(alias, "/", MAXPATHLEN);
5632 		(void) strlcat(alias, nmdup, MAXPATHLEN);
5633 
5634 		*dipp = ddi_alias_redirect(alias);
5635 		error = (*dipp ? NDI_SUCCESS : NDI_FAILURE);
5636 
5637 		kmem_free(alias, MAXPATHLEN);
5638 	}
5639 	kmem_free(nmdup, duplen);
5640 
5641 	if (error || !(flags & NDI_CONFIG)) {
5642 		pm_post_config(pdip, devnm);
5643 		return (error);
5644 	}
5645 
5646 	/*
5647 	 * DR usage (i.e. call with NDI_CONFIG) recursively configures
5648 	 * grandchildren, performing a BUS_CONFIG_ALL from the node attached
5649 	 * by the BUS_CONFIG_ONE.
5650 	 */
5651 	ASSERT(*dipp);
5652 	error = devi_config_common(*dipp, flags, DDI_MAJOR_T_NONE);
5653 
5654 	pm_post_config(pdip, devnm);
5655 
5656 	if (branch_event)
5657 		(void) i_log_devfs_branch_add(*dipp);
5658 
5659 	return (error);
5660 }
5661 
5662 /*
5663  * Enumerate and attach a child specified by name 'devnm'.
5664  * Called during configure the OBP options. This configures
5665  * only one node.
5666  */
5667 static int
5668 ndi_devi_config_obp_args(dev_info_t *parent, char *devnm,
5669     dev_info_t **childp, int flags)
5670 {
5671 	int error;
5672 	int (*f)();
5673 
5674 	ASSERT(childp);
5675 	ASSERT(i_ddi_devi_attached(parent));
5676 
5677 	NDI_CONFIG_DEBUG((CE_CONT, "ndi_devi_config_obp_args: "
5678 	    "par = %s%d (%p), child = %s\n", ddi_driver_name(parent),
5679 	    ddi_get_instance(parent), (void *)parent, devnm));
5680 
5681 	if ((DEVI(parent)->devi_ops->devo_bus_ops == NULL) ||
5682 	    (DEVI(parent)->devi_ops->devo_bus_ops->busops_rev < BUSO_REV_5) ||
5683 	    (f = DEVI(parent)->devi_ops->devo_bus_ops->bus_config) == NULL) {
5684 		error = NDI_FAILURE;
5685 	} else {
5686 		/* call bus_config entry point */
5687 		error = (*f)(parent, flags,
5688 		    BUS_CONFIG_OBP_ARGS, (void *)devnm, childp);
5689 	}
5690 	return (error);
5691 }
5692 
5693 /*
5694  * Pay attention, the following is a bit tricky:
5695  * There are three possible cases when constraints are applied
5696  *
5697  *	- A constraint is applied and the offline is disallowed.
5698  *	  Simply return failure and block the offline
5699  *
5700  *	- A constraint is applied and the offline is allowed.
5701  *	  Mark the dip as having passed the constraint and allow
5702  *	  offline to proceed.
5703  *
5704  *	- A constraint is not applied. Allow the offline to proceed for now.
5705  *
5706  * In the latter two cases we allow the offline to proceed. If the
5707  * offline succeeds (no users) everything is fine. It is ok for an unused
5708  * device to be offlined even if no constraints were imposed on the offline.
5709  * If the offline fails because there are users, we look at the constraint
5710  * flag on the dip. If the constraint flag is set (implying that it passed
5711  * a constraint) we allow the dip to be retired. If not, we don't allow
5712  * the retire. This ensures that we don't allow unconstrained retire.
5713  */
5714 int
5715 e_ddi_offline_notify(dev_info_t *dip)
5716 {
5717 	int retval;
5718 	int constraint;
5719 	int failure;
5720 
5721 	RIO_VERBOSE((CE_NOTE, "e_ddi_offline_notify(): entered: dip=%p",
5722 	    (void *) dip));
5723 
5724 	constraint = 0;
5725 	failure = 0;
5726 
5727 	/*
5728 	 * Start with userland constraints first - applied via device contracts
5729 	 */
5730 	retval = contract_device_offline(dip, DDI_DEV_T_ANY, 0);
5731 	switch (retval) {
5732 	case CT_NACK:
5733 		RIO_DEBUG((CE_NOTE, "Received NACK for dip=%p", (void *)dip));
5734 		failure = 1;
5735 		goto out;
5736 	case CT_ACK:
5737 		constraint = 1;
5738 		RIO_DEBUG((CE_NOTE, "Received ACK for dip=%p", (void *)dip));
5739 		break;
5740 	case CT_NONE:
5741 		/* no contracts */
5742 		RIO_DEBUG((CE_NOTE, "No contracts on dip=%p", (void *)dip));
5743 		break;
5744 	default:
5745 		ASSERT(retval == CT_NONE);
5746 	}
5747 
5748 	/*
5749 	 * Next, use LDI to impose kernel constraints
5750 	 */
5751 	retval = ldi_invoke_notify(dip, DDI_DEV_T_ANY, 0, LDI_EV_OFFLINE, NULL);
5752 	switch (retval) {
5753 	case LDI_EV_FAILURE:
5754 		contract_device_negend(dip, DDI_DEV_T_ANY, 0, CT_EV_FAILURE);
5755 		RIO_DEBUG((CE_NOTE, "LDI callback failed on dip=%p",
5756 		    (void *)dip));
5757 		failure = 1;
5758 		goto out;
5759 	case LDI_EV_SUCCESS:
5760 		constraint = 1;
5761 		RIO_DEBUG((CE_NOTE, "LDI callback success on dip=%p",
5762 		    (void *)dip));
5763 		break;
5764 	case LDI_EV_NONE:
5765 		/* no matching LDI callbacks */
5766 		RIO_DEBUG((CE_NOTE, "No LDI callbacks for dip=%p",
5767 		    (void *)dip));
5768 		break;
5769 	default:
5770 		ASSERT(retval == LDI_EV_NONE);
5771 	}
5772 
5773 out:
5774 	mutex_enter(&(DEVI(dip)->devi_lock));
5775 	if ((DEVI(dip)->devi_flags & DEVI_RETIRING) && failure) {
5776 		RIO_VERBOSE((CE_NOTE, "e_ddi_offline_notify(): setting "
5777 		    "BLOCKED flag. dip=%p", (void *)dip));
5778 		DEVI(dip)->devi_flags |= DEVI_R_BLOCKED;
5779 		if (DEVI(dip)->devi_flags & DEVI_R_CONSTRAINT) {
5780 			RIO_VERBOSE((CE_NOTE, "e_ddi_offline_notify(): "
5781 			    "blocked. clearing RCM CONSTRAINT flag. dip=%p",
5782 			    (void *)dip));
5783 			DEVI(dip)->devi_flags &= ~DEVI_R_CONSTRAINT;
5784 		}
5785 	} else if ((DEVI(dip)->devi_flags & DEVI_RETIRING) && constraint) {
5786 		RIO_VERBOSE((CE_NOTE, "e_ddi_offline_notify(): setting "
5787 		    "CONSTRAINT flag. dip=%p", (void *)dip));
5788 		DEVI(dip)->devi_flags |= DEVI_R_CONSTRAINT;
5789 	} else if ((DEVI(dip)->devi_flags & DEVI_RETIRING) &&
5790 	    ((DEVI(dip)->devi_ops != NULL &&
5791 	    DEVI(dip)->devi_ops->devo_bus_ops != NULL) ||
5792 	    DEVI(dip)->devi_ref == 0)) {
5793 		/* also allow retire if nexus or if device is not in use */
5794 		RIO_VERBOSE((CE_NOTE, "e_ddi_offline_notify(): device not in "
5795 		    "use. Setting CONSTRAINT flag. dip=%p", (void *)dip));
5796 		DEVI(dip)->devi_flags |= DEVI_R_CONSTRAINT;
5797 	} else {
5798 		/*
5799 		 * Note: We cannot ASSERT here that DEVI_R_CONSTRAINT is
5800 		 * not set, since other sources (such as RCM) may have
5801 		 * set the flag.
5802 		 */
5803 		RIO_VERBOSE((CE_NOTE, "e_ddi_offline_notify(): not setting "
5804 		    "constraint flag. dip=%p", (void *)dip));
5805 	}
5806 	mutex_exit(&(DEVI(dip)->devi_lock));
5807 
5808 
5809 	RIO_VERBOSE((CE_NOTE, "e_ddi_offline_notify(): exit: dip=%p",
5810 	    (void *) dip));
5811 
5812 	return (failure ? DDI_FAILURE : DDI_SUCCESS);
5813 }
5814 
5815 void
5816 e_ddi_offline_finalize(dev_info_t *dip, int result)
5817 {
5818 	RIO_DEBUG((CE_NOTE, "e_ddi_offline_finalize(): entry: result=%s, "
5819 	    "dip=%p", result == DDI_SUCCESS ? "SUCCESS" : "FAILURE",
5820 	    (void *)dip));
5821 
5822 	contract_device_negend(dip, DDI_DEV_T_ANY, 0,  result == DDI_SUCCESS ?
5823 	    CT_EV_SUCCESS : CT_EV_FAILURE);
5824 
5825 	ldi_invoke_finalize(dip, DDI_DEV_T_ANY, 0,
5826 	    LDI_EV_OFFLINE, result == DDI_SUCCESS ?
5827 	    LDI_EV_SUCCESS : LDI_EV_FAILURE, NULL);
5828 
5829 	RIO_VERBOSE((CE_NOTE, "e_ddi_offline_finalize(): exit: dip=%p",
5830 	    (void *)dip));
5831 }
5832 
5833 void
5834 e_ddi_degrade_finalize(dev_info_t *dip)
5835 {
5836 	RIO_DEBUG((CE_NOTE, "e_ddi_degrade_finalize(): entry: "
5837 	    "result always = DDI_SUCCESS, dip=%p", (void *)dip));
5838 
5839 	contract_device_degrade(dip, DDI_DEV_T_ANY, 0);
5840 	contract_device_negend(dip, DDI_DEV_T_ANY, 0, CT_EV_SUCCESS);
5841 
5842 	ldi_invoke_finalize(dip, DDI_DEV_T_ANY, 0, LDI_EV_DEGRADE,
5843 	    LDI_EV_SUCCESS, NULL);
5844 
5845 	RIO_VERBOSE((CE_NOTE, "e_ddi_degrade_finalize(): exit: dip=%p",
5846 	    (void *)dip));
5847 }
5848 
5849 void
5850 e_ddi_undegrade_finalize(dev_info_t *dip)
5851 {
5852 	RIO_DEBUG((CE_NOTE, "e_ddi_undegrade_finalize(): entry: "
5853 	    "result always = DDI_SUCCESS, dip=%p", (void *)dip));
5854 
5855 	contract_device_undegrade(dip, DDI_DEV_T_ANY, 0);
5856 	contract_device_negend(dip, DDI_DEV_T_ANY, 0, CT_EV_SUCCESS);
5857 
5858 	RIO_VERBOSE((CE_NOTE, "e_ddi_undegrade_finalize(): exit: dip=%p",
5859 	    (void *)dip));
5860 }
5861 
5862 /*
5863  * detach a node with parent already held busy
5864  */
5865 static int
5866 devi_detach_node(dev_info_t *dip, uint_t flags)
5867 {
5868 	dev_info_t *pdip = ddi_get_parent(dip);
5869 	int ret = NDI_SUCCESS;
5870 	ddi_eventcookie_t cookie;
5871 	char *path = NULL;
5872 	char *class = NULL;
5873 	char *driver = NULL;
5874 	int instance = -1;
5875 	int post_event = 0;
5876 
5877 	ASSERT(pdip && DEVI_BUSY_OWNED(pdip));
5878 
5879 	/*
5880 	 * Invoke notify if offlining
5881 	 */
5882 	if (flags & NDI_DEVI_OFFLINE) {
5883 		RIO_DEBUG((CE_NOTE, "devi_detach_node: offlining dip=%p",
5884 		    (void *)dip));
5885 		if (e_ddi_offline_notify(dip) != DDI_SUCCESS) {
5886 			RIO_DEBUG((CE_NOTE, "devi_detach_node: offline NACKed"
5887 			    "dip=%p", (void *)dip));
5888 			return (NDI_FAILURE);
5889 		}
5890 	}
5891 
5892 	if (flags & NDI_POST_EVENT) {
5893 		if (i_ddi_devi_attached(pdip)) {
5894 			if (ddi_get_eventcookie(dip, DDI_DEVI_REMOVE_EVENT,
5895 			    &cookie) == NDI_SUCCESS)
5896 				(void) ndi_post_event(dip, dip, cookie, NULL);
5897 		}
5898 	}
5899 
5900 	if (i_ddi_detachchild(dip, flags) != DDI_SUCCESS) {
5901 		if (flags & NDI_DEVI_OFFLINE) {
5902 			RIO_DEBUG((CE_NOTE, "devi_detach_node: offline failed."
5903 			    " Calling e_ddi_offline_finalize with result=%d. "
5904 			    "dip=%p", DDI_FAILURE, (void *)dip));
5905 			e_ddi_offline_finalize(dip, DDI_FAILURE);
5906 		}
5907 		return (NDI_FAILURE);
5908 	}
5909 
5910 	if (flags & NDI_DEVI_OFFLINE) {
5911 		RIO_DEBUG((CE_NOTE, "devi_detach_node: offline succeeded."
5912 		    " Calling e_ddi_offline_finalize with result=%d, "
5913 		    "dip=%p", DDI_SUCCESS, (void *)dip));
5914 		e_ddi_offline_finalize(dip, DDI_SUCCESS);
5915 	}
5916 
5917 	if (flags & NDI_AUTODETACH)
5918 		return (NDI_SUCCESS);
5919 
5920 	/*
5921 	 * For DR, even bound nodes may need to have offline
5922 	 * flag set.
5923 	 */
5924 	if (flags & NDI_DEVI_OFFLINE) {
5925 		mutex_enter(&(DEVI(dip)->devi_lock));
5926 		DEVI_SET_DEVICE_OFFLINE(dip);
5927 		mutex_exit(&(DEVI(dip)->devi_lock));
5928 	}
5929 
5930 	if (i_ddi_node_state(dip) == DS_INITIALIZED) {
5931 		struct dev_info *devi = DEVI(dip);
5932 
5933 		if (devi->devi_ev_path == NULL) {
5934 			devi->devi_ev_path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
5935 			(void) ddi_pathname(dip, devi->devi_ev_path);
5936 		}
5937 		if (flags & NDI_DEVI_OFFLINE)
5938 			i_ndi_devi_report_status_change(dip,
5939 			    devi->devi_ev_path);
5940 
5941 		if (need_remove_event(dip, flags)) {
5942 			/*
5943 			 * instance and path data are lost in call to
5944 			 * ddi_uninitchild
5945 			 */
5946 			devi->devi_ev_instance = ddi_get_instance(dip);
5947 
5948 			mutex_enter(&(DEVI(dip)->devi_lock));
5949 			DEVI_SET_EVREMOVE(dip);
5950 			mutex_exit(&(DEVI(dip)->devi_lock));
5951 		}
5952 	}
5953 
5954 	if (flags & (NDI_UNCONFIG | NDI_DEVI_REMOVE)) {
5955 		ret = ddi_uninitchild(dip);
5956 		if (ret == NDI_SUCCESS) {
5957 			/*
5958 			 * Remove uninitialized pseudo nodes because
5959 			 * system props are lost and the node cannot be
5960 			 * reattached.
5961 			 */
5962 			if (!ndi_dev_is_persistent_node(dip))
5963 				flags |= NDI_DEVI_REMOVE;
5964 
5965 			if (flags & NDI_DEVI_REMOVE) {
5966 				/*
5967 				 * NOTE: If there is a consumer of LDI events,
5968 				 * ddi_uninitchild above would have failed
5969 				 * because of active devi_ref from ldi_open().
5970 				 */
5971 
5972 				if (DEVI_EVREMOVE(dip)) {
5973 					path = i_ddi_strdup(
5974 					    DEVI(dip)->devi_ev_path,
5975 					    KM_SLEEP);
5976 					class =
5977 					    i_ddi_strdup(i_ddi_devi_class(dip),
5978 					    KM_SLEEP);
5979 					driver =
5980 					    i_ddi_strdup(
5981 					    (char *)ddi_driver_name(dip),
5982 					    KM_SLEEP);
5983 					instance = DEVI(dip)->devi_ev_instance;
5984 					post_event = 1;
5985 				}
5986 
5987 				ret = ddi_remove_child(dip, 0);
5988 				if (post_event && ret == NDI_SUCCESS) {
5989 					/* Generate EC_DEVFS_DEVI_REMOVE */
5990 					(void) i_log_devfs_remove_devinfo(path,
5991 					    class, driver, instance, flags);
5992 				}
5993 			}
5994 
5995 		}
5996 	}
5997 
5998 	if (path)
5999 		strfree(path);
6000 	if (class)
6001 		strfree(class);
6002 	if (driver)
6003 		strfree(driver);
6004 
6005 	return (ret);
6006 }
6007 
6008 /*
6009  * unconfigure immediate children of bus nexus device
6010  */
6011 static int
6012 unconfig_immediate_children(
6013 	dev_info_t *dip,
6014 	dev_info_t **dipp,
6015 	int flags,
6016 	major_t major)
6017 {
6018 	int rv = NDI_SUCCESS;
6019 	int circ, vcirc;
6020 	dev_info_t *child;
6021 	dev_info_t *vdip = NULL;
6022 	dev_info_t *next;
6023 
6024 	ASSERT(dipp == NULL || *dipp == NULL);
6025 
6026 	/*
6027 	 * Scan forward to see if we will be processing a pHCI child. If we
6028 	 * have a child that is a pHCI and vHCI and pHCI are not siblings then
6029 	 * enter vHCI before parent(pHCI) to prevent deadlock with mpxio
6030 	 * Client power management operations.
6031 	 */
6032 	ndi_devi_enter(dip, &circ);
6033 	for (child = ddi_get_child(dip); child;
6034 	    child = ddi_get_next_sibling(child)) {
6035 		/* skip same nodes we skip below */
6036 		if (((major != DDI_MAJOR_T_NONE) &&
6037 		    (major != ddi_driver_major(child))) ||
6038 		    ((flags & NDI_AUTODETACH) && !is_leaf_node(child)))
6039 			continue;
6040 
6041 		if (MDI_PHCI(child)) {
6042 			vdip = mdi_devi_get_vdip(child);
6043 			/*
6044 			 * If vHCI and vHCI is not a sibling of pHCI
6045 			 * then enter in (vHCI, parent(pHCI)) order.
6046 			 */
6047 			if (vdip && (ddi_get_parent(vdip) != dip)) {
6048 				ndi_devi_exit(dip, circ);
6049 
6050 				/* use mdi_devi_enter ordering */
6051 				ndi_devi_enter(vdip, &vcirc);
6052 				ndi_devi_enter(dip, &circ);
6053 				break;
6054 			} else
6055 				vdip = NULL;
6056 		}
6057 	}
6058 
6059 	child = ddi_get_child(dip);
6060 	while (child) {
6061 		next = ddi_get_next_sibling(child);
6062 
6063 		if ((major != DDI_MAJOR_T_NONE) &&
6064 		    (major != ddi_driver_major(child))) {
6065 			child = next;
6066 			continue;
6067 		}
6068 
6069 		/* skip nexus nodes during autodetach */
6070 		if ((flags & NDI_AUTODETACH) && !is_leaf_node(child)) {
6071 			child = next;
6072 			continue;
6073 		}
6074 
6075 		if (devi_detach_node(child, flags) != NDI_SUCCESS) {
6076 			if (dipp && *dipp == NULL) {
6077 				ndi_hold_devi(child);
6078 				*dipp = child;
6079 			}
6080 			rv = NDI_FAILURE;
6081 		}
6082 
6083 		/*
6084 		 * Continue upon failure--best effort algorithm
6085 		 */
6086 		child = next;
6087 	}
6088 
6089 	ndi_devi_exit(dip, circ);
6090 	if (vdip)
6091 		ndi_devi_exit(vdip, vcirc);
6092 
6093 	return (rv);
6094 }
6095 
6096 /*
6097  * unconfigure grand children of bus nexus device
6098  */
6099 static int
6100 unconfig_grand_children(
6101 	dev_info_t *dip,
6102 	dev_info_t **dipp,
6103 	int flags,
6104 	major_t major,
6105 	struct brevq_node **brevqp)
6106 {
6107 	struct mt_config_handle *hdl;
6108 
6109 	if (brevqp)
6110 		*brevqp = NULL;
6111 
6112 	/* multi-threaded configuration of child nexus */
6113 	hdl = mt_config_init(dip, dipp, flags, major, MT_UNCONFIG_OP, brevqp);
6114 	mt_config_children(hdl);
6115 
6116 	return (mt_config_fini(hdl));	/* wait for threads to exit */
6117 }
6118 
6119 /*
6120  * Unconfigure children/descendants of the dip.
6121  *
6122  * If brevqp is not NULL, on return *brevqp is set to a queue of dip's
6123  * child devinames for which branch remove events need to be generated.
6124  */
6125 static int
6126 devi_unconfig_common(
6127 	dev_info_t *dip,
6128 	dev_info_t **dipp,
6129 	int flags,
6130 	major_t major,
6131 	struct brevq_node **brevqp)
6132 {
6133 	int rv;
6134 	int pm_cookie;
6135 	int (*f)();
6136 	ddi_bus_config_op_t bus_op;
6137 
6138 	if (dipp)
6139 		*dipp = NULL;
6140 	if (brevqp)
6141 		*brevqp = NULL;
6142 
6143 	/*
6144 	 * Power up the dip if it is powered off.  If the flag bit
6145 	 * NDI_AUTODETACH is set and the dip is not at its full power,
6146 	 * skip the rest of the branch.
6147 	 */
6148 	if (pm_pre_unconfig(dip, flags, &pm_cookie, NULL) != DDI_SUCCESS)
6149 		return ((flags & NDI_AUTODETACH) ? NDI_SUCCESS :
6150 		    NDI_FAILURE);
6151 
6152 	/*
6153 	 * Some callers, notably SCSI, need to clear out the devfs
6154 	 * cache together with the unconfig to prevent stale entries.
6155 	 */
6156 	if (flags & NDI_DEVFS_CLEAN)
6157 		(void) devfs_clean(dip, NULL, 0);
6158 
6159 	rv = unconfig_grand_children(dip, dipp, flags, major, brevqp);
6160 
6161 	if ((rv != NDI_SUCCESS) && ((flags & NDI_AUTODETACH) == 0)) {
6162 		if (brevqp && *brevqp) {
6163 			log_and_free_br_events_on_grand_children(dip, *brevqp);
6164 			free_brevq(*brevqp);
6165 			*brevqp = NULL;
6166 		}
6167 		pm_post_unconfig(dip, pm_cookie, NULL);
6168 		return (rv);
6169 	}
6170 
6171 	if (dipp && *dipp) {
6172 		ndi_rele_devi(*dipp);
6173 		*dipp = NULL;
6174 	}
6175 
6176 	/*
6177 	 * It is possible to have a detached nexus with children
6178 	 * and grandchildren (for example: a branch consisting
6179 	 * entirely of bound nodes.) Since the nexus is detached
6180 	 * the bus_unconfig entry point cannot be used to remove
6181 	 * or unconfigure the descendants.
6182 	 */
6183 	if (!i_ddi_devi_attached(dip) ||
6184 	    (DEVI(dip)->devi_ops->devo_bus_ops == NULL) ||
6185 	    (DEVI(dip)->devi_ops->devo_bus_ops->busops_rev < BUSO_REV_5) ||
6186 	    (f = DEVI(dip)->devi_ops->devo_bus_ops->bus_unconfig) == NULL) {
6187 		rv = unconfig_immediate_children(dip, dipp, flags, major);
6188 	} else {
6189 		/*
6190 		 * call bus_unconfig entry point
6191 		 * It should reset nexus flags if unconfigure succeeds.
6192 		 */
6193 		bus_op = (major == DDI_MAJOR_T_NONE) ?
6194 		    BUS_UNCONFIG_ALL : BUS_UNCONFIG_DRIVER;
6195 		rv = (*f)(dip, flags, bus_op, (void *)(uintptr_t)major);
6196 	}
6197 
6198 	pm_post_unconfig(dip, pm_cookie, NULL);
6199 
6200 	if (brevqp && *brevqp)
6201 		cleanup_br_events_on_grand_children(dip, brevqp);
6202 
6203 	return (rv);
6204 }
6205 
6206 /*
6207  * called by devfs/framework to unconfigure children bound to major
6208  * If NDI_AUTODETACH is specified, this is invoked by either the
6209  * moduninstall daemon or the modunload -i 0 command.
6210  */
6211 int
6212 ndi_devi_unconfig_driver(dev_info_t *dip, int flags, major_t major)
6213 {
6214 	NDI_CONFIG_DEBUG((CE_CONT,
6215 	    "ndi_devi_unconfig_driver: par = %s%d (%p), flags = 0x%x\n",
6216 	    ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip, flags));
6217 
6218 	return (devi_unconfig_common(dip, NULL, flags, major, NULL));
6219 }
6220 
6221 int
6222 ndi_devi_unconfig(dev_info_t *dip, int flags)
6223 {
6224 	NDI_CONFIG_DEBUG((CE_CONT,
6225 	    "ndi_devi_unconfig: par = %s%d (%p), flags = 0x%x\n",
6226 	    ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip, flags));
6227 
6228 	return (devi_unconfig_common(dip, NULL, flags, DDI_MAJOR_T_NONE, NULL));
6229 }
6230 
6231 int
6232 e_ddi_devi_unconfig(dev_info_t *dip, dev_info_t **dipp, int flags)
6233 {
6234 	NDI_CONFIG_DEBUG((CE_CONT,
6235 	    "e_ddi_devi_unconfig: par = %s%d (%p), flags = 0x%x\n",
6236 	    ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip, flags));
6237 
6238 	return (devi_unconfig_common(dip, dipp, flags, DDI_MAJOR_T_NONE, NULL));
6239 }
6240 
6241 /*
6242  * Unconfigure child by name
6243  */
6244 static int
6245 devi_unconfig_one(dev_info_t *pdip, char *devnm, int flags)
6246 {
6247 	int		rv, circ;
6248 	dev_info_t	*child;
6249 	dev_info_t	*vdip = NULL;
6250 	int		v_circ;
6251 
6252 	ndi_devi_enter(pdip, &circ);
6253 	child = ndi_devi_findchild(pdip, devnm);
6254 
6255 	/*
6256 	 * If child is pHCI and vHCI and pHCI are not siblings then enter vHCI
6257 	 * before parent(pHCI) to avoid deadlock with mpxio Client power
6258 	 * management operations.
6259 	 */
6260 	if (child && MDI_PHCI(child)) {
6261 		vdip = mdi_devi_get_vdip(child);
6262 		if (vdip && (ddi_get_parent(vdip) != pdip)) {
6263 			ndi_devi_exit(pdip, circ);
6264 
6265 			/* use mdi_devi_enter ordering */
6266 			ndi_devi_enter(vdip, &v_circ);
6267 			ndi_devi_enter(pdip, &circ);
6268 			child = ndi_devi_findchild(pdip, devnm);
6269 		} else
6270 			vdip = NULL;
6271 	}
6272 
6273 	if (child) {
6274 		rv = devi_detach_node(child, flags);
6275 	} else {
6276 		NDI_CONFIG_DEBUG((CE_CONT,
6277 		    "devi_unconfig_one: %s not found\n", devnm));
6278 		rv = NDI_SUCCESS;
6279 	}
6280 
6281 	ndi_devi_exit(pdip, circ);
6282 	if (vdip)
6283 		ndi_devi_exit(vdip, v_circ);
6284 
6285 	return (rv);
6286 }
6287 
6288 int
6289 ndi_devi_unconfig_one(
6290 	dev_info_t *pdip,
6291 	char *devnm,
6292 	dev_info_t **dipp,
6293 	int flags)
6294 {
6295 	int		(*f)();
6296 	int		circ, rv;
6297 	int		pm_cookie;
6298 	dev_info_t	*child;
6299 	dev_info_t	*vdip = NULL;
6300 	int		v_circ;
6301 	struct brevq_node *brevq = NULL;
6302 
6303 	ASSERT(i_ddi_devi_attached(pdip));
6304 
6305 	NDI_CONFIG_DEBUG((CE_CONT,
6306 	    "ndi_devi_unconfig_one: par = %s%d (%p), child = %s\n",
6307 	    ddi_driver_name(pdip), ddi_get_instance(pdip),
6308 	    (void *)pdip, devnm));
6309 
6310 	if (pm_pre_unconfig(pdip, flags, &pm_cookie, devnm) != DDI_SUCCESS)
6311 		return (NDI_FAILURE);
6312 
6313 	if (dipp)
6314 		*dipp = NULL;
6315 
6316 	ndi_devi_enter(pdip, &circ);
6317 	child = ndi_devi_findchild(pdip, devnm);
6318 
6319 	/*
6320 	 * If child is pHCI and vHCI and pHCI are not siblings then enter vHCI
6321 	 * before parent(pHCI) to avoid deadlock with mpxio Client power
6322 	 * management operations.
6323 	 */
6324 	if (child && MDI_PHCI(child)) {
6325 		vdip = mdi_devi_get_vdip(child);
6326 		if (vdip && (ddi_get_parent(vdip) != pdip)) {
6327 			ndi_devi_exit(pdip, circ);
6328 
6329 			/* use mdi_devi_enter ordering */
6330 			ndi_devi_enter(vdip, &v_circ);
6331 			ndi_devi_enter(pdip, &circ);
6332 			child = ndi_devi_findchild(pdip, devnm);
6333 		} else
6334 			vdip = NULL;
6335 	}
6336 
6337 	if (child == NULL) {
6338 		NDI_CONFIG_DEBUG((CE_CONT, "ndi_devi_unconfig_one: %s"
6339 		    " not found\n", devnm));
6340 		rv = NDI_SUCCESS;
6341 		goto out;
6342 	}
6343 
6344 	/*
6345 	 * Unconfigure children/descendants of named child
6346 	 */
6347 	rv = devi_unconfig_branch(child, dipp, flags | NDI_UNCONFIG, &brevq);
6348 	if (rv != NDI_SUCCESS)
6349 		goto out;
6350 
6351 	init_bound_node_ev(pdip, child, flags);
6352 
6353 	if ((DEVI(pdip)->devi_ops->devo_bus_ops == NULL) ||
6354 	    (DEVI(pdip)->devi_ops->devo_bus_ops->busops_rev < BUSO_REV_5) ||
6355 	    (f = DEVI(pdip)->devi_ops->devo_bus_ops->bus_unconfig) == NULL) {
6356 		rv = devi_detach_node(child, flags);
6357 	} else {
6358 		/* call bus_config entry point */
6359 		rv = (*f)(pdip, flags, BUS_UNCONFIG_ONE, (void *)devnm);
6360 	}
6361 
6362 	if (brevq) {
6363 		if (rv != NDI_SUCCESS)
6364 			log_and_free_brevq_dip(child, brevq);
6365 		else
6366 			free_brevq(brevq);
6367 	}
6368 
6369 	if (dipp && rv != NDI_SUCCESS) {
6370 		ndi_hold_devi(child);
6371 		ASSERT(*dipp == NULL);
6372 		*dipp = child;
6373 	}
6374 
6375 out:
6376 	ndi_devi_exit(pdip, circ);
6377 	if (vdip)
6378 		ndi_devi_exit(vdip, v_circ);
6379 
6380 	pm_post_unconfig(pdip, pm_cookie, devnm);
6381 
6382 	return (rv);
6383 }
6384 
6385 struct async_arg {
6386 	dev_info_t *dip;
6387 	uint_t flags;
6388 };
6389 
6390 /*
6391  * Common async handler for:
6392  *	ndi_devi_bind_driver_async
6393  *	ndi_devi_online_async
6394  */
6395 static int
6396 i_ndi_devi_async_common(dev_info_t *dip, uint_t flags, void (*func)())
6397 {
6398 	int tqflag;
6399 	int kmflag;
6400 	struct async_arg *arg;
6401 	dev_info_t *pdip = ddi_get_parent(dip);
6402 
6403 	ASSERT(pdip);
6404 	ASSERT(DEVI(pdip)->devi_taskq);
6405 	ASSERT(ndi_dev_is_persistent_node(dip));
6406 
6407 	if (flags & NDI_NOSLEEP) {
6408 		kmflag = KM_NOSLEEP;
6409 		tqflag = TQ_NOSLEEP;
6410 	} else {
6411 		kmflag = KM_SLEEP;
6412 		tqflag = TQ_SLEEP;
6413 	}
6414 
6415 	arg = kmem_alloc(sizeof (*arg), kmflag);
6416 	if (arg == NULL)
6417 		goto fail;
6418 
6419 	arg->flags = flags;
6420 	arg->dip = dip;
6421 	if (ddi_taskq_dispatch(DEVI(pdip)->devi_taskq, func, arg, tqflag) ==
6422 	    DDI_SUCCESS) {
6423 		return (NDI_SUCCESS);
6424 	}
6425 
6426 fail:
6427 	NDI_CONFIG_DEBUG((CE_CONT, "%s%d: ddi_taskq_dispatch failed",
6428 	    ddi_driver_name(pdip), ddi_get_instance(pdip)));
6429 
6430 	if (arg)
6431 		kmem_free(arg, sizeof (*arg));
6432 	return (NDI_FAILURE);
6433 }
6434 
6435 static void
6436 i_ndi_devi_bind_driver_cb(struct async_arg *arg)
6437 {
6438 	(void) ndi_devi_bind_driver(arg->dip, arg->flags);
6439 	kmem_free(arg, sizeof (*arg));
6440 }
6441 
6442 int
6443 ndi_devi_bind_driver_async(dev_info_t *dip, uint_t flags)
6444 {
6445 	return (i_ndi_devi_async_common(dip, flags,
6446 	    (void (*)())i_ndi_devi_bind_driver_cb));
6447 }
6448 
6449 /*
6450  * place the devinfo in the ONLINE state.
6451  */
6452 int
6453 ndi_devi_online(dev_info_t *dip, uint_t flags)
6454 {
6455 	int circ, rv;
6456 	dev_info_t *pdip = ddi_get_parent(dip);
6457 	int branch_event = 0;
6458 
6459 	ASSERT(pdip);
6460 
6461 	NDI_CONFIG_DEBUG((CE_CONT, "ndi_devi_online: %s%d (%p)\n",
6462 	    ddi_driver_name(dip), ddi_get_instance(dip), (void *)dip));
6463 
6464 	ndi_devi_enter(pdip, &circ);
6465 	/* bind child before merging .conf nodes */
6466 	rv = i_ndi_config_node(dip, DS_BOUND, flags);
6467 	if (rv != NDI_SUCCESS) {
6468 		ndi_devi_exit(pdip, circ);
6469 		return (rv);
6470 	}
6471 
6472 	/* merge .conf properties */
6473 	(void) i_ndi_make_spec_children(pdip, flags);
6474 
6475 	flags |= (NDI_DEVI_ONLINE | NDI_CONFIG);
6476 
6477 	if (flags & NDI_NO_EVENT) {
6478 		/*
6479 		 * Caller is specifically asking for not to generate an event.
6480 		 * Set the following flag so that devi_attach_node() don't
6481 		 * change the event state.
6482 		 */
6483 		flags |= NDI_NO_EVENT_STATE_CHNG;
6484 	}
6485 
6486 	if ((flags & (NDI_NO_EVENT | NDI_BRANCH_EVENT_OP)) == 0 &&
6487 	    ((flags & NDI_CONFIG) || DEVI_NEED_NDI_CONFIG(dip))) {
6488 		flags |= NDI_BRANCH_EVENT_OP;
6489 		branch_event = 1;
6490 	}
6491 
6492 	/*
6493 	 * devi_attach_node() may remove dip on failure
6494 	 */
6495 	if ((rv = devi_attach_node(dip, flags)) == NDI_SUCCESS) {
6496 		if ((flags & NDI_CONFIG) || DEVI_NEED_NDI_CONFIG(dip)) {
6497 			/*
6498 			 * Hold the attached dip, and exit the parent while
6499 			 * we drive configuration of children below the
6500 			 * attached dip.
6501 			 */
6502 			ndi_hold_devi(dip);
6503 			ndi_devi_exit(pdip, circ);
6504 
6505 			(void) ndi_devi_config(dip, flags);
6506 
6507 			ndi_devi_enter(pdip, &circ);
6508 			ndi_rele_devi(dip);
6509 		}
6510 
6511 		if (branch_event)
6512 			(void) i_log_devfs_branch_add(dip);
6513 	}
6514 
6515 	ndi_devi_exit(pdip, circ);
6516 
6517 	/*
6518 	 * Notify devfs that we have a new node. Devfs needs to invalidate
6519 	 * cached directory contents.
6520 	 *
6521 	 * For PCMCIA devices, it is possible the pdip is not fully
6522 	 * attached. In this case, calling back into devfs will
6523 	 * result in a loop or assertion error. Hence, the check
6524 	 * on node state.
6525 	 *
6526 	 * If we own parent lock, this is part of a branch operation.
6527 	 * We skip the devfs_clean() step because the cache invalidation
6528 	 * is done higher up in the device tree.
6529 	 */
6530 	if (rv == NDI_SUCCESS && i_ddi_devi_attached(pdip) &&
6531 	    !DEVI_BUSY_OWNED(pdip))
6532 		(void) devfs_clean(pdip, NULL, 0);
6533 	return (rv);
6534 }
6535 
6536 static void
6537 i_ndi_devi_online_cb(struct async_arg *arg)
6538 {
6539 	(void) ndi_devi_online(arg->dip, arg->flags);
6540 	kmem_free(arg, sizeof (*arg));
6541 }
6542 
6543 int
6544 ndi_devi_online_async(dev_info_t *dip, uint_t flags)
6545 {
6546 	/* mark child as need config if requested. */
6547 	if (flags & NDI_CONFIG) {
6548 		mutex_enter(&(DEVI(dip)->devi_lock));
6549 		DEVI_SET_NDI_CONFIG(dip);
6550 		mutex_exit(&(DEVI(dip)->devi_lock));
6551 	}
6552 
6553 	return (i_ndi_devi_async_common(dip, flags,
6554 	    (void (*)())i_ndi_devi_online_cb));
6555 }
6556 
6557 /*
6558  * Take a device node Offline
6559  * To take a device Offline means to detach the device instance from
6560  * the driver and prevent devfs requests from re-attaching the device
6561  * instance.
6562  *
6563  * The flag NDI_DEVI_REMOVE causes removes the device node from
6564  * the driver list and the device tree. In this case, the device
6565  * is assumed to be removed from the system.
6566  */
6567 int
6568 ndi_devi_offline(dev_info_t *dip, uint_t flags)
6569 {
6570 	int		circ, rval = 0;
6571 	dev_info_t	*pdip = ddi_get_parent(dip);
6572 	dev_info_t	*vdip = NULL;
6573 	int		v_circ;
6574 	struct brevq_node *brevq = NULL;
6575 
6576 	ASSERT(pdip);
6577 
6578 	flags |= NDI_DEVI_OFFLINE;
6579 
6580 	/*
6581 	 * If child is pHCI and vHCI and pHCI are not siblings then enter vHCI
6582 	 * before parent(pHCI) to avoid deadlock with mpxio Client power
6583 	 * management operations.
6584 	 */
6585 	if (MDI_PHCI(dip)) {
6586 		vdip = mdi_devi_get_vdip(dip);
6587 		if (vdip && (ddi_get_parent(vdip) != pdip))
6588 			ndi_devi_enter(vdip, &v_circ);
6589 		else
6590 			vdip = NULL;
6591 	}
6592 	ndi_devi_enter(pdip, &circ);
6593 
6594 	if (i_ddi_devi_attached(dip)) {
6595 		/*
6596 		 * If dip is in DS_READY state, there may be cached dv_nodes
6597 		 * referencing this dip, so we invoke devfs code path.
6598 		 * Note that we must release busy changing on pdip to
6599 		 * avoid deadlock against devfs.
6600 		 */
6601 		char *devname = kmem_alloc(MAXNAMELEN + 1, KM_SLEEP);
6602 		(void) ddi_deviname(dip, devname);
6603 
6604 		ndi_devi_exit(pdip, circ);
6605 		if (vdip)
6606 			ndi_devi_exit(vdip, v_circ);
6607 
6608 		/*
6609 		 * If we are explictly told to clean, then clean. If we own the
6610 		 * parent lock then this is part of a branch operation, and we
6611 		 * skip the devfs_clean() step.
6612 		 *
6613 		 * NOTE: A thread performing a devfs file system lookup/
6614 		 * bus_config can't call devfs_clean to unconfig without
6615 		 * causing rwlock problems in devfs. For ndi_devi_offline, this
6616 		 * means that the NDI_DEVFS_CLEAN flag is safe from ioctl code
6617 		 * or from an async hotplug thread, but is not safe from a
6618 		 * nexus driver's bus_config implementation.
6619 		 */
6620 		if ((flags & NDI_DEVFS_CLEAN) ||
6621 		    (!DEVI_BUSY_OWNED(pdip)))
6622 			(void) devfs_clean(pdip, devname + 1, DV_CLEAN_FORCE);
6623 
6624 		kmem_free(devname, MAXNAMELEN + 1);
6625 
6626 		rval = devi_unconfig_branch(dip, NULL, flags|NDI_UNCONFIG,
6627 		    &brevq);
6628 
6629 		if (rval)
6630 			return (NDI_FAILURE);
6631 
6632 		if (vdip)
6633 			ndi_devi_enter(vdip, &v_circ);
6634 		ndi_devi_enter(pdip, &circ);
6635 	}
6636 
6637 	init_bound_node_ev(pdip, dip, flags);
6638 
6639 	rval = devi_detach_node(dip, flags);
6640 	if (brevq) {
6641 		if (rval != NDI_SUCCESS)
6642 			log_and_free_brevq_dip(dip, brevq);
6643 		else
6644 			free_brevq(brevq);
6645 	}
6646 
6647 	ndi_devi_exit(pdip, circ);
6648 	if (vdip)
6649 		ndi_devi_exit(vdip, v_circ);
6650 
6651 	return (rval);
6652 }
6653 
6654 /*
6655  * Find the child dev_info node of parent nexus 'p' whose unit address
6656  * matches "cname@caddr".  Recommend use of ndi_devi_findchild() instead.
6657  */
6658 dev_info_t *
6659 ndi_devi_find(dev_info_t *pdip, char *cname, char *caddr)
6660 {
6661 	dev_info_t *child;
6662 	int circ;
6663 
6664 	if (pdip == NULL || cname == NULL || caddr == NULL)
6665 		return ((dev_info_t *)NULL);
6666 
6667 	ndi_devi_enter(pdip, &circ);
6668 	child = find_sibling(ddi_get_child(pdip), cname, caddr,
6669 	    FIND_NODE_BY_NODENAME, NULL);
6670 	ndi_devi_exit(pdip, circ);
6671 	return (child);
6672 }
6673 
6674 /*
6675  * Find the child dev_info node of parent nexus 'p' whose unit address
6676  * matches devname "name@addr".  Permits caller to hold the parent.
6677  */
6678 dev_info_t *
6679 ndi_devi_findchild(dev_info_t *pdip, char *devname)
6680 {
6681 	dev_info_t *child;
6682 	char	*cname, *caddr;
6683 	char	*devstr;
6684 
6685 	ASSERT(DEVI_BUSY_OWNED(pdip));
6686 
6687 	devstr = i_ddi_strdup(devname, KM_SLEEP);
6688 	i_ddi_parse_name(devstr, &cname, &caddr, NULL);
6689 
6690 	if (cname == NULL || caddr == NULL) {
6691 		kmem_free(devstr, strlen(devname)+1);
6692 		return ((dev_info_t *)NULL);
6693 	}
6694 
6695 	child = find_sibling(ddi_get_child(pdip), cname, caddr,
6696 	    FIND_NODE_BY_NODENAME, NULL);
6697 	kmem_free(devstr, strlen(devname)+1);
6698 	return (child);
6699 }
6700 
6701 /*
6702  * Misc. routines called by framework only
6703  */
6704 
6705 /*
6706  * Clear the DEVI_MADE_CHILDREN/DEVI_ATTACHED_CHILDREN flags
6707  * if new child spec has been added.
6708  */
6709 static int
6710 reset_nexus_flags(dev_info_t *dip, void *arg)
6711 {
6712 	struct hwc_spec	*list;
6713 	int		circ;
6714 
6715 	if (((DEVI(dip)->devi_flags & DEVI_MADE_CHILDREN) == 0) ||
6716 	    ((list = hwc_get_child_spec(dip, (major_t)(uintptr_t)arg)) == NULL))
6717 		return (DDI_WALK_CONTINUE);
6718 
6719 	hwc_free_spec_list(list);
6720 
6721 	/* coordinate child state update */
6722 	ndi_devi_enter(dip, &circ);
6723 	mutex_enter(&DEVI(dip)->devi_lock);
6724 	DEVI(dip)->devi_flags &= ~(DEVI_MADE_CHILDREN | DEVI_ATTACHED_CHILDREN);
6725 	mutex_exit(&DEVI(dip)->devi_lock);
6726 	ndi_devi_exit(dip, circ);
6727 
6728 	return (DDI_WALK_CONTINUE);
6729 }
6730 
6731 /*
6732  * Helper functions, returns NULL if no memory.
6733  */
6734 
6735 /*
6736  * path_to_major:
6737  *
6738  * Return an alternate driver name binding for the leaf device
6739  * of the given pathname, if there is one. The purpose of this
6740  * function is to deal with generic pathnames. The default action
6741  * for platforms that can't do this (ie: x86 or any platform that
6742  * does not have prom_finddevice functionality, which matches
6743  * nodenames and unit-addresses without the drivers participation)
6744  * is to return DDI_MAJOR_T_NONE.
6745  *
6746  * Used in loadrootmodules() in the swapgeneric module to
6747  * associate a given pathname with a given leaf driver.
6748  *
6749  */
6750 major_t
6751 path_to_major(char *path)
6752 {
6753 	dev_info_t *dip;
6754 	char *p, *q;
6755 	pnode_t nodeid;
6756 	major_t major;
6757 
6758 	/* check for path-oriented alias */
6759 	major = ddi_name_to_major(path);
6760 	if (driver_active(major)) {
6761 		NDI_CONFIG_DEBUG((CE_NOTE, "path_to_major: %s path bound %s\n",
6762 		    path, ddi_major_to_name(major)));
6763 		return (major);
6764 	}
6765 
6766 	/*
6767 	 * Get the nodeid of the given pathname, if such a mapping exists.
6768 	 */
6769 	dip = NULL;
6770 	nodeid = prom_finddevice(path);
6771 	if (nodeid != OBP_BADNODE) {
6772 		/*
6773 		 * Find the nodeid in our copy of the device tree and return
6774 		 * whatever name we used to bind this node to a driver.
6775 		 */
6776 		dip = e_ddi_nodeid_to_dip(nodeid);
6777 	}
6778 
6779 	if (dip == NULL) {
6780 		NDI_CONFIG_DEBUG((CE_WARN,
6781 		    "path_to_major: can't bind <%s>\n", path));
6782 		return (DDI_MAJOR_T_NONE);
6783 	}
6784 
6785 	/*
6786 	 * If we're bound to something other than the nodename,
6787 	 * note that in the message buffer and system log.
6788 	 */
6789 	p = ddi_binding_name(dip);
6790 	q = ddi_node_name(dip);
6791 	if (p && q && (strcmp(p, q) != 0))
6792 		NDI_CONFIG_DEBUG((CE_NOTE, "path_to_major: %s bound to %s\n",
6793 		    path, p));
6794 
6795 	major = ddi_name_to_major(p);
6796 
6797 	ndi_rele_devi(dip);		/* release e_ddi_nodeid_to_dip hold */
6798 
6799 	return (major);
6800 }
6801 
6802 /*
6803  * Return the held dip for the specified major and instance, attempting to do
6804  * an attach if specified. Return NULL if the devi can't be found or put in
6805  * the proper state. The caller must release the hold via ddi_release_devi if
6806  * a non-NULL value is returned.
6807  *
6808  * Some callers expect to be able to perform a hold_devi() while in a context
6809  * where using ndi_devi_enter() to ensure the hold might cause deadlock (see
6810  * open-from-attach code in consconfig_dacf.c). Such special-case callers
6811  * must ensure that an ndi_devi_enter(parent)/ndi_hold_devi() from a safe
6812  * context is already active. The hold_devi() implementation must accommodate
6813  * these callers.
6814  */
6815 static dev_info_t *
6816 hold_devi(major_t major, int instance, int flags)
6817 {
6818 	struct devnames	*dnp;
6819 	dev_info_t	*dip;
6820 	char		*path;
6821 	char		*vpath;
6822 
6823 	if ((major >= devcnt) || (instance == -1))
6824 		return (NULL);
6825 
6826 	/* try to find the instance in the per driver list */
6827 	dnp = &(devnamesp[major]);
6828 	LOCK_DEV_OPS(&(dnp->dn_lock));
6829 	for (dip = dnp->dn_head; dip;
6830 	    dip = (dev_info_t *)DEVI(dip)->devi_next) {
6831 		/* skip node if instance field is not valid */
6832 		if (i_ddi_node_state(dip) < DS_INITIALIZED)
6833 			continue;
6834 
6835 		/* look for instance match */
6836 		if (DEVI(dip)->devi_instance == instance) {
6837 			/*
6838 			 * To accommodate callers that can't block in
6839 			 * ndi_devi_enter() we do an ndi_hold_devi(), and
6840 			 * afterwards check that the node is in a state where
6841 			 * the hold prevents detach(). If we did not manage to
6842 			 * prevent detach then we ndi_rele_devi() and perform
6843 			 * the slow path below (which can result in a blocking
6844 			 * ndi_devi_enter() while driving attach top-down).
6845 			 * This code depends on the ordering of
6846 			 * DEVI_SET_DETACHING and the devi_ref check in the
6847 			 * detach_node() code path.
6848 			 */
6849 			ndi_hold_devi(dip);
6850 			if (i_ddi_devi_attached(dip) &&
6851 			    !DEVI_IS_DETACHING(dip)) {
6852 				UNLOCK_DEV_OPS(&(dnp->dn_lock));
6853 				return (dip);	/* fast-path with devi held */
6854 			}
6855 			ndi_rele_devi(dip);
6856 
6857 			/* try slow-path */
6858 			dip = NULL;
6859 			break;
6860 		}
6861 	}
6862 	ASSERT(dip == NULL);
6863 	UNLOCK_DEV_OPS(&(dnp->dn_lock));
6864 
6865 	if (flags & E_DDI_HOLD_DEVI_NOATTACH)
6866 		return (NULL);		/* told not to drive attach */
6867 
6868 	/* slow-path may block, so it should not occur from interrupt */
6869 	ASSERT(!servicing_interrupt());
6870 	if (servicing_interrupt())
6871 		return (NULL);
6872 
6873 	/* reconstruct the path and drive attach by path through devfs. */
6874 	path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
6875 	if (e_ddi_majorinstance_to_path(major, instance, path) == 0) {
6876 		dip = e_ddi_hold_devi_by_path(path, flags);
6877 
6878 		/*
6879 		 * Verify that we got the correct device - a path_to_inst file
6880 		 * with a bogus/corrupt path (or a nexus that changes its
6881 		 * unit-address format) could result in an incorrect answer
6882 		 *
6883 		 * Verify major, instance, and path.
6884 		 */
6885 		vpath = kmem_alloc(MAXPATHLEN, KM_SLEEP);
6886 		if (dip &&
6887 		    ((DEVI(dip)->devi_major != major) ||
6888 		    ((DEVI(dip)->devi_instance != instance)) ||
6889 		    (strcmp(path, ddi_pathname(dip, vpath)) != 0))) {
6890 			ndi_rele_devi(dip);
6891 			dip = NULL;	/* no answer better than wrong answer */
6892 		}
6893 		kmem_free(vpath, MAXPATHLEN);
6894 	}
6895 	kmem_free(path, MAXPATHLEN);
6896 	return (dip);			/* with devi held */
6897 }
6898 
6899 /*
6900  * The {e_}ddi_hold_devi{_by_{instance|dev|path}} hold the devinfo node
6901  * associated with the specified arguments.  This hold should be released
6902  * by calling ddi_release_devi.
6903  *
6904  * The E_DDI_HOLD_DEVI_NOATTACH flag argument allows the caller to to specify
6905  * a failure return if the node is not already attached.
6906  *
6907  * NOTE: by the time we make e_ddi_hold_devi public, we should be able to reuse
6908  * ddi_hold_devi again.
6909  */
6910 dev_info_t *
6911 ddi_hold_devi_by_instance(major_t major, int instance, int flags)
6912 {
6913 	return (hold_devi(major, instance, flags));
6914 }
6915 
6916 dev_info_t *
6917 e_ddi_hold_devi_by_dev(dev_t dev, int flags)
6918 {
6919 	major_t	major = getmajor(dev);
6920 	dev_info_t	*dip;
6921 	struct dev_ops	*ops;
6922 	dev_info_t	*ddip = NULL;
6923 
6924 	dip = hold_devi(major, dev_to_instance(dev), flags);
6925 
6926 	/*
6927 	 * The rest of this routine is legacy support for drivers that
6928 	 * have broken DDI_INFO_DEVT2INSTANCE implementations but may have
6929 	 * functional DDI_INFO_DEVT2DEVINFO implementations.  This code will
6930 	 * diagnose inconsistency and, for maximum compatibility with legacy
6931 	 * drivers, give preference to the drivers DDI_INFO_DEVT2DEVINFO
6932 	 * implementation over the above derived dip based the driver's
6933 	 * DDI_INFO_DEVT2INSTANCE implementation. This legacy support should
6934 	 * be removed when DDI_INFO_DEVT2DEVINFO is deprecated.
6935 	 *
6936 	 * NOTE: The following code has a race condition. DEVT2DEVINFO
6937 	 *	returns a dip which is not held. By the time we ref ddip,
6938 	 *	it could have been freed. The saving grace is that for
6939 	 *	most drivers, the dip returned from hold_devi() is the
6940 	 *	same one as the one returned by DEVT2DEVINFO, so we are
6941 	 *	safe for drivers with the correct getinfo(9e) impl.
6942 	 */
6943 	if (((ops = ddi_hold_driver(major)) != NULL) &&
6944 	    CB_DRV_INSTALLED(ops) && ops->devo_getinfo)  {
6945 		if ((*ops->devo_getinfo)(NULL, DDI_INFO_DEVT2DEVINFO,
6946 		    (void *)dev, (void **)&ddip) != DDI_SUCCESS)
6947 			ddip = NULL;
6948 	}
6949 
6950 	/* give preference to the driver returned DEVT2DEVINFO dip */
6951 	if (ddip && (dip != ddip)) {
6952 #ifdef	DEBUG
6953 		cmn_err(CE_WARN, "%s: inconsistent getinfo(9E) implementation",
6954 		    ddi_driver_name(ddip));
6955 #endif	/* DEBUG */
6956 		ndi_hold_devi(ddip);
6957 		if (dip)
6958 			ndi_rele_devi(dip);
6959 		dip = ddip;
6960 	}
6961 
6962 	if (ops)
6963 		ddi_rele_driver(major);
6964 
6965 	return (dip);
6966 }
6967 
6968 /*
6969  * For compatibility only. Do not call this function!
6970  */
6971 dev_info_t *
6972 e_ddi_get_dev_info(dev_t dev, vtype_t type)
6973 {
6974 	dev_info_t *dip = NULL;
6975 	if (getmajor(dev) >= devcnt)
6976 		return (NULL);
6977 
6978 	switch (type) {
6979 	case VCHR:
6980 	case VBLK:
6981 		dip = e_ddi_hold_devi_by_dev(dev, 0);
6982 	default:
6983 		break;
6984 	}
6985 
6986 	/*
6987 	 * For compatibility reasons, we can only return the dip with
6988 	 * the driver ref count held. This is not a safe thing to do.
6989 	 * For certain broken third-party software, we are willing
6990 	 * to venture into unknown territory.
6991 	 */
6992 	if (dip) {
6993 		(void) ndi_hold_driver(dip);
6994 		ndi_rele_devi(dip);
6995 	}
6996 	return (dip);
6997 }
6998 
6999 dev_info_t *
7000 e_ddi_hold_devi_by_path(char *path, int flags)
7001 {
7002 	dev_info_t	*dip;
7003 
7004 	/* can't specify NOATTACH by path */
7005 	ASSERT(!(flags & E_DDI_HOLD_DEVI_NOATTACH));
7006 
7007 	return (resolve_pathname(path, &dip, NULL, NULL) ? NULL : dip);
7008 }
7009 
7010 void
7011 e_ddi_hold_devi(dev_info_t *dip)
7012 {
7013 	ndi_hold_devi(dip);
7014 }
7015 
7016 void
7017 ddi_release_devi(dev_info_t *dip)
7018 {
7019 	ndi_rele_devi(dip);
7020 }
7021 
7022 /*
7023  * Associate a streams queue with a devinfo node
7024  * NOTE: This function is called by STREAM driver's put procedure.
7025  *	It cannot block.
7026  */
7027 void
7028 ddi_assoc_queue_with_devi(queue_t *q, dev_info_t *dip)
7029 {
7030 	queue_t *rq = _RD(q);
7031 	struct stdata *stp;
7032 	vnode_t *vp;
7033 
7034 	/* set flag indicating that ddi_assoc_queue_with_devi was called */
7035 	mutex_enter(QLOCK(rq));
7036 	rq->q_flag |= _QASSOCIATED;
7037 	mutex_exit(QLOCK(rq));
7038 
7039 	/* get the vnode associated with the queue */
7040 	stp = STREAM(rq);
7041 	vp = stp->sd_vnode;
7042 	ASSERT(vp);
7043 
7044 	/* change the hardware association of the vnode */
7045 	spec_assoc_vp_with_devi(vp, dip);
7046 }
7047 
7048 /*
7049  * ddi_install_driver(name)
7050  *
7051  * Driver installation is currently a byproduct of driver loading.  This
7052  * may change.
7053  */
7054 int
7055 ddi_install_driver(char *name)
7056 {
7057 	major_t major = ddi_name_to_major(name);
7058 
7059 	if ((major == DDI_MAJOR_T_NONE) ||
7060 	    (ddi_hold_installed_driver(major) == NULL)) {
7061 		return (DDI_FAILURE);
7062 	}
7063 	ddi_rele_driver(major);
7064 	return (DDI_SUCCESS);
7065 }
7066 
7067 struct dev_ops *
7068 ddi_hold_driver(major_t major)
7069 {
7070 	return (mod_hold_dev_by_major(major));
7071 }
7072 
7073 
7074 void
7075 ddi_rele_driver(major_t major)
7076 {
7077 	mod_rele_dev_by_major(major);
7078 }
7079 
7080 
7081 /*
7082  * This is called during boot to force attachment order of special dips
7083  * dip must be referenced via ndi_hold_devi()
7084  */
7085 int
7086 i_ddi_attach_node_hierarchy(dev_info_t *dip)
7087 {
7088 	dev_info_t	*parent;
7089 	int		ret, circ;
7090 
7091 	/*
7092 	 * Recurse up until attached parent is found.
7093 	 */
7094 	if (i_ddi_devi_attached(dip))
7095 		return (DDI_SUCCESS);
7096 	parent = ddi_get_parent(dip);
7097 	if (i_ddi_attach_node_hierarchy(parent) != DDI_SUCCESS)
7098 		return (DDI_FAILURE);
7099 
7100 	/*
7101 	 * Come top-down, expanding .conf nodes under this parent
7102 	 * and driving attach.
7103 	 */
7104 	ndi_devi_enter(parent, &circ);
7105 	(void) i_ndi_make_spec_children(parent, 0);
7106 	ret = i_ddi_attachchild(dip);
7107 	ndi_devi_exit(parent, circ);
7108 
7109 	return (ret);
7110 }
7111 
7112 /* keep this function static */
7113 static int
7114 attach_driver_nodes(major_t major)
7115 {
7116 	struct devnames *dnp;
7117 	dev_info_t *dip;
7118 	int error = DDI_FAILURE;
7119 
7120 	dnp = &devnamesp[major];
7121 	LOCK_DEV_OPS(&dnp->dn_lock);
7122 	dip = dnp->dn_head;
7123 	while (dip) {
7124 		ndi_hold_devi(dip);
7125 		UNLOCK_DEV_OPS(&dnp->dn_lock);
7126 		if (i_ddi_attach_node_hierarchy(dip) == DDI_SUCCESS)
7127 			error = DDI_SUCCESS;
7128 		/*
7129 		 * Set the 'ddi-config-driver-node' property on a nexus
7130 		 * node to cause attach_driver_nodes() to configure all
7131 		 * immediate children of the nexus. This property should
7132 		 * be set on nodes with immediate children that bind to
7133 		 * the same driver as parent.
7134 		 */
7135 		if ((error == DDI_SUCCESS) && (ddi_prop_exists(DDI_DEV_T_ANY,
7136 		    dip, DDI_PROP_DONTPASS, "ddi-config-driver-node"))) {
7137 			(void) ndi_devi_config(dip, NDI_NO_EVENT);
7138 		}
7139 		LOCK_DEV_OPS(&dnp->dn_lock);
7140 		ndi_rele_devi(dip);
7141 		dip = ddi_get_next(dip);
7142 	}
7143 	if (error == DDI_SUCCESS)
7144 		dnp->dn_flags |= DN_NO_AUTODETACH;
7145 	UNLOCK_DEV_OPS(&dnp->dn_lock);
7146 
7147 
7148 	return (error);
7149 }
7150 
7151 /*
7152  * i_ddi_attach_hw_nodes configures and attaches all hw nodes
7153  * bound to a specific driver. This function replaces calls to
7154  * ddi_hold_installed_driver() for drivers with no .conf
7155  * enumerated nodes.
7156  *
7157  * This facility is typically called at boot time to attach
7158  * platform-specific hardware nodes, such as ppm nodes on xcal
7159  * and grover and keyswitch nodes on cherrystone. It does not
7160  * deal with .conf enumerated node. Calling it beyond the boot
7161  * process is strongly discouraged.
7162  */
7163 int
7164 i_ddi_attach_hw_nodes(char *driver)
7165 {
7166 	major_t major;
7167 
7168 	major = ddi_name_to_major(driver);
7169 	if (major == DDI_MAJOR_T_NONE)
7170 		return (DDI_FAILURE);
7171 
7172 	return (attach_driver_nodes(major));
7173 }
7174 
7175 /*
7176  * i_ddi_attach_pseudo_node configures pseudo drivers which
7177  * has a single node. The .conf nodes must be enumerated
7178  * before calling this interface. The dip is held attached
7179  * upon returning.
7180  *
7181  * This facility should only be called only at boot time
7182  * by the I/O framework.
7183  */
7184 dev_info_t *
7185 i_ddi_attach_pseudo_node(char *driver)
7186 {
7187 	major_t major;
7188 	dev_info_t *dip;
7189 
7190 	major = ddi_name_to_major(driver);
7191 	if (major == DDI_MAJOR_T_NONE)
7192 		return (NULL);
7193 
7194 	if (attach_driver_nodes(major) != DDI_SUCCESS)
7195 		return (NULL);
7196 
7197 	dip = devnamesp[major].dn_head;
7198 	ASSERT(dip && ddi_get_next(dip) == NULL);
7199 	ndi_hold_devi(dip);
7200 	return (dip);
7201 }
7202 
7203 static void
7204 diplist_to_parent_major(dev_info_t *head, char parents[])
7205 {
7206 	major_t major;
7207 	dev_info_t *dip, *pdip;
7208 
7209 	for (dip = head; dip != NULL; dip = ddi_get_next(dip)) {
7210 		pdip = ddi_get_parent(dip);
7211 		ASSERT(pdip);	/* disallow rootnex.conf nodes */
7212 		major = ddi_driver_major(pdip);
7213 		if ((major != DDI_MAJOR_T_NONE) && parents[major] == 0)
7214 			parents[major] = 1;
7215 	}
7216 }
7217 
7218 /*
7219  * Call ddi_hold_installed_driver() on each parent major
7220  * and invoke mt_config_driver() to attach child major.
7221  * This is part of the implementation of ddi_hold_installed_driver.
7222  */
7223 static int
7224 attach_driver_by_parent(major_t child_major, char parents[])
7225 {
7226 	major_t par_major;
7227 	struct mt_config_handle *hdl;
7228 	int flags = NDI_DEVI_PERSIST | NDI_NO_EVENT;
7229 
7230 	hdl = mt_config_init(NULL, NULL, flags, child_major, MT_CONFIG_OP,
7231 	    NULL);
7232 	for (par_major = 0; par_major < devcnt; par_major++) {
7233 		/* disallow recursion on the same driver */
7234 		if (parents[par_major] == 0 || par_major == child_major)
7235 			continue;
7236 		if (ddi_hold_installed_driver(par_major) == NULL)
7237 			continue;
7238 		hdl->mtc_parmajor = par_major;
7239 		mt_config_driver(hdl);
7240 		ddi_rele_driver(par_major);
7241 	}
7242 	(void) mt_config_fini(hdl);
7243 
7244 	return (i_ddi_devs_attached(child_major));
7245 }
7246 
7247 int
7248 i_ddi_devs_attached(major_t major)
7249 {
7250 	dev_info_t *dip;
7251 	struct devnames *dnp;
7252 	int error = DDI_FAILURE;
7253 
7254 	/* check for attached instances */
7255 	dnp = &devnamesp[major];
7256 	LOCK_DEV_OPS(&dnp->dn_lock);
7257 	for (dip = dnp->dn_head; dip != NULL; dip = ddi_get_next(dip)) {
7258 		if (i_ddi_devi_attached(dip)) {
7259 			error = DDI_SUCCESS;
7260 			break;
7261 		}
7262 	}
7263 	UNLOCK_DEV_OPS(&dnp->dn_lock);
7264 
7265 	return (error);
7266 }
7267 
7268 int
7269 i_ddi_minor_node_count(dev_info_t *ddip, const char *node_type)
7270 {
7271 	int			circ;
7272 	struct ddi_minor_data	*dp;
7273 	int			count = 0;
7274 
7275 	ndi_devi_enter(ddip, &circ);
7276 	for (dp = DEVI(ddip)->devi_minor; dp != NULL; dp = dp->next) {
7277 		if (strcmp(dp->ddm_node_type, node_type) == 0)
7278 			count++;
7279 	}
7280 	ndi_devi_exit(ddip, circ);
7281 	return (count);
7282 }
7283 
7284 /*
7285  * ddi_hold_installed_driver configures and attaches all
7286  * instances of the specified driver. To accomplish this
7287  * it configures and attaches all possible parents of
7288  * the driver, enumerated both in h/w nodes and in the
7289  * driver's .conf file.
7290  *
7291  * NOTE: This facility is for compatibility purposes only and will
7292  *	eventually go away. Its usage is strongly discouraged.
7293  */
7294 static void
7295 enter_driver(struct devnames *dnp)
7296 {
7297 	mutex_enter(&dnp->dn_lock);
7298 	ASSERT(dnp->dn_busy_thread != curthread);
7299 	while (dnp->dn_flags & DN_DRIVER_BUSY)
7300 		cv_wait(&dnp->dn_wait, &dnp->dn_lock);
7301 	dnp->dn_flags |= DN_DRIVER_BUSY;
7302 	dnp->dn_busy_thread = curthread;
7303 	mutex_exit(&dnp->dn_lock);
7304 }
7305 
7306 static void
7307 exit_driver(struct devnames *dnp)
7308 {
7309 	mutex_enter(&dnp->dn_lock);
7310 	ASSERT(dnp->dn_busy_thread == curthread);
7311 	dnp->dn_flags &= ~DN_DRIVER_BUSY;
7312 	dnp->dn_busy_thread = NULL;
7313 	cv_broadcast(&dnp->dn_wait);
7314 	mutex_exit(&dnp->dn_lock);
7315 }
7316 
7317 struct dev_ops *
7318 ddi_hold_installed_driver(major_t major)
7319 {
7320 	struct dev_ops *ops;
7321 	struct devnames *dnp;
7322 	char *parents;
7323 	int error;
7324 
7325 	ops = ddi_hold_driver(major);
7326 	if (ops == NULL)
7327 		return (NULL);
7328 
7329 	/*
7330 	 * Return immediately if all the attach operations associated
7331 	 * with a ddi_hold_installed_driver() call have already been done.
7332 	 */
7333 	dnp = &devnamesp[major];
7334 	enter_driver(dnp);
7335 	ASSERT(driver_active(major));
7336 
7337 	if (dnp->dn_flags & DN_DRIVER_HELD) {
7338 		exit_driver(dnp);
7339 		if (i_ddi_devs_attached(major) == DDI_SUCCESS)
7340 			return (ops);
7341 		ddi_rele_driver(major);
7342 		return (NULL);
7343 	}
7344 
7345 	LOCK_DEV_OPS(&dnp->dn_lock);
7346 	dnp->dn_flags |= (DN_DRIVER_HELD | DN_NO_AUTODETACH);
7347 	UNLOCK_DEV_OPS(&dnp->dn_lock);
7348 
7349 	DCOMPATPRINTF((CE_CONT,
7350 	    "ddi_hold_installed_driver: %s\n", dnp->dn_name));
7351 
7352 	/*
7353 	 * When the driver has no .conf children, it is sufficient
7354 	 * to attach existing nodes in the device tree. Nodes not
7355 	 * enumerated by the OBP are not attached.
7356 	 */
7357 	if (dnp->dn_pl == NULL) {
7358 		if (attach_driver_nodes(major) == DDI_SUCCESS) {
7359 			exit_driver(dnp);
7360 			return (ops);
7361 		}
7362 		exit_driver(dnp);
7363 		ddi_rele_driver(major);
7364 		return (NULL);
7365 	}
7366 
7367 	/*
7368 	 * Driver has .conf nodes. We find all possible parents
7369 	 * and recursively all ddi_hold_installed_driver on the
7370 	 * parent driver; then we invoke ndi_config_driver()
7371 	 * on all possible parent node in parallel to speed up
7372 	 * performance.
7373 	 */
7374 	parents = kmem_zalloc(devcnt * sizeof (char), KM_SLEEP);
7375 
7376 	LOCK_DEV_OPS(&dnp->dn_lock);
7377 	/* find .conf parents */
7378 	(void) impl_parlist_to_major(dnp->dn_pl, parents);
7379 	/* find hw node parents */
7380 	diplist_to_parent_major(dnp->dn_head, parents);
7381 	UNLOCK_DEV_OPS(&dnp->dn_lock);
7382 
7383 	error = attach_driver_by_parent(major, parents);
7384 	kmem_free(parents, devcnt * sizeof (char));
7385 	if (error == DDI_SUCCESS) {
7386 		exit_driver(dnp);
7387 		return (ops);
7388 	}
7389 
7390 	exit_driver(dnp);
7391 	ddi_rele_driver(major);
7392 	return (NULL);
7393 }
7394 
7395 /*
7396  * Default bus_config entry point for nexus drivers
7397  */
7398 int
7399 ndi_busop_bus_config(dev_info_t *pdip, uint_t flags, ddi_bus_config_op_t op,
7400     void *arg, dev_info_t **child, clock_t timeout)
7401 {
7402 	major_t major;
7403 
7404 	/*
7405 	 * A timeout of 30 minutes or more is probably a mistake
7406 	 * This is intended to catch uses where timeout is in
7407 	 * the wrong units.  timeout must be in units of ticks.
7408 	 */
7409 	ASSERT(timeout < SEC_TO_TICK(1800));
7410 
7411 	major = DDI_MAJOR_T_NONE;
7412 	switch (op) {
7413 	case BUS_CONFIG_ONE:
7414 		NDI_DEBUG(flags, (CE_CONT, "%s%d: bus config %s timeout=%ld\n",
7415 		    ddi_driver_name(pdip), ddi_get_instance(pdip),
7416 		    (char *)arg, timeout));
7417 		return (devi_config_one(pdip, (char *)arg, child, flags,
7418 		    timeout));
7419 
7420 	case BUS_CONFIG_DRIVER:
7421 		major = (major_t)(uintptr_t)arg;
7422 		/*FALLTHROUGH*/
7423 	case BUS_CONFIG_ALL:
7424 		NDI_DEBUG(flags, (CE_CONT, "%s%d: bus config timeout=%ld\n",
7425 		    ddi_driver_name(pdip), ddi_get_instance(pdip),
7426 		    timeout));
7427 		if (timeout > 0) {
7428 			NDI_DEBUG(flags, (CE_CONT,
7429 			    "%s%d: bus config all timeout=%ld\n",
7430 			    ddi_driver_name(pdip), ddi_get_instance(pdip),
7431 			    timeout));
7432 			delay(timeout);
7433 		}
7434 		return (config_immediate_children(pdip, flags, major));
7435 
7436 	default:
7437 		return (NDI_FAILURE);
7438 	}
7439 	/*NOTREACHED*/
7440 }
7441 
7442 /*
7443  * Default busop bus_unconfig handler for nexus drivers
7444  */
7445 int
7446 ndi_busop_bus_unconfig(dev_info_t *pdip, uint_t flags, ddi_bus_config_op_t op,
7447     void *arg)
7448 {
7449 	major_t major;
7450 
7451 	major = DDI_MAJOR_T_NONE;
7452 	switch (op) {
7453 	case BUS_UNCONFIG_ONE:
7454 		NDI_DEBUG(flags, (CE_CONT, "%s%d: bus unconfig %s\n",
7455 		    ddi_driver_name(pdip), ddi_get_instance(pdip),
7456 		    (char *)arg));
7457 		return (devi_unconfig_one(pdip, (char *)arg, flags));
7458 
7459 	case BUS_UNCONFIG_DRIVER:
7460 		major = (major_t)(uintptr_t)arg;
7461 		/*FALLTHROUGH*/
7462 	case BUS_UNCONFIG_ALL:
7463 		NDI_DEBUG(flags, (CE_CONT, "%s%d: bus unconfig all\n",
7464 		    ddi_driver_name(pdip), ddi_get_instance(pdip)));
7465 		return (unconfig_immediate_children(pdip, NULL, flags, major));
7466 
7467 	default:
7468 		return (NDI_FAILURE);
7469 	}
7470 	/*NOTREACHED*/
7471 }
7472 
7473 /*
7474  * dummy functions to be removed
7475  */
7476 void
7477 impl_rem_dev_props(dev_info_t *dip)
7478 {
7479 	_NOTE(ARGUNUSED(dip))
7480 	/* do nothing */
7481 }
7482 
7483 /*
7484  * Determine if a node is a leaf node. If not sure, return false (0).
7485  */
7486 static int
7487 is_leaf_node(dev_info_t *dip)
7488 {
7489 	major_t major = ddi_driver_major(dip);
7490 
7491 	if (major == DDI_MAJOR_T_NONE)
7492 		return (0);
7493 
7494 	return (devnamesp[major].dn_flags & DN_LEAF_DRIVER);
7495 }
7496 
7497 /*
7498  * Multithreaded [un]configuration
7499  */
7500 static struct mt_config_handle *
7501 mt_config_init(dev_info_t *pdip, dev_info_t **dipp, int flags,
7502     major_t major, int op, struct brevq_node **brevqp)
7503 {
7504 	struct mt_config_handle	*hdl = kmem_alloc(sizeof (*hdl), KM_SLEEP);
7505 
7506 	mutex_init(&hdl->mtc_lock, NULL, MUTEX_DEFAULT, NULL);
7507 	cv_init(&hdl->mtc_cv, NULL, CV_DEFAULT, NULL);
7508 	hdl->mtc_pdip = pdip;
7509 	hdl->mtc_fdip = dipp;
7510 	hdl->mtc_parmajor = DDI_MAJOR_T_NONE;
7511 	hdl->mtc_flags = flags;
7512 	hdl->mtc_major = major;
7513 	hdl->mtc_thr_count = 0;
7514 	hdl->mtc_op = op;
7515 	hdl->mtc_error = 0;
7516 	hdl->mtc_brevqp = brevqp;
7517 
7518 #ifdef DEBUG
7519 	gethrestime(&hdl->start_time);
7520 	hdl->total_time = 0;
7521 #endif /* DEBUG */
7522 
7523 	return (hdl);
7524 }
7525 
7526 #ifdef DEBUG
7527 static int
7528 time_diff_in_msec(timestruc_t start, timestruc_t end)
7529 {
7530 	int	nsec, sec;
7531 
7532 	sec = end.tv_sec - start.tv_sec;
7533 	nsec = end.tv_nsec - start.tv_nsec;
7534 	if (nsec < 0) {
7535 		nsec += NANOSEC;
7536 		sec -= 1;
7537 	}
7538 
7539 	return (sec * (NANOSEC >> 20) + (nsec >> 20));
7540 }
7541 
7542 #endif	/* DEBUG */
7543 
7544 static int
7545 mt_config_fini(struct mt_config_handle *hdl)
7546 {
7547 	int		rv;
7548 #ifdef DEBUG
7549 	int		real_time;
7550 	timestruc_t	end_time;
7551 #endif /* DEBUG */
7552 
7553 	mutex_enter(&hdl->mtc_lock);
7554 	while (hdl->mtc_thr_count > 0)
7555 		cv_wait(&hdl->mtc_cv, &hdl->mtc_lock);
7556 	rv = hdl->mtc_error;
7557 	mutex_exit(&hdl->mtc_lock);
7558 
7559 #ifdef DEBUG
7560 	gethrestime(&end_time);
7561 	real_time = time_diff_in_msec(hdl->start_time, end_time);
7562 	if ((ddidebug & DDI_MTCONFIG) && hdl->mtc_pdip)
7563 		cmn_err(CE_NOTE,
7564 		    "config %s%d: total time %d msec, real time %d msec",
7565 		    ddi_driver_name(hdl->mtc_pdip),
7566 		    ddi_get_instance(hdl->mtc_pdip),
7567 		    hdl->total_time, real_time);
7568 #endif /* DEBUG */
7569 
7570 	cv_destroy(&hdl->mtc_cv);
7571 	mutex_destroy(&hdl->mtc_lock);
7572 	kmem_free(hdl, sizeof (*hdl));
7573 
7574 	return (rv);
7575 }
7576 
7577 struct mt_config_data {
7578 	struct mt_config_handle	*mtc_hdl;
7579 	dev_info_t		*mtc_dip;
7580 	major_t			mtc_major;
7581 	int			mtc_flags;
7582 	struct brevq_node	*mtc_brn;
7583 	struct mt_config_data	*mtc_next;
7584 };
7585 
7586 static void
7587 mt_config_thread(void *arg)
7588 {
7589 	struct mt_config_data	*mcd = (struct mt_config_data *)arg;
7590 	struct mt_config_handle	*hdl = mcd->mtc_hdl;
7591 	dev_info_t		*dip = mcd->mtc_dip;
7592 	dev_info_t		*rdip, **dipp;
7593 	major_t			major = mcd->mtc_major;
7594 	int			flags = mcd->mtc_flags;
7595 	int			rv = 0;
7596 
7597 #ifdef DEBUG
7598 	timestruc_t start_time, end_time;
7599 	gethrestime(&start_time);
7600 #endif /* DEBUG */
7601 
7602 	rdip = NULL;
7603 	dipp = hdl->mtc_fdip ? &rdip : NULL;
7604 
7605 	switch (hdl->mtc_op) {
7606 	case MT_CONFIG_OP:
7607 		rv = devi_config_common(dip, flags, major);
7608 		break;
7609 	case MT_UNCONFIG_OP:
7610 		if (mcd->mtc_brn) {
7611 			struct brevq_node *brevq = NULL;
7612 			rv = devi_unconfig_common(dip, dipp, flags, major,
7613 			    &brevq);
7614 			mcd->mtc_brn->brn_child = brevq;
7615 		} else
7616 			rv = devi_unconfig_common(dip, dipp, flags, major,
7617 			    NULL);
7618 		break;
7619 	}
7620 
7621 	mutex_enter(&hdl->mtc_lock);
7622 #ifdef DEBUG
7623 	gethrestime(&end_time);
7624 	hdl->total_time += time_diff_in_msec(start_time, end_time);
7625 #endif /* DEBUG */
7626 
7627 	if ((rv != NDI_SUCCESS) && (hdl->mtc_error == 0)) {
7628 		hdl->mtc_error = rv;
7629 #ifdef	DEBUG
7630 		if ((ddidebug & DDI_DEBUG) && (major != DDI_MAJOR_T_NONE)) {
7631 			char	*path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
7632 
7633 			(void) ddi_pathname(dip, path);
7634 			cmn_err(CE_NOTE, "mt_config_thread: "
7635 			    "op %d.%d.%x at %s failed %d",
7636 			    hdl->mtc_op, major, flags, path, rv);
7637 			kmem_free(path, MAXPATHLEN);
7638 		}
7639 #endif	/* DEBUG */
7640 	}
7641 
7642 	if (hdl->mtc_fdip && *hdl->mtc_fdip == NULL) {
7643 		*hdl->mtc_fdip = rdip;
7644 		rdip = NULL;
7645 	}
7646 
7647 	if (rdip) {
7648 		ASSERT(rv != NDI_SUCCESS);
7649 		ndi_rele_devi(rdip);
7650 	}
7651 
7652 	ndi_rele_devi(dip);
7653 
7654 	if (--hdl->mtc_thr_count == 0)
7655 		cv_broadcast(&hdl->mtc_cv);
7656 	mutex_exit(&hdl->mtc_lock);
7657 	kmem_free(mcd, sizeof (*mcd));
7658 }
7659 
7660 /*
7661  * Multi-threaded config/unconfig of child nexus
7662  */
7663 static void
7664 mt_config_children(struct mt_config_handle *hdl)
7665 {
7666 	dev_info_t		*pdip = hdl->mtc_pdip;
7667 	major_t			major = hdl->mtc_major;
7668 	dev_info_t		*dip;
7669 	int			circ;
7670 	struct brevq_node	*brn;
7671 	struct mt_config_data	*mcd_head = NULL;
7672 	struct mt_config_data	*mcd_tail = NULL;
7673 	struct mt_config_data	*mcd;
7674 #ifdef DEBUG
7675 	timestruc_t		end_time;
7676 
7677 	/* Update total_time in handle */
7678 	gethrestime(&end_time);
7679 	hdl->total_time += time_diff_in_msec(hdl->start_time, end_time);
7680 #endif
7681 
7682 	ndi_devi_enter(pdip, &circ);
7683 	dip = ddi_get_child(pdip);
7684 	while (dip) {
7685 		if (hdl->mtc_op == MT_UNCONFIG_OP && hdl->mtc_brevqp &&
7686 		    !(DEVI_EVREMOVE(dip)) &&
7687 		    i_ddi_node_state(dip) >= DS_INITIALIZED) {
7688 			/*
7689 			 * Enqueue this dip's deviname.
7690 			 * No need to hold a lock while enqueuing since this
7691 			 * is the only thread doing the enqueue and no one
7692 			 * walks the queue while we are in multithreaded
7693 			 * unconfiguration.
7694 			 */
7695 			brn = brevq_enqueue(hdl->mtc_brevqp, dip, NULL);
7696 		} else
7697 			brn = NULL;
7698 
7699 		/*
7700 		 * Hold the child that we are processing so he does not get
7701 		 * removed. The corrisponding ndi_rele_devi() for children
7702 		 * that are not being skipped is done at the end of
7703 		 * mt_config_thread().
7704 		 */
7705 		ndi_hold_devi(dip);
7706 
7707 		/*
7708 		 * skip leaf nodes and (for configure) nodes not
7709 		 * fully attached.
7710 		 */
7711 		if (is_leaf_node(dip) ||
7712 		    (hdl->mtc_op == MT_CONFIG_OP &&
7713 		    i_ddi_node_state(dip) < DS_READY)) {
7714 			ndi_rele_devi(dip);
7715 			dip = ddi_get_next_sibling(dip);
7716 			continue;
7717 		}
7718 
7719 		mcd = kmem_alloc(sizeof (*mcd), KM_SLEEP);
7720 		mcd->mtc_dip = dip;
7721 		mcd->mtc_hdl = hdl;
7722 		mcd->mtc_brn = brn;
7723 
7724 		/*
7725 		 * Switch a 'driver' operation to an 'all' operation below a
7726 		 * node bound to the driver.
7727 		 */
7728 		if ((major == DDI_MAJOR_T_NONE) ||
7729 		    (major == ddi_driver_major(dip)))
7730 			mcd->mtc_major = DDI_MAJOR_T_NONE;
7731 		else
7732 			mcd->mtc_major = major;
7733 
7734 		/*
7735 		 * The unconfig-driver to unconfig-all conversion above
7736 		 * constitutes an autodetach for NDI_DETACH_DRIVER calls,
7737 		 * set NDI_AUTODETACH.
7738 		 */
7739 		mcd->mtc_flags = hdl->mtc_flags;
7740 		if ((mcd->mtc_flags & NDI_DETACH_DRIVER) &&
7741 		    (hdl->mtc_op == MT_UNCONFIG_OP) &&
7742 		    (major == ddi_driver_major(pdip)))
7743 			mcd->mtc_flags |= NDI_AUTODETACH;
7744 
7745 		mutex_enter(&hdl->mtc_lock);
7746 		hdl->mtc_thr_count++;
7747 		mutex_exit(&hdl->mtc_lock);
7748 
7749 		/*
7750 		 * Add to end of list to process after ndi_devi_exit to avoid
7751 		 * locking differences depending on value of mtc_off.
7752 		 */
7753 		mcd->mtc_next = NULL;
7754 		if (mcd_head == NULL)
7755 			mcd_head = mcd;
7756 		else
7757 			mcd_tail->mtc_next = mcd;
7758 		mcd_tail = mcd;
7759 
7760 		dip = ddi_get_next_sibling(dip);
7761 	}
7762 	ndi_devi_exit(pdip, circ);
7763 
7764 	/* go through the list of held children */
7765 	for (mcd = mcd_head; mcd; mcd = mcd_head) {
7766 		mcd_head = mcd->mtc_next;
7767 		if (mtc_off || (mcd->mtc_flags & NDI_MTC_OFF))
7768 			mt_config_thread(mcd);
7769 		else
7770 			(void) thread_create(NULL, 0, mt_config_thread, mcd,
7771 			    0, &p0, TS_RUN, minclsyspri);
7772 	}
7773 }
7774 
7775 static void
7776 mt_config_driver(struct mt_config_handle *hdl)
7777 {
7778 	major_t			par_major = hdl->mtc_parmajor;
7779 	major_t			major = hdl->mtc_major;
7780 	struct devnames		*dnp = &devnamesp[par_major];
7781 	dev_info_t		*dip;
7782 	struct mt_config_data	*mcd_head = NULL;
7783 	struct mt_config_data	*mcd_tail = NULL;
7784 	struct mt_config_data	*mcd;
7785 #ifdef DEBUG
7786 	timestruc_t		end_time;
7787 
7788 	/* Update total_time in handle */
7789 	gethrestime(&end_time);
7790 	hdl->total_time += time_diff_in_msec(hdl->start_time, end_time);
7791 #endif
7792 	ASSERT(par_major != DDI_MAJOR_T_NONE);
7793 	ASSERT(major != DDI_MAJOR_T_NONE);
7794 
7795 	LOCK_DEV_OPS(&dnp->dn_lock);
7796 	dip = devnamesp[par_major].dn_head;
7797 	while (dip) {
7798 		/*
7799 		 * Hold the child that we are processing so he does not get
7800 		 * removed. The corrisponding ndi_rele_devi() for children
7801 		 * that are not being skipped is done at the end of
7802 		 * mt_config_thread().
7803 		 */
7804 		ndi_hold_devi(dip);
7805 
7806 		/* skip leaf nodes and nodes not fully attached */
7807 		if (!i_ddi_devi_attached(dip) || is_leaf_node(dip)) {
7808 			ndi_rele_devi(dip);
7809 			dip = ddi_get_next(dip);
7810 			continue;
7811 		}
7812 
7813 		mcd = kmem_alloc(sizeof (*mcd), KM_SLEEP);
7814 		mcd->mtc_dip = dip;
7815 		mcd->mtc_hdl = hdl;
7816 		mcd->mtc_major = major;
7817 		mcd->mtc_flags = hdl->mtc_flags;
7818 
7819 		mutex_enter(&hdl->mtc_lock);
7820 		hdl->mtc_thr_count++;
7821 		mutex_exit(&hdl->mtc_lock);
7822 
7823 		/*
7824 		 * Add to end of list to process after UNLOCK_DEV_OPS to avoid
7825 		 * locking differences depending on value of mtc_off.
7826 		 */
7827 		mcd->mtc_next = NULL;
7828 		if (mcd_head == NULL)
7829 			mcd_head = mcd;
7830 		else
7831 			mcd_tail->mtc_next = mcd;
7832 		mcd_tail = mcd;
7833 
7834 		dip = ddi_get_next(dip);
7835 	}
7836 	UNLOCK_DEV_OPS(&dnp->dn_lock);
7837 
7838 	/* go through the list of held children */
7839 	for (mcd = mcd_head; mcd; mcd = mcd_head) {
7840 		mcd_head = mcd->mtc_next;
7841 		if (mtc_off || (mcd->mtc_flags & NDI_MTC_OFF))
7842 			mt_config_thread(mcd);
7843 		else
7844 			(void) thread_create(NULL, 0, mt_config_thread, mcd,
7845 			    0, &p0, TS_RUN, minclsyspri);
7846 	}
7847 }
7848 
7849 /*
7850  * Given the nodeid for a persistent (PROM or SID) node, return
7851  * the corresponding devinfo node
7852  * NOTE: This function will return NULL for .conf nodeids.
7853  */
7854 dev_info_t *
7855 e_ddi_nodeid_to_dip(pnode_t nodeid)
7856 {
7857 	dev_info_t		*dip = NULL;
7858 	struct devi_nodeid	*prev, *elem;
7859 
7860 	mutex_enter(&devimap->dno_lock);
7861 
7862 	prev = NULL;
7863 	for (elem = devimap->dno_head; elem; elem = elem->next) {
7864 		if (elem->nodeid == nodeid) {
7865 			ndi_hold_devi(elem->dip);
7866 			dip = elem->dip;
7867 			break;
7868 		}
7869 		prev = elem;
7870 	}
7871 
7872 	/*
7873 	 * Move to head for faster lookup next time
7874 	 */
7875 	if (elem && prev) {
7876 		prev->next = elem->next;
7877 		elem->next = devimap->dno_head;
7878 		devimap->dno_head = elem;
7879 	}
7880 
7881 	mutex_exit(&devimap->dno_lock);
7882 	return (dip);
7883 }
7884 
7885 static void
7886 free_cache_task(void *arg)
7887 {
7888 	ASSERT(arg == NULL);
7889 
7890 	mutex_enter(&di_cache.cache_lock);
7891 
7892 	/*
7893 	 * The cache can be invalidated without holding the lock
7894 	 * but it can be made valid again only while the lock is held.
7895 	 * So if the cache is invalid when the lock is held, it will
7896 	 * stay invalid until lock is released.
7897 	 */
7898 	if (!di_cache.cache_valid)
7899 		i_ddi_di_cache_free(&di_cache);
7900 
7901 	mutex_exit(&di_cache.cache_lock);
7902 
7903 	if (di_cache_debug)
7904 		cmn_err(CE_NOTE, "system_taskq: di_cache freed");
7905 }
7906 
7907 extern int modrootloaded;
7908 
7909 void
7910 i_ddi_di_cache_free(struct di_cache *cache)
7911 {
7912 	int	error;
7913 	extern int sys_shutdown;
7914 
7915 	ASSERT(mutex_owned(&cache->cache_lock));
7916 
7917 	if (cache->cache_size) {
7918 		ASSERT(cache->cache_size > 0);
7919 		ASSERT(cache->cache_data);
7920 
7921 		kmem_free(cache->cache_data, cache->cache_size);
7922 		cache->cache_data = NULL;
7923 		cache->cache_size = 0;
7924 
7925 		if (di_cache_debug)
7926 			cmn_err(CE_NOTE, "i_ddi_di_cache_free: freed cachemem");
7927 	} else {
7928 		ASSERT(cache->cache_data == NULL);
7929 		if (di_cache_debug)
7930 			cmn_err(CE_NOTE, "i_ddi_di_cache_free: NULL cache");
7931 	}
7932 
7933 	if (!modrootloaded || rootvp == NULL ||
7934 	    vn_is_readonly(rootvp) || sys_shutdown) {
7935 		if (di_cache_debug) {
7936 			cmn_err(CE_WARN, "/ not mounted/RDONLY. Skip unlink");
7937 		}
7938 		return;
7939 	}
7940 
7941 	error = vn_remove(DI_CACHE_FILE, UIO_SYSSPACE, RMFILE);
7942 	if (di_cache_debug && error && error != ENOENT) {
7943 		cmn_err(CE_WARN, "%s: unlink failed: %d", DI_CACHE_FILE, error);
7944 	} else if (di_cache_debug && !error) {
7945 		cmn_err(CE_NOTE, "i_ddi_di_cache_free: unlinked cache file");
7946 	}
7947 }
7948 
7949 void
7950 i_ddi_di_cache_invalidate()
7951 {
7952 	int	cache_valid;
7953 
7954 	if (!modrootloaded || !i_ddi_io_initialized()) {
7955 		if (di_cache_debug)
7956 			cmn_err(CE_NOTE, "I/O not inited. Skipping invalidate");
7957 		return;
7958 	}
7959 
7960 	/* Increment devtree generation number. */
7961 	atomic_inc_ulong(&devtree_gen);
7962 
7963 	/* Invalidate the in-core cache and dispatch free on valid->invalid */
7964 	cache_valid = atomic_swap_uint(&di_cache.cache_valid, 0);
7965 	if (cache_valid) {
7966 		/*
7967 		 * This is an optimization to start cleaning up a cached
7968 		 * snapshot early.  For this reason, it is OK for
7969 		 * taskq_dispatach to fail (and it is OK to not track calling
7970 		 * context relative to sleep, and assume NOSLEEP).
7971 		 */
7972 		(void) taskq_dispatch(system_taskq, free_cache_task, NULL,
7973 		    TQ_NOSLEEP);
7974 	}
7975 
7976 	if (di_cache_debug) {
7977 		cmn_err(CE_NOTE, "invalidation");
7978 	}
7979 }
7980 
7981 
7982 static void
7983 i_bind_vhci_node(dev_info_t *dip)
7984 {
7985 	DEVI(dip)->devi_major = ddi_name_to_major(ddi_node_name(dip));
7986 	i_ddi_set_node_state(dip, DS_BOUND);
7987 }
7988 
7989 static char vhci_node_addr[2];
7990 
7991 static int
7992 i_init_vhci_node(dev_info_t *dip)
7993 {
7994 	add_global_props(dip);
7995 	DEVI(dip)->devi_ops = ndi_hold_driver(dip);
7996 	if (DEVI(dip)->devi_ops == NULL)
7997 		return (-1);
7998 
7999 	DEVI(dip)->devi_instance = e_ddi_assign_instance(dip);
8000 	e_ddi_keep_instance(dip);
8001 	vhci_node_addr[0]	= '\0';
8002 	ddi_set_name_addr(dip, vhci_node_addr);
8003 	i_ddi_set_node_state(dip, DS_INITIALIZED);
8004 	return (0);
8005 }
8006 
8007 static void
8008 i_link_vhci_node(dev_info_t *dip)
8009 {
8010 	ASSERT(MUTEX_HELD(&global_vhci_lock));
8011 
8012 	/*
8013 	 * scsi_vhci should be kept left most of the device tree.
8014 	 */
8015 	if (scsi_vhci_dip) {
8016 		DEVI(dip)->devi_sibling = DEVI(scsi_vhci_dip)->devi_sibling;
8017 		DEVI(scsi_vhci_dip)->devi_sibling = DEVI(dip);
8018 	} else {
8019 		DEVI(dip)->devi_sibling = DEVI(top_devinfo)->devi_child;
8020 		DEVI(top_devinfo)->devi_child = DEVI(dip);
8021 	}
8022 }
8023 
8024 
8025 /*
8026  * This a special routine to enumerate vhci node (child of rootnex
8027  * node) without holding the ndi_devi_enter() lock. The device node
8028  * is allocated, initialized and brought into DS_READY state before
8029  * inserting into the device tree. The VHCI node is handcrafted
8030  * here to bring the node to DS_READY, similar to rootnex node.
8031  *
8032  * The global_vhci_lock protects linking the node into the device
8033  * as same lock is held before linking/unlinking any direct child
8034  * of rootnex children.
8035  *
8036  * This routine is a workaround to handle a possible deadlock
8037  * that occurs while trying to enumerate node in a different sub-tree
8038  * during _init/_attach entry points.
8039  */
8040 /*ARGSUSED*/
8041 dev_info_t *
8042 ndi_devi_config_vhci(char *drvname, int flags)
8043 {
8044 	struct devnames		*dnp;
8045 	dev_info_t		*dip;
8046 	major_t			major = ddi_name_to_major(drvname);
8047 
8048 	if (major == -1)
8049 		return (NULL);
8050 
8051 	/* Make sure we create the VHCI node only once */
8052 	dnp = &devnamesp[major];
8053 	LOCK_DEV_OPS(&dnp->dn_lock);
8054 	if (dnp->dn_head) {
8055 		dip = dnp->dn_head;
8056 		UNLOCK_DEV_OPS(&dnp->dn_lock);
8057 		return (dip);
8058 	}
8059 	UNLOCK_DEV_OPS(&dnp->dn_lock);
8060 
8061 	/* Allocate the VHCI node */
8062 	ndi_devi_alloc_sleep(top_devinfo, drvname, DEVI_SID_NODEID, &dip);
8063 	ndi_hold_devi(dip);
8064 
8065 	/* Mark the node as VHCI */
8066 	DEVI(dip)->devi_node_attributes |= DDI_VHCI_NODE;
8067 
8068 	i_ddi_add_devimap(dip);
8069 	i_bind_vhci_node(dip);
8070 	if (i_init_vhci_node(dip) == -1) {
8071 		ndi_rele_devi(dip);
8072 		(void) ndi_devi_free(dip);
8073 		return (NULL);
8074 	}
8075 
8076 	mutex_enter(&(DEVI(dip)->devi_lock));
8077 	DEVI_SET_ATTACHING(dip);
8078 	mutex_exit(&(DEVI(dip)->devi_lock));
8079 
8080 	if (devi_attach(dip, DDI_ATTACH) != DDI_SUCCESS) {
8081 		cmn_err(CE_CONT, "Could not attach %s driver", drvname);
8082 		e_ddi_free_instance(dip, vhci_node_addr);
8083 		ndi_rele_devi(dip);
8084 		(void) ndi_devi_free(dip);
8085 		return (NULL);
8086 	}
8087 	mutex_enter(&(DEVI(dip)->devi_lock));
8088 	DEVI_CLR_ATTACHING(dip);
8089 	mutex_exit(&(DEVI(dip)->devi_lock));
8090 
8091 	mutex_enter(&global_vhci_lock);
8092 	i_link_vhci_node(dip);
8093 	mutex_exit(&global_vhci_lock);
8094 	i_ddi_set_node_state(dip, DS_READY);
8095 
8096 	LOCK_DEV_OPS(&dnp->dn_lock);
8097 	dnp->dn_flags |= DN_DRIVER_HELD;
8098 	dnp->dn_head = dip;
8099 	UNLOCK_DEV_OPS(&dnp->dn_lock);
8100 
8101 	i_ndi_devi_report_status_change(dip, NULL);
8102 
8103 	return (dip);
8104 }
8105 
8106 /*
8107  * Maintain DEVI_DEVICE_REMOVED hotplug devi_state for remove/reinsert hotplug
8108  * of open devices. Currently, because of tight coupling between the devfs file
8109  * system and the Solaris device tree, a driver can't always make the device
8110  * tree state (esp devi_node_state) match device hardware hotplug state. Until
8111  * resolved, to overcome this deficiency we use the following interfaces that
8112  * maintain the DEVI_DEVICE_REMOVED devi_state status bit.  These interface
8113  * report current state, and drive operation (like events and cache
8114  * invalidation) when a driver changes remove/insert state of an open device.
8115  *
8116  * The ndi_devi_device_isremoved() returns 1 if the device is currently removed.
8117  *
8118  * The ndi_devi_device_remove() interface declares the device as removed, and
8119  * returns 1 if there was a state change associated with this declaration.
8120  *
8121  * The ndi_devi_device_insert() declares the device as inserted, and returns 1
8122  * if there was a state change associated with this declaration.
8123  */
8124 int
8125 ndi_devi_device_isremoved(dev_info_t *dip)
8126 {
8127 	return (DEVI_IS_DEVICE_REMOVED(dip));
8128 }
8129 
8130 int
8131 ndi_devi_device_remove(dev_info_t *dip)
8132 {
8133 	ASSERT(dip && ddi_get_parent(dip) &&
8134 	    DEVI_BUSY_OWNED(ddi_get_parent(dip)));
8135 
8136 	/* Return if already marked removed. */
8137 	if (ndi_devi_device_isremoved(dip))
8138 		return (0);
8139 
8140 	/* Mark the device as having been physically removed. */
8141 	mutex_enter(&(DEVI(dip)->devi_lock));
8142 	ndi_devi_set_hidden(dip);	/* invisible: lookup/snapshot */
8143 	DEVI_SET_DEVICE_REMOVED(dip);
8144 	DEVI_SET_EVREMOVE(dip);		/* this clears EVADD too */
8145 	mutex_exit(&(DEVI(dip)->devi_lock));
8146 
8147 	/* report remove (as 'removed') */
8148 	i_ndi_devi_report_status_change(dip, NULL);
8149 
8150 	/*
8151 	 * Invalidate the cache to ensure accurate
8152 	 * (di_state() & DI_DEVICE_REMOVED).
8153 	 */
8154 	i_ddi_di_cache_invalidate();
8155 
8156 	/*
8157 	 * Generate sysevent for those interested in removal (either
8158 	 * directly via private EC_DEVFS or indirectly via devfsadmd
8159 	 * generated EC_DEV). This will generate LDI DEVICE_REMOVE
8160 	 * event too.
8161 	 */
8162 	i_ddi_log_devfs_device_remove(dip);
8163 
8164 	return (1);		/* DEVICE_REMOVED state changed */
8165 }
8166 
8167 int
8168 ndi_devi_device_insert(dev_info_t *dip)
8169 {
8170 	ASSERT(dip && ddi_get_parent(dip) &&
8171 	    DEVI_BUSY_OWNED(ddi_get_parent(dip)));
8172 
8173 	/* Return if not marked removed. */
8174 	if (!ndi_devi_device_isremoved(dip))
8175 		return (0);
8176 
8177 	/* Mark the device as having been physically reinserted. */
8178 	mutex_enter(&(DEVI(dip)->devi_lock));
8179 	ndi_devi_clr_hidden(dip);	/* visible: lookup/snapshot */
8180 	DEVI_SET_DEVICE_REINSERTED(dip);
8181 	DEVI_SET_EVADD(dip);		/* this clears EVREMOVE too */
8182 	mutex_exit(&(DEVI(dip)->devi_lock));
8183 
8184 	/* report insert (as 'online') */
8185 	i_ndi_devi_report_status_change(dip, NULL);
8186 
8187 	/*
8188 	 * Invalidate the cache to ensure accurate
8189 	 * (di_state() & DI_DEVICE_REMOVED).
8190 	 */
8191 	i_ddi_di_cache_invalidate();
8192 
8193 	/*
8194 	 * Generate sysevent for those interested in removal (either directly
8195 	 * via EC_DEVFS or indirectly via devfsadmd generated EC_DEV).
8196 	 */
8197 	i_ddi_log_devfs_device_insert(dip);
8198 
8199 	return (1);		/* DEVICE_REMOVED state changed */
8200 }
8201 
8202 /*
8203  * ibt_hw_is_present() returns 0 when there is no IB hardware actively
8204  * running.  This is primarily useful for modules like rpcmod which
8205  * needs a quick check to decide whether or not it should try to use
8206  * InfiniBand
8207  */
8208 int ib_hw_status = 0;
8209 int
8210 ibt_hw_is_present()
8211 {
8212 	return (ib_hw_status);
8213 }
8214 
8215 /*
8216  * ASSERT that constraint flag is not set and then set the "retire attempt"
8217  * flag.
8218  */
8219 int
8220 e_ddi_mark_retiring(dev_info_t *dip, void *arg)
8221 {
8222 	char	**cons_array = (char **)arg;
8223 	char	*path;
8224 	int	constraint;
8225 	int	i;
8226 
8227 	constraint = 0;
8228 	if (cons_array) {
8229 		path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
8230 		(void) ddi_pathname(dip, path);
8231 		for (i = 0; cons_array[i] != NULL; i++) {
8232 			if (strcmp(path, cons_array[i]) == 0) {
8233 				constraint = 1;
8234 				break;
8235 			}
8236 		}
8237 		kmem_free(path, MAXPATHLEN);
8238 	}
8239 
8240 	mutex_enter(&DEVI(dip)->devi_lock);
8241 	ASSERT(!(DEVI(dip)->devi_flags & DEVI_R_CONSTRAINT));
8242 	DEVI(dip)->devi_flags |= DEVI_RETIRING;
8243 	if (constraint)
8244 		DEVI(dip)->devi_flags |= DEVI_R_CONSTRAINT;
8245 	mutex_exit(&DEVI(dip)->devi_lock);
8246 
8247 	RIO_VERBOSE((CE_NOTE, "marked dip as undergoing retire process dip=%p",
8248 	    (void *)dip));
8249 
8250 	if (constraint)
8251 		RIO_DEBUG((CE_NOTE, "marked dip as constrained, dip=%p",
8252 		    (void *)dip));
8253 
8254 	if (MDI_PHCI(dip))
8255 		mdi_phci_mark_retiring(dip, cons_array);
8256 
8257 	return (DDI_WALK_CONTINUE);
8258 }
8259 
8260 static void
8261 free_array(char **cons_array)
8262 {
8263 	int	i;
8264 
8265 	if (cons_array == NULL)
8266 		return;
8267 
8268 	for (i = 0; cons_array[i] != NULL; i++) {
8269 		kmem_free(cons_array[i], strlen(cons_array[i]) + 1);
8270 	}
8271 	kmem_free(cons_array, (i+1) * sizeof (char *));
8272 }
8273 
8274 /*
8275  * Walk *every* node in subtree and check if it blocks, allows or has no
8276  * comment on a proposed retire.
8277  */
8278 int
8279 e_ddi_retire_notify(dev_info_t *dip, void *arg)
8280 {
8281 	int	*constraint = (int *)arg;
8282 
8283 	RIO_DEBUG((CE_NOTE, "retire notify: dip = %p", (void *)dip));
8284 
8285 	(void) e_ddi_offline_notify(dip);
8286 
8287 	mutex_enter(&(DEVI(dip)->devi_lock));
8288 	if (!(DEVI(dip)->devi_flags & DEVI_RETIRING)) {
8289 		RIO_DEBUG((CE_WARN, "retire notify: dip in retire "
8290 		    "subtree is not marked: dip = %p", (void *)dip));
8291 		*constraint = 0;
8292 	} else if (DEVI(dip)->devi_flags & DEVI_R_BLOCKED) {
8293 		ASSERT(!(DEVI(dip)->devi_flags & DEVI_R_CONSTRAINT));
8294 		RIO_DEBUG((CE_NOTE, "retire notify: BLOCKED: dip = %p",
8295 		    (void *)dip));
8296 		*constraint = 0;
8297 	} else if (!(DEVI(dip)->devi_flags & DEVI_R_CONSTRAINT)) {
8298 		RIO_DEBUG((CE_NOTE, "retire notify: NO CONSTRAINT: "
8299 		    "dip = %p", (void *)dip));
8300 		*constraint = 0;
8301 	} else {
8302 		RIO_DEBUG((CE_NOTE, "retire notify: CONSTRAINT set: "
8303 		    "dip = %p", (void *)dip));
8304 	}
8305 	mutex_exit(&DEVI(dip)->devi_lock);
8306 
8307 	if (MDI_PHCI(dip))
8308 		mdi_phci_retire_notify(dip, constraint);
8309 
8310 	return (DDI_WALK_CONTINUE);
8311 }
8312 
8313 int
8314 e_ddi_retire_finalize(dev_info_t *dip, void *arg)
8315 {
8316 	int constraint = *(int *)arg;
8317 	int finalize;
8318 	int phci_only;
8319 
8320 	mutex_enter(&DEVI(dip)->devi_lock);
8321 	if (!(DEVI(dip)->devi_flags & DEVI_RETIRING)) {
8322 		RIO_DEBUG((CE_WARN,
8323 		    "retire: unmarked dip(%p) in retire subtree",
8324 		    (void *)dip));
8325 		ASSERT(!(DEVI(dip)->devi_flags & DEVI_RETIRED));
8326 		ASSERT(!(DEVI(dip)->devi_flags & DEVI_R_CONSTRAINT));
8327 		ASSERT(!(DEVI(dip)->devi_flags & DEVI_R_BLOCKED));
8328 		mutex_exit(&DEVI(dip)->devi_lock);
8329 		return (DDI_WALK_CONTINUE);
8330 	}
8331 
8332 	/*
8333 	 * retire the device if constraints have been applied
8334 	 * or if the device is not in use
8335 	 */
8336 	finalize = 0;
8337 	if (constraint) {
8338 		ASSERT(DEVI_BUSY_OWNED(ddi_get_parent(dip)));
8339 
8340 		ASSERT(DEVI(dip)->devi_flags & DEVI_R_CONSTRAINT);
8341 		ASSERT(!(DEVI(dip)->devi_flags & DEVI_R_BLOCKED));
8342 		DEVI(dip)->devi_flags &= ~DEVI_R_CONSTRAINT;
8343 		DEVI(dip)->devi_flags &= ~DEVI_RETIRING;
8344 		DEVI(dip)->devi_flags |= DEVI_RETIRED;
8345 		mutex_exit(&DEVI(dip)->devi_lock);
8346 		(void) spec_fence_snode(dip, NULL);
8347 		RIO_DEBUG((CE_NOTE, "Fenced off: dip = %p", (void *)dip));
8348 		e_ddi_offline_finalize(dip, DDI_SUCCESS);
8349 	} else {
8350 		if (DEVI(dip)->devi_flags & DEVI_R_BLOCKED) {
8351 			ASSERT(!(DEVI(dip)->devi_flags & DEVI_R_CONSTRAINT));
8352 			DEVI(dip)->devi_flags &= ~DEVI_R_BLOCKED;
8353 			DEVI(dip)->devi_flags &= ~DEVI_RETIRING;
8354 			/* we have already finalized during notify */
8355 		} else if (DEVI(dip)->devi_flags & DEVI_R_CONSTRAINT) {
8356 			DEVI(dip)->devi_flags &= ~DEVI_R_CONSTRAINT;
8357 			DEVI(dip)->devi_flags &= ~DEVI_RETIRING;
8358 			finalize = 1;
8359 		} else {
8360 			DEVI(dip)->devi_flags &= ~DEVI_RETIRING;
8361 			/*
8362 			 * even if no contracts, need to call finalize
8363 			 * to clear the contract barrier on the dip
8364 			 */
8365 			finalize = 1;
8366 		}
8367 		mutex_exit(&DEVI(dip)->devi_lock);
8368 		RIO_DEBUG((CE_NOTE, "finalize: NOT retired: dip = %p",
8369 		    (void *)dip));
8370 		if (finalize)
8371 			e_ddi_offline_finalize(dip, DDI_FAILURE);
8372 	}
8373 
8374 	/*
8375 	 * phci_only variable indicates no client checking, just
8376 	 * offline the PHCI. We set that to 0 to enable client
8377 	 * checking
8378 	 */
8379 	phci_only = 0;
8380 	if (MDI_PHCI(dip))
8381 		mdi_phci_retire_finalize(dip, phci_only, arg);
8382 
8383 	return (DDI_WALK_CONTINUE);
8384 }
8385 
8386 /*
8387  * Returns
8388  *	DDI_SUCCESS if constraints allow retire
8389  *	DDI_FAILURE if constraints don't allow retire.
8390  * cons_array is a NULL terminated array of node paths for
8391  * which constraints have already been applied.
8392  */
8393 int
8394 e_ddi_retire_device(char *path, char **cons_array)
8395 {
8396 	dev_info_t	*dip;
8397 	dev_info_t	*pdip;
8398 	int		circ;
8399 	int		circ2;
8400 	int		constraint;
8401 	char		*devnm;
8402 
8403 	/*
8404 	 * First, lookup the device
8405 	 */
8406 	dip = e_ddi_hold_devi_by_path(path, 0);
8407 	if (dip == NULL) {
8408 		/*
8409 		 * device does not exist. This device cannot be
8410 		 * a critical device since it is not in use. Thus
8411 		 * this device is always retireable. Return DDI_SUCCESS
8412 		 * to indicate this. If this device is ever
8413 		 * instantiated, I/O framework will consult the
8414 		 * the persistent retire store, mark it as
8415 		 * retired and fence it off.
8416 		 */
8417 		RIO_DEBUG((CE_NOTE, "Retire device: device doesn't exist."
8418 		    " NOP. Just returning SUCCESS. path=%s", path));
8419 		free_array(cons_array);
8420 		return (DDI_SUCCESS);
8421 	}
8422 
8423 	RIO_DEBUG((CE_NOTE, "Retire device: found dip = %p.", (void *)dip));
8424 
8425 	pdip = ddi_get_parent(dip);
8426 	ndi_hold_devi(pdip);
8427 
8428 	/*
8429 	 * Run devfs_clean() in case dip has no constraints and is
8430 	 * not in use, so is retireable but there are dv_nodes holding
8431 	 * ref-count on the dip. Note that devfs_clean() always returns
8432 	 * success.
8433 	 */
8434 	devnm = kmem_alloc(MAXNAMELEN + 1, KM_SLEEP);
8435 	(void) ddi_deviname(dip, devnm);
8436 	(void) devfs_clean(pdip, devnm + 1, DV_CLEAN_FORCE);
8437 	kmem_free(devnm, MAXNAMELEN + 1);
8438 
8439 	ndi_devi_enter(pdip, &circ);
8440 
8441 	/* release hold from e_ddi_hold_devi_by_path */
8442 	ndi_rele_devi(dip);
8443 
8444 	/*
8445 	 * If it cannot make a determination, is_leaf_node() assumes
8446 	 * dip is a nexus.
8447 	 */
8448 	(void) e_ddi_mark_retiring(dip, cons_array);
8449 	if (!is_leaf_node(dip)) {
8450 		ndi_devi_enter(dip, &circ2);
8451 		ddi_walk_devs(ddi_get_child(dip), e_ddi_mark_retiring,
8452 		    cons_array);
8453 		ndi_devi_exit(dip, circ2);
8454 	}
8455 	free_array(cons_array);
8456 
8457 	/*
8458 	 * apply constraints
8459 	 */
8460 	RIO_DEBUG((CE_NOTE, "retire: subtree retire notify: path = %s", path));
8461 
8462 	constraint = 1;	/* assume constraints allow retire */
8463 	(void) e_ddi_retire_notify(dip, &constraint);
8464 	if (!is_leaf_node(dip)) {
8465 		ndi_devi_enter(dip, &circ2);
8466 		ddi_walk_devs(ddi_get_child(dip), e_ddi_retire_notify,
8467 		    &constraint);
8468 		ndi_devi_exit(dip, circ2);
8469 	}
8470 
8471 	/*
8472 	 * Now finalize the retire
8473 	 */
8474 	(void) e_ddi_retire_finalize(dip, &constraint);
8475 	if (!is_leaf_node(dip)) {
8476 		ndi_devi_enter(dip, &circ2);
8477 		ddi_walk_devs(ddi_get_child(dip), e_ddi_retire_finalize,
8478 		    &constraint);
8479 		ndi_devi_exit(dip, circ2);
8480 	}
8481 
8482 	if (!constraint) {
8483 		RIO_DEBUG((CE_WARN, "retire failed: path = %s", path));
8484 	} else {
8485 		RIO_DEBUG((CE_NOTE, "retire succeeded: path = %s", path));
8486 	}
8487 
8488 	ndi_devi_exit(pdip, circ);
8489 	ndi_rele_devi(pdip);
8490 	return (constraint ? DDI_SUCCESS : DDI_FAILURE);
8491 }
8492 
8493 static int
8494 unmark_and_unfence(dev_info_t *dip, void *arg)
8495 {
8496 	char	*path = (char *)arg;
8497 
8498 	ASSERT(path);
8499 
8500 	(void) ddi_pathname(dip, path);
8501 
8502 	mutex_enter(&DEVI(dip)->devi_lock);
8503 	DEVI(dip)->devi_flags &= ~DEVI_RETIRED;
8504 	DEVI_SET_DEVICE_ONLINE(dip);
8505 	mutex_exit(&DEVI(dip)->devi_lock);
8506 
8507 	RIO_VERBOSE((CE_NOTE, "Cleared RETIRED flag: dip=%p, path=%s",
8508 	    (void *)dip, path));
8509 
8510 	(void) spec_unfence_snode(dip);
8511 	RIO_DEBUG((CE_NOTE, "Unfenced device: %s", path));
8512 
8513 	if (MDI_PHCI(dip))
8514 		mdi_phci_unretire(dip);
8515 
8516 	return (DDI_WALK_CONTINUE);
8517 }
8518 
8519 struct find_dip {
8520 	char	*fd_buf;
8521 	char	*fd_path;
8522 	dev_info_t *fd_dip;
8523 };
8524 
8525 static int
8526 find_dip_fcn(dev_info_t *dip, void *arg)
8527 {
8528 	struct find_dip *findp = (struct find_dip *)arg;
8529 
8530 	(void) ddi_pathname(dip, findp->fd_buf);
8531 
8532 	if (strcmp(findp->fd_path, findp->fd_buf) != 0)
8533 		return (DDI_WALK_CONTINUE);
8534 
8535 	ndi_hold_devi(dip);
8536 	findp->fd_dip = dip;
8537 
8538 	return (DDI_WALK_TERMINATE);
8539 }
8540 
8541 int
8542 e_ddi_unretire_device(char *path)
8543 {
8544 	int		circ;
8545 	int		circ2;
8546 	char		*path2;
8547 	dev_info_t	*pdip;
8548 	dev_info_t	*dip;
8549 	struct find_dip	 find_dip;
8550 
8551 	ASSERT(path);
8552 	ASSERT(*path == '/');
8553 
8554 	if (strcmp(path, "/") == 0) {
8555 		cmn_err(CE_WARN, "Root node cannot be retired. Skipping "
8556 		    "device unretire: %s", path);
8557 		return (0);
8558 	}
8559 
8560 	/*
8561 	 * We can't lookup the dip (corresponding to path) via
8562 	 * e_ddi_hold_devi_by_path() because the dip may be offline
8563 	 * and may not attach. Use ddi_walk_devs() instead;
8564 	 */
8565 	find_dip.fd_buf = kmem_alloc(MAXPATHLEN, KM_SLEEP);
8566 	find_dip.fd_path = path;
8567 	find_dip.fd_dip = NULL;
8568 
8569 	pdip = ddi_root_node();
8570 
8571 	ndi_devi_enter(pdip, &circ);
8572 	ddi_walk_devs(ddi_get_child(pdip), find_dip_fcn, &find_dip);
8573 	ndi_devi_exit(pdip, circ);
8574 
8575 	kmem_free(find_dip.fd_buf, MAXPATHLEN);
8576 
8577 	if (find_dip.fd_dip == NULL) {
8578 		cmn_err(CE_WARN, "Device not found in device tree. Skipping "
8579 		    "device unretire: %s", path);
8580 		return (0);
8581 	}
8582 
8583 	dip = find_dip.fd_dip;
8584 
8585 	pdip = ddi_get_parent(dip);
8586 
8587 	ndi_hold_devi(pdip);
8588 
8589 	ndi_devi_enter(pdip, &circ);
8590 
8591 	path2 = kmem_alloc(MAXPATHLEN, KM_SLEEP);
8592 
8593 	(void) unmark_and_unfence(dip, path2);
8594 	if (!is_leaf_node(dip)) {
8595 		ndi_devi_enter(dip, &circ2);
8596 		ddi_walk_devs(ddi_get_child(dip), unmark_and_unfence, path2);
8597 		ndi_devi_exit(dip, circ2);
8598 	}
8599 
8600 	kmem_free(path2, MAXPATHLEN);
8601 
8602 	/* release hold from find_dip_fcn() */
8603 	ndi_rele_devi(dip);
8604 
8605 	ndi_devi_exit(pdip, circ);
8606 
8607 	ndi_rele_devi(pdip);
8608 
8609 	return (0);
8610 }
8611 
8612 /*
8613  * Called before attach on a dip that has been retired.
8614  */
8615 static int
8616 mark_and_fence(dev_info_t *dip, void *arg)
8617 {
8618 	char	*fencepath = (char *)arg;
8619 
8620 	/*
8621 	 * We have already decided to retire this device. The various
8622 	 * constraint checking should not be set.
8623 	 * NOTE that the retire flag may already be set due to
8624 	 * fenced -> detach -> fenced transitions.
8625 	 */
8626 	mutex_enter(&DEVI(dip)->devi_lock);
8627 	ASSERT(!(DEVI(dip)->devi_flags & DEVI_R_CONSTRAINT));
8628 	ASSERT(!(DEVI(dip)->devi_flags & DEVI_R_BLOCKED));
8629 	ASSERT(!(DEVI(dip)->devi_flags & DEVI_RETIRING));
8630 	DEVI(dip)->devi_flags |= DEVI_RETIRED;
8631 	mutex_exit(&DEVI(dip)->devi_lock);
8632 	RIO_VERBOSE((CE_NOTE, "marked as RETIRED dip=%p", (void *)dip));
8633 
8634 	if (fencepath) {
8635 		(void) spec_fence_snode(dip, NULL);
8636 		RIO_DEBUG((CE_NOTE, "Fenced: %s",
8637 		    ddi_pathname(dip, fencepath)));
8638 	}
8639 
8640 	return (DDI_WALK_CONTINUE);
8641 }
8642 
8643 /*
8644  * Checks the retire database and:
8645  *
8646  * - if device is present in the retire database, marks the device retired
8647  *   and fences it off.
8648  * - if device is not in retire database, allows the device to attach normally
8649  *
8650  * To be called only by framework attach code on first attach attempt.
8651  *
8652  */
8653 static int
8654 i_ddi_check_retire(dev_info_t *dip)
8655 {
8656 	char		*path;
8657 	dev_info_t	*pdip;
8658 	int		circ;
8659 	int		phci_only;
8660 	int		constraint;
8661 
8662 	pdip = ddi_get_parent(dip);
8663 
8664 	/*
8665 	 * Root dip is treated special and doesn't take this code path.
8666 	 * Also root can never be retired.
8667 	 */
8668 	ASSERT(pdip);
8669 	ASSERT(DEVI_BUSY_OWNED(pdip));
8670 	ASSERT(i_ddi_node_state(dip) < DS_ATTACHED);
8671 
8672 	path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
8673 
8674 	(void) ddi_pathname(dip, path);
8675 
8676 	RIO_VERBOSE((CE_NOTE, "Checking if dip should attach: dip=%p, path=%s",
8677 	    (void *)dip, path));
8678 
8679 	/*
8680 	 * Check if this device is in the "retired" store i.e.	should
8681 	 * be retired. If not, we have nothing to do.
8682 	 */
8683 	if (e_ddi_device_retired(path) == 0) {
8684 		RIO_VERBOSE((CE_NOTE, "device is NOT retired: path=%s", path));
8685 		if (DEVI(dip)->devi_flags & DEVI_RETIRED)
8686 			(void) e_ddi_unretire_device(path);
8687 		kmem_free(path, MAXPATHLEN);
8688 		return (0);
8689 	}
8690 
8691 	RIO_DEBUG((CE_NOTE, "attach: device is retired: path=%s", path));
8692 
8693 	/*
8694 	 * Mark dips and fence off snodes (if any)
8695 	 */
8696 	RIO_DEBUG((CE_NOTE, "attach: Mark and fence subtree: path=%s", path));
8697 	(void) mark_and_fence(dip, path);
8698 	if (!is_leaf_node(dip)) {
8699 		ndi_devi_enter(dip, &circ);
8700 		ddi_walk_devs(ddi_get_child(dip), mark_and_fence, path);
8701 		ndi_devi_exit(dip, circ);
8702 	}
8703 
8704 	kmem_free(path, MAXPATHLEN);
8705 
8706 	/*
8707 	 * We don't want to check the client. We just want to
8708 	 * offline the PHCI
8709 	 */
8710 	phci_only = 1;
8711 	constraint = 1;
8712 	if (MDI_PHCI(dip))
8713 		mdi_phci_retire_finalize(dip, phci_only, &constraint);
8714 	return (1);
8715 }
8716 
8717 
8718 #define	VAL_ALIAS(array, x)	(strlen(array[x].pair_alias))
8719 #define	VAL_CURR(array, x)	(strlen(array[x].pair_curr))
8720 #define	SWAP(array, x, y)			\
8721 {						\
8722 	alias_pair_t tmpair = array[x];		\
8723 	array[x] = array[y];			\
8724 	array[y] = tmpair;			\
8725 }
8726 
8727 static int
8728 partition_curr(alias_pair_t *array, int start, int end)
8729 {
8730 	int	i = start - 1;
8731 	int	j = end + 1;
8732 	int	pivot = start;
8733 
8734 	for (;;) {
8735 		do {
8736 			j--;
8737 		} while (VAL_CURR(array, j) > VAL_CURR(array, pivot));
8738 
8739 		do {
8740 			i++;
8741 		} while (VAL_CURR(array, i) < VAL_CURR(array, pivot));
8742 
8743 		if (i < j)
8744 			SWAP(array, i, j)
8745 		else
8746 			return (j);
8747 	}
8748 }
8749 
8750 static int
8751 partition_aliases(alias_pair_t *array, int start, int end)
8752 {
8753 	int	i = start - 1;
8754 	int	j = end + 1;
8755 	int	pivot = start;
8756 
8757 	for (;;) {
8758 		do {
8759 			j--;
8760 		} while (VAL_ALIAS(array, j) > VAL_ALIAS(array, pivot));
8761 
8762 		do {
8763 			i++;
8764 		} while (VAL_ALIAS(array, i) < VAL_ALIAS(array, pivot));
8765 
8766 		if (i < j)
8767 			SWAP(array, i, j)
8768 		else
8769 			return (j);
8770 	}
8771 }
8772 static void
8773 sort_alias_pairs(alias_pair_t *array, int start, int end)
8774 {
8775 	int mid;
8776 
8777 	if (start < end) {
8778 		mid = partition_aliases(array, start, end);
8779 		sort_alias_pairs(array, start, mid);
8780 		sort_alias_pairs(array, mid + 1, end);
8781 	}
8782 }
8783 
8784 static void
8785 sort_curr_pairs(alias_pair_t *array, int start, int end)
8786 {
8787 	int mid;
8788 
8789 	if (start < end) {
8790 		mid = partition_curr(array, start, end);
8791 		sort_curr_pairs(array, start, mid);
8792 		sort_curr_pairs(array, mid + 1, end);
8793 	}
8794 }
8795 
8796 static void
8797 create_sorted_pairs(plat_alias_t *pali, int npali)
8798 {
8799 	int		i;
8800 	int		j;
8801 	int		k;
8802 	int		count;
8803 
8804 	count = 0;
8805 	for (i = 0; i < npali; i++) {
8806 		count += pali[i].pali_naliases;
8807 	}
8808 
8809 	ddi_aliases.dali_alias_pairs = kmem_zalloc(
8810 	    (sizeof (alias_pair_t)) * count, KM_NOSLEEP);
8811 	if (ddi_aliases.dali_alias_pairs == NULL) {
8812 		cmn_err(CE_PANIC, "alias path-pair alloc failed");
8813 		/*NOTREACHED*/
8814 	}
8815 
8816 	ddi_aliases.dali_curr_pairs = kmem_zalloc(
8817 	    (sizeof (alias_pair_t)) * count, KM_NOSLEEP);
8818 	if (ddi_aliases.dali_curr_pairs == NULL) {
8819 		cmn_err(CE_PANIC, "curr path-pair alloc failed");
8820 		/*NOTREACHED*/
8821 	}
8822 
8823 	for (i = 0, k = 0; i < npali; i++) {
8824 		for (j = 0; j < pali[i].pali_naliases; j++, k++) {
8825 			ddi_aliases.dali_alias_pairs[k].pair_curr =
8826 			    ddi_aliases.dali_curr_pairs[k].pair_curr =
8827 			    pali[i].pali_current;
8828 			ddi_aliases.dali_alias_pairs[k].pair_alias =
8829 			    ddi_aliases.dali_curr_pairs[k].pair_alias =
8830 			    pali[i].pali_aliases[j];
8831 		}
8832 	}
8833 
8834 	ASSERT(k == count);
8835 
8836 	ddi_aliases.dali_num_pairs = count;
8837 
8838 	/* Now sort the array based on length of pair_alias */
8839 	sort_alias_pairs(ddi_aliases.dali_alias_pairs, 0, count - 1);
8840 	sort_curr_pairs(ddi_aliases.dali_curr_pairs, 0, count - 1);
8841 }
8842 
8843 void
8844 ddi_register_aliases(plat_alias_t *pali, uint64_t npali)
8845 {
8846 
8847 	ASSERT((pali == NULL) ^ (npali != 0));
8848 
8849 	if (npali == 0) {
8850 		ddi_err(DER_PANIC, NULL, "npali == 0");
8851 		/*NOTREACHED*/
8852 	}
8853 
8854 	if (ddi_aliases_present == B_TRUE) {
8855 		ddi_err(DER_PANIC, NULL, "multiple init");
8856 		/*NOTREACHED*/
8857 	}
8858 
8859 	ddi_aliases.dali_alias_TLB = mod_hash_create_strhash(
8860 	    "ddi-alias-tlb", DDI_ALIAS_HASH_SIZE, mod_hash_null_valdtor);
8861 	if (ddi_aliases.dali_alias_TLB == NULL) {
8862 		ddi_err(DER_PANIC, NULL, "alias TLB hash alloc failed");
8863 		/*NOTREACHED*/
8864 	}
8865 
8866 	ddi_aliases.dali_curr_TLB = mod_hash_create_strhash(
8867 	    "ddi-curr-tlb", DDI_ALIAS_HASH_SIZE, mod_hash_null_valdtor);
8868 	if (ddi_aliases.dali_curr_TLB == NULL) {
8869 		ddi_err(DER_PANIC, NULL, "curr TLB hash alloc failed");
8870 		/*NOTREACHED*/
8871 	}
8872 
8873 	create_sorted_pairs(pali, npali);
8874 
8875 	tsd_create(&tsd_ddi_redirect, NULL);
8876 
8877 	ddi_aliases_present = B_TRUE;
8878 }
8879 
8880 static dev_info_t *
8881 path_to_dip(char *path)
8882 {
8883 	dev_info_t	*currdip;
8884 	int		error;
8885 	char		*pdup;
8886 
8887 	pdup = ddi_strdup(path, KM_NOSLEEP);
8888 	if (pdup == NULL) {
8889 		cmn_err(CE_PANIC, "path strdup failed: %s", path);
8890 		/*NOTREACHED*/
8891 	}
8892 
8893 	error = resolve_pathname(pdup, &currdip, NULL, NULL);
8894 
8895 	kmem_free(pdup, strlen(path) + 1);
8896 
8897 	return (error ? NULL : currdip);
8898 }
8899 
8900 dev_info_t *
8901 ddi_alias_to_currdip(char *alias, int i)
8902 {
8903 	alias_pair_t *pair;
8904 	char *curr;
8905 	dev_info_t *currdip = NULL;
8906 	char *aliasdup;
8907 	int rv, len;
8908 
8909 	pair = &(ddi_aliases.dali_alias_pairs[i]);
8910 	len = strlen(pair->pair_alias);
8911 
8912 	curr = NULL;
8913 	aliasdup = ddi_strdup(alias, KM_NOSLEEP);
8914 	if (aliasdup == NULL) {
8915 		cmn_err(CE_PANIC, "aliasdup alloc failed");
8916 		/*NOTREACHED*/
8917 	}
8918 
8919 	if (strncmp(alias, pair->pair_alias, len)  != 0)
8920 		goto out;
8921 
8922 	if (alias[len] != '/' && alias[len] != '\0')
8923 		goto out;
8924 
8925 	curr = kmem_alloc(MAXPATHLEN, KM_NOSLEEP);
8926 	if (curr == NULL) {
8927 		cmn_err(CE_PANIC, "curr alloc failed");
8928 		/*NOTREACHED*/
8929 	}
8930 	(void) strlcpy(curr, pair->pair_curr, MAXPATHLEN);
8931 	if (alias[len] == '/') {
8932 		(void) strlcat(curr, "/", MAXPATHLEN);
8933 		(void) strlcat(curr, &alias[len + 1], MAXPATHLEN);
8934 	}
8935 
8936 	currdip = path_to_dip(curr);
8937 
8938 out:
8939 	if (currdip) {
8940 		rv = mod_hash_insert(ddi_aliases.dali_alias_TLB,
8941 		    (mod_hash_key_t)aliasdup, (mod_hash_val_t)curr);
8942 		if (rv != 0) {
8943 			kmem_free(curr, MAXPATHLEN);
8944 			strfree(aliasdup);
8945 		}
8946 	} else {
8947 		rv = mod_hash_insert(ddi_aliases.dali_alias_TLB,
8948 		    (mod_hash_key_t)aliasdup, (mod_hash_val_t)NULL);
8949 		if (rv != 0) {
8950 			strfree(aliasdup);
8951 		}
8952 		if (curr)
8953 			kmem_free(curr, MAXPATHLEN);
8954 	}
8955 
8956 	return (currdip);
8957 }
8958 
8959 char *
8960 ddi_curr_to_alias(char *curr, int i)
8961 {
8962 	alias_pair_t	*pair;
8963 	char		*alias;
8964 	char		*currdup;
8965 	int		len;
8966 	int		rv;
8967 
8968 	pair = &(ddi_aliases.dali_curr_pairs[i]);
8969 
8970 	len = strlen(pair->pair_curr);
8971 
8972 	alias = NULL;
8973 
8974 	currdup = ddi_strdup(curr, KM_NOSLEEP);
8975 	if (currdup == NULL) {
8976 		cmn_err(CE_PANIC, "currdup alloc failed");
8977 		/*NOTREACHED*/
8978 	}
8979 
8980 	if (strncmp(curr, pair->pair_curr, len) != 0)
8981 		goto out;
8982 
8983 	if (curr[len] != '/' && curr[len] != '\0')
8984 		goto out;
8985 
8986 	alias = kmem_alloc(MAXPATHLEN, KM_NOSLEEP);
8987 	if (alias == NULL) {
8988 		cmn_err(CE_PANIC, "alias alloc failed");
8989 		/*NOTREACHED*/
8990 	}
8991 
8992 	(void) strlcpy(alias, pair->pair_alias, MAXPATHLEN);
8993 	if (curr[len] == '/') {
8994 		(void) strlcat(alias, "/", MAXPATHLEN);
8995 		(void) strlcat(alias, &curr[len + 1], MAXPATHLEN);
8996 	}
8997 
8998 	if (e_ddi_path_to_instance(alias) == NULL) {
8999 		kmem_free(alias, MAXPATHLEN);
9000 		alias = NULL;
9001 	}
9002 
9003 out:
9004 	rv = mod_hash_insert(ddi_aliases.dali_curr_TLB,
9005 	    (mod_hash_key_t)currdup, (mod_hash_val_t)alias);
9006 	if (rv != 0) {
9007 		strfree(currdup);
9008 	}
9009 
9010 	return (alias);
9011 }
9012 
9013 dev_info_t *
9014 ddi_alias_redirect(char *alias)
9015 {
9016 	char		*curr;
9017 	dev_info_t	*currdip;
9018 	int		i;
9019 
9020 	if (ddi_aliases_present == B_FALSE)
9021 		return (NULL);
9022 
9023 	if (tsd_get(tsd_ddi_redirect))
9024 		return (NULL);
9025 
9026 	(void) tsd_set(tsd_ddi_redirect, (void *)1);
9027 
9028 	ASSERT(ddi_aliases.dali_alias_TLB);
9029 	ASSERT(ddi_aliases.dali_alias_pairs);
9030 
9031 	curr = NULL;
9032 	if (mod_hash_find(ddi_aliases.dali_alias_TLB,
9033 	    (mod_hash_key_t)alias, (mod_hash_val_t *)&curr) == 0) {
9034 		currdip = curr ? path_to_dip(curr) : NULL;
9035 		goto out;
9036 	}
9037 
9038 	/* The TLB has no translation, do it the hard way */
9039 	currdip = NULL;
9040 	for (i = ddi_aliases.dali_num_pairs - 1; i >= 0; i--) {
9041 		currdip = ddi_alias_to_currdip(alias, i);
9042 		if (currdip)
9043 			break;
9044 	}
9045 out:
9046 	(void) tsd_set(tsd_ddi_redirect, NULL);
9047 
9048 	return (currdip);
9049 }
9050 
9051 char *
9052 ddi_curr_redirect(char *curr)
9053 {
9054 	char 	*alias;
9055 	int i;
9056 
9057 	if (ddi_aliases_present == B_FALSE)
9058 		return (NULL);
9059 
9060 	if (tsd_get(tsd_ddi_redirect))
9061 		return (NULL);
9062 
9063 	(void) tsd_set(tsd_ddi_redirect, (void *)1);
9064 
9065 	ASSERT(ddi_aliases.dali_curr_TLB);
9066 	ASSERT(ddi_aliases.dali_curr_pairs);
9067 
9068 	alias = NULL;
9069 	if (mod_hash_find(ddi_aliases.dali_curr_TLB,
9070 	    (mod_hash_key_t)curr, (mod_hash_val_t *)&alias) == 0) {
9071 		goto out;
9072 	}
9073 
9074 
9075 	/* The TLB has no translation, do it the slow way */
9076 	alias = NULL;
9077 	for (i = ddi_aliases.dali_num_pairs - 1; i >= 0; i--) {
9078 		alias = ddi_curr_to_alias(curr, i);
9079 		if (alias)
9080 			break;
9081 	}
9082 
9083 out:
9084 	(void) tsd_set(tsd_ddi_redirect, NULL);
9085 
9086 	return (alias);
9087 }
9088 
9089 void
9090 ddi_err(ddi_err_t ade, dev_info_t *rdip, const char *fmt, ...)
9091 {
9092 	va_list ap;
9093 	char strbuf[256];
9094 	char *buf;
9095 	size_t buflen, tlen;
9096 	int ce;
9097 	int de;
9098 	const char *fmtbad = "Invalid arguments to ddi_err()";
9099 
9100 	de = DER_CONT;
9101 	strbuf[1] = '\0';
9102 
9103 	switch (ade) {
9104 	case DER_CONS:
9105 		strbuf[0] = '^';
9106 		break;
9107 	case DER_LOG:
9108 		strbuf[0] = '!';
9109 		break;
9110 	case DER_VERB:
9111 		strbuf[0] = '?';
9112 		break;
9113 	default:
9114 		strbuf[0] = '\0';
9115 		de = ade;
9116 		break;
9117 	}
9118 
9119 	tlen = strlen(strbuf);
9120 	buf = strbuf + tlen;
9121 	buflen = sizeof (strbuf) - tlen;
9122 
9123 	if (rdip && ddi_get_instance(rdip) == -1) {
9124 		(void) snprintf(buf, buflen, "%s: ",
9125 		    ddi_driver_name(rdip));
9126 	} else if (rdip) {
9127 		(void) snprintf(buf, buflen, "%s%d: ",
9128 		    ddi_driver_name(rdip), ddi_get_instance(rdip));
9129 	}
9130 
9131 	tlen = strlen(strbuf);
9132 	buf = strbuf + tlen;
9133 	buflen = sizeof (strbuf) - tlen;
9134 
9135 	va_start(ap, fmt);
9136 	switch (de) {
9137 	case DER_CONT:
9138 		(void) vsnprintf(buf, buflen, fmt, ap);
9139 		if (ade != DER_CONT) {
9140 			(void) strlcat(strbuf, "\n", sizeof (strbuf));
9141 		}
9142 		ce = CE_CONT;
9143 		break;
9144 	case DER_NOTE:
9145 		(void) vsnprintf(buf, buflen, fmt, ap);
9146 		ce = CE_NOTE;
9147 		break;
9148 	case DER_WARN:
9149 		(void) vsnprintf(buf, buflen, fmt, ap);
9150 		ce = CE_WARN;
9151 		break;
9152 	case DER_MODE:
9153 		(void) vsnprintf(buf, buflen, fmt, ap);
9154 		if (ddi_err_panic == B_TRUE) {
9155 			ce = CE_PANIC;
9156 		} else {
9157 			ce = CE_WARN;
9158 		}
9159 		break;
9160 	case DER_DEBUG:
9161 		(void) snprintf(buf, buflen, "DEBUG: ");
9162 		tlen = strlen("DEBUG: ");
9163 		(void) vsnprintf(buf + tlen, buflen - tlen, fmt, ap);
9164 		ce = CE_CONT;
9165 		break;
9166 	case DER_PANIC:
9167 		(void) vsnprintf(buf, buflen, fmt, ap);
9168 		ce = CE_PANIC;
9169 		break;
9170 	case DER_INVALID:
9171 	default:
9172 		(void) snprintf(buf, buflen, fmtbad);
9173 		tlen = strlen(fmtbad);
9174 		(void) vsnprintf(buf + tlen, buflen - tlen, fmt, ap);
9175 		ce = CE_PANIC;
9176 		break;
9177 	}
9178 	va_end(ap);
9179 
9180 	cmn_err(ce, strbuf);
9181 }
9182 
9183 /*ARGSUSED*/
9184 void
9185 ddi_mem_update(uint64_t addr, uint64_t size)
9186 {
9187 #if defined(__x86) && !defined(__xpv)
9188 	extern void immu_physmem_update(uint64_t addr, uint64_t size);
9189 	immu_physmem_update(addr, size);
9190 #else
9191 	/*LINTED*/
9192 	;
9193 #endif
9194 }
9195