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