2 * Linux network driver for Brocade Converged Network Adapter.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License (GPL) Version 2 as
6 * published by the Free Software Foundation
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
14 * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
21 #include <linux/netdevice.h>
22 #include <linux/skbuff.h>
23 #include <linux/ethtool.h>
24 #include <linux/rtnetlink.h>
30 #define BNAD_NUM_TXF_COUNTERS 12
31 #define BNAD_NUM_RXF_COUNTERS 10
32 #define BNAD_NUM_CQ_COUNTERS 3
33 #define BNAD_NUM_RXQ_COUNTERS 6
34 #define BNAD_NUM_TXQ_COUNTERS 5
36 #define BNAD_ETHTOOL_STATS_NUM \
37 (sizeof(struct rtnl_link_stats64) / sizeof(u64) + \
38 sizeof(struct bnad_drv_stats) / sizeof(u64) + \
39 offsetof(struct bfi_ll_stats, rxf_stats[0]) / sizeof(u64))
41 static char *bnad_net_stats_strings
[BNAD_ETHTOOL_STATS_NUM
] = {
63 "tx_heartbeat_errors",
71 "netif_queue_stopped",
87 "rxp_info_alloc_failed",
90 "tx_unmap_q_alloc_failed",
91 "rx_unmap_q_alloc_failed",
99 "mac_frame_1024_1518",
100 "mac_frame_1518_1522",
106 "mac_rx_control_frames",
108 "mac_rx_unknown_opcode",
109 "mac_rx_alignment_error",
110 "mac_rx_frame_length_error",
112 "mac_rx_carrier_sense_error",
125 "mac_tx_excessive_deferral",
126 "mac_tx_single_collision",
127 "mac_tx_muliple_collision",
128 "mac_tx_late_collision",
129 "mac_tx_excessive_collision",
130 "mac_tx_total_collision",
131 "mac_tx_pause_honored",
135 "mac_tx_control_frame",
148 "bpc_tx_zero_pause_0",
149 "bpc_tx_zero_pause_1",
150 "bpc_tx_zero_pause_2",
151 "bpc_tx_zero_pause_3",
152 "bpc_tx_zero_pause_4",
153 "bpc_tx_zero_pause_5",
154 "bpc_tx_zero_pause_6",
155 "bpc_tx_zero_pause_7",
156 "bpc_tx_first_pause_0",
157 "bpc_tx_first_pause_1",
158 "bpc_tx_first_pause_2",
159 "bpc_tx_first_pause_3",
160 "bpc_tx_first_pause_4",
161 "bpc_tx_first_pause_5",
162 "bpc_tx_first_pause_6",
163 "bpc_tx_first_pause_7",
173 "bpc_rx_zero_pause_0",
174 "bpc_rx_zero_pause_1",
175 "bpc_rx_zero_pause_2",
176 "bpc_rx_zero_pause_3",
177 "bpc_rx_zero_pause_4",
178 "bpc_rx_zero_pause_5",
179 "bpc_rx_zero_pause_6",
180 "bpc_rx_zero_pause_7",
181 "bpc_rx_first_pause_0",
182 "bpc_rx_first_pause_1",
183 "bpc_rx_first_pause_2",
184 "bpc_rx_first_pause_3",
185 "bpc_rx_first_pause_4",
186 "bpc_rx_first_pause_5",
187 "bpc_rx_first_pause_6",
188 "bpc_rx_first_pause_7",
192 "rad_rx_vlan_frames",
194 "rad_rx_ucast_octets",
197 "rad_rx_mcast_octets",
200 "rad_rx_bcast_octets",
204 "fc_rx_ucast_octets",
207 "fc_rx_mcast_octets",
210 "fc_rx_bcast_octets",
214 "fc_tx_ucast_octets",
217 "fc_tx_mcast_octets",
220 "fc_tx_bcast_octets",
223 "fc_tx_parity_errors",
225 "fc_tx_fid_parity_errors",
229 bnad_get_settings(struct net_device
*netdev
, struct ethtool_cmd
*cmd
)
231 cmd
->supported
= SUPPORTED_10000baseT_Full
;
232 cmd
->advertising
= ADVERTISED_10000baseT_Full
;
233 cmd
->autoneg
= AUTONEG_DISABLE
;
234 cmd
->supported
|= SUPPORTED_FIBRE
;
235 cmd
->advertising
|= ADVERTISED_FIBRE
;
236 cmd
->port
= PORT_FIBRE
;
237 cmd
->phy_address
= 0;
239 if (netif_carrier_ok(netdev
)) {
240 cmd
->speed
= SPEED_10000
;
241 cmd
->duplex
= DUPLEX_FULL
;
246 cmd
->transceiver
= XCVR_EXTERNAL
;
254 bnad_set_settings(struct net_device
*netdev
, struct ethtool_cmd
*cmd
)
256 /* 10G full duplex setting supported only */
257 if (cmd
->autoneg
== AUTONEG_ENABLE
)
258 return -EOPNOTSUPP
; else {
259 if ((cmd
->speed
== SPEED_10000
) && (cmd
->duplex
== DUPLEX_FULL
))
267 bnad_get_drvinfo(struct net_device
*netdev
, struct ethtool_drvinfo
*drvinfo
)
269 struct bnad
*bnad
= netdev_priv(netdev
);
270 struct bfa_ioc_attr
*ioc_attr
;
273 strcpy(drvinfo
->driver
, BNAD_NAME
);
274 strcpy(drvinfo
->version
, BNAD_VERSION
);
276 ioc_attr
= kzalloc(sizeof(*ioc_attr
), GFP_KERNEL
);
278 spin_lock_irqsave(&bnad
->bna_lock
, flags
);
279 bfa_nw_ioc_get_attr(&bnad
->bna
.device
.ioc
, ioc_attr
);
280 spin_unlock_irqrestore(&bnad
->bna_lock
, flags
);
282 strncpy(drvinfo
->fw_version
, ioc_attr
->adapter_attr
.fw_ver
,
283 sizeof(drvinfo
->fw_version
) - 1);
287 strncpy(drvinfo
->bus_info
, pci_name(bnad
->pcidev
), ETHTOOL_BUSINFO_LEN
);
291 get_regs(struct bnad
*bnad
, u32
* regs
)
297 #define BNAD_GET_REG(addr) \
300 regs[num++] = readl(bnad->bar0 + (addr)); \
305 spin_lock_irqsave(&bnad
->bna_lock
, flags
);
307 /* DMA Block Internal Registers */
308 BNAD_GET_REG(DMA_CTRL_REG0
);
309 BNAD_GET_REG(DMA_CTRL_REG1
);
310 BNAD_GET_REG(DMA_ERR_INT_STATUS
);
311 BNAD_GET_REG(DMA_ERR_INT_ENABLE
);
312 BNAD_GET_REG(DMA_ERR_INT_STATUS_SET
);
314 /* APP Block Register Address Offset from BAR0 */
315 BNAD_GET_REG(HOSTFN0_INT_STATUS
);
316 BNAD_GET_REG(HOSTFN0_INT_MASK
);
317 BNAD_GET_REG(HOST_PAGE_NUM_FN0
);
318 BNAD_GET_REG(HOST_MSIX_ERR_INDEX_FN0
);
319 BNAD_GET_REG(FN0_PCIE_ERR_REG
);
320 BNAD_GET_REG(FN0_ERR_TYPE_STATUS_REG
);
321 BNAD_GET_REG(FN0_ERR_TYPE_MSK_STATUS_REG
);
323 BNAD_GET_REG(HOSTFN1_INT_STATUS
);
324 BNAD_GET_REG(HOSTFN1_INT_MASK
);
325 BNAD_GET_REG(HOST_PAGE_NUM_FN1
);
326 BNAD_GET_REG(HOST_MSIX_ERR_INDEX_FN1
);
327 BNAD_GET_REG(FN1_PCIE_ERR_REG
);
328 BNAD_GET_REG(FN1_ERR_TYPE_STATUS_REG
);
329 BNAD_GET_REG(FN1_ERR_TYPE_MSK_STATUS_REG
);
331 BNAD_GET_REG(PCIE_MISC_REG
);
333 BNAD_GET_REG(HOST_SEM0_INFO_REG
);
334 BNAD_GET_REG(HOST_SEM1_INFO_REG
);
335 BNAD_GET_REG(HOST_SEM2_INFO_REG
);
336 BNAD_GET_REG(HOST_SEM3_INFO_REG
);
338 BNAD_GET_REG(TEMPSENSE_CNTL_REG
);
339 BNAD_GET_REG(TEMPSENSE_STAT_REG
);
341 BNAD_GET_REG(APP_LOCAL_ERR_STAT
);
342 BNAD_GET_REG(APP_LOCAL_ERR_MSK
);
344 BNAD_GET_REG(PCIE_LNK_ERR_STAT
);
345 BNAD_GET_REG(PCIE_LNK_ERR_MSK
);
347 BNAD_GET_REG(FCOE_FIP_ETH_TYPE
);
348 BNAD_GET_REG(RESV_ETH_TYPE
);
350 BNAD_GET_REG(HOSTFN2_INT_STATUS
);
351 BNAD_GET_REG(HOSTFN2_INT_MASK
);
352 BNAD_GET_REG(HOST_PAGE_NUM_FN2
);
353 BNAD_GET_REG(HOST_MSIX_ERR_INDEX_FN2
);
354 BNAD_GET_REG(FN2_PCIE_ERR_REG
);
355 BNAD_GET_REG(FN2_ERR_TYPE_STATUS_REG
);
356 BNAD_GET_REG(FN2_ERR_TYPE_MSK_STATUS_REG
);
358 BNAD_GET_REG(HOSTFN3_INT_STATUS
);
359 BNAD_GET_REG(HOSTFN3_INT_MASK
);
360 BNAD_GET_REG(HOST_PAGE_NUM_FN3
);
361 BNAD_GET_REG(HOST_MSIX_ERR_INDEX_FN3
);
362 BNAD_GET_REG(FN3_PCIE_ERR_REG
);
363 BNAD_GET_REG(FN3_ERR_TYPE_STATUS_REG
);
364 BNAD_GET_REG(FN3_ERR_TYPE_MSK_STATUS_REG
);
366 /* Host Command Status Registers */
367 reg_addr
= HOST_CMDSTS0_CLR_REG
;
368 for (i
= 0; i
< 16; i
++) {
369 BNAD_GET_REG(reg_addr
);
370 BNAD_GET_REG(reg_addr
+ 4);
371 BNAD_GET_REG(reg_addr
+ 8);
375 /* Function ID register */
376 BNAD_GET_REG(FNC_ID_REG
);
378 /* Function personality register */
379 BNAD_GET_REG(FNC_PERS_REG
);
381 /* Operation mode register */
382 BNAD_GET_REG(OP_MODE
);
385 BNAD_GET_REG(LPU0_MBOX_CTL_REG
);
386 BNAD_GET_REG(LPU0_MBOX_CMD_REG
);
387 BNAD_GET_REG(LPU0_MBOX_LINK_0REG
);
388 BNAD_GET_REG(LPU1_MBOX_LINK_0REG
);
389 BNAD_GET_REG(LPU0_MBOX_STATUS_0REG
);
390 BNAD_GET_REG(LPU1_MBOX_STATUS_0REG
);
391 BNAD_GET_REG(LPU0_ERR_STATUS_REG
);
392 BNAD_GET_REG(LPU0_ERR_SET_REG
);
395 BNAD_GET_REG(LPU1_MBOX_CTL_REG
);
396 BNAD_GET_REG(LPU1_MBOX_CMD_REG
);
397 BNAD_GET_REG(LPU0_MBOX_LINK_1REG
);
398 BNAD_GET_REG(LPU1_MBOX_LINK_1REG
);
399 BNAD_GET_REG(LPU0_MBOX_STATUS_1REG
);
400 BNAD_GET_REG(LPU1_MBOX_STATUS_1REG
);
401 BNAD_GET_REG(LPU1_ERR_STATUS_REG
);
402 BNAD_GET_REG(LPU1_ERR_SET_REG
);
405 BNAD_GET_REG(PSS_CTL_REG
);
406 BNAD_GET_REG(PSS_ERR_STATUS_REG
);
407 BNAD_GET_REG(ERR_STATUS_SET
);
408 BNAD_GET_REG(PSS_RAM_ERR_STATUS_REG
);
410 /* Catapult CPQ Registers */
411 BNAD_GET_REG(HOSTFN0_LPU0_MBOX0_CMD_STAT
);
412 BNAD_GET_REG(HOSTFN0_LPU1_MBOX0_CMD_STAT
);
413 BNAD_GET_REG(LPU0_HOSTFN0_MBOX0_CMD_STAT
);
414 BNAD_GET_REG(LPU1_HOSTFN0_MBOX0_CMD_STAT
);
416 BNAD_GET_REG(HOSTFN0_LPU0_MBOX1_CMD_STAT
);
417 BNAD_GET_REG(HOSTFN0_LPU1_MBOX1_CMD_STAT
);
418 BNAD_GET_REG(LPU0_HOSTFN0_MBOX1_CMD_STAT
);
419 BNAD_GET_REG(LPU1_HOSTFN0_MBOX1_CMD_STAT
);
421 BNAD_GET_REG(HOSTFN1_LPU0_MBOX0_CMD_STAT
);
422 BNAD_GET_REG(HOSTFN1_LPU1_MBOX0_CMD_STAT
);
423 BNAD_GET_REG(LPU0_HOSTFN1_MBOX0_CMD_STAT
);
424 BNAD_GET_REG(LPU1_HOSTFN1_MBOX0_CMD_STAT
);
426 BNAD_GET_REG(HOSTFN1_LPU0_MBOX1_CMD_STAT
);
427 BNAD_GET_REG(HOSTFN1_LPU1_MBOX1_CMD_STAT
);
428 BNAD_GET_REG(LPU0_HOSTFN1_MBOX1_CMD_STAT
);
429 BNAD_GET_REG(LPU1_HOSTFN1_MBOX1_CMD_STAT
);
431 BNAD_GET_REG(HOSTFN2_LPU0_MBOX0_CMD_STAT
);
432 BNAD_GET_REG(HOSTFN2_LPU1_MBOX0_CMD_STAT
);
433 BNAD_GET_REG(LPU0_HOSTFN2_MBOX0_CMD_STAT
);
434 BNAD_GET_REG(LPU1_HOSTFN2_MBOX0_CMD_STAT
);
436 BNAD_GET_REG(HOSTFN2_LPU0_MBOX1_CMD_STAT
);
437 BNAD_GET_REG(HOSTFN2_LPU1_MBOX1_CMD_STAT
);
438 BNAD_GET_REG(LPU0_HOSTFN2_MBOX1_CMD_STAT
);
439 BNAD_GET_REG(LPU1_HOSTFN2_MBOX1_CMD_STAT
);
441 BNAD_GET_REG(HOSTFN3_LPU0_MBOX0_CMD_STAT
);
442 BNAD_GET_REG(HOSTFN3_LPU1_MBOX0_CMD_STAT
);
443 BNAD_GET_REG(LPU0_HOSTFN3_MBOX0_CMD_STAT
);
444 BNAD_GET_REG(LPU1_HOSTFN3_MBOX0_CMD_STAT
);
446 BNAD_GET_REG(HOSTFN3_LPU0_MBOX1_CMD_STAT
);
447 BNAD_GET_REG(HOSTFN3_LPU1_MBOX1_CMD_STAT
);
448 BNAD_GET_REG(LPU0_HOSTFN3_MBOX1_CMD_STAT
);
449 BNAD_GET_REG(LPU1_HOSTFN3_MBOX1_CMD_STAT
);
451 /* Host Function Force Parity Error Registers */
452 BNAD_GET_REG(HOSTFN0_LPU_FORCE_PERR
);
453 BNAD_GET_REG(HOSTFN1_LPU_FORCE_PERR
);
454 BNAD_GET_REG(HOSTFN2_LPU_FORCE_PERR
);
455 BNAD_GET_REG(HOSTFN3_LPU_FORCE_PERR
);
457 /* LL Port[0|1] Halt Mask Registers */
458 BNAD_GET_REG(LL_HALT_MSK_P0
);
459 BNAD_GET_REG(LL_HALT_MSK_P1
);
461 /* LL Port[0|1] Error Mask Registers */
462 BNAD_GET_REG(LL_ERR_MSK_P0
);
463 BNAD_GET_REG(LL_ERR_MSK_P1
);
465 /* EMC FLI Registers */
466 BNAD_GET_REG(FLI_CMD_REG
);
467 BNAD_GET_REG(FLI_ADDR_REG
);
468 BNAD_GET_REG(FLI_CTL_REG
);
469 BNAD_GET_REG(FLI_WRDATA_REG
);
470 BNAD_GET_REG(FLI_RDDATA_REG
);
471 BNAD_GET_REG(FLI_DEV_STATUS_REG
);
472 BNAD_GET_REG(FLI_SIG_WD_REG
);
474 BNAD_GET_REG(FLI_DEV_VENDOR_REG
);
475 BNAD_GET_REG(FLI_ERR_STATUS_REG
);
477 /* RxAdm 0 Registers */
478 BNAD_GET_REG(RAD0_CTL_REG
);
479 BNAD_GET_REG(RAD0_PE_PARM_REG
);
480 BNAD_GET_REG(RAD0_BCN_REG
);
481 BNAD_GET_REG(RAD0_DEFAULT_REG
);
482 BNAD_GET_REG(RAD0_PROMISC_REG
);
483 BNAD_GET_REG(RAD0_BCNQ_REG
);
484 BNAD_GET_REG(RAD0_DEFAULTQ_REG
);
486 BNAD_GET_REG(RAD0_ERR_STS
);
487 BNAD_GET_REG(RAD0_SET_ERR_STS
);
488 BNAD_GET_REG(RAD0_ERR_INT_EN
);
489 BNAD_GET_REG(RAD0_FIRST_ERR
);
490 BNAD_GET_REG(RAD0_FORCE_ERR
);
492 BNAD_GET_REG(RAD0_MAC_MAN_1H
);
493 BNAD_GET_REG(RAD0_MAC_MAN_1L
);
494 BNAD_GET_REG(RAD0_MAC_MAN_2H
);
495 BNAD_GET_REG(RAD0_MAC_MAN_2L
);
496 BNAD_GET_REG(RAD0_MAC_MAN_3H
);
497 BNAD_GET_REG(RAD0_MAC_MAN_3L
);
498 BNAD_GET_REG(RAD0_MAC_MAN_4H
);
499 BNAD_GET_REG(RAD0_MAC_MAN_4L
);
501 BNAD_GET_REG(RAD0_LAST4_IP
);
503 /* RxAdm 1 Registers */
504 BNAD_GET_REG(RAD1_CTL_REG
);
505 BNAD_GET_REG(RAD1_PE_PARM_REG
);
506 BNAD_GET_REG(RAD1_BCN_REG
);
507 BNAD_GET_REG(RAD1_DEFAULT_REG
);
508 BNAD_GET_REG(RAD1_PROMISC_REG
);
509 BNAD_GET_REG(RAD1_BCNQ_REG
);
510 BNAD_GET_REG(RAD1_DEFAULTQ_REG
);
512 BNAD_GET_REG(RAD1_ERR_STS
);
513 BNAD_GET_REG(RAD1_SET_ERR_STS
);
514 BNAD_GET_REG(RAD1_ERR_INT_EN
);
517 BNAD_GET_REG(TXA0_CTRL_REG
);
518 /* TxA0 TSO Sequence # Registers (RO) */
519 for (i
= 0; i
< 8; i
++) {
520 BNAD_GET_REG(TXA0_TSO_TCP_SEQ_REG(i
));
521 BNAD_GET_REG(TXA0_TSO_IP_INFO_REG(i
));
525 BNAD_GET_REG(TXA1_CTRL_REG
);
526 /* TxA1 TSO Sequence # Registers (RO) */
527 for (i
= 0; i
< 8; i
++) {
528 BNAD_GET_REG(TXA1_TSO_TCP_SEQ_REG(i
));
529 BNAD_GET_REG(TXA1_TSO_IP_INFO_REG(i
));
533 BNAD_GET_REG(RXA0_CTL_REG
);
534 BNAD_GET_REG(RXA1_CTL_REG
);
537 BNAD_GET_REG(PLB0_ECM_TIMER_REG
);
538 BNAD_GET_REG(PLB0_RL_CTL
);
539 for (i
= 0; i
< 8; i
++)
540 BNAD_GET_REG(PLB0_RL_MAX_BC(i
));
541 BNAD_GET_REG(PLB0_RL_TU_PRIO
);
542 for (i
= 0; i
< 8; i
++)
543 BNAD_GET_REG(PLB0_RL_BYTE_CNT(i
));
544 BNAD_GET_REG(PLB0_RL_MIN_REG
);
545 BNAD_GET_REG(PLB0_RL_MAX_REG
);
546 BNAD_GET_REG(PLB0_EMS_ADD_REG
);
549 BNAD_GET_REG(PLB1_ECM_TIMER_REG
);
550 BNAD_GET_REG(PLB1_RL_CTL
);
551 for (i
= 0; i
< 8; i
++)
552 BNAD_GET_REG(PLB1_RL_MAX_BC(i
));
553 BNAD_GET_REG(PLB1_RL_TU_PRIO
);
554 for (i
= 0; i
< 8; i
++)
555 BNAD_GET_REG(PLB1_RL_BYTE_CNT(i
));
556 BNAD_GET_REG(PLB1_RL_MIN_REG
);
557 BNAD_GET_REG(PLB1_RL_MAX_REG
);
558 BNAD_GET_REG(PLB1_EMS_ADD_REG
);
560 /* HQM Control Register */
561 BNAD_GET_REG(HQM0_CTL_REG
);
562 BNAD_GET_REG(HQM0_RXQ_STOP_SEM
);
563 BNAD_GET_REG(HQM0_TXQ_STOP_SEM
);
564 BNAD_GET_REG(HQM1_CTL_REG
);
565 BNAD_GET_REG(HQM1_RXQ_STOP_SEM
);
566 BNAD_GET_REG(HQM1_TXQ_STOP_SEM
);
569 BNAD_GET_REG(LUT0_ERR_STS
);
570 BNAD_GET_REG(LUT0_SET_ERR_STS
);
571 BNAD_GET_REG(LUT1_ERR_STS
);
572 BNAD_GET_REG(LUT1_SET_ERR_STS
);
575 BNAD_GET_REG(TRC_CTL_REG
);
576 BNAD_GET_REG(TRC_MODS_REG
);
577 BNAD_GET_REG(TRC_TRGC_REG
);
578 BNAD_GET_REG(TRC_CNT1_REG
);
579 BNAD_GET_REG(TRC_CNT2_REG
);
580 BNAD_GET_REG(TRC_NXTS_REG
);
581 BNAD_GET_REG(TRC_DIRR_REG
);
582 for (i
= 0; i
< 10; i
++)
583 BNAD_GET_REG(TRC_TRGM_REG(i
));
584 for (i
= 0; i
< 10; i
++)
585 BNAD_GET_REG(TRC_NXTM_REG(i
));
586 for (i
= 0; i
< 10; i
++)
587 BNAD_GET_REG(TRC_STRM_REG(i
));
589 spin_unlock_irqrestore(&bnad
->bna_lock
, flags
);
594 bnad_get_regs_len(struct net_device
*netdev
)
596 int ret
= get_regs(netdev_priv(netdev
), NULL
) * sizeof(u32
);
601 bnad_get_regs(struct net_device
*netdev
, struct ethtool_regs
*regs
, void *buf
)
603 memset(buf
, 0, bnad_get_regs_len(netdev
));
604 get_regs(netdev_priv(netdev
), buf
);
608 bnad_get_wol(struct net_device
*netdev
, struct ethtool_wolinfo
*wolinfo
)
610 wolinfo
->supported
= 0;
611 wolinfo
->wolopts
= 0;
615 bnad_get_coalesce(struct net_device
*netdev
, struct ethtool_coalesce
*coalesce
)
617 struct bnad
*bnad
= netdev_priv(netdev
);
620 /* Lock rqd. to access bnad->bna_lock */
621 spin_lock_irqsave(&bnad
->bna_lock
, flags
);
622 coalesce
->use_adaptive_rx_coalesce
=
623 (bnad
->cfg_flags
& BNAD_CF_DIM_ENABLED
) ? true : false;
624 spin_unlock_irqrestore(&bnad
->bna_lock
, flags
);
626 coalesce
->rx_coalesce_usecs
= bnad
->rx_coalescing_timeo
*
627 BFI_COALESCING_TIMER_UNIT
;
628 coalesce
->tx_coalesce_usecs
= bnad
->tx_coalescing_timeo
*
629 BFI_COALESCING_TIMER_UNIT
;
630 coalesce
->tx_max_coalesced_frames
= BFI_TX_INTERPKT_COUNT
;
636 bnad_set_coalesce(struct net_device
*netdev
, struct ethtool_coalesce
*coalesce
)
638 struct bnad
*bnad
= netdev_priv(netdev
);
640 int dim_timer_del
= 0;
642 if (coalesce
->rx_coalesce_usecs
== 0 ||
643 coalesce
->rx_coalesce_usecs
>
644 BFI_MAX_COALESCING_TIMEO
* BFI_COALESCING_TIMER_UNIT
)
647 if (coalesce
->tx_coalesce_usecs
== 0 ||
648 coalesce
->tx_coalesce_usecs
>
649 BFI_MAX_COALESCING_TIMEO
* BFI_COALESCING_TIMER_UNIT
)
652 mutex_lock(&bnad
->conf_mutex
);
654 * Do not need to store rx_coalesce_usecs here
655 * Every time DIM is disabled, we can get it from the
658 spin_lock_irqsave(&bnad
->bna_lock
, flags
);
659 if (coalesce
->use_adaptive_rx_coalesce
) {
660 if (!(bnad
->cfg_flags
& BNAD_CF_DIM_ENABLED
)) {
661 bnad
->cfg_flags
|= BNAD_CF_DIM_ENABLED
;
662 bnad_dim_timer_start(bnad
);
665 if (bnad
->cfg_flags
& BNAD_CF_DIM_ENABLED
) {
666 bnad
->cfg_flags
&= ~BNAD_CF_DIM_ENABLED
;
667 dim_timer_del
= bnad_dim_timer_running(bnad
);
669 clear_bit(BNAD_RF_DIM_TIMER_RUNNING
,
671 spin_unlock_irqrestore(&bnad
->bna_lock
, flags
);
672 del_timer_sync(&bnad
->dim_timer
);
673 spin_lock_irqsave(&bnad
->bna_lock
, flags
);
675 bnad_rx_coalescing_timeo_set(bnad
);
678 if (bnad
->tx_coalescing_timeo
!= coalesce
->tx_coalesce_usecs
/
679 BFI_COALESCING_TIMER_UNIT
) {
680 bnad
->tx_coalescing_timeo
= coalesce
->tx_coalesce_usecs
/
681 BFI_COALESCING_TIMER_UNIT
;
682 bnad_tx_coalescing_timeo_set(bnad
);
685 if (bnad
->rx_coalescing_timeo
!= coalesce
->rx_coalesce_usecs
/
686 BFI_COALESCING_TIMER_UNIT
) {
687 bnad
->rx_coalescing_timeo
= coalesce
->rx_coalesce_usecs
/
688 BFI_COALESCING_TIMER_UNIT
;
690 if (!(bnad
->cfg_flags
& BNAD_CF_DIM_ENABLED
))
691 bnad_rx_coalescing_timeo_set(bnad
);
695 /* Add Tx Inter-pkt DMA count? */
697 spin_unlock_irqrestore(&bnad
->bna_lock
, flags
);
699 mutex_unlock(&bnad
->conf_mutex
);
704 bnad_get_ringparam(struct net_device
*netdev
,
705 struct ethtool_ringparam
*ringparam
)
707 struct bnad
*bnad
= netdev_priv(netdev
);
709 ringparam
->rx_max_pending
= BNAD_MAX_Q_DEPTH
/ bnad_rxqs_per_cq
;
710 ringparam
->rx_mini_max_pending
= 0;
711 ringparam
->rx_jumbo_max_pending
= 0;
712 ringparam
->tx_max_pending
= BNAD_MAX_Q_DEPTH
;
714 ringparam
->rx_pending
= bnad
->rxq_depth
;
715 ringparam
->rx_mini_max_pending
= 0;
716 ringparam
->rx_jumbo_max_pending
= 0;
717 ringparam
->tx_pending
= bnad
->txq_depth
;
721 bnad_set_ringparam(struct net_device
*netdev
,
722 struct ethtool_ringparam
*ringparam
)
724 int i
, current_err
, err
= 0;
725 struct bnad
*bnad
= netdev_priv(netdev
);
727 mutex_lock(&bnad
->conf_mutex
);
728 if (ringparam
->rx_pending
== bnad
->rxq_depth
&&
729 ringparam
->tx_pending
== bnad
->txq_depth
) {
730 mutex_unlock(&bnad
->conf_mutex
);
734 if (ringparam
->rx_pending
< BNAD_MIN_Q_DEPTH
||
735 ringparam
->rx_pending
> BNAD_MAX_Q_DEPTH
/ bnad_rxqs_per_cq
||
736 !BNA_POWER_OF_2(ringparam
->rx_pending
)) {
737 mutex_unlock(&bnad
->conf_mutex
);
740 if (ringparam
->tx_pending
< BNAD_MIN_Q_DEPTH
||
741 ringparam
->tx_pending
> BNAD_MAX_Q_DEPTH
||
742 !BNA_POWER_OF_2(ringparam
->tx_pending
)) {
743 mutex_unlock(&bnad
->conf_mutex
);
747 if (ringparam
->rx_pending
!= bnad
->rxq_depth
) {
748 bnad
->rxq_depth
= ringparam
->rx_pending
;
749 for (i
= 0; i
< bnad
->num_rx
; i
++) {
750 if (!bnad
->rx_info
[i
].rx
)
752 bnad_cleanup_rx(bnad
, i
);
753 current_err
= bnad_setup_rx(bnad
, i
);
754 if (current_err
&& !err
)
758 if (ringparam
->tx_pending
!= bnad
->txq_depth
) {
759 bnad
->txq_depth
= ringparam
->tx_pending
;
760 for (i
= 0; i
< bnad
->num_tx
; i
++) {
761 if (!bnad
->tx_info
[i
].tx
)
763 bnad_cleanup_tx(bnad
, i
);
764 current_err
= bnad_setup_tx(bnad
, i
);
765 if (current_err
&& !err
)
770 mutex_unlock(&bnad
->conf_mutex
);
775 bnad_get_pauseparam(struct net_device
*netdev
,
776 struct ethtool_pauseparam
*pauseparam
)
778 struct bnad
*bnad
= netdev_priv(netdev
);
780 pauseparam
->autoneg
= 0;
781 pauseparam
->rx_pause
= bnad
->bna
.port
.pause_config
.rx_pause
;
782 pauseparam
->tx_pause
= bnad
->bna
.port
.pause_config
.tx_pause
;
786 bnad_set_pauseparam(struct net_device
*netdev
,
787 struct ethtool_pauseparam
*pauseparam
)
789 struct bnad
*bnad
= netdev_priv(netdev
);
790 struct bna_pause_config pause_config
;
793 if (pauseparam
->autoneg
== AUTONEG_ENABLE
)
796 mutex_lock(&bnad
->conf_mutex
);
797 if (pauseparam
->rx_pause
!= bnad
->bna
.port
.pause_config
.rx_pause
||
798 pauseparam
->tx_pause
!= bnad
->bna
.port
.pause_config
.tx_pause
) {
799 pause_config
.rx_pause
= pauseparam
->rx_pause
;
800 pause_config
.tx_pause
= pauseparam
->tx_pause
;
801 spin_lock_irqsave(&bnad
->bna_lock
, flags
);
802 bna_port_pause_config(&bnad
->bna
.port
, &pause_config
, NULL
);
803 spin_unlock_irqrestore(&bnad
->bna_lock
, flags
);
805 mutex_unlock(&bnad
->conf_mutex
);
810 bnad_get_rx_csum(struct net_device
*netdev
)
813 struct bnad
*bnad
= netdev_priv(netdev
);
815 rx_csum
= bnad
->rx_csum
;
820 bnad_set_rx_csum(struct net_device
*netdev
, u32 rx_csum
)
822 struct bnad
*bnad
= netdev_priv(netdev
);
824 mutex_lock(&bnad
->conf_mutex
);
825 bnad
->rx_csum
= rx_csum
;
826 mutex_unlock(&bnad
->conf_mutex
);
831 bnad_set_tx_csum(struct net_device
*netdev
, u32 tx_csum
)
833 struct bnad
*bnad
= netdev_priv(netdev
);
835 mutex_lock(&bnad
->conf_mutex
);
837 netdev
->features
|= NETIF_F_IP_CSUM
;
838 netdev
->features
|= NETIF_F_IPV6_CSUM
;
840 netdev
->features
&= ~NETIF_F_IP_CSUM
;
841 netdev
->features
&= ~NETIF_F_IPV6_CSUM
;
843 mutex_unlock(&bnad
->conf_mutex
);
848 bnad_set_tso(struct net_device
*netdev
, u32 tso
)
850 struct bnad
*bnad
= netdev_priv(netdev
);
852 mutex_lock(&bnad
->conf_mutex
);
854 netdev
->features
|= NETIF_F_TSO
;
855 netdev
->features
|= NETIF_F_TSO6
;
857 netdev
->features
&= ~NETIF_F_TSO
;
858 netdev
->features
&= ~NETIF_F_TSO6
;
860 mutex_unlock(&bnad
->conf_mutex
);
865 bnad_get_strings(struct net_device
*netdev
, u32 stringset
, u8
* string
)
867 struct bnad
*bnad
= netdev_priv(netdev
);
871 mutex_lock(&bnad
->conf_mutex
);
875 for (i
= 0; i
< BNAD_ETHTOOL_STATS_NUM
; i
++) {
876 BUG_ON(!(strlen(bnad_net_stats_strings
[i
]) <
878 memcpy(string
, bnad_net_stats_strings
[i
],
880 string
+= ETH_GSTRING_LEN
;
882 bmap
= (u64
)bnad
->bna
.tx_mod
.txf_bmap
[0] |
883 ((u64
)bnad
->bna
.tx_mod
.txf_bmap
[1] << 32);
884 for (i
= 0; bmap
&& (i
< BFI_LL_TXF_ID_MAX
); i
++) {
886 sprintf(string
, "txf%d_ucast_octets", i
);
887 string
+= ETH_GSTRING_LEN
;
888 sprintf(string
, "txf%d_ucast", i
);
889 string
+= ETH_GSTRING_LEN
;
890 sprintf(string
, "txf%d_ucast_vlan", i
);
891 string
+= ETH_GSTRING_LEN
;
892 sprintf(string
, "txf%d_mcast_octets", i
);
893 string
+= ETH_GSTRING_LEN
;
894 sprintf(string
, "txf%d_mcast", i
);
895 string
+= ETH_GSTRING_LEN
;
896 sprintf(string
, "txf%d_mcast_vlan", i
);
897 string
+= ETH_GSTRING_LEN
;
898 sprintf(string
, "txf%d_bcast_octets", i
);
899 string
+= ETH_GSTRING_LEN
;
900 sprintf(string
, "txf%d_bcast", i
);
901 string
+= ETH_GSTRING_LEN
;
902 sprintf(string
, "txf%d_bcast_vlan", i
);
903 string
+= ETH_GSTRING_LEN
;
904 sprintf(string
, "txf%d_errors", i
);
905 string
+= ETH_GSTRING_LEN
;
906 sprintf(string
, "txf%d_filter_vlan", i
);
907 string
+= ETH_GSTRING_LEN
;
908 sprintf(string
, "txf%d_filter_mac_sa", i
);
909 string
+= ETH_GSTRING_LEN
;
914 bmap
= (u64
)bnad
->bna
.rx_mod
.rxf_bmap
[0] |
915 ((u64
)bnad
->bna
.rx_mod
.rxf_bmap
[1] << 32);
916 for (i
= 0; bmap
&& (i
< BFI_LL_RXF_ID_MAX
); i
++) {
918 sprintf(string
, "rxf%d_ucast_octets", i
);
919 string
+= ETH_GSTRING_LEN
;
920 sprintf(string
, "rxf%d_ucast", i
);
921 string
+= ETH_GSTRING_LEN
;
922 sprintf(string
, "rxf%d_ucast_vlan", i
);
923 string
+= ETH_GSTRING_LEN
;
924 sprintf(string
, "rxf%d_mcast_octets", i
);
925 string
+= ETH_GSTRING_LEN
;
926 sprintf(string
, "rxf%d_mcast", i
);
927 string
+= ETH_GSTRING_LEN
;
928 sprintf(string
, "rxf%d_mcast_vlan", i
);
929 string
+= ETH_GSTRING_LEN
;
930 sprintf(string
, "rxf%d_bcast_octets", i
);
931 string
+= ETH_GSTRING_LEN
;
932 sprintf(string
, "rxf%d_bcast", i
);
933 string
+= ETH_GSTRING_LEN
;
934 sprintf(string
, "rxf%d_bcast_vlan", i
);
935 string
+= ETH_GSTRING_LEN
;
936 sprintf(string
, "rxf%d_frame_drops", i
);
937 string
+= ETH_GSTRING_LEN
;
943 for (i
= 0; i
< bnad
->num_rx
; i
++) {
944 if (!bnad
->rx_info
[i
].rx
)
946 for (j
= 0; j
< bnad
->num_rxp_per_rx
; j
++) {
947 sprintf(string
, "cq%d_producer_index", q_num
);
948 string
+= ETH_GSTRING_LEN
;
949 sprintf(string
, "cq%d_consumer_index", q_num
);
950 string
+= ETH_GSTRING_LEN
;
951 sprintf(string
, "cq%d_hw_producer_index",
953 string
+= ETH_GSTRING_LEN
;
959 for (i
= 0; i
< bnad
->num_rx
; i
++) {
960 if (!bnad
->rx_info
[i
].rx
)
962 for (j
= 0; j
< bnad
->num_rxp_per_rx
; j
++) {
963 sprintf(string
, "rxq%d_packets", q_num
);
964 string
+= ETH_GSTRING_LEN
;
965 sprintf(string
, "rxq%d_bytes", q_num
);
966 string
+= ETH_GSTRING_LEN
;
967 sprintf(string
, "rxq%d_packets_with_error",
969 string
+= ETH_GSTRING_LEN
;
970 sprintf(string
, "rxq%d_allocbuf_failed", q_num
);
971 string
+= ETH_GSTRING_LEN
;
972 sprintf(string
, "rxq%d_producer_index", q_num
);
973 string
+= ETH_GSTRING_LEN
;
974 sprintf(string
, "rxq%d_consumer_index", q_num
);
975 string
+= ETH_GSTRING_LEN
;
977 if (bnad
->rx_info
[i
].rx_ctrl
[j
].ccb
&&
978 bnad
->rx_info
[i
].rx_ctrl
[j
].ccb
->
980 bnad
->rx_info
[i
].rx_ctrl
[j
].ccb
->
982 sprintf(string
, "rxq%d_packets", q_num
);
983 string
+= ETH_GSTRING_LEN
;
984 sprintf(string
, "rxq%d_bytes", q_num
);
985 string
+= ETH_GSTRING_LEN
;
987 "rxq%d_packets_with_error", q_num
);
988 string
+= ETH_GSTRING_LEN
;
989 sprintf(string
, "rxq%d_allocbuf_failed",
991 string
+= ETH_GSTRING_LEN
;
992 sprintf(string
, "rxq%d_producer_index",
994 string
+= ETH_GSTRING_LEN
;
995 sprintf(string
, "rxq%d_consumer_index",
997 string
+= ETH_GSTRING_LEN
;
1004 for (i
= 0; i
< bnad
->num_tx
; i
++) {
1005 if (!bnad
->tx_info
[i
].tx
)
1007 for (j
= 0; j
< bnad
->num_txq_per_tx
; j
++) {
1008 sprintf(string
, "txq%d_packets", q_num
);
1009 string
+= ETH_GSTRING_LEN
;
1010 sprintf(string
, "txq%d_bytes", q_num
);
1011 string
+= ETH_GSTRING_LEN
;
1012 sprintf(string
, "txq%d_producer_index", q_num
);
1013 string
+= ETH_GSTRING_LEN
;
1014 sprintf(string
, "txq%d_consumer_index", q_num
);
1015 string
+= ETH_GSTRING_LEN
;
1016 sprintf(string
, "txq%d_hw_consumer_index",
1018 string
+= ETH_GSTRING_LEN
;
1029 mutex_unlock(&bnad
->conf_mutex
);
1033 bnad_get_stats_count_locked(struct net_device
*netdev
)
1035 struct bnad
*bnad
= netdev_priv(netdev
);
1036 int i
, j
, count
, rxf_active_num
= 0, txf_active_num
= 0;
1039 bmap
= (u64
)bnad
->bna
.tx_mod
.txf_bmap
[0] |
1040 ((u64
)bnad
->bna
.tx_mod
.txf_bmap
[1] << 32);
1041 for (i
= 0; bmap
&& (i
< BFI_LL_TXF_ID_MAX
); i
++) {
1046 bmap
= (u64
)bnad
->bna
.rx_mod
.rxf_bmap
[0] |
1047 ((u64
)bnad
->bna
.rx_mod
.rxf_bmap
[1] << 32);
1048 for (i
= 0; bmap
&& (i
< BFI_LL_RXF_ID_MAX
); i
++) {
1053 count
= BNAD_ETHTOOL_STATS_NUM
+
1054 txf_active_num
* BNAD_NUM_TXF_COUNTERS
+
1055 rxf_active_num
* BNAD_NUM_RXF_COUNTERS
;
1057 for (i
= 0; i
< bnad
->num_rx
; i
++) {
1058 if (!bnad
->rx_info
[i
].rx
)
1060 count
+= bnad
->num_rxp_per_rx
* BNAD_NUM_CQ_COUNTERS
;
1061 count
+= bnad
->num_rxp_per_rx
* BNAD_NUM_RXQ_COUNTERS
;
1062 for (j
= 0; j
< bnad
->num_rxp_per_rx
; j
++)
1063 if (bnad
->rx_info
[i
].rx_ctrl
[j
].ccb
&&
1064 bnad
->rx_info
[i
].rx_ctrl
[j
].ccb
->rcb
[1] &&
1065 bnad
->rx_info
[i
].rx_ctrl
[j
].ccb
->rcb
[1]->rxq
)
1066 count
+= BNAD_NUM_RXQ_COUNTERS
;
1069 for (i
= 0; i
< bnad
->num_tx
; i
++) {
1070 if (!bnad
->tx_info
[i
].tx
)
1072 count
+= bnad
->num_txq_per_tx
* BNAD_NUM_TXQ_COUNTERS
;
1078 bnad_per_q_stats_fill(struct bnad
*bnad
, u64
*buf
, int bi
)
1081 struct bna_rcb
*rcb
= NULL
;
1082 struct bna_tcb
*tcb
= NULL
;
1084 for (i
= 0; i
< bnad
->num_rx
; i
++) {
1085 if (!bnad
->rx_info
[i
].rx
)
1087 for (j
= 0; j
< bnad
->num_rxp_per_rx
; j
++)
1088 if (bnad
->rx_info
[i
].rx_ctrl
[j
].ccb
&&
1089 bnad
->rx_info
[i
].rx_ctrl
[j
].ccb
->rcb
[0] &&
1090 bnad
->rx_info
[i
].rx_ctrl
[j
].ccb
->rcb
[0]->rxq
) {
1091 buf
[bi
++] = bnad
->rx_info
[i
].rx_ctrl
[j
].
1092 ccb
->producer_index
;
1093 buf
[bi
++] = 0; /* ccb->consumer_index */
1094 buf
[bi
++] = *(bnad
->rx_info
[i
].rx_ctrl
[j
].
1095 ccb
->hw_producer_index
);
1098 for (i
= 0; i
< bnad
->num_rx
; i
++) {
1099 if (!bnad
->rx_info
[i
].rx
)
1101 for (j
= 0; j
< bnad
->num_rxp_per_rx
; j
++)
1102 if (bnad
->rx_info
[i
].rx_ctrl
[j
].ccb
) {
1103 if (bnad
->rx_info
[i
].rx_ctrl
[j
].ccb
->rcb
[0] &&
1104 bnad
->rx_info
[i
].rx_ctrl
[j
].ccb
->
1106 rcb
= bnad
->rx_info
[i
].rx_ctrl
[j
].
1108 buf
[bi
++] = rcb
->rxq
->rx_packets
;
1109 buf
[bi
++] = rcb
->rxq
->rx_bytes
;
1110 buf
[bi
++] = rcb
->rxq
->
1111 rx_packets_with_error
;
1112 buf
[bi
++] = rcb
->rxq
->
1114 buf
[bi
++] = rcb
->producer_index
;
1115 buf
[bi
++] = rcb
->consumer_index
;
1117 if (bnad
->rx_info
[i
].rx_ctrl
[j
].ccb
->rcb
[1] &&
1118 bnad
->rx_info
[i
].rx_ctrl
[j
].ccb
->
1120 rcb
= bnad
->rx_info
[i
].rx_ctrl
[j
].
1122 buf
[bi
++] = rcb
->rxq
->rx_packets
;
1123 buf
[bi
++] = rcb
->rxq
->rx_bytes
;
1124 buf
[bi
++] = rcb
->rxq
->
1125 rx_packets_with_error
;
1126 buf
[bi
++] = rcb
->rxq
->
1128 buf
[bi
++] = rcb
->producer_index
;
1129 buf
[bi
++] = rcb
->consumer_index
;
1134 for (i
= 0; i
< bnad
->num_tx
; i
++) {
1135 if (!bnad
->tx_info
[i
].tx
)
1137 for (j
= 0; j
< bnad
->num_txq_per_tx
; j
++)
1138 if (bnad
->tx_info
[i
].tcb
[j
] &&
1139 bnad
->tx_info
[i
].tcb
[j
]->txq
) {
1140 tcb
= bnad
->tx_info
[i
].tcb
[j
];
1141 buf
[bi
++] = tcb
->txq
->tx_packets
;
1142 buf
[bi
++] = tcb
->txq
->tx_bytes
;
1143 buf
[bi
++] = tcb
->producer_index
;
1144 buf
[bi
++] = tcb
->consumer_index
;
1145 buf
[bi
++] = *(tcb
->hw_consumer_index
);
1153 bnad_get_ethtool_stats(struct net_device
*netdev
, struct ethtool_stats
*stats
,
1156 struct bnad
*bnad
= netdev_priv(netdev
);
1158 unsigned long flags
;
1159 struct rtnl_link_stats64
*net_stats64
;
1163 mutex_lock(&bnad
->conf_mutex
);
1164 if (bnad_get_stats_count_locked(netdev
) != stats
->n_stats
) {
1165 mutex_unlock(&bnad
->conf_mutex
);
1170 * Used bna_lock to sync reads from bna_stats, which is written
1171 * under the same lock
1173 spin_lock_irqsave(&bnad
->bna_lock
, flags
);
1175 memset(buf
, 0, stats
->n_stats
* sizeof(u64
));
1177 net_stats64
= (struct rtnl_link_stats64
*)buf
;
1178 bnad_netdev_qstats_fill(bnad
, net_stats64
);
1179 bnad_netdev_hwstats_fill(bnad
, net_stats64
);
1181 bi
= sizeof(*net_stats64
) / sizeof(u64
);
1183 /* Get netif_queue_stopped from stack */
1184 bnad
->stats
.drv_stats
.netif_queue_stopped
= netif_queue_stopped(netdev
);
1186 /* Fill driver stats into ethtool buffers */
1187 stats64
= (u64
*)&bnad
->stats
.drv_stats
;
1188 for (i
= 0; i
< sizeof(struct bnad_drv_stats
) / sizeof(u64
); i
++)
1189 buf
[bi
++] = stats64
[i
];
1191 /* Fill hardware stats excluding the rxf/txf into ethtool bufs */
1192 stats64
= (u64
*) bnad
->stats
.bna_stats
->hw_stats
;
1194 i
< offsetof(struct bfi_ll_stats
, rxf_stats
[0]) / sizeof(u64
);
1196 buf
[bi
++] = stats64
[i
];
1198 /* Fill txf stats into ethtool buffers */
1199 bmap
= (u64
)bnad
->bna
.tx_mod
.txf_bmap
[0] |
1200 ((u64
)bnad
->bna
.tx_mod
.txf_bmap
[1] << 32);
1201 for (i
= 0; bmap
&& (i
< BFI_LL_TXF_ID_MAX
); i
++) {
1203 stats64
= (u64
*)&bnad
->stats
.bna_stats
->
1204 hw_stats
->txf_stats
[i
];
1205 for (j
= 0; j
< sizeof(struct bfi_ll_stats_txf
) /
1207 buf
[bi
++] = stats64
[j
];
1212 /* Fill rxf stats into ethtool buffers */
1213 bmap
= (u64
)bnad
->bna
.rx_mod
.rxf_bmap
[0] |
1214 ((u64
)bnad
->bna
.rx_mod
.rxf_bmap
[1] << 32);
1215 for (i
= 0; bmap
&& (i
< BFI_LL_RXF_ID_MAX
); i
++) {
1217 stats64
= (u64
*)&bnad
->stats
.bna_stats
->
1218 hw_stats
->rxf_stats
[i
];
1219 for (j
= 0; j
< sizeof(struct bfi_ll_stats_rxf
) /
1221 buf
[bi
++] = stats64
[j
];
1226 /* Fill per Q stats into ethtool buffers */
1227 bi
= bnad_per_q_stats_fill(bnad
, buf
, bi
);
1229 spin_unlock_irqrestore(&bnad
->bna_lock
, flags
);
1231 mutex_unlock(&bnad
->conf_mutex
);
1235 bnad_get_sset_count(struct net_device
*netdev
, int sset
)
1239 return bnad_get_stats_count_locked(netdev
);
1245 static struct ethtool_ops bnad_ethtool_ops
= {
1246 .get_settings
= bnad_get_settings
,
1247 .set_settings
= bnad_set_settings
,
1248 .get_drvinfo
= bnad_get_drvinfo
,
1249 .get_regs_len
= bnad_get_regs_len
,
1250 .get_regs
= bnad_get_regs
,
1251 .get_wol
= bnad_get_wol
,
1252 .get_link
= ethtool_op_get_link
,
1253 .get_coalesce
= bnad_get_coalesce
,
1254 .set_coalesce
= bnad_set_coalesce
,
1255 .get_ringparam
= bnad_get_ringparam
,
1256 .set_ringparam
= bnad_set_ringparam
,
1257 .get_pauseparam
= bnad_get_pauseparam
,
1258 .set_pauseparam
= bnad_set_pauseparam
,
1259 .get_rx_csum
= bnad_get_rx_csum
,
1260 .set_rx_csum
= bnad_set_rx_csum
,
1261 .get_tx_csum
= ethtool_op_get_tx_csum
,
1262 .set_tx_csum
= bnad_set_tx_csum
,
1263 .get_sg
= ethtool_op_get_sg
,
1264 .set_sg
= ethtool_op_set_sg
,
1265 .get_tso
= ethtool_op_get_tso
,
1266 .set_tso
= bnad_set_tso
,
1267 .get_strings
= bnad_get_strings
,
1268 .get_ethtool_stats
= bnad_get_ethtool_stats
,
1269 .get_sset_count
= bnad_get_sset_count
1273 bnad_set_ethtool_ops(struct net_device
*netdev
)
1275 SET_ETHTOOL_OPS(netdev
, &bnad_ethtool_ops
);