blob: e313742b571d78cfbb610c7766769411c4012dc9 [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
263 u32 flash_size;
264 u8 mf_mode;
Yuval Mintz831bfb0e2016-05-11 16:36:25 +0300265 bool tx_switching;
Ram Amranicee9fbd2016-10-01 21:59:56 +0300266 bool rdma_supported;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200267};
268
269enum qed_sb_type {
270 QED_SB_TYPE_L2_QUEUE,
271};
272
273enum qed_protocol {
274 QED_PROTOCOL_ETH,
Yuval Mintzc5ac9312016-06-03 14:35:34 +0300275 QED_PROTOCOL_ISCSI,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200276};
277
Sudarsana Reddy Kalluru054c67d2016-08-09 03:51:23 -0400278enum qed_link_mode_bits {
279 QED_LM_FIBRE_BIT = BIT(0),
280 QED_LM_Autoneg_BIT = BIT(1),
281 QED_LM_Asym_Pause_BIT = BIT(2),
282 QED_LM_Pause_BIT = BIT(3),
283 QED_LM_1000baseT_Half_BIT = BIT(4),
284 QED_LM_1000baseT_Full_BIT = BIT(5),
285 QED_LM_10000baseKR_Full_BIT = BIT(6),
286 QED_LM_25000baseKR_Full_BIT = BIT(7),
287 QED_LM_40000baseLR4_Full_BIT = BIT(8),
288 QED_LM_50000baseKR2_Full_BIT = BIT(9),
289 QED_LM_100000baseKR4_Full_BIT = BIT(10),
290 QED_LM_COUNT = 11
291};
292
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200293struct qed_link_params {
294 bool link_up;
295
296#define QED_LINK_OVERRIDE_SPEED_AUTONEG BIT(0)
297#define QED_LINK_OVERRIDE_SPEED_ADV_SPEEDS BIT(1)
298#define QED_LINK_OVERRIDE_SPEED_FORCED_SPEED BIT(2)
299#define QED_LINK_OVERRIDE_PAUSE_CONFIG BIT(3)
Sudarsana Reddy Kalluru03dc76c2016-04-28 20:20:52 -0400300#define QED_LINK_OVERRIDE_LOOPBACK_MODE BIT(4)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200301 u32 override_flags;
302 bool autoneg;
303 u32 adv_speeds;
304 u32 forced_speed;
305#define QED_LINK_PAUSE_AUTONEG_ENABLE BIT(0)
306#define QED_LINK_PAUSE_RX_ENABLE BIT(1)
307#define QED_LINK_PAUSE_TX_ENABLE BIT(2)
308 u32 pause_config;
Sudarsana Reddy Kalluru03dc76c2016-04-28 20:20:52 -0400309#define QED_LINK_LOOPBACK_NONE BIT(0)
310#define QED_LINK_LOOPBACK_INT_PHY BIT(1)
311#define QED_LINK_LOOPBACK_EXT_PHY BIT(2)
312#define QED_LINK_LOOPBACK_EXT BIT(3)
313#define QED_LINK_LOOPBACK_MAC BIT(4)
314 u32 loopback_mode;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200315};
316
317struct qed_link_output {
318 bool link_up;
319
Yuval Mintzd194fd22016-08-19 08:34:57 +0300320 /* In QED_LM_* defs */
321 u32 supported_caps;
322 u32 advertised_caps;
323 u32 lp_caps;
324
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200325 u32 speed; /* In Mb/s */
326 u8 duplex; /* In DUPLEX defs */
327 u8 port; /* In PORT defs */
328 bool autoneg;
329 u32 pause_config;
330};
331
Yuval Mintz1408cc1f2016-05-11 16:36:14 +0300332struct qed_probe_params {
333 enum qed_protocol protocol;
334 u32 dp_module;
335 u8 dp_level;
336 bool is_vf;
337};
338
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200339#define QED_DRV_VER_STR_SIZE 12
340struct qed_slowpath_params {
341 u32 int_mode;
342 u8 drv_major;
343 u8 drv_minor;
344 u8 drv_rev;
345 u8 drv_eng;
346 u8 name[QED_DRV_VER_STR_SIZE];
347};
348
349#define ILT_PAGE_SIZE_TCFC 0x8000 /* 32KB */
350
351struct qed_int_info {
352 struct msix_entry *msix;
353 u8 msix_cnt;
354
355 /* This should be updated by the protocol driver */
356 u8 used_cnt;
357};
358
359struct qed_common_cb_ops {
360 void (*link_update)(void *dev,
361 struct qed_link_output *link);
362};
363
Sudarsana Reddy Kalluru03dc76c2016-04-28 20:20:52 -0400364struct qed_selftest_ops {
365/**
366 * @brief selftest_interrupt - Perform interrupt test
367 *
368 * @param cdev
369 *
370 * @return 0 on success, error otherwise.
371 */
372 int (*selftest_interrupt)(struct qed_dev *cdev);
373
374/**
375 * @brief selftest_memory - Perform memory test
376 *
377 * @param cdev
378 *
379 * @return 0 on success, error otherwise.
380 */
381 int (*selftest_memory)(struct qed_dev *cdev);
382
383/**
384 * @brief selftest_register - Perform register test
385 *
386 * @param cdev
387 *
388 * @return 0 on success, error otherwise.
389 */
390 int (*selftest_register)(struct qed_dev *cdev);
391
392/**
393 * @brief selftest_clock - Perform clock test
394 *
395 * @param cdev
396 *
397 * @return 0 on success, error otherwise.
398 */
399 int (*selftest_clock)(struct qed_dev *cdev);
400};
401
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200402struct qed_common_ops {
Sudarsana Reddy Kalluru03dc76c2016-04-28 20:20:52 -0400403 struct qed_selftest_ops *selftest;
404
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200405 struct qed_dev* (*probe)(struct pci_dev *dev,
Yuval Mintz1408cc1f2016-05-11 16:36:14 +0300406 struct qed_probe_params *params);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200407
408 void (*remove)(struct qed_dev *cdev);
409
410 int (*set_power_state)(struct qed_dev *cdev,
411 pci_power_t state);
412
413 void (*set_id)(struct qed_dev *cdev,
414 char name[],
415 char ver_str[]);
416
417 /* Client drivers need to make this call before slowpath_start.
418 * PF params required for the call before slowpath_start is
419 * documented within the qed_pf_params structure definition.
420 */
421 void (*update_pf_params)(struct qed_dev *cdev,
422 struct qed_pf_params *params);
423 int (*slowpath_start)(struct qed_dev *cdev,
424 struct qed_slowpath_params *params);
425
426 int (*slowpath_stop)(struct qed_dev *cdev);
427
428 /* Requests to use `cnt' interrupts for fastpath.
429 * upon success, returns number of interrupts allocated for fastpath.
430 */
431 int (*set_fp_int)(struct qed_dev *cdev,
432 u16 cnt);
433
434 /* Fills `info' with pointers required for utilizing interrupts */
435 int (*get_fp_int)(struct qed_dev *cdev,
436 struct qed_int_info *info);
437
438 u32 (*sb_init)(struct qed_dev *cdev,
439 struct qed_sb_info *sb_info,
440 void *sb_virt_addr,
441 dma_addr_t sb_phy_addr,
442 u16 sb_id,
443 enum qed_sb_type type);
444
445 u32 (*sb_release)(struct qed_dev *cdev,
446 struct qed_sb_info *sb_info,
447 u16 sb_id);
448
449 void (*simd_handler_config)(struct qed_dev *cdev,
450 void *token,
451 int index,
452 void (*handler)(void *));
453
454 void (*simd_handler_clean)(struct qed_dev *cdev,
455 int index);
Yuval Mintzfe7cd2b2016-04-22 08:41:03 +0300456
Tomer Tayare0971c82016-09-07 16:36:25 +0300457 int (*dbg_all_data) (struct qed_dev *cdev, void *buffer);
458
459 int (*dbg_all_data_size) (struct qed_dev *cdev);
460
Yuval Mintzfe7cd2b2016-04-22 08:41:03 +0300461/**
462 * @brief can_link_change - can the instance change the link or not
463 *
464 * @param cdev
465 *
466 * @return true if link-change is allowed, false otherwise.
467 */
468 bool (*can_link_change)(struct qed_dev *cdev);
469
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200470/**
471 * @brief set_link - set links according to params
472 *
473 * @param cdev
474 * @param params - values used to override the default link configuration
475 *
476 * @return 0 on success, error otherwise.
477 */
478 int (*set_link)(struct qed_dev *cdev,
479 struct qed_link_params *params);
480
481/**
482 * @brief get_link - returns the current link state.
483 *
484 * @param cdev
485 * @param if_link - structure to be filled with current link configuration.
486 */
487 void (*get_link)(struct qed_dev *cdev,
488 struct qed_link_output *if_link);
489
490/**
491 * @brief - drains chip in case Tx completions fail to arrive due to pause.
492 *
493 * @param cdev
494 */
495 int (*drain)(struct qed_dev *cdev);
496
497/**
498 * @brief update_msglvl - update module debug level
499 *
500 * @param cdev
501 * @param dp_module
502 * @param dp_level
503 */
504 void (*update_msglvl)(struct qed_dev *cdev,
505 u32 dp_module,
506 u8 dp_level);
507
508 int (*chain_alloc)(struct qed_dev *cdev,
509 enum qed_chain_use_mode intended_use,
510 enum qed_chain_mode mode,
Yuval Mintza91eb522016-06-03 14:35:32 +0300511 enum qed_chain_cnt_type cnt_type,
512 u32 num_elems,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200513 size_t elem_size,
514 struct qed_chain *p_chain);
515
516 void (*chain_free)(struct qed_dev *cdev,
517 struct qed_chain *p_chain);
Sudarsana Kalluru91420b82015-11-30 12:25:03 +0200518
519/**
Sudarsana Reddy Kalluru722003a2016-06-21 09:36:21 -0400520 * @brief get_coalesce - Get coalesce parameters in usec
521 *
522 * @param cdev
523 * @param rx_coal - Rx coalesce value in usec
524 * @param tx_coal - Tx coalesce value in usec
525 *
526 */
527 void (*get_coalesce)(struct qed_dev *cdev, u16 *rx_coal, u16 *tx_coal);
528
529/**
530 * @brief set_coalesce - Configure Rx coalesce value in usec
531 *
532 * @param cdev
533 * @param rx_coal - Rx coalesce value in usec
534 * @param tx_coal - Tx coalesce value in usec
535 * @param qid - Queue index
536 * @param sb_id - Status Block Id
537 *
538 * @return 0 on success, error otherwise.
539 */
540 int (*set_coalesce)(struct qed_dev *cdev, u16 rx_coal, u16 tx_coal,
541 u8 qid, u16 sb_id);
542
543/**
Sudarsana Kalluru91420b82015-11-30 12:25:03 +0200544 * @brief set_led - Configure LED mode
545 *
546 * @param cdev
547 * @param mode - LED mode
548 *
549 * @return 0 on success, error otherwise.
550 */
551 int (*set_led)(struct qed_dev *cdev,
552 enum qed_led_mode mode);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200553};
554
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200555#define MASK_FIELD(_name, _value) \
556 ((_value) &= (_name ## _MASK))
557
558#define FIELD_VALUE(_name, _value) \
559 ((_value & _name ## _MASK) << _name ## _SHIFT)
560
561#define SET_FIELD(value, name, flag) \
562 do { \
563 (value) &= ~(name ## _MASK << name ## _SHIFT); \
564 (value) |= (((u64)flag) << (name ## _SHIFT)); \
565 } while (0)
566
567#define GET_FIELD(value, name) \
568 (((value) >> (name ## _SHIFT)) & name ## _MASK)
569
570/* Debug print definitions */
571#define DP_ERR(cdev, fmt, ...) \
572 pr_err("[%s:%d(%s)]" fmt, \
573 __func__, __LINE__, \
574 DP_NAME(cdev) ? DP_NAME(cdev) : "", \
575 ## __VA_ARGS__) \
576
577#define DP_NOTICE(cdev, fmt, ...) \
578 do { \
579 if (unlikely((cdev)->dp_level <= QED_LEVEL_NOTICE)) { \
580 pr_notice("[%s:%d(%s)]" fmt, \
581 __func__, __LINE__, \
582 DP_NAME(cdev) ? DP_NAME(cdev) : "", \
583 ## __VA_ARGS__); \
584 \
585 } \
586 } while (0)
587
588#define DP_INFO(cdev, fmt, ...) \
589 do { \
590 if (unlikely((cdev)->dp_level <= QED_LEVEL_INFO)) { \
591 pr_notice("[%s:%d(%s)]" fmt, \
592 __func__, __LINE__, \
593 DP_NAME(cdev) ? DP_NAME(cdev) : "", \
594 ## __VA_ARGS__); \
595 } \
596 } while (0)
597
598#define DP_VERBOSE(cdev, module, fmt, ...) \
599 do { \
600 if (unlikely(((cdev)->dp_level <= QED_LEVEL_VERBOSE) && \
601 ((cdev)->dp_module & module))) { \
602 pr_notice("[%s:%d(%s)]" fmt, \
603 __func__, __LINE__, \
604 DP_NAME(cdev) ? DP_NAME(cdev) : "", \
605 ## __VA_ARGS__); \
606 } \
607 } while (0)
608
609enum DP_LEVEL {
610 QED_LEVEL_VERBOSE = 0x0,
611 QED_LEVEL_INFO = 0x1,
612 QED_LEVEL_NOTICE = 0x2,
613 QED_LEVEL_ERR = 0x3,
614};
615
616#define QED_LOG_LEVEL_SHIFT (30)
617#define QED_LOG_VERBOSE_MASK (0x3fffffff)
618#define QED_LOG_INFO_MASK (0x40000000)
619#define QED_LOG_NOTICE_MASK (0x80000000)
620
621enum DP_MODULE {
622 QED_MSG_SPQ = 0x10000,
623 QED_MSG_STATS = 0x20000,
624 QED_MSG_DCB = 0x40000,
625 QED_MSG_IOV = 0x80000,
626 QED_MSG_SP = 0x100000,
627 QED_MSG_STORAGE = 0x200000,
628 QED_MSG_CXT = 0x800000,
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300629 QED_MSG_LL2 = 0x1000000,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200630 QED_MSG_ILT = 0x2000000,
631 QED_MSG_ROCE = 0x4000000,
632 QED_MSG_DEBUG = 0x8000000,
633 /* to be added...up to 0x8000000 */
634};
635
Yuval Mintzfc48b7a2016-02-15 13:22:35 -0500636enum qed_mf_mode {
637 QED_MF_DEFAULT,
638 QED_MF_OVLAN,
639 QED_MF_NPAR,
640};
641
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200642struct qed_eth_stats {
643 u64 no_buff_discards;
644 u64 packet_too_big_discard;
645 u64 ttl0_discard;
646 u64 rx_ucast_bytes;
647 u64 rx_mcast_bytes;
648 u64 rx_bcast_bytes;
649 u64 rx_ucast_pkts;
650 u64 rx_mcast_pkts;
651 u64 rx_bcast_pkts;
652 u64 mftag_filter_discards;
653 u64 mac_filter_discards;
654 u64 tx_ucast_bytes;
655 u64 tx_mcast_bytes;
656 u64 tx_bcast_bytes;
657 u64 tx_ucast_pkts;
658 u64 tx_mcast_pkts;
659 u64 tx_bcast_pkts;
660 u64 tx_err_drop_pkts;
661 u64 tpa_coalesced_pkts;
662 u64 tpa_coalesced_events;
663 u64 tpa_aborts_num;
664 u64 tpa_not_coalesced_pkts;
665 u64 tpa_coalesced_bytes;
666
667 /* port */
668 u64 rx_64_byte_packets;
Yuval Mintzd4967cf2016-04-22 08:41:01 +0300669 u64 rx_65_to_127_byte_packets;
670 u64 rx_128_to_255_byte_packets;
671 u64 rx_256_to_511_byte_packets;
672 u64 rx_512_to_1023_byte_packets;
673 u64 rx_1024_to_1518_byte_packets;
674 u64 rx_1519_to_1522_byte_packets;
675 u64 rx_1519_to_2047_byte_packets;
676 u64 rx_2048_to_4095_byte_packets;
677 u64 rx_4096_to_9216_byte_packets;
678 u64 rx_9217_to_16383_byte_packets;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200679 u64 rx_crc_errors;
680 u64 rx_mac_crtl_frames;
681 u64 rx_pause_frames;
682 u64 rx_pfc_frames;
683 u64 rx_align_errors;
684 u64 rx_carrier_errors;
685 u64 rx_oversize_packets;
686 u64 rx_jabbers;
687 u64 rx_undersize_packets;
688 u64 rx_fragments;
689 u64 tx_64_byte_packets;
690 u64 tx_65_to_127_byte_packets;
691 u64 tx_128_to_255_byte_packets;
692 u64 tx_256_to_511_byte_packets;
693 u64 tx_512_to_1023_byte_packets;
694 u64 tx_1024_to_1518_byte_packets;
695 u64 tx_1519_to_2047_byte_packets;
696 u64 tx_2048_to_4095_byte_packets;
697 u64 tx_4096_to_9216_byte_packets;
698 u64 tx_9217_to_16383_byte_packets;
699 u64 tx_pause_frames;
700 u64 tx_pfc_frames;
701 u64 tx_lpi_entry_count;
702 u64 tx_total_collisions;
703 u64 brb_truncates;
704 u64 brb_discards;
705 u64 rx_mac_bytes;
706 u64 rx_mac_uc_packets;
707 u64 rx_mac_mc_packets;
708 u64 rx_mac_bc_packets;
709 u64 rx_mac_frames_ok;
710 u64 tx_mac_bytes;
711 u64 tx_mac_uc_packets;
712 u64 tx_mac_mc_packets;
713 u64 tx_mac_bc_packets;
714 u64 tx_mac_ctrl_frames;
715};
716
717#define QED_SB_IDX 0x0002
718
719#define RX_PI 0
720#define TX_PI(tc) (RX_PI + 1 + tc)
721
Yuval Mintz4ac801b2016-02-28 12:26:52 +0200722struct qed_sb_cnt_info {
723 int sb_cnt;
724 int sb_iov_cnt;
725 int sb_free_blk;
726};
727
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200728static inline u16 qed_sb_update_sb_idx(struct qed_sb_info *sb_info)
729{
730 u32 prod = 0;
731 u16 rc = 0;
732
733 prod = le32_to_cpu(sb_info->sb_virt->prod_index) &
734 STATUS_BLOCK_PROD_INDEX_MASK;
735 if (sb_info->sb_ack != prod) {
736 sb_info->sb_ack = prod;
737 rc |= QED_SB_IDX;
738 }
739
740 /* Let SB update */
741 mmiowb();
742 return rc;
743}
744
745/**
746 *
747 * @brief This function creates an update command for interrupts that is
748 * written to the IGU.
749 *
750 * @param sb_info - This is the structure allocated and
751 * initialized per status block. Assumption is
752 * that it was initialized using qed_sb_init
753 * @param int_cmd - Enable/Disable/Nop
754 * @param upd_flg - whether igu consumer should be
755 * updated.
756 *
757 * @return inline void
758 */
759static inline void qed_sb_ack(struct qed_sb_info *sb_info,
760 enum igu_int_cmd int_cmd,
761 u8 upd_flg)
762{
763 struct igu_prod_cons_update igu_ack = { 0 };
764
765 igu_ack.sb_id_and_flags =
766 ((sb_info->sb_ack << IGU_PROD_CONS_UPDATE_SB_INDEX_SHIFT) |
767 (upd_flg << IGU_PROD_CONS_UPDATE_UPDATE_FLAG_SHIFT) |
768 (int_cmd << IGU_PROD_CONS_UPDATE_ENABLE_INT_SHIFT) |
769 (IGU_SEG_ACCESS_REG <<
770 IGU_PROD_CONS_UPDATE_SEGMENT_ACCESS_SHIFT));
771
772 DIRECT_REG_WR(sb_info->igu_addr, igu_ack.sb_id_and_flags);
773
774 /* Both segments (interrupts & acks) are written to same place address;
775 * Need to guarantee all commands will be received (in-order) by HW.
776 */
777 mmiowb();
778 barrier();
779}
780
781static inline void __internal_ram_wr(void *p_hwfn,
782 void __iomem *addr,
783 int size,
784 u32 *data)
785
786{
787 unsigned int i;
788
789 for (i = 0; i < size / sizeof(*data); i++)
790 DIRECT_REG_WR(&((u32 __iomem *)addr)[i], data[i]);
791}
792
793static inline void internal_ram_wr(void __iomem *addr,
794 int size,
795 u32 *data)
796{
797 __internal_ram_wr(NULL, addr, size, data);
798}
799
Sudarsana Reddy Kalluru8c5ebd02016-04-10 12:43:00 +0300800enum qed_rss_caps {
801 QED_RSS_IPV4 = 0x1,
802 QED_RSS_IPV6 = 0x2,
803 QED_RSS_IPV4_TCP = 0x4,
804 QED_RSS_IPV6_TCP = 0x8,
805 QED_RSS_IPV4_UDP = 0x10,
806 QED_RSS_IPV6_UDP = 0x20,
807};
808
809#define QED_RSS_IND_TABLE_SIZE 128
810#define QED_RSS_KEY_SIZE 10 /* size in 32b chunks */
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200811#endif