blob: c2d74e8785cf7a96a1f57ade2fbfffa64212ae47 [file] [log] [blame]
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001/* QLogic qed NIC Driver
2 *
3 * Copyright (c) 2015 QLogic Corporation
4 *
5 * This software is available under the terms of the GNU General Public License
6 * (GPL) Version 2, available from the file COPYING in the main directory of
7 * this source tree.
8 */
9
10#ifndef _QED_IF_H
11#define _QED_IF_H
12
13#include <linux/types.h>
14#include <linux/interrupt.h>
15#include <linux/netdevice.h>
16#include <linux/pci.h>
17#include <linux/skbuff.h>
18#include <linux/types.h>
19#include <asm/byteorder.h>
20#include <linux/io.h>
21#include <linux/compiler.h>
22#include <linux/kernel.h>
23#include <linux/list.h>
24#include <linux/slab.h>
25#include <linux/qed/common_hsi.h>
26#include <linux/qed/qed_chain.h>
27
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -040028enum dcbx_protocol_type {
29 DCBX_PROTOCOL_ISCSI,
30 DCBX_PROTOCOL_FCOE,
31 DCBX_PROTOCOL_ROCE,
32 DCBX_PROTOCOL_ROCE_V2,
33 DCBX_PROTOCOL_ETH,
34 DCBX_MAX_PROTOCOL_TYPE
35};
36
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -040037#ifdef CONFIG_DCB
38#define QED_LLDP_CHASSIS_ID_STAT_LEN 4
39#define QED_LLDP_PORT_ID_STAT_LEN 4
40#define QED_DCBX_MAX_APP_PROTOCOL 32
41#define QED_MAX_PFC_PRIORITIES 8
42#define QED_DCBX_DSCP_SIZE 64
43
44struct qed_dcbx_lldp_remote {
45 u32 peer_chassis_id[QED_LLDP_CHASSIS_ID_STAT_LEN];
46 u32 peer_port_id[QED_LLDP_PORT_ID_STAT_LEN];
47 bool enable_rx;
48 bool enable_tx;
49 u32 tx_interval;
50 u32 max_credit;
51};
52
53struct qed_dcbx_lldp_local {
54 u32 local_chassis_id[QED_LLDP_CHASSIS_ID_STAT_LEN];
55 u32 local_port_id[QED_LLDP_PORT_ID_STAT_LEN];
56};
57
58struct qed_dcbx_app_prio {
59 u8 roce;
60 u8 roce_v2;
61 u8 fcoe;
62 u8 iscsi;
63 u8 eth;
64};
65
66struct qed_dbcx_pfc_params {
67 bool willing;
68 bool enabled;
69 u8 prio[QED_MAX_PFC_PRIORITIES];
70 u8 max_tc;
71};
72
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -040073enum qed_dcbx_sf_ieee_type {
74 QED_DCBX_SF_IEEE_ETHTYPE,
75 QED_DCBX_SF_IEEE_TCP_PORT,
76 QED_DCBX_SF_IEEE_UDP_PORT,
77 QED_DCBX_SF_IEEE_TCP_UDP_PORT
78};
79
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -040080struct qed_app_entry {
81 bool ethtype;
Sudarsana Reddy Kalluru59bcb792016-08-08 21:57:42 -040082 enum qed_dcbx_sf_ieee_type sf_ieee;
Sudarsana Reddy Kalluru6ad8c632016-06-08 06:22:10 -040083 bool enabled;
84 u8 prio;
85 u16 proto_id;
86 enum dcbx_protocol_type proto_type;
87};
88
89struct qed_dcbx_params {
90 struct qed_app_entry app_entry[QED_DCBX_MAX_APP_PROTOCOL];
91 u16 num_app_entries;
92 bool app_willing;
93 bool app_valid;
94 bool app_error;
95 bool ets_willing;
96 bool ets_enabled;
97 bool ets_cbs;
98 bool valid;
99 u8 ets_pri_tc_tbl[QED_MAX_PFC_PRIORITIES];
100 u8 ets_tc_bw_tbl[QED_MAX_PFC_PRIORITIES];
101 u8 ets_tc_tsa_tbl[QED_MAX_PFC_PRIORITIES];
102 struct qed_dbcx_pfc_params pfc;
103 u8 max_ets_tc;
104};
105
106struct qed_dcbx_admin_params {
107 struct qed_dcbx_params params;
108 bool valid;
109};
110
111struct qed_dcbx_remote_params {
112 struct qed_dcbx_params params;
113 bool valid;
114};
115
116struct qed_dcbx_operational_params {
117 struct qed_dcbx_app_prio app_prio;
118 struct qed_dcbx_params params;
119 bool valid;
120 bool enabled;
121 bool ieee;
122 bool cee;
123 u32 err;
124};
125
126struct qed_dcbx_get {
127 struct qed_dcbx_operational_params operational;
128 struct qed_dcbx_lldp_remote lldp_remote;
129 struct qed_dcbx_lldp_local lldp_local;
130 struct qed_dcbx_remote_params remote;
131 struct qed_dcbx_admin_params local;
132};
133#endif
134
Sudarsana Kalluru91420b82015-11-30 12:25:03 +0200135enum qed_led_mode {
136 QED_LED_MODE_OFF,
137 QED_LED_MODE_ON,
138 QED_LED_MODE_RESTORE
139};
140
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200141#define DIRECT_REG_WR(reg_addr, val) writel((u32)val, \
142 (void __iomem *)(reg_addr))
143
144#define DIRECT_REG_RD(reg_addr) readl((void __iomem *)(reg_addr))
145
146#define QED_COALESCE_MAX 0xFF
147
148/* forward */
149struct qed_dev;
150
151struct qed_eth_pf_params {
152 /* The following parameters are used during HW-init
153 * and these parameters need to be passed as arguments
154 * to update_pf_params routine invoked before slowpath start
155 */
156 u16 num_cons;
157};
158
Yuval Mintzc5ac9312016-06-03 14:35:34 +0300159/* Most of the the parameters below are described in the FW iSCSI / TCP HSI */
160struct qed_iscsi_pf_params {
161 u64 glbl_q_params_addr;
162 u64 bdq_pbl_base_addr[2];
163 u32 max_cwnd;
164 u16 cq_num_entries;
165 u16 cmdq_num_entries;
166 u16 dup_ack_threshold;
167 u16 tx_sws_timer;
168 u16 min_rto;
169 u16 min_rto_rt;
170 u16 max_rto;
171
172 /* The following parameters are used during HW-init
173 * and these parameters need to be passed as arguments
174 * to update_pf_params routine invoked before slowpath start
175 */
176 u16 num_cons;
177 u16 num_tasks;
178
179 /* The following parameters are used during protocol-init */
180 u16 half_way_close_timeout;
181 u16 bdq_xoff_threshold[2];
182 u16 bdq_xon_threshold[2];
183 u16 cmdq_xoff_threshold;
184 u16 cmdq_xon_threshold;
185 u16 rq_buffer_size;
186
187 u8 num_sq_pages_in_ring;
188 u8 num_r2tq_pages_in_ring;
189 u8 num_uhq_pages_in_ring;
190 u8 num_queues;
191 u8 log_page_size;
192 u8 rqe_log_size;
193 u8 max_fin_rt;
194 u8 gl_rq_pi;
195 u8 gl_cmd_pi;
196 u8 debug_mode;
197 u8 ll2_ooo_queue_id;
198 u8 ooo_enable;
199
200 u8 is_target;
201 u8 bdq_pbl_num_entries[2];
202};
203
204struct qed_rdma_pf_params {
205 /* Supplied to QED during resource allocation (may affect the ILT and
206 * the doorbell BAR).
207 */
208 u32 min_dpis; /* number of requested DPIs */
209 u32 num_mrs; /* number of requested memory regions */
210 u32 num_qps; /* number of requested Queue Pairs */
211 u32 num_srqs; /* number of requested SRQ */
212 u8 roce_edpm_mode; /* see QED_ROCE_EDPM_MODE_ENABLE */
213 u8 gl_pi; /* protocol index */
214
215 /* Will allocate rate limiters to be used with QPs */
216 u8 enable_dcqcn;
217};
218
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200219struct qed_pf_params {
220 struct qed_eth_pf_params eth_pf_params;
Yuval Mintzc5ac9312016-06-03 14:35:34 +0300221 struct qed_iscsi_pf_params iscsi_pf_params;
222 struct qed_rdma_pf_params rdma_pf_params;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200223};
224
225enum qed_int_mode {
226 QED_INT_MODE_INTA,
227 QED_INT_MODE_MSIX,
228 QED_INT_MODE_MSI,
229 QED_INT_MODE_POLL,
230};
231
232struct qed_sb_info {
233 struct status_block *sb_virt;
234 dma_addr_t sb_phys;
235 u32 sb_ack; /* Last given ack */
236 u16 igu_sb_id;
237 void __iomem *igu_addr;
238 u8 flags;
239#define QED_SB_INFO_INIT 0x1
240#define QED_SB_INFO_SETUP 0x2
241
242 struct qed_dev *cdev;
243};
244
245struct qed_dev_info {
246 unsigned long pci_mem_start;
247 unsigned long pci_mem_end;
248 unsigned int pci_irq;
249 u8 num_hwfns;
250
251 u8 hw_mac[ETH_ALEN];
Yuval Mintzfc48b7a2016-02-15 13:22:35 -0500252 bool is_mf_default;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200253
254 /* FW version */
255 u16 fw_major;
256 u16 fw_minor;
257 u16 fw_rev;
258 u16 fw_eng;
259
260 /* MFW version */
261 u32 mfw_rev;
262
Yuval Mintzc5ac9312016-06-03 14:35:34 +0300263 bool rdma_supported;
264
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200265 u32 flash_size;
266 u8 mf_mode;
Yuval Mintz831bfb0e2016-05-11 16:36:25 +0300267 bool tx_switching;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200268};
269
270enum qed_sb_type {
271 QED_SB_TYPE_L2_QUEUE,
272};
273
274enum qed_protocol {
275 QED_PROTOCOL_ETH,
Yuval Mintzc5ac9312016-06-03 14:35:34 +0300276 QED_PROTOCOL_ISCSI,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200277};
278
Sudarsana Reddy Kalluru054c67d2016-08-09 03:51:23 -0400279enum qed_link_mode_bits {
280 QED_LM_FIBRE_BIT = BIT(0),
281 QED_LM_Autoneg_BIT = BIT(1),
282 QED_LM_Asym_Pause_BIT = BIT(2),
283 QED_LM_Pause_BIT = BIT(3),
284 QED_LM_1000baseT_Half_BIT = BIT(4),
285 QED_LM_1000baseT_Full_BIT = BIT(5),
286 QED_LM_10000baseKR_Full_BIT = BIT(6),
287 QED_LM_25000baseKR_Full_BIT = BIT(7),
288 QED_LM_40000baseLR4_Full_BIT = BIT(8),
289 QED_LM_50000baseKR2_Full_BIT = BIT(9),
290 QED_LM_100000baseKR4_Full_BIT = BIT(10),
291 QED_LM_COUNT = 11
292};
293
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200294struct qed_link_params {
295 bool link_up;
296
297#define QED_LINK_OVERRIDE_SPEED_AUTONEG BIT(0)
298#define QED_LINK_OVERRIDE_SPEED_ADV_SPEEDS BIT(1)
299#define QED_LINK_OVERRIDE_SPEED_FORCED_SPEED BIT(2)
300#define QED_LINK_OVERRIDE_PAUSE_CONFIG BIT(3)
Sudarsana Reddy Kalluru03dc76c2016-04-28 20:20:52 -0400301#define QED_LINK_OVERRIDE_LOOPBACK_MODE BIT(4)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200302 u32 override_flags;
303 bool autoneg;
304 u32 adv_speeds;
305 u32 forced_speed;
306#define QED_LINK_PAUSE_AUTONEG_ENABLE BIT(0)
307#define QED_LINK_PAUSE_RX_ENABLE BIT(1)
308#define QED_LINK_PAUSE_TX_ENABLE BIT(2)
309 u32 pause_config;
Sudarsana Reddy Kalluru03dc76c2016-04-28 20:20:52 -0400310#define QED_LINK_LOOPBACK_NONE BIT(0)
311#define QED_LINK_LOOPBACK_INT_PHY BIT(1)
312#define QED_LINK_LOOPBACK_EXT_PHY BIT(2)
313#define QED_LINK_LOOPBACK_EXT BIT(3)
314#define QED_LINK_LOOPBACK_MAC BIT(4)
315 u32 loopback_mode;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200316};
317
318struct qed_link_output {
319 bool link_up;
320
Yuval Mintzd194fd22016-08-19 08:34:57 +0300321 /* In QED_LM_* defs */
322 u32 supported_caps;
323 u32 advertised_caps;
324 u32 lp_caps;
325
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200326 u32 speed; /* In Mb/s */
327 u8 duplex; /* In DUPLEX defs */
328 u8 port; /* In PORT defs */
329 bool autoneg;
330 u32 pause_config;
331};
332
Yuval Mintz1408cc1f2016-05-11 16:36:14 +0300333struct qed_probe_params {
334 enum qed_protocol protocol;
335 u32 dp_module;
336 u8 dp_level;
337 bool is_vf;
338};
339
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200340#define QED_DRV_VER_STR_SIZE 12
341struct qed_slowpath_params {
342 u32 int_mode;
343 u8 drv_major;
344 u8 drv_minor;
345 u8 drv_rev;
346 u8 drv_eng;
347 u8 name[QED_DRV_VER_STR_SIZE];
348};
349
350#define ILT_PAGE_SIZE_TCFC 0x8000 /* 32KB */
351
352struct qed_int_info {
353 struct msix_entry *msix;
354 u8 msix_cnt;
355
356 /* This should be updated by the protocol driver */
357 u8 used_cnt;
358};
359
360struct qed_common_cb_ops {
361 void (*link_update)(void *dev,
362 struct qed_link_output *link);
363};
364
Sudarsana Reddy Kalluru03dc76c2016-04-28 20:20:52 -0400365struct qed_selftest_ops {
366/**
367 * @brief selftest_interrupt - Perform interrupt test
368 *
369 * @param cdev
370 *
371 * @return 0 on success, error otherwise.
372 */
373 int (*selftest_interrupt)(struct qed_dev *cdev);
374
375/**
376 * @brief selftest_memory - Perform memory test
377 *
378 * @param cdev
379 *
380 * @return 0 on success, error otherwise.
381 */
382 int (*selftest_memory)(struct qed_dev *cdev);
383
384/**
385 * @brief selftest_register - Perform register test
386 *
387 * @param cdev
388 *
389 * @return 0 on success, error otherwise.
390 */
391 int (*selftest_register)(struct qed_dev *cdev);
392
393/**
394 * @brief selftest_clock - Perform clock test
395 *
396 * @param cdev
397 *
398 * @return 0 on success, error otherwise.
399 */
400 int (*selftest_clock)(struct qed_dev *cdev);
401};
402
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200403struct qed_common_ops {
Sudarsana Reddy Kalluru03dc76c2016-04-28 20:20:52 -0400404 struct qed_selftest_ops *selftest;
405
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200406 struct qed_dev* (*probe)(struct pci_dev *dev,
Yuval Mintz1408cc1f2016-05-11 16:36:14 +0300407 struct qed_probe_params *params);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200408
409 void (*remove)(struct qed_dev *cdev);
410
411 int (*set_power_state)(struct qed_dev *cdev,
412 pci_power_t state);
413
414 void (*set_id)(struct qed_dev *cdev,
415 char name[],
416 char ver_str[]);
417
418 /* Client drivers need to make this call before slowpath_start.
419 * PF params required for the call before slowpath_start is
420 * documented within the qed_pf_params structure definition.
421 */
422 void (*update_pf_params)(struct qed_dev *cdev,
423 struct qed_pf_params *params);
424 int (*slowpath_start)(struct qed_dev *cdev,
425 struct qed_slowpath_params *params);
426
427 int (*slowpath_stop)(struct qed_dev *cdev);
428
429 /* Requests to use `cnt' interrupts for fastpath.
430 * upon success, returns number of interrupts allocated for fastpath.
431 */
432 int (*set_fp_int)(struct qed_dev *cdev,
433 u16 cnt);
434
435 /* Fills `info' with pointers required for utilizing interrupts */
436 int (*get_fp_int)(struct qed_dev *cdev,
437 struct qed_int_info *info);
438
439 u32 (*sb_init)(struct qed_dev *cdev,
440 struct qed_sb_info *sb_info,
441 void *sb_virt_addr,
442 dma_addr_t sb_phy_addr,
443 u16 sb_id,
444 enum qed_sb_type type);
445
446 u32 (*sb_release)(struct qed_dev *cdev,
447 struct qed_sb_info *sb_info,
448 u16 sb_id);
449
450 void (*simd_handler_config)(struct qed_dev *cdev,
451 void *token,
452 int index,
453 void (*handler)(void *));
454
455 void (*simd_handler_clean)(struct qed_dev *cdev,
456 int index);
Yuval Mintzfe7cd2b2016-04-22 08:41:03 +0300457
Tomer Tayare0971c82016-09-07 16:36:25 +0300458 int (*dbg_all_data) (struct qed_dev *cdev, void *buffer);
459
460 int (*dbg_all_data_size) (struct qed_dev *cdev);
461
Yuval Mintzfe7cd2b2016-04-22 08:41:03 +0300462/**
463 * @brief can_link_change - can the instance change the link or not
464 *
465 * @param cdev
466 *
467 * @return true if link-change is allowed, false otherwise.
468 */
469 bool (*can_link_change)(struct qed_dev *cdev);
470
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200471/**
472 * @brief set_link - set links according to params
473 *
474 * @param cdev
475 * @param params - values used to override the default link configuration
476 *
477 * @return 0 on success, error otherwise.
478 */
479 int (*set_link)(struct qed_dev *cdev,
480 struct qed_link_params *params);
481
482/**
483 * @brief get_link - returns the current link state.
484 *
485 * @param cdev
486 * @param if_link - structure to be filled with current link configuration.
487 */
488 void (*get_link)(struct qed_dev *cdev,
489 struct qed_link_output *if_link);
490
491/**
492 * @brief - drains chip in case Tx completions fail to arrive due to pause.
493 *
494 * @param cdev
495 */
496 int (*drain)(struct qed_dev *cdev);
497
498/**
499 * @brief update_msglvl - update module debug level
500 *
501 * @param cdev
502 * @param dp_module
503 * @param dp_level
504 */
505 void (*update_msglvl)(struct qed_dev *cdev,
506 u32 dp_module,
507 u8 dp_level);
508
509 int (*chain_alloc)(struct qed_dev *cdev,
510 enum qed_chain_use_mode intended_use,
511 enum qed_chain_mode mode,
Yuval Mintza91eb522016-06-03 14:35:32 +0300512 enum qed_chain_cnt_type cnt_type,
513 u32 num_elems,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200514 size_t elem_size,
515 struct qed_chain *p_chain);
516
517 void (*chain_free)(struct qed_dev *cdev,
518 struct qed_chain *p_chain);
Sudarsana Kalluru91420b82015-11-30 12:25:03 +0200519
520/**
Sudarsana Reddy Kalluru722003a2016-06-21 09:36:21 -0400521 * @brief get_coalesce - Get coalesce parameters in usec
522 *
523 * @param cdev
524 * @param rx_coal - Rx coalesce value in usec
525 * @param tx_coal - Tx coalesce value in usec
526 *
527 */
528 void (*get_coalesce)(struct qed_dev *cdev, u16 *rx_coal, u16 *tx_coal);
529
530/**
531 * @brief set_coalesce - Configure Rx coalesce value in usec
532 *
533 * @param cdev
534 * @param rx_coal - Rx coalesce value in usec
535 * @param tx_coal - Tx coalesce value in usec
536 * @param qid - Queue index
537 * @param sb_id - Status Block Id
538 *
539 * @return 0 on success, error otherwise.
540 */
541 int (*set_coalesce)(struct qed_dev *cdev, u16 rx_coal, u16 tx_coal,
542 u8 qid, u16 sb_id);
543
544/**
Sudarsana Kalluru91420b82015-11-30 12:25:03 +0200545 * @brief set_led - Configure LED mode
546 *
547 * @param cdev
548 * @param mode - LED mode
549 *
550 * @return 0 on success, error otherwise.
551 */
552 int (*set_led)(struct qed_dev *cdev,
553 enum qed_led_mode mode);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200554};
555
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200556#define MASK_FIELD(_name, _value) \
557 ((_value) &= (_name ## _MASK))
558
559#define FIELD_VALUE(_name, _value) \
560 ((_value & _name ## _MASK) << _name ## _SHIFT)
561
562#define SET_FIELD(value, name, flag) \
563 do { \
564 (value) &= ~(name ## _MASK << name ## _SHIFT); \
565 (value) |= (((u64)flag) << (name ## _SHIFT)); \
566 } while (0)
567
568#define GET_FIELD(value, name) \
569 (((value) >> (name ## _SHIFT)) & name ## _MASK)
570
571/* Debug print definitions */
572#define DP_ERR(cdev, fmt, ...) \
573 pr_err("[%s:%d(%s)]" fmt, \
574 __func__, __LINE__, \
575 DP_NAME(cdev) ? DP_NAME(cdev) : "", \
576 ## __VA_ARGS__) \
577
578#define DP_NOTICE(cdev, fmt, ...) \
579 do { \
580 if (unlikely((cdev)->dp_level <= QED_LEVEL_NOTICE)) { \
581 pr_notice("[%s:%d(%s)]" fmt, \
582 __func__, __LINE__, \
583 DP_NAME(cdev) ? DP_NAME(cdev) : "", \
584 ## __VA_ARGS__); \
585 \
586 } \
587 } while (0)
588
589#define DP_INFO(cdev, fmt, ...) \
590 do { \
591 if (unlikely((cdev)->dp_level <= QED_LEVEL_INFO)) { \
592 pr_notice("[%s:%d(%s)]" fmt, \
593 __func__, __LINE__, \
594 DP_NAME(cdev) ? DP_NAME(cdev) : "", \
595 ## __VA_ARGS__); \
596 } \
597 } while (0)
598
599#define DP_VERBOSE(cdev, module, fmt, ...) \
600 do { \
601 if (unlikely(((cdev)->dp_level <= QED_LEVEL_VERBOSE) && \
602 ((cdev)->dp_module & module))) { \
603 pr_notice("[%s:%d(%s)]" fmt, \
604 __func__, __LINE__, \
605 DP_NAME(cdev) ? DP_NAME(cdev) : "", \
606 ## __VA_ARGS__); \
607 } \
608 } while (0)
609
610enum DP_LEVEL {
611 QED_LEVEL_VERBOSE = 0x0,
612 QED_LEVEL_INFO = 0x1,
613 QED_LEVEL_NOTICE = 0x2,
614 QED_LEVEL_ERR = 0x3,
615};
616
617#define QED_LOG_LEVEL_SHIFT (30)
618#define QED_LOG_VERBOSE_MASK (0x3fffffff)
619#define QED_LOG_INFO_MASK (0x40000000)
620#define QED_LOG_NOTICE_MASK (0x80000000)
621
622enum DP_MODULE {
623 QED_MSG_SPQ = 0x10000,
624 QED_MSG_STATS = 0x20000,
625 QED_MSG_DCB = 0x40000,
626 QED_MSG_IOV = 0x80000,
627 QED_MSG_SP = 0x100000,
628 QED_MSG_STORAGE = 0x200000,
629 QED_MSG_CXT = 0x800000,
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300630 QED_MSG_LL2 = 0x1000000,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200631 QED_MSG_ILT = 0x2000000,
632 QED_MSG_ROCE = 0x4000000,
633 QED_MSG_DEBUG = 0x8000000,
634 /* to be added...up to 0x8000000 */
635};
636
Yuval Mintzfc48b7a2016-02-15 13:22:35 -0500637enum qed_mf_mode {
638 QED_MF_DEFAULT,
639 QED_MF_OVLAN,
640 QED_MF_NPAR,
641};
642
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200643struct qed_eth_stats {
644 u64 no_buff_discards;
645 u64 packet_too_big_discard;
646 u64 ttl0_discard;
647 u64 rx_ucast_bytes;
648 u64 rx_mcast_bytes;
649 u64 rx_bcast_bytes;
650 u64 rx_ucast_pkts;
651 u64 rx_mcast_pkts;
652 u64 rx_bcast_pkts;
653 u64 mftag_filter_discards;
654 u64 mac_filter_discards;
655 u64 tx_ucast_bytes;
656 u64 tx_mcast_bytes;
657 u64 tx_bcast_bytes;
658 u64 tx_ucast_pkts;
659 u64 tx_mcast_pkts;
660 u64 tx_bcast_pkts;
661 u64 tx_err_drop_pkts;
662 u64 tpa_coalesced_pkts;
663 u64 tpa_coalesced_events;
664 u64 tpa_aborts_num;
665 u64 tpa_not_coalesced_pkts;
666 u64 tpa_coalesced_bytes;
667
668 /* port */
669 u64 rx_64_byte_packets;
Yuval Mintzd4967cf2016-04-22 08:41:01 +0300670 u64 rx_65_to_127_byte_packets;
671 u64 rx_128_to_255_byte_packets;
672 u64 rx_256_to_511_byte_packets;
673 u64 rx_512_to_1023_byte_packets;
674 u64 rx_1024_to_1518_byte_packets;
675 u64 rx_1519_to_1522_byte_packets;
676 u64 rx_1519_to_2047_byte_packets;
677 u64 rx_2048_to_4095_byte_packets;
678 u64 rx_4096_to_9216_byte_packets;
679 u64 rx_9217_to_16383_byte_packets;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200680 u64 rx_crc_errors;
681 u64 rx_mac_crtl_frames;
682 u64 rx_pause_frames;
683 u64 rx_pfc_frames;
684 u64 rx_align_errors;
685 u64 rx_carrier_errors;
686 u64 rx_oversize_packets;
687 u64 rx_jabbers;
688 u64 rx_undersize_packets;
689 u64 rx_fragments;
690 u64 tx_64_byte_packets;
691 u64 tx_65_to_127_byte_packets;
692 u64 tx_128_to_255_byte_packets;
693 u64 tx_256_to_511_byte_packets;
694 u64 tx_512_to_1023_byte_packets;
695 u64 tx_1024_to_1518_byte_packets;
696 u64 tx_1519_to_2047_byte_packets;
697 u64 tx_2048_to_4095_byte_packets;
698 u64 tx_4096_to_9216_byte_packets;
699 u64 tx_9217_to_16383_byte_packets;
700 u64 tx_pause_frames;
701 u64 tx_pfc_frames;
702 u64 tx_lpi_entry_count;
703 u64 tx_total_collisions;
704 u64 brb_truncates;
705 u64 brb_discards;
706 u64 rx_mac_bytes;
707 u64 rx_mac_uc_packets;
708 u64 rx_mac_mc_packets;
709 u64 rx_mac_bc_packets;
710 u64 rx_mac_frames_ok;
711 u64 tx_mac_bytes;
712 u64 tx_mac_uc_packets;
713 u64 tx_mac_mc_packets;
714 u64 tx_mac_bc_packets;
715 u64 tx_mac_ctrl_frames;
716};
717
718#define QED_SB_IDX 0x0002
719
720#define RX_PI 0
721#define TX_PI(tc) (RX_PI + 1 + tc)
722
Yuval Mintz4ac801b2016-02-28 12:26:52 +0200723struct qed_sb_cnt_info {
724 int sb_cnt;
725 int sb_iov_cnt;
726 int sb_free_blk;
727};
728
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200729static inline u16 qed_sb_update_sb_idx(struct qed_sb_info *sb_info)
730{
731 u32 prod = 0;
732 u16 rc = 0;
733
734 prod = le32_to_cpu(sb_info->sb_virt->prod_index) &
735 STATUS_BLOCK_PROD_INDEX_MASK;
736 if (sb_info->sb_ack != prod) {
737 sb_info->sb_ack = prod;
738 rc |= QED_SB_IDX;
739 }
740
741 /* Let SB update */
742 mmiowb();
743 return rc;
744}
745
746/**
747 *
748 * @brief This function creates an update command for interrupts that is
749 * written to the IGU.
750 *
751 * @param sb_info - This is the structure allocated and
752 * initialized per status block. Assumption is
753 * that it was initialized using qed_sb_init
754 * @param int_cmd - Enable/Disable/Nop
755 * @param upd_flg - whether igu consumer should be
756 * updated.
757 *
758 * @return inline void
759 */
760static inline void qed_sb_ack(struct qed_sb_info *sb_info,
761 enum igu_int_cmd int_cmd,
762 u8 upd_flg)
763{
764 struct igu_prod_cons_update igu_ack = { 0 };
765
766 igu_ack.sb_id_and_flags =
767 ((sb_info->sb_ack << IGU_PROD_CONS_UPDATE_SB_INDEX_SHIFT) |
768 (upd_flg << IGU_PROD_CONS_UPDATE_UPDATE_FLAG_SHIFT) |
769 (int_cmd << IGU_PROD_CONS_UPDATE_ENABLE_INT_SHIFT) |
770 (IGU_SEG_ACCESS_REG <<
771 IGU_PROD_CONS_UPDATE_SEGMENT_ACCESS_SHIFT));
772
773 DIRECT_REG_WR(sb_info->igu_addr, igu_ack.sb_id_and_flags);
774
775 /* Both segments (interrupts & acks) are written to same place address;
776 * Need to guarantee all commands will be received (in-order) by HW.
777 */
778 mmiowb();
779 barrier();
780}
781
782static inline void __internal_ram_wr(void *p_hwfn,
783 void __iomem *addr,
784 int size,
785 u32 *data)
786
787{
788 unsigned int i;
789
790 for (i = 0; i < size / sizeof(*data); i++)
791 DIRECT_REG_WR(&((u32 __iomem *)addr)[i], data[i]);
792}
793
794static inline void internal_ram_wr(void __iomem *addr,
795 int size,
796 u32 *data)
797{
798 __internal_ram_wr(NULL, addr, size, data);
799}
800
Sudarsana Reddy Kalluru8c5ebd02016-04-10 12:43:00 +0300801enum qed_rss_caps {
802 QED_RSS_IPV4 = 0x1,
803 QED_RSS_IPV6 = 0x2,
804 QED_RSS_IPV4_TCP = 0x4,
805 QED_RSS_IPV6_TCP = 0x8,
806 QED_RSS_IPV4_UDP = 0x10,
807 QED_RSS_IPV6_UDP = 0x20,
808};
809
810#define QED_RSS_IND_TABLE_SIZE 128
811#define QED_RSS_KEY_SIZE 10 /* size in 32b chunks */
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200812#endif