2 * Copyright (C) 2003 - 2009 NetXen, Inc.
3 * Copyright (C) 2009 - QLogic Corporation.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
21 * The full GNU General Public License is included in this distribution
22 * in the file called "COPYING".
26 #include <linux/types.h>
27 #include <linux/delay.h>
28 #include <linux/pci.h>
30 #include <linux/netdevice.h>
31 #include <linux/ethtool.h>
33 #include "netxen_nic.h"
34 #include "netxen_nic_hw.h"
36 struct netxen_nic_stats
{
37 char stat_string
[ETH_GSTRING_LEN
];
42 #define NETXEN_NIC_STAT(m) sizeof(((struct netxen_adapter *)0)->m), \
43 offsetof(struct netxen_adapter, m)
45 #define NETXEN_NIC_PORT_WINDOW 0x10000
46 #define NETXEN_NIC_INVALID_DATA 0xDEADBEEF
48 static const struct netxen_nic_stats netxen_nic_gstrings_stats
[] = {
49 {"xmit_called", NETXEN_NIC_STAT(stats
.xmitcalled
)},
50 {"xmit_finished", NETXEN_NIC_STAT(stats
.xmitfinished
)},
51 {"rx_dropped", NETXEN_NIC_STAT(stats
.rxdropped
)},
52 {"tx_dropped", NETXEN_NIC_STAT(stats
.txdropped
)},
53 {"csummed", NETXEN_NIC_STAT(stats
.csummed
)},
54 {"rx_pkts", NETXEN_NIC_STAT(stats
.rx_pkts
)},
55 {"lro_pkts", NETXEN_NIC_STAT(stats
.lro_pkts
)},
56 {"rx_bytes", NETXEN_NIC_STAT(stats
.rxbytes
)},
57 {"tx_bytes", NETXEN_NIC_STAT(stats
.txbytes
)},
60 #define NETXEN_NIC_STATS_LEN ARRAY_SIZE(netxen_nic_gstrings_stats)
62 static const char netxen_nic_gstrings_test
[][ETH_GSTRING_LEN
] = {
63 "Register_Test_on_offline",
64 "Link_Test_on_offline"
67 #define NETXEN_NIC_TEST_LEN ARRAY_SIZE(netxen_nic_gstrings_test)
69 #define NETXEN_NIC_REGS_COUNT 30
70 #define NETXEN_NIC_REGS_LEN (NETXEN_NIC_REGS_COUNT * sizeof(__le32))
71 #define NETXEN_MAX_EEPROM_LEN 1024
73 static int netxen_nic_get_eeprom_len(struct net_device
*dev
)
75 return NETXEN_FLASH_TOTAL_SIZE
;
79 netxen_nic_get_drvinfo(struct net_device
*dev
, struct ethtool_drvinfo
*drvinfo
)
81 struct netxen_adapter
*adapter
= netdev_priv(dev
);
86 strlcpy(drvinfo
->driver
, netxen_nic_driver_name
,
87 sizeof(drvinfo
->driver
));
88 strlcpy(drvinfo
->version
, NETXEN_NIC_LINUX_VERSIONID
,
89 sizeof(drvinfo
->version
));
90 fw_major
= NXRD32(adapter
, NETXEN_FW_VERSION_MAJOR
);
91 fw_minor
= NXRD32(adapter
, NETXEN_FW_VERSION_MINOR
);
92 fw_build
= NXRD32(adapter
, NETXEN_FW_VERSION_SUB
);
93 snprintf(drvinfo
->fw_version
, sizeof(drvinfo
->fw_version
),
94 "%d.%d.%d", fw_major
, fw_minor
, fw_build
);
96 strlcpy(drvinfo
->bus_info
, pci_name(adapter
->pdev
),
97 sizeof(drvinfo
->bus_info
));
98 drvinfo
->regdump_len
= NETXEN_NIC_REGS_LEN
;
99 drvinfo
->eedump_len
= netxen_nic_get_eeprom_len(dev
);
103 netxen_nic_get_settings(struct net_device
*dev
, struct ethtool_cmd
*ecmd
)
105 struct netxen_adapter
*adapter
= netdev_priv(dev
);
106 int check_sfp_module
= 0;
108 /* read which mode */
109 if (adapter
->ahw
.port_type
== NETXEN_NIC_GBE
) {
110 ecmd
->supported
= (SUPPORTED_10baseT_Half
|
111 SUPPORTED_10baseT_Full
|
112 SUPPORTED_100baseT_Half
|
113 SUPPORTED_100baseT_Full
|
114 SUPPORTED_1000baseT_Half
|
115 SUPPORTED_1000baseT_Full
);
117 ecmd
->advertising
= (ADVERTISED_100baseT_Half
|
118 ADVERTISED_100baseT_Full
|
119 ADVERTISED_1000baseT_Half
|
120 ADVERTISED_1000baseT_Full
);
122 ecmd
->port
= PORT_TP
;
124 ethtool_cmd_speed_set(ecmd
, adapter
->link_speed
);
125 ecmd
->duplex
= adapter
->link_duplex
;
126 ecmd
->autoneg
= adapter
->link_autoneg
;
128 } else if (adapter
->ahw
.port_type
== NETXEN_NIC_XGBE
) {
131 val
= NXRD32(adapter
, NETXEN_PORT_MODE_ADDR
);
132 if (val
== NETXEN_PORT_MODE_802_3_AP
) {
133 ecmd
->supported
= SUPPORTED_1000baseT_Full
;
134 ecmd
->advertising
= ADVERTISED_1000baseT_Full
;
136 ecmd
->supported
= SUPPORTED_10000baseT_Full
;
137 ecmd
->advertising
= ADVERTISED_10000baseT_Full
;
140 if (netif_running(dev
) && adapter
->has_link_events
) {
141 ethtool_cmd_speed_set(ecmd
, adapter
->link_speed
);
142 ecmd
->autoneg
= adapter
->link_autoneg
;
143 ecmd
->duplex
= adapter
->link_duplex
;
147 ecmd
->port
= PORT_TP
;
149 if (NX_IS_REVISION_P3(adapter
->ahw
.revision_id
)) {
150 u16 pcifn
= adapter
->ahw
.pci_func
;
152 val
= NXRD32(adapter
, P3_LINK_SPEED_REG(pcifn
));
153 ethtool_cmd_speed_set(ecmd
, P3_LINK_SPEED_MHZ
*
154 P3_LINK_SPEED_VAL(pcifn
, val
));
156 ethtool_cmd_speed_set(ecmd
, SPEED_10000
);
158 ecmd
->duplex
= DUPLEX_FULL
;
159 ecmd
->autoneg
= AUTONEG_DISABLE
;
164 ecmd
->phy_address
= adapter
->physical_port
;
165 ecmd
->transceiver
= XCVR_EXTERNAL
;
167 switch (adapter
->ahw
.board_type
) {
168 case NETXEN_BRDTYPE_P2_SB35_4G
:
169 case NETXEN_BRDTYPE_P2_SB31_2G
:
170 case NETXEN_BRDTYPE_P3_REF_QG
:
171 case NETXEN_BRDTYPE_P3_4_GB
:
172 case NETXEN_BRDTYPE_P3_4_GB_MM
:
174 ecmd
->supported
|= SUPPORTED_Autoneg
;
175 ecmd
->advertising
|= ADVERTISED_Autoneg
;
176 case NETXEN_BRDTYPE_P2_SB31_10G_CX4
:
177 case NETXEN_BRDTYPE_P3_10G_CX4
:
178 case NETXEN_BRDTYPE_P3_10G_CX4_LP
:
179 case NETXEN_BRDTYPE_P3_10000_BASE_T
:
180 ecmd
->supported
|= SUPPORTED_TP
;
181 ecmd
->advertising
|= ADVERTISED_TP
;
182 ecmd
->port
= PORT_TP
;
183 ecmd
->autoneg
= (adapter
->ahw
.board_type
==
184 NETXEN_BRDTYPE_P2_SB31_10G_CX4
) ?
185 (AUTONEG_DISABLE
) : (adapter
->link_autoneg
);
187 case NETXEN_BRDTYPE_P2_SB31_10G_HMEZ
:
188 case NETXEN_BRDTYPE_P2_SB31_10G_IMEZ
:
189 case NETXEN_BRDTYPE_P3_IMEZ
:
190 case NETXEN_BRDTYPE_P3_XG_LOM
:
191 case NETXEN_BRDTYPE_P3_HMEZ
:
192 ecmd
->supported
|= SUPPORTED_MII
;
193 ecmd
->advertising
|= ADVERTISED_MII
;
194 ecmd
->port
= PORT_MII
;
195 ecmd
->autoneg
= AUTONEG_DISABLE
;
197 case NETXEN_BRDTYPE_P3_10G_SFP_PLUS
:
198 case NETXEN_BRDTYPE_P3_10G_SFP_CT
:
199 case NETXEN_BRDTYPE_P3_10G_SFP_QT
:
200 ecmd
->advertising
|= ADVERTISED_TP
;
201 ecmd
->supported
|= SUPPORTED_TP
;
202 check_sfp_module
= netif_running(dev
) &&
203 adapter
->has_link_events
;
204 case NETXEN_BRDTYPE_P2_SB31_10G
:
205 case NETXEN_BRDTYPE_P3_10G_XFP
:
206 ecmd
->supported
|= SUPPORTED_FIBRE
;
207 ecmd
->advertising
|= ADVERTISED_FIBRE
;
208 ecmd
->port
= PORT_FIBRE
;
209 ecmd
->autoneg
= AUTONEG_DISABLE
;
211 case NETXEN_BRDTYPE_P3_10G_TP
:
212 if (adapter
->ahw
.port_type
== NETXEN_NIC_XGBE
) {
213 ecmd
->autoneg
= AUTONEG_DISABLE
;
214 ecmd
->supported
|= (SUPPORTED_FIBRE
| SUPPORTED_TP
);
216 (ADVERTISED_FIBRE
| ADVERTISED_TP
);
217 ecmd
->port
= PORT_FIBRE
;
218 check_sfp_module
= netif_running(dev
) &&
219 adapter
->has_link_events
;
221 ecmd
->supported
|= (SUPPORTED_TP
|SUPPORTED_Autoneg
);
223 (ADVERTISED_TP
| ADVERTISED_Autoneg
);
224 ecmd
->port
= PORT_TP
;
228 printk(KERN_ERR
"netxen-nic: Unsupported board model %d\n",
229 adapter
->ahw
.board_type
);
233 if (check_sfp_module
) {
234 switch (adapter
->module_type
) {
235 case LINKEVENT_MODULE_OPTICAL_UNKNOWN
:
236 case LINKEVENT_MODULE_OPTICAL_SRLR
:
237 case LINKEVENT_MODULE_OPTICAL_LRM
:
238 case LINKEVENT_MODULE_OPTICAL_SFP_1G
:
239 ecmd
->port
= PORT_FIBRE
;
241 case LINKEVENT_MODULE_TWINAX_UNSUPPORTED_CABLE
:
242 case LINKEVENT_MODULE_TWINAX_UNSUPPORTED_CABLELEN
:
243 case LINKEVENT_MODULE_TWINAX
:
244 ecmd
->port
= PORT_TP
;
255 netxen_nic_set_settings(struct net_device
*dev
, struct ethtool_cmd
*ecmd
)
257 struct netxen_adapter
*adapter
= netdev_priv(dev
);
258 u32 speed
= ethtool_cmd_speed(ecmd
);
261 if (adapter
->ahw
.port_type
!= NETXEN_NIC_GBE
)
264 if (!(adapter
->capabilities
& NX_FW_CAPABILITY_GBE_LINK_CFG
))
267 ret
= nx_fw_cmd_set_gbe_port(adapter
, speed
, ecmd
->duplex
,
269 if (ret
== NX_RCODE_NOT_SUPPORTED
)
274 adapter
->link_speed
= speed
;
275 adapter
->link_duplex
= ecmd
->duplex
;
276 adapter
->link_autoneg
= ecmd
->autoneg
;
278 if (!netif_running(dev
))
281 dev
->netdev_ops
->ndo_stop(dev
);
282 return dev
->netdev_ops
->ndo_open(dev
);
285 static int netxen_nic_get_regs_len(struct net_device
*dev
)
287 return NETXEN_NIC_REGS_LEN
;
291 netxen_nic_get_regs(struct net_device
*dev
, struct ethtool_regs
*regs
, void *p
)
293 struct netxen_adapter
*adapter
= netdev_priv(dev
);
294 struct netxen_recv_context
*recv_ctx
= &adapter
->recv_ctx
;
295 struct nx_host_sds_ring
*sds_ring
;
298 int port
= adapter
->physical_port
;
300 memset(p
, 0, NETXEN_NIC_REGS_LEN
);
302 regs
->version
= (1 << 24) | (adapter
->ahw
.revision_id
<< 16) |
303 (adapter
->pdev
)->device
;
305 if (adapter
->is_up
!= NETXEN_ADAPTER_UP_MAGIC
)
308 regs_buff
[i
++] = NXRD32(adapter
, CRB_CMDPEG_STATE
);
309 regs_buff
[i
++] = NXRD32(adapter
, CRB_RCVPEG_STATE
);
310 regs_buff
[i
++] = NXRD32(adapter
, CRB_FW_CAPABILITIES_1
);
311 regs_buff
[i
++] = NXRDIO(adapter
, adapter
->crb_int_state_reg
);
312 regs_buff
[i
++] = NXRD32(adapter
, NX_CRB_DEV_REF_COUNT
);
313 regs_buff
[i
++] = NXRD32(adapter
, NX_CRB_DEV_STATE
);
314 regs_buff
[i
++] = NXRD32(adapter
, NETXEN_PEG_ALIVE_COUNTER
);
315 regs_buff
[i
++] = NXRD32(adapter
, NETXEN_PEG_HALT_STATUS1
);
316 regs_buff
[i
++] = NXRD32(adapter
, NETXEN_PEG_HALT_STATUS2
);
318 regs_buff
[i
++] = NXRD32(adapter
, NETXEN_CRB_PEG_NET_0
+0x3c);
319 regs_buff
[i
++] = NXRD32(adapter
, NETXEN_CRB_PEG_NET_1
+0x3c);
320 regs_buff
[i
++] = NXRD32(adapter
, NETXEN_CRB_PEG_NET_2
+0x3c);
321 regs_buff
[i
++] = NXRD32(adapter
, NETXEN_CRB_PEG_NET_3
+0x3c);
323 if (NX_IS_REVISION_P3(adapter
->ahw
.revision_id
)) {
325 regs_buff
[i
++] = NXRD32(adapter
, NETXEN_CRB_PEG_NET_4
+0x3c);
328 regs_buff
[i
++] = NXRD32(adapter
, CRB_XG_STATE_P3
);
329 regs_buff
[i
++] = le32_to_cpu(*(adapter
->tx_ring
->hw_consumer
));
334 regs_buff
[i
++] = NXRD32(adapter
,
335 NETXEN_NIU_XGE_CONFIG_0
+(0x10000*port
));
336 regs_buff
[i
++] = NXRD32(adapter
,
337 NETXEN_NIU_XGE_CONFIG_1
+(0x10000*port
));
339 regs_buff
[i
++] = NXRD32(adapter
, CRB_XG_STATE
);
340 regs_buff
[i
++] = NXRDIO(adapter
,
341 adapter
->tx_ring
->crb_cmd_consumer
);
344 regs_buff
[i
++] = NXRDIO(adapter
, adapter
->tx_ring
->crb_cmd_producer
);
346 regs_buff
[i
++] = NXRDIO(adapter
,
347 recv_ctx
->rds_rings
[0].crb_rcv_producer
);
348 regs_buff
[i
++] = NXRDIO(adapter
,
349 recv_ctx
->rds_rings
[1].crb_rcv_producer
);
351 regs_buff
[i
++] = adapter
->max_sds_rings
;
353 for (ring
= 0; ring
< adapter
->max_sds_rings
; ring
++) {
354 sds_ring
= &(recv_ctx
->sds_rings
[ring
]);
355 regs_buff
[i
++] = NXRDIO(adapter
,
356 sds_ring
->crb_sts_consumer
);
360 static u32
netxen_nic_test_link(struct net_device
*dev
)
362 struct netxen_adapter
*adapter
= netdev_priv(dev
);
365 port
= adapter
->physical_port
;
366 if (NX_IS_REVISION_P3(adapter
->ahw
.revision_id
)) {
367 val
= NXRD32(adapter
, CRB_XG_STATE_P3
);
368 val
= XG_LINK_STATE_P3(adapter
->ahw
.pci_func
, val
);
369 return (val
== XG_LINK_UP_P3
) ? 0 : 1;
371 val
= NXRD32(adapter
, CRB_XG_STATE
);
372 val
= (val
>> port
*8) & 0xff;
373 return (val
== XG_LINK_UP
) ? 0 : 1;
378 netxen_nic_get_eeprom(struct net_device
*dev
, struct ethtool_eeprom
*eeprom
,
381 struct netxen_adapter
*adapter
= netdev_priv(dev
);
385 if (eeprom
->len
== 0)
388 eeprom
->magic
= (adapter
->pdev
)->vendor
|
389 ((adapter
->pdev
)->device
<< 16);
390 offset
= eeprom
->offset
;
392 ret
= netxen_rom_fast_read_words(adapter
, offset
, bytes
,
401 netxen_nic_get_ringparam(struct net_device
*dev
,
402 struct ethtool_ringparam
*ring
)
404 struct netxen_adapter
*adapter
= netdev_priv(dev
);
406 ring
->rx_pending
= adapter
->num_rxd
;
407 ring
->rx_jumbo_pending
= adapter
->num_jumbo_rxd
;
408 ring
->rx_jumbo_pending
+= adapter
->num_lro_rxd
;
409 ring
->tx_pending
= adapter
->num_txd
;
411 if (adapter
->ahw
.port_type
== NETXEN_NIC_GBE
) {
412 ring
->rx_max_pending
= MAX_RCV_DESCRIPTORS_1G
;
413 ring
->rx_jumbo_max_pending
= MAX_JUMBO_RCV_DESCRIPTORS_1G
;
415 ring
->rx_max_pending
= MAX_RCV_DESCRIPTORS_10G
;
416 ring
->rx_jumbo_max_pending
= MAX_JUMBO_RCV_DESCRIPTORS_10G
;
419 ring
->tx_max_pending
= MAX_CMD_DESCRIPTORS
;
423 netxen_validate_ringparam(u32 val
, u32 min
, u32 max
, char *r_name
)
426 num_desc
= max(val
, min
);
427 num_desc
= min(num_desc
, max
);
428 num_desc
= roundup_pow_of_two(num_desc
);
430 if (val
!= num_desc
) {
431 printk(KERN_INFO
"%s: setting %s ring size %d instead of %d\n",
432 netxen_nic_driver_name
, r_name
, num_desc
, val
);
439 netxen_nic_set_ringparam(struct net_device
*dev
,
440 struct ethtool_ringparam
*ring
)
442 struct netxen_adapter
*adapter
= netdev_priv(dev
);
443 u16 max_rcv_desc
= MAX_RCV_DESCRIPTORS_10G
;
444 u16 max_jumbo_desc
= MAX_JUMBO_RCV_DESCRIPTORS_10G
;
445 u16 num_rxd
, num_jumbo_rxd
, num_txd
;
447 if (NX_IS_REVISION_P2(adapter
->ahw
.revision_id
))
450 if (ring
->rx_mini_pending
)
453 if (adapter
->ahw
.port_type
== NETXEN_NIC_GBE
) {
454 max_rcv_desc
= MAX_RCV_DESCRIPTORS_1G
;
455 max_jumbo_desc
= MAX_JUMBO_RCV_DESCRIPTORS_10G
;
458 num_rxd
= netxen_validate_ringparam(ring
->rx_pending
,
459 MIN_RCV_DESCRIPTORS
, max_rcv_desc
, "rx");
461 num_jumbo_rxd
= netxen_validate_ringparam(ring
->rx_jumbo_pending
,
462 MIN_JUMBO_DESCRIPTORS
, max_jumbo_desc
, "rx jumbo");
464 num_txd
= netxen_validate_ringparam(ring
->tx_pending
,
465 MIN_CMD_DESCRIPTORS
, MAX_CMD_DESCRIPTORS
, "tx");
467 if (num_rxd
== adapter
->num_rxd
&& num_txd
== adapter
->num_txd
&&
468 num_jumbo_rxd
== adapter
->num_jumbo_rxd
)
471 adapter
->num_rxd
= num_rxd
;
472 adapter
->num_jumbo_rxd
= num_jumbo_rxd
;
473 adapter
->num_txd
= num_txd
;
475 return netxen_nic_reset_context(adapter
);
479 netxen_nic_get_pauseparam(struct net_device
*dev
,
480 struct ethtool_pauseparam
*pause
)
482 struct netxen_adapter
*adapter
= netdev_priv(dev
);
484 int port
= adapter
->physical_port
;
486 if (adapter
->ahw
.port_type
== NETXEN_NIC_GBE
) {
487 if ((port
< 0) || (port
> NETXEN_NIU_MAX_GBE_PORTS
))
489 /* get flow control settings */
490 val
= NXRD32(adapter
, NETXEN_NIU_GB_MAC_CONFIG_0(port
));
491 pause
->rx_pause
= netxen_gb_get_rx_flowctl(val
);
492 val
= NXRD32(adapter
, NETXEN_NIU_GB_PAUSE_CTL
);
495 pause
->tx_pause
= !(netxen_gb_get_gb0_mask(val
));
498 pause
->tx_pause
= !(netxen_gb_get_gb1_mask(val
));
501 pause
->tx_pause
= !(netxen_gb_get_gb2_mask(val
));
505 pause
->tx_pause
= !(netxen_gb_get_gb3_mask(val
));
508 } else if (adapter
->ahw
.port_type
== NETXEN_NIC_XGBE
) {
509 if ((port
< 0) || (port
> NETXEN_NIU_MAX_XG_PORTS
))
512 val
= NXRD32(adapter
, NETXEN_NIU_XG_PAUSE_CTL
);
514 pause
->tx_pause
= !(netxen_xg_get_xg0_mask(val
));
516 pause
->tx_pause
= !(netxen_xg_get_xg1_mask(val
));
518 printk(KERN_ERR
"%s: Unknown board type: %x\n",
519 netxen_nic_driver_name
, adapter
->ahw
.port_type
);
524 netxen_nic_set_pauseparam(struct net_device
*dev
,
525 struct ethtool_pauseparam
*pause
)
527 struct netxen_adapter
*adapter
= netdev_priv(dev
);
529 int port
= adapter
->physical_port
;
531 if (adapter
->ahw
.port_type
== NETXEN_NIC_GBE
) {
532 if ((port
< 0) || (port
> NETXEN_NIU_MAX_GBE_PORTS
))
534 /* set flow control */
535 val
= NXRD32(adapter
, NETXEN_NIU_GB_MAC_CONFIG_0(port
));
538 netxen_gb_rx_flowctl(val
);
540 netxen_gb_unset_rx_flowctl(val
);
542 NXWR32(adapter
, NETXEN_NIU_GB_MAC_CONFIG_0(port
),
545 val
= NXRD32(adapter
, NETXEN_NIU_GB_PAUSE_CTL
);
549 netxen_gb_unset_gb0_mask(val
);
551 netxen_gb_set_gb0_mask(val
);
555 netxen_gb_unset_gb1_mask(val
);
557 netxen_gb_set_gb1_mask(val
);
561 netxen_gb_unset_gb2_mask(val
);
563 netxen_gb_set_gb2_mask(val
);
568 netxen_gb_unset_gb3_mask(val
);
570 netxen_gb_set_gb3_mask(val
);
573 NXWR32(adapter
, NETXEN_NIU_GB_PAUSE_CTL
, val
);
574 } else if (adapter
->ahw
.port_type
== NETXEN_NIC_XGBE
) {
575 if ((port
< 0) || (port
> NETXEN_NIU_MAX_XG_PORTS
))
577 val
= NXRD32(adapter
, NETXEN_NIU_XG_PAUSE_CTL
);
580 netxen_xg_unset_xg0_mask(val
);
582 netxen_xg_set_xg0_mask(val
);
585 netxen_xg_unset_xg1_mask(val
);
587 netxen_xg_set_xg1_mask(val
);
589 NXWR32(adapter
, NETXEN_NIU_XG_PAUSE_CTL
, val
);
591 printk(KERN_ERR
"%s: Unknown board type: %x\n",
592 netxen_nic_driver_name
,
593 adapter
->ahw
.port_type
);
598 static int netxen_nic_reg_test(struct net_device
*dev
)
600 struct netxen_adapter
*adapter
= netdev_priv(dev
);
601 u32 data_read
, data_written
;
603 data_read
= NXRD32(adapter
, NETXEN_PCIX_PH_REG(0));
604 if ((data_read
& 0xffff) != adapter
->pdev
->vendor
)
607 if (NX_IS_REVISION_P3(adapter
->ahw
.revision_id
))
610 data_written
= (u32
)0xa5a5a5a5;
612 NXWR32(adapter
, CRB_SCRATCHPAD_TEST
, data_written
);
613 data_read
= NXRD32(adapter
, CRB_SCRATCHPAD_TEST
);
614 if (data_written
!= data_read
)
620 static int netxen_get_sset_count(struct net_device
*dev
, int sset
)
624 return NETXEN_NIC_TEST_LEN
;
626 return NETXEN_NIC_STATS_LEN
;
633 netxen_nic_diag_test(struct net_device
*dev
, struct ethtool_test
*eth_test
,
636 memset(data
, 0, sizeof(uint64_t) * NETXEN_NIC_TEST_LEN
);
637 if ((data
[0] = netxen_nic_reg_test(dev
)))
638 eth_test
->flags
|= ETH_TEST_FL_FAILED
;
640 if ((data
[1] = (u64
) netxen_nic_test_link(dev
)))
641 eth_test
->flags
|= ETH_TEST_FL_FAILED
;
645 netxen_nic_get_strings(struct net_device
*dev
, u32 stringset
, u8
* data
)
651 memcpy(data
, *netxen_nic_gstrings_test
,
652 NETXEN_NIC_TEST_LEN
* ETH_GSTRING_LEN
);
655 for (index
= 0; index
< NETXEN_NIC_STATS_LEN
; index
++) {
656 memcpy(data
+ index
* ETH_GSTRING_LEN
,
657 netxen_nic_gstrings_stats
[index
].stat_string
,
665 netxen_nic_get_ethtool_stats(struct net_device
*dev
,
666 struct ethtool_stats
*stats
, u64
* data
)
668 struct netxen_adapter
*adapter
= netdev_priv(dev
);
671 for (index
= 0; index
< NETXEN_NIC_STATS_LEN
; index
++) {
674 netxen_nic_gstrings_stats
[index
].stat_offset
;
676 (netxen_nic_gstrings_stats
[index
].sizeof_stat
==
677 sizeof(u64
)) ? *(u64
*) p
: *(u32
*) p
;
682 netxen_nic_get_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
684 struct netxen_adapter
*adapter
= netdev_priv(dev
);
690 if (NX_IS_REVISION_P2(adapter
->ahw
.revision_id
))
693 wol_cfg
= NXRD32(adapter
, NETXEN_WOL_CONFIG_NV
);
694 if (wol_cfg
& (1UL << adapter
->portnum
))
695 wol
->supported
|= WAKE_MAGIC
;
697 wol_cfg
= NXRD32(adapter
, NETXEN_WOL_CONFIG
);
698 if (wol_cfg
& (1UL << adapter
->portnum
))
699 wol
->wolopts
|= WAKE_MAGIC
;
703 netxen_nic_set_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
705 struct netxen_adapter
*adapter
= netdev_priv(dev
);
708 if (NX_IS_REVISION_P2(adapter
->ahw
.revision_id
))
711 if (wol
->wolopts
& ~WAKE_MAGIC
)
714 wol_cfg
= NXRD32(adapter
, NETXEN_WOL_CONFIG_NV
);
715 if (!(wol_cfg
& (1 << adapter
->portnum
)))
718 wol_cfg
= NXRD32(adapter
, NETXEN_WOL_CONFIG
);
719 if (wol
->wolopts
& WAKE_MAGIC
)
720 wol_cfg
|= 1UL << adapter
->portnum
;
722 wol_cfg
&= ~(1UL << adapter
->portnum
);
723 NXWR32(adapter
, NETXEN_WOL_CONFIG
, wol_cfg
);
729 * Set the coalescing parameters. Currently only normal is supported.
730 * If rx_coalesce_usecs == 0 or rx_max_coalesced_frames == 0 then set the
731 * firmware coalescing to default.
733 static int netxen_set_intr_coalesce(struct net_device
*netdev
,
734 struct ethtool_coalesce
*ethcoal
)
736 struct netxen_adapter
*adapter
= netdev_priv(netdev
);
738 if (!NX_IS_REVISION_P3(adapter
->ahw
.revision_id
))
741 if (adapter
->is_up
!= NETXEN_ADAPTER_UP_MAGIC
)
745 * Return Error if unsupported values or
746 * unsupported parameters are set.
748 if (ethcoal
->rx_coalesce_usecs
> 0xffff ||
749 ethcoal
->rx_max_coalesced_frames
> 0xffff ||
750 ethcoal
->tx_coalesce_usecs
> 0xffff ||
751 ethcoal
->tx_max_coalesced_frames
> 0xffff ||
752 ethcoal
->rx_coalesce_usecs_irq
||
753 ethcoal
->rx_max_coalesced_frames_irq
||
754 ethcoal
->tx_coalesce_usecs_irq
||
755 ethcoal
->tx_max_coalesced_frames_irq
||
756 ethcoal
->stats_block_coalesce_usecs
||
757 ethcoal
->use_adaptive_rx_coalesce
||
758 ethcoal
->use_adaptive_tx_coalesce
||
759 ethcoal
->pkt_rate_low
||
760 ethcoal
->rx_coalesce_usecs_low
||
761 ethcoal
->rx_max_coalesced_frames_low
||
762 ethcoal
->tx_coalesce_usecs_low
||
763 ethcoal
->tx_max_coalesced_frames_low
||
764 ethcoal
->pkt_rate_high
||
765 ethcoal
->rx_coalesce_usecs_high
||
766 ethcoal
->rx_max_coalesced_frames_high
||
767 ethcoal
->tx_coalesce_usecs_high
||
768 ethcoal
->tx_max_coalesced_frames_high
)
771 if (!ethcoal
->rx_coalesce_usecs
||
772 !ethcoal
->rx_max_coalesced_frames
) {
773 adapter
->coal
.flags
= NETXEN_NIC_INTR_DEFAULT
;
774 adapter
->coal
.normal
.data
.rx_time_us
=
775 NETXEN_DEFAULT_INTR_COALESCE_RX_TIME_US
;
776 adapter
->coal
.normal
.data
.rx_packets
=
777 NETXEN_DEFAULT_INTR_COALESCE_RX_PACKETS
;
779 adapter
->coal
.flags
= 0;
780 adapter
->coal
.normal
.data
.rx_time_us
=
781 ethcoal
->rx_coalesce_usecs
;
782 adapter
->coal
.normal
.data
.rx_packets
=
783 ethcoal
->rx_max_coalesced_frames
;
785 adapter
->coal
.normal
.data
.tx_time_us
= ethcoal
->tx_coalesce_usecs
;
786 adapter
->coal
.normal
.data
.tx_packets
=
787 ethcoal
->tx_max_coalesced_frames
;
789 netxen_config_intr_coalesce(adapter
);
794 static int netxen_get_intr_coalesce(struct net_device
*netdev
,
795 struct ethtool_coalesce
*ethcoal
)
797 struct netxen_adapter
*adapter
= netdev_priv(netdev
);
799 if (!NX_IS_REVISION_P3(adapter
->ahw
.revision_id
))
802 if (adapter
->is_up
!= NETXEN_ADAPTER_UP_MAGIC
)
805 ethcoal
->rx_coalesce_usecs
= adapter
->coal
.normal
.data
.rx_time_us
;
806 ethcoal
->tx_coalesce_usecs
= adapter
->coal
.normal
.data
.tx_time_us
;
807 ethcoal
->rx_max_coalesced_frames
=
808 adapter
->coal
.normal
.data
.rx_packets
;
809 ethcoal
->tx_max_coalesced_frames
=
810 adapter
->coal
.normal
.data
.tx_packets
;
815 const struct ethtool_ops netxen_nic_ethtool_ops
= {
816 .get_settings
= netxen_nic_get_settings
,
817 .set_settings
= netxen_nic_set_settings
,
818 .get_drvinfo
= netxen_nic_get_drvinfo
,
819 .get_regs_len
= netxen_nic_get_regs_len
,
820 .get_regs
= netxen_nic_get_regs
,
821 .get_link
= ethtool_op_get_link
,
822 .get_eeprom_len
= netxen_nic_get_eeprom_len
,
823 .get_eeprom
= netxen_nic_get_eeprom
,
824 .get_ringparam
= netxen_nic_get_ringparam
,
825 .set_ringparam
= netxen_nic_set_ringparam
,
826 .get_pauseparam
= netxen_nic_get_pauseparam
,
827 .set_pauseparam
= netxen_nic_set_pauseparam
,
828 .get_wol
= netxen_nic_get_wol
,
829 .set_wol
= netxen_nic_set_wol
,
830 .self_test
= netxen_nic_diag_test
,
831 .get_strings
= netxen_nic_get_strings
,
832 .get_ethtool_stats
= netxen_nic_get_ethtool_stats
,
833 .get_sset_count
= netxen_get_sset_count
,
834 .get_coalesce
= netxen_get_intr_coalesce
,
835 .set_coalesce
= netxen_set_intr_coalesce
,