1 /* Broadcom NetXtreme-C/E network driver.
3 * Copyright (c) 2014-2016 Broadcom Corporation
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation.
10 #include <linux/ctype.h>
11 #include <linux/stringify.h>
12 #include <linux/ethtool.h>
13 #include <linux/interrupt.h>
14 #include <linux/pci.h>
15 #include <linux/etherdevice.h>
16 #include <linux/crc32.h>
17 #include <linux/firmware.h>
20 #include "bnxt_ethtool.h"
21 #include "bnxt_nvm_defs.h" /* NVRAM content constant and structure defs */
22 #include "bnxt_fw_hdr.h" /* Firmware hdr constant and structure defs */
23 #define FLASH_NVRAM_TIMEOUT ((HWRM_CMD_TIMEOUT) * 100)
25 static char *bnxt_get_pkgver(struct net_device
*dev
, char *buf
, size_t buflen
);
27 static u32
bnxt_get_msglevel(struct net_device
*dev
)
29 struct bnxt
*bp
= netdev_priv(dev
);
31 return bp
->msg_enable
;
34 static void bnxt_set_msglevel(struct net_device
*dev
, u32 value
)
36 struct bnxt
*bp
= netdev_priv(dev
);
38 bp
->msg_enable
= value
;
41 static int bnxt_get_coalesce(struct net_device
*dev
,
42 struct ethtool_coalesce
*coal
)
44 struct bnxt
*bp
= netdev_priv(dev
);
46 memset(coal
, 0, sizeof(*coal
));
48 coal
->rx_coalesce_usecs
= bp
->rx_coal_ticks
;
49 /* 2 completion records per rx packet */
50 coal
->rx_max_coalesced_frames
= bp
->rx_coal_bufs
/ 2;
51 coal
->rx_coalesce_usecs_irq
= bp
->rx_coal_ticks_irq
;
52 coal
->rx_max_coalesced_frames_irq
= bp
->rx_coal_bufs_irq
/ 2;
54 coal
->tx_coalesce_usecs
= bp
->tx_coal_ticks
;
55 coal
->tx_max_coalesced_frames
= bp
->tx_coal_bufs
;
56 coal
->tx_coalesce_usecs_irq
= bp
->tx_coal_ticks_irq
;
57 coal
->tx_max_coalesced_frames_irq
= bp
->tx_coal_bufs_irq
;
62 static int bnxt_set_coalesce(struct net_device
*dev
,
63 struct ethtool_coalesce
*coal
)
65 struct bnxt
*bp
= netdev_priv(dev
);
68 bp
->rx_coal_ticks
= coal
->rx_coalesce_usecs
;
69 /* 2 completion records per rx packet */
70 bp
->rx_coal_bufs
= coal
->rx_max_coalesced_frames
* 2;
71 bp
->rx_coal_ticks_irq
= coal
->rx_coalesce_usecs_irq
;
72 bp
->rx_coal_bufs_irq
= coal
->rx_max_coalesced_frames_irq
* 2;
74 bp
->tx_coal_ticks
= coal
->tx_coalesce_usecs
;
75 bp
->tx_coal_bufs
= coal
->tx_max_coalesced_frames
;
76 bp
->tx_coal_ticks_irq
= coal
->tx_coalesce_usecs_irq
;
77 bp
->tx_coal_bufs_irq
= coal
->tx_max_coalesced_frames_irq
;
79 if (netif_running(dev
))
80 rc
= bnxt_hwrm_set_coal(bp
);
85 #define BNXT_NUM_STATS 21
87 #define BNXT_RX_STATS_OFFSET(counter) \
88 (offsetof(struct rx_port_stats, counter) / 8)
90 #define BNXT_RX_STATS_ENTRY(counter) \
91 { BNXT_RX_STATS_OFFSET(counter), __stringify(counter) }
93 #define BNXT_TX_STATS_OFFSET(counter) \
94 ((offsetof(struct tx_port_stats, counter) + \
95 sizeof(struct rx_port_stats) + 512) / 8)
97 #define BNXT_TX_STATS_ENTRY(counter) \
98 { BNXT_TX_STATS_OFFSET(counter), __stringify(counter) }
100 static const struct {
102 char string
[ETH_GSTRING_LEN
];
103 } bnxt_port_stats_arr
[] = {
104 BNXT_RX_STATS_ENTRY(rx_64b_frames
),
105 BNXT_RX_STATS_ENTRY(rx_65b_127b_frames
),
106 BNXT_RX_STATS_ENTRY(rx_128b_255b_frames
),
107 BNXT_RX_STATS_ENTRY(rx_256b_511b_frames
),
108 BNXT_RX_STATS_ENTRY(rx_512b_1023b_frames
),
109 BNXT_RX_STATS_ENTRY(rx_1024b_1518_frames
),
110 BNXT_RX_STATS_ENTRY(rx_good_vlan_frames
),
111 BNXT_RX_STATS_ENTRY(rx_1519b_2047b_frames
),
112 BNXT_RX_STATS_ENTRY(rx_2048b_4095b_frames
),
113 BNXT_RX_STATS_ENTRY(rx_4096b_9216b_frames
),
114 BNXT_RX_STATS_ENTRY(rx_9217b_16383b_frames
),
115 BNXT_RX_STATS_ENTRY(rx_total_frames
),
116 BNXT_RX_STATS_ENTRY(rx_ucast_frames
),
117 BNXT_RX_STATS_ENTRY(rx_mcast_frames
),
118 BNXT_RX_STATS_ENTRY(rx_bcast_frames
),
119 BNXT_RX_STATS_ENTRY(rx_fcs_err_frames
),
120 BNXT_RX_STATS_ENTRY(rx_ctrl_frames
),
121 BNXT_RX_STATS_ENTRY(rx_pause_frames
),
122 BNXT_RX_STATS_ENTRY(rx_pfc_frames
),
123 BNXT_RX_STATS_ENTRY(rx_align_err_frames
),
124 BNXT_RX_STATS_ENTRY(rx_ovrsz_frames
),
125 BNXT_RX_STATS_ENTRY(rx_jbr_frames
),
126 BNXT_RX_STATS_ENTRY(rx_mtu_err_frames
),
127 BNXT_RX_STATS_ENTRY(rx_tagged_frames
),
128 BNXT_RX_STATS_ENTRY(rx_double_tagged_frames
),
129 BNXT_RX_STATS_ENTRY(rx_good_frames
),
130 BNXT_RX_STATS_ENTRY(rx_undrsz_frames
),
131 BNXT_RX_STATS_ENTRY(rx_eee_lpi_events
),
132 BNXT_RX_STATS_ENTRY(rx_eee_lpi_duration
),
133 BNXT_RX_STATS_ENTRY(rx_bytes
),
134 BNXT_RX_STATS_ENTRY(rx_runt_bytes
),
135 BNXT_RX_STATS_ENTRY(rx_runt_frames
),
137 BNXT_TX_STATS_ENTRY(tx_64b_frames
),
138 BNXT_TX_STATS_ENTRY(tx_65b_127b_frames
),
139 BNXT_TX_STATS_ENTRY(tx_128b_255b_frames
),
140 BNXT_TX_STATS_ENTRY(tx_256b_511b_frames
),
141 BNXT_TX_STATS_ENTRY(tx_512b_1023b_frames
),
142 BNXT_TX_STATS_ENTRY(tx_1024b_1518_frames
),
143 BNXT_TX_STATS_ENTRY(tx_good_vlan_frames
),
144 BNXT_TX_STATS_ENTRY(tx_1519b_2047_frames
),
145 BNXT_TX_STATS_ENTRY(tx_2048b_4095b_frames
),
146 BNXT_TX_STATS_ENTRY(tx_4096b_9216b_frames
),
147 BNXT_TX_STATS_ENTRY(tx_9217b_16383b_frames
),
148 BNXT_TX_STATS_ENTRY(tx_good_frames
),
149 BNXT_TX_STATS_ENTRY(tx_total_frames
),
150 BNXT_TX_STATS_ENTRY(tx_ucast_frames
),
151 BNXT_TX_STATS_ENTRY(tx_mcast_frames
),
152 BNXT_TX_STATS_ENTRY(tx_bcast_frames
),
153 BNXT_TX_STATS_ENTRY(tx_pause_frames
),
154 BNXT_TX_STATS_ENTRY(tx_pfc_frames
),
155 BNXT_TX_STATS_ENTRY(tx_jabber_frames
),
156 BNXT_TX_STATS_ENTRY(tx_fcs_err_frames
),
157 BNXT_TX_STATS_ENTRY(tx_err
),
158 BNXT_TX_STATS_ENTRY(tx_fifo_underruns
),
159 BNXT_TX_STATS_ENTRY(tx_eee_lpi_events
),
160 BNXT_TX_STATS_ENTRY(tx_eee_lpi_duration
),
161 BNXT_TX_STATS_ENTRY(tx_total_collisions
),
162 BNXT_TX_STATS_ENTRY(tx_bytes
),
165 #define BNXT_NUM_PORT_STATS ARRAY_SIZE(bnxt_port_stats_arr)
167 static int bnxt_get_sset_count(struct net_device
*dev
, int sset
)
169 struct bnxt
*bp
= netdev_priv(dev
);
173 int num_stats
= BNXT_NUM_STATS
* bp
->cp_nr_rings
;
175 if (bp
->flags
& BNXT_FLAG_PORT_STATS
)
176 num_stats
+= BNXT_NUM_PORT_STATS
;
185 static void bnxt_get_ethtool_stats(struct net_device
*dev
,
186 struct ethtool_stats
*stats
, u64
*buf
)
189 struct bnxt
*bp
= netdev_priv(dev
);
190 u32 buf_size
= sizeof(struct ctx_hw_stats
) * bp
->cp_nr_rings
;
191 u32 stat_fields
= sizeof(struct ctx_hw_stats
) / 8;
193 memset(buf
, 0, buf_size
);
198 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
199 struct bnxt_napi
*bnapi
= bp
->bnapi
[i
];
200 struct bnxt_cp_ring_info
*cpr
= &bnapi
->cp_ring
;
201 __le64
*hw_stats
= (__le64
*)cpr
->hw_stats
;
204 for (k
= 0; k
< stat_fields
; j
++, k
++)
205 buf
[j
] = le64_to_cpu(hw_stats
[k
]);
206 buf
[j
++] = cpr
->rx_l4_csum_errors
;
208 if (bp
->flags
& BNXT_FLAG_PORT_STATS
) {
209 __le64
*port_stats
= (__le64
*)bp
->hw_rx_port_stats
;
211 for (i
= 0; i
< BNXT_NUM_PORT_STATS
; i
++, j
++) {
212 buf
[j
] = le64_to_cpu(*(port_stats
+
213 bnxt_port_stats_arr
[i
].offset
));
218 static void bnxt_get_strings(struct net_device
*dev
, u32 stringset
, u8
*buf
)
220 struct bnxt
*bp
= netdev_priv(dev
);
224 /* The number of strings must match BNXT_NUM_STATS defined above. */
226 for (i
= 0; i
< bp
->cp_nr_rings
; i
++) {
227 sprintf(buf
, "[%d]: rx_ucast_packets", i
);
228 buf
+= ETH_GSTRING_LEN
;
229 sprintf(buf
, "[%d]: rx_mcast_packets", i
);
230 buf
+= ETH_GSTRING_LEN
;
231 sprintf(buf
, "[%d]: rx_bcast_packets", i
);
232 buf
+= ETH_GSTRING_LEN
;
233 sprintf(buf
, "[%d]: rx_discards", i
);
234 buf
+= ETH_GSTRING_LEN
;
235 sprintf(buf
, "[%d]: rx_drops", i
);
236 buf
+= ETH_GSTRING_LEN
;
237 sprintf(buf
, "[%d]: rx_ucast_bytes", i
);
238 buf
+= ETH_GSTRING_LEN
;
239 sprintf(buf
, "[%d]: rx_mcast_bytes", i
);
240 buf
+= ETH_GSTRING_LEN
;
241 sprintf(buf
, "[%d]: rx_bcast_bytes", i
);
242 buf
+= ETH_GSTRING_LEN
;
243 sprintf(buf
, "[%d]: tx_ucast_packets", i
);
244 buf
+= ETH_GSTRING_LEN
;
245 sprintf(buf
, "[%d]: tx_mcast_packets", i
);
246 buf
+= ETH_GSTRING_LEN
;
247 sprintf(buf
, "[%d]: tx_bcast_packets", i
);
248 buf
+= ETH_GSTRING_LEN
;
249 sprintf(buf
, "[%d]: tx_discards", i
);
250 buf
+= ETH_GSTRING_LEN
;
251 sprintf(buf
, "[%d]: tx_drops", i
);
252 buf
+= ETH_GSTRING_LEN
;
253 sprintf(buf
, "[%d]: tx_ucast_bytes", i
);
254 buf
+= ETH_GSTRING_LEN
;
255 sprintf(buf
, "[%d]: tx_mcast_bytes", i
);
256 buf
+= ETH_GSTRING_LEN
;
257 sprintf(buf
, "[%d]: tx_bcast_bytes", i
);
258 buf
+= ETH_GSTRING_LEN
;
259 sprintf(buf
, "[%d]: tpa_packets", i
);
260 buf
+= ETH_GSTRING_LEN
;
261 sprintf(buf
, "[%d]: tpa_bytes", i
);
262 buf
+= ETH_GSTRING_LEN
;
263 sprintf(buf
, "[%d]: tpa_events", i
);
264 buf
+= ETH_GSTRING_LEN
;
265 sprintf(buf
, "[%d]: tpa_aborts", i
);
266 buf
+= ETH_GSTRING_LEN
;
267 sprintf(buf
, "[%d]: rx_l4_csum_errors", i
);
268 buf
+= ETH_GSTRING_LEN
;
270 if (bp
->flags
& BNXT_FLAG_PORT_STATS
) {
271 for (i
= 0; i
< BNXT_NUM_PORT_STATS
; i
++) {
272 strcpy(buf
, bnxt_port_stats_arr
[i
].string
);
273 buf
+= ETH_GSTRING_LEN
;
278 netdev_err(bp
->dev
, "bnxt_get_strings invalid request %x\n",
284 static void bnxt_get_ringparam(struct net_device
*dev
,
285 struct ethtool_ringparam
*ering
)
287 struct bnxt
*bp
= netdev_priv(dev
);
289 ering
->rx_max_pending
= BNXT_MAX_RX_DESC_CNT
;
290 ering
->rx_jumbo_max_pending
= BNXT_MAX_RX_JUM_DESC_CNT
;
291 ering
->tx_max_pending
= BNXT_MAX_TX_DESC_CNT
;
293 ering
->rx_pending
= bp
->rx_ring_size
;
294 ering
->rx_jumbo_pending
= bp
->rx_agg_ring_size
;
295 ering
->tx_pending
= bp
->tx_ring_size
;
298 static int bnxt_set_ringparam(struct net_device
*dev
,
299 struct ethtool_ringparam
*ering
)
301 struct bnxt
*bp
= netdev_priv(dev
);
303 if ((ering
->rx_pending
> BNXT_MAX_RX_DESC_CNT
) ||
304 (ering
->tx_pending
> BNXT_MAX_TX_DESC_CNT
) ||
305 (ering
->tx_pending
<= MAX_SKB_FRAGS
))
308 if (netif_running(dev
))
309 bnxt_close_nic(bp
, false, false);
311 bp
->rx_ring_size
= ering
->rx_pending
;
312 bp
->tx_ring_size
= ering
->tx_pending
;
313 bnxt_set_ring_params(bp
);
315 if (netif_running(dev
))
316 return bnxt_open_nic(bp
, false, false);
321 static void bnxt_get_channels(struct net_device
*dev
,
322 struct ethtool_channels
*channel
)
324 struct bnxt
*bp
= netdev_priv(dev
);
325 int max_rx_rings
, max_tx_rings
, tcs
;
327 bnxt_get_max_rings(bp
, &max_rx_rings
, &max_tx_rings
, true);
328 channel
->max_combined
= max_rx_rings
;
330 bnxt_get_max_rings(bp
, &max_rx_rings
, &max_tx_rings
, false);
331 tcs
= netdev_get_num_tc(dev
);
335 channel
->max_rx
= max_rx_rings
;
336 channel
->max_tx
= max_tx_rings
;
337 channel
->max_other
= 0;
338 if (bp
->flags
& BNXT_FLAG_SHARED_RINGS
) {
339 channel
->combined_count
= bp
->rx_nr_rings
;
341 channel
->rx_count
= bp
->rx_nr_rings
;
342 channel
->tx_count
= bp
->tx_nr_rings_per_tc
;
346 static int bnxt_set_channels(struct net_device
*dev
,
347 struct ethtool_channels
*channel
)
349 struct bnxt
*bp
= netdev_priv(dev
);
350 int max_rx_rings
, max_tx_rings
, tcs
;
354 if (channel
->other_count
)
357 if (!channel
->combined_count
&&
358 (!channel
->rx_count
|| !channel
->tx_count
))
361 if (channel
->combined_count
&&
362 (channel
->rx_count
|| channel
->tx_count
))
365 if (channel
->combined_count
)
368 bnxt_get_max_rings(bp
, &max_rx_rings
, &max_tx_rings
, sh
);
370 tcs
= netdev_get_num_tc(dev
);
374 if (sh
&& (channel
->combined_count
> max_rx_rings
||
375 channel
->combined_count
> max_tx_rings
))
378 if (!sh
&& (channel
->rx_count
> max_rx_rings
||
379 channel
->tx_count
> max_tx_rings
))
382 if (netif_running(dev
)) {
384 /* TODO CHIMP_FW: Send message to all VF's
388 rc
= bnxt_close_nic(bp
, true, false);
390 netdev_err(bp
->dev
, "Set channel failure rc :%x\n",
397 bp
->flags
|= BNXT_FLAG_SHARED_RINGS
;
398 bp
->rx_nr_rings
= channel
->combined_count
;
399 bp
->tx_nr_rings_per_tc
= channel
->combined_count
;
401 bp
->flags
&= ~BNXT_FLAG_SHARED_RINGS
;
402 bp
->rx_nr_rings
= channel
->rx_count
;
403 bp
->tx_nr_rings_per_tc
= channel
->tx_count
;
406 bp
->tx_nr_rings
= bp
->tx_nr_rings_per_tc
;
408 bp
->tx_nr_rings
= bp
->tx_nr_rings_per_tc
* tcs
;
410 bp
->cp_nr_rings
= sh
? max_t(int, bp
->tx_nr_rings
, bp
->rx_nr_rings
) :
411 bp
->tx_nr_rings
+ bp
->rx_nr_rings
;
413 bp
->num_stat_ctxs
= bp
->cp_nr_rings
;
415 /* After changing number of rx channels, update NTUPLE feature. */
416 netdev_update_features(dev
);
417 if (netif_running(dev
)) {
418 rc
= bnxt_open_nic(bp
, true, false);
419 if ((!rc
) && BNXT_PF(bp
)) {
420 /* TODO CHIMP_FW: Send message to all VF's
429 #ifdef CONFIG_RFS_ACCEL
430 static int bnxt_grxclsrlall(struct bnxt
*bp
, struct ethtool_rxnfc
*cmd
,
435 cmd
->data
= bp
->ntp_fltr_count
;
436 for (i
= 0; i
< BNXT_NTP_FLTR_HASH_SIZE
; i
++) {
437 struct hlist_head
*head
;
438 struct bnxt_ntuple_filter
*fltr
;
440 head
= &bp
->ntp_fltr_hash_tbl
[i
];
442 hlist_for_each_entry_rcu(fltr
, head
, hash
) {
443 if (j
== cmd
->rule_cnt
)
445 rule_locs
[j
++] = fltr
->sw_id
;
448 if (j
== cmd
->rule_cnt
)
455 static int bnxt_grxclsrule(struct bnxt
*bp
, struct ethtool_rxnfc
*cmd
)
457 struct ethtool_rx_flow_spec
*fs
=
458 (struct ethtool_rx_flow_spec
*)&cmd
->fs
;
459 struct bnxt_ntuple_filter
*fltr
;
460 struct flow_keys
*fkeys
;
463 if (fs
->location
< 0 || fs
->location
>= BNXT_NTP_FLTR_MAX_FLTR
)
466 for (i
= 0; i
< BNXT_NTP_FLTR_HASH_SIZE
; i
++) {
467 struct hlist_head
*head
;
469 head
= &bp
->ntp_fltr_hash_tbl
[i
];
471 hlist_for_each_entry_rcu(fltr
, head
, hash
) {
472 if (fltr
->sw_id
== fs
->location
)
480 fkeys
= &fltr
->fkeys
;
481 if (fkeys
->basic
.ip_proto
== IPPROTO_TCP
)
482 fs
->flow_type
= TCP_V4_FLOW
;
483 else if (fkeys
->basic
.ip_proto
== IPPROTO_UDP
)
484 fs
->flow_type
= UDP_V4_FLOW
;
488 fs
->h_u
.tcp_ip4_spec
.ip4src
= fkeys
->addrs
.v4addrs
.src
;
489 fs
->m_u
.tcp_ip4_spec
.ip4src
= cpu_to_be32(~0);
491 fs
->h_u
.tcp_ip4_spec
.ip4dst
= fkeys
->addrs
.v4addrs
.dst
;
492 fs
->m_u
.tcp_ip4_spec
.ip4dst
= cpu_to_be32(~0);
494 fs
->h_u
.tcp_ip4_spec
.psrc
= fkeys
->ports
.src
;
495 fs
->m_u
.tcp_ip4_spec
.psrc
= cpu_to_be16(~0);
497 fs
->h_u
.tcp_ip4_spec
.pdst
= fkeys
->ports
.dst
;
498 fs
->m_u
.tcp_ip4_spec
.pdst
= cpu_to_be16(~0);
500 fs
->ring_cookie
= fltr
->rxq
;
509 static int bnxt_get_rxnfc(struct net_device
*dev
, struct ethtool_rxnfc
*cmd
,
512 struct bnxt
*bp
= netdev_priv(dev
);
516 case ETHTOOL_GRXRINGS
:
517 cmd
->data
= bp
->rx_nr_rings
;
520 case ETHTOOL_GRXCLSRLCNT
:
521 cmd
->rule_cnt
= bp
->ntp_fltr_count
;
522 cmd
->data
= BNXT_NTP_FLTR_MAX_FLTR
;
525 case ETHTOOL_GRXCLSRLALL
:
526 rc
= bnxt_grxclsrlall(bp
, cmd
, (u32
*)rule_locs
);
529 case ETHTOOL_GRXCLSRULE
:
530 rc
= bnxt_grxclsrule(bp
, cmd
);
542 static u32
bnxt_get_rxfh_indir_size(struct net_device
*dev
)
544 return HW_HASH_INDEX_SIZE
;
547 static u32
bnxt_get_rxfh_key_size(struct net_device
*dev
)
549 return HW_HASH_KEY_SIZE
;
552 static int bnxt_get_rxfh(struct net_device
*dev
, u32
*indir
, u8
*key
,
555 struct bnxt
*bp
= netdev_priv(dev
);
556 struct bnxt_vnic_info
*vnic
= &bp
->vnic_info
[0];
560 *hfunc
= ETH_RSS_HASH_TOP
;
563 for (i
= 0; i
< HW_HASH_INDEX_SIZE
; i
++)
564 indir
[i
] = le16_to_cpu(vnic
->rss_table
[i
]);
567 memcpy(key
, vnic
->rss_hash_key
, HW_HASH_KEY_SIZE
);
572 static void bnxt_get_drvinfo(struct net_device
*dev
,
573 struct ethtool_drvinfo
*info
)
575 struct bnxt
*bp
= netdev_priv(dev
);
579 pkglog
= kmalloc(BNX_PKG_LOG_MAX_LENGTH
, GFP_KERNEL
);
581 pkgver
= bnxt_get_pkgver(dev
, pkglog
, BNX_PKG_LOG_MAX_LENGTH
);
582 strlcpy(info
->driver
, DRV_MODULE_NAME
, sizeof(info
->driver
));
583 strlcpy(info
->version
, DRV_MODULE_VERSION
, sizeof(info
->version
));
584 if (pkgver
&& *pkgver
!= 0 && isdigit(*pkgver
))
585 snprintf(info
->fw_version
, sizeof(info
->fw_version
) - 1,
586 "%s pkg %s", bp
->fw_ver_str
, pkgver
);
588 strlcpy(info
->fw_version
, bp
->fw_ver_str
,
589 sizeof(info
->fw_version
));
590 strlcpy(info
->bus_info
, pci_name(bp
->pdev
), sizeof(info
->bus_info
));
591 info
->n_stats
= BNXT_NUM_STATS
* bp
->cp_nr_rings
;
592 info
->testinfo_len
= BNXT_NUM_TESTS(bp
);
593 /* TODO CHIMP_FW: eeprom dump details */
594 info
->eedump_len
= 0;
595 /* TODO CHIMP FW: reg dump details */
596 info
->regdump_len
= 0;
600 static u32
_bnxt_fw_to_ethtool_adv_spds(u16 fw_speeds
, u8 fw_pause
)
604 /* TODO: support 25GB, 40GB, 50GB with different cable type */
605 /* set the advertised speeds */
606 if (fw_speeds
& BNXT_LINK_SPEED_MSK_100MB
)
607 speed_mask
|= ADVERTISED_100baseT_Full
;
608 if (fw_speeds
& BNXT_LINK_SPEED_MSK_1GB
)
609 speed_mask
|= ADVERTISED_1000baseT_Full
;
610 if (fw_speeds
& BNXT_LINK_SPEED_MSK_2_5GB
)
611 speed_mask
|= ADVERTISED_2500baseX_Full
;
612 if (fw_speeds
& BNXT_LINK_SPEED_MSK_10GB
)
613 speed_mask
|= ADVERTISED_10000baseT_Full
;
614 if (fw_speeds
& BNXT_LINK_SPEED_MSK_40GB
)
615 speed_mask
|= ADVERTISED_40000baseCR4_Full
;
617 if ((fw_pause
& BNXT_LINK_PAUSE_BOTH
) == BNXT_LINK_PAUSE_BOTH
)
618 speed_mask
|= ADVERTISED_Pause
;
619 else if (fw_pause
& BNXT_LINK_PAUSE_TX
)
620 speed_mask
|= ADVERTISED_Asym_Pause
;
621 else if (fw_pause
& BNXT_LINK_PAUSE_RX
)
622 speed_mask
|= ADVERTISED_Pause
| ADVERTISED_Asym_Pause
;
627 static u32
bnxt_fw_to_ethtool_advertised_spds(struct bnxt_link_info
*link_info
)
629 u16 fw_speeds
= link_info
->auto_link_speeds
;
632 if (link_info
->autoneg
& BNXT_AUTONEG_FLOW_CTRL
)
633 fw_pause
= link_info
->auto_pause_setting
;
635 return _bnxt_fw_to_ethtool_adv_spds(fw_speeds
, fw_pause
);
638 static u32
bnxt_fw_to_ethtool_lp_adv(struct bnxt_link_info
*link_info
)
640 u16 fw_speeds
= link_info
->lp_auto_link_speeds
;
643 if (link_info
->autoneg
& BNXT_AUTONEG_FLOW_CTRL
)
644 fw_pause
= link_info
->lp_pause
;
646 return _bnxt_fw_to_ethtool_adv_spds(fw_speeds
, fw_pause
);
649 static u32
bnxt_fw_to_ethtool_support_spds(struct bnxt_link_info
*link_info
)
651 u16 fw_speeds
= link_info
->support_speeds
;
654 supported
= _bnxt_fw_to_ethtool_adv_spds(fw_speeds
, 0);
655 return supported
| SUPPORTED_Pause
| SUPPORTED_Asym_Pause
;
658 u32
bnxt_fw_to_ethtool_speed(u16 fw_link_speed
)
660 switch (fw_link_speed
) {
661 case BNXT_LINK_SPEED_100MB
:
663 case BNXT_LINK_SPEED_1GB
:
665 case BNXT_LINK_SPEED_2_5GB
:
667 case BNXT_LINK_SPEED_10GB
:
669 case BNXT_LINK_SPEED_20GB
:
671 case BNXT_LINK_SPEED_25GB
:
673 case BNXT_LINK_SPEED_40GB
:
675 case BNXT_LINK_SPEED_50GB
:
678 return SPEED_UNKNOWN
;
682 static int bnxt_get_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
684 struct bnxt
*bp
= netdev_priv(dev
);
685 struct bnxt_link_info
*link_info
= &bp
->link_info
;
688 cmd
->supported
= bnxt_fw_to_ethtool_support_spds(link_info
);
690 if (link_info
->auto_link_speeds
)
691 cmd
->supported
|= SUPPORTED_Autoneg
;
693 if (link_info
->autoneg
) {
695 bnxt_fw_to_ethtool_advertised_spds(link_info
);
696 cmd
->advertising
|= ADVERTISED_Autoneg
;
697 cmd
->autoneg
= AUTONEG_ENABLE
;
698 if (link_info
->phy_link_status
== BNXT_LINK_LINK
)
699 cmd
->lp_advertising
=
700 bnxt_fw_to_ethtool_lp_adv(link_info
);
702 cmd
->autoneg
= AUTONEG_DISABLE
;
703 cmd
->advertising
= 0;
706 cmd
->port
= PORT_NONE
;
707 if (link_info
->media_type
== PORT_PHY_QCFG_RESP_MEDIA_TYPE_TP
) {
709 cmd
->supported
|= SUPPORTED_TP
;
710 cmd
->advertising
|= ADVERTISED_TP
;
712 cmd
->supported
|= SUPPORTED_FIBRE
;
713 cmd
->advertising
|= ADVERTISED_FIBRE
;
715 if (link_info
->media_type
== PORT_PHY_QCFG_RESP_MEDIA_TYPE_DAC
)
717 else if (link_info
->media_type
==
718 PORT_PHY_QCFG_RESP_MEDIA_TYPE_FIBRE
)
719 cmd
->port
= PORT_FIBRE
;
722 if (link_info
->phy_link_status
== BNXT_LINK_LINK
) {
723 if (link_info
->duplex
& BNXT_LINK_DUPLEX_FULL
)
724 cmd
->duplex
= DUPLEX_FULL
;
726 cmd
->duplex
= DUPLEX_UNKNOWN
;
728 ethtool_speed
= bnxt_fw_to_ethtool_speed(link_info
->link_speed
);
729 ethtool_cmd_speed_set(cmd
, ethtool_speed
);
730 if (link_info
->transceiver
==
731 PORT_PHY_QCFG_RESP_XCVR_PKG_TYPE_XCVR_INTERNAL
)
732 cmd
->transceiver
= XCVR_INTERNAL
;
734 cmd
->transceiver
= XCVR_EXTERNAL
;
735 cmd
->phy_address
= link_info
->phy_addr
;
740 static u32
bnxt_get_fw_speed(struct net_device
*dev
, u16 ethtool_speed
)
742 switch (ethtool_speed
) {
744 return PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_100MB
;
746 return PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_1GB
;
748 return PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_2_5GB
;
750 return PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_10GB
;
752 return PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_20GB
;
754 return PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_25GB
;
756 return PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_40GB
;
758 return PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_50GB
;
760 netdev_err(dev
, "unsupported speed!\n");
766 static u16
bnxt_get_fw_auto_link_speeds(u32 advertising
)
768 u16 fw_speed_mask
= 0;
770 /* only support autoneg at speed 100, 1000, and 10000 */
771 if (advertising
& (ADVERTISED_100baseT_Full
|
772 ADVERTISED_100baseT_Half
)) {
773 fw_speed_mask
|= BNXT_LINK_SPEED_MSK_100MB
;
775 if (advertising
& (ADVERTISED_1000baseT_Full
|
776 ADVERTISED_1000baseT_Half
)) {
777 fw_speed_mask
|= BNXT_LINK_SPEED_MSK_1GB
;
779 if (advertising
& ADVERTISED_10000baseT_Full
)
780 fw_speed_mask
|= BNXT_LINK_SPEED_MSK_10GB
;
782 if (advertising
& ADVERTISED_40000baseCR4_Full
)
783 fw_speed_mask
|= BNXT_LINK_SPEED_MSK_40GB
;
785 return fw_speed_mask
;
788 static int bnxt_set_settings(struct net_device
*dev
, struct ethtool_cmd
*cmd
)
791 struct bnxt
*bp
= netdev_priv(dev
);
792 struct bnxt_link_info
*link_info
= &bp
->link_info
;
793 u32 speed
, fw_advertising
= 0;
794 bool set_pause
= false;
799 if (cmd
->autoneg
== AUTONEG_ENABLE
) {
800 u32 supported_spds
= bnxt_fw_to_ethtool_support_spds(link_info
);
802 if (cmd
->advertising
& ~(supported_spds
| ADVERTISED_Autoneg
|
803 ADVERTISED_TP
| ADVERTISED_FIBRE
)) {
804 netdev_err(dev
, "Unsupported advertising mask (adv: 0x%x)\n",
807 goto set_setting_exit
;
809 fw_advertising
= bnxt_get_fw_auto_link_speeds(cmd
->advertising
);
810 if (fw_advertising
& ~link_info
->support_speeds
) {
811 netdev_err(dev
, "Advertising parameters are not supported! (adv: 0x%x)\n",
814 goto set_setting_exit
;
816 link_info
->autoneg
|= BNXT_AUTONEG_SPEED
;
818 link_info
->advertising
= link_info
->support_speeds
;
820 link_info
->advertising
= fw_advertising
;
821 /* any change to autoneg will cause link change, therefore the
822 * driver should put back the original pause setting in autoneg
826 /* TODO: currently don't support half duplex */
827 if (cmd
->duplex
== DUPLEX_HALF
) {
828 netdev_err(dev
, "HALF DUPLEX is not supported!\n");
830 goto set_setting_exit
;
832 /* If received a request for an unknown duplex, assume full*/
833 if (cmd
->duplex
== DUPLEX_UNKNOWN
)
834 cmd
->duplex
= DUPLEX_FULL
;
835 speed
= ethtool_cmd_speed(cmd
);
836 link_info
->req_link_speed
= bnxt_get_fw_speed(dev
, speed
);
837 link_info
->req_duplex
= BNXT_LINK_DUPLEX_FULL
;
838 link_info
->autoneg
= 0;
839 link_info
->advertising
= 0;
842 if (netif_running(dev
))
843 rc
= bnxt_hwrm_set_link_setting(bp
, set_pause
);
849 static void bnxt_get_pauseparam(struct net_device
*dev
,
850 struct ethtool_pauseparam
*epause
)
852 struct bnxt
*bp
= netdev_priv(dev
);
853 struct bnxt_link_info
*link_info
= &bp
->link_info
;
857 epause
->autoneg
= !!(link_info
->autoneg
& BNXT_AUTONEG_FLOW_CTRL
);
858 epause
->rx_pause
= !!(link_info
->req_flow_ctrl
& BNXT_LINK_PAUSE_RX
);
859 epause
->tx_pause
= !!(link_info
->req_flow_ctrl
& BNXT_LINK_PAUSE_TX
);
862 static int bnxt_set_pauseparam(struct net_device
*dev
,
863 struct ethtool_pauseparam
*epause
)
866 struct bnxt
*bp
= netdev_priv(dev
);
867 struct bnxt_link_info
*link_info
= &bp
->link_info
;
872 if (epause
->autoneg
) {
873 if (!(link_info
->autoneg
& BNXT_AUTONEG_SPEED
))
876 link_info
->autoneg
|= BNXT_AUTONEG_FLOW_CTRL
;
877 if (bp
->hwrm_spec_code
>= 0x10201)
878 link_info
->req_flow_ctrl
=
879 PORT_PHY_CFG_REQ_AUTO_PAUSE_AUTONEG_PAUSE
;
881 /* when transition from auto pause to force pause,
882 * force a link change
884 if (link_info
->autoneg
& BNXT_AUTONEG_FLOW_CTRL
)
885 link_info
->force_link_chng
= true;
886 link_info
->autoneg
&= ~BNXT_AUTONEG_FLOW_CTRL
;
887 link_info
->req_flow_ctrl
= 0;
889 if (epause
->rx_pause
)
890 link_info
->req_flow_ctrl
|= BNXT_LINK_PAUSE_RX
;
892 if (epause
->tx_pause
)
893 link_info
->req_flow_ctrl
|= BNXT_LINK_PAUSE_TX
;
895 if (netif_running(dev
))
896 rc
= bnxt_hwrm_set_pause(bp
);
900 static u32
bnxt_get_link(struct net_device
*dev
)
902 struct bnxt
*bp
= netdev_priv(dev
);
904 /* TODO: handle MF, VF, driver close case */
905 return bp
->link_info
.link_up
;
908 static int bnxt_flash_nvram(struct net_device
*dev
,
916 struct bnxt
*bp
= netdev_priv(dev
);
918 struct hwrm_nvm_write_input req
= {0};
919 dma_addr_t dma_handle
;
922 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_NVM_WRITE
, -1, -1);
924 req
.dir_type
= cpu_to_le16(dir_type
);
925 req
.dir_ordinal
= cpu_to_le16(dir_ordinal
);
926 req
.dir_ext
= cpu_to_le16(dir_ext
);
927 req
.dir_attr
= cpu_to_le16(dir_attr
);
928 req
.dir_data_length
= cpu_to_le32(data_len
);
930 kmem
= dma_alloc_coherent(&bp
->pdev
->dev
, data_len
, &dma_handle
,
933 netdev_err(dev
, "dma_alloc_coherent failure, length = %u\n",
937 memcpy(kmem
, data
, data_len
);
938 req
.host_src_addr
= cpu_to_le64(dma_handle
);
940 rc
= hwrm_send_message(bp
, &req
, sizeof(req
), FLASH_NVRAM_TIMEOUT
);
941 dma_free_coherent(&bp
->pdev
->dev
, data_len
, kmem
, dma_handle
);
946 static int bnxt_firmware_reset(struct net_device
*dev
,
949 struct bnxt
*bp
= netdev_priv(dev
);
950 struct hwrm_fw_reset_input req
= {0};
952 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_FW_RESET
, -1, -1);
954 /* TODO: Support ASAP ChiMP self-reset (e.g. upon PF driver unload) */
955 /* TODO: Address self-reset of APE/KONG/BONO/TANG or ungraceful reset */
956 /* (e.g. when firmware isn't already running) */
958 case BNX_DIR_TYPE_CHIMP_PATCH
:
959 case BNX_DIR_TYPE_BOOTCODE
:
960 case BNX_DIR_TYPE_BOOTCODE_2
:
961 req
.embedded_proc_type
= FW_RESET_REQ_EMBEDDED_PROC_TYPE_BOOT
;
962 /* Self-reset ChiMP upon next PCIe reset: */
963 req
.selfrst_status
= FW_RESET_REQ_SELFRST_STATUS_SELFRSTPCIERST
;
965 case BNX_DIR_TYPE_APE_FW
:
966 case BNX_DIR_TYPE_APE_PATCH
:
967 req
.embedded_proc_type
= FW_RESET_REQ_EMBEDDED_PROC_TYPE_MGMT
;
969 case BNX_DIR_TYPE_KONG_FW
:
970 case BNX_DIR_TYPE_KONG_PATCH
:
971 req
.embedded_proc_type
=
972 FW_RESET_REQ_EMBEDDED_PROC_TYPE_NETCTRL
;
974 case BNX_DIR_TYPE_BONO_FW
:
975 case BNX_DIR_TYPE_BONO_PATCH
:
976 req
.embedded_proc_type
= FW_RESET_REQ_EMBEDDED_PROC_TYPE_ROCE
;
982 return hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
985 static int bnxt_flash_firmware(struct net_device
*dev
,
994 struct bnxt_fw_header
*header
= (struct bnxt_fw_header
*)fw_data
;
997 case BNX_DIR_TYPE_BOOTCODE
:
998 case BNX_DIR_TYPE_BOOTCODE_2
:
999 code_type
= CODE_BOOT
;
1001 case BNX_DIR_TYPE_APE_FW
:
1002 code_type
= CODE_MCTP_PASSTHRU
;
1005 netdev_err(dev
, "Unsupported directory entry type: %u\n",
1009 if (fw_size
< sizeof(struct bnxt_fw_header
)) {
1010 netdev_err(dev
, "Invalid firmware file size: %u\n",
1011 (unsigned int)fw_size
);
1014 if (header
->signature
!= cpu_to_le32(BNXT_FIRMWARE_BIN_SIGNATURE
)) {
1015 netdev_err(dev
, "Invalid firmware signature: %08X\n",
1016 le32_to_cpu(header
->signature
));
1019 if (header
->code_type
!= code_type
) {
1020 netdev_err(dev
, "Expected firmware type: %d, read: %d\n",
1021 code_type
, header
->code_type
);
1024 if (header
->device
!= DEVICE_CUMULUS_FAMILY
) {
1025 netdev_err(dev
, "Expected firmware device family %d, read: %d\n",
1026 DEVICE_CUMULUS_FAMILY
, header
->device
);
1029 /* Confirm the CRC32 checksum of the file: */
1030 stored_crc
= le32_to_cpu(*(__le32
*)(fw_data
+ fw_size
-
1031 sizeof(stored_crc
)));
1032 calculated_crc
= ~crc32(~0, fw_data
, fw_size
- sizeof(stored_crc
));
1033 if (calculated_crc
!= stored_crc
) {
1034 netdev_err(dev
, "Firmware file CRC32 checksum (%08lX) does not match calculated checksum (%08lX)\n",
1035 (unsigned long)stored_crc
,
1036 (unsigned long)calculated_crc
);
1039 /* TODO: Validate digital signature (RSA-encrypted SHA-256 hash) here */
1040 rc
= bnxt_flash_nvram(dev
, dir_type
, BNX_DIR_ORDINAL_FIRST
,
1041 0, 0, fw_data
, fw_size
);
1042 if (rc
== 0) /* Firmware update successful */
1043 rc
= bnxt_firmware_reset(dev
, dir_type
);
1048 static bool bnxt_dir_type_is_ape_bin_format(u16 dir_type
)
1051 case BNX_DIR_TYPE_CHIMP_PATCH
:
1052 case BNX_DIR_TYPE_BOOTCODE
:
1053 case BNX_DIR_TYPE_BOOTCODE_2
:
1054 case BNX_DIR_TYPE_APE_FW
:
1055 case BNX_DIR_TYPE_APE_PATCH
:
1056 case BNX_DIR_TYPE_KONG_FW
:
1057 case BNX_DIR_TYPE_KONG_PATCH
:
1064 static bool bnxt_dir_type_is_unprotected_exec_format(u16 dir_type
)
1067 case BNX_DIR_TYPE_AVS
:
1068 case BNX_DIR_TYPE_EXP_ROM_MBA
:
1069 case BNX_DIR_TYPE_PCIE
:
1070 case BNX_DIR_TYPE_TSCF_UCODE
:
1071 case BNX_DIR_TYPE_EXT_PHY
:
1072 case BNX_DIR_TYPE_CCM
:
1073 case BNX_DIR_TYPE_ISCSI_BOOT
:
1074 case BNX_DIR_TYPE_ISCSI_BOOT_IPV6
:
1075 case BNX_DIR_TYPE_ISCSI_BOOT_IPV4N6
:
1082 static bool bnxt_dir_type_is_executable(u16 dir_type
)
1084 return bnxt_dir_type_is_ape_bin_format(dir_type
) ||
1085 bnxt_dir_type_is_unprotected_exec_format(dir_type
);
1088 static int bnxt_flash_firmware_from_file(struct net_device
*dev
,
1090 const char *filename
)
1092 const struct firmware
*fw
;
1095 if (bnxt_dir_type_is_executable(dir_type
) == false)
1098 rc
= request_firmware(&fw
, filename
, &dev
->dev
);
1100 netdev_err(dev
, "Error %d requesting firmware file: %s\n",
1104 if (bnxt_dir_type_is_ape_bin_format(dir_type
) == true)
1105 rc
= bnxt_flash_firmware(dev
, dir_type
, fw
->data
, fw
->size
);
1107 rc
= bnxt_flash_nvram(dev
, dir_type
, BNX_DIR_ORDINAL_FIRST
,
1108 0, 0, fw
->data
, fw
->size
);
1109 release_firmware(fw
);
1113 static int bnxt_flash_package_from_file(struct net_device
*dev
,
1116 netdev_err(dev
, "packages are not yet supported\n");
1120 static int bnxt_flash_device(struct net_device
*dev
,
1121 struct ethtool_flash
*flash
)
1123 if (!BNXT_PF((struct bnxt
*)netdev_priv(dev
))) {
1124 netdev_err(dev
, "flashdev not supported from a virtual function\n");
1128 if (flash
->region
== ETHTOOL_FLASH_ALL_REGIONS
)
1129 return bnxt_flash_package_from_file(dev
, flash
->data
);
1131 return bnxt_flash_firmware_from_file(dev
, flash
->region
, flash
->data
);
1134 static int nvm_get_dir_info(struct net_device
*dev
, u32
*entries
, u32
*length
)
1136 struct bnxt
*bp
= netdev_priv(dev
);
1138 struct hwrm_nvm_get_dir_info_input req
= {0};
1139 struct hwrm_nvm_get_dir_info_output
*output
= bp
->hwrm_cmd_resp_addr
;
1141 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_NVM_GET_DIR_INFO
, -1, -1);
1143 mutex_lock(&bp
->hwrm_cmd_lock
);
1144 rc
= _hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
1146 *entries
= le32_to_cpu(output
->entries
);
1147 *length
= le32_to_cpu(output
->entry_length
);
1149 mutex_unlock(&bp
->hwrm_cmd_lock
);
1153 static int bnxt_get_eeprom_len(struct net_device
*dev
)
1155 /* The -1 return value allows the entire 32-bit range of offsets to be
1156 * passed via the ethtool command-line utility.
1161 static int bnxt_get_nvram_directory(struct net_device
*dev
, u32 len
, u8
*data
)
1163 struct bnxt
*bp
= netdev_priv(dev
);
1169 dma_addr_t dma_handle
;
1170 struct hwrm_nvm_get_dir_entries_input req
= {0};
1172 rc
= nvm_get_dir_info(dev
, &dir_entries
, &entry_length
);
1176 /* Insert 2 bytes of directory info (count and size of entries) */
1180 *data
++ = dir_entries
;
1181 *data
++ = entry_length
;
1183 memset(data
, 0xff, len
);
1185 buflen
= dir_entries
* entry_length
;
1186 buf
= dma_alloc_coherent(&bp
->pdev
->dev
, buflen
, &dma_handle
,
1189 netdev_err(dev
, "dma_alloc_coherent failure, length = %u\n",
1193 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_NVM_GET_DIR_ENTRIES
, -1, -1);
1194 req
.host_dest_addr
= cpu_to_le64(dma_handle
);
1195 rc
= hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
1197 memcpy(data
, buf
, len
> buflen
? buflen
: len
);
1198 dma_free_coherent(&bp
->pdev
->dev
, buflen
, buf
, dma_handle
);
1202 static int bnxt_get_nvram_item(struct net_device
*dev
, u32 index
, u32 offset
,
1203 u32 length
, u8
*data
)
1205 struct bnxt
*bp
= netdev_priv(dev
);
1208 dma_addr_t dma_handle
;
1209 struct hwrm_nvm_read_input req
= {0};
1211 buf
= dma_alloc_coherent(&bp
->pdev
->dev
, length
, &dma_handle
,
1214 netdev_err(dev
, "dma_alloc_coherent failure, length = %u\n",
1218 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_NVM_READ
, -1, -1);
1219 req
.host_dest_addr
= cpu_to_le64(dma_handle
);
1220 req
.dir_idx
= cpu_to_le16(index
);
1221 req
.offset
= cpu_to_le32(offset
);
1222 req
.len
= cpu_to_le32(length
);
1224 rc
= hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
1226 memcpy(data
, buf
, length
);
1227 dma_free_coherent(&bp
->pdev
->dev
, length
, buf
, dma_handle
);
1231 static int bnxt_find_nvram_item(struct net_device
*dev
, u16 type
, u16 ordinal
,
1232 u16 ext
, u16
*index
, u32
*item_length
,
1235 struct bnxt
*bp
= netdev_priv(dev
);
1237 struct hwrm_nvm_find_dir_entry_input req
= {0};
1238 struct hwrm_nvm_find_dir_entry_output
*output
= bp
->hwrm_cmd_resp_addr
;
1240 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_NVM_FIND_DIR_ENTRY
, -1, -1);
1243 req
.dir_type
= cpu_to_le16(type
);
1244 req
.dir_ordinal
= cpu_to_le16(ordinal
);
1245 req
.dir_ext
= cpu_to_le16(ext
);
1246 req
.opt_ordinal
= NVM_FIND_DIR_ENTRY_REQ_OPT_ORDINAL_EQ
;
1247 rc
= hwrm_send_message_silent(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
1250 *index
= le16_to_cpu(output
->dir_idx
);
1252 *item_length
= le32_to_cpu(output
->dir_item_length
);
1254 *data_length
= le32_to_cpu(output
->dir_data_length
);
1259 static char *bnxt_parse_pkglog(int desired_field
, u8
*data
, size_t datalen
)
1261 char *retval
= NULL
;
1268 /* null-terminate the log data (removing last '\n'): */
1269 data
[datalen
- 1] = 0;
1270 for (p
= data
; *p
!= 0; p
++) {
1273 while (*p
!= 0 && *p
!= '\n') {
1275 while (*p
!= 0 && *p
!= '\t' && *p
!= '\n')
1277 if (field
== desired_field
)
1292 static char *bnxt_get_pkgver(struct net_device
*dev
, char *buf
, size_t buflen
)
1297 if (bnxt_find_nvram_item(dev
, BNX_DIR_TYPE_PKG_LOG
,
1298 BNX_DIR_ORDINAL_FIRST
, BNX_DIR_EXT_NONE
,
1299 &index
, NULL
, &datalen
) != 0)
1302 memset(buf
, 0, buflen
);
1303 if (bnxt_get_nvram_item(dev
, index
, 0, datalen
, buf
) != 0)
1306 return bnxt_parse_pkglog(BNX_PKG_LOG_FIELD_IDX_PKG_VERSION
, buf
,
1310 static int bnxt_get_eeprom(struct net_device
*dev
,
1311 struct ethtool_eeprom
*eeprom
,
1317 if (eeprom
->offset
== 0) /* special offset value to get directory */
1318 return bnxt_get_nvram_directory(dev
, eeprom
->len
, data
);
1320 index
= eeprom
->offset
>> 24;
1321 offset
= eeprom
->offset
& 0xffffff;
1324 netdev_err(dev
, "unsupported index value: %d\n", index
);
1328 return bnxt_get_nvram_item(dev
, index
- 1, offset
, eeprom
->len
, data
);
1331 static int bnxt_erase_nvram_directory(struct net_device
*dev
, u8 index
)
1333 struct bnxt
*bp
= netdev_priv(dev
);
1334 struct hwrm_nvm_erase_dir_entry_input req
= {0};
1336 bnxt_hwrm_cmd_hdr_init(bp
, &req
, HWRM_NVM_ERASE_DIR_ENTRY
, -1, -1);
1337 req
.dir_idx
= cpu_to_le16(index
);
1338 return hwrm_send_message(bp
, &req
, sizeof(req
), HWRM_CMD_TIMEOUT
);
1341 static int bnxt_set_eeprom(struct net_device
*dev
,
1342 struct ethtool_eeprom
*eeprom
,
1345 struct bnxt
*bp
= netdev_priv(dev
);
1347 u16 type
, ext
, ordinal
, attr
;
1350 netdev_err(dev
, "NVM write not supported from a virtual function\n");
1354 type
= eeprom
->magic
>> 16;
1356 if (type
== 0xffff) { /* special value for directory operations */
1357 index
= eeprom
->magic
& 0xff;
1358 dir_op
= eeprom
->magic
>> 8;
1362 case 0x0e: /* erase */
1363 if (eeprom
->offset
!= ~eeprom
->magic
)
1365 return bnxt_erase_nvram_directory(dev
, index
- 1);
1371 /* Create or re-write an NVM item: */
1372 if (bnxt_dir_type_is_executable(type
) == true)
1374 ext
= eeprom
->magic
& 0xffff;
1375 ordinal
= eeprom
->offset
>> 16;
1376 attr
= eeprom
->offset
& 0xffff;
1378 return bnxt_flash_nvram(dev
, type
, ordinal
, ext
, attr
, data
,
1382 const struct ethtool_ops bnxt_ethtool_ops
= {
1383 .get_settings
= bnxt_get_settings
,
1384 .set_settings
= bnxt_set_settings
,
1385 .get_pauseparam
= bnxt_get_pauseparam
,
1386 .set_pauseparam
= bnxt_set_pauseparam
,
1387 .get_drvinfo
= bnxt_get_drvinfo
,
1388 .get_coalesce
= bnxt_get_coalesce
,
1389 .set_coalesce
= bnxt_set_coalesce
,
1390 .get_msglevel
= bnxt_get_msglevel
,
1391 .set_msglevel
= bnxt_set_msglevel
,
1392 .get_sset_count
= bnxt_get_sset_count
,
1393 .get_strings
= bnxt_get_strings
,
1394 .get_ethtool_stats
= bnxt_get_ethtool_stats
,
1395 .set_ringparam
= bnxt_set_ringparam
,
1396 .get_ringparam
= bnxt_get_ringparam
,
1397 .get_channels
= bnxt_get_channels
,
1398 .set_channels
= bnxt_set_channels
,
1399 #ifdef CONFIG_RFS_ACCEL
1400 .get_rxnfc
= bnxt_get_rxnfc
,
1402 .get_rxfh_indir_size
= bnxt_get_rxfh_indir_size
,
1403 .get_rxfh_key_size
= bnxt_get_rxfh_key_size
,
1404 .get_rxfh
= bnxt_get_rxfh
,
1405 .flash_device
= bnxt_flash_device
,
1406 .get_eeprom_len
= bnxt_get_eeprom_len
,
1407 .get_eeprom
= bnxt_get_eeprom
,
1408 .set_eeprom
= bnxt_set_eeprom
,
1409 .get_link
= bnxt_get_link
,