2 * Copyright (C) 2015 Cavium, Inc.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License
6 * as published by the Free Software Foundation.
9 #include <linux/module.h>
10 #include <linux/interrupt.h>
11 #include <linux/pci.h>
12 #include <linux/netdevice.h>
13 #include <linux/if_vlan.h>
14 #include <linux/etherdevice.h>
15 #include <linux/ethtool.h>
16 #include <linux/log2.h>
17 #include <linux/prefetch.h>
18 #include <linux/irq.h>
19 #include <linux/iommu.h>
23 #include "nicvf_queues.h"
24 #include "thunder_bgx.h"
26 #define DRV_NAME "thunder-nicvf"
27 #define DRV_VERSION "1.0"
29 /* Supported devices */
30 static const struct pci_device_id nicvf_id_table
[] = {
31 { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM
,
32 PCI_DEVICE_ID_THUNDER_NIC_VF
,
34 PCI_SUBSYS_DEVID_88XX_NIC_VF
) },
35 { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM
,
36 PCI_DEVICE_ID_THUNDER_PASS1_NIC_VF
,
38 PCI_SUBSYS_DEVID_88XX_PASS1_NIC_VF
) },
39 { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM
,
40 PCI_DEVICE_ID_THUNDER_NIC_VF
,
42 PCI_SUBSYS_DEVID_81XX_NIC_VF
) },
43 { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM
,
44 PCI_DEVICE_ID_THUNDER_NIC_VF
,
46 PCI_SUBSYS_DEVID_83XX_NIC_VF
) },
47 { 0, } /* end of table */
50 MODULE_AUTHOR("Sunil Goutham");
51 MODULE_DESCRIPTION("Cavium Thunder NIC Virtual Function Driver");
52 MODULE_LICENSE("GPL v2");
53 MODULE_VERSION(DRV_VERSION
);
54 MODULE_DEVICE_TABLE(pci
, nicvf_id_table
);
56 static int debug
= 0x00;
57 module_param(debug
, int, 0644);
58 MODULE_PARM_DESC(debug
, "Debug message level bitmap");
60 static int cpi_alg
= CPI_ALG_NONE
;
61 module_param(cpi_alg
, int, S_IRUGO
);
62 MODULE_PARM_DESC(cpi_alg
,
63 "PFC algorithm (0=none, 1=VLAN, 2=VLAN16, 3=IP Diffserv)");
65 static inline u8
nicvf_netdev_qidx(struct nicvf
*nic
, u8 qidx
)
68 return qidx
+ ((nic
->sqs_id
+ 1) * MAX_CMP_QUEUES_PER_QS
);
73 /* The Cavium ThunderX network controller can *only* be found in SoCs
74 * containing the ThunderX ARM64 CPU implementation. All accesses to the device
75 * registers on this platform are implicitly strongly ordered with respect
76 * to memory accesses. So writeq_relaxed() and readq_relaxed() are safe to use
77 * with no memory barriers in this driver. The readq()/writeq() functions add
78 * explicit ordering operation which in this case are redundant, and only
82 /* Register read/write APIs */
83 void nicvf_reg_write(struct nicvf
*nic
, u64 offset
, u64 val
)
85 writeq_relaxed(val
, nic
->reg_base
+ offset
);
88 u64
nicvf_reg_read(struct nicvf
*nic
, u64 offset
)
90 return readq_relaxed(nic
->reg_base
+ offset
);
93 void nicvf_queue_reg_write(struct nicvf
*nic
, u64 offset
,
96 void __iomem
*addr
= nic
->reg_base
+ offset
;
98 writeq_relaxed(val
, addr
+ (qidx
<< NIC_Q_NUM_SHIFT
));
101 u64
nicvf_queue_reg_read(struct nicvf
*nic
, u64 offset
, u64 qidx
)
103 void __iomem
*addr
= nic
->reg_base
+ offset
;
105 return readq_relaxed(addr
+ (qidx
<< NIC_Q_NUM_SHIFT
));
108 /* VF -> PF mailbox communication */
109 static void nicvf_write_to_mbx(struct nicvf
*nic
, union nic_mbx
*mbx
)
111 u64
*msg
= (u64
*)mbx
;
113 nicvf_reg_write(nic
, NIC_VF_PF_MAILBOX_0_1
+ 0, msg
[0]);
114 nicvf_reg_write(nic
, NIC_VF_PF_MAILBOX_0_1
+ 8, msg
[1]);
117 int nicvf_send_msg_to_pf(struct nicvf
*nic
, union nic_mbx
*mbx
)
119 int timeout
= NIC_MBOX_MSG_TIMEOUT
;
122 nic
->pf_acked
= false;
123 nic
->pf_nacked
= false;
125 nicvf_write_to_mbx(nic
, mbx
);
127 /* Wait for previous message to be acked, timeout 2sec */
128 while (!nic
->pf_acked
) {
129 if (nic
->pf_nacked
) {
130 netdev_err(nic
->netdev
,
131 "PF NACK to mbox msg 0x%02x from VF%d\n",
132 (mbx
->msg
.msg
& 0xFF), nic
->vf_id
);
140 netdev_err(nic
->netdev
,
141 "PF didn't ACK to mbox msg 0x%02x from VF%d\n",
142 (mbx
->msg
.msg
& 0xFF), nic
->vf_id
);
149 /* Checks if VF is able to comminicate with PF
150 * and also gets the VNIC number this VF is associated to.
152 static int nicvf_check_pf_ready(struct nicvf
*nic
)
154 union nic_mbx mbx
= {};
156 mbx
.msg
.msg
= NIC_MBOX_MSG_READY
;
157 if (nicvf_send_msg_to_pf(nic
, &mbx
)) {
158 netdev_err(nic
->netdev
,
159 "PF didn't respond to READY msg\n");
166 static void nicvf_read_bgx_stats(struct nicvf
*nic
, struct bgx_stats_msg
*bgx
)
169 nic
->bgx_stats
.rx_stats
[bgx
->idx
] = bgx
->stats
;
171 nic
->bgx_stats
.tx_stats
[bgx
->idx
] = bgx
->stats
;
174 static void nicvf_handle_mbx_intr(struct nicvf
*nic
)
176 union nic_mbx mbx
= {};
181 mbx_addr
= NIC_VF_PF_MAILBOX_0_1
;
182 mbx_data
= (u64
*)&mbx
;
184 for (i
= 0; i
< NIC_PF_VF_MAILBOX_SIZE
; i
++) {
185 *mbx_data
= nicvf_reg_read(nic
, mbx_addr
);
187 mbx_addr
+= sizeof(u64
);
190 netdev_dbg(nic
->netdev
, "Mbox message: msg: 0x%x\n", mbx
.msg
.msg
);
191 switch (mbx
.msg
.msg
) {
192 case NIC_MBOX_MSG_READY
:
193 nic
->pf_acked
= true;
194 nic
->vf_id
= mbx
.nic_cfg
.vf_id
& 0x7F;
195 nic
->tns_mode
= mbx
.nic_cfg
.tns_mode
& 0x7F;
196 nic
->node
= mbx
.nic_cfg
.node_id
;
197 if (!nic
->set_mac_pending
)
198 ether_addr_copy(nic
->netdev
->dev_addr
,
199 mbx
.nic_cfg
.mac_addr
);
200 nic
->sqs_mode
= mbx
.nic_cfg
.sqs_mode
;
201 nic
->loopback_supported
= mbx
.nic_cfg
.loopback_supported
;
202 nic
->link_up
= false;
206 case NIC_MBOX_MSG_ACK
:
207 nic
->pf_acked
= true;
209 case NIC_MBOX_MSG_NACK
:
210 nic
->pf_nacked
= true;
212 case NIC_MBOX_MSG_RSS_SIZE
:
213 nic
->rss_info
.rss_size
= mbx
.rss_size
.ind_tbl_size
;
214 nic
->pf_acked
= true;
216 case NIC_MBOX_MSG_BGX_STATS
:
217 nicvf_read_bgx_stats(nic
, &mbx
.bgx_stats
);
218 nic
->pf_acked
= true;
220 case NIC_MBOX_MSG_BGX_LINK_CHANGE
:
221 nic
->pf_acked
= true;
222 nic
->link_up
= mbx
.link_status
.link_up
;
223 nic
->duplex
= mbx
.link_status
.duplex
;
224 nic
->speed
= mbx
.link_status
.speed
;
225 nic
->mac_type
= mbx
.link_status
.mac_type
;
227 netdev_info(nic
->netdev
, "%s: Link is Up %d Mbps %s\n",
228 nic
->netdev
->name
, nic
->speed
,
229 nic
->duplex
== DUPLEX_FULL
?
230 "Full duplex" : "Half duplex");
231 netif_carrier_on(nic
->netdev
);
232 netif_tx_start_all_queues(nic
->netdev
);
234 netdev_info(nic
->netdev
, "%s: Link is Down\n",
236 netif_carrier_off(nic
->netdev
);
237 netif_tx_stop_all_queues(nic
->netdev
);
240 case NIC_MBOX_MSG_ALLOC_SQS
:
241 nic
->sqs_count
= mbx
.sqs_alloc
.qs_count
;
242 nic
->pf_acked
= true;
244 case NIC_MBOX_MSG_SNICVF_PTR
:
245 /* Primary VF: make note of secondary VF's pointer
246 * to be used while packet transmission.
248 nic
->snicvf
[mbx
.nicvf
.sqs_id
] =
249 (struct nicvf
*)mbx
.nicvf
.nicvf
;
250 nic
->pf_acked
= true;
252 case NIC_MBOX_MSG_PNICVF_PTR
:
253 /* Secondary VF/Qset: make note of primary VF's pointer
254 * to be used while packet reception, to handover packet
255 * to primary VF's netdev.
257 nic
->pnicvf
= (struct nicvf
*)mbx
.nicvf
.nicvf
;
258 nic
->pf_acked
= true;
260 case NIC_MBOX_MSG_PFC
:
261 nic
->pfc
.autoneg
= mbx
.pfc
.autoneg
;
262 nic
->pfc
.fc_rx
= mbx
.pfc
.fc_rx
;
263 nic
->pfc
.fc_tx
= mbx
.pfc
.fc_tx
;
264 nic
->pf_acked
= true;
267 netdev_err(nic
->netdev
,
268 "Invalid message from PF, msg 0x%x\n", mbx
.msg
.msg
);
271 nicvf_clear_intr(nic
, NICVF_INTR_MBOX
, 0);
274 static int nicvf_hw_set_mac_addr(struct nicvf
*nic
, struct net_device
*netdev
)
276 union nic_mbx mbx
= {};
278 mbx
.mac
.msg
= NIC_MBOX_MSG_SET_MAC
;
279 mbx
.mac
.vf_id
= nic
->vf_id
;
280 ether_addr_copy(mbx
.mac
.mac_addr
, netdev
->dev_addr
);
282 return nicvf_send_msg_to_pf(nic
, &mbx
);
285 static void nicvf_config_cpi(struct nicvf
*nic
)
287 union nic_mbx mbx
= {};
289 mbx
.cpi_cfg
.msg
= NIC_MBOX_MSG_CPI_CFG
;
290 mbx
.cpi_cfg
.vf_id
= nic
->vf_id
;
291 mbx
.cpi_cfg
.cpi_alg
= nic
->cpi_alg
;
292 mbx
.cpi_cfg
.rq_cnt
= nic
->qs
->rq_cnt
;
294 nicvf_send_msg_to_pf(nic
, &mbx
);
297 static void nicvf_get_rss_size(struct nicvf
*nic
)
299 union nic_mbx mbx
= {};
301 mbx
.rss_size
.msg
= NIC_MBOX_MSG_RSS_SIZE
;
302 mbx
.rss_size
.vf_id
= nic
->vf_id
;
303 nicvf_send_msg_to_pf(nic
, &mbx
);
306 void nicvf_config_rss(struct nicvf
*nic
)
308 union nic_mbx mbx
= {};
309 struct nicvf_rss_info
*rss
= &nic
->rss_info
;
310 int ind_tbl_len
= rss
->rss_size
;
313 mbx
.rss_cfg
.vf_id
= nic
->vf_id
;
314 mbx
.rss_cfg
.hash_bits
= rss
->hash_bits
;
315 while (ind_tbl_len
) {
316 mbx
.rss_cfg
.tbl_offset
= nextq
;
317 mbx
.rss_cfg
.tbl_len
= min(ind_tbl_len
,
318 RSS_IND_TBL_LEN_PER_MBX_MSG
);
319 mbx
.rss_cfg
.msg
= mbx
.rss_cfg
.tbl_offset
?
320 NIC_MBOX_MSG_RSS_CFG_CONT
: NIC_MBOX_MSG_RSS_CFG
;
322 for (i
= 0; i
< mbx
.rss_cfg
.tbl_len
; i
++)
323 mbx
.rss_cfg
.ind_tbl
[i
] = rss
->ind_tbl
[nextq
++];
325 nicvf_send_msg_to_pf(nic
, &mbx
);
327 ind_tbl_len
-= mbx
.rss_cfg
.tbl_len
;
331 void nicvf_set_rss_key(struct nicvf
*nic
)
333 struct nicvf_rss_info
*rss
= &nic
->rss_info
;
334 u64 key_addr
= NIC_VNIC_RSS_KEY_0_4
;
337 for (idx
= 0; idx
< RSS_HASH_KEY_SIZE
; idx
++) {
338 nicvf_reg_write(nic
, key_addr
, rss
->key
[idx
]);
339 key_addr
+= sizeof(u64
);
343 static int nicvf_rss_init(struct nicvf
*nic
)
345 struct nicvf_rss_info
*rss
= &nic
->rss_info
;
348 nicvf_get_rss_size(nic
);
350 if (cpi_alg
!= CPI_ALG_NONE
) {
358 netdev_rss_key_fill(rss
->key
, RSS_HASH_KEY_SIZE
* sizeof(u64
));
359 nicvf_set_rss_key(nic
);
361 rss
->cfg
= RSS_IP_HASH_ENA
| RSS_TCP_HASH_ENA
| RSS_UDP_HASH_ENA
;
362 nicvf_reg_write(nic
, NIC_VNIC_RSS_CFG
, rss
->cfg
);
364 rss
->hash_bits
= ilog2(rounddown_pow_of_two(rss
->rss_size
));
366 for (idx
= 0; idx
< rss
->rss_size
; idx
++)
367 rss
->ind_tbl
[idx
] = ethtool_rxfh_indir_default(idx
,
369 nicvf_config_rss(nic
);
373 /* Request PF to allocate additional Qsets */
374 static void nicvf_request_sqs(struct nicvf
*nic
)
376 union nic_mbx mbx
= {};
378 int sqs_count
= nic
->sqs_count
;
379 int rx_queues
= 0, tx_queues
= 0;
381 /* Only primary VF should request */
382 if (nic
->sqs_mode
|| !nic
->sqs_count
)
385 mbx
.sqs_alloc
.msg
= NIC_MBOX_MSG_ALLOC_SQS
;
386 mbx
.sqs_alloc
.vf_id
= nic
->vf_id
;
387 mbx
.sqs_alloc
.qs_count
= nic
->sqs_count
;
388 if (nicvf_send_msg_to_pf(nic
, &mbx
)) {
389 /* No response from PF */
394 /* Return if no Secondary Qsets available */
398 if (nic
->rx_queues
> MAX_RCV_QUEUES_PER_QS
)
399 rx_queues
= nic
->rx_queues
- MAX_RCV_QUEUES_PER_QS
;
400 if (nic
->tx_queues
> MAX_SND_QUEUES_PER_QS
)
401 tx_queues
= nic
->tx_queues
- MAX_SND_QUEUES_PER_QS
;
403 /* Set no of Rx/Tx queues in each of the SQsets */
404 for (sqs
= 0; sqs
< nic
->sqs_count
; sqs
++) {
405 mbx
.nicvf
.msg
= NIC_MBOX_MSG_SNICVF_PTR
;
406 mbx
.nicvf
.vf_id
= nic
->vf_id
;
407 mbx
.nicvf
.sqs_id
= sqs
;
408 nicvf_send_msg_to_pf(nic
, &mbx
);
410 nic
->snicvf
[sqs
]->sqs_id
= sqs
;
411 if (rx_queues
> MAX_RCV_QUEUES_PER_QS
) {
412 nic
->snicvf
[sqs
]->qs
->rq_cnt
= MAX_RCV_QUEUES_PER_QS
;
413 rx_queues
-= MAX_RCV_QUEUES_PER_QS
;
415 nic
->snicvf
[sqs
]->qs
->rq_cnt
= rx_queues
;
419 if (tx_queues
> MAX_SND_QUEUES_PER_QS
) {
420 nic
->snicvf
[sqs
]->qs
->sq_cnt
= MAX_SND_QUEUES_PER_QS
;
421 tx_queues
-= MAX_SND_QUEUES_PER_QS
;
423 nic
->snicvf
[sqs
]->qs
->sq_cnt
= tx_queues
;
427 nic
->snicvf
[sqs
]->qs
->cq_cnt
=
428 max(nic
->snicvf
[sqs
]->qs
->rq_cnt
, nic
->snicvf
[sqs
]->qs
->sq_cnt
);
430 /* Initialize secondary Qset's queues and its interrupts */
431 nicvf_open(nic
->snicvf
[sqs
]->netdev
);
434 /* Update stack with actual Rx/Tx queue count allocated */
435 if (sqs_count
!= nic
->sqs_count
)
436 nicvf_set_real_num_queues(nic
->netdev
,
437 nic
->tx_queues
, nic
->rx_queues
);
440 /* Send this Qset's nicvf pointer to PF.
441 * PF inturn sends primary VF's nicvf struct to secondary Qsets/VFs
442 * so that packets received by these Qsets can use primary VF's netdev
444 static void nicvf_send_vf_struct(struct nicvf
*nic
)
446 union nic_mbx mbx
= {};
448 mbx
.nicvf
.msg
= NIC_MBOX_MSG_NICVF_PTR
;
449 mbx
.nicvf
.sqs_mode
= nic
->sqs_mode
;
450 mbx
.nicvf
.nicvf
= (u64
)nic
;
451 nicvf_send_msg_to_pf(nic
, &mbx
);
454 static void nicvf_get_primary_vf_struct(struct nicvf
*nic
)
456 union nic_mbx mbx
= {};
458 mbx
.nicvf
.msg
= NIC_MBOX_MSG_PNICVF_PTR
;
459 nicvf_send_msg_to_pf(nic
, &mbx
);
462 int nicvf_set_real_num_queues(struct net_device
*netdev
,
463 int tx_queues
, int rx_queues
)
467 err
= netif_set_real_num_tx_queues(netdev
, tx_queues
);
470 "Failed to set no of Tx queues: %d\n", tx_queues
);
474 err
= netif_set_real_num_rx_queues(netdev
, rx_queues
);
477 "Failed to set no of Rx queues: %d\n", rx_queues
);
481 static int nicvf_init_resources(struct nicvf
*nic
)
486 nicvf_qset_config(nic
, true);
488 /* Initialize queues and HW for data transfer */
489 err
= nicvf_config_data_transfer(nic
, true);
491 netdev_err(nic
->netdev
,
492 "Failed to alloc/config VF's QSet resources\n");
499 static void nicvf_snd_pkt_handler(struct net_device
*netdev
,
500 struct cqe_send_t
*cqe_tx
,
501 int cqe_type
, int budget
,
502 unsigned int *tx_pkts
, unsigned int *tx_bytes
)
504 struct sk_buff
*skb
= NULL
;
505 struct nicvf
*nic
= netdev_priv(netdev
);
506 struct snd_queue
*sq
;
507 struct sq_hdr_subdesc
*hdr
;
508 struct sq_hdr_subdesc
*tso_sqe
;
510 sq
= &nic
->qs
->sq
[cqe_tx
->sq_idx
];
512 hdr
= (struct sq_hdr_subdesc
*)GET_SQ_DESC(sq
, cqe_tx
->sqe_ptr
);
513 if (hdr
->subdesc_type
!= SQ_DESC_TYPE_HEADER
)
516 netdev_dbg(nic
->netdev
,
517 "%s Qset #%d SQ #%d SQ ptr #%d subdesc count %d\n",
518 __func__
, cqe_tx
->sq_qs
, cqe_tx
->sq_idx
,
519 cqe_tx
->sqe_ptr
, hdr
->subdesc_cnt
);
521 nicvf_check_cqe_tx_errs(nic
, cqe_tx
);
522 skb
= (struct sk_buff
*)sq
->skbuff
[cqe_tx
->sqe_ptr
];
524 /* Check for dummy descriptor used for HW TSO offload on 88xx */
525 if (hdr
->dont_send
) {
526 /* Get actual TSO descriptors and free them */
528 (struct sq_hdr_subdesc
*)GET_SQ_DESC(sq
, hdr
->rsvd2
);
529 nicvf_unmap_sndq_buffers(nic
, sq
, hdr
->rsvd2
,
530 tso_sqe
->subdesc_cnt
);
531 nicvf_put_sq_desc(sq
, tso_sqe
->subdesc_cnt
+ 1);
533 nicvf_unmap_sndq_buffers(nic
, sq
, cqe_tx
->sqe_ptr
,
536 nicvf_put_sq_desc(sq
, hdr
->subdesc_cnt
+ 1);
539 *tx_bytes
+= skb
->len
;
540 napi_consume_skb(skb
, budget
);
541 sq
->skbuff
[cqe_tx
->sqe_ptr
] = (u64
)NULL
;
543 /* In case of SW TSO on 88xx, only last segment will have
544 * a SKB attached, so just free SQEs here.
547 nicvf_put_sq_desc(sq
, hdr
->subdesc_cnt
+ 1);
551 static inline void nicvf_set_rxhash(struct net_device
*netdev
,
552 struct cqe_rx_t
*cqe_rx
,
558 if (!(netdev
->features
& NETIF_F_RXHASH
))
561 switch (cqe_rx
->rss_alg
) {
564 hash_type
= PKT_HASH_TYPE_L4
;
565 hash
= cqe_rx
->rss_tag
;
568 hash_type
= PKT_HASH_TYPE_L3
;
569 hash
= cqe_rx
->rss_tag
;
572 hash_type
= PKT_HASH_TYPE_NONE
;
576 skb_set_hash(skb
, hash
, hash_type
);
579 static void nicvf_rcv_pkt_handler(struct net_device
*netdev
,
580 struct napi_struct
*napi
,
581 struct cqe_rx_t
*cqe_rx
)
584 struct nicvf
*nic
= netdev_priv(netdev
);
585 struct nicvf
*snic
= nic
;
589 rq_idx
= nicvf_netdev_qidx(nic
, cqe_rx
->rq_idx
);
592 /* Use primary VF's 'nicvf' struct */
594 netdev
= nic
->netdev
;
597 /* Check for errors */
598 err
= nicvf_check_cqe_rx_errs(nic
, cqe_rx
);
599 if (err
&& !cqe_rx
->rb_cnt
)
602 skb
= nicvf_get_rcv_skb(snic
, cqe_rx
);
604 netdev_dbg(nic
->netdev
, "Packet not received\n");
608 if (netif_msg_pktdata(nic
)) {
609 netdev_info(nic
->netdev
, "%s: skb 0x%p, len=%d\n", netdev
->name
,
611 print_hex_dump(KERN_INFO
, "", DUMP_PREFIX_OFFSET
, 16, 1,
612 skb
->data
, skb
->len
, true);
615 /* If error packet, drop it here */
617 dev_kfree_skb_any(skb
);
621 nicvf_set_rxhash(netdev
, cqe_rx
, skb
);
623 skb_record_rx_queue(skb
, rq_idx
);
624 if (netdev
->hw_features
& NETIF_F_RXCSUM
) {
625 /* HW by default verifies TCP/UDP/SCTP checksums */
626 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
628 skb_checksum_none_assert(skb
);
631 skb
->protocol
= eth_type_trans(skb
, netdev
);
633 /* Check for stripped VLAN */
634 if (cqe_rx
->vlan_found
&& cqe_rx
->vlan_stripped
)
635 __vlan_hwaccel_put_tag(skb
, htons(ETH_P_8021Q
),
636 ntohs((__force __be16
)cqe_rx
->vlan_tci
));
638 if (napi
&& (netdev
->features
& NETIF_F_GRO
))
639 napi_gro_receive(napi
, skb
);
641 netif_receive_skb(skb
);
644 static int nicvf_cq_intr_handler(struct net_device
*netdev
, u8 cq_idx
,
645 struct napi_struct
*napi
, int budget
)
647 int processed_cqe
, work_done
= 0, tx_done
= 0;
648 int cqe_count
, cqe_head
;
649 struct nicvf
*nic
= netdev_priv(netdev
);
650 struct queue_set
*qs
= nic
->qs
;
651 struct cmp_queue
*cq
= &qs
->cq
[cq_idx
];
652 struct cqe_rx_t
*cq_desc
;
653 struct netdev_queue
*txq
;
654 struct snd_queue
*sq
;
655 unsigned int tx_pkts
= 0, tx_bytes
= 0;
657 spin_lock_bh(&cq
->lock
);
660 /* Get no of valid CQ entries to process */
661 cqe_count
= nicvf_queue_reg_read(nic
, NIC_QSET_CQ_0_7_STATUS
, cq_idx
);
662 cqe_count
&= CQ_CQE_COUNT
;
666 /* Get head of the valid CQ entries */
667 cqe_head
= nicvf_queue_reg_read(nic
, NIC_QSET_CQ_0_7_HEAD
, cq_idx
) >> 9;
670 netdev_dbg(nic
->netdev
, "%s CQ%d cqe_count %d cqe_head %d\n",
671 __func__
, cq_idx
, cqe_count
, cqe_head
);
672 while (processed_cqe
< cqe_count
) {
673 /* Get the CQ descriptor */
674 cq_desc
= (struct cqe_rx_t
*)GET_CQ_DESC(cq
, cqe_head
);
676 cqe_head
&= (cq
->dmem
.q_len
- 1);
677 /* Initiate prefetch for next descriptor */
678 prefetch((struct cqe_rx_t
*)GET_CQ_DESC(cq
, cqe_head
));
680 if ((work_done
>= budget
) && napi
&&
681 (cq_desc
->cqe_type
!= CQE_TYPE_SEND
)) {
685 netdev_dbg(nic
->netdev
, "CQ%d cq_desc->cqe_type %d\n",
686 cq_idx
, cq_desc
->cqe_type
);
687 switch (cq_desc
->cqe_type
) {
689 nicvf_rcv_pkt_handler(netdev
, napi
, cq_desc
);
693 nicvf_snd_pkt_handler(netdev
,
694 (void *)cq_desc
, CQE_TYPE_SEND
,
695 budget
, &tx_pkts
, &tx_bytes
);
698 case CQE_TYPE_INVALID
:
699 case CQE_TYPE_RX_SPLIT
:
700 case CQE_TYPE_RX_TCP
:
701 case CQE_TYPE_SEND_PTP
:
707 netdev_dbg(nic
->netdev
,
708 "%s CQ%d processed_cqe %d work_done %d budget %d\n",
709 __func__
, cq_idx
, processed_cqe
, work_done
, budget
);
711 /* Ring doorbell to inform H/W to reuse processed CQEs */
712 nicvf_queue_reg_write(nic
, NIC_QSET_CQ_0_7_DOOR
,
713 cq_idx
, processed_cqe
);
715 if ((work_done
< budget
) && napi
)
719 /* Wakeup TXQ if its stopped earlier due to SQ full */
720 sq
= &nic
->qs
->sq
[cq_idx
];
722 (atomic_read(&sq
->free_cnt
) >= MIN_SQ_DESC_PER_PKT_XMIT
)) {
723 netdev
= nic
->pnicvf
->netdev
;
724 txq
= netdev_get_tx_queue(netdev
,
725 nicvf_netdev_qidx(nic
, cq_idx
));
727 netdev_tx_completed_queue(txq
, tx_pkts
, tx_bytes
);
729 /* To read updated queue and carrier status */
731 if (netif_tx_queue_stopped(txq
) && netif_carrier_ok(netdev
)) {
732 netif_tx_wake_queue(txq
);
734 this_cpu_inc(nic
->drv_stats
->txq_wake
);
735 if (netif_msg_tx_err(nic
))
737 "%s: Transmit queue wakeup SQ%d\n",
738 netdev
->name
, cq_idx
);
742 spin_unlock_bh(&cq
->lock
);
746 static int nicvf_poll(struct napi_struct
*napi
, int budget
)
750 struct net_device
*netdev
= napi
->dev
;
751 struct nicvf
*nic
= netdev_priv(netdev
);
752 struct nicvf_cq_poll
*cq
;
754 cq
= container_of(napi
, struct nicvf_cq_poll
, napi
);
755 work_done
= nicvf_cq_intr_handler(netdev
, cq
->cq_idx
, napi
, budget
);
757 if (work_done
< budget
) {
758 /* Slow packet rate, exit polling */
759 napi_complete_done(napi
, work_done
);
760 /* Re-enable interrupts */
761 cq_head
= nicvf_queue_reg_read(nic
, NIC_QSET_CQ_0_7_HEAD
,
763 nicvf_clear_intr(nic
, NICVF_INTR_CQ
, cq
->cq_idx
);
764 nicvf_queue_reg_write(nic
, NIC_QSET_CQ_0_7_HEAD
,
765 cq
->cq_idx
, cq_head
);
766 nicvf_enable_intr(nic
, NICVF_INTR_CQ
, cq
->cq_idx
);
771 /* Qset error interrupt handler
773 * As of now only CQ errors are handled
775 static void nicvf_handle_qs_err(unsigned long data
)
777 struct nicvf
*nic
= (struct nicvf
*)data
;
778 struct queue_set
*qs
= nic
->qs
;
782 netif_tx_disable(nic
->netdev
);
784 /* Check if it is CQ err */
785 for (qidx
= 0; qidx
< qs
->cq_cnt
; qidx
++) {
786 status
= nicvf_queue_reg_read(nic
, NIC_QSET_CQ_0_7_STATUS
,
788 if (!(status
& CQ_ERR_MASK
))
790 /* Process already queued CQEs and reconfig CQ */
791 nicvf_disable_intr(nic
, NICVF_INTR_CQ
, qidx
);
792 nicvf_sq_disable(nic
, qidx
);
793 nicvf_cq_intr_handler(nic
->netdev
, qidx
, NULL
, 0);
794 nicvf_cmp_queue_config(nic
, qs
, qidx
, true);
795 nicvf_sq_free_used_descs(nic
->netdev
, &qs
->sq
[qidx
], qidx
);
796 nicvf_sq_enable(nic
, &qs
->sq
[qidx
], qidx
);
798 nicvf_enable_intr(nic
, NICVF_INTR_CQ
, qidx
);
801 netif_tx_start_all_queues(nic
->netdev
);
802 /* Re-enable Qset error interrupt */
803 nicvf_enable_intr(nic
, NICVF_INTR_QS_ERR
, 0);
806 static void nicvf_dump_intr_status(struct nicvf
*nic
)
808 if (netif_msg_intr(nic
))
809 netdev_info(nic
->netdev
, "%s: interrupt status 0x%llx\n",
810 nic
->netdev
->name
, nicvf_reg_read(nic
, NIC_VF_INT
));
813 static irqreturn_t
nicvf_misc_intr_handler(int irq
, void *nicvf_irq
)
815 struct nicvf
*nic
= (struct nicvf
*)nicvf_irq
;
818 nicvf_dump_intr_status(nic
);
820 intr
= nicvf_reg_read(nic
, NIC_VF_INT
);
821 /* Check for spurious interrupt */
822 if (!(intr
& NICVF_INTR_MBOX_MASK
))
825 nicvf_handle_mbx_intr(nic
);
830 static irqreturn_t
nicvf_intr_handler(int irq
, void *cq_irq
)
832 struct nicvf_cq_poll
*cq_poll
= (struct nicvf_cq_poll
*)cq_irq
;
833 struct nicvf
*nic
= cq_poll
->nicvf
;
834 int qidx
= cq_poll
->cq_idx
;
836 nicvf_dump_intr_status(nic
);
838 /* Disable interrupts */
839 nicvf_disable_intr(nic
, NICVF_INTR_CQ
, qidx
);
842 napi_schedule_irqoff(&cq_poll
->napi
);
844 /* Clear interrupt */
845 nicvf_clear_intr(nic
, NICVF_INTR_CQ
, qidx
);
850 static irqreturn_t
nicvf_rbdr_intr_handler(int irq
, void *nicvf_irq
)
852 struct nicvf
*nic
= (struct nicvf
*)nicvf_irq
;
856 nicvf_dump_intr_status(nic
);
858 /* Disable RBDR interrupt and schedule softirq */
859 for (qidx
= 0; qidx
< nic
->qs
->rbdr_cnt
; qidx
++) {
860 if (!nicvf_is_intr_enabled(nic
, NICVF_INTR_RBDR
, qidx
))
862 nicvf_disable_intr(nic
, NICVF_INTR_RBDR
, qidx
);
863 tasklet_hi_schedule(&nic
->rbdr_task
);
864 /* Clear interrupt */
865 nicvf_clear_intr(nic
, NICVF_INTR_RBDR
, qidx
);
871 static irqreturn_t
nicvf_qs_err_intr_handler(int irq
, void *nicvf_irq
)
873 struct nicvf
*nic
= (struct nicvf
*)nicvf_irq
;
875 nicvf_dump_intr_status(nic
);
877 /* Disable Qset err interrupt and schedule softirq */
878 nicvf_disable_intr(nic
, NICVF_INTR_QS_ERR
, 0);
879 tasklet_hi_schedule(&nic
->qs_err_task
);
880 nicvf_clear_intr(nic
, NICVF_INTR_QS_ERR
, 0);
885 static int nicvf_enable_msix(struct nicvf
*nic
)
889 nic
->num_vec
= NIC_VF_MSIX_VECTORS
;
891 for (vec
= 0; vec
< nic
->num_vec
; vec
++)
892 nic
->msix_entries
[vec
].entry
= vec
;
894 ret
= pci_enable_msix(nic
->pdev
, nic
->msix_entries
, nic
->num_vec
);
896 netdev_err(nic
->netdev
,
897 "Req for #%d msix vectors failed\n", nic
->num_vec
);
900 nic
->msix_enabled
= 1;
904 static void nicvf_disable_msix(struct nicvf
*nic
)
906 if (nic
->msix_enabled
) {
907 pci_disable_msix(nic
->pdev
);
908 nic
->msix_enabled
= 0;
913 static void nicvf_set_irq_affinity(struct nicvf
*nic
)
918 for (vec
= 0; vec
< nic
->num_vec
; vec
++) {
919 if (!nic
->irq_allocated
[vec
])
922 if (!zalloc_cpumask_var(&nic
->affinity_mask
[vec
], GFP_KERNEL
))
925 if (vec
< NICVF_INTR_ID_SQ
)
926 /* Leave CPU0 for RBDR and other interrupts */
927 cpu
= nicvf_netdev_qidx(nic
, vec
) + 1;
931 cpumask_set_cpu(cpumask_local_spread(cpu
, nic
->node
),
932 nic
->affinity_mask
[vec
]);
933 irqnum
= nic
->msix_entries
[vec
].vector
;
934 irq_set_affinity_hint(irqnum
, nic
->affinity_mask
[vec
]);
938 static int nicvf_register_interrupts(struct nicvf
*nic
)
944 sprintf(nic
->irq_name
[irq
], "%s-rxtx-%d",
945 nic
->pnicvf
->netdev
->name
,
946 nicvf_netdev_qidx(nic
, irq
));
949 sprintf(nic
->irq_name
[irq
], "%s-sq-%d",
950 nic
->pnicvf
->netdev
->name
,
951 nicvf_netdev_qidx(nic
, irq
- NICVF_INTR_ID_SQ
));
953 for_each_rbdr_irq(irq
)
954 sprintf(nic
->irq_name
[irq
], "%s-rbdr-%d",
955 nic
->pnicvf
->netdev
->name
,
956 nic
->sqs_mode
? (nic
->sqs_id
+ 1) : 0);
958 /* Register CQ interrupts */
959 for (irq
= 0; irq
< nic
->qs
->cq_cnt
; irq
++) {
960 vector
= nic
->msix_entries
[irq
].vector
;
961 ret
= request_irq(vector
, nicvf_intr_handler
,
962 0, nic
->irq_name
[irq
], nic
->napi
[irq
]);
965 nic
->irq_allocated
[irq
] = true;
968 /* Register RBDR interrupt */
969 for (irq
= NICVF_INTR_ID_RBDR
;
970 irq
< (NICVF_INTR_ID_RBDR
+ nic
->qs
->rbdr_cnt
); irq
++) {
971 vector
= nic
->msix_entries
[irq
].vector
;
972 ret
= request_irq(vector
, nicvf_rbdr_intr_handler
,
973 0, nic
->irq_name
[irq
], nic
);
976 nic
->irq_allocated
[irq
] = true;
979 /* Register QS error interrupt */
980 sprintf(nic
->irq_name
[NICVF_INTR_ID_QS_ERR
], "%s-qset-err-%d",
981 nic
->pnicvf
->netdev
->name
,
982 nic
->sqs_mode
? (nic
->sqs_id
+ 1) : 0);
983 irq
= NICVF_INTR_ID_QS_ERR
;
984 ret
= request_irq(nic
->msix_entries
[irq
].vector
,
985 nicvf_qs_err_intr_handler
,
986 0, nic
->irq_name
[irq
], nic
);
990 nic
->irq_allocated
[irq
] = true;
992 /* Set IRQ affinities */
993 nicvf_set_irq_affinity(nic
);
997 netdev_err(nic
->netdev
, "request_irq failed, vector %d\n", irq
);
1002 static void nicvf_unregister_interrupts(struct nicvf
*nic
)
1006 /* Free registered interrupts */
1007 for (irq
= 0; irq
< nic
->num_vec
; irq
++) {
1008 if (!nic
->irq_allocated
[irq
])
1011 irq_set_affinity_hint(nic
->msix_entries
[irq
].vector
, NULL
);
1012 free_cpumask_var(nic
->affinity_mask
[irq
]);
1014 if (irq
< NICVF_INTR_ID_SQ
)
1015 free_irq(nic
->msix_entries
[irq
].vector
, nic
->napi
[irq
]);
1017 free_irq(nic
->msix_entries
[irq
].vector
, nic
);
1019 nic
->irq_allocated
[irq
] = false;
1023 nicvf_disable_msix(nic
);
1026 /* Initialize MSIX vectors and register MISC interrupt.
1027 * Send READY message to PF to check if its alive
1029 static int nicvf_register_misc_interrupt(struct nicvf
*nic
)
1032 int irq
= NICVF_INTR_ID_MISC
;
1034 /* Return if mailbox interrupt is already registered */
1035 if (nic
->msix_enabled
)
1039 if (!nicvf_enable_msix(nic
))
1042 sprintf(nic
->irq_name
[irq
], "%s Mbox", "NICVF");
1043 /* Register Misc interrupt */
1044 ret
= request_irq(nic
->msix_entries
[irq
].vector
,
1045 nicvf_misc_intr_handler
, 0, nic
->irq_name
[irq
], nic
);
1049 nic
->irq_allocated
[irq
] = true;
1051 /* Enable mailbox interrupt */
1052 nicvf_enable_intr(nic
, NICVF_INTR_MBOX
, 0);
1054 /* Check if VF is able to communicate with PF */
1055 if (!nicvf_check_pf_ready(nic
)) {
1056 nicvf_disable_intr(nic
, NICVF_INTR_MBOX
, 0);
1057 nicvf_unregister_interrupts(nic
);
1064 static netdev_tx_t
nicvf_xmit(struct sk_buff
*skb
, struct net_device
*netdev
)
1066 struct nicvf
*nic
= netdev_priv(netdev
);
1067 int qid
= skb_get_queue_mapping(skb
);
1068 struct netdev_queue
*txq
= netdev_get_tx_queue(netdev
, qid
);
1070 struct snd_queue
*sq
;
1073 /* Check for minimum packet length */
1074 if (skb
->len
<= ETH_HLEN
) {
1076 return NETDEV_TX_OK
;
1080 /* Get secondary Qset's SQ structure */
1081 if (qid
>= MAX_SND_QUEUES_PER_QS
) {
1082 tmp
= qid
/ MAX_SND_QUEUES_PER_QS
;
1083 snic
= (struct nicvf
*)nic
->snicvf
[tmp
- 1];
1085 netdev_warn(nic
->netdev
,
1086 "Secondary Qset#%d's ptr not initialized\n",
1089 return NETDEV_TX_OK
;
1091 qid
= qid
% MAX_SND_QUEUES_PER_QS
;
1094 sq
= &snic
->qs
->sq
[qid
];
1095 if (!netif_tx_queue_stopped(txq
) &&
1096 !nicvf_sq_append_skb(snic
, sq
, skb
, qid
)) {
1097 netif_tx_stop_queue(txq
);
1099 /* Barrier, so that stop_queue visible to other cpus */
1102 /* Check again, incase another cpu freed descriptors */
1103 if (atomic_read(&sq
->free_cnt
) > MIN_SQ_DESC_PER_PKT_XMIT
) {
1104 netif_tx_wake_queue(txq
);
1106 this_cpu_inc(nic
->drv_stats
->txq_stop
);
1107 if (netif_msg_tx_err(nic
))
1109 "%s: Transmit ring full, stopping SQ%d\n",
1112 return NETDEV_TX_BUSY
;
1115 return NETDEV_TX_OK
;
1118 static inline void nicvf_free_cq_poll(struct nicvf
*nic
)
1120 struct nicvf_cq_poll
*cq_poll
;
1123 for (qidx
= 0; qidx
< nic
->qs
->cq_cnt
; qidx
++) {
1124 cq_poll
= nic
->napi
[qidx
];
1127 nic
->napi
[qidx
] = NULL
;
1132 int nicvf_stop(struct net_device
*netdev
)
1135 struct nicvf
*nic
= netdev_priv(netdev
);
1136 struct queue_set
*qs
= nic
->qs
;
1137 struct nicvf_cq_poll
*cq_poll
= NULL
;
1138 union nic_mbx mbx
= {};
1140 mbx
.msg
.msg
= NIC_MBOX_MSG_SHUTDOWN
;
1141 nicvf_send_msg_to_pf(nic
, &mbx
);
1143 netif_carrier_off(netdev
);
1144 netif_tx_stop_all_queues(nic
->netdev
);
1145 nic
->link_up
= false;
1147 /* Teardown secondary qsets first */
1148 if (!nic
->sqs_mode
) {
1149 for (qidx
= 0; qidx
< nic
->sqs_count
; qidx
++) {
1150 if (!nic
->snicvf
[qidx
])
1152 nicvf_stop(nic
->snicvf
[qidx
]->netdev
);
1153 nic
->snicvf
[qidx
] = NULL
;
1157 /* Disable RBDR & QS error interrupts */
1158 for (qidx
= 0; qidx
< qs
->rbdr_cnt
; qidx
++) {
1159 nicvf_disable_intr(nic
, NICVF_INTR_RBDR
, qidx
);
1160 nicvf_clear_intr(nic
, NICVF_INTR_RBDR
, qidx
);
1162 nicvf_disable_intr(nic
, NICVF_INTR_QS_ERR
, 0);
1163 nicvf_clear_intr(nic
, NICVF_INTR_QS_ERR
, 0);
1165 /* Wait for pending IRQ handlers to finish */
1166 for (irq
= 0; irq
< nic
->num_vec
; irq
++)
1167 synchronize_irq(nic
->msix_entries
[irq
].vector
);
1169 tasklet_kill(&nic
->rbdr_task
);
1170 tasklet_kill(&nic
->qs_err_task
);
1171 if (nic
->rb_work_scheduled
)
1172 cancel_delayed_work_sync(&nic
->rbdr_work
);
1174 for (qidx
= 0; qidx
< nic
->qs
->cq_cnt
; qidx
++) {
1175 cq_poll
= nic
->napi
[qidx
];
1178 napi_synchronize(&cq_poll
->napi
);
1179 /* CQ intr is enabled while napi_complete,
1182 nicvf_disable_intr(nic
, NICVF_INTR_CQ
, qidx
);
1183 nicvf_clear_intr(nic
, NICVF_INTR_CQ
, qidx
);
1184 napi_disable(&cq_poll
->napi
);
1185 netif_napi_del(&cq_poll
->napi
);
1188 netif_tx_disable(netdev
);
1190 for (qidx
= 0; qidx
< netdev
->num_tx_queues
; qidx
++)
1191 netdev_tx_reset_queue(netdev_get_tx_queue(netdev
, qidx
));
1193 /* Free resources */
1194 nicvf_config_data_transfer(nic
, false);
1196 /* Disable HW Qset */
1197 nicvf_qset_config(nic
, false);
1199 /* disable mailbox interrupt */
1200 nicvf_disable_intr(nic
, NICVF_INTR_MBOX
, 0);
1202 nicvf_unregister_interrupts(nic
);
1204 nicvf_free_cq_poll(nic
);
1206 /* Clear multiqset info */
1212 static int nicvf_update_hw_max_frs(struct nicvf
*nic
, int mtu
)
1214 union nic_mbx mbx
= {};
1216 mbx
.frs
.msg
= NIC_MBOX_MSG_SET_MAX_FRS
;
1217 mbx
.frs
.max_frs
= mtu
;
1218 mbx
.frs
.vf_id
= nic
->vf_id
;
1220 return nicvf_send_msg_to_pf(nic
, &mbx
);
1223 int nicvf_open(struct net_device
*netdev
)
1226 struct nicvf
*nic
= netdev_priv(netdev
);
1227 struct queue_set
*qs
= nic
->qs
;
1228 struct nicvf_cq_poll
*cq_poll
= NULL
;
1229 union nic_mbx mbx
= {};
1231 netif_carrier_off(netdev
);
1233 err
= nicvf_register_misc_interrupt(nic
);
1237 /* Register NAPI handler for processing CQEs */
1238 for (qidx
= 0; qidx
< qs
->cq_cnt
; qidx
++) {
1239 cq_poll
= kzalloc(sizeof(*cq_poll
), GFP_KERNEL
);
1244 cq_poll
->cq_idx
= qidx
;
1245 cq_poll
->nicvf
= nic
;
1246 netif_napi_add(netdev
, &cq_poll
->napi
, nicvf_poll
,
1248 napi_enable(&cq_poll
->napi
);
1249 nic
->napi
[qidx
] = cq_poll
;
1252 /* Check if we got MAC address from PF or else generate a radom MAC */
1253 if (!nic
->sqs_mode
&& is_zero_ether_addr(netdev
->dev_addr
)) {
1254 eth_hw_addr_random(netdev
);
1255 nicvf_hw_set_mac_addr(nic
, netdev
);
1258 if (nic
->set_mac_pending
) {
1259 nic
->set_mac_pending
= false;
1260 nicvf_hw_set_mac_addr(nic
, netdev
);
1263 /* Init tasklet for handling Qset err interrupt */
1264 tasklet_init(&nic
->qs_err_task
, nicvf_handle_qs_err
,
1265 (unsigned long)nic
);
1267 /* Init RBDR tasklet which will refill RBDR */
1268 tasklet_init(&nic
->rbdr_task
, nicvf_rbdr_task
,
1269 (unsigned long)nic
);
1270 INIT_DELAYED_WORK(&nic
->rbdr_work
, nicvf_rbdr_work
);
1272 /* Configure CPI alorithm */
1273 nic
->cpi_alg
= cpi_alg
;
1275 nicvf_config_cpi(nic
);
1277 nicvf_request_sqs(nic
);
1279 nicvf_get_primary_vf_struct(nic
);
1281 /* Configure receive side scaling and MTU */
1282 if (!nic
->sqs_mode
) {
1283 nicvf_rss_init(nic
);
1284 err
= nicvf_update_hw_max_frs(nic
, netdev
->mtu
);
1288 /* Clear percpu stats */
1289 for_each_possible_cpu(cpu
)
1290 memset(per_cpu_ptr(nic
->drv_stats
, cpu
), 0,
1291 sizeof(struct nicvf_drv_stats
));
1294 err
= nicvf_register_interrupts(nic
);
1298 /* Initialize the queues */
1299 err
= nicvf_init_resources(nic
);
1303 /* Make sure queue initialization is written */
1306 nicvf_reg_write(nic
, NIC_VF_INT
, -1);
1307 /* Enable Qset err interrupt */
1308 nicvf_enable_intr(nic
, NICVF_INTR_QS_ERR
, 0);
1310 /* Enable completion queue interrupt */
1311 for (qidx
= 0; qidx
< qs
->cq_cnt
; qidx
++)
1312 nicvf_enable_intr(nic
, NICVF_INTR_CQ
, qidx
);
1314 /* Enable RBDR threshold interrupt */
1315 for (qidx
= 0; qidx
< qs
->rbdr_cnt
; qidx
++)
1316 nicvf_enable_intr(nic
, NICVF_INTR_RBDR
, qidx
);
1318 /* Send VF config done msg to PF */
1319 mbx
.msg
.msg
= NIC_MBOX_MSG_CFG_DONE
;
1320 nicvf_write_to_mbx(nic
, &mbx
);
1324 nicvf_disable_intr(nic
, NICVF_INTR_MBOX
, 0);
1325 nicvf_unregister_interrupts(nic
);
1326 tasklet_kill(&nic
->qs_err_task
);
1327 tasklet_kill(&nic
->rbdr_task
);
1329 for (qidx
= 0; qidx
< qs
->cq_cnt
; qidx
++) {
1330 cq_poll
= nic
->napi
[qidx
];
1333 napi_disable(&cq_poll
->napi
);
1334 netif_napi_del(&cq_poll
->napi
);
1336 nicvf_free_cq_poll(nic
);
1340 static int nicvf_change_mtu(struct net_device
*netdev
, int new_mtu
)
1342 struct nicvf
*nic
= netdev_priv(netdev
);
1343 int orig_mtu
= netdev
->mtu
;
1345 netdev
->mtu
= new_mtu
;
1347 if (!netif_running(netdev
))
1350 if (nicvf_update_hw_max_frs(nic
, new_mtu
)) {
1351 netdev
->mtu
= orig_mtu
;
1358 static int nicvf_set_mac_address(struct net_device
*netdev
, void *p
)
1360 struct sockaddr
*addr
= p
;
1361 struct nicvf
*nic
= netdev_priv(netdev
);
1363 if (!is_valid_ether_addr(addr
->sa_data
))
1364 return -EADDRNOTAVAIL
;
1366 memcpy(netdev
->dev_addr
, addr
->sa_data
, netdev
->addr_len
);
1368 if (nic
->msix_enabled
) {
1369 if (nicvf_hw_set_mac_addr(nic
, netdev
))
1372 nic
->set_mac_pending
= true;
1378 void nicvf_update_lmac_stats(struct nicvf
*nic
)
1381 union nic_mbx mbx
= {};
1383 if (!netif_running(nic
->netdev
))
1386 mbx
.bgx_stats
.msg
= NIC_MBOX_MSG_BGX_STATS
;
1387 mbx
.bgx_stats
.vf_id
= nic
->vf_id
;
1389 mbx
.bgx_stats
.rx
= 1;
1390 while (stat
< BGX_RX_STATS_COUNT
) {
1391 mbx
.bgx_stats
.idx
= stat
;
1392 if (nicvf_send_msg_to_pf(nic
, &mbx
))
1400 mbx
.bgx_stats
.rx
= 0;
1401 while (stat
< BGX_TX_STATS_COUNT
) {
1402 mbx
.bgx_stats
.idx
= stat
;
1403 if (nicvf_send_msg_to_pf(nic
, &mbx
))
1409 void nicvf_update_stats(struct nicvf
*nic
)
1413 struct nicvf_hw_stats
*stats
= &nic
->hw_stats
;
1414 struct nicvf_drv_stats
*drv_stats
;
1415 struct queue_set
*qs
= nic
->qs
;
1417 #define GET_RX_STATS(reg) \
1418 nicvf_reg_read(nic, NIC_VNIC_RX_STAT_0_13 | (reg << 3))
1419 #define GET_TX_STATS(reg) \
1420 nicvf_reg_read(nic, NIC_VNIC_TX_STAT_0_4 | (reg << 3))
1422 stats
->rx_bytes
= GET_RX_STATS(RX_OCTS
);
1423 stats
->rx_ucast_frames
= GET_RX_STATS(RX_UCAST
);
1424 stats
->rx_bcast_frames
= GET_RX_STATS(RX_BCAST
);
1425 stats
->rx_mcast_frames
= GET_RX_STATS(RX_MCAST
);
1426 stats
->rx_fcs_errors
= GET_RX_STATS(RX_FCS
);
1427 stats
->rx_l2_errors
= GET_RX_STATS(RX_L2ERR
);
1428 stats
->rx_drop_red
= GET_RX_STATS(RX_RED
);
1429 stats
->rx_drop_red_bytes
= GET_RX_STATS(RX_RED_OCTS
);
1430 stats
->rx_drop_overrun
= GET_RX_STATS(RX_ORUN
);
1431 stats
->rx_drop_overrun_bytes
= GET_RX_STATS(RX_ORUN_OCTS
);
1432 stats
->rx_drop_bcast
= GET_RX_STATS(RX_DRP_BCAST
);
1433 stats
->rx_drop_mcast
= GET_RX_STATS(RX_DRP_MCAST
);
1434 stats
->rx_drop_l3_bcast
= GET_RX_STATS(RX_DRP_L3BCAST
);
1435 stats
->rx_drop_l3_mcast
= GET_RX_STATS(RX_DRP_L3MCAST
);
1437 stats
->tx_bytes
= GET_TX_STATS(TX_OCTS
);
1438 stats
->tx_ucast_frames
= GET_TX_STATS(TX_UCAST
);
1439 stats
->tx_bcast_frames
= GET_TX_STATS(TX_BCAST
);
1440 stats
->tx_mcast_frames
= GET_TX_STATS(TX_MCAST
);
1441 stats
->tx_drops
= GET_TX_STATS(TX_DROP
);
1443 /* On T88 pass 2.0, the dummy SQE added for TSO notification
1444 * via CQE has 'dont_send' set. Hence HW drops the pkt pointed
1445 * pointed by dummy SQE and results in tx_drops counter being
1446 * incremented. Subtracting it from tx_tso counter will give
1447 * exact tx_drops counter.
1449 if (nic
->t88
&& nic
->hw_tso
) {
1450 for_each_possible_cpu(cpu
) {
1451 drv_stats
= per_cpu_ptr(nic
->drv_stats
, cpu
);
1452 tmp_stats
+= drv_stats
->tx_tso
;
1454 stats
->tx_drops
= tmp_stats
- stats
->tx_drops
;
1456 stats
->tx_frames
= stats
->tx_ucast_frames
+
1457 stats
->tx_bcast_frames
+
1458 stats
->tx_mcast_frames
;
1459 stats
->rx_frames
= stats
->rx_ucast_frames
+
1460 stats
->rx_bcast_frames
+
1461 stats
->rx_mcast_frames
;
1462 stats
->rx_drops
= stats
->rx_drop_red
+
1463 stats
->rx_drop_overrun
;
1465 /* Update RQ and SQ stats */
1466 for (qidx
= 0; qidx
< qs
->rq_cnt
; qidx
++)
1467 nicvf_update_rq_stats(nic
, qidx
);
1468 for (qidx
= 0; qidx
< qs
->sq_cnt
; qidx
++)
1469 nicvf_update_sq_stats(nic
, qidx
);
1472 static void nicvf_get_stats64(struct net_device
*netdev
,
1473 struct rtnl_link_stats64
*stats
)
1475 struct nicvf
*nic
= netdev_priv(netdev
);
1476 struct nicvf_hw_stats
*hw_stats
= &nic
->hw_stats
;
1478 nicvf_update_stats(nic
);
1480 stats
->rx_bytes
= hw_stats
->rx_bytes
;
1481 stats
->rx_packets
= hw_stats
->rx_frames
;
1482 stats
->rx_dropped
= hw_stats
->rx_drops
;
1483 stats
->multicast
= hw_stats
->rx_mcast_frames
;
1485 stats
->tx_bytes
= hw_stats
->tx_bytes
;
1486 stats
->tx_packets
= hw_stats
->tx_frames
;
1487 stats
->tx_dropped
= hw_stats
->tx_drops
;
1491 static void nicvf_tx_timeout(struct net_device
*dev
)
1493 struct nicvf
*nic
= netdev_priv(dev
);
1495 if (netif_msg_tx_err(nic
))
1496 netdev_warn(dev
, "%s: Transmit timed out, resetting\n",
1499 this_cpu_inc(nic
->drv_stats
->tx_timeout
);
1500 schedule_work(&nic
->reset_task
);
1503 static void nicvf_reset_task(struct work_struct
*work
)
1507 nic
= container_of(work
, struct nicvf
, reset_task
);
1509 if (!netif_running(nic
->netdev
))
1512 nicvf_stop(nic
->netdev
);
1513 nicvf_open(nic
->netdev
);
1514 netif_trans_update(nic
->netdev
);
1517 static int nicvf_config_loopback(struct nicvf
*nic
,
1518 netdev_features_t features
)
1520 union nic_mbx mbx
= {};
1522 mbx
.lbk
.msg
= NIC_MBOX_MSG_LOOPBACK
;
1523 mbx
.lbk
.vf_id
= nic
->vf_id
;
1524 mbx
.lbk
.enable
= (features
& NETIF_F_LOOPBACK
) != 0;
1526 return nicvf_send_msg_to_pf(nic
, &mbx
);
1529 static netdev_features_t
nicvf_fix_features(struct net_device
*netdev
,
1530 netdev_features_t features
)
1532 struct nicvf
*nic
= netdev_priv(netdev
);
1534 if ((features
& NETIF_F_LOOPBACK
) &&
1535 netif_running(netdev
) && !nic
->loopback_supported
)
1536 features
&= ~NETIF_F_LOOPBACK
;
1541 static int nicvf_set_features(struct net_device
*netdev
,
1542 netdev_features_t features
)
1544 struct nicvf
*nic
= netdev_priv(netdev
);
1545 netdev_features_t changed
= features
^ netdev
->features
;
1547 if (changed
& NETIF_F_HW_VLAN_CTAG_RX
)
1548 nicvf_config_vlan_stripping(nic
, features
);
1550 if ((changed
& NETIF_F_LOOPBACK
) && netif_running(netdev
))
1551 return nicvf_config_loopback(nic
, features
);
1556 static const struct net_device_ops nicvf_netdev_ops
= {
1557 .ndo_open
= nicvf_open
,
1558 .ndo_stop
= nicvf_stop
,
1559 .ndo_start_xmit
= nicvf_xmit
,
1560 .ndo_change_mtu
= nicvf_change_mtu
,
1561 .ndo_set_mac_address
= nicvf_set_mac_address
,
1562 .ndo_get_stats64
= nicvf_get_stats64
,
1563 .ndo_tx_timeout
= nicvf_tx_timeout
,
1564 .ndo_fix_features
= nicvf_fix_features
,
1565 .ndo_set_features
= nicvf_set_features
,
1568 static int nicvf_probe(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
1570 struct device
*dev
= &pdev
->dev
;
1571 struct net_device
*netdev
;
1576 err
= pci_enable_device(pdev
);
1578 dev_err(dev
, "Failed to enable PCI device\n");
1582 err
= pci_request_regions(pdev
, DRV_NAME
);
1584 dev_err(dev
, "PCI request regions failed 0x%x\n", err
);
1585 goto err_disable_device
;
1588 err
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(48));
1590 dev_err(dev
, "Unable to get usable DMA configuration\n");
1591 goto err_release_regions
;
1594 err
= pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(48));
1596 dev_err(dev
, "unable to get 48-bit DMA for consistent allocations\n");
1597 goto err_release_regions
;
1600 qcount
= netif_get_num_default_rss_queues();
1602 /* Restrict multiqset support only for host bound VFs */
1603 if (pdev
->is_virtfn
) {
1604 /* Set max number of queues per VF */
1605 qcount
= min_t(int, num_online_cpus(),
1606 (MAX_SQS_PER_VF
+ 1) * MAX_CMP_QUEUES_PER_QS
);
1609 netdev
= alloc_etherdev_mqs(sizeof(struct nicvf
), qcount
, qcount
);
1612 goto err_release_regions
;
1615 pci_set_drvdata(pdev
, netdev
);
1617 SET_NETDEV_DEV(netdev
, &pdev
->dev
);
1619 nic
= netdev_priv(netdev
);
1620 nic
->netdev
= netdev
;
1623 nic
->max_queues
= qcount
;
1625 /* MAP VF's configuration registers */
1626 nic
->reg_base
= pcim_iomap(pdev
, PCI_CFG_REG_BAR_NUM
, 0);
1627 if (!nic
->reg_base
) {
1628 dev_err(dev
, "Cannot map config register space, aborting\n");
1630 goto err_free_netdev
;
1633 nic
->drv_stats
= netdev_alloc_pcpu_stats(struct nicvf_drv_stats
);
1634 if (!nic
->drv_stats
) {
1636 goto err_free_netdev
;
1639 err
= nicvf_set_qset_resources(nic
);
1641 goto err_free_netdev
;
1643 /* Check if PF is alive and get MAC address for this VF */
1644 err
= nicvf_register_misc_interrupt(nic
);
1646 goto err_free_netdev
;
1648 nicvf_send_vf_struct(nic
);
1650 if (!pass1_silicon(nic
->pdev
))
1653 /* Get iommu domain for iova to physical addr conversion */
1654 nic
->iommu_domain
= iommu_get_domain_for_dev(dev
);
1656 pci_read_config_word(nic
->pdev
, PCI_SUBSYSTEM_ID
, &sdevid
);
1657 if (sdevid
== 0xA134)
1660 /* Check if this VF is in QS only mode */
1664 err
= nicvf_set_real_num_queues(netdev
, nic
->tx_queues
, nic
->rx_queues
);
1666 goto err_unregister_interrupts
;
1668 netdev
->hw_features
= (NETIF_F_RXCSUM
| NETIF_F_IP_CSUM
| NETIF_F_SG
|
1669 NETIF_F_TSO
| NETIF_F_GRO
|
1670 NETIF_F_HW_VLAN_CTAG_RX
);
1672 netdev
->hw_features
|= NETIF_F_RXHASH
;
1674 netdev
->features
|= netdev
->hw_features
;
1675 netdev
->hw_features
|= NETIF_F_LOOPBACK
;
1677 netdev
->vlan_features
= NETIF_F_SG
| NETIF_F_IP_CSUM
| NETIF_F_TSO
;
1679 netdev
->netdev_ops
= &nicvf_netdev_ops
;
1680 netdev
->watchdog_timeo
= NICVF_TX_TIMEOUT
;
1682 /* MTU range: 64 - 9200 */
1683 netdev
->min_mtu
= NIC_HW_MIN_FRS
;
1684 netdev
->max_mtu
= NIC_HW_MAX_FRS
;
1686 INIT_WORK(&nic
->reset_task
, nicvf_reset_task
);
1688 err
= register_netdev(netdev
);
1690 dev_err(dev
, "Failed to register netdevice\n");
1691 goto err_unregister_interrupts
;
1694 nic
->msg_enable
= debug
;
1696 nicvf_set_ethtool_ops(netdev
);
1700 err_unregister_interrupts
:
1701 nicvf_unregister_interrupts(nic
);
1703 pci_set_drvdata(pdev
, NULL
);
1705 free_percpu(nic
->drv_stats
);
1706 free_netdev(netdev
);
1707 err_release_regions
:
1708 pci_release_regions(pdev
);
1710 pci_disable_device(pdev
);
1714 static void nicvf_remove(struct pci_dev
*pdev
)
1716 struct net_device
*netdev
= pci_get_drvdata(pdev
);
1718 struct net_device
*pnetdev
;
1723 nic
= netdev_priv(netdev
);
1724 pnetdev
= nic
->pnicvf
->netdev
;
1726 /* Check if this Qset is assigned to different VF.
1727 * If yes, clean primary and all secondary Qsets.
1729 if (pnetdev
&& (pnetdev
->reg_state
== NETREG_REGISTERED
))
1730 unregister_netdev(pnetdev
);
1731 nicvf_unregister_interrupts(nic
);
1732 pci_set_drvdata(pdev
, NULL
);
1734 free_percpu(nic
->drv_stats
);
1735 free_netdev(netdev
);
1736 pci_release_regions(pdev
);
1737 pci_disable_device(pdev
);
1740 static void nicvf_shutdown(struct pci_dev
*pdev
)
1745 static struct pci_driver nicvf_driver
= {
1747 .id_table
= nicvf_id_table
,
1748 .probe
= nicvf_probe
,
1749 .remove
= nicvf_remove
,
1750 .shutdown
= nicvf_shutdown
,
1753 static int __init
nicvf_init_module(void)
1755 pr_info("%s, ver %s\n", DRV_NAME
, DRV_VERSION
);
1757 return pci_register_driver(&nicvf_driver
);
1760 static void __exit
nicvf_cleanup_module(void)
1762 pci_unregister_driver(&nicvf_driver
);
1765 module_init(nicvf_init_module
);
1766 module_exit(nicvf_cleanup_module
);