blob: a0be076eba83ad2a1cf3283e740e35fe1728562c [file] [log] [blame]
Sunil Goutham4863dea2015-05-26 19:20:15 -07001/*
2 * Copyright (C) 2015 Cavium, Inc.
3 *
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.
7 */
8
9#ifndef NIC_H
10#define NIC_H
11
12#include <linux/netdevice.h>
13#include <linux/interrupt.h>
Robert Richterd768b672015-06-02 11:00:18 -070014#include <linux/pci.h>
Sunil Goutham4863dea2015-05-26 19:20:15 -070015#include "thunder_bgx.h"
16
17/* PCI device IDs */
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
22
23/* PCI BAR nos */
24#define PCI_CFG_REG_BAR_NUM 0
25#define PCI_MSIX_REG_BAR_NUM 4
26
27/* NIC SRIOV VF count */
28#define MAX_NUM_VFS_SUPPORTED 128
29#define DEFAULT_NUM_VF_ENABLED 8
30
31#define NIC_TNS_BYPASS_MODE 0
32#define NIC_TNS_MODE 1
33
34/* NIC priv flags */
35#define NIC_SRIOV_ENABLED BIT(0)
36
37/* Min/Max packet size */
38#define NIC_HW_MIN_FRS 64
39#define NIC_HW_MAX_FRS 9200 /* 9216 max packet including FCS */
40
41/* Max pkinds */
42#define NIC_MAX_PKIND 16
43
44/* Rx Channels */
45/* Receive channel configuration in TNS bypass mode
46 * Below is configuration in TNS bypass mode
47 * BGX0-LMAC0-CHAN0 - VNIC CHAN0
48 * BGX0-LMAC1-CHAN0 - VNIC CHAN16
49 * ...
50 * BGX1-LMAC0-CHAN0 - VNIC CHAN128
51 * ...
52 * BGX1-LMAC3-CHAN0 - VNIC CHAN174
53 */
54#define NIC_INTF_COUNT 2 /* Interfaces btw VNIC and TNS/BGX */
55#define NIC_CHANS_PER_INF 128
56#define NIC_MAX_CHANS (NIC_INTF_COUNT * NIC_CHANS_PER_INF)
57#define NIC_CPI_COUNT 2048 /* No of channel parse indices */
58
59/* TNS bypass mode: 1-1 mapping between VNIC and BGX:LMAC */
60#define NIC_MAX_BGX MAX_BGX_PER_CN88XX
61#define NIC_CPI_PER_BGX (NIC_CPI_COUNT / NIC_MAX_BGX)
62#define NIC_MAX_CPI_PER_LMAC 64 /* Max when CPI_ALG is IP diffserv */
63#define NIC_RSSI_PER_BGX (NIC_RSSI_COUNT / NIC_MAX_BGX)
64
65/* Tx scheduling */
66#define NIC_MAX_TL4 1024
67#define NIC_MAX_TL4_SHAPERS 256 /* 1 shaper for 4 TL4s */
68#define NIC_MAX_TL3 256
69#define NIC_MAX_TL3_SHAPERS 64 /* 1 shaper for 4 TL3s */
70#define NIC_MAX_TL2 64
71#define NIC_MAX_TL2_SHAPERS 2 /* 1 shaper for 32 TL2s */
72#define NIC_MAX_TL1 2
73
74/* TNS bypass mode */
75#define NIC_TL2_PER_BGX 32
76#define NIC_TL4_PER_BGX (NIC_MAX_TL4 / NIC_MAX_BGX)
77#define NIC_TL4_PER_LMAC (NIC_MAX_TL4 / NIC_CHANS_PER_INF)
78
79/* NIC VF Interrupts */
80#define NICVF_INTR_CQ 0
81#define NICVF_INTR_SQ 1
82#define NICVF_INTR_RBDR 2
83#define NICVF_INTR_PKT_DROP 3
84#define NICVF_INTR_TCP_TIMER 4
85#define NICVF_INTR_MBOX 5
86#define NICVF_INTR_QS_ERR 6
87
88#define NICVF_INTR_CQ_SHIFT 0
89#define NICVF_INTR_SQ_SHIFT 8
90#define NICVF_INTR_RBDR_SHIFT 16
91#define NICVF_INTR_PKT_DROP_SHIFT 20
92#define NICVF_INTR_TCP_TIMER_SHIFT 21
93#define NICVF_INTR_MBOX_SHIFT 22
94#define NICVF_INTR_QS_ERR_SHIFT 23
95
96#define NICVF_INTR_CQ_MASK (0xFF << NICVF_INTR_CQ_SHIFT)
97#define NICVF_INTR_SQ_MASK (0xFF << NICVF_INTR_SQ_SHIFT)
98#define NICVF_INTR_RBDR_MASK (0x03 << NICVF_INTR_RBDR_SHIFT)
99#define NICVF_INTR_PKT_DROP_MASK BIT(NICVF_INTR_PKT_DROP_SHIFT)
100#define NICVF_INTR_TCP_TIMER_MASK BIT(NICVF_INTR_TCP_TIMER_SHIFT)
101#define NICVF_INTR_MBOX_MASK BIT(NICVF_INTR_MBOX_SHIFT)
102#define NICVF_INTR_QS_ERR_MASK BIT(NICVF_INTR_QS_ERR_SHIFT)
103
104/* MSI-X interrupts */
105#define NIC_PF_MSIX_VECTORS 10
106#define NIC_VF_MSIX_VECTORS 20
107
108#define NIC_PF_INTR_ID_ECC0_SBE 0
109#define NIC_PF_INTR_ID_ECC0_DBE 1
110#define NIC_PF_INTR_ID_ECC1_SBE 2
111#define NIC_PF_INTR_ID_ECC1_DBE 3
112#define NIC_PF_INTR_ID_ECC2_SBE 4
113#define NIC_PF_INTR_ID_ECC2_DBE 5
114#define NIC_PF_INTR_ID_ECC3_SBE 6
115#define NIC_PF_INTR_ID_ECC3_DBE 7
116#define NIC_PF_INTR_ID_MBOX0 8
117#define NIC_PF_INTR_ID_MBOX1 9
118
119/* Global timer for CQ timer thresh interrupts
120 * Calculated for SCLK of 700Mhz
121 * value written should be a 1/16th of what is expected
122 *
123 * 1 tick per 0.05usec = value of 2.2
124 * This 10% would be covered in CQ timer thresh value
125 */
126#define NICPF_CLK_PER_INT_TICK 2
127
128struct nicvf_cq_poll {
129 u8 cq_idx; /* Completion queue index */
130 struct napi_struct napi;
131};
132
133#define NIC_RSSI_COUNT 4096 /* Total no of RSS indices */
134#define NIC_MAX_RSS_HASH_BITS 8
135#define NIC_MAX_RSS_IDR_TBL_SIZE (1 << NIC_MAX_RSS_HASH_BITS)
136#define RSS_HASH_KEY_SIZE 5 /* 320 bit key */
137
138struct nicvf_rss_info {
139 bool enable;
140#define RSS_L2_EXTENDED_HASH_ENA BIT(0)
141#define RSS_IP_HASH_ENA BIT(1)
142#define RSS_TCP_HASH_ENA BIT(2)
143#define RSS_TCP_SYN_DIS BIT(3)
144#define RSS_UDP_HASH_ENA BIT(4)
145#define RSS_L4_EXTENDED_HASH_ENA BIT(5)
146#define RSS_ROCE_ENA BIT(6)
147#define RSS_L3_BI_DIRECTION_ENA BIT(7)
148#define RSS_L4_BI_DIRECTION_ENA BIT(8)
149 u64 cfg;
150 u8 hash_bits;
151 u16 rss_size;
152 u8 ind_tbl[NIC_MAX_RSS_IDR_TBL_SIZE];
153 u64 key[RSS_HASH_KEY_SIZE];
154} ____cacheline_aligned_in_smp;
155
156enum rx_stats_reg_offset {
157 RX_OCTS = 0x0,
158 RX_UCAST = 0x1,
159 RX_BCAST = 0x2,
160 RX_MCAST = 0x3,
161 RX_RED = 0x4,
162 RX_RED_OCTS = 0x5,
163 RX_ORUN = 0x6,
164 RX_ORUN_OCTS = 0x7,
165 RX_FCS = 0x8,
166 RX_L2ERR = 0x9,
167 RX_DRP_BCAST = 0xa,
168 RX_DRP_MCAST = 0xb,
169 RX_DRP_L3BCAST = 0xc,
170 RX_DRP_L3MCAST = 0xd,
171 RX_STATS_ENUM_LAST,
172};
173
174enum tx_stats_reg_offset {
175 TX_OCTS = 0x0,
176 TX_UCAST = 0x1,
177 TX_BCAST = 0x2,
178 TX_MCAST = 0x3,
179 TX_DROP = 0x4,
180 TX_STATS_ENUM_LAST,
181};
182
183struct nicvf_hw_stats {
184 u64 rx_bytes_ok;
185 u64 rx_ucast_frames_ok;
186 u64 rx_bcast_frames_ok;
187 u64 rx_mcast_frames_ok;
188 u64 rx_fcs_errors;
189 u64 rx_l2_errors;
190 u64 rx_drop_red;
191 u64 rx_drop_red_bytes;
192 u64 rx_drop_overrun;
193 u64 rx_drop_overrun_bytes;
194 u64 rx_drop_bcast;
195 u64 rx_drop_mcast;
196 u64 rx_drop_l3_bcast;
197 u64 rx_drop_l3_mcast;
198 u64 tx_bytes_ok;
199 u64 tx_ucast_frames_ok;
200 u64 tx_bcast_frames_ok;
201 u64 tx_mcast_frames_ok;
202 u64 tx_drops;
203};
204
205struct nicvf_drv_stats {
206 /* Rx */
207 u64 rx_frames_ok;
208 u64 rx_frames_64;
209 u64 rx_frames_127;
210 u64 rx_frames_255;
211 u64 rx_frames_511;
212 u64 rx_frames_1023;
213 u64 rx_frames_1518;
214 u64 rx_frames_jumbo;
215 u64 rx_drops;
216 /* Tx */
217 u64 tx_frames_ok;
218 u64 tx_drops;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700219 u64 tx_tso;
Sunil Goutham74840b82015-07-29 16:49:42 +0300220 u64 txq_stop;
221 u64 txq_wake;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700222};
223
224struct nicvf {
225 struct net_device *netdev;
226 struct pci_dev *pdev;
227 u8 vf_id;
228 u8 node;
229 u8 tns_mode;
230 u16 mtu;
231 struct queue_set *qs;
232 void __iomem *reg_base;
233 bool link_up;
234 u8 duplex;
235 u32 speed;
236 struct page *rb_page;
237 u32 rb_page_offset;
238 bool rb_alloc_fail;
239 bool rb_work_scheduled;
240 struct delayed_work rbdr_work;
241 struct tasklet_struct rbdr_task;
242 struct tasklet_struct qs_err_task;
243 struct tasklet_struct cq_task;
244 struct nicvf_cq_poll *napi[8];
245 struct nicvf_rss_info rss_info;
246 u8 cpi_alg;
247 /* Interrupt coalescing settings */
248 u32 cq_coalesce_usecs;
249
250 u32 msg_enable;
251 struct nicvf_hw_stats stats;
252 struct nicvf_drv_stats drv_stats;
253 struct bgx_stats bgx_stats;
254 struct work_struct reset_task;
255
256 /* MSI-X */
257 bool msix_enabled;
258 u8 num_vec;
259 struct msix_entry msix_entries[NIC_VF_MSIX_VECTORS];
260 char irq_name[NIC_VF_MSIX_VECTORS][20];
261 bool irq_allocated[NIC_VF_MSIX_VECTORS];
262
263 bool pf_ready_to_rcv_msg;
264 bool pf_acked;
265 bool pf_nacked;
266 bool bgx_stats_acked;
Pavel Fedinbd049a92015-06-23 17:51:06 +0300267 bool set_mac_pending;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700268} ____cacheline_aligned_in_smp;
269
270/* PF <--> VF Mailbox communication
271 * Eight 64bit registers are shared between PF and VF.
272 * Separate set for each VF.
273 * Writing '1' into last register mbx7 means end of message.
274 */
275
276/* PF <--> VF mailbox communication */
277#define NIC_PF_VF_MAILBOX_SIZE 2
278#define NIC_MBOX_MSG_TIMEOUT 2000 /* ms */
279
280/* Mailbox message types */
281#define NIC_MBOX_MSG_READY 0x01 /* Is PF ready to rcv msgs */
282#define NIC_MBOX_MSG_ACK 0x02 /* ACK the message received */
283#define NIC_MBOX_MSG_NACK 0x03 /* NACK the message received */
284#define NIC_MBOX_MSG_QS_CFG 0x04 /* Configure Qset */
285#define NIC_MBOX_MSG_RQ_CFG 0x05 /* Configure receive queue */
286#define NIC_MBOX_MSG_SQ_CFG 0x06 /* Configure Send queue */
287#define NIC_MBOX_MSG_RQ_DROP_CFG 0x07 /* Configure receive queue */
288#define NIC_MBOX_MSG_SET_MAC 0x08 /* Add MAC ID to DMAC filter */
289#define NIC_MBOX_MSG_SET_MAX_FRS 0x09 /* Set max frame size */
290#define NIC_MBOX_MSG_CPI_CFG 0x0A /* Config CPI, RSSI */
291#define NIC_MBOX_MSG_RSS_SIZE 0x0B /* Get RSS indir_tbl size */
292#define NIC_MBOX_MSG_RSS_CFG 0x0C /* Config RSS table */
293#define NIC_MBOX_MSG_RSS_CFG_CONT 0x0D /* RSS config continuation */
294#define NIC_MBOX_MSG_RQ_BP_CFG 0x0E /* RQ backpressure config */
295#define NIC_MBOX_MSG_RQ_SW_SYNC 0x0F /* Flush inflight pkts to RQ */
296#define NIC_MBOX_MSG_BGX_STATS 0x10 /* Get stats from BGX */
297#define NIC_MBOX_MSG_BGX_LINK_CHANGE 0x11 /* BGX:LMAC link status */
298#define NIC_MBOX_MSG_CFG_DONE 0x12 /* VF configuration done */
299#define NIC_MBOX_MSG_SHUTDOWN 0x13 /* VF is being shutdown */
300
301struct nic_cfg_msg {
302 u8 msg;
303 u8 vf_id;
304 u8 tns_mode;
305 u8 node_id;
Aleksey Makarove610cb32015-06-02 11:00:21 -0700306 u8 mac_addr[ETH_ALEN];
Sunil Goutham4863dea2015-05-26 19:20:15 -0700307};
308
309/* Qset configuration */
310struct qs_cfg_msg {
311 u8 msg;
312 u8 num;
313 u64 cfg;
314};
315
316/* Receive queue configuration */
317struct rq_cfg_msg {
318 u8 msg;
319 u8 qs_num;
320 u8 rq_num;
321 u64 cfg;
322};
323
324/* Send queue configuration */
325struct sq_cfg_msg {
326 u8 msg;
327 u8 qs_num;
328 u8 sq_num;
329 u64 cfg;
330};
331
332/* Set VF's MAC address */
333struct set_mac_msg {
334 u8 msg;
335 u8 vf_id;
Aleksey Makarove610cb32015-06-02 11:00:21 -0700336 u8 mac_addr[ETH_ALEN];
Sunil Goutham4863dea2015-05-26 19:20:15 -0700337};
338
339/* Set Maximum frame size */
340struct set_frs_msg {
341 u8 msg;
342 u8 vf_id;
343 u16 max_frs;
344};
345
346/* Set CPI algorithm type */
347struct cpi_cfg_msg {
348 u8 msg;
349 u8 vf_id;
350 u8 rq_cnt;
351 u8 cpi_alg;
352};
353
354/* Get RSS table size */
355struct rss_sz_msg {
356 u8 msg;
357 u8 vf_id;
358 u16 ind_tbl_size;
359};
360
361/* Set RSS configuration */
362struct rss_cfg_msg {
363 u8 msg;
364 u8 vf_id;
365 u8 hash_bits;
366 u8 tbl_len;
367 u8 tbl_offset;
368#define RSS_IND_TBL_LEN_PER_MBX_MSG 8
369 u8 ind_tbl[RSS_IND_TBL_LEN_PER_MBX_MSG];
370};
371
372struct bgx_stats_msg {
373 u8 msg;
374 u8 vf_id;
375 u8 rx;
376 u8 idx;
377 u64 stats;
378};
379
380/* Physical interface link status */
381struct bgx_link_status {
382 u8 msg;
383 u8 link_up;
384 u8 duplex;
385 u32 speed;
386};
387
388/* 128 bit shared memory between PF and each VF */
389union nic_mbx {
390 struct { u8 msg; } msg;
391 struct nic_cfg_msg nic_cfg;
392 struct qs_cfg_msg qs;
393 struct rq_cfg_msg rq;
394 struct sq_cfg_msg sq;
395 struct set_mac_msg mac;
396 struct set_frs_msg frs;
397 struct cpi_cfg_msg cpi_cfg;
398 struct rss_sz_msg rss_size;
399 struct rss_cfg_msg rss_cfg;
400 struct bgx_stats_msg bgx_stats;
401 struct bgx_link_status link_status;
402};
403
Robert Richterd768b672015-06-02 11:00:18 -0700404#define NIC_NODE_ID_MASK 0x03
405#define NIC_NODE_ID_SHIFT 44
406
407static inline int nic_get_node_id(struct pci_dev *pdev)
408{
409 u64 addr = pci_resource_start(pdev, PCI_CFG_REG_BAR_NUM);
410 return ((addr >> NIC_NODE_ID_SHIFT) & NIC_NODE_ID_MASK);
411}
412
Sunil Goutham4863dea2015-05-26 19:20:15 -0700413int nicvf_set_real_num_queues(struct net_device *netdev,
414 int tx_queues, int rx_queues);
415int nicvf_open(struct net_device *netdev);
416int nicvf_stop(struct net_device *netdev);
417int nicvf_send_msg_to_pf(struct nicvf *vf, union nic_mbx *mbx);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700418void nicvf_config_rss(struct nicvf *nic);
419void nicvf_set_rss_key(struct nicvf *nic);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700420void nicvf_set_ethtool_ops(struct net_device *netdev);
421void nicvf_update_stats(struct nicvf *nic);
422void nicvf_update_lmac_stats(struct nicvf *nic);
423
424#endif /* NIC_H */