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.
12 #include <linux/netdevice.h>
13 #include <linux/interrupt.h>
14 #include <linux/pci.h>
15 #include "thunder_bgx.h"
18 #define PCI_DEVICE_ID_THUNDER_NIC_PF 0xA01E
19 #define PCI_DEVICE_ID_THUNDER_PASS1_NIC_VF 0x0011
20 #define PCI_DEVICE_ID_THUNDER_NIC_VF 0xA034
21 #define PCI_DEVICE_ID_THUNDER_BGX 0xA026
23 /* Subsystem device IDs */
24 #define PCI_SUBSYS_DEVID_88XX_NIC_PF 0xA11E
25 #define PCI_SUBSYS_DEVID_81XX_NIC_PF 0xA21E
26 #define PCI_SUBSYS_DEVID_83XX_NIC_PF 0xA31E
28 #define PCI_SUBSYS_DEVID_88XX_PASS1_NIC_VF 0xA11E
29 #define PCI_SUBSYS_DEVID_88XX_NIC_VF 0xA134
30 #define PCI_SUBSYS_DEVID_81XX_NIC_VF 0xA234
31 #define PCI_SUBSYS_DEVID_83XX_NIC_VF 0xA334
35 #define PCI_CFG_REG_BAR_NUM 0
36 #define PCI_MSIX_REG_BAR_NUM 4
38 /* NIC SRIOV VF count */
39 #define MAX_NUM_VFS_SUPPORTED 128
40 #define DEFAULT_NUM_VF_ENABLED 8
42 #define NIC_TNS_BYPASS_MODE 0
43 #define NIC_TNS_MODE 1
46 #define NIC_SRIOV_ENABLED BIT(0)
48 /* Min/Max packet size */
49 #define NIC_HW_MIN_FRS 64
50 #define NIC_HW_MAX_FRS 9190 /* Excluding L2 header and FCS */
53 #define NIC_MAX_PKIND 16
55 /* Max when CPI_ALG is IP diffserv */
56 #define NIC_MAX_CPI_PER_LMAC 64
58 /* NIC VF Interrupts */
59 #define NICVF_INTR_CQ 0
60 #define NICVF_INTR_SQ 1
61 #define NICVF_INTR_RBDR 2
62 #define NICVF_INTR_PKT_DROP 3
63 #define NICVF_INTR_TCP_TIMER 4
64 #define NICVF_INTR_MBOX 5
65 #define NICVF_INTR_QS_ERR 6
67 #define NICVF_INTR_CQ_SHIFT 0
68 #define NICVF_INTR_SQ_SHIFT 8
69 #define NICVF_INTR_RBDR_SHIFT 16
70 #define NICVF_INTR_PKT_DROP_SHIFT 20
71 #define NICVF_INTR_TCP_TIMER_SHIFT 21
72 #define NICVF_INTR_MBOX_SHIFT 22
73 #define NICVF_INTR_QS_ERR_SHIFT 23
75 #define NICVF_INTR_CQ_MASK (0xFF << NICVF_INTR_CQ_SHIFT)
76 #define NICVF_INTR_SQ_MASK (0xFF << NICVF_INTR_SQ_SHIFT)
77 #define NICVF_INTR_RBDR_MASK (0x03 << NICVF_INTR_RBDR_SHIFT)
78 #define NICVF_INTR_PKT_DROP_MASK BIT(NICVF_INTR_PKT_DROP_SHIFT)
79 #define NICVF_INTR_TCP_TIMER_MASK BIT(NICVF_INTR_TCP_TIMER_SHIFT)
80 #define NICVF_INTR_MBOX_MASK BIT(NICVF_INTR_MBOX_SHIFT)
81 #define NICVF_INTR_QS_ERR_MASK BIT(NICVF_INTR_QS_ERR_SHIFT)
83 /* MSI-X interrupts */
84 #define NIC_PF_MSIX_VECTORS 10
85 #define NIC_VF_MSIX_VECTORS 20
87 #define NIC_PF_INTR_ID_ECC0_SBE 0
88 #define NIC_PF_INTR_ID_ECC0_DBE 1
89 #define NIC_PF_INTR_ID_ECC1_SBE 2
90 #define NIC_PF_INTR_ID_ECC1_DBE 3
91 #define NIC_PF_INTR_ID_ECC2_SBE 4
92 #define NIC_PF_INTR_ID_ECC2_DBE 5
93 #define NIC_PF_INTR_ID_ECC3_SBE 6
94 #define NIC_PF_INTR_ID_ECC3_DBE 7
95 #define NIC_PF_INTR_ID_MBOX0 8
96 #define NIC_PF_INTR_ID_MBOX1 9
98 /* Minimum FIFO level before all packets for the CQ are dropped
100 * This value ensures that once a packet has been "accepted"
101 * for reception it will not get dropped due to non-availability
102 * of CQ descriptor. An errata in HW mandates this value to be
105 #define NICPF_CQM_MIN_DROP_LEVEL 0x100
107 /* Global timer for CQ timer thresh interrupts
108 * Calculated for SCLK of 700Mhz
109 * value written should be a 1/16th of what is expected
111 * 1 tick per 0.025usec
113 #define NICPF_CLK_PER_INT_TICK 1
115 /* Time to wait before we decide that a SQ is stuck.
117 * Since both pkt rx and tx notifications are done with same CQ,
118 * when packets are being received at very high rate (eg: L2 forwarding)
119 * then freeing transmitted skbs will be delayed and watchdog
120 * will kick in, resetting interface. Hence keeping this value high.
122 #define NICVF_TX_TIMEOUT (50 * HZ)
124 struct nicvf_cq_poll
{
126 u8 cq_idx
; /* Completion queue index */
127 struct napi_struct napi
;
130 #define NIC_MAX_RSS_HASH_BITS 8
131 #define NIC_MAX_RSS_IDR_TBL_SIZE (1 << NIC_MAX_RSS_HASH_BITS)
132 #define RSS_HASH_KEY_SIZE 5 /* 320 bit key */
134 struct nicvf_rss_info
{
136 #define RSS_L2_EXTENDED_HASH_ENA BIT(0)
137 #define RSS_IP_HASH_ENA BIT(1)
138 #define RSS_TCP_HASH_ENA BIT(2)
139 #define RSS_TCP_SYN_DIS BIT(3)
140 #define RSS_UDP_HASH_ENA BIT(4)
141 #define RSS_L4_EXTENDED_HASH_ENA BIT(5)
142 #define RSS_ROCE_ENA BIT(6)
143 #define RSS_L3_BI_DIRECTION_ENA BIT(7)
144 #define RSS_L4_BI_DIRECTION_ENA BIT(8)
148 u8 ind_tbl
[NIC_MAX_RSS_IDR_TBL_SIZE
];
149 u64 key
[RSS_HASH_KEY_SIZE
];
150 } ____cacheline_aligned_in_smp
;
158 enum rx_stats_reg_offset
{
171 RX_DRP_L3BCAST
= 0xc,
172 RX_DRP_L3MCAST
= 0xd,
176 enum tx_stats_reg_offset
{
185 struct nicvf_hw_stats
{
193 u64 rx_drop_red_bytes
;
195 u64 rx_drop_overrun_bytes
;
198 u64 rx_drop_l3_bcast
;
199 u64 rx_drop_l3_mcast
;
211 struct nicvf_drv_stats
{
213 u64 rx_bgx_truncated_pkts
;
218 u64 rx_l2_hdr_malformed
;
221 u64 rx_l2_len_mismatch
;
225 u64 rx_ip_hdr_malformed
;
226 u64 rx_ip_payload_malformed
;
233 u64 rx_tcp_flag_errs
;
234 u64 rx_tcp_offset_errs
;
236 u64 rx_truncated_pkts
;
242 u64 tx_max_size_exceeded
;
243 u64 tx_imm_size_oflow
;
248 u64 tx_tstmp_conflict
;
249 u64 tx_tstmp_timeout
;
252 u64 tx_csum_overflow
;
254 /* driver debug stats */
255 u64 rcv_buffer_alloc_failures
;
261 struct u64_stats_sync syncp
;
265 struct nicvf
*pnicvf
;
266 struct net_device
*netdev
;
267 struct pci_dev
*pdev
;
268 void __iomem
*reg_base
;
269 #define MAX_QUEUES_PER_QSET 8
270 struct queue_set
*qs
;
271 struct nicvf_cq_poll
*napi
[8];
279 /* Receive buffer alloc */
283 bool rb_work_scheduled
;
284 struct page
*rb_page
;
285 struct delayed_work rbdr_work
;
286 struct tasklet_struct rbdr_task
;
290 #define MAX_SQS_PER_VF_SINGLE_NODE 5
291 #define MAX_SQS_PER_VF 11
292 struct nicvf
*snicvf
[MAX_SQS_PER_VF
];
306 bool loopback_supported
;
307 struct nicvf_rss_info rss_info
;
308 struct nicvf_pfc pfc
;
309 struct tasklet_struct qs_err_task
;
310 struct work_struct reset_task
;
312 /* Interrupt coalescing settings */
313 u32 cq_coalesce_usecs
;
317 struct nicvf_hw_stats hw_stats
;
318 struct nicvf_drv_stats __percpu
*drv_stats
;
319 struct bgx_stats bgx_stats
;
324 struct msix_entry msix_entries
[NIC_VF_MSIX_VECTORS
];
325 char irq_name
[NIC_VF_MSIX_VECTORS
][IFNAMSIZ
+ 15];
326 bool irq_allocated
[NIC_VF_MSIX_VECTORS
];
327 cpumask_var_t affinity_mask
[NIC_VF_MSIX_VECTORS
];
329 /* VF <-> PF mailbox communication */
332 bool set_mac_pending
;
333 } ____cacheline_aligned_in_smp
;
335 /* PF <--> VF Mailbox communication
336 * Eight 64bit registers are shared between PF and VF.
337 * Separate set for each VF.
338 * Writing '1' into last register mbx7 means end of message.
341 /* PF <--> VF mailbox communication */
342 #define NIC_PF_VF_MAILBOX_SIZE 2
343 #define NIC_MBOX_MSG_TIMEOUT 2000 /* ms */
345 /* Mailbox message types */
346 #define NIC_MBOX_MSG_READY 0x01 /* Is PF ready to rcv msgs */
347 #define NIC_MBOX_MSG_ACK 0x02 /* ACK the message received */
348 #define NIC_MBOX_MSG_NACK 0x03 /* NACK the message received */
349 #define NIC_MBOX_MSG_QS_CFG 0x04 /* Configure Qset */
350 #define NIC_MBOX_MSG_RQ_CFG 0x05 /* Configure receive queue */
351 #define NIC_MBOX_MSG_SQ_CFG 0x06 /* Configure Send queue */
352 #define NIC_MBOX_MSG_RQ_DROP_CFG 0x07 /* Configure receive queue */
353 #define NIC_MBOX_MSG_SET_MAC 0x08 /* Add MAC ID to DMAC filter */
354 #define NIC_MBOX_MSG_SET_MAX_FRS 0x09 /* Set max frame size */
355 #define NIC_MBOX_MSG_CPI_CFG 0x0A /* Config CPI, RSSI */
356 #define NIC_MBOX_MSG_RSS_SIZE 0x0B /* Get RSS indir_tbl size */
357 #define NIC_MBOX_MSG_RSS_CFG 0x0C /* Config RSS table */
358 #define NIC_MBOX_MSG_RSS_CFG_CONT 0x0D /* RSS config continuation */
359 #define NIC_MBOX_MSG_RQ_BP_CFG 0x0E /* RQ backpressure config */
360 #define NIC_MBOX_MSG_RQ_SW_SYNC 0x0F /* Flush inflight pkts to RQ */
361 #define NIC_MBOX_MSG_BGX_STATS 0x10 /* Get stats from BGX */
362 #define NIC_MBOX_MSG_BGX_LINK_CHANGE 0x11 /* BGX:LMAC link status */
363 #define NIC_MBOX_MSG_ALLOC_SQS 0x12 /* Allocate secondary Qset */
364 #define NIC_MBOX_MSG_NICVF_PTR 0x13 /* Send nicvf ptr to PF */
365 #define NIC_MBOX_MSG_PNICVF_PTR 0x14 /* Get primary qset nicvf ptr */
366 #define NIC_MBOX_MSG_SNICVF_PTR 0x15 /* Send sqet nicvf ptr to PVF */
367 #define NIC_MBOX_MSG_LOOPBACK 0x16 /* Set interface in loopback */
368 #define NIC_MBOX_MSG_RESET_STAT_COUNTER 0x17 /* Reset statistics counters */
369 #define NIC_MBOX_MSG_PFC 0x18 /* Pause frame control */
370 #define NIC_MBOX_MSG_CFG_DONE 0xF0 /* VF configuration done */
371 #define NIC_MBOX_MSG_SHUTDOWN 0xF1 /* VF is being shutdown */
379 u8 loopback_supported
:1;
380 u8 mac_addr
[ETH_ALEN
];
383 /* Qset configuration */
391 /* Receive queue configuration */
399 /* Send queue configuration */
408 /* Set VF's MAC address */
412 u8 mac_addr
[ETH_ALEN
];
415 /* Set Maximum frame size */
422 /* Set CPI algorithm type */
430 /* Get RSS table size */
437 /* Set RSS configuration */
444 #define RSS_IND_TBL_LEN_PER_MBX_MSG 8
445 u8 ind_tbl
[RSS_IND_TBL_LEN_PER_MBX_MSG
];
448 struct bgx_stats_msg
{
456 /* Physical interface link status */
457 struct bgx_link_status
{
465 /* Get Extra Qset IDs */
480 /* Set interface in loopback mode */
481 struct set_loopback
{
487 /* Reset statistics counters */
488 struct reset_stat_cfg
{
490 /* Bitmap to select NIC_PF_VNIC(vf_id)_RX_STAT(0..13) */
492 /* Bitmap to select NIC_PF_VNIC(vf_id)_TX_STAT(0..4) */
494 /* Bitmap to select NIC_PF_QS(0..127)_RQ(0..7)_STAT(0..1)
495 * bit14, bit15 NIC_PF_QS(vf_id)_RQ7_STAT(0..1)
496 * bit12, bit13 NIC_PF_QS(vf_id)_RQ6_STAT(0..1)
498 * bit2, bit3 NIC_PF_QS(vf_id)_RQ1_STAT(0..1)
499 * bit0, bit1 NIC_PF_QS(vf_id)_RQ0_STAT(0..1)
502 /* Bitmap to select NIC_PF_QS(0..127)_SQ(0..7)_STAT(0..1)
503 * bit14, bit15 NIC_PF_QS(vf_id)_SQ7_STAT(0..1)
504 * bit12, bit13 NIC_PF_QS(vf_id)_SQ6_STAT(0..1)
506 * bit2, bit3 NIC_PF_QS(vf_id)_SQ1_STAT(0..1)
507 * bit0, bit1 NIC_PF_QS(vf_id)_SQ0_STAT(0..1)
514 u8 get
; /* Get or set PFC settings */
520 /* 128 bit shared memory between PF and each VF */
522 struct { u8 msg
; } msg
;
523 struct nic_cfg_msg nic_cfg
;
524 struct qs_cfg_msg qs
;
525 struct rq_cfg_msg rq
;
526 struct sq_cfg_msg sq
;
527 struct set_mac_msg mac
;
528 struct set_frs_msg frs
;
529 struct cpi_cfg_msg cpi_cfg
;
530 struct rss_sz_msg rss_size
;
531 struct rss_cfg_msg rss_cfg
;
532 struct bgx_stats_msg bgx_stats
;
533 struct bgx_link_status link_status
;
534 struct sqs_alloc sqs_alloc
;
535 struct nicvf_ptr nicvf
;
536 struct set_loopback lbk
;
537 struct reset_stat_cfg reset_stat
;
541 #define NIC_NODE_ID_MASK 0x03
542 #define NIC_NODE_ID_SHIFT 44
544 static inline int nic_get_node_id(struct pci_dev
*pdev
)
546 u64 addr
= pci_resource_start(pdev
, PCI_CFG_REG_BAR_NUM
);
547 return ((addr
>> NIC_NODE_ID_SHIFT
) & NIC_NODE_ID_MASK
);
550 static inline bool pass1_silicon(struct pci_dev
*pdev
)
552 return (pdev
->revision
< 8) &&
553 (pdev
->subsystem_device
== PCI_SUBSYS_DEVID_88XX_NIC_PF
);
556 static inline bool pass2_silicon(struct pci_dev
*pdev
)
558 return (pdev
->revision
>= 8) &&
559 (pdev
->subsystem_device
== PCI_SUBSYS_DEVID_88XX_NIC_PF
);
562 int nicvf_set_real_num_queues(struct net_device
*netdev
,
563 int tx_queues
, int rx_queues
);
564 int nicvf_open(struct net_device
*netdev
);
565 int nicvf_stop(struct net_device
*netdev
);
566 int nicvf_send_msg_to_pf(struct nicvf
*vf
, union nic_mbx
*mbx
);
567 void nicvf_config_rss(struct nicvf
*nic
);
568 void nicvf_set_rss_key(struct nicvf
*nic
);
569 void nicvf_set_ethtool_ops(struct net_device
*netdev
);
570 void nicvf_update_stats(struct nicvf
*nic
);
571 void nicvf_update_lmac_stats(struct nicvf
*nic
);