xref: /illumos-gate/usr/src/uts/common/io/nxge/nxge_hw.c (revision e3d11eee)
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 /*
2289282175SSantwona 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
nxge_global_reset(p_nxge_t nxgep)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
nxge_hw_id_init(p_nxge_t nxgep)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
nxge_hw_init_niu_common(p_nxge_t nxgep)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 
19044961713Sgirish uint_t
nxge_intr(char * arg1,char * arg2)191*e3d11eeeSToomas Soome nxge_intr(char *arg1, char *arg2)
19244961713Sgirish {
193a3c5bd6dSspeer 	p_nxge_ldv_t ldvp = (p_nxge_ldv_t)arg1;
194a3c5bd6dSspeer 	p_nxge_t nxgep = (p_nxge_t)arg2;
195a3c5bd6dSspeer 	uint_t serviced = DDI_INTR_UNCLAIMED;
196a3c5bd6dSspeer 	uint8_t ldv;
197a3c5bd6dSspeer 	npi_handle_t handle;
198a3c5bd6dSspeer 	p_nxge_ldgv_t ldgvp;
199a3c5bd6dSspeer 	p_nxge_ldg_t ldgp, t_ldgp;
200a3c5bd6dSspeer 	p_nxge_ldv_t t_ldvp;
201a3c5bd6dSspeer 	uint64_t vector0 = 0, vector1 = 0, vector2 = 0;
202a3c5bd6dSspeer 	int i, j, nldvs, nintrs = 1;
203a3c5bd6dSspeer 	npi_status_t rs = NPI_SUCCESS;
20444961713Sgirish 
2054df3b64dSToomas Soome 	VERIFY(ldvp != NULL);
2064df3b64dSToomas Soome 
20744961713Sgirish 	/* DDI interface returns second arg as NULL (n2 niumx driver) !!! */
208a3c5bd6dSspeer 	if (arg2 == NULL || (void *) ldvp->nxgep != arg2) {
20944961713Sgirish 		nxgep = ldvp->nxgep;
21044961713Sgirish 	}
21144961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr"));
21244961713Sgirish 
21344961713Sgirish 	if (!(nxgep->drv_state & STATE_HW_INITIALIZED)) {
21444961713Sgirish 		NXGE_ERROR_MSG((nxgep, INT_CTL,
21552ccf843Smisaki 		    "<== nxge_intr: not initialized 0x%x", serviced));
21644961713Sgirish 		return (serviced);
21744961713Sgirish 	}
21844961713Sgirish 
21944961713Sgirish 	ldgvp = nxgep->ldgvp;
220a3c5bd6dSspeer 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr: ldgvp $%p", ldgvp));
22144961713Sgirish 	if (ldvp == NULL && ldgvp) {
22244961713Sgirish 		t_ldvp = ldvp = ldgvp->ldvp;
22344961713Sgirish 	}
22444961713Sgirish 	if (ldvp) {
22544961713Sgirish 		ldgp = t_ldgp = ldvp->ldgp;
22644961713Sgirish 	}
22744961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr: "
22852ccf843Smisaki 	    "ldgvp $%p ldvp $%p ldgp $%p", ldgvp, ldvp, ldgp));
22944961713Sgirish 	if (ldgvp == NULL || ldvp == NULL || ldgp == NULL) {
23044961713Sgirish 		NXGE_ERROR_MSG((nxgep, INT_CTL, "==> nxge_intr: "
23152ccf843Smisaki 		    "ldgvp $%p ldvp $%p ldgp $%p", ldgvp, ldvp, ldgp));
23244961713Sgirish 		NXGE_ERROR_MSG((nxgep, INT_CTL, "<== nxge_intr: not ready"));
23344961713Sgirish 		return (DDI_INTR_UNCLAIMED);
23444961713Sgirish 	}
23544961713Sgirish 	/*
236a3c5bd6dSspeer 	 * This interrupt handler will have to go through all the logical
237a3c5bd6dSspeer 	 * devices to find out which logical device interrupts us and then call
23844961713Sgirish 	 * its handler to process the events.
23944961713Sgirish 	 */
24044961713Sgirish 	handle = NXGE_DEV_NPI_HANDLE(nxgep);
24144961713Sgirish 	t_ldgp = ldgp;
24244961713Sgirish 	t_ldvp = ldgp->ldvp;
24344961713Sgirish 
24444961713Sgirish 	nldvs = ldgp->nldvs;
24544961713Sgirish 
24644961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr: #ldvs %d #intrs %d",
24752ccf843Smisaki 	    nldvs, ldgvp->ldg_intrs));
24844961713Sgirish 
24944961713Sgirish 	serviced = DDI_INTR_CLAIMED;
25044961713Sgirish 	for (i = 0; i < nintrs; i++, t_ldgp++) {
25144961713Sgirish 		NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr(%d): #ldvs %d "
25252ccf843Smisaki 		    " #intrs %d", i, nldvs, nintrs));
25344961713Sgirish 		/* Get this group's flag bits.  */
25444961713Sgirish 		rs = npi_ldsv_ldfs_get(handle, t_ldgp->ldg,
25552ccf843Smisaki 		    &vector0, &vector1, &vector2);
25644961713Sgirish 		if (rs) {
25744961713Sgirish 			continue;
25844961713Sgirish 		}
25944961713Sgirish 		if (!vector0 && !vector1 && !vector2) {
26044961713Sgirish 			NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr: "
26152ccf843Smisaki 			    "no interrupts on group %d", t_ldgp->ldg));
26244961713Sgirish 			continue;
26344961713Sgirish 		}
26444961713Sgirish 		NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr: "
26552ccf843Smisaki 		    "vector0 0x%llx vector1 0x%llx vector2 0x%llx",
26652ccf843Smisaki 		    vector0, vector1, vector2));
26744961713Sgirish 		nldvs = t_ldgp->nldvs;
26844961713Sgirish 		for (j = 0; j < nldvs; j++, t_ldvp++) {
26944961713Sgirish 			/*
27044961713Sgirish 			 * Call device's handler if flag bits are on.
27144961713Sgirish 			 */
27244961713Sgirish 			ldv = t_ldvp->ldv;
27344961713Sgirish 			if (((ldv < NXGE_MAC_LD_START) &&
27452ccf843Smisaki 			    (LDV_ON(ldv, vector0) |
27552ccf843Smisaki 			    (LDV_ON(ldv, vector1)))) ||
27652ccf843Smisaki 			    (ldv >= NXGE_MAC_LD_START &&
27752ccf843Smisaki 			    ((LDV2_ON_1(ldv, vector2)) ||
27852ccf843Smisaki 			    (LDV2_ON_2(ldv, vector2))))) {
27944961713Sgirish 				(void) (t_ldvp->ldv_intr_handler)(
28052ccf843Smisaki 				    (caddr_t)t_ldvp, arg2);
28144961713Sgirish 				NXGE_DEBUG_MSG((nxgep, INT_CTL,
28252ccf843Smisaki 				    "==> nxge_intr: "
28352ccf843Smisaki 				    "calling device %d #ldvs %d #intrs %d",
28452ccf843Smisaki 				    j, nldvs, nintrs));
28544961713Sgirish 			}
28644961713Sgirish 		}
28744961713Sgirish 	}
28844961713Sgirish 
28944961713Sgirish 	t_ldgp = ldgp;
29044961713Sgirish 	for (i = 0; i < nintrs; i++, t_ldgp++) {
29144961713Sgirish 		/* rearm group interrupts */
292da14cebeSEric Cheng 		NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr: arm "
293da14cebeSEric Cheng 		    "group %d", t_ldgp->ldg));
294da14cebeSEric Cheng 		(void) npi_intr_ldg_mgmt_set(handle, t_ldgp->ldg,
295da14cebeSEric Cheng 		    t_ldgp->arm, t_ldgp->ldg_timer);
29644961713Sgirish 	}
29744961713Sgirish 
29844961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "<== nxge_intr: serviced 0x%x",
29952ccf843Smisaki 	    serviced));
30044961713Sgirish 	return (serviced);
30144961713Sgirish }
30244961713Sgirish 
30300161856Syc 
30400161856Syc /*
30500161856Syc  * XFP Related Status Register Values Under 3 Different Conditions
30600161856Syc  *
30700161856Syc  * -------------+-------------------------+-------------------------
3080cad6a5fSyc  * 		|   Intel XFP and Avago   |	 Picolight XFP
30900161856Syc  * -------------+---------+---------------+---------+---------------
31000161856Syc  *		| STATUS0 | TX_ALARM_STAT | STATUS0 | TX_ALARM_STAT
31100161856Syc  * -------------+---------+---------------+---------+---------------
31200161856Syc  *	No XFP  | 0x639C  |      0x40     | 0x639C  |      0x40
31300161856Syc  * -------------+---------+---------------+---------+---------------
31400161856Syc  * XFP,linkdown | 0x43BC  |      0x40     | 0x639C  |      0x40
31500161856Syc  * -------------+---------+---------------+---------+---------------
31600161856Syc  * XFP,linkup   | 0x03FC  |      0x0      | 0x03FC  |      0x0
31700161856Syc  * -------------+---------+---------------+---------+---------------
31800161856Syc  * Note:
31900161856Syc  *      STATUS0         = BCM8704_USER_ANALOG_STATUS0_REG
32000161856Syc  *      TX_ALARM_STAT   = BCM8704_USER_TX_ALARM_STATUS_REG
32100161856Syc  */
322ee5416c9Syc /* ARGSUSED */
323ee5416c9Syc static nxge_status_t
nxge_check_xaui_xfp(p_nxge_t nxgep)324ee5416c9Syc nxge_check_xaui_xfp(p_nxge_t nxgep)
325ee5416c9Syc {
326ee5416c9Syc 	nxge_status_t	status = NXGE_OK;
327ee5416c9Syc 	uint8_t		phy_port_addr;
328ee5416c9Syc 	uint16_t	val;
329ee5416c9Syc 	uint16_t	val1;
330ee5416c9Syc 	uint8_t		portn;
331ee5416c9Syc 
332ee5416c9Syc 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_check_xaui_xfp"));
333ee5416c9Syc 
334ee5416c9Syc 	portn = nxgep->mac.portnum;
335ee5416c9Syc 	phy_port_addr = nxgep->statsp->mac_stats.xcvr_portn;
336ee5416c9Syc 
33700161856Syc 	/*
33800161856Syc 	 * Keep the val1 code even though it is not used. Could be
33900161856Syc 	 * used to differenciate the "No XFP" case and "XFP,linkdown"
34000161856Syc 	 * case when a Intel XFP is used.
34100161856Syc 	 */
342ee5416c9Syc 	if ((status = nxge_mdio_read(nxgep, phy_port_addr,
343ee5416c9Syc 	    BCM8704_USER_DEV3_ADDR,
344ee5416c9Syc 	    BCM8704_USER_ANALOG_STATUS0_REG, &val)) == NXGE_OK) {
345ee5416c9Syc 		status = nxge_mdio_read(nxgep, phy_port_addr,
346ee5416c9Syc 		    BCM8704_USER_DEV3_ADDR,
347ee5416c9Syc 		    BCM8704_USER_TX_ALARM_STATUS_REG, &val1);
348ee5416c9Syc 	}
34900161856Syc 
350ee5416c9Syc 	if (status != NXGE_OK) {
351b37cc459SToomas Soome 		NXGE_FM_REPORT_ERROR(nxgep, portn, 0,
352ee5416c9Syc 		    NXGE_FM_EREPORT_XAUI_ERR);
35300161856Syc 		if (DDI_FM_EREPORT_CAP(nxgep->fm_capabilities)) {
35400161856Syc 			NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
35500161856Syc 			    "XAUI is bad or absent on port<%d>\n", portn));
35600161856Syc 		}
3570cad6a5fSyc #ifdef NXGE_DEBUG
3580cad6a5fSyc 	/*
3590cad6a5fSyc 	 * As a workaround for CR6693529, do not execute this block of
3600cad6a5fSyc 	 * code for non-debug driver. When a Picolight XFP transceiver
3610cad6a5fSyc 	 * is used, register BCM8704_USER_ANALOG_STATUS0_REG returns
3620cad6a5fSyc 	 * the same 0x639C value in normal link down case, which causes
3630cad6a5fSyc 	 * false FMA messages and link reconnection problem.
3640cad6a5fSyc 	 */
365ee5416c9Syc 	} else if (nxgep->mac.portmode == PORT_10G_FIBER) {
366ee5416c9Syc 		/*
367f6485eecSyc 		 * 0x03FC = 0000 0011 1111 1100 (XFP is normal)
368f6485eecSyc 		 * 0x639C = 0110 0011 1001 1100 (XFP has problem)
369ee5416c9Syc 		 * bit14 = 1: PDM loss-of-light indicator
370ee5416c9Syc 		 * bit13 = 1: PDM Rx loss-of-signal
371ee5416c9Syc 		 * bit6  = 0: Light is NOT ok
372ee5416c9Syc 		 * bit5  = 0: PMD Rx signal is NOT ok
373ee5416c9Syc 		 */
374f6485eecSyc 		if (val == 0x639C) {
375ee5416c9Syc 			NXGE_FM_REPORT_ERROR(nxgep, portn, NULL,
376ee5416c9Syc 			    NXGE_FM_EREPORT_XFP_ERR);
37700161856Syc 			if (DDI_FM_EREPORT_CAP(nxgep->fm_capabilities)) {
37800161856Syc 				NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
37900161856Syc 				    "XFP is bad or absent on port<%d>\n",
38000161856Syc 				    portn));
38100161856Syc 			}
382ee5416c9Syc 			status = NXGE_ERROR;
383ee5416c9Syc 		}
3840cad6a5fSyc #endif
385ee5416c9Syc 	}
386ee5416c9Syc 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "<== nxge_check_xaui_xfp"));
387ee5416c9Syc 	return (status);
388ee5416c9Syc }
389ee5416c9Syc 
390ee5416c9Syc 
391a3c5bd6dSspeer /* ARGSUSED */
39244961713Sgirish uint_t
nxge_syserr_intr(void * arg1,void * arg2)39344961713Sgirish nxge_syserr_intr(void *arg1, void *arg2)
39444961713Sgirish {
395a3c5bd6dSspeer 	p_nxge_ldv_t ldvp = (p_nxge_ldv_t)arg1;
396a3c5bd6dSspeer 	p_nxge_t nxgep = (p_nxge_t)arg2;
397a3c5bd6dSspeer 	p_nxge_ldg_t ldgp = NULL;
398a3c5bd6dSspeer 	npi_handle_t handle;
399a3c5bd6dSspeer 	sys_err_stat_t estat;
400a3c5bd6dSspeer 	uint_t serviced = DDI_INTR_UNCLAIMED;
40144961713Sgirish 
40244961713Sgirish 	if (arg1 == NULL && arg2 == NULL) {
40344961713Sgirish 		return (serviced);
40444961713Sgirish 	}
405a3c5bd6dSspeer 	if (arg2 == NULL || ((ldvp != NULL && (void *) ldvp->nxgep != arg2))) {
40644961713Sgirish 		if (ldvp != NULL) {
40744961713Sgirish 			nxgep = ldvp->nxgep;
40844961713Sgirish 		}
40944961713Sgirish 	}
41044961713Sgirish 	NXGE_DEBUG_MSG((nxgep, SYSERR_CTL,
41152ccf843Smisaki 	    "==> nxge_syserr_intr: arg2 $%p arg1 $%p", nxgep, ldvp));
41244961713Sgirish 	if (ldvp != NULL && ldvp->use_timer == B_FALSE) {
41344961713Sgirish 		ldgp = ldvp->ldgp;
41444961713Sgirish 		if (ldgp == NULL) {
41544961713Sgirish 			NXGE_ERROR_MSG((nxgep, SYSERR_CTL,
41652ccf843Smisaki 			    "<== nxge_syserrintr(no logical group): "
41752ccf843Smisaki 			    "arg2 $%p arg1 $%p", nxgep, ldvp));
41844961713Sgirish 			return (DDI_INTR_UNCLAIMED);
41944961713Sgirish 		}
42044961713Sgirish 		/*
42144961713Sgirish 		 * Get the logical device state if the function uses interrupt.
42244961713Sgirish 		 */
42344961713Sgirish 	}
42444961713Sgirish 
42544961713Sgirish 	/* This interrupt handler is for system error interrupts.  */
42644961713Sgirish 	handle = NXGE_DEV_NPI_HANDLE(nxgep);
42744961713Sgirish 	estat.value = 0;
42844961713Sgirish 	(void) npi_fzc_sys_err_stat_get(handle, &estat);
42944961713Sgirish 	NXGE_DEBUG_MSG((nxgep, SYSERR_CTL,
43052ccf843Smisaki 	    "==> nxge_syserr_intr: device error 0x%016llx", estat.value));
43144961713Sgirish 
43244961713Sgirish 	if (estat.bits.ldw.smx) {
43344961713Sgirish 		/* SMX */
43444961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
43552ccf843Smisaki 		    "==> nxge_syserr_intr: device error - SMX"));
43644961713Sgirish 	} else if (estat.bits.ldw.mac) {
43744961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
43852ccf843Smisaki 		    "==> nxge_syserr_intr: device error - MAC"));
43944961713Sgirish 		/*
440a3c5bd6dSspeer 		 * There is nothing to be done here. All MAC errors go to per
441a3c5bd6dSspeer 		 * MAC port interrupt. MIF interrupt is the only MAC sub-block
442a3c5bd6dSspeer 		 * that can generate status here. MIF status reported will be
443a3c5bd6dSspeer 		 * ignored here. It is checked by per port timer instead.
44444961713Sgirish 		 */
44544961713Sgirish 	} else if (estat.bits.ldw.ipp) {
44644961713Sgirish 		NXGE_DEBUG_MSG((nxgep, NXGE_ERR_CTL,
44752ccf843Smisaki 		    "==> nxge_syserr_intr: device error - IPP"));
44844961713Sgirish 		(void) nxge_ipp_handle_sys_errors(nxgep);
44944961713Sgirish 	} else if (estat.bits.ldw.zcp) {
45044961713Sgirish 		/* ZCP */
451f6485eecSyc 		NXGE_DEBUG_MSG((nxgep, NXGE_ERR_CTL,
45252ccf843Smisaki 		    "==> nxge_syserr_intr: device error - ZCP"));
45344961713Sgirish 		(void) nxge_zcp_handle_sys_errors(nxgep);
45444961713Sgirish 	} else if (estat.bits.ldw.tdmc) {
45544961713Sgirish 		/* TDMC */
45644961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
45752ccf843Smisaki 		    "==> nxge_syserr_intr: device error - TDMC"));
45844961713Sgirish 		/*
459a3c5bd6dSspeer 		 * There is no TDMC system errors defined in the PRM. All TDMC
460a3c5bd6dSspeer 		 * channel specific errors are reported on a per channel basis.
46144961713Sgirish 		 */
46244961713Sgirish 	} else if (estat.bits.ldw.rdmc) {
46344961713Sgirish 		/* RDMC */
46444961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
46552ccf843Smisaki 		    "==> nxge_syserr_intr: device error - RDMC"));
46644961713Sgirish 		(void) nxge_rxdma_handle_sys_errors(nxgep);
46744961713Sgirish 	} else if (estat.bits.ldw.txc) {
46844961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
46952ccf843Smisaki 		    "==> nxge_syserr_intr: device error - TXC"));
47044961713Sgirish 		(void) nxge_txc_handle_sys_errors(nxgep);
47144961713Sgirish 	} else if ((nxgep->niu_type != N2_NIU) && estat.bits.ldw.peu) {
47244961713Sgirish 		/* PCI-E */
47344961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
47452ccf843Smisaki 		    "==> nxge_syserr_intr: device error - PCI-E"));
47544961713Sgirish 	} else if (estat.bits.ldw.meta1) {
47644961713Sgirish 		/* META1 */
47744961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
47852ccf843Smisaki 		    "==> nxge_syserr_intr: device error - META1"));
47944961713Sgirish 	} else if (estat.bits.ldw.meta2) {
48044961713Sgirish 		/* META2 */
48144961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
48252ccf843Smisaki 		    "==> nxge_syserr_intr: device error - META2"));
48344961713Sgirish 	} else if (estat.bits.ldw.fflp) {
48444961713Sgirish 		/* FFLP */
48544961713Sgirish 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
48652ccf843Smisaki 		    "==> nxge_syserr_intr: device error - FFLP"));
48744961713Sgirish 		(void) nxge_fflp_handle_sys_errors(nxgep);
48844961713Sgirish 	}
489ee5416c9Syc 
49000161856Syc 	/*
49100161856Syc 	 * nxge_check_xaui_xfg checks XAUI for all of the following
49200161856Syc 	 * portmodes, but checks XFP only if portmode == PORT_10G_FIBER.
49300161856Syc 	 */
494ee5416c9Syc 	if (nxgep->mac.portmode == PORT_10G_FIBER ||
49552ccf843Smisaki 	    nxgep->mac.portmode == PORT_10G_COPPER ||
49652ccf843Smisaki 	    nxgep->mac.portmode == PORT_10G_TN1010 ||
49752ccf843Smisaki 	    nxgep->mac.portmode == PORT_1G_TN1010) {
498ee5416c9Syc 		if (nxge_check_xaui_xfp(nxgep) != NXGE_OK) {
499ee5416c9Syc 			NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
500ee5416c9Syc 			    "==> nxge_syserr_intr: device error - XAUI"));
501ee5416c9Syc 		}
502ee5416c9Syc 	}
503ee5416c9Syc 
50444961713Sgirish 	serviced = DDI_INTR_CLAIMED;
50544961713Sgirish 
50644961713Sgirish 	if (ldgp != NULL && ldvp != NULL && ldgp->nldvs == 1 &&
50752ccf843Smisaki 	    !ldvp->use_timer) {
50844961713Sgirish 		(void) npi_intr_ldg_mgmt_set(handle, ldgp->ldg,
50952ccf843Smisaki 		    B_TRUE, ldgp->ldg_timer);
51044961713Sgirish 	}
51144961713Sgirish 	NXGE_DEBUG_MSG((nxgep, SYSERR_CTL, "<== nxge_syserr_intr"));
51244961713Sgirish 	return (serviced);
51344961713Sgirish }
51444961713Sgirish 
515a3c5bd6dSspeer /* ARGSUSED */
51644961713Sgirish void
nxge_intr_hw_enable(p_nxge_t nxgep)51744961713Sgirish nxge_intr_hw_enable(p_nxge_t nxgep)
51844961713Sgirish {
51944961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr_hw_enable"));
52044961713Sgirish 	(void) nxge_intr_mask_mgmt_set(nxgep, B_TRUE);
52144961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "<== nxge_intr_hw_enable"));
52244961713Sgirish }
52344961713Sgirish 
524a3c5bd6dSspeer /* ARGSUSED */
52544961713Sgirish void
nxge_intr_hw_disable(p_nxge_t nxgep)52644961713Sgirish nxge_intr_hw_disable(p_nxge_t nxgep)
52744961713Sgirish {
52844961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_intr_hw_disable"));
52944961713Sgirish 	(void) nxge_intr_mask_mgmt_set(nxgep, B_FALSE);
53044961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "<== nxge_intr_hw_disable"));
53144961713Sgirish }
53244961713Sgirish 
533a3c5bd6dSspeer /* ARGSUSED */
53444961713Sgirish void
nxge_rx_hw_blank(void * arg,time_t ticks,uint_t count)53544961713Sgirish nxge_rx_hw_blank(void *arg, time_t ticks, uint_t count)
53644961713Sgirish {
537a3c5bd6dSspeer 	p_nxge_t nxgep = (p_nxge_t)arg;
538a3c5bd6dSspeer 	uint8_t channel;
539a3c5bd6dSspeer 	npi_handle_t handle;
540a3c5bd6dSspeer 	p_nxge_ldgv_t ldgvp;
541a3c5bd6dSspeer 	p_nxge_ldv_t ldvp;
542a3c5bd6dSspeer 	int i;
54344961713Sgirish 
54444961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "==> nxge_rx_hw_blank"));
54544961713Sgirish 	handle = NXGE_DEV_NPI_HANDLE(nxgep);
54644961713Sgirish 
54744961713Sgirish 	if ((ldgvp = nxgep->ldgvp) == NULL) {
54844961713Sgirish 		NXGE_ERROR_MSG((nxgep, INT_CTL,
54952ccf843Smisaki 		    "<== nxge_rx_hw_blank (not enabled)"));
55044961713Sgirish 		return;
55144961713Sgirish 	}
55244961713Sgirish 	ldvp = nxgep->ldgvp->ldvp;
55344961713Sgirish 	if (ldvp == NULL) {
55444961713Sgirish 		return;
55544961713Sgirish 	}
55644961713Sgirish 	for (i = 0; i < ldgvp->nldvs; i++, ldvp++) {
55744961713Sgirish 		if (ldvp->is_rxdma) {
55844961713Sgirish 			channel = ldvp->channel;
55944961713Sgirish 			(void) npi_rxdma_cfg_rdc_rcr_threshold(handle,
56052ccf843Smisaki 			    channel, count);
56144961713Sgirish 			(void) npi_rxdma_cfg_rdc_rcr_timeout(handle,
56252ccf843Smisaki 			    channel, ticks);
56344961713Sgirish 		}
56444961713Sgirish 	}
56544961713Sgirish 
56644961713Sgirish 	NXGE_DEBUG_MSG((nxgep, INT_CTL, "<== nxge_rx_hw_blank"));
56744961713Sgirish }
56844961713Sgirish 
569a3c5bd6dSspeer /* ARGSUSED */
57044961713Sgirish void
nxge_hw_stop(p_nxge_t nxgep)57144961713Sgirish nxge_hw_stop(p_nxge_t nxgep)
57244961713Sgirish {
57344961713Sgirish 	NXGE_DEBUG_MSG((nxgep, DDI_CTL, "==> nxge_hw_stop"));
57444961713Sgirish 
57544961713Sgirish 	(void) nxge_tx_mac_disable(nxgep);
57644961713Sgirish 	(void) nxge_rx_mac_disable(nxgep);
57744961713Sgirish 	(void) nxge_txdma_hw_mode(nxgep, NXGE_DMA_STOP);
57844961713Sgirish 	(void) nxge_rxdma_hw_mode(nxgep, NXGE_DMA_STOP);
57944961713Sgirish 
58044961713Sgirish 	NXGE_DEBUG_MSG((nxgep, DDI_CTL, "<== nxge_hw_stop"));
58144961713Sgirish }
58244961713Sgirish 
583a3c5bd6dSspeer /* ARGSUSED */
58444961713Sgirish void
nxge_hw_ioctl(p_nxge_t nxgep,queue_t * wq,mblk_t * mp,struct iocblk * iocp)58544961713Sgirish nxge_hw_ioctl(p_nxge_t nxgep, queue_t *wq, mblk_t *mp, struct iocblk *iocp)
58644961713Sgirish {
58744961713Sgirish 	int cmd;
58844961713Sgirish 
58944961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "==> nxge_hw_ioctl"));
59044961713Sgirish 
59144961713Sgirish 	if (nxgep == NULL) {
59244961713Sgirish 		miocnak(wq, mp, 0, EINVAL);
59344961713Sgirish 		return;
59444961713Sgirish 	}
59544961713Sgirish 	iocp->ioc_error = 0;
59644961713Sgirish 	cmd = iocp->ioc_cmd;
59744961713Sgirish 
59844961713Sgirish 	switch (cmd) {
59944961713Sgirish 	default:
60044961713Sgirish 		miocnak(wq, mp, 0, EINVAL);
60144961713Sgirish 		return;
60244961713Sgirish 
60344961713Sgirish 	case NXGE_GET_MII:
60444961713Sgirish 		nxge_get_mii(nxgep, mp->b_cont);
60544961713Sgirish 		miocack(wq, mp, sizeof (uint16_t), 0);
60644961713Sgirish 		break;
60744961713Sgirish 
60844961713Sgirish 	case NXGE_PUT_MII:
60944961713Sgirish 		nxge_put_mii(nxgep, mp->b_cont);
61044961713Sgirish 		miocack(wq, mp, 0, 0);
61144961713Sgirish 		break;
61244961713Sgirish 
61344961713Sgirish 	case NXGE_GET64:
61444961713Sgirish 		nxge_get64(nxgep, mp->b_cont);
61544961713Sgirish 		miocack(wq, mp, sizeof (uint32_t), 0);
61644961713Sgirish 		break;
61744961713Sgirish 
61844961713Sgirish 	case NXGE_PUT64:
61944961713Sgirish 		nxge_put64(nxgep, mp->b_cont);
62044961713Sgirish 		miocack(wq, mp, 0, 0);
62144961713Sgirish 		break;
62244961713Sgirish 
62344961713Sgirish 	case NXGE_PUT_TCAM:
62444961713Sgirish 		nxge_put_tcam(nxgep, mp->b_cont);
62544961713Sgirish 		miocack(wq, mp, 0, 0);
62644961713Sgirish 		break;
62744961713Sgirish 
62844961713Sgirish 	case NXGE_GET_TCAM:
62944961713Sgirish 		nxge_get_tcam(nxgep, mp->b_cont);
63044961713Sgirish 		miocack(wq, mp, 0, 0);
63144961713Sgirish 		break;
63244961713Sgirish 
63344961713Sgirish 	case NXGE_TX_REGS_DUMP:
63444961713Sgirish 		nxge_txdma_regs_dump_channels(nxgep);
63544961713Sgirish 		miocack(wq, mp, 0, 0);
63644961713Sgirish 		break;
63744961713Sgirish 	case NXGE_RX_REGS_DUMP:
63844961713Sgirish 		nxge_rxdma_regs_dump_channels(nxgep);
63944961713Sgirish 		miocack(wq, mp, 0, 0);
64044961713Sgirish 		break;
64144961713Sgirish 	case NXGE_VIR_INT_REGS_DUMP:
64244961713Sgirish 	case NXGE_INT_REGS_DUMP:
64344961713Sgirish 		nxge_virint_regs_dump(nxgep);
64444961713Sgirish 		miocack(wq, mp, 0, 0);
64544961713Sgirish 		break;
64644961713Sgirish 	case NXGE_RTRACE:
64744961713Sgirish 		nxge_rtrace_ioctl(nxgep, wq, mp, iocp);
64844961713Sgirish 		break;
64944961713Sgirish 	}
65044961713Sgirish }
65144961713Sgirish 
652a3c5bd6dSspeer /* ARGSUSED */
65344961713Sgirish void
nxge_loopback_ioctl(p_nxge_t nxgep,queue_t * wq,mblk_t * mp,struct iocblk * iocp)65444961713Sgirish nxge_loopback_ioctl(p_nxge_t nxgep, queue_t *wq, mblk_t *mp,
655a3c5bd6dSspeer 	struct iocblk *iocp)
65644961713Sgirish {
657a3c5bd6dSspeer 	p_lb_property_t lb_props;
658a3c5bd6dSspeer 
659a3c5bd6dSspeer 	size_t size;
660a3c5bd6dSspeer 	int i;
66144961713Sgirish 
66244961713Sgirish 	if (mp->b_cont == NULL) {
66344961713Sgirish 		miocnak(wq, mp, 0, EINVAL);
66444961713Sgirish 	}
66544961713Sgirish 	switch (iocp->ioc_cmd) {
66644961713Sgirish 	case LB_GET_MODE:
66744961713Sgirish 		NXGE_DEBUG_MSG((nxgep, IOC_CTL, "NXGE_GET_LB_MODE command"));
66844961713Sgirish 		if (nxgep != NULL) {
66944961713Sgirish 			*(lb_info_sz_t *)mp->b_cont->b_rptr =
67052ccf843Smisaki 			    nxgep->statsp->port_stats.lb_mode;
67144961713Sgirish 			miocack(wq, mp, sizeof (nxge_lb_t), 0);
672ee5416c9Syc 		} else {
67344961713Sgirish 			miocnak(wq, mp, 0, EINVAL);
674ee5416c9Syc 		}
67544961713Sgirish 		break;
67644961713Sgirish 	case LB_SET_MODE:
67744961713Sgirish 		NXGE_DEBUG_MSG((nxgep, IOC_CTL, "NXGE_SET_LB_MODE command"));
67844961713Sgirish 		if (iocp->ioc_count != sizeof (uint32_t)) {
67944961713Sgirish 			miocack(wq, mp, 0, 0);
68044961713Sgirish 			break;
68144961713Sgirish 		}
68244961713Sgirish 		if ((nxgep != NULL) && nxge_set_lb(nxgep, wq, mp->b_cont)) {
68344961713Sgirish 			miocack(wq, mp, 0, 0);
68444961713Sgirish 		} else {
68544961713Sgirish 			miocnak(wq, mp, 0, EPROTO);
68644961713Sgirish 		}
68744961713Sgirish 		break;
68844961713Sgirish 	case LB_GET_INFO_SIZE:
68944961713Sgirish 		NXGE_DEBUG_MSG((nxgep, IOC_CTL, "LB_GET_INFO_SIZE command"));
69044961713Sgirish 		if (nxgep != NULL) {
69144961713Sgirish 			size = sizeof (lb_normal);
69244961713Sgirish 			if (nxgep->statsp->mac_stats.cap_10gfdx) {
69300161856Syc 				/* TN1010 does not support external loopback */
69400161856Syc 				if (nxgep->mac.portmode != PORT_1G_TN1010 &&
69500161856Syc 				    nxgep->mac.portmode != PORT_10G_TN1010) {
69600161856Syc 					size += sizeof (lb_external10g);
69700161856Syc 				}
69844961713Sgirish 				size += sizeof (lb_mac10g);
699936117e2Ssbehera 				/* Publish PHY loopback if PHY is present */
700936117e2Ssbehera 				if (nxgep->mac.portmode == PORT_10G_COPPER ||
70100161856Syc 				    nxgep->mac.portmode == PORT_10G_TN1010 ||
702936117e2Ssbehera 				    nxgep->mac.portmode == PORT_10G_FIBER)
703936117e2Ssbehera 					size += sizeof (lb_phy10g);
70444961713Sgirish 			}
70500161856Syc 
70600161856Syc 			/*
70700161856Syc 			 * Even if cap_10gfdx is false, we still do 10G
70800161856Syc 			 * serdes loopback as a part of SunVTS xnetlbtest
70900161856Syc 			 * internal loopback test.
71000161856Syc 			 */
711936117e2Ssbehera 			if (nxgep->mac.portmode == PORT_10G_FIBER ||
71289282175SSantwona Behera 			    nxgep->mac.portmode == PORT_10G_COPPER ||
71300161856Syc 			    nxgep->mac.portmode == PORT_10G_TN1010 ||
714936117e2Ssbehera 			    nxgep->mac.portmode == PORT_10G_SERDES)
715936117e2Ssbehera 				size += sizeof (lb_serdes10g);
716936117e2Ssbehera 
71744961713Sgirish 			if (nxgep->statsp->mac_stats.cap_1000fdx) {
71800161856Syc 				/* TN1010 does not support external loopback */
71900161856Syc 				if (nxgep->mac.portmode != PORT_1G_TN1010 &&
72000161856Syc 				    nxgep->mac.portmode != PORT_10G_TN1010) {
72100161856Syc 					size += sizeof (lb_external1000);
72200161856Syc 				}
72344961713Sgirish 				size += sizeof (lb_mac1000);
7240cad6a5fSyc 				if (nxgep->mac.portmode == PORT_1G_COPPER ||
72500161856Syc 				    nxgep->mac.portmode == PORT_1G_TN1010 ||
7260cad6a5fSyc 				    nxgep->mac.portmode ==
7270cad6a5fSyc 				    PORT_1G_RGMII_FIBER)
72844961713Sgirish 					size += sizeof (lb_phy1000);
72944961713Sgirish 			}
73044961713Sgirish 			if (nxgep->statsp->mac_stats.cap_100fdx)
73144961713Sgirish 				size += sizeof (lb_external100);
73244961713Sgirish 			if (nxgep->statsp->mac_stats.cap_10fdx)
73344961713Sgirish 				size += sizeof (lb_external10);
734936117e2Ssbehera 			if (nxgep->mac.portmode == PORT_1G_FIBER ||
73500161856Syc 			    nxgep->mac.portmode == PORT_1G_TN1010 ||
736936117e2Ssbehera 			    nxgep->mac.portmode == PORT_1G_SERDES)
73744961713Sgirish 				size += sizeof (lb_serdes1000);
7382e59129aSraghus 
73944961713Sgirish 			*(lb_info_sz_t *)mp->b_cont->b_rptr = size;
74044961713Sgirish 
74144961713Sgirish 			NXGE_DEBUG_MSG((nxgep, IOC_CTL,
74252ccf843Smisaki 			    "NXGE_GET_LB_INFO command: size %d", size));
74344961713Sgirish 			miocack(wq, mp, sizeof (lb_info_sz_t), 0);
74444961713Sgirish 		} else
74544961713Sgirish 			miocnak(wq, mp, 0, EINVAL);
74644961713Sgirish 		break;
74744961713Sgirish 
74844961713Sgirish 	case LB_GET_INFO:
74944961713Sgirish 		NXGE_DEBUG_MSG((nxgep, IOC_CTL, "NXGE_GET_LB_INFO command"));
75044961713Sgirish 		if (nxgep != NULL) {
75144961713Sgirish 			size = sizeof (lb_normal);
75244961713Sgirish 			if (nxgep->statsp->mac_stats.cap_10gfdx) {
75300161856Syc 				/* TN1010 does not support external loopback */
75400161856Syc 				if (nxgep->mac.portmode != PORT_1G_TN1010 &&
75500161856Syc 				    nxgep->mac.portmode != PORT_10G_TN1010) {
75600161856Syc 					size += sizeof (lb_external10g);
75700161856Syc 				}
75844961713Sgirish 				size += sizeof (lb_mac10g);
759936117e2Ssbehera 				/* Publish PHY loopback if PHY is present */
760936117e2Ssbehera 				if (nxgep->mac.portmode == PORT_10G_COPPER ||
76100161856Syc 				    nxgep->mac.portmode == PORT_10G_TN1010 ||
762936117e2Ssbehera 				    nxgep->mac.portmode == PORT_10G_FIBER)
763936117e2Ssbehera 					size += sizeof (lb_phy10g);
76444961713Sgirish 			}
765936117e2Ssbehera 			if (nxgep->mac.portmode == PORT_10G_FIBER ||
76689282175SSantwona Behera 			    nxgep->mac.portmode == PORT_10G_COPPER ||
76700161856Syc 			    nxgep->mac.portmode == PORT_10G_TN1010 ||
768936117e2Ssbehera 			    nxgep->mac.portmode == PORT_10G_SERDES)
769936117e2Ssbehera 				size += sizeof (lb_serdes10g);
770936117e2Ssbehera 
77144961713Sgirish 			if (nxgep->statsp->mac_stats.cap_1000fdx) {
77200161856Syc 				/* TN1010 does not support external loopback */
77300161856Syc 				if (nxgep->mac.portmode != PORT_1G_TN1010 &&
77400161856Syc 				    nxgep->mac.portmode != PORT_10G_TN1010) {
77500161856Syc 					size += sizeof (lb_external1000);
77600161856Syc 				}
77744961713Sgirish 				size += sizeof (lb_mac1000);
7780cad6a5fSyc 				if (nxgep->mac.portmode == PORT_1G_COPPER ||
77900161856Syc 				    nxgep->mac.portmode == PORT_1G_TN1010 ||
7800cad6a5fSyc 				    nxgep->mac.portmode ==
7810cad6a5fSyc 				    PORT_1G_RGMII_FIBER)
78244961713Sgirish 					size += sizeof (lb_phy1000);
78344961713Sgirish 			}
78444961713Sgirish 			if (nxgep->statsp->mac_stats.cap_100fdx)
78544961713Sgirish 				size += sizeof (lb_external100);
78600161856Syc 
78744961713Sgirish 			if (nxgep->statsp->mac_stats.cap_10fdx)
78844961713Sgirish 				size += sizeof (lb_external10);
78900161856Syc 
790936117e2Ssbehera 			if (nxgep->mac.portmode == PORT_1G_FIBER ||
79100161856Syc 			    nxgep->mac.portmode == PORT_1G_TN1010 ||
792936117e2Ssbehera 			    nxgep->mac.portmode == PORT_1G_SERDES)
79344961713Sgirish 				size += sizeof (lb_serdes1000);
79444961713Sgirish 
79544961713Sgirish 			NXGE_DEBUG_MSG((nxgep, IOC_CTL,
79652ccf843Smisaki 			    "NXGE_GET_LB_INFO command: size %d", size));
79744961713Sgirish 			if (size == iocp->ioc_count) {
79844961713Sgirish 				i = 0;
79944961713Sgirish 				lb_props = (p_lb_property_t)mp->b_cont->b_rptr;
80044961713Sgirish 				lb_props[i++] = lb_normal;
80100161856Syc 
80244961713Sgirish 				if (nxgep->statsp->mac_stats.cap_10gfdx) {
80344961713Sgirish 					lb_props[i++] = lb_mac10g;
804936117e2Ssbehera 					if (nxgep->mac.portmode ==
805936117e2Ssbehera 					    PORT_10G_COPPER ||
806936117e2Ssbehera 					    nxgep->mac.portmode ==
80700161856Syc 					    PORT_10G_TN1010 ||
80800161856Syc 					    nxgep->mac.portmode ==
80900161856Syc 					    PORT_10G_FIBER) {
810936117e2Ssbehera 						lb_props[i++] = lb_phy10g;
81100161856Syc 					}
81200161856Syc 					/* TN1010 does not support ext lb */
81300161856Syc 					if (nxgep->mac.portmode !=
81400161856Syc 					    PORT_10G_TN1010 &&
81500161856Syc 					    nxgep->mac.portmode !=
81600161856Syc 					    PORT_1G_TN1010) {
81700161856Syc 						lb_props[i++] = lb_external10g;
81800161856Syc 					}
81944961713Sgirish 				}
82000161856Syc 
821936117e2Ssbehera 				if (nxgep->mac.portmode == PORT_10G_FIBER ||
82289282175SSantwona Behera 				    nxgep->mac.portmode == PORT_10G_COPPER ||
82300161856Syc 				    nxgep->mac.portmode == PORT_10G_TN1010 ||
824936117e2Ssbehera 				    nxgep->mac.portmode == PORT_10G_SERDES)
825936117e2Ssbehera 					lb_props[i++] = lb_serdes10g;
826936117e2Ssbehera 
82700161856Syc 				if (nxgep->statsp->mac_stats.cap_1000fdx) {
82800161856Syc 					/* TN1010 does not support ext lb */
82900161856Syc 					if (nxgep->mac.portmode !=
83000161856Syc 					    PORT_10G_TN1010 &&
83100161856Syc 					    nxgep->mac.portmode !=
83200161856Syc 					    PORT_1G_TN1010) {
83300161856Syc 						lb_props[i++] = lb_external1000;
83400161856Syc 					}
83500161856Syc 				}
83600161856Syc 
83744961713Sgirish 				if (nxgep->statsp->mac_stats.cap_100fdx)
83844961713Sgirish 					lb_props[i++] = lb_external100;
83900161856Syc 
84044961713Sgirish 				if (nxgep->statsp->mac_stats.cap_10fdx)
84144961713Sgirish 					lb_props[i++] = lb_external10;
84200161856Syc 
84344961713Sgirish 				if (nxgep->statsp->mac_stats.cap_1000fdx)
84444961713Sgirish 					lb_props[i++] = lb_mac1000;
84500161856Syc 
8460cad6a5fSyc 				if (nxgep->mac.portmode == PORT_1G_COPPER ||
84700161856Syc 				    nxgep->mac.portmode == PORT_1G_TN1010 ||
8480cad6a5fSyc 				    nxgep->mac.portmode ==
8490cad6a5fSyc 				    PORT_1G_RGMII_FIBER) {
85044961713Sgirish 					if (nxgep->statsp->mac_stats.
85152ccf843Smisaki 					    cap_1000fdx)
85244961713Sgirish 						lb_props[i++] = lb_phy1000;
8530cad6a5fSyc 				} else if (nxgep->mac.portmode ==
8540cad6a5fSyc 				    PORT_1G_FIBER ||
8550cad6a5fSyc 				    nxgep->mac.portmode == PORT_1G_TN1010 ||
8560cad6a5fSyc 				    nxgep->mac.portmode == PORT_1G_SERDES) {
85744961713Sgirish 					lb_props[i++] = lb_serdes1000;
8582e59129aSraghus 				}
85944961713Sgirish 				miocack(wq, mp, size, 0);
86044961713Sgirish 			} else
86144961713Sgirish 				miocnak(wq, mp, 0, EINVAL);
86244961713Sgirish 		} else {
86344961713Sgirish 			miocnak(wq, mp, 0, EINVAL);
86444961713Sgirish 			cmn_err(CE_NOTE, "!nxge_hw_ioctl: invalid command 0x%x",
86552ccf843Smisaki 			    iocp->ioc_cmd);
86644961713Sgirish 		}
86744961713Sgirish 		break;
86844961713Sgirish 	}
86944961713Sgirish }
87044961713Sgirish 
87144961713Sgirish /*
87244961713Sgirish  * DMA channel interfaces to access various channel specific
87344961713Sgirish  * hardware functions.
87444961713Sgirish  */
875a3c5bd6dSspeer /* ARGSUSED */
87644961713Sgirish void
nxge_rxdma_channel_put64(nxge_os_acc_handle_t handle,void * reg_addrp,uint32_t reg_base,uint16_t channel,uint64_t reg_data)87744961713Sgirish nxge_rxdma_channel_put64(nxge_os_acc_handle_t handle, void *reg_addrp,
878a3c5bd6dSspeer 	uint32_t reg_base, uint16_t channel, uint64_t reg_data)
87944961713Sgirish {
880a3c5bd6dSspeer 	uint64_t reg_offset;
88144961713Sgirish 
88244961713Sgirish 	NXGE_DEBUG_MSG((NULL, DMA_CTL, "<== nxge_rxdma_channel_put64"));
88344961713Sgirish 
88444961713Sgirish 	/*
885a3c5bd6dSspeer 	 * Channel is assumed to be from 0 to the maximum DMA channel #. If we
886a3c5bd6dSspeer 	 * use the virtual DMA CSR address space from the config space (in PCI
887a3c5bd6dSspeer 	 * case), then the following code need to be use different offset
88844961713Sgirish 	 * computation macro.
88944961713Sgirish 	 */
89044961713Sgirish 	reg_offset = reg_base + DMC_OFFSET(channel);
89144961713Sgirish 	NXGE_PIO_WRITE64(handle, reg_addrp, reg_offset, reg_data);
89244961713Sgirish 
89344961713Sgirish 	NXGE_DEBUG_MSG((NULL, DMA_CTL, "<== nxge_rxdma_channel_put64"));
89444961713Sgirish }
89544961713Sgirish 
896a3c5bd6dSspeer /* ARGSUSED */
89744961713Sgirish uint64_t
nxge_rxdma_channel_get64(nxge_os_acc_handle_t handle,void * reg_addrp,uint32_t reg_base,uint16_t channel)89844961713Sgirish nxge_rxdma_channel_get64(nxge_os_acc_handle_t handle, void *reg_addrp,
899a3c5bd6dSspeer 	uint32_t reg_base, uint16_t channel)
90044961713Sgirish {
901a3c5bd6dSspeer 	uint64_t reg_offset;
90244961713Sgirish 
90344961713Sgirish 	NXGE_DEBUG_MSG((NULL, DMA_CTL, "<== nxge_rxdma_channel_get64"));
90444961713Sgirish 
90544961713Sgirish 	/*
906a3c5bd6dSspeer 	 * Channel is assumed to be from 0 to the maximum DMA channel #. If we
907a3c5bd6dSspeer 	 * use the virtual DMA CSR address space from the config space (in PCI
908a3c5bd6dSspeer 	 * case), then the following code need to be use different offset
90944961713Sgirish 	 * computation macro.
91044961713Sgirish 	 */
91144961713Sgirish 	reg_offset = reg_base + DMC_OFFSET(channel);
91244961713Sgirish 
91344961713Sgirish 	NXGE_DEBUG_MSG((NULL, DMA_CTL, "<== nxge_rxdma_channel_get64"));
91444961713Sgirish 
91544961713Sgirish 	return (NXGE_PIO_READ64(handle, reg_addrp, reg_offset));
91644961713Sgirish }
91744961713Sgirish 
918a3c5bd6dSspeer /* ARGSUSED */
91944961713Sgirish void
nxge_get32(p_nxge_t nxgep,p_mblk_t mp)92044961713Sgirish nxge_get32(p_nxge_t nxgep, p_mblk_t mp)
92144961713Sgirish {
922a3c5bd6dSspeer 	nxge_os_acc_handle_t nxge_regh;
92344961713Sgirish 
92444961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "nxge_get32"));
92544961713Sgirish 	nxge_regh = nxgep->dev_regs->nxge_regh;
92644961713Sgirish 
92744961713Sgirish 	*(uint32_t *)mp->b_rptr = NXGE_PIO_READ32(nxge_regh,
92852ccf843Smisaki 	    nxgep->dev_regs->nxge_regp, *(uint32_t *)mp->b_rptr);
92944961713Sgirish 
93044961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "value = 0x%08X",
93152ccf843Smisaki 	    *(uint32_t *)mp->b_rptr));
93244961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "nxge_get32"));
93344961713Sgirish }
93444961713Sgirish 
935a3c5bd6dSspeer /* ARGSUSED */
93644961713Sgirish void
nxge_put32(p_nxge_t nxgep,p_mblk_t mp)93744961713Sgirish nxge_put32(p_nxge_t nxgep, p_mblk_t mp)
93844961713Sgirish {
93944961713Sgirish 	nxge_os_acc_handle_t nxge_regh;
94044961713Sgirish 	uint32_t *buf;
94144961713Sgirish 	uint8_t *reg;
94244961713Sgirish 
94344961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "nxge_put32"));
94444961713Sgirish 	nxge_regh = nxgep->dev_regs->nxge_regh;
94544961713Sgirish 
94644961713Sgirish 	buf = (uint32_t *)mp->b_rptr;
94744961713Sgirish 	reg = (uint8_t *)(nxgep->dev_regs->nxge_regp) + buf[0];
94844961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL,
94952ccf843Smisaki 	    "reg = 0x%016llX index = 0x%08X value = 0x%08X",
95052ccf843Smisaki 	    reg, buf[0], buf[1]));
95144961713Sgirish 	NXGE_PIO_WRITE32(nxge_regh, (uint32_t *)reg, 0, buf[1]);
95244961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "nxge_put32"));
95344961713Sgirish }
95444961713Sgirish 
95544961713Sgirish /*ARGSUSED*/
95644961713Sgirish boolean_t
nxge_set_lb(p_nxge_t nxgep,queue_t * wq,p_mblk_t mp)95744961713Sgirish nxge_set_lb(p_nxge_t nxgep, queue_t *wq, p_mblk_t mp)
95844961713Sgirish {
959a3c5bd6dSspeer 	boolean_t status = B_TRUE;
960a3c5bd6dSspeer 	uint32_t lb_mode;
961a3c5bd6dSspeer 	lb_property_t *lb_info;
96244961713Sgirish 
96344961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "<== nxge_set_lb"));
96444961713Sgirish 	lb_mode = nxgep->statsp->port_stats.lb_mode;
96544961713Sgirish 	if (lb_mode == *(uint32_t *)mp->b_rptr) {
96644961713Sgirish 		cmn_err(CE_NOTE,
96752ccf843Smisaki 		    "!nxge%d: Loopback mode already set (lb_mode %d).\n",
96852ccf843Smisaki 		    nxgep->instance, lb_mode);
96944961713Sgirish 		status = B_FALSE;
97044961713Sgirish 		goto nxge_set_lb_exit;
97144961713Sgirish 	}
97244961713Sgirish 	lb_mode = *(uint32_t *)mp->b_rptr;
97344961713Sgirish 	lb_info = NULL;
97444961713Sgirish 	if (lb_mode == lb_normal.value)
97544961713Sgirish 		lb_info = &lb_normal;
97644961713Sgirish 	else if ((lb_mode == lb_external10g.value) &&
97752ccf843Smisaki 	    (nxgep->statsp->mac_stats.cap_10gfdx))
97844961713Sgirish 		lb_info = &lb_external10g;
97944961713Sgirish 	else if ((lb_mode == lb_external1000.value) &&
98052ccf843Smisaki 	    (nxgep->statsp->mac_stats.cap_1000fdx))
98144961713Sgirish 		lb_info = &lb_external1000;
98244961713Sgirish 	else if ((lb_mode == lb_external100.value) &&
98352ccf843Smisaki 	    (nxgep->statsp->mac_stats.cap_100fdx))
98444961713Sgirish 		lb_info = &lb_external100;
98544961713Sgirish 	else if ((lb_mode == lb_external10.value) &&
98652ccf843Smisaki 	    (nxgep->statsp->mac_stats.cap_10fdx))
98744961713Sgirish 		lb_info = &lb_external10;
98844961713Sgirish 	else if ((lb_mode == lb_phy10g.value) &&
9890cad6a5fSyc 	    (nxgep->mac.portmode == PORT_10G_COPPER ||
9900cad6a5fSyc 	    nxgep->mac.portmode == PORT_10G_TN1010 ||
9910cad6a5fSyc 	    nxgep->mac.portmode == PORT_10G_FIBER))
99244961713Sgirish 		lb_info = &lb_phy10g;
99344961713Sgirish 	else if ((lb_mode == lb_phy1000.value) &&
9940cad6a5fSyc 	    (nxgep->mac.portmode == PORT_1G_COPPER ||
9950cad6a5fSyc 	    nxgep->mac.portmode == PORT_1G_TN1010 ||
9960cad6a5fSyc 	    nxgep->mac.portmode == PORT_1G_RGMII_FIBER))
99744961713Sgirish 		lb_info = &lb_phy1000;
99844961713Sgirish 	else if ((lb_mode == lb_phy.value) &&
99952ccf843Smisaki 	    (nxgep->mac.portmode == PORT_1G_COPPER))
100044961713Sgirish 		lb_info = &lb_phy;
100144961713Sgirish 	else if ((lb_mode == lb_serdes10g.value) &&
10020cad6a5fSyc 	    (nxgep->mac.portmode == PORT_10G_FIBER ||
10030cad6a5fSyc 	    nxgep->mac.portmode == PORT_10G_COPPER ||
10040cad6a5fSyc 	    nxgep->mac.portmode == PORT_10G_TN1010 ||
10050cad6a5fSyc 	    nxgep->mac.portmode == PORT_10G_SERDES))
100644961713Sgirish 		lb_info = &lb_serdes10g;
100744961713Sgirish 	else if ((lb_mode == lb_serdes1000.value) &&
10080cad6a5fSyc 	    (nxgep->mac.portmode == PORT_1G_FIBER ||
10090cad6a5fSyc 	    nxgep->mac.portmode == PORT_1G_TN1010 ||
10100cad6a5fSyc 	    nxgep->mac.portmode == PORT_1G_SERDES))
101144961713Sgirish 		lb_info = &lb_serdes1000;
101244961713Sgirish 	else if (lb_mode == lb_mac10g.value)
101344961713Sgirish 		lb_info = &lb_mac10g;
101444961713Sgirish 	else if (lb_mode == lb_mac1000.value)
101544961713Sgirish 		lb_info = &lb_mac1000;
101644961713Sgirish 	else if (lb_mode == lb_mac.value)
101744961713Sgirish 		lb_info = &lb_mac;
101844961713Sgirish 	else {
101944961713Sgirish 		cmn_err(CE_NOTE,
102052ccf843Smisaki 		    "!nxge%d: Loopback mode not supported(mode %d).\n",
102152ccf843Smisaki 		    nxgep->instance, lb_mode);
102244961713Sgirish 		status = B_FALSE;
102344961713Sgirish 		goto nxge_set_lb_exit;
102444961713Sgirish 	}
102544961713Sgirish 
102644961713Sgirish 	if (lb_mode == nxge_lb_normal) {
102744961713Sgirish 		if (nxge_lb_dbg) {
102844961713Sgirish 			cmn_err(CE_NOTE,
102952ccf843Smisaki 			    "!nxge%d: Returning to normal operation",
103052ccf843Smisaki 			    nxgep->instance);
103144961713Sgirish 		}
1032321febdeSsbehera 		if (nxge_set_lb_normal(nxgep) != NXGE_OK) {
1033321febdeSsbehera 			status = B_FALSE;
1034321febdeSsbehera 			cmn_err(CE_NOTE,
1035321febdeSsbehera 			    "!nxge%d: Failed to return to normal operation",
1036321febdeSsbehera 			    nxgep->instance);
1037321febdeSsbehera 		}
103844961713Sgirish 		goto nxge_set_lb_exit;
103944961713Sgirish 	}
104044961713Sgirish 	nxgep->statsp->port_stats.lb_mode = lb_mode;
104144961713Sgirish 
104244961713Sgirish 	if (nxge_lb_dbg)
104344961713Sgirish 		cmn_err(CE_NOTE,
104452ccf843Smisaki 		    "!nxge%d: Adapter now in %s loopback mode",
104552ccf843Smisaki 		    nxgep->instance, lb_info->key);
104644961713Sgirish 	nxgep->param_arr[param_autoneg].value = 0;
104744961713Sgirish 	nxgep->param_arr[param_anar_10gfdx].value =
104852ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_ext10g) ||
104952ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_mac10g) ||
105052ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_phy10g) ||
105152ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_serdes10g);
105244961713Sgirish 	nxgep->param_arr[param_anar_10ghdx].value = 0;
105344961713Sgirish 	nxgep->param_arr[param_anar_1000fdx].value =
105452ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_ext1000) ||
105552ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_mac1000) ||
105652ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_phy1000) ||
105752ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_serdes1000);
105844961713Sgirish 	nxgep->param_arr[param_anar_1000hdx].value = 0;
105944961713Sgirish 	nxgep->param_arr[param_anar_100fdx].value =
106052ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_phy) ||
106152ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_mac) ||
106252ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_ext100);
106344961713Sgirish 	nxgep->param_arr[param_anar_100hdx].value = 0;
106444961713Sgirish 	nxgep->param_arr[param_anar_10fdx].value =
106552ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_mac) ||
106652ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_ext10);
106744961713Sgirish 	if (nxgep->statsp->port_stats.lb_mode == nxge_lb_ext1000) {
106844961713Sgirish 		nxgep->param_arr[param_master_cfg_enable].value = 1;
106944961713Sgirish 		nxgep->param_arr[param_master_cfg_value].value = 1;
107044961713Sgirish 	}
107144961713Sgirish 	if ((nxgep->statsp->port_stats.lb_mode == nxge_lb_ext10g) ||
107252ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_ext1000) ||
107352ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_ext100) ||
107452ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_ext10) ||
107552ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_phy10g) ||
107652ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_phy1000) ||
107752ccf843Smisaki 	    (nxgep->statsp->port_stats.lb_mode == nxge_lb_phy)) {
107844961713Sgirish 
1079321febdeSsbehera 		if (nxge_link_monitor(nxgep, LINK_MONITOR_STOP) != NXGE_OK)
1080321febdeSsbehera 			goto nxge_set_lb_err;
1081321febdeSsbehera 		if (nxge_xcvr_find(nxgep) != NXGE_OK)
1082321febdeSsbehera 			goto nxge_set_lb_err;
1083321febdeSsbehera 		if (nxge_link_init(nxgep) != NXGE_OK)
1084321febdeSsbehera 			goto nxge_set_lb_err;
1085321febdeSsbehera 		if (nxge_link_monitor(nxgep, LINK_MONITOR_START) != NXGE_OK)
1086321febdeSsbehera 			goto nxge_set_lb_err;
108744961713Sgirish 	}
108844961713Sgirish 	if (lb_info->lb_type == internal) {
108944961713Sgirish 		if ((nxgep->statsp->port_stats.lb_mode == nxge_lb_mac10g) ||
109052ccf843Smisaki 		    (nxgep->statsp->port_stats.lb_mode ==
109152ccf843Smisaki 		    nxge_lb_phy10g) ||
109252ccf843Smisaki 		    (nxgep->statsp->port_stats.lb_mode ==
109352ccf843Smisaki 		    nxge_lb_serdes10g)) {
109444961713Sgirish 			nxgep->statsp->mac_stats.link_speed = 10000;
1095a3c5bd6dSspeer 		} else if ((nxgep->statsp->port_stats.lb_mode
109652ccf843Smisaki 		    == nxge_lb_mac1000) ||
109752ccf843Smisaki 		    (nxgep->statsp->port_stats.lb_mode ==
109852ccf843Smisaki 		    nxge_lb_phy1000) ||
109952ccf843Smisaki 		    (nxgep->statsp->port_stats.lb_mode ==
110052ccf843Smisaki 		    nxge_lb_serdes1000)) {
110144961713Sgirish 			nxgep->statsp->mac_stats.link_speed = 1000;
110244961713Sgirish 		} else {
110344961713Sgirish 			nxgep->statsp->mac_stats.link_speed = 100;
110444961713Sgirish 		}
110544961713Sgirish 		nxgep->statsp->mac_stats.link_duplex = 2;
110644961713Sgirish 		nxgep->statsp->mac_stats.link_up = 1;
110744961713Sgirish 	}
1108321febdeSsbehera 	if (nxge_global_reset(nxgep) != NXGE_OK)
1109321febdeSsbehera 		goto nxge_set_lb_err;
111044961713Sgirish 
111144961713Sgirish nxge_set_lb_exit:
111244961713Sgirish 	NXGE_DEBUG_MSG((nxgep, DDI_CTL,
111352ccf843Smisaki 	    "<== nxge_set_lb status = 0x%08x", status));
111444961713Sgirish 	return (status);
1115321febdeSsbehera nxge_set_lb_err:
1116321febdeSsbehera 	status = B_FALSE;
1117321febdeSsbehera 	cmn_err(CE_NOTE,
1118321febdeSsbehera 	    "!nxge%d: Failed to put adapter in %s loopback mode",
1119321febdeSsbehera 	    nxgep->instance, lb_info->key);
1120321febdeSsbehera 	return (status);
112144961713Sgirish }
112244961713Sgirish 
112300161856Syc /* Return to normal (no loopback) mode */
1124a3c5bd6dSspeer /* ARGSUSED */
1125321febdeSsbehera nxge_status_t
nxge_set_lb_normal(p_nxge_t nxgep)112644961713Sgirish nxge_set_lb_normal(p_nxge_t nxgep)
112744961713Sgirish {
1128321febdeSsbehera 	nxge_status_t	status = NXGE_OK;
1129321febdeSsbehera 
113044961713Sgirish 	NXGE_DEBUG_MSG((nxgep, DDI_CTL, "==> nxge_set_lb_normal"));
1131321febdeSsbehera 
113244961713Sgirish 	nxgep->statsp->port_stats.lb_mode = nxge_lb_normal;
113344961713Sgirish 	nxgep->param_arr[param_autoneg].value =
113452ccf843Smisaki 	    nxgep->param_arr[param_autoneg].old_value;
113544961713Sgirish 	nxgep->param_arr[param_anar_1000fdx].value =
113652ccf843Smisaki 	    nxgep->param_arr[param_anar_1000fdx].old_value;
113744961713Sgirish 	nxgep->param_arr[param_anar_1000hdx].value =
113852ccf843Smisaki 	    nxgep->param_arr[param_anar_1000hdx].old_value;
113944961713Sgirish 	nxgep->param_arr[param_anar_100fdx].value =
114052ccf843Smisaki 	    nxgep->param_arr[param_anar_100fdx].old_value;
114144961713Sgirish 	nxgep->param_arr[param_anar_100hdx].value =
114252ccf843Smisaki 	    nxgep->param_arr[param_anar_100hdx].old_value;
114344961713Sgirish 	nxgep->param_arr[param_anar_10fdx].value =
114452ccf843Smisaki 	    nxgep->param_arr[param_anar_10fdx].old_value;
114544961713Sgirish 	nxgep->param_arr[param_master_cfg_enable].value =
114652ccf843Smisaki 	    nxgep->param_arr[param_master_cfg_enable].old_value;
114744961713Sgirish 	nxgep->param_arr[param_master_cfg_value].value =
114852ccf843Smisaki 	    nxgep->param_arr[param_master_cfg_value].old_value;
114944961713Sgirish 
1150321febdeSsbehera 	if ((status = nxge_global_reset(nxgep)) != NXGE_OK)
1151321febdeSsbehera 		return (status);
115244961713Sgirish 
1153321febdeSsbehera 	if ((status = nxge_link_monitor(nxgep, LINK_MONITOR_STOP)) != NXGE_OK)
1154321febdeSsbehera 		return (status);
1155321febdeSsbehera 	if ((status = nxge_xcvr_find(nxgep)) != NXGE_OK)
1156321febdeSsbehera 		return (status);
1157321febdeSsbehera 	if ((status = nxge_link_init(nxgep)) != NXGE_OK)
1158321febdeSsbehera 		return (status);
1159321febdeSsbehera 	status = nxge_link_monitor(nxgep, LINK_MONITOR_START);
116044961713Sgirish 
116144961713Sgirish 	NXGE_DEBUG_MSG((nxgep, DDI_CTL, "<== nxge_set_lb_normal"));
1162321febdeSsbehera 
1163321febdeSsbehera 	return (status);
116444961713Sgirish }
116544961713Sgirish 
1166a3c5bd6dSspeer /* ARGSUSED */
116744961713Sgirish void
nxge_get_mii(p_nxge_t nxgep,p_mblk_t mp)116844961713Sgirish nxge_get_mii(p_nxge_t nxgep, p_mblk_t mp)
116944961713Sgirish {
117044961713Sgirish 	uint16_t reg;
117144961713Sgirish 
117244961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "==> nxge_get_mii"));
117344961713Sgirish 
117444961713Sgirish 	reg = *(uint16_t *)mp->b_rptr;
117544961713Sgirish 	(void) nxge_mii_read(nxgep, nxgep->statsp->mac_stats.xcvr_portn, reg,
117652ccf843Smisaki 	    (uint16_t *)mp->b_rptr);
117744961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "reg = 0x%08X value = 0x%04X",
117852ccf843Smisaki 	    reg, *(uint16_t *)mp->b_rptr));
117944961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "<== nxge_get_mii"));
118044961713Sgirish }
118144961713Sgirish 
1182a3c5bd6dSspeer /* ARGSUSED */
118344961713Sgirish void
nxge_put_mii(p_nxge_t nxgep,p_mblk_t mp)118444961713Sgirish nxge_put_mii(p_nxge_t nxgep, p_mblk_t mp)
118544961713Sgirish {
118644961713Sgirish 	uint16_t *buf;
118744961713Sgirish 	uint8_t reg;
118844961713Sgirish 
118944961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "==> nxge_put_mii"));
119044961713Sgirish 	buf = (uint16_t *)mp->b_rptr;
119144961713Sgirish 	reg = (uint8_t)buf[0];
119244961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL,
119352ccf843Smisaki 	    "reg = 0x%08X index = 0x%08X value = 0x%08X",
119452ccf843Smisaki 	    reg, buf[0], buf[1]));
119544961713Sgirish 	(void) nxge_mii_write(nxgep, nxgep->statsp->mac_stats.xcvr_portn,
119652ccf843Smisaki 	    reg, buf[1]);
119744961713Sgirish 	NXGE_DEBUG_MSG((nxgep, IOC_CTL, "<== nxge_put_mii"));
119844961713Sgirish }
119944961713Sgirish 
1200a3c5bd6dSspeer /* ARGSUSED */
120144961713Sgirish void
nxge_check_hw_state(p_nxge_t nxgep)120244961713Sgirish nxge_check_hw_state(p_nxge_t nxgep)
120344961713Sgirish {
1204a3c5bd6dSspeer 	p_nxge_ldgv_t ldgvp;
1205a3c5bd6dSspeer 	p_nxge_ldv_t t_ldvp;
120644961713Sgirish 
120744961713Sgirish 	NXGE_DEBUG_MSG((nxgep, SYSERR_CTL, "==> nxge_check_hw_state"));
120844961713Sgirish 
120914ea4bb7Ssd 	MUTEX_ENTER(nxgep->genlock);
121014ea4bb7Ssd 	nxgep->nxge_timerid = 0;
121114ea4bb7Ssd 	if (!(nxgep->drv_state & STATE_HW_INITIALIZED)) {
121214ea4bb7Ssd 		goto nxge_check_hw_state_exit;
121314ea4bb7Ssd 	}
121444961713Sgirish 	nxge_check_tx_hang(nxgep);
121544961713Sgirish 
121644961713Sgirish 	ldgvp = nxgep->ldgvp;
121744961713Sgirish 	if (ldgvp == NULL || (ldgvp->ldvp_syserr == NULL)) {
121844961713Sgirish 		NXGE_ERROR_MSG((nxgep, SYSERR_CTL, "<== nxge_check_hw_state: "
121952ccf843Smisaki 		    "NULL ldgvp (interrupt not ready)."));
122014ea4bb7Ssd 		goto nxge_check_hw_state_exit;
122144961713Sgirish 	}
122244961713Sgirish 	t_ldvp = ldgvp->ldvp_syserr;
122344961713Sgirish 	if (!t_ldvp->use_timer) {
122444961713Sgirish 		NXGE_DEBUG_MSG((nxgep, SYSERR_CTL, "<== nxge_check_hw_state: "
122552ccf843Smisaki 		    "ldgvp $%p t_ldvp $%p use_timer flag %d",
122652ccf843Smisaki 		    ldgvp, t_ldvp, t_ldvp->use_timer));
122714ea4bb7Ssd 		goto nxge_check_hw_state_exit;
122814ea4bb7Ssd 	}
122914ea4bb7Ssd 	if (fm_check_acc_handle(nxgep->dev_regs->nxge_regh) != DDI_FM_OK) {
123014ea4bb7Ssd 		NXGE_ERROR_MSG((nxgep, NXGE_ERR_CTL,
123152ccf843Smisaki 		    "port%d Bad register acc handle", nxgep->mac.portnum));
123244961713Sgirish 	}
1233a3c5bd6dSspeer 	(void) nxge_syserr_intr((void *) t_ldvp, (void *) nxgep);
123444961713Sgirish 
123544961713Sgirish 	nxgep->nxge_timerid = nxge_start_timer(nxgep, nxge_check_hw_state,
123652ccf843Smisaki 	    NXGE_CHECK_TIMER);
123744961713Sgirish 
123814ea4bb7Ssd nxge_check_hw_state_exit:
123914ea4bb7Ssd 	MUTEX_EXIT(nxgep->genlock);
124044961713Sgirish 	NXGE_DEBUG_MSG((nxgep, SYSERR_CTL, "<== nxge_check_hw_state"));
124144961713Sgirish }
124244961713Sgirish 
124344961713Sgirish /*ARGSUSED*/
124444961713Sgirish static void
nxge_rtrace_ioctl(p_nxge_t nxgep,queue_t * wq,mblk_t * mp,struct iocblk * iocp)1245a3c5bd6dSspeer nxge_rtrace_ioctl(p_nxge_t nxgep, queue_t *wq, mblk_t *mp,
1246a3c5bd6dSspeer 	struct iocblk *iocp)
124744961713Sgirish {
1248a3c5bd6dSspeer 	ssize_t size;
1249a3c5bd6dSspeer 	rtrace_t *rtp;
1250a3c5bd6dSspeer 	mblk_t *nmp;
1251a3c5bd6dSspeer 	uint32_t i, j;
1252a3c5bd6dSspeer 	uint32_t start_blk;
1253a3c5bd6dSspeer 	uint32_t base_entry;
1254a3c5bd6dSspeer 	uint32_t num_entries;
125544961713Sgirish 
125644961713Sgirish 	NXGE_DEBUG_MSG((nxgep, STR_CTL, "==> nxge_rtrace_ioctl"));
125744961713Sgirish 
125844961713Sgirish 	size = 1024;
125944961713Sgirish 	if (mp->b_cont == NULL || MBLKL(mp->b_cont) < size) {
126044961713Sgirish 		NXGE_DEBUG_MSG((nxgep, STR_CTL,
126152ccf843Smisaki 		    "malformed M_IOCTL MBLKL = %d size = %d",
126252ccf843Smisaki 		    MBLKL(mp->b_cont), size));
126344961713Sgirish 		miocnak(wq, mp, 0, EINVAL);
126444961713Sgirish 		return;
126544961713Sgirish 	}
126644961713Sgirish 	nmp = mp->b_cont;
126744961713Sgirish 	rtp = (rtrace_t *)nmp->b_rptr;
126844961713Sgirish 	start_blk = rtp->next_idx;
126944961713Sgirish 	num_entries = rtp->last_idx;
127044961713Sgirish 	base_entry = start_blk * MAX_RTRACE_IOC_ENTRIES;
127144961713Sgirish 
127244961713Sgirish 	NXGE_DEBUG_MSG((nxgep, STR_CTL, "start_blk = %d\n", start_blk));
127344961713Sgirish 	NXGE_DEBUG_MSG((nxgep, STR_CTL, "num_entries = %d\n", num_entries));
127444961713Sgirish 	NXGE_DEBUG_MSG((nxgep, STR_CTL, "base_entry = %d\n", base_entry));
127544961713Sgirish 
127644961713Sgirish 	rtp->next_idx = npi_rtracebuf.next_idx;
127744961713Sgirish 	rtp->last_idx = npi_rtracebuf.last_idx;
127844961713Sgirish 	rtp->wrapped = npi_rtracebuf.wrapped;
127944961713Sgirish 	for (i = 0, j = base_entry; i < num_entries; i++, j++) {
128044961713Sgirish 		rtp->buf[i].ctl_addr = npi_rtracebuf.buf[j].ctl_addr;
128144961713Sgirish 		rtp->buf[i].val_l32 = npi_rtracebuf.buf[j].val_l32;
128244961713Sgirish 		rtp->buf[i].val_h32 = npi_rtracebuf.buf[j].val_h32;
128344961713Sgirish 	}
128444961713Sgirish 
128544961713Sgirish 	nmp->b_wptr = nmp->b_rptr + size;
128644961713Sgirish 	NXGE_DEBUG_MSG((nxgep, STR_CTL, "<== nxge_rtrace_ioctl"));
128744961713Sgirish 	miocack(wq, mp, (int)size, 0);
128844961713Sgirish }
1289