xref: /illumos-gate/usr/src/uts/common/io/nxge/nxge_hw.c (revision 89282175)
144961713Sgirish /*
244961713Sgirish  * CDDL HEADER START
344961713Sgirish  *
444961713Sgirish  * The contents of this file are subject to the terms of the
544961713Sgirish  * Common Development and Distribution License (the "License").
644961713Sgirish  * You may not use this file except in compliance with the License.
744961713Sgirish  *
844961713Sgirish  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
944961713Sgirish  * or http://www.opensolaris.org/os/licensing.
1044961713Sgirish  * See the License for the specific language governing permissions
1144961713Sgirish  * and limitations under the License.
1244961713Sgirish  *
1344961713Sgirish  * When distributing Covered Code, include this CDDL HEADER in each
1444961713Sgirish  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1544961713Sgirish  * If applicable, add the following below this CDDL HEADER, with the
1644961713Sgirish  * fields enclosed by brackets "[]" replaced with your own identifying
1744961713Sgirish  * information: Portions Copyright [yyyy] [name of copyright owner]
1844961713Sgirish  *
1944961713Sgirish  * CDDL HEADER END
2044961713Sgirish  */
2144961713Sgirish /*
22*89282175SSantwona Behera  * Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
2344961713Sgirish  */
2444961713Sgirish 
25a3c5bd6dSspeer #include <sys/nxge/nxge_impl.h>
2644961713Sgirish 
2744961713Sgirish /*
2844961713Sgirish  * Tunable Receive Completion Ring Configuration B parameters.
2944961713Sgirish  */
30a3c5bd6dSspeer uint16_t nxge_rx_pkt_thres;	/* 16 bits */
31a3c5bd6dSspeer uint8_t nxge_rx_pkt_timeout;	/* 6 bits based on DMA clock divider */
32a3c5bd6dSspeer 
33a3c5bd6dSspeer lb_property_t lb_normal = {normal, "normal", nxge_lb_normal};
34a3c5bd6dSspeer lb_property_t lb_external10g = {external, "external10g", nxge_lb_ext10g};
35a3c5bd6dSspeer lb_property_t lb_external1000 = {external, "external1000", nxge_lb_ext1000};
36a3c5bd6dSspeer lb_property_t lb_external100 = {external, "external100", nxge_lb_ext100};
37a3c5bd6dSspeer lb_property_t lb_external10 = {external, "external10", nxge_lb_ext10};
38a3c5bd6dSspeer lb_property_t lb_phy10g = {internal, "phy10g", nxge_lb_phy10g};
39a3c5bd6dSspeer lb_property_t lb_phy1000 = {internal, "phy1000", nxge_lb_phy1000};
40a3c5bd6dSspeer lb_property_t lb_phy = {internal, "phy", nxge_lb_phy};
41a3c5bd6dSspeer lb_property_t lb_serdes10g = {internal, "serdes10g", nxge_lb_serdes10g};
42a3c5bd6dSspeer lb_property_t lb_serdes1000 = {internal, "serdes", nxge_lb_serdes1000};
43a3c5bd6dSspeer lb_property_t lb_mac10g = {internal, "mac10g", nxge_lb_mac10g};
44a3c5bd6dSspeer lb_property_t lb_mac1000 = {internal, "mac1000", nxge_lb_mac1000};
45a3c5bd6dSspeer lb_property_t lb_mac = {internal, "mac10/100", nxge_lb_mac};
4644961713Sgirish 
4744961713Sgirish uint32_t nxge_lb_dbg = 1;
4844961713Sgirish void nxge_get_mii(p_nxge_t nxgep, p_mblk_t mp);
4944961713Sgirish void nxge_put_mii(p_nxge_t nxgep, p_mblk_t mp);
50ee5416c9Syc static nxge_status_t nxge_check_xaui_xfp(p_nxge_t nxgep);
5144961713Sgirish 
5244961713Sgirish extern uint32_t nxge_rx_mode;
53a3c5bd6dSspeer extern uint32_t nxge_jumbo_mtu;
544df55fdeSJanie Lu extern uint16_t	nxge_rdc_buf_offset;
5544961713Sgirish 
56a3c5bd6dSspeer static void
57a3c5bd6dSspeer nxge_rtrace_ioctl(p_nxge_t, queue_t *, mblk_t *, struct iocblk *);
5844961713Sgirish 
59a3c5bd6dSspeer /* ARGSUSED */
60321febdeSsbehera nxge_status_t
6144961713Sgirish nxge_global_reset(p_nxge_t nxgep)
6244961713Sgirish {
63321febdeSsbehera 	nxge_status_t	status = NXGE_OK;
64321febdeSsbehera 
6544961713Sgirish 	NXGE_DEBUG_MSG((nxgep, DDI_CTL, "==> nxge_global_reset"));
6644961713Sgirish 
67321febdeSsbehera 	if ((status = nxge_link_monitor(nxgep, LINK_MONITOR_STOP)) != NXGE_OK)
68321febdeSsbehera 		return (status);
6944961713Sgirish 	(void) nxge_intr_hw_disable(nxgep);
7044961713Sgirish 
7144961713Sgirish 	if ((nxgep->suspended) ||
7252ccf843Smisaki 	    ((nxgep->statsp->port_stats.lb_mode ==
7352ccf843Smisaki 	    nxge_lb_phy1000) ||
7452ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode ==
7552ccf843Smisaki 	    nxge_lb_phy10g) ||
7652ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode ==
7752ccf843Smisaki 	    nxge_lb_serdes1000) ||
7852ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode ==
7952ccf843Smisaki 	    nxge_lb_serdes10g))) {
80321febdeSsbehera 		if ((status = nxge_link_init(nxgep)) != NXGE_OK)
81321febdeSsbehera 			return (status);
8244961713Sgirish 	}
83321febdeSsbehera 
84321febdeSsbehera 	if ((status = nxge_link_monitor(nxgep, LINK_MONITOR_START)) != NXGE_OK)
85321febdeSsbehera 		return (status);
86321febdeSsbehera 	if ((status = nxge_mac_init(nxgep)) != NXGE_OK)
87321febdeSsbehera 		return (status);
8844961713Sgirish 	(void) nxge_intr_hw_enable(nxgep);
8944961713Sgirish 
9044961713Sgirish 	NXGE_DEBUG_MSG((nxgep, DDI_CTL, "<== nxge_global_reset"));
91321febdeSsbehera 	return (status);
9244961713Sgirish }
9344961713Sgirish 
94a3c5bd6dSspeer /* ARGSUSED */
9544961713Sgirish void
9644961713Sgirish nxge_hw_id_init(p_nxge_t nxgep)
9744961713Sgirish {
9844961713Sgirish 	NXGE_DEBUG_MSG((nxgep, DDI_CTL, "==> nxge_hw_id_init"));
9948056c53SMichael Speer 
10044961713Sgirish 	/*
10144961713Sgirish 	 * Set up initial hardware parameters required such as mac mtu size.
10244961713Sgirish 	 */
10344961713Sgirish 	nxgep->mac.is_jumbo = B_FALSE;
10448056c53SMichael Speer 
1051bd6825cSml 	/*
1061bd6825cSml 	 * Set the maxframe size to 1522 (1518 + 4) to account for
1071bd6825cSml 	 * VLAN tagged packets.
1081bd6825cSml 	 */
10948056c53SMichael Speer 	nxgep->mac.minframesize = NXGE_MIN_MAC_FRAMESIZE;	/* 64 */
11048056c53SMichael Speer 	nxgep->mac.maxframesize = NXGE_MAX_MAC_FRAMESIZE;	/* 1522 */
11144961713Sgirish 
11248056c53SMichael Speer 	NXGE_DEBUG_MSG((nxgep, DDI_CTL, "<== nxge_hw_id_init: maxframesize %d",
11348056c53SMichael Speer 	    nxgep->mac.maxframesize));
11444961713Sgirish 	NXGE_DEBUG_MSG((nxgep, DDI_CTL, "<== nxge_hw_id_init"));
11544961713Sgirish }
11644961713Sgirish 
117a3c5bd6dSspeer /* ARGSUSED */
11844961713Sgirish void
11944961713Sgirish nxge_hw_init_niu_common(p_nxge_t nxgep)
12044961713Sgirish {
121a3c5bd6dSspeer 	p_nxge_hw_list_t hw_p;
12244961713Sgirish 
12344961713Sgirish 	NXGE_DEBUG_MSG((nxgep, DDI_CTL, "==> nxge_hw_init_niu_common"));
12444961713Sgirish 
12544961713Sgirish 	if ((hw_p = nxgep->nxge_hw_p) == NULL) {
12644961713Sgirish 		return;
12744961713Sgirish 	}
12844961713Sgirish 	MUTEX_ENTER(&hw_p->nxge_cfg_lock);
12944961713Sgirish 	if (hw_p->flags & COMMON_INIT_DONE) {
13044961713Sgirish 		NXGE_DEBUG_MSG((nxgep, MOD_CTL,
13152ccf843Smisaki 		    "nxge_hw_init_niu_common"
13252ccf843Smisaki 		    " already done for dip $%p function %d exiting",
13352ccf843Smisaki 		    hw_p->parent_devp, nxgep->function_num));
13444961713Sgirish 		MUTEX_EXIT(&hw_p->nxge_cfg_lock);
13544961713Sgirish 		return;
13644961713Sgirish 	}
13744961713Sgirish 
13844961713Sgirish 	hw_p->flags = COMMON_INIT_START;
13944961713Sgirish 	NXGE_DEBUG_MSG((nxgep, MOD_CTL, "nxge_hw_init_niu_common"
14052ccf843Smisaki 	    " Started for device id %x with function %d",
14152ccf843Smisaki 	    hw_p->parent_devp, nxgep->function_num));
142a3c5bd6dSspeer 
143a3c5bd6dSspeer 	/* per neptune common block init */
144a3c5bd6dSspeer 	(void) nxge_fflp_hw_reset(nxgep);
14544961713Sgirish 
1464df55fdeSJanie Lu 	if (nxgep->niu_hw_type != NIU_HW_TYPE_RF) {
1474df55fdeSJanie Lu 		switch (nxge_rdc_buf_offset) {
1484df55fdeSJanie Lu 		case SW_OFFSET_NO_OFFSET:
1494df55fdeSJanie Lu 		case SW_OFFSET_64:
1504df55fdeSJanie Lu 		case SW_OFFSET_128:
1514df55fdeSJanie Lu 			break;
1524df55fdeSJanie Lu 		default:
1534df55fdeSJanie Lu 			NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
1544df55fdeSJanie Lu 			    "nxge_hw_init_niu_common: Unsupported RDC buffer"
1554df55fdeSJanie Lu 			    " offset code %d, setting to %d",
1564df55fdeSJanie Lu 			    nxge_rdc_buf_offset, SW_OFFSET_NO_OFFSET));
1574df55fdeSJanie Lu 			nxge_rdc_buf_offset = SW_OFFSET_NO_OFFSET;
1584df55fdeSJanie Lu 			break;
1594df55fdeSJanie Lu 		}
1604df55fdeSJanie Lu 	} else {
1614df55fdeSJanie Lu 		switch (nxge_rdc_buf_offset) {
1624df55fdeSJanie Lu 		case SW_OFFSET_NO_OFFSET:
1634df55fdeSJanie Lu 		case SW_OFFSET_64:
1644df55fdeSJanie Lu 		case SW_OFFSET_128:
1654df55fdeSJanie Lu 		case SW_OFFSET_192:
1664df55fdeSJanie Lu 		case SW_OFFSET_256:
1674df55fdeSJanie Lu 		case SW_OFFSET_320:
1684df55fdeSJanie Lu 		case SW_OFFSET_384:
1694df55fdeSJanie Lu 		case SW_OFFSET_448:
1704df55fdeSJanie Lu 			break;
1714df55fdeSJanie Lu 		default:
1724df55fdeSJanie Lu 			NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
1734df55fdeSJanie Lu 			    "nxge_hw_init_niu_common: Unsupported RDC buffer"
1744df55fdeSJanie Lu 			    " offset code %d, setting to %d",
1754df55fdeSJanie Lu 			    nxge_rdc_buf_offset, SW_OFFSET_NO_OFFSET));
1764df55fdeSJanie Lu 			nxge_rdc_buf_offset = SW_OFFSET_NO_OFFSET;
1774df55fdeSJanie Lu 			break;
1784df55fdeSJanie Lu 		}
1794df55fdeSJanie Lu 	}
1804df55fdeSJanie Lu 
18144961713Sgirish 	hw_p->flags = COMMON_INIT_DONE;
18244961713Sgirish 	MUTEX_EXIT(&hw_p->nxge_cfg_lock);
18344961713Sgirish 
18444961713Sgirish 	NXGE_DEBUG_MSG((nxgep, MOD_CTL, "nxge_hw_init_niu_common"
18552ccf843Smisaki 	    " Done for device id %x with function %d",
18652ccf843Smisaki 	    hw_p->parent_devp, nxgep->function_num));
18744961713Sgirish 	NXGE_DEBUG_MSG((nxgep, DDI_CTL, "<== nxge_hw_init_niu_common"));
18844961713Sgirish }
18944961713Sgirish 
190a3c5bd6dSspeer /* ARGSUSED */
19144961713Sgirish uint_t
19244961713Sgirish nxge_intr(void *arg1, void *arg2)
19344961713Sgirish {
194a3c5bd6dSspeer 	p_nxge_ldv_t ldvp = (p_nxge_ldv_t)arg1;
195a3c5bd6dSspeer 	p_nxge_t nxgep = (p_nxge_t)arg2;
196a3c5bd6dSspeer 	uint_t serviced = DDI_INTR_UNCLAIMED;
197a3c5bd6dSspeer 	uint8_t ldv;
198a3c5bd6dSspeer 	npi_handle_t handle;
199a3c5bd6dSspeer 	p_nxge_ldgv_t ldgvp;
200a3c5bd6dSspeer 	p_nxge_ldg_t ldgp, t_ldgp;
201a3c5bd6dSspeer 	p_nxge_ldv_t t_ldvp;
202a3c5bd6dSspeer 	uint64_t vector0 = 0, vector1 = 0, vector2 = 0;
203a3c5bd6dSspeer 	int i, j, nldvs, nintrs = 1;
204a3c5bd6dSspeer 	npi_status_t rs = NPI_SUCCESS;
20544961713Sgirish 
20644961713Sgirish 	/* DDI interface returns second arg as NULL (n2 niumx driver) !!! */
207a3c5bd6dSspeer 	if (arg2 == NULL || (void *) ldvp->nxgep != arg2) {
20844961713Sgirish 		nxgep = ldvp->nxgep;
20944961713Sgirish 	}
21044961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr"));
21144961713Sgirish 
21244961713Sgirish 	if (!(nxgep->drv_state & STATE_HW_INITIALIZED)) {
21344961713Sgirish 		NXGE_ERROR_MSG((nxgep, INT_CTL,
21452ccf843Smisaki 		    "<== nxge_intr: not initialized 0x%x", serviced));
21544961713Sgirish 		return (serviced);
21644961713Sgirish 	}
21744961713Sgirish 
21844961713Sgirish 	ldgvp = nxgep->ldgvp;
219a3c5bd6dSspeer 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr: ldgvp $%p", ldgvp));
22044961713Sgirish 	if (ldvp == NULL && ldgvp) {
22144961713Sgirish 		t_ldvp = ldvp = ldgvp->ldvp;
22244961713Sgirish 	}
22344961713Sgirish 	if (ldvp) {
22444961713Sgirish 		ldgp = t_ldgp = ldvp->ldgp;
22544961713Sgirish 	}
22644961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr: "
22752ccf843Smisaki 	    "ldgvp $%p ldvp $%p ldgp $%p", ldgvp, ldvp, ldgp));
22844961713Sgirish 	if (ldgvp == NULL || ldvp == NULL || ldgp == NULL) {
22944961713Sgirish 		NXGE_ERROR_MSG((nxgep, INT_CTL, "==> nxge_intr: "
23052ccf843Smisaki 		    "ldgvp $%p ldvp $%p ldgp $%p", ldgvp, ldvp, ldgp));
23144961713Sgirish 		NXGE_ERROR_MSG((nxgep, INT_CTL, "<== nxge_intr: not ready"));
23244961713Sgirish 		return (DDI_INTR_UNCLAIMED);
23344961713Sgirish 	}
23444961713Sgirish 	/*
235a3c5bd6dSspeer 	 * This interrupt handler will have to go through all the logical
236a3c5bd6dSspeer 	 * devices to find out which logical device interrupts us and then call
23744961713Sgirish 	 * its handler to process the events.
23844961713Sgirish 	 */
23944961713Sgirish 	handle = NXGE_DEV_NPI_HANDLE(nxgep);
24044961713Sgirish 	t_ldgp = ldgp;
24144961713Sgirish 	t_ldvp = ldgp->ldvp;
24244961713Sgirish 
24344961713Sgirish 	nldvs = ldgp->nldvs;
24444961713Sgirish 
24544961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr: #ldvs %d #intrs %d",
24652ccf843Smisaki 	    nldvs, ldgvp->ldg_intrs));
24744961713Sgirish 
24844961713Sgirish 	serviced = DDI_INTR_CLAIMED;
24944961713Sgirish 	for (i = 0; i < nintrs; i++, t_ldgp++) {
25044961713Sgirish 		NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr(%d): #ldvs %d "
25152ccf843Smisaki 		    " #intrs %d", i, nldvs, nintrs));
25244961713Sgirish 		/* Get this group's flag bits.  */
25344961713Sgirish 		rs = npi_ldsv_ldfs_get(handle, t_ldgp->ldg,
25452ccf843Smisaki 		    &vector0, &vector1, &vector2);
25544961713Sgirish 		if (rs) {
25644961713Sgirish 			continue;
25744961713Sgirish 		}
25844961713Sgirish 		if (!vector0 && !vector1 && !vector2) {
25944961713Sgirish 			NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr: "
26052ccf843Smisaki 			    "no interrupts on group %d", t_ldgp->ldg));
26144961713Sgirish 			continue;
26244961713Sgirish 		}
26344961713Sgirish 		NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr: "
26452ccf843Smisaki 		    "vector0 0x%llx vector1 0x%llx vector2 0x%llx",
26552ccf843Smisaki 		    vector0, vector1, vector2));
26644961713Sgirish 		nldvs = t_ldgp->nldvs;
26744961713Sgirish 		for (j = 0; j < nldvs; j++, t_ldvp++) {
26844961713Sgirish 			/*
26944961713Sgirish 			 * Call device's handler if flag bits are on.
27044961713Sgirish 			 */
27144961713Sgirish 			ldv = t_ldvp->ldv;
27244961713Sgirish 			if (((ldv < NXGE_MAC_LD_START) &&
27352ccf843Smisaki 			    (LDV_ON(ldv, vector0) |
27452ccf843Smisaki 			    (LDV_ON(ldv, vector1)))) ||
27552ccf843Smisaki 			    (ldv >= NXGE_MAC_LD_START &&
27652ccf843Smisaki 			    ((LDV2_ON_1(ldv, vector2)) ||
27752ccf843Smisaki 			    (LDV2_ON_2(ldv, vector2))))) {
27844961713Sgirish 				(void) (t_ldvp->ldv_intr_handler)(
27952ccf843Smisaki 				    (caddr_t)t_ldvp, arg2);
28044961713Sgirish 				NXGE_DEBUG_MSG((nxgep, INT_CTL,
28152ccf843Smisaki 				    "==> nxge_intr: "
28252ccf843Smisaki 				    "calling device %d #ldvs %d #intrs %d",
28352ccf843Smisaki 				    j, nldvs, nintrs));
28444961713Sgirish 			}
28544961713Sgirish 		}
28644961713Sgirish 	}
28744961713Sgirish 
28844961713Sgirish 	t_ldgp = ldgp;
28944961713Sgirish 	for (i = 0; i < nintrs; i++, t_ldgp++) {
29044961713Sgirish 		/* rearm group interrupts */
291da14cebeSEric Cheng 		NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr: arm "
292da14cebeSEric Cheng 		    "group %d", t_ldgp->ldg));
293da14cebeSEric Cheng 		(void) npi_intr_ldg_mgmt_set(handle, t_ldgp->ldg,
294da14cebeSEric Cheng 		    t_ldgp->arm, t_ldgp->ldg_timer);
29544961713Sgirish 	}
29644961713Sgirish 
29744961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "<== nxge_intr: serviced 0x%x",
29852ccf843Smisaki 	    serviced));
29944961713Sgirish 	return (serviced);
30044961713Sgirish }
30144961713Sgirish 
30200161856Syc 
30300161856Syc /*
30400161856Syc  * XFP Related Status Register Values Under 3 Different Conditions
30500161856Syc  *
30600161856Syc  * -------------+-------------------------+-------------------------
3070cad6a5fSyc  * 		|   Intel XFP and Avago   |	 Picolight XFP
30800161856Syc  * -------------+---------+---------------+---------+---------------
30900161856Syc  *		| STATUS0 | TX_ALARM_STAT | STATUS0 | TX_ALARM_STAT
31000161856Syc  * -------------+---------+---------------+---------+---------------
31100161856Syc  *	No XFP  | 0x639C  |      0x40     | 0x639C  |      0x40
31200161856Syc  * -------------+---------+---------------+---------+---------------
31300161856Syc  * XFP,linkdown | 0x43BC  |      0x40     | 0x639C  |      0x40
31400161856Syc  * -------------+---------+---------------+---------+---------------
31500161856Syc  * XFP,linkup   | 0x03FC  |      0x0      | 0x03FC  |      0x0
31600161856Syc  * -------------+---------+---------------+---------+---------------
31700161856Syc  * Note:
31800161856Syc  *      STATUS0         = BCM8704_USER_ANALOG_STATUS0_REG
31900161856Syc  *      TX_ALARM_STAT   = BCM8704_USER_TX_ALARM_STATUS_REG
32000161856Syc  */
321ee5416c9Syc /* ARGSUSED */
322ee5416c9Syc static nxge_status_t
323ee5416c9Syc nxge_check_xaui_xfp(p_nxge_t nxgep)
324ee5416c9Syc {
325ee5416c9Syc 	nxge_status_t	status = NXGE_OK;
326ee5416c9Syc 	uint8_t		phy_port_addr;
327ee5416c9Syc 	uint16_t	val;
328ee5416c9Syc 	uint16_t	val1;
329ee5416c9Syc 	uint8_t		portn;
330ee5416c9Syc 
331ee5416c9Syc 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_check_xaui_xfp"));
332ee5416c9Syc 
333ee5416c9Syc 	portn = nxgep->mac.portnum;
334ee5416c9Syc 	phy_port_addr = nxgep->statsp->mac_stats.xcvr_portn;
335ee5416c9Syc 
33600161856Syc 	/*
33700161856Syc 	 * Keep the val1 code even though it is not used. Could be
33800161856Syc 	 * used to differenciate the "No XFP" case and "XFP,linkdown"
33900161856Syc 	 * case when a Intel XFP is used.
34000161856Syc 	 */
341ee5416c9Syc 	if ((status = nxge_mdio_read(nxgep, phy_port_addr,
342ee5416c9Syc 	    BCM8704_USER_DEV3_ADDR,
343ee5416c9Syc 	    BCM8704_USER_ANALOG_STATUS0_REG, &val)) == NXGE_OK) {
344ee5416c9Syc 		status = nxge_mdio_read(nxgep, phy_port_addr,
345ee5416c9Syc 		    BCM8704_USER_DEV3_ADDR,
346ee5416c9Syc 		    BCM8704_USER_TX_ALARM_STATUS_REG, &val1);
347ee5416c9Syc 	}
34800161856Syc 
349ee5416c9Syc 	if (status != NXGE_OK) {
350ee5416c9Syc 		NXGE_FM_REPORT_ERROR(nxgep, portn, NULL,
351ee5416c9Syc 		    NXGE_FM_EREPORT_XAUI_ERR);
35200161856Syc 		if (DDI_FM_EREPORT_CAP(nxgep->fm_capabilities)) {
35300161856Syc 			NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
35400161856Syc 			    "XAUI is bad or absent on port<%d>\n", portn));
35500161856Syc 		}
3560cad6a5fSyc #ifdef NXGE_DEBUG
3570cad6a5fSyc 	/*
3580cad6a5fSyc 	 * As a workaround for CR6693529, do not execute this block of
3590cad6a5fSyc 	 * code for non-debug driver. When a Picolight XFP transceiver
3600cad6a5fSyc 	 * is used, register BCM8704_USER_ANALOG_STATUS0_REG returns
3610cad6a5fSyc 	 * the same 0x639C value in normal link down case, which causes
3620cad6a5fSyc 	 * false FMA messages and link reconnection problem.
3630cad6a5fSyc 	 */
364ee5416c9Syc 	} else if (nxgep->mac.portmode == PORT_10G_FIBER) {
365ee5416c9Syc 		/*
366f6485eecSyc 		 * 0x03FC = 0000 0011 1111 1100 (XFP is normal)
367f6485eecSyc 		 * 0x639C = 0110 0011 1001 1100 (XFP has problem)
368ee5416c9Syc 		 * bit14 = 1: PDM loss-of-light indicator
369ee5416c9Syc 		 * bit13 = 1: PDM Rx loss-of-signal
370ee5416c9Syc 		 * bit6  = 0: Light is NOT ok
371ee5416c9Syc 		 * bit5  = 0: PMD Rx signal is NOT ok
372ee5416c9Syc 		 */
373f6485eecSyc 		if (val == 0x639C) {
374ee5416c9Syc 			NXGE_FM_REPORT_ERROR(nxgep, portn, NULL,
375ee5416c9Syc 			    NXGE_FM_EREPORT_XFP_ERR);
37600161856Syc 			if (DDI_FM_EREPORT_CAP(nxgep->fm_capabilities)) {
37700161856Syc 				NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
37800161856Syc 				    "XFP is bad or absent on port<%d>\n",
37900161856Syc 				    portn));
38000161856Syc 			}
381ee5416c9Syc 			status = NXGE_ERROR;
382ee5416c9Syc 		}
3830cad6a5fSyc #endif
384ee5416c9Syc 	}
385ee5416c9Syc 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "<== nxge_check_xaui_xfp"));
386ee5416c9Syc 	return (status);
387ee5416c9Syc }
388ee5416c9Syc 
389ee5416c9Syc 
390a3c5bd6dSspeer /* ARGSUSED */
39144961713Sgirish uint_t
39244961713Sgirish nxge_syserr_intr(void *arg1, void *arg2)
39344961713Sgirish {
394a3c5bd6dSspeer 	p_nxge_ldv_t ldvp = (p_nxge_ldv_t)arg1;
395a3c5bd6dSspeer 	p_nxge_t nxgep = (p_nxge_t)arg2;
396a3c5bd6dSspeer 	p_nxge_ldg_t ldgp = NULL;
397a3c5bd6dSspeer 	npi_handle_t handle;
398a3c5bd6dSspeer 	sys_err_stat_t estat;
399a3c5bd6dSspeer 	uint_t serviced = DDI_INTR_UNCLAIMED;
40044961713Sgirish 
40144961713Sgirish 	if (arg1 == NULL && arg2 == NULL) {
40244961713Sgirish 		return (serviced);
40344961713Sgirish 	}
404a3c5bd6dSspeer 	if (arg2 == NULL || ((ldvp != NULL && (void *) ldvp->nxgep != arg2))) {
40544961713Sgirish 		if (ldvp != NULL) {
40644961713Sgirish 			nxgep = ldvp->nxgep;
40744961713Sgirish 		}
40844961713Sgirish 	}
40944961713Sgirish 	NXGE_DEBUG_MSG((nxgep, SYSERR_CTL,
41052ccf843Smisaki 	    "==> nxge_syserr_intr: arg2 $%p arg1 $%p", nxgep, ldvp));
41144961713Sgirish 	if (ldvp != NULL && ldvp->use_timer == B_FALSE) {
41244961713Sgirish 		ldgp = ldvp->ldgp;
41344961713Sgirish 		if (ldgp == NULL) {
41444961713Sgirish 			NXGE_ERROR_MSG((nxgep, SYSERR_CTL,
41552ccf843Smisaki 			    "<== nxge_syserrintr(no logical group): "
41652ccf843Smisaki 			    "arg2 $%p arg1 $%p", nxgep, ldvp));
41744961713Sgirish 			return (DDI_INTR_UNCLAIMED);
41844961713Sgirish 		}
41944961713Sgirish 		/*
42044961713Sgirish 		 * Get the logical device state if the function uses interrupt.
42144961713Sgirish 		 */
42244961713Sgirish 	}
42344961713Sgirish 
42444961713Sgirish 	/* This interrupt handler is for system error interrupts.  */
42544961713Sgirish 	handle = NXGE_DEV_NPI_HANDLE(nxgep);
42644961713Sgirish 	estat.value = 0;
42744961713Sgirish 	(void) npi_fzc_sys_err_stat_get(handle, &estat);
42844961713Sgirish 	NXGE_DEBUG_MSG((nxgep, SYSERR_CTL,
42952ccf843Smisaki 	    "==> nxge_syserr_intr: device error 0x%016llx", estat.value));
43044961713Sgirish 
43144961713Sgirish 	if (estat.bits.ldw.smx) {
43244961713Sgirish 		/* SMX */
43344961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
43452ccf843Smisaki 		    "==> nxge_syserr_intr: device error - SMX"));
43544961713Sgirish 	} else if (estat.bits.ldw.mac) {
43644961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
43752ccf843Smisaki 		    "==> nxge_syserr_intr: device error - MAC"));
43844961713Sgirish 		/*
439a3c5bd6dSspeer 		 * There is nothing to be done here. All MAC errors go to per
440a3c5bd6dSspeer 		 * MAC port interrupt. MIF interrupt is the only MAC sub-block
441a3c5bd6dSspeer 		 * that can generate status here. MIF status reported will be
442a3c5bd6dSspeer 		 * ignored here. It is checked by per port timer instead.
44344961713Sgirish 		 */
44444961713Sgirish 	} else if (estat.bits.ldw.ipp) {
44544961713Sgirish 		NXGE_DEBUG_MSG((nxgep, NXGE_ERR_CTL,
44652ccf843Smisaki 		    "==> nxge_syserr_intr: device error - IPP"));
44744961713Sgirish 		(void) nxge_ipp_handle_sys_errors(nxgep);
44844961713Sgirish 	} else if (estat.bits.ldw.zcp) {
44944961713Sgirish 		/* ZCP */
450f6485eecSyc 		NXGE_DEBUG_MSG((nxgep, NXGE_ERR_CTL,
45152ccf843Smisaki 		    "==> nxge_syserr_intr: device error - ZCP"));
45244961713Sgirish 		(void) nxge_zcp_handle_sys_errors(nxgep);
45344961713Sgirish 	} else if (estat.bits.ldw.tdmc) {
45444961713Sgirish 		/* TDMC */
45544961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
45652ccf843Smisaki 		    "==> nxge_syserr_intr: device error - TDMC"));
45744961713Sgirish 		/*
458a3c5bd6dSspeer 		 * There is no TDMC system errors defined in the PRM. All TDMC
459a3c5bd6dSspeer 		 * channel specific errors are reported on a per channel basis.
46044961713Sgirish 		 */
46144961713Sgirish 	} else if (estat.bits.ldw.rdmc) {
46244961713Sgirish 		/* RDMC */
46344961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
46452ccf843Smisaki 		    "==> nxge_syserr_intr: device error - RDMC"));
46544961713Sgirish 		(void) nxge_rxdma_handle_sys_errors(nxgep);
46644961713Sgirish 	} else if (estat.bits.ldw.txc) {
46744961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
46852ccf843Smisaki 		    "==> nxge_syserr_intr: device error - TXC"));
46944961713Sgirish 		(void) nxge_txc_handle_sys_errors(nxgep);
47044961713Sgirish 	} else if ((nxgep->niu_type != N2_NIU) && estat.bits.ldw.peu) {
47144961713Sgirish 		/* PCI-E */
47244961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
47352ccf843Smisaki 		    "==> nxge_syserr_intr: device error - PCI-E"));
47444961713Sgirish 	} else if (estat.bits.ldw.meta1) {
47544961713Sgirish 		/* META1 */
47644961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
47752ccf843Smisaki 		    "==> nxge_syserr_intr: device error - META1"));
47844961713Sgirish 	} else if (estat.bits.ldw.meta2) {
47944961713Sgirish 		/* META2 */
48044961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
48152ccf843Smisaki 		    "==> nxge_syserr_intr: device error - META2"));
48244961713Sgirish 	} else if (estat.bits.ldw.fflp) {
48344961713Sgirish 		/* FFLP */
48444961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
48552ccf843Smisaki 		    "==> nxge_syserr_intr: device error - FFLP"));
48644961713Sgirish 		(void) nxge_fflp_handle_sys_errors(nxgep);
48744961713Sgirish 	}
488ee5416c9Syc 
48900161856Syc 	/*
49000161856Syc 	 * nxge_check_xaui_xfg checks XAUI for all of the following
49100161856Syc 	 * portmodes, but checks XFP only if portmode == PORT_10G_FIBER.
49200161856Syc 	 */
493ee5416c9Syc 	if (nxgep->mac.portmode == PORT_10G_FIBER ||
49452ccf843Smisaki 	    nxgep->mac.portmode == PORT_10G_COPPER ||
49552ccf843Smisaki 	    nxgep->mac.portmode == PORT_10G_TN1010 ||
49652ccf843Smisaki 	    nxgep->mac.portmode == PORT_1G_TN1010) {
497ee5416c9Syc 		if (nxge_check_xaui_xfp(nxgep) != NXGE_OK) {
498ee5416c9Syc 			NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
499ee5416c9Syc 			    "==> nxge_syserr_intr: device error - XAUI"));
500ee5416c9Syc 		}
501ee5416c9Syc 	}
502ee5416c9Syc 
50344961713Sgirish 	serviced = DDI_INTR_CLAIMED;
50444961713Sgirish 
50544961713Sgirish 	if (ldgp != NULL && ldvp != NULL && ldgp->nldvs == 1 &&
50652ccf843Smisaki 	    !ldvp->use_timer) {
50744961713Sgirish 		(void) npi_intr_ldg_mgmt_set(handle, ldgp->ldg,
50852ccf843Smisaki 		    B_TRUE, ldgp->ldg_timer);
50944961713Sgirish 	}
51044961713Sgirish 	NXGE_DEBUG_MSG((nxgep, SYSERR_CTL, "<== nxge_syserr_intr"));
51144961713Sgirish 	return (serviced);
51244961713Sgirish }
51344961713Sgirish 
514a3c5bd6dSspeer /* ARGSUSED */
51544961713Sgirish void
51644961713Sgirish nxge_intr_hw_enable(p_nxge_t nxgep)
51744961713Sgirish {
51844961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr_hw_enable"));
51944961713Sgirish 	(void) nxge_intr_mask_mgmt_set(nxgep, B_TRUE);
52044961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "<== nxge_intr_hw_enable"));
52144961713Sgirish }
52244961713Sgirish 
523a3c5bd6dSspeer /* ARGSUSED */
52444961713Sgirish void
52544961713Sgirish nxge_intr_hw_disable(p_nxge_t nxgep)
52644961713Sgirish {
52744961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr_hw_disable"));
52844961713Sgirish 	(void) nxge_intr_mask_mgmt_set(nxgep, B_FALSE);
52944961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "<== nxge_intr_hw_disable"));
53044961713Sgirish }
53144961713Sgirish 
532a3c5bd6dSspeer /* ARGSUSED */
53344961713Sgirish void
53444961713Sgirish nxge_rx_hw_blank(void *arg, time_t ticks, uint_t count)
53544961713Sgirish {
536a3c5bd6dSspeer 	p_nxge_t nxgep = (p_nxge_t)arg;
537a3c5bd6dSspeer 	uint8_t channel;
538a3c5bd6dSspeer 	npi_handle_t handle;
539a3c5bd6dSspeer 	p_nxge_ldgv_t ldgvp;
540a3c5bd6dSspeer 	p_nxge_ldv_t ldvp;
541a3c5bd6dSspeer 	int i;
54244961713Sgirish 
54344961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_rx_hw_blank"));
54444961713Sgirish 	handle = NXGE_DEV_NPI_HANDLE(nxgep);
54544961713Sgirish 
54644961713Sgirish 	if ((ldgvp = nxgep->ldgvp) == NULL) {
54744961713Sgirish 		NXGE_ERROR_MSG((nxgep, INT_CTL,
54852ccf843Smisaki 		    "<== nxge_rx_hw_blank (not enabled)"));
54944961713Sgirish 		return;
55044961713Sgirish 	}
55144961713Sgirish 	ldvp = nxgep->ldgvp->ldvp;
55244961713Sgirish 	if (ldvp == NULL) {
55344961713Sgirish 		return;
55444961713Sgirish 	}
55544961713Sgirish 	for (i = 0; i < ldgvp->nldvs; i++, ldvp++) {
55644961713Sgirish 		if (ldvp->is_rxdma) {
55744961713Sgirish 			channel = ldvp->channel;
55844961713Sgirish 			(void) npi_rxdma_cfg_rdc_rcr_threshold(handle,
55952ccf843Smisaki 			    channel, count);
56044961713Sgirish 			(void) npi_rxdma_cfg_rdc_rcr_timeout(handle,
56152ccf843Smisaki 			    channel, ticks);
56244961713Sgirish 		}
56344961713Sgirish 	}
56444961713Sgirish 
56544961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "<== nxge_rx_hw_blank"));
56644961713Sgirish }
56744961713Sgirish 
568a3c5bd6dSspeer /* ARGSUSED */
56944961713Sgirish void
57044961713Sgirish nxge_hw_stop(p_nxge_t nxgep)
57144961713Sgirish {
57244961713Sgirish 	NXGE_DEBUG_MSG((nxgep, DDI_CTL, "==> nxge_hw_stop"));
57344961713Sgirish 
57444961713Sgirish 	(void) nxge_tx_mac_disable(nxgep);
57544961713Sgirish 	(void) nxge_rx_mac_disable(nxgep);
57644961713Sgirish 	(void) nxge_txdma_hw_mode(nxgep, NXGE_DMA_STOP);
57744961713Sgirish 	(void) nxge_rxdma_hw_mode(nxgep, NXGE_DMA_STOP);
57844961713Sgirish 
57944961713Sgirish 	NXGE_DEBUG_MSG((nxgep, DDI_CTL, "<== nxge_hw_stop"));
58044961713Sgirish }
58144961713Sgirish 
582a3c5bd6dSspeer /* ARGSUSED */
58344961713Sgirish void
58444961713Sgirish nxge_hw_ioctl(p_nxge_t nxgep, queue_t *wq, mblk_t *mp, struct iocblk *iocp)
58544961713Sgirish {
58644961713Sgirish 	int cmd;
58744961713Sgirish 
58844961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "==> nxge_hw_ioctl"));
58944961713Sgirish 
59044961713Sgirish 	if (nxgep == NULL) {
59144961713Sgirish 		miocnak(wq, mp, 0, EINVAL);
59244961713Sgirish 		return;
59344961713Sgirish 	}
59444961713Sgirish 	iocp->ioc_error = 0;
59544961713Sgirish 	cmd = iocp->ioc_cmd;
59644961713Sgirish 
59744961713Sgirish 	switch (cmd) {
59844961713Sgirish 	default:
59944961713Sgirish 		miocnak(wq, mp, 0, EINVAL);
60044961713Sgirish 		return;
60144961713Sgirish 
60244961713Sgirish 	case NXGE_GET_MII:
60344961713Sgirish 		nxge_get_mii(nxgep, mp->b_cont);
60444961713Sgirish 		miocack(wq, mp, sizeof (uint16_t), 0);
60544961713Sgirish 		break;
60644961713Sgirish 
60744961713Sgirish 	case NXGE_PUT_MII:
60844961713Sgirish 		nxge_put_mii(nxgep, mp->b_cont);
60944961713Sgirish 		miocack(wq, mp, 0, 0);
61044961713Sgirish 		break;
61144961713Sgirish 
61244961713Sgirish 	case NXGE_GET64:
61344961713Sgirish 		nxge_get64(nxgep, mp->b_cont);
61444961713Sgirish 		miocack(wq, mp, sizeof (uint32_t), 0);
61544961713Sgirish 		break;
61644961713Sgirish 
61744961713Sgirish 	case NXGE_PUT64:
61844961713Sgirish 		nxge_put64(nxgep, mp->b_cont);
61944961713Sgirish 		miocack(wq, mp, 0, 0);
62044961713Sgirish 		break;
62144961713Sgirish 
62244961713Sgirish 	case NXGE_PUT_TCAM:
62344961713Sgirish 		nxge_put_tcam(nxgep, mp->b_cont);
62444961713Sgirish 		miocack(wq, mp, 0, 0);
62544961713Sgirish 		break;
62644961713Sgirish 
62744961713Sgirish 	case NXGE_GET_TCAM:
62844961713Sgirish 		nxge_get_tcam(nxgep, mp->b_cont);
62944961713Sgirish 		miocack(wq, mp, 0, 0);
63044961713Sgirish 		break;
63144961713Sgirish 
63244961713Sgirish 	case NXGE_TX_REGS_DUMP:
63344961713Sgirish 		nxge_txdma_regs_dump_channels(nxgep);
63444961713Sgirish 		miocack(wq, mp, 0, 0);
63544961713Sgirish 		break;
63644961713Sgirish 	case NXGE_RX_REGS_DUMP:
63744961713Sgirish 		nxge_rxdma_regs_dump_channels(nxgep);
63844961713Sgirish 		miocack(wq, mp, 0, 0);
63944961713Sgirish 		break;
64044961713Sgirish 	case NXGE_VIR_INT_REGS_DUMP:
64144961713Sgirish 	case NXGE_INT_REGS_DUMP:
64244961713Sgirish 		nxge_virint_regs_dump(nxgep);
64344961713Sgirish 		miocack(wq, mp, 0, 0);
64444961713Sgirish 		break;
64544961713Sgirish 	case NXGE_RTRACE:
64644961713Sgirish 		nxge_rtrace_ioctl(nxgep, wq, mp, iocp);
64744961713Sgirish 		break;
64844961713Sgirish 	}
64944961713Sgirish }
65044961713Sgirish 
651a3c5bd6dSspeer /* ARGSUSED */
65244961713Sgirish void
65344961713Sgirish nxge_loopback_ioctl(p_nxge_t nxgep, queue_t *wq, mblk_t *mp,
654a3c5bd6dSspeer 	struct iocblk *iocp)
65544961713Sgirish {
656a3c5bd6dSspeer 	p_lb_property_t lb_props;
657a3c5bd6dSspeer 
658a3c5bd6dSspeer 	size_t size;
659a3c5bd6dSspeer 	int i;
66044961713Sgirish 
66144961713Sgirish 	if (mp->b_cont == NULL) {
66244961713Sgirish 		miocnak(wq, mp, 0, EINVAL);
66344961713Sgirish 	}
66444961713Sgirish 	switch (iocp->ioc_cmd) {
66544961713Sgirish 	case LB_GET_MODE:
66644961713Sgirish 		NXGE_DEBUG_MSG((nxgep, IOC_CTL, "NXGE_GET_LB_MODE command"));
66744961713Sgirish 		if (nxgep != NULL) {
66844961713Sgirish 			*(lb_info_sz_t *)mp->b_cont->b_rptr =
66952ccf843Smisaki 			    nxgep->statsp->port_stats.lb_mode;
67044961713Sgirish 			miocack(wq, mp, sizeof (nxge_lb_t), 0);
671ee5416c9Syc 		} else {
67244961713Sgirish 			miocnak(wq, mp, 0, EINVAL);
673ee5416c9Syc 		}
67444961713Sgirish 		break;
67544961713Sgirish 	case LB_SET_MODE:
67644961713Sgirish 		NXGE_DEBUG_MSG((nxgep, IOC_CTL, "NXGE_SET_LB_MODE command"));
67744961713Sgirish 		if (iocp->ioc_count != sizeof (uint32_t)) {
67844961713Sgirish 			miocack(wq, mp, 0, 0);
67944961713Sgirish 			break;
68044961713Sgirish 		}
68144961713Sgirish 		if ((nxgep != NULL) && nxge_set_lb(nxgep, wq, mp->b_cont)) {
68244961713Sgirish 			miocack(wq, mp, 0, 0);
68344961713Sgirish 		} else {
68444961713Sgirish 			miocnak(wq, mp, 0, EPROTO);
68544961713Sgirish 		}
68644961713Sgirish 		break;
68744961713Sgirish 	case LB_GET_INFO_SIZE:
68844961713Sgirish 		NXGE_DEBUG_MSG((nxgep, IOC_CTL, "LB_GET_INFO_SIZE command"));
68944961713Sgirish 		if (nxgep != NULL) {
69044961713Sgirish 			size = sizeof (lb_normal);
69144961713Sgirish 			if (nxgep->statsp->mac_stats.cap_10gfdx) {
69200161856Syc 				/* TN1010 does not support external loopback */
69300161856Syc 				if (nxgep->mac.portmode != PORT_1G_TN1010 &&
69400161856Syc 				    nxgep->mac.portmode != PORT_10G_TN1010) {
69500161856Syc 					size += sizeof (lb_external10g);
69600161856Syc 				}
69744961713Sgirish 				size += sizeof (lb_mac10g);
698936117e2Ssbehera 				/* Publish PHY loopback if PHY is present */
699936117e2Ssbehera 				if (nxgep->mac.portmode == PORT_10G_COPPER ||
70000161856Syc 				    nxgep->mac.portmode == PORT_10G_TN1010 ||
701936117e2Ssbehera 				    nxgep->mac.portmode == PORT_10G_FIBER)
702936117e2Ssbehera 					size += sizeof (lb_phy10g);
70344961713Sgirish 			}
70400161856Syc 
70500161856Syc 			/*
70600161856Syc 			 * Even if cap_10gfdx is false, we still do 10G
70700161856Syc 			 * serdes loopback as a part of SunVTS xnetlbtest
70800161856Syc 			 * internal loopback test.
70900161856Syc 			 */
710936117e2Ssbehera 			if (nxgep->mac.portmode == PORT_10G_FIBER ||
711*89282175SSantwona Behera 			    nxgep->mac.portmode == PORT_10G_COPPER ||
71200161856Syc 			    nxgep->mac.portmode == PORT_10G_TN1010 ||
713936117e2Ssbehera 			    nxgep->mac.portmode == PORT_10G_SERDES)
714936117e2Ssbehera 				size += sizeof (lb_serdes10g);
715936117e2Ssbehera 
71644961713Sgirish 			if (nxgep->statsp->mac_stats.cap_1000fdx) {
71700161856Syc 				/* TN1010 does not support external loopback */
71800161856Syc 				if (nxgep->mac.portmode != PORT_1G_TN1010 &&
71900161856Syc 				    nxgep->mac.portmode != PORT_10G_TN1010) {
72000161856Syc 					size += sizeof (lb_external1000);
72100161856Syc 				}
72244961713Sgirish 				size += sizeof (lb_mac1000);
7230cad6a5fSyc 				if (nxgep->mac.portmode == PORT_1G_COPPER ||
72400161856Syc 				    nxgep->mac.portmode == PORT_1G_TN1010 ||
7250cad6a5fSyc 				    nxgep->mac.portmode ==
7260cad6a5fSyc 				    PORT_1G_RGMII_FIBER)
72744961713Sgirish 					size += sizeof (lb_phy1000);
72844961713Sgirish 			}
72944961713Sgirish 			if (nxgep->statsp->mac_stats.cap_100fdx)
73044961713Sgirish 				size += sizeof (lb_external100);
73144961713Sgirish 			if (nxgep->statsp->mac_stats.cap_10fdx)
73244961713Sgirish 				size += sizeof (lb_external10);
733936117e2Ssbehera 			if (nxgep->mac.portmode == PORT_1G_FIBER ||
73400161856Syc 			    nxgep->mac.portmode == PORT_1G_TN1010 ||
735936117e2Ssbehera 			    nxgep->mac.portmode == PORT_1G_SERDES)
73644961713Sgirish 				size += sizeof (lb_serdes1000);
7372e59129aSraghus 
73844961713Sgirish 			*(lb_info_sz_t *)mp->b_cont->b_rptr = size;
73944961713Sgirish 
74044961713Sgirish 			NXGE_DEBUG_MSG((nxgep, IOC_CTL,
74152ccf843Smisaki 			    "NXGE_GET_LB_INFO command: size %d", size));
74244961713Sgirish 			miocack(wq, mp, sizeof (lb_info_sz_t), 0);
74344961713Sgirish 		} else
74444961713Sgirish 			miocnak(wq, mp, 0, EINVAL);
74544961713Sgirish 		break;
74644961713Sgirish 
74744961713Sgirish 	case LB_GET_INFO:
74844961713Sgirish 		NXGE_DEBUG_MSG((nxgep, IOC_CTL, "NXGE_GET_LB_INFO command"));
74944961713Sgirish 		if (nxgep != NULL) {
75044961713Sgirish 			size = sizeof (lb_normal);
75144961713Sgirish 			if (nxgep->statsp->mac_stats.cap_10gfdx) {
75200161856Syc 				/* TN1010 does not support external loopback */
75300161856Syc 				if (nxgep->mac.portmode != PORT_1G_TN1010 &&
75400161856Syc 				    nxgep->mac.portmode != PORT_10G_TN1010) {
75500161856Syc 					size += sizeof (lb_external10g);
75600161856Syc 				}
75744961713Sgirish 				size += sizeof (lb_mac10g);
758936117e2Ssbehera 				/* Publish PHY loopback if PHY is present */
759936117e2Ssbehera 				if (nxgep->mac.portmode == PORT_10G_COPPER ||
76000161856Syc 				    nxgep->mac.portmode == PORT_10G_TN1010 ||
761936117e2Ssbehera 				    nxgep->mac.portmode == PORT_10G_FIBER)
762936117e2Ssbehera 					size += sizeof (lb_phy10g);
76344961713Sgirish 			}
764936117e2Ssbehera 			if (nxgep->mac.portmode == PORT_10G_FIBER ||
765*89282175SSantwona Behera 			    nxgep->mac.portmode == PORT_10G_COPPER ||
76600161856Syc 			    nxgep->mac.portmode == PORT_10G_TN1010 ||
767936117e2Ssbehera 			    nxgep->mac.portmode == PORT_10G_SERDES)
768936117e2Ssbehera 				size += sizeof (lb_serdes10g);
769936117e2Ssbehera 
77044961713Sgirish 			if (nxgep->statsp->mac_stats.cap_1000fdx) {
77100161856Syc 				/* TN1010 does not support external loopback */
77200161856Syc 				if (nxgep->mac.portmode != PORT_1G_TN1010 &&
77300161856Syc 				    nxgep->mac.portmode != PORT_10G_TN1010) {
77400161856Syc 					size += sizeof (lb_external1000);
77500161856Syc 				}
77644961713Sgirish 				size += sizeof (lb_mac1000);
7770cad6a5fSyc 				if (nxgep->mac.portmode == PORT_1G_COPPER ||
77800161856Syc 				    nxgep->mac.portmode == PORT_1G_TN1010 ||
7790cad6a5fSyc 				    nxgep->mac.portmode ==
7800cad6a5fSyc 				    PORT_1G_RGMII_FIBER)
78144961713Sgirish 					size += sizeof (lb_phy1000);
78244961713Sgirish 			}
78344961713Sgirish 			if (nxgep->statsp->mac_stats.cap_100fdx)
78444961713Sgirish 				size += sizeof (lb_external100);
78500161856Syc 
78644961713Sgirish 			if (nxgep->statsp->mac_stats.cap_10fdx)
78744961713Sgirish 				size += sizeof (lb_external10);
78800161856Syc 
789936117e2Ssbehera 			if (nxgep->mac.portmode == PORT_1G_FIBER ||
79000161856Syc 			    nxgep->mac.portmode == PORT_1G_TN1010 ||
791936117e2Ssbehera 			    nxgep->mac.portmode == PORT_1G_SERDES)
79244961713Sgirish 				size += sizeof (lb_serdes1000);
79344961713Sgirish 
79444961713Sgirish 			NXGE_DEBUG_MSG((nxgep, IOC_CTL,
79552ccf843Smisaki 			    "NXGE_GET_LB_INFO command: size %d", size));
79644961713Sgirish 			if (size == iocp->ioc_count) {
79744961713Sgirish 				i = 0;
79844961713Sgirish 				lb_props = (p_lb_property_t)mp->b_cont->b_rptr;
79944961713Sgirish 				lb_props[i++] = lb_normal;
80000161856Syc 
80144961713Sgirish 				if (nxgep->statsp->mac_stats.cap_10gfdx) {
80244961713Sgirish 					lb_props[i++] = lb_mac10g;
803936117e2Ssbehera 					if (nxgep->mac.portmode ==
804936117e2Ssbehera 					    PORT_10G_COPPER ||
805936117e2Ssbehera 					    nxgep->mac.portmode ==
80600161856Syc 					    PORT_10G_TN1010 ||
80700161856Syc 					    nxgep->mac.portmode ==
80800161856Syc 					    PORT_10G_FIBER) {
809936117e2Ssbehera 						lb_props[i++] = lb_phy10g;
81000161856Syc 					}
81100161856Syc 					/* TN1010 does not support ext lb */
81200161856Syc 					if (nxgep->mac.portmode !=
81300161856Syc 					    PORT_10G_TN1010 &&
81400161856Syc 					    nxgep->mac.portmode !=
81500161856Syc 					    PORT_1G_TN1010) {
81600161856Syc 						lb_props[i++] = lb_external10g;
81700161856Syc 					}
81844961713Sgirish 				}
81900161856Syc 
820936117e2Ssbehera 				if (nxgep->mac.portmode == PORT_10G_FIBER ||
821*89282175SSantwona Behera 				    nxgep->mac.portmode == PORT_10G_COPPER ||
82200161856Syc 				    nxgep->mac.portmode == PORT_10G_TN1010 ||
823936117e2Ssbehera 				    nxgep->mac.portmode == PORT_10G_SERDES)
824936117e2Ssbehera 					lb_props[i++] = lb_serdes10g;
825936117e2Ssbehera 
82600161856Syc 				if (nxgep->statsp->mac_stats.cap_1000fdx) {
82700161856Syc 					/* TN1010 does not support ext lb */
82800161856Syc 					if (nxgep->mac.portmode !=
82900161856Syc 					    PORT_10G_TN1010 &&
83000161856Syc 					    nxgep->mac.portmode !=
83100161856Syc 					    PORT_1G_TN1010) {
83200161856Syc 						lb_props[i++] = lb_external1000;
83300161856Syc 					}
83400161856Syc 				}
83500161856Syc 
83644961713Sgirish 				if (nxgep->statsp->mac_stats.cap_100fdx)
83744961713Sgirish 					lb_props[i++] = lb_external100;
83800161856Syc 
83944961713Sgirish 				if (nxgep->statsp->mac_stats.cap_10fdx)
84044961713Sgirish 					lb_props[i++] = lb_external10;
84100161856Syc 
84244961713Sgirish 				if (nxgep->statsp->mac_stats.cap_1000fdx)
84344961713Sgirish 					lb_props[i++] = lb_mac1000;
84400161856Syc 
8450cad6a5fSyc 				if (nxgep->mac.portmode == PORT_1G_COPPER ||
84600161856Syc 				    nxgep->mac.portmode == PORT_1G_TN1010 ||
8470cad6a5fSyc 				    nxgep->mac.portmode ==
8480cad6a5fSyc 				    PORT_1G_RGMII_FIBER) {
84944961713Sgirish 					if (nxgep->statsp->mac_stats.
85052ccf843Smisaki 					    cap_1000fdx)
85144961713Sgirish 						lb_props[i++] = lb_phy1000;
8520cad6a5fSyc 				} else if (nxgep->mac.portmode ==
8530cad6a5fSyc 				    PORT_1G_FIBER ||
8540cad6a5fSyc 				    nxgep->mac.portmode == PORT_1G_TN1010 ||
8550cad6a5fSyc 				    nxgep->mac.portmode == PORT_1G_SERDES) {
85644961713Sgirish 					lb_props[i++] = lb_serdes1000;
8572e59129aSraghus 				}
85844961713Sgirish 				miocack(wq, mp, size, 0);
85944961713Sgirish 			} else
86044961713Sgirish 				miocnak(wq, mp, 0, EINVAL);
86144961713Sgirish 		} else {
86244961713Sgirish 			miocnak(wq, mp, 0, EINVAL);
86344961713Sgirish 			cmn_err(CE_NOTE, "!nxge_hw_ioctl: invalid command 0x%x",
86452ccf843Smisaki 			    iocp->ioc_cmd);
86544961713Sgirish 		}
86644961713Sgirish 		break;
86744961713Sgirish 	}
86844961713Sgirish }
86944961713Sgirish 
87044961713Sgirish /*
87144961713Sgirish  * DMA channel interfaces to access various channel specific
87244961713Sgirish  * hardware functions.
87344961713Sgirish  */
874a3c5bd6dSspeer /* ARGSUSED */
87544961713Sgirish void
87644961713Sgirish nxge_rxdma_channel_put64(nxge_os_acc_handle_t handle, void *reg_addrp,
877a3c5bd6dSspeer 	uint32_t reg_base, uint16_t channel, uint64_t reg_data)
87844961713Sgirish {
879a3c5bd6dSspeer 	uint64_t reg_offset;
88044961713Sgirish 
88144961713Sgirish 	NXGE_DEBUG_MSG((NULL, DMA_CTL, "<== nxge_rxdma_channel_put64"));
88244961713Sgirish 
88344961713Sgirish 	/*
884a3c5bd6dSspeer 	 * Channel is assumed to be from 0 to the maximum DMA channel #. If we
885a3c5bd6dSspeer 	 * use the virtual DMA CSR address space from the config space (in PCI
886a3c5bd6dSspeer 	 * case), then the following code need to be use different offset
88744961713Sgirish 	 * computation macro.
88844961713Sgirish 	 */
88944961713Sgirish 	reg_offset = reg_base + DMC_OFFSET(channel);
89044961713Sgirish 	NXGE_PIO_WRITE64(handle, reg_addrp, reg_offset, reg_data);
89144961713Sgirish 
89244961713Sgirish 	NXGE_DEBUG_MSG((NULL, DMA_CTL, "<== nxge_rxdma_channel_put64"));
89344961713Sgirish }
89444961713Sgirish 
895a3c5bd6dSspeer /* ARGSUSED */
89644961713Sgirish uint64_t
89744961713Sgirish nxge_rxdma_channel_get64(nxge_os_acc_handle_t handle, void *reg_addrp,
898a3c5bd6dSspeer 	uint32_t reg_base, uint16_t channel)
89944961713Sgirish {
900a3c5bd6dSspeer 	uint64_t reg_offset;
90144961713Sgirish 
90244961713Sgirish 	NXGE_DEBUG_MSG((NULL, DMA_CTL, "<== nxge_rxdma_channel_get64"));
90344961713Sgirish 
90444961713Sgirish 	/*
905a3c5bd6dSspeer 	 * Channel is assumed to be from 0 to the maximum DMA channel #. If we
906a3c5bd6dSspeer 	 * use the virtual DMA CSR address space from the config space (in PCI
907a3c5bd6dSspeer 	 * case), then the following code need to be use different offset
90844961713Sgirish 	 * computation macro.
90944961713Sgirish 	 */
91044961713Sgirish 	reg_offset = reg_base + DMC_OFFSET(channel);
91144961713Sgirish 
91244961713Sgirish 	NXGE_DEBUG_MSG((NULL, DMA_CTL, "<== nxge_rxdma_channel_get64"));
91344961713Sgirish 
91444961713Sgirish 	return (NXGE_PIO_READ64(handle, reg_addrp, reg_offset));
91544961713Sgirish }
91644961713Sgirish 
917a3c5bd6dSspeer /* ARGSUSED */
91844961713Sgirish void
91944961713Sgirish nxge_get32(p_nxge_t nxgep, p_mblk_t mp)
92044961713Sgirish {
921a3c5bd6dSspeer 	nxge_os_acc_handle_t nxge_regh;
92244961713Sgirish 
92344961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "nxge_get32"));
92444961713Sgirish 	nxge_regh = nxgep->dev_regs->nxge_regh;
92544961713Sgirish 
92644961713Sgirish 	*(uint32_t *)mp->b_rptr = NXGE_PIO_READ32(nxge_regh,
92752ccf843Smisaki 	    nxgep->dev_regs->nxge_regp, *(uint32_t *)mp->b_rptr);
92844961713Sgirish 
92944961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "value = 0x%08X",
93052ccf843Smisaki 	    *(uint32_t *)mp->b_rptr));
93144961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "nxge_get32"));
93244961713Sgirish }
93344961713Sgirish 
934a3c5bd6dSspeer /* ARGSUSED */
93544961713Sgirish void
93644961713Sgirish nxge_put32(p_nxge_t nxgep, p_mblk_t mp)
93744961713Sgirish {
93844961713Sgirish 	nxge_os_acc_handle_t nxge_regh;
93944961713Sgirish 	uint32_t *buf;
94044961713Sgirish 	uint8_t *reg;
94144961713Sgirish 
94244961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "nxge_put32"));
94344961713Sgirish 	nxge_regh = nxgep->dev_regs->nxge_regh;
94444961713Sgirish 
94544961713Sgirish 	buf = (uint32_t *)mp->b_rptr;
94644961713Sgirish 	reg = (uint8_t *)(nxgep->dev_regs->nxge_regp) + buf[0];
94744961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL,
94852ccf843Smisaki 	    "reg = 0x%016llX index = 0x%08X value = 0x%08X",
94952ccf843Smisaki 	    reg, buf[0], buf[1]));
95044961713Sgirish 	NXGE_PIO_WRITE32(nxge_regh, (uint32_t *)reg, 0, buf[1]);
95144961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "nxge_put32"));
95244961713Sgirish }
95344961713Sgirish 
95444961713Sgirish /*ARGSUSED*/
95544961713Sgirish boolean_t
95644961713Sgirish nxge_set_lb(p_nxge_t nxgep, queue_t *wq, p_mblk_t mp)
95744961713Sgirish {
958a3c5bd6dSspeer 	boolean_t status = B_TRUE;
959a3c5bd6dSspeer 	uint32_t lb_mode;
960a3c5bd6dSspeer 	lb_property_t *lb_info;
96144961713Sgirish 
96244961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "<== nxge_set_lb"));
96344961713Sgirish 	lb_mode = nxgep->statsp->port_stats.lb_mode;
96444961713Sgirish 	if (lb_mode == *(uint32_t *)mp->b_rptr) {
96544961713Sgirish 		cmn_err(CE_NOTE,
96652ccf843Smisaki 		    "!nxge%d: Loopback mode already set (lb_mode %d).\n",
96752ccf843Smisaki 		    nxgep->instance, lb_mode);
96844961713Sgirish 		status = B_FALSE;
96944961713Sgirish 		goto nxge_set_lb_exit;
97044961713Sgirish 	}
97144961713Sgirish 	lb_mode = *(uint32_t *)mp->b_rptr;
97244961713Sgirish 	lb_info = NULL;
97344961713Sgirish 	if (lb_mode == lb_normal.value)
97444961713Sgirish 		lb_info = &lb_normal;
97544961713Sgirish 	else if ((lb_mode == lb_external10g.value) &&
97652ccf843Smisaki 	    (nxgep->statsp->mac_stats.cap_10gfdx))
97744961713Sgirish 		lb_info = &lb_external10g;
97844961713Sgirish 	else if ((lb_mode == lb_external1000.value) &&
97952ccf843Smisaki 	    (nxgep->statsp->mac_stats.cap_1000fdx))
98044961713Sgirish 		lb_info = &lb_external1000;
98144961713Sgirish 	else if ((lb_mode == lb_external100.value) &&
98252ccf843Smisaki 	    (nxgep->statsp->mac_stats.cap_100fdx))
98344961713Sgirish 		lb_info = &lb_external100;
98444961713Sgirish 	else if ((lb_mode == lb_external10.value) &&
98552ccf843Smisaki 	    (nxgep->statsp->mac_stats.cap_10fdx))
98644961713Sgirish 		lb_info = &lb_external10;
98744961713Sgirish 	else if ((lb_mode == lb_phy10g.value) &&
9880cad6a5fSyc 	    (nxgep->mac.portmode == PORT_10G_COPPER ||
9890cad6a5fSyc 	    nxgep->mac.portmode == PORT_10G_TN1010 ||
9900cad6a5fSyc 	    nxgep->mac.portmode == PORT_10G_FIBER))
99144961713Sgirish 		lb_info = &lb_phy10g;
99244961713Sgirish 	else if ((lb_mode == lb_phy1000.value) &&
9930cad6a5fSyc 	    (nxgep->mac.portmode == PORT_1G_COPPER ||
9940cad6a5fSyc 	    nxgep->mac.portmode == PORT_1G_TN1010 ||
9950cad6a5fSyc 	    nxgep->mac.portmode == PORT_1G_RGMII_FIBER))
99644961713Sgirish 		lb_info = &lb_phy1000;
99744961713Sgirish 	else if ((lb_mode == lb_phy.value) &&
99852ccf843Smisaki 	    (nxgep->mac.portmode == PORT_1G_COPPER))
99944961713Sgirish 		lb_info = &lb_phy;
100044961713Sgirish 	else if ((lb_mode == lb_serdes10g.value) &&
10010cad6a5fSyc 	    (nxgep->mac.portmode == PORT_10G_FIBER ||
10020cad6a5fSyc 	    nxgep->mac.portmode == PORT_10G_COPPER ||
10030cad6a5fSyc 	    nxgep->mac.portmode == PORT_10G_TN1010 ||
10040cad6a5fSyc 	    nxgep->mac.portmode == PORT_10G_SERDES))
100544961713Sgirish 		lb_info = &lb_serdes10g;
100644961713Sgirish 	else if ((lb_mode == lb_serdes1000.value) &&
10070cad6a5fSyc 	    (nxgep->mac.portmode == PORT_1G_FIBER ||
10080cad6a5fSyc 	    nxgep->mac.portmode == PORT_1G_TN1010 ||
10090cad6a5fSyc 	    nxgep->mac.portmode == PORT_1G_SERDES))
101044961713Sgirish 		lb_info = &lb_serdes1000;
101144961713Sgirish 	else if (lb_mode == lb_mac10g.value)
101244961713Sgirish 		lb_info = &lb_mac10g;
101344961713Sgirish 	else if (lb_mode == lb_mac1000.value)
101444961713Sgirish 		lb_info = &lb_mac1000;
101544961713Sgirish 	else if (lb_mode == lb_mac.value)
101644961713Sgirish 		lb_info = &lb_mac;
101744961713Sgirish 	else {
101844961713Sgirish 		cmn_err(CE_NOTE,
101952ccf843Smisaki 		    "!nxge%d: Loopback mode not supported(mode %d).\n",
102052ccf843Smisaki 		    nxgep->instance, lb_mode);
102144961713Sgirish 		status = B_FALSE;
102244961713Sgirish 		goto nxge_set_lb_exit;
102344961713Sgirish 	}
102444961713Sgirish 
102544961713Sgirish 	if (lb_mode == nxge_lb_normal) {
102644961713Sgirish 		if (nxge_lb_dbg) {
102744961713Sgirish 			cmn_err(CE_NOTE,
102852ccf843Smisaki 			    "!nxge%d: Returning to normal operation",
102952ccf843Smisaki 			    nxgep->instance);
103044961713Sgirish 		}
1031321febdeSsbehera 		if (nxge_set_lb_normal(nxgep) != NXGE_OK) {
1032321febdeSsbehera 			status = B_FALSE;
1033321febdeSsbehera 			cmn_err(CE_NOTE,
1034321febdeSsbehera 			    "!nxge%d: Failed to return to normal operation",
1035321febdeSsbehera 			    nxgep->instance);
1036321febdeSsbehera 		}
103744961713Sgirish 		goto nxge_set_lb_exit;
103844961713Sgirish 	}
103944961713Sgirish 	nxgep->statsp->port_stats.lb_mode = lb_mode;
104044961713Sgirish 
104144961713Sgirish 	if (nxge_lb_dbg)
104244961713Sgirish 		cmn_err(CE_NOTE,
104352ccf843Smisaki 		    "!nxge%d: Adapter now in %s loopback mode",
104452ccf843Smisaki 		    nxgep->instance, lb_info->key);
104544961713Sgirish 	nxgep->param_arr[param_autoneg].value = 0;
104644961713Sgirish 	nxgep->param_arr[param_anar_10gfdx].value =
104752ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_ext10g) ||
104852ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_mac10g) ||
104952ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_phy10g) ||
105052ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_serdes10g);
105144961713Sgirish 	nxgep->param_arr[param_anar_10ghdx].value = 0;
105244961713Sgirish 	nxgep->param_arr[param_anar_1000fdx].value =
105352ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_ext1000) ||
105452ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_mac1000) ||
105552ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_phy1000) ||
105652ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_serdes1000);
105744961713Sgirish 	nxgep->param_arr[param_anar_1000hdx].value = 0;
105844961713Sgirish 	nxgep->param_arr[param_anar_100fdx].value =
105952ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_phy) ||
106052ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_mac) ||
106152ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_ext100);
106244961713Sgirish 	nxgep->param_arr[param_anar_100hdx].value = 0;
106344961713Sgirish 	nxgep->param_arr[param_anar_10fdx].value =
106452ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_mac) ||
106552ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_ext10);
106644961713Sgirish 	if (nxgep->statsp->port_stats.lb_mode == nxge_lb_ext1000) {
106744961713Sgirish 		nxgep->param_arr[param_master_cfg_enable].value = 1;
106844961713Sgirish 		nxgep->param_arr[param_master_cfg_value].value = 1;
106944961713Sgirish 	}
107044961713Sgirish 	if ((nxgep->statsp->port_stats.lb_mode == nxge_lb_ext10g) ||
107152ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_ext1000) ||
107252ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_ext100) ||
107352ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_ext10) ||
107452ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_phy10g) ||
107552ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_phy1000) ||
107652ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_phy)) {
107744961713Sgirish 
1078321febdeSsbehera 		if (nxge_link_monitor(nxgep, LINK_MONITOR_STOP) != NXGE_OK)
1079321febdeSsbehera 			goto nxge_set_lb_err;
1080321febdeSsbehera 		if (nxge_xcvr_find(nxgep) != NXGE_OK)
1081321febdeSsbehera 			goto nxge_set_lb_err;
1082321febdeSsbehera 		if (nxge_link_init(nxgep) != NXGE_OK)
1083321febdeSsbehera 			goto nxge_set_lb_err;
1084321febdeSsbehera 		if (nxge_link_monitor(nxgep, LINK_MONITOR_START) != NXGE_OK)
1085321febdeSsbehera 			goto nxge_set_lb_err;
108644961713Sgirish 	}
108744961713Sgirish 	if (lb_info->lb_type == internal) {
108844961713Sgirish 		if ((nxgep->statsp->port_stats.lb_mode == nxge_lb_mac10g) ||
108952ccf843Smisaki 		    (nxgep->statsp->port_stats.lb_mode ==
109052ccf843Smisaki 		    nxge_lb_phy10g) ||
109152ccf843Smisaki 		    (nxgep->statsp->port_stats.lb_mode ==
109252ccf843Smisaki 		    nxge_lb_serdes10g)) {
109344961713Sgirish 			nxgep->statsp->mac_stats.link_speed = 10000;
1094a3c5bd6dSspeer 		} else if ((nxgep->statsp->port_stats.lb_mode
109552ccf843Smisaki 		    == nxge_lb_mac1000) ||
109652ccf843Smisaki 		    (nxgep->statsp->port_stats.lb_mode ==
109752ccf843Smisaki 		    nxge_lb_phy1000) ||
109852ccf843Smisaki 		    (nxgep->statsp->port_stats.lb_mode ==
109952ccf843Smisaki 		    nxge_lb_serdes1000)) {
110044961713Sgirish 			nxgep->statsp->mac_stats.link_speed = 1000;
110144961713Sgirish 		} else {
110244961713Sgirish 			nxgep->statsp->mac_stats.link_speed = 100;
110344961713Sgirish 		}
110444961713Sgirish 		nxgep->statsp->mac_stats.link_duplex = 2;
110544961713Sgirish 		nxgep->statsp->mac_stats.link_up = 1;
110644961713Sgirish 	}
1107321febdeSsbehera 	if (nxge_global_reset(nxgep) != NXGE_OK)
1108321febdeSsbehera 		goto nxge_set_lb_err;
110944961713Sgirish 
111044961713Sgirish nxge_set_lb_exit:
111144961713Sgirish 	NXGE_DEBUG_MSG((nxgep, DDI_CTL,
111252ccf843Smisaki 	    "<== nxge_set_lb status = 0x%08x", status));
111344961713Sgirish 	return (status);
1114321febdeSsbehera nxge_set_lb_err:
1115321febdeSsbehera 	status = B_FALSE;
1116321febdeSsbehera 	cmn_err(CE_NOTE,
1117321febdeSsbehera 	    "!nxge%d: Failed to put adapter in %s loopback mode",
1118321febdeSsbehera 	    nxgep->instance, lb_info->key);
1119321febdeSsbehera 	return (status);
112044961713Sgirish }
112144961713Sgirish 
112200161856Syc /* Return to normal (no loopback) mode */
1123a3c5bd6dSspeer /* ARGSUSED */
1124321febdeSsbehera nxge_status_t
112544961713Sgirish nxge_set_lb_normal(p_nxge_t nxgep)
112644961713Sgirish {
1127321febdeSsbehera 	nxge_status_t	status = NXGE_OK;
1128321febdeSsbehera 
112944961713Sgirish 	NXGE_DEBUG_MSG((nxgep, DDI_CTL, "==> nxge_set_lb_normal"));
1130321febdeSsbehera 
113144961713Sgirish 	nxgep->statsp->port_stats.lb_mode = nxge_lb_normal;
113244961713Sgirish 	nxgep->param_arr[param_autoneg].value =
113352ccf843Smisaki 	    nxgep->param_arr[param_autoneg].old_value;
113444961713Sgirish 	nxgep->param_arr[param_anar_1000fdx].value =
113552ccf843Smisaki 	    nxgep->param_arr[param_anar_1000fdx].old_value;
113644961713Sgirish 	nxgep->param_arr[param_anar_1000hdx].value =
113752ccf843Smisaki 	    nxgep->param_arr[param_anar_1000hdx].old_value;
113844961713Sgirish 	nxgep->param_arr[param_anar_100fdx].value =
113952ccf843Smisaki 	    nxgep->param_arr[param_anar_100fdx].old_value;
114044961713Sgirish 	nxgep->param_arr[param_anar_100hdx].value =
114152ccf843Smisaki 	    nxgep->param_arr[param_anar_100hdx].old_value;
114244961713Sgirish 	nxgep->param_arr[param_anar_10fdx].value =
114352ccf843Smisaki 	    nxgep->param_arr[param_anar_10fdx].old_value;
114444961713Sgirish 	nxgep->param_arr[param_master_cfg_enable].value =
114552ccf843Smisaki 	    nxgep->param_arr[param_master_cfg_enable].old_value;
114644961713Sgirish 	nxgep->param_arr[param_master_cfg_value].value =
114752ccf843Smisaki 	    nxgep->param_arr[param_master_cfg_value].old_value;
114844961713Sgirish 
1149321febdeSsbehera 	if ((status = nxge_global_reset(nxgep)) != NXGE_OK)
1150321febdeSsbehera 		return (status);
115144961713Sgirish 
1152321febdeSsbehera 	if ((status = nxge_link_monitor(nxgep, LINK_MONITOR_STOP)) != NXGE_OK)
1153321febdeSsbehera 		return (status);
1154321febdeSsbehera 	if ((status = nxge_xcvr_find(nxgep)) != NXGE_OK)
1155321febdeSsbehera 		return (status);
1156321febdeSsbehera 	if ((status = nxge_link_init(nxgep)) != NXGE_OK)
1157321febdeSsbehera 		return (status);
1158321febdeSsbehera 	status = nxge_link_monitor(nxgep, LINK_MONITOR_START);
115944961713Sgirish 
116044961713Sgirish 	NXGE_DEBUG_MSG((nxgep, DDI_CTL, "<== nxge_set_lb_normal"));
1161321febdeSsbehera 
1162321febdeSsbehera 	return (status);
116344961713Sgirish }
116444961713Sgirish 
1165a3c5bd6dSspeer /* ARGSUSED */
116644961713Sgirish void
116744961713Sgirish nxge_get_mii(p_nxge_t nxgep, p_mblk_t mp)
116844961713Sgirish {
116944961713Sgirish 	uint16_t reg;
117044961713Sgirish 
117144961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "==> nxge_get_mii"));
117244961713Sgirish 
117344961713Sgirish 	reg = *(uint16_t *)mp->b_rptr;
117444961713Sgirish 	(void) nxge_mii_read(nxgep, nxgep->statsp->mac_stats.xcvr_portn, reg,
117552ccf843Smisaki 	    (uint16_t *)mp->b_rptr);
117644961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "reg = 0x%08X value = 0x%04X",
117752ccf843Smisaki 	    reg, *(uint16_t *)mp->b_rptr));
117844961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "<== nxge_get_mii"));
117944961713Sgirish }
118044961713Sgirish 
1181a3c5bd6dSspeer /* ARGSUSED */
118244961713Sgirish void
118344961713Sgirish nxge_put_mii(p_nxge_t nxgep, p_mblk_t mp)
118444961713Sgirish {
118544961713Sgirish 	uint16_t *buf;
118644961713Sgirish 	uint8_t reg;
118744961713Sgirish 
118844961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "==> nxge_put_mii"));
118944961713Sgirish 	buf = (uint16_t *)mp->b_rptr;
119044961713Sgirish 	reg = (uint8_t)buf[0];
119144961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL,
119252ccf843Smisaki 	    "reg = 0x%08X index = 0x%08X value = 0x%08X",
119352ccf843Smisaki 	    reg, buf[0], buf[1]));
119444961713Sgirish 	(void) nxge_mii_write(nxgep, nxgep->statsp->mac_stats.xcvr_portn,
119552ccf843Smisaki 	    reg, buf[1]);
119644961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "<== nxge_put_mii"));
119744961713Sgirish }
119844961713Sgirish 
1199a3c5bd6dSspeer /* ARGSUSED */
120044961713Sgirish void
120144961713Sgirish nxge_check_hw_state(p_nxge_t nxgep)
120244961713Sgirish {
1203a3c5bd6dSspeer 	p_nxge_ldgv_t ldgvp;
1204a3c5bd6dSspeer 	p_nxge_ldv_t t_ldvp;
120544961713Sgirish 
120644961713Sgirish 	NXGE_DEBUG_MSG((nxgep, SYSERR_CTL, "==> nxge_check_hw_state"));
120744961713Sgirish 
120814ea4bb7Ssd 	MUTEX_ENTER(nxgep->genlock);
120914ea4bb7Ssd 	nxgep->nxge_timerid = 0;
121014ea4bb7Ssd 	if (!(nxgep->drv_state & STATE_HW_INITIALIZED)) {
121114ea4bb7Ssd 		goto nxge_check_hw_state_exit;
121214ea4bb7Ssd 	}
121344961713Sgirish 	nxge_check_tx_hang(nxgep);
121444961713Sgirish 
121544961713Sgirish 	ldgvp = nxgep->ldgvp;
121644961713Sgirish 	if (ldgvp == NULL || (ldgvp->ldvp_syserr == NULL)) {
121744961713Sgirish 		NXGE_ERROR_MSG((nxgep, SYSERR_CTL, "<== nxge_check_hw_state: "
121852ccf843Smisaki 		    "NULL ldgvp (interrupt not ready)."));
121914ea4bb7Ssd 		goto nxge_check_hw_state_exit;
122044961713Sgirish 	}
122144961713Sgirish 	t_ldvp = ldgvp->ldvp_syserr;
122244961713Sgirish 	if (!t_ldvp->use_timer) {
122344961713Sgirish 		NXGE_DEBUG_MSG((nxgep, SYSERR_CTL, "<== nxge_check_hw_state: "
122452ccf843Smisaki 		    "ldgvp $%p t_ldvp $%p use_timer flag %d",
122552ccf843Smisaki 		    ldgvp, t_ldvp, t_ldvp->use_timer));
122614ea4bb7Ssd 		goto nxge_check_hw_state_exit;
122714ea4bb7Ssd 	}
122814ea4bb7Ssd 	if (fm_check_acc_handle(nxgep->dev_regs->nxge_regh) != DDI_FM_OK) {
122914ea4bb7Ssd 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
123052ccf843Smisaki 		    "port%d Bad register acc handle", nxgep->mac.portnum));
123144961713Sgirish 	}
1232a3c5bd6dSspeer 	(void) nxge_syserr_intr((void *) t_ldvp, (void *) nxgep);
123344961713Sgirish 
123444961713Sgirish 	nxgep->nxge_timerid = nxge_start_timer(nxgep, nxge_check_hw_state,
123552ccf843Smisaki 	    NXGE_CHECK_TIMER);
123644961713Sgirish 
123714ea4bb7Ssd nxge_check_hw_state_exit:
123814ea4bb7Ssd 	MUTEX_EXIT(nxgep->genlock);
123944961713Sgirish 	NXGE_DEBUG_MSG((nxgep, SYSERR_CTL, "<== nxge_check_hw_state"));
124044961713Sgirish }
124144961713Sgirish 
124244961713Sgirish /*ARGSUSED*/
124344961713Sgirish static void
1244a3c5bd6dSspeer nxge_rtrace_ioctl(p_nxge_t nxgep, queue_t *wq, mblk_t *mp,
1245a3c5bd6dSspeer 	struct iocblk *iocp)
124644961713Sgirish {
1247a3c5bd6dSspeer 	ssize_t size;
1248a3c5bd6dSspeer 	rtrace_t *rtp;
1249a3c5bd6dSspeer 	mblk_t *nmp;
1250a3c5bd6dSspeer 	uint32_t i, j;
1251a3c5bd6dSspeer 	uint32_t start_blk;
1252a3c5bd6dSspeer 	uint32_t base_entry;
1253a3c5bd6dSspeer 	uint32_t num_entries;
125444961713Sgirish 
125544961713Sgirish 	NXGE_DEBUG_MSG((nxgep, STR_CTL, "==> nxge_rtrace_ioctl"));
125644961713Sgirish 
125744961713Sgirish 	size = 1024;
125844961713Sgirish 	if (mp->b_cont == NULL || MBLKL(mp->b_cont) < size) {
125944961713Sgirish 		NXGE_DEBUG_MSG((nxgep, STR_CTL,
126052ccf843Smisaki 		    "malformed M_IOCTL MBLKL = %d size = %d",
126152ccf843Smisaki 		    MBLKL(mp->b_cont), size));
126244961713Sgirish 		miocnak(wq, mp, 0, EINVAL);
126344961713Sgirish 		return;
126444961713Sgirish 	}
126544961713Sgirish 	nmp = mp->b_cont;
126644961713Sgirish 	rtp = (rtrace_t *)nmp->b_rptr;
126744961713Sgirish 	start_blk = rtp->next_idx;
126844961713Sgirish 	num_entries = rtp->last_idx;
126944961713Sgirish 	base_entry = start_blk * MAX_RTRACE_IOC_ENTRIES;
127044961713Sgirish 
127144961713Sgirish 	NXGE_DEBUG_MSG((nxgep, STR_CTL, "start_blk = %d\n", start_blk));
127244961713Sgirish 	NXGE_DEBUG_MSG((nxgep, STR_CTL, "num_entries = %d\n", num_entries));
127344961713Sgirish 	NXGE_DEBUG_MSG((nxgep, STR_CTL, "base_entry = %d\n", base_entry));
127444961713Sgirish 
127544961713Sgirish 	rtp->next_idx = npi_rtracebuf.next_idx;
127644961713Sgirish 	rtp->last_idx = npi_rtracebuf.last_idx;
127744961713Sgirish 	rtp->wrapped = npi_rtracebuf.wrapped;
127844961713Sgirish 	for (i = 0, j = base_entry; i < num_entries; i++, j++) {
127944961713Sgirish 		rtp->buf[i].ctl_addr = npi_rtracebuf.buf[j].ctl_addr;
128044961713Sgirish 		rtp->buf[i].val_l32 = npi_rtracebuf.buf[j].val_l32;
128144961713Sgirish 		rtp->buf[i].val_h32 = npi_rtracebuf.buf[j].val_h32;
128244961713Sgirish 	}
128344961713Sgirish 
128444961713Sgirish 	nmp->b_wptr = nmp->b_rptr + size;
128544961713Sgirish 	NXGE_DEBUG_MSG((nxgep, STR_CTL, "<== nxge_rtrace_ioctl"));
128644961713Sgirish 	miocack(wq, mp, (int)size, 0);
128744961713Sgirish }
1288