1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2017 Huawei Technologies Co., Ltd
6 #include <rte_bus_pci.h>
7 #include <ethdev_pci.h>
9 #include <rte_malloc.h>
10 #include <rte_memcpy.h>
11 #include <rte_mempool.h>
12 #include <rte_errno.h>
13 #include <rte_ether.h>
15 #include "base/hinic_compat.h"
16 #include "base/hinic_pmd_hwdev.h"
17 #include "base/hinic_pmd_hwif.h"
18 #include "base/hinic_pmd_wq.h"
19 #include "base/hinic_pmd_cfg.h"
20 #include "base/hinic_pmd_mgmt.h"
21 #include "base/hinic_pmd_cmdq.h"
22 #include "base/hinic_pmd_niccfg.h"
23 #include "base/hinic_pmd_nicio.h"
24 #include "base/hinic_pmd_mbox.h"
25 #include "hinic_pmd_ethdev.h"
26 #include "hinic_pmd_tx.h"
27 #include "hinic_pmd_rx.h"
29 /* Vendor ID used by Huawei devices */
30 #define HINIC_HUAWEI_VENDOR_ID 0x19E5
33 #define HINIC_DEV_ID_PRD 0x1822
34 #define HINIC_DEV_ID_VF 0x375E
35 #define HINIC_DEV_ID_VF_HV 0x379E
37 /* Mezz card for Blade Server */
38 #define HINIC_DEV_ID_MEZZ_25GE 0x0210
39 #define HINIC_DEV_ID_MEZZ_100GE 0x0205
41 /* 2*25G and 2*100G card */
42 #define HINIC_DEV_ID_1822_DUAL_25GE 0x0206
43 #define HINIC_DEV_ID_1822_100GE 0x0200
45 #define HINIC_SERVICE_MODE_NIC 2
47 #define HINIC_INTR_CB_UNREG_MAX_RETRIES 10
49 #define DEFAULT_BASE_COS 4
52 #define HINIC_MIN_RX_BUF_SIZE 1024
53 #define HINIC_MAX_UC_MAC_ADDRS 128
54 #define HINIC_MAX_MC_MAC_ADDRS 2048
56 #define HINIC_DEFAULT_BURST_SIZE 32
57 #define HINIC_DEFAULT_NB_QUEUES 1
58 #define HINIC_DEFAULT_RING_SIZE 1024
59 #define HINIC_MAX_LRO_SIZE 65536
62 * vlan_id is a 12 bit number.
63 * The VFTA array is actually a 4096 bit array, 128 of 32bit elements.
64 * 2^5 = 32. The val of lower 5 bits specifies the bit in the 32bit element.
65 * The higher 7 bit val specifies VFTA array index.
67 #define HINIC_VFTA_BIT(vlan_id) (1 << ((vlan_id) & 0x1F))
68 #define HINIC_VFTA_IDX(vlan_id) ((vlan_id) >> 5)
70 #define HINIC_VLAN_FILTER_EN (1U << 0)
72 /* lro numer limit for one packet */
73 #define HINIC_LRO_WQE_NUM_DEFAULT 8
75 struct hinic_xstats_name_off {
76 char name[RTE_ETH_XSTATS_NAME_SIZE];
80 #define HINIC_FUNC_STAT(_stat_item) { \
81 .name = #_stat_item, \
82 .offset = offsetof(struct hinic_vport_stats, _stat_item) \
85 #define HINIC_PORT_STAT(_stat_item) { \
86 .name = #_stat_item, \
87 .offset = offsetof(struct hinic_phy_port_stats, _stat_item) \
90 static const struct hinic_xstats_name_off hinic_vport_stats_strings[] = {
91 HINIC_FUNC_STAT(tx_unicast_pkts_vport),
92 HINIC_FUNC_STAT(tx_unicast_bytes_vport),
93 HINIC_FUNC_STAT(tx_multicast_pkts_vport),
94 HINIC_FUNC_STAT(tx_multicast_bytes_vport),
95 HINIC_FUNC_STAT(tx_broadcast_pkts_vport),
96 HINIC_FUNC_STAT(tx_broadcast_bytes_vport),
98 HINIC_FUNC_STAT(rx_unicast_pkts_vport),
99 HINIC_FUNC_STAT(rx_unicast_bytes_vport),
100 HINIC_FUNC_STAT(rx_multicast_pkts_vport),
101 HINIC_FUNC_STAT(rx_multicast_bytes_vport),
102 HINIC_FUNC_STAT(rx_broadcast_pkts_vport),
103 HINIC_FUNC_STAT(rx_broadcast_bytes_vport),
105 HINIC_FUNC_STAT(tx_discard_vport),
106 HINIC_FUNC_STAT(rx_discard_vport),
107 HINIC_FUNC_STAT(tx_err_vport),
108 HINIC_FUNC_STAT(rx_err_vport),
111 #define HINIC_VPORT_XSTATS_NUM (sizeof(hinic_vport_stats_strings) / \
112 sizeof(hinic_vport_stats_strings[0]))
114 static const struct hinic_xstats_name_off hinic_phyport_stats_strings[] = {
115 HINIC_PORT_STAT(mac_rx_total_pkt_num),
116 HINIC_PORT_STAT(mac_rx_total_oct_num),
117 HINIC_PORT_STAT(mac_rx_bad_pkt_num),
118 HINIC_PORT_STAT(mac_rx_bad_oct_num),
119 HINIC_PORT_STAT(mac_rx_good_pkt_num),
120 HINIC_PORT_STAT(mac_rx_good_oct_num),
121 HINIC_PORT_STAT(mac_rx_uni_pkt_num),
122 HINIC_PORT_STAT(mac_rx_multi_pkt_num),
123 HINIC_PORT_STAT(mac_rx_broad_pkt_num),
124 HINIC_PORT_STAT(mac_tx_total_pkt_num),
125 HINIC_PORT_STAT(mac_tx_total_oct_num),
126 HINIC_PORT_STAT(mac_tx_bad_pkt_num),
127 HINIC_PORT_STAT(mac_tx_bad_oct_num),
128 HINIC_PORT_STAT(mac_tx_good_pkt_num),
129 HINIC_PORT_STAT(mac_tx_good_oct_num),
130 HINIC_PORT_STAT(mac_tx_uni_pkt_num),
131 HINIC_PORT_STAT(mac_tx_multi_pkt_num),
132 HINIC_PORT_STAT(mac_tx_broad_pkt_num),
133 HINIC_PORT_STAT(mac_rx_fragment_pkt_num),
134 HINIC_PORT_STAT(mac_rx_undersize_pkt_num),
135 HINIC_PORT_STAT(mac_rx_undermin_pkt_num),
136 HINIC_PORT_STAT(mac_rx_64_oct_pkt_num),
137 HINIC_PORT_STAT(mac_rx_65_127_oct_pkt_num),
138 HINIC_PORT_STAT(mac_rx_128_255_oct_pkt_num),
139 HINIC_PORT_STAT(mac_rx_256_511_oct_pkt_num),
140 HINIC_PORT_STAT(mac_rx_512_1023_oct_pkt_num),
141 HINIC_PORT_STAT(mac_rx_1024_1518_oct_pkt_num),
142 HINIC_PORT_STAT(mac_rx_1519_2047_oct_pkt_num),
143 HINIC_PORT_STAT(mac_rx_2048_4095_oct_pkt_num),
144 HINIC_PORT_STAT(mac_rx_4096_8191_oct_pkt_num),
145 HINIC_PORT_STAT(mac_rx_8192_9216_oct_pkt_num),
146 HINIC_PORT_STAT(mac_rx_9217_12287_oct_pkt_num),
147 HINIC_PORT_STAT(mac_rx_12288_16383_oct_pkt_num),
148 HINIC_PORT_STAT(mac_rx_1519_max_bad_pkt_num),
149 HINIC_PORT_STAT(mac_rx_1519_max_good_pkt_num),
150 HINIC_PORT_STAT(mac_rx_oversize_pkt_num),
151 HINIC_PORT_STAT(mac_rx_jabber_pkt_num),
152 HINIC_PORT_STAT(mac_rx_mac_pause_num),
153 HINIC_PORT_STAT(mac_rx_pfc_pkt_num),
154 HINIC_PORT_STAT(mac_rx_pfc_pri0_pkt_num),
155 HINIC_PORT_STAT(mac_rx_pfc_pri1_pkt_num),
156 HINIC_PORT_STAT(mac_rx_pfc_pri2_pkt_num),
157 HINIC_PORT_STAT(mac_rx_pfc_pri3_pkt_num),
158 HINIC_PORT_STAT(mac_rx_pfc_pri4_pkt_num),
159 HINIC_PORT_STAT(mac_rx_pfc_pri5_pkt_num),
160 HINIC_PORT_STAT(mac_rx_pfc_pri6_pkt_num),
161 HINIC_PORT_STAT(mac_rx_pfc_pri7_pkt_num),
162 HINIC_PORT_STAT(mac_rx_mac_control_pkt_num),
163 HINIC_PORT_STAT(mac_rx_sym_err_pkt_num),
164 HINIC_PORT_STAT(mac_rx_fcs_err_pkt_num),
165 HINIC_PORT_STAT(mac_rx_send_app_good_pkt_num),
166 HINIC_PORT_STAT(mac_rx_send_app_bad_pkt_num),
167 HINIC_PORT_STAT(mac_tx_fragment_pkt_num),
168 HINIC_PORT_STAT(mac_tx_undersize_pkt_num),
169 HINIC_PORT_STAT(mac_tx_undermin_pkt_num),
170 HINIC_PORT_STAT(mac_tx_64_oct_pkt_num),
171 HINIC_PORT_STAT(mac_tx_65_127_oct_pkt_num),
172 HINIC_PORT_STAT(mac_tx_128_255_oct_pkt_num),
173 HINIC_PORT_STAT(mac_tx_256_511_oct_pkt_num),
174 HINIC_PORT_STAT(mac_tx_512_1023_oct_pkt_num),
175 HINIC_PORT_STAT(mac_tx_1024_1518_oct_pkt_num),
176 HINIC_PORT_STAT(mac_tx_1519_2047_oct_pkt_num),
177 HINIC_PORT_STAT(mac_tx_2048_4095_oct_pkt_num),
178 HINIC_PORT_STAT(mac_tx_4096_8191_oct_pkt_num),
179 HINIC_PORT_STAT(mac_tx_8192_9216_oct_pkt_num),
180 HINIC_PORT_STAT(mac_tx_9217_12287_oct_pkt_num),
181 HINIC_PORT_STAT(mac_tx_12288_16383_oct_pkt_num),
182 HINIC_PORT_STAT(mac_tx_1519_max_bad_pkt_num),
183 HINIC_PORT_STAT(mac_tx_1519_max_good_pkt_num),
184 HINIC_PORT_STAT(mac_tx_oversize_pkt_num),
185 HINIC_PORT_STAT(mac_trans_jabber_pkt_num),
186 HINIC_PORT_STAT(mac_tx_mac_pause_num),
187 HINIC_PORT_STAT(mac_tx_pfc_pkt_num),
188 HINIC_PORT_STAT(mac_tx_pfc_pri0_pkt_num),
189 HINIC_PORT_STAT(mac_tx_pfc_pri1_pkt_num),
190 HINIC_PORT_STAT(mac_tx_pfc_pri2_pkt_num),
191 HINIC_PORT_STAT(mac_tx_pfc_pri3_pkt_num),
192 HINIC_PORT_STAT(mac_tx_pfc_pri4_pkt_num),
193 HINIC_PORT_STAT(mac_tx_pfc_pri5_pkt_num),
194 HINIC_PORT_STAT(mac_tx_pfc_pri6_pkt_num),
195 HINIC_PORT_STAT(mac_tx_pfc_pri7_pkt_num),
196 HINIC_PORT_STAT(mac_tx_mac_control_pkt_num),
197 HINIC_PORT_STAT(mac_tx_err_all_pkt_num),
198 HINIC_PORT_STAT(mac_tx_from_app_good_pkt_num),
199 HINIC_PORT_STAT(mac_tx_from_app_bad_pkt_num),
202 #define HINIC_PHYPORT_XSTATS_NUM (sizeof(hinic_phyport_stats_strings) / \
203 sizeof(hinic_phyport_stats_strings[0]))
205 static const struct hinic_xstats_name_off hinic_rxq_stats_strings[] = {
206 {"rx_nombuf", offsetof(struct hinic_rxq_stats, rx_nombuf)},
207 {"burst_pkt", offsetof(struct hinic_rxq_stats, burst_pkts)},
210 #define HINIC_RXQ_XSTATS_NUM (sizeof(hinic_rxq_stats_strings) / \
211 sizeof(hinic_rxq_stats_strings[0]))
213 static const struct hinic_xstats_name_off hinic_txq_stats_strings[] = {
214 {"tx_busy", offsetof(struct hinic_txq_stats, tx_busy)},
215 {"offload_errors", offsetof(struct hinic_txq_stats, off_errs)},
216 {"copy_pkts", offsetof(struct hinic_txq_stats, cpy_pkts)},
217 {"rl_drop", offsetof(struct hinic_txq_stats, rl_drop)},
218 {"burst_pkts", offsetof(struct hinic_txq_stats, burst_pkts)},
219 {"sge_len0", offsetof(struct hinic_txq_stats, sge_len0)},
220 {"mbuf_null", offsetof(struct hinic_txq_stats, mbuf_null)},
223 #define HINIC_TXQ_XSTATS_NUM (sizeof(hinic_txq_stats_strings) / \
224 sizeof(hinic_txq_stats_strings[0]))
226 static int hinic_xstats_calc_num(struct hinic_nic_dev *nic_dev)
228 if (HINIC_IS_VF(nic_dev->hwdev)) {
229 return (HINIC_VPORT_XSTATS_NUM +
230 HINIC_RXQ_XSTATS_NUM * nic_dev->num_rq +
231 HINIC_TXQ_XSTATS_NUM * nic_dev->num_sq);
233 return (HINIC_VPORT_XSTATS_NUM +
234 HINIC_PHYPORT_XSTATS_NUM +
235 HINIC_RXQ_XSTATS_NUM * nic_dev->num_rq +
236 HINIC_TXQ_XSTATS_NUM * nic_dev->num_sq);
240 static const struct rte_eth_desc_lim hinic_rx_desc_lim = {
241 .nb_max = HINIC_MAX_QUEUE_DEPTH,
242 .nb_min = HINIC_MIN_QUEUE_DEPTH,
243 .nb_align = HINIC_RXD_ALIGN,
246 static const struct rte_eth_desc_lim hinic_tx_desc_lim = {
247 .nb_max = HINIC_MAX_QUEUE_DEPTH,
248 .nb_min = HINIC_MIN_QUEUE_DEPTH,
249 .nb_align = HINIC_TXD_ALIGN,
252 static int hinic_vlan_offload_set(struct rte_eth_dev *dev, int mask);
255 * Interrupt handler triggered by NIC for handling
258 * @param: The address of parameter (struct rte_eth_dev *) regsitered before.
260 static void hinic_dev_interrupt_handler(void *param)
262 struct rte_eth_dev *dev = param;
263 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
265 if (!rte_bit_relaxed_get32(HINIC_DEV_INTR_EN, &nic_dev->dev_status)) {
266 PMD_DRV_LOG(WARNING, "Device's interrupt is disabled, ignore interrupt event, dev_name: %s, port_id: %d",
267 nic_dev->proc_dev_name, dev->data->port_id);
271 /* aeq0 msg handler */
272 hinic_dev_handle_aeq_event(nic_dev->hwdev, param);
276 * Ethernet device configuration.
278 * Prepare the driver for a given number of TX and RX queues, mtu size
282 * Pointer to Ethernet device structure.
285 * 0 on success, negative error value otherwise.
287 static int hinic_dev_configure(struct rte_eth_dev *dev)
289 struct hinic_nic_dev *nic_dev;
290 struct hinic_nic_io *nic_io;
293 nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
294 nic_io = nic_dev->hwdev->nic_io;
296 nic_dev->num_sq = dev->data->nb_tx_queues;
297 nic_dev->num_rq = dev->data->nb_rx_queues;
299 nic_io->num_sqs = dev->data->nb_tx_queues;
300 nic_io->num_rqs = dev->data->nb_rx_queues;
302 /* queue pair is max_num(sq, rq) */
303 nic_dev->num_qps = (nic_dev->num_sq > nic_dev->num_rq) ?
304 nic_dev->num_sq : nic_dev->num_rq;
305 nic_io->num_qps = nic_dev->num_qps;
307 if (nic_dev->num_qps > nic_io->max_qps) {
309 "Queue number out of range, get queue_num:%d, max_queue_num:%d",
310 nic_dev->num_qps, nic_io->max_qps);
314 if (dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_RSS_FLAG)
315 dev->data->dev_conf.rxmode.offloads |= DEV_RX_OFFLOAD_RSS_HASH;
317 /* mtu size is 256~9600 */
318 if (dev->data->dev_conf.rxmode.max_rx_pkt_len < HINIC_MIN_FRAME_SIZE ||
319 dev->data->dev_conf.rxmode.max_rx_pkt_len >
320 HINIC_MAX_JUMBO_FRAME_SIZE) {
322 "Max rx pkt len out of range, get max_rx_pkt_len:%d, "
323 "expect between %d and %d",
324 dev->data->dev_conf.rxmode.max_rx_pkt_len,
325 HINIC_MIN_FRAME_SIZE, HINIC_MAX_JUMBO_FRAME_SIZE);
330 HINIC_PKTLEN_TO_MTU(dev->data->dev_conf.rxmode.max_rx_pkt_len);
333 err = hinic_config_mq_mode(dev, TRUE);
335 PMD_DRV_LOG(ERR, "Config multi-queue failed");
339 /* init vlan offoad */
340 err = hinic_vlan_offload_set(dev,
341 ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK);
343 PMD_DRV_LOG(ERR, "Initialize vlan filter and strip failed");
344 (void)hinic_config_mq_mode(dev, FALSE);
348 /* clear fdir filter flag in function table */
349 hinic_free_fdir_filter(nic_dev);
355 * DPDK callback to create the receive queue.
358 * Pointer to Ethernet device structure.
362 * Number of descriptors for receive queue.
364 * NUMA socket on which memory must be allocated.
366 * Thresholds parameters (unused_).
368 * Memory pool for buffer allocations.
371 * 0 on success, negative error value otherwise.
373 static int hinic_rx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
374 uint16_t nb_desc, unsigned int socket_id,
375 __rte_unused const struct rte_eth_rxconf *rx_conf,
376 struct rte_mempool *mp)
379 struct hinic_nic_dev *nic_dev;
380 struct hinic_hwdev *hwdev;
381 struct hinic_rxq *rxq;
382 u16 rq_depth, rx_free_thresh;
385 nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
386 hwdev = nic_dev->hwdev;
388 /* queue depth must be power of 2, otherwise will be aligned up */
389 rq_depth = (nb_desc & (nb_desc - 1)) ?
390 ((u16)(1U << (ilog2(nb_desc) + 1))) : nb_desc;
393 * Validate number of receive descriptors.
394 * It must not exceed hardware maximum and minimum.
396 if (rq_depth > HINIC_MAX_QUEUE_DEPTH ||
397 rq_depth < HINIC_MIN_QUEUE_DEPTH) {
398 PMD_DRV_LOG(ERR, "RX queue depth is out of range from %d to %d, (nb_desc=%d, q_depth=%d, port=%d queue=%d)",
399 HINIC_MIN_QUEUE_DEPTH, HINIC_MAX_QUEUE_DEPTH,
400 (int)nb_desc, (int)rq_depth,
401 (int)dev->data->port_id, (int)queue_idx);
406 * The RX descriptor ring will be cleaned after rxq->rx_free_thresh
407 * descriptors are used or if the number of descriptors required
408 * to transmit a packet is greater than the number of free RX
410 * The following constraints must be satisfied:
411 * rx_free_thresh must be greater than 0.
412 * rx_free_thresh must be less than the size of the ring minus 1.
413 * When set to zero use default values.
415 rx_free_thresh = (u16)((rx_conf->rx_free_thresh) ?
416 rx_conf->rx_free_thresh : HINIC_DEFAULT_RX_FREE_THRESH);
417 if (rx_free_thresh >= (rq_depth - 1)) {
418 PMD_DRV_LOG(ERR, "rx_free_thresh must be less than the number of RX descriptors minus 1. (rx_free_thresh=%u port=%d queue=%d)",
419 (unsigned int)rx_free_thresh,
420 (int)dev->data->port_id,
425 rxq = rte_zmalloc_socket("hinic_rx_queue", sizeof(struct hinic_rxq),
426 RTE_CACHE_LINE_SIZE, socket_id);
428 PMD_DRV_LOG(ERR, "Allocate rxq[%d] failed, dev_name: %s",
429 queue_idx, dev->data->name);
432 nic_dev->rxqs[queue_idx] = rxq;
434 /* alloc rx sq hw wqe page */
435 rc = hinic_create_rq(hwdev, queue_idx, rq_depth, socket_id);
437 PMD_DRV_LOG(ERR, "Create rxq[%d] failed, dev_name: %s, rq_depth: %d",
438 queue_idx, dev->data->name, rq_depth);
442 /* mbuf pool must be assigned before setup rx resources */
446 hinic_convert_rx_buf_size(rte_pktmbuf_data_room_size(rxq->mb_pool) -
447 RTE_PKTMBUF_HEADROOM, &buf_size);
449 PMD_DRV_LOG(ERR, "Adjust buf size failed, dev_name: %s",
451 goto adjust_bufsize_fail;
454 /* rx queue info, rearm control */
455 rxq->wq = &hwdev->nic_io->rq_wq[queue_idx];
456 rxq->pi_virt_addr = hwdev->nic_io->qps[queue_idx].rq.pi_virt_addr;
457 rxq->nic_dev = nic_dev;
458 rxq->q_id = queue_idx;
459 rxq->q_depth = rq_depth;
460 rxq->buf_len = (u16)buf_size;
461 rxq->rx_free_thresh = rx_free_thresh;
462 rxq->socket_id = socket_id;
464 /* the last point cant do mbuf rearm in bulk */
465 rxq->rxinfo_align_end = rxq->q_depth - rxq->rx_free_thresh;
467 /* device port identifier */
468 rxq->port_id = dev->data->port_id;
470 /* alloc rx_cqe and prepare rq_wqe */
471 rc = hinic_setup_rx_resources(rxq);
473 PMD_DRV_LOG(ERR, "Setup rxq[%d] rx_resources failed, dev_name: %s",
474 queue_idx, dev->data->name);
475 goto setup_rx_res_err;
478 /* record nic_dev rxq in rte_eth rx_queues */
479 dev->data->rx_queues[queue_idx] = rxq;
485 hinic_destroy_rq(hwdev, queue_idx);
493 static void hinic_reset_rx_queue(struct rte_eth_dev *dev)
495 struct hinic_rxq *rxq;
496 struct hinic_nic_dev *nic_dev;
499 nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
501 for (q_id = 0; q_id < nic_dev->num_rq; q_id++) {
502 rxq = dev->data->rx_queues[q_id];
504 rxq->wq->cons_idx = 0;
505 rxq->wq->prod_idx = 0;
506 rxq->wq->delta = rxq->q_depth;
507 rxq->wq->mask = rxq->q_depth - 1;
509 /* alloc mbuf to rq */
510 hinic_rx_alloc_pkts(rxq);
515 * DPDK callback to configure the transmit queue.
518 * Pointer to Ethernet device structure.
520 * Transmit queue index.
522 * Number of descriptors for transmit queue.
524 * NUMA socket on which memory must be allocated.
526 * Tx queue configuration parameters.
529 * 0 on success, negative error value otherwise.
531 static int hinic_tx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
532 uint16_t nb_desc, unsigned int socket_id,
533 __rte_unused const struct rte_eth_txconf *tx_conf)
536 struct hinic_nic_dev *nic_dev;
537 struct hinic_hwdev *hwdev;
538 struct hinic_txq *txq;
539 u16 sq_depth, tx_free_thresh;
541 nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
542 hwdev = nic_dev->hwdev;
544 /* queue depth must be power of 2, otherwise will be aligned up */
545 sq_depth = (nb_desc & (nb_desc - 1)) ?
546 ((u16)(1U << (ilog2(nb_desc) + 1))) : nb_desc;
549 * Validate number of transmit descriptors.
550 * It must not exceed hardware maximum and minimum.
552 if (sq_depth > HINIC_MAX_QUEUE_DEPTH ||
553 sq_depth < HINIC_MIN_QUEUE_DEPTH) {
554 PMD_DRV_LOG(ERR, "TX queue depth is out of range from %d to %d, (nb_desc=%d, q_depth=%d, port=%d queue=%d)",
555 HINIC_MIN_QUEUE_DEPTH, HINIC_MAX_QUEUE_DEPTH,
556 (int)nb_desc, (int)sq_depth,
557 (int)dev->data->port_id, (int)queue_idx);
562 * The TX descriptor ring will be cleaned after txq->tx_free_thresh
563 * descriptors are used or if the number of descriptors required
564 * to transmit a packet is greater than the number of free TX
566 * The following constraints must be satisfied:
567 * tx_free_thresh must be greater than 0.
568 * tx_free_thresh must be less than the size of the ring minus 1.
569 * When set to zero use default values.
571 tx_free_thresh = (u16)((tx_conf->tx_free_thresh) ?
572 tx_conf->tx_free_thresh : HINIC_DEFAULT_TX_FREE_THRESH);
573 if (tx_free_thresh >= (sq_depth - 1)) {
574 PMD_DRV_LOG(ERR, "tx_free_thresh must be less than the number of TX descriptors minus 1. (tx_free_thresh=%u port=%d queue=%d)",
575 (unsigned int)tx_free_thresh, (int)dev->data->port_id,
580 txq = rte_zmalloc_socket("hinic_tx_queue", sizeof(struct hinic_txq),
581 RTE_CACHE_LINE_SIZE, socket_id);
583 PMD_DRV_LOG(ERR, "Allocate txq[%d] failed, dev_name: %s",
584 queue_idx, dev->data->name);
587 nic_dev->txqs[queue_idx] = txq;
589 /* alloc tx sq hw wqepage */
590 rc = hinic_create_sq(hwdev, queue_idx, sq_depth, socket_id);
592 PMD_DRV_LOG(ERR, "Create txq[%d] failed, dev_name: %s, sq_depth: %d",
593 queue_idx, dev->data->name, sq_depth);
597 txq->q_id = queue_idx;
598 txq->q_depth = sq_depth;
599 txq->port_id = dev->data->port_id;
600 txq->tx_free_thresh = tx_free_thresh;
601 txq->nic_dev = nic_dev;
602 txq->wq = &hwdev->nic_io->sq_wq[queue_idx];
603 txq->sq = &hwdev->nic_io->qps[queue_idx].sq;
604 txq->cons_idx_addr = hwdev->nic_io->qps[queue_idx].sq.cons_idx_addr;
605 txq->sq_head_addr = HINIC_GET_WQ_HEAD(txq);
606 txq->sq_bot_sge_addr = HINIC_GET_WQ_TAIL(txq) -
607 sizeof(struct hinic_sq_bufdesc);
608 txq->cos = nic_dev->default_cos;
609 txq->socket_id = socket_id;
611 /* alloc software txinfo */
612 rc = hinic_setup_tx_resources(txq);
614 PMD_DRV_LOG(ERR, "Setup txq[%d] tx_resources failed, dev_name: %s",
615 queue_idx, dev->data->name);
616 goto setup_tx_res_fail;
619 /* record nic_dev txq in rte_eth tx_queues */
620 dev->data->tx_queues[queue_idx] = txq;
625 hinic_destroy_sq(hwdev, queue_idx);
633 static void hinic_reset_tx_queue(struct rte_eth_dev *dev)
635 struct hinic_nic_dev *nic_dev;
636 struct hinic_txq *txq;
637 struct hinic_nic_io *nic_io;
638 struct hinic_hwdev *hwdev;
639 volatile u32 *ci_addr;
642 nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
643 hwdev = nic_dev->hwdev;
644 nic_io = hwdev->nic_io;
646 for (q_id = 0; q_id < nic_dev->num_sq; q_id++) {
647 txq = dev->data->tx_queues[q_id];
649 txq->wq->cons_idx = 0;
650 txq->wq->prod_idx = 0;
651 txq->wq->delta = txq->q_depth;
652 txq->wq->mask = txq->q_depth - 1;
654 /* clear hardware ci */
655 ci_addr = (volatile u32 *)HINIC_CI_VADDR(nic_io->ci_vaddr_base,
662 * Get link speed from NIC.
665 * Pointer to Ethernet device structure.
667 * Pointer to link speed structure.
669 static void hinic_get_speed_capa(struct rte_eth_dev *dev, uint32_t *speed_capa)
671 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
672 u32 supported_link, advertised_link;
675 #define HINIC_LINK_MODE_SUPPORT_1G (1U << HINIC_GE_BASE_KX)
677 #define HINIC_LINK_MODE_SUPPORT_10G (1U << HINIC_10GE_BASE_KR)
679 #define HINIC_LINK_MODE_SUPPORT_25G ((1U << HINIC_25GE_BASE_KR_S) | \
680 (1U << HINIC_25GE_BASE_CR_S) | \
681 (1U << HINIC_25GE_BASE_KR) | \
682 (1U << HINIC_25GE_BASE_CR))
684 #define HINIC_LINK_MODE_SUPPORT_40G ((1U << HINIC_40GE_BASE_KR4) | \
685 (1U << HINIC_40GE_BASE_CR4))
687 #define HINIC_LINK_MODE_SUPPORT_100G ((1U << HINIC_100GE_BASE_KR4) | \
688 (1U << HINIC_100GE_BASE_CR4))
690 err = hinic_get_link_mode(nic_dev->hwdev,
691 &supported_link, &advertised_link);
692 if (err || supported_link == HINIC_SUPPORTED_UNKNOWN ||
693 advertised_link == HINIC_SUPPORTED_UNKNOWN) {
694 PMD_DRV_LOG(WARNING, "Get speed capability info failed, device: %s, port_id: %u",
695 nic_dev->proc_dev_name, dev->data->port_id);
698 if (!!(supported_link & HINIC_LINK_MODE_SUPPORT_1G))
699 *speed_capa |= ETH_LINK_SPEED_1G;
700 if (!!(supported_link & HINIC_LINK_MODE_SUPPORT_10G))
701 *speed_capa |= ETH_LINK_SPEED_10G;
702 if (!!(supported_link & HINIC_LINK_MODE_SUPPORT_25G))
703 *speed_capa |= ETH_LINK_SPEED_25G;
704 if (!!(supported_link & HINIC_LINK_MODE_SUPPORT_40G))
705 *speed_capa |= ETH_LINK_SPEED_40G;
706 if (!!(supported_link & HINIC_LINK_MODE_SUPPORT_100G))
707 *speed_capa |= ETH_LINK_SPEED_100G;
712 * DPDK callback to get information about the device.
715 * Pointer to Ethernet device structure.
717 * Pointer to Info structure output buffer.
720 hinic_dev_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *info)
722 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
724 info->max_rx_queues = nic_dev->nic_cap.max_rqs;
725 info->max_tx_queues = nic_dev->nic_cap.max_sqs;
726 info->min_rx_bufsize = HINIC_MIN_RX_BUF_SIZE;
727 info->max_rx_pktlen = HINIC_MAX_JUMBO_FRAME_SIZE;
728 info->max_mac_addrs = HINIC_MAX_UC_MAC_ADDRS;
729 info->min_mtu = HINIC_MIN_MTU_SIZE;
730 info->max_mtu = HINIC_MAX_MTU_SIZE;
731 info->max_lro_pkt_size = HINIC_MAX_LRO_SIZE;
733 hinic_get_speed_capa(dev, &info->speed_capa);
734 info->rx_queue_offload_capa = 0;
735 info->rx_offload_capa = DEV_RX_OFFLOAD_VLAN_STRIP |
736 DEV_RX_OFFLOAD_IPV4_CKSUM |
737 DEV_RX_OFFLOAD_UDP_CKSUM |
738 DEV_RX_OFFLOAD_TCP_CKSUM |
739 DEV_RX_OFFLOAD_VLAN_FILTER |
740 DEV_RX_OFFLOAD_SCATTER |
741 DEV_RX_OFFLOAD_JUMBO_FRAME |
742 DEV_RX_OFFLOAD_TCP_LRO |
743 DEV_RX_OFFLOAD_RSS_HASH;
745 info->tx_queue_offload_capa = 0;
746 info->tx_offload_capa = DEV_TX_OFFLOAD_VLAN_INSERT |
747 DEV_TX_OFFLOAD_IPV4_CKSUM |
748 DEV_TX_OFFLOAD_UDP_CKSUM |
749 DEV_TX_OFFLOAD_TCP_CKSUM |
750 DEV_TX_OFFLOAD_SCTP_CKSUM |
751 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
752 DEV_TX_OFFLOAD_TCP_TSO |
753 DEV_TX_OFFLOAD_MULTI_SEGS;
755 info->hash_key_size = HINIC_RSS_KEY_SIZE;
756 info->reta_size = HINIC_RSS_INDIR_SIZE;
757 info->flow_type_rss_offloads = HINIC_RSS_OFFLOAD_ALL;
758 info->rx_desc_lim = hinic_rx_desc_lim;
759 info->tx_desc_lim = hinic_tx_desc_lim;
761 /* Driver-preferred Rx/Tx parameters */
762 info->default_rxportconf.burst_size = HINIC_DEFAULT_BURST_SIZE;
763 info->default_txportconf.burst_size = HINIC_DEFAULT_BURST_SIZE;
764 info->default_rxportconf.nb_queues = HINIC_DEFAULT_NB_QUEUES;
765 info->default_txportconf.nb_queues = HINIC_DEFAULT_NB_QUEUES;
766 info->default_rxportconf.ring_size = HINIC_DEFAULT_RING_SIZE;
767 info->default_txportconf.ring_size = HINIC_DEFAULT_RING_SIZE;
772 static int hinic_fw_version_get(struct rte_eth_dev *dev, char *fw_version,
775 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
776 char fw_ver[HINIC_MGMT_VERSION_MAX_LEN] = {0};
779 err = hinic_get_mgmt_version(nic_dev->hwdev, fw_ver);
781 PMD_DRV_LOG(ERR, "Failed to get fw version");
785 if (fw_size < strlen(fw_ver) + 1)
786 return (strlen(fw_ver) + 1);
788 snprintf(fw_version, fw_size, "%s", fw_ver);
793 static int hinic_config_rx_mode(struct hinic_nic_dev *nic_dev, u32 rx_mode_ctrl)
797 err = hinic_set_rx_mode(nic_dev->hwdev, rx_mode_ctrl);
799 PMD_DRV_LOG(ERR, "Failed to set rx mode");
802 nic_dev->rx_mode_status = rx_mode_ctrl;
807 static int hinic_rxtx_configure(struct rte_eth_dev *dev)
809 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
812 /* rx configure, if rss enable, need to init default configuration */
813 err = hinic_rx_configure(dev);
815 PMD_DRV_LOG(ERR, "Configure rss failed");
820 err = hinic_config_rx_mode(nic_dev, HINIC_DEFAULT_RX_MODE);
822 PMD_DRV_LOG(ERR, "Configure rx_mode:0x%x failed",
823 HINIC_DEFAULT_RX_MODE);
824 goto set_rx_mode_fail;
830 hinic_rx_remove_configure(dev);
835 static void hinic_remove_rxtx_configure(struct rte_eth_dev *dev)
837 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
839 (void)hinic_config_rx_mode(nic_dev, 0);
840 hinic_rx_remove_configure(dev);
843 static int hinic_priv_get_dev_link_status(struct hinic_nic_dev *nic_dev,
844 struct rte_eth_link *link)
847 u8 port_link_status = 0;
848 struct nic_port_info port_link_info;
849 struct hinic_hwdev *nic_hwdev = nic_dev->hwdev;
850 uint32_t port_speed[LINK_SPEED_MAX] = {ETH_SPEED_NUM_10M,
851 ETH_SPEED_NUM_100M, ETH_SPEED_NUM_1G,
852 ETH_SPEED_NUM_10G, ETH_SPEED_NUM_25G,
853 ETH_SPEED_NUM_40G, ETH_SPEED_NUM_100G};
855 rc = hinic_get_link_status(nic_hwdev, &port_link_status);
859 if (!port_link_status) {
860 link->link_status = ETH_LINK_DOWN;
861 link->link_speed = 0;
862 link->link_duplex = ETH_LINK_HALF_DUPLEX;
863 link->link_autoneg = ETH_LINK_FIXED;
867 memset(&port_link_info, 0, sizeof(port_link_info));
868 rc = hinic_get_port_info(nic_hwdev, &port_link_info);
872 link->link_speed = port_speed[port_link_info.speed % LINK_SPEED_MAX];
873 link->link_duplex = port_link_info.duplex;
874 link->link_autoneg = port_link_info.autoneg_state;
875 link->link_status = port_link_status;
881 * DPDK callback to retrieve physical link information.
884 * Pointer to Ethernet device structure.
885 * @param wait_to_complete
886 * Wait for request completion.
889 * 0 link status changed, -1 link status not changed
891 static int hinic_link_update(struct rte_eth_dev *dev, int wait_to_complete)
893 #define CHECK_INTERVAL 10 /* 10ms */
894 #define MAX_REPEAT_TIME 100 /* 1s (100 * 10ms) in total */
896 struct rte_eth_link link;
897 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
898 unsigned int rep_cnt = MAX_REPEAT_TIME;
900 memset(&link, 0, sizeof(link));
902 /* Get link status information from hardware */
903 rc = hinic_priv_get_dev_link_status(nic_dev, &link);
904 if (rc != HINIC_OK) {
905 link.link_speed = ETH_SPEED_NUM_NONE;
906 link.link_duplex = ETH_LINK_FULL_DUPLEX;
907 PMD_DRV_LOG(ERR, "Get link status failed");
911 if (!wait_to_complete || link.link_status)
914 rte_delay_ms(CHECK_INTERVAL);
918 rc = rte_eth_linkstatus_set(dev, &link);
923 * DPDK callback to bring the link UP.
926 * Pointer to Ethernet device structure.
929 * 0 on success, negative errno value on failure.
931 static int hinic_dev_set_link_up(struct rte_eth_dev *dev)
933 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
936 /* link status follow phy port status, up will open pma */
937 ret = hinic_set_port_enable(nic_dev->hwdev, true);
939 PMD_DRV_LOG(ERR, "Set mac link up failed, dev_name: %s, port_id: %d",
940 nic_dev->proc_dev_name, dev->data->port_id);
946 * DPDK callback to bring the link DOWN.
949 * Pointer to Ethernet device structure.
952 * 0 on success, negative errno value on failure.
954 static int hinic_dev_set_link_down(struct rte_eth_dev *dev)
956 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
959 /* link status follow phy port status, up will close pma */
960 ret = hinic_set_port_enable(nic_dev->hwdev, false);
962 PMD_DRV_LOG(ERR, "Set mac link down failed, dev_name: %s, port_id: %d",
963 nic_dev->proc_dev_name, dev->data->port_id);
969 * DPDK callback to start the device.
972 * Pointer to Ethernet device structure.
975 * 0 on success, negative errno value on failure.
977 static int hinic_dev_start(struct rte_eth_dev *dev)
981 struct hinic_nic_dev *nic_dev;
983 nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
984 name = dev->data->name;
986 /* reset rx and tx queue */
987 hinic_reset_rx_queue(dev);
988 hinic_reset_tx_queue(dev);
990 /* get func rx buf size */
991 hinic_get_func_rx_buf_size(nic_dev);
993 /* init txq and rxq context */
994 rc = hinic_init_qp_ctxts(nic_dev->hwdev);
996 PMD_DRV_LOG(ERR, "Initialize qp context failed, dev_name: %s",
1002 rc = hinic_config_mq_mode(dev, TRUE);
1004 PMD_DRV_LOG(ERR, "Configure mq mode failed, dev_name: %s",
1006 goto cfg_mq_mode_fail;
1009 /* set default mtu */
1010 rc = hinic_set_port_mtu(nic_dev->hwdev, nic_dev->mtu_size);
1012 PMD_DRV_LOG(ERR, "Set mtu_size[%d] failed, dev_name: %s",
1013 nic_dev->mtu_size, name);
1017 /* configure rss rx_mode and other rx or tx default feature */
1018 rc = hinic_rxtx_configure(dev);
1020 PMD_DRV_LOG(ERR, "Configure tx and rx failed, dev_name: %s",
1025 /* reactive pf status, so that uP report asyn event */
1026 hinic_set_pf_status(nic_dev->hwdev->hwif, HINIC_PF_STATUS_ACTIVE_FLAG);
1028 /* open virtual port and ready to start packet receiving */
1029 rc = hinic_set_vport_enable(nic_dev->hwdev, true);
1031 PMD_DRV_LOG(ERR, "Enable vport failed, dev_name:%s", name);
1035 /* open physical port and start packet receiving */
1036 rc = hinic_set_port_enable(nic_dev->hwdev, true);
1038 PMD_DRV_LOG(ERR, "Enable physical port failed, dev_name: %s",
1043 /* update eth_dev link status */
1044 if (dev->data->dev_conf.intr_conf.lsc != 0)
1045 (void)hinic_link_update(dev, 0);
1047 rte_bit_relaxed_set32(HINIC_DEV_START, &nic_dev->dev_status);
1052 (void)hinic_set_vport_enable(nic_dev->hwdev, false);
1055 hinic_set_pf_status(nic_dev->hwdev->hwif, HINIC_PF_STATUS_INIT);
1057 /* Flush tx && rx chip resources in case of set vport fake fail */
1058 (void)hinic_flush_qp_res(nic_dev->hwdev);
1061 hinic_remove_rxtx_configure(dev);
1066 hinic_free_qp_ctxts(nic_dev->hwdev);
1069 hinic_free_all_rx_mbuf(dev);
1070 hinic_free_all_tx_mbuf(dev);
1076 * DPDK callback to release the receive queue.
1079 * Pointer to Ethernet device structure.
1081 * Receive queue index.
1083 static void hinic_rx_queue_release(struct rte_eth_dev *dev, uint16_t qid)
1085 struct hinic_rxq *rxq = dev->data->rx_queues[qid];
1086 struct hinic_nic_dev *nic_dev;
1089 PMD_DRV_LOG(WARNING, "Rxq is null when release");
1092 nic_dev = rxq->nic_dev;
1094 /* free rxq_pkt mbuf */
1095 hinic_free_all_rx_mbufs(rxq);
1097 /* free rxq_cqe, rxq_info */
1098 hinic_free_rx_resources(rxq);
1100 /* free root rq wq */
1101 hinic_destroy_rq(nic_dev->hwdev, rxq->q_id);
1103 nic_dev->rxqs[rxq->q_id] = NULL;
1110 * DPDK callback to release the transmit queue.
1113 * Pointer to Ethernet device structure.
1115 * Transmit queue index.
1117 static void hinic_tx_queue_release(struct rte_eth_dev *dev, uint16_t qid)
1119 struct hinic_txq *txq = dev->data->tx_queues[qid];
1120 struct hinic_nic_dev *nic_dev;
1123 PMD_DRV_LOG(WARNING, "Txq is null when release");
1126 nic_dev = txq->nic_dev;
1128 /* free txq_pkt mbuf */
1129 hinic_free_all_tx_mbufs(txq);
1132 hinic_free_tx_resources(txq);
1134 /* free root sq wq */
1135 hinic_destroy_sq(nic_dev->hwdev, txq->q_id);
1136 nic_dev->txqs[txq->q_id] = NULL;
1142 static void hinic_free_all_rq(struct hinic_nic_dev *nic_dev)
1146 for (q_id = 0; q_id < nic_dev->num_rq; q_id++)
1147 hinic_destroy_rq(nic_dev->hwdev, q_id);
1150 static void hinic_free_all_sq(struct hinic_nic_dev *nic_dev)
1154 for (q_id = 0; q_id < nic_dev->num_sq; q_id++)
1155 hinic_destroy_sq(nic_dev->hwdev, q_id);
1159 * DPDK callback to stop the device.
1162 * Pointer to Ethernet device structure.
1164 static int hinic_dev_stop(struct rte_eth_dev *dev)
1169 struct hinic_nic_dev *nic_dev;
1170 struct rte_eth_link link;
1172 nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
1173 name = dev->data->name;
1174 port_id = dev->data->port_id;
1176 dev->data->dev_started = 0;
1178 if (!rte_bit_relaxed_test_and_clear32(HINIC_DEV_START,
1179 &nic_dev->dev_status)) {
1180 PMD_DRV_LOG(INFO, "Device %s already stopped", name);
1184 /* just stop phy port and vport */
1185 rc = hinic_set_port_enable(nic_dev->hwdev, false);
1187 PMD_DRV_LOG(WARNING, "Disable phy port failed, error: %d, dev_name: %s, port_id: %d",
1190 rc = hinic_set_vport_enable(nic_dev->hwdev, false);
1192 PMD_DRV_LOG(WARNING, "Disable vport failed, error: %d, dev_name: %s, port_id: %d",
1195 /* Clear recorded link status */
1196 memset(&link, 0, sizeof(link));
1197 (void)rte_eth_linkstatus_set(dev, &link);
1199 /* flush pending io request */
1200 rc = hinic_rx_tx_flush(nic_dev->hwdev);
1202 PMD_DRV_LOG(WARNING, "Flush pending io failed, error: %d, dev_name: %s, port_id: %d",
1205 /* clean rss table and rx_mode */
1206 hinic_remove_rxtx_configure(dev);
1208 /* clean root context */
1209 hinic_free_qp_ctxts(nic_dev->hwdev);
1211 hinic_destroy_fdir_filter(dev);
1214 hinic_free_all_rx_mbuf(dev);
1215 hinic_free_all_tx_mbuf(dev);
1220 static void hinic_disable_interrupt(struct rte_eth_dev *dev)
1222 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
1223 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1224 int ret, retries = 0;
1226 rte_bit_relaxed_clear32(HINIC_DEV_INTR_EN, &nic_dev->dev_status);
1228 /* disable msix interrupt in hardware */
1229 hinic_set_msix_state(nic_dev->hwdev, 0, HINIC_MSIX_DISABLE);
1231 /* disable rte interrupt */
1232 ret = rte_intr_disable(&pci_dev->intr_handle);
1234 PMD_DRV_LOG(ERR, "Disable intr failed: %d", ret);
1238 rte_intr_callback_unregister(&pci_dev->intr_handle,
1239 hinic_dev_interrupt_handler, dev);
1242 } else if (ret == -EAGAIN) {
1246 PMD_DRV_LOG(ERR, "intr callback unregister failed: %d",
1250 } while (retries < HINIC_INTR_CB_UNREG_MAX_RETRIES);
1252 if (retries == HINIC_INTR_CB_UNREG_MAX_RETRIES)
1253 PMD_DRV_LOG(ERR, "Unregister intr callback failed after %d retries",
1256 rte_bit_relaxed_clear32(HINIC_DEV_INIT, &nic_dev->dev_status);
1259 static int hinic_set_dev_promiscuous(struct hinic_nic_dev *nic_dev, bool enable)
1264 err = hinic_mutex_lock(&nic_dev->rx_mode_mutex);
1268 rx_mode_ctrl = nic_dev->rx_mode_status;
1271 rx_mode_ctrl |= HINIC_RX_MODE_PROMISC;
1273 rx_mode_ctrl &= (~HINIC_RX_MODE_PROMISC);
1275 err = hinic_config_rx_mode(nic_dev, rx_mode_ctrl);
1277 (void)hinic_mutex_unlock(&nic_dev->rx_mode_mutex);
1283 * DPDK callback to get device statistics.
1286 * Pointer to Ethernet device structure.
1288 * Stats structure output buffer.
1291 * 0 on success and stats is filled,
1292 * negative error value otherwise.
1295 hinic_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
1298 u64 rx_discards_pmd = 0;
1299 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
1300 struct hinic_vport_stats vport_stats;
1301 struct hinic_rxq *rxq = NULL;
1302 struct hinic_rxq_stats rxq_stats;
1303 struct hinic_txq *txq = NULL;
1304 struct hinic_txq_stats txq_stats;
1306 err = hinic_get_vport_stats(nic_dev->hwdev, &vport_stats);
1308 PMD_DRV_LOG(ERR, "Get vport stats from fw failed, nic_dev: %s",
1309 nic_dev->proc_dev_name);
1313 dev->data->rx_mbuf_alloc_failed = 0;
1315 /* rx queue stats */
1316 q_num = (nic_dev->num_rq < RTE_ETHDEV_QUEUE_STAT_CNTRS) ?
1317 nic_dev->num_rq : RTE_ETHDEV_QUEUE_STAT_CNTRS;
1318 for (i = 0; i < q_num; i++) {
1319 rxq = nic_dev->rxqs[i];
1320 hinic_rxq_get_stats(rxq, &rxq_stats);
1321 stats->q_ipackets[i] = rxq_stats.packets;
1322 stats->q_ibytes[i] = rxq_stats.bytes;
1323 stats->q_errors[i] = rxq_stats.rx_discards;
1325 stats->ierrors += rxq_stats.errors;
1326 rx_discards_pmd += rxq_stats.rx_discards;
1327 dev->data->rx_mbuf_alloc_failed += rxq_stats.rx_nombuf;
1330 /* tx queue stats */
1331 q_num = (nic_dev->num_sq < RTE_ETHDEV_QUEUE_STAT_CNTRS) ?
1332 nic_dev->num_sq : RTE_ETHDEV_QUEUE_STAT_CNTRS;
1333 for (i = 0; i < q_num; i++) {
1334 txq = nic_dev->txqs[i];
1335 hinic_txq_get_stats(txq, &txq_stats);
1336 stats->q_opackets[i] = txq_stats.packets;
1337 stats->q_obytes[i] = txq_stats.bytes;
1338 stats->oerrors += (txq_stats.tx_busy + txq_stats.off_errs);
1342 stats->oerrors += vport_stats.tx_discard_vport;
1344 stats->imissed = vport_stats.rx_discard_vport + rx_discards_pmd;
1346 stats->ipackets = (vport_stats.rx_unicast_pkts_vport +
1347 vport_stats.rx_multicast_pkts_vport +
1348 vport_stats.rx_broadcast_pkts_vport -
1351 stats->opackets = (vport_stats.tx_unicast_pkts_vport +
1352 vport_stats.tx_multicast_pkts_vport +
1353 vport_stats.tx_broadcast_pkts_vport);
1355 stats->ibytes = (vport_stats.rx_unicast_bytes_vport +
1356 vport_stats.rx_multicast_bytes_vport +
1357 vport_stats.rx_broadcast_bytes_vport);
1359 stats->obytes = (vport_stats.tx_unicast_bytes_vport +
1360 vport_stats.tx_multicast_bytes_vport +
1361 vport_stats.tx_broadcast_bytes_vport);
1366 * DPDK callback to clear device statistics.
1369 * Pointer to Ethernet device structure.
1371 static int hinic_dev_stats_reset(struct rte_eth_dev *dev)
1374 struct hinic_rxq *rxq = NULL;
1375 struct hinic_txq *txq = NULL;
1376 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
1379 ret = hinic_clear_vport_stats(nic_dev->hwdev);
1383 for (qid = 0; qid < nic_dev->num_rq; qid++) {
1384 rxq = nic_dev->rxqs[qid];
1385 hinic_rxq_stats_reset(rxq);
1388 for (qid = 0; qid < nic_dev->num_sq; qid++) {
1389 txq = nic_dev->txqs[qid];
1390 hinic_txq_stats_reset(txq);
1397 * DPDK callback to clear device extended statistics.
1400 * Pointer to Ethernet device structure.
1402 static int hinic_dev_xstats_reset(struct rte_eth_dev *dev)
1404 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
1407 ret = hinic_dev_stats_reset(dev);
1411 if (hinic_func_type(nic_dev->hwdev) != TYPE_VF) {
1412 ret = hinic_clear_phy_port_stats(nic_dev->hwdev);
1420 static void hinic_gen_random_mac_addr(struct rte_ether_addr *mac_addr)
1422 uint64_t random_value;
1424 /* Set Organizationally Unique Identifier (OUI) prefix */
1425 mac_addr->addr_bytes[0] = 0x00;
1426 mac_addr->addr_bytes[1] = 0x09;
1427 mac_addr->addr_bytes[2] = 0xC0;
1428 /* Force indication of locally assigned MAC address. */
1429 mac_addr->addr_bytes[0] |= RTE_ETHER_LOCAL_ADMIN_ADDR;
1430 /* Generate the last 3 bytes of the MAC address with a random number. */
1431 random_value = rte_rand();
1432 memcpy(&mac_addr->addr_bytes[3], &random_value, 3);
1436 * Init mac_vlan table in NIC.
1439 * Pointer to Ethernet device structure.
1442 * 0 on success and stats is filled,
1443 * negative error value otherwise.
1445 static int hinic_init_mac_addr(struct rte_eth_dev *eth_dev)
1447 struct hinic_nic_dev *nic_dev =
1448 HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(eth_dev);
1449 uint8_t addr_bytes[RTE_ETHER_ADDR_LEN];
1453 rc = hinic_get_default_mac(nic_dev->hwdev, addr_bytes);
1457 rte_ether_addr_copy((struct rte_ether_addr *)addr_bytes,
1458 ð_dev->data->mac_addrs[0]);
1459 if (rte_is_zero_ether_addr(ð_dev->data->mac_addrs[0]))
1460 hinic_gen_random_mac_addr(ð_dev->data->mac_addrs[0]);
1462 func_id = hinic_global_func_id(nic_dev->hwdev);
1463 rc = hinic_set_mac(nic_dev->hwdev,
1464 eth_dev->data->mac_addrs[0].addr_bytes,
1466 if (rc && rc != HINIC_PF_SET_VF_ALREADY)
1469 rte_ether_addr_copy(ð_dev->data->mac_addrs[0],
1470 &nic_dev->default_addr);
1475 static void hinic_delete_mc_addr_list(struct hinic_nic_dev *nic_dev)
1480 func_id = hinic_global_func_id(nic_dev->hwdev);
1482 for (i = 0; i < HINIC_MAX_MC_MAC_ADDRS; i++) {
1483 if (rte_is_zero_ether_addr(&nic_dev->mc_list[i]))
1486 hinic_del_mac(nic_dev->hwdev, nic_dev->mc_list[i].addr_bytes,
1488 memset(&nic_dev->mc_list[i], 0, sizeof(struct rte_ether_addr));
1493 * Deinit mac_vlan table in NIC.
1496 * Pointer to Ethernet device structure.
1499 * 0 on success and stats is filled,
1500 * negative error value otherwise.
1502 static void hinic_deinit_mac_addr(struct rte_eth_dev *eth_dev)
1504 struct hinic_nic_dev *nic_dev =
1505 HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(eth_dev);
1510 func_id = hinic_global_func_id(nic_dev->hwdev);
1512 for (i = 0; i < HINIC_MAX_UC_MAC_ADDRS; i++) {
1513 if (rte_is_zero_ether_addr(ð_dev->data->mac_addrs[i]))
1516 rc = hinic_del_mac(nic_dev->hwdev,
1517 eth_dev->data->mac_addrs[i].addr_bytes,
1519 if (rc && rc != HINIC_PF_SET_VF_ALREADY)
1520 PMD_DRV_LOG(ERR, "Delete mac table failed, dev_name: %s",
1521 eth_dev->data->name);
1523 memset(ð_dev->data->mac_addrs[i], 0,
1524 sizeof(struct rte_ether_addr));
1527 /* delete multicast mac addrs */
1528 hinic_delete_mc_addr_list(nic_dev);
1530 rte_free(nic_dev->mc_list);
1534 static int hinic_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
1536 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
1537 uint32_t frame_size;
1540 PMD_DRV_LOG(INFO, "Set port mtu, port_id: %d, mtu: %d, max_pkt_len: %d",
1541 dev->data->port_id, mtu, HINIC_MTU_TO_PKTLEN(mtu));
1543 if (mtu < HINIC_MIN_MTU_SIZE || mtu > HINIC_MAX_MTU_SIZE) {
1544 PMD_DRV_LOG(ERR, "Invalid mtu: %d, must between %d and %d",
1545 mtu, HINIC_MIN_MTU_SIZE, HINIC_MAX_MTU_SIZE);
1549 ret = hinic_set_port_mtu(nic_dev->hwdev, mtu);
1551 PMD_DRV_LOG(ERR, "Set port mtu failed, ret: %d", ret);
1555 /* update max frame size */
1556 frame_size = HINIC_MTU_TO_PKTLEN(mtu);
1557 if (frame_size > HINIC_ETH_MAX_LEN)
1558 dev->data->dev_conf.rxmode.offloads |=
1559 DEV_RX_OFFLOAD_JUMBO_FRAME;
1561 dev->data->dev_conf.rxmode.offloads &=
1562 ~DEV_RX_OFFLOAD_JUMBO_FRAME;
1564 dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
1565 nic_dev->mtu_size = mtu;
1570 static void hinic_store_vlan_filter(struct hinic_nic_dev *nic_dev,
1571 u16 vlan_id, bool on)
1573 u32 vid_idx, vid_bit;
1575 vid_idx = HINIC_VFTA_IDX(vlan_id);
1576 vid_bit = HINIC_VFTA_BIT(vlan_id);
1579 nic_dev->vfta[vid_idx] |= vid_bit;
1581 nic_dev->vfta[vid_idx] &= ~vid_bit;
1584 static bool hinic_find_vlan_filter(struct hinic_nic_dev *nic_dev,
1587 u32 vid_idx, vid_bit;
1589 vid_idx = HINIC_VFTA_IDX(vlan_id);
1590 vid_bit = HINIC_VFTA_BIT(vlan_id);
1592 return (nic_dev->vfta[vid_idx] & vid_bit) ? TRUE : FALSE;
1596 * DPDK callback to set vlan filter.
1599 * Pointer to Ethernet device structure.
1601 * vlan id is used to filter vlan packets
1603 * enable disable or enable vlan filter function
1605 static int hinic_vlan_filter_set(struct rte_eth_dev *dev,
1606 uint16_t vlan_id, int enable)
1608 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
1612 if (vlan_id > RTE_ETHER_MAX_VLAN_ID)
1618 func_id = hinic_global_func_id(nic_dev->hwdev);
1621 /* If vlanid is already set, just return */
1622 if (hinic_find_vlan_filter(nic_dev, vlan_id)) {
1623 PMD_DRV_LOG(INFO, "Vlan %u has been added, device: %s",
1624 vlan_id, nic_dev->proc_dev_name);
1628 err = hinic_add_remove_vlan(nic_dev->hwdev, vlan_id,
1631 /* If vlanid can't be found, just return */
1632 if (!hinic_find_vlan_filter(nic_dev, vlan_id)) {
1633 PMD_DRV_LOG(INFO, "Vlan %u is not in the vlan filter list, device: %s",
1634 vlan_id, nic_dev->proc_dev_name);
1638 err = hinic_add_remove_vlan(nic_dev->hwdev, vlan_id,
1643 PMD_DRV_LOG(ERR, "%s vlan failed, func_id: %d, vlan_id: %d, err: %d",
1644 enable ? "Add" : "Remove", func_id, vlan_id, err);
1648 hinic_store_vlan_filter(nic_dev, vlan_id, enable);
1650 PMD_DRV_LOG(INFO, "%s vlan %u succeed, device: %s",
1651 enable ? "Add" : "Remove", vlan_id, nic_dev->proc_dev_name);
1656 * DPDK callback to enable or disable vlan offload.
1659 * Pointer to Ethernet device structure.
1661 * Definitions used for VLAN setting
1663 static int hinic_vlan_offload_set(struct rte_eth_dev *dev, int mask)
1665 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
1666 struct rte_eth_rxmode *rxmode = &dev->data->dev_conf.rxmode;
1670 /* Enable or disable VLAN filter */
1671 if (mask & ETH_VLAN_FILTER_MASK) {
1672 on = (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_FILTER) ?
1674 err = hinic_config_vlan_filter(nic_dev->hwdev, on);
1675 if (err == HINIC_MGMT_CMD_UNSUPPORTED) {
1676 PMD_DRV_LOG(WARNING,
1677 "Current matching version does not support vlan filter configuration, device: %s, port_id: %d",
1678 nic_dev->proc_dev_name, dev->data->port_id);
1680 PMD_DRV_LOG(ERR, "Failed to %s vlan filter, device: %s, port_id: %d, err: %d",
1681 on ? "enable" : "disable",
1682 nic_dev->proc_dev_name,
1683 dev->data->port_id, err);
1687 PMD_DRV_LOG(INFO, "%s vlan filter succeed, device: %s, port_id: %d",
1688 on ? "Enable" : "Disable",
1689 nic_dev->proc_dev_name, dev->data->port_id);
1692 /* Enable or disable VLAN stripping */
1693 if (mask & ETH_VLAN_STRIP_MASK) {
1694 on = (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_STRIP) ?
1696 err = hinic_set_rx_vlan_offload(nic_dev->hwdev, on);
1698 PMD_DRV_LOG(ERR, "Failed to %s vlan strip, device: %s, port_id: %d, err: %d",
1699 on ? "enable" : "disable",
1700 nic_dev->proc_dev_name,
1701 dev->data->port_id, err);
1705 PMD_DRV_LOG(INFO, "%s vlan strip succeed, device: %s, port_id: %d",
1706 on ? "Enable" : "Disable",
1707 nic_dev->proc_dev_name, dev->data->port_id);
1713 static void hinic_remove_all_vlanid(struct rte_eth_dev *eth_dev)
1715 struct hinic_nic_dev *nic_dev =
1716 HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(eth_dev);
1720 func_id = hinic_global_func_id(nic_dev->hwdev);
1721 for (i = 0; i <= RTE_ETHER_MAX_VLAN_ID; i++) {
1722 /* If can't find it, continue */
1723 if (!hinic_find_vlan_filter(nic_dev, i))
1726 (void)hinic_add_remove_vlan(nic_dev->hwdev, i, func_id, FALSE);
1727 hinic_store_vlan_filter(nic_dev, i, false);
1731 static int hinic_set_dev_allmulticast(struct hinic_nic_dev *nic_dev,
1737 err = hinic_mutex_lock(&nic_dev->rx_mode_mutex);
1741 rx_mode_ctrl = nic_dev->rx_mode_status;
1744 rx_mode_ctrl |= HINIC_RX_MODE_MC_ALL;
1746 rx_mode_ctrl &= (~HINIC_RX_MODE_MC_ALL);
1748 err = hinic_config_rx_mode(nic_dev, rx_mode_ctrl);
1750 (void)hinic_mutex_unlock(&nic_dev->rx_mode_mutex);
1756 * DPDK callback to enable allmulticast mode.
1759 * Pointer to Ethernet device structure.
1763 * negative error value otherwise.
1765 static int hinic_dev_allmulticast_enable(struct rte_eth_dev *dev)
1768 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
1770 ret = hinic_set_dev_allmulticast(nic_dev, true);
1772 PMD_DRV_LOG(ERR, "Enable allmulticast failed, error: %d", ret);
1776 PMD_DRV_LOG(INFO, "Enable allmulticast succeed, nic_dev: %s, port_id: %d",
1777 nic_dev->proc_dev_name, dev->data->port_id);
1782 * DPDK callback to disable allmulticast mode.
1785 * Pointer to Ethernet device structure.
1789 * negative error value otherwise.
1791 static int hinic_dev_allmulticast_disable(struct rte_eth_dev *dev)
1794 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
1796 ret = hinic_set_dev_allmulticast(nic_dev, false);
1798 PMD_DRV_LOG(ERR, "Disable allmulticast failed, error: %d", ret);
1802 PMD_DRV_LOG(INFO, "Disable allmulticast succeed, nic_dev: %s, port_id: %d",
1803 nic_dev->proc_dev_name, dev->data->port_id);
1808 * DPDK callback to enable promiscuous mode.
1811 * Pointer to Ethernet device structure.
1815 * negative error value otherwise.
1817 static int hinic_dev_promiscuous_enable(struct rte_eth_dev *dev)
1820 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
1822 PMD_DRV_LOG(INFO, "Enable promiscuous, nic_dev: %s, port_id: %d, promisc: %d",
1823 nic_dev->proc_dev_name, dev->data->port_id,
1824 dev->data->promiscuous);
1826 rc = hinic_set_dev_promiscuous(nic_dev, true);
1828 PMD_DRV_LOG(ERR, "Enable promiscuous failed");
1834 * DPDK callback to disable promiscuous mode.
1837 * Pointer to Ethernet device structure.
1841 * negative error value otherwise.
1843 static int hinic_dev_promiscuous_disable(struct rte_eth_dev *dev)
1846 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
1848 PMD_DRV_LOG(INFO, "Disable promiscuous, nic_dev: %s, port_id: %d, promisc: %d",
1849 nic_dev->proc_dev_name, dev->data->port_id,
1850 dev->data->promiscuous);
1852 rc = hinic_set_dev_promiscuous(nic_dev, false);
1854 PMD_DRV_LOG(ERR, "Disable promiscuous failed");
1859 static int hinic_flow_ctrl_get(struct rte_eth_dev *dev,
1860 struct rte_eth_fc_conf *fc_conf)
1862 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
1863 struct nic_pause_config nic_pause;
1866 memset(&nic_pause, 0, sizeof(nic_pause));
1868 err = hinic_get_pause_info(nic_dev->hwdev, &nic_pause);
1872 if (nic_dev->pause_set || !nic_pause.auto_neg) {
1873 nic_pause.rx_pause = nic_dev->nic_pause.rx_pause;
1874 nic_pause.tx_pause = nic_dev->nic_pause.tx_pause;
1877 fc_conf->autoneg = nic_pause.auto_neg;
1879 if (nic_pause.tx_pause && nic_pause.rx_pause)
1880 fc_conf->mode = RTE_FC_FULL;
1881 else if (nic_pause.tx_pause)
1882 fc_conf->mode = RTE_FC_TX_PAUSE;
1883 else if (nic_pause.rx_pause)
1884 fc_conf->mode = RTE_FC_RX_PAUSE;
1886 fc_conf->mode = RTE_FC_NONE;
1891 static int hinic_flow_ctrl_set(struct rte_eth_dev *dev,
1892 struct rte_eth_fc_conf *fc_conf)
1894 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
1895 struct nic_pause_config nic_pause;
1898 nic_pause.auto_neg = fc_conf->autoneg;
1900 if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
1901 (fc_conf->mode & RTE_FC_TX_PAUSE))
1902 nic_pause.tx_pause = true;
1904 nic_pause.tx_pause = false;
1906 if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
1907 (fc_conf->mode & RTE_FC_RX_PAUSE))
1908 nic_pause.rx_pause = true;
1910 nic_pause.rx_pause = false;
1912 err = hinic_set_pause_config(nic_dev->hwdev, nic_pause);
1916 nic_dev->pause_set = true;
1917 nic_dev->nic_pause.auto_neg = nic_pause.auto_neg;
1918 nic_dev->nic_pause.rx_pause = nic_pause.rx_pause;
1919 nic_dev->nic_pause.tx_pause = nic_pause.tx_pause;
1921 PMD_DRV_LOG(INFO, "Set pause options, tx: %s, rx: %s, auto: %s\n",
1922 nic_pause.tx_pause ? "on" : "off",
1923 nic_pause.rx_pause ? "on" : "off",
1924 nic_pause.auto_neg ? "on" : "off");
1930 * DPDK callback to update the RSS hash key and RSS hash type.
1933 * Pointer to Ethernet device structure.
1935 * RSS configuration data.
1938 * 0 on success, negative error value otherwise.
1940 static int hinic_rss_hash_update(struct rte_eth_dev *dev,
1941 struct rte_eth_rss_conf *rss_conf)
1943 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
1944 u8 tmpl_idx = nic_dev->rss_tmpl_idx;
1945 u8 hashkey[HINIC_RSS_KEY_SIZE] = {0};
1946 u8 prio_tc[HINIC_DCB_UP_MAX] = {0};
1947 u64 rss_hf = rss_conf->rss_hf;
1948 struct nic_rss_type rss_type = {0};
1951 if (!(nic_dev->flags & ETH_MQ_RX_RSS_FLAG)) {
1952 PMD_DRV_LOG(WARNING, "RSS is not enabled");
1956 if (rss_conf->rss_key_len > HINIC_RSS_KEY_SIZE) {
1957 PMD_DRV_LOG(ERR, "Invalid rss key, rss_key_len: %d",
1958 rss_conf->rss_key_len);
1962 if (rss_conf->rss_key) {
1963 memcpy(hashkey, rss_conf->rss_key, rss_conf->rss_key_len);
1964 err = hinic_rss_set_template_tbl(nic_dev->hwdev, tmpl_idx,
1967 PMD_DRV_LOG(ERR, "Set rss template table failed");
1972 rss_type.ipv4 = (rss_hf & (ETH_RSS_IPV4 | ETH_RSS_FRAG_IPV4)) ? 1 : 0;
1973 rss_type.tcp_ipv4 = (rss_hf & ETH_RSS_NONFRAG_IPV4_TCP) ? 1 : 0;
1974 rss_type.ipv6 = (rss_hf & (ETH_RSS_IPV6 | ETH_RSS_FRAG_IPV6)) ? 1 : 0;
1975 rss_type.ipv6_ext = (rss_hf & ETH_RSS_IPV6_EX) ? 1 : 0;
1976 rss_type.tcp_ipv6 = (rss_hf & ETH_RSS_NONFRAG_IPV6_TCP) ? 1 : 0;
1977 rss_type.tcp_ipv6_ext = (rss_hf & ETH_RSS_IPV6_TCP_EX) ? 1 : 0;
1978 rss_type.udp_ipv4 = (rss_hf & ETH_RSS_NONFRAG_IPV4_UDP) ? 1 : 0;
1979 rss_type.udp_ipv6 = (rss_hf & ETH_RSS_NONFRAG_IPV6_UDP) ? 1 : 0;
1981 err = hinic_set_rss_type(nic_dev->hwdev, tmpl_idx, rss_type);
1983 PMD_DRV_LOG(ERR, "Set rss type table failed");
1990 memset(prio_tc, 0, sizeof(prio_tc));
1991 (void)hinic_rss_cfg(nic_dev->hwdev, 0, tmpl_idx, 0, prio_tc);
1996 * DPDK callback to get the RSS hash configuration.
1999 * Pointer to Ethernet device structure.
2001 * RSS configuration data.
2004 * 0 on success, negative error value otherwise.
2006 static int hinic_rss_conf_get(struct rte_eth_dev *dev,
2007 struct rte_eth_rss_conf *rss_conf)
2009 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
2010 u8 tmpl_idx = nic_dev->rss_tmpl_idx;
2011 u8 hashkey[HINIC_RSS_KEY_SIZE] = {0};
2012 struct nic_rss_type rss_type = {0};
2015 if (!(nic_dev->flags & ETH_MQ_RX_RSS_FLAG)) {
2016 PMD_DRV_LOG(WARNING, "RSS is not enabled");
2020 err = hinic_rss_get_template_tbl(nic_dev->hwdev, tmpl_idx, hashkey);
2024 if (rss_conf->rss_key &&
2025 rss_conf->rss_key_len >= HINIC_RSS_KEY_SIZE) {
2026 memcpy(rss_conf->rss_key, hashkey, sizeof(hashkey));
2027 rss_conf->rss_key_len = sizeof(hashkey);
2030 err = hinic_get_rss_type(nic_dev->hwdev, tmpl_idx, &rss_type);
2034 rss_conf->rss_hf = 0;
2035 rss_conf->rss_hf |= rss_type.ipv4 ?
2036 (ETH_RSS_IPV4 | ETH_RSS_FRAG_IPV4) : 0;
2037 rss_conf->rss_hf |= rss_type.tcp_ipv4 ? ETH_RSS_NONFRAG_IPV4_TCP : 0;
2038 rss_conf->rss_hf |= rss_type.ipv6 ?
2039 (ETH_RSS_IPV6 | ETH_RSS_FRAG_IPV6) : 0;
2040 rss_conf->rss_hf |= rss_type.ipv6_ext ? ETH_RSS_IPV6_EX : 0;
2041 rss_conf->rss_hf |= rss_type.tcp_ipv6 ? ETH_RSS_NONFRAG_IPV6_TCP : 0;
2042 rss_conf->rss_hf |= rss_type.tcp_ipv6_ext ? ETH_RSS_IPV6_TCP_EX : 0;
2043 rss_conf->rss_hf |= rss_type.udp_ipv4 ? ETH_RSS_NONFRAG_IPV4_UDP : 0;
2044 rss_conf->rss_hf |= rss_type.udp_ipv6 ? ETH_RSS_NONFRAG_IPV6_UDP : 0;
2050 * DPDK callback to update the RSS redirection table.
2053 * Pointer to Ethernet device structure.
2055 * Pointer to RSS reta configuration data.
2057 * Size of the RETA table.
2060 * 0 on success, negative error value otherwise.
2062 static int hinic_rss_indirtbl_update(struct rte_eth_dev *dev,
2063 struct rte_eth_rss_reta_entry64 *reta_conf,
2066 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
2067 u8 tmpl_idx = nic_dev->rss_tmpl_idx;
2068 u8 prio_tc[HINIC_DCB_UP_MAX] = {0};
2069 u32 indirtbl[NIC_RSS_INDIR_SIZE] = {0};
2074 if (!(nic_dev->flags & ETH_MQ_RX_RSS_FLAG))
2077 if (reta_size != NIC_RSS_INDIR_SIZE) {
2078 PMD_DRV_LOG(ERR, "Invalid reta size, reta_size: %d", reta_size);
2082 err = hinic_rss_get_indir_tbl(nic_dev->hwdev, tmpl_idx, indirtbl);
2086 /* update rss indir_tbl */
2087 for (i = 0; i < reta_size; i++) {
2088 idx = i / RTE_RETA_GROUP_SIZE;
2089 shift = i % RTE_RETA_GROUP_SIZE;
2091 if (reta_conf[idx].reta[shift] >= nic_dev->num_rq) {
2092 PMD_DRV_LOG(ERR, "Invalid reta entry, indirtbl[%d]: %d "
2093 "exceeds the maximum rxq num: %d", i,
2094 reta_conf[idx].reta[shift], nic_dev->num_rq);
2098 if (reta_conf[idx].mask & (1ULL << shift))
2099 indirtbl[i] = reta_conf[idx].reta[shift];
2102 err = hinic_rss_set_indir_tbl(nic_dev->hwdev, tmpl_idx, indirtbl);
2106 nic_dev->rss_indir_flag = true;
2111 memset(prio_tc, 0, sizeof(prio_tc));
2112 (void)hinic_rss_cfg(nic_dev->hwdev, 0, tmpl_idx, 0, prio_tc);
2118 * DPDK callback to get the RSS indirection table.
2121 * Pointer to Ethernet device structure.
2123 * Pointer to RSS reta configuration data.
2125 * Size of the RETA table.
2128 * 0 on success, negative error value otherwise.
2130 static int hinic_rss_indirtbl_query(struct rte_eth_dev *dev,
2131 struct rte_eth_rss_reta_entry64 *reta_conf,
2134 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
2135 u8 tmpl_idx = nic_dev->rss_tmpl_idx;
2137 u32 indirtbl[NIC_RSS_INDIR_SIZE] = {0};
2141 if (reta_size != NIC_RSS_INDIR_SIZE) {
2142 PMD_DRV_LOG(ERR, "Invalid reta size, reta_size: %d", reta_size);
2146 err = hinic_rss_get_indir_tbl(nic_dev->hwdev, tmpl_idx, indirtbl);
2148 PMD_DRV_LOG(ERR, "Get rss indirect table failed, error: %d",
2153 for (i = 0; i < reta_size; i++) {
2154 idx = i / RTE_RETA_GROUP_SIZE;
2155 shift = i % RTE_RETA_GROUP_SIZE;
2156 if (reta_conf[idx].mask & (1ULL << shift))
2157 reta_conf[idx].reta[shift] = (uint16_t)indirtbl[i];
2164 * DPDK callback to get extended device statistics.
2167 * Pointer to Ethernet device.
2169 * Pointer to rte extended stats table.
2171 * The size of the stats table.
2174 * Number of extended stats on success and stats is filled,
2175 * negative error value otherwise.
2177 static int hinic_dev_xstats_get(struct rte_eth_dev *dev,
2178 struct rte_eth_xstat *xstats,
2184 struct hinic_nic_dev *nic_dev;
2185 struct hinic_phy_port_stats port_stats;
2186 struct hinic_vport_stats vport_stats;
2187 struct hinic_rxq *rxq = NULL;
2188 struct hinic_rxq_stats rxq_stats;
2189 struct hinic_txq *txq = NULL;
2190 struct hinic_txq_stats txq_stats;
2192 nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
2193 count = hinic_xstats_calc_num(nic_dev);
2199 /* Get stats from hinic_rxq_stats */
2200 for (qid = 0; qid < nic_dev->num_rq; qid++) {
2201 rxq = nic_dev->rxqs[qid];
2202 hinic_rxq_get_stats(rxq, &rxq_stats);
2204 for (i = 0; i < HINIC_RXQ_XSTATS_NUM; i++) {
2205 xstats[count].value =
2206 *(uint64_t *)(((char *)&rxq_stats) +
2207 hinic_rxq_stats_strings[i].offset);
2208 xstats[count].id = count;
2213 /* Get stats from hinic_txq_stats */
2214 for (qid = 0; qid < nic_dev->num_sq; qid++) {
2215 txq = nic_dev->txqs[qid];
2216 hinic_txq_get_stats(txq, &txq_stats);
2218 for (i = 0; i < HINIC_TXQ_XSTATS_NUM; i++) {
2219 xstats[count].value =
2220 *(uint64_t *)(((char *)&txq_stats) +
2221 hinic_txq_stats_strings[i].offset);
2222 xstats[count].id = count;
2227 /* Get stats from hinic_vport_stats */
2228 err = hinic_get_vport_stats(nic_dev->hwdev, &vport_stats);
2232 for (i = 0; i < HINIC_VPORT_XSTATS_NUM; i++) {
2233 xstats[count].value =
2234 *(uint64_t *)(((char *)&vport_stats) +
2235 hinic_vport_stats_strings[i].offset);
2236 xstats[count].id = count;
2240 if (HINIC_IS_VF(nic_dev->hwdev))
2243 /* Get stats from hinic_phy_port_stats */
2244 err = hinic_get_phy_port_stats(nic_dev->hwdev, &port_stats);
2248 for (i = 0; i < HINIC_PHYPORT_XSTATS_NUM; i++) {
2249 xstats[count].value = *(uint64_t *)(((char *)&port_stats) +
2250 hinic_phyport_stats_strings[i].offset);
2251 xstats[count].id = count;
2258 static void hinic_rxq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
2259 struct rte_eth_rxq_info *qinfo)
2261 struct hinic_rxq *rxq = dev->data->rx_queues[queue_id];
2263 qinfo->mp = rxq->mb_pool;
2264 qinfo->nb_desc = rxq->q_depth;
2267 static void hinic_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
2268 struct rte_eth_txq_info *qinfo)
2270 struct hinic_txq *txq = dev->data->tx_queues[queue_id];
2272 qinfo->nb_desc = txq->q_depth;
2276 * DPDK callback to retrieve names of extended device statistics
2279 * Pointer to Ethernet device structure.
2280 * @param xstats_names
2281 * Buffer to insert names into.
2284 * Number of xstats names.
2286 static int hinic_dev_xstats_get_names(struct rte_eth_dev *dev,
2287 struct rte_eth_xstat_name *xstats_names,
2288 __rte_unused unsigned int limit)
2290 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
2294 if (xstats_names == NULL)
2295 return hinic_xstats_calc_num(nic_dev);
2297 /* get pmd rxq stats */
2298 for (q_num = 0; q_num < nic_dev->num_rq; q_num++) {
2299 for (i = 0; i < HINIC_RXQ_XSTATS_NUM; i++) {
2300 snprintf(xstats_names[count].name,
2301 sizeof(xstats_names[count].name),
2303 q_num, hinic_rxq_stats_strings[i].name);
2308 /* get pmd txq stats */
2309 for (q_num = 0; q_num < nic_dev->num_sq; q_num++) {
2310 for (i = 0; i < HINIC_TXQ_XSTATS_NUM; i++) {
2311 snprintf(xstats_names[count].name,
2312 sizeof(xstats_names[count].name),
2314 q_num, hinic_txq_stats_strings[i].name);
2319 /* get vport stats */
2320 for (i = 0; i < HINIC_VPORT_XSTATS_NUM; i++) {
2321 snprintf(xstats_names[count].name,
2322 sizeof(xstats_names[count].name),
2323 "%s", hinic_vport_stats_strings[i].name);
2327 if (HINIC_IS_VF(nic_dev->hwdev))
2330 /* get phy port stats */
2331 for (i = 0; i < HINIC_PHYPORT_XSTATS_NUM; i++) {
2332 snprintf(xstats_names[count].name,
2333 sizeof(xstats_names[count].name),
2334 "%s", hinic_phyport_stats_strings[i].name);
2342 * DPDK callback to set mac address
2345 * Pointer to Ethernet device structure.
2347 * Pointer to mac address
2349 * 0 on success, negative error value otherwise.
2351 static int hinic_set_mac_addr(struct rte_eth_dev *dev,
2352 struct rte_ether_addr *addr)
2354 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
2358 func_id = hinic_global_func_id(nic_dev->hwdev);
2359 err = hinic_update_mac(nic_dev->hwdev, nic_dev->default_addr.addr_bytes,
2360 addr->addr_bytes, 0, func_id);
2364 rte_ether_addr_copy(addr, &nic_dev->default_addr);
2366 PMD_DRV_LOG(INFO, "Set new mac address " RTE_ETHER_ADDR_PRT_FMT,
2367 RTE_ETHER_ADDR_BYTES(addr));
2373 * DPDK callback to remove a MAC address.
2376 * Pointer to Ethernet device structure.
2378 * MAC address index, should less than 128.
2380 static void hinic_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index)
2382 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
2386 if (index >= HINIC_MAX_UC_MAC_ADDRS) {
2387 PMD_DRV_LOG(INFO, "Remove mac index(%u) is out of range",
2392 func_id = hinic_global_func_id(nic_dev->hwdev);
2393 ret = hinic_del_mac(nic_dev->hwdev,
2394 dev->data->mac_addrs[index].addr_bytes, 0, func_id);
2398 memset(&dev->data->mac_addrs[index], 0, sizeof(struct rte_ether_addr));
2402 * DPDK callback to add a MAC address.
2405 * Pointer to Ethernet device structure.
2407 * Pointer to MAC address
2409 * MAC address index, should less than 128.
2411 * VMDq pool index(not used).
2414 * 0 on success, negative error value otherwise.
2416 static int hinic_mac_addr_add(struct rte_eth_dev *dev,
2417 struct rte_ether_addr *mac_addr, uint32_t index,
2418 __rte_unused uint32_t vmdq)
2420 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
2425 if (index >= HINIC_MAX_UC_MAC_ADDRS) {
2426 PMD_DRV_LOG(INFO, "Add mac index(%u) is out of range", index);
2430 /* First, make sure this address isn't already configured. */
2431 for (i = 0; (i != HINIC_MAX_UC_MAC_ADDRS); ++i) {
2432 /* Skip this index, it's going to be reconfigured. */
2436 if (memcmp(&dev->data->mac_addrs[i],
2437 mac_addr, sizeof(*mac_addr)))
2440 PMD_DRV_LOG(INFO, "MAC address already configured");
2444 func_id = hinic_global_func_id(nic_dev->hwdev);
2445 ret = hinic_set_mac(nic_dev->hwdev, mac_addr->addr_bytes, 0, func_id);
2449 dev->data->mac_addrs[index] = *mac_addr;
2454 * DPDK callback to set multicast mac address
2457 * Pointer to Ethernet device structure.
2458 * @param mc_addr_set
2459 * Pointer to multicast mac address
2463 * 0 on success, negative error value otherwise.
2465 static int hinic_set_mc_addr_list(struct rte_eth_dev *dev,
2466 struct rte_ether_addr *mc_addr_set,
2467 uint32_t nb_mc_addr)
2469 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
2474 func_id = hinic_global_func_id(nic_dev->hwdev);
2476 /* delete old multi_cast addrs firstly */
2477 hinic_delete_mc_addr_list(nic_dev);
2479 if (nb_mc_addr > HINIC_MAX_MC_MAC_ADDRS)
2482 for (i = 0; i < nb_mc_addr; i++) {
2483 ret = hinic_set_mac(nic_dev->hwdev, mc_addr_set[i].addr_bytes,
2485 /* if add mc addr failed, set all multi_cast */
2487 hinic_delete_mc_addr_list(nic_dev);
2491 rte_ether_addr_copy(&mc_addr_set[i], &nic_dev->mc_list[i]);
2497 hinic_dev_allmulticast_enable(dev);
2503 * DPDK callback to get flow operations
2506 * Pointer to Ethernet device structure.
2508 * Pointer to operation-specific structure.
2511 * 0 on success, negative error value otherwise.
2513 static int hinic_dev_flow_ops_get(struct rte_eth_dev *dev __rte_unused,
2514 const struct rte_flow_ops **ops)
2516 *ops = &hinic_flow_ops;
2520 static int hinic_set_default_pause_feature(struct hinic_nic_dev *nic_dev)
2522 struct nic_pause_config pause_config = {0};
2525 pause_config.auto_neg = 0;
2526 pause_config.rx_pause = HINIC_DEFAUT_PAUSE_CONFIG;
2527 pause_config.tx_pause = HINIC_DEFAUT_PAUSE_CONFIG;
2529 err = hinic_set_pause_config(nic_dev->hwdev, pause_config);
2533 nic_dev->pause_set = true;
2534 nic_dev->nic_pause.auto_neg = pause_config.auto_neg;
2535 nic_dev->nic_pause.rx_pause = pause_config.rx_pause;
2536 nic_dev->nic_pause.tx_pause = pause_config.tx_pause;
2541 static int hinic_set_default_dcb_feature(struct hinic_nic_dev *nic_dev)
2543 u8 up_tc[HINIC_DCB_UP_MAX] = {0};
2544 u8 up_pgid[HINIC_DCB_UP_MAX] = {0};
2545 u8 up_bw[HINIC_DCB_UP_MAX] = {0};
2546 u8 pg_bw[HINIC_DCB_UP_MAX] = {0};
2547 u8 up_strict[HINIC_DCB_UP_MAX] = {0};
2551 for (i = 0; i < HINIC_DCB_UP_MAX; i++)
2554 return hinic_dcb_set_ets(nic_dev->hwdev, up_tc, pg_bw,
2555 up_pgid, up_bw, up_strict);
2558 static int hinic_pf_get_default_cos(struct hinic_hwdev *hwdev, u8 *cos_id)
2561 u8 valid_cos_bitmap;
2564 valid_cos_bitmap = hwdev->cfg_mgmt->svc_cap.valid_cos_bitmap;
2565 if (!valid_cos_bitmap) {
2566 PMD_DRV_LOG(ERR, "PF has none cos to support\n");
2570 for (i = 0; i < NR_MAX_COS; i++) {
2571 if (valid_cos_bitmap & BIT(i))
2572 default_cos = i; /* Find max cos id as default cos */
2575 *cos_id = default_cos;
2580 static int hinic_init_default_cos(struct hinic_nic_dev *nic_dev)
2585 if (!HINIC_IS_VF(nic_dev->hwdev)) {
2586 err = hinic_pf_get_default_cos(nic_dev->hwdev, &cos_id);
2588 PMD_DRV_LOG(ERR, "Get PF default cos failed, err: %d",
2593 err = hinic_vf_get_default_cos(nic_dev->hwdev, &cos_id);
2595 PMD_DRV_LOG(ERR, "Get VF default cos failed, err: %d",
2601 nic_dev->default_cos = cos_id;
2603 PMD_DRV_LOG(INFO, "Default cos %d", nic_dev->default_cos);
2608 static int hinic_set_default_hw_feature(struct hinic_nic_dev *nic_dev)
2612 err = hinic_init_default_cos(nic_dev);
2616 if (hinic_func_type(nic_dev->hwdev) == TYPE_VF)
2619 /* Restore DCB configure to default status */
2620 err = hinic_set_default_dcb_feature(nic_dev);
2624 /* Set pause enable, and up will disable pfc. */
2625 err = hinic_set_default_pause_feature(nic_dev);
2629 err = hinic_reset_port_link_cfg(nic_dev->hwdev);
2633 err = hinic_set_link_status_follow(nic_dev->hwdev,
2634 HINIC_LINK_FOLLOW_PORT);
2635 if (err == HINIC_MGMT_CMD_UNSUPPORTED)
2636 PMD_DRV_LOG(WARNING, "Don't support to set link status follow phy port status");
2640 return hinic_set_anti_attack(nic_dev->hwdev, true);
2643 static int32_t hinic_card_workmode_check(struct hinic_nic_dev *nic_dev)
2645 struct hinic_board_info info = { 0 };
2648 if (hinic_func_type(nic_dev->hwdev) == TYPE_VF)
2651 rc = hinic_get_board_info(nic_dev->hwdev, &info);
2655 return (info.service_mode == HINIC_SERVICE_MODE_NIC ? HINIC_OK :
2659 static int hinic_copy_mempool_init(struct hinic_nic_dev *nic_dev)
2661 nic_dev->cpy_mpool = rte_mempool_lookup(nic_dev->proc_dev_name);
2662 if (nic_dev->cpy_mpool == NULL) {
2663 nic_dev->cpy_mpool =
2664 rte_pktmbuf_pool_create(nic_dev->proc_dev_name,
2665 HINIC_COPY_MEMPOOL_DEPTH,
2667 HINIC_COPY_MBUF_SIZE,
2669 if (!nic_dev->cpy_mpool) {
2670 PMD_DRV_LOG(ERR, "Create copy mempool failed, errno: %d, dev_name: %s",
2671 rte_errno, nic_dev->proc_dev_name);
2679 static void hinic_copy_mempool_uninit(struct hinic_nic_dev *nic_dev)
2681 if (nic_dev->cpy_mpool != NULL)
2682 rte_mempool_free(nic_dev->cpy_mpool);
2685 static int hinic_init_sw_rxtxqs(struct hinic_nic_dev *nic_dev)
2690 /* allocate software txq array */
2691 txq_size = nic_dev->nic_cap.max_sqs * sizeof(*nic_dev->txqs);
2692 nic_dev->txqs = kzalloc_aligned(txq_size, GFP_KERNEL);
2693 if (!nic_dev->txqs) {
2694 PMD_DRV_LOG(ERR, "Allocate txqs failed");
2698 /* allocate software rxq array */
2699 rxq_size = nic_dev->nic_cap.max_rqs * sizeof(*nic_dev->rxqs);
2700 nic_dev->rxqs = kzalloc_aligned(rxq_size, GFP_KERNEL);
2701 if (!nic_dev->rxqs) {
2703 kfree(nic_dev->txqs);
2704 nic_dev->txqs = NULL;
2706 PMD_DRV_LOG(ERR, "Allocate rxqs failed");
2713 static void hinic_deinit_sw_rxtxqs(struct hinic_nic_dev *nic_dev)
2715 kfree(nic_dev->txqs);
2716 nic_dev->txqs = NULL;
2718 kfree(nic_dev->rxqs);
2719 nic_dev->rxqs = NULL;
2722 static int hinic_nic_dev_create(struct rte_eth_dev *eth_dev)
2724 struct hinic_nic_dev *nic_dev =
2725 HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(eth_dev);
2728 nic_dev->hwdev = rte_zmalloc("hinic_hwdev", sizeof(*nic_dev->hwdev),
2729 RTE_CACHE_LINE_SIZE);
2730 if (!nic_dev->hwdev) {
2731 PMD_DRV_LOG(ERR, "Allocate hinic hwdev memory failed, dev_name: %s",
2732 eth_dev->data->name);
2735 nic_dev->hwdev->pcidev_hdl = RTE_ETH_DEV_TO_PCI(eth_dev);
2738 rc = hinic_osdep_init(nic_dev->hwdev);
2740 PMD_DRV_LOG(ERR, "Initialize os_dep failed, dev_name: %s",
2741 eth_dev->data->name);
2742 goto init_osdep_fail;
2746 rc = hinic_hwif_res_init(nic_dev->hwdev);
2748 PMD_DRV_LOG(ERR, "Initialize hwif failed, dev_name: %s",
2749 eth_dev->data->name);
2750 goto init_hwif_fail;
2754 rc = init_cfg_mgmt(nic_dev->hwdev);
2756 PMD_DRV_LOG(ERR, "Initialize cfg_mgmt failed, dev_name: %s",
2757 eth_dev->data->name);
2758 goto init_cfgmgnt_fail;
2762 rc = hinic_comm_aeqs_init(nic_dev->hwdev);
2764 PMD_DRV_LOG(ERR, "Initialize aeqs failed, dev_name: %s",
2765 eth_dev->data->name);
2766 goto init_aeqs_fail;
2769 /* init_pf_to_mgnt */
2770 rc = hinic_comm_pf_to_mgmt_init(nic_dev->hwdev);
2772 PMD_DRV_LOG(ERR, "Initialize pf_to_mgmt failed, dev_name: %s",
2773 eth_dev->data->name);
2774 goto init_pf_to_mgmt_fail;
2778 rc = hinic_comm_func_to_func_init(nic_dev->hwdev);
2780 PMD_DRV_LOG(ERR, "Initialize func_to_func failed, dev_name: %s",
2781 eth_dev->data->name);
2782 goto init_func_to_func_fail;
2785 rc = hinic_card_workmode_check(nic_dev);
2787 PMD_DRV_LOG(ERR, "Check card workmode failed, dev_name: %s",
2788 eth_dev->data->name);
2789 goto workmode_check_fail;
2792 /* do l2nic reset to make chip clear */
2793 rc = hinic_l2nic_reset(nic_dev->hwdev);
2795 PMD_DRV_LOG(ERR, "Do l2nic reset failed, dev_name: %s",
2796 eth_dev->data->name);
2797 goto l2nic_reset_fail;
2800 /* init dma and aeq msix attribute table */
2801 (void)hinic_init_attr_table(nic_dev->hwdev);
2804 rc = hinic_comm_cmdqs_init(nic_dev->hwdev);
2806 PMD_DRV_LOG(ERR, "Initialize cmdq failed, dev_name: %s",
2807 eth_dev->data->name);
2808 goto init_cmdq_fail;
2811 /* set hardware state active */
2812 rc = hinic_activate_hwdev_state(nic_dev->hwdev);
2814 PMD_DRV_LOG(ERR, "Initialize resources state failed, dev_name: %s",
2815 eth_dev->data->name);
2816 goto init_resources_state_fail;
2819 /* init_capability */
2820 rc = hinic_init_capability(nic_dev->hwdev);
2822 PMD_DRV_LOG(ERR, "Initialize capability failed, dev_name: %s",
2823 eth_dev->data->name);
2827 /* get nic capability */
2828 if (!hinic_support_nic(nic_dev->hwdev, &nic_dev->nic_cap)) {
2829 PMD_DRV_LOG(ERR, "Hw doesn't support nic, dev_name: %s",
2830 eth_dev->data->name);
2832 goto nic_check_fail;
2835 /* init root cla and function table */
2836 rc = hinic_init_nicio(nic_dev->hwdev);
2838 PMD_DRV_LOG(ERR, "Initialize nic_io failed, dev_name: %s",
2839 eth_dev->data->name);
2840 goto init_nicio_fail;
2843 /* init_software_txrxq */
2844 rc = hinic_init_sw_rxtxqs(nic_dev);
2846 PMD_DRV_LOG(ERR, "Initialize sw_rxtxqs failed, dev_name: %s",
2847 eth_dev->data->name);
2848 goto init_sw_rxtxqs_fail;
2851 rc = hinic_copy_mempool_init(nic_dev);
2853 PMD_DRV_LOG(ERR, "Create copy mempool failed, dev_name: %s",
2854 eth_dev->data->name);
2855 goto init_mpool_fail;
2858 /* set hardware feature to default status */
2859 rc = hinic_set_default_hw_feature(nic_dev);
2861 PMD_DRV_LOG(ERR, "Initialize hardware default features failed, dev_name: %s",
2862 eth_dev->data->name);
2863 goto set_default_hw_feature_fail;
2868 set_default_hw_feature_fail:
2869 hinic_copy_mempool_uninit(nic_dev);
2872 hinic_deinit_sw_rxtxqs(nic_dev);
2874 init_sw_rxtxqs_fail:
2875 hinic_deinit_nicio(nic_dev->hwdev);
2880 hinic_deactivate_hwdev_state(nic_dev->hwdev);
2882 init_resources_state_fail:
2883 hinic_comm_cmdqs_free(nic_dev->hwdev);
2887 workmode_check_fail:
2888 hinic_comm_func_to_func_free(nic_dev->hwdev);
2890 init_func_to_func_fail:
2891 hinic_comm_pf_to_mgmt_free(nic_dev->hwdev);
2893 init_pf_to_mgmt_fail:
2894 hinic_comm_aeqs_free(nic_dev->hwdev);
2897 free_cfg_mgmt(nic_dev->hwdev);
2900 hinic_hwif_res_free(nic_dev->hwdev);
2903 hinic_osdep_deinit(nic_dev->hwdev);
2906 rte_free(nic_dev->hwdev);
2907 nic_dev->hwdev = NULL;
2912 static void hinic_nic_dev_destroy(struct rte_eth_dev *eth_dev)
2914 struct hinic_nic_dev *nic_dev =
2915 HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(eth_dev);
2917 (void)hinic_set_link_status_follow(nic_dev->hwdev,
2918 HINIC_LINK_FOLLOW_DEFAULT);
2919 hinic_copy_mempool_uninit(nic_dev);
2920 hinic_deinit_sw_rxtxqs(nic_dev);
2921 hinic_deinit_nicio(nic_dev->hwdev);
2922 hinic_deactivate_hwdev_state(nic_dev->hwdev);
2923 hinic_comm_cmdqs_free(nic_dev->hwdev);
2924 hinic_comm_func_to_func_free(nic_dev->hwdev);
2925 hinic_comm_pf_to_mgmt_free(nic_dev->hwdev);
2926 hinic_comm_aeqs_free(nic_dev->hwdev);
2927 free_cfg_mgmt(nic_dev->hwdev);
2928 hinic_hwif_res_free(nic_dev->hwdev);
2929 hinic_osdep_deinit(nic_dev->hwdev);
2930 rte_free(nic_dev->hwdev);
2931 nic_dev->hwdev = NULL;
2935 * DPDK callback to close the device.
2938 * Pointer to Ethernet device structure.
2940 static int hinic_dev_close(struct rte_eth_dev *dev)
2942 struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
2945 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
2948 if (rte_bit_relaxed_test_and_set32(HINIC_DEV_CLOSE,
2949 &nic_dev->dev_status)) {
2950 PMD_DRV_LOG(WARNING, "Device %s already closed",
2955 /* stop device first */
2956 ret = hinic_dev_stop(dev);
2958 /* rx_cqe, rx_info */
2959 hinic_free_all_rx_resources(dev);
2962 hinic_free_all_tx_resources(dev);
2964 /* free wq, pi_dma_addr */
2965 hinic_free_all_rq(nic_dev);
2967 /* free wq, db_addr */
2968 hinic_free_all_sq(nic_dev);
2970 /* deinit mac vlan tbl */
2971 hinic_deinit_mac_addr(dev);
2972 hinic_remove_all_vlanid(dev);
2974 /* disable hardware and uio interrupt */
2975 hinic_disable_interrupt(dev);
2977 /* destroy rx mode mutex */
2978 hinic_mutex_destroy(&nic_dev->rx_mode_mutex);
2980 /* deinit nic hardware device */
2981 hinic_nic_dev_destroy(dev);
2986 static const struct eth_dev_ops hinic_pmd_ops = {
2987 .dev_configure = hinic_dev_configure,
2988 .dev_infos_get = hinic_dev_infos_get,
2989 .fw_version_get = hinic_fw_version_get,
2990 .rx_queue_setup = hinic_rx_queue_setup,
2991 .tx_queue_setup = hinic_tx_queue_setup,
2992 .dev_start = hinic_dev_start,
2993 .dev_set_link_up = hinic_dev_set_link_up,
2994 .dev_set_link_down = hinic_dev_set_link_down,
2995 .link_update = hinic_link_update,
2996 .rx_queue_release = hinic_rx_queue_release,
2997 .tx_queue_release = hinic_tx_queue_release,
2998 .dev_stop = hinic_dev_stop,
2999 .dev_close = hinic_dev_close,
3000 .mtu_set = hinic_dev_set_mtu,
3001 .vlan_filter_set = hinic_vlan_filter_set,
3002 .vlan_offload_set = hinic_vlan_offload_set,
3003 .allmulticast_enable = hinic_dev_allmulticast_enable,
3004 .allmulticast_disable = hinic_dev_allmulticast_disable,
3005 .promiscuous_enable = hinic_dev_promiscuous_enable,
3006 .promiscuous_disable = hinic_dev_promiscuous_disable,
3007 .flow_ctrl_get = hinic_flow_ctrl_get,
3008 .flow_ctrl_set = hinic_flow_ctrl_set,
3009 .rss_hash_update = hinic_rss_hash_update,
3010 .rss_hash_conf_get = hinic_rss_conf_get,
3011 .reta_update = hinic_rss_indirtbl_update,
3012 .reta_query = hinic_rss_indirtbl_query,
3013 .stats_get = hinic_dev_stats_get,
3014 .stats_reset = hinic_dev_stats_reset,
3015 .xstats_get = hinic_dev_xstats_get,
3016 .xstats_reset = hinic_dev_xstats_reset,
3017 .xstats_get_names = hinic_dev_xstats_get_names,
3018 .rxq_info_get = hinic_rxq_info_get,
3019 .txq_info_get = hinic_txq_info_get,
3020 .mac_addr_set = hinic_set_mac_addr,
3021 .mac_addr_remove = hinic_mac_addr_remove,
3022 .mac_addr_add = hinic_mac_addr_add,
3023 .set_mc_addr_list = hinic_set_mc_addr_list,
3024 .flow_ops_get = hinic_dev_flow_ops_get,
3027 static const struct eth_dev_ops hinic_pmd_vf_ops = {
3028 .dev_configure = hinic_dev_configure,
3029 .dev_infos_get = hinic_dev_infos_get,
3030 .fw_version_get = hinic_fw_version_get,
3031 .rx_queue_setup = hinic_rx_queue_setup,
3032 .tx_queue_setup = hinic_tx_queue_setup,
3033 .dev_start = hinic_dev_start,
3034 .link_update = hinic_link_update,
3035 .rx_queue_release = hinic_rx_queue_release,
3036 .tx_queue_release = hinic_tx_queue_release,
3037 .dev_stop = hinic_dev_stop,
3038 .dev_close = hinic_dev_close,
3039 .mtu_set = hinic_dev_set_mtu,
3040 .vlan_filter_set = hinic_vlan_filter_set,
3041 .vlan_offload_set = hinic_vlan_offload_set,
3042 .allmulticast_enable = hinic_dev_allmulticast_enable,
3043 .allmulticast_disable = hinic_dev_allmulticast_disable,
3044 .rss_hash_update = hinic_rss_hash_update,
3045 .rss_hash_conf_get = hinic_rss_conf_get,
3046 .reta_update = hinic_rss_indirtbl_update,
3047 .reta_query = hinic_rss_indirtbl_query,
3048 .stats_get = hinic_dev_stats_get,
3049 .stats_reset = hinic_dev_stats_reset,
3050 .xstats_get = hinic_dev_xstats_get,
3051 .xstats_reset = hinic_dev_xstats_reset,
3052 .xstats_get_names = hinic_dev_xstats_get_names,
3053 .rxq_info_get = hinic_rxq_info_get,
3054 .txq_info_get = hinic_txq_info_get,
3055 .mac_addr_set = hinic_set_mac_addr,
3056 .mac_addr_remove = hinic_mac_addr_remove,
3057 .mac_addr_add = hinic_mac_addr_add,
3058 .set_mc_addr_list = hinic_set_mc_addr_list,
3059 .flow_ops_get = hinic_dev_flow_ops_get,
3062 static const struct eth_dev_ops hinic_dev_sec_ops = {
3063 .dev_infos_get = hinic_dev_infos_get,
3066 static int hinic_func_init(struct rte_eth_dev *eth_dev)
3068 struct rte_pci_device *pci_dev;
3069 struct rte_ether_addr *eth_addr;
3070 struct hinic_nic_dev *nic_dev;
3071 struct hinic_filter_info *filter_info;
3072 struct hinic_tcam_info *tcam_info;
3076 pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
3078 /* EAL is SECONDARY and eth_dev is already created */
3079 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
3080 eth_dev->dev_ops = &hinic_dev_sec_ops;
3081 PMD_DRV_LOG(INFO, "Initialize %s in secondary process",
3082 eth_dev->data->name);
3087 eth_dev->data->dev_flags |= RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS;
3089 nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(eth_dev);
3090 memset(nic_dev, 0, sizeof(*nic_dev));
3092 snprintf(nic_dev->proc_dev_name,
3093 sizeof(nic_dev->proc_dev_name),
3094 "hinic-%.4x:%.2x:%.2x.%x",
3095 pci_dev->addr.domain, pci_dev->addr.bus,
3096 pci_dev->addr.devid, pci_dev->addr.function);
3098 /* alloc mac_addrs */
3099 mac_size = HINIC_MAX_UC_MAC_ADDRS * sizeof(struct rte_ether_addr);
3100 eth_addr = rte_zmalloc("hinic_mac", mac_size, 0);
3102 PMD_DRV_LOG(ERR, "Allocate ethernet addresses' memory failed, dev_name: %s",
3103 eth_dev->data->name);
3107 eth_dev->data->mac_addrs = eth_addr;
3109 mac_size = HINIC_MAX_MC_MAC_ADDRS * sizeof(struct rte_ether_addr);
3110 nic_dev->mc_list = rte_zmalloc("hinic_mc", mac_size, 0);
3111 if (!nic_dev->mc_list) {
3112 PMD_DRV_LOG(ERR, "Allocate mcast address' memory failed, dev_name: %s",
3113 eth_dev->data->name);
3118 /* create hardware nic_device */
3119 rc = hinic_nic_dev_create(eth_dev);
3121 PMD_DRV_LOG(ERR, "Create nic device failed, dev_name: %s",
3122 eth_dev->data->name);
3123 goto create_nic_dev_fail;
3126 if (HINIC_IS_VF(nic_dev->hwdev))
3127 eth_dev->dev_ops = &hinic_pmd_vf_ops;
3129 eth_dev->dev_ops = &hinic_pmd_ops;
3131 rc = hinic_init_mac_addr(eth_dev);
3133 PMD_DRV_LOG(ERR, "Initialize mac table failed, dev_name: %s",
3134 eth_dev->data->name);
3138 /* register callback func to eal lib */
3139 rc = rte_intr_callback_register(&pci_dev->intr_handle,
3140 hinic_dev_interrupt_handler,
3143 PMD_DRV_LOG(ERR, "Register rte interrupt callback failed, dev_name: %s",
3144 eth_dev->data->name);
3145 goto reg_intr_cb_fail;
3148 /* enable uio/vfio intr/eventfd mapping */
3149 rc = rte_intr_enable(&pci_dev->intr_handle);
3151 PMD_DRV_LOG(ERR, "Enable rte interrupt failed, dev_name: %s",
3152 eth_dev->data->name);
3153 goto enable_intr_fail;
3155 rte_bit_relaxed_set32(HINIC_DEV_INTR_EN, &nic_dev->dev_status);
3157 hinic_mutex_init(&nic_dev->rx_mode_mutex, NULL);
3159 /* initialize filter info */
3160 filter_info = &nic_dev->filter;
3161 tcam_info = &nic_dev->tcam;
3162 memset(filter_info, 0, sizeof(struct hinic_filter_info));
3163 memset(tcam_info, 0, sizeof(struct hinic_tcam_info));
3164 /* initialize 5tuple filter list */
3165 TAILQ_INIT(&filter_info->fivetuple_list);
3166 TAILQ_INIT(&tcam_info->tcam_list);
3167 TAILQ_INIT(&nic_dev->filter_ntuple_list);
3168 TAILQ_INIT(&nic_dev->filter_ethertype_list);
3169 TAILQ_INIT(&nic_dev->filter_fdir_rule_list);
3170 TAILQ_INIT(&nic_dev->hinic_flow_list);
3172 rte_bit_relaxed_set32(HINIC_DEV_INIT, &nic_dev->dev_status);
3173 PMD_DRV_LOG(INFO, "Initialize %s in primary successfully",
3174 eth_dev->data->name);
3179 (void)rte_intr_callback_unregister(&pci_dev->intr_handle,
3180 hinic_dev_interrupt_handler,
3184 hinic_deinit_mac_addr(eth_dev);
3187 eth_dev->dev_ops = NULL;
3188 hinic_nic_dev_destroy(eth_dev);
3190 create_nic_dev_fail:
3191 rte_free(nic_dev->mc_list);
3192 nic_dev->mc_list = NULL;
3196 eth_dev->data->mac_addrs = NULL;
3199 PMD_DRV_LOG(ERR, "Initialize %s in primary failed",
3200 eth_dev->data->name);
3204 static int hinic_dev_init(struct rte_eth_dev *eth_dev)
3206 struct rte_pci_device *pci_dev;
3208 pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
3210 PMD_DRV_LOG(INFO, "Initializing pf hinic-%.4x:%.2x:%.2x.%x in %s process",
3211 pci_dev->addr.domain, pci_dev->addr.bus,
3212 pci_dev->addr.devid, pci_dev->addr.function,
3213 (rte_eal_process_type() == RTE_PROC_PRIMARY) ?
3214 "primary" : "secondary");
3216 /* rte_eth_dev rx_burst and tx_burst */
3217 eth_dev->rx_pkt_burst = hinic_recv_pkts;
3218 eth_dev->tx_pkt_burst = hinic_xmit_pkts;
3220 return hinic_func_init(eth_dev);
3223 static int hinic_dev_uninit(struct rte_eth_dev *dev)
3225 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
3228 hinic_dev_close(dev);
3233 static struct rte_pci_id pci_id_hinic_map[] = {
3234 { RTE_PCI_DEVICE(HINIC_HUAWEI_VENDOR_ID, HINIC_DEV_ID_PRD) },
3235 { RTE_PCI_DEVICE(HINIC_HUAWEI_VENDOR_ID, HINIC_DEV_ID_MEZZ_25GE) },
3236 { RTE_PCI_DEVICE(HINIC_HUAWEI_VENDOR_ID, HINIC_DEV_ID_MEZZ_100GE) },
3237 { RTE_PCI_DEVICE(HINIC_HUAWEI_VENDOR_ID, HINIC_DEV_ID_VF) },
3238 { RTE_PCI_DEVICE(HINIC_HUAWEI_VENDOR_ID, HINIC_DEV_ID_VF_HV) },
3239 { RTE_PCI_DEVICE(HINIC_HUAWEI_VENDOR_ID, HINIC_DEV_ID_1822_DUAL_25GE) },
3240 { RTE_PCI_DEVICE(HINIC_HUAWEI_VENDOR_ID, HINIC_DEV_ID_1822_100GE) },
3244 static int hinic_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
3245 struct rte_pci_device *pci_dev)
3247 return rte_eth_dev_pci_generic_probe(pci_dev,
3248 sizeof(struct hinic_nic_dev), hinic_dev_init);
3251 static int hinic_pci_remove(struct rte_pci_device *pci_dev)
3253 return rte_eth_dev_pci_generic_remove(pci_dev, hinic_dev_uninit);
3256 static struct rte_pci_driver rte_hinic_pmd = {
3257 .id_table = pci_id_hinic_map,
3258 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
3259 .probe = hinic_pci_probe,
3260 .remove = hinic_pci_remove,
3263 RTE_PMD_REGISTER_PCI(net_hinic, rte_hinic_pmd);
3264 RTE_PMD_REGISTER_PCI_TABLE(net_hinic, pci_id_hinic_map);
3265 RTE_LOG_REGISTER_DEFAULT(hinic_logtype, INFO);