xref: /onnv-gate/usr/src/uts/common/io/pshot.c (revision 85:1bca8d4eab66)
10Sstevel@tonic-gate /*
20Sstevel@tonic-gate  * CDDL HEADER START
30Sstevel@tonic-gate  *
40Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
50Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
60Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
70Sstevel@tonic-gate  * with the License.
80Sstevel@tonic-gate  *
90Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
100Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
110Sstevel@tonic-gate  * See the License for the specific language governing permissions
120Sstevel@tonic-gate  * and limitations under the License.
130Sstevel@tonic-gate  *
140Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
150Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
160Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
170Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
180Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
190Sstevel@tonic-gate  *
200Sstevel@tonic-gate  * CDDL HEADER END
210Sstevel@tonic-gate  */
220Sstevel@tonic-gate /*
230Sstevel@tonic-gate  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
240Sstevel@tonic-gate  * Use is subject to license terms.
250Sstevel@tonic-gate  */
260Sstevel@tonic-gate 
270Sstevel@tonic-gate /*
280Sstevel@tonic-gate  * pseudo bus nexus driver
290Sstevel@tonic-gate  * hotplug framework test facility
300Sstevel@tonic-gate  */
310Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
320Sstevel@tonic-gate 
330Sstevel@tonic-gate /*
340Sstevel@tonic-gate  * The pshot driver can be used to exercise the i/o framework together
350Sstevel@tonic-gate  * with devfs by configuring an arbitrarily complex device tree.
360Sstevel@tonic-gate  *
370Sstevel@tonic-gate  * The pshot driver is rooted at /devices/pshot.  The following commands
380Sstevel@tonic-gate  * illustrate the operation of devfs together with pshot's bus_config.
390Sstevel@tonic-gate  * The first command demonstrates that, like the magician showing there's
400Sstevel@tonic-gate  * nothing up his sleeve, /devices/pshot is empty.  The second command
410Sstevel@tonic-gate  * conjures up a branch of pshot nodes.  Note that pshot's bus_config is
420Sstevel@tonic-gate  * called sequentially by devfs for each node, as part of the pathname
430Sstevel@tonic-gate  * resolution, and that each pshot node is fully configured and
440Sstevel@tonic-gate  * attached before that node's bus_config is called to configure the
450Sstevel@tonic-gate  * next child down the tree.  The final result is a "disk" node configured
460Sstevel@tonic-gate  * at the bottom of the named hierarchy of pshot nodes.
470Sstevel@tonic-gate  *
480Sstevel@tonic-gate  *	#
490Sstevel@tonic-gate  *	# ls /devices/pshot
500Sstevel@tonic-gate  *	#
510Sstevel@tonic-gate  *	# ls -ld /devices/pshot/pshot@0/pshot@1/pshot@2/disk@3,0
520Sstevel@tonic-gate  *	drwxr-xr-x   2 root     sys          512 Feb  6 15:10
530Sstevel@tonic-gate  *		/devices/pshot/pshot@0/pshot@1/pshot@2/disk@3,0
540Sstevel@tonic-gate  *
550Sstevel@tonic-gate  * pshot supports some unique behaviors as aids for test error cases.
560Sstevel@tonic-gate  *
570Sstevel@tonic-gate  * Match these special address formats to behavior:
580Sstevel@tonic-gate  *
590Sstevel@tonic-gate  *	err.*		- induce bus_config error
600Sstevel@tonic-gate  *	delay		- induce 1 second of bus_config delay time
610Sstevel@tonic-gate  *	delay,n		- induce n seconds of bus_config delay time
620Sstevel@tonic-gate  *	wait		- induce 1 second of bus_config wait time
630Sstevel@tonic-gate  *	wait,n		- induce n seconds of bus_config wait time
640Sstevel@tonic-gate  *	failinit.*	- induce error at INITCHILD
650Sstevel@tonic-gate  *	failprobe.*	- induce error at probe
660Sstevel@tonic-gate  *	failattach.*	- induce error at attach
670Sstevel@tonic-gate  */
680Sstevel@tonic-gate 
690Sstevel@tonic-gate #if defined(lint) && !defined(DEBUG)
700Sstevel@tonic-gate #define	DEBUG	1
710Sstevel@tonic-gate #endif
720Sstevel@tonic-gate 
730Sstevel@tonic-gate #include <sys/types.h>
740Sstevel@tonic-gate #include <sys/cmn_err.h>
750Sstevel@tonic-gate #include <sys/conf.h>
760Sstevel@tonic-gate #include <sys/ddi_impldefs.h>
770Sstevel@tonic-gate #include <sys/autoconf.h>
780Sstevel@tonic-gate #include <sys/open.h>
790Sstevel@tonic-gate #include <sys/stat.h>
800Sstevel@tonic-gate #include <sys/file.h>
810Sstevel@tonic-gate #include <sys/errno.h>
820Sstevel@tonic-gate #include <sys/systm.h>
830Sstevel@tonic-gate #include <sys/modctl.h>
840Sstevel@tonic-gate #include <sys/kmem.h>
850Sstevel@tonic-gate #include <sys/ddi.h>
860Sstevel@tonic-gate #include <sys/sunddi.h>
870Sstevel@tonic-gate #include <sys/sunndi.h>
880Sstevel@tonic-gate #include <sys/devctl.h>
890Sstevel@tonic-gate #include <sys/disp.h>
900Sstevel@tonic-gate #include <sys/utsname.h>
910Sstevel@tonic-gate #include <sys/pshot.h>
920Sstevel@tonic-gate #include <sys/debug.h>
930Sstevel@tonic-gate 
940Sstevel@tonic-gate static int pshot_log		= 0;
950Sstevel@tonic-gate static int pshot_devctl_debug	= 0;
960Sstevel@tonic-gate static int pshot_debug_busy	= 0;
970Sstevel@tonic-gate 
980Sstevel@tonic-gate static void *pshot_softstatep;
990Sstevel@tonic-gate 
1000Sstevel@tonic-gate static int pshot_prop_autoattach;
1010Sstevel@tonic-gate 
1020Sstevel@tonic-gate #define	MAXPWR	3
1030Sstevel@tonic-gate 
1040Sstevel@tonic-gate 
1050Sstevel@tonic-gate /*
1060Sstevel@tonic-gate  * device configuration data
1070Sstevel@tonic-gate  */
1080Sstevel@tonic-gate 
1090Sstevel@tonic-gate /* should keep in sync with current release */
1100Sstevel@tonic-gate static struct {
1110Sstevel@tonic-gate 	char *name;
1120Sstevel@tonic-gate 	char *val;
1130Sstevel@tonic-gate } pshot_nodetypes[] = {
1140Sstevel@tonic-gate 	{"DDI_NT_SERIAL", DDI_NT_SERIAL},
1150Sstevel@tonic-gate 	{"DDI_NT_SERIAL_MB", DDI_NT_SERIAL_MB},
1160Sstevel@tonic-gate 	{"DDI_NT_SERIAL_DO", DDI_NT_SERIAL_DO},
1170Sstevel@tonic-gate 	{"DDI_NT_SERIAL_MB_DO", DDI_NT_SERIAL_MB_DO},
1180Sstevel@tonic-gate 	{"DDI_NT_SERIAL_LOMCON", DDI_NT_SERIAL_LOMCON},
1190Sstevel@tonic-gate 	{"DDI_NT_BLOCK", DDI_NT_BLOCK},
1200Sstevel@tonic-gate 	{"DDI_NT_BLOCK_CHAN", DDI_NT_BLOCK_CHAN},
1210Sstevel@tonic-gate 	{"DDI_NT_BLOCK_WWN", DDI_NT_BLOCK_WWN},
1220Sstevel@tonic-gate 	{"DDI_NT_CD", DDI_NT_CD},
1230Sstevel@tonic-gate 	{"DDI_NT_CD_CHAN", DDI_NT_CD_CHAN},
1240Sstevel@tonic-gate 	{"DDI_NT_FD", DDI_NT_FD},
1250Sstevel@tonic-gate 	{"DDI_NT_ENCLOSURE", DDI_NT_ENCLOSURE},
1260Sstevel@tonic-gate 	{"DDI_NT_SCSI_ENCLOSURE", DDI_NT_SCSI_ENCLOSURE},
1270Sstevel@tonic-gate 	{"DDI_NT_TAPE", DDI_NT_TAPE},
1280Sstevel@tonic-gate 	{"DDI_NT_NET", DDI_NT_NET},
1290Sstevel@tonic-gate 	{"DDI_NT_DISPLAY", DDI_NT_DISPLAY},
1300Sstevel@tonic-gate 	{"DDI_PSEUDO", DDI_PSEUDO},
1310Sstevel@tonic-gate 	{"DDI_NT_AUDIO", DDI_NT_AUDIO},
1320Sstevel@tonic-gate 	{"DDI_NT_MOUSE", DDI_NT_MOUSE},
1330Sstevel@tonic-gate 	{"DDI_NT_KEYBOARD", DDI_NT_KEYBOARD},
1340Sstevel@tonic-gate 	{"DDI_NT_PARALLEL", DDI_NT_PARALLEL},
1350Sstevel@tonic-gate 	{"DDI_NT_PRINTER", DDI_NT_PRINTER},
1360Sstevel@tonic-gate 	{"DDI_NT_UGEN", DDI_NT_UGEN},
1370Sstevel@tonic-gate 	{"DDI_NT_NEXUS", DDI_NT_NEXUS},
1380Sstevel@tonic-gate 	{"DDI_NT_SCSI_NEXUS", DDI_NT_SCSI_NEXUS},
1390Sstevel@tonic-gate 	{"DDI_NT_ATTACHMENT_POINT", DDI_NT_ATTACHMENT_POINT},
1400Sstevel@tonic-gate 	{"DDI_NT_SCSI_ATTACHMENT_POINT", DDI_NT_SCSI_ATTACHMENT_POINT},
1410Sstevel@tonic-gate 	{"DDI_NT_PCI_ATTACHMENT_POINT", DDI_NT_PCI_ATTACHMENT_POINT},
1420Sstevel@tonic-gate 	{"DDI_NT_SBD_ATTACHMENT_POINT", DDI_NT_SBD_ATTACHMENT_POINT},
1430Sstevel@tonic-gate 	{"DDI_NT_FC_ATTACHMENT_POINT", DDI_NT_FC_ATTACHMENT_POINT},
1440Sstevel@tonic-gate 	{"DDI_NT_USB_ATTACHMENT_POINT", DDI_NT_USB_ATTACHMENT_POINT},
1450Sstevel@tonic-gate 	{"DDI_NT_BLOCK_FABRIC", DDI_NT_BLOCK_FABRIC},
1460Sstevel@tonic-gate 	{"DDI_NT_SMARTCARD_READER", DDI_NT_SMARTCARD_READER},
1470Sstevel@tonic-gate 	{"DDI_NT_AV_ASYNC", DDI_NT_AV_ASYNC},
1480Sstevel@tonic-gate 	{"DDI_NT_AV_ISOCH", DDI_NT_AV_ISOCH},
1490Sstevel@tonic-gate 	{ NULL, NULL }
1500Sstevel@tonic-gate };
1510Sstevel@tonic-gate 
1520Sstevel@tonic-gate /* Node name */
1530Sstevel@tonic-gate static char *pshot_compat_diskname = "cdisk";
1540Sstevel@tonic-gate 
1550Sstevel@tonic-gate /* Compatible names... */
1560Sstevel@tonic-gate static char *pshot_compat_psramdisks[] = {
1570Sstevel@tonic-gate 	"psramhead",
1580Sstevel@tonic-gate 	"psramrom",
1590Sstevel@tonic-gate 	"psramdisk",
1600Sstevel@tonic-gate 	"psramd",
1610Sstevel@tonic-gate 	"psramwhat"
1620Sstevel@tonic-gate };
1630Sstevel@tonic-gate 
1640Sstevel@tonic-gate /*
1650Sstevel@tonic-gate  * devices "natively" supported by pshot (i.e. included with SUNWiotu)
1660Sstevel@tonic-gate  * used to initialize pshot_devices with
1670Sstevel@tonic-gate  */
1680Sstevel@tonic-gate static pshot_device_t pshot_stock_devices[] = {
1690Sstevel@tonic-gate 	{"disk",	DDI_NT_BLOCK,		"gen_drv"},
1700Sstevel@tonic-gate 	{"disk_chan",	DDI_NT_BLOCK_CHAN,	"gen_drv"},
1710Sstevel@tonic-gate 	{"disk_wwn",	DDI_NT_BLOCK_WWN,	"gen_drv"},
1720Sstevel@tonic-gate 	{"disk_cdrom",	DDI_NT_CD,		"gen_drv"},
1730Sstevel@tonic-gate 	{"disk_cdrom.chan", DDI_NT_CD_CHAN,	"gen_drv"},
1740Sstevel@tonic-gate /* Note: use bad_drv to force attach errors */
1750Sstevel@tonic-gate 	{"disk_fd",	DDI_NT_FD,		"bad_drv"},
1760Sstevel@tonic-gate 	{"tape",	DDI_NT_TAPE,		"gen_drv"},
1770Sstevel@tonic-gate 	{"net",		DDI_NT_NET,		"gen_drv"},
1780Sstevel@tonic-gate 	{"display",	DDI_NT_DISPLAY,		"gen_drv"},
1790Sstevel@tonic-gate 	{"pseudo",	DDI_PSEUDO,		"gen_drv"},
1800Sstevel@tonic-gate 	{"audio",	DDI_NT_AUDIO,		"gen_drv"},
1810Sstevel@tonic-gate 	{"mouse",	DDI_NT_MOUSE,		"gen_drv"},
1820Sstevel@tonic-gate 	{"keyboard",	DDI_NT_KEYBOARD,	"gen_drv"},
1830Sstevel@tonic-gate 	{"nexus",	DDI_NT_NEXUS,		"pshot"}
1840Sstevel@tonic-gate };
1850Sstevel@tonic-gate #define	PSHOT_N_STOCK_DEVICES \
1860Sstevel@tonic-gate 	(sizeof (pshot_stock_devices) / sizeof (pshot_device_t))
1870Sstevel@tonic-gate 
1880Sstevel@tonic-gate static pshot_device_t *pshot_devices = NULL;
1890Sstevel@tonic-gate static size_t pshot_devices_len = 0;
1900Sstevel@tonic-gate 
1910Sstevel@tonic-gate /* protects <pshot_devices>, <pshot_devices_len> */
1920Sstevel@tonic-gate static kmutex_t pshot_devices_lock;
1930Sstevel@tonic-gate 
1940Sstevel@tonic-gate 
1950Sstevel@tonic-gate /*
1960Sstevel@tonic-gate  * event testing
1970Sstevel@tonic-gate  */
1980Sstevel@tonic-gate 
1990Sstevel@tonic-gate static ndi_event_definition_t pshot_ndi_event_defs[] = {
2000Sstevel@tonic-gate { PSHOT_EVENT_TAG_OFFLINE, PSHOT_EVENT_NAME_DEV_OFFLINE,
2010Sstevel@tonic-gate 	EPL_INTERRUPT, NDI_EVENT_POST_TO_ALL },
2020Sstevel@tonic-gate 
2030Sstevel@tonic-gate { PSHOT_EVENT_TAG_DEV_RESET, PSHOT_EVENT_NAME_DEV_RESET,
2040Sstevel@tonic-gate 	EPL_INTERRUPT, NDI_EVENT_POST_TO_TGT },
2050Sstevel@tonic-gate 
2060Sstevel@tonic-gate { PSHOT_EVENT_TAG_BUS_RESET, PSHOT_EVENT_NAME_BUS_RESET,
2070Sstevel@tonic-gate 	EPL_INTERRUPT, NDI_EVENT_POST_TO_ALL },
2080Sstevel@tonic-gate 
2090Sstevel@tonic-gate { PSHOT_EVENT_TAG_BUS_QUIESCE, PSHOT_EVENT_NAME_BUS_QUIESCE,
2100Sstevel@tonic-gate 	EPL_INTERRUPT, NDI_EVENT_POST_TO_ALL },
2110Sstevel@tonic-gate 
2120Sstevel@tonic-gate { PSHOT_EVENT_TAG_BUS_UNQUIESCE, PSHOT_EVENT_NAME_BUS_UNQUIESCE,
2130Sstevel@tonic-gate 	EPL_INTERRUPT, NDI_EVENT_POST_TO_ALL },
2140Sstevel@tonic-gate 
2150Sstevel@tonic-gate { PSHOT_EVENT_TAG_TEST_POST, PSHOT_EVENT_NAME_BUS_TEST_POST,
2160Sstevel@tonic-gate 	EPL_INTERRUPT, NDI_EVENT_POST_TO_TGT }
2170Sstevel@tonic-gate };
2180Sstevel@tonic-gate 
2190Sstevel@tonic-gate 
2200Sstevel@tonic-gate #define	PSHOT_N_NDI_EVENTS \
2210Sstevel@tonic-gate 	(sizeof (pshot_ndi_event_defs) / sizeof (ndi_event_definition_t))
2220Sstevel@tonic-gate 
2230Sstevel@tonic-gate #ifdef DEBUG
2240Sstevel@tonic-gate 
2250Sstevel@tonic-gate static ndi_event_definition_t pshot_test_events[] = {
2260Sstevel@tonic-gate { 10, "test event 0", EPL_INTERRUPT, NDI_EVENT_POST_TO_ALL },
2270Sstevel@tonic-gate { 11, "test event 1", EPL_KERNEL, NDI_EVENT_POST_TO_TGT },
2280Sstevel@tonic-gate { 12, "test event 2", EPL_INTERRUPT, NDI_EVENT_POST_TO_TGT },
2290Sstevel@tonic-gate { 13, "test event 3", EPL_INTERRUPT, NDI_EVENT_POST_TO_ALL },
2300Sstevel@tonic-gate { 14, "test event 4", EPL_KERNEL, NDI_EVENT_POST_TO_ALL},
2310Sstevel@tonic-gate { 15, "test event 5", EPL_INTERRUPT, NDI_EVENT_POST_TO_ALL },
2320Sstevel@tonic-gate { 16, "test event 6", EPL_KERNEL, NDI_EVENT_POST_TO_ALL },
2330Sstevel@tonic-gate { 17, "test event 7", EPL_INTERRUPT, NDI_EVENT_POST_TO_ALL }
2340Sstevel@tonic-gate };
2350Sstevel@tonic-gate 
2360Sstevel@tonic-gate static ndi_event_definition_t pshot_test_events_high[] = {
2370Sstevel@tonic-gate { 20, "test event high 0", EPL_HIGHLEVEL, NDI_EVENT_POST_TO_ALL}
2380Sstevel@tonic-gate };
2390Sstevel@tonic-gate 
2400Sstevel@tonic-gate #define	PSHOT_N_TEST_EVENTS \
2410Sstevel@tonic-gate 	(sizeof (pshot_test_events)/sizeof (ndi_event_definition_t))
2420Sstevel@tonic-gate #endif
2430Sstevel@tonic-gate 
2440Sstevel@tonic-gate struct register_events {
2450Sstevel@tonic-gate 	char		*event_name;
2460Sstevel@tonic-gate 	ddi_eventcookie_t event_cookie;
2470Sstevel@tonic-gate 	void	(*event_callback)
2480Sstevel@tonic-gate 			(dev_info_t *,
2490Sstevel@tonic-gate 			ddi_eventcookie_t,
2500Sstevel@tonic-gate 			void *arg,
2510Sstevel@tonic-gate 			void *impldata);
2520Sstevel@tonic-gate 	ddi_callback_id_t cb_id;
2530Sstevel@tonic-gate };
2540Sstevel@tonic-gate 
2550Sstevel@tonic-gate struct register_events pshot_register_events[] = {
2560Sstevel@tonic-gate { PSHOT_EVENT_NAME_DEV_OFFLINE, 0, pshot_event_cb, 0 },
2570Sstevel@tonic-gate { PSHOT_EVENT_NAME_DEV_RESET, 0, pshot_event_cb, 0 },
2580Sstevel@tonic-gate { PSHOT_EVENT_NAME_BUS_RESET, 0, pshot_event_cb, 0 },
2590Sstevel@tonic-gate { PSHOT_EVENT_NAME_BUS_QUIESCE, 0, pshot_event_cb, 0 },
2600Sstevel@tonic-gate { PSHOT_EVENT_NAME_BUS_UNQUIESCE, 0, pshot_event_cb, 0 },
2610Sstevel@tonic-gate { PSHOT_EVENT_NAME_BUS_TEST_POST, 0, pshot_event_cb, 0 }
2620Sstevel@tonic-gate };
2630Sstevel@tonic-gate 
2640Sstevel@tonic-gate #define	PSHOT_N_DDI_EVENTS \
2650Sstevel@tonic-gate 	(sizeof (pshot_register_events) / sizeof (struct register_events))
2660Sstevel@tonic-gate 
2670Sstevel@tonic-gate 
2680Sstevel@tonic-gate #ifdef DEBUG
2690Sstevel@tonic-gate 
2700Sstevel@tonic-gate static struct register_events pshot_register_test[] = {
2710Sstevel@tonic-gate { "test event 0", 0, pshot_event_cb_test, 0},
2720Sstevel@tonic-gate { "test event 1", 0, pshot_event_cb_test, 0},
2730Sstevel@tonic-gate { "test event 2", 0, pshot_event_cb_test, 0},
2740Sstevel@tonic-gate { "test event 3", 0, pshot_event_cb_test, 0},
2750Sstevel@tonic-gate { "test event 4", 0, pshot_event_cb_test, 0},
2760Sstevel@tonic-gate { "test event 5", 0, pshot_event_cb_test, 0},
2770Sstevel@tonic-gate { "test event 6", 0, pshot_event_cb_test, 0},
2780Sstevel@tonic-gate { "test event 7", 0, pshot_event_cb_test, 0}
2790Sstevel@tonic-gate };
2800Sstevel@tonic-gate 
2810Sstevel@tonic-gate 
2820Sstevel@tonic-gate static struct register_events pshot_register_high_test[] = {
2830Sstevel@tonic-gate 	{"test event high 0", 0, pshot_event_cb_test, 0}
2840Sstevel@tonic-gate };
2850Sstevel@tonic-gate 
2860Sstevel@tonic-gate #endif /* DEBUG */
2870Sstevel@tonic-gate 
2880Sstevel@tonic-gate static struct {
2890Sstevel@tonic-gate 	int ioctl_int;
2900Sstevel@tonic-gate 	char *ioctl_char;
2910Sstevel@tonic-gate } pshot_devctls[] = {
2920Sstevel@tonic-gate 	{DEVCTL_DEVICE_GETSTATE, "DEVCTL_DEVICE_GETSTATE"},
2930Sstevel@tonic-gate 	{DEVCTL_DEVICE_ONLINE, "DEVCTL_DEVICE_ONLINE"},
2940Sstevel@tonic-gate 	{DEVCTL_DEVICE_OFFLINE, "DEVCTL_DEVICE_OFFLINE"},
2950Sstevel@tonic-gate 	{DEVCTL_DEVICE_REMOVE, "DEVCTL_DEVICE_REMOVE"},
2960Sstevel@tonic-gate 	{DEVCTL_BUS_GETSTATE, "DEVCTL_BUS_GETSTATE"},
2970Sstevel@tonic-gate 	{DEVCTL_BUS_DEV_CREATE, "DEVCTL_BUS_DEV_CREATE"},
2980Sstevel@tonic-gate 	{DEVCTL_BUS_RESET, "DEVCTL_BUS_RESET"},
2990Sstevel@tonic-gate 	{DEVCTL_BUS_RESETALL, "DEVCTL_BUS_RESETALL"},
3000Sstevel@tonic-gate 	{0, NULL}
3010Sstevel@tonic-gate };
3020Sstevel@tonic-gate 
3030Sstevel@tonic-gate static struct bus_ops pshot_bus_ops = {
3040Sstevel@tonic-gate 	BUSO_REV,			/* busops_rev */
3050Sstevel@tonic-gate 	nullbusmap,			/* bus_map */
3060Sstevel@tonic-gate 	NULL,				/* bus_get_intrspec */
3070Sstevel@tonic-gate 	NULL,				/* bus_add_interspec */
3080Sstevel@tonic-gate 	NULL,				/* bus_remove_interspec */
3090Sstevel@tonic-gate 	i_ddi_map_fault,		/* bus_map_fault */
310*85Scth 	ddi_dma_map,			/* bus_dma_map */
311*85Scth 	ddi_dma_allochdl,		/* bus_dma_allochdl */
312*85Scth 	ddi_dma_freehdl,		/* bus_dma_freehdl */
313*85Scth 	ddi_dma_bindhdl,		/* bus_dma_bindhdl */
314*85Scth 	ddi_dma_unbindhdl,		/* bus_dma_unbindhdl */
315*85Scth 	ddi_dma_flush,			/* bus_dma_flush */
316*85Scth 	ddi_dma_win,			/* bus_dma_win */
317*85Scth 	ddi_dma_mctl,			/* bus_dma_ctl */
3180Sstevel@tonic-gate 	pshot_ctl,			/* bus_ctl */
3190Sstevel@tonic-gate 	ddi_bus_prop_op,		/* bus_prop_op */
3200Sstevel@tonic-gate 	pshot_get_eventcookie,		/* bus_get_eventcookie */
3210Sstevel@tonic-gate 	pshot_add_eventcall,		/* bus_add_eventcall */
3220Sstevel@tonic-gate 	pshot_remove_eventcall,		/* bus_remove_event */
3230Sstevel@tonic-gate 	pshot_post_event,		/* bus_post_event */
3240Sstevel@tonic-gate 	NULL,				/* bus_intr_ctl */
3250Sstevel@tonic-gate 	pshot_bus_config,		/* bus_config */
3260Sstevel@tonic-gate 	pshot_bus_unconfig,		/* bus_unconfig */
3270Sstevel@tonic-gate 	NULL,				/* bus_fm_init */
3280Sstevel@tonic-gate 	NULL,				/* bus_fm_fini */
3290Sstevel@tonic-gate 	NULL,				/* bus_fm_access_enter */
3300Sstevel@tonic-gate 	NULL,				/* bus_fm_access_exit */
3310Sstevel@tonic-gate 	pshot_bus_power,		/* bus_power */
3320Sstevel@tonic-gate 	pshot_bus_introp		/* bus_intr_op */
3330Sstevel@tonic-gate };
3340Sstevel@tonic-gate 
3350Sstevel@tonic-gate static struct cb_ops pshot_cb_ops = {
3360Sstevel@tonic-gate 	pshot_open,			/* open */
3370Sstevel@tonic-gate 	pshot_close,			/* close */
3380Sstevel@tonic-gate 	nodev,				/* strategy */
3390Sstevel@tonic-gate 	nodev,				/* print */
3400Sstevel@tonic-gate 	nodev,				/* dump */
3410Sstevel@tonic-gate 	nodev,				/* read */
3420Sstevel@tonic-gate 	nodev,				/* write */
3430Sstevel@tonic-gate 	pshot_ioctl,			/* ioctl */
3440Sstevel@tonic-gate 	nodev,				/* devmap */
3450Sstevel@tonic-gate 	nodev,				/* mmap */
3460Sstevel@tonic-gate 	nodev,				/* segmap */
3470Sstevel@tonic-gate 	nochpoll,			/* poll */
3480Sstevel@tonic-gate 	ddi_prop_op,			/* prop_op */
3490Sstevel@tonic-gate 	NULL,				/* streamtab */
3500Sstevel@tonic-gate 	D_NEW | D_MP | D_HOTPLUG,	/* flags */
3510Sstevel@tonic-gate 	CB_REV,				/* cb_rev */
3520Sstevel@tonic-gate 	nodev,				/* aread */
3530Sstevel@tonic-gate 	nodev,				/* awrite */
3540Sstevel@tonic-gate };
3550Sstevel@tonic-gate 
3560Sstevel@tonic-gate static struct dev_ops pshot_ops = {
3570Sstevel@tonic-gate 	DEVO_REV,		/* devo_rev, */
3580Sstevel@tonic-gate 	0,			/* refcnt  */
3590Sstevel@tonic-gate 	pshot_info,		/* getinfo */
3600Sstevel@tonic-gate 	nulldev,		/* identify */
3610Sstevel@tonic-gate 	pshot_probe,		/* probe */
3620Sstevel@tonic-gate 	pshot_attach,		/* attach */
3630Sstevel@tonic-gate 	pshot_detach,		/* detach */
3640Sstevel@tonic-gate 	nodev,			/* reset */
3650Sstevel@tonic-gate 	&pshot_cb_ops,		/* driver operations */
3660Sstevel@tonic-gate 	&pshot_bus_ops,		/* bus operations */
3670Sstevel@tonic-gate 	pshot_power		/* power */
3680Sstevel@tonic-gate 
3690Sstevel@tonic-gate };
3700Sstevel@tonic-gate 
3710Sstevel@tonic-gate 
3720Sstevel@tonic-gate /*
3730Sstevel@tonic-gate  * Module linkage information for the kernel.
3740Sstevel@tonic-gate  */
3750Sstevel@tonic-gate static struct modldrv modldrv = {
3760Sstevel@tonic-gate 	&mod_driverops,
3770Sstevel@tonic-gate 	"pshotnex %I%",
3780Sstevel@tonic-gate 	&pshot_ops,
3790Sstevel@tonic-gate };
3800Sstevel@tonic-gate 
3810Sstevel@tonic-gate static struct modlinkage modlinkage = {
3820Sstevel@tonic-gate 	MODREV_1, &modldrv, NULL
3830Sstevel@tonic-gate };
3840Sstevel@tonic-gate 
3850Sstevel@tonic-gate 
3860Sstevel@tonic-gate /*
3870Sstevel@tonic-gate  * pshot_devices is set up on the first attach and destroyed on fini
3880Sstevel@tonic-gate  *
3890Sstevel@tonic-gate  * therefore PSHOT_PROP_DEV* properties may be set just for the root device,
3900Sstevel@tonic-gate  * instead of being set globably, in pshot.conf by specifying the properties
3910Sstevel@tonic-gate  * on a single line in the form:
3920Sstevel@tonic-gate  *	name="pshot" parent="/" <dev props ..>
3930Sstevel@tonic-gate  * to unclutter a device tree snapshot.
3940Sstevel@tonic-gate  * this of course produces a long single line that may wrap around several
3950Sstevel@tonic-gate  * times on screen
3960Sstevel@tonic-gate  */
3970Sstevel@tonic-gate 
3980Sstevel@tonic-gate int
3990Sstevel@tonic-gate _init(void)
4000Sstevel@tonic-gate {
4010Sstevel@tonic-gate 	int rv;
4020Sstevel@tonic-gate 
4030Sstevel@tonic-gate 	rv = ddi_soft_state_init(&pshot_softstatep, sizeof (pshot_t), 0);
4040Sstevel@tonic-gate 
4050Sstevel@tonic-gate 	if (rv != DDI_SUCCESS)
4060Sstevel@tonic-gate 		return (rv);
4070Sstevel@tonic-gate 
4080Sstevel@tonic-gate 	mutex_init(&pshot_devices_lock, NULL, MUTEX_DRIVER, NULL);
4090Sstevel@tonic-gate 	pshot_devices = NULL;
4100Sstevel@tonic-gate 	pshot_devices_len = 0;
4110Sstevel@tonic-gate 
4120Sstevel@tonic-gate 	if ((rv = mod_install(&modlinkage)) != 0) {
4130Sstevel@tonic-gate 		ddi_soft_state_fini(&pshot_softstatep);
4140Sstevel@tonic-gate 		mutex_destroy(&pshot_devices_lock);
4150Sstevel@tonic-gate 	}
4160Sstevel@tonic-gate 	return (rv);
4170Sstevel@tonic-gate }
4180Sstevel@tonic-gate 
4190Sstevel@tonic-gate int
4200Sstevel@tonic-gate _fini(void)
4210Sstevel@tonic-gate {
4220Sstevel@tonic-gate 	int rv;
4230Sstevel@tonic-gate 
4240Sstevel@tonic-gate 	if ((rv = mod_remove(&modlinkage)) != 0)
4250Sstevel@tonic-gate 		return (rv);
4260Sstevel@tonic-gate 
4270Sstevel@tonic-gate 	ddi_soft_state_fini(&pshot_softstatep);
4280Sstevel@tonic-gate 	mutex_destroy(&pshot_devices_lock);
4290Sstevel@tonic-gate 	if (pshot_devices)
4300Sstevel@tonic-gate 		pshot_devices_free(pshot_devices, pshot_devices_len);
4310Sstevel@tonic-gate 	return (0);
4320Sstevel@tonic-gate }
4330Sstevel@tonic-gate 
4340Sstevel@tonic-gate int
4350Sstevel@tonic-gate _info(struct modinfo *modinfop)
4360Sstevel@tonic-gate {
4370Sstevel@tonic-gate 	return (mod_info(&modlinkage, modinfop));
4380Sstevel@tonic-gate }
4390Sstevel@tonic-gate 
4400Sstevel@tonic-gate 
4410Sstevel@tonic-gate /*ARGSUSED*/
4420Sstevel@tonic-gate static int
4430Sstevel@tonic-gate pshot_probe(dev_info_t *devi)
4440Sstevel@tonic-gate {
4450Sstevel@tonic-gate 	int	instance = ddi_get_instance(devi);
4460Sstevel@tonic-gate 	char	*bus_addr;
4470Sstevel@tonic-gate 
4480Sstevel@tonic-gate 	/*
4490Sstevel@tonic-gate 	 * Hook for tests to force probe fail
4500Sstevel@tonic-gate 	 */
4510Sstevel@tonic-gate 	if (ddi_prop_lookup_string(DDI_DEV_T_ANY, devi, 0, "bus-addr",
4520Sstevel@tonic-gate 	    &bus_addr) == DDI_PROP_SUCCESS) {
4530Sstevel@tonic-gate 		if (strncmp(bus_addr, "failprobe", 9) == 0) {
4540Sstevel@tonic-gate 			if (pshot_debug)
4550Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d: "
4560Sstevel@tonic-gate 				    "%s forced probe failure\n",
4570Sstevel@tonic-gate 				    instance, bus_addr);
4580Sstevel@tonic-gate 			ddi_prop_free(bus_addr);
4590Sstevel@tonic-gate 			return (DDI_PROBE_FAILURE);
4600Sstevel@tonic-gate 		}
4610Sstevel@tonic-gate 		ddi_prop_free(bus_addr);
4620Sstevel@tonic-gate 	}
4630Sstevel@tonic-gate 
4640Sstevel@tonic-gate 	return (DDI_PROBE_SUCCESS);
4650Sstevel@tonic-gate }
4660Sstevel@tonic-gate 
4670Sstevel@tonic-gate 
4680Sstevel@tonic-gate /*ARGSUSED*/
4690Sstevel@tonic-gate static int
4700Sstevel@tonic-gate pshot_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg, void **result)
4710Sstevel@tonic-gate {
4720Sstevel@tonic-gate 	int instance;
4730Sstevel@tonic-gate 	minor_t minor;
4740Sstevel@tonic-gate 	pshot_t *pshot;
4750Sstevel@tonic-gate 
4760Sstevel@tonic-gate 	minor = getminor((dev_t)arg);
4770Sstevel@tonic-gate 	instance = pshot_minor_decode_inst(minor);
4780Sstevel@tonic-gate 	switch (infocmd) {
4790Sstevel@tonic-gate 	case DDI_INFO_DEVT2DEVINFO:
4800Sstevel@tonic-gate 		pshot = ddi_get_soft_state(pshot_softstatep, instance);
4810Sstevel@tonic-gate 		if (pshot == NULL) {
4820Sstevel@tonic-gate 			cmn_err(CE_WARN, "pshot_info: get soft state failed "
4830Sstevel@tonic-gate 			    "on minor %u, instance %d", minor, instance);
4840Sstevel@tonic-gate 			return (DDI_FAILURE);
4850Sstevel@tonic-gate 		}
4860Sstevel@tonic-gate 		*result = (void *)pshot->dip;
4870Sstevel@tonic-gate 		break;
4880Sstevel@tonic-gate 	case DDI_INFO_DEVT2INSTANCE:
4890Sstevel@tonic-gate 		*result = (void *)(uintptr_t)instance;
4900Sstevel@tonic-gate 		break;
4910Sstevel@tonic-gate 	default:
4920Sstevel@tonic-gate 		cmn_err(CE_WARN, "pshot_info: unrecognized cmd 0x%x on "
4930Sstevel@tonic-gate 		    "minor %u, instance %d", infocmd, minor, instance);
4940Sstevel@tonic-gate 		return (DDI_FAILURE);
4950Sstevel@tonic-gate 	}
4960Sstevel@tonic-gate 
4970Sstevel@tonic-gate 	return (DDI_SUCCESS);
4980Sstevel@tonic-gate }
4990Sstevel@tonic-gate 
5000Sstevel@tonic-gate 
5010Sstevel@tonic-gate static int
5020Sstevel@tonic-gate pshot_attach(dev_info_t *devi, ddi_attach_cmd_t cmd)
5030Sstevel@tonic-gate {
5040Sstevel@tonic-gate 	int instance = ddi_get_instance(devi);
5050Sstevel@tonic-gate 	pshot_t *pshot;
5060Sstevel@tonic-gate 	int rval, i;
5070Sstevel@tonic-gate 	int prop_flags = DDI_PROP_DONTPASS | DDI_PROP_NOTPROM;
5080Sstevel@tonic-gate 	char *bus_addr;
5090Sstevel@tonic-gate 	char *pm_comp[] = {
5100Sstevel@tonic-gate 		"NAME=bus",
5110Sstevel@tonic-gate 		"0=B3",
5120Sstevel@tonic-gate 		"1=B2",
5130Sstevel@tonic-gate 		"2=B1",
5140Sstevel@tonic-gate 		"3=B0"};
5150Sstevel@tonic-gate 	char *pm_hw_state = {"needs-suspend-resume"};
5160Sstevel@tonic-gate 
5170Sstevel@tonic-gate 	pshot_prop_autoattach = ddi_prop_get_int(DDI_DEV_T_ANY, devi,
5180Sstevel@tonic-gate 	    prop_flags, "autoattach", 0);
5190Sstevel@tonic-gate 
5200Sstevel@tonic-gate 	switch (cmd) {
5210Sstevel@tonic-gate 
5220Sstevel@tonic-gate 	case DDI_ATTACH:
5230Sstevel@tonic-gate 		if (pshot_debug)
5240Sstevel@tonic-gate 			cmn_err(CE_CONT, "attach: %s%d/pshot%d\n",
5250Sstevel@tonic-gate 				ddi_get_name(ddi_get_parent(devi)),
5260Sstevel@tonic-gate 				ddi_get_instance(ddi_get_parent(devi)),
5270Sstevel@tonic-gate 				instance);
5280Sstevel@tonic-gate 
5290Sstevel@tonic-gate 		/*
5300Sstevel@tonic-gate 		 * Hook for tests to force attach fail
5310Sstevel@tonic-gate 		 */
5320Sstevel@tonic-gate 		if ((ddi_prop_lookup_string(DDI_DEV_T_ANY, devi, 0, "bus-addr",
5330Sstevel@tonic-gate 		    &bus_addr) == DDI_PROP_SUCCESS) && bus_addr != NULL) {
5340Sstevel@tonic-gate 			if (strncmp(bus_addr, "failattach", 10) == 0) {
5350Sstevel@tonic-gate 				if (pshot_debug)
5360Sstevel@tonic-gate 					cmn_err(CE_CONT, "pshot%d: "
5370Sstevel@tonic-gate 					    "%s forced attach failure\n",
5380Sstevel@tonic-gate 					    instance, bus_addr);
5390Sstevel@tonic-gate 				ddi_prop_free(bus_addr);
5400Sstevel@tonic-gate 				return (DDI_FAILURE);
5410Sstevel@tonic-gate 			}
5420Sstevel@tonic-gate 			ddi_prop_free(bus_addr);
5430Sstevel@tonic-gate 		}
5440Sstevel@tonic-gate 
5450Sstevel@tonic-gate 		/*
5460Sstevel@tonic-gate 		 * minor nodes setup
5470Sstevel@tonic-gate 		 */
5480Sstevel@tonic-gate 		if (ddi_soft_state_zalloc(pshot_softstatep, instance) !=
5490Sstevel@tonic-gate 		    DDI_SUCCESS) {
5500Sstevel@tonic-gate 			return (DDI_FAILURE);
5510Sstevel@tonic-gate 		}
5520Sstevel@tonic-gate 		pshot = ddi_get_soft_state(pshot_softstatep, instance);
5530Sstevel@tonic-gate 		pshot->dip = devi;
5540Sstevel@tonic-gate 		pshot->instance = instance;
5550Sstevel@tonic-gate 		mutex_init(&pshot->lock, NULL, MUTEX_DRIVER, NULL);
5560Sstevel@tonic-gate 
5570Sstevel@tonic-gate 		/* set each minor, then create on dip all together */
5580Sstevel@tonic-gate 
5590Sstevel@tonic-gate 		i = PSHOT_NODENUM_DEVCTL;
5600Sstevel@tonic-gate 		pshot->nodes[i].pshot = pshot;
5610Sstevel@tonic-gate 		pshot->nodes[i].minor = pshot_minor_encode(instance, i);
5620Sstevel@tonic-gate 		(void) strncpy(pshot->nodes[i].name, PSHOT_NODENAME_DEVCTL,
5630Sstevel@tonic-gate 		    PSHOT_MAX_MINOR_NAMELEN);
5640Sstevel@tonic-gate 
5650Sstevel@tonic-gate 		i = PSHOT_NODENUM_TESTCTL;
5660Sstevel@tonic-gate 		pshot->nodes[i].pshot = pshot;
5670Sstevel@tonic-gate 		pshot->nodes[i].minor = pshot_minor_encode(instance, i);
5680Sstevel@tonic-gate 		(void) strncpy(pshot->nodes[i].name, PSHOT_NODENAME_TESTCTL,
5690Sstevel@tonic-gate 		    PSHOT_MAX_MINOR_NAMELEN);
5700Sstevel@tonic-gate 
5710Sstevel@tonic-gate 		/* this assumes contiguous a filling */
5720Sstevel@tonic-gate 		for (i = 0; i <= PSHOT_MAX_NODENUM; i++) {
5730Sstevel@tonic-gate 			if (ddi_create_minor_node(devi, pshot->nodes[i].name,
5740Sstevel@tonic-gate 			    S_IFCHR, pshot->nodes[i].minor, DDI_NT_NEXUS, 0) !=
5750Sstevel@tonic-gate 			    DDI_SUCCESS) {
5760Sstevel@tonic-gate 				cmn_err(CE_WARN, "attach: cannot create "
5770Sstevel@tonic-gate 				    "minor %s", pshot->nodes[i].name);
5780Sstevel@tonic-gate 				goto FAIL_ATTACH;
5790Sstevel@tonic-gate 			}
5800Sstevel@tonic-gate 		}
5810Sstevel@tonic-gate 
5820Sstevel@tonic-gate 		/*
5830Sstevel@tonic-gate 		 * pshot_devices setup
5840Sstevel@tonic-gate 		 */
5850Sstevel@tonic-gate 		if (pshot_devices_setup(devi)) {
5860Sstevel@tonic-gate 			cmn_err(CE_WARN, "attach: pshot devices setup "
5870Sstevel@tonic-gate 			    "failed");
5880Sstevel@tonic-gate 			goto FAIL_ATTACH;
5890Sstevel@tonic-gate 		}
5900Sstevel@tonic-gate 
5910Sstevel@tonic-gate 		/*
5920Sstevel@tonic-gate 		 * events setup
5930Sstevel@tonic-gate 		 */
5940Sstevel@tonic-gate 		for (i = 0; i < PSHOT_N_DDI_EVENTS; i++) {
5950Sstevel@tonic-gate 			rval =	ddi_get_eventcookie(devi,
5960Sstevel@tonic-gate 			    pshot_register_events[i].event_name,
5970Sstevel@tonic-gate 			    &pshot_register_events[i].event_cookie);
5980Sstevel@tonic-gate 
5990Sstevel@tonic-gate 			if (pshot_debug)
6000Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d: event=%s:"
6010Sstevel@tonic-gate 				    "ddi_get_eventcookie rval=%d\n",
6020Sstevel@tonic-gate 				    instance,
6030Sstevel@tonic-gate 				    pshot_register_events[i].event_name, rval);
6040Sstevel@tonic-gate 
6050Sstevel@tonic-gate 			if (rval == DDI_SUCCESS) {
6060Sstevel@tonic-gate 				rval = ddi_add_event_handler(devi,
6070Sstevel@tonic-gate 				    pshot_register_events[i].event_cookie,
6080Sstevel@tonic-gate 				    pshot_register_events[i].event_callback,
6090Sstevel@tonic-gate 				    (void *)pshot,
6100Sstevel@tonic-gate 				    &pshot->callback_cache[i]);
6110Sstevel@tonic-gate 
6120Sstevel@tonic-gate 				if (pshot_debug)
6130Sstevel@tonic-gate 					cmn_err(CE_CONT, "pshot%d: event=%s: "
6140Sstevel@tonic-gate 					    "ddi_add_event_handler rval=%d\n",
6150Sstevel@tonic-gate 					    instance,
6160Sstevel@tonic-gate 					    pshot_register_events[i].event_name,
6170Sstevel@tonic-gate 					    rval);
6180Sstevel@tonic-gate 			}
6190Sstevel@tonic-gate 		}
6200Sstevel@tonic-gate 
6210Sstevel@tonic-gate #ifdef DEBUG
6220Sstevel@tonic-gate 		if (pshot_event_test_enable) {
6230Sstevel@tonic-gate 			pshot_event_test((void *)pshot);
6240Sstevel@tonic-gate 			(void) timeout(pshot_event_test_post_one, (void *)pshot,
6250Sstevel@tonic-gate 			    instance * drv_usectohz(60000000));
6260Sstevel@tonic-gate 		}
6270Sstevel@tonic-gate #endif
6280Sstevel@tonic-gate 
6290Sstevel@tonic-gate 		/*
6300Sstevel@tonic-gate 		 * allocate an ndi event handle
6310Sstevel@tonic-gate 		 */
6320Sstevel@tonic-gate 		if (ndi_event_alloc_hdl(devi, NULL, &pshot->ndi_event_hdl,
6330Sstevel@tonic-gate 		    NDI_SLEEP) != NDI_SUCCESS) {
6340Sstevel@tonic-gate 			goto FAIL_ATTACH;
6350Sstevel@tonic-gate 		}
6360Sstevel@tonic-gate 
6370Sstevel@tonic-gate 		pshot->ndi_events.ndi_events_version = NDI_EVENTS_REV1;
6380Sstevel@tonic-gate 		pshot->ndi_events.ndi_n_events = PSHOT_N_NDI_EVENTS;
6390Sstevel@tonic-gate 		pshot->ndi_events.ndi_event_defs = pshot_ndi_event_defs;
6400Sstevel@tonic-gate 
6410Sstevel@tonic-gate 		if (ndi_event_bind_set(pshot->ndi_event_hdl, &pshot->ndi_events,
6420Sstevel@tonic-gate 		    NDI_SLEEP) != NDI_SUCCESS) {
6430Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d bind set failed\n",
6440Sstevel@tonic-gate 				instance);
6450Sstevel@tonic-gate 		}
6460Sstevel@tonic-gate 
6470Sstevel@tonic-gate 		/*
6480Sstevel@tonic-gate 		 * setup a test for nexus auto-attach iff we are
6490Sstevel@tonic-gate 		 * a second level pshot node (parent == /SUNW,pshot)
6500Sstevel@tonic-gate 		 * enable by setting "autoattach=1" in pshot.conf
6510Sstevel@tonic-gate 		 */
6520Sstevel@tonic-gate 		if ((PARENT_IS_PSHOT(devi)) && (pshot_prop_autoattach != 0) &&
6530Sstevel@tonic-gate 		    (ddi_get_instance(ddi_get_parent(devi))) == 0)
6540Sstevel@tonic-gate 			pshot_setup_autoattach(devi);
6550Sstevel@tonic-gate 
6560Sstevel@tonic-gate 		/*
6570Sstevel@tonic-gate 		 * initialize internal state to idle: busy = 0,
6580Sstevel@tonic-gate 		 * power level = -1
6590Sstevel@tonic-gate 		 */
6600Sstevel@tonic-gate 		mutex_enter(&pshot->lock);
6610Sstevel@tonic-gate 		pshot->busy = 0;
6620Sstevel@tonic-gate 		pshot->busy_ioctl = 0;
6630Sstevel@tonic-gate 		pshot->level = -1;
6640Sstevel@tonic-gate 		pshot->state &= ~STRICT_PARENT;
6650Sstevel@tonic-gate 		pshot->state |= PM_SUPPORTED;
6660Sstevel@tonic-gate 		mutex_exit(&pshot->lock);
6670Sstevel@tonic-gate 
6680Sstevel@tonic-gate 		/*
6690Sstevel@tonic-gate 		 * Create the "pm-want-child-notification?" property
6700Sstevel@tonic-gate 		 * for the root node /devices/pshot
6710Sstevel@tonic-gate 		 */
6720Sstevel@tonic-gate 		if (instance == 0) {
6730Sstevel@tonic-gate 			if (pshot_debug) {
6740Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d: DDI_ATTACH:\n\t"
6750Sstevel@tonic-gate 				    " create the"
6760Sstevel@tonic-gate 				    " \"pm-want-child-notification?\" property"
6770Sstevel@tonic-gate 				    " for the root node\n", instance);
6780Sstevel@tonic-gate 			}
6790Sstevel@tonic-gate 			if (ddi_prop_create(DDI_DEV_T_NONE, devi, 0,
6800Sstevel@tonic-gate 			    "pm-want-child-notification?", NULL, 0)
6810Sstevel@tonic-gate 			    != DDI_PROP_SUCCESS) {
6820Sstevel@tonic-gate 				cmn_err(CE_WARN, "%s%d:\n\t"
6830Sstevel@tonic-gate 				    " unable to create the"
6840Sstevel@tonic-gate 				    " \"pm-want-child-notification?\""
6850Sstevel@tonic-gate 				    " property", ddi_get_name(devi),
6860Sstevel@tonic-gate 				    ddi_get_instance(devi));
6870Sstevel@tonic-gate 
6880Sstevel@tonic-gate 				goto FAIL_ATTACH;
6890Sstevel@tonic-gate 			}
6900Sstevel@tonic-gate 		}
6910Sstevel@tonic-gate 
6920Sstevel@tonic-gate 		/*
6930Sstevel@tonic-gate 		 * Check if the pm-want-child-notification? property was
6940Sstevel@tonic-gate 		 * created in pshot_bus_config_setup_nexus() by the parent.
6950Sstevel@tonic-gate 		 * Set the STRICT_PARENT flag if not.
6960Sstevel@tonic-gate 		 */
6970Sstevel@tonic-gate 		if (ddi_prop_exists(DDI_DEV_T_ANY, devi,
6980Sstevel@tonic-gate 		    (DDI_PROP_DONTPASS | DDI_PROP_NOTPROM),
6990Sstevel@tonic-gate 		    "pm-want-child-notification?") != 1) {
7000Sstevel@tonic-gate 			if (pshot_debug) {
7010Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d: DDI_ATTACH:"
7020Sstevel@tonic-gate 				    " STRICT PARENT\n", instance);
7030Sstevel@tonic-gate 			}
7040Sstevel@tonic-gate 			mutex_enter(&pshot->lock);
7050Sstevel@tonic-gate 			pshot->state |= STRICT_PARENT;
7060Sstevel@tonic-gate 			mutex_exit(&pshot->lock);
7070Sstevel@tonic-gate 		} else {
7080Sstevel@tonic-gate 			if (pshot_debug) {
7090Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d: DDI_ATTACH:"
7100Sstevel@tonic-gate 				    " INVOLVED PARENT\n", instance);
7110Sstevel@tonic-gate 			}
7120Sstevel@tonic-gate 			mutex_enter(&pshot->lock);
7130Sstevel@tonic-gate 			pshot->state &= ~STRICT_PARENT;
7140Sstevel@tonic-gate 			mutex_exit(&pshot->lock);
7150Sstevel@tonic-gate 		}
7160Sstevel@tonic-gate 
7170Sstevel@tonic-gate 		/*
7180Sstevel@tonic-gate 		 * create the pm-components property: one component
7190Sstevel@tonic-gate 		 * with 4 power levels.
7200Sstevel@tonic-gate 		 * - skip for pshot@XXX,nopm and pshot@XXX,nopm_strict:
7210Sstevel@tonic-gate 		 * "no-pm-components" property
7220Sstevel@tonic-gate 		 */
7230Sstevel@tonic-gate 		if (ddi_prop_exists(DDI_DEV_T_ANY, devi,
7240Sstevel@tonic-gate 		    (DDI_PROP_DONTPASS | DDI_PROP_NOTPROM),
7250Sstevel@tonic-gate 		    "no-pm-components") == 0) {
7260Sstevel@tonic-gate 			if (pshot_debug) {
7270Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d: DDI_ATTACH:"
7280Sstevel@tonic-gate 				    " create the \"pm_components\" property\n",
7290Sstevel@tonic-gate 				    instance);
7300Sstevel@tonic-gate 			}
7310Sstevel@tonic-gate 			if (ddi_prop_update_string_array(DDI_DEV_T_NONE, devi,
7320Sstevel@tonic-gate 			    "pm-components", pm_comp, 5) != DDI_PROP_SUCCESS) {
7330Sstevel@tonic-gate 				cmn_err(CE_WARN, "%s%d: DDI_ATTACH:\n\t"
7340Sstevel@tonic-gate 				    " unable to create the \"pm-components\""
7350Sstevel@tonic-gate 				    " property", ddi_get_name(devi),
7360Sstevel@tonic-gate 				    ddi_get_instance(devi));
7370Sstevel@tonic-gate 
7380Sstevel@tonic-gate 				goto FAIL_ATTACH;
7390Sstevel@tonic-gate 			}
7400Sstevel@tonic-gate 		} else {
7410Sstevel@tonic-gate 			if (pshot_debug) {
7420Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d: DDI_ATTACH:"
7430Sstevel@tonic-gate 				    " NO-PM_COMPONENTS PARENT\n", instance);
7440Sstevel@tonic-gate 			}
7450Sstevel@tonic-gate 			mutex_enter(&pshot->lock);
7460Sstevel@tonic-gate 			pshot->state &= ~PM_SUPPORTED;
7470Sstevel@tonic-gate 			mutex_exit(&pshot->lock);
7480Sstevel@tonic-gate 		}
7490Sstevel@tonic-gate 
7500Sstevel@tonic-gate 		/*
7510Sstevel@tonic-gate 		 * create the property needed to get DDI_SUSPEND
7520Sstevel@tonic-gate 		 * and DDI_RESUME calls
7530Sstevel@tonic-gate 		 */
7540Sstevel@tonic-gate 		if (pshot_debug) {
7550Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d: DDI_ATTACH:"
7560Sstevel@tonic-gate 			    " create pm-hardware-state property\n",
7570Sstevel@tonic-gate 			    instance);
7580Sstevel@tonic-gate 		}
7590Sstevel@tonic-gate 		if (ddi_prop_update_string(DDI_DEV_T_NONE, devi,
7600Sstevel@tonic-gate 		    "pm-hardware-state", pm_hw_state) != DDI_PROP_SUCCESS) {
7610Sstevel@tonic-gate 			cmn_err(CE_WARN, "%s%d: DDI_ATTACH:\n\t"
7620Sstevel@tonic-gate 			    " unable to create the \"pm-hardware-state\""
7630Sstevel@tonic-gate 			    " property", ddi_get_name(devi),
7640Sstevel@tonic-gate 			    ddi_get_instance(devi));
7650Sstevel@tonic-gate 
7660Sstevel@tonic-gate 			goto FAIL_ATTACH;
7670Sstevel@tonic-gate 		}
7680Sstevel@tonic-gate 
7690Sstevel@tonic-gate 		/*
7700Sstevel@tonic-gate 		 * set power level to max via pm_raise_power(),
7710Sstevel@tonic-gate 		 * - skip if PM_SUPPORTED is not set (pshot@XXX,nopm)
7720Sstevel@tonic-gate 		 */
7730Sstevel@tonic-gate 		if (pshot->state & PM_SUPPORTED) {
7740Sstevel@tonic-gate 			if (pshot_debug) {
7750Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d: DDI_ATTACH:"
7760Sstevel@tonic-gate 				    " raise power to MAXPWR\n", instance);
7770Sstevel@tonic-gate 			}
7780Sstevel@tonic-gate 			if (pm_raise_power(pshot->dip, 0, MAXPWR) !=
7790Sstevel@tonic-gate 			    DDI_SUCCESS) {
7800Sstevel@tonic-gate 				cmn_err(CE_WARN, "%s%d: DDI_ATTACH:"
7810Sstevel@tonic-gate 				    " pm_raise_power failed",
7820Sstevel@tonic-gate 				    ddi_get_name(devi),
7830Sstevel@tonic-gate 				    ddi_get_instance(devi));
7840Sstevel@tonic-gate 
7850Sstevel@tonic-gate 				goto FAIL_ATTACH;
7860Sstevel@tonic-gate 
7870Sstevel@tonic-gate 			}
7880Sstevel@tonic-gate 		}
7890Sstevel@tonic-gate 
7900Sstevel@tonic-gate 		if (pshot_log)
7910Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d attached\n", instance);
7920Sstevel@tonic-gate 		ddi_report_dev(devi);
7930Sstevel@tonic-gate 
7940Sstevel@tonic-gate 		return (DDI_SUCCESS);
7950Sstevel@tonic-gate 		/*NOTREACHED*/
7960Sstevel@tonic-gate FAIL_ATTACH:
7970Sstevel@tonic-gate 		ddi_remove_minor_node(devi, NULL);
7980Sstevel@tonic-gate 		mutex_destroy(&pshot->lock);
7990Sstevel@tonic-gate 		ddi_soft_state_free(pshot_softstatep, instance);
8000Sstevel@tonic-gate 		return (DDI_FAILURE);
8010Sstevel@tonic-gate 
8020Sstevel@tonic-gate 	case DDI_RESUME:
8030Sstevel@tonic-gate 		if (pshot_debug) {
8040Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d: DDI_RESUME: resuming\n",
8050Sstevel@tonic-gate 			    instance);
8060Sstevel@tonic-gate 		}
8070Sstevel@tonic-gate 		pshot = ddi_get_soft_state(pshot_softstatep, instance);
8080Sstevel@tonic-gate 
8090Sstevel@tonic-gate 		/*
8100Sstevel@tonic-gate 		 * set power level to max via pm_raise_power(),
8110Sstevel@tonic-gate 		 * - skip if PM_SUPPORTED is not set (pshot@XXX,nopm)
8120Sstevel@tonic-gate 		 */
8130Sstevel@tonic-gate 		if (pshot->state & PM_SUPPORTED) {
8140Sstevel@tonic-gate 			if (pshot_debug) {
8150Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d: DDI_RESUME:"
8160Sstevel@tonic-gate 				    " raise power to MAXPWR\n", instance);
8170Sstevel@tonic-gate 			}
8180Sstevel@tonic-gate 			if (pm_raise_power(pshot->dip, 0, MAXPWR) !=
8190Sstevel@tonic-gate 			    DDI_SUCCESS) {
8200Sstevel@tonic-gate 				cmn_err(CE_WARN, "%s%d: DDI_RESUME:"
8210Sstevel@tonic-gate 				    " pm_raise_power failed",
8220Sstevel@tonic-gate 				    ddi_get_name(devi),
8230Sstevel@tonic-gate 				    ddi_get_instance(devi));
8240Sstevel@tonic-gate 			}
8250Sstevel@tonic-gate 		}
8260Sstevel@tonic-gate 
8270Sstevel@tonic-gate 		if (pshot_debug) {
8280Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d: DDI_RESUME: resumed\n",
8290Sstevel@tonic-gate 			    instance);
8300Sstevel@tonic-gate 		}
8310Sstevel@tonic-gate 		return (DDI_SUCCESS);
8320Sstevel@tonic-gate 
8330Sstevel@tonic-gate 	default:
8340Sstevel@tonic-gate 		return (DDI_FAILURE);
8350Sstevel@tonic-gate 	}
8360Sstevel@tonic-gate }
8370Sstevel@tonic-gate 
8380Sstevel@tonic-gate static int
8390Sstevel@tonic-gate pshot_detach(dev_info_t *devi, ddi_detach_cmd_t cmd)
8400Sstevel@tonic-gate {
8410Sstevel@tonic-gate 	int instance = ddi_get_instance(devi);
8420Sstevel@tonic-gate 	int i, rval;
8430Sstevel@tonic-gate 	pshot_t *pshot = ddi_get_soft_state(pshot_softstatep, instance);
8440Sstevel@tonic-gate 	int level_tmp;
8450Sstevel@tonic-gate 
8460Sstevel@tonic-gate 	if (pshot == NULL)
8470Sstevel@tonic-gate 		return (DDI_FAILURE);
8480Sstevel@tonic-gate 
8490Sstevel@tonic-gate 	switch (cmd) {
8500Sstevel@tonic-gate 
8510Sstevel@tonic-gate 	case DDI_DETACH:
8520Sstevel@tonic-gate 		if (pshot_debug)
8530Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d: DDI_DETACH\n", instance);
8540Sstevel@tonic-gate 		/*
8550Sstevel@tonic-gate 		 * power off component 0
8560Sstevel@tonic-gate 		 * - skip if PM_SUPPORTED is not set (pshot@XXX,nopm)
8570Sstevel@tonic-gate 		 */
8580Sstevel@tonic-gate 		if (pshot->state & PM_SUPPORTED) {
8590Sstevel@tonic-gate 			if (pshot_debug) {
8600Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d: DDI_DETACH:"
8610Sstevel@tonic-gate 				    " power off\n", instance);
8620Sstevel@tonic-gate 			}
8630Sstevel@tonic-gate 			if (pm_lower_power(pshot->dip, 0, 0) != DDI_SUCCESS) {
8640Sstevel@tonic-gate 				cmn_err(CE_WARN, "%s%d: DDI_DETACH:\n\t"
8650Sstevel@tonic-gate 				    "pm_lower_power failed for comp 0 to"
8660Sstevel@tonic-gate 				    " level 0", ddi_get_name(devi),
8670Sstevel@tonic-gate 				    ddi_get_instance(devi));
8680Sstevel@tonic-gate 
8690Sstevel@tonic-gate 				return (DDI_FAILURE);
8700Sstevel@tonic-gate 			}
8710Sstevel@tonic-gate 
8720Sstevel@tonic-gate 			/*
8730Sstevel@tonic-gate 			 * Check if the power level is actually OFF.
8740Sstevel@tonic-gate 			 * Issue pm_power_has_changed if not.
8750Sstevel@tonic-gate 			 */
8760Sstevel@tonic-gate 			mutex_enter(&pshot->lock);
8770Sstevel@tonic-gate 			if (pshot->level != 0) {
8780Sstevel@tonic-gate 				if (pshot_debug) {
8790Sstevel@tonic-gate 					cmn_err(CE_NOTE, "pshot%d:"
8800Sstevel@tonic-gate 					    " DDI_DETACH: power off via"
8810Sstevel@tonic-gate 					    " pm_power_has_changed instead\n",
8820Sstevel@tonic-gate 					    instance);
8830Sstevel@tonic-gate 				}
8840Sstevel@tonic-gate 				level_tmp = pshot->level;
8850Sstevel@tonic-gate 				pshot->level = 0;
8860Sstevel@tonic-gate 				if (pm_power_has_changed(pshot->dip, 0, 0) !=
8870Sstevel@tonic-gate 				    DDI_SUCCESS) {
8880Sstevel@tonic-gate 					if (pshot_debug) {
8890Sstevel@tonic-gate 						cmn_err(CE_NOTE, "pshot%d:"
8900Sstevel@tonic-gate 						    " DDI_DETACH:"
8910Sstevel@tonic-gate 						    " pm_power_has_changed"
8920Sstevel@tonic-gate 						    " failed\n", instance);
8930Sstevel@tonic-gate 					}
8940Sstevel@tonic-gate 					pshot->level = level_tmp;
8950Sstevel@tonic-gate 					mutex_exit(&pshot->lock);
8960Sstevel@tonic-gate 
8970Sstevel@tonic-gate 					return (DDI_FAILURE);
8980Sstevel@tonic-gate 				}
8990Sstevel@tonic-gate 			}
9000Sstevel@tonic-gate 			mutex_exit(&pshot->lock);
9010Sstevel@tonic-gate 		}
9020Sstevel@tonic-gate 
9030Sstevel@tonic-gate 		for (i = 0; i < PSHOT_N_DDI_EVENTS; i++) {
9040Sstevel@tonic-gate 			if (pshot->callback_cache[i] != NULL) {
9050Sstevel@tonic-gate 				rval = ddi_remove_event_handler(
9060Sstevel@tonic-gate 				    pshot->callback_cache[i]);
9070Sstevel@tonic-gate 				ASSERT(rval == DDI_SUCCESS);
9080Sstevel@tonic-gate 			}
9090Sstevel@tonic-gate 		}
9100Sstevel@tonic-gate 
9110Sstevel@tonic-gate #ifdef DEBUG
9120Sstevel@tonic-gate 		for (i = 0; i < PSHOT_N_TEST_EVENTS; i++) {
9130Sstevel@tonic-gate 			if (pshot->test_callback_cache[i] != NULL) {
9140Sstevel@tonic-gate 				rval = ddi_remove_event_handler(
9150Sstevel@tonic-gate 				    pshot->test_callback_cache[i]);
9160Sstevel@tonic-gate 				ASSERT(rval == DDI_SUCCESS);
9170Sstevel@tonic-gate 			}
9180Sstevel@tonic-gate 		}
9190Sstevel@tonic-gate #endif
9200Sstevel@tonic-gate 		rval = ndi_event_free_hdl(pshot->ndi_event_hdl);
9210Sstevel@tonic-gate 		ASSERT(rval == DDI_SUCCESS);
9220Sstevel@tonic-gate 
9230Sstevel@tonic-gate 		if (pshot_log)
9240Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d detached\n", instance);
9250Sstevel@tonic-gate 
9260Sstevel@tonic-gate 		ddi_remove_minor_node(devi, NULL);
9270Sstevel@tonic-gate 		mutex_destroy(&pshot->lock);
9280Sstevel@tonic-gate 		ddi_soft_state_free(pshot_softstatep, instance);
9290Sstevel@tonic-gate 		break;
9300Sstevel@tonic-gate 
9310Sstevel@tonic-gate 	case DDI_SUSPEND:
9320Sstevel@tonic-gate 		if (pshot_debug)
9330Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d: DDI_SUSPEND\n", instance);
9340Sstevel@tonic-gate 		/*
9350Sstevel@tonic-gate 		 * fail the suspend if FAIL_SUSPEND_FLAG is set.
9360Sstevel@tonic-gate 		 * clear the FAIL_SUSPEND_FLAG flag
9370Sstevel@tonic-gate 		 */
9380Sstevel@tonic-gate 		mutex_enter(&pshot->lock);
9390Sstevel@tonic-gate 		if (pshot->state & FAIL_SUSPEND_FLAG) {
9400Sstevel@tonic-gate 			if (pshot_debug) {
9410Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d:"
9420Sstevel@tonic-gate 				" FAIL_SUSPEND_FLAG set, fail suspend\n",
9430Sstevel@tonic-gate 				ddi_get_instance(devi));
9440Sstevel@tonic-gate 			}
9450Sstevel@tonic-gate 			pshot->state &= ~FAIL_SUSPEND_FLAG;
9460Sstevel@tonic-gate 			rval = DDI_FAILURE;
9470Sstevel@tonic-gate 		} else {
9480Sstevel@tonic-gate 			rval = DDI_SUCCESS;
9490Sstevel@tonic-gate 		}
9500Sstevel@tonic-gate 		mutex_exit(&pshot->lock);
9510Sstevel@tonic-gate 
9520Sstevel@tonic-gate 		/*
9530Sstevel@tonic-gate 		 * power OFF via pm_power_has_changed
9540Sstevel@tonic-gate 		 */
9550Sstevel@tonic-gate 		mutex_enter(&pshot->lock);
9560Sstevel@tonic-gate 		if (pshot->state & PM_SUPPORTED) {
9570Sstevel@tonic-gate 			if (pshot_debug) {
9580Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d: DDI_SUSPEND:"
9590Sstevel@tonic-gate 				    " power off via pm_power_has_changed\n",
9600Sstevel@tonic-gate 				    instance);
9610Sstevel@tonic-gate 			}
9620Sstevel@tonic-gate 			level_tmp = pshot->level;
9630Sstevel@tonic-gate 			pshot->level = 0;
9640Sstevel@tonic-gate 			if (pm_power_has_changed(pshot->dip, 0, 0) !=
9650Sstevel@tonic-gate 			    DDI_SUCCESS) {
9660Sstevel@tonic-gate 				if (pshot_debug) {
9670Sstevel@tonic-gate 					cmn_err(CE_NOTE, "pshot%d:"
9680Sstevel@tonic-gate 					    " DDI_SUSPEND:"
9690Sstevel@tonic-gate 					    " pm_power_has_changed failed\n",
9700Sstevel@tonic-gate 					    instance);
9710Sstevel@tonic-gate 				}
9720Sstevel@tonic-gate 				pshot->level = level_tmp;
9730Sstevel@tonic-gate 				rval = DDI_FAILURE;
9740Sstevel@tonic-gate 			}
9750Sstevel@tonic-gate 		}
9760Sstevel@tonic-gate 		mutex_exit(&pshot->lock);
9770Sstevel@tonic-gate 		return (rval);
9780Sstevel@tonic-gate 
9790Sstevel@tonic-gate 	default:
9800Sstevel@tonic-gate 		break;
9810Sstevel@tonic-gate 	}
9820Sstevel@tonic-gate 
9830Sstevel@tonic-gate 	return (DDI_SUCCESS);
9840Sstevel@tonic-gate }
9850Sstevel@tonic-gate 
9860Sstevel@tonic-gate 
9870Sstevel@tonic-gate /*
9880Sstevel@tonic-gate  * returns number of bits to represent <val>
9890Sstevel@tonic-gate  */
9900Sstevel@tonic-gate static size_t
9910Sstevel@tonic-gate pshot_numbits(size_t val)
9920Sstevel@tonic-gate {
9930Sstevel@tonic-gate 	size_t bitcnt;
9940Sstevel@tonic-gate 
9950Sstevel@tonic-gate 	if (val == 0)
9960Sstevel@tonic-gate 		return (0);
9970Sstevel@tonic-gate 	for (bitcnt = 1; 1 << bitcnt < val; bitcnt++)
9980Sstevel@tonic-gate 		;
9990Sstevel@tonic-gate 	return (bitcnt);
10000Sstevel@tonic-gate }
10010Sstevel@tonic-gate 
10020Sstevel@tonic-gate /*
10030Sstevel@tonic-gate  * returns a minor number encoded with instance <inst> and an index <nodenum>
10040Sstevel@tonic-gate  * that identifies the minor node for this instance
10050Sstevel@tonic-gate  */
10060Sstevel@tonic-gate static minor_t
10070Sstevel@tonic-gate pshot_minor_encode(int inst, minor_t nodenum)
10080Sstevel@tonic-gate {
10090Sstevel@tonic-gate 	return (((minor_t)inst << PSHOT_NODENUM_BITS()) |
10100Sstevel@tonic-gate 	    (((1 << PSHOT_NODENUM_BITS()) - 1) & nodenum));
10110Sstevel@tonic-gate }
10120Sstevel@tonic-gate 
10130Sstevel@tonic-gate /*
10140Sstevel@tonic-gate  * returns instance of <minor>
10150Sstevel@tonic-gate  */
10160Sstevel@tonic-gate static int
10170Sstevel@tonic-gate pshot_minor_decode_inst(minor_t minor)
10180Sstevel@tonic-gate {
10190Sstevel@tonic-gate 	return (minor >> PSHOT_NODENUM_BITS());
10200Sstevel@tonic-gate }
10210Sstevel@tonic-gate 
10220Sstevel@tonic-gate /*
10230Sstevel@tonic-gate  * returns node number indexing a minor node for the instance in <minor>
10240Sstevel@tonic-gate  */
10250Sstevel@tonic-gate static minor_t
10260Sstevel@tonic-gate pshot_minor_decode_nodenum(minor_t minor)
10270Sstevel@tonic-gate {
10280Sstevel@tonic-gate 	return (minor & ((1 << PSHOT_NODENUM_BITS()) - 1));
10290Sstevel@tonic-gate }
10300Sstevel@tonic-gate 
10310Sstevel@tonic-gate 
10320Sstevel@tonic-gate /*
10330Sstevel@tonic-gate  * pshot_bus_introp: pshot convert an interrupt number to an
10340Sstevel@tonic-gate  *			   interrupt. NO OP for pseudo drivers.
10350Sstevel@tonic-gate  */
10360Sstevel@tonic-gate /*ARGSUSED*/
10370Sstevel@tonic-gate static int
10380Sstevel@tonic-gate pshot_bus_introp(dev_info_t *dip, dev_info_t *rdip, ddi_intr_op_t intr_op,
10390Sstevel@tonic-gate     ddi_intr_handle_impl_t *hdlp, void *result)
10400Sstevel@tonic-gate {
10410Sstevel@tonic-gate 	return (DDI_FAILURE);
10420Sstevel@tonic-gate }
10430Sstevel@tonic-gate static int
10440Sstevel@tonic-gate pshot_ctl(dev_info_t *dip, dev_info_t *rdip,
10450Sstevel@tonic-gate     ddi_ctl_enum_t ctlop, void *arg, void *result)
10460Sstevel@tonic-gate {
10470Sstevel@tonic-gate 	int instance;
10480Sstevel@tonic-gate 	pshot_t *pshot;
10490Sstevel@tonic-gate 	char *childname;
10500Sstevel@tonic-gate 	int childinstance;
10510Sstevel@tonic-gate 	char *name;
10520Sstevel@tonic-gate 	int circ;
10530Sstevel@tonic-gate 	struct attachspec *as;
10540Sstevel@tonic-gate 	struct detachspec *ds;
10550Sstevel@tonic-gate 	int rval = DDI_SUCCESS;
10560Sstevel@tonic-gate 	int no_pm_components_child;
10570Sstevel@tonic-gate 
10580Sstevel@tonic-gate 	name = ddi_get_name(dip);
10590Sstevel@tonic-gate 	instance = ddi_get_instance(dip);
10600Sstevel@tonic-gate 	pshot = ddi_get_soft_state(pshot_softstatep, instance);
10610Sstevel@tonic-gate 	if (pshot == NULL) {
10620Sstevel@tonic-gate 		return (ENXIO);
10630Sstevel@tonic-gate 	}
10640Sstevel@tonic-gate 
10650Sstevel@tonic-gate 	switch (ctlop) {
10660Sstevel@tonic-gate 	case DDI_CTLOPS_REPORTDEV:
10670Sstevel@tonic-gate 		if (rdip == (dev_info_t *)0)
10680Sstevel@tonic-gate 			return (DDI_FAILURE);
10690Sstevel@tonic-gate 		cmn_err(CE_CONT, "?pshot-device: %s%d\n",
10700Sstevel@tonic-gate 		    ddi_get_name(rdip), ddi_get_instance(rdip));
10710Sstevel@tonic-gate 		return (DDI_SUCCESS);
10720Sstevel@tonic-gate 
10730Sstevel@tonic-gate 	case DDI_CTLOPS_INITCHILD:
10740Sstevel@tonic-gate 	{
10750Sstevel@tonic-gate 		dev_info_t *child = (dev_info_t *)arg;
10760Sstevel@tonic-gate 
10770Sstevel@tonic-gate 		if (pshot_debug) {
10780Sstevel@tonic-gate 			cmn_err(CE_CONT, "initchild %s%d/%s%d state 0x%x\n",
10790Sstevel@tonic-gate 			    ddi_get_name(dip), ddi_get_instance(dip),
10800Sstevel@tonic-gate 			    ddi_node_name(child), ddi_get_instance(child),
10810Sstevel@tonic-gate 			    DEVI(child)->devi_state);
10820Sstevel@tonic-gate 		}
10830Sstevel@tonic-gate 
10840Sstevel@tonic-gate 		return (pshot_initchild(dip, child));
10850Sstevel@tonic-gate 	}
10860Sstevel@tonic-gate 
10870Sstevel@tonic-gate 	case DDI_CTLOPS_UNINITCHILD:
10880Sstevel@tonic-gate 	{
10890Sstevel@tonic-gate 		dev_info_t *child = (dev_info_t *)arg;
10900Sstevel@tonic-gate 
10910Sstevel@tonic-gate 		if (pshot_debug) {
10920Sstevel@tonic-gate 			cmn_err(CE_CONT, "uninitchild %s%d/%s%d state 0x%x\n",
10930Sstevel@tonic-gate 			    ddi_get_name(dip), ddi_get_instance(dip),
10940Sstevel@tonic-gate 			    ddi_node_name(child), ddi_get_instance(child),
10950Sstevel@tonic-gate 			    DEVI(child)->devi_state);
10960Sstevel@tonic-gate 		}
10970Sstevel@tonic-gate 
10980Sstevel@tonic-gate 		return (pshot_uninitchild(dip, child));
10990Sstevel@tonic-gate 	}
11000Sstevel@tonic-gate 
11010Sstevel@tonic-gate 	case DDI_CTLOPS_DMAPMAPC:
11020Sstevel@tonic-gate 	case DDI_CTLOPS_REPORTINT:
11030Sstevel@tonic-gate 	case DDI_CTLOPS_REGSIZE:
11040Sstevel@tonic-gate 	case DDI_CTLOPS_NREGS:
11050Sstevel@tonic-gate 	case DDI_CTLOPS_NINTRS:
11060Sstevel@tonic-gate 	case DDI_CTLOPS_SIDDEV:
11070Sstevel@tonic-gate 	case DDI_CTLOPS_SLAVEONLY:
11080Sstevel@tonic-gate 	case DDI_CTLOPS_AFFINITY:
11090Sstevel@tonic-gate 	case DDI_CTLOPS_INTR_HILEVEL:
11100Sstevel@tonic-gate 	case DDI_CTLOPS_XLATE_INTRS:
11110Sstevel@tonic-gate 	case DDI_CTLOPS_POKE:
11120Sstevel@tonic-gate 	case DDI_CTLOPS_PEEK:
11130Sstevel@tonic-gate 		/*
11140Sstevel@tonic-gate 		 * These ops correspond to functions that "shouldn't" be called
11150Sstevel@tonic-gate 		 * by a pseudo driver.  So we whine when we're called.
11160Sstevel@tonic-gate 		 */
11170Sstevel@tonic-gate 		cmn_err(CE_CONT, "%s%d: invalid op (%d) from %s%d\n",
11180Sstevel@tonic-gate 			ddi_get_name(dip), ddi_get_instance(dip),
11190Sstevel@tonic-gate 			ctlop, ddi_get_name(rdip), ddi_get_instance(rdip));
11200Sstevel@tonic-gate 		return (DDI_FAILURE);
11210Sstevel@tonic-gate 
11220Sstevel@tonic-gate 	case DDI_CTLOPS_ATTACH:
11230Sstevel@tonic-gate 	{
11240Sstevel@tonic-gate 		dev_info_t *child = (dev_info_t *)rdip;
11250Sstevel@tonic-gate 		childname = ddi_node_name(child);
11260Sstevel@tonic-gate 		childinstance = ddi_get_instance(child);
11270Sstevel@tonic-gate 		as = (struct attachspec *)arg;
11280Sstevel@tonic-gate 
11290Sstevel@tonic-gate 		no_pm_components_child = 0;
11300Sstevel@tonic-gate 		if (ddi_prop_exists(DDI_DEV_T_ANY, child,
11310Sstevel@tonic-gate 		    (DDI_PROP_DONTPASS | DDI_PROP_NOTPROM),
11320Sstevel@tonic-gate 		    "no-pm-components") == 1) {
11330Sstevel@tonic-gate 			no_pm_components_child = 1;
11340Sstevel@tonic-gate 		}
11350Sstevel@tonic-gate 		if (pshot_debug) {
11360Sstevel@tonic-gate 			cmn_err(CE_CONT, "%s%d: ctl_attach %s%d [%d]\n",
11370Sstevel@tonic-gate 			    name, instance, childname, childinstance,
11380Sstevel@tonic-gate 			    no_pm_components_child);
11390Sstevel@tonic-gate 		}
11400Sstevel@tonic-gate 
11410Sstevel@tonic-gate 		ndi_devi_enter(dip, &circ);
11420Sstevel@tonic-gate 
11430Sstevel@tonic-gate 		switch (as->when) {
11440Sstevel@tonic-gate 		case DDI_PRE:
11450Sstevel@tonic-gate 			/*
11460Sstevel@tonic-gate 			 * Mark nexus busy before a child attaches.
11470Sstevel@tonic-gate 			 * - skip if PM_SUPPORTED is not set (pshot@XXX,nopm
11480Sstevel@tonic-gate 			 * - pshot@XXX,nopm_strict)
11490Sstevel@tonic-gate 			 */
11500Sstevel@tonic-gate 			if (!(pshot->state & PM_SUPPORTED))
11510Sstevel@tonic-gate 				break;
11520Sstevel@tonic-gate 			mutex_enter(&pshot->lock);
11530Sstevel@tonic-gate 			++(pshot->busy);
11540Sstevel@tonic-gate 			if (pshot_debug_busy) {
11550Sstevel@tonic-gate 				cmn_err(CE_CONT, "%s%d:"
11560Sstevel@tonic-gate 				    " ctl_attach_pre: busy for %s%d:"
11570Sstevel@tonic-gate 				    " busy = %d\n", name, instance,
11580Sstevel@tonic-gate 				    childname, childinstance,
11590Sstevel@tonic-gate 				    pshot->busy);
11600Sstevel@tonic-gate 			}
11610Sstevel@tonic-gate 			mutex_exit(&pshot->lock);
11620Sstevel@tonic-gate 			rval = pm_busy_component(dip, 0);
11630Sstevel@tonic-gate 			ASSERT(rval == DDI_SUCCESS);
11640Sstevel@tonic-gate 			break;
11650Sstevel@tonic-gate 		case DDI_POST:
11660Sstevel@tonic-gate 			/*
11670Sstevel@tonic-gate 			 * Mark nexus idle after a child attaches.
11680Sstevel@tonic-gate 			 * - skip if PM_SUPPORTED is not set (pshot@XXX,nopm).
11690Sstevel@tonic-gate 			 * - also skip if this is not a stict parent and
11700Sstevel@tonic-gate 			 * - the child is a tape device or a no-pm-components
11710Sstevel@tonic-gate 			 * - nexus node.
11720Sstevel@tonic-gate 			 */
11730Sstevel@tonic-gate 			if (!(pshot->state & PM_SUPPORTED) ||
11740Sstevel@tonic-gate 			    (strcmp(childname, "tape") == 0 &&
11750Sstevel@tonic-gate 			    !(pshot->state & STRICT_PARENT)) ||
11760Sstevel@tonic-gate 			    no_pm_components_child)
11770Sstevel@tonic-gate 				break;
11780Sstevel@tonic-gate 			mutex_enter(&pshot->lock);
11790Sstevel@tonic-gate 			ASSERT(pshot->busy > 0);
11800Sstevel@tonic-gate 			--pshot->busy;
11810Sstevel@tonic-gate 			if (pshot_debug_busy) {
11820Sstevel@tonic-gate 				cmn_err(CE_CONT, "%s%d:"
11830Sstevel@tonic-gate 				    " ctl_attach_post: idle for %s%d:"
11840Sstevel@tonic-gate 				    " busy = %d\n", name, instance,
11850Sstevel@tonic-gate 				    childname, childinstance,
11860Sstevel@tonic-gate 				    pshot->busy);
11870Sstevel@tonic-gate 			}
11880Sstevel@tonic-gate 			mutex_exit(&pshot->lock);
11890Sstevel@tonic-gate 			rval = pm_idle_component(dip, 0);
11900Sstevel@tonic-gate 			ASSERT(rval == DDI_SUCCESS);
11910Sstevel@tonic-gate 			break;
11920Sstevel@tonic-gate 		}
11930Sstevel@tonic-gate 
11940Sstevel@tonic-gate 		ndi_devi_exit(dip, circ);
11950Sstevel@tonic-gate 
11960Sstevel@tonic-gate 		return (rval);
11970Sstevel@tonic-gate 	}
11980Sstevel@tonic-gate 	case DDI_CTLOPS_BTOP:
11990Sstevel@tonic-gate 	case DDI_CTLOPS_BTOPR:
12000Sstevel@tonic-gate 	case DDI_CTLOPS_DETACH:
12010Sstevel@tonic-gate 		{
12020Sstevel@tonic-gate 		dev_info_t *child = (dev_info_t *)rdip;
12030Sstevel@tonic-gate 		childname = ddi_node_name(child);
12040Sstevel@tonic-gate 		childinstance = ddi_get_instance(child);
12050Sstevel@tonic-gate 		ds = (struct detachspec *)arg;
12060Sstevel@tonic-gate 
12070Sstevel@tonic-gate 		no_pm_components_child = 0;
12080Sstevel@tonic-gate 		if (ddi_prop_exists(DDI_DEV_T_ANY, child,
12090Sstevel@tonic-gate 		    (DDI_PROP_DONTPASS | DDI_PROP_NOTPROM),
12100Sstevel@tonic-gate 		    "no-pm-components") == 1) {
12110Sstevel@tonic-gate 			no_pm_components_child = 1;
12120Sstevel@tonic-gate 		}
12130Sstevel@tonic-gate 		if (pshot_debug) {
12140Sstevel@tonic-gate 			cmn_err(CE_CONT,
12150Sstevel@tonic-gate 			    "%s%d: ctl_detach %s%d [%d]\n",
12160Sstevel@tonic-gate 			    name, instance, childname, childinstance,
12170Sstevel@tonic-gate 			    no_pm_components_child);
12180Sstevel@tonic-gate 		}
12190Sstevel@tonic-gate 
12200Sstevel@tonic-gate 		ndi_devi_enter(dip, &circ);
12210Sstevel@tonic-gate 
12220Sstevel@tonic-gate 		switch (ds->when) {
12230Sstevel@tonic-gate 		case DDI_PRE:
12240Sstevel@tonic-gate 			/*
12250Sstevel@tonic-gate 			 * Mark nexus busy before a child detaches.
12260Sstevel@tonic-gate 			 * - skip if PM_SUPPORTED is not set (pshot@XXX,nopm
12270Sstevel@tonic-gate 			 * - pshot@XXX,nopm_strict), or if the child is a
12280Sstevel@tonic-gate 			 * - no-pm-components nexus node.
12290Sstevel@tonic-gate 			 */
12300Sstevel@tonic-gate 			if (!(pshot->state & PM_SUPPORTED) ||
12310Sstevel@tonic-gate 			    (strcmp(childname, "tape") == 0 &&
12320Sstevel@tonic-gate 			    !(pshot->state & STRICT_PARENT)) ||
12330Sstevel@tonic-gate 			    no_pm_components_child)
12340Sstevel@tonic-gate 				break;
12350Sstevel@tonic-gate 			mutex_enter(&pshot->lock);
12360Sstevel@tonic-gate 			++(pshot->busy);
12370Sstevel@tonic-gate 			if (pshot_debug_busy) {
12380Sstevel@tonic-gate 				cmn_err(CE_CONT, "%s%d:"
12390Sstevel@tonic-gate 				    " ctl_detach_pre: busy for %s%d:"
12400Sstevel@tonic-gate 				    " busy = %d\n", name, instance,
12410Sstevel@tonic-gate 				    childname, childinstance,
12420Sstevel@tonic-gate 				    pshot->busy);
12430Sstevel@tonic-gate 			}
12440Sstevel@tonic-gate 			mutex_exit(&pshot->lock);
12450Sstevel@tonic-gate 			rval = pm_busy_component(dip, 0);
12460Sstevel@tonic-gate 			ASSERT(rval == DDI_SUCCESS);
12470Sstevel@tonic-gate 
12480Sstevel@tonic-gate 			break;
12490Sstevel@tonic-gate 		case DDI_POST:
12500Sstevel@tonic-gate 			/*
12510Sstevel@tonic-gate 			 * Mark nexus idle after a child detaches.
12520Sstevel@tonic-gate 			 * - skip if PM_SUPPORTED is not set (pshot@XXX,nopm)
12530Sstevel@tonic-gate 			 */
12540Sstevel@tonic-gate 			if (!(pshot->state & PM_SUPPORTED))
12550Sstevel@tonic-gate 				break;
12560Sstevel@tonic-gate 			mutex_enter(&pshot->lock);
12570Sstevel@tonic-gate 			ASSERT(pshot->busy > 0);
12580Sstevel@tonic-gate 			--pshot->busy;
12590Sstevel@tonic-gate 			if (pshot_debug_busy) {
12600Sstevel@tonic-gate 				cmn_err(CE_CONT, "%s%d:"
12610Sstevel@tonic-gate 				    " ctl_detach_post: idle for %s%d:"
12620Sstevel@tonic-gate 				    " busy = %d\n", name, instance,
12630Sstevel@tonic-gate 				    childname, childinstance,
12640Sstevel@tonic-gate 				    pshot->busy);
12650Sstevel@tonic-gate 			}
12660Sstevel@tonic-gate 			mutex_exit(&pshot->lock);
12670Sstevel@tonic-gate 			rval = pm_idle_component(dip, 0);
12680Sstevel@tonic-gate 			ASSERT(rval == DDI_SUCCESS);
12690Sstevel@tonic-gate 
12700Sstevel@tonic-gate 			/*
12710Sstevel@tonic-gate 			 * Mark the driver idle if the NO_INVOL_FLAG
12720Sstevel@tonic-gate 			 * is set. This is needed to make sure the
12730Sstevel@tonic-gate 			 * parent is idle after the child detaches
12740Sstevel@tonic-gate 			 * without calling pm_lower_power().
12750Sstevel@tonic-gate 			 * Clear the NO_INVOL_FLAG.
12760Sstevel@tonic-gate 			 * - also mark idle if a tape device has detached
12770Sstevel@tonic-gate 			 */
12780Sstevel@tonic-gate 			if (!(pshot->state & NO_INVOL_FLAG))
12790Sstevel@tonic-gate 				break;
12800Sstevel@tonic-gate 			mutex_enter(&pshot->lock);
12810Sstevel@tonic-gate 			ASSERT(pshot->busy > 0);
12820Sstevel@tonic-gate 			--pshot->busy;
12830Sstevel@tonic-gate 			if (pshot_debug_busy) {
12840Sstevel@tonic-gate 				cmn_err(CE_CONT, "%s%d:"
12850Sstevel@tonic-gate 				    " ctl_detach_post: NO_INVOL:"
12860Sstevel@tonic-gate 				    " idle for %s%d: busy = %d\n",
12870Sstevel@tonic-gate 				    name, instance, childname,
12880Sstevel@tonic-gate 				    childinstance, pshot->busy);
12890Sstevel@tonic-gate 			}
12900Sstevel@tonic-gate 			pshot->state &= ~NO_INVOL_FLAG;
12910Sstevel@tonic-gate 			mutex_exit(&pshot->lock);
12920Sstevel@tonic-gate 			rval = pm_idle_component(dip, 0);
12930Sstevel@tonic-gate 			ASSERT(rval == DDI_SUCCESS);
12940Sstevel@tonic-gate 
12950Sstevel@tonic-gate 			break;
12960Sstevel@tonic-gate 		}
12970Sstevel@tonic-gate 
12980Sstevel@tonic-gate 		ndi_devi_exit(dip, circ);
12990Sstevel@tonic-gate 
13000Sstevel@tonic-gate 		return (rval);
13010Sstevel@tonic-gate 	}
13020Sstevel@tonic-gate 
13030Sstevel@tonic-gate 	case DDI_CTLOPS_DVMAPAGESIZE:
13040Sstevel@tonic-gate 	case DDI_CTLOPS_IOMIN:
13050Sstevel@tonic-gate 	case DDI_CTLOPS_PTOB:
13060Sstevel@tonic-gate 	default:
13070Sstevel@tonic-gate 		/*
13080Sstevel@tonic-gate 		 * The ops that we pass up (default).  We pass up memory
13090Sstevel@tonic-gate 		 * allocation oriented ops that we receive - these may be
13100Sstevel@tonic-gate 		 * associated with pseudo HBA drivers below us with target
13110Sstevel@tonic-gate 		 * drivers below them that use ddi memory allocation
13120Sstevel@tonic-gate 		 * interfaces like scsi_alloc_consistent_buf.
13130Sstevel@tonic-gate 		 */
13140Sstevel@tonic-gate 		return (ddi_ctlops(dip, rdip, ctlop, arg, result));
13150Sstevel@tonic-gate 	}
13160Sstevel@tonic-gate }
13170Sstevel@tonic-gate 
13180Sstevel@tonic-gate /*ARGSUSED0*/
13190Sstevel@tonic-gate static int
13200Sstevel@tonic-gate pshot_power(dev_info_t *dip, int cmpt, int level)
13210Sstevel@tonic-gate {
13220Sstevel@tonic-gate 	pshot_t *pshot;
13230Sstevel@tonic-gate 	int instance = ddi_get_instance(dip);
13240Sstevel@tonic-gate 	char *name = ddi_node_name(dip);
13250Sstevel@tonic-gate 	int circ;
13260Sstevel@tonic-gate 	int rv;
13270Sstevel@tonic-gate 
13280Sstevel@tonic-gate 	pshot = ddi_get_soft_state(pshot_softstatep, instance);
13290Sstevel@tonic-gate 	if (pshot == NULL) {
13300Sstevel@tonic-gate 
13310Sstevel@tonic-gate 		return (DDI_FAILURE);
13320Sstevel@tonic-gate 	}
13330Sstevel@tonic-gate 
13340Sstevel@tonic-gate 	ndi_devi_enter(dip, &circ);
13350Sstevel@tonic-gate 
13360Sstevel@tonic-gate 	/*
13370Sstevel@tonic-gate 	 * set POWER_FLAG when power() is called.
13380Sstevel@tonic-gate 	 * ioctl(DEVCT_PM_POWER) is a clear on read call.
13390Sstevel@tonic-gate 	 */
13400Sstevel@tonic-gate 	mutex_enter(&pshot->lock);
13410Sstevel@tonic-gate 	pshot->state |= POWER_FLAG;
13420Sstevel@tonic-gate 	/*
13430Sstevel@tonic-gate 	 * refuse to power OFF if the component is busy
13440Sstevel@tonic-gate 	 */
13450Sstevel@tonic-gate 	if (pshot->busy != 0 && pshot->level > level) {
13460Sstevel@tonic-gate 		cmn_err(CE_WARN, "%s%d: power: REFUSING POWER LEVEL CHANGE"
13470Sstevel@tonic-gate 		    " (%d->%d), DEVICE NOT IDLE: busy = %d",
13480Sstevel@tonic-gate 		    name, instance, pshot->level, level, pshot->busy);
13490Sstevel@tonic-gate 		rv = DDI_FAILURE;
13500Sstevel@tonic-gate 	} else {
13510Sstevel@tonic-gate 		if (pshot_debug) {
13520Sstevel@tonic-gate 			cmn_err(CE_CONT, "%s%d: power: comp %d (%d->%d)\n",
13530Sstevel@tonic-gate 			    name, instance, cmpt, pshot->level, level);
13540Sstevel@tonic-gate 		}
13550Sstevel@tonic-gate 		pshot->level = level;
13560Sstevel@tonic-gate 		rv = DDI_SUCCESS;
13570Sstevel@tonic-gate 	}
13580Sstevel@tonic-gate 	mutex_exit(&pshot->lock);
13590Sstevel@tonic-gate 
13600Sstevel@tonic-gate 	ndi_devi_exit(dip, circ);
13610Sstevel@tonic-gate 
13620Sstevel@tonic-gate 	return (rv);
13630Sstevel@tonic-gate }
13640Sstevel@tonic-gate 
13650Sstevel@tonic-gate /*ARGSUSED0*/
13660Sstevel@tonic-gate static int
13670Sstevel@tonic-gate pshot_bus_power(dev_info_t *dip, void *impl_arg, pm_bus_power_op_t op,
13680Sstevel@tonic-gate     void *arg, void *result)
13690Sstevel@tonic-gate 
13700Sstevel@tonic-gate {
13710Sstevel@tonic-gate 	int 				ret;
13720Sstevel@tonic-gate 	int 				instance = ddi_get_instance(dip);
13730Sstevel@tonic-gate 	char				*name = ddi_node_name(dip);
13740Sstevel@tonic-gate 	pshot_t 			*pshot;
13750Sstevel@tonic-gate 	pm_bp_child_pwrchg_t		*bpc;
13760Sstevel@tonic-gate 	pm_bp_nexus_pwrup_t		bpn;
13770Sstevel@tonic-gate 	pm_bp_has_changed_t		*bphc;
13780Sstevel@tonic-gate 	int				pwrup_res;
13790Sstevel@tonic-gate 	int				ret_failed = 0;
13800Sstevel@tonic-gate 	int				pwrup_res_failed = 0;
13810Sstevel@tonic-gate 
13820Sstevel@tonic-gate 	pshot = ddi_get_soft_state(pshot_softstatep, instance);
13830Sstevel@tonic-gate 	if (pshot == NULL) {
13840Sstevel@tonic-gate 
13850Sstevel@tonic-gate 		return (DDI_FAILURE);
13860Sstevel@tonic-gate 	}
13870Sstevel@tonic-gate 
13880Sstevel@tonic-gate 	switch (op) {
13890Sstevel@tonic-gate 	case BUS_POWER_PRE_NOTIFICATION:
13900Sstevel@tonic-gate 		bpc = (pm_bp_child_pwrchg_t *)arg;
13910Sstevel@tonic-gate 		if (pshot_debug) {
13920Sstevel@tonic-gate 			cmn_err(CE_CONT, "%s%d: pre_bus_power:"
13930Sstevel@tonic-gate 			    " %s%d comp %d (%d->%d)\n",
13940Sstevel@tonic-gate 			    name, instance, ddi_node_name(bpc->bpc_dip),
13950Sstevel@tonic-gate 			    ddi_get_instance(bpc->bpc_dip),
13960Sstevel@tonic-gate 			    bpc->bpc_comp, bpc->bpc_olevel,
13970Sstevel@tonic-gate 			    bpc->bpc_nlevel);
13980Sstevel@tonic-gate 		}
13990Sstevel@tonic-gate 
14000Sstevel@tonic-gate 		/*
14010Sstevel@tonic-gate 		 * mark parent busy if old_level is either -1 or 0,
14020Sstevel@tonic-gate 		 * and new level is == MAXPWR
14030Sstevel@tonic-gate 		 * - skip if PM_SUPPORTED is not set (pshot@XXX,nopm)
14040Sstevel@tonic-gate 		 */
14050Sstevel@tonic-gate 		if ((bpc->bpc_comp == 0 && bpc->bpc_nlevel == MAXPWR &&
14060Sstevel@tonic-gate 		    bpc->bpc_olevel <= 0) && (pshot->state & PM_SUPPORTED)) {
14070Sstevel@tonic-gate 			mutex_enter(&pshot->lock);
14080Sstevel@tonic-gate 			++(pshot->busy);
14090Sstevel@tonic-gate 			if (pshot_debug_busy) {
14100Sstevel@tonic-gate 				cmn_err(CE_CONT,
14110Sstevel@tonic-gate 				    "%s%d: pre_bus_power:"
14120Sstevel@tonic-gate 				    " busy parent for %s%d (%d->%d): "
14130Sstevel@tonic-gate 				    " busy = %d\n",
14140Sstevel@tonic-gate 				    name, instance,
14150Sstevel@tonic-gate 				    ddi_node_name(bpc->bpc_dip),
14160Sstevel@tonic-gate 				    ddi_get_instance(bpc->bpc_dip),
14170Sstevel@tonic-gate 				    bpc->bpc_olevel, bpc->bpc_nlevel,
14180Sstevel@tonic-gate 				    pshot->busy);
14190Sstevel@tonic-gate 			}
14200Sstevel@tonic-gate 			mutex_exit(&pshot->lock);
14210Sstevel@tonic-gate 			ret = pm_busy_component(dip, 0);
14220Sstevel@tonic-gate 			ASSERT(ret == DDI_SUCCESS);
14230Sstevel@tonic-gate 		}
14240Sstevel@tonic-gate 
14250Sstevel@tonic-gate 		/*
14260Sstevel@tonic-gate 		 * if new_level > 0, power up parent, if not already at
14270Sstevel@tonic-gate 		 * MAXPWR, via pm_busop_bus_power
14280Sstevel@tonic-gate 		 * - skip for the no-pm nexus (pshot@XXX,nopm)
14290Sstevel@tonic-gate 		 */
14300Sstevel@tonic-gate 		if (bpc->bpc_comp == 0 && bpc->bpc_nlevel > 0 &&
14310Sstevel@tonic-gate 		    pshot->level < MAXPWR && (pshot->state & PM_SUPPORTED)) {
14320Sstevel@tonic-gate 			/*
14330Sstevel@tonic-gate 			 * stuff the bpn struct
14340Sstevel@tonic-gate 			 */
14350Sstevel@tonic-gate 			bpn.bpn_comp = 0;
14360Sstevel@tonic-gate 			bpn.bpn_level = MAXPWR;
14370Sstevel@tonic-gate 			bpn.bpn_private = bpc->bpc_private;
14380Sstevel@tonic-gate 			bpn.bpn_dip = dip;
14390Sstevel@tonic-gate 
14400Sstevel@tonic-gate 			/*
14410Sstevel@tonic-gate 			 * ask pm to power parent up
14420Sstevel@tonic-gate 			 */
14430Sstevel@tonic-gate 			if (pshot_debug) {
14440Sstevel@tonic-gate 				cmn_err(CE_CONT, "%s%d: pre_bus_power:"
14450Sstevel@tonic-gate 				    " pm_busop_bus_power on parent for %s%d"
14460Sstevel@tonic-gate 				    " (%d->%d): enter", name, instance,
14470Sstevel@tonic-gate 				    ddi_node_name(bpc->bpc_dip),
14480Sstevel@tonic-gate 				    ddi_get_instance(bpc->bpc_dip),
14490Sstevel@tonic-gate 				    bpc->bpc_olevel, bpc->bpc_nlevel);
14500Sstevel@tonic-gate 			}
14510Sstevel@tonic-gate 			ret = pm_busop_bus_power(dip, impl_arg,
14520Sstevel@tonic-gate 			    BUS_POWER_NEXUS_PWRUP, (void *)&bpn,
14530Sstevel@tonic-gate 			    (void *)&pwrup_res);
14540Sstevel@tonic-gate 
14550Sstevel@tonic-gate 			/*
14560Sstevel@tonic-gate 			 * check the return status individually,
14570Sstevel@tonic-gate 			 * idle parent and exit if either failed.
14580Sstevel@tonic-gate 			 */
14590Sstevel@tonic-gate 			if (ret != DDI_SUCCESS) {
14600Sstevel@tonic-gate 				cmn_err(CE_WARN,
14610Sstevel@tonic-gate 				    "%s%d: pre_bus_power:"
14620Sstevel@tonic-gate 				    " pm_busop_bus_power FAILED (ret) FOR"
14630Sstevel@tonic-gate 				    " %s%d (%d->%d)",
14640Sstevel@tonic-gate 				    name, instance,
14650Sstevel@tonic-gate 				    ddi_node_name(bpc->bpc_dip),
14660Sstevel@tonic-gate 				    ddi_get_instance(bpc->bpc_dip),
14670Sstevel@tonic-gate 				    bpc->bpc_olevel, bpc->bpc_nlevel);
14680Sstevel@tonic-gate 				ret_failed = 1;
14690Sstevel@tonic-gate 			}
14700Sstevel@tonic-gate 			if (pwrup_res != DDI_SUCCESS) {
14710Sstevel@tonic-gate 				cmn_err(CE_WARN,
14720Sstevel@tonic-gate 				    "%s%d: pre_bus_power:"
14730Sstevel@tonic-gate 				    " pm_busop_bus_power FAILED (pwrup_res)"
14740Sstevel@tonic-gate 				    " FOR %s%d (%d->%d)",
14750Sstevel@tonic-gate 				    name, instance,
14760Sstevel@tonic-gate 				    ddi_node_name(bpc->bpc_dip),
14770Sstevel@tonic-gate 				    ddi_get_instance(bpc->bpc_dip),
14780Sstevel@tonic-gate 				    bpc->bpc_olevel, bpc->bpc_nlevel);
14790Sstevel@tonic-gate 				pwrup_res_failed = 1;
14800Sstevel@tonic-gate 			}
14810Sstevel@tonic-gate 			if (ret_failed || pwrup_res_failed) {
14820Sstevel@tonic-gate 				/*
14830Sstevel@tonic-gate 				 * decrement the busy count if it
14840Sstevel@tonic-gate 				 * had been incremented.
14850Sstevel@tonic-gate 				 */
14860Sstevel@tonic-gate 				if ((bpc->bpc_comp == 0 &&
14870Sstevel@tonic-gate 				    bpc->bpc_nlevel == MAXPWR &&
14880Sstevel@tonic-gate 				    bpc->bpc_olevel <= 0) &&
14890Sstevel@tonic-gate 				    (pshot->state & PM_SUPPORTED)) {
14900Sstevel@tonic-gate 					mutex_enter(&pshot->lock);
14910Sstevel@tonic-gate 					ASSERT(pshot->busy > 0);
14920Sstevel@tonic-gate 					--(pshot->busy);
14930Sstevel@tonic-gate 					if (pshot_debug_busy) {
14940Sstevel@tonic-gate 						cmn_err(CE_CONT, "%s%d:"
14950Sstevel@tonic-gate 						    " pm_busop_bus_power"
14960Sstevel@tonic-gate 						    " failed: idle parent for"
14970Sstevel@tonic-gate 						    " %s%d (%d->%d):"
14980Sstevel@tonic-gate 						    " busy = %d\n",
14990Sstevel@tonic-gate 						    name, instance,
15000Sstevel@tonic-gate 						    ddi_node_name(
15010Sstevel@tonic-gate 						    bpc->bpc_dip),
15020Sstevel@tonic-gate 						    ddi_get_instance(
15030Sstevel@tonic-gate 						    bpc->bpc_dip),
15040Sstevel@tonic-gate 						    bpc->bpc_olevel,
15050Sstevel@tonic-gate 						    bpc->bpc_nlevel,
15060Sstevel@tonic-gate 						    pshot->busy);
15070Sstevel@tonic-gate 					}
15080Sstevel@tonic-gate 					mutex_exit(&pshot->lock);
15090Sstevel@tonic-gate 					ret = pm_idle_component(dip, 0);
15100Sstevel@tonic-gate 					ASSERT(ret == DDI_SUCCESS);
15110Sstevel@tonic-gate 				}
15120Sstevel@tonic-gate 				return (DDI_FAILURE);
15130Sstevel@tonic-gate 
15140Sstevel@tonic-gate 			} else {
15150Sstevel@tonic-gate 				if (pshot_debug) {
15160Sstevel@tonic-gate 					cmn_err(CE_CONT,
15170Sstevel@tonic-gate 					    "%s%d: pre_bus_power:"
15180Sstevel@tonic-gate 					    " pm_busop_bus_power on parent"
15190Sstevel@tonic-gate 					    " for %s%d (%d->%d)\n",
15200Sstevel@tonic-gate 					    name, instance,
15210Sstevel@tonic-gate 					    ddi_node_name(bpc->bpc_dip),
15220Sstevel@tonic-gate 					    ddi_get_instance(bpc->bpc_dip),
15230Sstevel@tonic-gate 					    bpc->bpc_olevel, bpc->bpc_nlevel);
15240Sstevel@tonic-gate 				}
15250Sstevel@tonic-gate 			}
15260Sstevel@tonic-gate 		}
15270Sstevel@tonic-gate 		break;
15280Sstevel@tonic-gate 
15290Sstevel@tonic-gate 	case BUS_POWER_POST_NOTIFICATION:
15300Sstevel@tonic-gate 		bpc = (pm_bp_child_pwrchg_t *)arg;
15310Sstevel@tonic-gate 		if (pshot_debug) {
15320Sstevel@tonic-gate 			cmn_err(CE_CONT, "%s%d: post_bus_power:"
15330Sstevel@tonic-gate 			    " %s%d comp %d (%d->%d) result %d\n",
15340Sstevel@tonic-gate 			    name, instance, ddi_node_name(bpc->bpc_dip),
15350Sstevel@tonic-gate 			    ddi_get_instance(bpc->bpc_dip),
15360Sstevel@tonic-gate 			    bpc->bpc_comp, bpc->bpc_olevel,
15370Sstevel@tonic-gate 			    bpc->bpc_nlevel, *(int *)result);
15380Sstevel@tonic-gate 		}
15390Sstevel@tonic-gate 
15400Sstevel@tonic-gate 		/*
15410Sstevel@tonic-gate 		 * handle pm_busop_bus_power() failure case.
15420Sstevel@tonic-gate 		 * mark parent idle if had been marked busy.
15430Sstevel@tonic-gate 		 * - skip if PM_SUPPORTED is not set (pshot@XXX,nopm)
15440Sstevel@tonic-gate 		 */
15450Sstevel@tonic-gate 		if (*(int *)result != DDI_SUCCESS) {
15460Sstevel@tonic-gate 			cmn_err(CE_WARN,
15470Sstevel@tonic-gate 			    "pshot%d: post_bus_power_failed:"
15480Sstevel@tonic-gate 			    " pm_busop_bus_power FAILED FOR %s%d (%d->%d)",
15490Sstevel@tonic-gate 			    instance, ddi_node_name(bpc->bpc_dip),
15500Sstevel@tonic-gate 			    ddi_get_instance(bpc->bpc_dip),
15510Sstevel@tonic-gate 			    bpc->bpc_olevel, bpc->bpc_nlevel);
15520Sstevel@tonic-gate 
15530Sstevel@tonic-gate 			if ((bpc->bpc_comp == 0 && bpc->bpc_nlevel == MAXPWR &&
15540Sstevel@tonic-gate 			    bpc->bpc_olevel <= 0) &&
15550Sstevel@tonic-gate 			    (pshot->state & PM_SUPPORTED)) {
15560Sstevel@tonic-gate 				mutex_enter(&pshot->lock);
15570Sstevel@tonic-gate 				ASSERT(pshot->busy > 0);
15580Sstevel@tonic-gate 				--(pshot->busy);
15590Sstevel@tonic-gate 				if (pshot_debug_busy) {
15600Sstevel@tonic-gate 					cmn_err(CE_CONT, "%s%d:"
15610Sstevel@tonic-gate 					    " post_bus_power_failed:"
15620Sstevel@tonic-gate 					    " idle parent for %s%d"
15630Sstevel@tonic-gate 					    " (%d->%d): busy = %d\n",
15640Sstevel@tonic-gate 					    name, instance,
15650Sstevel@tonic-gate 					    ddi_node_name(bpc->bpc_dip),
15660Sstevel@tonic-gate 					    ddi_get_instance(bpc->bpc_dip),
15670Sstevel@tonic-gate 					    bpc->bpc_olevel, bpc->bpc_nlevel,
15680Sstevel@tonic-gate 					    pshot->busy);
15690Sstevel@tonic-gate 				}
15700Sstevel@tonic-gate 				mutex_exit(&pshot->lock);
15710Sstevel@tonic-gate 				ret = pm_idle_component(dip, 0);
15720Sstevel@tonic-gate 				ASSERT(ret == DDI_SUCCESS);
15730Sstevel@tonic-gate 			}
15740Sstevel@tonic-gate 		}
15750Sstevel@tonic-gate 
15760Sstevel@tonic-gate 		/*
15770Sstevel@tonic-gate 		 * Mark nexus idle when a child's comp 0
15780Sstevel@tonic-gate 		 * is set to level 0 from level 1, 2, or 3 only.
15790Sstevel@tonic-gate 		 * And only if result arg == DDI_SUCCESS.
15800Sstevel@tonic-gate 		 * This will leave the parent busy when the child
15810Sstevel@tonic-gate 		 * does not call pm_lower_power() on detach after
15820Sstevel@tonic-gate 		 * unsetting the NO_LOWER_POWER flag.
15830Sstevel@tonic-gate 		 * If so, need to notify the parent to mark itself
15840Sstevel@tonic-gate 		 * idle anyway, else the no-involumtary-power-cycles
15850Sstevel@tonic-gate 		 * test cases will report false passes!
15860Sstevel@tonic-gate 		 * - skip if PM_SUPPORTED is not set (pshot@XXX,nopm)
15870Sstevel@tonic-gate 		 */
15880Sstevel@tonic-gate 		if ((bpc->bpc_comp == 0 && bpc->bpc_nlevel == 0 &&
15890Sstevel@tonic-gate 		    !(bpc->bpc_olevel <= 0) &&
15900Sstevel@tonic-gate 		    *(int *)result == DDI_SUCCESS) &&
15910Sstevel@tonic-gate 		    (pshot->state & PM_SUPPORTED)) {
15920Sstevel@tonic-gate 			mutex_enter(&pshot->lock);
15930Sstevel@tonic-gate 			ASSERT(pshot->busy > 0);
15940Sstevel@tonic-gate 			--(pshot->busy);
15950Sstevel@tonic-gate 			if (pshot_debug_busy) {
15960Sstevel@tonic-gate 				cmn_err(CE_CONT,
15970Sstevel@tonic-gate 				    "%s%d: post_bus_power:"
15980Sstevel@tonic-gate 				    " idle parent for %s%d (%d->%d):"
15990Sstevel@tonic-gate 				    " busy = %d\n", name, instance,
16000Sstevel@tonic-gate 				    ddi_node_name(bpc->bpc_dip),
16010Sstevel@tonic-gate 				    ddi_get_instance(bpc->bpc_dip),
16020Sstevel@tonic-gate 				    bpc->bpc_olevel, bpc->bpc_nlevel,
16030Sstevel@tonic-gate 				    pshot->busy);
16040Sstevel@tonic-gate 			}
16050Sstevel@tonic-gate 			mutex_exit(&pshot->lock);
16060Sstevel@tonic-gate 			ret = pm_idle_component(dip, 0);
16070Sstevel@tonic-gate 			ASSERT(ret == DDI_SUCCESS);
16080Sstevel@tonic-gate 		}
16090Sstevel@tonic-gate 		break;
16100Sstevel@tonic-gate 
16110Sstevel@tonic-gate 	case BUS_POWER_HAS_CHANGED:
16120Sstevel@tonic-gate 		bphc = (pm_bp_has_changed_t *)arg;
16130Sstevel@tonic-gate 		if (pshot_debug) {
16140Sstevel@tonic-gate 			cmn_err(CE_CONT, "%s%d: has_changed_bus_power:"
16150Sstevel@tonic-gate 			    " %s%d comp %d (%d->%d) result %d\n",
16160Sstevel@tonic-gate 			    name, instance, ddi_node_name(bphc->bphc_dip),
16170Sstevel@tonic-gate 			    ddi_get_instance(bphc->bphc_dip),
16180Sstevel@tonic-gate 			    bphc->bphc_comp, bphc->bphc_olevel,
16190Sstevel@tonic-gate 			    bphc->bphc_nlevel, *(int *)result);
16200Sstevel@tonic-gate 		}
16210Sstevel@tonic-gate 
16220Sstevel@tonic-gate 		/*
16230Sstevel@tonic-gate 		 * Mark nexus idle when a child's comp 0
16240Sstevel@tonic-gate 		 * is set to level 0 from levels 1, 2, or 3 only.
16250Sstevel@tonic-gate 		 *
16260Sstevel@tonic-gate 		 * If powering up child leaf/nexus nodes via
16270Sstevel@tonic-gate 		 * pm_power_has_changed() calls, first issue
16280Sstevel@tonic-gate 		 * DEVCTL_PM_BUSY_COMP ioctl to mark parent busy
16290Sstevel@tonic-gate 		 * before powering the parent up, then power up the
16300Sstevel@tonic-gate 		 * child node.
16310Sstevel@tonic-gate 		 * - skip if PM_SUPPORTED is not set (pshot@XXX,nopm)
16320Sstevel@tonic-gate 		 */
16330Sstevel@tonic-gate 		if ((bphc->bphc_comp == 0 && bphc->bphc_nlevel == 0 &&
16340Sstevel@tonic-gate 		    !(bphc->bphc_olevel <= 0)) &&
16350Sstevel@tonic-gate 		    pshot->state & PM_SUPPORTED) {
16360Sstevel@tonic-gate 			mutex_enter(&pshot->lock);
16370Sstevel@tonic-gate 			ASSERT(pshot->busy > 0);
16380Sstevel@tonic-gate 			--(pshot->busy);
16390Sstevel@tonic-gate 			if (pshot_debug_busy) {
16400Sstevel@tonic-gate 				cmn_err(CE_CONT,
16410Sstevel@tonic-gate 				    "%s%d: has_changed_bus_power:"
16420Sstevel@tonic-gate 				    " idle parent for %s%d (%d->%d):"
16430Sstevel@tonic-gate 				    " busy = %d\n", name, instance,
16440Sstevel@tonic-gate 				    ddi_node_name(bphc->bphc_dip),
16450Sstevel@tonic-gate 				    ddi_get_instance(bphc->bphc_dip),
16460Sstevel@tonic-gate 				    bphc->bphc_olevel,
16470Sstevel@tonic-gate 				    bphc->bphc_nlevel, pshot->busy);
16480Sstevel@tonic-gate 			}
16490Sstevel@tonic-gate 			mutex_exit(&pshot->lock);
16500Sstevel@tonic-gate 			ret = pm_idle_component(dip, 0);
16510Sstevel@tonic-gate 			ASSERT(ret == DDI_SUCCESS);
16520Sstevel@tonic-gate 		}
16530Sstevel@tonic-gate 		break;
16540Sstevel@tonic-gate 
16550Sstevel@tonic-gate 	default:
16560Sstevel@tonic-gate 		return (pm_busop_bus_power(dip, impl_arg, op, arg, result));
16570Sstevel@tonic-gate 
16580Sstevel@tonic-gate 	}
16590Sstevel@tonic-gate 
16600Sstevel@tonic-gate 	return (DDI_SUCCESS);
16610Sstevel@tonic-gate }
16620Sstevel@tonic-gate 
16630Sstevel@tonic-gate static int
16640Sstevel@tonic-gate pshot_initchild(dev_info_t *dip, dev_info_t *child)
16650Sstevel@tonic-gate {
16660Sstevel@tonic-gate 	char	name[64];
16670Sstevel@tonic-gate 	char	*bus_addr;
16680Sstevel@tonic-gate 	char	*c_nodename;
16690Sstevel@tonic-gate 	int	bus_id;
16700Sstevel@tonic-gate 	dev_info_t *enum_child;
16710Sstevel@tonic-gate 	int	enum_base;
16720Sstevel@tonic-gate 	int	enum_extent;
16730Sstevel@tonic-gate 
16740Sstevel@tonic-gate 
16750Sstevel@tonic-gate 	/* check for bus_enum node */
16760Sstevel@tonic-gate 
16770Sstevel@tonic-gate #ifdef	NOT_USED
16780Sstevel@tonic-gate 	if (impl_ddi_merge_child(child) != DDI_SUCCESS)
16790Sstevel@tonic-gate 		return (DDI_FAILURE);
16800Sstevel@tonic-gate #endif
16810Sstevel@tonic-gate 
16820Sstevel@tonic-gate 	enum_base = ddi_prop_get_int(DDI_DEV_T_ANY, child, DDI_PROP_DONTPASS,
16830Sstevel@tonic-gate 	    "busid_ebase", 0);
16840Sstevel@tonic-gate 
16850Sstevel@tonic-gate 	enum_extent = ddi_prop_get_int(DDI_DEV_T_ANY, child,
16860Sstevel@tonic-gate 	    DDI_PROP_DONTPASS, "busid_range", 0);
16870Sstevel@tonic-gate 
16880Sstevel@tonic-gate 	/*
16890Sstevel@tonic-gate 	 * bus enumeration node
16900Sstevel@tonic-gate 	 */
16910Sstevel@tonic-gate 	if ((enum_base != 0) && (enum_extent != 0))	{
16920Sstevel@tonic-gate 		c_nodename = ddi_node_name(child);
16930Sstevel@tonic-gate 		bus_id = enum_base;
16940Sstevel@tonic-gate 		for (; bus_id < enum_extent; bus_id++) {
16950Sstevel@tonic-gate 			if (ndi_devi_alloc(dip, c_nodename, DEVI_PSEUDO_NODEID,
16960Sstevel@tonic-gate 			    &enum_child) != NDI_SUCCESS)
16970Sstevel@tonic-gate 				return (DDI_FAILURE);
16980Sstevel@tonic-gate 
16990Sstevel@tonic-gate 			(void) sprintf(name, "%d", bus_id);
17000Sstevel@tonic-gate 			if (ndi_prop_update_string(DDI_DEV_T_NONE, enum_child,
17010Sstevel@tonic-gate 			    "bus-addr", name) != DDI_PROP_SUCCESS) {
17020Sstevel@tonic-gate 				(void) ndi_devi_free(enum_child);
17030Sstevel@tonic-gate 				return (DDI_FAILURE);
17040Sstevel@tonic-gate 			}
17050Sstevel@tonic-gate 
17060Sstevel@tonic-gate 			if (ndi_devi_online(enum_child, 0) !=
17070Sstevel@tonic-gate 			    DDI_SUCCESS) {
17080Sstevel@tonic-gate 				(void) ndi_devi_free(enum_child);
17090Sstevel@tonic-gate 				return (DDI_FAILURE);
17100Sstevel@tonic-gate 			}
17110Sstevel@tonic-gate 		}
17120Sstevel@tonic-gate 		/*
17130Sstevel@tonic-gate 		 * fail the enumeration node itself
17140Sstevel@tonic-gate 		 */
17150Sstevel@tonic-gate 		return (DDI_FAILURE);
17160Sstevel@tonic-gate 	}
17170Sstevel@tonic-gate 
17180Sstevel@tonic-gate 	if (ddi_prop_lookup_string(DDI_DEV_T_ANY, child, 0, "bus-addr",
17190Sstevel@tonic-gate 	    &bus_addr) != DDI_PROP_SUCCESS) {
17200Sstevel@tonic-gate 		cmn_err(CE_WARN, "pshot_initchild: bus-addr not defined (%s)",
17210Sstevel@tonic-gate 		    ddi_node_name(child));
17220Sstevel@tonic-gate 		return (DDI_NOT_WELL_FORMED);
17230Sstevel@tonic-gate 	}
17240Sstevel@tonic-gate 
17250Sstevel@tonic-gate 	if (strlen(bus_addr) == 0) {
17260Sstevel@tonic-gate 		cmn_err(CE_WARN, "pshot_initchild: NULL bus-addr (%s)",
17270Sstevel@tonic-gate 		    ddi_node_name(child));
17280Sstevel@tonic-gate 		ddi_prop_free(bus_addr);
17290Sstevel@tonic-gate 		return (DDI_FAILURE);
17300Sstevel@tonic-gate 	}
17310Sstevel@tonic-gate 
17320Sstevel@tonic-gate 	if (strncmp(bus_addr, "failinit", 8) == 0) {
17330Sstevel@tonic-gate 		if (pshot_debug)
17340Sstevel@tonic-gate 			cmn_err(CE_CONT,
17350Sstevel@tonic-gate 			    "pshot%d: %s forced INITCHILD failure\n",
17360Sstevel@tonic-gate 				ddi_get_instance(dip), bus_addr);
17370Sstevel@tonic-gate 		ddi_prop_free(bus_addr);
17380Sstevel@tonic-gate 		return (DDI_FAILURE);
17390Sstevel@tonic-gate 	}
17400Sstevel@tonic-gate 
17410Sstevel@tonic-gate 	if (pshot_log) {
17420Sstevel@tonic-gate 		cmn_err(CE_CONT, "initchild %s%d/%s@%s\n",
17430Sstevel@tonic-gate 			ddi_get_name(dip), ddi_get_instance(dip),
17440Sstevel@tonic-gate 			ddi_node_name(child), bus_addr);
17450Sstevel@tonic-gate 	}
17460Sstevel@tonic-gate 
17470Sstevel@tonic-gate 	ddi_set_name_addr(child, bus_addr);
17480Sstevel@tonic-gate 	ddi_prop_free(bus_addr);
17490Sstevel@tonic-gate 	return (DDI_SUCCESS);
17500Sstevel@tonic-gate }
17510Sstevel@tonic-gate 
17520Sstevel@tonic-gate /*ARGSUSED*/
17530Sstevel@tonic-gate static int
17540Sstevel@tonic-gate pshot_uninitchild(dev_info_t *dip, dev_info_t *child)
17550Sstevel@tonic-gate {
17560Sstevel@tonic-gate 	ddi_set_name_addr(child, NULL);
17570Sstevel@tonic-gate 	return (DDI_SUCCESS);
17580Sstevel@tonic-gate }
17590Sstevel@tonic-gate 
17600Sstevel@tonic-gate 
17610Sstevel@tonic-gate /*
17620Sstevel@tonic-gate  * devctl IOCTL support
17630Sstevel@tonic-gate  */
17640Sstevel@tonic-gate /* ARGSUSED */
17650Sstevel@tonic-gate static int
17660Sstevel@tonic-gate pshot_open(dev_t *devp, int flags, int otyp, cred_t *credp)
17670Sstevel@tonic-gate {
17680Sstevel@tonic-gate 	int instance;
17690Sstevel@tonic-gate 	pshot_t *pshot;
17700Sstevel@tonic-gate 
17710Sstevel@tonic-gate 	if (otyp != OTYP_CHR)
17720Sstevel@tonic-gate 		return (EINVAL);
17730Sstevel@tonic-gate 
17740Sstevel@tonic-gate 	instance = pshot_minor_decode_inst(getminor(*devp));
17750Sstevel@tonic-gate 	if ((pshot = ddi_get_soft_state(pshot_softstatep, instance)) == NULL)
17760Sstevel@tonic-gate 		return (ENXIO);
17770Sstevel@tonic-gate 
17780Sstevel@tonic-gate 	/*
17790Sstevel@tonic-gate 	 * Access is currently determined on a per-instance basis.
17800Sstevel@tonic-gate 	 * If we want per-node, then need to add state and lock members to
17810Sstevel@tonic-gate 	 * pshot_minor_t
17820Sstevel@tonic-gate 	 */
17830Sstevel@tonic-gate 	mutex_enter(&pshot->lock);
17840Sstevel@tonic-gate 	if (((flags & FEXCL) && (pshot->state & IS_OPEN)) ||
17850Sstevel@tonic-gate 	    (!(flags & FEXCL) && (pshot->state & IS_OPEN_EXCL))) {
17860Sstevel@tonic-gate 		mutex_exit(&pshot->lock);
17870Sstevel@tonic-gate 		return (EBUSY);
17880Sstevel@tonic-gate 	}
17890Sstevel@tonic-gate 	pshot->state |= IS_OPEN;
17900Sstevel@tonic-gate 	if (flags & FEXCL)
17910Sstevel@tonic-gate 		pshot->state |= IS_OPEN_EXCL;
17920Sstevel@tonic-gate 
17930Sstevel@tonic-gate 	if (pshot_debug)
17940Sstevel@tonic-gate 		cmn_err(CE_CONT, "pshot%d open\n", instance);
17950Sstevel@tonic-gate 
17960Sstevel@tonic-gate 	mutex_exit(&pshot->lock);
17970Sstevel@tonic-gate 	return (0);
17980Sstevel@tonic-gate }
17990Sstevel@tonic-gate 
18000Sstevel@tonic-gate /*
18010Sstevel@tonic-gate  * pshot_close
18020Sstevel@tonic-gate  */
18030Sstevel@tonic-gate /* ARGSUSED */
18040Sstevel@tonic-gate static int
18050Sstevel@tonic-gate pshot_close(dev_t dev, int flag, int otyp, cred_t *credp)
18060Sstevel@tonic-gate {
18070Sstevel@tonic-gate 	int instance;
18080Sstevel@tonic-gate 	pshot_t *pshot;
18090Sstevel@tonic-gate 
18100Sstevel@tonic-gate 	if (otyp != OTYP_CHR)
18110Sstevel@tonic-gate 		return (EINVAL);
18120Sstevel@tonic-gate 
18130Sstevel@tonic-gate 	instance = pshot_minor_decode_inst(getminor(dev));
18140Sstevel@tonic-gate 	if ((pshot = ddi_get_soft_state(pshot_softstatep, instance)) == NULL)
18150Sstevel@tonic-gate 		return (ENXIO);
18160Sstevel@tonic-gate 
18170Sstevel@tonic-gate 	mutex_enter(&pshot->lock);
18180Sstevel@tonic-gate 	pshot->state &= ~(IS_OPEN | IS_OPEN_EXCL);
18190Sstevel@tonic-gate 	mutex_exit(&pshot->lock);
18200Sstevel@tonic-gate 	if (pshot_debug)
18210Sstevel@tonic-gate 		cmn_err(CE_CONT, "pshot%d closed\n", instance);
18220Sstevel@tonic-gate 	return (0);
18230Sstevel@tonic-gate }
18240Sstevel@tonic-gate 
18250Sstevel@tonic-gate 
18260Sstevel@tonic-gate /*
18270Sstevel@tonic-gate  * pshot_ioctl: redirects to appropriate command handler based on various
18280Sstevel@tonic-gate  * 	criteria
18290Sstevel@tonic-gate  */
18300Sstevel@tonic-gate /* ARGSUSED */
18310Sstevel@tonic-gate static int
18320Sstevel@tonic-gate pshot_ioctl(dev_t dev, int cmd, intptr_t arg, int mode, cred_t *credp,
18330Sstevel@tonic-gate     int *rvalp)
18340Sstevel@tonic-gate {
18350Sstevel@tonic-gate 	pshot_t *pshot;
18360Sstevel@tonic-gate 	int instance;
18370Sstevel@tonic-gate 	minor_t nodenum;
18380Sstevel@tonic-gate 	char *nodename;
18390Sstevel@tonic-gate 
18400Sstevel@tonic-gate 	instance = pshot_minor_decode_inst(getminor(dev));
18410Sstevel@tonic-gate 	if ((pshot = ddi_get_soft_state(pshot_softstatep, instance)) == NULL)
18420Sstevel@tonic-gate 		return (ENXIO);
18430Sstevel@tonic-gate 
18440Sstevel@tonic-gate 	nodenum = pshot_minor_decode_nodenum(getminor(dev));
18450Sstevel@tonic-gate 	nodename = pshot->nodes[nodenum].name;
18460Sstevel@tonic-gate 
18470Sstevel@tonic-gate 	if (pshot_debug)
18480Sstevel@tonic-gate 		cmn_err(CE_CONT,
18490Sstevel@tonic-gate 		    "pshot%d ioctl: dev=%p, cmd=%x, arg=%p, mode=%x\n",
18500Sstevel@tonic-gate 		    instance, (void *)dev, cmd, (void *)arg, mode);
18510Sstevel@tonic-gate 
18520Sstevel@tonic-gate 	if (strcmp(nodename, PSHOT_NODENAME_DEVCTL) == 0)
18530Sstevel@tonic-gate 		return (pshot_devctl(pshot, nodenum, cmd, arg, mode, credp,
18540Sstevel@tonic-gate 		    rvalp));
18550Sstevel@tonic-gate 
18560Sstevel@tonic-gate 	if (strcmp(nodename, PSHOT_NODENAME_TESTCTL) == 0)
18570Sstevel@tonic-gate 		return (pshot_testctl(pshot, nodenum, cmd, arg, mode, credp,
18580Sstevel@tonic-gate 		    rvalp));
18590Sstevel@tonic-gate 
18600Sstevel@tonic-gate 	cmn_err(CE_WARN, "pshot_ioctl: unmatched nodename on minor %u",
18610Sstevel@tonic-gate 	    pshot->nodes[nodenum].minor);
18620Sstevel@tonic-gate 	return (ENXIO);
18630Sstevel@tonic-gate }
18640Sstevel@tonic-gate 
18650Sstevel@tonic-gate 
18660Sstevel@tonic-gate /*
18670Sstevel@tonic-gate  * pshot_devctl: handle DEVCTL operations
18680Sstevel@tonic-gate  */
18690Sstevel@tonic-gate /* ARGSUSED */
18700Sstevel@tonic-gate static int
18710Sstevel@tonic-gate pshot_devctl(pshot_t *pshot, minor_t nodenum, int cmd, intptr_t arg, int mode,
18720Sstevel@tonic-gate     cred_t *credp, int *rvalp)
18730Sstevel@tonic-gate {
18740Sstevel@tonic-gate 	dev_info_t *self;
18750Sstevel@tonic-gate 	dev_info_t *child = NULL;
18760Sstevel@tonic-gate 	struct devctl_iocdata *dcp;
18770Sstevel@tonic-gate 	uint_t state;
18780Sstevel@tonic-gate 	int rv = 0;
18790Sstevel@tonic-gate 	uint_t flags;
18800Sstevel@tonic-gate 	int instance;
18810Sstevel@tonic-gate 	int i;
18820Sstevel@tonic-gate 	int ret;
18830Sstevel@tonic-gate 
18840Sstevel@tonic-gate 	self = pshot->dip;
18850Sstevel@tonic-gate 
18860Sstevel@tonic-gate 	flags = (pshot_devctl_debug) ? NDI_DEVI_DEBUG : 0;
18870Sstevel@tonic-gate 	instance = pshot->instance;
18880Sstevel@tonic-gate 
18890Sstevel@tonic-gate 	/*
18900Sstevel@tonic-gate 	 * We can use the generic implementation for these ioctls
18910Sstevel@tonic-gate 	 */
18920Sstevel@tonic-gate 	for (i = 0; pshot_devctls[i].ioctl_int != 0; i++) {
18930Sstevel@tonic-gate 		if (pshot_devctls[i].ioctl_int == cmd) {
18940Sstevel@tonic-gate 			if (pshot_debug)
18950Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d devctl: %s",
18960Sstevel@tonic-gate 				    instance, pshot_devctls[i].ioctl_char);
18970Sstevel@tonic-gate 		}
18980Sstevel@tonic-gate 	}
18990Sstevel@tonic-gate 	switch (cmd) {
19000Sstevel@tonic-gate 	case DEVCTL_DEVICE_GETSTATE:
19010Sstevel@tonic-gate 	case DEVCTL_DEVICE_ONLINE:
19020Sstevel@tonic-gate 	case DEVCTL_DEVICE_OFFLINE:
19030Sstevel@tonic-gate 	case DEVCTL_DEVICE_REMOVE:
19040Sstevel@tonic-gate 	case DEVCTL_BUS_GETSTATE:
19050Sstevel@tonic-gate 	case DEVCTL_BUS_DEV_CREATE:
19060Sstevel@tonic-gate 		rv = ndi_devctl_ioctl(self, cmd, arg, mode, flags);
19070Sstevel@tonic-gate 		if (pshot_debug && rv != 0) {
19080Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d ndi_devctl_ioctl:"
19090Sstevel@tonic-gate 			    " failed, rv = %d", instance, rv);
19100Sstevel@tonic-gate 		}
19110Sstevel@tonic-gate 
19120Sstevel@tonic-gate 		return (rv);
19130Sstevel@tonic-gate 	}
19140Sstevel@tonic-gate 
19150Sstevel@tonic-gate 	/*
19160Sstevel@tonic-gate 	 * read devctl ioctl data
19170Sstevel@tonic-gate 	 */
19180Sstevel@tonic-gate 	if (ndi_dc_allochdl((void *)arg, &dcp) != NDI_SUCCESS)
19190Sstevel@tonic-gate 		return (EFAULT);
19200Sstevel@tonic-gate 
19210Sstevel@tonic-gate 	switch (cmd) {
19220Sstevel@tonic-gate 
19230Sstevel@tonic-gate 	case DEVCTL_DEVICE_RESET:
19240Sstevel@tonic-gate 		if (pshot_debug)
19250Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d devctl:"
19260Sstevel@tonic-gate 			    " DEVCTL_DEVICE_RESET\n", instance);
19270Sstevel@tonic-gate 		rv = pshot_event(pshot, PSHOT_EVENT_TAG_DEV_RESET,
19280Sstevel@tonic-gate 		    child, (void *)self);
19290Sstevel@tonic-gate 		ASSERT(rv == NDI_SUCCESS);
19300Sstevel@tonic-gate 		break;
19310Sstevel@tonic-gate 
19320Sstevel@tonic-gate 	case DEVCTL_BUS_QUIESCE:
19330Sstevel@tonic-gate 		if (pshot_debug)
19340Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d devctl:"
19350Sstevel@tonic-gate 			    " DEVCTL_BUS_QUIESCE\n", instance);
19360Sstevel@tonic-gate 		if (ndi_get_bus_state(self, &state) == NDI_SUCCESS) {
19370Sstevel@tonic-gate 			if (state == BUS_QUIESCED) {
19380Sstevel@tonic-gate 				break;
19390Sstevel@tonic-gate 			}
19400Sstevel@tonic-gate 			(void) ndi_set_bus_state(self, BUS_QUIESCED);
19410Sstevel@tonic-gate 		}
19420Sstevel@tonic-gate 		rv = pshot_event(pshot, PSHOT_EVENT_TAG_BUS_QUIESCE,
19430Sstevel@tonic-gate 		    child, (void *)self);
19440Sstevel@tonic-gate 		ASSERT(rv == NDI_SUCCESS);
19450Sstevel@tonic-gate 
19460Sstevel@tonic-gate 		break;
19470Sstevel@tonic-gate 
19480Sstevel@tonic-gate 	case DEVCTL_BUS_UNQUIESCE:
19490Sstevel@tonic-gate 		if (pshot_debug)
19500Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d devctl:"
19510Sstevel@tonic-gate 			    " DEVCTL_BUS_UNQUIESCE\n", instance);
19520Sstevel@tonic-gate 		if (ndi_get_bus_state(self, &state) == NDI_SUCCESS) {
19530Sstevel@tonic-gate 			if (state == BUS_ACTIVE) {
19540Sstevel@tonic-gate 				break;
19550Sstevel@tonic-gate 			}
19560Sstevel@tonic-gate 		}
19570Sstevel@tonic-gate 
19580Sstevel@tonic-gate 		/*
19590Sstevel@tonic-gate 		 * quiesce the bus through bus-specific means
19600Sstevel@tonic-gate 		 */
19610Sstevel@tonic-gate 		(void) ndi_set_bus_state(self, BUS_ACTIVE);
19620Sstevel@tonic-gate 		rv = pshot_event(pshot, PSHOT_EVENT_TAG_BUS_UNQUIESCE,
19630Sstevel@tonic-gate 		    child, (void *)self);
19640Sstevel@tonic-gate 		ASSERT(rv == NDI_SUCCESS);
19650Sstevel@tonic-gate 		break;
19660Sstevel@tonic-gate 
19670Sstevel@tonic-gate 	case DEVCTL_BUS_RESET:
19680Sstevel@tonic-gate 	case DEVCTL_BUS_RESETALL:
19690Sstevel@tonic-gate 		/*
19700Sstevel@tonic-gate 		 * no reset support for the pseudo bus
19710Sstevel@tonic-gate 		 * but if there were....
19720Sstevel@tonic-gate 		 */
19730Sstevel@tonic-gate 		rv = pshot_event(pshot, PSHOT_EVENT_TAG_BUS_RESET,
19740Sstevel@tonic-gate 			child, (void *)self);
19750Sstevel@tonic-gate 		ASSERT(rv == NDI_SUCCESS);
19760Sstevel@tonic-gate 		break;
19770Sstevel@tonic-gate 
19780Sstevel@tonic-gate 	/*
19790Sstevel@tonic-gate 	 * PM related ioctls
19800Sstevel@tonic-gate 	 */
19810Sstevel@tonic-gate 	case DEVCTL_PM_BUSY_COMP:
19820Sstevel@tonic-gate 		/*
19830Sstevel@tonic-gate 		 * mark component 0 busy.
19840Sstevel@tonic-gate 		 * Keep track of ioctl updates to the busy count
19850Sstevel@tonic-gate 		 * via pshot->busy_ioctl.
19860Sstevel@tonic-gate 		 */
19870Sstevel@tonic-gate 		if (pshot_debug) {
19880Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d devctl:"
19890Sstevel@tonic-gate 			    " DEVCTL_PM_BUSY_COMP\n", instance);
19900Sstevel@tonic-gate 		}
19910Sstevel@tonic-gate 		mutex_enter(&pshot->lock);
19920Sstevel@tonic-gate 		++(pshot->busy);
19930Sstevel@tonic-gate 		++(pshot->busy_ioctl);
19940Sstevel@tonic-gate 		if (pshot_debug_busy) {
19950Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d:"
19960Sstevel@tonic-gate 			    " DEVCTL_PM_BUSY_COMP comp 0 busy"
19970Sstevel@tonic-gate 			    " %d busy_ioctl %d\n", instance, pshot->busy,
19980Sstevel@tonic-gate 			    pshot->busy_ioctl);
19990Sstevel@tonic-gate 		}
20000Sstevel@tonic-gate 		mutex_exit(&pshot->lock);
20010Sstevel@tonic-gate 		ret = pm_busy_component(pshot->dip, 0);
20020Sstevel@tonic-gate 		ASSERT(ret == DDI_SUCCESS);
20030Sstevel@tonic-gate 
20040Sstevel@tonic-gate 		break;
20050Sstevel@tonic-gate 
20060Sstevel@tonic-gate 	case DEVCTL_PM_BUSY_COMP_TEST:
20070Sstevel@tonic-gate 		/*
20080Sstevel@tonic-gate 		 * test bus's busy state
20090Sstevel@tonic-gate 		 */
20100Sstevel@tonic-gate 		if (pshot_debug) {
20110Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d devctl:"
20120Sstevel@tonic-gate 			    " DEVCTL_PM_BUSY_COMP_TEST\n", instance);
20130Sstevel@tonic-gate 		}
20140Sstevel@tonic-gate 		mutex_enter(&pshot->lock);
20150Sstevel@tonic-gate 		state = pshot->busy;
20160Sstevel@tonic-gate 		if (copyout(&state, dcp->cpyout_buf,
20170Sstevel@tonic-gate 		    sizeof (uint_t)) != 0) {
20180Sstevel@tonic-gate 			cmn_err(CE_WARN, "pshot%d devctl:"
20190Sstevel@tonic-gate 			    " DEVCTL_PM_BUSY_COMP_TEST: copyout failed",
20200Sstevel@tonic-gate 			    instance);
20210Sstevel@tonic-gate 			rv = EINVAL;
20220Sstevel@tonic-gate 		}
20230Sstevel@tonic-gate 		if (pshot_debug_busy) {
20240Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d: DEVCTL_PM_BUSY_COMP_TEST:"
20250Sstevel@tonic-gate 			    " comp 0 busy %d busy_ioctl %d\n", instance,
20260Sstevel@tonic-gate 			    state, pshot->busy_ioctl);
20270Sstevel@tonic-gate 		}
20280Sstevel@tonic-gate 		mutex_exit(&pshot->lock);
20290Sstevel@tonic-gate 		break;
20300Sstevel@tonic-gate 
20310Sstevel@tonic-gate 	case DEVCTL_PM_IDLE_COMP:
20320Sstevel@tonic-gate 		/*
20330Sstevel@tonic-gate 		 * mark component 0 idle.
20340Sstevel@tonic-gate 		 * NOP if pshot->busy_ioctl <= 0.
20350Sstevel@tonic-gate 		 */
20360Sstevel@tonic-gate 		if (pshot_debug) {
20370Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d devctl:"
20380Sstevel@tonic-gate 			    " DEVCTL_PM_IDLE_COMP\n", instance);
20390Sstevel@tonic-gate 		}
20400Sstevel@tonic-gate 		mutex_enter(&pshot->lock);
20410Sstevel@tonic-gate 		if (pshot->busy_ioctl > 0) {
20420Sstevel@tonic-gate 			ASSERT(pshot->busy > 0);
20430Sstevel@tonic-gate 			--(pshot->busy);
20440Sstevel@tonic-gate 			--(pshot->busy_ioctl);
20450Sstevel@tonic-gate 			if (pshot_debug_busy) {
20460Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d:"
20470Sstevel@tonic-gate 				    " DEVCTL_PM_IDLE_COM: comp 0"
20480Sstevel@tonic-gate 				    " busy %d busy_ioctl %d\n", instance,
20490Sstevel@tonic-gate 				    pshot->busy, pshot->busy_ioctl);
20500Sstevel@tonic-gate 			}
20510Sstevel@tonic-gate 			mutex_exit(&pshot->lock);
20520Sstevel@tonic-gate 			ret = pm_idle_component(pshot->dip, 0);
20530Sstevel@tonic-gate 			ASSERT(ret == DDI_SUCCESS);
20540Sstevel@tonic-gate 
20550Sstevel@tonic-gate 		} else {
20560Sstevel@tonic-gate 			mutex_exit(&pshot->lock);
20570Sstevel@tonic-gate 		}
20580Sstevel@tonic-gate 		break;
20590Sstevel@tonic-gate 
20600Sstevel@tonic-gate 	case DEVCTL_PM_RAISE_PWR:
20610Sstevel@tonic-gate 		/*
20620Sstevel@tonic-gate 		 * raise component 0 to full power level MAXPWR via a
20630Sstevel@tonic-gate 		 * pm_raise_power() call
20640Sstevel@tonic-gate 		 */
20650Sstevel@tonic-gate 		if (pshot_debug) {
20660Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d devctl:"
20670Sstevel@tonic-gate 			    " DEVCTL_PM_RAISE_PWR\n", instance);
20680Sstevel@tonic-gate 		}
20690Sstevel@tonic-gate 		if (pm_raise_power(pshot->dip, 0, MAXPWR) != DDI_SUCCESS) {
20700Sstevel@tonic-gate 			rv = EINVAL;
20710Sstevel@tonic-gate 		} else {
20720Sstevel@tonic-gate 			mutex_enter(&pshot->lock);
20730Sstevel@tonic-gate 			if (pshot_debug) {
20740Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d:"
20750Sstevel@tonic-gate 				    " DEVCTL_PM_RAISE_POWER: comp 0"
20760Sstevel@tonic-gate 				    " to level %d\n", instance, pshot->level);
20770Sstevel@tonic-gate 			}
20780Sstevel@tonic-gate 			mutex_exit(&pshot->lock);
20790Sstevel@tonic-gate 		}
20800Sstevel@tonic-gate 		break;
20810Sstevel@tonic-gate 
20820Sstevel@tonic-gate 	case DEVCTL_PM_LOWER_PWR:
20830Sstevel@tonic-gate 		/*
20840Sstevel@tonic-gate 		 * pm_lower_power() call for negative testing
20850Sstevel@tonic-gate 		 * expected to fail.
20860Sstevel@tonic-gate 		 */
20870Sstevel@tonic-gate 		if (pshot_debug) {
20880Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d devctl:"
20890Sstevel@tonic-gate 			    " DEVCTL_PM_LOWER_PWR\n", instance);
20900Sstevel@tonic-gate 		}
20910Sstevel@tonic-gate 		if (pm_lower_power(pshot->dip, 0, 0) != DDI_SUCCESS) {
20920Sstevel@tonic-gate 			rv = EINVAL;
20930Sstevel@tonic-gate 		} else {
20940Sstevel@tonic-gate 			mutex_enter(&pshot->lock);
20950Sstevel@tonic-gate 			if (pshot_debug) {
20960Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d:"
20970Sstevel@tonic-gate 				    " DEVCTL_PM_LOWER_POWER comp 0"
20980Sstevel@tonic-gate 				    " to level %d\n", instance, pshot->level);
20990Sstevel@tonic-gate 			}
21000Sstevel@tonic-gate 			mutex_exit(&pshot->lock);
21010Sstevel@tonic-gate 		}
21020Sstevel@tonic-gate 		break;
21030Sstevel@tonic-gate 
21040Sstevel@tonic-gate 	case DEVCTL_PM_CHANGE_PWR_LOW:
21050Sstevel@tonic-gate 		/*
21060Sstevel@tonic-gate 		 * inform the PM framework that component 0 has changed
21070Sstevel@tonic-gate 		 * power level to 0 via a pm_power_has_changed() call
21080Sstevel@tonic-gate 		 */
21090Sstevel@tonic-gate 		if (pshot_debug) {
21100Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d devctl:"
21110Sstevel@tonic-gate 			    " DEVCTL_PM_CHANGE_PWR_LOW\n", instance);
21120Sstevel@tonic-gate 		}
21130Sstevel@tonic-gate 		mutex_enter(&pshot->lock);
21140Sstevel@tonic-gate 		pshot->level = 0;
21150Sstevel@tonic-gate 		if (pm_power_has_changed(pshot->dip, 0, 0) != DDI_SUCCESS) {
21160Sstevel@tonic-gate 			rv = EINVAL;
21170Sstevel@tonic-gate 		} else {
21180Sstevel@tonic-gate 			if (pshot_debug) {
21190Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d:"
21200Sstevel@tonic-gate 				    " DEVCTL_PM_CHANGE_PWR_LOW comp 0 to"
21210Sstevel@tonic-gate 				    " level %d\n", instance, pshot->level);
21220Sstevel@tonic-gate 			}
21230Sstevel@tonic-gate 		}
21240Sstevel@tonic-gate 		mutex_exit(&pshot->lock);
21250Sstevel@tonic-gate 		break;
21260Sstevel@tonic-gate 
21270Sstevel@tonic-gate 	case DEVCTL_PM_CHANGE_PWR_HIGH:
21280Sstevel@tonic-gate 		/*
21290Sstevel@tonic-gate 		 * inform the PM framework that component 0 has changed
21300Sstevel@tonic-gate 		 * power level to MAXPWR via a pm_power_has_changed() call
21310Sstevel@tonic-gate 		 */
21320Sstevel@tonic-gate 		if (pshot_debug) {
21330Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d devctl:"
21340Sstevel@tonic-gate 			    " DEVCTL_PM_CHANGE_PWR_HIGH\n", instance);
21350Sstevel@tonic-gate 		}
21360Sstevel@tonic-gate 		mutex_enter(&pshot->lock);
21370Sstevel@tonic-gate 		pshot->level = MAXPWR;
21380Sstevel@tonic-gate 		if (pm_power_has_changed(pshot->dip, 0, MAXPWR)
21390Sstevel@tonic-gate 		    != DDI_SUCCESS) {
21400Sstevel@tonic-gate 			rv = EINVAL;
21410Sstevel@tonic-gate 		} else {
21420Sstevel@tonic-gate 			if (pshot_debug) {
21430Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d:"
21440Sstevel@tonic-gate 				    " DEVCTL_PM_CHANGE_PWR_HIGH comp 0 to"
21450Sstevel@tonic-gate 				    " level %d\n", instance, pshot->level);
21460Sstevel@tonic-gate 			}
21470Sstevel@tonic-gate 		}
21480Sstevel@tonic-gate 		mutex_exit(&pshot->lock);
21490Sstevel@tonic-gate 		break;
21500Sstevel@tonic-gate 
21510Sstevel@tonic-gate 	case DEVCTL_PM_POWER:
21520Sstevel@tonic-gate 		/*
21530Sstevel@tonic-gate 		 * test if the pshot_power() routine has been called,
21540Sstevel@tonic-gate 		 * then clear
21550Sstevel@tonic-gate 		 */
21560Sstevel@tonic-gate 		if (pshot_debug) {
21570Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d devctl:"
21580Sstevel@tonic-gate 			    " DEVCTL_PM_POWER\n", instance);
21590Sstevel@tonic-gate 		}
21600Sstevel@tonic-gate 		mutex_enter(&pshot->lock);
21610Sstevel@tonic-gate 		state = (pshot->state & POWER_FLAG) ? 1 : 0;
21620Sstevel@tonic-gate 		if (copyout(&state, dcp->cpyout_buf,
21630Sstevel@tonic-gate 		    sizeof (uint_t)) != 0) {
21640Sstevel@tonic-gate 			cmn_err(CE_WARN, "pshot%d devctl:"
21650Sstevel@tonic-gate 			    " DEVCTL_PM_POWER: copyout failed",
21660Sstevel@tonic-gate 			    instance);
21670Sstevel@tonic-gate 			rv = EINVAL;
21680Sstevel@tonic-gate 		}
21690Sstevel@tonic-gate 		if (pshot_debug) {
21700Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d: DEVCTL_PM_POWER:"
21710Sstevel@tonic-gate 			    " POWER_FLAG = %d\n", instance, state);
21720Sstevel@tonic-gate 		}
21730Sstevel@tonic-gate 		pshot->state &= ~POWER_FLAG;
21740Sstevel@tonic-gate 		mutex_exit(&pshot->lock);
21750Sstevel@tonic-gate 		break;
21760Sstevel@tonic-gate 
21770Sstevel@tonic-gate 	case DEVCTL_PM_FAIL_SUSPEND:
21780Sstevel@tonic-gate 		/*
21790Sstevel@tonic-gate 		 * fail DDI_SUSPEND
21800Sstevel@tonic-gate 		 */
21810Sstevel@tonic-gate 		if (pshot_debug) {
21820Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d devctl:"
21830Sstevel@tonic-gate 			    " DEVCTL_PM_FAIL_SUSPEND\n", instance);
21840Sstevel@tonic-gate 		}
21850Sstevel@tonic-gate 		mutex_enter(&pshot->lock);
21860Sstevel@tonic-gate 		pshot->state |= FAIL_SUSPEND_FLAG;
21870Sstevel@tonic-gate 		mutex_exit(&pshot->lock);
21880Sstevel@tonic-gate 		if (pshot_debug) {
21890Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d: DEVCTL_PM_FAIL_SUSPEND\n",
21900Sstevel@tonic-gate 			    instance);
21910Sstevel@tonic-gate 		}
21920Sstevel@tonic-gate 		break;
21930Sstevel@tonic-gate 
21940Sstevel@tonic-gate 	case DEVCTL_PM_BUS_STRICT_TEST:
21950Sstevel@tonic-gate 		/*
21960Sstevel@tonic-gate 		 * test the STRICT_PARENT flag:
21970Sstevel@tonic-gate 		 *	set => STRICT PARENT
21980Sstevel@tonic-gate 		 *	not set => INVOLVED PARENT
21990Sstevel@tonic-gate 		 */
22000Sstevel@tonic-gate 		mutex_enter(&pshot->lock);
22010Sstevel@tonic-gate 		state = (pshot->state & STRICT_PARENT) ? 1 : 0;
22020Sstevel@tonic-gate 		if (copyout(&state, dcp->cpyout_buf,
22030Sstevel@tonic-gate 		    sizeof (uint_t)) != 0) {
22040Sstevel@tonic-gate 			cmn_err(CE_WARN, "pshot%d devctl:"
22050Sstevel@tonic-gate 			    " DEVCTL_PM_BUS_STRICT_TEST: copyout failed",
22060Sstevel@tonic-gate 			    instance);
22070Sstevel@tonic-gate 			rv = EINVAL;
22080Sstevel@tonic-gate 		}
22090Sstevel@tonic-gate 		if (pshot_debug) {
22100Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d devctl:"
22110Sstevel@tonic-gate 			    " DEVCTL_PM_BUS_STRICT_TEST: type = %s\n",
22120Sstevel@tonic-gate 			    instance, ((state == 0) ? "INVOLVED" : "STRICT"));
22130Sstevel@tonic-gate 		}
22140Sstevel@tonic-gate 		mutex_exit(&pshot->lock);
22150Sstevel@tonic-gate 		break;
22160Sstevel@tonic-gate 
22170Sstevel@tonic-gate 	case DEVCTL_PM_BUS_NO_INVOL:
22180Sstevel@tonic-gate 		/*
22190Sstevel@tonic-gate 		 * Set the NO_INVOL_FLAG flag to
22200Sstevel@tonic-gate 		 * notify the driver that the child will not
22210Sstevel@tonic-gate 		 * call pm_lower_power() on detach.
22220Sstevel@tonic-gate 		 * The driver needs to mark itself idle twice
22230Sstevel@tonic-gate 		 * during DDI_CTLOPS_DETACH (post).
22240Sstevel@tonic-gate 		 */
22250Sstevel@tonic-gate 		if (pshot_debug) {
22260Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d devctl:"
22270Sstevel@tonic-gate 			    " DEVCTL_PM_BUS_NO_INVOL\n", instance);
22280Sstevel@tonic-gate 		}
22290Sstevel@tonic-gate 		mutex_enter(&pshot->lock);
22300Sstevel@tonic-gate 		pshot->state |= NO_INVOL_FLAG;
22310Sstevel@tonic-gate 		mutex_exit(&pshot->lock);
22320Sstevel@tonic-gate 		break;
22330Sstevel@tonic-gate 
22340Sstevel@tonic-gate 	default:
22350Sstevel@tonic-gate 		rv = ENOTTY;
22360Sstevel@tonic-gate 	}
22370Sstevel@tonic-gate 
22380Sstevel@tonic-gate 	ndi_dc_freehdl(dcp);
22390Sstevel@tonic-gate 	return (rv);
22400Sstevel@tonic-gate }
22410Sstevel@tonic-gate 
22420Sstevel@tonic-gate 
22430Sstevel@tonic-gate /*
22440Sstevel@tonic-gate  * pshot_testctl: handle other test operations
22450Sstevel@tonic-gate  *	- If <cmd> is a DEVCTL cmd, then <arg> is a dev_t indicating which
22460Sstevel@tonic-gate  *	  child to direct the DEVCTL to, if applicable;
22470Sstevel@tonic-gate  *	  furthermore, any cmd here can be sent by layered ioctls (unlike
22480Sstevel@tonic-gate  *	  those to pshot_devctl() which must come from userland)
22490Sstevel@tonic-gate  */
22500Sstevel@tonic-gate /* ARGSUSED */
22510Sstevel@tonic-gate static int
22520Sstevel@tonic-gate pshot_testctl(pshot_t *pshot, minor_t nodenum, int cmd, intptr_t arg, int mode,
22530Sstevel@tonic-gate     cred_t *credp, int *rvalp)
22540Sstevel@tonic-gate {
22550Sstevel@tonic-gate 	dev_info_t *self;
22560Sstevel@tonic-gate 	dev_info_t *child = NULL;
22570Sstevel@tonic-gate 	uint_t state;
22580Sstevel@tonic-gate 	int rv = 0;
22590Sstevel@tonic-gate 	int instance;
22600Sstevel@tonic-gate 	int i;
22610Sstevel@tonic-gate 
22620Sstevel@tonic-gate 	/* uint_t flags; */
22630Sstevel@tonic-gate 
22640Sstevel@tonic-gate 	/* flags = (pshot_devctl_debug) ? NDI_DEVI_DEBUG : 0; */
22650Sstevel@tonic-gate 	self = pshot->dip;
22660Sstevel@tonic-gate 	instance = pshot->instance;
22670Sstevel@tonic-gate 
22680Sstevel@tonic-gate 	if (cmd & DEVCTL_IOC) {
22690Sstevel@tonic-gate 		child = e_ddi_hold_devi_by_dev((dev_t)arg, 0);
22700Sstevel@tonic-gate 	}
22710Sstevel@tonic-gate 
22720Sstevel@tonic-gate 	for (i = 0; pshot_devctls[i].ioctl_int != 0; i++) {
22730Sstevel@tonic-gate 		if (pshot_devctls[i].ioctl_int == cmd) {
22740Sstevel@tonic-gate 			if (pshot_debug)
22750Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d devctl: %s",
22760Sstevel@tonic-gate 				    instance, pshot_devctls[i].ioctl_char);
22770Sstevel@tonic-gate 		}
22780Sstevel@tonic-gate 	}
22790Sstevel@tonic-gate 	switch (cmd) {
22800Sstevel@tonic-gate 	case DEVCTL_DEVICE_RESET:
22810Sstevel@tonic-gate 		if (pshot_debug)
22820Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d testctl:"
22830Sstevel@tonic-gate 			    " DEVCTL_PM_POWER\n", instance);
22840Sstevel@tonic-gate 		rv = pshot_event(pshot, PSHOT_EVENT_TAG_DEV_RESET,
22850Sstevel@tonic-gate 		    child, (void *)self);
22860Sstevel@tonic-gate 		ASSERT(rv == NDI_SUCCESS);
22870Sstevel@tonic-gate 		break;
22880Sstevel@tonic-gate 
22890Sstevel@tonic-gate 	case DEVCTL_BUS_QUIESCE:
22900Sstevel@tonic-gate 		if (pshot_debug)
22910Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d testctl:"
22920Sstevel@tonic-gate 			    " DEVCTL_PM_POWER\n", instance);
22930Sstevel@tonic-gate 		if (ndi_get_bus_state(self, &state) == NDI_SUCCESS) {
22940Sstevel@tonic-gate 			if (state == BUS_QUIESCED) {
22950Sstevel@tonic-gate 				break;
22960Sstevel@tonic-gate 			}
22970Sstevel@tonic-gate 			(void) ndi_set_bus_state(self, BUS_QUIESCED);
22980Sstevel@tonic-gate 		}
22990Sstevel@tonic-gate 		rv = pshot_event(pshot, PSHOT_EVENT_TAG_BUS_QUIESCE,
23000Sstevel@tonic-gate 		    child, (void *)self);
23010Sstevel@tonic-gate 		ASSERT(rv == NDI_SUCCESS);
23020Sstevel@tonic-gate 
23030Sstevel@tonic-gate 		break;
23040Sstevel@tonic-gate 
23050Sstevel@tonic-gate 	case DEVCTL_BUS_UNQUIESCE:
23060Sstevel@tonic-gate 		if (pshot_debug)
23070Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d testctl:"
23080Sstevel@tonic-gate 			    " DEVCTL_PM_POWER\n", instance);
23090Sstevel@tonic-gate 		if (ndi_get_bus_state(self, &state) == NDI_SUCCESS) {
23100Sstevel@tonic-gate 			if (state == BUS_ACTIVE) {
23110Sstevel@tonic-gate 				break;
23120Sstevel@tonic-gate 			}
23130Sstevel@tonic-gate 		}
23140Sstevel@tonic-gate 
23150Sstevel@tonic-gate 		/*
23160Sstevel@tonic-gate 		 * quiesce the bus through bus-specific means
23170Sstevel@tonic-gate 		 */
23180Sstevel@tonic-gate 		(void) ndi_set_bus_state(self, BUS_ACTIVE);
23190Sstevel@tonic-gate 		rv = pshot_event(pshot, PSHOT_EVENT_TAG_BUS_UNQUIESCE,
23200Sstevel@tonic-gate 		    child, (void *)self);
23210Sstevel@tonic-gate 		ASSERT(rv == NDI_SUCCESS);
23220Sstevel@tonic-gate 		break;
23230Sstevel@tonic-gate 
23240Sstevel@tonic-gate 	case DEVCTL_BUS_RESET:
23250Sstevel@tonic-gate 	case DEVCTL_BUS_RESETALL:
23260Sstevel@tonic-gate 		/*
23270Sstevel@tonic-gate 		 * no reset support for the pseudo bus
23280Sstevel@tonic-gate 		 * but if there were....
23290Sstevel@tonic-gate 		 */
23300Sstevel@tonic-gate 		rv = pshot_event(pshot, PSHOT_EVENT_TAG_BUS_RESET,
23310Sstevel@tonic-gate 			child, (void *)self);
23320Sstevel@tonic-gate 		ASSERT(rv == NDI_SUCCESS);
23330Sstevel@tonic-gate 		break;
23340Sstevel@tonic-gate 
23350Sstevel@tonic-gate 	default:
23360Sstevel@tonic-gate 		rv = ENOTTY;
23370Sstevel@tonic-gate 	}
23380Sstevel@tonic-gate 
23390Sstevel@tonic-gate 	if (child != NULL)
23400Sstevel@tonic-gate 		ddi_release_devi(child);
23410Sstevel@tonic-gate 	return (rv);
23420Sstevel@tonic-gate }
23430Sstevel@tonic-gate 
23440Sstevel@tonic-gate 
23450Sstevel@tonic-gate static int
23460Sstevel@tonic-gate pshot_get_eventcookie(dev_info_t *dip, dev_info_t *rdip,
23470Sstevel@tonic-gate 	char *eventname, ddi_eventcookie_t *event_cookiep)
23480Sstevel@tonic-gate {
23490Sstevel@tonic-gate 	int	instance = ddi_get_instance(dip);
23500Sstevel@tonic-gate 	pshot_t *pshot = ddi_get_soft_state(pshot_softstatep, instance);
23510Sstevel@tonic-gate 
23520Sstevel@tonic-gate 	if (pshot_debug)
23530Sstevel@tonic-gate 	    cmn_err(CE_CONT, "pshot%d: "
23540Sstevel@tonic-gate 		"pshot_get_eventcookie:\n\t"
23550Sstevel@tonic-gate 		"dip = 0x%p rdip = 0x%p (%s/%d) eventname = %s\n",
23560Sstevel@tonic-gate 		instance, (void *)dip, (void *)rdip,
23570Sstevel@tonic-gate 		ddi_node_name(rdip), ddi_get_instance(rdip),
23580Sstevel@tonic-gate 		eventname);
23590Sstevel@tonic-gate 
23600Sstevel@tonic-gate 
23610Sstevel@tonic-gate 	return (ndi_event_retrieve_cookie(pshot->ndi_event_hdl,
23620Sstevel@tonic-gate 		rdip, eventname, event_cookiep, NDI_EVENT_NOPASS));
23630Sstevel@tonic-gate }
23640Sstevel@tonic-gate 
23650Sstevel@tonic-gate static int
23660Sstevel@tonic-gate pshot_add_eventcall(dev_info_t *dip, dev_info_t *rdip,
23670Sstevel@tonic-gate 	ddi_eventcookie_t cookie,
23680Sstevel@tonic-gate 	void (*callback)(), void *arg, ddi_callback_id_t *cb_id)
23690Sstevel@tonic-gate {
23700Sstevel@tonic-gate 	int	instance = ddi_get_instance(dip);
23710Sstevel@tonic-gate 	pshot_t *pshot = ddi_get_soft_state(pshot_softstatep, instance);
23720Sstevel@tonic-gate 
23730Sstevel@tonic-gate 	if (pshot_debug)
23740Sstevel@tonic-gate 	    cmn_err(CE_CONT, "pshot%d: "
23750Sstevel@tonic-gate 	    "pshot_add_eventcall:\n\t"
23760Sstevel@tonic-gate 	    "dip = 0x%p rdip = 0x%p (%s%d)\n\tcookie = 0x%p (%s)\n\t"
23770Sstevel@tonic-gate 	    "cb = 0x%p, arg = 0x%p\n",
23780Sstevel@tonic-gate 	    instance, (void *)dip, (void *)rdip,
23790Sstevel@tonic-gate 	    ddi_node_name(rdip), ddi_get_instance(rdip), (void *)cookie,
23800Sstevel@tonic-gate 	    NDI_EVENT_NAME(cookie), (void *)callback, arg);
23810Sstevel@tonic-gate 
23820Sstevel@tonic-gate 	/* add callback to our event handle */
23830Sstevel@tonic-gate 	return (ndi_event_add_callback(pshot->ndi_event_hdl, rdip,
23840Sstevel@tonic-gate 		cookie, callback, arg, NDI_SLEEP, cb_id));
23850Sstevel@tonic-gate }
23860Sstevel@tonic-gate 
23870Sstevel@tonic-gate static int
23880Sstevel@tonic-gate pshot_remove_eventcall(dev_info_t *dip, ddi_callback_id_t cb_id)
23890Sstevel@tonic-gate {
23900Sstevel@tonic-gate 
23910Sstevel@tonic-gate 	ndi_event_callbacks_t *cb = (ndi_event_callbacks_t *)cb_id;
23920Sstevel@tonic-gate 
23930Sstevel@tonic-gate 	int instance = ddi_get_instance(dip);
23940Sstevel@tonic-gate 	pshot_t *pshot = ddi_get_soft_state(pshot_softstatep, instance);
23950Sstevel@tonic-gate 
23960Sstevel@tonic-gate 	ASSERT(cb);
23970Sstevel@tonic-gate 
23980Sstevel@tonic-gate 	if (pshot_debug)
23990Sstevel@tonic-gate 	    cmn_err(CE_CONT, "pshot%d: "
24000Sstevel@tonic-gate 	    "pshot_remove_eventcall:\n\t"
24010Sstevel@tonic-gate 	    "dip = 0x%p rdip = 0x%p (%s%d)\n\tcookie = 0x%p (%s)\n",
24020Sstevel@tonic-gate 	    instance, (void *)dip, (void *)cb->ndi_evtcb_dip,
24030Sstevel@tonic-gate 	    ddi_node_name(cb->ndi_evtcb_dip),
24040Sstevel@tonic-gate 	    ddi_get_instance(cb->ndi_evtcb_dip), (void *)cb->ndi_evtcb_cookie,
24050Sstevel@tonic-gate 	    NDI_EVENT_NAME(cb->ndi_evtcb_cookie));
24060Sstevel@tonic-gate 
24070Sstevel@tonic-gate 	return (ndi_event_remove_callback(pshot->ndi_event_hdl, cb_id));
24080Sstevel@tonic-gate }
24090Sstevel@tonic-gate 
24100Sstevel@tonic-gate static int
24110Sstevel@tonic-gate pshot_post_event(dev_info_t *dip, dev_info_t *rdip,
24120Sstevel@tonic-gate 	ddi_eventcookie_t cookie, void *impl_data)
24130Sstevel@tonic-gate {
24140Sstevel@tonic-gate 	int	instance = ddi_get_instance(dip);
24150Sstevel@tonic-gate 	pshot_t *pshot = ddi_get_soft_state(pshot_softstatep, instance);
24160Sstevel@tonic-gate 
24170Sstevel@tonic-gate 	if (pshot_debug) {
24180Sstevel@tonic-gate 	    if (rdip) {
24190Sstevel@tonic-gate 		cmn_err(CE_CONT, "pshot%d: "
24200Sstevel@tonic-gate 		    "pshot_post_event:\n\t"
24210Sstevel@tonic-gate 		    "dip = 0x%p rdip = 0x%p (%s%d\n\t"
24220Sstevel@tonic-gate 		    "cookie = 0x%p (%s)\n\tbus_impl = 0x%p\n",
24230Sstevel@tonic-gate 		    instance, (void *)dip, (void *)rdip,
24240Sstevel@tonic-gate 		    ddi_node_name(rdip), ddi_get_instance(rdip), (void *)cookie,
24250Sstevel@tonic-gate 		    NDI_EVENT_NAME(cookie), impl_data);
24260Sstevel@tonic-gate 	    } else {
24270Sstevel@tonic-gate 		cmn_err(CE_CONT, "pshot%d: "
24280Sstevel@tonic-gate 		    "pshot_post_event:\n\t"
24290Sstevel@tonic-gate 		    "dip = 0x%p cookie = 0x%p (%s) bus_impl = 0x%p\n",
24300Sstevel@tonic-gate 		    instance, (void *)dip, (void *)cookie,
24310Sstevel@tonic-gate 		    NDI_EVENT_NAME(cookie), impl_data);
24320Sstevel@tonic-gate 	    }
24330Sstevel@tonic-gate 	}
24340Sstevel@tonic-gate 
24350Sstevel@tonic-gate 	/*  run callbacks for this event */
24360Sstevel@tonic-gate 	return (ndi_event_run_callbacks(pshot->ndi_event_hdl, rdip,
24370Sstevel@tonic-gate 	    cookie, impl_data));
24380Sstevel@tonic-gate }
24390Sstevel@tonic-gate 
24400Sstevel@tonic-gate /*
24410Sstevel@tonic-gate  * the nexus driver will generate events
24420Sstevel@tonic-gate  * that need to go to children
24430Sstevel@tonic-gate  */
24440Sstevel@tonic-gate static int
24450Sstevel@tonic-gate pshot_event(pshot_t *pshot, int event_tag, dev_info_t *child,
24460Sstevel@tonic-gate 	void *bus_impldata)
24470Sstevel@tonic-gate {
24480Sstevel@tonic-gate 	ddi_eventcookie_t cookie = ndi_event_tag_to_cookie(
24490Sstevel@tonic-gate 		pshot->ndi_event_hdl, event_tag);
24500Sstevel@tonic-gate 
24510Sstevel@tonic-gate 	if (pshot_debug) {
24520Sstevel@tonic-gate 		if (child) {
24530Sstevel@tonic-gate 		    cmn_err(CE_CONT, "pshot%d: "
24540Sstevel@tonic-gate 			"pshot_event: event_tag = 0x%x (%s)\n\t"
24550Sstevel@tonic-gate 			"child = 0x%p (%s%d) bus_impl = 0x%p (%s%d)\n",
24560Sstevel@tonic-gate 			pshot->instance, event_tag,
24570Sstevel@tonic-gate 			ndi_event_tag_to_name(pshot->ndi_event_hdl, event_tag),
24580Sstevel@tonic-gate 			(void *)child, ddi_node_name(child),
24590Sstevel@tonic-gate 			ddi_get_instance(child), bus_impldata,
24600Sstevel@tonic-gate 			ddi_node_name((dev_info_t *)bus_impldata),
24610Sstevel@tonic-gate 			ddi_get_instance((dev_info_t *)bus_impldata));
24620Sstevel@tonic-gate 		} else {
24630Sstevel@tonic-gate 		    cmn_err(CE_CONT, "pshot%d: "
24640Sstevel@tonic-gate 			"pshot_event: event_tag = 0x%x (%s)\n\t"
24650Sstevel@tonic-gate 			"child = NULL,  bus_impl = 0x%p (%s%d)\n",
24660Sstevel@tonic-gate 			pshot->instance, event_tag,
24670Sstevel@tonic-gate 			ndi_event_tag_to_name(pshot->ndi_event_hdl, event_tag),
24680Sstevel@tonic-gate 			bus_impldata,
24690Sstevel@tonic-gate 			ddi_node_name((dev_info_t *)bus_impldata),
24700Sstevel@tonic-gate 			ddi_get_instance((dev_info_t *)bus_impldata));
24710Sstevel@tonic-gate 		}
24720Sstevel@tonic-gate 	}
24730Sstevel@tonic-gate 
24740Sstevel@tonic-gate 	return (ndi_event_run_callbacks(pshot->ndi_event_hdl,
24750Sstevel@tonic-gate 		child, cookie, bus_impldata));
24760Sstevel@tonic-gate }
24770Sstevel@tonic-gate 
24780Sstevel@tonic-gate 
24790Sstevel@tonic-gate /*
24800Sstevel@tonic-gate  * the pshot driver event notification callback
24810Sstevel@tonic-gate  */
24820Sstevel@tonic-gate static void
24830Sstevel@tonic-gate pshot_event_cb(dev_info_t *dip, ddi_eventcookie_t cookie,
24840Sstevel@tonic-gate 	void *arg, void *bus_impldata)
24850Sstevel@tonic-gate {
24860Sstevel@tonic-gate 	pshot_t *pshot = (pshot_t *)arg;
24870Sstevel@tonic-gate 	int event_tag;
24880Sstevel@tonic-gate 
24890Sstevel@tonic-gate 	/* look up the event */
24900Sstevel@tonic-gate 	event_tag = NDI_EVENT_TAG(cookie);
24910Sstevel@tonic-gate 
24920Sstevel@tonic-gate 	if (pshot_debug) {
24930Sstevel@tonic-gate 		cmn_err(CE_CONT, "pshot%d: "
24940Sstevel@tonic-gate 		    "pshot_event_cb:\n\t"
24950Sstevel@tonic-gate 		    "dip = 0x%p cookie = 0x%p (%s), tag = 0x%x\n\t"
24960Sstevel@tonic-gate 		    "arg = 0x%p bus_impl = 0x%p (%s%d)\n",
24970Sstevel@tonic-gate 		    pshot->instance, (void *)dip, (void *)cookie,
24980Sstevel@tonic-gate 		    NDI_EVENT_NAME(cookie), event_tag, arg, bus_impldata,
24990Sstevel@tonic-gate 		    ddi_node_name((dev_info_t *)bus_impldata),
25000Sstevel@tonic-gate 		    ddi_get_instance((dev_info_t *)bus_impldata));
25010Sstevel@tonic-gate 	}
25020Sstevel@tonic-gate 
25030Sstevel@tonic-gate 	switch (event_tag) {
25040Sstevel@tonic-gate 	case PSHOT_EVENT_TAG_OFFLINE:
25050Sstevel@tonic-gate 	case PSHOT_EVENT_TAG_BUS_RESET:
25060Sstevel@tonic-gate 	case PSHOT_EVENT_TAG_BUS_QUIESCE:
25070Sstevel@tonic-gate 	case PSHOT_EVENT_TAG_BUS_UNQUIESCE:
25080Sstevel@tonic-gate 		/* notify all subscribers of the this event */
25090Sstevel@tonic-gate 		(void) ndi_event_run_callbacks(pshot->ndi_event_hdl,
25100Sstevel@tonic-gate 			NULL, cookie, bus_impldata);
25110Sstevel@tonic-gate 		if (pshot_debug) {
25120Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d: event=%s\n\t"
25130Sstevel@tonic-gate 			"pshot_event_cb\n", pshot->instance,
25140Sstevel@tonic-gate 			NDI_EVENT_NAME(cookie));
25150Sstevel@tonic-gate 		}
25160Sstevel@tonic-gate 		/*FALLTHRU*/
25170Sstevel@tonic-gate 	case PSHOT_EVENT_TAG_TEST_POST:
25180Sstevel@tonic-gate 	case PSHOT_EVENT_TAG_DEV_RESET:
25190Sstevel@tonic-gate 	default:
25200Sstevel@tonic-gate 		return;
25210Sstevel@tonic-gate 	}
25220Sstevel@tonic-gate }
25230Sstevel@tonic-gate 
25240Sstevel@tonic-gate static int
25250Sstevel@tonic-gate pshot_bus_config(dev_info_t *parent, uint_t flags,
25260Sstevel@tonic-gate     ddi_bus_config_op_t op, void *arg, dev_info_t **childp)
25270Sstevel@tonic-gate {
25280Sstevel@tonic-gate 	int		rval;
25290Sstevel@tonic-gate 	char		*devname;
25300Sstevel@tonic-gate 	char		*devstr, *cname, *caddr;
25310Sstevel@tonic-gate 	int		devstrlen;
25320Sstevel@tonic-gate 	int		circ;
25330Sstevel@tonic-gate 	pshot_t		*pshot;
25340Sstevel@tonic-gate 	int		instance = ddi_get_instance(parent);
25350Sstevel@tonic-gate 
25360Sstevel@tonic-gate 	if (pshot_debug) {
25370Sstevel@tonic-gate 		flags |= NDI_DEVI_DEBUG;
25380Sstevel@tonic-gate 		cmn_err(CE_CONT,
25390Sstevel@tonic-gate 		    "pshot%d: bus_config %s flags=0x%x\n",
25400Sstevel@tonic-gate 		    ddi_get_instance(parent),
25410Sstevel@tonic-gate 		    (op == BUS_CONFIG_ONE) ? (char *)arg : "", flags);
25420Sstevel@tonic-gate 	}
25430Sstevel@tonic-gate 
25440Sstevel@tonic-gate 	pshot = ddi_get_soft_state(pshot_softstatep, instance);
25450Sstevel@tonic-gate 	if (pshot == NULL) {
25460Sstevel@tonic-gate 
25470Sstevel@tonic-gate 		return (NDI_FAILURE);
25480Sstevel@tonic-gate 	}
25490Sstevel@tonic-gate 
25500Sstevel@tonic-gate 	/*
25510Sstevel@tonic-gate 	 * Hold the nexus across the bus_config
25520Sstevel@tonic-gate 	 */
25530Sstevel@tonic-gate 	ndi_devi_enter(parent, &circ);
25540Sstevel@tonic-gate 
25550Sstevel@tonic-gate 	switch (op) {
25560Sstevel@tonic-gate 	case BUS_CONFIG_ONE:
25570Sstevel@tonic-gate 
25580Sstevel@tonic-gate 		/*
25590Sstevel@tonic-gate 		 * lookup and hold child device, create if not found
25600Sstevel@tonic-gate 		 */
25610Sstevel@tonic-gate 		devname = (char *)arg;
25620Sstevel@tonic-gate 		devstrlen = strlen(devname) + 1;
25630Sstevel@tonic-gate 		devstr = i_ddi_strdup(devname, KM_SLEEP);
25640Sstevel@tonic-gate 		i_ddi_parse_name(devstr, &cname, &caddr, NULL);
25650Sstevel@tonic-gate 
25660Sstevel@tonic-gate 		/*
25670Sstevel@tonic-gate 		 * The framework ensures that the node has
25680Sstevel@tonic-gate 		 * a name but each nexus is responsible for
25690Sstevel@tonic-gate 		 * the bus address name space.  This driver
25700Sstevel@tonic-gate 		 * requires that a bus address be specified,
25710Sstevel@tonic-gate 		 * as will most nexus drivers.
25720Sstevel@tonic-gate 		 */
25730Sstevel@tonic-gate 		ASSERT(cname && strlen(cname) > 0);
25740Sstevel@tonic-gate 		if (caddr == NULL || strlen(caddr) == 0) {
25750Sstevel@tonic-gate 			cmn_err(CE_WARN,
25760Sstevel@tonic-gate 			    "pshot%d: malformed name %s (no bus address)",
25770Sstevel@tonic-gate 			    ddi_get_instance(parent), devname);
25780Sstevel@tonic-gate 			kmem_free(devstr, devstrlen);
25790Sstevel@tonic-gate 			ndi_devi_exit(parent, circ);
25800Sstevel@tonic-gate 			return (NDI_FAILURE);
25810Sstevel@tonic-gate 		}
25820Sstevel@tonic-gate 
25830Sstevel@tonic-gate 		/*
25840Sstevel@tonic-gate 		 * Handle a few special cases for testing purposes
25850Sstevel@tonic-gate 		 */
25860Sstevel@tonic-gate 		rval = pshot_bus_config_test_specials(parent,
25870Sstevel@tonic-gate 			devname, cname, caddr);
25880Sstevel@tonic-gate 
25890Sstevel@tonic-gate 		if (rval == NDI_SUCCESS) {
25900Sstevel@tonic-gate 			/*
25910Sstevel@tonic-gate 			 * Set up either a leaf or nexus device
25920Sstevel@tonic-gate 			 */
25930Sstevel@tonic-gate 			if (strcmp(cname, "pshot") == 0) {
25940Sstevel@tonic-gate 				rval = pshot_bus_config_setup_nexus(parent,
25950Sstevel@tonic-gate 				    cname, caddr);
25960Sstevel@tonic-gate 			} else {
25970Sstevel@tonic-gate 				rval = pshot_bus_config_setup_leaf(parent,
25980Sstevel@tonic-gate 				    cname, caddr);
25990Sstevel@tonic-gate 			}
26000Sstevel@tonic-gate 		}
26010Sstevel@tonic-gate 
26020Sstevel@tonic-gate 		kmem_free(devstr, devstrlen);
26030Sstevel@tonic-gate 		break;
26040Sstevel@tonic-gate 
26050Sstevel@tonic-gate 	case BUS_CONFIG_DRIVER:
26060Sstevel@tonic-gate 		rval = NDI_FAILURE;
26070Sstevel@tonic-gate 		break;
26080Sstevel@tonic-gate 
26090Sstevel@tonic-gate 	case BUS_CONFIG_ALL:
26100Sstevel@tonic-gate 		rval = NDI_SUCCESS;
26110Sstevel@tonic-gate 		break;
26120Sstevel@tonic-gate 
26130Sstevel@tonic-gate 	default:
26140Sstevel@tonic-gate 		rval = NDI_FAILURE;
26150Sstevel@tonic-gate 		break;
26160Sstevel@tonic-gate 	}
26170Sstevel@tonic-gate 
26180Sstevel@tonic-gate 	if (rval == NDI_SUCCESS)
26190Sstevel@tonic-gate 		rval = ndi_busop_bus_config(parent, flags, op, arg, childp, 0);
26200Sstevel@tonic-gate 
26210Sstevel@tonic-gate 	ndi_devi_exit(parent, circ);
26220Sstevel@tonic-gate 
26230Sstevel@tonic-gate 	if (pshot_debug)
26240Sstevel@tonic-gate 		cmn_err(CE_CONT, "pshot%d: bus_config %s\n",
26250Sstevel@tonic-gate 		    ddi_get_instance(parent),
26260Sstevel@tonic-gate 		    (rval == NDI_SUCCESS) ? "ok" : "failed");
26270Sstevel@tonic-gate 
26280Sstevel@tonic-gate 	return (rval);
26290Sstevel@tonic-gate }
26300Sstevel@tonic-gate 
26310Sstevel@tonic-gate static int
26320Sstevel@tonic-gate pshot_bus_unconfig(dev_info_t *parent, uint_t flags,
26330Sstevel@tonic-gate     ddi_bus_config_op_t op, void *arg)
26340Sstevel@tonic-gate {
26350Sstevel@tonic-gate 	major_t		major;
26360Sstevel@tonic-gate 	int		rval = NDI_SUCCESS;
26370Sstevel@tonic-gate 	int		circ;
26380Sstevel@tonic-gate 
26390Sstevel@tonic-gate 	if (pshot_debug) {
26400Sstevel@tonic-gate 		flags |= NDI_DEVI_DEBUG;
26410Sstevel@tonic-gate 		cmn_err(CE_CONT,
26420Sstevel@tonic-gate 		    "pshot%d: bus_unconfig %s flags=0x%x\n",
26430Sstevel@tonic-gate 		    ddi_get_instance(parent),
26440Sstevel@tonic-gate 		    (op == BUS_UNCONFIG_ONE) ? (char *)arg : "", flags);
26450Sstevel@tonic-gate 	}
26460Sstevel@tonic-gate 
26470Sstevel@tonic-gate 	/*
26480Sstevel@tonic-gate 	 * Hold the nexus across the bus_unconfig
26490Sstevel@tonic-gate 	 */
26500Sstevel@tonic-gate 	ndi_devi_enter(parent, &circ);
26510Sstevel@tonic-gate 
26520Sstevel@tonic-gate 	switch (op) {
26530Sstevel@tonic-gate 	case BUS_UNCONFIG_ONE:
26540Sstevel@tonic-gate 		/*
26550Sstevel@tonic-gate 		 * Nothing special required here
26560Sstevel@tonic-gate 		 */
26570Sstevel@tonic-gate 		if (pshot_debug) {
26580Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d: bus_unconfig:"
26590Sstevel@tonic-gate 			    " BUS_UNCONFIG_ONE\n", ddi_get_instance(parent));
26600Sstevel@tonic-gate 		}
26610Sstevel@tonic-gate 		break;
26620Sstevel@tonic-gate 
26630Sstevel@tonic-gate 	case BUS_UNCONFIG_DRIVER:
26640Sstevel@tonic-gate 		if (pshot_debug > 0) {
26650Sstevel@tonic-gate 			major = (major_t)(uintptr_t)arg;
26660Sstevel@tonic-gate 			cmn_err(CE_CONT,
26670Sstevel@tonic-gate 			    "pshot%d: BUS_UNCONFIG_DRIVER: %s\n",
26680Sstevel@tonic-gate 			    ddi_get_instance(parent),
26690Sstevel@tonic-gate 			    ddi_major_to_name(major));
26700Sstevel@tonic-gate 		}
26710Sstevel@tonic-gate 		break;
26720Sstevel@tonic-gate 
26730Sstevel@tonic-gate 	case BUS_UNCONFIG_ALL:
26740Sstevel@tonic-gate 		if (pshot_debug) {
26750Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d: bus_unconfig:"
26760Sstevel@tonic-gate 			    " BUS_UNCONFIG_ALL\n", ddi_get_instance(parent));
26770Sstevel@tonic-gate 		}
26780Sstevel@tonic-gate 		break;
26790Sstevel@tonic-gate 
26800Sstevel@tonic-gate 	default:
26810Sstevel@tonic-gate 		if (pshot_debug) {
26820Sstevel@tonic-gate 			cmn_err(CE_CONT, "pshot%d: bus_unconfig: DEFAULT\n",
26830Sstevel@tonic-gate 			    ddi_get_instance(parent));
26840Sstevel@tonic-gate 		}
26850Sstevel@tonic-gate 		rval = NDI_FAILURE;
26860Sstevel@tonic-gate 	}
26870Sstevel@tonic-gate 
26880Sstevel@tonic-gate 	if (rval == NDI_SUCCESS)
26890Sstevel@tonic-gate 		rval = ndi_busop_bus_unconfig(parent, flags, op, arg);
26900Sstevel@tonic-gate 
26910Sstevel@tonic-gate 	ndi_devi_exit(parent, circ);
26920Sstevel@tonic-gate 
26930Sstevel@tonic-gate 	if (pshot_debug)
26940Sstevel@tonic-gate 		cmn_err(CE_CONT, "pshot%d: bus_unconfig %s\n",
26950Sstevel@tonic-gate 		    ddi_get_instance(parent),
26960Sstevel@tonic-gate 		    (rval == NDI_SUCCESS) ? "ok" : "failed");
26970Sstevel@tonic-gate 
26980Sstevel@tonic-gate 	return (rval);
26990Sstevel@tonic-gate }
27000Sstevel@tonic-gate 
27010Sstevel@tonic-gate static dev_info_t *
27020Sstevel@tonic-gate pshot_findchild(dev_info_t *pdip, char *cname, char *caddr)
27030Sstevel@tonic-gate {
27040Sstevel@tonic-gate 	dev_info_t *dip;
27050Sstevel@tonic-gate 	char *addr;
27060Sstevel@tonic-gate 
27070Sstevel@tonic-gate 	ASSERT(cname != NULL && caddr != NULL);
27080Sstevel@tonic-gate 	ASSERT(DEVI_BUSY_OWNED(pdip));
27090Sstevel@tonic-gate 
27100Sstevel@tonic-gate 	for (dip = ddi_get_child(pdip); dip != NULL;
27110Sstevel@tonic-gate 	    dip = ddi_get_next_sibling(dip)) {
27120Sstevel@tonic-gate 		if (strcmp(cname, ddi_node_name(dip)) != 0)
27130Sstevel@tonic-gate 			continue;
27140Sstevel@tonic-gate 
27150Sstevel@tonic-gate 		if ((addr = ddi_get_name_addr(dip)) == NULL) {
27160Sstevel@tonic-gate 			if (ddi_prop_lookup_string(DDI_DEV_T_ANY, dip, 0,
27170Sstevel@tonic-gate 			    "bus-addr", &addr) == DDI_PROP_SUCCESS) {
27180Sstevel@tonic-gate 				if (strcmp(caddr, addr) == 0) {
27190Sstevel@tonic-gate 					ddi_prop_free(addr);
27200Sstevel@tonic-gate 					return (dip);
27210Sstevel@tonic-gate 				}
27220Sstevel@tonic-gate 				ddi_prop_free(addr);
27230Sstevel@tonic-gate 			}
27240Sstevel@tonic-gate 		} else {
27250Sstevel@tonic-gate 			if (strcmp(caddr, addr) == 0)
27260Sstevel@tonic-gate 				return (dip);
27270Sstevel@tonic-gate 		}
27280Sstevel@tonic-gate 	}
27290Sstevel@tonic-gate 
27300Sstevel@tonic-gate 	return (NULL);
27310Sstevel@tonic-gate }
27320Sstevel@tonic-gate 
27330Sstevel@tonic-gate static void
27340Sstevel@tonic-gate pshot_nexus_properties(dev_info_t *parent, dev_info_t *child, char *cname,
27350Sstevel@tonic-gate     char *caddr)
27360Sstevel@tonic-gate {
27370Sstevel@tonic-gate 	char *extension;
27380Sstevel@tonic-gate 
27390Sstevel@tonic-gate 	/*
2740*85Scth 	 * extract the address extension
27410Sstevel@tonic-gate 	 */
27420Sstevel@tonic-gate 	extension = strstr(caddr, ",");
27430Sstevel@tonic-gate 	if (extension != NULL) {
27440Sstevel@tonic-gate 		++extension;
27450Sstevel@tonic-gate 	} else {
27460Sstevel@tonic-gate 		extension = "null";
27470Sstevel@tonic-gate 	}
27480Sstevel@tonic-gate 
27490Sstevel@tonic-gate 	/*
27500Sstevel@tonic-gate 	 * Create the "pm-want-child-notification?" property for all
27510Sstevel@tonic-gate 	 * nodes that do not have the "pm_strict" or "nopm_strict"
27520Sstevel@tonic-gate 	 * extension
27530Sstevel@tonic-gate 	 */
27540Sstevel@tonic-gate 	if (strcmp(extension, "pm_strict") != 0 &&
27550Sstevel@tonic-gate 	    strcmp(extension, "nopm_strict") != 0) {
27560Sstevel@tonic-gate 		if (ddi_prop_exists(DDI_DEV_T_ANY, child,
27570Sstevel@tonic-gate 		    (DDI_PROP_DONTPASS | DDI_PROP_NOTPROM),
27580Sstevel@tonic-gate 		    "pm-want-child-notification?") == 0) {
27590Sstevel@tonic-gate 			if (pshot_debug) {
27600Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d:"
27610Sstevel@tonic-gate 				    " nexus_properties:\n\tcreate the"
27620Sstevel@tonic-gate 				    " \"pm-want-child-notification?\""
27630Sstevel@tonic-gate 				    " property for %s@%s\n",
27640Sstevel@tonic-gate 				    ddi_get_instance(parent), cname, caddr);
27650Sstevel@tonic-gate 			}
27660Sstevel@tonic-gate 			if (ddi_prop_create(DDI_DEV_T_NONE, child, 0,
27670Sstevel@tonic-gate 			    "pm-want-child-notification?", NULL, 0)
27680Sstevel@tonic-gate 			    != DDI_PROP_SUCCESS) {
27690Sstevel@tonic-gate 				cmn_err(CE_WARN, "pshot%d:"
27700Sstevel@tonic-gate 				    " nexus_properties:\n\tunable to create"
27710Sstevel@tonic-gate 				    " the \"pm-want-child-notification?\""
27720Sstevel@tonic-gate 				    " property for %s@%s",
27730Sstevel@tonic-gate 				    ddi_get_instance(parent), cname, caddr);
27740Sstevel@tonic-gate 			}
27750Sstevel@tonic-gate 		}
27760Sstevel@tonic-gate 	}
27770Sstevel@tonic-gate 
27780Sstevel@tonic-gate 	/*
27790Sstevel@tonic-gate 	 * Create the "no-pm-components" property for all nodes
27800Sstevel@tonic-gate 	 * with extension "nopm" or "nopm_strict"
27810Sstevel@tonic-gate 	 */
27820Sstevel@tonic-gate 	if (strcmp(extension, "nopm") == 0 ||
27830Sstevel@tonic-gate 	    strcmp(extension, "nopm_strict") == 0) {
27840Sstevel@tonic-gate 		if (ddi_prop_exists(DDI_DEV_T_ANY, child,
27850Sstevel@tonic-gate 		    (DDI_PROP_DONTPASS | DDI_PROP_NOTPROM),
27860Sstevel@tonic-gate 		    "no-pm-components") == 0) {
27870Sstevel@tonic-gate 			if (pshot_debug) {
27880Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d:"
27890Sstevel@tonic-gate 				    " nexus_properties:\n\tcreate the"
27900Sstevel@tonic-gate 				    " \"no-pm-components\""
27910Sstevel@tonic-gate 				    " property for %s@%s\n",
27920Sstevel@tonic-gate 				    ddi_get_instance(parent), cname, caddr);
27930Sstevel@tonic-gate 			}
27940Sstevel@tonic-gate 			if (ddi_prop_create(DDI_DEV_T_NONE, child, 0,
27950Sstevel@tonic-gate 			    "no-pm-components", NULL, 0)
27960Sstevel@tonic-gate 			    != DDI_PROP_SUCCESS) {
27970Sstevel@tonic-gate 				cmn_err(CE_WARN, "pshot%d:"
27980Sstevel@tonic-gate 				    " nexus_properties:\n\tunable to create"
27990Sstevel@tonic-gate 				    " the \"no-pm-components\""
28000Sstevel@tonic-gate 				    " property for %s@%s",
28010Sstevel@tonic-gate 				ddi_get_instance(parent), cname, caddr);
28020Sstevel@tonic-gate 			}
28030Sstevel@tonic-gate 		}
28040Sstevel@tonic-gate 	}
28050Sstevel@tonic-gate }
28060Sstevel@tonic-gate 
28070Sstevel@tonic-gate static void
28080Sstevel@tonic-gate pshot_leaf_properties(dev_info_t *parent, dev_info_t *child, char *cname,
28090Sstevel@tonic-gate     char *caddr)
28100Sstevel@tonic-gate {
28110Sstevel@tonic-gate 	char *extension;
28120Sstevel@tonic-gate 
28130Sstevel@tonic-gate 	/*
2814*85Scth 	 * extract the address extension
28150Sstevel@tonic-gate 	 */
28160Sstevel@tonic-gate 	extension = strstr(caddr, ",");
28170Sstevel@tonic-gate 	if (extension != NULL) {
28180Sstevel@tonic-gate 		++extension;
28190Sstevel@tonic-gate 	} else {
28200Sstevel@tonic-gate 		extension = "null";
28210Sstevel@tonic-gate 	}
28220Sstevel@tonic-gate 
28230Sstevel@tonic-gate 	/*
28240Sstevel@tonic-gate 	 * Create the "no-involuntary-power-cycles" property for
28250Sstevel@tonic-gate 	 * all leaf nodes with extension "no_invol"
28260Sstevel@tonic-gate 	 */
28270Sstevel@tonic-gate 	if (strcmp(extension, "no_invol") == 0) {
28280Sstevel@tonic-gate 		if (ddi_prop_exists(DDI_DEV_T_ANY, child,
28290Sstevel@tonic-gate 		    (DDI_PROP_DONTPASS | DDI_PROP_NOTPROM),
28300Sstevel@tonic-gate 		    "no-involuntary-power-cycles") == 0) {
28310Sstevel@tonic-gate 			if (pshot_debug) {
28320Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d:"
28330Sstevel@tonic-gate 				    " leaf_properties:\n\tcreate the"
28340Sstevel@tonic-gate 				    " \"no-involuntary-power-cycles\""
28350Sstevel@tonic-gate 				    " property for %s@%s\n",
28360Sstevel@tonic-gate 				    ddi_get_instance(parent), cname, caddr);
28370Sstevel@tonic-gate 			}
28380Sstevel@tonic-gate 			if (ddi_prop_create(DDI_DEV_T_NONE, child,
28390Sstevel@tonic-gate 			    DDI_PROP_CANSLEEP,
28400Sstevel@tonic-gate 			    "no-involuntary-power-cycles", NULL, 0)
28410Sstevel@tonic-gate 			    != DDI_PROP_SUCCESS) {
28420Sstevel@tonic-gate 				cmn_err(CE_WARN, "pshot%d:"
28430Sstevel@tonic-gate 				    " leaf_properties:\n\tunable to create the"
28440Sstevel@tonic-gate 				    " \"no-involuntary-power-cycles\""
28450Sstevel@tonic-gate 				    " property for %s@%s",
28460Sstevel@tonic-gate 				    ddi_get_instance(parent), cname, caddr);
28470Sstevel@tonic-gate 			}
28480Sstevel@tonic-gate 		}
28490Sstevel@tonic-gate 	}
28500Sstevel@tonic-gate 
28510Sstevel@tonic-gate 	/*
28520Sstevel@tonic-gate 	 * Create the "dependency-property" property for all leaf
28530Sstevel@tonic-gate 	 * nodes with extension "dep_prop"
28540Sstevel@tonic-gate 	 * to be used with the PM_ADD_DEPENDENT_PROPERTY ioctl
28550Sstevel@tonic-gate 	 */
28560Sstevel@tonic-gate 	if (strcmp(extension, "dep_prop") == 0) {
28570Sstevel@tonic-gate 		if (ddi_prop_exists(DDI_DEV_T_ANY, child,
28580Sstevel@tonic-gate 		    (DDI_PROP_DONTPASS | DDI_PROP_NOTPROM),
28590Sstevel@tonic-gate 		    "dependency-property") == 0) {
28600Sstevel@tonic-gate 			if (pshot_debug) {
28610Sstevel@tonic-gate 				cmn_err(CE_CONT, "pshot%d:"
28620Sstevel@tonic-gate 				    " leaf_properties:\n\tcreate the"
28630Sstevel@tonic-gate 				    " \"dependency-property\""
28640Sstevel@tonic-gate 				    " property for %s@%s\n",
28650Sstevel@tonic-gate 				    ddi_get_instance(parent), cname, caddr);
28660Sstevel@tonic-gate 			}
28670Sstevel@tonic-gate 			if (ddi_prop_create(DDI_DEV_T_NONE, child,
28680Sstevel@tonic-gate 			    DDI_PROP_CANSLEEP, "dependency-property", NULL, 0)
28690Sstevel@tonic-gate 			    != DDI_PROP_SUCCESS) {
28700Sstevel@tonic-gate 				cmn_err(CE_WARN, "pshot%d:"
28710Sstevel@tonic-gate 				    " leaf_properties:\n\tunable to create the"
28720Sstevel@tonic-gate 				    " \"dependency-property\" property for"
28730Sstevel@tonic-gate 				    " %s@%s", ddi_get_instance(parent),
28740Sstevel@tonic-gate 				    cname, caddr);
28750Sstevel@tonic-gate 			}
28760Sstevel@tonic-gate 		}
28770Sstevel@tonic-gate 	}
28780Sstevel@tonic-gate }
28790Sstevel@tonic-gate 
28800Sstevel@tonic-gate /*
28810Sstevel@tonic-gate  * BUS_CONFIG_ONE: setup a child nexus instance.
28820Sstevel@tonic-gate  */
28830Sstevel@tonic-gate static int
28840Sstevel@tonic-gate pshot_bus_config_setup_nexus(dev_info_t *parent, char *cname, char *caddr)
28850Sstevel@tonic-gate {
28860Sstevel@tonic-gate 	dev_info_t *child;
28870Sstevel@tonic-gate 	int rval;
28880Sstevel@tonic-gate 
28890Sstevel@tonic-gate 	ASSERT(parent != 0);
28900Sstevel@tonic-gate 	ASSERT(cname != NULL);
28910Sstevel@tonic-gate 	ASSERT(caddr != NULL);
28920Sstevel@tonic-gate 
28930Sstevel@tonic-gate 	child = pshot_findchild(parent, cname, caddr);
28940Sstevel@tonic-gate 	if (child) {
28950Sstevel@tonic-gate 		if (pshot_debug) {
28960Sstevel@tonic-gate 			cmn_err(CE_CONT,
28970Sstevel@tonic-gate 			    "pshot%d: bus_config one %s@%s found\n",
28980Sstevel@tonic-gate 			    ddi_get_instance(parent), cname, caddr);
28990Sstevel@tonic-gate 		}
29000Sstevel@tonic-gate 		/*
29010Sstevel@tonic-gate 		 * create the "pm-want-child-notification?" property
29020Sstevel@tonic-gate 		 * for this child, if it doesn't already exist
29030Sstevel@tonic-gate 		 */
29040Sstevel@tonic-gate 		(void) pshot_nexus_properties(parent, child, cname, caddr);
29050Sstevel@tonic-gate 
29060Sstevel@tonic-gate 		return (NDI_SUCCESS);
29070Sstevel@tonic-gate 	}
29080Sstevel@tonic-gate 
29090Sstevel@tonic-gate 	ndi_devi_alloc_sleep(parent, cname, DEVI_SID_NODEID, &child);
29100Sstevel@tonic-gate 	ASSERT(child != NULL);
29110Sstevel@tonic-gate 
29120Sstevel@tonic-gate 	if (ndi_prop_update_string(DDI_DEV_T_NONE, child,
29130Sstevel@tonic-gate 	    "bus-addr", caddr) != DDI_PROP_SUCCESS) {
29140Sstevel@tonic-gate 		cmn_err(CE_WARN, "pshot%d: _prop_update %s@%s failed",
29150Sstevel@tonic-gate 		    ddi_get_instance(parent), cname, caddr);
29160Sstevel@tonic-gate 		(void) ndi_devi_free(child);
29170Sstevel@tonic-gate 		return (NDI_FAILURE);
29180Sstevel@tonic-gate 	}
29190Sstevel@tonic-gate 
29200Sstevel@tonic-gate 	rval = ndi_devi_bind_driver(child, 0);
29210Sstevel@tonic-gate 	if (rval != NDI_SUCCESS) {
29220Sstevel@tonic-gate 		cmn_err(CE_WARN, "pshot%d: bind_driver %s failed",
29230Sstevel@tonic-gate 		    ddi_get_instance(parent), cname);
29240Sstevel@tonic-gate 		(void) ndi_devi_free(child);
29250Sstevel@tonic-gate 		return (NDI_FAILURE);
29260Sstevel@tonic-gate 	}
29270Sstevel@tonic-gate 
29280Sstevel@tonic-gate 	/*
29290Sstevel@tonic-gate 	 * create the "pm-want-child-notification?" property
29300Sstevel@tonic-gate 	 */
29310Sstevel@tonic-gate 	(void) pshot_nexus_properties(parent, child, cname, caddr);
29320Sstevel@tonic-gate 
29330Sstevel@tonic-gate 	return (NDI_SUCCESS);
29340Sstevel@tonic-gate }
29350Sstevel@tonic-gate 
29360Sstevel@tonic-gate /*
29370Sstevel@tonic-gate  * BUS_CONFIG_ONE: setup a child leaf device instance.
29380Sstevel@tonic-gate  * for testing purposes, we will create nodes of a variety of types.
29390Sstevel@tonic-gate  */
29400Sstevel@tonic-gate static int
29410Sstevel@tonic-gate pshot_bus_config_setup_leaf(dev_info_t *parent, char *cname, char *caddr)
29420Sstevel@tonic-gate {
29430Sstevel@tonic-gate 	dev_info_t *child;
29440Sstevel@tonic-gate 	char *compat_name;
29450Sstevel@tonic-gate 	char *nodetype;
29460Sstevel@tonic-gate 	int rval;
29470Sstevel@tonic-gate 	int i;
29480Sstevel@tonic-gate 
29490Sstevel@tonic-gate 	ASSERT(parent != 0);
29500Sstevel@tonic-gate 	ASSERT(cname != NULL);
29510Sstevel@tonic-gate 	ASSERT(caddr != NULL);
29520Sstevel@tonic-gate 
29530Sstevel@tonic-gate 	/*
29540Sstevel@tonic-gate 	 * if we already have a node with this name, return it
29550Sstevel@tonic-gate 	 */
29560Sstevel@tonic-gate 	if ((child = pshot_findchild(parent, cname, caddr)) != NULL) {
29570Sstevel@tonic-gate 		/*
29580Sstevel@tonic-gate 		 * create the "no-involuntary-power-cycles" or
29590Sstevel@tonic-gate 		 * the "dependency-property" property, if they
29600Sstevel@tonic-gate 		 * don't already exit
29610Sstevel@tonic-gate 		 */
29620Sstevel@tonic-gate 		(void) pshot_leaf_properties(parent, child, cname, caddr);
29630Sstevel@tonic-gate 
29640Sstevel@tonic-gate 		return (NDI_SUCCESS);
29650Sstevel@tonic-gate 	}
29660Sstevel@tonic-gate 
29670Sstevel@tonic-gate 	ndi_devi_alloc_sleep(parent, cname, DEVI_SID_NODEID, &child);
29680Sstevel@tonic-gate 	ASSERT(child != NULL);
29690Sstevel@tonic-gate 
29700Sstevel@tonic-gate 	if (ndi_prop_update_string(DDI_DEV_T_NONE, child, "bus-addr",
29710Sstevel@tonic-gate 	    caddr) != DDI_PROP_SUCCESS) {
29720Sstevel@tonic-gate 		(void) ndi_devi_free(child);
29730Sstevel@tonic-gate 		return (NDI_FAILURE);
29740Sstevel@tonic-gate 	}
29750Sstevel@tonic-gate 
29760Sstevel@tonic-gate 	/*
29770Sstevel@tonic-gate 	 * test compatible naming
29780Sstevel@tonic-gate 	 * if the child nodename is "cdisk", attach the list of compatible
29790Sstevel@tonic-gate 	 * named disks
29800Sstevel@tonic-gate 	 */
29810Sstevel@tonic-gate 	if (strcmp(cname, pshot_compat_diskname) == 0) {
29820Sstevel@tonic-gate 		if ((ndi_prop_update_string_array(DDI_DEV_T_NONE,
29830Sstevel@tonic-gate 		    child, "compatible", (char **)pshot_compat_psramdisks,
29840Sstevel@tonic-gate 		    5)) != DDI_PROP_SUCCESS) {
29850Sstevel@tonic-gate 			(void) ndi_devi_free(child);
29860Sstevel@tonic-gate 			return (NDI_FAILURE);
29870Sstevel@tonic-gate 		}
29880Sstevel@tonic-gate 	} else {
29890Sstevel@tonic-gate 		for (i = 0; i < pshot_devices_len && pshot_devices[i].name;
29900Sstevel@tonic-gate 		    i++) {
29910Sstevel@tonic-gate 			if (strcmp(cname, pshot_devices[i].name) == 0) {
29920Sstevel@tonic-gate 				compat_name = pshot_devices[i].compat;
29930Sstevel@tonic-gate 				nodetype = pshot_devices[i].nodetype;
29940Sstevel@tonic-gate 				if (pshot_debug) {
29950Sstevel@tonic-gate 					cmn_err(CE_CONT, "pshot%d: %s %s %s\n",
29960Sstevel@tonic-gate 					    ddi_get_instance(parent), cname,
29970Sstevel@tonic-gate 					    compat_name, nodetype);
29980Sstevel@tonic-gate 				}
29990Sstevel@tonic-gate 				if ((ndi_prop_update_string_array(
30000Sstevel@tonic-gate 				    DDI_DEV_T_NONE, child, "compatible",
30010Sstevel@tonic-gate 				    &compat_name, 1)) != DDI_PROP_SUCCESS) {
30020Sstevel@tonic-gate 					(void) ndi_devi_free(child);
30030Sstevel@tonic-gate 					return (NDI_FAILURE);
30040Sstevel@tonic-gate 				}
30050Sstevel@tonic-gate 				if ((ndi_prop_update_string(
30060Sstevel@tonic-gate 				    DDI_DEV_T_NONE, child, "node-type",
30070Sstevel@tonic-gate 				    nodetype)) != DDI_PROP_SUCCESS) {
30080Sstevel@tonic-gate 					(void) ndi_devi_free(child);
30090Sstevel@tonic-gate 					return (NDI_FAILURE);
30100Sstevel@tonic-gate 				}
30110Sstevel@tonic-gate 			}
30120Sstevel@tonic-gate 		}
30130Sstevel@tonic-gate 	}
30140Sstevel@tonic-gate 
30150Sstevel@tonic-gate 	rval = ndi_devi_bind_driver(child, 0);
30160Sstevel@tonic-gate 	if (rval != NDI_SUCCESS) {
30170Sstevel@tonic-gate 		cmn_err(CE_WARN, "pshot%d: bind_driver %s failed",
30180Sstevel@tonic-gate 		    ddi_get_instance(parent), cname);
30190Sstevel@tonic-gate 		(void) ndi_devi_free(child);
30200Sstevel@tonic-gate 		return (NDI_FAILURE);
30210Sstevel@tonic-gate 	}
30220Sstevel@tonic-gate 
30230Sstevel@tonic-gate 	/*
30240Sstevel@tonic-gate 	 * create the "no-involuntary-power-cycles" or
30250Sstevel@tonic-gate 	 * the "dependency-property" property
30260Sstevel@tonic-gate 	 */
30270Sstevel@tonic-gate 	(void) pshot_leaf_properties(parent, child, cname, caddr);
30280Sstevel@tonic-gate 
30290Sstevel@tonic-gate 	return (NDI_SUCCESS);
30300Sstevel@tonic-gate }
30310Sstevel@tonic-gate 
30320Sstevel@tonic-gate /*
30330Sstevel@tonic-gate  * Handle some special cases for testing bus_config via pshot
30340Sstevel@tonic-gate  *
30350Sstevel@tonic-gate  * Match these special address formats to behavior:
30360Sstevel@tonic-gate  *
30370Sstevel@tonic-gate  *	err.*		- induce bus_config error
30380Sstevel@tonic-gate  *	delay		- induce 1 second of bus_config delay time
30390Sstevel@tonic-gate  *	delay,n		- induce n seconds of bus_config delay time
30400Sstevel@tonic-gate  *	wait		- induce 1 second of bus_config wait time
30410Sstevel@tonic-gate  *	wait,n		- induce n seconds of bus_config wait time
30420Sstevel@tonic-gate  *	failinit.*	- induce error at INITCHILD
30430Sstevel@tonic-gate  *	failprobe.*	- induce error at probe
30440Sstevel@tonic-gate  *	failattach.*	- induce error at attach
30450Sstevel@tonic-gate  */
30460Sstevel@tonic-gate /*ARGSUSED*/
30470Sstevel@tonic-gate static int
30480Sstevel@tonic-gate pshot_bus_config_test_specials(dev_info_t *parent, char *devname,
30490Sstevel@tonic-gate 	char *cname, char *caddr)
30500Sstevel@tonic-gate {
30510Sstevel@tonic-gate 	char	*p;
30520Sstevel@tonic-gate 	int	n;
30530Sstevel@tonic-gate 
30540Sstevel@tonic-gate 	if (strncmp(caddr, "err", 3) == 0) {
30550Sstevel@tonic-gate 		if (pshot_debug)
30560Sstevel@tonic-gate 			cmn_err(CE_CONT,
30570Sstevel@tonic-gate 			    "pshot%d: %s forced failure\n",
30580Sstevel@tonic-gate 				ddi_get_instance(parent), devname);
30590Sstevel@tonic-gate 		return (NDI_FAILURE);
30600Sstevel@tonic-gate 	}
30610Sstevel@tonic-gate 
30620Sstevel@tonic-gate 	/*
30630Sstevel@tonic-gate 	 * The delay and wait strings have the same effect.
30640Sstevel@tonic-gate 	 * The "wait[,]" support should be removed once the
30650Sstevel@tonic-gate 	 * devfs test suites are fixed.
30660Sstevel@tonic-gate 	 * NOTE: delay should not be called from interrupt context
30670Sstevel@tonic-gate 	 */
30680Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
30690Sstevel@tonic-gate 
30700Sstevel@tonic-gate 	if (strncmp(caddr, "delay,", 6) == 0) {
30710Sstevel@tonic-gate 		p = caddr+6;
30720Sstevel@tonic-gate 		n = stoi(&p);
30730Sstevel@tonic-gate 		if (*p != 0)
30740Sstevel@tonic-gate 			n = 1;
30750Sstevel@tonic-gate 		if (pshot_debug)
30760Sstevel@tonic-gate 			cmn_err(CE_CONT,
30770Sstevel@tonic-gate 			    "pshot%d: %s delay %d second\n",
30780Sstevel@tonic-gate 				ddi_get_instance(parent), devname, n);
30790Sstevel@tonic-gate 		delay(n * drv_usectohz(1000000));
30800Sstevel@tonic-gate 	} else if (strncmp(caddr, "delay", 5) == 0) {
30810Sstevel@tonic-gate 		if (pshot_debug)
30820Sstevel@tonic-gate 			cmn_err(CE_CONT,
30830Sstevel@tonic-gate 			    "pshot%d: %s delay 1 second\n",
30840Sstevel@tonic-gate 				ddi_get_instance(parent), devname);
30850Sstevel@tonic-gate 		delay(drv_usectohz(1000000));
30860Sstevel@tonic-gate 	} else if (strncmp(caddr, "wait,", 5) == 0) {
30870Sstevel@tonic-gate 		p = caddr+5;
30880Sstevel@tonic-gate 		n = stoi(&p);
30890Sstevel@tonic-gate 		if (*p != 0)
30900Sstevel@tonic-gate 			n = 1;
30910Sstevel@tonic-gate 		if (pshot_debug)
30920Sstevel@tonic-gate 			cmn_err(CE_CONT,
30930Sstevel@tonic-gate 			    "pshot%d: %s wait %d second\n",
30940Sstevel@tonic-gate 				ddi_get_instance(parent), devname, n);
30950Sstevel@tonic-gate 		delay(n * drv_usectohz(1000000));
30960Sstevel@tonic-gate 	} else if (strncmp(caddr, "wait", 4) == 0) {
30970Sstevel@tonic-gate 		if (pshot_debug)
30980Sstevel@tonic-gate 			cmn_err(CE_CONT,
30990Sstevel@tonic-gate 			    "pshot%d: %s wait 1 second\n",
31000Sstevel@tonic-gate 			    ddi_get_instance(parent), devname);
31010Sstevel@tonic-gate 		delay(drv_usectohz(1000000));
31020Sstevel@tonic-gate 	}
31030Sstevel@tonic-gate 
31040Sstevel@tonic-gate 	return (NDI_SUCCESS);
31050Sstevel@tonic-gate }
31060Sstevel@tonic-gate 
31070Sstevel@tonic-gate /*
31080Sstevel@tonic-gate  * translate nodetype name to actual value
31090Sstevel@tonic-gate  */
31100Sstevel@tonic-gate static char *
31110Sstevel@tonic-gate pshot_str2nt(char *str)
31120Sstevel@tonic-gate {
31130Sstevel@tonic-gate 	int i;
31140Sstevel@tonic-gate 
31150Sstevel@tonic-gate 	for (i = 0; pshot_nodetypes[i].name; i++) {
31160Sstevel@tonic-gate 		if (strcmp(pshot_nodetypes[i].name, str) == 0)
31170Sstevel@tonic-gate 			return (pshot_nodetypes[i].val);
31180Sstevel@tonic-gate 	}
31190Sstevel@tonic-gate 	return (NULL);
31200Sstevel@tonic-gate }
31210Sstevel@tonic-gate 
31220Sstevel@tonic-gate /*
31230Sstevel@tonic-gate  * grows array pointed to by <dstp>, with <src> data
31240Sstevel@tonic-gate  * <dstlen> = # elements of the original <*dstp>
31250Sstevel@tonic-gate  * <srclen> = # elements of <src>
31260Sstevel@tonic-gate  *
31270Sstevel@tonic-gate  * on success, returns 0 and a pointer to the new array through <dstp> with
31280Sstevel@tonic-gate  * <srclen> + <dstlen> number of elements;
31290Sstevel@tonic-gate  * else returns non-zero
31300Sstevel@tonic-gate  *
31310Sstevel@tonic-gate  * a NULL <*dstp> is OK (a NULL <dstp> is not) and so is a zero <dstlen>
31320Sstevel@tonic-gate  */
31330Sstevel@tonic-gate static int
31340Sstevel@tonic-gate pshot_devices_grow(pshot_device_t **dstp, size_t dstlen,
31350Sstevel@tonic-gate     const pshot_device_t *src, size_t srclen)
31360Sstevel@tonic-gate {
31370Sstevel@tonic-gate 	size_t i;
31380Sstevel@tonic-gate 	pshot_device_t *newdst;
31390Sstevel@tonic-gate 
31400Sstevel@tonic-gate 	newdst = kmem_alloc((srclen + dstlen) * sizeof (*src),
31410Sstevel@tonic-gate 	    KM_SLEEP);
31420Sstevel@tonic-gate 
31430Sstevel@tonic-gate 	/* keep old pointers and dup new ones */
31440Sstevel@tonic-gate 	if (*dstp)
31450Sstevel@tonic-gate 		bcopy(*dstp, newdst, dstlen * sizeof (*src));
31460Sstevel@tonic-gate 	for (i = 0; i < srclen; i++) {
31470Sstevel@tonic-gate 		newdst[i + dstlen].name =
31480Sstevel@tonic-gate 		    i_ddi_strdup(src[i].name, KM_SLEEP);
31490Sstevel@tonic-gate 
31500Sstevel@tonic-gate 		newdst[i + dstlen].nodetype =
31510Sstevel@tonic-gate 		    i_ddi_strdup(src[i].nodetype, KM_SLEEP);
31520Sstevel@tonic-gate 
31530Sstevel@tonic-gate 		newdst[i + dstlen].compat =
31540Sstevel@tonic-gate 		    i_ddi_strdup(src[i].compat, KM_SLEEP);
31550Sstevel@tonic-gate 	}
31560Sstevel@tonic-gate 
31570Sstevel@tonic-gate 	/* do last */
31580Sstevel@tonic-gate 	if (*dstp)
31590Sstevel@tonic-gate 		kmem_free(*dstp, dstlen * sizeof (*src));
31600Sstevel@tonic-gate 	*dstp = newdst;
31610Sstevel@tonic-gate 	return (0);
31620Sstevel@tonic-gate }
31630Sstevel@tonic-gate 
31640Sstevel@tonic-gate /*
31650Sstevel@tonic-gate  * free a pshot_device_t array <dp> with <len> elements
31660Sstevel@tonic-gate  * null pointers within the elements are ok
31670Sstevel@tonic-gate  */
31680Sstevel@tonic-gate static void
31690Sstevel@tonic-gate pshot_devices_free(pshot_device_t *dp, size_t len)
31700Sstevel@tonic-gate {
31710Sstevel@tonic-gate 	size_t i;
31720Sstevel@tonic-gate 
31730Sstevel@tonic-gate 	for (i = 0; i < len; i++) {
31740Sstevel@tonic-gate 		if (dp[i].name)
31750Sstevel@tonic-gate 			kmem_free(dp[i].name, strlen(dp[i].name) + 1);
31760Sstevel@tonic-gate 		if (dp[i].nodetype)
31770Sstevel@tonic-gate 			kmem_free(dp[i].nodetype, strlen(dp[i].nodetype) + 1);
31780Sstevel@tonic-gate 		if (dp[i].compat)
31790Sstevel@tonic-gate 			kmem_free(dp[i].compat, strlen(dp[i].compat) + 1);
31800Sstevel@tonic-gate 	}
31810Sstevel@tonic-gate 	kmem_free(dp, len * sizeof (*dp));
31820Sstevel@tonic-gate }
31830Sstevel@tonic-gate 
31840Sstevel@tonic-gate /*
31850Sstevel@tonic-gate  * returns an array of pshot_device_t parsed from <dip>'s properties
31860Sstevel@tonic-gate  *
31870Sstevel@tonic-gate  * property structure (i.e. pshot.conf) for pshot:
31880Sstevel@tonic-gate  *
31890Sstevel@tonic-gate  * corresponding         |   pshot_device_t array elements
31900Sstevel@tonic-gate  * pshot_device_t        |
31910Sstevel@tonic-gate  * member by prop name   |   [0]            [1]           [2]
31920Sstevel@tonic-gate  * ----------------------|--------------|-------------|-----------------------
31930Sstevel@tonic-gate  * <PSHOT_PROP_DEVNAME>  ="disk",        "tape",       "testdev";
31940Sstevel@tonic-gate  * <PSHOT_PROP_DEVNT>    ="DDI_NT_BLOCK","DDI_NT_TAPE","ddi_testdev_nodetype";
31950Sstevel@tonic-gate  * <PSHOT_PROP_DEVCOMPAT>="testdrv",     "testdrv",    "testdrv";
31960Sstevel@tonic-gate  *
31970Sstevel@tonic-gate  *
31980Sstevel@tonic-gate  * if any of these properties are specified, then:
31990Sstevel@tonic-gate  * - all the members must be specified
32000Sstevel@tonic-gate  * - the number of elements for each string array property must be the same
32010Sstevel@tonic-gate  * - no empty strings allowed
32020Sstevel@tonic-gate  * - nodetypes (PSHOT_PROP_DEVNT) must be the nodetype name as specified in
32030Sstevel@tonic-gate  *   sys/sunddi.h
32040Sstevel@tonic-gate  *
32050Sstevel@tonic-gate  * NOTE: the pshot_nodetypes[] table should be kept in sync with the list
32060Sstevel@tonic-gate  * of ddi nodetypes.  It's not normally critical to always be in sync so
32070Sstevel@tonic-gate  * keeping this up-to-date can usually be done "on-demand".
32080Sstevel@tonic-gate  *
32090Sstevel@tonic-gate  * if <flags> & PSHOT_DEV_ANYNT, then custom nodetype strings are allowed.
32100Sstevel@tonic-gate  * these will be duplicated verbatim
32110Sstevel@tonic-gate  */
32120Sstevel@tonic-gate static pshot_device_t *
32130Sstevel@tonic-gate pshot_devices_from_props(dev_info_t *dip, size_t *lenp, int flags)
32140Sstevel@tonic-gate {
32150Sstevel@tonic-gate 	pshot_device_t *devarr = NULL;
32160Sstevel@tonic-gate 	char **name_arr = NULL, **nt_arr = NULL, **compat_arr = NULL;
32170Sstevel@tonic-gate 	uint_t name_arr_len, nt_arr_len, compat_arr_len;
32180Sstevel@tonic-gate 	uint_t i;
32190Sstevel@tonic-gate 	char *str;
32200Sstevel@tonic-gate 
32210Sstevel@tonic-gate 	if (ddi_prop_lookup_string_array(DDI_DEV_T_ANY, dip, 0,
32220Sstevel@tonic-gate 	    PSHOT_PROP_DEVNAME, &name_arr, &name_arr_len) !=
32230Sstevel@tonic-gate 	    DDI_PROP_SUCCESS)
32240Sstevel@tonic-gate 		name_arr = NULL;
32250Sstevel@tonic-gate 
32260Sstevel@tonic-gate 	if (ddi_prop_lookup_string_array(DDI_DEV_T_ANY, dip, 0,
32270Sstevel@tonic-gate 	    PSHOT_PROP_DEVNT, &nt_arr, &nt_arr_len) !=
32280Sstevel@tonic-gate 	    DDI_PROP_SUCCESS)
32290Sstevel@tonic-gate 		nt_arr = NULL;
32300Sstevel@tonic-gate 
32310Sstevel@tonic-gate 	if (ddi_prop_lookup_string_array(DDI_DEV_T_ANY, dip, 0,
32320Sstevel@tonic-gate 	    PSHOT_PROP_DEVCOMPAT, &compat_arr, &compat_arr_len) !=
32330Sstevel@tonic-gate 	    DDI_PROP_SUCCESS)
32340Sstevel@tonic-gate 		compat_arr = NULL;
32350Sstevel@tonic-gate 
32360Sstevel@tonic-gate 	/*
32370Sstevel@tonic-gate 	 * warn about any incorrect usage, if specified
32380Sstevel@tonic-gate 	 */
32390Sstevel@tonic-gate 	if (!(name_arr || nt_arr || compat_arr))
32400Sstevel@tonic-gate 		return (NULL);
32410Sstevel@tonic-gate 
32420Sstevel@tonic-gate 	if (!(name_arr && nt_arr && compat_arr) ||
32430Sstevel@tonic-gate 	    (name_arr_len != nt_arr_len) ||
32440Sstevel@tonic-gate 	    (name_arr_len != compat_arr_len))
32450Sstevel@tonic-gate 		goto FAIL;
32460Sstevel@tonic-gate 
32470Sstevel@tonic-gate 	for (i = 0; i < name_arr_len; i++) {
32480Sstevel@tonic-gate 		if (*name_arr[i] == '\0' ||
32490Sstevel@tonic-gate 		    *nt_arr[i] == '\0' ||
32500Sstevel@tonic-gate 		    *compat_arr[i] == '\0')
32510Sstevel@tonic-gate 			goto FAIL;
32520Sstevel@tonic-gate 	}
32530Sstevel@tonic-gate 
32540Sstevel@tonic-gate 	devarr = kmem_zalloc(name_arr_len * sizeof (*devarr), KM_SLEEP);
32550Sstevel@tonic-gate 	for (i = 0; i < name_arr_len; i++) {
32560Sstevel@tonic-gate 		devarr[i].name = i_ddi_strdup(name_arr[i], KM_SLEEP);
32570Sstevel@tonic-gate 		devarr[i].compat = i_ddi_strdup(compat_arr[i], KM_SLEEP);
32580Sstevel@tonic-gate 
32590Sstevel@tonic-gate 		if ((str = pshot_str2nt(nt_arr[i])) == NULL)
32600Sstevel@tonic-gate 			if (flags & PSHOT_DEV_ANYNT)
32610Sstevel@tonic-gate 				str = nt_arr[i];
32620Sstevel@tonic-gate 			else
32630Sstevel@tonic-gate 				goto FAIL;
32640Sstevel@tonic-gate 		devarr[i].nodetype = i_ddi_strdup(str, KM_SLEEP);
32650Sstevel@tonic-gate 	}
32660Sstevel@tonic-gate 	ddi_prop_free(name_arr);
32670Sstevel@tonic-gate 	ddi_prop_free(nt_arr);
32680Sstevel@tonic-gate 	ddi_prop_free(compat_arr);
32690Sstevel@tonic-gate 
32700Sstevel@tonic-gate 	/* set <*lenp> ONLY on success */
32710Sstevel@tonic-gate 	*lenp = name_arr_len;
32720Sstevel@tonic-gate 
32730Sstevel@tonic-gate 	return (devarr);
32740Sstevel@tonic-gate 	/*NOTREACHED*/
32750Sstevel@tonic-gate FAIL:
32760Sstevel@tonic-gate 	cmn_err(CE_WARN, "malformed device specification property");
32770Sstevel@tonic-gate 	if (name_arr)
32780Sstevel@tonic-gate 		ddi_prop_free(name_arr);
32790Sstevel@tonic-gate 	if (nt_arr)
32800Sstevel@tonic-gate 		ddi_prop_free(nt_arr);
32810Sstevel@tonic-gate 	if (compat_arr)
32820Sstevel@tonic-gate 		ddi_prop_free(compat_arr);
32830Sstevel@tonic-gate 	if (devarr)
32840Sstevel@tonic-gate 		pshot_devices_free(devarr, name_arr_len);
32850Sstevel@tonic-gate 	return (NULL);
32860Sstevel@tonic-gate }
32870Sstevel@tonic-gate 
32880Sstevel@tonic-gate /*
32890Sstevel@tonic-gate  * if global <pshot_devices> was not set up already (i.e. is NULL):
32900Sstevel@tonic-gate  *	sets up global <pshot_devices> and <pshot_devices_len>,
32910Sstevel@tonic-gate  *	using device properties	from <dip> and global <pshot_stock_devices>.
32920Sstevel@tonic-gate  *	device properties, if any, overrides pshot_stock_devices.
32930Sstevel@tonic-gate  *
32940Sstevel@tonic-gate  * returns 0 on success (or if pshot_devices already set up)
32950Sstevel@tonic-gate  *
32960Sstevel@tonic-gate  * INTERNAL LOCKING: <pshot_devices_lock>
32970Sstevel@tonic-gate  */
32980Sstevel@tonic-gate static int
32990Sstevel@tonic-gate pshot_devices_setup(dev_info_t *dip)
33000Sstevel@tonic-gate {
33010Sstevel@tonic-gate 	pshot_device_t *newdevs = NULL;
33020Sstevel@tonic-gate 	size_t newdevs_len = 0;
33030Sstevel@tonic-gate 	int rv = 0;
33040Sstevel@tonic-gate 
33050Sstevel@tonic-gate 	mutex_enter(&pshot_devices_lock);
33060Sstevel@tonic-gate 	if (pshot_devices != NULL)
33070Sstevel@tonic-gate 		goto FAIL;
33080Sstevel@tonic-gate 
33090Sstevel@tonic-gate 	ASSERT(pshot_devices_len == 0);
33100Sstevel@tonic-gate 
33110Sstevel@tonic-gate 	newdevs = pshot_devices_from_props(dip, &newdevs_len, PSHOT_DEV_ANYNT);
33120Sstevel@tonic-gate 	rv = pshot_devices_grow(&newdevs, newdevs_len, pshot_stock_devices,
33130Sstevel@tonic-gate 	    PSHOT_N_STOCK_DEVICES);
33140Sstevel@tonic-gate 	if (rv != 0) {
33150Sstevel@tonic-gate 		cmn_err(CE_WARN, "pshot_devices_setup: pshot_devices_grow "
33160Sstevel@tonic-gate 		    "failed");
33170Sstevel@tonic-gate 		goto FAIL;
33180Sstevel@tonic-gate 	}
33190Sstevel@tonic-gate 	newdevs_len += PSHOT_N_STOCK_DEVICES;
33200Sstevel@tonic-gate 
33210Sstevel@tonic-gate 	pshot_devices = newdevs;
33220Sstevel@tonic-gate 	pshot_devices_len = newdevs_len;
33230Sstevel@tonic-gate 	rv = 0;
33240Sstevel@tonic-gate FAIL:
33250Sstevel@tonic-gate 	if (rv && newdevs)
33260Sstevel@tonic-gate 		pshot_devices_free(newdevs, newdevs_len);
33270Sstevel@tonic-gate 	mutex_exit(&pshot_devices_lock);
33280Sstevel@tonic-gate 	return (rv);
33290Sstevel@tonic-gate }
33300Sstevel@tonic-gate 
33310Sstevel@tonic-gate 
33320Sstevel@tonic-gate #ifdef NOTNEEDED
33330Sstevel@tonic-gate /* ARGSUSED */
33340Sstevel@tonic-gate static int
33350Sstevel@tonic-gate pshot_probe_family(dev_info_t *self, ddi_probe_method_t probe_how,
33360Sstevel@tonic-gate     dev_info_t **return_dip)
33370Sstevel@tonic-gate {
33380Sstevel@tonic-gate 	char name[64];
33390Sstevel@tonic-gate 	uint_t bus_id;
33400Sstevel@tonic-gate 	dev_info_t *child;
33410Sstevel@tonic-gate 
33420Sstevel@tonic-gate 	for (bus_id = 10; bus_id < 20; bus_id++) {
33430Sstevel@tonic-gate 		(void) sprintf(name, "%d", bus_id);
33440Sstevel@tonic-gate 		if ((ndi_devi_alloc(self, "psramd", DEVI_SID_NODEID,
33450Sstevel@tonic-gate 		    &child)) != NDI_SUCCESS) {
33460Sstevel@tonic-gate 			return (DDI_FAILURE);
33470Sstevel@tonic-gate 		}
33480Sstevel@tonic-gate 
33490Sstevel@tonic-gate 		if (ndi_prop_update_string(DDI_DEV_T_NONE, child,
33500Sstevel@tonic-gate 		    "bus-addr", name) != DDI_PROP_SUCCESS) {
33510Sstevel@tonic-gate 			(void) ndi_devi_free(child);
33520Sstevel@tonic-gate 			if (return_dip != NULL)
33530Sstevel@tonic-gate 				*return_dip = (dev_info_t *)NULL;
33540Sstevel@tonic-gate 			return (DDI_FAILURE);
33550Sstevel@tonic-gate 		}
33560Sstevel@tonic-gate 
33570Sstevel@tonic-gate 		if (ndi_devi_online(child, 0) != NDI_SUCCESS) {
33580Sstevel@tonic-gate 			return (DDI_FAILURE);
33590Sstevel@tonic-gate 		}
33600Sstevel@tonic-gate 	}
33610Sstevel@tonic-gate 	return (DDI_SUCCESS);
33620Sstevel@tonic-gate }
3363*85Scth 
33640Sstevel@tonic-gate static int
33650Sstevel@tonic-gate strtoi(char *str)
33660Sstevel@tonic-gate {
33670Sstevel@tonic-gate 	int c;
33680Sstevel@tonic-gate 	int val;
33690Sstevel@tonic-gate 
33700Sstevel@tonic-gate 	for (val = 0, c = *str++; c >= '0' && c <= '9'; c = *str++) {
33710Sstevel@tonic-gate 		val *= 10;
33720Sstevel@tonic-gate 		val += c - '0';
33730Sstevel@tonic-gate 	}
33740Sstevel@tonic-gate 	return (val);
33750Sstevel@tonic-gate }
33760Sstevel@tonic-gate 
33770Sstevel@tonic-gate struct m_to_reg {
33780Sstevel@tonic-gate 	char	*mc;
33790Sstevel@tonic-gate 	int	n_regs;
33800Sstevel@tonic-gate 	int	regs[3];
33810Sstevel@tonic-gate };
33820Sstevel@tonic-gate 
33830Sstevel@tonic-gate struct m_to_reg m_regspecs[] = {
33840Sstevel@tonic-gate 	{"sun4c", 3, {0xf, 0x6000000, 0x20}},
33850Sstevel@tonic-gate 	{"sun4d", 3, {0xf, 0x6000000, 0x20}},
33860Sstevel@tonic-gate 	{"sun4m", 3, {0xf, 0x6000000, 0x20}},
33870Sstevel@tonic-gate 	{"sun4u", 3, {0xf, 0x6000000, 0x20}},
33880Sstevel@tonic-gate 	{"i86pc", 3, {0xf, 0x6000000, 0x20}},
33890Sstevel@tonic-gate 	{NULL, 0, {0, 0, 0}},
33900Sstevel@tonic-gate };
3391*85Scth #endif
33920Sstevel@tonic-gate 
33930Sstevel@tonic-gate static void
33940Sstevel@tonic-gate pshot_setup_autoattach(dev_info_t *devi)
33950Sstevel@tonic-gate {
33960Sstevel@tonic-gate 	dev_info_t *l1child, *l2child;
33970Sstevel@tonic-gate 	int rv;
33980Sstevel@tonic-gate 
33990Sstevel@tonic-gate 	rv = ndi_devi_alloc(devi, "pshot", DEVI_SID_NODEID, &l1child);
34000Sstevel@tonic-gate 	if (rv == NDI_SUCCESS) {
34010Sstevel@tonic-gate 		(void) ndi_prop_update_string(DDI_DEV_T_NONE, l1child,
34020Sstevel@tonic-gate 		    "bus-addr", "0");
34030Sstevel@tonic-gate 		rv =  ndi_devi_alloc(l1child, "port", DEVI_SID_NODEID,
34040Sstevel@tonic-gate 		    &l2child);
34050Sstevel@tonic-gate 		if (rv == NDI_SUCCESS)
34060Sstevel@tonic-gate 			(void) ndi_prop_update_string(DDI_DEV_T_NONE,
34070Sstevel@tonic-gate 			    l2child, "bus-addr", "99");
34080Sstevel@tonic-gate 	}
34090Sstevel@tonic-gate 
34100Sstevel@tonic-gate 	rv = ndi_devi_alloc(devi, "port", DEVI_SID_NODEID, &l1child);
34110Sstevel@tonic-gate 	if (rv == NDI_SUCCESS)
34120Sstevel@tonic-gate 		(void) ndi_prop_update_string(DDI_DEV_T_NONE, l1child,
34130Sstevel@tonic-gate 		    "bus-addr", "99");
34140Sstevel@tonic-gate 
34150Sstevel@tonic-gate 	rv = ndi_devi_alloc(devi, "gen_drv", DEVI_SID_NODEID, &l1child);
34160Sstevel@tonic-gate 	if (rv == NDI_SUCCESS)
34170Sstevel@tonic-gate 		(void) ndi_prop_update_string(DDI_DEV_T_NONE, l1child,
34180Sstevel@tonic-gate 		    "bus-addr", "99");
34190Sstevel@tonic-gate 
34200Sstevel@tonic-gate 	rv = ndi_devi_alloc(devi, "no_driver", DEVI_SID_NODEID, &l1child);
34210Sstevel@tonic-gate 	if (rv == NDI_SUCCESS)
34220Sstevel@tonic-gate 		(void) ndi_devi_alloc(l1child, "no_driver", DEVI_SID_NODEID,
34230Sstevel@tonic-gate 		    &l2child);
34240Sstevel@tonic-gate }
34250Sstevel@tonic-gate 
34260Sstevel@tonic-gate #ifdef PRUNE_SNUBS
34270Sstevel@tonic-gate 
34280Sstevel@tonic-gate #define	PRUNE_THIS_NODE(d) (((d)->devi_node_name != NULL) && \
34290Sstevel@tonic-gate 	(DEVI_PROM_NODE((d)->devi_nodeid)) && \
34300Sstevel@tonic-gate 	((d)->devi_addr == NULL))
34310Sstevel@tonic-gate /*
34320Sstevel@tonic-gate  * test code to remove OBP nodes that have not attached
34330Sstevel@tonic-gate  */
34340Sstevel@tonic-gate static void
34350Sstevel@tonic-gate prune_snubs(const char *name)
34360Sstevel@tonic-gate {
34370Sstevel@tonic-gate 	struct dev_info *nex_dip, *cdip, *cndip;
34380Sstevel@tonic-gate 	int maj;
34390Sstevel@tonic-gate 	int rv;
34400Sstevel@tonic-gate 
34410Sstevel@tonic-gate 	maj = ddi_name_to_major((char *)name);
34420Sstevel@tonic-gate 	if (maj != -1) {
34430Sstevel@tonic-gate 		nex_dip = (struct dev_info *)devnamesp[maj].dn_head;
34440Sstevel@tonic-gate 		while (nex_dip != NULL) {
34450Sstevel@tonic-gate 			cndip = ddi_get_child(nex_dip);
34460Sstevel@tonic-gate 			while ((cdip = cndip) != NULL) {
34470Sstevel@tonic-gate 				cndip = cdip->devi_sibling;
34480Sstevel@tonic-gate 				if (PRUNE_THIS_NODE(cdip)) {
34490Sstevel@tonic-gate 					cmn_err(CE_NOTE,
34500Sstevel@tonic-gate 					    "parent %s@%s pruning node %s",
34510Sstevel@tonic-gate 					    nex_dip->devi_node_name,
34520Sstevel@tonic-gate 					    nex_dip->devi_addr,
34530Sstevel@tonic-gate 					    cdip->devi_node_name);
34540Sstevel@tonic-gate 					rv = ndi_devi_offline(cdip,
34550Sstevel@tonic-gate 					    NDI_DEVI_REMOVE);
34560Sstevel@tonic-gate 					if (rv != NDI_SUCCESS)
34570Sstevel@tonic-gate 						cmn_err(CE_NOTE,
34580Sstevel@tonic-gate 						    "failed to prune node, "
34590Sstevel@tonic-gate 						    "err %d", rv);
34600Sstevel@tonic-gate 				}
34610Sstevel@tonic-gate 			}
34620Sstevel@tonic-gate 		nex_dip = nex_dip->devi_next;
34630Sstevel@tonic-gate 		}
34640Sstevel@tonic-gate 	}
34650Sstevel@tonic-gate }
34660Sstevel@tonic-gate 
34670Sstevel@tonic-gate #endif /* PRUBE_SNUBS */
34680Sstevel@tonic-gate 
34690Sstevel@tonic-gate #ifdef KERNEL_DEVICE_TREE_WALKER
34700Sstevel@tonic-gate static kthread_id_t pwt;
34710Sstevel@tonic-gate static kmutex_t pwl;
34720Sstevel@tonic-gate static kcondvar_t pwcv;
34730Sstevel@tonic-gate 
34740Sstevel@tonic-gate static void
34750Sstevel@tonic-gate pshot_walk_tree()
34760Sstevel@tonic-gate {
34770Sstevel@tonic-gate 	static int pshot_devnode(dev_info_t *dip, void * arg);
34780Sstevel@tonic-gate 
34790Sstevel@tonic-gate 	dev_info_t *root = ddi_root_node();
34800Sstevel@tonic-gate 	ddi_walk_devs(root, pshot_devnode, NULL);
34810Sstevel@tonic-gate }
34820Sstevel@tonic-gate 
34830Sstevel@tonic-gate static void
34840Sstevel@tonic-gate pshot_walk_thread()
34850Sstevel@tonic-gate {
34860Sstevel@tonic-gate 	static void pshot_timeout(void *arg);
34870Sstevel@tonic-gate 	static kthread_id_t pwt;
34880Sstevel@tonic-gate 
34890Sstevel@tonic-gate 	pwt = curthread;
34900Sstevel@tonic-gate 	mutex_init(&pwl, NULL, MUTEX_DRIVER, NULL);
34910Sstevel@tonic-gate 	cv_init(&pwcv, NULL, CV_DRIVER, NULL);
34920Sstevel@tonic-gate 
34930Sstevel@tonic-gate 	while (1) {
34940Sstevel@tonic-gate 		pshot_walk_tree();
34950Sstevel@tonic-gate 		mutex_enter(&pwl);
34960Sstevel@tonic-gate 		(void) timeout(pshot_timeout, NULL, 5 * drv_usectohz(1000000));
34970Sstevel@tonic-gate 		cv_wait(&pwcv, &pwl);
34980Sstevel@tonic-gate 		mutex_exit(&pwl);
34990Sstevel@tonic-gate 	}
35000Sstevel@tonic-gate }
35010Sstevel@tonic-gate 
35020Sstevel@tonic-gate static void
35030Sstevel@tonic-gate pshot_timeout(void *arg)
35040Sstevel@tonic-gate {
35050Sstevel@tonic-gate 	mutex_enter(&pwl);
35060Sstevel@tonic-gate 	cv_signal(&pwcv);
35070Sstevel@tonic-gate 	mutex_exit(&pwl);
35080Sstevel@tonic-gate }
35090Sstevel@tonic-gate 
35100Sstevel@tonic-gate static int
35110Sstevel@tonic-gate pshot_devnode(dev_info_t *dip, void *arg)
35120Sstevel@tonic-gate {
35130Sstevel@tonic-gate 	dev_info_t *f_dip;
35140Sstevel@tonic-gate 
35150Sstevel@tonic-gate 	if (dip != ddi_root_node()) {
35160Sstevel@tonic-gate 		f_dip = ndi_devi_find((dev_info_t *)DEVI(dip)->devi_parent,
35170Sstevel@tonic-gate 		    DEVI(dip)->devi_node_name, DEVI(dip)->devi_addr);
35180Sstevel@tonic-gate 		if (f_dip != dip) {
35190Sstevel@tonic-gate 			cmn_err(CE_NOTE, "!pshot_devnode: failed lookup"
35200Sstevel@tonic-gate 			"node (%s/%s@%s)\n",
35210Sstevel@tonic-gate 			DEVI(DEVI(dip)->devi_parent)->devi_node_name,
35220Sstevel@tonic-gate 			(DEVI(dip)->devi_node_name ?
35230Sstevel@tonic-gate 				DEVI(dip)->devi_node_name : "NULL"),
35240Sstevel@tonic-gate 			(DEVI(dip)->devi_addr ? DEVI(dip)->devi_addr : "NULL"));
35250Sstevel@tonic-gate 		}
35260Sstevel@tonic-gate 	}
35270Sstevel@tonic-gate 	return (DDI_WALK_CONTINUE);
35280Sstevel@tonic-gate }
35290Sstevel@tonic-gate #endif /* KERNEL_DEVICE_TREE_WALKER */
35300Sstevel@tonic-gate 
35310Sstevel@tonic-gate #ifdef DEBUG
35320Sstevel@tonic-gate static void
35330Sstevel@tonic-gate pshot_event_cb_test(dev_info_t *dip, ddi_eventcookie_t cookie,
35340Sstevel@tonic-gate 	void *arg, void *bus_impldata)
35350Sstevel@tonic-gate {
35360Sstevel@tonic-gate 	pshot_t *softstate = (pshot_t *)arg;
35370Sstevel@tonic-gate 	int event_tag;
35380Sstevel@tonic-gate 
35390Sstevel@tonic-gate 	/* look up the event */
35400Sstevel@tonic-gate 	event_tag = NDI_EVENT_TAG(cookie);
35410Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot_event_cb_test:\n\t"
35420Sstevel@tonic-gate 	    "dip = 0x%p cookie = 0x%p (%s), tag = %d\n\t"
35430Sstevel@tonic-gate 	    "arg = 0x%p bus_impl = 0x%p\n",
35440Sstevel@tonic-gate 	    (void *)dip, (void *)cookie, NDI_EVENT_NAME(cookie),
35450Sstevel@tonic-gate 	    event_tag, (void *)softstate, (void *)bus_impldata);
35460Sstevel@tonic-gate 
35470Sstevel@tonic-gate }
35480Sstevel@tonic-gate 
35490Sstevel@tonic-gate static void
35500Sstevel@tonic-gate pshot_event_test(void *arg)
35510Sstevel@tonic-gate {
35520Sstevel@tonic-gate 	pshot_t *pshot = (pshot_t *)arg;
35530Sstevel@tonic-gate 	ndi_event_hdl_t hdl;
35540Sstevel@tonic-gate 	ndi_event_set_t	events;
35550Sstevel@tonic-gate 	int i, rval;
35560Sstevel@tonic-gate 
35570Sstevel@tonic-gate 	(void) ndi_event_alloc_hdl(pshot->dip, NULL, &hdl, NDI_SLEEP);
35580Sstevel@tonic-gate 
35590Sstevel@tonic-gate 	events.ndi_events_version = NDI_EVENTS_REV1;
35600Sstevel@tonic-gate 	events.ndi_n_events = PSHOT_N_TEST_EVENTS;
35610Sstevel@tonic-gate 	events.ndi_event_defs = pshot_test_events;
35620Sstevel@tonic-gate 
35630Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: binding set of 8 events\n");
35640Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
35650Sstevel@tonic-gate 	rval = ndi_event_bind_set(hdl, &events, NDI_SLEEP);
35660Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_bind_set rval = %d\n", rval);
35670Sstevel@tonic-gate 
35680Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: binding the same set of 8 events\n");
35690Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
35700Sstevel@tonic-gate 	rval = ndi_event_bind_set(hdl, &events, NDI_SLEEP);
35710Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_bind_set rval = %d\n", rval);
35720Sstevel@tonic-gate 
35730Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: unbinding  all events\n");
35740Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
35750Sstevel@tonic-gate 	rval = ndi_event_unbind_set(hdl, &events, NDI_SLEEP);
35760Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_unbind_set rval = %d\n", rval);
35770Sstevel@tonic-gate 
35780Sstevel@tonic-gate 
35790Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: binding one highlevel event\n");
35800Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
35810Sstevel@tonic-gate 	events.ndi_n_events = 1;
35820Sstevel@tonic-gate 	events.ndi_event_defs = pshot_test_events_high;
35830Sstevel@tonic-gate 	rval = ndi_event_bind_set(hdl, &events, NDI_SLEEP);
35840Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_bind_set rval = %d\n", rval);
35850Sstevel@tonic-gate 
35860Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: binding the same set of 8 events\n");
35870Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
35880Sstevel@tonic-gate 	events.ndi_n_events = PSHOT_N_TEST_EVENTS;
35890Sstevel@tonic-gate 	events.ndi_event_defs = pshot_test_events;
35900Sstevel@tonic-gate 	rval = ndi_event_bind_set(hdl, &events, NDI_SLEEP);
35910Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_bind_set rval = %d\n", rval);
35920Sstevel@tonic-gate 
35930Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: unbinding one highlevel event\n");
35940Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
35950Sstevel@tonic-gate 	events.ndi_n_events = 1;
35960Sstevel@tonic-gate 	events.ndi_event_defs = pshot_test_events_high;
35970Sstevel@tonic-gate 	rval = ndi_event_unbind_set(hdl, &events, NDI_SLEEP);
35980Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_bind_set rval = %d\n", rval);
35990Sstevel@tonic-gate 
36000Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: binding one highlevel event\n");
36010Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
36020Sstevel@tonic-gate 	events.ndi_n_events = 1;
36030Sstevel@tonic-gate 	events.ndi_event_defs = pshot_test_events_high;
36040Sstevel@tonic-gate 	rval = ndi_event_bind_set(hdl, &events, NDI_SLEEP);
36050Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_bind_set rval = %d\n", rval);
36060Sstevel@tonic-gate 
36070Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: unbinding one highlevel event\n");
36080Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
36090Sstevel@tonic-gate 	events.ndi_n_events = 1;
36100Sstevel@tonic-gate 	events.ndi_event_defs = pshot_test_events_high;
36110Sstevel@tonic-gate 	rval = ndi_event_unbind_set(hdl, &events, NDI_SLEEP);
36120Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_bind_set rval = %d\n", rval);
36130Sstevel@tonic-gate 
36140Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: binding the same set of 8 events\n");
36150Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
36160Sstevel@tonic-gate 	events.ndi_n_events = PSHOT_N_TEST_EVENTS;
36170Sstevel@tonic-gate 	events.ndi_event_defs = pshot_test_events;
36180Sstevel@tonic-gate 	rval = ndi_event_bind_set(hdl, &events, NDI_SLEEP);
36190Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_bind_set rval = %d\n", rval);
36200Sstevel@tonic-gate 
36210Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: unbinding first 2 events\n");
36220Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
36230Sstevel@tonic-gate 	events.ndi_n_events = 2;
36240Sstevel@tonic-gate 	events.ndi_event_defs = pshot_test_events;
36250Sstevel@tonic-gate 	rval = ndi_event_unbind_set(hdl, &events, NDI_SLEEP);
36260Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_unbind_set rval = %d\n", rval);
36270Sstevel@tonic-gate 
36280Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: unbinding first 2 events again\n");
36290Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
36300Sstevel@tonic-gate 	events.ndi_n_events = 2;
36310Sstevel@tonic-gate 	events.ndi_event_defs = pshot_test_events;
36320Sstevel@tonic-gate 	rval = ndi_event_unbind_set(hdl, &events, NDI_SLEEP);
36330Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_unbind_set rval = %d\n", rval);
36340Sstevel@tonic-gate 
36350Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: unbinding  middle 2 events\n");
36360Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
36370Sstevel@tonic-gate 	events.ndi_n_events = 2;
36380Sstevel@tonic-gate 	events.ndi_event_defs = &pshot_test_events[4];
36390Sstevel@tonic-gate 	rval = ndi_event_unbind_set(hdl, &events, NDI_SLEEP);
36400Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_unbind_set rval = %d\n", rval);
36410Sstevel@tonic-gate 
36420Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: binding those 2 events back\n");
36430Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
36440Sstevel@tonic-gate 	events.ndi_n_events = 2;
36450Sstevel@tonic-gate 	events.ndi_event_defs = &pshot_test_events[4];
36460Sstevel@tonic-gate 	rval = ndi_event_bind_set(hdl, &events, NDI_SLEEP);
36470Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_bind_set rval = %d\n", rval);
36480Sstevel@tonic-gate 
36490Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: unbinding  2 events\n");
36500Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
36510Sstevel@tonic-gate 	events.ndi_n_events = 2;
36520Sstevel@tonic-gate 	events.ndi_event_defs = &pshot_test_events[4];
36530Sstevel@tonic-gate 	rval = ndi_event_unbind_set(hdl, &events, NDI_SLEEP);
36540Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_unbind_set rval = %d\n", rval);
36550Sstevel@tonic-gate 
36560Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: unbinding  all events\n");
36570Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
36580Sstevel@tonic-gate 	events.ndi_n_events = PSHOT_N_TEST_EVENTS;
36590Sstevel@tonic-gate 	events.ndi_event_defs = pshot_test_events;
36600Sstevel@tonic-gate 	rval = ndi_event_unbind_set(hdl, &events, NDI_SLEEP);
36610Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_unbind_set rval = %d\n", rval);
36620Sstevel@tonic-gate 
36630Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: unbinding  1 event\n");
36640Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
36650Sstevel@tonic-gate 	events.ndi_n_events = 1;
36660Sstevel@tonic-gate 	events.ndi_event_defs = &pshot_test_events[2];
36670Sstevel@tonic-gate 	rval = ndi_event_unbind_set(hdl, &events, NDI_SLEEP);
36680Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_unbind_set rval = %d\n", rval);
36690Sstevel@tonic-gate 
36700Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: unbinding  1 event\n");
36710Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
36720Sstevel@tonic-gate 	events.ndi_n_events = 1;
36730Sstevel@tonic-gate 	events.ndi_event_defs = &pshot_test_events[3];
36740Sstevel@tonic-gate 	rval = ndi_event_unbind_set(hdl, &events, NDI_SLEEP);
36750Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_unbind_set rval = %d\n", rval);
36760Sstevel@tonic-gate 
36770Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: unbinding  1 event\n");
36780Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
36790Sstevel@tonic-gate 	events.ndi_n_events = 1;
36800Sstevel@tonic-gate 	events.ndi_event_defs = &pshot_test_events[6];
36810Sstevel@tonic-gate 	rval = ndi_event_unbind_set(hdl, &events, NDI_SLEEP);
36820Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_unbind_set rval = %d\n", rval);
36830Sstevel@tonic-gate 
36840Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: unbinding  1 event\n");
36850Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
36860Sstevel@tonic-gate 	events.ndi_n_events = 1;
36870Sstevel@tonic-gate 	events.ndi_event_defs = &pshot_test_events[7];
36880Sstevel@tonic-gate 	rval = ndi_event_unbind_set(hdl, &events, NDI_SLEEP);
36890Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_unbind_set rval = %d\n", rval);
36900Sstevel@tonic-gate 
36910Sstevel@tonic-gate 	events.ndi_n_events = PSHOT_N_TEST_EVENTS;
36920Sstevel@tonic-gate 	events.ndi_event_defs = pshot_test_events;
36930Sstevel@tonic-gate 
36940Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: binding set of 8 events\n");
36950Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
36960Sstevel@tonic-gate 	rval = ndi_event_bind_set(hdl, &events, NDI_SLEEP);
36970Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: ndi_event_bind_set rval = %d\n", rval);
36980Sstevel@tonic-gate 
36990Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: adding 8 callbacks\n");
37000Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
37010Sstevel@tonic-gate 	for (i = 0; i < 8; i++) {
37020Sstevel@tonic-gate 		rval = ndi_event_add_callback(hdl, pshot->dip,
37030Sstevel@tonic-gate 			ndi_event_tag_to_cookie(hdl,
37040Sstevel@tonic-gate 				pshot_test_events[i].ndi_event_tag),
37050Sstevel@tonic-gate 			pshot_event_cb_test,
37060Sstevel@tonic-gate 			(void *)(uintptr_t)pshot_test_events[i].ndi_event_tag,
37070Sstevel@tonic-gate 			NDI_SLEEP, &pshot->test_callback_cache[i]);
37080Sstevel@tonic-gate 		ASSERT(rval == NDI_SUCCESS);
37090Sstevel@tonic-gate 	}
37100Sstevel@tonic-gate 
37110Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: event callbacks\n");
37120Sstevel@tonic-gate 
37130Sstevel@tonic-gate 	for (i = 10; i < 18; i++) {
37140Sstevel@tonic-gate 		ddi_eventcookie_t cookie = ndi_event_tag_to_cookie(hdl, i);
37150Sstevel@tonic-gate 
37160Sstevel@tonic-gate 		rval = ndi_event_run_callbacks(hdl, pshot->dip, cookie,
37170Sstevel@tonic-gate 		    (void *)hdl);
37180Sstevel@tonic-gate 
37190Sstevel@tonic-gate 		cmn_err(CE_CONT, "pshot: callback, tag=%d rval=%d\n",
37200Sstevel@tonic-gate 			i, rval);
37210Sstevel@tonic-gate 		delay(drv_usectohz(1000000));
37220Sstevel@tonic-gate 	}
37230Sstevel@tonic-gate 
37240Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: redo event callbacks\n");
37250Sstevel@tonic-gate 
37260Sstevel@tonic-gate 	for (i = 10; i < 18; i++) {
37270Sstevel@tonic-gate 		ddi_eventcookie_t cookie = ndi_event_tag_to_cookie(hdl, i);
37280Sstevel@tonic-gate 
37290Sstevel@tonic-gate 		rval = ndi_event_run_callbacks(hdl,
37300Sstevel@tonic-gate 			pshot->dip, cookie, (void *)hdl);
37310Sstevel@tonic-gate 
37320Sstevel@tonic-gate 		cmn_err(CE_CONT, "pshot: callback, tag=%d rval=%d\n",
37330Sstevel@tonic-gate 			i, rval);
37340Sstevel@tonic-gate 		delay(drv_usectohz(1000000));
37350Sstevel@tonic-gate 	}
37360Sstevel@tonic-gate 
37370Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: removing 8 callbacks\n");
37380Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
37390Sstevel@tonic-gate 
37400Sstevel@tonic-gate 	for (i = 0; i < 8; i++) {
37410Sstevel@tonic-gate 		(void) ndi_event_remove_callback(hdl,
37420Sstevel@tonic-gate 		    pshot->test_callback_cache[i]);
37430Sstevel@tonic-gate 
37440Sstevel@tonic-gate 		pshot->test_callback_cache[i] = 0;
37450Sstevel@tonic-gate 	}
37460Sstevel@tonic-gate 
37470Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot: freeing handle with bound set\n");
37480Sstevel@tonic-gate 	delay(drv_usectohz(1000000));
37490Sstevel@tonic-gate 
37500Sstevel@tonic-gate 	rval =	ndi_event_free_hdl(hdl);
37510Sstevel@tonic-gate 
37520Sstevel@tonic-gate 	ASSERT(rval == NDI_SUCCESS);
37530Sstevel@tonic-gate 
37540Sstevel@tonic-gate }
37550Sstevel@tonic-gate 
37560Sstevel@tonic-gate void
37570Sstevel@tonic-gate pshot_event_test_post_one(void *arg)
37580Sstevel@tonic-gate {
37590Sstevel@tonic-gate 	pshot_t	*pshot = (pshot_t *)arg;
37600Sstevel@tonic-gate 	int rval;
37610Sstevel@tonic-gate 	ddi_eventcookie_t cookie;
37620Sstevel@tonic-gate 
37630Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot%d: pshot_event_post_one event\n",
37640Sstevel@tonic-gate 		pshot->instance);
37650Sstevel@tonic-gate 
37660Sstevel@tonic-gate 	if (ddi_get_eventcookie(pshot->dip, PSHOT_EVENT_NAME_BUS_TEST_POST,
37670Sstevel@tonic-gate 	    &cookie) != DDI_SUCCESS) {
37680Sstevel@tonic-gate 		cmn_err(CE_NOTE, "pshot_bus_test_post cookie not found");
37690Sstevel@tonic-gate 		return;
37700Sstevel@tonic-gate 	}
37710Sstevel@tonic-gate 
37720Sstevel@tonic-gate 	rval = ndi_post_event(pshot->dip, pshot->dip, cookie, NULL);
37730Sstevel@tonic-gate 
37740Sstevel@tonic-gate 	cmn_err(CE_CONT, "pshot%d: pshot_event_post_one rval=%d\n",
37750Sstevel@tonic-gate 		pshot->instance, rval);
37760Sstevel@tonic-gate 
37770Sstevel@tonic-gate 	(void) timeout(pshot_event_test_post_one, (void *)pshot,
37780Sstevel@tonic-gate 		pshot->instance * drv_usectohz(60000000));
37790Sstevel@tonic-gate 
37800Sstevel@tonic-gate }
37810Sstevel@tonic-gate #endif /* DEBUG */
3782