]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/net/ethernet/qlogic/qlcnic/qlcnic.h
qlcnic: Add PVID support for 84xx adapters
[mirror_ubuntu-zesty-kernel.git] / drivers / net / ethernet / qlogic / qlcnic / qlcnic.h
CommitLineData
af19b491 1/*
40839129 2 * QLogic qlcnic NIC Driver
577ae39d 3 * Copyright (c) 2009-2013 QLogic Corporation
af19b491 4 *
40839129 5 * See LICENSE.qlcnic for copyright and licensing details.
af19b491
AKS
6 */
7
8#ifndef _QLCNIC_H_
9#define _QLCNIC_H_
10
11#include <linux/module.h>
12#include <linux/kernel.h>
13#include <linux/types.h>
14#include <linux/ioport.h>
15#include <linux/pci.h>
16#include <linux/netdevice.h>
17#include <linux/etherdevice.h>
18#include <linux/ip.h>
19#include <linux/in.h>
20#include <linux/tcp.h>
21#include <linux/skbuff.h>
22#include <linux/firmware.h>
af19b491
AKS
23#include <linux/ethtool.h>
24#include <linux/mii.h>
25#include <linux/timer.h>
26
27#include <linux/vmalloc.h>
28
29#include <linux/io.h>
30#include <asm/byteorder.h>
b9796a14
AC
31#include <linux/bitops.h>
32#include <linux/if_vlan.h>
af19b491
AKS
33
34#include "qlcnic_hdr.h"
7f966452
SC
35#include "qlcnic_hw.h"
36#include "qlcnic_83xx_hw.h"
af19b491
AKS
37
38#define _QLCNIC_LINUX_MAJOR 5
f4983547 39#define _QLCNIC_LINUX_MINOR 2
de98ac5e
SC
40#define _QLCNIC_LINUX_SUBVERSION 46
41#define QLCNIC_LINUX_VERSIONID "5.2.46"
96f8118c 42#define QLCNIC_DRV_IDC_VER 0x01
d4066833
SC
43#define QLCNIC_DRIVER_VERSION ((_QLCNIC_LINUX_MAJOR << 16) |\
44 (_QLCNIC_LINUX_MINOR << 8) | (_QLCNIC_LINUX_SUBVERSION))
af19b491
AKS
45
46#define QLCNIC_VERSION_CODE(a, b, c) (((a) << 24) + ((b) << 16) + (c))
47#define _major(v) (((v) >> 24) & 0xff)
48#define _minor(v) (((v) >> 16) & 0xff)
49#define _build(v) ((v) & 0xffff)
50
51/* version in image has weird encoding:
52 * 7:0 - major
53 * 15:8 - minor
54 * 31:16 - build (little endian)
55 */
56#define QLCNIC_DECODE_VERSION(v) \
57 QLCNIC_VERSION_CODE(((v) & 0xff), (((v) >> 8) & 0xff), ((v) >> 16))
58
8f891387 59#define QLCNIC_MIN_FW_VERSION QLCNIC_VERSION_CODE(4, 4, 2)
af19b491
AKS
60#define QLCNIC_NUM_FLASH_SECTORS (64)
61#define QLCNIC_FLASH_SECTOR_SIZE (64 * 1024)
62#define QLCNIC_FLASH_TOTAL_SIZE (QLCNIC_NUM_FLASH_SECTORS \
63 * QLCNIC_FLASH_SECTOR_SIZE)
64
65#define RCV_DESC_RINGSIZE(rds_ring) \
66 (sizeof(struct rcv_desc) * (rds_ring)->num_desc)
67#define RCV_BUFF_RINGSIZE(rds_ring) \
68 (sizeof(struct qlcnic_rx_buffer) * rds_ring->num_desc)
69#define STATUS_DESC_RINGSIZE(sds_ring) \
70 (sizeof(struct status_desc) * (sds_ring)->num_desc)
71#define TX_BUFF_RINGSIZE(tx_ring) \
72 (sizeof(struct qlcnic_cmd_buffer) * tx_ring->num_desc)
73#define TX_DESC_RINGSIZE(tx_ring) \
74 (sizeof(struct cmd_desc_type0) * tx_ring->num_desc)
75
76#define QLCNIC_P3P_A0 0x50
a2050c7e 77#define QLCNIC_P3P_C0 0x58
af19b491
AKS
78
79#define QLCNIC_IS_REVISION_P3P(REVISION) (REVISION >= QLCNIC_P3P_A0)
80
81#define FIRST_PAGE_GROUP_START 0
82#define FIRST_PAGE_GROUP_END 0x100000
83
ff1b1bf8
SV
84#define P3P_MAX_MTU (9600)
85#define P3P_MIN_MTU (68)
af19b491
AKS
86#define QLCNIC_MAX_ETHERHDR 32 /* This contains some padding */
87
ff1b1bf8
SV
88#define QLCNIC_P3P_RX_BUF_MAX_LEN (QLCNIC_MAX_ETHERHDR + ETH_DATA_LEN)
89#define QLCNIC_P3P_RX_JUMBO_BUF_MAX_LEN (QLCNIC_MAX_ETHERHDR + P3P_MAX_MTU)
af19b491
AKS
90#define QLCNIC_CT_DEFAULT_RX_BUF_LEN 2048
91#define QLCNIC_LRO_BUFFER_EXTRA 2048
92
af19b491 93/* Tx defines */
91a403ca 94#define QLCNIC_MAX_FRAGS_PER_TX 14
ef71ff83
RB
95#define MAX_TSO_HEADER_DESC 2
96#define MGMT_CMD_DESC_RESV 4
97#define TX_STOP_THRESH ((MAX_SKB_FRAGS >> 2) + MAX_TSO_HEADER_DESC \
98 + MGMT_CMD_DESC_RESV)
af19b491 99#define QLCNIC_MAX_TX_TIMEOUTS 2
af19b491
AKS
100/*
101 * Following are the states of the Phantom. Phantom will set them and
102 * Host will read to check if the fields are correct.
103 */
104#define PHAN_INITIALIZE_FAILED 0xffff
105#define PHAN_INITIALIZE_COMPLETE 0xff01
106
107/* Host writes the following to notify that it has done the init-handshake */
108#define PHAN_INITIALIZE_ACK 0xf00f
109#define PHAN_PEG_RCV_INITIALIZED 0xff01
110
111#define NUM_RCV_DESC_RINGS 3
af19b491
AKS
112
113#define RCV_RING_NORMAL 0
114#define RCV_RING_JUMBO 1
af19b491
AKS
115
116#define MIN_CMD_DESCRIPTORS 64
117#define MIN_RCV_DESCRIPTORS 64
118#define MIN_JUMBO_DESCRIPTORS 32
119
120#define MAX_CMD_DESCRIPTORS 1024
121#define MAX_RCV_DESCRIPTORS_1G 4096
122#define MAX_RCV_DESCRIPTORS_10G 8192
90d19005 123#define MAX_RCV_DESCRIPTORS_VF 2048
af19b491
AKS
124#define MAX_JUMBO_RCV_DESCRIPTORS_1G 512
125#define MAX_JUMBO_RCV_DESCRIPTORS_10G 1024
af19b491
AKS
126
127#define DEFAULT_RCV_DESCRIPTORS_1G 2048
128#define DEFAULT_RCV_DESCRIPTORS_10G 4096
90d19005 129#define DEFAULT_RCV_DESCRIPTORS_VF 1024
251b036a 130#define MAX_RDS_RINGS 2
af19b491
AKS
131
132#define get_next_index(index, length) \
133 (((index) + 1) & ((length) - 1))
134
af19b491
AKS
135/*
136 * Following data structures describe the descriptors that will be used.
137 * Added fileds of tcpHdrSize and ipHdrSize, The driver needs to do it only when
138 * we are doing LSO (above the 1500 size packet) only.
139 */
af19b491
AKS
140struct cmd_desc_type0 {
141 u8 tcp_hdr_offset; /* For LSO only */
142 u8 ip_hdr_offset; /* For LSO only */
143 __le16 flags_opcode; /* 15:13 unused, 12:7 opcode, 6:0 flags */
144 __le32 nfrags__length; /* 31:8 total len, 7:0 frag count */
145
146 __le64 addr_buffer2;
147
148 __le16 reference_handle;
149 __le16 mss;
150 u8 port_ctxid; /* 7:4 ctxid 3:0 port */
151 u8 total_hdr_length; /* LSO only : MAC+IP+TCP Hdr size */
152 __le16 conn_id; /* IPSec offoad only */
153
154 __le64 addr_buffer3;
155 __le64 addr_buffer1;
156
157 __le16 buffer_length[4];
158
159 __le64 addr_buffer4;
160
2e9d722d 161 u8 eth_addr[ETH_ALEN];
af19b491
AKS
162 __le16 vlan_TCI;
163
164} __attribute__ ((aligned(64)));
165
166/* Note: sizeof(rcv_desc) should always be a mutliple of 2 */
167struct rcv_desc {
168 __le16 reference_handle;
169 __le16 reserved;
170 __le32 buffer_length; /* allocated buffer length (usually 2K) */
171 __le64 addr_buffer;
b1fc6d3c 172} __packed;
af19b491 173
af19b491
AKS
174struct status_desc {
175 __le64 status_desc_data[2];
176} __attribute__ ((aligned(16)));
177
178/* UNIFIED ROMIMAGE */
179#define QLCNIC_UNI_FW_MIN_SIZE 0xc8000
180#define QLCNIC_UNI_DIR_SECT_PRODUCT_TBL 0x0
181#define QLCNIC_UNI_DIR_SECT_BOOTLD 0x6
182#define QLCNIC_UNI_DIR_SECT_FW 0x7
183
184/*Offsets */
185#define QLCNIC_UNI_CHIP_REV_OFF 10
186#define QLCNIC_UNI_FLAGS_OFF 11
187#define QLCNIC_UNI_BIOS_VERSION_OFF 12
188#define QLCNIC_UNI_BOOTLD_IDX_OFF 27
189#define QLCNIC_UNI_FIRMWARE_IDX_OFF 29
190
191struct uni_table_desc{
63507592
SS
192 __le32 findex;
193 __le32 num_entries;
194 __le32 entry_size;
195 __le32 reserved[5];
af19b491
AKS
196};
197
198struct uni_data_desc{
63507592
SS
199 __le32 findex;
200 __le32 size;
201 __le32 reserved[5];
af19b491
AKS
202};
203
0e5f20b6 204/* Flash Defines and Structures */
205#define QLCNIC_FLT_LOCATION 0x3F1000
d865ebb4 206#define QLCNIC_FDT_LOCATION 0x3F0000
a2050c7e
SV
207#define QLCNIC_B0_FW_IMAGE_REGION 0x74
208#define QLCNIC_C0_FW_IMAGE_REGION 0x97
f8d54811 209#define QLCNIC_BOOTLD_REGION 0X72
0e5f20b6 210struct qlcnic_flt_header {
211 u16 version;
212 u16 len;
213 u16 checksum;
214 u16 reserved;
215};
216
217struct qlcnic_flt_entry {
218 u8 region;
219 u8 reserved0;
220 u8 attrib;
221 u8 reserved1;
222 u32 size;
223 u32 start_addr;
f8d54811 224 u32 end_addr;
0e5f20b6 225};
226
d865ebb4
SC
227/* Flash Descriptor Table */
228struct qlcnic_fdt {
229 u32 valid;
230 u16 ver;
231 u16 len;
232 u16 cksum;
233 u16 unused;
234 u8 model[16];
235 u16 mfg_id;
236 u16 id;
237 u8 flag;
238 u8 erase_cmd;
239 u8 alt_erase_cmd;
240 u8 write_enable_cmd;
241 u8 write_enable_bits;
242 u8 write_statusreg_cmd;
243 u8 unprotected_sec_cmd;
244 u8 read_manuf_cmd;
245 u32 block_size;
246 u32 alt_block_size;
247 u32 flash_size;
248 u32 write_enable_data;
249 u8 readid_addr_len;
250 u8 write_disable_bits;
251 u8 read_dev_id_len;
252 u8 chip_erase_cmd;
253 u16 read_timeo;
254 u8 protected_sec_cmd;
255 u8 resvd[65];
256};
af19b491
AKS
257/* Magic number to let user know flash is programmed */
258#define QLCNIC_BDINFO_MAGIC 0x12345678
259
ff1b1bf8
SV
260#define QLCNIC_BRDTYPE_P3P_REF_QG 0x0021
261#define QLCNIC_BRDTYPE_P3P_HMEZ 0x0022
262#define QLCNIC_BRDTYPE_P3P_10G_CX4_LP 0x0023
263#define QLCNIC_BRDTYPE_P3P_4_GB 0x0024
264#define QLCNIC_BRDTYPE_P3P_IMEZ 0x0025
265#define QLCNIC_BRDTYPE_P3P_10G_SFP_PLUS 0x0026
266#define QLCNIC_BRDTYPE_P3P_10000_BASE_T 0x0027
267#define QLCNIC_BRDTYPE_P3P_XG_LOM 0x0028
268#define QLCNIC_BRDTYPE_P3P_4_GB_MM 0x0029
269#define QLCNIC_BRDTYPE_P3P_10G_SFP_CT 0x002a
270#define QLCNIC_BRDTYPE_P3P_10G_SFP_QT 0x002b
271#define QLCNIC_BRDTYPE_P3P_10G_CX4 0x0031
272#define QLCNIC_BRDTYPE_P3P_10G_XFP 0x0032
273#define QLCNIC_BRDTYPE_P3P_10G_TP 0x0080
af19b491 274
2e9d722d
AC
275#define QLCNIC_MSIX_TABLE_OFFSET 0x44
276
af19b491
AKS
277/* Flash memory map */
278#define QLCNIC_BRDCFG_START 0x4000 /* board config */
279#define QLCNIC_BOOTLD_START 0x10000 /* bootld */
280#define QLCNIC_IMAGE_START 0x43000 /* compressed image */
281#define QLCNIC_USER_START 0x3E8000 /* Firmare info */
282
283#define QLCNIC_FW_VERSION_OFFSET (QLCNIC_USER_START+0x408)
284#define QLCNIC_FW_SIZE_OFFSET (QLCNIC_USER_START+0x40c)
285#define QLCNIC_FW_SERIAL_NUM_OFFSET (QLCNIC_USER_START+0x81c)
286#define QLCNIC_BIOS_VERSION_OFFSET (QLCNIC_USER_START+0x83c)
287
288#define QLCNIC_BRDTYPE_OFFSET (QLCNIC_BRDCFG_START+0x8)
289#define QLCNIC_FW_MAGIC_OFFSET (QLCNIC_BRDCFG_START+0x128)
290
291#define QLCNIC_FW_MIN_SIZE (0x3fffff)
292#define QLCNIC_UNIFIED_ROMIMAGE 0
293#define QLCNIC_FLASH_ROMIMAGE 1
294#define QLCNIC_UNKNOWN_ROMIMAGE 0xff
295
296#define QLCNIC_UNIFIED_ROMIMAGE_NAME "phanfw.bin"
297#define QLCNIC_FLASH_ROMIMAGE_NAME "flash"
298
299extern char qlcnic_driver_name[];
300
629263ac
SC
301extern int qlcnic_use_msi;
302extern int qlcnic_use_msi_x;
303extern int qlcnic_auto_fw_reset;
304extern int qlcnic_load_fw_file;
629263ac 305
af19b491
AKS
306/* Number of status descriptors to handle per interrupt */
307#define MAX_STATUS_HANDLE (64)
308
309/*
310 * qlcnic_skb_frag{} is to contain mapping info for each SG list. This
311 * has to be freed when DMA is complete. This is part of qlcnic_tx_buffer{}.
312 */
313struct qlcnic_skb_frag {
314 u64 dma;
315 u64 length;
316};
317
af19b491
AKS
318/* Following defines are for the state of the buffers */
319#define QLCNIC_BUFFER_FREE 0
320#define QLCNIC_BUFFER_BUSY 1
321
322/*
323 * There will be one qlcnic_buffer per skb packet. These will be
324 * used to save the dma info for pci_unmap_page()
325 */
326struct qlcnic_cmd_buffer {
327 struct sk_buff *skb;
ef71ff83 328 struct qlcnic_skb_frag frag_array[MAX_SKB_FRAGS + 1];
af19b491
AKS
329 u32 frag_count;
330};
331
332/* In rx_buffer, we do not need multiple fragments as is a single buffer */
333struct qlcnic_rx_buffer {
b1fc6d3c 334 u16 ref_handle;
af19b491 335 struct sk_buff *skb;
b1fc6d3c 336 struct list_head list;
af19b491 337 u64 dma;
af19b491
AKS
338};
339
340/* Board types */
341#define QLCNIC_GBE 0x01
342#define QLCNIC_XGBE 0x02
343
8816d009
AC
344/*
345 * Interrupt coalescing defaults. The defaults are for 1500 MTU. It is
346 * adjusted based on configured MTU.
347 */
be273dc1
HM
348#define QLCNIC_INTR_COAL_TYPE_RX 1
349#define QLCNIC_INTR_COAL_TYPE_TX 2
350
351#define QLCNIC_DEF_INTR_COALESCE_RX_TIME_US 3
352#define QLCNIC_DEF_INTR_COALESCE_RX_PACKETS 256
353
354#define QLCNIC_DEF_INTR_COALESCE_TX_TIME_US 64
355#define QLCNIC_DEF_INTR_COALESCE_TX_PACKETS 64
8816d009
AC
356
357#define QLCNIC_INTR_DEFAULT 0x04
358#define QLCNIC_CONFIG_INTR_COALESCE 3
7e38d04b 359#define QLCNIC_DEV_INFO_SIZE 1
8816d009
AC
360
361struct qlcnic_nic_intr_coalesce {
362 u8 type;
363 u8 sts_ring_mask;
364 u16 rx_packets;
365 u16 rx_time_us;
be273dc1
HM
366 u16 tx_packets;
367 u16 tx_time_us;
8816d009
AC
368 u16 flag;
369 u32 timer_out;
370};
371
18f2f616 372struct qlcnic_dump_template_hdr {
63507592
SS
373 u32 type;
374 u32 offset;
375 u32 size;
376 u32 cap_mask;
377 u32 num_entries;
378 u32 version;
379 u32 timestamp;
380 u32 checksum;
381 u32 drv_cap_mask;
382 u32 sys_info[3];
383 u32 saved_state[16];
384 u32 cap_sizes[8];
4e60ac46 385 u32 ocm_wnd_reg[16];
63507592 386 u32 rsvd[0];
18f2f616
AC
387};
388
389struct qlcnic_fw_dump {
390 u8 clr; /* flag to indicate if dump is cleared */
9d6a6440 391 u8 enable; /* enable/disable dump */
18f2f616
AC
392 u32 size; /* total size of the dump */
393 void *data; /* dump data area */
394 struct qlcnic_dump_template_hdr *tmpl_hdr;
9baf1aa9
SS
395 dma_addr_t phys_addr;
396 void *dma_buffer;
397 bool use_pex_dma;
18f2f616
AC
398};
399
af19b491
AKS
400/*
401 * One hardware_context{} per adapter
402 * contains interrupt info as well shared hardware info.
403 */
404struct qlcnic_hardware_context {
405 void __iomem *pci_base0;
406 void __iomem *ocm_win_crb;
407
408 unsigned long pci_len0;
409
af19b491
AKS
410 rwlock_t crb_lock;
411 struct mutex mem_lock;
412
af19b491
AKS
413 u8 revision_id;
414 u8 pci_func;
415 u8 linkup;
22c8c934 416 u8 loopback_state;
79788450
SC
417 u8 beacon_state;
418 u8 has_link_events;
419 u8 fw_type;
420 u8 physical_port;
421 u8 reset_context;
422 u8 msix_supported;
423 u8 max_mac_filters;
424 u8 mc_enabled;
425 u8 max_mc_count;
426 u8 diag_test;
427 u8 num_msix;
428 u8 nic_mode;
429 char diag_cnt;
430
52e493d0 431 u16 max_uc_count;
af19b491
AKS
432 u16 port_type;
433 u16 board_type;
b938662d 434 u16 supported_type;
8816d009 435
79788450
SC
436 u16 link_speed;
437 u16 link_duplex;
438 u16 link_autoneg;
439 u16 module_type;
440
441 u16 op_mode;
442 u16 switch_mode;
443 u16 max_tx_ques;
444 u16 max_rx_ques;
445 u16 max_mtu;
446 u32 msg_enable;
447 u16 act_pci_func;
ee9e8b6c 448 u16 max_pci_func;
728a98b8 449
79788450 450 u32 capabilities;
db131786 451 u32 extra_capability[3];
79788450
SC
452 u32 temp;
453 u32 int_vec_bit;
454 u32 fw_hal_version;
7f966452 455 u32 port_config;
79788450 456 struct qlcnic_hardware_ops *hw_ops;
8816d009 457 struct qlcnic_nic_intr_coalesce coal;
18f2f616 458 struct qlcnic_fw_dump fw_dump;
d865ebb4 459 struct qlcnic_fdt fdt;
81d0aeb0 460 struct qlc_83xx_reset reset;
629263ac
SC
461 struct qlc_83xx_idc idc;
462 struct qlc_83xx_fw_info fw_info;
7f966452 463 struct qlcnic_intrpt_config *intr_tbl;
02feda17 464 struct qlcnic_sriov *sriov;
7e2cf4fe 465 u32 *reg_tbl;
7f966452
SC
466 u32 *ext_reg_tbl;
467 u32 mbox_aen[QLC_83XX_MBX_AEN_CNT];
468 u32 mbox_reg[4];
e5c4e6c6 469 struct qlcnic_mailbox *mailbox;
af19b491
AKS
470};
471
472struct qlcnic_adapter_stats {
473 u64 xmitcalled;
474 u64 xmitfinished;
475 u64 rxdropped;
476 u64 txdropped;
477 u64 csummed;
478 u64 rx_pkts;
479 u64 lro_pkts;
480 u64 rxbytes;
481 u64 txbytes;
8bfe8b91
SC
482 u64 lrobytes;
483 u64 lso_frames;
484 u64 xmit_on;
485 u64 xmit_off;
486 u64 skb_alloc_failure;
8ae6df97
AKS
487 u64 null_rxbuf;
488 u64 rx_dma_map_error;
489 u64 tx_dma_map_error;
7f966452 490 u64 spurious_intr;
4be41e92 491 u64 mac_filter_limit_overrun;
af19b491
AKS
492};
493
494/*
495 * Rcv Descriptor Context. One such per Rcv Descriptor. There may
496 * be one Rcv Descriptor for normal packets, one for jumbo and may be others.
497 */
498struct qlcnic_host_rds_ring {
036d61f0
AC
499 void __iomem *crb_rcv_producer;
500 struct rcv_desc *desc_head;
501 struct qlcnic_rx_buffer *rx_buf_arr;
af19b491 502 u32 num_desc;
036d61f0 503 u32 producer;
af19b491
AKS
504 u32 dma_size;
505 u32 skb_size;
506 u32 flags;
af19b491
AKS
507 struct list_head free_list;
508 spinlock_t lock;
509 dma_addr_t phys_addr;
036d61f0 510} ____cacheline_internodealigned_in_smp;
af19b491
AKS
511
512struct qlcnic_host_sds_ring {
513 u32 consumer;
514 u32 num_desc;
515 void __iomem *crb_sts_consumer;
af19b491
AKS
516
517 struct status_desc *desc_head;
518 struct qlcnic_adapter *adapter;
519 struct napi_struct napi;
520 struct list_head free_list[NUM_RCV_DESC_RINGS];
521
036d61f0 522 void __iomem *crb_intr_mask;
af19b491
AKS
523 int irq;
524
525 dma_addr_t phys_addr;
ddb2e174 526 char name[IFNAMSIZ + 12];
036d61f0 527} ____cacheline_internodealigned_in_smp;
af19b491
AKS
528
529struct qlcnic_host_tx_ring {
4be41e92 530 int irq;
7f966452 531 void __iomem *crb_intr_mask;
ddb2e174 532 char name[IFNAMSIZ + 12];
79788450 533 u16 ctx_id;
af19b491 534 u32 producer;
af19b491 535 u32 sw_consumer;
af19b491 536 u32 num_desc;
036d61f0 537 void __iomem *crb_cmd_producer;
af19b491 538 struct cmd_desc_type0 *desc_head;
4be41e92
SC
539 struct qlcnic_adapter *adapter;
540 struct napi_struct napi;
036d61f0
AC
541 struct qlcnic_cmd_buffer *cmd_buf_arr;
542 __le32 *hw_consumer;
543
af19b491
AKS
544 dma_addr_t phys_addr;
545 dma_addr_t hw_cons_phys_addr;
036d61f0
AC
546 struct netdev_queue *txq;
547} ____cacheline_internodealigned_in_smp;
af19b491
AKS
548
549/*
550 * Receive context. There is one such structure per instance of the
551 * receive processing. Any state information that is relevant to
552 * the receive, and is must be in this structure. The global data may be
553 * present elsewhere.
554 */
555struct qlcnic_recv_context {
b1fc6d3c
AC
556 struct qlcnic_host_rds_ring *rds_rings;
557 struct qlcnic_host_sds_ring *sds_rings;
af19b491
AKS
558 u32 state;
559 u16 context_id;
560 u16 virt_port;
561
af19b491
AKS
562};
563
564/* HW context creation */
565
566#define QLCNIC_OS_CRB_RETRY_COUNT 4000
af19b491
AKS
567
568#define QLCNIC_CDRP_CMD_BIT 0x80000000
569
570/*
571 * All responses must have the QLCNIC_CDRP_CMD_BIT cleared
572 * in the crb QLCNIC_CDRP_CRB_OFFSET.
573 */
574#define QLCNIC_CDRP_FORM_RSP(rsp) (rsp)
575#define QLCNIC_CDRP_IS_RSP(rsp) (((rsp) & QLCNIC_CDRP_CMD_BIT) == 0)
576
577#define QLCNIC_CDRP_RSP_OK 0x00000001
578#define QLCNIC_CDRP_RSP_FAIL 0x00000002
579#define QLCNIC_CDRP_RSP_TIMEOUT 0x00000003
580
581/*
582 * All commands must have the QLCNIC_CDRP_CMD_BIT set in
583 * the crb QLCNIC_CDRP_CRB_OFFSET.
584 */
585#define QLCNIC_CDRP_FORM_CMD(cmd) (QLCNIC_CDRP_CMD_BIT | (cmd))
af19b491
AKS
586
587#define QLCNIC_RCODE_SUCCESS 0
e42ede22 588#define QLCNIC_RCODE_INVALID_ARGS 6
7e610caa 589#define QLCNIC_RCODE_NOT_SUPPORTED 9
e42ede22
JK
590#define QLCNIC_RCODE_NOT_PERMITTED 10
591#define QLCNIC_RCODE_NOT_IMPL 15
592#define QLCNIC_RCODE_INVALID 16
af19b491
AKS
593#define QLCNIC_RCODE_TIMEOUT 17
594#define QLCNIC_DESTROY_CTX_RESET 0
595
596/*
597 * Capabilities Announced
598 */
599#define QLCNIC_CAP0_LEGACY_CONTEXT (1)
600#define QLCNIC_CAP0_LEGACY_MN (1 << 2)
601#define QLCNIC_CAP0_LSO (1 << 6)
602#define QLCNIC_CAP0_JUMBO_CONTIGUOUS (1 << 7)
603#define QLCNIC_CAP0_LRO_CONTIGUOUS (1 << 8)
8f891387 604#define QLCNIC_CAP0_VALIDOFF (1 << 11)
cae82d49 605#define QLCNIC_CAP0_LRO_MSS (1 << 21)
af19b491
AKS
606
607/*
608 * Context state
609 */
d626ad4d 610#define QLCNIC_HOST_CTX_STATE_FREED 0
af19b491
AKS
611#define QLCNIC_HOST_CTX_STATE_ACTIVE 2
612
613/*
614 * Rx context
615 */
616
617struct qlcnic_hostrq_sds_ring {
618 __le64 host_phys_addr; /* Ring base addr */
619 __le32 ring_size; /* Ring entries */
620 __le16 msi_index;
621 __le16 rsvd; /* Padding */
b1fc6d3c 622} __packed;
af19b491
AKS
623
624struct qlcnic_hostrq_rds_ring {
625 __le64 host_phys_addr; /* Ring base addr */
626 __le64 buff_size; /* Packet buffer size */
627 __le32 ring_size; /* Ring entries */
628 __le32 ring_kind; /* Class of ring */
b1fc6d3c 629} __packed;
af19b491
AKS
630
631struct qlcnic_hostrq_rx_ctx {
632 __le64 host_rsp_dma_addr; /* Response dma'd here */
633 __le32 capabilities[4]; /* Flag bit vector */
634 __le32 host_int_crb_mode; /* Interrupt crb usage */
635 __le32 host_rds_crb_mode; /* RDS crb usage */
636 /* These ring offsets are relative to data[0] below */
637 __le32 rds_ring_offset; /* Offset to RDS config */
638 __le32 sds_ring_offset; /* Offset to SDS config */
639 __le16 num_rds_rings; /* Count of RDS rings */
640 __le16 num_sds_rings; /* Count of SDS rings */
8f891387 641 __le16 valid_field_offset;
642 u8 txrx_sds_binding;
643 u8 msix_handler;
644 u8 reserved[128]; /* reserve space for future expansion*/
af19b491
AKS
645 /* MUST BE 64-bit aligned.
646 The following is packed:
647 - N hostrq_rds_rings
648 - N hostrq_sds_rings */
649 char data[0];
b1fc6d3c 650} __packed;
af19b491
AKS
651
652struct qlcnic_cardrsp_rds_ring{
653 __le32 host_producer_crb; /* Crb to use */
654 __le32 rsvd1; /* Padding */
b1fc6d3c 655} __packed;
af19b491
AKS
656
657struct qlcnic_cardrsp_sds_ring {
658 __le32 host_consumer_crb; /* Crb to use */
659 __le32 interrupt_crb; /* Crb to use */
b1fc6d3c 660} __packed;
af19b491
AKS
661
662struct qlcnic_cardrsp_rx_ctx {
663 /* These ring offsets are relative to data[0] below */
664 __le32 rds_ring_offset; /* Offset to RDS config */
665 __le32 sds_ring_offset; /* Offset to SDS config */
666 __le32 host_ctx_state; /* Starting State */
667 __le32 num_fn_per_port; /* How many PCI fn share the port */
668 __le16 num_rds_rings; /* Count of RDS rings */
669 __le16 num_sds_rings; /* Count of SDS rings */
670 __le16 context_id; /* Handle for context */
671 u8 phys_port; /* Physical id of port */
672 u8 virt_port; /* Virtual/Logical id of port */
673 u8 reserved[128]; /* save space for future expansion */
674 /* MUST BE 64-bit aligned.
675 The following is packed:
676 - N cardrsp_rds_rings
677 - N cardrs_sds_rings */
678 char data[0];
b1fc6d3c 679} __packed;
af19b491
AKS
680
681#define SIZEOF_HOSTRQ_RX(HOSTRQ_RX, rds_rings, sds_rings) \
682 (sizeof(HOSTRQ_RX) + \
683 (rds_rings)*(sizeof(struct qlcnic_hostrq_rds_ring)) + \
684 (sds_rings)*(sizeof(struct qlcnic_hostrq_sds_ring)))
685
686#define SIZEOF_CARDRSP_RX(CARDRSP_RX, rds_rings, sds_rings) \
687 (sizeof(CARDRSP_RX) + \
688 (rds_rings)*(sizeof(struct qlcnic_cardrsp_rds_ring)) + \
689 (sds_rings)*(sizeof(struct qlcnic_cardrsp_sds_ring)))
690
691/*
692 * Tx context
693 */
694
695struct qlcnic_hostrq_cds_ring {
696 __le64 host_phys_addr; /* Ring base addr */
697 __le32 ring_size; /* Ring entries */
698 __le32 rsvd; /* Padding */
b1fc6d3c 699} __packed;
af19b491
AKS
700
701struct qlcnic_hostrq_tx_ctx {
702 __le64 host_rsp_dma_addr; /* Response dma'd here */
703 __le64 cmd_cons_dma_addr; /* */
704 __le64 dummy_dma_addr; /* */
705 __le32 capabilities[4]; /* Flag bit vector */
706 __le32 host_int_crb_mode; /* Interrupt crb usage */
707 __le32 rsvd1; /* Padding */
708 __le16 rsvd2; /* Padding */
709 __le16 interrupt_ctl;
710 __le16 msi_index;
711 __le16 rsvd3; /* Padding */
712 struct qlcnic_hostrq_cds_ring cds_ring; /* Desc of cds ring */
713 u8 reserved[128]; /* future expansion */
b1fc6d3c 714} __packed;
af19b491
AKS
715
716struct qlcnic_cardrsp_cds_ring {
717 __le32 host_producer_crb; /* Crb to use */
718 __le32 interrupt_crb; /* Crb to use */
b1fc6d3c 719} __packed;
af19b491
AKS
720
721struct qlcnic_cardrsp_tx_ctx {
722 __le32 host_ctx_state; /* Starting state */
723 __le16 context_id; /* Handle for context */
724 u8 phys_port; /* Physical id of port */
725 u8 virt_port; /* Virtual/Logical id of port */
726 struct qlcnic_cardrsp_cds_ring cds_ring; /* Card cds settings */
727 u8 reserved[128]; /* future expansion */
b1fc6d3c 728} __packed;
af19b491
AKS
729
730#define SIZEOF_HOSTRQ_TX(HOSTRQ_TX) (sizeof(HOSTRQ_TX))
731#define SIZEOF_CARDRSP_TX(CARDRSP_TX) (sizeof(CARDRSP_TX))
732
733/* CRB */
734
735#define QLCNIC_HOST_RDS_CRB_MODE_UNIQUE 0
736#define QLCNIC_HOST_RDS_CRB_MODE_SHARED 1
737#define QLCNIC_HOST_RDS_CRB_MODE_CUSTOM 2
738#define QLCNIC_HOST_RDS_CRB_MODE_MAX 3
739
740#define QLCNIC_HOST_INT_CRB_MODE_UNIQUE 0
741#define QLCNIC_HOST_INT_CRB_MODE_SHARED 1
742#define QLCNIC_HOST_INT_CRB_MODE_NORX 2
743#define QLCNIC_HOST_INT_CRB_MODE_NOTX 3
744#define QLCNIC_HOST_INT_CRB_MODE_NORXTX 4
745
746
747/* MAC */
748
ff1b1bf8 749#define MC_COUNT_P3P 38
af19b491
AKS
750
751#define QLCNIC_MAC_NOOP 0
752#define QLCNIC_MAC_ADD 1
753#define QLCNIC_MAC_DEL 2
03c5d770
AKS
754#define QLCNIC_MAC_VLAN_ADD 3
755#define QLCNIC_MAC_VLAN_DEL 4
af19b491
AKS
756
757struct qlcnic_mac_list_s {
758 struct list_head list;
759 uint8_t mac_addr[ETH_ALEN+2];
760};
761
fe1adc6b
JK
762/* MAC Learn */
763#define NO_MAC_LEARN 0
764#define DRV_MAC_LEARN 1
765#define FDB_MAC_LEARN 2
766
af19b491
AKS
767#define QLCNIC_HOST_REQUEST 0x13
768#define QLCNIC_REQUEST 0x14
769
770#define QLCNIC_MAC_EVENT 0x1
771
772#define QLCNIC_IP_UP 2
773#define QLCNIC_IP_DOWN 3
774
22c8c934 775#define QLCNIC_ILB_MODE 0x1
e1428d26 776#define QLCNIC_ELB_MODE 0x2
22c8c934
SC
777
778#define QLCNIC_LINKEVENT 0x1
779#define QLCNIC_LB_RESPONSE 0x2
780#define QLCNIC_IS_LB_CONFIGURED(VAL) \
781 (VAL == (QLCNIC_LINKEVENT | QLCNIC_LB_RESPONSE))
782
af19b491
AKS
783/*
784 * Driver --> Firmware
785 */
b1fc6d3c
AC
786#define QLCNIC_H2C_OPCODE_CONFIG_RSS 0x1
787#define QLCNIC_H2C_OPCODE_CONFIG_INTR_COALESCE 0x3
788#define QLCNIC_H2C_OPCODE_CONFIG_LED 0x4
789#define QLCNIC_H2C_OPCODE_LRO_REQUEST 0x7
790#define QLCNIC_H2C_OPCODE_SET_MAC_RECEIVE_MODE 0xc
791#define QLCNIC_H2C_OPCODE_CONFIG_IPADDR 0x12
22c8c934 792
b1fc6d3c
AC
793#define QLCNIC_H2C_OPCODE_GET_LINKEVENT 0x15
794#define QLCNIC_H2C_OPCODE_CONFIG_BRIDGING 0x17
795#define QLCNIC_H2C_OPCODE_CONFIG_HW_LRO 0x18
22c8c934
SC
796#define QLCNIC_H2C_OPCODE_CONFIG_LOOPBACK 0x13
797
af19b491
AKS
798/*
799 * Firmware --> Driver
800 */
801
22c8c934 802#define QLCNIC_C2H_OPCODE_CONFIG_LOOPBACK 0x8f
7f966452 803#define QLCNIC_C2H_OPCODE_GET_LINKEVENT_RESPONSE 0x8D
af19b491
AKS
804
805#define VPORT_MISS_MODE_DROP 0 /* drop all unmatched */
806#define VPORT_MISS_MODE_ACCEPT_ALL 1 /* accept all packets */
807#define VPORT_MISS_MODE_ACCEPT_MULTI 2 /* accept unmatched multicast */
808
809#define QLCNIC_LRO_REQUEST_CLEANUP 4
810
811/* Capabilites received */
ac8d0c4f
AC
812#define QLCNIC_FW_CAPABILITY_TSO BIT_1
813#define QLCNIC_FW_CAPABILITY_BDG BIT_8
814#define QLCNIC_FW_CAPABILITY_FVLANTX BIT_9
815#define QLCNIC_FW_CAPABILITY_HW_LRO BIT_10
fef0c060 816#define QLCNIC_FW_CAPABILITY_MULTI_LOOPBACK BIT_27
cae82d49
RB
817#define QLCNIC_FW_CAPABILITY_MORE_CAPS BIT_31
818
819#define QLCNIC_FW_CAPABILITY_2_LRO_MAX_TCP_SEG BIT_2
776e7bde 820#define QLCNIC_FW_CAP2_HW_LRO_IPV6 BIT_3
8af3f33d 821#define QLCNIC_FW_CAPABILITY_SET_DRV_VER BIT_5
487042af 822#define QLCNIC_FW_CAPABILITY_2_BEACON BIT_7
af19b491
AKS
823
824/* module types */
825#define LINKEVENT_MODULE_NOT_PRESENT 1
826#define LINKEVENT_MODULE_OPTICAL_UNKNOWN 2
827#define LINKEVENT_MODULE_OPTICAL_SRLR 3
828#define LINKEVENT_MODULE_OPTICAL_LRM 4
829#define LINKEVENT_MODULE_OPTICAL_SFP_1G 5
830#define LINKEVENT_MODULE_TWINAX_UNSUPPORTED_CABLE 6
831#define LINKEVENT_MODULE_TWINAX_UNSUPPORTED_CABLELEN 7
832#define LINKEVENT_MODULE_TWINAX 8
833
834#define LINKSPEED_10GBPS 10000
835#define LINKSPEED_1GBPS 1000
836#define LINKSPEED_100MBPS 100
837#define LINKSPEED_10MBPS 10
838
839#define LINKSPEED_ENCODED_10MBPS 0
840#define LINKSPEED_ENCODED_100MBPS 1
841#define LINKSPEED_ENCODED_1GBPS 2
842
843#define LINKEVENT_AUTONEG_DISABLED 0
844#define LINKEVENT_AUTONEG_ENABLED 1
845
846#define LINKEVENT_HALF_DUPLEX 0
847#define LINKEVENT_FULL_DUPLEX 1
848
849#define LINKEVENT_LINKSPEED_MBPS 0
850#define LINKEVENT_LINKSPEED_ENCODED 1
851
af19b491
AKS
852/* firmware response header:
853 * 63:58 - message type
854 * 57:56 - owner
855 * 55:53 - desc count
856 * 52:48 - reserved
857 * 47:40 - completion id
858 * 39:32 - opcode
859 * 31:16 - error code
860 * 15:00 - reserved
861 */
862#define qlcnic_get_nic_msg_opcode(msg_hdr) \
863 ((msg_hdr >> 32) & 0xFF)
864
865struct qlcnic_fw_msg {
866 union {
867 struct {
868 u64 hdr;
869 u64 body[7];
870 };
871 u64 words[8];
872 };
873};
874
875struct qlcnic_nic_req {
876 __le64 qhdr;
877 __le64 req_hdr;
878 __le64 words[6];
b1fc6d3c 879} __packed;
af19b491
AKS
880
881struct qlcnic_mac_req {
882 u8 op;
883 u8 tag;
884 u8 mac_addr[6];
885};
886
7e56cac4
SC
887struct qlcnic_vlan_req {
888 __le16 vlan_id;
889 __le16 rsvd[3];
b1fc6d3c 890} __packed;
7e56cac4 891
b501595c
SC
892struct qlcnic_ipaddr {
893 __be32 ipv4;
894 __be32 ipv6[4];
895};
896
af19b491
AKS
897#define QLCNIC_MSI_ENABLED 0x02
898#define QLCNIC_MSIX_ENABLED 0x04
7f966452 899#define QLCNIC_LRO_ENABLED 0x01
24763d80 900#define QLCNIC_LRO_DISABLED 0x00
af19b491
AKS
901#define QLCNIC_BRIDGE_ENABLED 0X10
902#define QLCNIC_DIAG_ENABLED 0x20
0e33c664 903#define QLCNIC_ESWITCH_ENABLED 0x40
0866d96d 904#define QLCNIC_ADAPTER_INITIALIZED 0x80
8cf61f89 905#define QLCNIC_TAGGING_ENABLED 0x100
fe4d434d 906#define QLCNIC_MACSPOOF 0x200
7373373d 907#define QLCNIC_MAC_OVERRIDE_DISABLED 0x400
ee07c1a7 908#define QLCNIC_PROMISC_DISABLED 0x800
b0044bcf 909#define QLCNIC_NEED_FLR 0x1000
602ca6f0 910#define QLCNIC_FW_RESET_OWNER 0x2000
032a13c7 911#define QLCNIC_FW_HANG 0x4000
cae82d49 912#define QLCNIC_FW_LRO_MSS_CAP 0x8000
da6c8063 913#define QLCNIC_TX_INTR_SHARED 0x10000
147a9088 914#define QLCNIC_APP_CHANGED_FLAGS 0x20000
af19b491
AKS
915#define QLCNIC_IS_MSI_FAMILY(adapter) \
916 ((adapter)->flags & (QLCNIC_MSI_ENABLED | QLCNIC_MSIX_ENABLED))
147a9088
SS
917#define QLCNIC_IS_TSO_CAPABLE(adapter) \
918 ((adapter)->ahw->capabilities & QLCNIC_FW_CAPABILITY_TSO)
af19b491 919
487042af
HM
920#define QLCNIC_BEACON_EANBLE 0xC
921#define QLCNIC_BEACON_DISABLE 0xD
922
f94bc1e7 923#define QLCNIC_DEF_NUM_STS_DESC_RINGS 4
af19b491
AKS
924#define QLCNIC_MSIX_TBL_SPACE 8192
925#define QLCNIC_PCI_REG_MSIX_TBL 0x44
2e9d722d 926#define QLCNIC_MSIX_TBL_PGSIZE 4096
af19b491
AKS
927
928#define QLCNIC_NETDEV_WEIGHT 128
929#define QLCNIC_ADAPTER_UP_MAGIC 777
930
931#define __QLCNIC_FW_ATTACHED 0
932#define __QLCNIC_DEV_UP 1
933#define __QLCNIC_RESETTING 2
934#define __QLCNIC_START_FW 4
451724c8 935#define __QLCNIC_AER 5
89b4208e 936#define __QLCNIC_DIAG_RES_ALLOC 6
728a98b8 937#define __QLCNIC_LED_ENABLE 7
02feda17
RB
938#define __QLCNIC_ELB_INPROGRESS 8
939#define __QLCNIC_SRIOV_ENABLE 10
940#define __QLCNIC_SRIOV_CAPABLE 11
7ed3ce48 941#define __QLCNIC_MBX_POLL_ENABLE 12
4690a7e4 942#define __QLCNIC_DIAG_MODE 13
af19b491 943
7eb9855d 944#define QLCNIC_INTERRUPT_TEST 1
cdaff185 945#define QLCNIC_LOOPBACK_TEST 2
c75822a3 946#define QLCNIC_LED_TEST 3
7eb9855d 947
b5e5492c 948#define QLCNIC_FILTER_AGE 80
e5edb7b1 949#define QLCNIC_READD_AGE 20
b5e5492c 950#define QLCNIC_LB_MAX_FILTERS 64
7f966452 951#define QLCNIC_LB_BUCKET_SIZE 32
629263ac 952#define QLCNIC_ILB_MAX_RCV_LOOP 10
fef0c060 953
b5e5492c
AKS
954struct qlcnic_filter {
955 struct hlist_node fnode;
956 u8 faddr[ETH_ALEN];
f80bc8fe 957 u16 vlan_id;
b5e5492c
AKS
958 unsigned long ftime;
959};
960
961struct qlcnic_filter_hash {
962 struct hlist_head *fhead;
963 u8 fnum;
7f966452
SC
964 u16 fmax;
965 u16 fbucket_size;
b5e5492c
AKS
966};
967
e5c4e6c6
MC
968/* Mailbox specific data structures */
969struct qlcnic_mailbox {
970 struct workqueue_struct *work_q;
971 struct qlcnic_adapter *adapter;
972 struct qlcnic_mbx_ops *ops;
973 struct work_struct work;
974 struct completion completion;
975 struct list_head cmd_q;
976 unsigned long status;
977 spinlock_t queue_lock; /* Mailbox queue lock */
978 spinlock_t aen_lock; /* Mailbox response/AEN lock */
979 atomic_t rsp_status;
980 u32 num_cmds;
981};
982
af19b491 983struct qlcnic_adapter {
b1fc6d3c
AC
984 struct qlcnic_hardware_context *ahw;
985 struct qlcnic_recv_context *recv_ctx;
986 struct qlcnic_host_tx_ring *tx_ring;
af19b491
AKS
987 struct net_device *netdev;
988 struct pci_dev *pdev;
af19b491 989
b1fc6d3c
AC
990 unsigned long state;
991 u32 flags;
af19b491 992
79788450 993 int max_drv_tx_rings;
af19b491
AKS
994 u16 num_txd;
995 u16 num_rxd;
996 u16 num_jumbo_rxd;
90d19005
SC
997 u16 max_rxd;
998 u16 max_jumbo_rxd;
af19b491
AKS
999
1000 u8 max_rds_rings;
1001 u8 max_sds_rings;
7f966452 1002 u8 rx_csum;
af19b491 1003 u8 portnum;
af19b491 1004
af19b491
AKS
1005 u8 fw_wait_cnt;
1006 u8 fw_fail_cnt;
1007 u8 tx_timeo_cnt;
1008 u8 need_fw_reset;
f036e4f4 1009 u8 reset_ctx_cnt;
af19b491 1010
af19b491 1011 u16 is_up;
91b7282b
RB
1012 u16 rx_pvid;
1013 u16 tx_pvid;
2e9d722d 1014
af19b491 1015 u32 irq;
4e70812b 1016 u32 heartbeat;
af19b491
AKS
1017
1018 u8 dev_state;
aa5e18c0
SC
1019 u8 reset_ack_timeo;
1020 u8 dev_init_timeo;
af19b491
AKS
1021
1022 u8 mac_addr[ETH_ALEN];
1023
6df900e9 1024 u64 dev_rst_time;
fe1adc6b
JK
1025 bool drv_mac_learn;
1026 bool fdb_mac_learn;
b9796a14 1027 unsigned long vlans[BITS_TO_LONGS(VLAN_N_VID)];
d865ebb4 1028 u8 flash_mfg_id;
346fe763 1029 struct qlcnic_npar_info *npars;
2e9d722d
AC
1030 struct qlcnic_eswitch *eswitch;
1031 struct qlcnic_nic_template *nic_ops;
1032
af19b491 1033 struct qlcnic_adapter_stats stats;
b1fc6d3c 1034 struct list_head mac_list;
af19b491
AKS
1035
1036 void __iomem *tgt_mask_reg;
1037 void __iomem *tgt_status_reg;
1038 void __iomem *crb_int_state_reg;
1039 void __iomem *isr_int_vec;
1040
f94bc1e7 1041 struct msix_entry *msix_entries;
7f966452 1042 struct workqueue_struct *qlcnic_wq;
af19b491 1043 struct delayed_work fw_work;
7f966452 1044 struct delayed_work idc_aen_work;
7ed3ce48 1045 struct delayed_work mbx_poll_work;
af19b491 1046
b5e5492c 1047 struct qlcnic_filter_hash fhash;
53643a75 1048 struct qlcnic_filter_hash rx_fhash;
e8b508ef 1049 struct list_head vf_mc_list;
b5e5492c 1050
b1fc6d3c
AC
1051 spinlock_t tx_clean_lock;
1052 spinlock_t mac_learn_lock;
53643a75
SS
1053 /* spinlock for catching rcv filters for eswitch traffic */
1054 spinlock_t rx_mac_learn_lock;
63507592 1055 u32 file_prd_off; /*File fw product offset*/
af19b491 1056 u32 fw_version;
147a9088 1057 u32 offload_flags;
af19b491
AKS
1058 const struct firmware *fw;
1059};
1060
63507592 1061struct qlcnic_info_le {
2e9d722d 1062 __le16 pci_func;
63507592 1063 __le16 op_mode; /* 1 = Priv, 2 = NP, 3 = NP passthru */
2e9d722d 1064 __le16 phys_port;
63507592 1065 __le16 switch_mode; /* 0 = disabled, 1 = int, 2 = ext */
2e9d722d
AC
1066
1067 __le32 capabilities;
1068 u8 max_mac_filters;
1069 u8 reserved1;
1070 __le16 max_mtu;
1071
1072 __le16 max_tx_ques;
1073 __le16 max_rx_ques;
1074 __le16 min_tx_bw;
1075 __le16 max_tx_bw;
7f966452
SC
1076 __le32 op_type;
1077 __le16 max_bw_reg_offset;
1078 __le16 max_linkspeed_reg_offset;
1079 __le32 capability1;
1080 __le32 capability2;
1081 __le32 capability3;
1082 __le16 max_tx_mac_filters;
1083 __le16 max_rx_mcast_mac_filters;
1084 __le16 max_rx_ucast_mac_filters;
1085 __le16 max_rx_ip_addr;
1086 __le16 max_rx_lro_flow;
1087 __le16 max_rx_status_rings;
1088 __le16 max_rx_buf_rings;
1089 __le16 max_tx_vlan_keys;
1090 u8 total_pf;
1091 u8 total_rss_engines;
1092 __le16 max_vports;
02feda17
RB
1093 __le16 linkstate_reg_offset;
1094 __le16 bit_offsets;
1095 __le16 max_local_ipv6_addrs;
1096 __le16 max_remote_ipv6_addrs;
1097 u8 reserved2[56];
b1fc6d3c 1098} __packed;
2e9d722d 1099
63507592
SS
1100struct qlcnic_info {
1101 u16 pci_func;
1102 u16 op_mode;
1103 u16 phys_port;
1104 u16 switch_mode;
1105 u32 capabilities;
1106 u8 max_mac_filters;
63507592
SS
1107 u16 max_mtu;
1108 u16 max_tx_ques;
1109 u16 max_rx_ques;
1110 u16 min_tx_bw;
1111 u16 max_tx_bw;
7f966452
SC
1112 u32 op_type;
1113 u16 max_bw_reg_offset;
1114 u16 max_linkspeed_reg_offset;
1115 u32 capability1;
1116 u32 capability2;
1117 u32 capability3;
1118 u16 max_tx_mac_filters;
1119 u16 max_rx_mcast_mac_filters;
1120 u16 max_rx_ucast_mac_filters;
1121 u16 max_rx_ip_addr;
1122 u16 max_rx_lro_flow;
1123 u16 max_rx_status_rings;
1124 u16 max_rx_buf_rings;
1125 u16 max_tx_vlan_keys;
1126 u8 total_pf;
1127 u8 total_rss_engines;
1128 u16 max_vports;
02feda17
RB
1129 u16 linkstate_reg_offset;
1130 u16 bit_offsets;
1131 u16 max_local_ipv6_addrs;
1132 u16 max_remote_ipv6_addrs;
63507592 1133};
2e9d722d 1134
63507592
SS
1135struct qlcnic_pci_info_le {
1136 __le16 id; /* pci function id */
1137 __le16 active; /* 1 = Enabled */
1138 __le16 type; /* 1 = NIC, 2 = FCoE, 3 = iSCSI */
1139 __le16 default_port; /* default port number */
1140
1141 __le16 tx_min_bw; /* Multiple of 100mbpc */
2e9d722d
AC
1142 __le16 tx_max_bw;
1143 __le16 reserved1[2];
1144
1145 u8 mac[ETH_ALEN];
7f966452
SC
1146 __le16 func_count;
1147 u8 reserved2[104];
1148
b1fc6d3c 1149} __packed;
2e9d722d 1150
63507592
SS
1151struct qlcnic_pci_info {
1152 u16 id;
1153 u16 active;
1154 u16 type;
1155 u16 default_port;
1156 u16 tx_min_bw;
1157 u16 tx_max_bw;
1158 u8 mac[ETH_ALEN];
7f966452 1159 u16 func_count;
63507592
SS
1160};
1161
346fe763 1162struct qlcnic_npar_info {
4e8acb01 1163 u16 pvid;
cea8975e
AC
1164 u16 min_bw;
1165 u16 max_bw;
346fe763
RB
1166 u8 phy_port;
1167 u8 type;
1168 u8 active;
1169 u8 enable_pm;
1170 u8 dest_npar;
346fe763 1171 u8 discard_tagged;
7373373d 1172 u8 mac_override;
4e8acb01
RB
1173 u8 mac_anti_spoof;
1174 u8 promisc_mode;
1175 u8 offload_flags;
bff57d8e 1176 u8 pci_func;
346fe763 1177};
4e8acb01 1178
2e9d722d
AC
1179struct qlcnic_eswitch {
1180 u8 port;
1181 u8 active_vports;
1182 u8 active_vlans;
1183 u8 active_ucast_filters;
1184 u8 max_ucast_filters;
1185 u8 max_active_vlans;
1186
1187 u32 flags;
1188#define QLCNIC_SWITCH_ENABLE BIT_1
1189#define QLCNIC_SWITCH_VLAN_FILTERING BIT_2
1190#define QLCNIC_SWITCH_PROMISC_MODE BIT_3
1191#define QLCNIC_SWITCH_PORT_MIRRORING BIT_4
1192};
1193
346fe763
RB
1194
1195/* Return codes for Error handling */
1196#define QL_STATUS_INVALID_PARAM -1
1197
2abea2f0 1198#define MAX_BW 100 /* % of link speed */
346fe763
RB
1199#define MAX_VLAN_ID 4095
1200#define MIN_VLAN_ID 2
346fe763
RB
1201#define DEFAULT_MAC_LEARN 1
1202
0184bbba 1203#define IS_VALID_VLAN(vlan) (vlan >= MIN_VLAN_ID && vlan < MAX_VLAN_ID)
2abea2f0 1204#define IS_VALID_BW(bw) (bw <= MAX_BW)
346fe763
RB
1205
1206struct qlcnic_pci_func_cfg {
1207 u16 func_type;
1208 u16 min_bw;
1209 u16 max_bw;
1210 u16 port_num;
1211 u8 pci_func;
1212 u8 func_state;
1213 u8 def_mac_addr[6];
1214};
1215
1216struct qlcnic_npar_func_cfg {
1217 u32 fw_capab;
1218 u16 port_num;
1219 u16 min_bw;
1220 u16 max_bw;
1221 u16 max_tx_queues;
1222 u16 max_rx_queues;
1223 u8 pci_func;
1224 u8 op_mode;
1225};
1226
1227struct qlcnic_pm_func_cfg {
1228 u8 pci_func;
1229 u8 action;
1230 u8 dest_npar;
1231 u8 reserved[5];
1232};
1233
1234struct qlcnic_esw_func_cfg {
1235 u16 vlan_id;
4e8acb01
RB
1236 u8 op_mode;
1237 u8 op_type;
346fe763
RB
1238 u8 pci_func;
1239 u8 host_vlan_tag;
1240 u8 promisc_mode;
1241 u8 discard_tagged;
7373373d 1242 u8 mac_override;
4e8acb01
RB
1243 u8 mac_anti_spoof;
1244 u8 offload_flags;
1245 u8 reserved[5];
346fe763
RB
1246};
1247
b6021212
AKS
1248#define QLCNIC_STATS_VERSION 1
1249#define QLCNIC_STATS_PORT 1
1250#define QLCNIC_STATS_ESWITCH 2
1251#define QLCNIC_QUERY_RX_COUNTER 0
1252#define QLCNIC_QUERY_TX_COUNTER 1
54a8997c
JK
1253#define QLCNIC_STATS_NOT_AVAIL 0xffffffffffffffffULL
1254#define QLCNIC_FILL_STATS(VAL1) \
1255 (((VAL1) == QLCNIC_STATS_NOT_AVAIL) ? 0 : VAL1)
1256#define QLCNIC_MAC_STATS 1
1257#define QLCNIC_ESW_STATS 2
ef182805
AKS
1258
1259#define QLCNIC_ADD_ESW_STATS(VAL1, VAL2)\
1260do { \
54a8997c
JK
1261 if (((VAL1) == QLCNIC_STATS_NOT_AVAIL) && \
1262 ((VAL2) != QLCNIC_STATS_NOT_AVAIL)) \
ef182805 1263 (VAL1) = (VAL2); \
54a8997c
JK
1264 else if (((VAL1) != QLCNIC_STATS_NOT_AVAIL) && \
1265 ((VAL2) != QLCNIC_STATS_NOT_AVAIL)) \
ef182805
AKS
1266 (VAL1) += (VAL2); \
1267} while (0)
1268
63507592 1269struct qlcnic_mac_statistics_le {
54a8997c
JK
1270 __le64 mac_tx_frames;
1271 __le64 mac_tx_bytes;
1272 __le64 mac_tx_mcast_pkts;
1273 __le64 mac_tx_bcast_pkts;
1274 __le64 mac_tx_pause_cnt;
1275 __le64 mac_tx_ctrl_pkt;
1276 __le64 mac_tx_lt_64b_pkts;
1277 __le64 mac_tx_lt_127b_pkts;
1278 __le64 mac_tx_lt_255b_pkts;
1279 __le64 mac_tx_lt_511b_pkts;
1280 __le64 mac_tx_lt_1023b_pkts;
1281 __le64 mac_tx_lt_1518b_pkts;
1282 __le64 mac_tx_gt_1518b_pkts;
1283 __le64 rsvd1[3];
1284
1285 __le64 mac_rx_frames;
1286 __le64 mac_rx_bytes;
1287 __le64 mac_rx_mcast_pkts;
1288 __le64 mac_rx_bcast_pkts;
1289 __le64 mac_rx_pause_cnt;
1290 __le64 mac_rx_ctrl_pkt;
1291 __le64 mac_rx_lt_64b_pkts;
1292 __le64 mac_rx_lt_127b_pkts;
1293 __le64 mac_rx_lt_255b_pkts;
1294 __le64 mac_rx_lt_511b_pkts;
1295 __le64 mac_rx_lt_1023b_pkts;
1296 __le64 mac_rx_lt_1518b_pkts;
1297 __le64 mac_rx_gt_1518b_pkts;
1298 __le64 rsvd2[3];
1299
1300 __le64 mac_rx_length_error;
1301 __le64 mac_rx_length_small;
1302 __le64 mac_rx_length_large;
1303 __le64 mac_rx_jabber;
1304 __le64 mac_rx_dropped;
1305 __le64 mac_rx_crc_error;
1306 __le64 mac_align_error;
1307} __packed;
1308
63507592
SS
1309struct qlcnic_mac_statistics {
1310 u64 mac_tx_frames;
1311 u64 mac_tx_bytes;
1312 u64 mac_tx_mcast_pkts;
1313 u64 mac_tx_bcast_pkts;
1314 u64 mac_tx_pause_cnt;
1315 u64 mac_tx_ctrl_pkt;
1316 u64 mac_tx_lt_64b_pkts;
1317 u64 mac_tx_lt_127b_pkts;
1318 u64 mac_tx_lt_255b_pkts;
1319 u64 mac_tx_lt_511b_pkts;
1320 u64 mac_tx_lt_1023b_pkts;
1321 u64 mac_tx_lt_1518b_pkts;
1322 u64 mac_tx_gt_1518b_pkts;
1323 u64 rsvd1[3];
1324 u64 mac_rx_frames;
1325 u64 mac_rx_bytes;
1326 u64 mac_rx_mcast_pkts;
1327 u64 mac_rx_bcast_pkts;
1328 u64 mac_rx_pause_cnt;
1329 u64 mac_rx_ctrl_pkt;
1330 u64 mac_rx_lt_64b_pkts;
1331 u64 mac_rx_lt_127b_pkts;
1332 u64 mac_rx_lt_255b_pkts;
1333 u64 mac_rx_lt_511b_pkts;
1334 u64 mac_rx_lt_1023b_pkts;
1335 u64 mac_rx_lt_1518b_pkts;
1336 u64 mac_rx_gt_1518b_pkts;
1337 u64 rsvd2[3];
1338 u64 mac_rx_length_error;
1339 u64 mac_rx_length_small;
1340 u64 mac_rx_length_large;
1341 u64 mac_rx_jabber;
1342 u64 mac_rx_dropped;
1343 u64 mac_rx_crc_error;
1344 u64 mac_align_error;
1345};
1346
1347struct qlcnic_esw_stats_le {
b6021212
AKS
1348 __le16 context_id;
1349 __le16 version;
1350 __le16 size;
1351 __le16 unused;
1352 __le64 unicast_frames;
1353 __le64 multicast_frames;
1354 __le64 broadcast_frames;
1355 __le64 dropped_frames;
1356 __le64 errors;
1357 __le64 local_frames;
1358 __le64 numbytes;
1359 __le64 rsvd[3];
b1fc6d3c 1360} __packed;
b6021212 1361
63507592
SS
1362struct __qlcnic_esw_statistics {
1363 u16 context_id;
1364 u16 version;
1365 u16 size;
1366 u16 unused;
1367 u64 unicast_frames;
1368 u64 multicast_frames;
1369 u64 broadcast_frames;
1370 u64 dropped_frames;
1371 u64 errors;
1372 u64 local_frames;
1373 u64 numbytes;
1374 u64 rsvd[3];
1375};
1376
b6021212
AKS
1377struct qlcnic_esw_statistics {
1378 struct __qlcnic_esw_statistics rx;
1379 struct __qlcnic_esw_statistics tx;
1380};
1381
40522998 1382#define QLCNIC_DUMP_MASK_DEF 0x1f
18f2f616 1383#define QLCNIC_FORCE_FW_DUMP_KEY 0xdeadfeed
9d6a6440
AC
1384#define QLCNIC_ENABLE_FW_DUMP 0xaddfeed
1385#define QLCNIC_DISABLE_FW_DUMP 0xbadfeed
3d46512c 1386#define QLCNIC_FORCE_FW_RESET 0xdeaddead
b43e5ee7
SC
1387#define QLCNIC_SET_QUIESCENT 0xadd00010
1388#define QLCNIC_RESET_QUIESCENT 0xadd00020
18f2f616 1389
7777de9a 1390struct _cdrp_cmd {
7e2cf4fe
SC
1391 u32 num;
1392 u32 *arg;
7777de9a
AC
1393};
1394
1395struct qlcnic_cmd_args {
e5c4e6c6
MC
1396 struct completion completion;
1397 struct list_head list;
1398 struct _cdrp_cmd req;
1399 struct _cdrp_cmd rsp;
1400 atomic_t rsp_status;
1401 int pay_size;
1402 u32 rsp_opcode;
1403 u32 total_cmds;
1404 u32 op_type;
1405 u32 type;
1406 u32 cmd_op;
1407 u32 *hdr; /* Back channel message header */
1408 u32 *pay; /* Back channel message payload */
1409 u8 func_num;
7777de9a
AC
1410};
1411
18f2f616 1412int qlcnic_fw_cmd_get_minidump_temp(struct qlcnic_adapter *adapter);
7e610caa 1413int qlcnic_fw_cmd_set_port(struct qlcnic_adapter *adapter, u32 config);
af19b491
AKS
1414int qlcnic_pci_mem_write_2M(struct qlcnic_adapter *, u64 off, u64 data);
1415int qlcnic_pci_mem_read_2M(struct qlcnic_adapter *, u64 off, u64 *data);
897e8c7c
DP
1416void qlcnic_pci_camqm_read_2M(struct qlcnic_adapter *, u64, u64 *);
1417void qlcnic_pci_camqm_write_2M(struct qlcnic_adapter *, u64, u64);
1418
1419#define ADDR_IN_RANGE(addr, low, high) \
1420 (((addr) < (high)) && ((addr) >= (low)))
af19b491 1421
4bd8e738
HM
1422#define QLCRD32(adapter, off, err) \
1423 (adapter->ahw->hw_ops->read_reg)(adapter, off, err)
7e2cf4fe 1424
af19b491 1425#define QLCWR32(adapter, off, val) \
7e2cf4fe 1426 adapter->ahw->hw_ops->write_reg(adapter, off, val)
af19b491
AKS
1427
1428int qlcnic_pcie_sem_lock(struct qlcnic_adapter *, int, u32);
1429void qlcnic_pcie_sem_unlock(struct qlcnic_adapter *, int);
1430
1431#define qlcnic_rom_lock(a) \
1432 qlcnic_pcie_sem_lock((a), 2, QLCNIC_ROM_LOCK_ID)
1433#define qlcnic_rom_unlock(a) \
1434 qlcnic_pcie_sem_unlock((a), 2)
1435#define qlcnic_phy_lock(a) \
1436 qlcnic_pcie_sem_lock((a), 3, QLCNIC_PHY_LOCK_ID)
1437#define qlcnic_phy_unlock(a) \
1438 qlcnic_pcie_sem_unlock((a), 3)
af19b491
AKS
1439#define qlcnic_sw_lock(a) \
1440 qlcnic_pcie_sem_lock((a), 6, 0)
1441#define qlcnic_sw_unlock(a) \
1442 qlcnic_pcie_sem_unlock((a), 6)
1443#define crb_win_lock(a) \
1444 qlcnic_pcie_sem_lock((a), 7, QLCNIC_CRB_WIN_LOCK_ID)
1445#define crb_win_unlock(a) \
1446 qlcnic_pcie_sem_unlock((a), 7)
1447
728a98b8
SC
1448#define __QLCNIC_MAX_LED_RATE 0xf
1449#define __QLCNIC_MAX_LED_STATE 0x2
1450
58634e74
SC
1451#define MAX_CTL_CHECK 1000
1452
af19b491 1453int qlcnic_wol_supported(struct qlcnic_adapter *adapter);
b5e5492c
AKS
1454void qlcnic_prune_lb_filters(struct qlcnic_adapter *adapter);
1455void qlcnic_delete_lb_filters(struct qlcnic_adapter *adapter);
18f2f616 1456int qlcnic_dump_fw(struct qlcnic_adapter *);
af19b491
AKS
1457
1458/* Functions from qlcnic_init.c */
13159183 1459void qlcnic_schedule_work(struct qlcnic_adapter *, work_func_t, int);
af19b491
AKS
1460int qlcnic_load_firmware(struct qlcnic_adapter *adapter);
1461int qlcnic_need_fw_reset(struct qlcnic_adapter *adapter);
1462void qlcnic_request_firmware(struct qlcnic_adapter *adapter);
1463void qlcnic_release_firmware(struct qlcnic_adapter *adapter);
1464int qlcnic_pinit_from_rom(struct qlcnic_adapter *adapter);
b3a24649 1465int qlcnic_setup_idc_param(struct qlcnic_adapter *adapter);
8f891387 1466int qlcnic_check_flash_fw_ver(struct qlcnic_adapter *adapter);
af19b491 1467
18f2f616 1468int qlcnic_rom_fast_read(struct qlcnic_adapter *adapter, u32 addr, u32 *valp);
af19b491
AKS
1469int qlcnic_rom_fast_read_words(struct qlcnic_adapter *adapter, int addr,
1470 u8 *bytes, size_t size);
1471int qlcnic_alloc_sw_resources(struct qlcnic_adapter *adapter);
1472void qlcnic_free_sw_resources(struct qlcnic_adapter *adapter);
1473
15087c2b 1474void __iomem *qlcnic_get_ioaddr(struct qlcnic_hardware_context *, u32);
af19b491
AKS
1475
1476int qlcnic_alloc_hw_resources(struct qlcnic_adapter *adapter);
1477void qlcnic_free_hw_resources(struct qlcnic_adapter *adapter);
1478
8a15ad1f
AKS
1479int qlcnic_fw_create_ctx(struct qlcnic_adapter *adapter);
1480void qlcnic_fw_destroy_ctx(struct qlcnic_adapter *adapter);
1481
1482void qlcnic_reset_rx_buffers_list(struct qlcnic_adapter *adapter);
af19b491
AKS
1483void qlcnic_release_rx_buffers(struct qlcnic_adapter *adapter);
1484void qlcnic_release_tx_buffers(struct qlcnic_adapter *adapter);
1485
d4066833 1486int qlcnic_check_fw_status(struct qlcnic_adapter *adapter);
af19b491 1487void qlcnic_watchdog_task(struct work_struct *work);
b1fc6d3c 1488void qlcnic_post_rx_buffers(struct qlcnic_adapter *adapter,
4be41e92 1489 struct qlcnic_host_rds_ring *rds_ring, u8 ring_id);
af19b491
AKS
1490int qlcnic_process_rcv_ring(struct qlcnic_host_sds_ring *sds_ring, int max);
1491void qlcnic_set_multi(struct net_device *netdev);
91b7282b
RB
1492void __qlcnic_set_multi(struct net_device *, u16);
1493int qlcnic_nic_add_mac(struct qlcnic_adapter *, const u8 *, u16);
fe1adc6b 1494int qlcnic_nic_del_mac(struct qlcnic_adapter *, const u8 *);
91b7282b 1495void qlcnic_82xx_free_mac_list(struct qlcnic_adapter *adapter);
af19b491
AKS
1496
1497int qlcnic_fw_cmd_set_mtu(struct qlcnic_adapter *adapter, int mtu);
8af3f33d 1498int qlcnic_fw_cmd_set_drv_version(struct qlcnic_adapter *, u32);
af19b491 1499int qlcnic_change_mtu(struct net_device *netdev, int new_mtu);
c8f44aff
MM
1500netdev_features_t qlcnic_fix_features(struct net_device *netdev,
1501 netdev_features_t features);
1502int qlcnic_set_features(struct net_device *netdev, netdev_features_t features);
2e9d722d 1503int qlcnic_config_bridged_mode(struct qlcnic_adapter *adapter, u32 enable);
af19b491 1504int qlcnic_send_lro_cleanup(struct qlcnic_adapter *adapter);
5ad6ff9d 1505void qlcnic_update_cmd_producer(struct qlcnic_host_tx_ring *);
22c8c934
SC
1506
1507/* Functions from qlcnic_ethtool.c */
ba4468db
JK
1508int qlcnic_check_loopback_buff(unsigned char *, u8 []);
1509int qlcnic_do_lb_test(struct qlcnic_adapter *, u8);
1510int qlcnic_loopback_test(struct net_device *, u8);
af19b491
AKS
1511
1512/* Functions from qlcnic_main.c */
1513int qlcnic_reset_context(struct qlcnic_adapter *);
7eb9855d
AKS
1514void qlcnic_diag_free_res(struct net_device *netdev, int max_sds_rings);
1515int qlcnic_diag_alloc_res(struct net_device *netdev, int test);
cdaff185 1516netdev_tx_t qlcnic_xmit_frame(struct sk_buff *skb, struct net_device *netdev);
319ecf12 1517int qlcnic_set_max_rss(struct qlcnic_adapter *, u8, size_t);
6389b76d 1518int qlcnic_validate_max_rss(struct qlcnic_adapter *, __u32);
e5dcf6dc 1519void qlcnic_alloc_lb_filters_mem(struct qlcnic_adapter *adapter);
52e493d0 1520void qlcnic_82xx_set_mac_filter_count(struct qlcnic_adapter *);
7f966452 1521int qlcnic_enable_msix(struct qlcnic_adapter *, u32);
8af3f33d 1522void qlcnic_set_drv_version(struct qlcnic_adapter *);
af19b491 1523
2e9d722d 1524/* eSwitch management functions */
4e8acb01
RB
1525int qlcnic_config_switch_port(struct qlcnic_adapter *,
1526 struct qlcnic_esw_func_cfg *);
629263ac 1527
4e8acb01
RB
1528int qlcnic_get_eswitch_port_config(struct qlcnic_adapter *,
1529 struct qlcnic_esw_func_cfg *);
2e9d722d 1530int qlcnic_config_port_mirroring(struct qlcnic_adapter *, u8, u8, u8);
b6021212
AKS
1531int qlcnic_get_port_stats(struct qlcnic_adapter *, const u8, const u8,
1532 struct __qlcnic_esw_statistics *);
1533int qlcnic_get_eswitch_stats(struct qlcnic_adapter *, const u8, u8,
1534 struct __qlcnic_esw_statistics *);
1535int qlcnic_clear_esw_stats(struct qlcnic_adapter *adapter, u8, u8, u8);
54a8997c 1536int qlcnic_get_mac_stats(struct qlcnic_adapter *, struct qlcnic_mac_statistics *);
2e9d722d 1537
7e2cf4fe 1538void qlcnic_free_mbx_args(struct qlcnic_cmd_args *cmd);
7e2cf4fe 1539
c70001a9
SC
1540int qlcnic_alloc_sds_rings(struct qlcnic_recv_context *, int);
1541void qlcnic_free_sds_rings(struct qlcnic_recv_context *);
7f966452 1542void qlcnic_advert_link_change(struct qlcnic_adapter *, int);
c70001a9
SC
1543void qlcnic_free_tx_rings(struct qlcnic_adapter *);
1544int qlcnic_alloc_tx_rings(struct qlcnic_adapter *, struct net_device *);
1545
ec079a07
SC
1546void qlcnic_create_sysfs_entries(struct qlcnic_adapter *adapter);
1547void qlcnic_remove_sysfs_entries(struct qlcnic_adapter *adapter);
1548void qlcnic_create_diag_entries(struct qlcnic_adapter *adapter);
1549void qlcnic_remove_diag_entries(struct qlcnic_adapter *adapter);
7e2cf4fe
SC
1550void qlcnic_82xx_add_sysfs(struct qlcnic_adapter *adapter);
1551void qlcnic_82xx_remove_sysfs(struct qlcnic_adapter *adapter);
b938662d 1552int qlcnic_82xx_get_settings(struct qlcnic_adapter *, struct ethtool_cmd *);
7e2cf4fe 1553
ec079a07
SC
1554int qlcnicvf_config_bridged_mode(struct qlcnic_adapter *, u32);
1555int qlcnicvf_config_led(struct qlcnic_adapter *, u32, u32);
1556void qlcnic_set_vlan_config(struct qlcnic_adapter *,
1557 struct qlcnic_esw_func_cfg *);
1558void qlcnic_set_eswitch_port_features(struct qlcnic_adapter *,
1559 struct qlcnic_esw_func_cfg *);
629263ac
SC
1560
1561void qlcnic_down(struct qlcnic_adapter *, struct net_device *);
1562int qlcnic_up(struct qlcnic_adapter *, struct net_device *);
319ecf12
SC
1563void __qlcnic_down(struct qlcnic_adapter *, struct net_device *);
1564void qlcnic_detach(struct qlcnic_adapter *);
1565void qlcnic_teardown_intr(struct qlcnic_adapter *);
1566int qlcnic_attach(struct qlcnic_adapter *);
1567int __qlcnic_up(struct qlcnic_adapter *, struct net_device *);
1568void qlcnic_restore_indev_addr(struct net_device *, unsigned long);
1569
629263ac 1570int qlcnic_check_temp(struct qlcnic_adapter *);
d71170fb
SC
1571int qlcnic_init_pci_info(struct qlcnic_adapter *);
1572int qlcnic_set_default_offload_settings(struct qlcnic_adapter *);
1573int qlcnic_reset_npar_config(struct qlcnic_adapter *);
1574int qlcnic_set_eswitch_port_config(struct qlcnic_adapter *);
f80bc8fe 1575void qlcnic_add_lb_filter(struct qlcnic_adapter *, struct sk_buff *, int, u16);
487042af 1576int qlcnic_get_beacon_state(struct qlcnic_adapter *, u8 *);
02feda17 1577int qlcnic_83xx_configure_opmode(struct qlcnic_adapter *adapter);
f8468331
RB
1578int qlcnic_read_mac_addr(struct qlcnic_adapter *);
1579int qlcnic_setup_netdev(struct qlcnic_adapter *, struct net_device *, int);
147a9088
SS
1580void qlcnic_set_netdev_features(struct qlcnic_adapter *,
1581 struct qlcnic_esw_func_cfg *);
e8b508ef 1582void qlcnic_sriov_vf_schedule_multi(struct net_device *);
91b7282b 1583void qlcnic_vf_add_mc_list(struct net_device *, u16);
f8468331 1584
af19b491
AKS
1585/*
1586 * QLOGIC Board information
1587 */
1588
02420be6 1589#define QLCNIC_MAX_BOARD_NAME_LEN 100
22999798 1590struct qlcnic_board_info {
af19b491
AKS
1591 unsigned short vendor;
1592 unsigned short device;
1593 unsigned short sub_vendor;
1594 unsigned short sub_device;
1595 char short_name[QLCNIC_MAX_BOARD_NAME_LEN];
1596};
1597
af19b491
AKS
1598static inline u32 qlcnic_tx_avail(struct qlcnic_host_tx_ring *tx_ring)
1599{
036d61f0 1600 if (likely(tx_ring->producer < tx_ring->sw_consumer))
af19b491
AKS
1601 return tx_ring->sw_consumer - tx_ring->producer;
1602 else
1603 return tx_ring->sw_consumer + tx_ring->num_desc -
1604 tx_ring->producer;
1605}
1606
7e2cf4fe
SC
1607struct qlcnic_nic_template {
1608 int (*config_bridged_mode) (struct qlcnic_adapter *, u32);
1609 int (*config_led) (struct qlcnic_adapter *, u32, u32);
1610 int (*start_firmware) (struct qlcnic_adapter *);
1611 int (*init_driver) (struct qlcnic_adapter *);
1612 void (*request_reset) (struct qlcnic_adapter *, u32);
1613 void (*cancel_idc_work) (struct qlcnic_adapter *);
1614 int (*napi_add)(struct qlcnic_adapter *, struct net_device *);
4be41e92 1615 void (*napi_del)(struct qlcnic_adapter *);
7e2cf4fe
SC
1616 void (*config_ipaddr)(struct qlcnic_adapter *, __be32, int);
1617 irqreturn_t (*clear_legacy_intr)(struct qlcnic_adapter *);
486a5bc7
RB
1618 int (*shutdown)(struct pci_dev *);
1619 int (*resume)(struct qlcnic_adapter *);
7e2cf4fe
SC
1620};
1621
e5c4e6c6
MC
1622struct qlcnic_mbx_ops {
1623 int (*enqueue_cmd) (struct qlcnic_adapter *,
1624 struct qlcnic_cmd_args *, unsigned long *);
1625 void (*dequeue_cmd) (struct qlcnic_adapter *, struct qlcnic_cmd_args *);
1626 void (*decode_resp) (struct qlcnic_adapter *, struct qlcnic_cmd_args *);
1627 void (*encode_cmd) (struct qlcnic_adapter *, struct qlcnic_cmd_args *);
1628 void (*nofity_fw) (struct qlcnic_adapter *, u8);
1629};
1630
1631int qlcnic_83xx_init_mailbox_work(struct qlcnic_adapter *);
1632void qlcnic_83xx_detach_mailbox_work(struct qlcnic_adapter *);
1633void qlcnic_83xx_reinit_mbx_work(struct qlcnic_mailbox *mbx);
1634void qlcnic_83xx_free_mailbox(struct qlcnic_mailbox *mbx);
1635
7e2cf4fe
SC
1636/* Adapter hardware abstraction */
1637struct qlcnic_hardware_ops {
1638 void (*read_crb) (struct qlcnic_adapter *, char *, loff_t, size_t);
1639 void (*write_crb) (struct qlcnic_adapter *, char *, loff_t, size_t);
4bd8e738 1640 int (*read_reg) (struct qlcnic_adapter *, ulong, int *);
7e2cf4fe
SC
1641 int (*write_reg) (struct qlcnic_adapter *, ulong, u32);
1642 void (*get_ocm_win) (struct qlcnic_hardware_context *);
1643 int (*get_mac_address) (struct qlcnic_adapter *, u8 *);
1644 int (*setup_intr) (struct qlcnic_adapter *, u8);
1645 int (*alloc_mbx_args)(struct qlcnic_cmd_args *,
1646 struct qlcnic_adapter *, u32);
1647 int (*mbx_cmd) (struct qlcnic_adapter *, struct qlcnic_cmd_args *);
1648 void (*get_func_no) (struct qlcnic_adapter *);
1649 int (*api_lock) (struct qlcnic_adapter *);
1650 void (*api_unlock) (struct qlcnic_adapter *);
1651 void (*add_sysfs) (struct qlcnic_adapter *);
1652 void (*remove_sysfs) (struct qlcnic_adapter *);
1653 void (*process_lb_rcv_ring_diag) (struct qlcnic_host_sds_ring *);
1654 int (*create_rx_ctx) (struct qlcnic_adapter *);
1655 int (*create_tx_ctx) (struct qlcnic_adapter *,
1656 struct qlcnic_host_tx_ring *, int);
7cb03b23
RB
1657 void (*del_rx_ctx) (struct qlcnic_adapter *);
1658 void (*del_tx_ctx) (struct qlcnic_adapter *,
1659 struct qlcnic_host_tx_ring *);
7e2cf4fe
SC
1660 int (*setup_link_event) (struct qlcnic_adapter *, int);
1661 int (*get_nic_info) (struct qlcnic_adapter *, struct qlcnic_info *, u8);
1662 int (*get_pci_info) (struct qlcnic_adapter *, struct qlcnic_pci_info *);
1663 int (*set_nic_info) (struct qlcnic_adapter *, struct qlcnic_info *);
f80bc8fe 1664 int (*change_macvlan) (struct qlcnic_adapter *, u8*, u16, u8);
7e2cf4fe
SC
1665 void (*napi_enable) (struct qlcnic_adapter *);
1666 void (*napi_disable) (struct qlcnic_adapter *);
1667 void (*config_intr_coal) (struct qlcnic_adapter *);
1668 int (*config_rss) (struct qlcnic_adapter *, int);
1669 int (*config_hw_lro) (struct qlcnic_adapter *, int);
1670 int (*config_loopback) (struct qlcnic_adapter *, u8);
1671 int (*clear_loopback) (struct qlcnic_adapter *, u8);
1672 int (*config_promisc_mode) (struct qlcnic_adapter *, u32);
f80bc8fe 1673 void (*change_l2_filter) (struct qlcnic_adapter *, u64 *, u16);
7e2cf4fe 1674 int (*get_board_info) (struct qlcnic_adapter *);
52e493d0 1675 void (*set_mac_filter_count) (struct qlcnic_adapter *);
91b7282b 1676 void (*free_mac_list) (struct qlcnic_adapter *);
7e2cf4fe
SC
1677};
1678
1679extern struct qlcnic_nic_template qlcnic_vf_ops;
1680
1681static inline int qlcnic_start_firmware(struct qlcnic_adapter *adapter)
1682{
1683 return adapter->nic_ops->start_firmware(adapter);
1684}
1685
1686static inline void qlcnic_read_crb(struct qlcnic_adapter *adapter, char *buf,
1687 loff_t offset, size_t size)
1688{
1689 adapter->ahw->hw_ops->read_crb(adapter, buf, offset, size);
1690}
1691
1692static inline void qlcnic_write_crb(struct qlcnic_adapter *adapter, char *buf,
1693 loff_t offset, size_t size)
1694{
1695 adapter->ahw->hw_ops->write_crb(adapter, buf, offset, size);
1696}
1697
7e2cf4fe
SC
1698static inline int qlcnic_hw_write_wx_2M(struct qlcnic_adapter *adapter,
1699 ulong off, u32 data)
1700{
1701 return adapter->ahw->hw_ops->write_reg(adapter, off, data);
1702}
1703
1704static inline int qlcnic_get_mac_address(struct qlcnic_adapter *adapter,
1705 u8 *mac)
1706{
1707 return adapter->ahw->hw_ops->get_mac_address(adapter, mac);
1708}
1709
1710static inline int qlcnic_setup_intr(struct qlcnic_adapter *adapter, u8 num_intr)
1711{
1712 return adapter->ahw->hw_ops->setup_intr(adapter, num_intr);
1713}
1714
1715static inline int qlcnic_alloc_mbx_args(struct qlcnic_cmd_args *mbx,
1716 struct qlcnic_adapter *adapter, u32 arg)
1717{
1718 return adapter->ahw->hw_ops->alloc_mbx_args(mbx, adapter, arg);
1719}
1720
1721static inline int qlcnic_issue_cmd(struct qlcnic_adapter *adapter,
1722 struct qlcnic_cmd_args *cmd)
1723{
f8468331
RB
1724 if (adapter->ahw->hw_ops->mbx_cmd)
1725 return adapter->ahw->hw_ops->mbx_cmd(adapter, cmd);
1726
1727 return -EIO;
7e2cf4fe
SC
1728}
1729
1730static inline void qlcnic_get_func_no(struct qlcnic_adapter *adapter)
1731{
1732 adapter->ahw->hw_ops->get_func_no(adapter);
1733}
1734
1735static inline int qlcnic_api_lock(struct qlcnic_adapter *adapter)
1736{
1737 return adapter->ahw->hw_ops->api_lock(adapter);
1738}
1739
1740static inline void qlcnic_api_unlock(struct qlcnic_adapter *adapter)
1741{
1742 adapter->ahw->hw_ops->api_unlock(adapter);
1743}
1744
1745static inline void qlcnic_add_sysfs(struct qlcnic_adapter *adapter)
1746{
f8468331
RB
1747 if (adapter->ahw->hw_ops->add_sysfs)
1748 adapter->ahw->hw_ops->add_sysfs(adapter);
7e2cf4fe
SC
1749}
1750
1751static inline void qlcnic_remove_sysfs(struct qlcnic_adapter *adapter)
1752{
f8468331
RB
1753 if (adapter->ahw->hw_ops->remove_sysfs)
1754 adapter->ahw->hw_ops->remove_sysfs(adapter);
7e2cf4fe
SC
1755}
1756
1757static inline void
1758qlcnic_process_rcv_ring_diag(struct qlcnic_host_sds_ring *sds_ring)
1759{
1760 sds_ring->adapter->ahw->hw_ops->process_lb_rcv_ring_diag(sds_ring);
1761}
1762
1763static inline int qlcnic_fw_cmd_create_rx_ctx(struct qlcnic_adapter *adapter)
1764{
1765 return adapter->ahw->hw_ops->create_rx_ctx(adapter);
1766}
1767
1768static inline int qlcnic_fw_cmd_create_tx_ctx(struct qlcnic_adapter *adapter,
1769 struct qlcnic_host_tx_ring *ptr,
1770 int ring)
1771{
1772 return adapter->ahw->hw_ops->create_tx_ctx(adapter, ptr, ring);
1773}
1774
7cb03b23
RB
1775static inline void qlcnic_fw_cmd_del_rx_ctx(struct qlcnic_adapter *adapter)
1776{
1777 return adapter->ahw->hw_ops->del_rx_ctx(adapter);
1778}
1779
1780static inline void qlcnic_fw_cmd_del_tx_ctx(struct qlcnic_adapter *adapter,
1781 struct qlcnic_host_tx_ring *ptr)
1782{
1783 return adapter->ahw->hw_ops->del_tx_ctx(adapter, ptr);
1784}
1785
7e2cf4fe
SC
1786static inline int qlcnic_linkevent_request(struct qlcnic_adapter *adapter,
1787 int enable)
1788{
1789 return adapter->ahw->hw_ops->setup_link_event(adapter, enable);
1790}
1791
1792static inline int qlcnic_get_nic_info(struct qlcnic_adapter *adapter,
1793 struct qlcnic_info *info, u8 id)
1794{
1795 return adapter->ahw->hw_ops->get_nic_info(adapter, info, id);
1796}
1797
1798static inline int qlcnic_get_pci_info(struct qlcnic_adapter *adapter,
1799 struct qlcnic_pci_info *info)
1800{
1801 return adapter->ahw->hw_ops->get_pci_info(adapter, info);
1802}
1803
1804static inline int qlcnic_set_nic_info(struct qlcnic_adapter *adapter,
1805 struct qlcnic_info *info)
1806{
1807 return adapter->ahw->hw_ops->set_nic_info(adapter, info);
1808}
1809
1810static inline int qlcnic_sre_macaddr_change(struct qlcnic_adapter *adapter,
f80bc8fe 1811 u8 *addr, u16 id, u8 cmd)
7e2cf4fe
SC
1812{
1813 return adapter->ahw->hw_ops->change_macvlan(adapter, addr, id, cmd);
1814}
1815
1816static inline int qlcnic_napi_add(struct qlcnic_adapter *adapter,
1817 struct net_device *netdev)
1818{
1819 return adapter->nic_ops->napi_add(adapter, netdev);
1820}
1821
4be41e92
SC
1822static inline void qlcnic_napi_del(struct qlcnic_adapter *adapter)
1823{
1824 adapter->nic_ops->napi_del(adapter);
1825}
1826
7e2cf4fe
SC
1827static inline void qlcnic_napi_enable(struct qlcnic_adapter *adapter)
1828{
1829 adapter->ahw->hw_ops->napi_enable(adapter);
1830}
1831
486a5bc7
RB
1832static inline int __qlcnic_shutdown(struct pci_dev *pdev)
1833{
1834 struct qlcnic_adapter *adapter = pci_get_drvdata(pdev);
1835
1836 return adapter->nic_ops->shutdown(pdev);
1837}
1838
1839static inline int __qlcnic_resume(struct qlcnic_adapter *adapter)
1840{
1841 return adapter->nic_ops->resume(adapter);
1842}
1843
7e2cf4fe
SC
1844static inline void qlcnic_napi_disable(struct qlcnic_adapter *adapter)
1845{
1846 adapter->ahw->hw_ops->napi_disable(adapter);
1847}
1848
1849static inline void qlcnic_config_intr_coalesce(struct qlcnic_adapter *adapter)
1850{
1851 adapter->ahw->hw_ops->config_intr_coal(adapter);
1852}
1853
1854static inline int qlcnic_config_rss(struct qlcnic_adapter *adapter, int enable)
1855{
1856 return adapter->ahw->hw_ops->config_rss(adapter, enable);
1857}
1858
1859static inline int qlcnic_config_hw_lro(struct qlcnic_adapter *adapter,
1860 int enable)
1861{
1862 return adapter->ahw->hw_ops->config_hw_lro(adapter, enable);
1863}
1864
1865static inline int qlcnic_set_lb_mode(struct qlcnic_adapter *adapter, u8 mode)
1866{
1867 return adapter->ahw->hw_ops->config_loopback(adapter, mode);
1868}
1869
1870static inline int qlcnic_clear_lb_mode(struct qlcnic_adapter *adapter, u8 mode)
1871{
d09529e6 1872 return adapter->ahw->hw_ops->clear_loopback(adapter, mode);
7e2cf4fe
SC
1873}
1874
1875static inline int qlcnic_nic_set_promisc(struct qlcnic_adapter *adapter,
1876 u32 mode)
1877{
1878 return adapter->ahw->hw_ops->config_promisc_mode(adapter, mode);
1879}
1880
1881static inline void qlcnic_change_filter(struct qlcnic_adapter *adapter,
f80bc8fe 1882 u64 *addr, u16 id)
7e2cf4fe
SC
1883{
1884 adapter->ahw->hw_ops->change_l2_filter(adapter, addr, id);
1885}
1886
1887static inline int qlcnic_get_board_info(struct qlcnic_adapter *adapter)
1888{
1889 return adapter->ahw->hw_ops->get_board_info(adapter);
1890}
1891
91b7282b
RB
1892static inline void qlcnic_free_mac_list(struct qlcnic_adapter *adapter)
1893{
1894 return adapter->ahw->hw_ops->free_mac_list(adapter);
1895}
1896
52e493d0
JK
1897static inline void qlcnic_set_mac_filter_count(struct qlcnic_adapter *adapter)
1898{
e9a355a9
SC
1899 if (adapter->ahw->hw_ops->set_mac_filter_count)
1900 adapter->ahw->hw_ops->set_mac_filter_count(adapter);
52e493d0
JK
1901}
1902
7e2cf4fe
SC
1903static inline void qlcnic_dev_request_reset(struct qlcnic_adapter *adapter,
1904 u32 key)
1905{
f8468331
RB
1906 if (adapter->nic_ops->request_reset)
1907 adapter->nic_ops->request_reset(adapter, key);
7e2cf4fe
SC
1908}
1909
1910static inline void qlcnic_cancel_idc_work(struct qlcnic_adapter *adapter)
1911{
f8468331
RB
1912 if (adapter->nic_ops->cancel_idc_work)
1913 adapter->nic_ops->cancel_idc_work(adapter);
7e2cf4fe
SC
1914}
1915
1916static inline irqreturn_t
1917qlcnic_clear_legacy_intr(struct qlcnic_adapter *adapter)
1918{
1919 return adapter->nic_ops->clear_legacy_intr(adapter);
1920}
1921
1922static inline int qlcnic_config_led(struct qlcnic_adapter *adapter, u32 state,
1923 u32 rate)
1924{
1925 return adapter->nic_ops->config_led(adapter, state, rate);
1926}
1927
1928static inline void qlcnic_config_ipaddr(struct qlcnic_adapter *adapter,
1929 __be32 ip, int cmd)
1930{
1931 adapter->nic_ops->config_ipaddr(adapter, ip, cmd);
1932}
1933
c70001a9
SC
1934static inline void qlcnic_disable_int(struct qlcnic_host_sds_ring *sds_ring)
1935{
1936 writel(0, sds_ring->crb_intr_mask);
1937}
1938
1939static inline void qlcnic_enable_int(struct qlcnic_host_sds_ring *sds_ring)
1940{
1941 struct qlcnic_adapter *adapter = sds_ring->adapter;
1942
1943 writel(0x1, sds_ring->crb_intr_mask);
1944
1945 if (!QLCNIC_IS_MSI_FAMILY(adapter))
1946 writel(0xfbff, adapter->tgt_mask_reg);
1947}
1948
4690a7e4
SC
1949static inline int qlcnic_get_diag_lock(struct qlcnic_adapter *adapter)
1950{
1951 return test_and_set_bit(__QLCNIC_DIAG_MODE, &adapter->state);
1952}
1953
1954static inline void qlcnic_release_diag_lock(struct qlcnic_adapter *adapter)
1955{
1956 clear_bit(__QLCNIC_DIAG_MODE, &adapter->state);
1957}
1958
099907fa
SC
1959static inline int qlcnic_check_diag_status(struct qlcnic_adapter *adapter)
1960{
1961 return test_bit(__QLCNIC_DIAG_MODE, &adapter->state);
1962}
1963
d1a1105e 1964extern const struct ethtool_ops qlcnic_sriov_vf_ethtool_ops;
af19b491 1965extern const struct ethtool_ops qlcnic_ethtool_ops;
b43e5ee7 1966extern const struct ethtool_ops qlcnic_ethtool_failed_ops;
af19b491 1967
65b5b420 1968#define QLCDB(adapter, lvl, _fmt, _args...) do { \
79788450 1969 if (NETIF_MSG_##lvl & adapter->ahw->msg_enable) \
65b5b420
AKS
1970 printk(KERN_INFO "%s: %s: " _fmt, \
1971 dev_name(&adapter->pdev->dev), \
1972 __func__, ##_args); \
1973 } while (0)
1974
15ca140f
MC
1975#define PCI_DEVICE_ID_QLOGIC_QLE824X 0x8020
1976#define PCI_DEVICE_ID_QLOGIC_QLE834X 0x8030
f8468331 1977#define PCI_DEVICE_ID_QLOGIC_VF_QLE834X 0x8430
15ca140f
MC
1978#define PCI_DEVICE_ID_QLOGIC_QLE844X 0x8040
1979#define PCI_DEVICE_ID_QLOGIC_VF_QLE844X 0x8440
f8468331 1980
97ee45eb
SC
1981static inline bool qlcnic_82xx_check(struct qlcnic_adapter *adapter)
1982{
1983 unsigned short device = adapter->pdev->device;
1984 return (device == PCI_DEVICE_ID_QLOGIC_QLE824X) ? true : false;
1985}
1986
7f966452
SC
1987static inline bool qlcnic_83xx_check(struct qlcnic_adapter *adapter)
1988{
1989 unsigned short device = adapter->pdev->device;
f8468331
RB
1990 bool status;
1991
1992 status = ((device == PCI_DEVICE_ID_QLOGIC_QLE834X) ||
15ca140f
MC
1993 (device == PCI_DEVICE_ID_QLOGIC_QLE844X) ||
1994 (device == PCI_DEVICE_ID_QLOGIC_VF_QLE844X) ||
f8468331
RB
1995 (device == PCI_DEVICE_ID_QLOGIC_VF_QLE834X)) ? true : false;
1996
1997 return status;
7f966452
SC
1998}
1999
02feda17
RB
2000static inline bool qlcnic_sriov_pf_check(struct qlcnic_adapter *adapter)
2001{
2002 return (adapter->ahw->op_mode == QLCNIC_SRIOV_PF_FUNC) ? true : false;
2003}
7f966452 2004
f8468331
RB
2005static inline bool qlcnic_sriov_vf_check(struct qlcnic_adapter *adapter)
2006{
2007 unsigned short device = adapter->pdev->device;
15ca140f
MC
2008 bool status;
2009
2010 status = ((device == PCI_DEVICE_ID_QLOGIC_VF_QLE834X) ||
2011 (device == PCI_DEVICE_ID_QLOGIC_VF_QLE844X)) ? true : false;
f8468331 2012
15ca140f 2013 return status;
f8468331 2014}
af19b491 2015#endif /* __QLCNIC_H_ */