New upstream version 17.11-rc3
[deb_dpdk.git] / drivers / net / qede / base / ecore.h
1 /*
2  * Copyright (c) 2016 QLogic Corporation.
3  * All rights reserved.
4  * www.qlogic.com
5  *
6  * See LICENSE.qede_pmd for copyright and licensing details.
7  */
8
9 #ifndef __ECORE_H
10 #define __ECORE_H
11
12 /* @DPDK */
13 #include <sys/stat.h>
14 #include <fcntl.h>
15 #include <unistd.h>
16
17 #define CONFIG_ECORE_BINARY_FW
18 #undef CONFIG_ECORE_ZIPPED_FW
19
20 #ifdef CONFIG_ECORE_ZIPPED_FW
21 #include <zlib.h>
22 #endif
23
24 #include "ecore_hsi_common.h"
25 #include "ecore_hsi_debug_tools.h"
26 #include "ecore_hsi_init_func.h"
27 #include "ecore_hsi_init_tool.h"
28 #include "ecore_proto_if.h"
29 #include "mcp_public.h"
30
31 #define ECORE_MAJOR_VERSION             8
32 #define ECORE_MINOR_VERSION             30
33 #define ECORE_REVISION_VERSION          8
34 #define ECORE_ENGINEERING_VERSION       0
35
36 #define ECORE_VERSION                                                   \
37         ((ECORE_MAJOR_VERSION << 24) | (ECORE_MINOR_VERSION << 16) |    \
38          (ECORE_REVISION_VERSION << 8) | ECORE_ENGINEERING_VERSION)
39
40 #define STORM_FW_VERSION                                                \
41         ((FW_MAJOR_VERSION << 24) | (FW_MINOR_VERSION << 16) |  \
42          (FW_REVISION_VERSION << 8) | FW_ENGINEERING_VERSION)
43
44 #define MAX_HWFNS_PER_DEVICE    2
45 #define NAME_SIZE 128 /* @DPDK */
46 #define ECORE_WFQ_UNIT  100
47 #include "../qede_logs.h" /* @DPDK */
48
49 #define ISCSI_BDQ_ID(_port_id) (_port_id)
50 #define FCOE_BDQ_ID(_port_id) (_port_id + 2)
51 /* Constants */
52 #define ECORE_WID_SIZE          (1024)
53 #define ECORE_MIN_WIDS          (4)
54
55 /* Configurable */
56 #define ECORE_PF_DEMS_SIZE      (4)
57
58 /* cau states */
59 enum ecore_coalescing_mode {
60         ECORE_COAL_MODE_DISABLE,
61         ECORE_COAL_MODE_ENABLE
62 };
63
64 enum ecore_nvm_cmd {
65         ECORE_PUT_FILE_BEGIN = DRV_MSG_CODE_NVM_PUT_FILE_BEGIN,
66         ECORE_PUT_FILE_DATA = DRV_MSG_CODE_NVM_PUT_FILE_DATA,
67         ECORE_NVM_READ_NVRAM = DRV_MSG_CODE_NVM_READ_NVRAM,
68         ECORE_NVM_WRITE_NVRAM = DRV_MSG_CODE_NVM_WRITE_NVRAM,
69         ECORE_NVM_DEL_FILE = DRV_MSG_CODE_NVM_DEL_FILE,
70         ECORE_EXT_PHY_FW_UPGRADE = DRV_MSG_CODE_EXT_PHY_FW_UPGRADE,
71         ECORE_NVM_SET_SECURE_MODE = DRV_MSG_CODE_SET_SECURE_MODE,
72         ECORE_PHY_RAW_READ = DRV_MSG_CODE_PHY_RAW_READ,
73         ECORE_PHY_RAW_WRITE = DRV_MSG_CODE_PHY_RAW_WRITE,
74         ECORE_PHY_CORE_READ = DRV_MSG_CODE_PHY_CORE_READ,
75         ECORE_PHY_CORE_WRITE = DRV_MSG_CODE_PHY_CORE_WRITE,
76         ECORE_GET_MCP_NVM_RESP = 0xFFFFFF00
77 };
78
79 #ifndef LINUX_REMOVE
80 #if !defined(CONFIG_ECORE_L2)
81 #define CONFIG_ECORE_L2
82 #define CONFIG_ECORE_SRIOV
83 #endif
84 #endif
85
86 /* helpers */
87 #ifndef __EXTRACT__LINUX__
88 #define MASK_FIELD(_name, _value)                                       \
89                 ((_value) &= (_name##_MASK))
90
91 #define FIELD_VALUE(_name, _value)                                      \
92                 ((_value & _name##_MASK) << _name##_SHIFT)
93
94 #define SET_FIELD(value, name, flag)                                    \
95 do {                                                                    \
96         (value) &= ~(name##_MASK << name##_SHIFT);                      \
97         (value) |= ((((u64)flag) & (u64)name##_MASK) << (name##_SHIFT));\
98 } while (0)
99
100 #define GET_FIELD(value, name)                                          \
101         (((value) >> (name##_SHIFT)) & name##_MASK)
102
103 #define GET_MFW_FIELD(name, field)                              \
104         (((name) & (field ## _MASK)) >> (field ## _OFFSET))
105
106 #define SET_MFW_FIELD(name, field, value)                               \
107 do {                                                                    \
108         (name) &= ~((field ## _MASK));          \
109         (name) |= (((value) << (field ## _OFFSET)) & (field ## _MASK)); \
110 } while (0)
111 #endif
112
113 static OSAL_INLINE u32 DB_ADDR(u32 cid, u32 DEMS)
114 {
115         u32 db_addr = FIELD_VALUE(DB_LEGACY_ADDR_DEMS, DEMS) |
116                       (cid * ECORE_PF_DEMS_SIZE);
117
118         return db_addr;
119 }
120
121 static OSAL_INLINE u32 DB_ADDR_VF(u32 cid, u32 DEMS)
122 {
123         u32 db_addr = FIELD_VALUE(DB_LEGACY_ADDR_DEMS, DEMS) |
124                       FIELD_VALUE(DB_LEGACY_ADDR_ICID, cid);
125
126         return db_addr;
127 }
128
129 #define ALIGNED_TYPE_SIZE(type_name, p_hwfn)                              \
130         ((sizeof(type_name) + (u32)(1 << (p_hwfn->p_dev->cache_shift)) - 1) & \
131          ~((1 << (p_hwfn->p_dev->cache_shift)) - 1))
132
133 #ifndef LINUX_REMOVE
134 #ifndef U64_HI
135 #define U64_HI(val) ((u32)(((u64)(val))  >> 32))
136 #endif
137
138 #ifndef U64_LO
139 #define U64_LO(val) ((u32)(((u64)(val)) & 0xffffffff))
140 #endif
141 #endif
142
143 #ifndef __EXTRACT__LINUX__
144 enum DP_LEVEL {
145         ECORE_LEVEL_VERBOSE     = 0x0,
146         ECORE_LEVEL_INFO        = 0x1,
147         ECORE_LEVEL_NOTICE      = 0x2,
148         ECORE_LEVEL_ERR         = 0x3,
149 };
150
151 #define ECORE_LOG_LEVEL_SHIFT   (30)
152 #define ECORE_LOG_VERBOSE_MASK  (0x3fffffff)
153 #define ECORE_LOG_INFO_MASK     (0x40000000)
154 #define ECORE_LOG_NOTICE_MASK   (0x80000000)
155
156 enum DP_MODULE {
157 #ifndef LINUX_REMOVE
158         ECORE_MSG_DRV           = 0x0001,
159         ECORE_MSG_PROBE         = 0x0002,
160         ECORE_MSG_LINK          = 0x0004,
161         ECORE_MSG_TIMER         = 0x0008,
162         ECORE_MSG_IFDOWN        = 0x0010,
163         ECORE_MSG_IFUP          = 0x0020,
164         ECORE_MSG_RX_ERR        = 0x0040,
165         ECORE_MSG_TX_ERR        = 0x0080,
166         ECORE_MSG_TX_QUEUED     = 0x0100,
167         ECORE_MSG_INTR          = 0x0200,
168         ECORE_MSG_TX_DONE       = 0x0400,
169         ECORE_MSG_RX_STATUS     = 0x0800,
170         ECORE_MSG_PKTDATA       = 0x1000,
171         ECORE_MSG_HW            = 0x2000,
172         ECORE_MSG_WOL           = 0x4000,
173 #endif
174         ECORE_MSG_SPQ           = 0x10000,
175         ECORE_MSG_STATS         = 0x20000,
176         ECORE_MSG_DCB           = 0x40000,
177         ECORE_MSG_IOV           = 0x80000,
178         ECORE_MSG_SP            = 0x100000,
179         ECORE_MSG_STORAGE       = 0x200000,
180         ECORE_MSG_OOO           = 0x200000,
181         ECORE_MSG_CXT           = 0x800000,
182         ECORE_MSG_LL2           = 0x1000000,
183         ECORE_MSG_ILT           = 0x2000000,
184         ECORE_MSG_RDMA          = 0x4000000,
185         ECORE_MSG_DEBUG         = 0x8000000,
186         /* to be added...up to 0x8000000 */
187 };
188 #endif
189
190 #define for_each_hwfn(p_dev, i) for (i = 0; i < p_dev->num_hwfns; i++)
191
192 #define D_TRINE(val, cond1, cond2, true1, true2, def) \
193         (val == (cond1) ? true1 : \
194          (val == (cond2) ? true2 : def))
195
196 /* forward */
197 struct ecore_ptt_pool;
198 struct ecore_spq;
199 struct ecore_sb_info;
200 struct ecore_sb_attn_info;
201 struct ecore_cxt_mngr;
202 struct ecore_dma_mem;
203 struct ecore_sb_sp_info;
204 struct ecore_ll2_info;
205 struct ecore_l2_info;
206 struct ecore_igu_info;
207 struct ecore_mcp_info;
208 struct ecore_dcbx_info;
209
210 struct ecore_rt_data {
211         u32     *init_val;
212         bool    *b_valid;
213 };
214
215 enum ecore_tunn_mode {
216         ECORE_MODE_L2GENEVE_TUNN,
217         ECORE_MODE_IPGENEVE_TUNN,
218         ECORE_MODE_L2GRE_TUNN,
219         ECORE_MODE_IPGRE_TUNN,
220         ECORE_MODE_VXLAN_TUNN,
221 };
222
223 enum ecore_tunn_clss {
224         ECORE_TUNN_CLSS_MAC_VLAN,
225         ECORE_TUNN_CLSS_MAC_VNI,
226         ECORE_TUNN_CLSS_INNER_MAC_VLAN,
227         ECORE_TUNN_CLSS_INNER_MAC_VNI,
228         ECORE_TUNN_CLSS_MAC_VLAN_DUAL_STAGE,
229         MAX_ECORE_TUNN_CLSS,
230 };
231
232 struct ecore_tunn_update_type {
233         bool b_update_mode;
234         bool b_mode_enabled;
235         enum ecore_tunn_clss tun_cls;
236 };
237
238 struct ecore_tunn_update_udp_port {
239         bool b_update_port;
240         u16 port;
241 };
242
243 struct ecore_tunnel_info {
244         struct ecore_tunn_update_type vxlan;
245         struct ecore_tunn_update_type l2_geneve;
246         struct ecore_tunn_update_type ip_geneve;
247         struct ecore_tunn_update_type l2_gre;
248         struct ecore_tunn_update_type ip_gre;
249
250         struct ecore_tunn_update_udp_port vxlan_port;
251         struct ecore_tunn_update_udp_port geneve_port;
252
253         bool b_update_rx_cls;
254         bool b_update_tx_cls;
255 };
256
257 /* The PCI personality is not quite synonymous to protocol ID:
258  * 1. All personalities need CORE connections
259  * 2. The Ethernet personality may support also the RoCE/iWARP protocol
260  */
261 enum ecore_pci_personality {
262         ECORE_PCI_ETH,
263         ECORE_PCI_FCOE,
264         ECORE_PCI_ISCSI,
265         ECORE_PCI_ETH_ROCE,
266         ECORE_PCI_ETH_IWARP,
267         ECORE_PCI_ETH_RDMA,
268         ECORE_PCI_DEFAULT /* default in shmem */
269 };
270
271 /* All VFs are symmetric, all counters are PF + all VFs */
272 struct ecore_qm_iids {
273         u32 cids;
274         u32 vf_cids;
275         u32 tids;
276 };
277
278 #define MAX_PF_PER_PORT 8
279
280 /* HW / FW resources, output of features supported below, most information
281  * is received from MFW.
282  */
283 enum ecore_resources {
284         ECORE_L2_QUEUE,
285         ECORE_VPORT,
286         ECORE_RSS_ENG,
287         ECORE_PQ,
288         ECORE_RL,
289         ECORE_MAC,
290         ECORE_VLAN,
291         ECORE_RDMA_CNQ_RAM,
292         ECORE_ILT,
293         ECORE_LL2_QUEUE,
294         ECORE_CMDQS_CQS,
295         ECORE_RDMA_STATS_QUEUE,
296         ECORE_BDQ,
297
298         /* This is needed only internally for matching against the IGU.
299          * In case of legacy MFW, would be set to `0'.
300          */
301         ECORE_SB,
302
303         ECORE_MAX_RESC,
304 };
305
306 /* Features that require resources, given as input to the resource management
307  * algorithm, the output are the resources above
308  */
309 enum ecore_feature {
310         ECORE_PF_L2_QUE,
311         ECORE_PF_TC,
312         ECORE_VF,
313         ECORE_EXTRA_VF_QUE,
314         ECORE_VMQ,
315         ECORE_RDMA_CNQ,
316         ECORE_ISCSI_CQ,
317         ECORE_FCOE_CQ,
318         ECORE_VF_L2_QUE,
319         ECORE_MAX_FEATURES,
320 };
321
322 enum ecore_port_mode {
323         ECORE_PORT_MODE_DE_2X40G,
324         ECORE_PORT_MODE_DE_2X50G,
325         ECORE_PORT_MODE_DE_1X100G,
326         ECORE_PORT_MODE_DE_4X10G_F,
327         ECORE_PORT_MODE_DE_4X10G_E,
328         ECORE_PORT_MODE_DE_4X20G,
329         ECORE_PORT_MODE_DE_1X40G,
330         ECORE_PORT_MODE_DE_2X25G,
331         ECORE_PORT_MODE_DE_1X25G,
332         ECORE_PORT_MODE_DE_4X25G,
333         ECORE_PORT_MODE_DE_2X10G,
334 };
335
336 enum ecore_dev_cap {
337         ECORE_DEV_CAP_ETH,
338         ECORE_DEV_CAP_FCOE,
339         ECORE_DEV_CAP_ISCSI,
340         ECORE_DEV_CAP_ROCE,
341         ECORE_DEV_CAP_IWARP
342 };
343
344 #ifndef __EXTRACT__LINUX__
345 enum ecore_hw_err_type {
346         ECORE_HW_ERR_FAN_FAIL,
347         ECORE_HW_ERR_MFW_RESP_FAIL,
348         ECORE_HW_ERR_HW_ATTN,
349         ECORE_HW_ERR_DMAE_FAIL,
350         ECORE_HW_ERR_RAMROD_FAIL,
351         ECORE_HW_ERR_FW_ASSERT,
352 };
353 #endif
354
355 enum ecore_db_rec_exec {
356         DB_REC_DRY_RUN,
357         DB_REC_REAL_DEAL,
358         DB_REC_ONCE,
359 };
360
361 struct ecore_hw_info {
362         /* PCI personality */
363         enum ecore_pci_personality personality;
364 #define ECORE_IS_RDMA_PERSONALITY(dev) \
365         ((dev)->hw_info.personality == ECORE_PCI_ETH_ROCE || \
366          (dev)->hw_info.personality == ECORE_PCI_ETH_IWARP || \
367          (dev)->hw_info.personality == ECORE_PCI_ETH_RDMA)
368 #define ECORE_IS_ROCE_PERSONALITY(dev) \
369         ((dev)->hw_info.personality == ECORE_PCI_ETH_ROCE || \
370          (dev)->hw_info.personality == ECORE_PCI_ETH_RDMA)
371 #define ECORE_IS_IWARP_PERSONALITY(dev) \
372         ((dev)->hw_info.personality == ECORE_PCI_ETH_IWARP || \
373          (dev)->hw_info.personality == ECORE_PCI_ETH_RDMA)
374 #define ECORE_IS_L2_PERSONALITY(dev) \
375         ((dev)->hw_info.personality == ECORE_PCI_ETH || \
376          ECORE_IS_RDMA_PERSONALITY(dev))
377 #define ECORE_IS_FCOE_PERSONALITY(dev) \
378         ((dev)->hw_info.personality == ECORE_PCI_FCOE)
379 #define ECORE_IS_ISCSI_PERSONALITY(dev) \
380         ((dev)->hw_info.personality == ECORE_PCI_ISCSI)
381
382         /* Resource Allocation scheme results */
383         u32 resc_start[ECORE_MAX_RESC];
384         u32 resc_num[ECORE_MAX_RESC];
385         u32 feat_num[ECORE_MAX_FEATURES];
386
387         #define RESC_START(_p_hwfn, resc) ((_p_hwfn)->hw_info.resc_start[resc])
388         #define RESC_NUM(_p_hwfn, resc) ((_p_hwfn)->hw_info.resc_num[resc])
389         #define RESC_END(_p_hwfn, resc) (RESC_START(_p_hwfn, resc) + \
390                                          RESC_NUM(_p_hwfn, resc))
391         #define FEAT_NUM(_p_hwfn, resc) ((_p_hwfn)->hw_info.feat_num[resc])
392
393         /* Amount of traffic classes HW supports */
394         u8 num_hw_tc;
395
396 /* Amount of TCs which should be active according to DCBx or upper layer driver
397  * configuration
398  */
399
400         u8 num_active_tc;
401
402         /* The traffic class used by PF for it's offloaded protocol */
403         u8 offload_tc;
404
405         u32 concrete_fid;
406         u16 opaque_fid;
407         u16 ovlan;
408         u32 part_num[4];
409
410         unsigned char hw_mac_addr[ETH_ALEN];
411         u64 node_wwn; /* For FCoE only */
412         u64 port_wwn; /* For FCoE only */
413
414         u16 num_iscsi_conns;
415         u16 num_fcoe_conns;
416
417         struct ecore_igu_info *p_igu_info;
418         /* Sriov */
419         u8 max_chains_per_vf;
420
421         u32 port_mode;
422         u32     hw_mode;
423         unsigned long device_capabilities;
424
425         /* Default DCBX mode */
426         u8 dcbx_mode;
427
428         u16 mtu;
429 };
430
431 /* maximun size of read/write commands (HW limit) */
432 #define DMAE_MAX_RW_SIZE        0x2000
433
434 struct ecore_dmae_info {
435         /* Mutex for synchronizing access to functions */
436         osal_mutex_t    mutex;
437
438         u8 channel;
439
440         dma_addr_t completion_word_phys_addr;
441
442         /* The memory location where the DMAE writes the completion
443          * value when an operation is finished on this context.
444          */
445         u32 *p_completion_word;
446
447         dma_addr_t intermediate_buffer_phys_addr;
448
449         /* An intermediate buffer for DMAE operations that use virtual
450          * addresses - data is DMA'd to/from this buffer and then
451          * memcpy'd to/from the virtual address
452          */
453         u32 *p_intermediate_buffer;
454
455         dma_addr_t dmae_cmd_phys_addr;
456         struct dmae_cmd *p_dmae_cmd;
457 };
458
459 struct ecore_wfq_data {
460         u32 default_min_speed; /* When wfq feature is not configured */
461         u32 min_speed; /* when feature is configured for any 1 vport */
462         bool configured;
463 };
464
465 struct ecore_qm_info {
466         struct init_qm_pq_params    *qm_pq_params;
467         struct init_qm_vport_params *qm_vport_params;
468         struct init_qm_port_params  *qm_port_params;
469         u16                     start_pq;
470         u8                      start_vport;
471         u16                     pure_lb_pq;
472         u16                     offload_pq;
473         u16                     pure_ack_pq;
474         u16                     ooo_pq;
475         u16                     first_vf_pq;
476         u16                     first_mcos_pq;
477         u16                     first_rl_pq;
478         u16                     num_pqs;
479         u16                     num_vf_pqs;
480         u8                      num_vports;
481         u8                      max_phys_tcs_per_port;
482         u8                      ooo_tc;
483         bool                    pf_rl_en;
484         bool                    pf_wfq_en;
485         bool                    vport_rl_en;
486         bool                    vport_wfq_en;
487         u8                      pf_wfq;
488         u32                     pf_rl;
489         struct ecore_wfq_data   *wfq_data;
490         u8                      num_pf_rls;
491 };
492
493 struct ecore_db_recovery_info {
494         osal_list_t list;
495         osal_spinlock_t lock;
496         u32 db_recovery_counter;
497 };
498
499 struct storm_stats {
500         u32 address;
501         u32 len;
502 };
503
504 struct ecore_fw_data {
505 #ifdef CONFIG_ECORE_BINARY_FW
506         struct fw_ver_info *fw_ver_info;
507 #endif
508         const u8 *modes_tree_buf;
509         union init_op *init_ops;
510         const u32 *arr_data;
511         u32 init_ops_size;
512 };
513
514 enum ecore_mf_mode_bit {
515         /* Supports PF-classification based on tag */
516         ECORE_MF_OVLAN_CLSS,
517
518         /* Supports PF-classification based on MAC */
519         ECORE_MF_LLH_MAC_CLSS,
520
521         /* Supports PF-classification based on protocol type */
522         ECORE_MF_LLH_PROTO_CLSS,
523
524         /* Requires a default PF to be set */
525         ECORE_MF_NEED_DEF_PF,
526
527         /* Allow LL2 to multicast/broadcast */
528         ECORE_MF_LL2_NON_UNICAST,
529
530         /* Allow Cross-PF [& child VFs] Tx-switching */
531         ECORE_MF_INTER_PF_SWITCH,
532
533         /* TODO - if we ever re-utilize any of this logic, we can rename */
534         ECORE_MF_UFP_SPECIFIC,
535
536         ECORE_MF_DISABLE_ARFS,
537 };
538
539 enum ecore_ufp_mode {
540         ECORE_UFP_MODE_ETS,
541         ECORE_UFP_MODE_VNIC_BW,
542 };
543
544 enum ecore_ufp_pri_type {
545         ECORE_UFP_PRI_OS,
546         ECORE_UFP_PRI_VNIC
547 };
548
549 struct ecore_ufp_info {
550         enum ecore_ufp_pri_type pri_type;
551         enum ecore_ufp_mode mode;
552         u8 tc;
553 };
554
555 enum BAR_ID {
556         BAR_ID_0,       /* used for GRC */
557         BAR_ID_1        /* Used for doorbells */
558 };
559
560 struct ecore_hwfn {
561         struct ecore_dev                *p_dev;
562         u8                              my_id;          /* ID inside the PF */
563 #define IS_LEAD_HWFN(edev)              (!((edev)->my_id))
564         u8                              rel_pf_id;      /* Relative to engine*/
565         u8                              abs_pf_id;
566 #define ECORE_PATH_ID(_p_hwfn) \
567         (ECORE_IS_BB((_p_hwfn)->p_dev) ? ((_p_hwfn)->abs_pf_id & 1) : 0)
568         u8                              port_id;
569         bool                            b_active;
570
571         u32                             dp_module;
572         u8                              dp_level;
573         char                            name[NAME_SIZE];
574         void                            *dp_ctx;
575
576         bool                            first_on_engine;
577         bool                            hw_init_done;
578
579         u8                              num_funcs_on_engine;
580         u8                              enabled_func_idx;
581
582         /* BAR access */
583         void OSAL_IOMEM                 *regview;
584         void OSAL_IOMEM                 *doorbells;
585         u64                             db_phys_addr;
586         unsigned long                   db_size;
587
588         /* PTT pool */
589         struct ecore_ptt_pool           *p_ptt_pool;
590
591         /* HW info */
592         struct ecore_hw_info            hw_info;
593
594         /* rt_array (for init-tool) */
595         struct ecore_rt_data            rt_data;
596
597         /* SPQ */
598         struct ecore_spq                *p_spq;
599
600         /* EQ */
601         struct ecore_eq                 *p_eq;
602
603         /* Consolidate Q*/
604         struct ecore_consq              *p_consq;
605
606         /* Slow-Path definitions */
607         osal_dpc_t                      sp_dpc;
608         bool                            b_sp_dpc_enabled;
609
610         struct ecore_ptt                *p_main_ptt;
611         struct ecore_ptt                *p_dpc_ptt;
612
613         struct ecore_sb_sp_info         *p_sp_sb;
614         struct ecore_sb_attn_info       *p_sb_attn;
615
616         /* Protocol related */
617         bool                            using_ll2;
618         struct ecore_ll2_info           *p_ll2_info;
619         struct ecore_ooo_info           *p_ooo_info;
620         struct ecore_iscsi_info         *p_iscsi_info;
621         struct ecore_fcoe_info          *p_fcoe_info;
622         struct ecore_rdma_info          *p_rdma_info;
623         struct ecore_pf_params          pf_params;
624
625         bool                            b_rdma_enabled_in_prs;
626         u32                             rdma_prs_search_reg;
627
628         struct ecore_cxt_mngr           *p_cxt_mngr;
629
630         /* Flag indicating whether interrupts are enabled or not*/
631         bool                            b_int_enabled;
632         bool                            b_int_requested;
633
634         /* True if the driver requests for the link */
635         bool                            b_drv_link_init;
636
637         struct ecore_vf_iov             *vf_iov_info;
638         struct ecore_pf_iov             *pf_iov_info;
639         struct ecore_mcp_info           *mcp_info;
640         struct ecore_dcbx_info          *p_dcbx_info;
641         struct ecore_ufp_info           ufp_info;
642
643         struct ecore_dmae_info          dmae_info;
644
645         /* QM init */
646         struct ecore_qm_info            qm_info;
647
648 #ifdef CONFIG_ECORE_ZIPPED_FW
649         /* Buffer for unzipping firmware data */
650         void *unzip_buf;
651 #endif
652
653         struct dbg_tools_data           dbg_info;
654
655         struct z_stream_s               *stream;
656
657         /* PWM region specific data */
658         u32                             dpi_size;
659         u32                             dpi_count;
660         u32                             dpi_start_offset; /* this is used to
661                                                            * calculate th
662                                                            * doorbell address
663                                                            */
664
665         /* If one of the following is set then EDPM shouldn't be used */
666         u8                              dcbx_no_edpm;
667         u8                              db_bar_no_edpm;
668
669         /* L2-related */
670         struct ecore_l2_info            *p_l2_info;
671
672         /* Mechanism for recovering from doorbell drop */
673         struct ecore_db_recovery_info   db_recovery_info;
674
675         /* @DPDK */
676         struct ecore_ptt                *p_arfs_ptt;
677 };
678
679 enum ecore_mf_mode {
680         ECORE_MF_DEFAULT,
681         ECORE_MF_OVLAN,
682         ECORE_MF_NPAR,
683         ECORE_MF_UFP,
684 };
685
686 /* @DPDK */
687 struct ecore_dbg_feature {
688         u8                              *dump_buf;
689         u32                             buf_size;
690         u32                             dumped_dwords;
691 };
692
693 enum qed_dbg_features {
694         DBG_FEATURE_BUS,
695         DBG_FEATURE_GRC,
696         DBG_FEATURE_IDLE_CHK,
697         DBG_FEATURE_MCP_TRACE,
698         DBG_FEATURE_REG_FIFO,
699         DBG_FEATURE_PROTECTION_OVERRIDE,
700         DBG_FEATURE_NUM
701 };
702
703 enum ecore_dev_type {
704         ECORE_DEV_TYPE_BB,
705         ECORE_DEV_TYPE_AH,
706 };
707
708 struct ecore_dev {
709         u32                             dp_module;
710         u8                              dp_level;
711         char                            name[NAME_SIZE];
712         void                            *dp_ctx;
713
714         enum ecore_dev_type             type;
715 /* Translate type/revision combo into the proper conditions */
716 #define ECORE_IS_BB(dev)        ((dev)->type == ECORE_DEV_TYPE_BB)
717 #define ECORE_IS_BB_A0(dev)     (ECORE_IS_BB(dev) && CHIP_REV_IS_A0(dev))
718 #ifndef ASIC_ONLY
719 #define ECORE_IS_BB_B0(dev)     ((ECORE_IS_BB(dev) && CHIP_REV_IS_B0(dev)) || \
720                                  (CHIP_REV_IS_TEDIBEAR(dev)))
721 #else
722 #define ECORE_IS_BB_B0(dev)     (ECORE_IS_BB(dev) && CHIP_REV_IS_B0(dev))
723 #endif
724 #define ECORE_IS_AH(dev)        ((dev)->type == ECORE_DEV_TYPE_AH)
725 #define ECORE_IS_K2(dev)        ECORE_IS_AH(dev)
726
727         u16 vendor_id;
728         u16 device_id;
729 #define ECORE_DEV_ID_MASK       0xff00
730 #define ECORE_DEV_ID_MASK_BB    0x1600
731 #define ECORE_DEV_ID_MASK_AH    0x8000
732
733         u16                             chip_num;
734 #define CHIP_NUM_MASK                   0xffff
735 #define CHIP_NUM_SHIFT                  0
736
737         u8                              chip_rev;
738 #define CHIP_REV_MASK                   0xf
739 #define CHIP_REV_SHIFT                  0
740 #ifndef ASIC_ONLY
741 #define CHIP_REV_IS_TEDIBEAR(_p_dev)    ((_p_dev)->chip_rev == 0x5)
742 #define CHIP_REV_IS_EMUL_A0(_p_dev)     ((_p_dev)->chip_rev == 0xe)
743 #define CHIP_REV_IS_EMUL_B0(_p_dev)     ((_p_dev)->chip_rev == 0xc)
744 #define CHIP_REV_IS_EMUL(_p_dev) \
745         (CHIP_REV_IS_EMUL_A0(_p_dev) || CHIP_REV_IS_EMUL_B0(_p_dev))
746 #define CHIP_REV_IS_FPGA_A0(_p_dev)     ((_p_dev)->chip_rev == 0xf)
747 #define CHIP_REV_IS_FPGA_B0(_p_dev)     ((_p_dev)->chip_rev == 0xd)
748 #define CHIP_REV_IS_FPGA(_p_dev) \
749         (CHIP_REV_IS_FPGA_A0(_p_dev) || CHIP_REV_IS_FPGA_B0(_p_dev))
750 #define CHIP_REV_IS_SLOW(_p_dev) \
751         (CHIP_REV_IS_EMUL(_p_dev) || CHIP_REV_IS_FPGA(_p_dev))
752 #define CHIP_REV_IS_A0(_p_dev) \
753         (CHIP_REV_IS_EMUL_A0(_p_dev) || CHIP_REV_IS_FPGA_A0(_p_dev) || \
754          (!(_p_dev)->chip_rev && !(_p_dev)->chip_metal))
755 #define CHIP_REV_IS_B0(_p_dev) \
756         (CHIP_REV_IS_EMUL_B0(_p_dev) || CHIP_REV_IS_FPGA_B0(_p_dev) || \
757          ((_p_dev)->chip_rev == 1 && !(_p_dev)->chip_metal))
758 #define CHIP_REV_IS_ASIC(_p_dev)        !CHIP_REV_IS_SLOW(_p_dev)
759 #else
760 #define CHIP_REV_IS_A0(_p_dev) \
761         (!(_p_dev)->chip_rev && !(_p_dev)->chip_metal)
762 #define CHIP_REV_IS_B0(_p_dev) \
763         ((_p_dev)->chip_rev == 1 && !(_p_dev)->chip_metal)
764 #endif
765
766         u8                              chip_metal;
767 #define CHIP_METAL_MASK                 0xff
768 #define CHIP_METAL_SHIFT                0
769
770         u8                              chip_bond_id;
771 #define CHIP_BOND_ID_MASK               0xff
772 #define CHIP_BOND_ID_SHIFT              0
773
774         u8                              num_engines;
775         u8                              num_ports;
776         u8                              num_ports_in_engine;
777         u8                              num_funcs_in_port;
778
779         u8                              path_id;
780
781         unsigned long                   mf_bits;
782         enum ecore_mf_mode              mf_mode;
783 #define IS_MF_DEFAULT(_p_hwfn)  \
784         (((_p_hwfn)->p_dev)->mf_mode == ECORE_MF_DEFAULT)
785 #define IS_MF_SI(_p_hwfn)       \
786         (((_p_hwfn)->p_dev)->mf_mode == ECORE_MF_NPAR)
787 #define IS_MF_SD(_p_hwfn)       \
788         (((_p_hwfn)->p_dev)->mf_mode == ECORE_MF_OVLAN)
789
790         int                             pcie_width;
791         int                             pcie_speed;
792
793         /* Add MF related configuration */
794         u8                              mcp_rev;
795         u8                              boot_mode;
796
797         u8                              wol;
798
799         u32                             int_mode;
800         enum ecore_coalescing_mode      int_coalescing_mode;
801         u16                             rx_coalesce_usecs;
802         u16                             tx_coalesce_usecs;
803
804         /* Start Bar offset of first hwfn */
805         void OSAL_IOMEM                 *regview;
806         void OSAL_IOMEM                 *doorbells;
807         u64                             db_phys_addr;
808         unsigned long                   db_size;
809
810         /* PCI */
811         u8                              cache_shift;
812
813         /* Init */
814         const struct iro                *iro_arr;
815         #define IRO (p_hwfn->p_dev->iro_arr)
816
817         /* HW functions */
818         u8                              num_hwfns;
819         struct ecore_hwfn               hwfns[MAX_HWFNS_PER_DEVICE];
820 #define ECORE_IS_CMT(dev)               ((dev)->num_hwfns > 1)
821
822         /* SRIOV */
823         struct ecore_hw_sriov_info      *p_iov_info;
824 #define IS_ECORE_SRIOV(p_dev)           (!!(p_dev)->p_iov_info)
825         struct ecore_tunnel_info        tunnel;
826         bool                            b_is_vf;
827         bool                            b_dont_override_vf_msix;
828
829         u32                             drv_type;
830
831         u32                             rdma_max_sge;
832         u32                             rdma_max_inline;
833         u32                             rdma_max_srq_sge;
834
835         struct ecore_eth_stats          *reset_stats;
836         struct ecore_fw_data            *fw_data;
837
838         u32                             mcp_nvm_resp;
839
840         /* Recovery */
841         bool                            recov_in_prog;
842
843 /* Indicates whether should prevent attentions from being reasserted */
844
845         bool                            attn_clr_en;
846
847         /* Indicates whether allowing the MFW to collect a crash dump */
848         bool                            allow_mdump;
849
850         /* Indicates if the reg_fifo is checked after any register access */
851         bool                            chk_reg_fifo;
852
853 #ifndef ASIC_ONLY
854         bool                            b_is_emul_full;
855 #endif
856
857 #ifdef CONFIG_ECORE_BINARY_FW /* @DPDK */
858         void                            *firmware;
859         u64                             fw_len;
860 #endif
861
862         /* @DPDK */
863         struct ecore_dbg_feature        dbg_features[DBG_FEATURE_NUM];
864         u8                              engine_for_debug;
865 };
866
867 #define NUM_OF_VFS(dev)         (ECORE_IS_BB(dev) ? MAX_NUM_VFS_BB \
868                                                   : MAX_NUM_VFS_K2)
869 #define NUM_OF_L2_QUEUES(dev)   (ECORE_IS_BB(dev) ? MAX_NUM_L2_QUEUES_BB \
870                                                   : MAX_NUM_L2_QUEUES_K2)
871 #define NUM_OF_PORTS(dev)       (ECORE_IS_BB(dev) ? MAX_NUM_PORTS_BB \
872                                                   : MAX_NUM_PORTS_K2)
873 #define NUM_OF_SBS(dev)         (ECORE_IS_BB(dev) ? MAX_SB_PER_PATH_BB \
874                                                   : MAX_SB_PER_PATH_K2)
875 #define NUM_OF_ENG_PFS(dev)     (ECORE_IS_BB(dev) ? MAX_NUM_PFS_BB \
876                                                   : MAX_NUM_PFS_K2)
877
878 #define CRC8_TABLE_SIZE 256
879
880 /**
881  * @brief ecore_concrete_to_sw_fid - get the sw function id from
882  *        the concrete value.
883  *
884  * @param concrete_fid
885  *
886  * @return OSAL_INLINE u8
887  */
888 static OSAL_INLINE u8 ecore_concrete_to_sw_fid(u32 concrete_fid)
889 {
890         u8 vfid     = GET_FIELD(concrete_fid, PXP_CONCRETE_FID_VFID);
891         u8 pfid     = GET_FIELD(concrete_fid, PXP_CONCRETE_FID_PFID);
892         u8 vf_valid = GET_FIELD(concrete_fid, PXP_CONCRETE_FID_VFVALID);
893         u8 sw_fid;
894
895         if (vf_valid)
896                 sw_fid = vfid + MAX_NUM_PFS;
897         else
898                 sw_fid = pfid;
899
900         return sw_fid;
901 }
902
903 #define PKT_LB_TC 9
904 #define MAX_NUM_VOQS_E4 20
905
906 int ecore_configure_vport_wfq(struct ecore_dev *p_dev, u16 vp_id, u32 rate);
907 void ecore_configure_vp_wfq_on_link_change(struct ecore_dev *p_dev,
908                                            struct ecore_ptt *p_ptt,
909                                            u32 min_pf_rate);
910
911 int ecore_configure_pf_max_bandwidth(struct ecore_dev *p_dev, u8 max_bw);
912 int ecore_configure_pf_min_bandwidth(struct ecore_dev *p_dev, u8 min_bw);
913 void ecore_clean_wfq_db(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt);
914 int ecore_device_num_engines(struct ecore_dev *p_dev);
915 int ecore_device_num_ports(struct ecore_dev *p_dev);
916 void ecore_set_fw_mac_addr(__le16 *fw_msb, __le16 *fw_mid, __le16 *fw_lsb,
917                            u8 *mac);
918
919 /* Flags for indication of required queues */
920 #define PQ_FLAGS_RLS    (1 << 0)
921 #define PQ_FLAGS_MCOS   (1 << 1)
922 #define PQ_FLAGS_LB     (1 << 2)
923 #define PQ_FLAGS_OOO    (1 << 3)
924 #define PQ_FLAGS_ACK    (1 << 4)
925 #define PQ_FLAGS_OFLD   (1 << 5)
926 #define PQ_FLAGS_VFS    (1 << 6)
927
928 /* physical queue index for cm context intialization */
929 u16 ecore_get_cm_pq_idx(struct ecore_hwfn *p_hwfn, u32 pq_flags);
930 u16 ecore_get_cm_pq_idx_mcos(struct ecore_hwfn *p_hwfn, u8 tc);
931 u16 ecore_get_cm_pq_idx_vf(struct ecore_hwfn *p_hwfn, u16 vf);
932 u16 ecore_get_cm_pq_idx_rl(struct ecore_hwfn *p_hwfn, u8 qpid);
933
934 const char *ecore_hw_get_resc_name(enum ecore_resources res_id);
935
936 /* doorbell recovery mechanism */
937 void ecore_db_recovery_dp(struct ecore_hwfn *p_hwfn);
938 void ecore_db_recovery_execute(struct ecore_hwfn *p_hwfn,
939                                enum ecore_db_rec_exec);
940
941 /* amount of resources used in qm init */
942 u8 ecore_init_qm_get_num_tcs(struct ecore_hwfn *p_hwfn);
943 u16 ecore_init_qm_get_num_vfs(struct ecore_hwfn *p_hwfn);
944 u16 ecore_init_qm_get_num_pf_rls(struct ecore_hwfn *p_hwfn);
945 u16 ecore_init_qm_get_num_vports(struct ecore_hwfn *p_hwfn);
946 u16 ecore_init_qm_get_num_pqs(struct ecore_hwfn *p_hwfn);
947
948 #define ECORE_LEADING_HWFN(dev) (&dev->hwfns[0])
949
950 #endif /* __ECORE_H */