net: thunderx: Rework interrupt handling
[linux-2.6-block.git] / drivers / net / ethernet / cavium / thunder / nic.h
CommitLineData
4863dea3
SG
1/*
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>
d768b678 14#include <linux/pci.h>
4863dea3
SG
15#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
3d7a8aaa
SG
128/* Time to wait before we decide that a SQ is stuck.
129 *
130 * Since both pkt rx and tx notifications are done with same CQ,
131 * when packets are being received at very high rate (eg: L2 forwarding)
132 * then freeing transmitted skbs will be delayed and watchdog
133 * will kick in, resetting interface. Hence keeping this value high.
134 */
135#define NICVF_TX_TIMEOUT (50 * HZ)
136
4863dea3 137struct nicvf_cq_poll {
39ad6eea 138 struct nicvf *nicvf;
4863dea3
SG
139 u8 cq_idx; /* Completion queue index */
140 struct napi_struct napi;
141};
142
143#define NIC_RSSI_COUNT 4096 /* Total no of RSS indices */
144#define NIC_MAX_RSS_HASH_BITS 8
145#define NIC_MAX_RSS_IDR_TBL_SIZE (1 << NIC_MAX_RSS_HASH_BITS)
146#define RSS_HASH_KEY_SIZE 5 /* 320 bit key */
147
148struct nicvf_rss_info {
149 bool enable;
150#define RSS_L2_EXTENDED_HASH_ENA BIT(0)
151#define RSS_IP_HASH_ENA BIT(1)
152#define RSS_TCP_HASH_ENA BIT(2)
153#define RSS_TCP_SYN_DIS BIT(3)
154#define RSS_UDP_HASH_ENA BIT(4)
155#define RSS_L4_EXTENDED_HASH_ENA BIT(5)
156#define RSS_ROCE_ENA BIT(6)
157#define RSS_L3_BI_DIRECTION_ENA BIT(7)
158#define RSS_L4_BI_DIRECTION_ENA BIT(8)
159 u64 cfg;
160 u8 hash_bits;
161 u16 rss_size;
162 u8 ind_tbl[NIC_MAX_RSS_IDR_TBL_SIZE];
163 u64 key[RSS_HASH_KEY_SIZE];
164} ____cacheline_aligned_in_smp;
165
166enum rx_stats_reg_offset {
167 RX_OCTS = 0x0,
168 RX_UCAST = 0x1,
169 RX_BCAST = 0x2,
170 RX_MCAST = 0x3,
171 RX_RED = 0x4,
172 RX_RED_OCTS = 0x5,
173 RX_ORUN = 0x6,
174 RX_ORUN_OCTS = 0x7,
175 RX_FCS = 0x8,
176 RX_L2ERR = 0x9,
177 RX_DRP_BCAST = 0xa,
178 RX_DRP_MCAST = 0xb,
179 RX_DRP_L3BCAST = 0xc,
180 RX_DRP_L3MCAST = 0xd,
181 RX_STATS_ENUM_LAST,
182};
183
184enum tx_stats_reg_offset {
185 TX_OCTS = 0x0,
186 TX_UCAST = 0x1,
187 TX_BCAST = 0x2,
188 TX_MCAST = 0x3,
189 TX_DROP = 0x4,
190 TX_STATS_ENUM_LAST,
191};
192
193struct nicvf_hw_stats {
a2dc5ded
SG
194 u64 rx_bytes;
195 u64 rx_ucast_frames;
196 u64 rx_bcast_frames;
197 u64 rx_mcast_frames;
4863dea3
SG
198 u64 rx_fcs_errors;
199 u64 rx_l2_errors;
200 u64 rx_drop_red;
201 u64 rx_drop_red_bytes;
202 u64 rx_drop_overrun;
203 u64 rx_drop_overrun_bytes;
204 u64 rx_drop_bcast;
205 u64 rx_drop_mcast;
206 u64 rx_drop_l3_bcast;
207 u64 rx_drop_l3_mcast;
a2dc5ded
SG
208 u64 rx_bgx_truncated_pkts;
209 u64 rx_jabber_errs;
210 u64 rx_fcs_errs;
211 u64 rx_bgx_errs;
212 u64 rx_prel2_errs;
213 u64 rx_l2_hdr_malformed;
214 u64 rx_oversize;
215 u64 rx_undersize;
216 u64 rx_l2_len_mismatch;
217 u64 rx_l2_pclp;
218 u64 rx_ip_ver_errs;
219 u64 rx_ip_csum_errs;
220 u64 rx_ip_hdr_malformed;
221 u64 rx_ip_payload_malformed;
222 u64 rx_ip_ttl_errs;
223 u64 rx_l3_pclp;
224 u64 rx_l4_malformed;
225 u64 rx_l4_csum_errs;
226 u64 rx_udp_len_errs;
227 u64 rx_l4_port_errs;
228 u64 rx_tcp_flag_errs;
229 u64 rx_tcp_offset_errs;
230 u64 rx_l4_pclp;
231 u64 rx_truncated_pkts;
232
4863dea3
SG
233 u64 tx_bytes_ok;
234 u64 tx_ucast_frames_ok;
235 u64 tx_bcast_frames_ok;
236 u64 tx_mcast_frames_ok;
237 u64 tx_drops;
238};
239
240struct nicvf_drv_stats {
241 /* Rx */
242 u64 rx_frames_ok;
243 u64 rx_frames_64;
244 u64 rx_frames_127;
245 u64 rx_frames_255;
246 u64 rx_frames_511;
247 u64 rx_frames_1023;
248 u64 rx_frames_1518;
249 u64 rx_frames_jumbo;
250 u64 rx_drops;
a2dc5ded 251
4863dea3
SG
252 /* Tx */
253 u64 tx_frames_ok;
254 u64 tx_drops;
4863dea3 255 u64 tx_tso;
74840b83
SG
256 u64 txq_stop;
257 u64 txq_wake;
4863dea3
SG
258};
259
260struct nicvf {
261 struct net_device *netdev;
262 struct pci_dev *pdev;
263 u8 vf_id;
264 u8 node;
265 u8 tns_mode;
266 u16 mtu;
267 struct queue_set *qs;
268 void __iomem *reg_base;
269 bool link_up;
270 u8 duplex;
271 u32 speed;
272 struct page *rb_page;
273 u32 rb_page_offset;
274 bool rb_alloc_fail;
275 bool rb_work_scheduled;
276 struct delayed_work rbdr_work;
277 struct tasklet_struct rbdr_task;
278 struct tasklet_struct qs_err_task;
279 struct tasklet_struct cq_task;
280 struct nicvf_cq_poll *napi[8];
281 struct nicvf_rss_info rss_info;
282 u8 cpi_alg;
283 /* Interrupt coalescing settings */
284 u32 cq_coalesce_usecs;
285
286 u32 msg_enable;
a2dc5ded 287 struct nicvf_hw_stats hw_stats;
4863dea3
SG
288 struct nicvf_drv_stats drv_stats;
289 struct bgx_stats bgx_stats;
290 struct work_struct reset_task;
291
292 /* MSI-X */
293 bool msix_enabled;
294 u8 num_vec;
295 struct msix_entry msix_entries[NIC_VF_MSIX_VECTORS];
296 char irq_name[NIC_VF_MSIX_VECTORS][20];
297 bool irq_allocated[NIC_VF_MSIX_VECTORS];
298
6051cba7 299 /* VF <-> PF mailbox communication */
4863dea3
SG
300 bool pf_acked;
301 bool pf_nacked;
bd049a90 302 bool set_mac_pending;
4863dea3
SG
303} ____cacheline_aligned_in_smp;
304
305/* PF <--> VF Mailbox communication
306 * Eight 64bit registers are shared between PF and VF.
307 * Separate set for each VF.
308 * Writing '1' into last register mbx7 means end of message.
309 */
310
311/* PF <--> VF mailbox communication */
312#define NIC_PF_VF_MAILBOX_SIZE 2
313#define NIC_MBOX_MSG_TIMEOUT 2000 /* ms */
314
315/* Mailbox message types */
316#define NIC_MBOX_MSG_READY 0x01 /* Is PF ready to rcv msgs */
317#define NIC_MBOX_MSG_ACK 0x02 /* ACK the message received */
318#define NIC_MBOX_MSG_NACK 0x03 /* NACK the message received */
319#define NIC_MBOX_MSG_QS_CFG 0x04 /* Configure Qset */
320#define NIC_MBOX_MSG_RQ_CFG 0x05 /* Configure receive queue */
321#define NIC_MBOX_MSG_SQ_CFG 0x06 /* Configure Send queue */
322#define NIC_MBOX_MSG_RQ_DROP_CFG 0x07 /* Configure receive queue */
323#define NIC_MBOX_MSG_SET_MAC 0x08 /* Add MAC ID to DMAC filter */
324#define NIC_MBOX_MSG_SET_MAX_FRS 0x09 /* Set max frame size */
325#define NIC_MBOX_MSG_CPI_CFG 0x0A /* Config CPI, RSSI */
326#define NIC_MBOX_MSG_RSS_SIZE 0x0B /* Get RSS indir_tbl size */
327#define NIC_MBOX_MSG_RSS_CFG 0x0C /* Config RSS table */
328#define NIC_MBOX_MSG_RSS_CFG_CONT 0x0D /* RSS config continuation */
329#define NIC_MBOX_MSG_RQ_BP_CFG 0x0E /* RQ backpressure config */
330#define NIC_MBOX_MSG_RQ_SW_SYNC 0x0F /* Flush inflight pkts to RQ */
331#define NIC_MBOX_MSG_BGX_STATS 0x10 /* Get stats from BGX */
332#define NIC_MBOX_MSG_BGX_LINK_CHANGE 0x11 /* BGX:LMAC link status */
333#define NIC_MBOX_MSG_CFG_DONE 0x12 /* VF configuration done */
334#define NIC_MBOX_MSG_SHUTDOWN 0x13 /* VF is being shutdown */
335
336struct nic_cfg_msg {
337 u8 msg;
338 u8 vf_id;
339 u8 tns_mode;
340 u8 node_id;
e610cb32 341 u8 mac_addr[ETH_ALEN];
4863dea3
SG
342};
343
344/* Qset configuration */
345struct qs_cfg_msg {
346 u8 msg;
347 u8 num;
348 u64 cfg;
349};
350
351/* Receive queue configuration */
352struct rq_cfg_msg {
353 u8 msg;
354 u8 qs_num;
355 u8 rq_num;
356 u64 cfg;
357};
358
359/* Send queue configuration */
360struct sq_cfg_msg {
361 u8 msg;
362 u8 qs_num;
363 u8 sq_num;
364 u64 cfg;
365};
366
367/* Set VF's MAC address */
368struct set_mac_msg {
369 u8 msg;
370 u8 vf_id;
e610cb32 371 u8 mac_addr[ETH_ALEN];
4863dea3
SG
372};
373
374/* Set Maximum frame size */
375struct set_frs_msg {
376 u8 msg;
377 u8 vf_id;
378 u16 max_frs;
379};
380
381/* Set CPI algorithm type */
382struct cpi_cfg_msg {
383 u8 msg;
384 u8 vf_id;
385 u8 rq_cnt;
386 u8 cpi_alg;
387};
388
389/* Get RSS table size */
390struct rss_sz_msg {
391 u8 msg;
392 u8 vf_id;
393 u16 ind_tbl_size;
394};
395
396/* Set RSS configuration */
397struct rss_cfg_msg {
398 u8 msg;
399 u8 vf_id;
400 u8 hash_bits;
401 u8 tbl_len;
402 u8 tbl_offset;
403#define RSS_IND_TBL_LEN_PER_MBX_MSG 8
404 u8 ind_tbl[RSS_IND_TBL_LEN_PER_MBX_MSG];
405};
406
407struct bgx_stats_msg {
408 u8 msg;
409 u8 vf_id;
410 u8 rx;
411 u8 idx;
412 u64 stats;
413};
414
415/* Physical interface link status */
416struct bgx_link_status {
417 u8 msg;
418 u8 link_up;
419 u8 duplex;
420 u32 speed;
421};
422
423/* 128 bit shared memory between PF and each VF */
424union nic_mbx {
425 struct { u8 msg; } msg;
426 struct nic_cfg_msg nic_cfg;
427 struct qs_cfg_msg qs;
428 struct rq_cfg_msg rq;
429 struct sq_cfg_msg sq;
430 struct set_mac_msg mac;
431 struct set_frs_msg frs;
432 struct cpi_cfg_msg cpi_cfg;
433 struct rss_sz_msg rss_size;
434 struct rss_cfg_msg rss_cfg;
435 struct bgx_stats_msg bgx_stats;
436 struct bgx_link_status link_status;
437};
438
d768b678
RR
439#define NIC_NODE_ID_MASK 0x03
440#define NIC_NODE_ID_SHIFT 44
441
442static inline int nic_get_node_id(struct pci_dev *pdev)
443{
444 u64 addr = pci_resource_start(pdev, PCI_CFG_REG_BAR_NUM);
445 return ((addr >> NIC_NODE_ID_SHIFT) & NIC_NODE_ID_MASK);
446}
447
4863dea3
SG
448int nicvf_set_real_num_queues(struct net_device *netdev,
449 int tx_queues, int rx_queues);
450int nicvf_open(struct net_device *netdev);
451int nicvf_stop(struct net_device *netdev);
452int nicvf_send_msg_to_pf(struct nicvf *vf, union nic_mbx *mbx);
4863dea3
SG
453void nicvf_config_rss(struct nicvf *nic);
454void nicvf_set_rss_key(struct nicvf *nic);
4863dea3
SG
455void nicvf_set_ethtool_ops(struct net_device *netdev);
456void nicvf_update_stats(struct nicvf *nic);
457void nicvf_update_lmac_stats(struct nicvf *nic);
458
459#endif /* NIC_H */