qede: add SRIOV support
[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 #include "ecore_hsi_common.h"
13 #include "ecore_hsi_tools.h"
14 #include "ecore_proto_if.h"
15 #include "mcp_public.h"
16
17 #define MAX_HWFNS_PER_DEVICE    (4)
18 #define NAME_SIZE 64            /* @DPDK */
19 #define VER_SIZE 16
20 /* @DPDK ARRAY_DECL */
21 #define ECORE_WFQ_UNIT  100
22 #include "../qede_logs.h"       /* @DPDK */
23
24 /* Constants */
25 #define ECORE_WID_SIZE          (1024)
26
27 /* Configurable */
28 #define ECORE_PF_DEMS_SIZE      (4)
29
30 /* cau states */
31 enum ecore_coalescing_mode {
32         ECORE_COAL_MODE_DISABLE,
33         ECORE_COAL_MODE_ENABLE
34 };
35
36 enum ecore_nvm_cmd {
37         ECORE_PUT_FILE_BEGIN = DRV_MSG_CODE_NVM_PUT_FILE_BEGIN,
38         ECORE_PUT_FILE_DATA = DRV_MSG_CODE_NVM_PUT_FILE_DATA,
39         ECORE_NVM_READ_NVRAM = DRV_MSG_CODE_NVM_READ_NVRAM,
40         ECORE_NVM_WRITE_NVRAM = DRV_MSG_CODE_NVM_WRITE_NVRAM,
41         ECORE_NVM_DEL_FILE = DRV_MSG_CODE_NVM_DEL_FILE,
42         ECORE_NVM_SET_SECURE_MODE = DRV_MSG_CODE_SET_SECURE_MODE,
43         ECORE_PHY_RAW_READ = DRV_MSG_CODE_PHY_RAW_READ,
44         ECORE_PHY_RAW_WRITE = DRV_MSG_CODE_PHY_RAW_WRITE,
45         ECORE_PHY_CORE_READ = DRV_MSG_CODE_PHY_CORE_READ,
46         ECORE_PHY_CORE_WRITE = DRV_MSG_CODE_PHY_CORE_WRITE,
47         ECORE_GET_MCP_NVM_RESP = 0xFFFFFF00
48 };
49
50 #ifndef LINUX_REMOVE
51 #if !defined(CONFIG_ECORE_L2)
52 #define CONFIG_ECORE_L2
53 #define CONFIG_ECORE_SRIOV
54 #endif
55 #endif
56
57 /* helpers */
58 #ifndef __EXTRACT__LINUX__
59 #define MASK_FIELD(_name, _value)                                       \
60                 ((_value) &= (_name##_MASK))
61
62 #define FIELD_VALUE(_name, _value)                                      \
63                 ((_value & _name##_MASK) << _name##_SHIFT)
64
65 #define SET_FIELD(value, name, flag)                                    \
66 do {                                                                    \
67         (value) &= ~(name##_MASK << name##_SHIFT);                      \
68         (value) |= (((u64)flag) << (name##_SHIFT));                     \
69 } while (0)
70
71 #define GET_FIELD(value, name)                                          \
72         (((value) >> (name##_SHIFT)) & name##_MASK)
73 #endif
74
75 static OSAL_INLINE u32 DB_ADDR(u32 cid, u32 DEMS)
76 {
77         u32 db_addr = FIELD_VALUE(DB_LEGACY_ADDR_DEMS, DEMS) |
78             (cid * ECORE_PF_DEMS_SIZE);
79
80         return db_addr;
81 }
82
83 /* @DPDK: This is a backport from latest ecore for TSS fix */
84 static OSAL_INLINE u32 DB_ADDR_VF(u32 cid, u32 DEMS)
85 {
86         u32 db_addr = FIELD_VALUE(DB_LEGACY_ADDR_DEMS, DEMS) |
87                       FIELD_VALUE(DB_LEGACY_ADDR_ICID, cid);
88
89         return db_addr;
90 }
91
92 #define ALIGNED_TYPE_SIZE(type_name, p_hwfn)                              \
93         ((sizeof(type_name) + (u32)(1 << (p_hwfn->p_dev->cache_shift)) - 1) & \
94          ~((1 << (p_hwfn->p_dev->cache_shift)) - 1))
95
96 #ifndef U64_HI
97 #define U64_HI(val) ((u32)(((u64)(val))  >> 32))
98 #endif
99
100 #ifndef U64_LO
101 #define U64_LO(val) ((u32)(((u64)(val)) & 0xffffffff))
102 #endif
103
104 #ifndef __EXTRACT__LINUX__
105 enum DP_LEVEL {
106         ECORE_LEVEL_VERBOSE = 0x0,
107         ECORE_LEVEL_INFO = 0x1,
108         ECORE_LEVEL_NOTICE = 0x2,
109         ECORE_LEVEL_ERR = 0x3,
110 };
111
112 #define ECORE_LOG_LEVEL_SHIFT   (30)
113 #define ECORE_LOG_VERBOSE_MASK  (0x3fffffff)
114 #define ECORE_LOG_INFO_MASK     (0x40000000)
115 #define ECORE_LOG_NOTICE_MASK   (0x80000000)
116
117 enum DP_MODULE {
118 #ifndef LINUX_REMOVE
119         ECORE_MSG_DRV = 0x0001,
120         ECORE_MSG_PROBE = 0x0002,
121         ECORE_MSG_LINK = 0x0004,
122         ECORE_MSG_TIMER = 0x0008,
123         ECORE_MSG_IFDOWN = 0x0010,
124         ECORE_MSG_IFUP = 0x0020,
125         ECORE_MSG_RX_ERR = 0x0040,
126         ECORE_MSG_TX_ERR = 0x0080,
127         ECORE_MSG_TX_QUEUED = 0x0100,
128         ECORE_MSG_INTR = 0x0200,
129         ECORE_MSG_TX_DONE = 0x0400,
130         ECORE_MSG_RX_STATUS = 0x0800,
131         ECORE_MSG_PKTDATA = 0x1000,
132         ECORE_MSG_HW = 0x2000,
133         ECORE_MSG_WOL = 0x4000,
134 #endif
135         ECORE_MSG_SPQ = 0x10000,
136         ECORE_MSG_STATS = 0x20000,
137         ECORE_MSG_DCB = 0x40000,
138         ECORE_MSG_IOV = 0x80000,
139         ECORE_MSG_SP = 0x100000,
140         ECORE_MSG_STORAGE = 0x200000,
141         ECORE_MSG_CXT = 0x800000,
142         ECORE_MSG_ILT = 0x2000000,
143         ECORE_MSG_DEBUG = 0x8000000,
144         /* to be added...up to 0x8000000 */
145 };
146 #endif
147
148 #define for_each_hwfn(p_dev, i) for (i = 0; i < p_dev->num_hwfns; i++)
149
150 #define D_TRINE(val, cond1, cond2, true1, true2, def) \
151         (val == (cond1) ? true1 : \
152          (val == (cond2) ? true2 : def))
153
154 /* forward */
155 struct ecore_ptt_pool;
156 struct ecore_spq;
157 struct ecore_sb_info;
158 struct ecore_sb_attn_info;
159 struct ecore_cxt_mngr;
160 struct ecore_dma_mem;
161 struct ecore_sb_sp_info;
162 struct ecore_igu_info;
163 struct ecore_mcp_info;
164
165 struct ecore_rt_data {
166         u32 *init_val;
167         bool *b_valid;
168 };
169
170 enum ecore_tunn_mode {
171         ECORE_MODE_L2GENEVE_TUNN,
172         ECORE_MODE_IPGENEVE_TUNN,
173         ECORE_MODE_L2GRE_TUNN,
174         ECORE_MODE_IPGRE_TUNN,
175         ECORE_MODE_VXLAN_TUNN,
176 };
177
178 enum ecore_tunn_clss {
179         ECORE_TUNN_CLSS_MAC_VLAN,
180         ECORE_TUNN_CLSS_MAC_VNI,
181         ECORE_TUNN_CLSS_INNER_MAC_VLAN,
182         ECORE_TUNN_CLSS_INNER_MAC_VNI,
183         MAX_ECORE_TUNN_CLSS,
184 };
185
186 struct ecore_tunn_start_params {
187         unsigned long tunn_mode;
188         u16 vxlan_udp_port;
189         u16 geneve_udp_port;
190         u8 update_vxlan_udp_port;
191         u8 update_geneve_udp_port;
192         u8 tunn_clss_vxlan;
193         u8 tunn_clss_l2geneve;
194         u8 tunn_clss_ipgeneve;
195         u8 tunn_clss_l2gre;
196         u8 tunn_clss_ipgre;
197 };
198
199 struct ecore_tunn_update_params {
200         unsigned long tunn_mode_update_mask;
201         unsigned long tunn_mode;
202         u16 vxlan_udp_port;
203         u16 geneve_udp_port;
204         u8 update_rx_pf_clss;
205         u8 update_tx_pf_clss;
206         u8 update_vxlan_udp_port;
207         u8 update_geneve_udp_port;
208         u8 tunn_clss_vxlan;
209         u8 tunn_clss_l2geneve;
210         u8 tunn_clss_ipgeneve;
211         u8 tunn_clss_l2gre;
212         u8 tunn_clss_ipgre;
213 };
214
215 struct ecore_hw_sriov_info {
216         /* standard SRIOV capability fields, mostly for debugging */
217         int pos;                /* capability position */
218         int nres;               /* number of resources */
219         u32 cap;                /* SR-IOV Capabilities */
220         u16 ctrl;               /* SR-IOV Control */
221         u16 total_vfs;          /* total VFs associated with the PF */
222         u16 num_vfs;            /* number of vfs that have been started */
223         u64 active_vfs[3];      /* bitfield of active vfs */
224 #define ECORE_IS_VF_ACTIVE(_p_dev, _rel_vf_id)  \
225                 (!!(_p_dev->sriov_info.active_vfs[_rel_vf_id / 64] & \
226                     (1ULL << (_rel_vf_id % 64))))
227         u16 initial_vfs;        /* initial VFs associated with the PF */
228         u16 nr_virtfn;          /* number of VFs available */
229         u16 offset;             /* first VF Routing ID offset */
230         u16 stride;             /* following VF stride */
231         u16 vf_device_id;       /* VF device id */
232         u32 pgsz;               /* page size for BAR alignment */
233         u8 link;                /* Function Dependency Link */
234
235         bool b_hw_channel;      /* Whether PF uses the HW-channel */
236 };
237
238 /* The PCI personality is not quite synonymous to protocol ID:
239  * 1. All personalities need CORE connections
240  * 2. The Ethernet personality may support also the RoCE protocol
241  */
242 enum ecore_pci_personality {
243         ECORE_PCI_ETH,
244         ECORE_PCI_DEFAULT       /* default in shmem */
245 };
246
247 /* All VFs are symmetric, all counters are PF + all VFs */
248 struct ecore_qm_iids {
249         u32 cids;
250         u32 vf_cids;
251         u32 tids;
252 };
253
254 #define MAX_PF_PER_PORT 8
255
256 /*@@@TBD MK RESC: need to remove and use MCP interface instead */
257 /* HW / FW resources, output of features supported below, most information
258  * is received from MFW.
259  */
260 enum ECORE_RESOURCES {
261         ECORE_SB,
262         ECORE_L2_QUEUE,
263         ECORE_VPORT,
264         ECORE_RSS_ENG,
265         ECORE_PQ,
266         ECORE_RL,
267         ECORE_MAC,
268         ECORE_VLAN,
269         ECORE_ILT,
270         ECORE_CMDQS_CQS,
271         ECORE_MAX_RESC,
272 };
273
274 /* Features that require resources, given as input to the resource management
275  * algorithm, the output are the resources above
276  */
277 enum ECORE_FEATURE {
278         ECORE_PF_L2_QUE,
279         ECORE_PF_TC,
280         ECORE_VF,
281         ECORE_EXTRA_VF_QUE,
282         ECORE_VMQ,
283         ECORE_MAX_FEATURES,
284 };
285
286 enum ECORE_PORT_MODE {
287         ECORE_PORT_MODE_DE_2X40G,
288         ECORE_PORT_MODE_DE_2X50G,
289         ECORE_PORT_MODE_DE_1X100G,
290         ECORE_PORT_MODE_DE_4X10G_F,
291         ECORE_PORT_MODE_DE_4X10G_E,
292         ECORE_PORT_MODE_DE_4X20G,
293         ECORE_PORT_MODE_DE_1X40G,
294         ECORE_PORT_MODE_DE_2X25G,
295         ECORE_PORT_MODE_DE_1X25G
296 };
297
298 enum ecore_dev_cap {
299         ECORE_DEV_CAP_ETH,
300 };
301
302 #ifndef __EXTRACT__LINUX__
303 enum ecore_hw_err_type {
304         ECORE_HW_ERR_FAN_FAIL,
305         ECORE_HW_ERR_MFW_RESP_FAIL,
306         ECORE_HW_ERR_HW_ATTN,
307         ECORE_HW_ERR_DMAE_FAIL,
308         ECORE_HW_ERR_RAMROD_FAIL,
309         ECORE_HW_ERR_FW_ASSERT,
310 };
311 #endif
312
313 struct ecore_hw_info {
314         /* PCI personality */
315         enum ecore_pci_personality personality;
316
317         /* Resource Allocation scheme results */
318         u32 resc_start[ECORE_MAX_RESC];
319         u32 resc_num[ECORE_MAX_RESC];
320         u32 feat_num[ECORE_MAX_FEATURES];
321
322 #define RESC_START(_p_hwfn, resc) ((_p_hwfn)->hw_info.resc_start[resc])
323 #define RESC_NUM(_p_hwfn, resc) ((_p_hwfn)->hw_info.resc_num[resc])
324 #define RESC_END(_p_hwfn, resc) (RESC_START(_p_hwfn, resc) + \
325                                          RESC_NUM(_p_hwfn, resc))
326 #define FEAT_NUM(_p_hwfn, resc) ((_p_hwfn)->hw_info.feat_num[resc])
327
328         u8 num_tc;
329         u8 ooo_tc;
330         u8 offload_tc;
331         u8 non_offload_tc;
332
333         u32 concrete_fid;
334         u16 opaque_fid;
335         u16 ovlan;
336         u32 part_num[4];
337
338         unsigned char hw_mac_addr[ETH_ALEN];
339
340         struct ecore_igu_info *p_igu_info;
341         /* Sriov */
342         u32 first_vf_in_pf;
343         u8 max_chains_per_vf;
344
345         u32 port_mode;
346         u32 hw_mode;
347         unsigned long device_capabilities;
348 };
349
350 struct ecore_hw_cid_data {
351         u32 cid;
352         bool b_cid_allocated;
353         u8 vfid;                /* 1-based; 0 signals this is for a PF */
354
355         /* Additional identifiers */
356         u16 opaque_fid;
357         u8 vport_id;
358 };
359
360 /* maximun size of read/write commands (HW limit) */
361 #define DMAE_MAX_RW_SIZE        0x2000
362
363 struct ecore_dmae_info {
364         /* Mutex for synchronizing access to functions */
365         osal_mutex_t mutex;
366
367         u8 channel;
368
369         dma_addr_t completion_word_phys_addr;
370
371         /* The memory location where the DMAE writes the completion
372          * value when an operation is finished on this context.
373          */
374         u32 *p_completion_word;
375
376         dma_addr_t intermediate_buffer_phys_addr;
377
378         /* An intermediate buffer for DMAE operations that use virtual
379          * addresses - data is DMA'd to/from this buffer and then
380          * memcpy'd to/from the virtual address
381          */
382         u32 *p_intermediate_buffer;
383
384         dma_addr_t dmae_cmd_phys_addr;
385         struct dmae_cmd *p_dmae_cmd;
386 };
387
388 struct ecore_wfq_data {
389         u32 default_min_speed;  /* When wfq feature is not configured */
390         u32 min_speed;          /* when feature is configured for any 1 vport */
391         bool configured;
392 };
393
394 struct ecore_qm_info {
395         struct init_qm_pq_params *qm_pq_params;
396         struct init_qm_vport_params *qm_vport_params;
397         struct init_qm_port_params *qm_port_params;
398         u16 start_pq;
399         u8 start_vport;
400         u8 pure_lb_pq;
401         u8 offload_pq;
402         u8 pure_ack_pq;
403         u8 ooo_pq;
404         u8 vf_queues_offset;
405         u16 num_pqs;
406         u16 num_vf_pqs;
407         u8 num_vports;
408         u8 max_phys_tcs_per_port;
409         bool pf_rl_en;
410         bool pf_wfq_en;
411         bool vport_rl_en;
412         bool vport_wfq_en;
413         u8 pf_wfq;
414         u32 pf_rl;
415         struct ecore_wfq_data *wfq_data;
416 };
417
418 struct storm_stats {
419         u32 address;
420         u32 len;
421 };
422
423 #define CONFIG_ECORE_BINARY_FW
424 #define CONFIG_ECORE_ZIPPED_FW
425
426 struct ecore_fw_data {
427 #ifdef CONFIG_ECORE_BINARY_FW
428         struct fw_ver_info *fw_ver_info;
429 #endif
430         const u8 *modes_tree_buf;
431         union init_op *init_ops;
432         const u32 *arr_data;
433         u32 init_ops_size;
434 };
435
436 struct ecore_hwfn {
437         struct ecore_dev *p_dev;
438         u8 my_id;               /* ID inside the PF */
439 #define IS_LEAD_HWFN(edev)              (!((edev)->my_id))
440         u8 rel_pf_id;           /* Relative to engine */
441         u8 abs_pf_id;
442 #define ECORE_PATH_ID(_p_hwfn) \
443                 (ECORE_IS_K2((_p_hwfn)->p_dev) ? 0 : ((_p_hwfn)->abs_pf_id & 1))
444         u8 port_id;
445         bool b_active;
446
447         u32 dp_module;
448         u8 dp_level;
449         char name[NAME_SIZE];
450         void *dp_ctx;
451
452         bool first_on_engine;
453         bool hw_init_done;
454
455         u8 num_funcs_on_engine;
456
457         /* BAR access */
458         void OSAL_IOMEM *regview;
459         void OSAL_IOMEM *doorbells;
460         u64 db_phys_addr;
461         unsigned long db_size;
462
463         /* PTT pool */
464         struct ecore_ptt_pool *p_ptt_pool;
465
466         /* HW info */
467         struct ecore_hw_info hw_info;
468
469         /* rt_array (for init-tool) */
470         struct ecore_rt_data rt_data;
471
472         /* SPQ */
473         struct ecore_spq *p_spq;
474
475         /* EQ */
476         struct ecore_eq *p_eq;
477
478         /* Consolidate Q */
479         struct ecore_consq *p_consq;
480
481         /* Slow-Path definitions */
482         osal_dpc_t sp_dpc;
483         bool b_sp_dpc_enabled;
484
485         struct ecore_ptt *p_main_ptt;
486         struct ecore_ptt *p_dpc_ptt;
487
488         struct ecore_sb_sp_info *p_sp_sb;
489         struct ecore_sb_attn_info *p_sb_attn;
490
491         /* Protocol related */
492         struct ecore_ooo_info *p_ooo_info;
493         struct ecore_pf_params pf_params;
494
495         /* Array of sb_info of all status blocks */
496         struct ecore_sb_info *sbs_info[MAX_SB_PER_PF_MIMD];
497         u16 num_sbs;
498
499         struct ecore_cxt_mngr *p_cxt_mngr;
500
501         /* Flag indicating whether interrupts are enabled or not */
502         bool b_int_enabled;
503         bool b_int_requested;
504
505         /* True if the driver requests for the link */
506         bool b_drv_link_init;
507
508         struct ecore_vf_iov *vf_iov_info;
509         struct ecore_pf_iov *pf_iov_info;
510         struct ecore_mcp_info *mcp_info;
511
512         struct ecore_hw_cid_data *p_tx_cids;
513         struct ecore_hw_cid_data *p_rx_cids;
514
515         struct ecore_dmae_info dmae_info;
516
517         /* QM init */
518         struct ecore_qm_info qm_info;
519
520         /* Buffer for unzipping firmware data */
521 #ifdef CONFIG_ECORE_ZIPPED_FW
522         void *unzip_buf;
523 #endif
524
525         struct dbg_tools_data dbg_info;
526
527         struct z_stream_s *stream;
528
529         /* PWM region specific data */
530         u32 dpi_size;
531         u32 dpi_count;
532         u32 dpi_start_offset;   /* this is used to
533                                  * calculate th
534                                  * doorbell address
535                                  */
536 };
537
538 #ifndef __EXTRACT__LINUX__
539 enum ecore_mf_mode {
540         ECORE_MF_DEFAULT,
541         ECORE_MF_OVLAN,
542         ECORE_MF_NPAR,
543 };
544 #endif
545
546 struct ecore_dev {
547         u32 dp_module;
548         u8 dp_level;
549         char name[NAME_SIZE];
550         void *dp_ctx;
551
552         u8 type;
553 #define ECORE_DEV_TYPE_BB       (0 << 0)
554 #define ECORE_DEV_TYPE_AH       (1 << 0)
555 /* Translate type/revision combo into the proper conditions */
556 #define ECORE_IS_BB(dev)        ((dev)->type == ECORE_DEV_TYPE_BB)
557 #define ECORE_IS_BB_A0(dev)     (ECORE_IS_BB(dev) && \
558                                  CHIP_REV_IS_A0(dev))
559 #define ECORE_IS_BB_B0(dev)     (ECORE_IS_BB(dev) && \
560                                  CHIP_REV_IS_B0(dev))
561 #define ECORE_IS_AH(dev)        ((dev)->type == ECORE_DEV_TYPE_AH)
562 #define ECORE_IS_K2(dev)        ECORE_IS_AH(dev)
563 #define ECORE_GET_TYPE(dev)     (ECORE_IS_BB_A0(dev) ? CHIP_BB_A0 : \
564                                  ECORE_IS_BB_B0(dev) ? CHIP_BB_B0 : CHIP_K2)
565
566         u16 vendor_id;
567         u16 device_id;
568
569         u16 chip_num;
570 #define CHIP_NUM_MASK                   0xffff
571 #define CHIP_NUM_SHIFT                  16
572
573         u16 chip_rev;
574 #define CHIP_REV_MASK                   0xf
575 #define CHIP_REV_SHIFT                  12
576 #ifndef ASIC_ONLY
577 #define CHIP_REV_IS_TEDIBEAR(_p_dev) ((_p_dev)->chip_rev == 0x5)
578 #define CHIP_REV_IS_EMUL_A0(_p_dev) ((_p_dev)->chip_rev == 0xe)
579 #define CHIP_REV_IS_EMUL_B0(_p_dev) ((_p_dev)->chip_rev == 0xc)
580 #define CHIP_REV_IS_EMUL(_p_dev) (CHIP_REV_IS_EMUL_A0(_p_dev) || \
581                                           CHIP_REV_IS_EMUL_B0(_p_dev))
582 #define CHIP_REV_IS_FPGA_A0(_p_dev) ((_p_dev)->chip_rev == 0xf)
583 #define CHIP_REV_IS_FPGA_B0(_p_dev) ((_p_dev)->chip_rev == 0xd)
584 #define CHIP_REV_IS_FPGA(_p_dev) (CHIP_REV_IS_FPGA_A0(_p_dev) || \
585                                           CHIP_REV_IS_FPGA_B0(_p_dev))
586 #define CHIP_REV_IS_SLOW(_p_dev) \
587                 (CHIP_REV_IS_EMUL(_p_dev) || CHIP_REV_IS_FPGA(_p_dev))
588 #define CHIP_REV_IS_A0(_p_dev) \
589                 (CHIP_REV_IS_EMUL_A0(_p_dev) || \
590                  CHIP_REV_IS_FPGA_A0(_p_dev) || \
591                  !(_p_dev)->chip_rev)
592 #define CHIP_REV_IS_B0(_p_dev) \
593                 (CHIP_REV_IS_EMUL_B0(_p_dev) || \
594                  CHIP_REV_IS_FPGA_B0(_p_dev) || \
595                  (_p_dev)->chip_rev == 1)
596 #define CHIP_REV_IS_ASIC(_p_dev) (!CHIP_REV_IS_SLOW(_p_dev))
597 #else
598 #define CHIP_REV_IS_A0(_p_dev)  (!(_p_dev)->chip_rev)
599 #define CHIP_REV_IS_B0(_p_dev)  ((_p_dev)->chip_rev == 1)
600 #endif
601
602         u16 chip_metal;
603 #define CHIP_METAL_MASK                 0xff
604 #define CHIP_METAL_SHIFT                4
605
606         u16 chip_bond_id;
607 #define CHIP_BOND_ID_MASK               0xf
608 #define CHIP_BOND_ID_SHIFT              0
609
610         u8 num_engines;
611         u8 num_ports_in_engines;
612         u8 num_funcs_in_port;
613
614         u8 path_id;
615         enum ecore_mf_mode mf_mode;
616 #define IS_MF_DEFAULT(_p_hwfn) \
617                 (((_p_hwfn)->p_dev)->mf_mode == ECORE_MF_DEFAULT)
618 #define IS_MF_SI(_p_hwfn)       (((_p_hwfn)->p_dev)->mf_mode == ECORE_MF_NPAR)
619 #define IS_MF_SD(_p_hwfn)       (((_p_hwfn)->p_dev)->mf_mode == ECORE_MF_OVLAN)
620
621         int pcie_width;
622         int pcie_speed;
623         u8 ver_str[VER_SIZE];
624         /* Add MF related configuration */
625         u8 mcp_rev;
626         u8 boot_mode;
627
628         u8 wol;
629
630         u32 int_mode;
631         enum ecore_coalescing_mode int_coalescing_mode;
632         u8 rx_coalesce_usecs;
633         u8 tx_coalesce_usecs;
634
635         /* Start Bar offset of first hwfn */
636         void OSAL_IOMEM *regview;
637         void OSAL_IOMEM *doorbells;
638         u64 db_phys_addr;
639         unsigned long db_size;
640
641         /* PCI */
642         u8 cache_shift;
643
644         /* Init */
645         const struct iro *iro_arr;
646 #define IRO (p_hwfn->p_dev->iro_arr)
647
648         /* HW functions */
649         u8 num_hwfns;
650         struct ecore_hwfn hwfns[MAX_HWFNS_PER_DEVICE];
651
652         /* SRIOV */
653         struct ecore_hw_sriov_info sriov_info;
654         unsigned long tunn_mode;
655 #define IS_ECORE_SRIOV(edev)            (!!((edev)->sriov_info.total_vfs))
656         bool b_is_vf;
657
658         u32 drv_type;
659
660         struct ecore_eth_stats *reset_stats;
661         struct ecore_fw_data *fw_data;
662
663         u32 mcp_nvm_resp;
664
665         /* Recovery */
666         bool recov_in_prog;
667
668 #ifndef ASIC_ONLY
669         bool b_is_emul_full;
670 #endif
671
672         void *firmware;
673
674         u64 fw_len;
675
676 };
677
678 #define NUM_OF_VFS(dev)         (ECORE_IS_BB(dev) ? MAX_NUM_VFS_BB \
679                                                   : MAX_NUM_VFS_K2)
680 #define NUM_OF_L2_QUEUES(dev)   (ECORE_IS_BB(dev) ? MAX_NUM_L2_QUEUES_BB \
681                                                   : MAX_NUM_L2_QUEUES_K2)
682 #define NUM_OF_PORTS(dev)       (ECORE_IS_BB(dev) ? MAX_NUM_PORTS_BB \
683                                                   : MAX_NUM_PORTS_K2)
684 #define NUM_OF_SBS(dev)         (ECORE_IS_BB(dev) ? MAX_SB_PER_PATH_BB \
685                                                   : MAX_SB_PER_PATH_K2)
686 #define NUM_OF_ENG_PFS(dev)     (ECORE_IS_BB(dev) ? MAX_NUM_PFS_BB \
687                                                   : MAX_NUM_PFS_K2)
688
689 #define ENABLE_EAGLE_ENG1_WORKAROUND(p_hwfn) ( \
690         (ECORE_IS_BB_A0(p_hwfn->p_dev)) && \
691         (ECORE_PATH_ID(p_hwfn) == 1) && \
692         ((p_hwfn->hw_info.port_mode == ECORE_PORT_MODE_DE_2X40G) || \
693          (p_hwfn->hw_info.port_mode == ECORE_PORT_MODE_DE_2X50G) || \
694          (p_hwfn->hw_info.port_mode == ECORE_PORT_MODE_DE_2X25G)))
695
696 /**
697  * @brief ecore_concrete_to_sw_fid - get the sw function id from
698  *        the concrete value.
699  *
700  * @param concrete_fid
701  *
702  * @return OSAL_INLINE u8
703  */
704 static OSAL_INLINE u8 ecore_concrete_to_sw_fid(struct ecore_dev *p_dev,
705                                                u32 concrete_fid)
706 {
707         u8 vfid = GET_FIELD(concrete_fid, PXP_CONCRETE_FID_VFID);
708         u8 pfid = GET_FIELD(concrete_fid, PXP_CONCRETE_FID_PFID);
709         u8 vf_valid = GET_FIELD(concrete_fid, PXP_CONCRETE_FID_VFVALID);
710         u8 sw_fid;
711
712         if (vf_valid)
713                 sw_fid = vfid + MAX_NUM_PFS;
714         else
715                 sw_fid = pfid;
716
717         return sw_fid;
718 }
719
720 #define PURE_LB_TC 8
721 #define OOO_LB_TC 9
722
723 static OSAL_INLINE u16 ecore_sriov_get_next_vf(struct ecore_hwfn *p_hwfn,
724                                                u16 rel_vf_id)
725 {
726         u16 i;
727
728         for (i = rel_vf_id; i < p_hwfn->p_dev->sriov_info.total_vfs; i++)
729                 if (ECORE_IS_VF_ACTIVE(p_hwfn->p_dev, i))
730                         return i;
731
732         return p_hwfn->p_dev->sriov_info.total_vfs;
733 }
734
735 int ecore_configure_vport_wfq(struct ecore_dev *p_dev, u16 vp_id, u32 rate);
736 void ecore_configure_vp_wfq_on_link_change(struct ecore_dev *p_dev,
737                                            u32 min_pf_rate);
738
739 int ecore_configure_pf_max_bandwidth(struct ecore_dev *p_dev, u8 max_bw);
740 int ecore_configure_pf_min_bandwidth(struct ecore_dev *p_dev, u8 min_bw);
741 void ecore_clean_wfq_db(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt);
742 int ecore_device_num_engines(struct ecore_dev *p_dev);
743 int ecore_device_num_ports(struct ecore_dev *p_dev);
744
745 #define ecore_for_each_vf(_p_hwfn, _i)                          \
746         for (_i = ecore_sriov_get_next_vf(_p_hwfn, 0);          \
747              _i < _p_hwfn->p_dev->sriov_info.total_vfs;         \
748              _i = ecore_sriov_get_next_vf(_p_hwfn, _i + 1))
749
750 #define ECORE_LEADING_HWFN(dev) (&dev->hwfns[0])
751
752 #endif /* __ECORE_H */