xref: /linux/include/linux/qed/qed_if.h (revision 93a3545d812ae7cfe4426374e00a7d8f64ac02e0)
1 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */
2 /* QLogic qed NIC Driver
3  * Copyright (c) 2015-2017  QLogic Corporation
4  * Copyright (c) 2019-2020 Marvell International Ltd.
5  */
6 
7 #ifndef _QED_IF_H
8 #define _QED_IF_H
9 
10 #include <linux/types.h>
11 #include <linux/interrupt.h>
12 #include <linux/netdevice.h>
13 #include <linux/pci.h>
14 #include <linux/skbuff.h>
15 #include <asm/byteorder.h>
16 #include <linux/io.h>
17 #include <linux/compiler.h>
18 #include <linux/kernel.h>
19 #include <linux/list.h>
20 #include <linux/slab.h>
21 #include <linux/qed/common_hsi.h>
22 #include <linux/qed/qed_chain.h>
23 #include <linux/io-64-nonatomic-lo-hi.h>
24 
25 enum dcbx_protocol_type {
26 	DCBX_PROTOCOL_ISCSI,
27 	DCBX_PROTOCOL_FCOE,
28 	DCBX_PROTOCOL_ROCE,
29 	DCBX_PROTOCOL_ROCE_V2,
30 	DCBX_PROTOCOL_ETH,
31 	DCBX_MAX_PROTOCOL_TYPE
32 };
33 
34 #define QED_ROCE_PROTOCOL_INDEX (3)
35 
36 #define QED_LLDP_CHASSIS_ID_STAT_LEN 4
37 #define QED_LLDP_PORT_ID_STAT_LEN 4
38 #define QED_DCBX_MAX_APP_PROTOCOL 32
39 #define QED_MAX_PFC_PRIORITIES 8
40 #define QED_DCBX_DSCP_SIZE 64
41 
42 struct qed_dcbx_lldp_remote {
43 	u32 peer_chassis_id[QED_LLDP_CHASSIS_ID_STAT_LEN];
44 	u32 peer_port_id[QED_LLDP_PORT_ID_STAT_LEN];
45 	bool enable_rx;
46 	bool enable_tx;
47 	u32 tx_interval;
48 	u32 max_credit;
49 };
50 
51 struct qed_dcbx_lldp_local {
52 	u32 local_chassis_id[QED_LLDP_CHASSIS_ID_STAT_LEN];
53 	u32 local_port_id[QED_LLDP_PORT_ID_STAT_LEN];
54 };
55 
56 struct qed_dcbx_app_prio {
57 	u8 roce;
58 	u8 roce_v2;
59 	u8 fcoe;
60 	u8 iscsi;
61 	u8 eth;
62 };
63 
64 struct qed_dbcx_pfc_params {
65 	bool willing;
66 	bool enabled;
67 	u8 prio[QED_MAX_PFC_PRIORITIES];
68 	u8 max_tc;
69 };
70 
71 enum qed_dcbx_sf_ieee_type {
72 	QED_DCBX_SF_IEEE_ETHTYPE,
73 	QED_DCBX_SF_IEEE_TCP_PORT,
74 	QED_DCBX_SF_IEEE_UDP_PORT,
75 	QED_DCBX_SF_IEEE_TCP_UDP_PORT
76 };
77 
78 struct qed_app_entry {
79 	bool ethtype;
80 	enum qed_dcbx_sf_ieee_type sf_ieee;
81 	bool enabled;
82 	u8 prio;
83 	u16 proto_id;
84 	enum dcbx_protocol_type proto_type;
85 };
86 
87 struct qed_dcbx_params {
88 	struct qed_app_entry app_entry[QED_DCBX_MAX_APP_PROTOCOL];
89 	u16 num_app_entries;
90 	bool app_willing;
91 	bool app_valid;
92 	bool app_error;
93 	bool ets_willing;
94 	bool ets_enabled;
95 	bool ets_cbs;
96 	bool valid;
97 	u8 ets_pri_tc_tbl[QED_MAX_PFC_PRIORITIES];
98 	u8 ets_tc_bw_tbl[QED_MAX_PFC_PRIORITIES];
99 	u8 ets_tc_tsa_tbl[QED_MAX_PFC_PRIORITIES];
100 	struct qed_dbcx_pfc_params pfc;
101 	u8 max_ets_tc;
102 };
103 
104 struct qed_dcbx_admin_params {
105 	struct qed_dcbx_params params;
106 	bool valid;
107 };
108 
109 struct qed_dcbx_remote_params {
110 	struct qed_dcbx_params params;
111 	bool valid;
112 };
113 
114 struct qed_dcbx_operational_params {
115 	struct qed_dcbx_app_prio app_prio;
116 	struct qed_dcbx_params params;
117 	bool valid;
118 	bool enabled;
119 	bool ieee;
120 	bool cee;
121 	bool local;
122 	u32 err;
123 };
124 
125 struct qed_dcbx_get {
126 	struct qed_dcbx_operational_params operational;
127 	struct qed_dcbx_lldp_remote lldp_remote;
128 	struct qed_dcbx_lldp_local lldp_local;
129 	struct qed_dcbx_remote_params remote;
130 	struct qed_dcbx_admin_params local;
131 };
132 
133 enum qed_nvm_images {
134 	QED_NVM_IMAGE_ISCSI_CFG,
135 	QED_NVM_IMAGE_FCOE_CFG,
136 	QED_NVM_IMAGE_MDUMP,
137 	QED_NVM_IMAGE_NVM_CFG1,
138 	QED_NVM_IMAGE_DEFAULT_CFG,
139 	QED_NVM_IMAGE_NVM_META,
140 };
141 
142 struct qed_link_eee_params {
143 	u32 tx_lpi_timer;
144 #define QED_EEE_1G_ADV		BIT(0)
145 #define QED_EEE_10G_ADV		BIT(1)
146 
147 	/* Capabilities are represented using QED_EEE_*_ADV values */
148 	u8 adv_caps;
149 	u8 lp_adv_caps;
150 	bool enable;
151 	bool tx_lpi_enable;
152 };
153 
154 enum qed_led_mode {
155 	QED_LED_MODE_OFF,
156 	QED_LED_MODE_ON,
157 	QED_LED_MODE_RESTORE
158 };
159 
160 struct qed_mfw_tlv_eth {
161 	u16 lso_maxoff_size;
162 	bool lso_maxoff_size_set;
163 	u16 lso_minseg_size;
164 	bool lso_minseg_size_set;
165 	u8 prom_mode;
166 	bool prom_mode_set;
167 	u16 tx_descr_size;
168 	bool tx_descr_size_set;
169 	u16 rx_descr_size;
170 	bool rx_descr_size_set;
171 	u16 netq_count;
172 	bool netq_count_set;
173 	u32 tcp4_offloads;
174 	bool tcp4_offloads_set;
175 	u32 tcp6_offloads;
176 	bool tcp6_offloads_set;
177 	u16 tx_descr_qdepth;
178 	bool tx_descr_qdepth_set;
179 	u16 rx_descr_qdepth;
180 	bool rx_descr_qdepth_set;
181 	u8 iov_offload;
182 #define QED_MFW_TLV_IOV_OFFLOAD_NONE            (0)
183 #define QED_MFW_TLV_IOV_OFFLOAD_MULTIQUEUE      (1)
184 #define QED_MFW_TLV_IOV_OFFLOAD_VEB             (2)
185 #define QED_MFW_TLV_IOV_OFFLOAD_VEPA            (3)
186 	bool iov_offload_set;
187 	u8 txqs_empty;
188 	bool txqs_empty_set;
189 	u8 rxqs_empty;
190 	bool rxqs_empty_set;
191 	u8 num_txqs_full;
192 	bool num_txqs_full_set;
193 	u8 num_rxqs_full;
194 	bool num_rxqs_full_set;
195 };
196 
197 #define QED_MFW_TLV_TIME_SIZE	14
198 struct qed_mfw_tlv_time {
199 	bool b_set;
200 	u8 month;
201 	u8 day;
202 	u8 hour;
203 	u8 min;
204 	u16 msec;
205 	u16 usec;
206 };
207 
208 struct qed_mfw_tlv_fcoe {
209 	u8 scsi_timeout;
210 	bool scsi_timeout_set;
211 	u32 rt_tov;
212 	bool rt_tov_set;
213 	u32 ra_tov;
214 	bool ra_tov_set;
215 	u32 ed_tov;
216 	bool ed_tov_set;
217 	u32 cr_tov;
218 	bool cr_tov_set;
219 	u8 boot_type;
220 	bool boot_type_set;
221 	u8 npiv_state;
222 	bool npiv_state_set;
223 	u32 num_npiv_ids;
224 	bool num_npiv_ids_set;
225 	u8 switch_name[8];
226 	bool switch_name_set;
227 	u16 switch_portnum;
228 	bool switch_portnum_set;
229 	u8 switch_portid[3];
230 	bool switch_portid_set;
231 	u8 vendor_name[8];
232 	bool vendor_name_set;
233 	u8 switch_model[8];
234 	bool switch_model_set;
235 	u8 switch_fw_version[8];
236 	bool switch_fw_version_set;
237 	u8 qos_pri;
238 	bool qos_pri_set;
239 	u8 port_alias[3];
240 	bool port_alias_set;
241 	u8 port_state;
242 #define QED_MFW_TLV_PORT_STATE_OFFLINE  (0)
243 #define QED_MFW_TLV_PORT_STATE_LOOP             (1)
244 #define QED_MFW_TLV_PORT_STATE_P2P              (2)
245 #define QED_MFW_TLV_PORT_STATE_FABRIC           (3)
246 	bool port_state_set;
247 	u16 fip_tx_descr_size;
248 	bool fip_tx_descr_size_set;
249 	u16 fip_rx_descr_size;
250 	bool fip_rx_descr_size_set;
251 	u16 link_failures;
252 	bool link_failures_set;
253 	u8 fcoe_boot_progress;
254 	bool fcoe_boot_progress_set;
255 	u64 rx_bcast;
256 	bool rx_bcast_set;
257 	u64 tx_bcast;
258 	bool tx_bcast_set;
259 	u16 fcoe_txq_depth;
260 	bool fcoe_txq_depth_set;
261 	u16 fcoe_rxq_depth;
262 	bool fcoe_rxq_depth_set;
263 	u64 fcoe_rx_frames;
264 	bool fcoe_rx_frames_set;
265 	u64 fcoe_rx_bytes;
266 	bool fcoe_rx_bytes_set;
267 	u64 fcoe_tx_frames;
268 	bool fcoe_tx_frames_set;
269 	u64 fcoe_tx_bytes;
270 	bool fcoe_tx_bytes_set;
271 	u16 crc_count;
272 	bool crc_count_set;
273 	u32 crc_err_src_fcid[5];
274 	bool crc_err_src_fcid_set[5];
275 	struct qed_mfw_tlv_time crc_err[5];
276 	u16 losync_err;
277 	bool losync_err_set;
278 	u16 losig_err;
279 	bool losig_err_set;
280 	u16 primtive_err;
281 	bool primtive_err_set;
282 	u16 disparity_err;
283 	bool disparity_err_set;
284 	u16 code_violation_err;
285 	bool code_violation_err_set;
286 	u32 flogi_param[4];
287 	bool flogi_param_set[4];
288 	struct qed_mfw_tlv_time flogi_tstamp;
289 	u32 flogi_acc_param[4];
290 	bool flogi_acc_param_set[4];
291 	struct qed_mfw_tlv_time flogi_acc_tstamp;
292 	u32 flogi_rjt;
293 	bool flogi_rjt_set;
294 	struct qed_mfw_tlv_time flogi_rjt_tstamp;
295 	u32 fdiscs;
296 	bool fdiscs_set;
297 	u8 fdisc_acc;
298 	bool fdisc_acc_set;
299 	u8 fdisc_rjt;
300 	bool fdisc_rjt_set;
301 	u8 plogi;
302 	bool plogi_set;
303 	u8 plogi_acc;
304 	bool plogi_acc_set;
305 	u8 plogi_rjt;
306 	bool plogi_rjt_set;
307 	u32 plogi_dst_fcid[5];
308 	bool plogi_dst_fcid_set[5];
309 	struct qed_mfw_tlv_time plogi_tstamp[5];
310 	u32 plogi_acc_src_fcid[5];
311 	bool plogi_acc_src_fcid_set[5];
312 	struct qed_mfw_tlv_time plogi_acc_tstamp[5];
313 	u8 tx_plogos;
314 	bool tx_plogos_set;
315 	u8 plogo_acc;
316 	bool plogo_acc_set;
317 	u8 plogo_rjt;
318 	bool plogo_rjt_set;
319 	u32 plogo_src_fcid[5];
320 	bool plogo_src_fcid_set[5];
321 	struct qed_mfw_tlv_time plogo_tstamp[5];
322 	u8 rx_logos;
323 	bool rx_logos_set;
324 	u8 tx_accs;
325 	bool tx_accs_set;
326 	u8 tx_prlis;
327 	bool tx_prlis_set;
328 	u8 rx_accs;
329 	bool rx_accs_set;
330 	u8 tx_abts;
331 	bool tx_abts_set;
332 	u8 rx_abts_acc;
333 	bool rx_abts_acc_set;
334 	u8 rx_abts_rjt;
335 	bool rx_abts_rjt_set;
336 	u32 abts_dst_fcid[5];
337 	bool abts_dst_fcid_set[5];
338 	struct qed_mfw_tlv_time abts_tstamp[5];
339 	u8 rx_rscn;
340 	bool rx_rscn_set;
341 	u32 rx_rscn_nport[4];
342 	bool rx_rscn_nport_set[4];
343 	u8 tx_lun_rst;
344 	bool tx_lun_rst_set;
345 	u8 abort_task_sets;
346 	bool abort_task_sets_set;
347 	u8 tx_tprlos;
348 	bool tx_tprlos_set;
349 	u8 tx_nos;
350 	bool tx_nos_set;
351 	u8 rx_nos;
352 	bool rx_nos_set;
353 	u8 ols;
354 	bool ols_set;
355 	u8 lr;
356 	bool lr_set;
357 	u8 lrr;
358 	bool lrr_set;
359 	u8 tx_lip;
360 	bool tx_lip_set;
361 	u8 rx_lip;
362 	bool rx_lip_set;
363 	u8 eofa;
364 	bool eofa_set;
365 	u8 eofni;
366 	bool eofni_set;
367 	u8 scsi_chks;
368 	bool scsi_chks_set;
369 	u8 scsi_cond_met;
370 	bool scsi_cond_met_set;
371 	u8 scsi_busy;
372 	bool scsi_busy_set;
373 	u8 scsi_inter;
374 	bool scsi_inter_set;
375 	u8 scsi_inter_cond_met;
376 	bool scsi_inter_cond_met_set;
377 	u8 scsi_rsv_conflicts;
378 	bool scsi_rsv_conflicts_set;
379 	u8 scsi_tsk_full;
380 	bool scsi_tsk_full_set;
381 	u8 scsi_aca_active;
382 	bool scsi_aca_active_set;
383 	u8 scsi_tsk_abort;
384 	bool scsi_tsk_abort_set;
385 	u32 scsi_rx_chk[5];
386 	bool scsi_rx_chk_set[5];
387 	struct qed_mfw_tlv_time scsi_chk_tstamp[5];
388 };
389 
390 struct qed_mfw_tlv_iscsi {
391 	u8 target_llmnr;
392 	bool target_llmnr_set;
393 	u8 header_digest;
394 	bool header_digest_set;
395 	u8 data_digest;
396 	bool data_digest_set;
397 	u8 auth_method;
398 #define QED_MFW_TLV_AUTH_METHOD_NONE            (1)
399 #define QED_MFW_TLV_AUTH_METHOD_CHAP            (2)
400 #define QED_MFW_TLV_AUTH_METHOD_MUTUAL_CHAP     (3)
401 	bool auth_method_set;
402 	u16 boot_taget_portal;
403 	bool boot_taget_portal_set;
404 	u16 frame_size;
405 	bool frame_size_set;
406 	u16 tx_desc_size;
407 	bool tx_desc_size_set;
408 	u16 rx_desc_size;
409 	bool rx_desc_size_set;
410 	u8 boot_progress;
411 	bool boot_progress_set;
412 	u16 tx_desc_qdepth;
413 	bool tx_desc_qdepth_set;
414 	u16 rx_desc_qdepth;
415 	bool rx_desc_qdepth_set;
416 	u64 rx_frames;
417 	bool rx_frames_set;
418 	u64 rx_bytes;
419 	bool rx_bytes_set;
420 	u64 tx_frames;
421 	bool tx_frames_set;
422 	u64 tx_bytes;
423 	bool tx_bytes_set;
424 };
425 
426 enum qed_db_rec_width {
427 	DB_REC_WIDTH_32B,
428 	DB_REC_WIDTH_64B,
429 };
430 
431 enum qed_db_rec_space {
432 	DB_REC_KERNEL,
433 	DB_REC_USER,
434 };
435 
436 #define DIRECT_REG_WR(reg_addr, val) writel((u32)val, \
437 					    (void __iomem *)(reg_addr))
438 
439 #define DIRECT_REG_RD(reg_addr) readl((void __iomem *)(reg_addr))
440 
441 #define DIRECT_REG_WR64(reg_addr, val) writeq((u64)val,	\
442 					      (void __iomem *)(reg_addr))
443 
444 #define QED_COALESCE_MAX 0x1FF
445 #define QED_DEFAULT_RX_USECS 12
446 #define QED_DEFAULT_TX_USECS 48
447 
448 /* forward */
449 struct qed_dev;
450 
451 struct qed_eth_pf_params {
452 	/* The following parameters are used during HW-init
453 	 * and these parameters need to be passed as arguments
454 	 * to update_pf_params routine invoked before slowpath start
455 	 */
456 	u16 num_cons;
457 
458 	/* per-VF number of CIDs */
459 	u8 num_vf_cons;
460 #define ETH_PF_PARAMS_VF_CONS_DEFAULT	(32)
461 
462 	/* To enable arfs, previous to HW-init a positive number needs to be
463 	 * set [as filters require allocated searcher ILT memory].
464 	 * This will set the maximal number of configured steering-filters.
465 	 */
466 	u32 num_arfs_filters;
467 };
468 
469 struct qed_fcoe_pf_params {
470 	/* The following parameters are used during protocol-init */
471 	u64 glbl_q_params_addr;
472 	u64 bdq_pbl_base_addr[2];
473 
474 	/* The following parameters are used during HW-init
475 	 * and these parameters need to be passed as arguments
476 	 * to update_pf_params routine invoked before slowpath start
477 	 */
478 	u16 num_cons;
479 	u16 num_tasks;
480 
481 	/* The following parameters are used during protocol-init */
482 	u16 sq_num_pbl_pages;
483 
484 	u16 cq_num_entries;
485 	u16 cmdq_num_entries;
486 	u16 rq_buffer_log_size;
487 	u16 mtu;
488 	u16 dummy_icid;
489 	u16 bdq_xoff_threshold[2];
490 	u16 bdq_xon_threshold[2];
491 	u16 rq_buffer_size;
492 	u8 num_cqs;		/* num of global CQs */
493 	u8 log_page_size;
494 	u8 gl_rq_pi;
495 	u8 gl_cmd_pi;
496 	u8 debug_mode;
497 	u8 is_target;
498 	u8 bdq_pbl_num_entries[2];
499 };
500 
501 /* Most of the parameters below are described in the FW iSCSI / TCP HSI */
502 struct qed_iscsi_pf_params {
503 	u64 glbl_q_params_addr;
504 	u64 bdq_pbl_base_addr[3];
505 	u16 cq_num_entries;
506 	u16 cmdq_num_entries;
507 	u32 two_msl_timer;
508 	u16 tx_sws_timer;
509 
510 	/* The following parameters are used during HW-init
511 	 * and these parameters need to be passed as arguments
512 	 * to update_pf_params routine invoked before slowpath start
513 	 */
514 	u16 num_cons;
515 	u16 num_tasks;
516 
517 	/* The following parameters are used during protocol-init */
518 	u16 half_way_close_timeout;
519 	u16 bdq_xoff_threshold[3];
520 	u16 bdq_xon_threshold[3];
521 	u16 cmdq_xoff_threshold;
522 	u16 cmdq_xon_threshold;
523 	u16 rq_buffer_size;
524 
525 	u8 num_sq_pages_in_ring;
526 	u8 num_r2tq_pages_in_ring;
527 	u8 num_uhq_pages_in_ring;
528 	u8 num_queues;
529 	u8 log_page_size;
530 	u8 rqe_log_size;
531 	u8 max_fin_rt;
532 	u8 gl_rq_pi;
533 	u8 gl_cmd_pi;
534 	u8 debug_mode;
535 	u8 ll2_ooo_queue_id;
536 
537 	u8 is_target;
538 	u8 is_soc_en;
539 	u8 soc_num_of_blocks_log;
540 	u8 bdq_pbl_num_entries[3];
541 };
542 
543 struct qed_rdma_pf_params {
544 	/* Supplied to QED during resource allocation (may affect the ILT and
545 	 * the doorbell BAR).
546 	 */
547 	u32 min_dpis;		/* number of requested DPIs */
548 	u32 num_qps;		/* number of requested Queue Pairs */
549 	u32 num_srqs;		/* number of requested SRQ */
550 	u8 roce_edpm_mode;	/* see QED_ROCE_EDPM_MODE_ENABLE */
551 	u8 gl_pi;		/* protocol index */
552 
553 	/* Will allocate rate limiters to be used with QPs */
554 	u8 enable_dcqcn;
555 };
556 
557 struct qed_pf_params {
558 	struct qed_eth_pf_params eth_pf_params;
559 	struct qed_fcoe_pf_params fcoe_pf_params;
560 	struct qed_iscsi_pf_params iscsi_pf_params;
561 	struct qed_rdma_pf_params rdma_pf_params;
562 };
563 
564 enum qed_int_mode {
565 	QED_INT_MODE_INTA,
566 	QED_INT_MODE_MSIX,
567 	QED_INT_MODE_MSI,
568 	QED_INT_MODE_POLL,
569 };
570 
571 struct qed_sb_info {
572 	struct status_block_e4 *sb_virt;
573 	dma_addr_t sb_phys;
574 	u32 sb_ack; /* Last given ack */
575 	u16 igu_sb_id;
576 	void __iomem *igu_addr;
577 	u8 flags;
578 #define QED_SB_INFO_INIT	0x1
579 #define QED_SB_INFO_SETUP	0x2
580 
581 	struct qed_dev *cdev;
582 };
583 
584 enum qed_hw_err_type {
585 	QED_HW_ERR_FAN_FAIL,
586 	QED_HW_ERR_MFW_RESP_FAIL,
587 	QED_HW_ERR_HW_ATTN,
588 	QED_HW_ERR_DMAE_FAIL,
589 	QED_HW_ERR_RAMROD_FAIL,
590 	QED_HW_ERR_FW_ASSERT,
591 	QED_HW_ERR_LAST,
592 };
593 
594 enum qed_dev_type {
595 	QED_DEV_TYPE_BB,
596 	QED_DEV_TYPE_AH,
597 };
598 
599 struct qed_dev_info {
600 	unsigned long	pci_mem_start;
601 	unsigned long	pci_mem_end;
602 	unsigned int	pci_irq;
603 	u8		num_hwfns;
604 
605 	u8		hw_mac[ETH_ALEN];
606 
607 	/* FW version */
608 	u16		fw_major;
609 	u16		fw_minor;
610 	u16		fw_rev;
611 	u16		fw_eng;
612 
613 	/* MFW version */
614 	u32		mfw_rev;
615 #define QED_MFW_VERSION_0_MASK		0x000000FF
616 #define QED_MFW_VERSION_0_OFFSET	0
617 #define QED_MFW_VERSION_1_MASK		0x0000FF00
618 #define QED_MFW_VERSION_1_OFFSET	8
619 #define QED_MFW_VERSION_2_MASK		0x00FF0000
620 #define QED_MFW_VERSION_2_OFFSET	16
621 #define QED_MFW_VERSION_3_MASK		0xFF000000
622 #define QED_MFW_VERSION_3_OFFSET	24
623 
624 	u32		flash_size;
625 	bool		b_inter_pf_switch;
626 	bool		tx_switching;
627 	bool		rdma_supported;
628 	u16		mtu;
629 
630 	bool wol_support;
631 	bool smart_an;
632 
633 	/* MBI version */
634 	u32 mbi_version;
635 #define QED_MBI_VERSION_0_MASK		0x000000FF
636 #define QED_MBI_VERSION_0_OFFSET	0
637 #define QED_MBI_VERSION_1_MASK		0x0000FF00
638 #define QED_MBI_VERSION_1_OFFSET	8
639 #define QED_MBI_VERSION_2_MASK		0x00FF0000
640 #define QED_MBI_VERSION_2_OFFSET	16
641 
642 	enum qed_dev_type dev_type;
643 
644 	/* Output parameters for qede */
645 	bool		vxlan_enable;
646 	bool		gre_enable;
647 	bool		geneve_enable;
648 
649 	u8		abs_pf_id;
650 };
651 
652 enum qed_sb_type {
653 	QED_SB_TYPE_L2_QUEUE,
654 	QED_SB_TYPE_CNQ,
655 	QED_SB_TYPE_STORAGE,
656 };
657 
658 enum qed_protocol {
659 	QED_PROTOCOL_ETH,
660 	QED_PROTOCOL_ISCSI,
661 	QED_PROTOCOL_FCOE,
662 };
663 
664 enum qed_link_mode_bits {
665 	QED_LM_FIBRE_BIT = BIT(0),
666 	QED_LM_Autoneg_BIT = BIT(1),
667 	QED_LM_Asym_Pause_BIT = BIT(2),
668 	QED_LM_Pause_BIT = BIT(3),
669 	QED_LM_1000baseT_Full_BIT = BIT(4),
670 	QED_LM_10000baseT_Full_BIT = BIT(5),
671 	QED_LM_10000baseKR_Full_BIT = BIT(6),
672 	QED_LM_20000baseKR2_Full_BIT = BIT(7),
673 	QED_LM_25000baseKR_Full_BIT = BIT(8),
674 	QED_LM_40000baseLR4_Full_BIT = BIT(9),
675 	QED_LM_50000baseKR2_Full_BIT = BIT(10),
676 	QED_LM_100000baseKR4_Full_BIT = BIT(11),
677 	QED_LM_TP_BIT = BIT(12),
678 	QED_LM_Backplane_BIT = BIT(13),
679 	QED_LM_1000baseKX_Full_BIT = BIT(14),
680 	QED_LM_10000baseKX4_Full_BIT = BIT(15),
681 	QED_LM_10000baseR_FEC_BIT = BIT(16),
682 	QED_LM_40000baseKR4_Full_BIT = BIT(17),
683 	QED_LM_40000baseCR4_Full_BIT = BIT(18),
684 	QED_LM_40000baseSR4_Full_BIT = BIT(19),
685 	QED_LM_25000baseCR_Full_BIT = BIT(20),
686 	QED_LM_25000baseSR_Full_BIT = BIT(21),
687 	QED_LM_50000baseCR2_Full_BIT = BIT(22),
688 	QED_LM_100000baseSR4_Full_BIT = BIT(23),
689 	QED_LM_100000baseCR4_Full_BIT = BIT(24),
690 	QED_LM_100000baseLR4_ER4_Full_BIT = BIT(25),
691 	QED_LM_50000baseSR2_Full_BIT = BIT(26),
692 	QED_LM_1000baseX_Full_BIT = BIT(27),
693 	QED_LM_10000baseCR_Full_BIT = BIT(28),
694 	QED_LM_10000baseSR_Full_BIT = BIT(29),
695 	QED_LM_10000baseLR_Full_BIT = BIT(30),
696 	QED_LM_10000baseLRM_Full_BIT = BIT(31),
697 	QED_LM_COUNT = 32
698 };
699 
700 struct qed_link_params {
701 	bool	link_up;
702 
703 #define QED_LINK_OVERRIDE_SPEED_AUTONEG         BIT(0)
704 #define QED_LINK_OVERRIDE_SPEED_ADV_SPEEDS      BIT(1)
705 #define QED_LINK_OVERRIDE_SPEED_FORCED_SPEED    BIT(2)
706 #define QED_LINK_OVERRIDE_PAUSE_CONFIG          BIT(3)
707 #define QED_LINK_OVERRIDE_LOOPBACK_MODE         BIT(4)
708 #define QED_LINK_OVERRIDE_EEE_CONFIG            BIT(5)
709 	u32	override_flags;
710 	bool	autoneg;
711 	u32	adv_speeds;
712 	u32	forced_speed;
713 #define QED_LINK_PAUSE_AUTONEG_ENABLE           BIT(0)
714 #define QED_LINK_PAUSE_RX_ENABLE                BIT(1)
715 #define QED_LINK_PAUSE_TX_ENABLE                BIT(2)
716 	u32	pause_config;
717 #define QED_LINK_LOOPBACK_NONE                  BIT(0)
718 #define QED_LINK_LOOPBACK_INT_PHY               BIT(1)
719 #define QED_LINK_LOOPBACK_EXT_PHY               BIT(2)
720 #define QED_LINK_LOOPBACK_EXT                   BIT(3)
721 #define QED_LINK_LOOPBACK_MAC                   BIT(4)
722 	u32	loopback_mode;
723 	struct qed_link_eee_params eee;
724 };
725 
726 struct qed_link_output {
727 	bool	link_up;
728 
729 	/* In QED_LM_* defs */
730 	u32	supported_caps;
731 	u32	advertised_caps;
732 	u32	lp_caps;
733 
734 	u32	speed;                  /* In Mb/s */
735 	u8	duplex;                 /* In DUPLEX defs */
736 	u8	port;                   /* In PORT defs */
737 	bool	autoneg;
738 	u32	pause_config;
739 
740 	/* EEE - capability & param */
741 	bool eee_supported;
742 	bool eee_active;
743 	u8 sup_caps;
744 	struct qed_link_eee_params eee;
745 };
746 
747 struct qed_probe_params {
748 	enum qed_protocol protocol;
749 	u32 dp_module;
750 	u8 dp_level;
751 	bool is_vf;
752 	bool recov_in_prog;
753 };
754 
755 #define QED_DRV_VER_STR_SIZE 12
756 struct qed_slowpath_params {
757 	u32	int_mode;
758 	u8	drv_major;
759 	u8	drv_minor;
760 	u8	drv_rev;
761 	u8	drv_eng;
762 	u8	name[QED_DRV_VER_STR_SIZE];
763 };
764 
765 #define ILT_PAGE_SIZE_TCFC 0x8000 /* 32KB */
766 
767 struct qed_int_info {
768 	struct msix_entry	*msix;
769 	u8			msix_cnt;
770 
771 	/* This should be updated by the protocol driver */
772 	u8			used_cnt;
773 };
774 
775 struct qed_generic_tlvs {
776 #define QED_TLV_IP_CSUM         BIT(0)
777 #define QED_TLV_LSO             BIT(1)
778 	u16 feat_flags;
779 #define QED_TLV_MAC_COUNT	3
780 	u8 mac[QED_TLV_MAC_COUNT][ETH_ALEN];
781 };
782 
783 #define QED_I2C_DEV_ADDR_A0 0xA0
784 #define QED_I2C_DEV_ADDR_A2 0xA2
785 
786 #define QED_NVM_SIGNATURE 0x12435687
787 
788 enum qed_nvm_flash_cmd {
789 	QED_NVM_FLASH_CMD_FILE_DATA = 0x2,
790 	QED_NVM_FLASH_CMD_FILE_START = 0x3,
791 	QED_NVM_FLASH_CMD_NVM_CHANGE = 0x4,
792 	QED_NVM_FLASH_CMD_NVM_CFG_ID = 0x5,
793 	QED_NVM_FLASH_CMD_NVM_MAX,
794 };
795 
796 struct qed_common_cb_ops {
797 	void (*arfs_filter_op)(void *dev, void *fltr, u8 fw_rc);
798 	void (*link_update)(void *dev, struct qed_link_output *link);
799 	void (*schedule_recovery_handler)(void *dev);
800 	void (*schedule_hw_err_handler)(void *dev,
801 					enum qed_hw_err_type err_type);
802 	void (*dcbx_aen)(void *dev, struct qed_dcbx_get *get, u32 mib_type);
803 	void (*get_generic_tlv_data)(void *dev, struct qed_generic_tlvs *data);
804 	void (*get_protocol_tlv_data)(void *dev, void *data);
805 	void (*bw_update)(void *dev);
806 };
807 
808 struct qed_selftest_ops {
809 /**
810  * @brief selftest_interrupt - Perform interrupt test
811  *
812  * @param cdev
813  *
814  * @return 0 on success, error otherwise.
815  */
816 	int (*selftest_interrupt)(struct qed_dev *cdev);
817 
818 /**
819  * @brief selftest_memory - Perform memory test
820  *
821  * @param cdev
822  *
823  * @return 0 on success, error otherwise.
824  */
825 	int (*selftest_memory)(struct qed_dev *cdev);
826 
827 /**
828  * @brief selftest_register - Perform register test
829  *
830  * @param cdev
831  *
832  * @return 0 on success, error otherwise.
833  */
834 	int (*selftest_register)(struct qed_dev *cdev);
835 
836 /**
837  * @brief selftest_clock - Perform clock test
838  *
839  * @param cdev
840  *
841  * @return 0 on success, error otherwise.
842  */
843 	int (*selftest_clock)(struct qed_dev *cdev);
844 
845 /**
846  * @brief selftest_nvram - Perform nvram test
847  *
848  * @param cdev
849  *
850  * @return 0 on success, error otherwise.
851  */
852 	int (*selftest_nvram) (struct qed_dev *cdev);
853 };
854 
855 struct qed_common_ops {
856 	struct qed_selftest_ops *selftest;
857 
858 	struct qed_dev*	(*probe)(struct pci_dev *dev,
859 				 struct qed_probe_params *params);
860 
861 	void		(*remove)(struct qed_dev *cdev);
862 
863 	int		(*set_power_state)(struct qed_dev *cdev,
864 					   pci_power_t state);
865 
866 	void (*set_name) (struct qed_dev *cdev, char name[]);
867 
868 	/* Client drivers need to make this call before slowpath_start.
869 	 * PF params required for the call before slowpath_start is
870 	 * documented within the qed_pf_params structure definition.
871 	 */
872 	void		(*update_pf_params)(struct qed_dev *cdev,
873 					    struct qed_pf_params *params);
874 	int		(*slowpath_start)(struct qed_dev *cdev,
875 					  struct qed_slowpath_params *params);
876 
877 	int		(*slowpath_stop)(struct qed_dev *cdev);
878 
879 	/* Requests to use `cnt' interrupts for fastpath.
880 	 * upon success, returns number of interrupts allocated for fastpath.
881 	 */
882 	int		(*set_fp_int)(struct qed_dev *cdev,
883 				      u16 cnt);
884 
885 	/* Fills `info' with pointers required for utilizing interrupts */
886 	int		(*get_fp_int)(struct qed_dev *cdev,
887 				      struct qed_int_info *info);
888 
889 	u32		(*sb_init)(struct qed_dev *cdev,
890 				   struct qed_sb_info *sb_info,
891 				   void *sb_virt_addr,
892 				   dma_addr_t sb_phy_addr,
893 				   u16 sb_id,
894 				   enum qed_sb_type type);
895 
896 	u32		(*sb_release)(struct qed_dev *cdev,
897 				      struct qed_sb_info *sb_info,
898 				      u16 sb_id,
899 				      enum qed_sb_type type);
900 
901 	void		(*simd_handler_config)(struct qed_dev *cdev,
902 					       void *token,
903 					       int index,
904 					       void (*handler)(void *));
905 
906 	void		(*simd_handler_clean)(struct qed_dev *cdev,
907 					      int index);
908 	int (*dbg_grc)(struct qed_dev *cdev,
909 		       void *buffer, u32 *num_dumped_bytes);
910 
911 	int (*dbg_grc_size)(struct qed_dev *cdev);
912 
913 	int (*dbg_all_data) (struct qed_dev *cdev, void *buffer);
914 
915 	int (*dbg_all_data_size) (struct qed_dev *cdev);
916 
917 /**
918  * @brief can_link_change - can the instance change the link or not
919  *
920  * @param cdev
921  *
922  * @return true if link-change is allowed, false otherwise.
923  */
924 	bool (*can_link_change)(struct qed_dev *cdev);
925 
926 /**
927  * @brief set_link - set links according to params
928  *
929  * @param cdev
930  * @param params - values used to override the default link configuration
931  *
932  * @return 0 on success, error otherwise.
933  */
934 	int		(*set_link)(struct qed_dev *cdev,
935 				    struct qed_link_params *params);
936 
937 /**
938  * @brief get_link - returns the current link state.
939  *
940  * @param cdev
941  * @param if_link - structure to be filled with current link configuration.
942  */
943 	void		(*get_link)(struct qed_dev *cdev,
944 				    struct qed_link_output *if_link);
945 
946 /**
947  * @brief - drains chip in case Tx completions fail to arrive due to pause.
948  *
949  * @param cdev
950  */
951 	int		(*drain)(struct qed_dev *cdev);
952 
953 /**
954  * @brief update_msglvl - update module debug level
955  *
956  * @param cdev
957  * @param dp_module
958  * @param dp_level
959  */
960 	void		(*update_msglvl)(struct qed_dev *cdev,
961 					 u32 dp_module,
962 					 u8 dp_level);
963 
964 	int		(*chain_alloc)(struct qed_dev *cdev,
965 				       enum qed_chain_use_mode intended_use,
966 				       enum qed_chain_mode mode,
967 				       enum qed_chain_cnt_type cnt_type,
968 				       u32 num_elems,
969 				       size_t elem_size,
970 				       struct qed_chain *p_chain,
971 				       struct qed_chain_ext_pbl *ext_pbl);
972 
973 	void		(*chain_free)(struct qed_dev *cdev,
974 				      struct qed_chain *p_chain);
975 
976 /**
977  * @brief nvm_flash - Flash nvm data.
978  *
979  * @param cdev
980  * @param name - file containing the data
981  *
982  * @return 0 on success, error otherwise.
983  */
984 	int (*nvm_flash)(struct qed_dev *cdev, const char *name);
985 
986 /**
987  * @brief nvm_get_image - reads an entire image from nvram
988  *
989  * @param cdev
990  * @param type - type of the request nvram image
991  * @param buf - preallocated buffer to fill with the image
992  * @param len - length of the allocated buffer
993  *
994  * @return 0 on success, error otherwise
995  */
996 	int (*nvm_get_image)(struct qed_dev *cdev,
997 			     enum qed_nvm_images type, u8 *buf, u16 len);
998 
999 /**
1000  * @brief set_coalesce - Configure Rx coalesce value in usec
1001  *
1002  * @param cdev
1003  * @param rx_coal - Rx coalesce value in usec
1004  * @param tx_coal - Tx coalesce value in usec
1005  * @param qid - Queue index
1006  * @param sb_id - Status Block Id
1007  *
1008  * @return 0 on success, error otherwise.
1009  */
1010 	int (*set_coalesce)(struct qed_dev *cdev,
1011 			    u16 rx_coal, u16 tx_coal, void *handle);
1012 
1013 /**
1014  * @brief set_led - Configure LED mode
1015  *
1016  * @param cdev
1017  * @param mode - LED mode
1018  *
1019  * @return 0 on success, error otherwise.
1020  */
1021 	int (*set_led)(struct qed_dev *cdev,
1022 		       enum qed_led_mode mode);
1023 
1024 /**
1025  * @brief attn_clr_enable - Prevent attentions from being reasserted
1026  *
1027  * @param cdev
1028  * @param clr_enable
1029  */
1030 	void (*attn_clr_enable)(struct qed_dev *cdev, bool clr_enable);
1031 
1032 /**
1033  * @brief db_recovery_add - add doorbell information to the doorbell
1034  * recovery mechanism.
1035  *
1036  * @param cdev
1037  * @param db_addr - doorbell address
1038  * @param db_data - address of where db_data is stored
1039  * @param db_is_32b - doorbell is 32b pr 64b
1040  * @param db_is_user - doorbell recovery addresses are user or kernel space
1041  */
1042 	int (*db_recovery_add)(struct qed_dev *cdev,
1043 			       void __iomem *db_addr,
1044 			       void *db_data,
1045 			       enum qed_db_rec_width db_width,
1046 			       enum qed_db_rec_space db_space);
1047 
1048 /**
1049  * @brief db_recovery_del - remove doorbell information from the doorbell
1050  * recovery mechanism. db_data serves as key (db_addr is not unique).
1051  *
1052  * @param cdev
1053  * @param db_addr - doorbell address
1054  * @param db_data - address where db_data is stored. Serves as key for the
1055  *		    entry to delete.
1056  */
1057 	int (*db_recovery_del)(struct qed_dev *cdev,
1058 			       void __iomem *db_addr, void *db_data);
1059 
1060 /**
1061  * @brief recovery_process - Trigger a recovery process
1062  *
1063  * @param cdev
1064  *
1065  * @return 0 on success, error otherwise.
1066  */
1067 	int (*recovery_process)(struct qed_dev *cdev);
1068 
1069 /**
1070  * @brief recovery_prolog - Execute the prolog operations of a recovery process
1071  *
1072  * @param cdev
1073  *
1074  * @return 0 on success, error otherwise.
1075  */
1076 	int (*recovery_prolog)(struct qed_dev *cdev);
1077 
1078 /**
1079  * @brief update_drv_state - API to inform the change in the driver state.
1080  *
1081  * @param cdev
1082  * @param active
1083  *
1084  */
1085 	int (*update_drv_state)(struct qed_dev *cdev, bool active);
1086 
1087 /**
1088  * @brief update_mac - API to inform the change in the mac address
1089  *
1090  * @param cdev
1091  * @param mac
1092  *
1093  */
1094 	int (*update_mac)(struct qed_dev *cdev, u8 *mac);
1095 
1096 /**
1097  * @brief update_mtu - API to inform the change in the mtu
1098  *
1099  * @param cdev
1100  * @param mtu
1101  *
1102  */
1103 	int (*update_mtu)(struct qed_dev *cdev, u16 mtu);
1104 
1105 /**
1106  * @brief update_wol - update of changes in the WoL configuration
1107  *
1108  * @param cdev
1109  * @param enabled - true iff WoL should be enabled.
1110  */
1111 	int (*update_wol) (struct qed_dev *cdev, bool enabled);
1112 
1113 /**
1114  * @brief read_module_eeprom
1115  *
1116  * @param cdev
1117  * @param buf - buffer
1118  * @param dev_addr - PHY device memory region
1119  * @param offset - offset into eeprom contents to be read
1120  * @param len - buffer length, i.e., max bytes to be read
1121  */
1122 	int (*read_module_eeprom)(struct qed_dev *cdev,
1123 				  char *buf, u8 dev_addr, u32 offset, u32 len);
1124 
1125 /**
1126  * @brief get_affin_hwfn_idx
1127  *
1128  * @param cdev
1129  */
1130 	u8 (*get_affin_hwfn_idx)(struct qed_dev *cdev);
1131 
1132 /**
1133  * @brief read_nvm_cfg - Read NVM config attribute value.
1134  * @param cdev
1135  * @param buf - buffer
1136  * @param cmd - NVM CFG command id
1137  * @param entity_id - Entity id
1138  *
1139  */
1140 	int (*read_nvm_cfg)(struct qed_dev *cdev, u8 **buf, u32 cmd,
1141 			    u32 entity_id);
1142 /**
1143  * @brief read_nvm_cfg - Read NVM config attribute value.
1144  * @param cdev
1145  * @param cmd - NVM CFG command id
1146  *
1147  * @return config id length, 0 on error.
1148  */
1149 	int (*read_nvm_cfg_len)(struct qed_dev *cdev, u32 cmd);
1150 
1151 /**
1152  * @brief set_grc_config - Configure value for grc config id.
1153  * @param cdev
1154  * @param cfg_id - grc config id
1155  * @param val - grc config value
1156  *
1157  */
1158 	int (*set_grc_config)(struct qed_dev *cdev, u32 cfg_id, u32 val);
1159 };
1160 
1161 #define MASK_FIELD(_name, _value) \
1162 	((_value) &= (_name ## _MASK))
1163 
1164 #define FIELD_VALUE(_name, _value) \
1165 	((_value & _name ## _MASK) << _name ## _SHIFT)
1166 
1167 #define SET_FIELD(value, name, flag)			       \
1168 	do {						       \
1169 		(value) &= ~(name ## _MASK << name ## _SHIFT); \
1170 		(value) |= (((u64)flag) << (name ## _SHIFT));  \
1171 	} while (0)
1172 
1173 #define GET_FIELD(value, name) \
1174 	(((value) >> (name ## _SHIFT)) & name ## _MASK)
1175 
1176 #define GET_MFW_FIELD(name, field) \
1177 	(((name) & (field ## _MASK)) >> (field ## _OFFSET))
1178 
1179 #define SET_MFW_FIELD(name, field, value)				 \
1180 	do {								 \
1181 		(name) &= ~(field ## _MASK);				 \
1182 		(name) |= (((value) << (field ## _OFFSET)) & (field ## _MASK));\
1183 	} while (0)
1184 
1185 #define DB_ADDR_SHIFT(addr) ((addr) << DB_PWM_ADDR_OFFSET_SHIFT)
1186 
1187 /* Debug print definitions */
1188 #define DP_ERR(cdev, fmt, ...)					\
1189 	do {							\
1190 		pr_err("[%s:%d(%s)]" fmt,			\
1191 		       __func__, __LINE__,			\
1192 		       DP_NAME(cdev) ? DP_NAME(cdev) : "",	\
1193 		       ## __VA_ARGS__);				\
1194 	} while (0)
1195 
1196 #define DP_NOTICE(cdev, fmt, ...)				      \
1197 	do {							      \
1198 		if (unlikely((cdev)->dp_level <= QED_LEVEL_NOTICE)) { \
1199 			pr_notice("[%s:%d(%s)]" fmt,		      \
1200 				  __func__, __LINE__,		      \
1201 				  DP_NAME(cdev) ? DP_NAME(cdev) : "", \
1202 				  ## __VA_ARGS__);		      \
1203 								      \
1204 		}						      \
1205 	} while (0)
1206 
1207 #define DP_INFO(cdev, fmt, ...)					      \
1208 	do {							      \
1209 		if (unlikely((cdev)->dp_level <= QED_LEVEL_INFO)) {   \
1210 			pr_notice("[%s:%d(%s)]" fmt,		      \
1211 				  __func__, __LINE__,		      \
1212 				  DP_NAME(cdev) ? DP_NAME(cdev) : "", \
1213 				  ## __VA_ARGS__);		      \
1214 		}						      \
1215 	} while (0)
1216 
1217 #define DP_VERBOSE(cdev, module, fmt, ...)				\
1218 	do {								\
1219 		if (unlikely(((cdev)->dp_level <= QED_LEVEL_VERBOSE) &&	\
1220 			     ((cdev)->dp_module & module))) {		\
1221 			pr_notice("[%s:%d(%s)]" fmt,			\
1222 				  __func__, __LINE__,			\
1223 				  DP_NAME(cdev) ? DP_NAME(cdev) : "",	\
1224 				  ## __VA_ARGS__);			\
1225 		}							\
1226 	} while (0)
1227 
1228 enum DP_LEVEL {
1229 	QED_LEVEL_VERBOSE	= 0x0,
1230 	QED_LEVEL_INFO		= 0x1,
1231 	QED_LEVEL_NOTICE	= 0x2,
1232 	QED_LEVEL_ERR		= 0x3,
1233 };
1234 
1235 #define QED_LOG_LEVEL_SHIFT     (30)
1236 #define QED_LOG_VERBOSE_MASK    (0x3fffffff)
1237 #define QED_LOG_INFO_MASK       (0x40000000)
1238 #define QED_LOG_NOTICE_MASK     (0x80000000)
1239 
1240 enum DP_MODULE {
1241 	QED_MSG_SPQ	= 0x10000,
1242 	QED_MSG_STATS	= 0x20000,
1243 	QED_MSG_DCB	= 0x40000,
1244 	QED_MSG_IOV	= 0x80000,
1245 	QED_MSG_SP	= 0x100000,
1246 	QED_MSG_STORAGE = 0x200000,
1247 	QED_MSG_CXT	= 0x800000,
1248 	QED_MSG_LL2	= 0x1000000,
1249 	QED_MSG_ILT	= 0x2000000,
1250 	QED_MSG_RDMA	= 0x4000000,
1251 	QED_MSG_DEBUG	= 0x8000000,
1252 	/* to be added...up to 0x8000000 */
1253 };
1254 
1255 enum qed_mf_mode {
1256 	QED_MF_DEFAULT,
1257 	QED_MF_OVLAN,
1258 	QED_MF_NPAR,
1259 };
1260 
1261 struct qed_eth_stats_common {
1262 	u64	no_buff_discards;
1263 	u64	packet_too_big_discard;
1264 	u64	ttl0_discard;
1265 	u64	rx_ucast_bytes;
1266 	u64	rx_mcast_bytes;
1267 	u64	rx_bcast_bytes;
1268 	u64	rx_ucast_pkts;
1269 	u64	rx_mcast_pkts;
1270 	u64	rx_bcast_pkts;
1271 	u64	mftag_filter_discards;
1272 	u64	mac_filter_discards;
1273 	u64	gft_filter_drop;
1274 	u64	tx_ucast_bytes;
1275 	u64	tx_mcast_bytes;
1276 	u64	tx_bcast_bytes;
1277 	u64	tx_ucast_pkts;
1278 	u64	tx_mcast_pkts;
1279 	u64	tx_bcast_pkts;
1280 	u64	tx_err_drop_pkts;
1281 	u64	tpa_coalesced_pkts;
1282 	u64	tpa_coalesced_events;
1283 	u64	tpa_aborts_num;
1284 	u64	tpa_not_coalesced_pkts;
1285 	u64	tpa_coalesced_bytes;
1286 
1287 	/* port */
1288 	u64	rx_64_byte_packets;
1289 	u64	rx_65_to_127_byte_packets;
1290 	u64	rx_128_to_255_byte_packets;
1291 	u64	rx_256_to_511_byte_packets;
1292 	u64	rx_512_to_1023_byte_packets;
1293 	u64	rx_1024_to_1518_byte_packets;
1294 	u64	rx_crc_errors;
1295 	u64	rx_mac_crtl_frames;
1296 	u64	rx_pause_frames;
1297 	u64	rx_pfc_frames;
1298 	u64	rx_align_errors;
1299 	u64	rx_carrier_errors;
1300 	u64	rx_oversize_packets;
1301 	u64	rx_jabbers;
1302 	u64	rx_undersize_packets;
1303 	u64	rx_fragments;
1304 	u64	tx_64_byte_packets;
1305 	u64	tx_65_to_127_byte_packets;
1306 	u64	tx_128_to_255_byte_packets;
1307 	u64	tx_256_to_511_byte_packets;
1308 	u64	tx_512_to_1023_byte_packets;
1309 	u64	tx_1024_to_1518_byte_packets;
1310 	u64	tx_pause_frames;
1311 	u64	tx_pfc_frames;
1312 	u64	brb_truncates;
1313 	u64	brb_discards;
1314 	u64	rx_mac_bytes;
1315 	u64	rx_mac_uc_packets;
1316 	u64	rx_mac_mc_packets;
1317 	u64	rx_mac_bc_packets;
1318 	u64	rx_mac_frames_ok;
1319 	u64	tx_mac_bytes;
1320 	u64	tx_mac_uc_packets;
1321 	u64	tx_mac_mc_packets;
1322 	u64	tx_mac_bc_packets;
1323 	u64	tx_mac_ctrl_frames;
1324 	u64	link_change_count;
1325 };
1326 
1327 struct qed_eth_stats_bb {
1328 	u64 rx_1519_to_1522_byte_packets;
1329 	u64 rx_1519_to_2047_byte_packets;
1330 	u64 rx_2048_to_4095_byte_packets;
1331 	u64 rx_4096_to_9216_byte_packets;
1332 	u64 rx_9217_to_16383_byte_packets;
1333 	u64 tx_1519_to_2047_byte_packets;
1334 	u64 tx_2048_to_4095_byte_packets;
1335 	u64 tx_4096_to_9216_byte_packets;
1336 	u64 tx_9217_to_16383_byte_packets;
1337 	u64 tx_lpi_entry_count;
1338 	u64 tx_total_collisions;
1339 };
1340 
1341 struct qed_eth_stats_ah {
1342 	u64 rx_1519_to_max_byte_packets;
1343 	u64 tx_1519_to_max_byte_packets;
1344 };
1345 
1346 struct qed_eth_stats {
1347 	struct qed_eth_stats_common common;
1348 
1349 	union {
1350 		struct qed_eth_stats_bb bb;
1351 		struct qed_eth_stats_ah ah;
1352 	};
1353 };
1354 
1355 #define QED_SB_IDX              0x0002
1356 
1357 #define RX_PI           0
1358 #define TX_PI(tc)       (RX_PI + 1 + tc)
1359 
1360 struct qed_sb_cnt_info {
1361 	/* Original, current, and free SBs for PF */
1362 	int orig;
1363 	int cnt;
1364 	int free_cnt;
1365 
1366 	/* Original, current and free SBS for child VFs */
1367 	int iov_orig;
1368 	int iov_cnt;
1369 	int free_cnt_iov;
1370 };
1371 
1372 static inline u16 qed_sb_update_sb_idx(struct qed_sb_info *sb_info)
1373 {
1374 	u32 prod = 0;
1375 	u16 rc = 0;
1376 
1377 	prod = le32_to_cpu(sb_info->sb_virt->prod_index) &
1378 	       STATUS_BLOCK_E4_PROD_INDEX_MASK;
1379 	if (sb_info->sb_ack != prod) {
1380 		sb_info->sb_ack = prod;
1381 		rc |= QED_SB_IDX;
1382 	}
1383 
1384 	/* Let SB update */
1385 	return rc;
1386 }
1387 
1388 /**
1389  *
1390  * @brief This function creates an update command for interrupts that is
1391  *        written to the IGU.
1392  *
1393  * @param sb_info       - This is the structure allocated and
1394  *                 initialized per status block. Assumption is
1395  *                 that it was initialized using qed_sb_init
1396  * @param int_cmd       - Enable/Disable/Nop
1397  * @param upd_flg       - whether igu consumer should be
1398  *                 updated.
1399  *
1400  * @return inline void
1401  */
1402 static inline void qed_sb_ack(struct qed_sb_info *sb_info,
1403 			      enum igu_int_cmd int_cmd,
1404 			      u8 upd_flg)
1405 {
1406 	u32 igu_ack;
1407 
1408 	igu_ack = ((sb_info->sb_ack << IGU_PROD_CONS_UPDATE_SB_INDEX_SHIFT) |
1409 		   (upd_flg << IGU_PROD_CONS_UPDATE_UPDATE_FLAG_SHIFT) |
1410 		   (int_cmd << IGU_PROD_CONS_UPDATE_ENABLE_INT_SHIFT) |
1411 		   (IGU_SEG_ACCESS_REG <<
1412 		    IGU_PROD_CONS_UPDATE_SEGMENT_ACCESS_SHIFT));
1413 
1414 	DIRECT_REG_WR(sb_info->igu_addr, igu_ack);
1415 
1416 	/* Both segments (interrupts & acks) are written to same place address;
1417 	 * Need to guarantee all commands will be received (in-order) by HW.
1418 	 */
1419 	barrier();
1420 }
1421 
1422 static inline void __internal_ram_wr(void *p_hwfn,
1423 				     void __iomem *addr,
1424 				     int size,
1425 				     u32 *data)
1426 
1427 {
1428 	unsigned int i;
1429 
1430 	for (i = 0; i < size / sizeof(*data); i++)
1431 		DIRECT_REG_WR(&((u32 __iomem *)addr)[i], data[i]);
1432 }
1433 
1434 static inline void internal_ram_wr(void __iomem *addr,
1435 				   int size,
1436 				   u32 *data)
1437 {
1438 	__internal_ram_wr(NULL, addr, size, data);
1439 }
1440 
1441 enum qed_rss_caps {
1442 	QED_RSS_IPV4		= 0x1,
1443 	QED_RSS_IPV6		= 0x2,
1444 	QED_RSS_IPV4_TCP	= 0x4,
1445 	QED_RSS_IPV6_TCP	= 0x8,
1446 	QED_RSS_IPV4_UDP	= 0x10,
1447 	QED_RSS_IPV6_UDP	= 0x20,
1448 };
1449 
1450 #define QED_RSS_IND_TABLE_SIZE 128
1451 #define QED_RSS_KEY_SIZE 10 /* size in 32b chunks */
1452 #endif
1453