xref: /titanic_51/usr/src/uts/common/os/autoconf.c (revision 16747f4134070084f5ff1595ecc2b2b4336b29c9)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
57c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate  * with the License.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate  * and limitations under the License.
137c478bd9Sstevel@tonic-gate  *
147c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * CDDL HEADER END
217c478bd9Sstevel@tonic-gate  */
227c478bd9Sstevel@tonic-gate /*
237c478bd9Sstevel@tonic-gate  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate /*
307c478bd9Sstevel@tonic-gate  * This file contains ddi functions needed during boot and DR.
317c478bd9Sstevel@tonic-gate  * Many functions in swapgeneric.c can be moved here.
327c478bd9Sstevel@tonic-gate  *
337c478bd9Sstevel@tonic-gate  * The object file is currently linked into unix.
347c478bd9Sstevel@tonic-gate  */
357c478bd9Sstevel@tonic-gate 
367c478bd9Sstevel@tonic-gate #include <sys/bootconf.h>
377c478bd9Sstevel@tonic-gate #include <sys/conf.h>
387c478bd9Sstevel@tonic-gate #include <sys/ddi_impldefs.h>
397c478bd9Sstevel@tonic-gate #include <sys/ddi_implfuncs.h>
407c478bd9Sstevel@tonic-gate #include <sys/hwconf.h>
417c478bd9Sstevel@tonic-gate #include <sys/instance.h>
427c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
437c478bd9Sstevel@tonic-gate #include <sys/modctl.h>
447c478bd9Sstevel@tonic-gate #include <sys/promif.h>
457c478bd9Sstevel@tonic-gate #include <sys/sunndi.h>
467c478bd9Sstevel@tonic-gate #include <sys/ndi_impldefs.h>
477c478bd9Sstevel@tonic-gate #include <sys/systeminfo.h>
487c478bd9Sstevel@tonic-gate #include <sys/hwconf.h>
497c478bd9Sstevel@tonic-gate #include <sys/sysevent_impl.h>
507c478bd9Sstevel@tonic-gate #include <sys/sunldi_impl.h>
517c478bd9Sstevel@tonic-gate #include <sys/disp.h>
527c478bd9Sstevel@tonic-gate #include <sys/fm/util.h>
537c478bd9Sstevel@tonic-gate 
547c478bd9Sstevel@tonic-gate extern dev_info_t *top_devinfo;
557c478bd9Sstevel@tonic-gate extern dev_info_t *scsi_vhci_dip;
567c478bd9Sstevel@tonic-gate extern struct hwc_class *hcl_head;
577c478bd9Sstevel@tonic-gate static char *rootname;		/* node name of top_devinfo */
587c478bd9Sstevel@tonic-gate 
597c478bd9Sstevel@tonic-gate /*
607c478bd9Sstevel@tonic-gate  * This lock must be held while updating devi_sibling pointers of
617c478bd9Sstevel@tonic-gate  * rootnex immediate children
627c478bd9Sstevel@tonic-gate  */
637c478bd9Sstevel@tonic-gate kmutex_t global_vhci_lock;
647c478bd9Sstevel@tonic-gate 
657c478bd9Sstevel@tonic-gate major_t mm_major;
667c478bd9Sstevel@tonic-gate 
677c478bd9Sstevel@tonic-gate /*
687c478bd9Sstevel@tonic-gate  * Forward declarations
697c478bd9Sstevel@tonic-gate  */
707c478bd9Sstevel@tonic-gate static void impl_create_root_class(void);
717c478bd9Sstevel@tonic-gate static void create_devinfo_tree(void);
727c478bd9Sstevel@tonic-gate 
737c478bd9Sstevel@tonic-gate #if defined(__x86)
747c478bd9Sstevel@tonic-gate char *bootpath_prop = NULL;
757c478bd9Sstevel@tonic-gate char *fstype_prop = NULL;
767c478bd9Sstevel@tonic-gate #endif
777c478bd9Sstevel@tonic-gate 
787c478bd9Sstevel@tonic-gate /*
797c478bd9Sstevel@tonic-gate  * Setup the DDI but don't necessarily init the DDI.  This will happen
807c478bd9Sstevel@tonic-gate  * later once /boot is released.
817c478bd9Sstevel@tonic-gate  */
827c478bd9Sstevel@tonic-gate void
837c478bd9Sstevel@tonic-gate setup_ddi(void)
847c478bd9Sstevel@tonic-gate {
857c478bd9Sstevel@tonic-gate 	impl_ddi_init_nodeid();
867c478bd9Sstevel@tonic-gate 	impl_create_root_class();
877c478bd9Sstevel@tonic-gate 	create_devinfo_tree();
887c478bd9Sstevel@tonic-gate 	e_ddi_instance_init();
897c478bd9Sstevel@tonic-gate 	impl_ddi_callback_init();
907c478bd9Sstevel@tonic-gate 	log_event_init();
917c478bd9Sstevel@tonic-gate 	fm_init();
927c478bd9Sstevel@tonic-gate 
937c478bd9Sstevel@tonic-gate 	(void) i_ddi_load_drvconf((major_t)-1);
947c478bd9Sstevel@tonic-gate 
957c478bd9Sstevel@tonic-gate 	ldi_init();
967c478bd9Sstevel@tonic-gate 
977c478bd9Sstevel@tonic-gate 	i_ddi_devices_init();
987c478bd9Sstevel@tonic-gate 	i_ddi_read_devices_files();
997c478bd9Sstevel@tonic-gate }
1007c478bd9Sstevel@tonic-gate 
1017c478bd9Sstevel@tonic-gate /*
1027c478bd9Sstevel@tonic-gate  * Perform setup actions post startup (i_ddi_io_initialized)
1037c478bd9Sstevel@tonic-gate  */
1047c478bd9Sstevel@tonic-gate void
1057c478bd9Sstevel@tonic-gate setup_ddi_poststartup(void)
1067c478bd9Sstevel@tonic-gate {
1077c478bd9Sstevel@tonic-gate 	extern void i_ddi_start_flush_daemon(void);
1087c478bd9Sstevel@tonic-gate 	extern void i_ddi_intr_redist_all_cpus(void);
1097c478bd9Sstevel@tonic-gate 
1107c478bd9Sstevel@tonic-gate 	i_ddi_start_flush_daemon();
1117c478bd9Sstevel@tonic-gate 
1127c478bd9Sstevel@tonic-gate 	/*
1137c478bd9Sstevel@tonic-gate 	 * For platforms that support INTR_WEIGHTED_DIST, we perform a
1147c478bd9Sstevel@tonic-gate 	 * redistribution at this point (after NICs configured) so that
1157c478bd9Sstevel@tonic-gate 	 * "isolation" relative to "ddi-intr-weight" occurs.
1167c478bd9Sstevel@tonic-gate 	 */
1177c478bd9Sstevel@tonic-gate 	i_ddi_intr_redist_all_cpus();
1187c478bd9Sstevel@tonic-gate }
1197c478bd9Sstevel@tonic-gate 
1207c478bd9Sstevel@tonic-gate /*
1217c478bd9Sstevel@tonic-gate  * Create classes and major number bindings for the name of my root.
1227c478bd9Sstevel@tonic-gate  * Called immediately before 'loadrootmodules'
1237c478bd9Sstevel@tonic-gate  */
1247c478bd9Sstevel@tonic-gate static void
1257c478bd9Sstevel@tonic-gate impl_create_root_class(void)
1267c478bd9Sstevel@tonic-gate {
1277c478bd9Sstevel@tonic-gate 	major_t major;
1287c478bd9Sstevel@tonic-gate 	size_t size;
1297c478bd9Sstevel@tonic-gate 	char *cp;
1307c478bd9Sstevel@tonic-gate 	extern struct bootops *bootops;
1317c478bd9Sstevel@tonic-gate 
1327c478bd9Sstevel@tonic-gate 	/*
1337c478bd9Sstevel@tonic-gate 	 * The name for the root nexus is exactly as the manufacturer
1347c478bd9Sstevel@tonic-gate 	 * placed it in the prom name property.  No translation.
1357c478bd9Sstevel@tonic-gate 	 */
1367c478bd9Sstevel@tonic-gate 	if ((major = ddi_name_to_major("rootnex")) == (major_t)-1)
1377c478bd9Sstevel@tonic-gate 		panic("Couldn't find major number for 'rootnex'");
1387c478bd9Sstevel@tonic-gate 
1397c478bd9Sstevel@tonic-gate 	size = (size_t)BOP_GETPROPLEN(bootops, "mfg-name");
1407c478bd9Sstevel@tonic-gate 	rootname = kmem_zalloc(size, KM_SLEEP);
1417c478bd9Sstevel@tonic-gate 	(void) BOP_GETPROP(bootops, "mfg-name", rootname);
1427c478bd9Sstevel@tonic-gate 
1437c478bd9Sstevel@tonic-gate 	/*
1447c478bd9Sstevel@tonic-gate 	 * Fix conflict between OBP names and filesystem names.
1457c478bd9Sstevel@tonic-gate 	 * Substitute '_' for '/' in the name.  Ick.  This is only
1467c478bd9Sstevel@tonic-gate 	 * needed for the root node since '/' is not a legal name
1477c478bd9Sstevel@tonic-gate 	 * character in an OBP device name.
1487c478bd9Sstevel@tonic-gate 	 */
1497c478bd9Sstevel@tonic-gate 	for (cp = rootname; *cp; cp++)
1507c478bd9Sstevel@tonic-gate 		if (*cp == '/')
1517c478bd9Sstevel@tonic-gate 			*cp = '_';
1527c478bd9Sstevel@tonic-gate 
1537c478bd9Sstevel@tonic-gate 	/*
1547c478bd9Sstevel@tonic-gate 	 * Bind rootname to rootnex driver
1557c478bd9Sstevel@tonic-gate 	 */
1567c478bd9Sstevel@tonic-gate 	if (make_mbind(rootname, major, NULL, mb_hashtab) != 0) {
1577c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "A driver or driver alias has already "
1587c478bd9Sstevel@tonic-gate 		    "registered the name \"%s\".  The root nexus needs to "
1597c478bd9Sstevel@tonic-gate 		    "use this name, and will override the existing entry. "
1607c478bd9Sstevel@tonic-gate 		    "Please correct /etc/name_to_major and/or "
1617c478bd9Sstevel@tonic-gate 		    "/etc/driver_aliases and reboot.", rootname);
1627c478bd9Sstevel@tonic-gate 
1637c478bd9Sstevel@tonic-gate 		/*
1647c478bd9Sstevel@tonic-gate 		 * Resort to the emergency measure of blowing away the
1657c478bd9Sstevel@tonic-gate 		 * existing hash entry and replacing it with rootname's.
1667c478bd9Sstevel@tonic-gate 		 */
1677c478bd9Sstevel@tonic-gate 		delete_mbind(rootname, mb_hashtab);
1687c478bd9Sstevel@tonic-gate 		if (make_mbind(rootname, major, NULL, mb_hashtab) != 0)
1697c478bd9Sstevel@tonic-gate 			panic("mb_hashtab: inconsistent state.");
1707c478bd9Sstevel@tonic-gate 	}
1717c478bd9Sstevel@tonic-gate 
1727c478bd9Sstevel@tonic-gate 	/*
1737c478bd9Sstevel@tonic-gate 	 * The `platform' or `implementation architecture' name has been
1747c478bd9Sstevel@tonic-gate 	 * translated by boot to be proper for file system use.  It is
1757c478bd9Sstevel@tonic-gate 	 * the `name' of the platform actually booted.  Note the assumption
1767c478bd9Sstevel@tonic-gate 	 * is that the name will `fit' in the buffer platform (which is
1777c478bd9Sstevel@tonic-gate 	 * of size SYS_NMLN, which is far bigger than will actually ever
1787c478bd9Sstevel@tonic-gate 	 * be needed).
1797c478bd9Sstevel@tonic-gate 	 */
1807c478bd9Sstevel@tonic-gate 	(void) BOP_GETPROP(bootops, "impl-arch-name", platform);
1817c478bd9Sstevel@tonic-gate 
1827c478bd9Sstevel@tonic-gate #if defined(__x86)
1837c478bd9Sstevel@tonic-gate 	/*
1847c478bd9Sstevel@tonic-gate 	 * Retrieve and honor the bootpath and optional fstype properties
1857c478bd9Sstevel@tonic-gate 	 */
1867c478bd9Sstevel@tonic-gate 	size = (size_t)BOP_GETPROPLEN(bootops, "bootpath");
1877c478bd9Sstevel@tonic-gate 	if (size != -1) {
1887c478bd9Sstevel@tonic-gate 		bootpath_prop = kmem_zalloc(size, KM_SLEEP);
1897c478bd9Sstevel@tonic-gate 		(void) BOP_GETPROP(bootops, "bootpath", bootpath_prop);
1907c478bd9Sstevel@tonic-gate 		setbootpath(bootpath_prop);
1917c478bd9Sstevel@tonic-gate 	}
1927c478bd9Sstevel@tonic-gate 
1937c478bd9Sstevel@tonic-gate 	size = (size_t)BOP_GETPROPLEN(bootops, "fstype");
1947c478bd9Sstevel@tonic-gate 	if (size != -1) {
1957c478bd9Sstevel@tonic-gate 		fstype_prop = kmem_zalloc(size, KM_SLEEP);
1967c478bd9Sstevel@tonic-gate 		(void) BOP_GETPROP(bootops, "fstype", fstype_prop);
1977c478bd9Sstevel@tonic-gate 		setbootfstype(fstype_prop);
1987c478bd9Sstevel@tonic-gate 	}
1997c478bd9Sstevel@tonic-gate #endif
2007c478bd9Sstevel@tonic-gate }
2017c478bd9Sstevel@tonic-gate 
2027c478bd9Sstevel@tonic-gate /*
2037c478bd9Sstevel@tonic-gate  * Note that this routine does not take into account the endianness
2047c478bd9Sstevel@tonic-gate  * of the host or the device (or PROM) when retrieving properties.
2057c478bd9Sstevel@tonic-gate  */
2067c478bd9Sstevel@tonic-gate static int
2077c478bd9Sstevel@tonic-gate getlongprop_buf(int id, char *name, char *buf, int maxlen)
2087c478bd9Sstevel@tonic-gate {
2097c478bd9Sstevel@tonic-gate 	int size;
2107c478bd9Sstevel@tonic-gate 
2117c478bd9Sstevel@tonic-gate 	size = prom_getproplen((dnode_t)id, name);
2127c478bd9Sstevel@tonic-gate 	if (size <= 0 || (size > maxlen - 1))
2137c478bd9Sstevel@tonic-gate 		return (-1);
2147c478bd9Sstevel@tonic-gate 
2157c478bd9Sstevel@tonic-gate 	if (-1 == prom_getprop((dnode_t)id, name, buf))
2167c478bd9Sstevel@tonic-gate 		return (-1);
2177c478bd9Sstevel@tonic-gate 
2187c478bd9Sstevel@tonic-gate 	/*
2197c478bd9Sstevel@tonic-gate 	 * Workaround for bugid 1085575 - OBP may return a "name" property
2207c478bd9Sstevel@tonic-gate 	 * without null terminating the string with '\0'.  When this occurs,
2217c478bd9Sstevel@tonic-gate 	 * append a '\0' and return (size + 1).
2227c478bd9Sstevel@tonic-gate 	 */
2237c478bd9Sstevel@tonic-gate 	if (strcmp("name", name) == 0) {
2247c478bd9Sstevel@tonic-gate 		if (buf[size - 1] != '\0') {
2257c478bd9Sstevel@tonic-gate 			buf[size] = '\0';
2267c478bd9Sstevel@tonic-gate 			size += 1;
2277c478bd9Sstevel@tonic-gate 		}
2287c478bd9Sstevel@tonic-gate 	}
2297c478bd9Sstevel@tonic-gate 
2307c478bd9Sstevel@tonic-gate 	return (size);
2317c478bd9Sstevel@tonic-gate }
2327c478bd9Sstevel@tonic-gate 
2337c478bd9Sstevel@tonic-gate /*ARGSUSED1*/
2347c478bd9Sstevel@tonic-gate static int
2357c478bd9Sstevel@tonic-gate get_neighbors(dev_info_t *di, int flag)
2367c478bd9Sstevel@tonic-gate {
2377c478bd9Sstevel@tonic-gate 	register int nid, snid, cnid;
2387c478bd9Sstevel@tonic-gate 	dev_info_t *parent;
2397c478bd9Sstevel@tonic-gate 	char buf[OBP_MAXPROPNAME];
2407c478bd9Sstevel@tonic-gate 
2417c478bd9Sstevel@tonic-gate 	if (di == NULL)
2427c478bd9Sstevel@tonic-gate 		return (DDI_WALK_CONTINUE);
2437c478bd9Sstevel@tonic-gate 
2447c478bd9Sstevel@tonic-gate 	nid = ddi_get_nodeid(di);
2457c478bd9Sstevel@tonic-gate 
2467c478bd9Sstevel@tonic-gate 	snid = cnid = 0;
2477c478bd9Sstevel@tonic-gate 	switch (flag) {
2487c478bd9Sstevel@tonic-gate 		case DDI_WALK_PRUNESIB:
2497c478bd9Sstevel@tonic-gate 			cnid = (int)prom_childnode((dnode_t)nid);
2507c478bd9Sstevel@tonic-gate 			break;
2517c478bd9Sstevel@tonic-gate 		case DDI_WALK_PRUNECHILD:
2527c478bd9Sstevel@tonic-gate 			snid = (int)prom_nextnode((dnode_t)nid);
2537c478bd9Sstevel@tonic-gate 			break;
2547c478bd9Sstevel@tonic-gate 		case 0:
2557c478bd9Sstevel@tonic-gate 			snid = (int)prom_nextnode((dnode_t)nid);
2567c478bd9Sstevel@tonic-gate 			cnid = (int)prom_childnode((dnode_t)nid);
2577c478bd9Sstevel@tonic-gate 			break;
2587c478bd9Sstevel@tonic-gate 		default:
2597c478bd9Sstevel@tonic-gate 			return (DDI_WALK_TERMINATE);
2607c478bd9Sstevel@tonic-gate 	}
2617c478bd9Sstevel@tonic-gate 
2627c478bd9Sstevel@tonic-gate 
2637c478bd9Sstevel@tonic-gate 	if (snid && (snid != -1) && ((parent = ddi_get_parent(di)) != NULL)) {
2647c478bd9Sstevel@tonic-gate 		/*
2657c478bd9Sstevel@tonic-gate 		 * add the first sibling that passes check_status()
2667c478bd9Sstevel@tonic-gate 		 */
2677c478bd9Sstevel@tonic-gate 		for (; snid && (snid != -1);
2687c478bd9Sstevel@tonic-gate 		    snid = (int)prom_nextnode((dnode_t)snid)) {
2697c478bd9Sstevel@tonic-gate 			if (getlongprop_buf(snid, OBP_NAME, buf,
2707c478bd9Sstevel@tonic-gate 			    sizeof (buf)) > 0) {
2717c478bd9Sstevel@tonic-gate 				if (check_status(snid, buf, parent) ==
2727c478bd9Sstevel@tonic-gate 				    DDI_SUCCESS) {
2737c478bd9Sstevel@tonic-gate 					(void) ddi_add_child(parent, buf,
2747c478bd9Sstevel@tonic-gate 					    snid, -1);
2757c478bd9Sstevel@tonic-gate 					break;
2767c478bd9Sstevel@tonic-gate 				}
2777c478bd9Sstevel@tonic-gate 			}
2787c478bd9Sstevel@tonic-gate 		}
2797c478bd9Sstevel@tonic-gate 	}
2807c478bd9Sstevel@tonic-gate 
2817c478bd9Sstevel@tonic-gate 	if (cnid && (cnid != -1)) {
2827c478bd9Sstevel@tonic-gate 		/*
2837c478bd9Sstevel@tonic-gate 		 * add the first child that passes check_status()
2847c478bd9Sstevel@tonic-gate 		 */
2857c478bd9Sstevel@tonic-gate 		if (getlongprop_buf(cnid, OBP_NAME, buf, sizeof (buf)) > 0) {
2867c478bd9Sstevel@tonic-gate 			if (check_status(cnid, buf, di) == DDI_SUCCESS) {
2877c478bd9Sstevel@tonic-gate 				(void) ddi_add_child(di, buf, cnid, -1);
2887c478bd9Sstevel@tonic-gate 			} else {
2897c478bd9Sstevel@tonic-gate 				for (cnid = (int)prom_nextnode((dnode_t)cnid);
2907c478bd9Sstevel@tonic-gate 				    cnid && (cnid != -1);
2917c478bd9Sstevel@tonic-gate 				    cnid = (int)prom_nextnode((dnode_t)cnid)) {
2927c478bd9Sstevel@tonic-gate 					if (getlongprop_buf(cnid, OBP_NAME,
2937c478bd9Sstevel@tonic-gate 					    buf, sizeof (buf)) > 0) {
2947c478bd9Sstevel@tonic-gate 						if (check_status(cnid, buf, di)
2957c478bd9Sstevel@tonic-gate 						    == DDI_SUCCESS) {
2967c478bd9Sstevel@tonic-gate 							(void) ddi_add_child(
2977c478bd9Sstevel@tonic-gate 							    di, buf, cnid, -1);
2987c478bd9Sstevel@tonic-gate 							break;
2997c478bd9Sstevel@tonic-gate 						}
3007c478bd9Sstevel@tonic-gate 					}
3017c478bd9Sstevel@tonic-gate 				}
3027c478bd9Sstevel@tonic-gate 			}
3037c478bd9Sstevel@tonic-gate 		}
3047c478bd9Sstevel@tonic-gate 	}
3057c478bd9Sstevel@tonic-gate 
3067c478bd9Sstevel@tonic-gate 	return (DDI_WALK_CONTINUE);
3077c478bd9Sstevel@tonic-gate }
3087c478bd9Sstevel@tonic-gate 
3097c478bd9Sstevel@tonic-gate static void
3107c478bd9Sstevel@tonic-gate di_dfs(dev_info_t *devi, int (*f)(dev_info_t *, int), caddr_t arg)
3117c478bd9Sstevel@tonic-gate {
3127c478bd9Sstevel@tonic-gate 	(void) (*f)(devi, 0);
3137c478bd9Sstevel@tonic-gate 	if (devi) {
3147c478bd9Sstevel@tonic-gate 		di_dfs((dev_info_t *)DEVI(devi)->devi_child, f, arg);
3157c478bd9Sstevel@tonic-gate 		di_dfs((dev_info_t *)DEVI(devi)->devi_sibling, f, arg);
3167c478bd9Sstevel@tonic-gate 	}
3177c478bd9Sstevel@tonic-gate }
3187c478bd9Sstevel@tonic-gate 
3197c478bd9Sstevel@tonic-gate dev_info_t *
3207c478bd9Sstevel@tonic-gate i_ddi_create_branch(dev_info_t *pdip, int nid)
3217c478bd9Sstevel@tonic-gate {
3227c478bd9Sstevel@tonic-gate 	char *buf;
3237c478bd9Sstevel@tonic-gate 	dev_info_t *dip = NULL;
3247c478bd9Sstevel@tonic-gate 
3257c478bd9Sstevel@tonic-gate 	if (pdip == NULL || nid == OBP_NONODE || nid == OBP_BADNODE)
3267c478bd9Sstevel@tonic-gate 		return (NULL);
3277c478bd9Sstevel@tonic-gate 
3287c478bd9Sstevel@tonic-gate 	buf = kmem_alloc(OBP_MAXPROPNAME, KM_SLEEP);
3297c478bd9Sstevel@tonic-gate 
3307c478bd9Sstevel@tonic-gate 	if (getlongprop_buf(nid, OBP_NAME, buf, OBP_MAXPROPNAME) > 0) {
3317c478bd9Sstevel@tonic-gate 		if (check_status(nid, buf, pdip) == DDI_SUCCESS)
3327c478bd9Sstevel@tonic-gate 			dip = ddi_add_child(pdip, buf, nid, -1);
3337c478bd9Sstevel@tonic-gate 	}
3347c478bd9Sstevel@tonic-gate 
3357c478bd9Sstevel@tonic-gate 	kmem_free(buf, OBP_MAXPROPNAME);
3367c478bd9Sstevel@tonic-gate 
3377c478bd9Sstevel@tonic-gate 	if (dip == NULL)
3387c478bd9Sstevel@tonic-gate 		return (NULL);
3397c478bd9Sstevel@tonic-gate 
3407c478bd9Sstevel@tonic-gate 	/*
3417c478bd9Sstevel@tonic-gate 	 * Don't create any siblings of the branch root, just
3427c478bd9Sstevel@tonic-gate 	 * children.
3437c478bd9Sstevel@tonic-gate 	 */
3447c478bd9Sstevel@tonic-gate 	(void) get_neighbors(dip, DDI_WALK_PRUNESIB);
3457c478bd9Sstevel@tonic-gate 
3467c478bd9Sstevel@tonic-gate 	di_dfs(ddi_get_child(dip), get_neighbors, 0);
3477c478bd9Sstevel@tonic-gate 
3487c478bd9Sstevel@tonic-gate 	return (dip);
3497c478bd9Sstevel@tonic-gate }
3507c478bd9Sstevel@tonic-gate 
3517c478bd9Sstevel@tonic-gate static void
3527c478bd9Sstevel@tonic-gate create_devinfo_tree(void)
3537c478bd9Sstevel@tonic-gate {
3547c478bd9Sstevel@tonic-gate 	major_t major;
3557c478bd9Sstevel@tonic-gate 	dnode_t nodeid;
3567c478bd9Sstevel@tonic-gate 
3577c478bd9Sstevel@tonic-gate 	i_ddi_node_cache_init();
3587c478bd9Sstevel@tonic-gate #if defined(__sparc)
3597c478bd9Sstevel@tonic-gate 	nodeid = prom_nextnode(0);
3607c478bd9Sstevel@tonic-gate #else /* x86 */
3617c478bd9Sstevel@tonic-gate 	nodeid = DEVI_SID_NODEID;
3627c478bd9Sstevel@tonic-gate #endif
3637c478bd9Sstevel@tonic-gate 	top_devinfo = i_ddi_alloc_node(NULL, rootname,
3647c478bd9Sstevel@tonic-gate 	    nodeid, -1, NULL, KM_SLEEP);
3657c478bd9Sstevel@tonic-gate 	ndi_hold_devi(top_devinfo);	/* never release the root */
3667c478bd9Sstevel@tonic-gate 
3677c478bd9Sstevel@tonic-gate 	i_ddi_add_devimap(top_devinfo);
3687c478bd9Sstevel@tonic-gate 
3697c478bd9Sstevel@tonic-gate 	/*
3707c478bd9Sstevel@tonic-gate 	 * Bind root node.
3717c478bd9Sstevel@tonic-gate 	 * This code is special because root node has no parent
3727c478bd9Sstevel@tonic-gate 	 */
3737c478bd9Sstevel@tonic-gate 	major = ddi_name_to_major("rootnex");
3747c478bd9Sstevel@tonic-gate 	ASSERT(major != (major_t)-1);
3757c478bd9Sstevel@tonic-gate 	DEVI(top_devinfo)->devi_major = major;
3767c478bd9Sstevel@tonic-gate 	devnamesp[major].dn_head = top_devinfo;
3777c478bd9Sstevel@tonic-gate 	i_ddi_set_binding_name(top_devinfo, rootname);
3787c478bd9Sstevel@tonic-gate 	i_ddi_set_node_state(top_devinfo, DS_BOUND);
3797c478bd9Sstevel@tonic-gate 
3807c478bd9Sstevel@tonic-gate 	/*
3817c478bd9Sstevel@tonic-gate 	 * Record that devinfos have been made for "rootnex."
3827c478bd9Sstevel@tonic-gate 	 * di_dfs() is used to read the prom because it doesn't get the
3837c478bd9Sstevel@tonic-gate 	 * next sibling until the function returns, unlike ddi_walk_devs().
3847c478bd9Sstevel@tonic-gate 	 */
3857c478bd9Sstevel@tonic-gate 	di_dfs(ddi_root_node(), get_neighbors, 0);
3867c478bd9Sstevel@tonic-gate }
3877c478bd9Sstevel@tonic-gate 
3887c478bd9Sstevel@tonic-gate /*
3897c478bd9Sstevel@tonic-gate  * Init and attach the root node. root node is the first one to be
3907c478bd9Sstevel@tonic-gate  * attached, so the process is somewhat "handcrafted".
3917c478bd9Sstevel@tonic-gate  */
3927c478bd9Sstevel@tonic-gate void
3937c478bd9Sstevel@tonic-gate i_ddi_init_root()
3947c478bd9Sstevel@tonic-gate {
3957c478bd9Sstevel@tonic-gate 	extern int i_ndi_make_spec_children(dev_info_t *, uint_t);
3967c478bd9Sstevel@tonic-gate 
3977c478bd9Sstevel@tonic-gate #ifdef  DDI_PROP_DEBUG
3987c478bd9Sstevel@tonic-gate 	(void) ddi_prop_debug(1);	/* Enable property debugging */
3997c478bd9Sstevel@tonic-gate #endif  /* DDI_PROP_DEBUG */
4007c478bd9Sstevel@tonic-gate 
4017c478bd9Sstevel@tonic-gate 	/*
4027c478bd9Sstevel@tonic-gate 	 * Initialize root node
4037c478bd9Sstevel@tonic-gate 	 */
4047c478bd9Sstevel@tonic-gate 	if (impl_ddi_sunbus_initchild(top_devinfo) != DDI_SUCCESS)
4057c478bd9Sstevel@tonic-gate 		panic("Could not initialize root nexus");
4067c478bd9Sstevel@tonic-gate 
4077c478bd9Sstevel@tonic-gate 	/*
4087c478bd9Sstevel@tonic-gate 	 * Attach root node (no need to probe)
4097c478bd9Sstevel@tonic-gate 	 * Hold both devinfo and rootnex driver so they can't go away.
4107c478bd9Sstevel@tonic-gate 	 */
4117c478bd9Sstevel@tonic-gate 	DEVI(top_devinfo)->devi_ops = ndi_hold_driver(top_devinfo);
4127c478bd9Sstevel@tonic-gate 	ASSERT(DEV_OPS_HELD(DEVI(top_devinfo)->devi_ops));
4137c478bd9Sstevel@tonic-gate 	DEVI(top_devinfo)->devi_instance = e_ddi_assign_instance(top_devinfo);
4147c478bd9Sstevel@tonic-gate 
415*16747f41Scth 	mutex_enter(&(DEVI(top_devinfo)->devi_lock));
4167c478bd9Sstevel@tonic-gate 	DEVI_SET_ATTACHING(top_devinfo);
417*16747f41Scth 	mutex_exit(&(DEVI(top_devinfo)->devi_lock));
418*16747f41Scth 
4197c478bd9Sstevel@tonic-gate 	if (devi_attach(top_devinfo, DDI_ATTACH) != DDI_SUCCESS)
4207c478bd9Sstevel@tonic-gate 		panic("Could not attach root nexus");
421*16747f41Scth 
422*16747f41Scth 	mutex_enter(&(DEVI(top_devinfo)->devi_lock));
4237c478bd9Sstevel@tonic-gate 	DEVI_CLR_ATTACHING(top_devinfo);
424*16747f41Scth 	mutex_exit(&(DEVI(top_devinfo)->devi_lock));
4257c478bd9Sstevel@tonic-gate 
4267c478bd9Sstevel@tonic-gate 	mutex_init(&global_vhci_lock, NULL, MUTEX_DEFAULT, NULL);
4277c478bd9Sstevel@tonic-gate 
4287c478bd9Sstevel@tonic-gate 	ndi_hold_devi(top_devinfo);	/* hold it forever */
4297c478bd9Sstevel@tonic-gate 	i_ddi_set_node_state(top_devinfo, DS_READY);
4307c478bd9Sstevel@tonic-gate 
4317c478bd9Sstevel@tonic-gate 	/*
4327c478bd9Sstevel@tonic-gate 	 * Now, expand .conf children of root
4337c478bd9Sstevel@tonic-gate 	 */
4347c478bd9Sstevel@tonic-gate 	(void) i_ndi_make_spec_children(top_devinfo, 0);
4357c478bd9Sstevel@tonic-gate 
4367c478bd9Sstevel@tonic-gate 	/*
4377c478bd9Sstevel@tonic-gate 	 * Must be set up before attaching root or pseudo drivers
4387c478bd9Sstevel@tonic-gate 	 */
4397c478bd9Sstevel@tonic-gate 	pm_init_locks();
4407c478bd9Sstevel@tonic-gate 
4417c478bd9Sstevel@tonic-gate 	/*
4427c478bd9Sstevel@tonic-gate 	 * Attach options dip
4437c478bd9Sstevel@tonic-gate 	 */
4447c478bd9Sstevel@tonic-gate 	options_dip = i_ddi_attach_pseudo_node("options");
4457c478bd9Sstevel@tonic-gate 
4467c478bd9Sstevel@tonic-gate 	/*
4477c478bd9Sstevel@tonic-gate 	 * Attach pseudo nexus and enumerate its children
4487c478bd9Sstevel@tonic-gate 	 */
4497c478bd9Sstevel@tonic-gate 	pseudo_dip = i_ddi_attach_pseudo_node(DEVI_PSEUDO_NEXNAME);
4507c478bd9Sstevel@tonic-gate 	(void) i_ndi_make_spec_children(pseudo_dip, 0);
4517c478bd9Sstevel@tonic-gate 
4527c478bd9Sstevel@tonic-gate 	/*
4537c478bd9Sstevel@tonic-gate 	 * Attach and hold clone dip
4547c478bd9Sstevel@tonic-gate 	 */
4557c478bd9Sstevel@tonic-gate 	clone_dip = i_ddi_attach_pseudo_node("clone");
4567c478bd9Sstevel@tonic-gate 	clone_major = ddi_driver_major(clone_dip);
4577c478bd9Sstevel@tonic-gate 	mm_major = ddi_name_to_major("mm");
4587c478bd9Sstevel@tonic-gate 
4597c478bd9Sstevel@tonic-gate 	/*
4607c478bd9Sstevel@tonic-gate 	 * Attach scsi_vhci for MPXIO, this registers scsi vhci class
4617c478bd9Sstevel@tonic-gate 	 * with the MPXIO framework.
4627c478bd9Sstevel@tonic-gate 	 */
4637c478bd9Sstevel@tonic-gate 	scsi_vhci_dip = i_ddi_attach_pseudo_node("scsi_vhci");
4647c478bd9Sstevel@tonic-gate }
465