net/hns3: add runtime config to select IO burst function
[dpdk.git] / drivers / net / hns3 / hns3_ethdev.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2018-2019 Hisilicon Limited.
3  */
4
5 #ifndef _HNS3_ETHDEV_H_
6 #define _HNS3_ETHDEV_H_
7
8 #include <sys/time.h>
9 #include <ethdev_driver.h>
10 #include <rte_byteorder.h>
11 #include <rte_io.h>
12 #include <rte_spinlock.h>
13
14 #include "hns3_cmd.h"
15 #include "hns3_mbx.h"
16 #include "hns3_rss.h"
17 #include "hns3_fdir.h"
18 #include "hns3_stats.h"
19 #include "hns3_tm.h"
20
21 /* Vendor ID */
22 #define PCI_VENDOR_ID_HUAWEI                    0x19e5
23
24 /* Device IDs */
25 #define HNS3_DEV_ID_GE                          0xA220
26 #define HNS3_DEV_ID_25GE                        0xA221
27 #define HNS3_DEV_ID_25GE_RDMA                   0xA222
28 #define HNS3_DEV_ID_50GE_RDMA                   0xA224
29 #define HNS3_DEV_ID_100G_RDMA_MACSEC            0xA226
30 #define HNS3_DEV_ID_200G_RDMA                   0xA228
31 #define HNS3_DEV_ID_100G_VF                     0xA22E
32 #define HNS3_DEV_ID_100G_RDMA_PFC_VF            0xA22F
33
34 /* PCI Config offsets */
35 #define HNS3_PCI_REVISION_ID                    0x08
36 #define HNS3_PCI_REVISION_ID_LEN                1
37
38 #define PCI_REVISION_ID_HIP08_B                 0x21
39 #define PCI_REVISION_ID_HIP09_A                 0x30
40
41 #define HNS3_PF_FUNC_ID                 0
42 #define HNS3_1ST_VF_FUNC_ID             1
43
44 #define HNS3_SW_SHIFT_AND_DISCARD_MODE          0
45 #define HNS3_HW_SHIFT_AND_DISCARD_MODE          1
46
47 #define HNS3_UNLIMIT_PROMISC_MODE       0
48 #define HNS3_LIMIT_PROMISC_MODE         1
49
50 #define HNS3_UC_MACADDR_NUM             128
51 #define HNS3_VF_UC_MACADDR_NUM          48
52 #define HNS3_MC_MACADDR_NUM             128
53
54 #define HNS3_MAX_BD_SIZE                65535
55 #define HNS3_MAX_NON_TSO_BD_PER_PKT     8
56 #define HNS3_MAX_TSO_BD_PER_PKT         63
57 #define HNS3_MAX_FRAME_LEN              9728
58 #define HNS3_VLAN_TAG_SIZE              4
59 #define HNS3_DEFAULT_RX_BUF_LEN         2048
60 #define HNS3_MAX_BD_PAYLEN              (1024 * 1024 - 1)
61 #define HNS3_MAX_TSO_HDR_SIZE           512
62 #define HNS3_MAX_TSO_HDR_BD_NUM         3
63 #define HNS3_MAX_LRO_SIZE               64512
64
65 #define HNS3_ETH_OVERHEAD \
66         (RTE_ETHER_HDR_LEN + RTE_ETHER_CRC_LEN + HNS3_VLAN_TAG_SIZE * 2)
67 #define HNS3_PKTLEN_TO_MTU(pktlen)      ((pktlen) - HNS3_ETH_OVERHEAD)
68 #define HNS3_MAX_MTU    (HNS3_MAX_FRAME_LEN - HNS3_ETH_OVERHEAD)
69 #define HNS3_DEFAULT_MTU                1500UL
70 #define HNS3_DEFAULT_FRAME_LEN          (HNS3_DEFAULT_MTU + HNS3_ETH_OVERHEAD)
71 #define HNS3_HIP08_MIN_TX_PKT_LEN       33
72 #define HNS3_HIP09_MIN_TX_PKT_LEN       9
73
74 #define HNS3_BITS_PER_BYTE      8
75
76 #define HNS3_4_TCS                      4
77 #define HNS3_8_TCS                      8
78
79 #define HNS3_MAX_PF_NUM                 8
80 #define HNS3_UMV_TBL_SIZE               3072
81 #define HNS3_DEFAULT_UMV_SPACE_PER_PF \
82         (HNS3_UMV_TBL_SIZE / HNS3_MAX_PF_NUM)
83
84 #define HNS3_PF_CFG_BLOCK_SIZE          32
85 #define HNS3_PF_CFG_DESC_NUM \
86         (HNS3_PF_CFG_BLOCK_SIZE / HNS3_CFG_RD_LEN_BYTES)
87
88 #define HNS3_DEFAULT_ENABLE_PFC_NUM     0
89
90 #define HNS3_INTR_UNREG_FAIL_RETRY_CNT  5
91 #define HNS3_INTR_UNREG_FAIL_DELAY_MS   500
92
93 #define HNS3_QUIT_RESET_CNT             10
94 #define HNS3_QUIT_RESET_DELAY_MS        100
95
96 #define HNS3_POLL_RESPONE_MS            1
97
98 #define HNS3_MAX_USER_PRIO              8
99 #define HNS3_PG_NUM                     4
100 enum hns3_fc_mode {
101         HNS3_FC_NONE,
102         HNS3_FC_RX_PAUSE,
103         HNS3_FC_TX_PAUSE,
104         HNS3_FC_FULL,
105         HNS3_FC_DEFAULT
106 };
107
108 #define HNS3_SCH_MODE_SP        0
109 #define HNS3_SCH_MODE_DWRR      1
110 struct hns3_pg_info {
111         uint8_t pg_id;
112         uint8_t pg_sch_mode;  /* 0: sp; 1: dwrr */
113         uint8_t tc_bit_map;
114         uint32_t bw_limit;
115         uint8_t tc_dwrr[HNS3_MAX_TC_NUM];
116 };
117
118 struct hns3_tc_info {
119         uint8_t tc_id;
120         uint8_t tc_sch_mode;  /* 0: sp; 1: dwrr */
121         uint8_t pgid;
122         uint32_t bw_limit;
123         uint8_t up_to_tc_map; /* user priority maping on the TC */
124 };
125
126 struct hns3_dcb_info {
127         uint8_t num_tc;
128         uint8_t num_pg;     /* It must be 1 if vNET-Base schd */
129         uint8_t pg_dwrr[HNS3_PG_NUM];
130         uint8_t prio_tc[HNS3_MAX_USER_PRIO];
131         struct hns3_pg_info pg_info[HNS3_PG_NUM];
132         struct hns3_tc_info tc_info[HNS3_MAX_TC_NUM];
133         uint8_t hw_pfc_map; /* Allow for packet drop or not on this TC */
134         uint8_t pfc_en; /* Pfc enabled or not for user priority */
135 };
136
137 enum hns3_fc_status {
138         HNS3_FC_STATUS_NONE,
139         HNS3_FC_STATUS_MAC_PAUSE,
140         HNS3_FC_STATUS_PFC,
141 };
142
143 struct hns3_tc_queue_info {
144         uint16_t tqp_offset;    /* TQP offset from base TQP */
145         uint16_t tqp_count;     /* Total TQPs */
146         uint8_t tc;             /* TC index */
147         bool enable;            /* If this TC is enable or not */
148 };
149
150 struct hns3_cfg {
151         uint8_t vmdq_vport_num;
152         uint8_t tc_num;
153         uint16_t tqp_desc_num;
154         uint16_t rx_buf_len;
155         uint16_t rss_size_max;
156         uint8_t phy_addr;
157         uint8_t media_type;
158         uint8_t mac_addr[RTE_ETHER_ADDR_LEN];
159         uint8_t default_speed;
160         uint32_t numa_node_map;
161         uint8_t speed_ability;
162         uint16_t umv_space;
163 };
164
165 /* mac media type */
166 enum hns3_media_type {
167         HNS3_MEDIA_TYPE_UNKNOWN,
168         HNS3_MEDIA_TYPE_FIBER,
169         HNS3_MEDIA_TYPE_COPPER,
170         HNS3_MEDIA_TYPE_BACKPLANE,
171         HNS3_MEDIA_TYPE_NONE,
172 };
173
174 struct hns3_mac {
175         uint8_t mac_addr[RTE_ETHER_ADDR_LEN];
176         bool default_addr_setted; /* whether default addr(mac_addr) is set */
177         uint8_t media_type;
178         uint8_t phy_addr;
179         uint8_t link_duplex  : 1; /* ETH_LINK_[HALF/FULL]_DUPLEX */
180         uint8_t link_autoneg : 1; /* ETH_LINK_[AUTONEG/FIXED] */
181         uint8_t link_status  : 1; /* ETH_LINK_[DOWN/UP] */
182         uint32_t link_speed;      /* ETH_SPEED_NUM_ */
183         uint32_t supported_capa;  /* supported capability for current media */
184         uint32_t advertising;     /* advertised capability in the local part */
185         /* advertised capability in the link partner */
186         uint32_t lp_advertising;
187         uint8_t support_autoneg;
188 };
189
190 struct hns3_fake_queue_data {
191         void **rx_queues; /* Array of pointers to fake RX queues. */
192         void **tx_queues; /* Array of pointers to fake TX queues. */
193         uint16_t nb_fake_rx_queues; /* Number of fake RX queues. */
194         uint16_t nb_fake_tx_queues; /* Number of fake TX queues. */
195 };
196
197 #define HNS3_PORT_BASE_VLAN_DISABLE     0
198 #define HNS3_PORT_BASE_VLAN_ENABLE      1
199 struct hns3_port_base_vlan_config {
200         uint16_t state;
201         uint16_t pvid;
202 };
203
204 /* Primary process maintains driver state in main thread.
205  *
206  * +---------------+
207  * | UNINITIALIZED |<-----------+
208  * +---------------+            |
209  *      |.eth_dev_init          |.eth_dev_uninit
210  *      V                       |
211  * +---------------+------------+
212  * |  INITIALIZED  |
213  * +---------------+<-----------<---------------+
214  *      |.dev_configure         |               |
215  *      V                       |failed         |
216  * +---------------+------------+               |
217  * |  CONFIGURING  |                            |
218  * +---------------+----+                       |
219  *      |success        |                       |
220  *      |               |               +---------------+
221  *      |               |               |    CLOSING    |
222  *      |               |               +---------------+
223  *      |               |                       ^
224  *      V               |.dev_configure         |
225  * +---------------+----+                       |.dev_close
226  * |  CONFIGURED   |----------------------------+
227  * +---------------+<-----------+
228  *      |.dev_start             |
229  *      V                       |
230  * +---------------+            |
231  * |   STARTING    |------------^
232  * +---------------+ failed     |
233  *      |success                |
234  *      |               +---------------+
235  *      |               |   STOPPING    |
236  *      |               +---------------+
237  *      |                       ^
238  *      V                       |.dev_stop
239  * +---------------+------------+
240  * |    STARTED    |
241  * +---------------+
242  */
243 enum hns3_adapter_state {
244         HNS3_NIC_UNINITIALIZED = 0,
245         HNS3_NIC_INITIALIZED,
246         HNS3_NIC_CONFIGURING,
247         HNS3_NIC_CONFIGURED,
248         HNS3_NIC_STARTING,
249         HNS3_NIC_STARTED,
250         HNS3_NIC_STOPPING,
251         HNS3_NIC_CLOSING,
252         HNS3_NIC_CLOSED,
253         HNS3_NIC_REMOVED,
254         HNS3_NIC_NSTATES
255 };
256
257 /* Reset various stages, execute in order */
258 enum hns3_reset_stage {
259         /* Stop query services, stop transceiver, disable MAC */
260         RESET_STAGE_DOWN,
261         /* Clear reset completion flags, disable send command */
262         RESET_STAGE_PREWAIT,
263         /* Inform IMP to start resetting */
264         RESET_STAGE_REQ_HW_RESET,
265         /* Waiting for hardware reset to complete */
266         RESET_STAGE_WAIT,
267         /* Reinitialize hardware */
268         RESET_STAGE_DEV_INIT,
269         /* Restore user settings and enable MAC */
270         RESET_STAGE_RESTORE,
271         /* Restart query services, start transceiver */
272         RESET_STAGE_DONE,
273         /* Not in reset state */
274         RESET_STAGE_NONE,
275 };
276
277 enum hns3_reset_level {
278         HNS3_NONE_RESET,
279         HNS3_VF_FUNC_RESET, /* A VF function reset */
280         /*
281          * All VFs under a PF perform function reset.
282          * Kernel PF driver use mailbox to inform DPDK VF to do reset, the value
283          * of the reset level and the one defined in kernel driver should be
284          * same.
285          */
286         HNS3_VF_PF_FUNC_RESET = 2,
287         /*
288          * All VFs under a PF perform FLR reset.
289          * Kernel PF driver use mailbox to inform DPDK VF to do reset, the value
290          * of the reset level and the one defined in kernel driver should be
291          * same.
292          *
293          * According to the protocol of PCIe, FLR to a PF resets the PF state as
294          * well as the SR-IOV extended capability including VF Enable which
295          * means that VFs no longer exist.
296          *
297          * In PF FLR, the register state of VF is not reliable, VF's driver
298          * should not access the registers of the VF device.
299          */
300         HNS3_VF_FULL_RESET = 3,
301         HNS3_FLR_RESET,     /* A VF perform FLR reset */
302         /* All VFs under the rootport perform a global or IMP reset */
303         HNS3_VF_RESET,
304         HNS3_FUNC_RESET,    /* A PF function reset */
305         /* All PFs under the rootport perform a global reset */
306         HNS3_GLOBAL_RESET,
307         HNS3_IMP_RESET,     /* All PFs under the rootport perform a IMP reset */
308         HNS3_MAX_RESET
309 };
310
311 enum hns3_wait_result {
312         HNS3_WAIT_UNKNOWN,
313         HNS3_WAIT_REQUEST,
314         HNS3_WAIT_SUCCESS,
315         HNS3_WAIT_TIMEOUT
316 };
317
318 #define HNS3_RESET_SYNC_US 100000
319
320 struct hns3_reset_stats {
321         uint64_t request_cnt; /* Total request reset times */
322         uint64_t global_cnt;  /* Total GLOBAL reset times */
323         uint64_t imp_cnt;     /* Total IMP reset times */
324         uint64_t exec_cnt;    /* Total reset executive times */
325         uint64_t success_cnt; /* Total reset successful times */
326         uint64_t fail_cnt;    /* Total reset failed times */
327         uint64_t merge_cnt;   /* Total merged in high reset times */
328 };
329
330 typedef bool (*check_completion_func)(struct hns3_hw *hw);
331
332 struct hns3_wait_data {
333         void *hns;
334         uint64_t end_ms;
335         uint64_t interval;
336         int16_t count;
337         enum hns3_wait_result result;
338         check_completion_func check_completion;
339 };
340
341 struct hns3_reset_ops {
342         void (*reset_service)(void *arg);
343         int (*stop_service)(struct hns3_adapter *hns);
344         int (*prepare_reset)(struct hns3_adapter *hns);
345         int (*wait_hardware_ready)(struct hns3_adapter *hns);
346         int (*reinit_dev)(struct hns3_adapter *hns);
347         int (*restore_conf)(struct hns3_adapter *hns);
348         int (*start_service)(struct hns3_adapter *hns);
349 };
350
351 enum hns3_schedule {
352         SCHEDULE_NONE,
353         SCHEDULE_PENDING,
354         SCHEDULE_REQUESTED,
355         SCHEDULE_DEFERRED,
356 };
357
358 struct hns3_reset_data {
359         enum hns3_reset_stage stage;
360         uint16_t schedule;
361         /* Reset flag, covering the entire reset process */
362         uint16_t resetting;
363         /* Used to disable sending cmds during reset */
364         uint16_t disable_cmd;
365         /* The reset level being processed */
366         enum hns3_reset_level level;
367         /* Reset level set, each bit represents a reset level */
368         uint64_t pending;
369         /* Request reset level set, from interrupt or mailbox */
370         uint64_t request;
371         int attempts; /* Reset failure retry */
372         int retries;  /* Timeout failure retry in reset_post */
373         /*
374          * At the time of global or IMP reset, the command cannot be sent to
375          * stop the tx/rx queues. Tx/Rx queues may be access mbuf during the
376          * reset process, so the mbuf is required to be released after the reset
377          * is completed.The mbuf_deferred_free is used to mark whether mbuf
378          * needs to be released.
379          */
380         bool mbuf_deferred_free;
381         struct timeval start_time;
382         struct hns3_reset_stats stats;
383         const struct hns3_reset_ops *ops;
384         struct hns3_wait_data *wait_data;
385 };
386
387 #define HNS3_INTR_MAPPING_VEC_RSV_ONE           0
388 #define HNS3_INTR_MAPPING_VEC_ALL               1
389
390 #define HNS3_INTR_COALESCE_GL_UINT_2US          0
391 #define HNS3_INTR_COALESCE_GL_UINT_1US          1
392
393 #define HNS3_INTR_QL_NONE                       0
394
395 struct hns3_queue_intr {
396         /*
397          * interrupt mapping mode.
398          * value range:
399          *      HNS3_INTR_MAPPING_VEC_RSV_ONE/HNS3_INTR_MAPPING_VEC_ALL
400          *
401          *  - HNS3_INTR_MAPPING_VEC_RSV_ONE
402          *     For some versions of hardware network engine, because of the
403          *     hardware constraint, we need implement clearing the mapping
404          *     relationship configurations by binding all queues to the last
405          *     interrupt vector and reserving the last interrupt vector. This
406          *     method results in a decrease of the maximum queues when upper
407          *     applications call the rte_eth_dev_configure API function to
408          *     enable Rx interrupt.
409          *
410          *  - HNS3_INTR_MAPPING_VEC_ALL
411          *     PMD driver can map/unmmap all interrupt vectors with queues When
412          *     Rx interrupt in enabled.
413          */
414         uint8_t mapping_mode;
415         /*
416          * The unit of GL(gap limiter) configuration for interrupt coalesce of
417          * queue's interrupt.
418          * value range:
419          *      HNS3_INTR_COALESCE_GL_UINT_2US/HNS3_INTR_COALESCE_GL_UINT_1US
420          */
421         uint8_t gl_unit;
422         /* The max QL(quantity limiter) value */
423         uint16_t int_ql_max;
424 };
425
426 #define HNS3_TSO_SW_CAL_PSEUDO_H_CSUM           0
427 #define HNS3_TSO_HW_CAL_PSEUDO_H_CSUM           1
428
429 struct hns3_hw {
430         struct rte_eth_dev_data *data;
431         void *io_base;
432         uint8_t revision;           /* PCI revision, low byte of class word */
433         struct hns3_cmq cmq;
434         struct hns3_mbx_resp_status mbx_resp; /* mailbox response */
435         struct hns3_mbx_arq_ring arq;         /* mailbox async rx queue */
436         pthread_t irq_thread_id;
437         struct hns3_mac mac;
438         unsigned int secondary_cnt; /* Number of secondary processes init'd. */
439         struct hns3_tqp_stats tqp_stats;
440         /* Include Mac stats | Rx stats | Tx stats */
441         struct hns3_mac_stats mac_stats;
442         struct hns3_rx_missed_stats imissed_stats;
443         uint32_t fw_version;
444
445         uint16_t num_msi;
446         uint16_t total_tqps_num;    /* total task queue pairs of this PF */
447         uint16_t tqps_num;          /* num task queue pairs of this function */
448         uint16_t intr_tqps_num;     /* num queue pairs mapping interrupt */
449         uint16_t rss_size_max;      /* HW defined max RSS task queue */
450         uint16_t rx_buf_len;        /* hold min hardware rx buf len */
451         uint16_t num_tx_desc;       /* desc num of per tx queue */
452         uint16_t num_rx_desc;       /* desc num of per rx queue */
453         uint32_t mng_entry_num;     /* number of manager table entry */
454         uint32_t mac_entry_num;     /* number of mac-vlan table entry */
455
456         struct rte_ether_addr mc_addrs[HNS3_MC_MACADDR_NUM];
457         int mc_addrs_num; /* Multicast mac addresses number */
458
459         /* The configuration info of RSS */
460         struct hns3_rss_conf rss_info;
461         bool rss_dis_flag; /* disable rss flag. true: disable, false: enable */
462         uint16_t rss_ind_tbl_size;
463         uint16_t rss_key_size;
464
465         uint8_t num_tc;             /* Total number of enabled TCs */
466         uint8_t hw_tc_map;
467         enum hns3_fc_mode current_mode;
468         enum hns3_fc_mode requested_mode;
469         struct hns3_dcb_info dcb_info;
470         enum hns3_fc_status current_fc_status; /* current flow control status */
471         struct hns3_tc_queue_info tc_queue[HNS3_MAX_TC_NUM];
472         uint16_t used_rx_queues;
473         uint16_t used_tx_queues;
474
475         /* Config max queue numbers between rx and tx queues from user */
476         uint16_t cfg_max_queues;
477         struct hns3_fake_queue_data fkq_data;     /* fake queue data */
478         uint16_t alloc_rss_size;    /* RX queue number per TC */
479         uint16_t tx_qnum_per_tc;    /* TX queue number per TC */
480
481         uint32_t capability;
482         uint32_t max_tm_rate;
483         /*
484          * The minimum length of the packet supported by hardware in the Tx
485          * direction.
486          */
487         uint32_t min_tx_pkt_len;
488
489         struct hns3_queue_intr intr;
490         /*
491          * tso mode.
492          * value range:
493          *      HNS3_TSO_SW_CAL_PSEUDO_H_CSUM/HNS3_TSO_HW_CAL_PSEUDO_H_CSUM
494          *
495          *  - HNS3_TSO_SW_CAL_PSEUDO_H_CSUM
496          *     In this mode, because of the hardware constraint, network driver
497          *     software need erase the L4 len value of the TCP pseudo header
498          *     and recalculate the TCP pseudo header checksum of packets that
499          *     need TSO.
500          *
501          *  - HNS3_TSO_HW_CAL_PSEUDO_H_CSUM
502          *     In this mode, hardware support recalculate the TCP pseudo header
503          *     checksum of packets that need TSO, so network driver software
504          *     not need to recalculate it.
505          */
506         uint8_t tso_mode;
507         /*
508          * vlan mode.
509          * value range:
510          *      HNS3_SW_SHIFT_AND_DISCARD_MODE/HNS3_HW_SHFIT_AND_DISCARD_MODE
511          *
512          *  - HNS3_SW_SHIFT_AND_DISCARD_MODE
513          *     For some versions of hardware network engine, because of the
514          *     hardware limitation, PMD driver needs to detect the PVID status
515          *     to work with haredware to implement PVID-related functions.
516          *     For example, driver need discard the stripped PVID tag to ensure
517          *     the PVID will not report to mbuf and shift the inserted VLAN tag
518          *     to avoid port based VLAN covering it.
519          *
520          *  - HNS3_HW_SHIT_AND_DISCARD_MODE
521          *     PMD driver does not need to process PVID-related functions in
522          *     I/O process, Hardware will adjust the sequence between port based
523          *     VLAN tag and BD VLAN tag automatically and VLAN tag stripped by
524          *     PVID will be invisible to driver. And in this mode, hns3 is able
525          *     to send a multi-layer VLAN packets when hw VLAN insert offload
526          *     is enabled.
527          */
528         uint8_t vlan_mode;
529         /*
530          * promisc mode.
531          * value range:
532          *      HNS3_UNLIMIT_PROMISC_MODE/HNS3_LIMIT_PROMISC_MODE
533          *
534          *  - HNS3_UNLIMIT_PROMISC_MODE
535          *     In this mode, TX unicast promisc will be configured when promisc
536          *     is set, driver can receive all the ingress and outgoing traffic.
537          *     In the words, all the ingress packets, all the packets sent from
538          *     the PF and other VFs on the same physical port.
539          *
540          *  - HNS3_LIMIT_PROMISC_MODE
541          *     In this mode, TX unicast promisc is shutdown when promisc mode
542          *     is set. So, driver will only receive all the ingress traffic.
543          *     The packets sent from the PF and other VFs on the same physical
544          *     port won't be copied to the function which has set promisc mode.
545          */
546         uint8_t promisc_mode;
547         uint8_t max_non_tso_bd_num; /* max BD number of one non-TSO packet */
548
549         struct hns3_port_base_vlan_config port_base_vlan_cfg;
550         /*
551          * PMD setup and configuration is not thread safe. Since it is not
552          * performance sensitive, it is better to guarantee thread-safety
553          * and add device level lock. Adapter control operations which
554          * change its state should acquire the lock.
555          */
556         rte_spinlock_t lock;
557         enum hns3_adapter_state adapter_state;
558         struct hns3_reset_data reset;
559 };
560
561 #define HNS3_FLAG_TC_BASE_SCH_MODE              1
562 #define HNS3_FLAG_VNET_BASE_SCH_MODE            2
563
564 struct hns3_err_msix_intr_stats {
565         uint64_t mac_afifo_tnl_int_cnt;
566         uint64_t ppu_mpf_abn_int_st2_msix_cnt;
567         uint64_t ssu_port_based_pf_int_cnt;
568         uint64_t ppp_pf_abnormal_int_cnt;
569         uint64_t ppu_pf_abnormal_int_msix_cnt;
570
571         uint64_t imp_tcm_ecc_int_cnt;
572         uint64_t cmdq_mem_ecc_int_cnt;
573         uint64_t imp_rd_poison_int_cnt;
574         uint64_t tqp_int_ecc_int_cnt;
575         uint64_t msix_ecc_int_cnt;
576         uint64_t ssu_ecc_multi_bit_int_0_cnt;
577         uint64_t ssu_ecc_multi_bit_int_1_cnt;
578         uint64_t ssu_common_ecc_int_cnt;
579         uint64_t igu_int_cnt;
580         uint64_t ppp_mpf_abnormal_int_st1_cnt;
581         uint64_t ppp_mpf_abnormal_int_st3_cnt;
582         uint64_t ppu_mpf_abnormal_int_st1_cnt;
583         uint64_t ppu_mpf_abn_int_st2_ras_cnt;
584         uint64_t ppu_mpf_abnormal_int_st3_cnt;
585         uint64_t tm_sch_int_cnt;
586         uint64_t qcn_fifo_int_cnt;
587         uint64_t qcn_ecc_int_cnt;
588         uint64_t ncsi_ecc_int_cnt;
589         uint64_t ssu_port_based_err_int_cnt;
590         uint64_t ssu_fifo_overflow_int_cnt;
591         uint64_t ssu_ets_tcg_int_cnt;
592         uint64_t igu_egu_tnl_int_cnt;
593         uint64_t ppu_pf_abnormal_int_ras_cnt;
594 };
595
596 /* vlan entry information. */
597 struct hns3_user_vlan_table {
598         LIST_ENTRY(hns3_user_vlan_table) next;
599         bool hd_tbl_status;
600         uint16_t vlan_id;
601 };
602
603 /* Vlan tag configuration for RX direction */
604 struct hns3_rx_vtag_cfg {
605         bool rx_vlan_offload_en;    /* Whether enable rx vlan offload */
606         bool strip_tag1_en;         /* Whether strip inner vlan tag */
607         bool strip_tag2_en;         /* Whether strip outer vlan tag */
608         /*
609          * If strip_tag_en is enabled, this bit decide whether to map the vlan
610          * tag to descriptor.
611          */
612         bool strip_tag1_discard_en;
613         bool strip_tag2_discard_en;
614         /*
615          * If this bit is enabled, only map inner/outer priority to descriptor
616          * and the vlan tag is always 0.
617          */
618         bool vlan1_vlan_prionly;
619         bool vlan2_vlan_prionly;
620 };
621
622 /* Vlan tag configuration for TX direction */
623 struct hns3_tx_vtag_cfg {
624         bool accept_tag1;           /* Whether accept tag1 packet from host */
625         bool accept_untag1;         /* Whether accept untag1 packet from host */
626         bool accept_tag2;
627         bool accept_untag2;
628         bool insert_tag1_en;        /* Whether insert outer vlan tag */
629         bool insert_tag2_en;        /* Whether insert inner vlan tag */
630         /*
631          * In shift mode, hw will shift the sequence of port based VLAN and
632          * BD VLAN.
633          */
634         bool tag_shift_mode_en;     /* hw shift vlan tag automatically */
635         uint16_t default_tag1;      /* The default outer vlan tag to insert */
636         uint16_t default_tag2;      /* The default inner vlan tag to insert */
637 };
638
639 struct hns3_vtag_cfg {
640         struct hns3_rx_vtag_cfg rx_vcfg;
641         struct hns3_tx_vtag_cfg tx_vcfg;
642 };
643
644 /* Request types for IPC. */
645 enum hns3_mp_req_type {
646         HNS3_MP_REQ_START_RXTX = 1,
647         HNS3_MP_REQ_STOP_RXTX,
648         HNS3_MP_REQ_MAX
649 };
650
651 /* Pameters for IPC. */
652 struct hns3_mp_param {
653         enum hns3_mp_req_type type;
654         int port_id;
655         int result;
656 };
657
658 /* Request timeout for IPC. */
659 #define HNS3_MP_REQ_TIMEOUT_SEC 5
660
661 /* Key string for IPC. */
662 #define HNS3_MP_NAME "net_hns3_mp"
663
664 #define HNS3_L2TBL_NUM  4
665 #define HNS3_L3TBL_NUM  16
666 #define HNS3_L4TBL_NUM  16
667 #define HNS3_OL2TBL_NUM 4
668 #define HNS3_OL3TBL_NUM 16
669 #define HNS3_OL4TBL_NUM 16
670 #define HNS3_PTYPE_NUM  256
671
672 struct hns3_ptype_table {
673         /*
674          * The next fields used to calc packet-type by the
675          * L3_ID/L4_ID/OL3_ID/OL4_ID from the Rx descriptor.
676          */
677         uint32_t l2l3table[HNS3_L2TBL_NUM][HNS3_L3TBL_NUM];
678         uint32_t l4table[HNS3_L4TBL_NUM];
679         uint32_t inner_l2table[HNS3_L2TBL_NUM];
680         uint32_t inner_l3table[HNS3_L3TBL_NUM];
681         uint32_t inner_l4table[HNS3_L4TBL_NUM];
682         uint32_t ol2table[HNS3_OL2TBL_NUM];
683         uint32_t ol3table[HNS3_OL3TBL_NUM];
684         uint32_t ol4table[HNS3_OL4TBL_NUM];
685
686         /*
687          * The next field used to calc packet-type by the PTYPE from the Rx
688          * descriptor, it functions only when firmware report the capability of
689          * HNS3_CAPS_RXD_ADV_LAYOUT_B and driver enabled it.
690          */
691         uint32_t ptype[HNS3_PTYPE_NUM] __rte_cache_min_aligned;
692 };
693
694 #define HNS3_FIXED_MAX_TQP_NUM_MODE             0
695 #define HNS3_FLEX_MAX_TQP_NUM_MODE              1
696
697 struct hns3_pf {
698         struct hns3_adapter *adapter;
699         bool is_main_pf;
700         uint16_t func_num; /* num functions of this pf, include pf and vfs */
701
702         /*
703          * tqp_config mode
704          * tqp_config_mode value range:
705          *      HNS3_FIXED_MAX_TQP_NUM_MODE,
706          *      HNS3_FLEX_MAX_TQP_NUM_MODE
707          *
708          * - HNS3_FIXED_MAX_TQP_NUM_MODE
709          *   There is a limitation on the number of pf interrupts available for
710          *   on some versions of network engines. In this case, the maximum
711          *   queue number of pf can not be greater than the interrupt number,
712          *   such as pf of network engine with revision_id 0x21. So the maximum
713          *   number of queues must be fixed.
714          *
715          * - HNS3_FLEX_MAX_TQP_NUM_MODE
716          *   In this mode, the maximum queue number of pf has not any constraint
717          *   and comes from the macro RTE_LIBRTE_HNS3_MAX_TQP_NUM_PER_PF
718          *   in the config file. Users can modify the macro according to their
719          *   own application scenarios, which is more flexible to use.
720          */
721         uint8_t tqp_config_mode;
722
723         uint32_t pkt_buf_size; /* Total pf buf size for tx/rx */
724         uint32_t tx_buf_size; /* Tx buffer size for each TC */
725         uint32_t dv_buf_size; /* Dv buffer size for each TC */
726
727         uint16_t mps; /* Max packet size */
728
729         uint8_t tx_sch_mode;
730         uint8_t tc_max; /* max number of tc driver supported */
731         uint8_t local_max_tc; /* max number of local tc */
732         uint8_t pfc_max;
733         uint8_t prio_tc[HNS3_MAX_USER_PRIO]; /* TC indexed by prio */
734         uint16_t pause_time;
735         bool support_fc_autoneg;       /* support FC autonegotiate */
736
737         uint16_t wanted_umv_size;
738         uint16_t max_umv_size;
739         uint16_t used_umv_size;
740
741         /* Statistics information for abnormal interrupt */
742         struct hns3_err_msix_intr_stats abn_int_stats;
743
744         bool support_sfp_query;
745         uint32_t fec_mode; /* current FEC mode for ethdev */
746
747         struct hns3_vtag_cfg vtag_config;
748         LIST_HEAD(vlan_tbl, hns3_user_vlan_table) vlan_list;
749
750         struct hns3_fdir_info fdir; /* flow director info */
751         LIST_HEAD(counters, hns3_flow_counter) flow_counters;
752
753         struct hns3_tm_conf tm_conf;
754 };
755
756 struct hns3_vf {
757         struct hns3_adapter *adapter;
758 };
759
760 struct hns3_adapter {
761         struct hns3_hw hw;
762
763         /* Specific for PF or VF */
764         bool is_vf; /* false - PF, true - VF */
765         union {
766                 struct hns3_pf pf;
767                 struct hns3_vf vf;
768         };
769
770         bool rx_simple_allowed;
771         bool rx_vec_allowed;
772         bool tx_simple_allowed;
773         bool tx_vec_allowed;
774
775         uint32_t rx_func_hint;
776         uint32_t tx_func_hint;
777
778         struct hns3_ptype_table ptype_tbl __rte_cache_min_aligned;
779 };
780
781 enum {
782         HNS3_IO_FUNC_HINT_NONE = 0,
783         HNS3_IO_FUNC_HINT_VEC,
784         HNS3_IO_FUNC_HINT_SVE,
785         HNS3_IO_FUNC_HINT_SIMPLE,
786         HNS3_IO_FUNC_HINT_COMMON
787 };
788
789 #define HNS3_DEVARG_RX_FUNC_HINT        "rx_func_hint"
790 #define HNS3_DEVARG_TX_FUNC_HINT        "tx_func_hint"
791
792 #define HNS3_DEV_SUPPORT_DCB_B                  0x0
793 #define HNS3_DEV_SUPPORT_COPPER_B               0x1
794 #define HNS3_DEV_SUPPORT_UDP_GSO_B              0x2
795 #define HNS3_DEV_SUPPORT_FD_QUEUE_REGION_B      0x3
796 #define HNS3_DEV_SUPPORT_PTP_B                  0x4
797 #define HNS3_DEV_SUPPORT_TX_PUSH_B              0x5
798 #define HNS3_DEV_SUPPORT_INDEP_TXRX_B           0x6
799 #define HNS3_DEV_SUPPORT_STASH_B                0x7
800 #define HNS3_DEV_SUPPORT_RXD_ADV_LAYOUT_B       0x9
801
802 #define hns3_dev_dcb_supported(hw) \
803         hns3_get_bit((hw)->capability, HNS3_DEV_SUPPORT_DCB_B)
804
805 /* Support copper media type */
806 #define hns3_dev_copper_supported(hw) \
807         hns3_get_bit((hw)->capability, HNS3_DEV_SUPPORT_COPPER_B)
808
809 /* Support UDP GSO offload */
810 #define hns3_dev_udp_gso_supported(hw) \
811         hns3_get_bit((hw)->capability, HNS3_DEV_SUPPORT_UDP_GSO_B)
812
813 /* Support the queue region action rule of flow directory */
814 #define hns3_dev_fd_queue_region_supported(hw) \
815         hns3_get_bit((hw)->capability, HNS3_DEV_SUPPORT_FD_QUEUE_REGION_B)
816
817 /* Support PTP timestamp offload */
818 #define hns3_dev_ptp_supported(hw) \
819         hns3_get_bit((hw)->capability, HNS3_DEV_SUPPORT_PTP_B)
820
821 #define hns3_dev_tx_push_supported(hw) \
822         hns3_get_bit((hw)->capability, HNS3_DEV_SUPPORT_TX_PUSH_B)
823
824 /* Support to Independently enable/disable/reset Tx or Rx queues */
825 #define hns3_dev_indep_txrx_supported(hw) \
826         hns3_get_bit((hw)->capability, HNS3_DEV_SUPPORT_INDEP_TXRX_B)
827
828 #define hns3_dev_stash_supported(hw) \
829         hns3_get_bit((hw)->capability, HNS3_DEV_SUPPORT_STASH_B)
830
831 #define hns3_dev_rxd_adv_layout_supported(hw) \
832         hns3_get_bit((hw)->capability, HNS3_DEV_SUPPORT_RXD_ADV_LAYOUT_B)
833
834 #define HNS3_DEV_PRIVATE_TO_HW(adapter) \
835         (&((struct hns3_adapter *)adapter)->hw)
836 #define HNS3_DEV_PRIVATE_TO_PF(adapter) \
837         (&((struct hns3_adapter *)adapter)->pf)
838 #define HNS3_DEV_HW_TO_ADAPTER(hw) \
839         container_of(hw, struct hns3_adapter, hw)
840
841 static inline struct hns3_pf *HNS3_DEV_HW_TO_PF(struct hns3_hw *hw)
842 {
843         struct hns3_adapter *adapter = HNS3_DEV_HW_TO_ADAPTER(hw);
844         return &adapter->pf;
845 }
846
847 #define hns3_set_field(origin, mask, shift, val) \
848         do { \
849                 (origin) &= (~(mask)); \
850                 (origin) |= ((val) << (shift)) & (mask); \
851         } while (0)
852 #define hns3_get_field(origin, mask, shift) \
853         (((origin) & (mask)) >> (shift))
854 #define hns3_set_bit(origin, shift, val) \
855         hns3_set_field((origin), (0x1UL << (shift)), (shift), (val))
856 #define hns3_get_bit(origin, shift) \
857         hns3_get_field((origin), (0x1UL << (shift)), (shift))
858
859 #define hns3_gen_field_val(mask, shift, val) (((val) << (shift)) & (mask))
860
861 /*
862  * upper_32_bits - return bits 32-63 of a number
863  * A basic shift-right of a 64- or 32-bit quantity. Use this to suppress
864  * the "right shift count >= width of type" warning when that quantity is
865  * 32-bits.
866  */
867 #define upper_32_bits(n) ((uint32_t)(((n) >> 16) >> 16))
868
869 /* lower_32_bits - return bits 0-31 of a number */
870 #define lower_32_bits(n) ((uint32_t)(n))
871
872 #define BIT(nr) (1UL << (nr))
873
874 #define BIT_ULL(x) (1ULL << (x))
875
876 #define BITS_PER_LONG   (__SIZEOF_LONG__ * 8)
877 #define GENMASK(h, l) \
878         (((~0UL) << (l)) & (~0UL >> (BITS_PER_LONG - 1 - (h))))
879
880 #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
881 #define rounddown(x, y) ((x) - ((x) % (y)))
882
883 #define DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d))
884
885 /*
886  * Because hardware always access register in little-endian mode based on hns3
887  * network engine, so driver should also call rte_cpu_to_le_32 to convert data
888  * in little-endian mode before writing register and call rte_le_to_cpu_32 to
889  * convert data after reading from register.
890  *
891  * Here the driver encapsulates the data conversion operation in the register
892  * read/write operation function as below:
893  *   hns3_write_reg
894  *   hns3_write_reg_opt
895  *   hns3_read_reg
896  * Therefore, when calling these functions, conversion is not required again.
897  */
898 static inline void hns3_write_reg(void *base, uint32_t reg, uint32_t value)
899 {
900         rte_write32(rte_cpu_to_le_32(value),
901                     (volatile void *)((char *)base + reg));
902 }
903
904 /*
905  * The optimized function for writing registers used in the '.rx_pkt_burst' and
906  * '.tx_pkt_burst' ops implementation function.
907  */
908 static inline void hns3_write_reg_opt(volatile void *addr, uint32_t value)
909 {
910         rte_io_wmb();
911         rte_write32_relaxed(rte_cpu_to_le_32(value), addr);
912 }
913
914 static inline uint32_t hns3_read_reg(void *base, uint32_t reg)
915 {
916         uint32_t read_val = rte_read32((volatile void *)((char *)base + reg));
917         return rte_le_to_cpu_32(read_val);
918 }
919
920 #define hns3_write_dev(a, reg, value) \
921         hns3_write_reg((a)->io_base, (reg), (value))
922
923 #define hns3_read_dev(a, reg) \
924         hns3_read_reg((a)->io_base, (reg))
925
926 #define ARRAY_SIZE(x) RTE_DIM(x)
927
928 #define NEXT_ITEM_OF_ACTION(act, actions, index)                        \
929         do {                                                            \
930                 act = (actions) + (index);                              \
931                 while (act->type == RTE_FLOW_ACTION_TYPE_VOID) {        \
932                         (index)++;                                      \
933                         act = actions + index;                          \
934                 }                                                       \
935         } while (0)
936
937 #define MSEC_PER_SEC              1000L
938 #define USEC_PER_MSEC             1000L
939
940 static inline uint64_t
941 get_timeofday_ms(void)
942 {
943         struct timeval tv;
944
945         (void)gettimeofday(&tv, NULL);
946
947         return (uint64_t)tv.tv_sec * MSEC_PER_SEC + tv.tv_usec / USEC_PER_MSEC;
948 }
949
950 static inline uint64_t
951 hns3_atomic_test_bit(unsigned int nr, volatile uint64_t *addr)
952 {
953         uint64_t res;
954
955         res = (__atomic_load_n(addr, __ATOMIC_RELAXED) & (1UL << nr)) != 0;
956         return res;
957 }
958
959 static inline void
960 hns3_atomic_set_bit(unsigned int nr, volatile uint64_t *addr)
961 {
962         __atomic_fetch_or(addr, (1UL << nr), __ATOMIC_RELAXED);
963 }
964
965 static inline void
966 hns3_atomic_clear_bit(unsigned int nr, volatile uint64_t *addr)
967 {
968         __atomic_fetch_and(addr, ~(1UL << nr), __ATOMIC_RELAXED);
969 }
970
971 static inline int64_t
972 hns3_test_and_clear_bit(unsigned int nr, volatile uint64_t *addr)
973 {
974         uint64_t mask = (1UL << nr);
975
976         return __atomic_fetch_and(addr, ~mask, __ATOMIC_RELAXED) & mask;
977 }
978
979 int hns3_buffer_alloc(struct hns3_hw *hw);
980 int hns3_dev_filter_ctrl(struct rte_eth_dev *dev,
981                          enum rte_filter_type filter_type,
982                          enum rte_filter_op filter_op, void *arg);
983 bool hns3_is_reset_pending(struct hns3_adapter *hns);
984 bool hns3vf_is_reset_pending(struct hns3_adapter *hns);
985 void hns3_update_link_status_and_event(struct hns3_hw *hw);
986 void hns3_ether_format_addr(char *buf, uint16_t size,
987                         const struct rte_ether_addr *ether_addr);
988 int hns3_dev_infos_get(struct rte_eth_dev *eth_dev,
989                        struct rte_eth_dev_info *info);
990 void hns3vf_update_link_status(struct hns3_hw *hw, uint8_t link_status,
991                           uint32_t link_speed, uint8_t link_duplex);
992 void hns3_parse_devargs(struct rte_eth_dev *dev);
993
994 static inline bool
995 is_reset_pending(struct hns3_adapter *hns)
996 {
997         bool ret;
998         if (hns->is_vf)
999                 ret = hns3vf_is_reset_pending(hns);
1000         else
1001                 ret = hns3_is_reset_pending(hns);
1002         return ret;
1003 }
1004
1005 static inline uint64_t
1006 hns3_txvlan_cap_get(struct hns3_hw *hw)
1007 {
1008         if (hw->port_base_vlan_cfg.state)
1009                 return DEV_TX_OFFLOAD_VLAN_INSERT;
1010         else
1011                 return DEV_TX_OFFLOAD_VLAN_INSERT | DEV_TX_OFFLOAD_QINQ_INSERT;
1012 }
1013
1014 #endif /* _HNS3_ETHDEV_H_ */