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