xref: /illumos-gate/usr/src/uts/common/io/scsi/adapters/pmcs/pmcs_attach.c (revision 145e0143b4896d03ce53b1af6787afa1a7e73959)
14c06356bSdh /*
24c06356bSdh  * CDDL HEADER START
34c06356bSdh  *
44c06356bSdh  * The contents of this file are subject to the terms of the
54c06356bSdh  * Common Development and Distribution License (the "License").
64c06356bSdh  * You may not use this file except in compliance with the License.
74c06356bSdh  *
84c06356bSdh  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
94c06356bSdh  * or http://www.opensolaris.org/os/licensing.
104c06356bSdh  * See the License for the specific language governing permissions
114c06356bSdh  * and limitations under the License.
124c06356bSdh  *
134c06356bSdh  * When distributing Covered Code, include this CDDL HEADER in each
144c06356bSdh  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
154c06356bSdh  * If applicable, add the following below this CDDL HEADER, with the
164c06356bSdh  * fields enclosed by brackets "[]" replaced with your own identifying
174c06356bSdh  * information: Portions Copyright [yyyy] [name of copyright owner]
184c06356bSdh  *
194c06356bSdh  * CDDL HEADER END
204c06356bSdh  *
214c06356bSdh  *
224c06356bSdh  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
234c06356bSdh  * Use is subject to license terms.
244c06356bSdh  */
254c06356bSdh #include <sys/scsi/adapters/pmcs/pmcs.h>
264c06356bSdh 
2747b47c8cSdh #define	PMCS_DRIVER_VERSION	"pmcs HBA device driver"
284c06356bSdh 
294c06356bSdh static	char	*pmcs_driver_rev = PMCS_DRIVER_VERSION;
304c06356bSdh 
314c06356bSdh /*
324c06356bSdh  * Non-DDI Compliant stuff
334c06356bSdh  */
344c06356bSdh extern char hw_serial[];
354c06356bSdh 
364c06356bSdh /*
374c06356bSdh  * Global driver data
384c06356bSdh  */
394c06356bSdh void *pmcs_softc_state = NULL;
404c06356bSdh void *pmcs_iport_softstate = NULL;
414c06356bSdh 
424c06356bSdh /*
434c06356bSdh  * Tracing and Logging info
444c06356bSdh  */
454c06356bSdh pmcs_tbuf_t *pmcs_tbuf = NULL;
464c06356bSdh uint32_t pmcs_tbuf_num_elems = 0;
474c06356bSdh pmcs_tbuf_t *pmcs_tbuf_ptr;
484c06356bSdh uint32_t pmcs_tbuf_idx = 0;
494c06356bSdh boolean_t pmcs_tbuf_wrap = B_FALSE;
504c06356bSdh static kmutex_t pmcs_trace_lock;
514c06356bSdh 
524c06356bSdh /*
534c06356bSdh  * If pmcs_force_syslog value is non-zero, all messages put in the trace log
544c06356bSdh  * will also be sent to system log.
554c06356bSdh  */
564c06356bSdh int pmcs_force_syslog = 0;
574c06356bSdh int pmcs_console = 0;
584c06356bSdh 
594c06356bSdh /*
604c06356bSdh  * External References
614c06356bSdh  */
624c06356bSdh extern int ncpus_online;
634c06356bSdh 
644c06356bSdh /*
654c06356bSdh  * Local static data
664c06356bSdh  */
674c06356bSdh static int fwlog_level = 3;
684c06356bSdh static int physpeed = PHY_LINK_ALL;
694c06356bSdh static int phymode = PHY_LM_AUTO;
704c06356bSdh static int block_mask = 0;
714c06356bSdh static int phymap_usec = 3 * MICROSEC;
724c06356bSdh static int iportmap_usec = 2 * MICROSEC;
734c06356bSdh 
744c06356bSdh #ifdef DEBUG
754c06356bSdh static int debug_mask = 1;
764c06356bSdh #else
774c06356bSdh static int debug_mask = 0;
784c06356bSdh #endif
794c06356bSdh 
804c06356bSdh #ifdef DISABLE_MSIX
814c06356bSdh static int disable_msix = 1;
824c06356bSdh #else
834c06356bSdh static int disable_msix = 0;
844c06356bSdh #endif
854c06356bSdh 
864c06356bSdh #ifdef DISABLE_MSI
874c06356bSdh static int disable_msi = 1;
884c06356bSdh #else
894c06356bSdh static int disable_msi = 0;
904c06356bSdh #endif
914c06356bSdh 
924c06356bSdh static uint16_t maxqdepth = 0xfffe;
934c06356bSdh 
944c06356bSdh /*
954c06356bSdh  * Local prototypes
964c06356bSdh  */
974c06356bSdh static int pmcs_attach(dev_info_t *, ddi_attach_cmd_t);
984c06356bSdh static int pmcs_detach(dev_info_t *, ddi_detach_cmd_t);
994c06356bSdh static int pmcs_unattach(pmcs_hw_t *);
1004c06356bSdh static int pmcs_iport_unattach(pmcs_iport_t *);
1014c06356bSdh static int pmcs_add_more_chunks(pmcs_hw_t *, unsigned long);
1024c06356bSdh static void pmcs_watchdog(void *);
1034c06356bSdh static int pmcs_setup_intr(pmcs_hw_t *);
1044c06356bSdh static int pmcs_teardown_intr(pmcs_hw_t *);
1054c06356bSdh 
1064c06356bSdh static uint_t pmcs_nonio_ix(caddr_t, caddr_t);
1074c06356bSdh static uint_t pmcs_general_ix(caddr_t, caddr_t);
1084c06356bSdh static uint_t pmcs_event_ix(caddr_t, caddr_t);
1094c06356bSdh static uint_t pmcs_iodone_ix(caddr_t, caddr_t);
1104c06356bSdh static uint_t pmcs_fatal_ix(caddr_t, caddr_t);
1114c06356bSdh static uint_t pmcs_all_intr(caddr_t, caddr_t);
1124c06356bSdh static int pmcs_quiesce(dev_info_t *dip);
1134c06356bSdh static boolean_t pmcs_fabricate_wwid(pmcs_hw_t *);
1144c06356bSdh 
1154c06356bSdh static void pmcs_create_phy_stats(pmcs_iport_t *);
1164c06356bSdh int pmcs_update_phy_stats(kstat_t *, int);
1174c06356bSdh static void pmcs_destroy_phy_stats(pmcs_iport_t *);
1184c06356bSdh 
1194c06356bSdh static void pmcs_fm_fini(pmcs_hw_t *pwp);
1204c06356bSdh static void pmcs_fm_init(pmcs_hw_t *pwp);
1214c06356bSdh static int pmcs_fm_error_cb(dev_info_t *dip,
1224c06356bSdh     ddi_fm_error_t *err, const void *impl_data);
1234c06356bSdh 
1244c06356bSdh /*
1254c06356bSdh  * Local configuration data
1264c06356bSdh  */
1274c06356bSdh static struct dev_ops pmcs_ops = {
1284c06356bSdh 	DEVO_REV,		/* devo_rev, */
1294c06356bSdh 	0,			/* refcnt */
1304c06356bSdh 	ddi_no_info,		/* info */
1314c06356bSdh 	nulldev,		/* identify */
1324c06356bSdh 	nulldev,		/* probe */
1334c06356bSdh 	pmcs_attach,		/* attach */
1344c06356bSdh 	pmcs_detach,		/* detach */
1354c06356bSdh 	nodev,			/* reset */
1364c06356bSdh 	NULL,			/* driver operations */
1374c06356bSdh 	NULL,			/* bus operations */
1384c06356bSdh 	ddi_power,		/* power management */
1394c06356bSdh 	pmcs_quiesce		/* quiesce */
1404c06356bSdh };
1414c06356bSdh 
1424c06356bSdh static struct modldrv modldrv = {
1434c06356bSdh 	&mod_driverops,
1444c06356bSdh 	PMCS_DRIVER_VERSION,
1454c06356bSdh 	&pmcs_ops,	/* driver ops */
1464c06356bSdh };
1474c06356bSdh static struct modlinkage modlinkage = {
1484c06356bSdh 	MODREV_1, &modldrv, NULL
1494c06356bSdh };
1504c06356bSdh 
1514c06356bSdh const ddi_dma_attr_t pmcs_dattr = {
1524c06356bSdh 	DMA_ATTR_V0,			/* dma_attr version	*/
1534c06356bSdh 	0x0000000000000000ull,		/* dma_attr_addr_lo	*/
1544c06356bSdh 	0xFFFFFFFFFFFFFFFFull,		/* dma_attr_addr_hi	*/
1554c06356bSdh 	0x00000000FFFFFFFFull,		/* dma_attr_count_max	*/
1564c06356bSdh 	0x0000000000000001ull,		/* dma_attr_align	*/
1574c06356bSdh 	0x00000078,			/* dma_attr_burstsizes	*/
1584c06356bSdh 	0x00000001,			/* dma_attr_minxfer	*/
1594c06356bSdh 	0x00000000FFFFFFFFull,		/* dma_attr_maxxfer	*/
1604c06356bSdh 	0x00000000FFFFFFFFull,		/* dma_attr_seg		*/
1614c06356bSdh 	1,				/* dma_attr_sgllen 	*/
1624c06356bSdh 	512,				/* dma_attr_granular 	*/
1634c06356bSdh 	0				/* dma_attr_flags 	*/
1644c06356bSdh };
1654c06356bSdh 
1664c06356bSdh static ddi_device_acc_attr_t rattr = {
1674c06356bSdh 	DDI_DEVICE_ATTR_V0,
1684c06356bSdh 	DDI_STRUCTURE_LE_ACC,
1694c06356bSdh 	DDI_STRICTORDER_ACC,
1704c06356bSdh 	DDI_DEFAULT_ACC
1714c06356bSdh };
1724c06356bSdh 
1734c06356bSdh 
1744c06356bSdh /*
1754c06356bSdh  * Attach/Detach functions
1764c06356bSdh  */
1774c06356bSdh 
1784c06356bSdh int
1794c06356bSdh _init(void)
1804c06356bSdh {
1814c06356bSdh 	int ret;
1824c06356bSdh 
1834c06356bSdh 	ret = ddi_soft_state_init(&pmcs_softc_state, sizeof (pmcs_hw_t), 1);
1844c06356bSdh 	if (ret != 0) {
1854c06356bSdh 		cmn_err(CE_WARN, "?soft state init failed for pmcs");
1864c06356bSdh 		return (ret);
1874c06356bSdh 	}
1884c06356bSdh 
1894c06356bSdh 	if ((ret = scsi_hba_init(&modlinkage)) != 0) {
1904c06356bSdh 		cmn_err(CE_WARN, "?scsi_hba_init failed for pmcs");
1914c06356bSdh 		ddi_soft_state_fini(&pmcs_softc_state);
1924c06356bSdh 		return (ret);
1934c06356bSdh 	}
1944c06356bSdh 
1954c06356bSdh 	/*
1964c06356bSdh 	 * Allocate soft state for iports
1974c06356bSdh 	 */
1984c06356bSdh 	ret = ddi_soft_state_init(&pmcs_iport_softstate,
1994c06356bSdh 	    sizeof (pmcs_iport_t), 2);
2004c06356bSdh 	if (ret != 0) {
2014c06356bSdh 		cmn_err(CE_WARN, "?iport soft state init failed for pmcs");
2024c06356bSdh 		ddi_soft_state_fini(&pmcs_softc_state);
2034c06356bSdh 		return (ret);
2044c06356bSdh 	}
2054c06356bSdh 
2064c06356bSdh 	ret = mod_install(&modlinkage);
2074c06356bSdh 	if (ret != 0) {
2084c06356bSdh 		cmn_err(CE_WARN, "?mod_install failed for pmcs (%d)", ret);
2094c06356bSdh 		scsi_hba_fini(&modlinkage);
2104c06356bSdh 		ddi_soft_state_fini(&pmcs_iport_softstate);
2114c06356bSdh 		ddi_soft_state_fini(&pmcs_softc_state);
2124c06356bSdh 		return (ret);
2134c06356bSdh 	}
2144c06356bSdh 
2154c06356bSdh 	/* Initialize the global trace lock */
2164c06356bSdh 	mutex_init(&pmcs_trace_lock, NULL, MUTEX_DRIVER, NULL);
2174c06356bSdh 
2184c06356bSdh 	return (0);
2194c06356bSdh }
2204c06356bSdh 
2214c06356bSdh int
2224c06356bSdh _fini(void)
2234c06356bSdh {
2244c06356bSdh 	int ret;
2254c06356bSdh 	if ((ret = mod_remove(&modlinkage)) != 0) {
2264c06356bSdh 		return (ret);
2274c06356bSdh 	}
2284c06356bSdh 	scsi_hba_fini(&modlinkage);
2294c06356bSdh 
2304c06356bSdh 	/* Free pmcs log buffer and destroy the global lock */
2314c06356bSdh 	if (pmcs_tbuf) {
2324c06356bSdh 		kmem_free(pmcs_tbuf,
2334c06356bSdh 		    pmcs_tbuf_num_elems * sizeof (pmcs_tbuf_t));
2344c06356bSdh 		pmcs_tbuf = NULL;
2354c06356bSdh 	}
2364c06356bSdh 	mutex_destroy(&pmcs_trace_lock);
2374c06356bSdh 
2384c06356bSdh 	ddi_soft_state_fini(&pmcs_iport_softstate);
2394c06356bSdh 	ddi_soft_state_fini(&pmcs_softc_state);
2404c06356bSdh 	return (0);
2414c06356bSdh }
2424c06356bSdh 
2434c06356bSdh int
2444c06356bSdh _info(struct modinfo *modinfop)
2454c06356bSdh {
2464c06356bSdh 	return (mod_info(&modlinkage, modinfop));
2474c06356bSdh }
2484c06356bSdh 
2494c06356bSdh static int
2504c06356bSdh pmcs_iport_attach(dev_info_t *dip)
2514c06356bSdh {
2524c06356bSdh 	pmcs_iport_t		*iport;
2534c06356bSdh 	pmcs_hw_t		*pwp;
2544c06356bSdh 	scsi_hba_tran_t		*tran;
2554c06356bSdh 	void			*ua_priv = NULL;
2564c06356bSdh 	char			*iport_ua;
2574c06356bSdh 	char			*init_port;
2584c06356bSdh 	int			hba_inst;
2594c06356bSdh 	int			inst;
2604c06356bSdh 
2614c06356bSdh 	hba_inst = ddi_get_instance(ddi_get_parent(dip));
2624c06356bSdh 	inst = ddi_get_instance(dip);
2634c06356bSdh 
2644c06356bSdh 	pwp = ddi_get_soft_state(pmcs_softc_state, hba_inst);
2654c06356bSdh 	if (pwp == NULL) {
266c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
2674c06356bSdh 		    "%s: iport%d attach invoked with NULL parent (HBA) node)",
2684c06356bSdh 		    __func__, inst);
2694c06356bSdh 		return (DDI_FAILURE);
2704c06356bSdh 	}
2714c06356bSdh 
2724c06356bSdh 	if ((pwp->state == STATE_UNPROBING) || (pwp->state == STATE_DEAD)) {
2734c06356bSdh 		return (DDI_FAILURE);
2744c06356bSdh 	}
2754c06356bSdh 
2764c06356bSdh 	if ((iport_ua = scsi_hba_iport_unit_address(dip)) == NULL) {
277c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
2784c06356bSdh 		    "%s: invoked with NULL unit address, inst (%d)",
2794c06356bSdh 		    __func__, inst);
2804c06356bSdh 		return (DDI_FAILURE);
2814c06356bSdh 	}
2824c06356bSdh 
2834c06356bSdh 	if (ddi_soft_state_zalloc(pmcs_iport_softstate, inst) != DDI_SUCCESS) {
284c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
2854c06356bSdh 		    "Failed to alloc soft state for iport %d", inst);
2864c06356bSdh 		return (DDI_FAILURE);
2874c06356bSdh 	}
2884c06356bSdh 
2894c06356bSdh 	iport = ddi_get_soft_state(pmcs_iport_softstate, inst);
2904c06356bSdh 	if (iport == NULL) {
291c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
2924c06356bSdh 		    "cannot get iport soft state");
2934c06356bSdh 		goto iport_attach_fail1;
2944c06356bSdh 	}
2954c06356bSdh 
2964c06356bSdh 	mutex_init(&iport->lock, NULL, MUTEX_DRIVER,
2974c06356bSdh 	    DDI_INTR_PRI(pwp->intr_pri));
2984c06356bSdh 	cv_init(&iport->refcnt_cv, NULL, CV_DEFAULT, NULL);
2994c06356bSdh 	mutex_init(&iport->refcnt_lock, NULL, MUTEX_DRIVER,
3004c06356bSdh 	    DDI_INTR_PRI(pwp->intr_pri));
3014c06356bSdh 
3024c06356bSdh 	/* Set some data on the iport handle */
3034c06356bSdh 	iport->dip = dip;
3044c06356bSdh 	iport->pwp = pwp;
3054c06356bSdh 
3064c06356bSdh 	/* Dup the UA into the iport handle */
3074c06356bSdh 	iport->ua = strdup(iport_ua);
3084c06356bSdh 
3094c06356bSdh 	tran = (scsi_hba_tran_t *)ddi_get_driver_private(dip);
3104c06356bSdh 	tran->tran_hba_private = iport;
3114c06356bSdh 
3124c06356bSdh 	list_create(&iport->phys, sizeof (pmcs_phy_t),
3134c06356bSdh 	    offsetof(pmcs_phy_t, list_node));
3144c06356bSdh 
3154c06356bSdh 	/*
3164c06356bSdh 	 * If our unit address is active in the phymap, configure our
3174c06356bSdh 	 * iport's phylist.
3184c06356bSdh 	 */
3194c06356bSdh 	mutex_enter(&iport->lock);
3204c06356bSdh 	ua_priv = sas_phymap_lookup_uapriv(pwp->hss_phymap, iport->ua);
3214c06356bSdh 	if (ua_priv) {
3224c06356bSdh 		/* Non-NULL private data indicates the unit address is active */
3234c06356bSdh 		iport->ua_state = UA_ACTIVE;
3244c06356bSdh 		if (pmcs_iport_configure_phys(iport) != DDI_SUCCESS) {
325c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG_CONFIG, NULL, NULL,
326c3bc407cSdh 			    "%s: failed to "
3274c06356bSdh 			    "configure phys on iport handle (0x%p), "
3284c06356bSdh 			    " unit address [%s]", __func__,
3294c06356bSdh 			    (void *)iport, iport_ua);
3304c06356bSdh 			mutex_exit(&iport->lock);
3314c06356bSdh 			goto iport_attach_fail2;
3324c06356bSdh 		}
3334c06356bSdh 	} else {
3344c06356bSdh 		iport->ua_state = UA_INACTIVE;
3354c06356bSdh 	}
3364c06356bSdh 	mutex_exit(&iport->lock);
3374c06356bSdh 
3384c06356bSdh 	/* Allocate string-based soft state pool for targets */
3394c06356bSdh 	iport->tgt_sstate = NULL;
3404c06356bSdh 	if (ddi_soft_state_bystr_init(&iport->tgt_sstate,
3414c06356bSdh 	    sizeof (pmcs_xscsi_t), PMCS_TGT_SSTATE_SZ) != 0) {
342c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
3434c06356bSdh 		    "cannot get iport tgt soft state");
3444c06356bSdh 		goto iport_attach_fail2;
3454c06356bSdh 	}
3464c06356bSdh 
3474c06356bSdh 	/* Create this iport's target map */
3484c06356bSdh 	if (pmcs_iport_tgtmap_create(iport) == B_FALSE) {
349c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
3504c06356bSdh 		    "Failed to create tgtmap on iport %d", inst);
3514c06356bSdh 		goto iport_attach_fail3;
3524c06356bSdh 	}
3534c06356bSdh 
3544c06356bSdh 	/* Set up the 'initiator-port' DDI property on this iport */
3554c06356bSdh 	init_port = kmem_zalloc(PMCS_MAX_UA_SIZE, KM_SLEEP);
3564c06356bSdh 	if (pwp->separate_ports) {
357c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
358c3bc407cSdh 		    "%s: separate ports not supported", __func__);
3594c06356bSdh 	} else {
3604c06356bSdh 		/* Set initiator-port value to the HBA's base WWN */
3614c06356bSdh 		(void) scsi_wwn_to_wwnstr(pwp->sas_wwns[0], 1,
3624c06356bSdh 		    init_port);
3634c06356bSdh 	}
364*145e0143Sdh 
365*145e0143Sdh 	mutex_enter(&iport->lock);
3664c06356bSdh 	pmcs_smhba_add_iport_prop(iport, DATA_TYPE_STRING,
3674c06356bSdh 	    SCSI_ADDR_PROP_INITIATOR_PORT, init_port);
3684c06356bSdh 	kmem_free(init_port, PMCS_MAX_UA_SIZE);
3694c06356bSdh 
3704c06356bSdh 	/* Set up a 'num-phys' DDI property for the iport node */
3714c06356bSdh 	pmcs_smhba_add_iport_prop(iport, DATA_TYPE_INT32, PMCS_NUM_PHYS,
3724c06356bSdh 	    &iport->nphy);
373*145e0143Sdh 	mutex_exit(&iport->lock);
3744c06356bSdh 
3754c06356bSdh 	/* Create kstats for each of the phys in this port */
3764c06356bSdh 	pmcs_create_phy_stats(iport);
3774c06356bSdh 
3784c06356bSdh 	/*
3794c06356bSdh 	 * Insert this iport handle into our list and set
3804c06356bSdh 	 * iports_attached on the HBA node.
3814c06356bSdh 	 */
3824c06356bSdh 	rw_enter(&pwp->iports_lock, RW_WRITER);
3834c06356bSdh 	ASSERT(!list_link_active(&iport->list_node));
3844c06356bSdh 	list_insert_tail(&pwp->iports, iport);
3854c06356bSdh 	pwp->iports_attached = 1;
3864c06356bSdh 	pwp->num_iports++;
3874c06356bSdh 	rw_exit(&pwp->iports_lock);
3884c06356bSdh 
389c3bc407cSdh 	pmcs_prt(pwp, PMCS_PRT_DEBUG_IPORT, NULL, NULL,
390c3bc407cSdh 	    "iport%d attached", inst);
3914c06356bSdh 	ddi_report_dev(dip);
3924c06356bSdh 	return (DDI_SUCCESS);
3934c06356bSdh 
3944c06356bSdh 	/* teardown and fail */
3954c06356bSdh iport_attach_fail3:
3964c06356bSdh 	ddi_soft_state_bystr_fini(&iport->tgt_sstate);
3974c06356bSdh iport_attach_fail2:
3984c06356bSdh 	list_destroy(&iport->phys);
3994c06356bSdh 	strfree(iport->ua);
4004c06356bSdh 	mutex_destroy(&iport->refcnt_lock);
4014c06356bSdh 	cv_destroy(&iport->refcnt_cv);
4024c06356bSdh 	mutex_destroy(&iport->lock);
4034c06356bSdh iport_attach_fail1:
4044c06356bSdh 	ddi_soft_state_free(pmcs_iport_softstate, inst);
4054c06356bSdh 	return (DDI_FAILURE);
4064c06356bSdh }
4074c06356bSdh 
4084c06356bSdh static int
4094c06356bSdh pmcs_attach(dev_info_t *dip, ddi_attach_cmd_t cmd)
4104c06356bSdh {
4114c06356bSdh 	scsi_hba_tran_t *tran;
4124c06356bSdh 	char chiprev, *fwsupport, hw_rev[24], fw_rev[24];
4134c06356bSdh 	off_t set3size;
4144c06356bSdh 	int inst, i;
4154c06356bSdh 	int sm_hba = 1;
4164c06356bSdh 	int protocol = 0;
4174c06356bSdh 	int num_phys = 0;
4184c06356bSdh 	pmcs_hw_t *pwp;
4194c06356bSdh 	pmcs_phy_t *phyp;
4204c06356bSdh 	uint32_t num_threads;
4214c06356bSdh 	char buf[64];
4224c06356bSdh 
4234c06356bSdh 	switch (cmd) {
4244c06356bSdh 	case DDI_ATTACH:
4254c06356bSdh 		break;
4264c06356bSdh 
4274c06356bSdh 	case DDI_PM_RESUME:
4284c06356bSdh 	case DDI_RESUME:
4294c06356bSdh 		tran = (scsi_hba_tran_t *)ddi_get_driver_private(dip);
4304c06356bSdh 		if (!tran) {
4314c06356bSdh 			return (DDI_FAILURE);
4324c06356bSdh 		}
4334c06356bSdh 		/* No DDI_?_RESUME on iport nodes */
4344c06356bSdh 		if (scsi_hba_iport_unit_address(dip) != NULL) {
4354c06356bSdh 			return (DDI_SUCCESS);
4364c06356bSdh 		}
4374c06356bSdh 		pwp = TRAN2PMC(tran);
4384c06356bSdh 		if (pwp == NULL) {
4394c06356bSdh 			return (DDI_FAILURE);
4404c06356bSdh 		}
4414c06356bSdh 
4424c06356bSdh 		mutex_enter(&pwp->lock);
4434c06356bSdh 		pwp->suspended = 0;
4444c06356bSdh 		if (pwp->tq) {
4454c06356bSdh 			ddi_taskq_resume(pwp->tq);
4464c06356bSdh 		}
4474c06356bSdh 		mutex_exit(&pwp->lock);
4484c06356bSdh 		return (DDI_SUCCESS);
4494c06356bSdh 
4504c06356bSdh 	default:
4514c06356bSdh 		return (DDI_FAILURE);
4524c06356bSdh 	}
4534c06356bSdh 
4544c06356bSdh 	/*
4554c06356bSdh 	 * If this is an iport node, invoke iport attach.
4564c06356bSdh 	 */
4574c06356bSdh 	if (scsi_hba_iport_unit_address(dip) != NULL) {
4584c06356bSdh 		return (pmcs_iport_attach(dip));
4594c06356bSdh 	}
4604c06356bSdh 
4614c06356bSdh 	/*
4624c06356bSdh 	 * From here on is attach for the HBA node
4634c06356bSdh 	 */
4644c06356bSdh 
4654c06356bSdh #ifdef	DEBUG
4664c06356bSdh 	/*
4674c06356bSdh 	 * Check to see if this unit is to be disabled.  We can't disable
4684c06356bSdh 	 * on a per-iport node.  It's either the entire HBA or nothing.
4694c06356bSdh 	 */
4704c06356bSdh 	(void) snprintf(buf, sizeof (buf),
4714c06356bSdh 	    "disable-instance-%d", ddi_get_instance(dip));
4724c06356bSdh 	if (ddi_prop_get_int(DDI_DEV_T_ANY, dip,
4734c06356bSdh 	    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, buf, 0)) {
4744c06356bSdh 		cmn_err(CE_NOTE, "pmcs%d: disabled by configuration",
4754c06356bSdh 		    ddi_get_instance(dip));
4764c06356bSdh 		return (DDI_FAILURE);
4774c06356bSdh 	}
4784c06356bSdh #endif
4794c06356bSdh 
4804c06356bSdh 	/*
4814c06356bSdh 	 * Allocate softstate
4824c06356bSdh 	 */
4834c06356bSdh 	inst = ddi_get_instance(dip);
4844c06356bSdh 	if (ddi_soft_state_zalloc(pmcs_softc_state, inst) != DDI_SUCCESS) {
4854c06356bSdh 		cmn_err(CE_WARN, "pmcs%d: Failed to alloc soft state", inst);
4864c06356bSdh 		return (DDI_FAILURE);
4874c06356bSdh 	}
4884c06356bSdh 
4894c06356bSdh 	pwp = ddi_get_soft_state(pmcs_softc_state, inst);
4904c06356bSdh 	if (pwp == NULL) {
4914c06356bSdh 		cmn_err(CE_WARN, "pmcs%d: cannot get soft state", inst);
4924c06356bSdh 		ddi_soft_state_free(pmcs_softc_state, inst);
4934c06356bSdh 		return (DDI_FAILURE);
4944c06356bSdh 	}
4954c06356bSdh 	pwp->dip = dip;
4964c06356bSdh 	STAILQ_INIT(&pwp->dq);
4974c06356bSdh 	STAILQ_INIT(&pwp->cq);
4984c06356bSdh 	STAILQ_INIT(&pwp->wf);
4994c06356bSdh 	STAILQ_INIT(&pwp->pf);
5004c06356bSdh 	/*
5014c06356bSdh 	 * Create the list for iports
5024c06356bSdh 	 */
5034c06356bSdh 	list_create(&pwp->iports, sizeof (pmcs_iport_t),
5044c06356bSdh 	    offsetof(pmcs_iport_t, list_node));
5054c06356bSdh 
5064c06356bSdh 	pwp->state = STATE_PROBING;
5074c06356bSdh 
5084c06356bSdh 	/*
5094c06356bSdh 	 * Get driver.conf properties
5104c06356bSdh 	 */
5114c06356bSdh 	pwp->debug_mask = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
5124c06356bSdh 	    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "pmcs-debug-mask",
5134c06356bSdh 	    debug_mask);
5144c06356bSdh 	pwp->phyid_block_mask = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
5154c06356bSdh 	    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "pmcs-phyid-block-mask",
5164c06356bSdh 	    block_mask);
5174c06356bSdh 	pwp->physpeed = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
5184c06356bSdh 	    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "pmcs-physpeed", physpeed);
5194c06356bSdh 	pwp->phymode = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
5204c06356bSdh 	    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "pmcs-phymode", phymode);
5214c06356bSdh 	pwp->fwlog = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
5224c06356bSdh 	    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "pmcs-fwlog", fwlog_level);
5234c06356bSdh 	if (pwp->fwlog > PMCS_FWLOG_MAX) {
5244c06356bSdh 		pwp->fwlog = PMCS_FWLOG_MAX;
5254c06356bSdh 	}
5264c06356bSdh 
5274c06356bSdh 	mutex_enter(&pmcs_trace_lock);
5284c06356bSdh 	if (pmcs_tbuf == NULL) {
5294c06356bSdh 		/* Allocate trace buffer */
5304c06356bSdh 		pmcs_tbuf_num_elems = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
5314c06356bSdh 		    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "pmcs-tbuf-num-elems",
5324c06356bSdh 		    PMCS_TBUF_NUM_ELEMS_DEF);
5334c06356bSdh 		if ((pmcs_tbuf_num_elems == DDI_PROP_NOT_FOUND) ||
5344c06356bSdh 		    (pmcs_tbuf_num_elems == 0)) {
5354c06356bSdh 			pmcs_tbuf_num_elems = PMCS_TBUF_NUM_ELEMS_DEF;
5364c06356bSdh 		}
5374c06356bSdh 
5384c06356bSdh 		pmcs_tbuf = kmem_zalloc(pmcs_tbuf_num_elems *
5394c06356bSdh 		    sizeof (pmcs_tbuf_t), KM_SLEEP);
5404c06356bSdh 		pmcs_tbuf_ptr = pmcs_tbuf;
5414c06356bSdh 		pmcs_tbuf_idx = 0;
5424c06356bSdh 	}
5434c06356bSdh 	mutex_exit(&pmcs_trace_lock);
5444c06356bSdh 
5454c06356bSdh 	disable_msix = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
5464c06356bSdh 	    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "pmcs-disable-msix",
5474c06356bSdh 	    disable_msix);
5484c06356bSdh 	disable_msi = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
5494c06356bSdh 	    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "pmcs-disable-msi",
5504c06356bSdh 	    disable_msi);
5514c06356bSdh 	maxqdepth = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
5524c06356bSdh 	    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "pmcs-maxqdepth", maxqdepth);
5534c06356bSdh 	pwp->fw_force_update = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
5544c06356bSdh 	    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "pmcs-fw-force-update", 0);
5554c06356bSdh 	if (pwp->fw_force_update == 0) {
5564c06356bSdh 		pwp->fw_disable_update = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
5574c06356bSdh 		    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM,
5584c06356bSdh 		    "pmcs-fw-disable-update", 0);
5594c06356bSdh 	}
5604c06356bSdh 	pwp->ioq_depth = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
5614c06356bSdh 	    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "pmcs-num-io-qentries",
5624c06356bSdh 	    PMCS_NQENTRY);
5634c06356bSdh 
5644c06356bSdh 	/*
5654c06356bSdh 	 * Initialize FMA
5664c06356bSdh 	 */
5674c06356bSdh 	pwp->dev_acc_attr = pwp->reg_acc_attr = rattr;
5684c06356bSdh 	pwp->iqp_dma_attr = pwp->oqp_dma_attr =
5694c06356bSdh 	    pwp->regdump_dma_attr = pwp->cip_dma_attr =
5704c06356bSdh 	    pwp->fwlog_dma_attr = pmcs_dattr;
5714c06356bSdh 	pwp->fm_capabilities = ddi_getprop(DDI_DEV_T_ANY, pwp->dip,
5724c06356bSdh 	    DDI_PROP_NOTPROM | DDI_PROP_DONTPASS, "fm-capable",
5734c06356bSdh 	    DDI_FM_EREPORT_CAPABLE | DDI_FM_ACCCHK_CAPABLE |
5744c06356bSdh 	    DDI_FM_DMACHK_CAPABLE | DDI_FM_ERRCB_CAPABLE);
5754c06356bSdh 	pmcs_fm_init(pwp);
5764c06356bSdh 
5774c06356bSdh 	/*
5784c06356bSdh 	 * Map registers
5794c06356bSdh 	 */
5804c06356bSdh 	if (pci_config_setup(dip, &pwp->pci_acc_handle)) {
581c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_WARN, NULL, NULL,
582c3bc407cSdh 		    "pci config setup failed");
5834c06356bSdh 		ddi_soft_state_free(pmcs_softc_state, inst);
5844c06356bSdh 		return (DDI_FAILURE);
5854c06356bSdh 	}
5864c06356bSdh 
5874c06356bSdh 	/*
5884c06356bSdh 	 * Get the size of register set 3.
5894c06356bSdh 	 */
5904c06356bSdh 	if (ddi_dev_regsize(dip, PMCS_REGSET_3, &set3size) != DDI_SUCCESS) {
591c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
5924c06356bSdh 		    "unable to get size of register set %d", PMCS_REGSET_3);
5934c06356bSdh 		pci_config_teardown(&pwp->pci_acc_handle);
5944c06356bSdh 		ddi_soft_state_free(pmcs_softc_state, inst);
5954c06356bSdh 		return (DDI_FAILURE);
5964c06356bSdh 	}
5974c06356bSdh 
5984c06356bSdh 	/*
5994c06356bSdh 	 * Map registers
6004c06356bSdh 	 */
6014c06356bSdh 	pwp->reg_acc_attr.devacc_attr_endian_flags = DDI_STRUCTURE_LE_ACC;
6024c06356bSdh 
6034c06356bSdh 	if (ddi_regs_map_setup(dip, PMCS_REGSET_0, (caddr_t *)&pwp->msg_regs,
6044c06356bSdh 	    0, 0, &pwp->reg_acc_attr, &pwp->msg_acc_handle)) {
605c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
6064c06356bSdh 		    "failed to map Message Unit registers");
6074c06356bSdh 		pci_config_teardown(&pwp->pci_acc_handle);
6084c06356bSdh 		ddi_soft_state_free(pmcs_softc_state, inst);
6094c06356bSdh 		return (DDI_FAILURE);
6104c06356bSdh 	}
6114c06356bSdh 
6124c06356bSdh 	if (ddi_regs_map_setup(dip, PMCS_REGSET_1, (caddr_t *)&pwp->top_regs,
6134c06356bSdh 	    0, 0, &pwp->reg_acc_attr, &pwp->top_acc_handle)) {
614c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
615c3bc407cSdh 		    "failed to map TOP registers");
6164c06356bSdh 		ddi_regs_map_free(&pwp->msg_acc_handle);
6174c06356bSdh 		pci_config_teardown(&pwp->pci_acc_handle);
6184c06356bSdh 		ddi_soft_state_free(pmcs_softc_state, inst);
6194c06356bSdh 		return (DDI_FAILURE);
6204c06356bSdh 	}
6214c06356bSdh 
6224c06356bSdh 	if (ddi_regs_map_setup(dip, PMCS_REGSET_2, (caddr_t *)&pwp->gsm_regs,
6234c06356bSdh 	    0, 0, &pwp->reg_acc_attr, &pwp->gsm_acc_handle)) {
624c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
625c3bc407cSdh 		    "failed to map GSM registers");
6264c06356bSdh 		ddi_regs_map_free(&pwp->top_acc_handle);
6274c06356bSdh 		ddi_regs_map_free(&pwp->msg_acc_handle);
6284c06356bSdh 		pci_config_teardown(&pwp->pci_acc_handle);
6294c06356bSdh 		ddi_soft_state_free(pmcs_softc_state, inst);
6304c06356bSdh 		return (DDI_FAILURE);
6314c06356bSdh 	}
6324c06356bSdh 
6334c06356bSdh 	if (ddi_regs_map_setup(dip, PMCS_REGSET_3, (caddr_t *)&pwp->mpi_regs,
6344c06356bSdh 	    0, 0, &pwp->reg_acc_attr, &pwp->mpi_acc_handle)) {
635c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
636c3bc407cSdh 		    "failed to map MPI registers");
6374c06356bSdh 		ddi_regs_map_free(&pwp->top_acc_handle);
6384c06356bSdh 		ddi_regs_map_free(&pwp->gsm_acc_handle);
6394c06356bSdh 		ddi_regs_map_free(&pwp->msg_acc_handle);
6404c06356bSdh 		pci_config_teardown(&pwp->pci_acc_handle);
6414c06356bSdh 		ddi_soft_state_free(pmcs_softc_state, inst);
6424c06356bSdh 		return (DDI_FAILURE);
6434c06356bSdh 	}
6444c06356bSdh 	pwp->mpibar =
6454c06356bSdh 	    (((5U << 2) + 0x10) << PMCS_MSGU_MPI_BAR_SHIFT) | set3size;
6464c06356bSdh 
6474c06356bSdh 	/*
6484c06356bSdh 	 * Make sure we can support this card.
6494c06356bSdh 	 */
6504c06356bSdh 	pwp->chiprev = pmcs_rd_topunit(pwp, PMCS_DEVICE_REVISION);
6514c06356bSdh 
6524c06356bSdh 	switch (pwp->chiprev) {
6534c06356bSdh 	case PMCS_PM8001_REV_A:
6544c06356bSdh 	case PMCS_PM8001_REV_B:
655c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_ERR, NULL, NULL,
6564c06356bSdh 		    "Rev A/B Card no longer supported");
6574c06356bSdh 		goto failure;
6584c06356bSdh 	case PMCS_PM8001_REV_C:
6594c06356bSdh 		break;
6604c06356bSdh 	default:
661c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_ERR, NULL, NULL,
6624c06356bSdh 		    "Unknown chip revision (%d)", pwp->chiprev);
6634c06356bSdh 		goto failure;
6644c06356bSdh 	}
6654c06356bSdh 
6664c06356bSdh 	/*
6674c06356bSdh 	 * Allocate DMA addressable area for Inbound and Outbound Queue indices
6684c06356bSdh 	 * that the chip needs to access plus a space for scratch usage
6694c06356bSdh 	 */
6704c06356bSdh 	pwp->cip_dma_attr.dma_attr_align = sizeof (uint32_t);
6714c06356bSdh 	if (pmcs_dma_setup(pwp, &pwp->cip_dma_attr, &pwp->cip_acchdls,
6724c06356bSdh 	    &pwp->cip_handles, ptob(1), (caddr_t *)&pwp->cip,
6734c06356bSdh 	    &pwp->ciaddr) == B_FALSE) {
674c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
6754c06356bSdh 		    "Failed to setup DMA for index/scratch");
6764c06356bSdh 		goto failure;
6774c06356bSdh 	}
6784c06356bSdh 
6794c06356bSdh 	bzero(pwp->cip, ptob(1));
6804c06356bSdh 	pwp->scratch = &pwp->cip[PMCS_INDICES_SIZE];
6814c06356bSdh 	pwp->scratch_dma = pwp->ciaddr + PMCS_INDICES_SIZE;
6824c06356bSdh 
6834c06356bSdh 	/*
6844c06356bSdh 	 * Allocate DMA S/G list chunks
6854c06356bSdh 	 */
6864c06356bSdh 	(void) pmcs_add_more_chunks(pwp, ptob(1) * PMCS_MIN_CHUNK_PAGES);
6874c06356bSdh 
6884c06356bSdh 	/*
6894c06356bSdh 	 * Allocate a DMA addressable area for the firmware log (if needed)
6904c06356bSdh 	 */
6914c06356bSdh 	if (pwp->fwlog) {
6924c06356bSdh 		/*
6934c06356bSdh 		 * Align to event log header and entry size
6944c06356bSdh 		 */
6954c06356bSdh 		pwp->fwlog_dma_attr.dma_attr_align = 32;
6964c06356bSdh 		if (pmcs_dma_setup(pwp, &pwp->fwlog_dma_attr,
6974c06356bSdh 		    &pwp->fwlog_acchdl,
6984c06356bSdh 		    &pwp->fwlog_hndl, PMCS_FWLOG_SIZE,
6994c06356bSdh 		    (caddr_t *)&pwp->fwlogp,
7004c06356bSdh 		    &pwp->fwaddr) == B_FALSE) {
701c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
7024c06356bSdh 			    "Failed to setup DMA for fwlog area");
7034c06356bSdh 			pwp->fwlog = 0;
7044c06356bSdh 		} else {
7054c06356bSdh 			bzero(pwp->fwlogp, PMCS_FWLOG_SIZE);
7064c06356bSdh 		}
7074c06356bSdh 	}
7084c06356bSdh 
7094c06356bSdh 	if (pwp->flash_chunk_addr == NULL) {
7104c06356bSdh 		pwp->regdump_dma_attr.dma_attr_align = PMCS_FLASH_CHUNK_SIZE;
7114c06356bSdh 		if (pmcs_dma_setup(pwp, &pwp->regdump_dma_attr,
7124c06356bSdh 		    &pwp->regdump_acchdl,
7134c06356bSdh 		    &pwp->regdump_hndl, PMCS_FLASH_CHUNK_SIZE,
7144c06356bSdh 		    (caddr_t *)&pwp->flash_chunkp, &pwp->flash_chunk_addr) ==
7154c06356bSdh 		    B_FALSE) {
716c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
7174c06356bSdh 			    "Failed to setup DMA for register dump area");
7184c06356bSdh 			goto failure;
7194c06356bSdh 		}
7204c06356bSdh 		bzero(pwp->flash_chunkp, PMCS_FLASH_CHUNK_SIZE);
7214c06356bSdh 	}
7224c06356bSdh 
7234c06356bSdh 	/*
7244c06356bSdh 	 * More bits of local initialization...
7254c06356bSdh 	 */
7264c06356bSdh 	pwp->tq = ddi_taskq_create(dip, "_tq", 4, TASKQ_DEFAULTPRI, 0);
7274c06356bSdh 	if (pwp->tq == NULL) {
728c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
729c3bc407cSdh 		    "unable to create worker taskq");
7304c06356bSdh 		goto failure;
7314c06356bSdh 	}
7324c06356bSdh 
7334c06356bSdh 	/*
7344c06356bSdh 	 * Cache of structures for dealing with I/O completion callbacks.
7354c06356bSdh 	 */
7364c06356bSdh 	(void) snprintf(buf, sizeof (buf), "pmcs_iocomp_cb_cache%d", inst);
7374c06356bSdh 	pwp->iocomp_cb_cache = kmem_cache_create(buf,
7384c06356bSdh 	    sizeof (pmcs_iocomp_cb_t), 16, NULL, NULL, NULL, NULL, NULL, 0);
7394c06356bSdh 
7404c06356bSdh 	/*
7414c06356bSdh 	 * Cache of PHY structures
7424c06356bSdh 	 */
7434c06356bSdh 	(void) snprintf(buf, sizeof (buf), "pmcs_phy_cache%d", inst);
7444c06356bSdh 	pwp->phy_cache = kmem_cache_create(buf, sizeof (pmcs_phy_t), 8,
7454c06356bSdh 	    pmcs_phy_constructor, pmcs_phy_destructor, NULL, (void *)pwp,
7464c06356bSdh 	    NULL, 0);
7474c06356bSdh 
7484c06356bSdh 	/*
7494c06356bSdh 	 * Allocate space for the I/O completion threads
7504c06356bSdh 	 */
7514c06356bSdh 	num_threads = ncpus_online;
7524c06356bSdh 	if (num_threads > PMCS_MAX_CQ_THREADS) {
7534c06356bSdh 		num_threads = PMCS_MAX_CQ_THREADS;
7544c06356bSdh 	}
7554c06356bSdh 
7564c06356bSdh 	pwp->cq_info.cq_thr_info = kmem_zalloc(sizeof (pmcs_cq_thr_info_t) *
7574c06356bSdh 	    num_threads, KM_SLEEP);
7584c06356bSdh 	pwp->cq_info.cq_threads = num_threads;
7594c06356bSdh 	pwp->cq_info.cq_next_disp_thr = 0;
7604c06356bSdh 	pwp->cq_info.cq_stop = B_FALSE;
7614c06356bSdh 
7624c06356bSdh 	/*
7634c06356bSdh 	 * Set the quantum value in clock ticks for the I/O interrupt
7644c06356bSdh 	 * coalescing timer.
7654c06356bSdh 	 */
7664c06356bSdh 	pwp->io_intr_coal.quantum = drv_usectohz(PMCS_QUANTUM_TIME_USECS);
7674c06356bSdh 
7684c06356bSdh 	/*
7694c06356bSdh 	 * We have a delicate dance here. We need to set up
7704c06356bSdh 	 * interrupts so we know how to set up some OQC
7714c06356bSdh 	 * tables. However, while we're setting up table
7724c06356bSdh 	 * access, we may need to flash new firmware and
7734c06356bSdh 	 * reset the card, which will take some finessing.
7744c06356bSdh 	 */
7754c06356bSdh 
7764c06356bSdh 	/*
7774c06356bSdh 	 * Set up interrupts here.
7784c06356bSdh 	 */
7794c06356bSdh 	switch (pmcs_setup_intr(pwp)) {
7804c06356bSdh 	case 0:
7814c06356bSdh 		break;
7824c06356bSdh 	case EIO:
7834c06356bSdh 		pwp->stuck = 1;
7844c06356bSdh 		/* FALLTHROUGH */
7854c06356bSdh 	default:
7864c06356bSdh 		goto failure;
7874c06356bSdh 	}
7884c06356bSdh 
7894c06356bSdh 	/*
7904c06356bSdh 	 * Set these up now becuase they are used to initialize the OQC tables.
7914c06356bSdh 	 *
7924c06356bSdh 	 * If we have MSI or MSI-X interrupts set up and we have enough
7934c06356bSdh 	 * vectors for each OQ, the Outbound Queue vectors can all be the
7944c06356bSdh 	 * same as the appropriate interrupt routine will have been called
7954c06356bSdh 	 * and the doorbell register automatically cleared.
7964c06356bSdh 	 * This keeps us from having to check the Outbound Doorbell register
7974c06356bSdh 	 * when the routines for these interrupts are called.
7984c06356bSdh 	 *
7994c06356bSdh 	 * If we have Legacy INT-X interrupts set up or we didn't have enough
8004c06356bSdh 	 * MSI/MSI-X vectors to uniquely identify each OQ, we point these
8014c06356bSdh 	 * vectors to the bits we would like to have set in the Outbound
8024c06356bSdh 	 * Doorbell register because pmcs_all_intr will read the doorbell
8034c06356bSdh 	 * register to find out why we have an interrupt and write the
8044c06356bSdh 	 * corresponding 'clear' bit for that interrupt.
8054c06356bSdh 	 */
8064c06356bSdh 
8074c06356bSdh 	switch (pwp->intr_cnt) {
8084c06356bSdh 	case 1:
8094c06356bSdh 		/*
8104c06356bSdh 		 * Only one vector, so we must check all OQs for MSI.  For
8114c06356bSdh 		 * INT-X, there's only one vector anyway, so we can just
8124c06356bSdh 		 * use the outbound queue bits to keep from having to
8134c06356bSdh 		 * check each queue for each interrupt.
8144c06356bSdh 		 */
8154c06356bSdh 		if (pwp->int_type == PMCS_INT_FIXED) {
8164c06356bSdh 			pwp->oqvec[PMCS_OQ_IODONE] = PMCS_OQ_IODONE;
8174c06356bSdh 			pwp->oqvec[PMCS_OQ_GENERAL] = PMCS_OQ_GENERAL;
8184c06356bSdh 			pwp->oqvec[PMCS_OQ_EVENTS] = PMCS_OQ_EVENTS;
8194c06356bSdh 		} else {
8204c06356bSdh 			pwp->oqvec[PMCS_OQ_IODONE] = PMCS_OQ_IODONE;
8214c06356bSdh 			pwp->oqvec[PMCS_OQ_GENERAL] = PMCS_OQ_IODONE;
8224c06356bSdh 			pwp->oqvec[PMCS_OQ_EVENTS] = PMCS_OQ_IODONE;
8234c06356bSdh 		}
8244c06356bSdh 		break;
8254c06356bSdh 	case 2:
8264c06356bSdh 		/* With 2, we can at least isolate IODONE */
8274c06356bSdh 		pwp->oqvec[PMCS_OQ_IODONE] = PMCS_OQ_IODONE;
8284c06356bSdh 		pwp->oqvec[PMCS_OQ_GENERAL] = PMCS_OQ_GENERAL;
8294c06356bSdh 		pwp->oqvec[PMCS_OQ_EVENTS] = PMCS_OQ_GENERAL;
8304c06356bSdh 		break;
8314c06356bSdh 	case 4:
8324c06356bSdh 		/* With 4 vectors, everybody gets one */
8334c06356bSdh 		pwp->oqvec[PMCS_OQ_IODONE] = PMCS_OQ_IODONE;
8344c06356bSdh 		pwp->oqvec[PMCS_OQ_GENERAL] = PMCS_OQ_GENERAL;
8354c06356bSdh 		pwp->oqvec[PMCS_OQ_EVENTS] = PMCS_OQ_EVENTS;
8364c06356bSdh 		break;
8374c06356bSdh 	}
8384c06356bSdh 
8394c06356bSdh 	/*
8404c06356bSdh 	 * Do the first part of setup
8414c06356bSdh 	 */
8424c06356bSdh 	if (pmcs_setup(pwp)) {
8434c06356bSdh 		goto failure;
8444c06356bSdh 	}
8454c06356bSdh 	pmcs_report_fwversion(pwp);
8464c06356bSdh 
8474c06356bSdh 	/*
8484c06356bSdh 	 * Now do some additonal allocations based upon information
8494c06356bSdh 	 * gathered during MPI setup.
8504c06356bSdh 	 */
8514c06356bSdh 	pwp->root_phys = kmem_zalloc(pwp->nphy * sizeof (pmcs_phy_t), KM_SLEEP);
8524c06356bSdh 	ASSERT(pwp->nphy < SAS2_PHYNUM_MAX);
8534c06356bSdh 	phyp = pwp->root_phys;
8544c06356bSdh 	for (i = 0; i < pwp->nphy; i++) {
8554c06356bSdh 		if (i < pwp->nphy-1) {
8564c06356bSdh 			phyp->sibling = (phyp + 1);
8574c06356bSdh 		}
8584c06356bSdh 		mutex_init(&phyp->phy_lock, NULL, MUTEX_DRIVER,
8594c06356bSdh 		    DDI_INTR_PRI(pwp->intr_pri));
8604c06356bSdh 		phyp->phynum = i & SAS2_PHYNUM_MASK;
8614c06356bSdh 		pmcs_phy_name(pwp, phyp, phyp->path, sizeof (phyp->path));
8624c06356bSdh 		phyp->pwp = pwp;
8634c06356bSdh 		phyp->device_id = PMCS_INVALID_DEVICE_ID;
8644c06356bSdh 		phyp++;
8654c06356bSdh 	}
8664c06356bSdh 
8674c06356bSdh 	pwp->work = kmem_zalloc(pwp->max_cmd * sizeof (pmcwork_t), KM_SLEEP);
8684c06356bSdh 	for (i = 0; i < pwp->max_cmd - 1; i++) {
8694c06356bSdh 		pmcwork_t *pwrk = &pwp->work[i];
8704c06356bSdh 		mutex_init(&pwrk->lock, NULL, MUTEX_DRIVER,
8714c06356bSdh 		    DDI_INTR_PRI(pwp->intr_pri));
8724c06356bSdh 		cv_init(&pwrk->sleep_cv, NULL, CV_DRIVER, NULL);
8734c06356bSdh 		STAILQ_INSERT_TAIL(&pwp->wf, pwrk, next);
8744c06356bSdh 
8754c06356bSdh 	}
8764c06356bSdh 	pwp->targets = (pmcs_xscsi_t **)
8774c06356bSdh 	    kmem_zalloc(pwp->max_dev * sizeof (pmcs_xscsi_t *), KM_SLEEP);
8784c06356bSdh 
8794c06356bSdh 	pwp->iqpt = (pmcs_iqp_trace_t *)
8804c06356bSdh 	    kmem_zalloc(sizeof (pmcs_iqp_trace_t), KM_SLEEP);
8814c06356bSdh 	pwp->iqpt->head = kmem_zalloc(PMCS_IQP_TRACE_BUFFER_SIZE, KM_SLEEP);
8824c06356bSdh 	pwp->iqpt->curpos = pwp->iqpt->head;
8834c06356bSdh 	pwp->iqpt->size_left = PMCS_IQP_TRACE_BUFFER_SIZE;
8844c06356bSdh 
8854c06356bSdh 	/*
8864c06356bSdh 	 * Start MPI communication.
8874c06356bSdh 	 */
8884c06356bSdh 	if (pmcs_start_mpi(pwp)) {
8894c06356bSdh 		if (pmcs_soft_reset(pwp, B_FALSE)) {
8904c06356bSdh 			goto failure;
8914c06356bSdh 		}
8924c06356bSdh 	}
8934c06356bSdh 
8944c06356bSdh 	/*
8954c06356bSdh 	 * Do some initial acceptance tests.
8964c06356bSdh 	 * This tests interrupts and queues.
8974c06356bSdh 	 */
8984c06356bSdh 	if (pmcs_echo_test(pwp)) {
8994c06356bSdh 		goto failure;
9004c06356bSdh 	}
9014c06356bSdh 
9024c06356bSdh 	/* Read VPD - if it exists */
9034c06356bSdh 	if (pmcs_get_nvmd(pwp, PMCS_NVMD_VPD, PMCIN_NVMD_VPD, 0, NULL, 0)) {
904c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
905c3bc407cSdh 		    "%s: Unable to read VPD: "
9064c06356bSdh 		    "attempting to fabricate", __func__);
9074c06356bSdh 		/*
9084c06356bSdh 		 * When we release, this must goto failure and the call
9094c06356bSdh 		 * to pmcs_fabricate_wwid is removed.
9104c06356bSdh 		 */
9114c06356bSdh 		/* goto failure; */
9124c06356bSdh 		if (!pmcs_fabricate_wwid(pwp)) {
9134c06356bSdh 			goto failure;
9144c06356bSdh 		}
9154c06356bSdh 	}
9164c06356bSdh 
9174c06356bSdh 	/*
9184c06356bSdh 	 * We're now officially running
9194c06356bSdh 	 */
9204c06356bSdh 	pwp->state = STATE_RUNNING;
9214c06356bSdh 
9224c06356bSdh 	/*
9234c06356bSdh 	 * Check firmware versions and load new firmware
9244c06356bSdh 	 * if needed and reset.
9254c06356bSdh 	 */
9264c06356bSdh 	if (pmcs_firmware_update(pwp)) {
927c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_WARN, NULL, NULL,
928c3bc407cSdh 		    "%s: Firmware update failed", __func__);
9294c06356bSdh 		goto failure;
9304c06356bSdh 	}
9314c06356bSdh 
9324c06356bSdh 	/*
9334c06356bSdh 	 * Create completion threads.
9344c06356bSdh 	 */
9354c06356bSdh 	for (i = 0; i < pwp->cq_info.cq_threads; i++) {
9364c06356bSdh 		pwp->cq_info.cq_thr_info[i].cq_pwp = pwp;
9374c06356bSdh 		pwp->cq_info.cq_thr_info[i].cq_thread =
9384c06356bSdh 		    thread_create(NULL, 0, pmcs_scsa_cq_run,
9394c06356bSdh 		    &pwp->cq_info.cq_thr_info[i], 0, &p0, TS_RUN, minclsyspri);
9404c06356bSdh 	}
9414c06356bSdh 
9424c06356bSdh 	/*
9434c06356bSdh 	 * Create one thread to deal with the updating of the interrupt
9444c06356bSdh 	 * coalescing timer.
9454c06356bSdh 	 */
9464c06356bSdh 	pwp->ict_thread = thread_create(NULL, 0, pmcs_check_intr_coal,
9474c06356bSdh 	    pwp, 0, &p0, TS_RUN, minclsyspri);
9484c06356bSdh 
9494c06356bSdh 	/*
9504c06356bSdh 	 * Kick off the watchdog
9514c06356bSdh 	 */
9524c06356bSdh 	pwp->wdhandle = timeout(pmcs_watchdog, pwp,
9534c06356bSdh 	    drv_usectohz(PMCS_WATCH_INTERVAL));
9544c06356bSdh 	/*
9554c06356bSdh 	 * Do the SCSI attachment code (before starting phys)
9564c06356bSdh 	 */
9574c06356bSdh 	if (pmcs_scsa_init(pwp, &pmcs_dattr)) {
9584c06356bSdh 		goto failure;
9594c06356bSdh 	}
9604c06356bSdh 	pwp->hba_attached = 1;
9614c06356bSdh 
9624c06356bSdh 	/*
9634c06356bSdh 	 * Initialize the rwlock for the iport elements.
9644c06356bSdh 	 */
9654c06356bSdh 	rw_init(&pwp->iports_lock, NULL, RW_DRIVER, NULL);
9664c06356bSdh 
9674c06356bSdh 	/* Check all acc & dma handles allocated in attach */
9684c06356bSdh 	if (pmcs_check_acc_dma_handle(pwp)) {
9694c06356bSdh 		ddi_fm_service_impact(pwp->dip, DDI_SERVICE_LOST);
9704c06356bSdh 		goto failure;
9714c06356bSdh 	}
9724c06356bSdh 
9734c06356bSdh 	/*
9744c06356bSdh 	 * Create the phymap for this HBA instance
9754c06356bSdh 	 */
9764c06356bSdh 	if (sas_phymap_create(dip, phymap_usec, PHYMAP_MODE_SIMPLE, NULL,
9774c06356bSdh 	    pwp, pmcs_phymap_activate, pmcs_phymap_deactivate,
9784c06356bSdh 	    &pwp->hss_phymap) != DDI_SUCCESS) {
979c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
980c3bc407cSdh 		    "%s: pmcs%d phymap_create failed", __func__, inst);
9814c06356bSdh 		goto failure;
9824c06356bSdh 	}
9834c06356bSdh 	ASSERT(pwp->hss_phymap);
9844c06356bSdh 
9854c06356bSdh 	/*
9864c06356bSdh 	 * Create the iportmap for this HBA instance
9874c06356bSdh 	 */
9881b115575SJohn Danielson 	if (scsi_hba_iportmap_create(dip, iportmap_usec,
9894c06356bSdh 	    &pwp->hss_iportmap) != DDI_SUCCESS) {
990c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
991c3bc407cSdh 		    "%s: pmcs%d iportmap_create failed", __func__, inst);
9924c06356bSdh 		goto failure;
9934c06356bSdh 	}
9944c06356bSdh 	ASSERT(pwp->hss_iportmap);
9954c06356bSdh 
9964c06356bSdh 	/*
9974c06356bSdh 	 * Start the PHYs.
9984c06356bSdh 	 */
9994c06356bSdh 	if (pmcs_start_phys(pwp)) {
10004c06356bSdh 		goto failure;
10014c06356bSdh 	}
10024c06356bSdh 
10034c06356bSdh 	/*
10044c06356bSdh 	 * From this point on, we can't fail.
10054c06356bSdh 	 */
10064c06356bSdh 	ddi_report_dev(dip);
10074c06356bSdh 
10084c06356bSdh 	/* SM-HBA */
10094c06356bSdh 	pmcs_smhba_add_hba_prop(pwp, DATA_TYPE_INT32, PMCS_SMHBA_SUPPORTED,
10104c06356bSdh 	    &sm_hba);
10114c06356bSdh 
10124c06356bSdh 	/* SM-HBA */
10134c06356bSdh 	pmcs_smhba_add_hba_prop(pwp, DATA_TYPE_STRING, PMCS_DRV_VERSION,
10144c06356bSdh 	    pmcs_driver_rev);
10154c06356bSdh 
10164c06356bSdh 	/* SM-HBA */
10174c06356bSdh 	chiprev = 'A' + pwp->chiprev;
10184c06356bSdh 	(void) snprintf(hw_rev, 2, "%s", &chiprev);
10194c06356bSdh 	pmcs_smhba_add_hba_prop(pwp, DATA_TYPE_STRING, PMCS_HWARE_VERSION,
10204c06356bSdh 	    hw_rev);
10214c06356bSdh 
10224c06356bSdh 	/* SM-HBA */
10234c06356bSdh 	switch (PMCS_FW_TYPE(pwp)) {
10244c06356bSdh 	case PMCS_FW_TYPE_RELEASED:
10254c06356bSdh 		fwsupport = "Released";
10264c06356bSdh 		break;
10274c06356bSdh 	case PMCS_FW_TYPE_DEVELOPMENT:
10284c06356bSdh 		fwsupport = "Development";
10294c06356bSdh 		break;
10304c06356bSdh 	case PMCS_FW_TYPE_ALPHA:
10314c06356bSdh 		fwsupport = "Alpha";
10324c06356bSdh 		break;
10334c06356bSdh 	case PMCS_FW_TYPE_BETA:
10344c06356bSdh 		fwsupport = "Beta";
10354c06356bSdh 		break;
10364c06356bSdh 	default:
10374c06356bSdh 		fwsupport = "Special";
10384c06356bSdh 		break;
10394c06356bSdh 	}
10404c06356bSdh 	(void) snprintf(fw_rev, sizeof (fw_rev), "%x.%x.%x %s",
10414c06356bSdh 	    PMCS_FW_MAJOR(pwp), PMCS_FW_MINOR(pwp), PMCS_FW_MICRO(pwp),
10424c06356bSdh 	    fwsupport);
10434c06356bSdh 	pmcs_smhba_add_hba_prop(pwp, DATA_TYPE_STRING, PMCS_FWARE_VERSION,
10444c06356bSdh 	    fw_rev);
10454c06356bSdh 
10464c06356bSdh 	/* SM-HBA */
10474c06356bSdh 	num_phys = pwp->nphy;
10484c06356bSdh 	pmcs_smhba_add_hba_prop(pwp, DATA_TYPE_INT32, PMCS_NUM_PHYS_HBA,
10494c06356bSdh 	    &num_phys);
10504c06356bSdh 
10514c06356bSdh 	/* SM-HBA */
10524c06356bSdh 	protocol = SAS_SSP_SUPPORT | SAS_SATA_SUPPORT | SAS_SMP_SUPPORT;
10534c06356bSdh 	pmcs_smhba_add_hba_prop(pwp, DATA_TYPE_INT32, PMCS_SUPPORTED_PROTOCOL,
10544c06356bSdh 	    &protocol);
10554c06356bSdh 
10564c06356bSdh 	return (DDI_SUCCESS);
10574c06356bSdh 
10584c06356bSdh failure:
10594c06356bSdh 	if (pmcs_unattach(pwp)) {
10604c06356bSdh 		pwp->stuck = 1;
10614c06356bSdh 	}
10624c06356bSdh 	return (DDI_FAILURE);
10634c06356bSdh }
10644c06356bSdh 
10654c06356bSdh int
10664c06356bSdh pmcs_detach(dev_info_t *dip, ddi_detach_cmd_t cmd)
10674c06356bSdh {
10684c06356bSdh 	int inst = ddi_get_instance(dip);
10694c06356bSdh 	pmcs_iport_t	*iport = NULL;
10704c06356bSdh 	pmcs_hw_t	*pwp = NULL;
10714c06356bSdh 	scsi_hba_tran_t	*tran;
10724c06356bSdh 
10734c06356bSdh 	if (scsi_hba_iport_unit_address(dip) != NULL) {
10744c06356bSdh 		/* iport node */
10754c06356bSdh 		iport = ddi_get_soft_state(pmcs_iport_softstate, inst);
10764c06356bSdh 		ASSERT(iport);
10774c06356bSdh 		if (iport == NULL) {
10784c06356bSdh 			return (DDI_FAILURE);
10794c06356bSdh 		}
10804c06356bSdh 		pwp = iport->pwp;
10814c06356bSdh 	} else {
10824c06356bSdh 		/* hba node */
10834c06356bSdh 		pwp = (pmcs_hw_t *)ddi_get_soft_state(pmcs_softc_state, inst);
10844c06356bSdh 		ASSERT(pwp);
10854c06356bSdh 		if (pwp == NULL) {
10864c06356bSdh 			return (DDI_FAILURE);
10874c06356bSdh 		}
10884c06356bSdh 	}
10894c06356bSdh 
10904c06356bSdh 	switch (cmd) {
10914c06356bSdh 	case DDI_DETACH:
10924c06356bSdh 		if (iport) {
10934c06356bSdh 			/* iport detach */
10944c06356bSdh 			if (pmcs_iport_unattach(iport)) {
10954c06356bSdh 				return (DDI_FAILURE);
10964c06356bSdh 			}
1097c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
1098c3bc407cSdh 			    "iport%d detached", inst);
10994c06356bSdh 			return (DDI_SUCCESS);
11004c06356bSdh 		} else {
11014c06356bSdh 			/* HBA detach */
11024c06356bSdh 			if (pmcs_unattach(pwp)) {
11034c06356bSdh 				return (DDI_FAILURE);
11044c06356bSdh 			}
11054c06356bSdh 			return (DDI_SUCCESS);
11064c06356bSdh 		}
11074c06356bSdh 
11084c06356bSdh 	case DDI_SUSPEND:
11094c06356bSdh 	case DDI_PM_SUSPEND:
11104c06356bSdh 		/* No DDI_SUSPEND on iport nodes */
11114c06356bSdh 		if (iport) {
11124c06356bSdh 			return (DDI_SUCCESS);
11134c06356bSdh 		}
11144c06356bSdh 
11154c06356bSdh 		if (pwp->stuck) {
11164c06356bSdh 			return (DDI_FAILURE);
11174c06356bSdh 		}
11184c06356bSdh 		tran = (scsi_hba_tran_t *)ddi_get_driver_private(dip);
11194c06356bSdh 		if (!tran) {
11204c06356bSdh 			return (DDI_FAILURE);
11214c06356bSdh 		}
11224c06356bSdh 
11234c06356bSdh 		pwp = TRAN2PMC(tran);
11244c06356bSdh 		if (pwp == NULL) {
11254c06356bSdh 			return (DDI_FAILURE);
11264c06356bSdh 		}
11274c06356bSdh 		mutex_enter(&pwp->lock);
11284c06356bSdh 		if (pwp->tq) {
11294c06356bSdh 			ddi_taskq_suspend(pwp->tq);
11304c06356bSdh 		}
11314c06356bSdh 		pwp->suspended = 1;
11324c06356bSdh 		mutex_exit(&pwp->lock);
1133c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_INFO, NULL, NULL, "PMC8X6G suspending");
11344c06356bSdh 		return (DDI_SUCCESS);
11354c06356bSdh 
11364c06356bSdh 	default:
11374c06356bSdh 		return (DDI_FAILURE);
11384c06356bSdh 	}
11394c06356bSdh }
11404c06356bSdh 
11414c06356bSdh static int
11424c06356bSdh pmcs_iport_unattach(pmcs_iport_t *iport)
11434c06356bSdh {
11444c06356bSdh 	pmcs_hw_t	*pwp = iport->pwp;
11454c06356bSdh 
11464c06356bSdh 	/*
11474c06356bSdh 	 * First, check if there are still any configured targets on this
11484c06356bSdh 	 * iport.  If so, we fail detach.
11494c06356bSdh 	 */
11504c06356bSdh 	if (pmcs_iport_has_targets(pwp, iport)) {
1151c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG_IPORT, NULL, NULL,
1152c3bc407cSdh 		    "iport%d detach failure: iport has targets (luns)",
1153c3bc407cSdh 		    ddi_get_instance(iport->dip));
11544c06356bSdh 		return (DDI_FAILURE);
11554c06356bSdh 	}
11564c06356bSdh 
11574c06356bSdh 	/*
11584c06356bSdh 	 * Remove this iport from our list if it is inactive in the phymap.
11594c06356bSdh 	 */
11604c06356bSdh 	rw_enter(&pwp->iports_lock, RW_WRITER);
11614c06356bSdh 	mutex_enter(&iport->lock);
11624c06356bSdh 
11634c06356bSdh 	if (iport->ua_state == UA_ACTIVE) {
11644c06356bSdh 		mutex_exit(&iport->lock);
11654c06356bSdh 		rw_exit(&pwp->iports_lock);
1166c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG_IPORT, NULL, NULL,
1167c3bc407cSdh 		    "iport%d detach failure: "
11684c06356bSdh 		    "iport unit address active in phymap",
11694c06356bSdh 		    ddi_get_instance(iport->dip));
11704c06356bSdh 		return (DDI_FAILURE);
11714c06356bSdh 	}
11724c06356bSdh 
11734c06356bSdh 	/* If it's our only iport, clear iports_attached */
11744c06356bSdh 	ASSERT(pwp->num_iports >= 1);
11754c06356bSdh 	if (--pwp->num_iports == 0) {
11764c06356bSdh 		pwp->iports_attached = 0;
11774c06356bSdh 	}
11784c06356bSdh 
11794c06356bSdh 	ASSERT(list_link_active(&iport->list_node));
11804c06356bSdh 	list_remove(&pwp->iports, iport);
11814c06356bSdh 	rw_exit(&pwp->iports_lock);
11824c06356bSdh 
11834c06356bSdh 	/*
11844c06356bSdh 	 * We have removed the iport handle from the HBA's iports list,
11854c06356bSdh 	 * there will be no new references to it. Two things must be
11864c06356bSdh 	 * guarded against here.  First, we could have PHY up events,
11874c06356bSdh 	 * adding themselves to the iport->phys list and grabbing ref's
11884c06356bSdh 	 * on our iport handle.  Second, we could have existing references
11894c06356bSdh 	 * to this iport handle from a point in time prior to the list
11904c06356bSdh 	 * removal above.
11914c06356bSdh 	 *
11924c06356bSdh 	 * So first, destroy the phys list. Remove any phys that have snuck
11934c06356bSdh 	 * in after the phymap deactivate, dropping the refcnt accordingly.
11944c06356bSdh 	 * If these PHYs are still up if and when the phymap reactivates
11954c06356bSdh 	 * (i.e. when this iport reattaches), we'll populate the list with
11964c06356bSdh 	 * them and bump the refcnt back up.
11974c06356bSdh 	 */
11984c06356bSdh 	pmcs_remove_phy_from_iport(iport, NULL);
11994c06356bSdh 	ASSERT(list_is_empty(&iport->phys));
12004c06356bSdh 	list_destroy(&iport->phys);
12014c06356bSdh 	mutex_exit(&iport->lock);
12024c06356bSdh 
12034c06356bSdh 	/*
12044c06356bSdh 	 * Second, wait for any other references to this iport to be
12054c06356bSdh 	 * dropped, then continue teardown.
12064c06356bSdh 	 */
12074c06356bSdh 	mutex_enter(&iport->refcnt_lock);
12084c06356bSdh 	while (iport->refcnt != 0) {
12094c06356bSdh 		cv_wait(&iport->refcnt_cv, &iport->refcnt_lock);
12104c06356bSdh 	}
12114c06356bSdh 	mutex_exit(&iport->refcnt_lock);
12124c06356bSdh 
12134c06356bSdh 	/* Delete kstats */
12144c06356bSdh 	pmcs_destroy_phy_stats(iport);
12154c06356bSdh 
12164c06356bSdh 	/* Destroy the iport target map */
12174c06356bSdh 	if (pmcs_iport_tgtmap_destroy(iport) == B_FALSE) {
12184c06356bSdh 		return (DDI_FAILURE);
12194c06356bSdh 	}
12204c06356bSdh 
12214c06356bSdh 	/* Free the tgt soft state */
12224c06356bSdh 	if (iport->tgt_sstate != NULL) {
12234c06356bSdh 		ddi_soft_state_bystr_fini(&iport->tgt_sstate);
12244c06356bSdh 	}
12254c06356bSdh 
12264c06356bSdh 	/* Free our unit address string */
12274c06356bSdh 	strfree(iport->ua);
12284c06356bSdh 
12294c06356bSdh 	/* Finish teardown and free the softstate */
12304c06356bSdh 	mutex_destroy(&iport->refcnt_lock);
12314c06356bSdh 	ASSERT(iport->refcnt == 0);
12324c06356bSdh 	cv_destroy(&iport->refcnt_cv);
12334c06356bSdh 	mutex_destroy(&iport->lock);
12344c06356bSdh 	ddi_soft_state_free(pmcs_iport_softstate, ddi_get_instance(iport->dip));
12354c06356bSdh 
12364c06356bSdh 	return (DDI_SUCCESS);
12374c06356bSdh }
12384c06356bSdh 
12394c06356bSdh static int
12404c06356bSdh pmcs_unattach(pmcs_hw_t *pwp)
12414c06356bSdh {
12424c06356bSdh 	int i;
12434c06356bSdh 	enum pwpstate curstate;
12444c06356bSdh 	pmcs_cq_thr_info_t *cqti;
12454c06356bSdh 
12464c06356bSdh 	/*
12474c06356bSdh 	 * Tear down the interrupt infrastructure.
12484c06356bSdh 	 */
12494c06356bSdh 	if (pmcs_teardown_intr(pwp)) {
12504c06356bSdh 		pwp->stuck = 1;
12514c06356bSdh 	}
12524c06356bSdh 	pwp->intr_cnt = 0;
12534c06356bSdh 
12544c06356bSdh 	/*
12554c06356bSdh 	 * Grab a lock, if initted, to set state.
12564c06356bSdh 	 */
12574c06356bSdh 	if (pwp->locks_initted) {
12584c06356bSdh 		mutex_enter(&pwp->lock);
12594c06356bSdh 		if (pwp->state != STATE_DEAD) {
12604c06356bSdh 			pwp->state = STATE_UNPROBING;
12614c06356bSdh 		}
12624c06356bSdh 		curstate = pwp->state;
12634c06356bSdh 		mutex_exit(&pwp->lock);
12644c06356bSdh 
12654c06356bSdh 		/*
12664c06356bSdh 		 * Stop the I/O completion threads.
12674c06356bSdh 		 */
12684c06356bSdh 		mutex_enter(&pwp->cq_lock);
12694c06356bSdh 		pwp->cq_info.cq_stop = B_TRUE;
12704c06356bSdh 		for (i = 0; i < pwp->cq_info.cq_threads; i++) {
12714c06356bSdh 			if (pwp->cq_info.cq_thr_info[i].cq_thread) {
12724c06356bSdh 				cqti = &pwp->cq_info.cq_thr_info[i];
12734c06356bSdh 				mutex_enter(&cqti->cq_thr_lock);
12744c06356bSdh 				cv_signal(&cqti->cq_cv);
12754c06356bSdh 				mutex_exit(&cqti->cq_thr_lock);
12764c06356bSdh 				mutex_exit(&pwp->cq_lock);
12774c06356bSdh 				thread_join(cqti->cq_thread->t_did);
12784c06356bSdh 				mutex_enter(&pwp->cq_lock);
12794c06356bSdh 			}
12804c06356bSdh 		}
12814c06356bSdh 		mutex_exit(&pwp->cq_lock);
12824c06356bSdh 
12834c06356bSdh 		/*
12844c06356bSdh 		 * Stop the interrupt coalescing timer thread
12854c06356bSdh 		 */
12864c06356bSdh 		if (pwp->ict_thread) {
12874c06356bSdh 			mutex_enter(&pwp->ict_lock);
12884c06356bSdh 			pwp->io_intr_coal.stop_thread = B_TRUE;
12894c06356bSdh 			cv_signal(&pwp->ict_cv);
12904c06356bSdh 			mutex_exit(&pwp->ict_lock);
12914c06356bSdh 			thread_join(pwp->ict_thread->t_did);
12924c06356bSdh 		}
12934c06356bSdh 	} else {
12944c06356bSdh 		if (pwp->state != STATE_DEAD) {
12954c06356bSdh 			pwp->state = STATE_UNPROBING;
12964c06356bSdh 		}
12974c06356bSdh 		curstate = pwp->state;
12984c06356bSdh 	}
12994c06356bSdh 
13004c06356bSdh 	if (&pwp->iports != NULL) {
13014c06356bSdh 		/* Destroy the iports lock */
13024c06356bSdh 		rw_destroy(&pwp->iports_lock);
13034c06356bSdh 		/* Destroy the iports list */
13044c06356bSdh 		ASSERT(list_is_empty(&pwp->iports));
13054c06356bSdh 		list_destroy(&pwp->iports);
13064c06356bSdh 	}
13074c06356bSdh 
13084c06356bSdh 	if (pwp->hss_iportmap != NULL) {
13094c06356bSdh 		/* Destroy the iportmap */
13104c06356bSdh 		scsi_hba_iportmap_destroy(pwp->hss_iportmap);
13114c06356bSdh 	}
13124c06356bSdh 
13134c06356bSdh 	if (pwp->hss_phymap != NULL) {
13144c06356bSdh 		/* Destroy the phymap */
13154c06356bSdh 		sas_phymap_destroy(pwp->hss_phymap);
13164c06356bSdh 	}
13174c06356bSdh 
13184c06356bSdh 	/*
13194c06356bSdh 	 * Make sure that any pending watchdog won't
13204c06356bSdh 	 * be called from this point on out.
13214c06356bSdh 	 */
13224c06356bSdh 	(void) untimeout(pwp->wdhandle);
13234c06356bSdh 	/*
13244c06356bSdh 	 * After the above action, the watchdog
13254c06356bSdh 	 * timer that starts up the worker task
13264c06356bSdh 	 * may trigger but will exit immediately
13274c06356bSdh 	 * on triggering.
13284c06356bSdh 	 *
13294c06356bSdh 	 * Now that this is done, we can destroy
13304c06356bSdh 	 * the task queue, which will wait if we're
13314c06356bSdh 	 * running something on it.
13324c06356bSdh 	 */
13334c06356bSdh 	if (pwp->tq) {
13344c06356bSdh 		ddi_taskq_destroy(pwp->tq);
13354c06356bSdh 		pwp->tq = NULL;
13364c06356bSdh 	}
13374c06356bSdh 
13384c06356bSdh 	pmcs_fm_fini(pwp);
13394c06356bSdh 
13404c06356bSdh 	if (pwp->hba_attached) {
13414c06356bSdh 		(void) scsi_hba_detach(pwp->dip);
13424c06356bSdh 		pwp->hba_attached = 0;
13434c06356bSdh 	}
13444c06356bSdh 
13454c06356bSdh 	/*
13464c06356bSdh 	 * If the chip hasn't been marked dead, shut it down now
13474c06356bSdh 	 * to bring it back to a known state without attempting
13484c06356bSdh 	 * a soft reset.
13494c06356bSdh 	 */
13504c06356bSdh 	if (curstate != STATE_DEAD && pwp->locks_initted) {
13514c06356bSdh 		/*
13524c06356bSdh 		 * De-register all registered devices
13534c06356bSdh 		 */
13544c06356bSdh 		pmcs_deregister_devices(pwp, pwp->root_phys);
13554c06356bSdh 
13564c06356bSdh 		/*
13574c06356bSdh 		 * Stop all the phys.
13584c06356bSdh 		 */
13594c06356bSdh 		pmcs_stop_phys(pwp);
13604c06356bSdh 
13614c06356bSdh 		/*
13624c06356bSdh 		 * Shut Down Message Passing
13634c06356bSdh 		 */
13644c06356bSdh 		(void) pmcs_stop_mpi(pwp);
13654c06356bSdh 
13664c06356bSdh 		/*
13674c06356bSdh 		 * Reset chip
13684c06356bSdh 		 */
13694c06356bSdh 		(void) pmcs_soft_reset(pwp, B_FALSE);
13704c06356bSdh 	}
13714c06356bSdh 
13724c06356bSdh 	/*
13734c06356bSdh 	 * Turn off interrupts on the chip
13744c06356bSdh 	 */
13754c06356bSdh 	if (pwp->mpi_acc_handle) {
13764c06356bSdh 		pmcs_wr_msgunit(pwp, PMCS_MSGU_OBDB_MASK, 0xffffffff);
13774c06356bSdh 	}
13784c06356bSdh 
13794c06356bSdh 	/* Destroy pwp's lock */
13804c06356bSdh 	if (pwp->locks_initted) {
13814c06356bSdh 		mutex_destroy(&pwp->lock);
13824c06356bSdh 		mutex_destroy(&pwp->dma_lock);
13834c06356bSdh 		mutex_destroy(&pwp->axil_lock);
13844c06356bSdh 		mutex_destroy(&pwp->cq_lock);
13854c06356bSdh 		mutex_destroy(&pwp->config_lock);
13864c06356bSdh 		mutex_destroy(&pwp->ict_lock);
13874c06356bSdh 		mutex_destroy(&pwp->wfree_lock);
13884c06356bSdh 		mutex_destroy(&pwp->pfree_lock);
13894c06356bSdh 		mutex_destroy(&pwp->dead_phylist_lock);
13904c06356bSdh #ifdef	DEBUG
13914c06356bSdh 		mutex_destroy(&pwp->dbglock);
13924c06356bSdh #endif
13934c06356bSdh 		cv_destroy(&pwp->ict_cv);
13944c06356bSdh 		cv_destroy(&pwp->drain_cv);
13954c06356bSdh 		pwp->locks_initted = 0;
13964c06356bSdh 	}
13974c06356bSdh 
13984c06356bSdh 	/*
13994c06356bSdh 	 * Free DMA handles and associated consistent memory
14004c06356bSdh 	 */
14014c06356bSdh 	if (pwp->regdump_hndl) {
14024c06356bSdh 		if (ddi_dma_unbind_handle(pwp->regdump_hndl) != DDI_SUCCESS) {
1403c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
1404c3bc407cSdh 			    "Condition check failed "
14054c06356bSdh 			    "at %s():%d", __func__, __LINE__);
14064c06356bSdh 		}
14074c06356bSdh 		ddi_dma_free_handle(&pwp->regdump_hndl);
14084c06356bSdh 		ddi_dma_mem_free(&pwp->regdump_acchdl);
14094c06356bSdh 		pwp->regdump_hndl = 0;
14104c06356bSdh 	}
14114c06356bSdh 	if (pwp->fwlog_hndl) {
14124c06356bSdh 		if (ddi_dma_unbind_handle(pwp->fwlog_hndl) != DDI_SUCCESS) {
1413c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
1414c3bc407cSdh 			    "Condition check failed "
14154c06356bSdh 			    "at %s():%d", __func__, __LINE__);
14164c06356bSdh 		}
14174c06356bSdh 		ddi_dma_free_handle(&pwp->fwlog_hndl);
14184c06356bSdh 		ddi_dma_mem_free(&pwp->fwlog_acchdl);
14194c06356bSdh 		pwp->fwlog_hndl = 0;
14204c06356bSdh 	}
14214c06356bSdh 	if (pwp->cip_handles) {
14224c06356bSdh 		if (ddi_dma_unbind_handle(pwp->cip_handles) != DDI_SUCCESS) {
1423c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
1424c3bc407cSdh 			    "Condition check failed "
14254c06356bSdh 			    "at %s():%d", __func__, __LINE__);
14264c06356bSdh 		}
14274c06356bSdh 		ddi_dma_free_handle(&pwp->cip_handles);
14284c06356bSdh 		ddi_dma_mem_free(&pwp->cip_acchdls);
14294c06356bSdh 		pwp->cip_handles = 0;
14304c06356bSdh 	}
14314c06356bSdh 	for (i = 0; i < PMCS_NOQ; i++) {
14324c06356bSdh 		if (pwp->oqp_handles[i]) {
14334c06356bSdh 			if (ddi_dma_unbind_handle(pwp->oqp_handles[i]) !=
14344c06356bSdh 			    DDI_SUCCESS) {
1435c3bc407cSdh 				pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
1436c3bc407cSdh 				    "Condition check failed at %s():%d",
1437c3bc407cSdh 				    __func__, __LINE__);
14384c06356bSdh 			}
14394c06356bSdh 			ddi_dma_free_handle(&pwp->oqp_handles[i]);
14404c06356bSdh 			ddi_dma_mem_free(&pwp->oqp_acchdls[i]);
14414c06356bSdh 			pwp->oqp_handles[i] = 0;
14424c06356bSdh 		}
14434c06356bSdh 	}
14444c06356bSdh 	for (i = 0; i < PMCS_NIQ; i++) {
14454c06356bSdh 		if (pwp->iqp_handles[i]) {
14464c06356bSdh 			if (ddi_dma_unbind_handle(pwp->iqp_handles[i]) !=
14474c06356bSdh 			    DDI_SUCCESS) {
1448c3bc407cSdh 				pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
1449c3bc407cSdh 				    "Condition check failed at %s():%d",
1450c3bc407cSdh 				    __func__, __LINE__);
14514c06356bSdh 			}
14524c06356bSdh 			ddi_dma_free_handle(&pwp->iqp_handles[i]);
14534c06356bSdh 			ddi_dma_mem_free(&pwp->iqp_acchdls[i]);
14544c06356bSdh 			pwp->iqp_handles[i] = 0;
14554c06356bSdh 		}
14564c06356bSdh 	}
14574c06356bSdh 
14584c06356bSdh 	pmcs_free_dma_chunklist(pwp);
14594c06356bSdh 
14604c06356bSdh 	/*
14614c06356bSdh 	 * Unmap registers and destroy access handles
14624c06356bSdh 	 */
14634c06356bSdh 	if (pwp->mpi_acc_handle) {
14644c06356bSdh 		ddi_regs_map_free(&pwp->mpi_acc_handle);
14654c06356bSdh 		pwp->mpi_acc_handle = 0;
14664c06356bSdh 	}
14674c06356bSdh 	if (pwp->top_acc_handle) {
14684c06356bSdh 		ddi_regs_map_free(&pwp->top_acc_handle);
14694c06356bSdh 		pwp->top_acc_handle = 0;
14704c06356bSdh 	}
14714c06356bSdh 	if (pwp->gsm_acc_handle) {
14724c06356bSdh 		ddi_regs_map_free(&pwp->gsm_acc_handle);
14734c06356bSdh 		pwp->gsm_acc_handle = 0;
14744c06356bSdh 	}
14754c06356bSdh 	if (pwp->msg_acc_handle) {
14764c06356bSdh 		ddi_regs_map_free(&pwp->msg_acc_handle);
14774c06356bSdh 		pwp->msg_acc_handle = 0;
14784c06356bSdh 	}
14794c06356bSdh 	if (pwp->pci_acc_handle) {
14804c06356bSdh 		pci_config_teardown(&pwp->pci_acc_handle);
14814c06356bSdh 		pwp->pci_acc_handle = 0;
14824c06356bSdh 	}
14834c06356bSdh 
14844c06356bSdh 	/*
14854c06356bSdh 	 * Do memory allocation cleanup.
14864c06356bSdh 	 */
14874c06356bSdh 	while (pwp->dma_freelist) {
14884c06356bSdh 		pmcs_dmachunk_t *this = pwp->dma_freelist;
14894c06356bSdh 		pwp->dma_freelist = this->nxt;
14904c06356bSdh 		kmem_free(this, sizeof (pmcs_dmachunk_t));
14914c06356bSdh 	}
14924c06356bSdh 
14934c06356bSdh 	/*
14944c06356bSdh 	 * Free pools
14954c06356bSdh 	 */
14964c06356bSdh 	if (pwp->iocomp_cb_cache) {
14974c06356bSdh 		kmem_cache_destroy(pwp->iocomp_cb_cache);
14984c06356bSdh 	}
14994c06356bSdh 
15004c06356bSdh 	/*
15014c06356bSdh 	 * Free all PHYs (at level > 0), then free the cache
15024c06356bSdh 	 */
15034c06356bSdh 	pmcs_free_all_phys(pwp, pwp->root_phys);
15044c06356bSdh 	if (pwp->phy_cache) {
15054c06356bSdh 		kmem_cache_destroy(pwp->phy_cache);
15064c06356bSdh 	}
15074c06356bSdh 
15084c06356bSdh 	/*
15094c06356bSdh 	 * Free root PHYs
15104c06356bSdh 	 */
15114c06356bSdh 	if (pwp->root_phys) {
15124c06356bSdh 		pmcs_phy_t *phyp = pwp->root_phys;
15134c06356bSdh 		for (i = 0; i < pwp->nphy; i++) {
15144c06356bSdh 			mutex_destroy(&phyp->phy_lock);
15154c06356bSdh 			phyp = phyp->sibling;
15164c06356bSdh 		}
15174c06356bSdh 		kmem_free(pwp->root_phys, pwp->nphy * sizeof (pmcs_phy_t));
15184c06356bSdh 		pwp->root_phys = NULL;
15194c06356bSdh 		pwp->nphy = 0;
15204c06356bSdh 	}
15214c06356bSdh 
15224c06356bSdh 	/* Free the targets list */
15234c06356bSdh 	if (pwp->targets) {
15244c06356bSdh 		kmem_free(pwp->targets,
15254c06356bSdh 		    sizeof (pmcs_xscsi_t *) * pwp->max_dev);
15264c06356bSdh 	}
15274c06356bSdh 
15284c06356bSdh 	/*
15294c06356bSdh 	 * Free work structures
15304c06356bSdh 	 */
15314c06356bSdh 
15324c06356bSdh 	if (pwp->work && pwp->max_cmd) {
15334c06356bSdh 		for (i = 0; i < pwp->max_cmd - 1; i++) {
15344c06356bSdh 			pmcwork_t *pwrk = &pwp->work[i];
15354c06356bSdh 			mutex_destroy(&pwrk->lock);
15364c06356bSdh 			cv_destroy(&pwrk->sleep_cv);
15374c06356bSdh 		}
15384c06356bSdh 		kmem_free(pwp->work, sizeof (pmcwork_t) * pwp->max_cmd);
15394c06356bSdh 		pwp->work = NULL;
15404c06356bSdh 		pwp->max_cmd = 0;
15414c06356bSdh 	}
15424c06356bSdh 
15434c06356bSdh 	/*
15444c06356bSdh 	 * Do last property and SCSA cleanup
15454c06356bSdh 	 */
15464c06356bSdh 	if (pwp->tran) {
15474c06356bSdh 		scsi_hba_tran_free(pwp->tran);
15484c06356bSdh 		pwp->tran = NULL;
15494c06356bSdh 	}
15504c06356bSdh 	if (pwp->reset_notify_listf) {
15514c06356bSdh 		scsi_hba_reset_notify_tear_down(pwp->reset_notify_listf);
15524c06356bSdh 		pwp->reset_notify_listf = NULL;
15534c06356bSdh 	}
15544c06356bSdh 	ddi_prop_remove_all(pwp->dip);
15554c06356bSdh 	if (pwp->stuck) {
15564c06356bSdh 		return (-1);
15574c06356bSdh 	}
15584c06356bSdh 
15594c06356bSdh 	/* Free register dump area if allocated */
15604c06356bSdh 	if (pwp->regdumpp) {
15614c06356bSdh 		kmem_free(pwp->regdumpp, PMCS_REG_DUMP_SIZE);
15624c06356bSdh 		pwp->regdumpp = NULL;
15634c06356bSdh 	}
15644c06356bSdh 	if (pwp->iqpt && pwp->iqpt->head) {
15654c06356bSdh 		kmem_free(pwp->iqpt->head, PMCS_IQP_TRACE_BUFFER_SIZE);
15664c06356bSdh 		pwp->iqpt->head = pwp->iqpt->curpos = NULL;
15674c06356bSdh 	}
15684c06356bSdh 	if (pwp->iqpt) {
15694c06356bSdh 		kmem_free(pwp->iqpt, sizeof (pmcs_iqp_trace_t));
15704c06356bSdh 		pwp->iqpt = NULL;
15714c06356bSdh 	}
15724c06356bSdh 
15734c06356bSdh 	ddi_soft_state_free(pmcs_softc_state, ddi_get_instance(pwp->dip));
15744c06356bSdh 	return (0);
15754c06356bSdh }
15764c06356bSdh 
15774c06356bSdh /*
15784c06356bSdh  * quiesce (9E) entry point
15794c06356bSdh  *
15804c06356bSdh  * This function is called when the system is single-threaded at high PIL
15814c06356bSdh  * with preemption disabled. Therefore, the function must not block/wait/sleep.
15824c06356bSdh  *
15834c06356bSdh  * Returns DDI_SUCCESS or DDI_FAILURE.
15844c06356bSdh  *
15854c06356bSdh  */
15864c06356bSdh static int
15874c06356bSdh pmcs_quiesce(dev_info_t *dip)
15884c06356bSdh {
15894c06356bSdh 	pmcs_hw_t	*pwp;
15904c06356bSdh 	scsi_hba_tran_t	*tran;
15914c06356bSdh 
15924c06356bSdh 	if ((tran = ddi_get_driver_private(dip)) == NULL)
15934c06356bSdh 		return (DDI_SUCCESS);
15944c06356bSdh 
15954c06356bSdh 	/* No quiesce necessary on a per-iport basis */
15964c06356bSdh 	if (scsi_hba_iport_unit_address(dip) != NULL) {
15974c06356bSdh 		return (DDI_SUCCESS);
15984c06356bSdh 	}
15994c06356bSdh 
16004c06356bSdh 	if ((pwp = TRAN2PMC(tran)) == NULL)
16014c06356bSdh 		return (DDI_SUCCESS);
16024c06356bSdh 
16034c06356bSdh 	/* Stop MPI & Reset chip (no need to re-initialize) */
16044c06356bSdh 	(void) pmcs_stop_mpi(pwp);
16054c06356bSdh 	(void) pmcs_soft_reset(pwp, B_TRUE);
16064c06356bSdh 
16074c06356bSdh 	return (DDI_SUCCESS);
16084c06356bSdh }
16094c06356bSdh 
16104c06356bSdh /*
16114c06356bSdh  * Called with xp->statlock and PHY lock and scratch acquired.
16124c06356bSdh  */
16134c06356bSdh static int
16144c06356bSdh pmcs_add_sata_device(pmcs_hw_t *pwp, pmcs_xscsi_t *xp)
16154c06356bSdh {
16164c06356bSdh 	ata_identify_t *ati;
16174c06356bSdh 	int result, i;
16184c06356bSdh 	pmcs_phy_t *pptr;
16194c06356bSdh 	uint16_t *a;
16204c06356bSdh 	union {
16214c06356bSdh 		uint8_t nsa[8];
16224c06356bSdh 		uint16_t nsb[4];
16234c06356bSdh 	} u;
16244c06356bSdh 
16254c06356bSdh 	/*
16264c06356bSdh 	 * Safe defaults - use only if this target is brand new (i.e. doesn't
16274c06356bSdh 	 * already have these settings configured)
16284c06356bSdh 	 */
16294c06356bSdh 	if (xp->capacity == 0) {
16304c06356bSdh 		xp->capacity = (uint64_t)-1;
16314c06356bSdh 		xp->ca = 1;
16324c06356bSdh 		xp->qdepth = 1;
16334c06356bSdh 		xp->pio = 1;
16344c06356bSdh 	}
16354c06356bSdh 
16364c06356bSdh 	pptr = xp->phy;
16374c06356bSdh 
16384c06356bSdh 	/*
16394c06356bSdh 	 * We only try and issue an IDENTIFY for first level
16404c06356bSdh 	 * (direct attached) devices. We don't try and
16414c06356bSdh 	 * set other quirks here (this will happen later,
16424c06356bSdh 	 * if the device is fully configured)
16434c06356bSdh 	 */
16444c06356bSdh 	if (pptr->level) {
16454c06356bSdh 		return (0);
16464c06356bSdh 	}
16474c06356bSdh 
16484c06356bSdh 	mutex_exit(&xp->statlock);
16494c06356bSdh 	result = pmcs_sata_identify(pwp, pptr);
16504c06356bSdh 	mutex_enter(&xp->statlock);
16514c06356bSdh 
16524c06356bSdh 	if (result) {
16534c06356bSdh 		return (result);
16544c06356bSdh 	}
16554c06356bSdh 	ati = pwp->scratch;
16564c06356bSdh 	a = &ati->word108;
16574c06356bSdh 	for (i = 0; i < 4; i++) {
16584c06356bSdh 		u.nsb[i] = ddi_swap16(*a++);
16594c06356bSdh 	}
16604c06356bSdh 
16614c06356bSdh 	/*
16624c06356bSdh 	 * Check the returned data for being a valid (NAA=5) WWN.
16634c06356bSdh 	 * If so, use that and override the SAS address we were
16644c06356bSdh 	 * given at Link Up time.
16654c06356bSdh 	 */
16664c06356bSdh 	if ((u.nsa[0] >> 4) == 5) {
16674c06356bSdh 		(void) memcpy(pptr->sas_address, u.nsa, 8);
16684c06356bSdh 	}
1669c3bc407cSdh 	pmcs_prt(pwp, PMCS_PRT_DEBUG, pptr, xp,
1670c3bc407cSdh 	    "%s: %s has SAS ADDRESS " SAS_ADDR_FMT,
16714c06356bSdh 	    __func__, pptr->path, SAS_ADDR_PRT(pptr->sas_address));
16724c06356bSdh 	return (0);
16734c06356bSdh }
16744c06356bSdh 
16754c06356bSdh /*
16764c06356bSdh  * Called with PHY lock and target statlock held and scratch acquired
16774c06356bSdh  */
16784c06356bSdh static boolean_t
16794c06356bSdh pmcs_add_new_device(pmcs_hw_t *pwp, pmcs_xscsi_t *target)
16804c06356bSdh {
16814c06356bSdh 	ASSERT(target != NULL);
1682c3bc407cSdh 	pmcs_prt(pwp, PMCS_PRT_DEBUG_CONFIG, NULL, target, "%s: target = 0x%p",
16834c06356bSdh 	    __func__, (void *) target);
16844c06356bSdh 
16854c06356bSdh 	switch (target->phy->dtype) {
16864c06356bSdh 	case SATA:
16874c06356bSdh 		if (pmcs_add_sata_device(pwp, target) != 0) {
1688c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG_CONFIG, target->phy,
1689c3bc407cSdh 			    target, "%s: add_sata_device failed for tgt 0x%p",
16904c06356bSdh 			    __func__, (void *) target);
16914c06356bSdh 			return (B_FALSE);
16924c06356bSdh 		}
16934c06356bSdh 		break;
16944c06356bSdh 	case SAS:
16954c06356bSdh 		target->qdepth = maxqdepth;
16964c06356bSdh 		break;
16974c06356bSdh 	case EXPANDER:
16984c06356bSdh 		target->qdepth = 1;
16994c06356bSdh 		break;
17004c06356bSdh 	}
17014c06356bSdh 
17024c06356bSdh 	target->new = 0;
17034c06356bSdh 	target->assigned = 1;
17044c06356bSdh 	target->dev_state = PMCS_DEVICE_STATE_OPERATIONAL;
17054c06356bSdh 	target->dtype = target->phy->dtype;
17064c06356bSdh 
17074c06356bSdh 	/*
17084c06356bSdh 	 * Set the PHY's config stop time to 0.  This is one of the final
17094c06356bSdh 	 * stops along the config path, so we're indicating that we
17104c06356bSdh 	 * successfully configured the PHY.
17114c06356bSdh 	 */
17124c06356bSdh 	target->phy->config_stop = 0;
17134c06356bSdh 
17144c06356bSdh 	return (B_TRUE);
17154c06356bSdh }
17164c06356bSdh 
17174c06356bSdh void
17184c06356bSdh pmcs_worker(void *arg)
17194c06356bSdh {
17204c06356bSdh 	pmcs_hw_t *pwp = arg;
17214c06356bSdh 	ulong_t work_flags;
17224c06356bSdh 
17234c06356bSdh 	DTRACE_PROBE2(pmcs__worker, ulong_t, pwp->work_flags, boolean_t,
17244c06356bSdh 	    pwp->config_changed);
17254c06356bSdh 
17264c06356bSdh 	if (pwp->state != STATE_RUNNING) {
17274c06356bSdh 		return;
17284c06356bSdh 	}
17294c06356bSdh 
17304c06356bSdh 	work_flags = atomic_swap_ulong(&pwp->work_flags, 0);
17314c06356bSdh 
17324c06356bSdh 	if (work_flags & PMCS_WORK_FLAG_SAS_HW_ACK) {
17334c06356bSdh 		pmcs_ack_events(pwp);
17344c06356bSdh 	}
17354c06356bSdh 
17364c06356bSdh 	if (work_flags & PMCS_WORK_FLAG_SPINUP_RELEASE) {
17374c06356bSdh 		mutex_enter(&pwp->lock);
17384c06356bSdh 		pmcs_spinup_release(pwp, NULL);
17394c06356bSdh 		mutex_exit(&pwp->lock);
17404c06356bSdh 	}
17414c06356bSdh 
17424c06356bSdh 	if (work_flags & PMCS_WORK_FLAG_SSP_EVT_RECOVERY) {
17434c06356bSdh 		pmcs_ssp_event_recovery(pwp);
17444c06356bSdh 	}
17454c06356bSdh 
17464c06356bSdh 	if (work_flags & PMCS_WORK_FLAG_DS_ERR_RECOVERY) {
17474c06356bSdh 		pmcs_dev_state_recovery(pwp, NULL);
17484c06356bSdh 	}
17494c06356bSdh 
17504c06356bSdh 	if (work_flags & PMCS_WORK_FLAG_DISCOVER) {
17514c06356bSdh 		pmcs_discover(pwp);
17524c06356bSdh 	}
17534c06356bSdh 
17544c06356bSdh 	if (work_flags & PMCS_WORK_FLAG_ABORT_HANDLE) {
17554c06356bSdh 		if (pmcs_abort_handler(pwp)) {
17564c06356bSdh 			SCHEDULE_WORK(pwp, PMCS_WORK_ABORT_HANDLE);
17574c06356bSdh 		}
17584c06356bSdh 	}
17594c06356bSdh 
17604c06356bSdh 	if (work_flags & PMCS_WORK_FLAG_SATA_RUN) {
17614c06356bSdh 		pmcs_sata_work(pwp);
17624c06356bSdh 	}
17634c06356bSdh 
17644c06356bSdh 	if (work_flags & PMCS_WORK_FLAG_RUN_QUEUES) {
17654c06356bSdh 		pmcs_scsa_wq_run(pwp);
17664c06356bSdh 		mutex_enter(&pwp->lock);
17674c06356bSdh 		PMCS_CQ_RUN(pwp);
17684c06356bSdh 		mutex_exit(&pwp->lock);
17694c06356bSdh 	}
17704c06356bSdh 
17714c06356bSdh 	if (work_flags & PMCS_WORK_FLAG_ADD_DMA_CHUNKS) {
17724c06356bSdh 		if (pmcs_add_more_chunks(pwp,
17734c06356bSdh 		    ptob(1) * PMCS_ADDTL_CHUNK_PAGES)) {
17744c06356bSdh 			SCHEDULE_WORK(pwp, PMCS_WORK_ADD_DMA_CHUNKS);
17754c06356bSdh 		} else {
17764c06356bSdh 			SCHEDULE_WORK(pwp, PMCS_WORK_RUN_QUEUES);
17774c06356bSdh 		}
17784c06356bSdh 	}
17794c06356bSdh }
17804c06356bSdh 
17814c06356bSdh static int
17824c06356bSdh pmcs_add_more_chunks(pmcs_hw_t *pwp, unsigned long nsize)
17834c06356bSdh {
17844c06356bSdh 	pmcs_dmachunk_t *dc;
17854c06356bSdh 	unsigned long dl;
17864c06356bSdh 	pmcs_chunk_t	*pchunk = NULL;
17874c06356bSdh 
17884c06356bSdh 	pwp->cip_dma_attr.dma_attr_align = sizeof (uint32_t);
17894c06356bSdh 
17904c06356bSdh 	pchunk = kmem_zalloc(sizeof (pmcs_chunk_t), KM_SLEEP);
17914c06356bSdh 	if (pchunk == NULL) {
1792c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
17934c06356bSdh 		    "Not enough memory for DMA chunks");
17944c06356bSdh 		return (-1);
17954c06356bSdh 	}
17964c06356bSdh 
17974c06356bSdh 	if (pmcs_dma_setup(pwp, &pwp->cip_dma_attr, &pchunk->acc_handle,
17984c06356bSdh 	    &pchunk->dma_handle, nsize, (caddr_t *)&pchunk->addrp,
17994c06356bSdh 	    &pchunk->dma_addr) == B_FALSE) {
1800c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
1801c3bc407cSdh 		    "Failed to setup DMA for chunks");
18024c06356bSdh 		kmem_free(pchunk, sizeof (pmcs_chunk_t));
18034c06356bSdh 		return (-1);
18044c06356bSdh 	}
18054c06356bSdh 
18064c06356bSdh 	if ((pmcs_check_acc_handle(pchunk->acc_handle) != DDI_SUCCESS) ||
18074c06356bSdh 	    (pmcs_check_dma_handle(pchunk->dma_handle) != DDI_SUCCESS)) {
18084c06356bSdh 		ddi_fm_service_impact(pwp->dip, DDI_SERVICE_UNAFFECTED);
18094c06356bSdh 		return (-1);
18104c06356bSdh 	}
18114c06356bSdh 
18124c06356bSdh 	bzero(pchunk->addrp, nsize);
18134c06356bSdh 	dc = NULL;
18144c06356bSdh 	for (dl = 0; dl < (nsize / PMCS_SGL_CHUNKSZ); dl++) {
18154c06356bSdh 		pmcs_dmachunk_t *tmp;
18164c06356bSdh 		tmp = kmem_alloc(sizeof (pmcs_dmachunk_t), KM_SLEEP);
18174c06356bSdh 		tmp->nxt = dc;
18184c06356bSdh 		dc = tmp;
18194c06356bSdh 	}
18204c06356bSdh 	mutex_enter(&pwp->dma_lock);
18214c06356bSdh 	pmcs_idma_chunks(pwp, dc, pchunk, nsize);
18224c06356bSdh 	pwp->nchunks++;
18234c06356bSdh 	mutex_exit(&pwp->dma_lock);
18244c06356bSdh 	return (0);
18254c06356bSdh }
18264c06356bSdh 
18274c06356bSdh 
18284c06356bSdh static void
18294c06356bSdh pmcs_check_commands(pmcs_hw_t *pwp)
18304c06356bSdh {
18314c06356bSdh 	pmcs_cmd_t *sp;
18324c06356bSdh 	size_t amt;
18334c06356bSdh 	char path[32];
18344c06356bSdh 	pmcwork_t *pwrk;
18354c06356bSdh 	pmcs_xscsi_t *target;
18364c06356bSdh 	pmcs_phy_t *phyp;
18374c06356bSdh 
18384c06356bSdh 	for (pwrk = pwp->work; pwrk < &pwp->work[pwp->max_cmd]; pwrk++) {
18394c06356bSdh 		mutex_enter(&pwrk->lock);
18404c06356bSdh 
18414c06356bSdh 		/*
18424c06356bSdh 		 * If the command isn't active, we can't be timing it still.
18434c06356bSdh 		 * Active means the tag is not free and the state is "on chip".
18444c06356bSdh 		 */
18454c06356bSdh 		if (!PMCS_COMMAND_ACTIVE(pwrk)) {
18464c06356bSdh 			mutex_exit(&pwrk->lock);
18474c06356bSdh 			continue;
18484c06356bSdh 		}
18494c06356bSdh 
18504c06356bSdh 		/*
18514c06356bSdh 		 * No timer active for this command.
18524c06356bSdh 		 */
18534c06356bSdh 		if (pwrk->timer == 0) {
18544c06356bSdh 			mutex_exit(&pwrk->lock);
18554c06356bSdh 			continue;
18564c06356bSdh 		}
18574c06356bSdh 
18584c06356bSdh 		/*
18594c06356bSdh 		 * Knock off bits for the time interval.
18604c06356bSdh 		 */
18614c06356bSdh 		if (pwrk->timer >= US2WT(PMCS_WATCH_INTERVAL)) {
18624c06356bSdh 			pwrk->timer -= US2WT(PMCS_WATCH_INTERVAL);
18634c06356bSdh 		} else {
18644c06356bSdh 			pwrk->timer = 0;
18654c06356bSdh 		}
18664c06356bSdh 		if (pwrk->timer > 0) {
18674c06356bSdh 			mutex_exit(&pwrk->lock);
18684c06356bSdh 			continue;
18694c06356bSdh 		}
18704c06356bSdh 
18714c06356bSdh 		/*
18724c06356bSdh 		 * The command has now officially timed out.
18734c06356bSdh 		 * Get the path for it. If it doesn't have
18744c06356bSdh 		 * a phy pointer any more, it's really dead
18754c06356bSdh 		 * and can just be put back on the free list.
18764c06356bSdh 		 * There should *not* be any commands associated
18774c06356bSdh 		 * with it any more.
18784c06356bSdh 		 */
18794c06356bSdh 		if (pwrk->phy == NULL) {
1880c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
18814c06356bSdh 			    "dead command with gone phy being recycled");
18824c06356bSdh 			ASSERT(pwrk->xp == NULL);
18834c06356bSdh 			pmcs_pwork(pwp, pwrk);
18844c06356bSdh 			continue;
18854c06356bSdh 		}
18864c06356bSdh 		amt = sizeof (path);
18874c06356bSdh 		amt = min(sizeof (pwrk->phy->path), amt);
18884c06356bSdh 		(void) memcpy(path, pwrk->phy->path, amt);
18894c06356bSdh 
18904c06356bSdh 		/*
18914c06356bSdh 		 * If this is a non-SCSA command, stop here. Eventually
18924c06356bSdh 		 * we might do something with non-SCSA commands here-
18934c06356bSdh 		 * but so far their timeout mechanisms are handled in
18944c06356bSdh 		 * the WAIT_FOR macro.
18954c06356bSdh 		 */
18964c06356bSdh 		if (pwrk->xp == NULL) {
1897c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
18984c06356bSdh 			    "%s: non-SCSA cmd tag 0x%x timed out",
18994c06356bSdh 			    path, pwrk->htag);
19004c06356bSdh 			mutex_exit(&pwrk->lock);
19014c06356bSdh 			continue;
19024c06356bSdh 		}
19034c06356bSdh 
19044c06356bSdh 		sp = pwrk->arg;
19054c06356bSdh 		ASSERT(sp != NULL);
19064c06356bSdh 
19074c06356bSdh 		/*
19084c06356bSdh 		 * Mark it as timed out.
19094c06356bSdh 		 */
19104c06356bSdh 		CMD2PKT(sp)->pkt_reason = CMD_TIMEOUT;
19114c06356bSdh 		CMD2PKT(sp)->pkt_statistics |= STAT_TIMEOUT;
19124c06356bSdh #ifdef	DEBUG
1913c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, pwrk->phy, pwrk->xp,
19144c06356bSdh 		    "%s: SCSA cmd tag 0x%x timed out (state %x) onwire=%d",
19154c06356bSdh 		    path, pwrk->htag, pwrk->state, pwrk->onwire);
19164c06356bSdh #else
1917c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, pwrk->phy, pwrk->xp,
19184c06356bSdh 		    "%s: SCSA cmd tag 0x%x timed out (state %x)",
19194c06356bSdh 		    path, pwrk->htag, pwrk->state);
19204c06356bSdh #endif
19214c06356bSdh 		/*
19224c06356bSdh 		 * Mark the work structure as timed out.
19234c06356bSdh 		 */
19244c06356bSdh 		pwrk->state = PMCS_WORK_STATE_TIMED_OUT;
19254c06356bSdh 		phyp = pwrk->phy;
19264c06356bSdh 		target = pwrk->xp;
19274c06356bSdh 		mutex_exit(&pwrk->lock);
19284c06356bSdh 
19294c06356bSdh 		pmcs_lock_phy(phyp);
19304c06356bSdh 		mutex_enter(&target->statlock);
19314c06356bSdh 
19324c06356bSdh 		/*
19334c06356bSdh 		 * No point attempting recovery if the device is gone
19344c06356bSdh 		 */
1935*145e0143Sdh 		if (target->dev_gone) {
19364c06356bSdh 			mutex_exit(&target->statlock);
19374c06356bSdh 			pmcs_unlock_phy(phyp);
1938c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG, phyp, target,
19394c06356bSdh 			    "%s: tgt(0x%p) is gone. Returning CMD_DEV_GONE "
19404c06356bSdh 			    "for htag 0x%08x", __func__,
1941*145e0143Sdh 			    (void *)target, pwrk->htag);
19424c06356bSdh 			mutex_enter(&pwrk->lock);
19434c06356bSdh 			if (!PMCS_COMMAND_DONE(pwrk)) {
19444c06356bSdh 				/* Complete this command here */
1945c3bc407cSdh 				pmcs_prt(pwp, PMCS_PRT_DEBUG, phyp, target,
1946c3bc407cSdh 				    "%s: Completing cmd (htag 0x%08x) "
19474c06356bSdh 				    "anyway", __func__, pwrk->htag);
19484c06356bSdh 				pwrk->dead = 1;
19494c06356bSdh 				CMD2PKT(sp)->pkt_reason = CMD_DEV_GONE;
19504c06356bSdh 				CMD2PKT(sp)->pkt_state = STATE_GOT_BUS;
19514c06356bSdh 				pmcs_complete_work_impl(pwp, pwrk, NULL, 0);
19524c06356bSdh 			} else {
19534c06356bSdh 				mutex_exit(&pwrk->lock);
19544c06356bSdh 			}
19554c06356bSdh 			continue;
19564c06356bSdh 		}
19574c06356bSdh 
19584c06356bSdh 		/*
19594c06356bSdh 		 * See if we're already waiting for device state recovery
19604c06356bSdh 		 */
19614c06356bSdh 		if (target->recover_wait) {
1962c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG_DEV_STATE, phyp, target,
19634c06356bSdh 			    "%s: Target %p already in recovery", __func__,
19644c06356bSdh 			    (void *)target);
19654c06356bSdh 			mutex_exit(&target->statlock);
19664c06356bSdh 			pmcs_unlock_phy(phyp);
19674c06356bSdh 			continue;
19684c06356bSdh 		}
19694c06356bSdh 
19704c06356bSdh 		pmcs_start_dev_state_recovery(target, phyp);
19714c06356bSdh 		mutex_exit(&target->statlock);
19724c06356bSdh 		pmcs_unlock_phy(phyp);
19734c06356bSdh 	}
19744c06356bSdh 	/*
19754c06356bSdh 	 * Run any completions that may have been queued up.
19764c06356bSdh 	 */
19774c06356bSdh 	PMCS_CQ_RUN(pwp);
19784c06356bSdh }
19794c06356bSdh 
19804c06356bSdh static void
19814c06356bSdh pmcs_watchdog(void *arg)
19824c06356bSdh {
19834c06356bSdh 	pmcs_hw_t *pwp = arg;
19844c06356bSdh 
19854c06356bSdh 	DTRACE_PROBE2(pmcs__watchdog, ulong_t, pwp->work_flags, boolean_t,
19864c06356bSdh 	    pwp->config_changed);
19874c06356bSdh 
19884c06356bSdh 	mutex_enter(&pwp->lock);
19894c06356bSdh 
19904c06356bSdh 	if (pwp->state != STATE_RUNNING) {
19914c06356bSdh 		mutex_exit(&pwp->lock);
19924c06356bSdh 		return;
19934c06356bSdh 	}
19944c06356bSdh 
19954c06356bSdh 	if (atomic_cas_ulong(&pwp->work_flags, 0, 0) != 0) {
19964c06356bSdh 		if (ddi_taskq_dispatch(pwp->tq, pmcs_worker, pwp,
19974c06356bSdh 		    DDI_NOSLEEP) != DDI_SUCCESS) {
1998c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
19994c06356bSdh 			    "Could not dispatch to worker thread");
20004c06356bSdh 		}
20014c06356bSdh 	}
20024c06356bSdh 	pwp->wdhandle = timeout(pmcs_watchdog, pwp,
20034c06356bSdh 	    drv_usectohz(PMCS_WATCH_INTERVAL));
20044c06356bSdh 	mutex_exit(&pwp->lock);
20054c06356bSdh 	pmcs_check_commands(pwp);
20064c06356bSdh 	pmcs_handle_dead_phys(pwp);
20074c06356bSdh }
20084c06356bSdh 
20094c06356bSdh static int
20104c06356bSdh pmcs_remove_ihandlers(pmcs_hw_t *pwp, int icnt)
20114c06356bSdh {
20124c06356bSdh 	int i, r, rslt = 0;
20134c06356bSdh 	for (i = 0; i < icnt; i++) {
20144c06356bSdh 		r = ddi_intr_remove_handler(pwp->ih_table[i]);
20154c06356bSdh 		if (r == DDI_SUCCESS) {
20164c06356bSdh 			continue;
20174c06356bSdh 		}
2018c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
20194c06356bSdh 		    "%s: unable to remove interrupt handler %d", __func__, i);
20204c06356bSdh 		rslt = -1;
20214c06356bSdh 		break;
20224c06356bSdh 	}
20234c06356bSdh 	return (rslt);
20244c06356bSdh }
20254c06356bSdh 
20264c06356bSdh static int
20274c06356bSdh pmcs_disable_intrs(pmcs_hw_t *pwp, int icnt)
20284c06356bSdh {
20294c06356bSdh 	if (pwp->intr_cap & DDI_INTR_FLAG_BLOCK) {
20304c06356bSdh 		int r = ddi_intr_block_disable(&pwp->ih_table[0],
20314c06356bSdh 		    pwp->intr_cnt);
20324c06356bSdh 		if (r != DDI_SUCCESS) {
2033c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
20344c06356bSdh 			    "unable to disable interrupt block");
20354c06356bSdh 			return (-1);
20364c06356bSdh 		}
20374c06356bSdh 	} else {
20384c06356bSdh 		int i;
20394c06356bSdh 		for (i = 0; i < icnt; i++) {
20404c06356bSdh 			if (ddi_intr_disable(pwp->ih_table[i]) == DDI_SUCCESS) {
20414c06356bSdh 				continue;
20424c06356bSdh 			}
2043c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
20444c06356bSdh 			    "unable to disable interrupt %d", i);
20454c06356bSdh 			return (-1);
20464c06356bSdh 		}
20474c06356bSdh 	}
20484c06356bSdh 	return (0);
20494c06356bSdh }
20504c06356bSdh 
20514c06356bSdh static int
20524c06356bSdh pmcs_free_intrs(pmcs_hw_t *pwp, int icnt)
20534c06356bSdh {
20544c06356bSdh 	int i;
20554c06356bSdh 	for (i = 0; i < icnt; i++) {
20564c06356bSdh 		if (ddi_intr_free(pwp->ih_table[i]) == DDI_SUCCESS) {
20574c06356bSdh 			continue;
20584c06356bSdh 		}
2059c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
2060c3bc407cSdh 		    "unable to free interrupt %d", i);
20614c06356bSdh 		return (-1);
20624c06356bSdh 	}
20634c06356bSdh 	kmem_free(pwp->ih_table, pwp->ih_table_size);
20644c06356bSdh 	pwp->ih_table_size = 0;
20654c06356bSdh 	return (0);
20664c06356bSdh }
20674c06356bSdh 
20684c06356bSdh /*
20694c06356bSdh  * Try to set up interrupts of type "type" with a minimum number of interrupts
20704c06356bSdh  * of "min".
20714c06356bSdh  */
20724c06356bSdh static void
20734c06356bSdh pmcs_setup_intr_impl(pmcs_hw_t *pwp, int type, int min)
20744c06356bSdh {
20754c06356bSdh 	int rval, avail, count, actual, max;
20764c06356bSdh 
20774c06356bSdh 	rval = ddi_intr_get_nintrs(pwp->dip, type, &count);
20784c06356bSdh 	if ((rval != DDI_SUCCESS) || (count < min)) {
2079c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG_CONFIG, NULL, NULL,
20804c06356bSdh 		    "%s: get_nintrs failed; type: %d rc: %d count: %d min: %d",
20814c06356bSdh 		    __func__, type, rval, count, min);
20824c06356bSdh 		return;
20834c06356bSdh 	}
20844c06356bSdh 
2085c3bc407cSdh 	pmcs_prt(pwp, PMCS_PRT_DEBUG_CONFIG, NULL, NULL,
20864c06356bSdh 	    "%s: nintrs = %d for type: %d", __func__, count, type);
20874c06356bSdh 
20884c06356bSdh 	rval = ddi_intr_get_navail(pwp->dip, type, &avail);
20894c06356bSdh 	if ((rval != DDI_SUCCESS) || (avail < min)) {
2090c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG_CONFIG, NULL, NULL,
20914c06356bSdh 		    "%s: get_navail failed; type: %d rc: %d avail: %d min: %d",
20924c06356bSdh 		    __func__, type, rval, avail, min);
20934c06356bSdh 		return;
20944c06356bSdh 	}
20954c06356bSdh 
2096c3bc407cSdh 	pmcs_prt(pwp, PMCS_PRT_DEBUG_CONFIG, NULL, NULL,
20974c06356bSdh 	    "%s: navail = %d for type: %d", __func__, avail, type);
20984c06356bSdh 
20994c06356bSdh 	pwp->ih_table_size = avail * sizeof (ddi_intr_handle_t);
21004c06356bSdh 	pwp->ih_table = kmem_alloc(pwp->ih_table_size, KM_SLEEP);
21014c06356bSdh 
21024c06356bSdh 	switch (type) {
21034c06356bSdh 	case DDI_INTR_TYPE_MSIX:
21044c06356bSdh 		pwp->int_type = PMCS_INT_MSIX;
21054c06356bSdh 		max = PMCS_MAX_MSIX;
21064c06356bSdh 		break;
21074c06356bSdh 	case DDI_INTR_TYPE_MSI:
21084c06356bSdh 		pwp->int_type = PMCS_INT_MSI;
21094c06356bSdh 		max = PMCS_MAX_MSI;
21104c06356bSdh 		break;
21114c06356bSdh 	case DDI_INTR_TYPE_FIXED:
21124c06356bSdh 	default:
21134c06356bSdh 		pwp->int_type = PMCS_INT_FIXED;
21144c06356bSdh 		max = PMCS_MAX_FIXED;
21154c06356bSdh 		break;
21164c06356bSdh 	}
21174c06356bSdh 
21184c06356bSdh 	rval = ddi_intr_alloc(pwp->dip, pwp->ih_table, type, 0, max, &actual,
21194c06356bSdh 	    DDI_INTR_ALLOC_NORMAL);
21204c06356bSdh 	if (rval != DDI_SUCCESS) {
2121c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG_CONFIG, NULL, NULL,
21224c06356bSdh 		    "%s: ddi_intr_alloc failed; type: %d rc: %d",
21234c06356bSdh 		    __func__, type, rval);
21244c06356bSdh 		kmem_free(pwp->ih_table, pwp->ih_table_size);
21254c06356bSdh 		pwp->ih_table = NULL;
21264c06356bSdh 		pwp->ih_table_size = 0;
21274c06356bSdh 		pwp->intr_cnt = 0;
21284c06356bSdh 		pwp->int_type = PMCS_INT_NONE;
21294c06356bSdh 		return;
21304c06356bSdh 	}
21314c06356bSdh 
21324c06356bSdh 	pwp->intr_cnt = actual;
21334c06356bSdh }
21344c06356bSdh 
21354c06356bSdh /*
21364c06356bSdh  * Set up interrupts.
21374c06356bSdh  * We return one of three values:
21384c06356bSdh  *
21394c06356bSdh  * 0 - success
21404c06356bSdh  * EAGAIN - failure to set up interrupts
21414c06356bSdh  * EIO - "" + we're now stuck partly enabled
21424c06356bSdh  *
21434c06356bSdh  * If EIO is returned, we can't unload the driver.
21444c06356bSdh  */
21454c06356bSdh static int
21464c06356bSdh pmcs_setup_intr(pmcs_hw_t *pwp)
21474c06356bSdh {
21484c06356bSdh 	int i, r, itypes, oqv_count;
21494c06356bSdh 	ddi_intr_handler_t **iv_table;
21504c06356bSdh 	size_t iv_table_size;
21514c06356bSdh 	uint_t pri;
21524c06356bSdh 
21534c06356bSdh 	if (ddi_intr_get_supported_types(pwp->dip, &itypes) != DDI_SUCCESS) {
2154c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
2155c3bc407cSdh 		    "cannot get interrupt types");
21564c06356bSdh 		return (EAGAIN);
21574c06356bSdh 	}
21584c06356bSdh 
21594c06356bSdh 	if (disable_msix) {
21604c06356bSdh 		itypes &= ~DDI_INTR_TYPE_MSIX;
21614c06356bSdh 	}
21624c06356bSdh 	if (disable_msi) {
21634c06356bSdh 		itypes &= ~DDI_INTR_TYPE_MSI;
21644c06356bSdh 	}
21654c06356bSdh 
21664c06356bSdh 	/*
21674c06356bSdh 	 * We won't know what firmware we're running until we call pmcs_setup,
21684c06356bSdh 	 * and we can't call pmcs_setup until we establish interrupts.
21694c06356bSdh 	 */
21704c06356bSdh 
21714c06356bSdh 	pwp->int_type = PMCS_INT_NONE;
21724c06356bSdh 
21734c06356bSdh 	/*
21744c06356bSdh 	 * We want PMCS_MAX_MSIX vectors for MSI-X.  Anything less would be
21754c06356bSdh 	 * uncivilized.
21764c06356bSdh 	 */
21774c06356bSdh 	if (itypes & DDI_INTR_TYPE_MSIX) {
21784c06356bSdh 		pmcs_setup_intr_impl(pwp, DDI_INTR_TYPE_MSIX, PMCS_MAX_MSIX);
21794c06356bSdh 		if (pwp->int_type == PMCS_INT_MSIX) {
21804c06356bSdh 			itypes = 0;
21814c06356bSdh 		}
21824c06356bSdh 	}
21834c06356bSdh 
21844c06356bSdh 	if (itypes & DDI_INTR_TYPE_MSI) {
21854c06356bSdh 		pmcs_setup_intr_impl(pwp, DDI_INTR_TYPE_MSI, 1);
21864c06356bSdh 		if (pwp->int_type == PMCS_INT_MSI) {
21874c06356bSdh 			itypes = 0;
21884c06356bSdh 		}
21894c06356bSdh 	}
21904c06356bSdh 
21914c06356bSdh 	if (itypes & DDI_INTR_TYPE_FIXED) {
21924c06356bSdh 		pmcs_setup_intr_impl(pwp, DDI_INTR_TYPE_FIXED, 1);
21934c06356bSdh 		if (pwp->int_type == PMCS_INT_FIXED) {
21944c06356bSdh 			itypes = 0;
21954c06356bSdh 		}
21964c06356bSdh 	}
21974c06356bSdh 
21984c06356bSdh 	if (pwp->intr_cnt == 0) {
2199c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_ERR, NULL, NULL,
2200c3bc407cSdh 		    "No interrupts available");
22014c06356bSdh 		return (EAGAIN);
22024c06356bSdh 	}
22034c06356bSdh 
22044c06356bSdh 	iv_table_size = sizeof (ddi_intr_handler_t *) * pwp->intr_cnt;
22054c06356bSdh 	iv_table = kmem_alloc(iv_table_size, KM_SLEEP);
22064c06356bSdh 
22074c06356bSdh 	/*
22084c06356bSdh 	 * Get iblock cookie and add handlers.
22094c06356bSdh 	 */
22104c06356bSdh 	switch (pwp->intr_cnt) {
22114c06356bSdh 	case 1:
22124c06356bSdh 		iv_table[0] = pmcs_all_intr;
22134c06356bSdh 		break;
22144c06356bSdh 	case 2:
22154c06356bSdh 		iv_table[0] = pmcs_iodone_ix;
22164c06356bSdh 		iv_table[1] = pmcs_nonio_ix;
22174c06356bSdh 		break;
22184c06356bSdh 	case 4:
22194c06356bSdh 		iv_table[PMCS_MSIX_GENERAL] = pmcs_general_ix;
22204c06356bSdh 		iv_table[PMCS_MSIX_IODONE] = pmcs_iodone_ix;
22214c06356bSdh 		iv_table[PMCS_MSIX_EVENTS] = pmcs_event_ix;
22224c06356bSdh 		iv_table[PMCS_MSIX_FATAL] = pmcs_fatal_ix;
22234c06356bSdh 		break;
22244c06356bSdh 	default:
2225c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
22264c06356bSdh 		    "%s: intr_cnt = %d - unexpected", __func__, pwp->intr_cnt);
22274c06356bSdh 		kmem_free(iv_table, iv_table_size);
22284c06356bSdh 		return (EAGAIN);
22294c06356bSdh 	}
22304c06356bSdh 
22314c06356bSdh 	for (i = 0; i < pwp->intr_cnt; i++) {
22324c06356bSdh 		r = ddi_intr_add_handler(pwp->ih_table[i], iv_table[i],
22334c06356bSdh 		    (caddr_t)pwp, NULL);
22344c06356bSdh 		if (r != DDI_SUCCESS) {
22354c06356bSdh 			kmem_free(iv_table, iv_table_size);
22364c06356bSdh 			if (pmcs_remove_ihandlers(pwp, i)) {
22374c06356bSdh 				return (EIO);
22384c06356bSdh 			}
22394c06356bSdh 			if (pmcs_free_intrs(pwp, i)) {
22404c06356bSdh 				return (EIO);
22414c06356bSdh 			}
22424c06356bSdh 			pwp->intr_cnt = 0;
22434c06356bSdh 			return (EAGAIN);
22444c06356bSdh 		}
22454c06356bSdh 	}
22464c06356bSdh 
22474c06356bSdh 	kmem_free(iv_table, iv_table_size);
22484c06356bSdh 
22494c06356bSdh 	if (ddi_intr_get_cap(pwp->ih_table[0], &pwp->intr_cap) != DDI_SUCCESS) {
2250c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
2251c3bc407cSdh 		    "unable to get int capabilities");
22524c06356bSdh 		if (pmcs_remove_ihandlers(pwp, pwp->intr_cnt)) {
22534c06356bSdh 			return (EIO);
22544c06356bSdh 		}
22554c06356bSdh 		if (pmcs_free_intrs(pwp, pwp->intr_cnt)) {
22564c06356bSdh 			return (EIO);
22574c06356bSdh 		}
22584c06356bSdh 		pwp->intr_cnt = 0;
22594c06356bSdh 		return (EAGAIN);
22604c06356bSdh 	}
22614c06356bSdh 
22624c06356bSdh 	if (pwp->intr_cap & DDI_INTR_FLAG_BLOCK) {
22634c06356bSdh 		r = ddi_intr_block_enable(&pwp->ih_table[0], pwp->intr_cnt);
22644c06356bSdh 		if (r != DDI_SUCCESS) {
2265c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
2266c3bc407cSdh 			    "intr blk enable failed");
22674c06356bSdh 			if (pmcs_remove_ihandlers(pwp, pwp->intr_cnt)) {
22684c06356bSdh 				return (EIO);
22694c06356bSdh 			}
22704c06356bSdh 			if (pmcs_free_intrs(pwp, pwp->intr_cnt)) {
22714c06356bSdh 				return (EIO);
22724c06356bSdh 			}
22734c06356bSdh 			pwp->intr_cnt = 0;
22744c06356bSdh 			return (EFAULT);
22754c06356bSdh 		}
22764c06356bSdh 	} else {
22774c06356bSdh 		for (i = 0; i < pwp->intr_cnt; i++) {
22784c06356bSdh 			r = ddi_intr_enable(pwp->ih_table[i]);
22794c06356bSdh 			if (r == DDI_SUCCESS) {
22804c06356bSdh 				continue;
22814c06356bSdh 			}
2282c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
22834c06356bSdh 			    "unable to enable interrupt %d", i);
22844c06356bSdh 			if (pmcs_disable_intrs(pwp, i)) {
22854c06356bSdh 				return (EIO);
22864c06356bSdh 			}
22874c06356bSdh 			if (pmcs_remove_ihandlers(pwp, pwp->intr_cnt)) {
22884c06356bSdh 				return (EIO);
22894c06356bSdh 			}
22904c06356bSdh 			if (pmcs_free_intrs(pwp, pwp->intr_cnt)) {
22914c06356bSdh 				return (EIO);
22924c06356bSdh 			}
22934c06356bSdh 			pwp->intr_cnt = 0;
22944c06356bSdh 			return (EAGAIN);
22954c06356bSdh 		}
22964c06356bSdh 	}
22974c06356bSdh 
22984c06356bSdh 	/*
22994c06356bSdh 	 * Set up locks.
23004c06356bSdh 	 */
23014c06356bSdh 	if (ddi_intr_get_pri(pwp->ih_table[0], &pri) != DDI_SUCCESS) {
2302c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
23034c06356bSdh 		    "unable to get interrupt priority");
23044c06356bSdh 		if (pmcs_disable_intrs(pwp, pwp->intr_cnt)) {
23054c06356bSdh 			return (EIO);
23064c06356bSdh 		}
23074c06356bSdh 		if (pmcs_remove_ihandlers(pwp, pwp->intr_cnt)) {
23084c06356bSdh 			return (EIO);
23094c06356bSdh 		}
23104c06356bSdh 		if (pmcs_free_intrs(pwp, pwp->intr_cnt)) {
23114c06356bSdh 			return (EIO);
23124c06356bSdh 		}
23134c06356bSdh 		pwp->intr_cnt = 0;
23144c06356bSdh 		return (EAGAIN);
23154c06356bSdh 	}
23164c06356bSdh 
23174c06356bSdh 	pwp->locks_initted = 1;
23184c06356bSdh 	pwp->intr_pri = pri;
23194c06356bSdh 	mutex_init(&pwp->lock, NULL, MUTEX_DRIVER, DDI_INTR_PRI(pri));
23204c06356bSdh 	mutex_init(&pwp->dma_lock, NULL, MUTEX_DRIVER, DDI_INTR_PRI(pri));
23214c06356bSdh 	mutex_init(&pwp->axil_lock, NULL, MUTEX_DRIVER, DDI_INTR_PRI(pri));
23224c06356bSdh 	mutex_init(&pwp->cq_lock, NULL, MUTEX_DRIVER, DDI_INTR_PRI(pri));
23234c06356bSdh 	mutex_init(&pwp->ict_lock, NULL, MUTEX_DRIVER, DDI_INTR_PRI(pri));
23244c06356bSdh 	mutex_init(&pwp->config_lock, NULL, MUTEX_DRIVER, DDI_INTR_PRI(pri));
23254c06356bSdh 	mutex_init(&pwp->wfree_lock, NULL, MUTEX_DRIVER, DDI_INTR_PRI(pri));
23264c06356bSdh 	mutex_init(&pwp->pfree_lock, NULL, MUTEX_DRIVER, DDI_INTR_PRI(pri));
23274c06356bSdh 	mutex_init(&pwp->dead_phylist_lock, NULL, MUTEX_DRIVER,
23284c06356bSdh 	    DDI_INTR_PRI(pri));
23294c06356bSdh #ifdef	DEBUG
23304c06356bSdh 	mutex_init(&pwp->dbglock, NULL, MUTEX_DRIVER, DDI_INTR_PRI(pri));
23314c06356bSdh #endif
23324c06356bSdh 	cv_init(&pwp->ict_cv, NULL, CV_DRIVER, NULL);
23334c06356bSdh 	cv_init(&pwp->drain_cv, NULL, CV_DRIVER, NULL);
23344c06356bSdh 	for (i = 0; i < PMCS_NIQ; i++) {
23354c06356bSdh 		mutex_init(&pwp->iqp_lock[i], NULL,
23364c06356bSdh 		    MUTEX_DRIVER, DDI_INTR_PRI(pwp->intr_pri));
23374c06356bSdh 	}
23384c06356bSdh 	for (i = 0; i < pwp->cq_info.cq_threads; i++) {
23394c06356bSdh 		mutex_init(&pwp->cq_info.cq_thr_info[i].cq_thr_lock, NULL,
23404c06356bSdh 		    MUTEX_DRIVER, DDI_INTR_PRI(pwp->intr_pri));
23414c06356bSdh 		cv_init(&pwp->cq_info.cq_thr_info[i].cq_cv, NULL,
23424c06356bSdh 		    CV_DRIVER, NULL);
23434c06356bSdh 	}
23444c06356bSdh 
2345c3bc407cSdh 	pmcs_prt(pwp, PMCS_PRT_INFO, NULL, NULL, "%d %s interrup%s configured",
23464c06356bSdh 	    pwp->intr_cnt, (pwp->int_type == PMCS_INT_MSIX)? "MSI-X" :
23474c06356bSdh 	    ((pwp->int_type == PMCS_INT_MSI)? "MSI" : "INT-X"),
23484c06356bSdh 	    pwp->intr_cnt == 1? "t" : "ts");
23494c06356bSdh 
23504c06356bSdh 
23514c06356bSdh 	/*
23524c06356bSdh 	 * Enable Interrupts
23534c06356bSdh 	 */
23544c06356bSdh 	if (pwp->intr_cnt > PMCS_NOQ) {
23554c06356bSdh 		oqv_count = pwp->intr_cnt;
23564c06356bSdh 	} else {
23574c06356bSdh 		oqv_count = PMCS_NOQ;
23584c06356bSdh 	}
23594c06356bSdh 	for (pri = 0xffffffff, i = 0; i < oqv_count; i++) {
23604c06356bSdh 		pri ^= (1 << i);
23614c06356bSdh 	}
23624c06356bSdh 
23634c06356bSdh 	mutex_enter(&pwp->lock);
23644c06356bSdh 	pwp->intr_mask = pri;
23654c06356bSdh 	pmcs_wr_msgunit(pwp, PMCS_MSGU_OBDB_MASK, pwp->intr_mask);
23664c06356bSdh 	pmcs_wr_msgunit(pwp, PMCS_MSGU_OBDB_CLEAR, 0xffffffff);
23674c06356bSdh 	mutex_exit(&pwp->lock);
23684c06356bSdh 
23694c06356bSdh 	return (0);
23704c06356bSdh }
23714c06356bSdh 
23724c06356bSdh static int
23734c06356bSdh pmcs_teardown_intr(pmcs_hw_t *pwp)
23744c06356bSdh {
23754c06356bSdh 	if (pwp->intr_cnt) {
23764c06356bSdh 		if (pmcs_disable_intrs(pwp, pwp->intr_cnt)) {
23774c06356bSdh 			return (EIO);
23784c06356bSdh 		}
23794c06356bSdh 		if (pmcs_remove_ihandlers(pwp, pwp->intr_cnt)) {
23804c06356bSdh 			return (EIO);
23814c06356bSdh 		}
23824c06356bSdh 		if (pmcs_free_intrs(pwp, pwp->intr_cnt)) {
23834c06356bSdh 			return (EIO);
23844c06356bSdh 		}
23854c06356bSdh 		pwp->intr_cnt = 0;
23864c06356bSdh 	}
23874c06356bSdh 	return (0);
23884c06356bSdh }
23894c06356bSdh 
23904c06356bSdh static uint_t
23914c06356bSdh pmcs_general_ix(caddr_t arg1, caddr_t arg2)
23924c06356bSdh {
23934c06356bSdh 	pmcs_hw_t *pwp = (pmcs_hw_t *)((void *)arg1);
23944c06356bSdh 	_NOTE(ARGUNUSED(arg2));
23954c06356bSdh 	pmcs_general_intr(pwp);
23964c06356bSdh 	return (DDI_INTR_CLAIMED);
23974c06356bSdh }
23984c06356bSdh 
23994c06356bSdh static uint_t
24004c06356bSdh pmcs_event_ix(caddr_t arg1, caddr_t arg2)
24014c06356bSdh {
24024c06356bSdh 	pmcs_hw_t *pwp = (pmcs_hw_t *)((void *)arg1);
24034c06356bSdh 	_NOTE(ARGUNUSED(arg2));
24044c06356bSdh 	pmcs_event_intr(pwp);
24054c06356bSdh 	return (DDI_INTR_CLAIMED);
24064c06356bSdh }
24074c06356bSdh 
24084c06356bSdh static uint_t
24094c06356bSdh pmcs_iodone_ix(caddr_t arg1, caddr_t arg2)
24104c06356bSdh {
24114c06356bSdh 	_NOTE(ARGUNUSED(arg2));
24124c06356bSdh 	pmcs_hw_t *pwp = (pmcs_hw_t *)((void *)arg1);
24134c06356bSdh 
24144c06356bSdh 	/*
24154c06356bSdh 	 * It's possible that if we just turned interrupt coalescing off
24164c06356bSdh 	 * (and thus, re-enabled auto clear for interrupts on the I/O outbound
24174c06356bSdh 	 * queue) that there was an interrupt already pending.  We use
24184c06356bSdh 	 * io_intr_coal.int_cleared to ensure that we still drop in here and
24194c06356bSdh 	 * clear the appropriate interrupt bit one last time.
24204c06356bSdh 	 */
24214c06356bSdh 	mutex_enter(&pwp->ict_lock);
24224c06356bSdh 	if (pwp->io_intr_coal.timer_on ||
24234c06356bSdh 	    (pwp->io_intr_coal.int_cleared == B_FALSE)) {
24244c06356bSdh 		pmcs_wr_msgunit(pwp, PMCS_MSGU_OBDB_CLEAR,
24254c06356bSdh 		    (1 << PMCS_OQ_IODONE));
24264c06356bSdh 		pwp->io_intr_coal.int_cleared = B_TRUE;
24274c06356bSdh 	}
24284c06356bSdh 	mutex_exit(&pwp->ict_lock);
24294c06356bSdh 
24304c06356bSdh 	pmcs_iodone_intr(pwp);
24314c06356bSdh 
24324c06356bSdh 	return (DDI_INTR_CLAIMED);
24334c06356bSdh }
24344c06356bSdh 
24354c06356bSdh static uint_t
24364c06356bSdh pmcs_fatal_ix(caddr_t arg1, caddr_t arg2)
24374c06356bSdh {
24384c06356bSdh 	pmcs_hw_t *pwp = (pmcs_hw_t *)((void *)arg1);
24394c06356bSdh 	_NOTE(ARGUNUSED(arg2));
24404c06356bSdh 	pmcs_fatal_handler(pwp);
24414c06356bSdh 	return (DDI_INTR_CLAIMED);
24424c06356bSdh }
24434c06356bSdh 
24444c06356bSdh static uint_t
24454c06356bSdh pmcs_nonio_ix(caddr_t arg1, caddr_t arg2)
24464c06356bSdh {
24474c06356bSdh 	_NOTE(ARGUNUSED(arg2));
24484c06356bSdh 	pmcs_hw_t *pwp = (void *)arg1;
24494c06356bSdh 	uint32_t obdb = pmcs_rd_msgunit(pwp, PMCS_MSGU_OBDB);
24504c06356bSdh 
24514c06356bSdh 	/*
24524c06356bSdh 	 * Check for Fatal Interrupts
24534c06356bSdh 	 */
24544c06356bSdh 	if (obdb & (1 << PMCS_FATAL_INTERRUPT)) {
24554c06356bSdh 		pmcs_fatal_handler(pwp);
24564c06356bSdh 		return (DDI_INTR_CLAIMED);
24574c06356bSdh 	}
24584c06356bSdh 
24594c06356bSdh 	if (obdb & (1 << PMCS_OQ_GENERAL)) {
24604c06356bSdh 		pmcs_wr_msgunit(pwp, PMCS_MSGU_OBDB_CLEAR,
24614c06356bSdh 		    (1 << PMCS_OQ_GENERAL));
24624c06356bSdh 		pmcs_general_intr(pwp);
24634c06356bSdh 		pmcs_event_intr(pwp);
24644c06356bSdh 	}
24654c06356bSdh 
24664c06356bSdh 	return (DDI_INTR_CLAIMED);
24674c06356bSdh }
24684c06356bSdh 
24694c06356bSdh static uint_t
24704c06356bSdh pmcs_all_intr(caddr_t arg1, caddr_t arg2)
24714c06356bSdh {
24724c06356bSdh 	_NOTE(ARGUNUSED(arg2));
24734c06356bSdh 	pmcs_hw_t *pwp = (void *) arg1;
24744c06356bSdh 	uint32_t obdb;
24754c06356bSdh 	int handled = 0;
24764c06356bSdh 
24774c06356bSdh 	obdb = pmcs_rd_msgunit(pwp, PMCS_MSGU_OBDB);
24784c06356bSdh 
24794c06356bSdh 	/*
24804c06356bSdh 	 * Check for Fatal Interrupts
24814c06356bSdh 	 */
24824c06356bSdh 	if (obdb & (1 << PMCS_FATAL_INTERRUPT)) {
24834c06356bSdh 		pmcs_fatal_handler(pwp);
24844c06356bSdh 		return (DDI_INTR_CLAIMED);
24854c06356bSdh 	}
24864c06356bSdh 
24874c06356bSdh 	/*
24884c06356bSdh 	 * Check for Outbound Queue service needed
24894c06356bSdh 	 */
24904c06356bSdh 	if (obdb & (1 << PMCS_OQ_IODONE)) {
24914c06356bSdh 		pmcs_wr_msgunit(pwp, PMCS_MSGU_OBDB_CLEAR,
24924c06356bSdh 		    (1 << PMCS_OQ_IODONE));
24934c06356bSdh 		obdb ^= (1 << PMCS_OQ_IODONE);
24944c06356bSdh 		handled++;
24954c06356bSdh 		pmcs_iodone_intr(pwp);
24964c06356bSdh 	}
24974c06356bSdh 	if (obdb & (1 << PMCS_OQ_GENERAL)) {
24984c06356bSdh 		pmcs_wr_msgunit(pwp, PMCS_MSGU_OBDB_CLEAR,
24994c06356bSdh 		    (1 << PMCS_OQ_GENERAL));
25004c06356bSdh 		obdb ^= (1 << PMCS_OQ_GENERAL);
25014c06356bSdh 		handled++;
25024c06356bSdh 		pmcs_general_intr(pwp);
25034c06356bSdh 	}
25044c06356bSdh 	if (obdb & (1 << PMCS_OQ_EVENTS)) {
25054c06356bSdh 		pmcs_wr_msgunit(pwp, PMCS_MSGU_OBDB_CLEAR,
25064c06356bSdh 		    (1 << PMCS_OQ_EVENTS));
25074c06356bSdh 		obdb ^= (1 << PMCS_OQ_EVENTS);
25084c06356bSdh 		handled++;
25094c06356bSdh 		pmcs_event_intr(pwp);
25104c06356bSdh 	}
25114c06356bSdh 	if (obdb) {
2512c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
25134c06356bSdh 		    "interrupt bits not handled (0x%x)", obdb);
25144c06356bSdh 		pmcs_wr_msgunit(pwp, PMCS_MSGU_OBDB_CLEAR, obdb);
25154c06356bSdh 		handled++;
25164c06356bSdh 	}
25174c06356bSdh 	if (pwp->int_type == PMCS_INT_MSI) {
25184c06356bSdh 		handled++;
25194c06356bSdh 	}
25204c06356bSdh 	return (handled? DDI_INTR_CLAIMED : DDI_INTR_UNCLAIMED);
25214c06356bSdh }
25224c06356bSdh 
25234c06356bSdh void
25244c06356bSdh pmcs_fatal_handler(pmcs_hw_t *pwp)
25254c06356bSdh {
2526c3bc407cSdh 	pmcs_prt(pwp, PMCS_PRT_ERR, NULL, NULL, "Fatal Interrupt caught");
25274c06356bSdh 	mutex_enter(&pwp->lock);
25284c06356bSdh 	pwp->state = STATE_DEAD;
25294c06356bSdh 	pmcs_register_dump_int(pwp);
25304c06356bSdh 	pmcs_wr_msgunit(pwp, PMCS_MSGU_OBDB_MASK, 0xffffffff);
25314c06356bSdh 	pmcs_wr_msgunit(pwp, PMCS_MSGU_OBDB_CLEAR, 0xffffffff);
25324c06356bSdh 	mutex_exit(&pwp->lock);
25334c06356bSdh 	pmcs_fm_ereport(pwp, DDI_FM_DEVICE_NO_RESPONSE);
25344c06356bSdh 	ddi_fm_service_impact(pwp->dip, DDI_SERVICE_LOST);
25354c06356bSdh 
25364c06356bSdh #ifdef	DEBUG
25374c06356bSdh 	cmn_err(CE_PANIC, "PMCS Fatal Firmware Error");
25384c06356bSdh #endif
25394c06356bSdh }
25404c06356bSdh 
25414c06356bSdh /*
25424c06356bSdh  * Called with PHY lock and target statlock held and scratch acquired.
25434c06356bSdh  */
25444c06356bSdh boolean_t
25454c06356bSdh pmcs_assign_device(pmcs_hw_t *pwp, pmcs_xscsi_t *tgt)
25464c06356bSdh {
25474c06356bSdh 	pmcs_phy_t *pptr = tgt->phy;
25484c06356bSdh 
25494c06356bSdh 	switch (pptr->dtype) {
25504c06356bSdh 	case SAS:
25514c06356bSdh 	case EXPANDER:
25524c06356bSdh 		break;
25534c06356bSdh 	case SATA:
25544c06356bSdh 		tgt->ca = 1;
25554c06356bSdh 		break;
25564c06356bSdh 	default:
2557c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG_CONFIG, pptr, tgt,
25584c06356bSdh 		    "%s: Target %p has PHY %p with invalid dtype",
25594c06356bSdh 		    __func__, (void *)tgt, (void *)pptr);
25604c06356bSdh 		return (B_FALSE);
25614c06356bSdh 	}
25624c06356bSdh 
25634c06356bSdh 	tgt->new = 1;
25644c06356bSdh 	tgt->dev_gone = 0;
25654c06356bSdh 	tgt->recover_wait = 0;
25664c06356bSdh 
2567c3bc407cSdh 	pmcs_prt(pwp, PMCS_PRT_DEBUG_CONFIG, pptr, tgt,
25684c06356bSdh 	    "%s: config %s vtgt %u for " SAS_ADDR_FMT, __func__,
25694c06356bSdh 	    pptr->path, tgt->target_num, SAS_ADDR_PRT(pptr->sas_address));
25704c06356bSdh 
25714c06356bSdh 	if (pmcs_add_new_device(pwp, tgt) != B_TRUE) {
2572c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG_CONFIG, pptr, tgt,
25734c06356bSdh 		    "%s: Failed for vtgt %u / WWN " SAS_ADDR_FMT, __func__,
25744c06356bSdh 		    tgt->target_num, SAS_ADDR_PRT(pptr->sas_address));
25754c06356bSdh 		mutex_destroy(&tgt->statlock);
25764c06356bSdh 		mutex_destroy(&tgt->wqlock);
25774c06356bSdh 		mutex_destroy(&tgt->aqlock);
25784c06356bSdh 		return (B_FALSE);
25794c06356bSdh 	}
25804c06356bSdh 
25814c06356bSdh 	return (B_TRUE);
25824c06356bSdh }
25834c06356bSdh 
25844c06356bSdh /*
25854c06356bSdh  * Called with softstate lock held
25864c06356bSdh  */
25874c06356bSdh void
25884c06356bSdh pmcs_remove_device(pmcs_hw_t *pwp, pmcs_phy_t *pptr)
25894c06356bSdh {
25904c06356bSdh 	pmcs_xscsi_t *xp;
25914c06356bSdh 	unsigned int vtgt;
25924c06356bSdh 
25934c06356bSdh 	ASSERT(mutex_owned(&pwp->lock));
25944c06356bSdh 
25954c06356bSdh 	for (vtgt = 0; vtgt < pwp->max_dev; vtgt++) {
25964c06356bSdh 		xp = pwp->targets[vtgt];
25974c06356bSdh 		if (xp == NULL) {
25984c06356bSdh 			continue;
25994c06356bSdh 		}
26004c06356bSdh 
26014c06356bSdh 		mutex_enter(&xp->statlock);
26024c06356bSdh 		if (xp->phy == pptr) {
26034c06356bSdh 			if (xp->new) {
26044c06356bSdh 				xp->new = 0;
2605c3bc407cSdh 				pmcs_prt(pwp, PMCS_PRT_DEBUG_CONFIG, pptr, xp,
26064c06356bSdh 				    "cancel config of vtgt %u", vtgt);
26074c06356bSdh 			} else {
2608b18a19c2SJesse Butler 				pmcs_clear_xp(pwp, xp);
2609c3bc407cSdh 				pmcs_prt(pwp, PMCS_PRT_DEBUG_CONFIG, pptr, xp,
2610b18a19c2SJesse Butler 				    "Removed tgt 0x%p vtgt %u",
26114c06356bSdh 				    (void *)xp, vtgt);
26124c06356bSdh 			}
26134c06356bSdh 			mutex_exit(&xp->statlock);
26144c06356bSdh 			break;
26154c06356bSdh 		}
26164c06356bSdh 		mutex_exit(&xp->statlock);
26174c06356bSdh 	}
26184c06356bSdh }
26194c06356bSdh 
26204c06356bSdh void
2621c3bc407cSdh pmcs_prt_impl(pmcs_hw_t *pwp, pmcs_prt_level_t level,
2622c3bc407cSdh     pmcs_phy_t *phyp, pmcs_xscsi_t *target, const char *fmt, ...)
26234c06356bSdh {
26244c06356bSdh 	va_list	ap;
26254c06356bSdh 	int written = 0;
26264c06356bSdh 	char *ptr;
26274c06356bSdh 	uint32_t elem_size = PMCS_TBUF_ELEM_SIZE - 1;
26284c06356bSdh 	boolean_t system_log;
26294c06356bSdh 	int system_log_level;
26304c06356bSdh 
26314c06356bSdh 	switch (level) {
26324c06356bSdh 	case PMCS_PRT_DEBUG_DEVEL:
26334c06356bSdh 	case PMCS_PRT_DEBUG_DEV_STATE:
26344c06356bSdh 	case PMCS_PRT_DEBUG_PHY_LOCKING:
26354c06356bSdh 	case PMCS_PRT_DEBUG_SCSI_STATUS:
26364c06356bSdh 	case PMCS_PRT_DEBUG_UNDERFLOW:
26374c06356bSdh 	case PMCS_PRT_DEBUG_CONFIG:
26384c06356bSdh 	case PMCS_PRT_DEBUG_IPORT:
26394c06356bSdh 	case PMCS_PRT_DEBUG_MAP:
26404c06356bSdh 	case PMCS_PRT_DEBUG3:
26414c06356bSdh 	case PMCS_PRT_DEBUG2:
26424c06356bSdh 	case PMCS_PRT_DEBUG1:
26434c06356bSdh 	case PMCS_PRT_DEBUG:
26444c06356bSdh 		system_log = B_FALSE;
26454c06356bSdh 		break;
26464c06356bSdh 	case PMCS_PRT_INFO:
26474c06356bSdh 		system_log = B_TRUE;
26484c06356bSdh 		system_log_level = CE_CONT;
26494c06356bSdh 		break;
26504c06356bSdh 	case PMCS_PRT_WARN:
26514c06356bSdh 		system_log = B_TRUE;
26524c06356bSdh 		system_log_level = CE_NOTE;
26534c06356bSdh 		break;
26544c06356bSdh 	case PMCS_PRT_ERR:
26554c06356bSdh 		system_log = B_TRUE;
26564c06356bSdh 		system_log_level = CE_WARN;
26574c06356bSdh 		break;
26584c06356bSdh 	default:
26594c06356bSdh 		return;
26604c06356bSdh 	}
26614c06356bSdh 
26624c06356bSdh 	mutex_enter(&pmcs_trace_lock);
26634c06356bSdh 	gethrestime(&pmcs_tbuf_ptr->timestamp);
26644c06356bSdh 	ptr = pmcs_tbuf_ptr->buf;
2665c3bc407cSdh 
2666c3bc407cSdh 	/*
2667c3bc407cSdh 	 * Store the pertinent PHY and target information if there is any
2668c3bc407cSdh 	 */
2669c3bc407cSdh 	if (target == NULL) {
2670c3bc407cSdh 		pmcs_tbuf_ptr->target_num = PMCS_INVALID_TARGET_NUM;
2671c3bc407cSdh 		pmcs_tbuf_ptr->target_ua[0] = '\0';
2672c3bc407cSdh 	} else {
2673c3bc407cSdh 		pmcs_tbuf_ptr->target_num = target->target_num;
2674c3bc407cSdh 		(void) strncpy(pmcs_tbuf_ptr->target_ua, target->ua,
2675c3bc407cSdh 		    PMCS_TBUF_UA_MAX_SIZE);
2676c3bc407cSdh 	}
2677c3bc407cSdh 
2678c3bc407cSdh 	if (phyp == NULL) {
2679c3bc407cSdh 		(void) memset(pmcs_tbuf_ptr->phy_sas_address, 0, 8);
2680c3bc407cSdh 		pmcs_tbuf_ptr->phy_path[0] = '\0';
2681c3bc407cSdh 		pmcs_tbuf_ptr->phy_dtype = NOTHING;
2682c3bc407cSdh 	} else {
2683c3bc407cSdh 		(void) memcpy(pmcs_tbuf_ptr->phy_sas_address,
2684c3bc407cSdh 		    phyp->sas_address, 8);
2685c3bc407cSdh 		(void) strncpy(pmcs_tbuf_ptr->phy_path, phyp->path, 32);
2686c3bc407cSdh 		pmcs_tbuf_ptr->phy_dtype = phyp->dtype;
2687c3bc407cSdh 	}
2688c3bc407cSdh 
26894c06356bSdh 	written += snprintf(ptr, elem_size, "pmcs%d:%d: ",
26904c06356bSdh 	    ddi_get_instance(pwp->dip), level);
26914c06356bSdh 	ptr += strlen(ptr);
26924c06356bSdh 	va_start(ap, fmt);
26934c06356bSdh 	written += vsnprintf(ptr, elem_size - written, fmt, ap);
26944c06356bSdh 	va_end(ap);
26954c06356bSdh 	if (written > elem_size - 1) {
26964c06356bSdh 		/* Indicate truncation */
26974c06356bSdh 		pmcs_tbuf_ptr->buf[elem_size - 1] = '+';
26984c06356bSdh 	}
26994c06356bSdh 	if (++pmcs_tbuf_idx == pmcs_tbuf_num_elems) {
27004c06356bSdh 		pmcs_tbuf_ptr = pmcs_tbuf;
27014c06356bSdh 		pmcs_tbuf_wrap = B_TRUE;
27024c06356bSdh 		pmcs_tbuf_idx = 0;
27034c06356bSdh 	} else {
27044c06356bSdh 		++pmcs_tbuf_ptr;
27054c06356bSdh 	}
27064c06356bSdh 	mutex_exit(&pmcs_trace_lock);
27074c06356bSdh 
27084c06356bSdh 	/*
27094c06356bSdh 	 * When pmcs_force_syslog in non-zero, everything goes also
27104c06356bSdh 	 * to syslog, at CE_CONT level.
27114c06356bSdh 	 */
27124c06356bSdh 	if (pmcs_force_syslog) {
27134c06356bSdh 		system_log = B_TRUE;
27144c06356bSdh 		system_log_level = CE_CONT;
27154c06356bSdh 	}
27164c06356bSdh 
27174c06356bSdh 	/*
27184c06356bSdh 	 * Anything that comes in with PMCS_PRT_INFO, WARN, or ERR also
27194c06356bSdh 	 * goes to syslog.
27204c06356bSdh 	 */
27214c06356bSdh 	if (system_log) {
27224c06356bSdh 		char local[196];
27234c06356bSdh 
27244c06356bSdh 		switch (system_log_level) {
27254c06356bSdh 		case CE_CONT:
27264c06356bSdh 			(void) snprintf(local, sizeof (local), "%sINFO: ",
27274c06356bSdh 			    pmcs_console ? "" : "?");
27284c06356bSdh 			break;
27294c06356bSdh 		case CE_NOTE:
27304c06356bSdh 		case CE_WARN:
27314c06356bSdh 			local[0] = 0;
27324c06356bSdh 			break;
27334c06356bSdh 		default:
27344c06356bSdh 			return;
27354c06356bSdh 		}
27364c06356bSdh 
27374c06356bSdh 		ptr = local;
27384c06356bSdh 		ptr += strlen(local);
27394c06356bSdh 		(void) snprintf(ptr, (sizeof (local)) -
27404c06356bSdh 		    ((size_t)ptr - (size_t)local), "pmcs%d: ",
27414c06356bSdh 		    ddi_get_instance(pwp->dip));
27424c06356bSdh 		ptr += strlen(ptr);
27434c06356bSdh 		va_start(ap, fmt);
27444c06356bSdh 		(void) vsnprintf(ptr,
27454c06356bSdh 		    (sizeof (local)) - ((size_t)ptr - (size_t)local), fmt, ap);
27464c06356bSdh 		va_end(ap);
27474c06356bSdh 		if (level == CE_CONT) {
27484c06356bSdh 			(void) strlcat(local, "\n", sizeof (local));
27494c06356bSdh 		}
27504c06356bSdh 		cmn_err(system_log_level, local);
27514c06356bSdh 	}
27524c06356bSdh 
27534c06356bSdh }
27544c06356bSdh 
27554c06356bSdh /*
27564c06356bSdh  * pmcs_acquire_scratch
27574c06356bSdh  *
27584c06356bSdh  * If "wait" is true, the caller will wait until it can acquire the scratch.
27594c06356bSdh  * This implies the caller needs to be in a context where spinning for an
27604c06356bSdh  * indeterminate amount of time is acceptable.
27614c06356bSdh  */
27624c06356bSdh int
27634c06356bSdh pmcs_acquire_scratch(pmcs_hw_t *pwp, boolean_t wait)
27644c06356bSdh {
27654c06356bSdh 	int rval;
27664c06356bSdh 
27674c06356bSdh 	if (!wait) {
27684c06356bSdh 		return (atomic_swap_8(&pwp->scratch_locked, 1));
27694c06356bSdh 	}
27704c06356bSdh 
27714c06356bSdh 	/*
27724c06356bSdh 	 * Caller will wait for scratch.
27734c06356bSdh 	 */
27744c06356bSdh 	while ((rval = atomic_swap_8(&pwp->scratch_locked, 1)) != 0) {
27754c06356bSdh 		drv_usecwait(100);
27764c06356bSdh 	}
27774c06356bSdh 
27784c06356bSdh 	return (rval);
27794c06356bSdh }
27804c06356bSdh 
27814c06356bSdh void
27824c06356bSdh pmcs_release_scratch(pmcs_hw_t *pwp)
27834c06356bSdh {
27844c06356bSdh 	pwp->scratch_locked = 0;
27854c06356bSdh }
27864c06356bSdh 
27874c06356bSdh static void
27884c06356bSdh pmcs_create_phy_stats(pmcs_iport_t *iport)
27894c06356bSdh {
27904c06356bSdh 	sas_phy_stats_t		*ps;
27914c06356bSdh 	pmcs_hw_t		*pwp;
27924c06356bSdh 	pmcs_phy_t		*phyp;
27934c06356bSdh 	int			ndata;
27944c06356bSdh 	char			ks_name[KSTAT_STRLEN];
27954c06356bSdh 
27964c06356bSdh 	ASSERT(iport != NULL);
27974c06356bSdh 	pwp = iport->pwp;
27984c06356bSdh 	ASSERT(pwp != NULL);
27994c06356bSdh 
28004c06356bSdh 	mutex_enter(&iport->lock);
28014c06356bSdh 
28024c06356bSdh 	for (phyp = list_head(&iport->phys);
28034c06356bSdh 	    phyp != NULL;
28044c06356bSdh 	    phyp = list_next(&iport->phys, phyp)) {
28054c06356bSdh 
28064c06356bSdh 		pmcs_lock_phy(phyp);
28074c06356bSdh 
28084c06356bSdh 		if (phyp->phy_stats != NULL) {
28094c06356bSdh 			pmcs_unlock_phy(phyp);
28104c06356bSdh 			/* We've already created this kstat instance */
28114c06356bSdh 			continue;
28124c06356bSdh 		}
28134c06356bSdh 
28144c06356bSdh 		ndata = (sizeof (sas_phy_stats_t)/sizeof (kstat_named_t));
28154c06356bSdh 
28164c06356bSdh 		(void) snprintf(ks_name, sizeof (ks_name),
28174c06356bSdh 		    "%s.%llx.%d.%d", ddi_driver_name(iport->dip),
28184c06356bSdh 		    (longlong_t)pwp->sas_wwns[0],
28194c06356bSdh 		    ddi_get_instance(iport->dip), phyp->phynum);
28204c06356bSdh 
28214c06356bSdh 		phyp->phy_stats = kstat_create("pmcs",
28224c06356bSdh 		    ddi_get_instance(iport->dip), ks_name, KSTAT_SAS_PHY_CLASS,
28234c06356bSdh 		    KSTAT_TYPE_NAMED, ndata, 0);
28244c06356bSdh 
28254c06356bSdh 		if (phyp->phy_stats == NULL) {
28264c06356bSdh 			pmcs_unlock_phy(phyp);
2827c3bc407cSdh 			pmcs_prt(pwp, PMCS_PRT_DEBUG, phyp, NULL,
28284c06356bSdh 			    "%s: Failed to create %s kstats", __func__,
28294c06356bSdh 			    ks_name);
28304c06356bSdh 			continue;
28314c06356bSdh 		}
28324c06356bSdh 
28334c06356bSdh 		ps = (sas_phy_stats_t *)phyp->phy_stats->ks_data;
28344c06356bSdh 
28354c06356bSdh 		kstat_named_init(&ps->seconds_since_last_reset,
28364c06356bSdh 		    "SecondsSinceLastReset", KSTAT_DATA_ULONGLONG);
28374c06356bSdh 		kstat_named_init(&ps->tx_frames,
28384c06356bSdh 		    "TxFrames", KSTAT_DATA_ULONGLONG);
28394c06356bSdh 		kstat_named_init(&ps->rx_frames,
28404c06356bSdh 		    "RxFrames", KSTAT_DATA_ULONGLONG);
28414c06356bSdh 		kstat_named_init(&ps->tx_words,
28424c06356bSdh 		    "TxWords", KSTAT_DATA_ULONGLONG);
28434c06356bSdh 		kstat_named_init(&ps->rx_words,
28444c06356bSdh 		    "RxWords", KSTAT_DATA_ULONGLONG);
28454c06356bSdh 		kstat_named_init(&ps->invalid_dword_count,
28464c06356bSdh 		    "InvalidDwordCount", KSTAT_DATA_ULONGLONG);
28474c06356bSdh 		kstat_named_init(&ps->running_disparity_error_count,
28484c06356bSdh 		    "RunningDisparityErrorCount", KSTAT_DATA_ULONGLONG);
28494c06356bSdh 		kstat_named_init(&ps->loss_of_dword_sync_count,
28504c06356bSdh 		    "LossofDwordSyncCount", KSTAT_DATA_ULONGLONG);
28514c06356bSdh 		kstat_named_init(&ps->phy_reset_problem_count,
28524c06356bSdh 		    "PhyResetProblemCount", KSTAT_DATA_ULONGLONG);
28534c06356bSdh 
28544c06356bSdh 		phyp->phy_stats->ks_private = phyp;
28554c06356bSdh 		phyp->phy_stats->ks_update = pmcs_update_phy_stats;
28564c06356bSdh 		kstat_install(phyp->phy_stats);
28574c06356bSdh 		pmcs_unlock_phy(phyp);
28584c06356bSdh 	}
28594c06356bSdh 
28604c06356bSdh 	mutex_exit(&iport->lock);
28614c06356bSdh }
28624c06356bSdh 
28634c06356bSdh int
28644c06356bSdh pmcs_update_phy_stats(kstat_t *ks, int rw)
28654c06356bSdh {
28664c06356bSdh 	int		val, ret = DDI_FAILURE;
28674c06356bSdh 	pmcs_phy_t	*pptr = (pmcs_phy_t *)ks->ks_private;
28684c06356bSdh 	pmcs_hw_t	*pwp = pptr->pwp;
28694c06356bSdh 	sas_phy_stats_t	*ps = ks->ks_data;
28704c06356bSdh 
28714c06356bSdh 	_NOTE(ARGUNUSED(rw));
28724c06356bSdh 	ASSERT((pptr != NULL) && (pwp != NULL));
28734c06356bSdh 
28744c06356bSdh 	/*
28754c06356bSdh 	 * We just want to lock against other invocations of kstat;
28764c06356bSdh 	 * we don't need to pmcs_lock_phy() for this.
28774c06356bSdh 	 */
28784c06356bSdh 	mutex_enter(&pptr->phy_lock);
28794c06356bSdh 
28804c06356bSdh 	/* Get Stats from Chip */
28814c06356bSdh 	val = pmcs_get_diag_report(pwp, PMCS_INVALID_DWORD_CNT, pptr->phynum);
28824c06356bSdh 	if (val == DDI_FAILURE)
28834c06356bSdh 		goto fail;
28844c06356bSdh 	ps->invalid_dword_count.value.ull = (unsigned long long)val;
28854c06356bSdh 
28864c06356bSdh 	val = pmcs_get_diag_report(pwp, PMCS_DISPARITY_ERR_CNT, pptr->phynum);
28874c06356bSdh 	if (val == DDI_FAILURE)
28884c06356bSdh 		goto fail;
28894c06356bSdh 	ps->running_disparity_error_count.value.ull = (unsigned long long)val;
28904c06356bSdh 
28914c06356bSdh 	val = pmcs_get_diag_report(pwp, PMCS_LOST_DWORD_SYNC_CNT, pptr->phynum);
28924c06356bSdh 	if (val == DDI_FAILURE)
28934c06356bSdh 		goto fail;
28944c06356bSdh 	ps->loss_of_dword_sync_count.value.ull = (unsigned long long)val;
28954c06356bSdh 
28964c06356bSdh 	val = pmcs_get_diag_report(pwp, PMCS_RESET_FAILED_CNT, pptr->phynum);
28974c06356bSdh 	if (val == DDI_FAILURE)
28984c06356bSdh 		goto fail;
28994c06356bSdh 	ps->phy_reset_problem_count.value.ull = (unsigned long long)val;
29004c06356bSdh 
29014c06356bSdh 	ret = DDI_SUCCESS;
29024c06356bSdh fail:
29034c06356bSdh 	mutex_exit(&pptr->phy_lock);
29044c06356bSdh 	return (ret);
29054c06356bSdh }
29064c06356bSdh 
29074c06356bSdh static void
29084c06356bSdh pmcs_destroy_phy_stats(pmcs_iport_t *iport)
29094c06356bSdh {
29104c06356bSdh 	pmcs_phy_t		*phyp;
29114c06356bSdh 
29124c06356bSdh 	ASSERT(iport != NULL);
29134c06356bSdh 	mutex_enter(&iport->lock);
29144c06356bSdh 	phyp = iport->pptr;
29154c06356bSdh 	if (phyp == NULL) {
29164c06356bSdh 		mutex_exit(&iport->lock);
29174c06356bSdh 		return;
29184c06356bSdh 	}
29194c06356bSdh 
29204c06356bSdh 	pmcs_lock_phy(phyp);
29214c06356bSdh 	if (phyp->phy_stats != NULL) {
29224c06356bSdh 		kstat_delete(phyp->phy_stats);
29234c06356bSdh 		phyp->phy_stats = NULL;
29244c06356bSdh 	}
29254c06356bSdh 	pmcs_unlock_phy(phyp);
29264c06356bSdh 
29274c06356bSdh 	mutex_exit(&iport->lock);
29284c06356bSdh }
29294c06356bSdh 
29304c06356bSdh /*ARGSUSED*/
29314c06356bSdh static int
29324c06356bSdh pmcs_fm_error_cb(dev_info_t *dip, ddi_fm_error_t *err, const void *impl_data)
29334c06356bSdh {
29344c06356bSdh 	/*
29354c06356bSdh 	 * as the driver can always deal with an error in any dma or
29364c06356bSdh 	 * access handle, we can just return the fme_status value.
29374c06356bSdh 	 */
29384c06356bSdh 	pci_ereport_post(dip, err, NULL);
29394c06356bSdh 	return (err->fme_status);
29404c06356bSdh }
29414c06356bSdh 
29424c06356bSdh static void
29434c06356bSdh pmcs_fm_init(pmcs_hw_t *pwp)
29444c06356bSdh {
29454c06356bSdh 	ddi_iblock_cookie_t	fm_ibc;
29464c06356bSdh 
29474c06356bSdh 	/* Only register with IO Fault Services if we have some capability */
29484c06356bSdh 	if (pwp->fm_capabilities) {
29494c06356bSdh 		/* Adjust access and dma attributes for FMA */
29504c06356bSdh 		pwp->reg_acc_attr.devacc_attr_access |= DDI_FLAGERR_ACC;
29514c06356bSdh 		pwp->dev_acc_attr.devacc_attr_access |= DDI_FLAGERR_ACC;
29524c06356bSdh 		pwp->iqp_dma_attr.dma_attr_flags |= DDI_DMA_FLAGERR;
29534c06356bSdh 		pwp->oqp_dma_attr.dma_attr_flags |= DDI_DMA_FLAGERR;
29544c06356bSdh 		pwp->cip_dma_attr.dma_attr_flags |= DDI_DMA_FLAGERR;
29554c06356bSdh 		pwp->fwlog_dma_attr.dma_attr_flags |= DDI_DMA_FLAGERR;
29564c06356bSdh 
29574c06356bSdh 		/*
29584c06356bSdh 		 * Register capabilities with IO Fault Services.
29594c06356bSdh 		 */
29604c06356bSdh 		ddi_fm_init(pwp->dip, &pwp->fm_capabilities, &fm_ibc);
29614c06356bSdh 
29624c06356bSdh 		/*
29634c06356bSdh 		 * Initialize pci ereport capabilities if ereport
29644c06356bSdh 		 * capable (should always be.)
29654c06356bSdh 		 */
29664c06356bSdh 		if (DDI_FM_EREPORT_CAP(pwp->fm_capabilities) ||
29674c06356bSdh 		    DDI_FM_ERRCB_CAP(pwp->fm_capabilities)) {
29684c06356bSdh 			pci_ereport_setup(pwp->dip);
29694c06356bSdh 		}
29704c06356bSdh 
29714c06356bSdh 		/*
29724c06356bSdh 		 * Register error callback if error callback capable.
29734c06356bSdh 		 */
29744c06356bSdh 		if (DDI_FM_ERRCB_CAP(pwp->fm_capabilities)) {
29754c06356bSdh 			ddi_fm_handler_register(pwp->dip,
29764c06356bSdh 			    pmcs_fm_error_cb, (void *) pwp);
29774c06356bSdh 		}
29784c06356bSdh 	}
29794c06356bSdh }
29804c06356bSdh 
29814c06356bSdh static void
29824c06356bSdh pmcs_fm_fini(pmcs_hw_t *pwp)
29834c06356bSdh {
29844c06356bSdh 	/* Only unregister FMA capabilities if registered */
29854c06356bSdh 	if (pwp->fm_capabilities) {
29864c06356bSdh 		/*
29874c06356bSdh 		 * Un-register error callback if error callback capable.
29884c06356bSdh 		 */
29894c06356bSdh 		if (DDI_FM_ERRCB_CAP(pwp->fm_capabilities)) {
29904c06356bSdh 			ddi_fm_handler_unregister(pwp->dip);
29914c06356bSdh 		}
29924c06356bSdh 
29934c06356bSdh 		/*
29944c06356bSdh 		 * Release any resources allocated by pci_ereport_setup()
29954c06356bSdh 		 */
29964c06356bSdh 		if (DDI_FM_EREPORT_CAP(pwp->fm_capabilities) ||
29974c06356bSdh 		    DDI_FM_ERRCB_CAP(pwp->fm_capabilities)) {
29984c06356bSdh 			pci_ereport_teardown(pwp->dip);
29994c06356bSdh 		}
30004c06356bSdh 
30014c06356bSdh 		/* Unregister from IO Fault Services */
30024c06356bSdh 		ddi_fm_fini(pwp->dip);
30034c06356bSdh 
30044c06356bSdh 		/* Adjust access and dma attributes for FMA */
30054c06356bSdh 		pwp->reg_acc_attr.devacc_attr_access &= ~DDI_FLAGERR_ACC;
30064c06356bSdh 		pwp->dev_acc_attr.devacc_attr_access &= ~DDI_FLAGERR_ACC;
30074c06356bSdh 		pwp->iqp_dma_attr.dma_attr_flags &= ~DDI_DMA_FLAGERR;
30084c06356bSdh 		pwp->oqp_dma_attr.dma_attr_flags &= ~DDI_DMA_FLAGERR;
30094c06356bSdh 		pwp->cip_dma_attr.dma_attr_flags &= ~DDI_DMA_FLAGERR;
30104c06356bSdh 		pwp->fwlog_dma_attr.dma_attr_flags &= ~DDI_DMA_FLAGERR;
30114c06356bSdh 	}
30124c06356bSdh }
30134c06356bSdh 
30144c06356bSdh static boolean_t
30154c06356bSdh pmcs_fabricate_wwid(pmcs_hw_t *pwp)
30164c06356bSdh {
30174c06356bSdh 	char *cp, c;
30184c06356bSdh 	uint64_t adr;
30194c06356bSdh 	int i;
30204c06356bSdh 
30214c06356bSdh 	cp = &c;
30224c06356bSdh 	(void) ddi_strtoul(hw_serial, &cp, 10, (unsigned long *)&adr);
30234c06356bSdh 	if (adr == 0) {
30244c06356bSdh 		static const char foo[] = __DATE__ __TIME__;
30254c06356bSdh 		/* Oh, dear, we're toast */
3026c3bc407cSdh 		pmcs_prt(pwp, PMCS_PRT_DEBUG, NULL, NULL,
30274c06356bSdh 		    "%s: No serial number available to fabricate WWN",
30284c06356bSdh 		    __func__);
30294c06356bSdh 		for (i = 0; foo[i]; i++) {
30304c06356bSdh 			adr += foo[i];
30314c06356bSdh 		}
30324c06356bSdh 	}
30334c06356bSdh 	adr <<= 8;
30344c06356bSdh 	adr |= ((uint64_t)ddi_get_instance(pwp->dip) << 52);
30354c06356bSdh 	adr |= (5ULL << 60);
30364c06356bSdh 	for (i = 0; i < PMCS_MAX_PORTS; i++) {
30374c06356bSdh 		pwp->sas_wwns[i] = adr + i;
30384c06356bSdh 	}
30394c06356bSdh 
30404c06356bSdh 	return (B_TRUE);
30414c06356bSdh }
3042