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