octeontx2-af: Enable LBK links only when switch mode is on.
[platform/kernel/linux-rpi.git] / drivers / net / ethernet / marvell / octeontx2 / af / rvu.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Marvell RVU Admin Function driver
3  *
4  * Copyright (C) 2018 Marvell.
5  *
6  */
7
8 #ifndef RVU_H
9 #define RVU_H
10
11 #include <linux/pci.h>
12 #include <net/devlink.h>
13
14 #include "rvu_struct.h"
15 #include "rvu_devlink.h"
16 #include "common.h"
17 #include "mbox.h"
18 #include "npc.h"
19 #include "rvu_reg.h"
20
21 /* PCI device IDs */
22 #define PCI_DEVID_OCTEONTX2_RVU_AF              0xA065
23 #define PCI_DEVID_OCTEONTX2_LBK                 0xA061
24
25 /* Subsystem Device ID */
26 #define PCI_SUBSYS_DEVID_96XX                  0xB200
27 #define PCI_SUBSYS_DEVID_CN10K_A               0xB900
28 #define PCI_SUBSYS_DEVID_CNF10K_B              0xBC00
29 #define PCI_SUBSYS_DEVID_CN10K_B               0xBD00
30
31 /* PCI BAR nos */
32 #define PCI_AF_REG_BAR_NUM                      0
33 #define PCI_PF_REG_BAR_NUM                      2
34 #define PCI_MBOX_BAR_NUM                        4
35
36 #define NAME_SIZE                               32
37 #define MAX_NIX_BLKS                            2
38 #define MAX_CPT_BLKS                            2
39
40 /* PF_FUNC */
41 #define RVU_PFVF_PF_SHIFT       10
42 #define RVU_PFVF_PF_MASK        0x3F
43 #define RVU_PFVF_FUNC_SHIFT     0
44 #define RVU_PFVF_FUNC_MASK      0x3FF
45
46 #ifdef CONFIG_DEBUG_FS
47 struct dump_ctx {
48         int     lf;
49         int     id;
50         bool    all;
51 };
52
53 struct cpt_ctx {
54         int blkaddr;
55         struct rvu *rvu;
56 };
57
58 struct rvu_debugfs {
59         struct dentry *root;
60         struct dentry *cgx_root;
61         struct dentry *cgx;
62         struct dentry *lmac;
63         struct dentry *npa;
64         struct dentry *nix;
65         struct dentry *npc;
66         struct dentry *cpt;
67         struct dentry *mcs_root;
68         struct dentry *mcs;
69         struct dentry *mcs_rx;
70         struct dentry *mcs_tx;
71         struct dump_ctx npa_aura_ctx;
72         struct dump_ctx npa_pool_ctx;
73         struct dump_ctx nix_cq_ctx;
74         struct dump_ctx nix_rq_ctx;
75         struct dump_ctx nix_sq_ctx;
76         struct cpt_ctx cpt_ctx[MAX_CPT_BLKS];
77         int npa_qsize_id;
78         int nix_qsize_id;
79 };
80 #endif
81
82 struct rvu_work {
83         struct  work_struct work;
84         struct  rvu *rvu;
85         int num_msgs;
86         int up_num_msgs;
87 };
88
89 struct rsrc_bmap {
90         unsigned long *bmap;    /* Pointer to resource bitmap */
91         u16  max;               /* Max resource id or count */
92 };
93
94 struct rvu_block {
95         struct rsrc_bmap        lf;
96         struct admin_queue      *aq; /* NIX/NPA AQ */
97         u16  *fn_map; /* LF to pcifunc mapping */
98         bool multislot;
99         bool implemented;
100         u8   addr;  /* RVU_BLOCK_ADDR_E */
101         u8   type;  /* RVU_BLOCK_TYPE_E */
102         u8   lfshift;
103         u64  lookup_reg;
104         u64  pf_lfcnt_reg;
105         u64  vf_lfcnt_reg;
106         u64  lfcfg_reg;
107         u64  msixcfg_reg;
108         u64  lfreset_reg;
109         unsigned char name[NAME_SIZE];
110         struct rvu *rvu;
111         u64 cpt_flt_eng_map[3];
112         u64 cpt_rcvrd_eng_map[3];
113 };
114
115 struct nix_mcast {
116         struct qmem     *mce_ctx;
117         struct qmem     *mcast_buf;
118         int             replay_pkind;
119         int             next_free_mce;
120         struct mutex    mce_lock; /* Serialize MCE updates */
121 };
122
123 struct nix_mce_list {
124         struct hlist_head       head;
125         int                     count;
126         int                     max;
127 };
128
129 /* layer metadata to uniquely identify a packet header field */
130 struct npc_layer_mdata {
131         u8 lid;
132         u8 ltype;
133         u8 hdr;
134         u8 key;
135         u8 len;
136 };
137
138 /* Structure to represent a field present in the
139  * generated key. A key field may present anywhere and can
140  * be of any size in the generated key. Once this structure
141  * is populated for fields of interest then field's presence
142  * and location (if present) can be known.
143  */
144 struct npc_key_field {
145         /* Masks where all set bits indicate position
146          * of a field in the key
147          */
148         u64 kw_mask[NPC_MAX_KWS_IN_KEY];
149         /* Number of words in the key a field spans. If a field is
150          * of 16 bytes and key offset is 4 then the field will use
151          * 4 bytes in KW0, 8 bytes in KW1 and 4 bytes in KW2 and
152          * nr_kws will be 3(KW0, KW1 and KW2).
153          */
154         int nr_kws;
155         /* used by packet header fields */
156         struct npc_layer_mdata layer_mdata;
157 };
158
159 struct npc_mcam {
160         struct rsrc_bmap counters;
161         struct mutex    lock;   /* MCAM entries and counters update lock */
162         unsigned long   *bmap;          /* bitmap, 0 => bmap_entries */
163         unsigned long   *bmap_reverse;  /* Reverse bitmap, bmap_entries => 0 */
164         u16     bmap_entries;   /* Number of unreserved MCAM entries */
165         u16     bmap_fcnt;      /* MCAM entries free count */
166         u16     *entry2pfvf_map;
167         u16     *entry2cntr_map;
168         u16     *cntr2pfvf_map;
169         u16     *cntr_refcnt;
170         u16     *entry2target_pffunc;
171         u8      keysize;        /* MCAM keysize 112/224/448 bits */
172         u8      banks;          /* Number of MCAM banks */
173         u8      banks_per_entry;/* Number of keywords in key */
174         u16     banksize;       /* Number of MCAM entries in each bank */
175         u16     total_entries;  /* Total number of MCAM entries */
176         u16     nixlf_offset;   /* Offset of nixlf rsvd uncast entries */
177         u16     pf_offset;      /* Offset of PF's rsvd bcast, promisc entries */
178         u16     lprio_count;
179         u16     lprio_start;
180         u16     hprio_count;
181         u16     hprio_end;
182         u16     rx_miss_act_cntr; /* Counter for RX MISS action */
183         /* fields present in the generated key */
184         struct npc_key_field    tx_key_fields[NPC_KEY_FIELDS_MAX];
185         struct npc_key_field    rx_key_fields[NPC_KEY_FIELDS_MAX];
186         u64     tx_features;
187         u64     rx_features;
188         struct list_head mcam_rules;
189 };
190
191 /* Structure for per RVU func info ie PF/VF */
192 struct rvu_pfvf {
193         bool            npalf; /* Only one NPALF per RVU_FUNC */
194         bool            nixlf; /* Only one NIXLF per RVU_FUNC */
195         u16             sso;
196         u16             ssow;
197         u16             cptlfs;
198         u16             timlfs;
199         u16             cpt1_lfs;
200         u8              cgx_lmac;
201
202         /* Block LF's MSIX vector info */
203         struct rsrc_bmap msix;      /* Bitmap for MSIX vector alloc */
204 #define MSIX_BLKLF(blkaddr, lf) (((blkaddr) << 8) | ((lf) & 0xFF))
205         u16              *msix_lfmap; /* Vector to block LF mapping */
206
207         /* NPA contexts */
208         struct qmem     *aura_ctx;
209         struct qmem     *pool_ctx;
210         struct qmem     *npa_qints_ctx;
211         unsigned long   *aura_bmap;
212         unsigned long   *pool_bmap;
213
214         /* NIX contexts */
215         struct qmem     *rq_ctx;
216         struct qmem     *sq_ctx;
217         struct qmem     *cq_ctx;
218         struct qmem     *rss_ctx;
219         struct qmem     *cq_ints_ctx;
220         struct qmem     *nix_qints_ctx;
221         unsigned long   *sq_bmap;
222         unsigned long   *rq_bmap;
223         unsigned long   *cq_bmap;
224
225         u16             rx_chan_base;
226         u16             tx_chan_base;
227         u8              rx_chan_cnt; /* total number of RX channels */
228         u8              tx_chan_cnt; /* total number of TX channels */
229         u16             maxlen;
230         u16             minlen;
231
232         bool            hw_rx_tstamp_en; /* Is rx_tstamp enabled */
233         u8              mac_addr[ETH_ALEN]; /* MAC address of this PF/VF */
234         u8              default_mac[ETH_ALEN]; /* MAC address from FWdata */
235
236         /* Broadcast/Multicast/Promisc pkt replication info */
237         u16                     bcast_mce_idx;
238         u16                     mcast_mce_idx;
239         u16                     promisc_mce_idx;
240         struct nix_mce_list     bcast_mce_list;
241         struct nix_mce_list     mcast_mce_list;
242         struct nix_mce_list     promisc_mce_list;
243         bool                    use_mce_list;
244
245         struct rvu_npc_mcam_rule *def_ucast_rule;
246
247         bool    cgx_in_use; /* this PF/VF using CGX? */
248         int     cgx_users;  /* number of cgx users - used only by PFs */
249
250         int     intf_mode;
251         u8      nix_blkaddr; /* BLKADDR_NIX0/1 assigned to this PF */
252         u8      nix_rx_intf; /* NIX0_RX/NIX1_RX interface to NPC */
253         u8      nix_tx_intf; /* NIX0_TX/NIX1_TX interface to NPC */
254         u8      lbkid;       /* NIX0/1 lbk link ID */
255         u64     lmt_base_addr; /* Preseving the pcifunc's lmtst base addr*/
256         u64     lmt_map_ent_w1; /* Preseving the word1 of lmtst map table entry*/
257         unsigned long flags;
258         struct  sdp_node_info *sdp_info;
259 };
260
261 enum rvu_pfvf_flags {
262         NIXLF_INITIALIZED = 0,
263         PF_SET_VF_MAC,
264         PF_SET_VF_CFG,
265         PF_SET_VF_TRUSTED,
266 };
267
268 #define RVU_CLEAR_VF_PERM  ~GENMASK(PF_SET_VF_TRUSTED, PF_SET_VF_MAC)
269
270 struct nix_txsch {
271         struct rsrc_bmap schq;
272         u8   lvl;
273 #define NIX_TXSCHQ_FREE               BIT_ULL(1)
274 #define NIX_TXSCHQ_CFG_DONE           BIT_ULL(0)
275 #define TXSCH_MAP_FUNC(__pfvf_map)    ((__pfvf_map) & 0xFFFF)
276 #define TXSCH_MAP_FLAGS(__pfvf_map)   ((__pfvf_map) >> 16)
277 #define TXSCH_MAP(__func, __flags)    (((__func) & 0xFFFF) | ((__flags) << 16))
278 #define TXSCH_SET_FLAG(__pfvf_map, flag)    ((__pfvf_map) | ((flag) << 16))
279         u32  *pfvf_map;
280 };
281
282 struct nix_mark_format {
283         u8 total;
284         u8 in_use;
285         u32 *cfg;
286 };
287
288 struct npc_pkind {
289         struct rsrc_bmap rsrc;
290         u32     *pfchan_map;
291 };
292
293 struct nix_flowkey {
294 #define NIX_FLOW_KEY_ALG_MAX 32
295         u32 flowkey[NIX_FLOW_KEY_ALG_MAX];
296         int in_use;
297 };
298
299 struct nix_lso {
300         u8 total;
301         u8 in_use;
302 };
303
304 struct nix_txvlan {
305 #define NIX_TX_VTAG_DEF_MAX 0x400
306         struct rsrc_bmap rsrc;
307         u16 *entry2pfvf_map;
308         struct mutex rsrc_lock; /* Serialize resource alloc/free */
309 };
310
311 struct nix_ipolicer {
312         struct rsrc_bmap band_prof;
313         u16 *pfvf_map;
314         u16 *match_id;
315         u16 *ref_count;
316 };
317
318 struct nix_hw {
319         int blkaddr;
320         struct rvu *rvu;
321         struct nix_txsch txsch[NIX_TXSCH_LVL_CNT]; /* Tx schedulers */
322         struct nix_mcast mcast;
323         struct nix_flowkey flowkey;
324         struct nix_mark_format mark_format;
325         struct nix_lso lso;
326         struct nix_txvlan txvlan;
327         struct nix_ipolicer *ipolicer;
328         u64    *tx_credits;
329 };
330
331 /* RVU block's capabilities or functionality,
332  * which vary by silicon version/skew.
333  */
334 struct hw_cap {
335         /* Transmit side supported functionality */
336         u8      nix_tx_aggr_lvl; /* Tx link's traffic aggregation level */
337         u16     nix_txsch_per_cgx_lmac; /* Max Q's transmitting to CGX LMAC */
338         u16     nix_txsch_per_lbk_lmac; /* Max Q's transmitting to LBK LMAC */
339         u16     nix_txsch_per_sdp_lmac; /* Max Q's transmitting to SDP LMAC */
340         bool    nix_fixed_txschq_mapping; /* Schq mapping fixed or flexible */
341         bool    nix_shaping;             /* Is shaping and coloring supported */
342         bool    nix_shaper_toggle_wait; /* Shaping toggle needs poll/wait */
343         bool    nix_tx_link_bp;          /* Can link backpressure TL queues ? */
344         bool    nix_rx_multicast;        /* Rx packet replication support */
345         bool    nix_common_dwrr_mtu;     /* Common DWRR MTU for quantum config */
346         bool    per_pf_mbox_regs; /* PF mbox specified in per PF registers ? */
347         bool    programmable_chans; /* Channels programmable ? */
348         bool    ipolicer;
349         bool    nix_multiple_dwrr_mtu;   /* Multiple DWRR_MTU to choose from */
350         bool    npc_hash_extract; /* Hash extract enabled ? */
351         bool    npc_exact_match_enabled; /* Exact match supported ? */
352 };
353
354 struct rvu_hwinfo {
355         u8      total_pfs;   /* MAX RVU PFs HW supports */
356         u16     total_vfs;   /* Max RVU VFs HW supports */
357         u16     max_vfs_per_pf; /* Max VFs that can be attached to a PF */
358         u8      cgx;
359         u8      lmac_per_cgx;
360         u16     cgx_chan_base;  /* CGX base channel number */
361         u16     lbk_chan_base;  /* LBK base channel number */
362         u16     sdp_chan_base;  /* SDP base channel number */
363         u16     cpt_chan_base;  /* CPT base channel number */
364         u8      cgx_links;
365         u8      lbk_links;
366         u8      sdp_links;
367         u8      cpt_links;      /* Number of CPT links */
368         u8      npc_kpus;          /* No of parser units */
369         u8      npc_pkinds;        /* No of port kinds */
370         u8      npc_intfs;         /* No of interfaces */
371         u8      npc_kpu_entries;   /* No of KPU entries */
372         u16     npc_counters;      /* No of match stats counters */
373         u32     lbk_bufsize;       /* FIFO size supported by LBK */
374         bool    npc_ext_set;       /* Extended register set */
375         u64     npc_stat_ena;      /* Match stats enable bit */
376
377         struct hw_cap    cap;
378         struct rvu_block block[BLK_COUNT]; /* Block info */
379         struct nix_hw    *nix;
380         struct rvu       *rvu;
381         struct npc_pkind pkind;
382         struct npc_mcam  mcam;
383         struct npc_exact_table *table;
384 };
385
386 struct mbox_wq_info {
387         struct otx2_mbox mbox;
388         struct rvu_work *mbox_wrk;
389
390         struct otx2_mbox mbox_up;
391         struct rvu_work *mbox_wrk_up;
392
393         struct workqueue_struct *mbox_wq;
394 };
395
396 struct rvu_fwdata {
397 #define RVU_FWDATA_HEADER_MAGIC 0xCFDA  /* Custom Firmware Data*/
398 #define RVU_FWDATA_VERSION      0x0001
399         u32 header_magic;
400         u32 version;            /* version id */
401
402         /* MAC address */
403 #define PF_MACNUM_MAX   32
404 #define VF_MACNUM_MAX   256
405         u64 pf_macs[PF_MACNUM_MAX];
406         u64 vf_macs[VF_MACNUM_MAX];
407         u64 sclk;
408         u64 rclk;
409         u64 mcam_addr;
410         u64 mcam_sz;
411         u64 msixtr_base;
412         u32 ptp_ext_clk_rate;
413         u32 ptp_ext_tstamp;
414 #define FWDATA_RESERVED_MEM 1022
415         u64 reserved[FWDATA_RESERVED_MEM];
416 #define CGX_MAX         9
417 #define CGX_LMACS_MAX   4
418 #define CGX_LMACS_USX   8
419         union {
420                 struct cgx_lmac_fwdata_s
421                         cgx_fw_data[CGX_MAX][CGX_LMACS_MAX];
422                 struct cgx_lmac_fwdata_s
423                         cgx_fw_data_usx[CGX_MAX][CGX_LMACS_USX];
424         };
425         /* Do not add new fields below this line */
426 };
427
428 struct ptp;
429
430 /* KPU profile adapter structure gathering all KPU configuration data and abstracting out the
431  * source where it came from.
432  */
433 struct npc_kpu_profile_adapter {
434         const char                      *name;
435         u64                             version;
436         const struct npc_lt_def_cfg     *lt_def;
437         const struct npc_kpu_profile_action     *ikpu; /* array[pkinds] */
438         const struct npc_kpu_profile    *kpu; /* array[kpus] */
439         struct npc_mcam_kex             *mkex;
440         struct npc_mcam_kex_hash        *mkex_hash;
441         bool                            custom;
442         size_t                          pkinds;
443         size_t                          kpus;
444 };
445
446 #define RVU_SWITCH_LBK_CHAN     63
447
448 struct rvu_switch {
449         struct mutex switch_lock; /* Serialize flow installation */
450         u32 used_entries;
451         u16 *entry2pcifunc;
452         u16 mode;
453         u16 start_entry;
454 };
455
456 struct rvu {
457         void __iomem            *afreg_base;
458         void __iomem            *pfreg_base;
459         struct pci_dev          *pdev;
460         struct device           *dev;
461         struct rvu_hwinfo       *hw;
462         struct rvu_pfvf         *pf;
463         struct rvu_pfvf         *hwvf;
464         struct mutex            rsrc_lock; /* Serialize resource alloc/free */
465         struct mutex            alias_lock; /* Serialize bar2 alias access */
466         int                     vfs; /* Number of VFs attached to RVU */
467         int                     nix_blkaddr[MAX_NIX_BLKS];
468
469         /* Mbox */
470         struct mbox_wq_info     afpf_wq_info;
471         struct mbox_wq_info     afvf_wq_info;
472
473         /* PF FLR */
474         struct rvu_work         *flr_wrk;
475         struct workqueue_struct *flr_wq;
476         struct mutex            flr_lock; /* Serialize FLRs */
477
478         /* MSI-X */
479         u16                     num_vec;
480         char                    *irq_name;
481         bool                    *irq_allocated;
482         dma_addr_t              msix_base_iova;
483         u64                     msixtr_base_phy; /* Register reset value */
484
485         /* CGX */
486 #define PF_CGXMAP_BASE          1 /* PF 0 is reserved for RVU PF */
487         u16                     cgx_mapped_vfs; /* maximum CGX mapped VFs */
488         u8                      cgx_mapped_pfs;
489         u8                      cgx_cnt_max;     /* CGX port count max */
490         u8                      *pf2cgxlmac_map; /* pf to cgx_lmac map */
491         u64                     *cgxlmac2pf_map; /* bitmap of mapped pfs for
492                                                   * every cgx lmac port
493                                                   */
494         unsigned long           pf_notify_bmap; /* Flags for PF notification */
495         void                    **cgx_idmap; /* cgx id to cgx data map table */
496         struct                  work_struct cgx_evh_work;
497         struct                  workqueue_struct *cgx_evh_wq;
498         spinlock_t              cgx_evq_lock; /* cgx event queue lock */
499         struct list_head        cgx_evq_head; /* cgx event queue head */
500         struct mutex            cgx_cfg_lock; /* serialize cgx configuration */
501
502         char mkex_pfl_name[MKEX_NAME_LEN]; /* Configured MKEX profile name */
503         char kpu_pfl_name[KPU_NAME_LEN]; /* Configured KPU profile name */
504
505         /* Firmware data */
506         struct rvu_fwdata       *fwdata;
507         void                    *kpu_fwdata;
508         size_t                  kpu_fwdata_sz;
509         void __iomem            *kpu_prfl_addr;
510
511         /* NPC KPU data */
512         struct npc_kpu_profile_adapter kpu;
513
514         struct ptp              *ptp;
515
516         int                     mcs_blk_cnt;
517         int                     cpt_pf_num;
518
519 #ifdef CONFIG_DEBUG_FS
520         struct rvu_debugfs      rvu_dbg;
521 #endif
522         struct rvu_devlink      *rvu_dl;
523
524         /* RVU switch implementation over NPC with DMAC rules */
525         struct rvu_switch       rswitch;
526
527         struct                  work_struct mcs_intr_work;
528         struct                  workqueue_struct *mcs_intr_wq;
529         struct list_head        mcs_intrq_head;
530         /* mcs interrupt queue lock */
531         spinlock_t              mcs_intrq_lock;
532         /* CPT interrupt lock */
533         spinlock_t              cpt_intr_lock;
534 };
535
536 static inline void rvu_write64(struct rvu *rvu, u64 block, u64 offset, u64 val)
537 {
538         writeq(val, rvu->afreg_base + ((block << 28) | offset));
539 }
540
541 static inline u64 rvu_read64(struct rvu *rvu, u64 block, u64 offset)
542 {
543         return readq(rvu->afreg_base + ((block << 28) | offset));
544 }
545
546 static inline void rvupf_write64(struct rvu *rvu, u64 offset, u64 val)
547 {
548         writeq(val, rvu->pfreg_base + offset);
549 }
550
551 static inline u64 rvupf_read64(struct rvu *rvu, u64 offset)
552 {
553         return readq(rvu->pfreg_base + offset);
554 }
555
556 static inline void rvu_bar2_sel_write64(struct rvu *rvu, u64 block, u64 offset, u64 val)
557 {
558         /* HW requires read back of RVU_AF_BAR2_SEL register to make sure completion of
559          * write operation.
560          */
561         rvu_write64(rvu, block, offset, val);
562         rvu_read64(rvu, block, offset);
563         /* Barrier to ensure read completes before accessing LF registers */
564         mb();
565 }
566
567 /* Silicon revisions */
568 static inline bool is_rvu_pre_96xx_C0(struct rvu *rvu)
569 {
570         struct pci_dev *pdev = rvu->pdev;
571         /* 96XX A0/B0, 95XX A0/A1/B0 chips */
572         return ((pdev->revision == 0x00) || (pdev->revision == 0x01) ||
573                 (pdev->revision == 0x10) || (pdev->revision == 0x11) ||
574                 (pdev->revision == 0x14));
575 }
576
577 static inline bool is_rvu_96xx_A0(struct rvu *rvu)
578 {
579         struct pci_dev *pdev = rvu->pdev;
580
581         return (pdev->revision == 0x00);
582 }
583
584 static inline bool is_rvu_96xx_B0(struct rvu *rvu)
585 {
586         struct pci_dev *pdev = rvu->pdev;
587
588         return (pdev->revision == 0x00) || (pdev->revision == 0x01);
589 }
590
591 static inline bool is_rvu_95xx_A0(struct rvu *rvu)
592 {
593         struct pci_dev *pdev = rvu->pdev;
594
595         return (pdev->revision == 0x10) || (pdev->revision == 0x11);
596 }
597
598 /* REVID for PCIe devices.
599  * Bits 0..1: minor pass, bit 3..2: major pass
600  * bits 7..4: midr id
601  */
602 #define PCI_REVISION_ID_96XX            0x00
603 #define PCI_REVISION_ID_95XX            0x10
604 #define PCI_REVISION_ID_95XXN           0x20
605 #define PCI_REVISION_ID_98XX            0x30
606 #define PCI_REVISION_ID_95XXMM          0x40
607 #define PCI_REVISION_ID_95XXO           0xE0
608
609 static inline bool is_rvu_otx2(struct rvu *rvu)
610 {
611         struct pci_dev *pdev = rvu->pdev;
612
613         u8 midr = pdev->revision & 0xF0;
614
615         return (midr == PCI_REVISION_ID_96XX || midr == PCI_REVISION_ID_95XX ||
616                 midr == PCI_REVISION_ID_95XXN || midr == PCI_REVISION_ID_98XX ||
617                 midr == PCI_REVISION_ID_95XXMM || midr == PCI_REVISION_ID_95XXO);
618 }
619
620 static inline bool is_rvu_npc_hash_extract_en(struct rvu *rvu)
621 {
622         u64 npc_const3;
623
624         npc_const3 = rvu_read64(rvu, BLKADDR_NPC, NPC_AF_CONST3);
625         if (!(npc_const3 & BIT_ULL(62)))
626                 return false;
627
628         return true;
629 }
630
631 static inline u16 rvu_nix_chan_cgx(struct rvu *rvu, u8 cgxid,
632                                    u8 lmacid, u8 chan)
633 {
634         u64 nix_const = rvu_read64(rvu, BLKADDR_NIX0, NIX_AF_CONST);
635         u16 cgx_chans = nix_const & 0xFFULL;
636         struct rvu_hwinfo *hw = rvu->hw;
637
638         if (!hw->cap.programmable_chans)
639                 return NIX_CHAN_CGX_LMAC_CHX(cgxid, lmacid, chan);
640
641         return rvu->hw->cgx_chan_base +
642                 (cgxid * hw->lmac_per_cgx + lmacid) * cgx_chans + chan;
643 }
644
645 static inline u16 rvu_nix_chan_lbk(struct rvu *rvu, u8 lbkid,
646                                    u8 chan)
647 {
648         u64 nix_const = rvu_read64(rvu, BLKADDR_NIX0, NIX_AF_CONST);
649         u16 lbk_chans = (nix_const >> 16) & 0xFFULL;
650         struct rvu_hwinfo *hw = rvu->hw;
651
652         if (!hw->cap.programmable_chans)
653                 return NIX_CHAN_LBK_CHX(lbkid, chan);
654
655         return rvu->hw->lbk_chan_base + lbkid * lbk_chans + chan;
656 }
657
658 static inline u16 rvu_nix_chan_sdp(struct rvu *rvu, u8 chan)
659 {
660         struct rvu_hwinfo *hw = rvu->hw;
661
662         if (!hw->cap.programmable_chans)
663                 return NIX_CHAN_SDP_CHX(chan);
664
665         return hw->sdp_chan_base + chan;
666 }
667
668 static inline u16 rvu_nix_chan_cpt(struct rvu *rvu, u8 chan)
669 {
670         return rvu->hw->cpt_chan_base + chan;
671 }
672
673 /* Function Prototypes
674  * RVU
675  */
676 static inline bool is_afvf(u16 pcifunc)
677 {
678         return !(pcifunc & ~RVU_PFVF_FUNC_MASK);
679 }
680
681 static inline bool is_vf(u16 pcifunc)
682 {
683         return !!(pcifunc & RVU_PFVF_FUNC_MASK);
684 }
685
686 /* check if PF_FUNC is AF */
687 static inline bool is_pffunc_af(u16 pcifunc)
688 {
689         return !pcifunc;
690 }
691
692 static inline bool is_rvu_fwdata_valid(struct rvu *rvu)
693 {
694         return (rvu->fwdata->header_magic == RVU_FWDATA_HEADER_MAGIC) &&
695                 (rvu->fwdata->version == RVU_FWDATA_VERSION);
696 }
697
698 int rvu_alloc_bitmap(struct rsrc_bmap *rsrc);
699 void rvu_free_bitmap(struct rsrc_bmap *rsrc);
700 int rvu_alloc_rsrc(struct rsrc_bmap *rsrc);
701 void rvu_free_rsrc(struct rsrc_bmap *rsrc, int id);
702 bool is_rsrc_free(struct rsrc_bmap *rsrc, int id);
703 int rvu_rsrc_free_count(struct rsrc_bmap *rsrc);
704 int rvu_alloc_rsrc_contig(struct rsrc_bmap *rsrc, int nrsrc);
705 bool rvu_rsrc_check_contig(struct rsrc_bmap *rsrc, int nrsrc);
706 u16 rvu_get_rsrc_mapcount(struct rvu_pfvf *pfvf, int blkaddr);
707 int rvu_get_pf(u16 pcifunc);
708 struct rvu_pfvf *rvu_get_pfvf(struct rvu *rvu, int pcifunc);
709 void rvu_get_pf_numvfs(struct rvu *rvu, int pf, int *numvfs, int *hwvf);
710 bool is_block_implemented(struct rvu_hwinfo *hw, int blkaddr);
711 bool is_pffunc_map_valid(struct rvu *rvu, u16 pcifunc, int blktype);
712 int rvu_get_lf(struct rvu *rvu, struct rvu_block *block, u16 pcifunc, u16 slot);
713 int rvu_lf_reset(struct rvu *rvu, struct rvu_block *block, int lf);
714 int rvu_get_blkaddr(struct rvu *rvu, int blktype, u16 pcifunc);
715 int rvu_poll_reg(struct rvu *rvu, u64 block, u64 offset, u64 mask, bool zero);
716 int rvu_get_num_lbk_chans(void);
717 int rvu_get_blkaddr_from_slot(struct rvu *rvu, int blktype, u16 pcifunc,
718                               u16 global_slot, u16 *slot_in_block);
719
720 /* RVU HW reg validation */
721 enum regmap_block {
722         TXSCHQ_HWREGMAP = 0,
723         MAX_HWREGMAP,
724 };
725
726 bool rvu_check_valid_reg(int regmap, int regblk, u64 reg);
727
728 /* NPA/NIX AQ APIs */
729 int rvu_aq_alloc(struct rvu *rvu, struct admin_queue **ad_queue,
730                  int qsize, int inst_size, int res_size);
731 void rvu_aq_free(struct rvu *rvu, struct admin_queue *aq);
732
733 /* SDP APIs */
734 int rvu_sdp_init(struct rvu *rvu);
735 bool is_sdp_pfvf(u16 pcifunc);
736 bool is_sdp_pf(u16 pcifunc);
737 bool is_sdp_vf(u16 pcifunc);
738
739 /* CGX APIs */
740 static inline bool is_pf_cgxmapped(struct rvu *rvu, u8 pf)
741 {
742         return (pf >= PF_CGXMAP_BASE && pf <= rvu->cgx_mapped_pfs) &&
743                 !is_sdp_pf(pf << RVU_PFVF_PF_SHIFT);
744 }
745
746 static inline void rvu_get_cgx_lmac_id(u8 map, u8 *cgx_id, u8 *lmac_id)
747 {
748         *cgx_id = (map >> 4) & 0xF;
749         *lmac_id = (map & 0xF);
750 }
751
752 static inline bool is_cgx_vf(struct rvu *rvu, u16 pcifunc)
753 {
754         return ((pcifunc & RVU_PFVF_FUNC_MASK) &&
755                 is_pf_cgxmapped(rvu, rvu_get_pf(pcifunc)));
756 }
757
758 #define M(_name, _id, fn_name, req, rsp)                                \
759 int rvu_mbox_handler_ ## fn_name(struct rvu *, struct req *, struct rsp *);
760 MBOX_MESSAGES
761 #undef M
762
763 int rvu_cgx_init(struct rvu *rvu);
764 int rvu_cgx_exit(struct rvu *rvu);
765 void *rvu_cgx_pdata(u8 cgx_id, struct rvu *rvu);
766 int rvu_cgx_config_rxtx(struct rvu *rvu, u16 pcifunc, bool start);
767 void rvu_cgx_enadis_rx_bp(struct rvu *rvu, int pf, bool enable);
768 int rvu_cgx_start_stop_io(struct rvu *rvu, u16 pcifunc, bool start);
769 int rvu_cgx_nix_cuml_stats(struct rvu *rvu, void *cgxd, int lmac_id, int index,
770                            int rxtxflag, u64 *stat);
771 void rvu_cgx_disable_dmac_entries(struct rvu *rvu, u16 pcifunc);
772
773 /* NPA APIs */
774 int rvu_npa_init(struct rvu *rvu);
775 void rvu_npa_freemem(struct rvu *rvu);
776 void rvu_npa_lf_teardown(struct rvu *rvu, u16 pcifunc, int npalf);
777 int rvu_npa_aq_enq_inst(struct rvu *rvu, struct npa_aq_enq_req *req,
778                         struct npa_aq_enq_rsp *rsp);
779
780 /* NIX APIs */
781 bool is_nixlf_attached(struct rvu *rvu, u16 pcifunc);
782 int rvu_nix_init(struct rvu *rvu);
783 int rvu_nix_reserve_mark_format(struct rvu *rvu, struct nix_hw *nix_hw,
784                                 int blkaddr, u32 cfg);
785 void rvu_nix_freemem(struct rvu *rvu);
786 int rvu_get_nixlf_count(struct rvu *rvu);
787 void rvu_nix_lf_teardown(struct rvu *rvu, u16 pcifunc, int blkaddr, int npalf);
788 int nix_get_nixlf(struct rvu *rvu, u16 pcifunc, int *nixlf, int *nix_blkaddr);
789 int nix_update_mce_list(struct rvu *rvu, u16 pcifunc,
790                         struct nix_mce_list *mce_list,
791                         int mce_idx, int mcam_index, bool add);
792 void nix_get_mce_list(struct rvu *rvu, u16 pcifunc, int type,
793                       struct nix_mce_list **mce_list, int *mce_idx);
794 struct nix_hw *get_nix_hw(struct rvu_hwinfo *hw, int blkaddr);
795 int rvu_get_next_nix_blkaddr(struct rvu *rvu, int blkaddr);
796 void rvu_nix_reset_mac(struct rvu_pfvf *pfvf, int pcifunc);
797 int nix_get_struct_ptrs(struct rvu *rvu, u16 pcifunc,
798                         struct nix_hw **nix_hw, int *blkaddr);
799 int rvu_nix_setup_ratelimit_aggr(struct rvu *rvu, u16 pcifunc,
800                                  u16 rq_idx, u16 match_id);
801 int nix_aq_context_read(struct rvu *rvu, struct nix_hw *nix_hw,
802                         struct nix_cn10k_aq_enq_req *aq_req,
803                         struct nix_cn10k_aq_enq_rsp *aq_rsp,
804                         u16 pcifunc, u8 ctype, u32 qidx);
805 int rvu_get_nix_blkaddr(struct rvu *rvu, u16 pcifunc);
806 int nix_get_dwrr_mtu_reg(struct rvu_hwinfo *hw, int smq_link_type);
807 u32 convert_dwrr_mtu_to_bytes(u8 dwrr_mtu);
808 u32 convert_bytes_to_dwrr_mtu(u32 bytes);
809 void rvu_nix_tx_tl2_cfg(struct rvu *rvu, int blkaddr, u16 pcifunc,
810                         struct nix_txsch *txsch, bool enable);
811
812 /* NPC APIs */
813 void rvu_npc_freemem(struct rvu *rvu);
814 int rvu_npc_get_pkind(struct rvu *rvu, u16 pf);
815 void rvu_npc_set_pkind(struct rvu *rvu, int pkind, struct rvu_pfvf *pfvf);
816 int npc_config_ts_kpuaction(struct rvu *rvu, int pf, u16 pcifunc, bool en);
817 void rvu_npc_install_ucast_entry(struct rvu *rvu, u16 pcifunc,
818                                  int nixlf, u64 chan, u8 *mac_addr);
819 void rvu_npc_install_promisc_entry(struct rvu *rvu, u16 pcifunc,
820                                    int nixlf, u64 chan, u8 chan_cnt);
821 void rvu_npc_enable_promisc_entry(struct rvu *rvu, u16 pcifunc, int nixlf,
822                                   bool enable);
823 void rvu_npc_install_bcast_match_entry(struct rvu *rvu, u16 pcifunc,
824                                        int nixlf, u64 chan);
825 void rvu_npc_enable_bcast_entry(struct rvu *rvu, u16 pcifunc, int nixlf,
826                                 bool enable);
827 void rvu_npc_install_allmulti_entry(struct rvu *rvu, u16 pcifunc, int nixlf,
828                                     u64 chan);
829 void rvu_npc_enable_allmulti_entry(struct rvu *rvu, u16 pcifunc, int nixlf,
830                                    bool enable);
831
832 void npc_enadis_default_mce_entry(struct rvu *rvu, u16 pcifunc,
833                                   int nixlf, int type, bool enable);
834 void rvu_npc_disable_mcam_entries(struct rvu *rvu, u16 pcifunc, int nixlf);
835 bool rvu_npc_enable_mcam_by_entry_index(struct rvu *rvu, int entry, int intf, bool enable);
836 void rvu_npc_free_mcam_entries(struct rvu *rvu, u16 pcifunc, int nixlf);
837 void rvu_npc_disable_default_entries(struct rvu *rvu, u16 pcifunc, int nixlf);
838 void rvu_npc_enable_default_entries(struct rvu *rvu, u16 pcifunc, int nixlf);
839 void rvu_npc_update_flowkey_alg_idx(struct rvu *rvu, u16 pcifunc, int nixlf,
840                                     int group, int alg_idx, int mcam_index);
841
842 void rvu_npc_get_mcam_entry_alloc_info(struct rvu *rvu, u16 pcifunc,
843                                        int blkaddr, int *alloc_cnt,
844                                        int *enable_cnt);
845 void rvu_npc_get_mcam_counter_alloc_info(struct rvu *rvu, u16 pcifunc,
846                                          int blkaddr, int *alloc_cnt,
847                                          int *enable_cnt);
848 bool is_npc_intf_tx(u8 intf);
849 bool is_npc_intf_rx(u8 intf);
850 bool is_npc_interface_valid(struct rvu *rvu, u8 intf);
851 int rvu_npc_get_tx_nibble_cfg(struct rvu *rvu, u64 nibble_ena);
852 int npc_flow_steering_init(struct rvu *rvu, int blkaddr);
853 const char *npc_get_field_name(u8 hdr);
854 int npc_get_bank(struct npc_mcam *mcam, int index);
855 void npc_mcam_enable_flows(struct rvu *rvu, u16 target);
856 void npc_mcam_disable_flows(struct rvu *rvu, u16 target);
857 void npc_enable_mcam_entry(struct rvu *rvu, struct npc_mcam *mcam,
858                            int blkaddr, int index, bool enable);
859 void npc_read_mcam_entry(struct rvu *rvu, struct npc_mcam *mcam,
860                          int blkaddr, u16 src, struct mcam_entry *entry,
861                          u8 *intf, u8 *ena);
862 bool is_cgx_config_permitted(struct rvu *rvu, u16 pcifunc);
863 bool is_mac_feature_supported(struct rvu *rvu, int pf, int feature);
864 u32  rvu_cgx_get_fifolen(struct rvu *rvu);
865 void *rvu_first_cgx_pdata(struct rvu *rvu);
866 int cgxlmac_to_pf(struct rvu *rvu, int cgx_id, int lmac_id);
867 int rvu_cgx_config_tx(void *cgxd, int lmac_id, bool enable);
868 int rvu_cgx_prio_flow_ctrl_cfg(struct rvu *rvu, u16 pcifunc, u8 tx_pause, u8 rx_pause,
869                                u16 pfc_en);
870 int rvu_cgx_cfg_pause_frm(struct rvu *rvu, u16 pcifunc, u8 tx_pause, u8 rx_pause);
871 u32 rvu_cgx_get_lmac_fifolen(struct rvu *rvu, int cgx, int lmac);
872 int npc_get_nixlf_mcam_index(struct npc_mcam *mcam, u16 pcifunc, int nixlf,
873                              int type);
874 bool is_mcam_entry_enabled(struct rvu *rvu, struct npc_mcam *mcam, int blkaddr,
875                            int index);
876 int rvu_npc_init(struct rvu *rvu);
877 int npc_install_mcam_drop_rule(struct rvu *rvu, int mcam_idx, u16 *counter_idx,
878                                u64 chan_val, u64 chan_mask, u64 exact_val, u64 exact_mask,
879                                u64 bcast_mcast_val, u64 bcast_mcast_mask);
880 void npc_mcam_rsrcs_reserve(struct rvu *rvu, int blkaddr, int entry_idx);
881 bool npc_is_feature_supported(struct rvu *rvu, u64 features, u8 intf);
882
883 /* CPT APIs */
884 int rvu_cpt_register_interrupts(struct rvu *rvu);
885 void rvu_cpt_unregister_interrupts(struct rvu *rvu);
886 int rvu_cpt_lf_teardown(struct rvu *rvu, u16 pcifunc, int blkaddr, int lf,
887                         int slot);
888 int rvu_cpt_ctx_flush(struct rvu *rvu, u16 pcifunc);
889 int rvu_cpt_init(struct rvu *rvu);
890
891 #define NDC_AF_BANK_MASK       GENMASK_ULL(7, 0)
892 #define NDC_AF_BANK_LINE_MASK  GENMASK_ULL(31, 16)
893
894 /* CN10K RVU */
895 int rvu_set_channels_base(struct rvu *rvu);
896 void rvu_program_channels(struct rvu *rvu);
897
898 /* CN10K NIX */
899 void rvu_nix_block_cn10k_init(struct rvu *rvu, struct nix_hw *nix_hw);
900
901 /* CN10K RVU - LMT*/
902 void rvu_reset_lmt_map_tbl(struct rvu *rvu, u16 pcifunc);
903
904 #ifdef CONFIG_DEBUG_FS
905 void rvu_dbg_init(struct rvu *rvu);
906 void rvu_dbg_exit(struct rvu *rvu);
907 #else
908 static inline void rvu_dbg_init(struct rvu *rvu) {}
909 static inline void rvu_dbg_exit(struct rvu *rvu) {}
910 #endif
911
912 int rvu_ndc_fix_locked_cacheline(struct rvu *rvu, int blkaddr);
913
914 /* RVU Switch */
915 void rvu_switch_enable(struct rvu *rvu);
916 void rvu_switch_disable(struct rvu *rvu);
917 void rvu_switch_update_rules(struct rvu *rvu, u16 pcifunc);
918
919 int rvu_npc_set_parse_mode(struct rvu *rvu, u16 pcifunc, u64 mode, u8 dir,
920                            u64 pkind, u8 var_len_off, u8 var_len_off_mask,
921                            u8 shift_dir);
922 int rvu_get_hwvf(struct rvu *rvu, int pcifunc);
923
924 /* CN10K MCS */
925 int rvu_mcs_init(struct rvu *rvu);
926 int rvu_mcs_flr_handler(struct rvu *rvu, u16 pcifunc);
927 void rvu_mcs_ptp_cfg(struct rvu *rvu, u8 rpm_id, u8 lmac_id, bool ena);
928 void rvu_mcs_exit(struct rvu *rvu);
929
930 #endif /* RVU_H */