Merge branch 'cxgb4-next'
[linux-2.6-block.git] / drivers / net / ethernet / qlogic / qed / qed.h
CommitLineData
fe56b9e6
YM
1/* QLogic qed NIC Driver
2 * Copyright (c) 2015 QLogic Corporation
3 *
4 * This software is available under the terms of the GNU General Public License
5 * (GPL) Version 2, available from the file COPYING in the main directory of
6 * this source tree.
7 */
8
9#ifndef _QED_H
10#define _QED_H
11
12#include <linux/types.h>
13#include <linux/io.h>
14#include <linux/delay.h>
15#include <linux/firmware.h>
16#include <linux/interrupt.h>
17#include <linux/list.h>
18#include <linux/mutex.h>
19#include <linux/pci.h>
20#include <linux/slab.h>
21#include <linux/string.h>
22#include <linux/workqueue.h>
23#include <linux/zlib.h>
24#include <linux/hashtable.h>
25#include <linux/qed/qed_if.h>
26#include "qed_hsi.h"
27
25c089d7 28extern const struct qed_common_ops qed_common_ops_pass;
7c2d7d74 29#define DRV_MODULE_VERSION "8.7.1.20"
fe56b9e6
YM
30
31#define MAX_HWFNS_PER_DEVICE (4)
32#define NAME_SIZE 16
33#define VER_SIZE 16
34
35/* cau states */
36enum qed_coalescing_mode {
37 QED_COAL_MODE_DISABLE,
38 QED_COAL_MODE_ENABLE
39};
40
41struct qed_eth_cb_ops;
42struct qed_dev_info;
43
44/* helpers */
45static inline u32 qed_db_addr(u32 cid, u32 DEMS)
46{
47 u32 db_addr = FIELD_VALUE(DB_LEGACY_ADDR_DEMS, DEMS) |
48 FIELD_VALUE(DB_LEGACY_ADDR_ICID, cid);
49
50 return db_addr;
51}
52
53#define ALIGNED_TYPE_SIZE(type_name, p_hwfn) \
54 ((sizeof(type_name) + (u32)(1 << (p_hwfn->cdev->cache_shift)) - 1) & \
55 ~((1 << (p_hwfn->cdev->cache_shift)) - 1))
56
57#define for_each_hwfn(cdev, i) for (i = 0; i < cdev->num_hwfns; i++)
58
59#define D_TRINE(val, cond1, cond2, true1, true2, def) \
60 (val == (cond1) ? true1 : \
61 (val == (cond2) ? true2 : def))
62
63/* forward */
64struct qed_ptt_pool;
65struct qed_spq;
66struct qed_sb_info;
67struct qed_sb_attn_info;
68struct qed_cxt_mngr;
69struct qed_sb_sp_info;
70struct qed_mcp_info;
71
72struct qed_rt_data {
fc48b7a6
YM
73 u32 *init_val;
74 bool *b_valid;
fe56b9e6
YM
75};
76
464f6645
MC
77enum qed_tunn_mode {
78 QED_MODE_L2GENEVE_TUNN,
79 QED_MODE_IPGENEVE_TUNN,
80 QED_MODE_L2GRE_TUNN,
81 QED_MODE_IPGRE_TUNN,
82 QED_MODE_VXLAN_TUNN,
83};
84
85enum qed_tunn_clss {
86 QED_TUNN_CLSS_MAC_VLAN,
87 QED_TUNN_CLSS_MAC_VNI,
88 QED_TUNN_CLSS_INNER_MAC_VLAN,
89 QED_TUNN_CLSS_INNER_MAC_VNI,
90 MAX_QED_TUNN_CLSS,
91};
92
93struct qed_tunn_start_params {
94 unsigned long tunn_mode;
95 u16 vxlan_udp_port;
96 u16 geneve_udp_port;
97 u8 update_vxlan_udp_port;
98 u8 update_geneve_udp_port;
99 u8 tunn_clss_vxlan;
100 u8 tunn_clss_l2geneve;
101 u8 tunn_clss_ipgeneve;
102 u8 tunn_clss_l2gre;
103 u8 tunn_clss_ipgre;
104};
105
106struct qed_tunn_update_params {
107 unsigned long tunn_mode_update_mask;
108 unsigned long tunn_mode;
109 u16 vxlan_udp_port;
110 u16 geneve_udp_port;
111 u8 update_rx_pf_clss;
112 u8 update_tx_pf_clss;
113 u8 update_vxlan_udp_port;
114 u8 update_geneve_udp_port;
115 u8 tunn_clss_vxlan;
116 u8 tunn_clss_l2geneve;
117 u8 tunn_clss_ipgeneve;
118 u8 tunn_clss_l2gre;
119 u8 tunn_clss_ipgre;
120};
121
fe56b9e6
YM
122/* The PCI personality is not quite synonymous to protocol ID:
123 * 1. All personalities need CORE connections
124 * 2. The Ethernet personality may support also the RoCE protocol
125 */
126enum qed_pci_personality {
127 QED_PCI_ETH,
128 QED_PCI_DEFAULT /* default in shmem */
129};
130
131/* All VFs are symmetric, all counters are PF + all VFs */
132struct qed_qm_iids {
133 u32 cids;
134 u32 vf_cids;
135 u32 tids;
136};
137
138enum QED_RESOURCES {
139 QED_SB,
25c089d7 140 QED_L2_QUEUE,
fe56b9e6 141 QED_VPORT,
25c089d7 142 QED_RSS_ENG,
fe56b9e6
YM
143 QED_PQ,
144 QED_RL,
25c089d7
YM
145 QED_MAC,
146 QED_VLAN,
fe56b9e6
YM
147 QED_ILT,
148 QED_MAX_RESC,
149};
150
25c089d7
YM
151enum QED_FEATURE {
152 QED_PF_L2_QUE,
153 QED_MAX_FEATURES,
154};
155
cc875c2e
YM
156enum QED_PORT_MODE {
157 QED_PORT_MODE_DE_2X40G,
158 QED_PORT_MODE_DE_2X50G,
159 QED_PORT_MODE_DE_1X100G,
160 QED_PORT_MODE_DE_4X10G_F,
161 QED_PORT_MODE_DE_4X10G_E,
162 QED_PORT_MODE_DE_4X20G,
163 QED_PORT_MODE_DE_1X40G,
164 QED_PORT_MODE_DE_2X25G,
165 QED_PORT_MODE_DE_1X25G
166};
167
fc48b7a6
YM
168enum qed_dev_cap {
169 QED_DEV_CAP_ETH,
170};
171
fe56b9e6
YM
172struct qed_hw_info {
173 /* PCI personality */
174 enum qed_pci_personality personality;
175
176 /* Resource Allocation scheme results */
177 u32 resc_start[QED_MAX_RESC];
178 u32 resc_num[QED_MAX_RESC];
25c089d7 179 u32 feat_num[QED_MAX_FEATURES];
fe56b9e6
YM
180
181#define RESC_START(_p_hwfn, resc) ((_p_hwfn)->hw_info.resc_start[resc])
182#define RESC_NUM(_p_hwfn, resc) ((_p_hwfn)->hw_info.resc_num[resc])
183#define FEAT_NUM(_p_hwfn, resc) ((_p_hwfn)->hw_info.feat_num[resc])
184
185 u8 num_tc;
186 u8 offload_tc;
187 u8 non_offload_tc;
188
189 u32 concrete_fid;
190 u16 opaque_fid;
191 u16 ovlan;
192 u32 part_num[4];
193
fe56b9e6
YM
194 unsigned char hw_mac_addr[ETH_ALEN];
195
196 struct qed_igu_info *p_igu_info;
197
198 u32 port_mode;
199 u32 hw_mode;
fc48b7a6 200 unsigned long device_capabilities;
fe56b9e6
YM
201};
202
203struct qed_hw_cid_data {
204 u32 cid;
205 bool b_cid_allocated;
206
207 /* Additional identifiers */
208 u16 opaque_fid;
209 u8 vport_id;
210};
211
212/* maximun size of read/write commands (HW limit) */
213#define DMAE_MAX_RW_SIZE 0x2000
214
215struct qed_dmae_info {
216 /* Mutex for synchronizing access to functions */
217 struct mutex mutex;
218
219 u8 channel;
220
221 dma_addr_t completion_word_phys_addr;
222
223 /* The memory location where the DMAE writes the completion
224 * value when an operation is finished on this context.
225 */
226 u32 *p_completion_word;
227
228 dma_addr_t intermediate_buffer_phys_addr;
229
230 /* An intermediate buffer for DMAE operations that use virtual
231 * addresses - data is DMA'd to/from this buffer and then
232 * memcpy'd to/from the virtual address
233 */
234 u32 *p_intermediate_buffer;
235
236 dma_addr_t dmae_cmd_phys_addr;
237 struct dmae_cmd *p_dmae_cmd;
238};
239
240struct qed_qm_info {
241 struct init_qm_pq_params *qm_pq_params;
242 struct init_qm_vport_params *qm_vport_params;
243 struct init_qm_port_params *qm_port_params;
244 u16 start_pq;
245 u8 start_vport;
246 u8 pure_lb_pq;
247 u8 offload_pq;
248 u8 pure_ack_pq;
249 u8 vf_queues_offset;
250 u16 num_pqs;
251 u16 num_vf_pqs;
252 u8 num_vports;
253 u8 max_phys_tcs_per_port;
254 bool pf_rl_en;
255 bool pf_wfq_en;
256 bool vport_rl_en;
257 bool vport_wfq_en;
258 u8 pf_wfq;
259 u32 pf_rl;
260};
261
9df2ed04
MC
262struct storm_stats {
263 u32 address;
264 u32 len;
265};
266
267struct qed_storm_stats {
268 struct storm_stats mstats;
269 struct storm_stats pstats;
270 struct storm_stats tstats;
271 struct storm_stats ustats;
272};
273
fe56b9e6 274struct qed_fw_data {
9df2ed04 275 struct fw_ver_info *fw_ver_info;
fe56b9e6
YM
276 const u8 *modes_tree_buf;
277 union init_op *init_ops;
278 const u32 *arr_data;
279 u32 init_ops_size;
280};
281
282struct qed_simd_fp_handler {
283 void *token;
284 void (*func)(void *);
285};
286
287struct qed_hwfn {
288 struct qed_dev *cdev;
289 u8 my_id; /* ID inside the PF */
290#define IS_LEAD_HWFN(edev) (!((edev)->my_id))
291 u8 rel_pf_id; /* Relative to engine*/
292 u8 abs_pf_id;
293#define QED_PATH_ID(_p_hwfn) ((_p_hwfn)->abs_pf_id & 1)
294 u8 port_id;
295 bool b_active;
296
297 u32 dp_module;
298 u8 dp_level;
299 char name[NAME_SIZE];
300
301 bool first_on_engine;
302 bool hw_init_done;
303
304 /* BAR access */
305 void __iomem *regview;
306 void __iomem *doorbells;
307 u64 db_phys_addr;
308 unsigned long db_size;
309
310 /* PTT pool */
311 struct qed_ptt_pool *p_ptt_pool;
312
313 /* HW info */
314 struct qed_hw_info hw_info;
315
316 /* rt_array (for init-tool) */
fc48b7a6 317 struct qed_rt_data rt_data;
fe56b9e6
YM
318
319 /* SPQ */
320 struct qed_spq *p_spq;
321
322 /* EQ */
323 struct qed_eq *p_eq;
324
325 /* Consolidate Q*/
326 struct qed_consq *p_consq;
327
328 /* Slow-Path definitions */
329 struct tasklet_struct *sp_dpc;
330 bool b_sp_dpc_enabled;
331
332 struct qed_ptt *p_main_ptt;
333 struct qed_ptt *p_dpc_ptt;
334
335 struct qed_sb_sp_info *p_sp_sb;
336 struct qed_sb_attn_info *p_sb_attn;
337
338 /* Protocol related */
339 struct qed_pf_params pf_params;
340
341 /* Array of sb_info of all status blocks */
342 struct qed_sb_info *sbs_info[MAX_SB_PER_PF_MIMD];
343 u16 num_sbs;
344
345 struct qed_cxt_mngr *p_cxt_mngr;
346
347 /* Flag indicating whether interrupts are enabled or not*/
348 bool b_int_enabled;
8f16bc97 349 bool b_int_requested;
fe56b9e6 350
fc916ff2
SRK
351 /* True if the driver requests for the link */
352 bool b_drv_link_init;
353
fe56b9e6
YM
354 struct qed_mcp_info *mcp_info;
355
25c089d7
YM
356 struct qed_hw_cid_data *p_tx_cids;
357 struct qed_hw_cid_data *p_rx_cids;
358
fe56b9e6
YM
359 struct qed_dmae_info dmae_info;
360
361 /* QM init */
362 struct qed_qm_info qm_info;
9df2ed04 363 struct qed_storm_stats storm_stats;
fe56b9e6
YM
364
365 /* Buffer for unzipping firmware data */
366 void *unzip_buf;
367
368 struct qed_simd_fp_handler simd_proto_handler[64];
369
370 struct z_stream_s *stream;
371};
372
373struct pci_params {
374 int pm_cap;
375
376 unsigned long mem_start;
377 unsigned long mem_end;
378 unsigned int irq;
379 u8 pf_num;
380};
381
382struct qed_int_param {
383 u32 int_mode;
384 u8 num_vectors;
385 u8 min_msix_cnt; /* for minimal functionality */
386};
387
388struct qed_int_params {
389 struct qed_int_param in;
390 struct qed_int_param out;
391 struct msix_entry *msix_table;
392 bool fp_initialized;
393 u8 fp_msix_base;
394 u8 fp_msix_cnt;
395};
396
397struct qed_dev {
398 u32 dp_module;
399 u8 dp_level;
400 char name[NAME_SIZE];
401
402 u8 type;
fc48b7a6
YM
403#define QED_DEV_TYPE_BB (0 << 0)
404#define QED_DEV_TYPE_AH BIT(0)
405/* Translate type/revision combo into the proper conditions */
406#define QED_IS_BB(dev) ((dev)->type == QED_DEV_TYPE_BB)
407#define QED_IS_BB_A0(dev) (QED_IS_BB(dev) && \
408 CHIP_REV_IS_A0(dev))
409#define QED_IS_BB_B0(dev) (QED_IS_BB(dev) && \
410 CHIP_REV_IS_B0(dev))
411
412#define QED_GET_TYPE(dev) (QED_IS_BB_A0(dev) ? CHIP_BB_A0 : \
413 QED_IS_BB_B0(dev) ? CHIP_BB_B0 : CHIP_K2)
414
415 u16 vendor_id;
416 u16 device_id;
fe56b9e6
YM
417
418 u16 chip_num;
419#define CHIP_NUM_MASK 0xffff
420#define CHIP_NUM_SHIFT 16
421
422 u16 chip_rev;
423#define CHIP_REV_MASK 0xf
424#define CHIP_REV_SHIFT 12
fc48b7a6
YM
425#define CHIP_REV_IS_A0(_cdev) (!(_cdev)->chip_rev)
426#define CHIP_REV_IS_B0(_cdev) ((_cdev)->chip_rev == 1)
fe56b9e6
YM
427
428 u16 chip_metal;
429#define CHIP_METAL_MASK 0xff
430#define CHIP_METAL_SHIFT 4
431
432 u16 chip_bond_id;
433#define CHIP_BOND_ID_MASK 0xf
434#define CHIP_BOND_ID_SHIFT 0
435
436 u8 num_engines;
437 u8 num_ports_in_engines;
438 u8 num_funcs_in_port;
439
440 u8 path_id;
fc48b7a6
YM
441 enum qed_mf_mode mf_mode;
442#define IS_MF_DEFAULT(_p_hwfn) (((_p_hwfn)->cdev)->mf_mode == QED_MF_DEFAULT)
443#define IS_MF_SI(_p_hwfn) (((_p_hwfn)->cdev)->mf_mode == QED_MF_NPAR)
444#define IS_MF_SD(_p_hwfn) (((_p_hwfn)->cdev)->mf_mode == QED_MF_OVLAN)
fe56b9e6
YM
445
446 int pcie_width;
447 int pcie_speed;
448 u8 ver_str[VER_SIZE];
449
450 /* Add MF related configuration */
451 u8 mcp_rev;
452 u8 boot_mode;
453
454 u8 wol;
455
456 u32 int_mode;
457 enum qed_coalescing_mode int_coalescing_mode;
458 u8 rx_coalesce_usecs;
459 u8 tx_coalesce_usecs;
460
461 /* Start Bar offset of first hwfn */
462 void __iomem *regview;
463 void __iomem *doorbells;
464 u64 db_phys_addr;
465 unsigned long db_size;
466
467 /* PCI */
468 u8 cache_shift;
469
470 /* Init */
471 const struct iro *iro_arr;
472#define IRO (p_hwfn->cdev->iro_arr)
473
474 /* HW functions */
475 u8 num_hwfns;
476 struct qed_hwfn hwfns[MAX_HWFNS_PER_DEVICE];
477
464f6645 478 unsigned long tunn_mode;
fe56b9e6
YM
479 u32 drv_type;
480
481 struct qed_eth_stats *reset_stats;
482 struct qed_fw_data *fw_data;
483
484 u32 mcp_nvm_resp;
485
486 /* Linux specific here */
487 struct qede_dev *edev;
488 struct pci_dev *pdev;
489 int msg_enable;
490
491 struct pci_params pci_params;
492
493 struct qed_int_params int_params;
494
495 u8 protocol;
496#define IS_QED_ETH_IF(cdev) ((cdev)->protocol == QED_PROTOCOL_ETH)
497
cc875c2e
YM
498 /* Callbacks to protocol driver */
499 union {
500 struct qed_common_cb_ops *common;
501 struct qed_eth_cb_ops *eth;
502 } protocol_ops;
503 void *ops_cookie;
504
fe56b9e6
YM
505 const struct firmware *firmware;
506};
507
fe56b9e6
YM
508#define NUM_OF_SBS(dev) MAX_SB_PER_PATH_BB
509#define NUM_OF_ENG_PFS(dev) MAX_NUM_PFS_BB
510
511/**
512 * @brief qed_concrete_to_sw_fid - get the sw function id from
513 * the concrete value.
514 *
515 * @param concrete_fid
516 *
517 * @return inline u8
518 */
519static inline u8 qed_concrete_to_sw_fid(struct qed_dev *cdev,
520 u32 concrete_fid)
521{
522 u8 pfid = GET_FIELD(concrete_fid, PXP_CONCRETE_FID_PFID);
523
524 return pfid;
525}
526
527#define PURE_LB_TC 8
528
529#define QED_LEADING_HWFN(dev) (&dev->hwfns[0])
530
531/* Other Linux specific common definitions */
532#define DP_NAME(cdev) ((cdev)->name)
533
534#define REG_ADDR(cdev, offset) (void __iomem *)((u8 __iomem *)\
535 (cdev->regview) + \
536 (offset))
537
538#define REG_RD(cdev, offset) readl(REG_ADDR(cdev, offset))
539#define REG_WR(cdev, offset, val) writel((u32)val, REG_ADDR(cdev, offset))
540#define REG_WR16(cdev, offset, val) writew((u16)val, REG_ADDR(cdev, offset))
541
542#define DOORBELL(cdev, db_addr, val) \
543 writel((u32)val, (void __iomem *)((u8 __iomem *)\
544 (cdev->doorbells) + (db_addr)))
545
546/* Prototypes */
547int qed_fill_dev_info(struct qed_dev *cdev,
548 struct qed_dev_info *dev_info);
cc875c2e 549void qed_link_update(struct qed_hwfn *hwfn);
fe56b9e6
YM
550u32 qed_unzip_data(struct qed_hwfn *p_hwfn,
551 u32 input_len, u8 *input_buf,
552 u32 max_size, u8 *unzip_buf);
553
8f16bc97
SK
554int qed_slowpath_irq_req(struct qed_hwfn *hwfn);
555
fe56b9e6 556#endif /* _QED_H */