1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(C) 2019 Marvell International Ltd.
5 #ifndef __OTX2_ETHDEV_H__
6 #define __OTX2_ETHDEV_H__
11 #include <rte_common.h>
12 #include <rte_ethdev.h>
13 #include <rte_kvargs.h>
15 #include <rte_mempool.h>
16 #include <rte_security_driver.h>
17 #include <rte_spinlock.h>
18 #include <rte_string_fns.h>
21 #include "otx2_common.h"
23 #include "otx2_flow.h"
25 #include "otx2_mempool.h"
30 #define OTX2_ETH_DEV_PMD_VERSION "1.0"
32 /* Ethdev HWCAP and Fixup flags. Use from MSB bits to avoid conflict with dev */
34 /* Minimum CQ size should be 4K */
35 #define OTX2_FIXUP_F_MIN_4K_Q BIT_ULL(63)
36 #define otx2_ethdev_fixup_is_min_4k_q(dev) \
37 ((dev)->hwcap & OTX2_FIXUP_F_MIN_4K_Q)
38 /* Limit CQ being full */
39 #define OTX2_FIXUP_F_LIMIT_CQ_FULL BIT_ULL(62)
40 #define otx2_ethdev_fixup_is_limit_cq_full(dev) \
41 ((dev)->hwcap & OTX2_FIXUP_F_LIMIT_CQ_FULL)
43 /* Used for struct otx2_eth_dev::flags */
44 #define OTX2_LINK_CFG_IN_PROGRESS_F BIT_ULL(0)
46 /* VLAN tag inserted by NIX_TX_VTAG_ACTION.
47 * In Tx space is always reserved for this in FRS.
49 #define NIX_MAX_VTAG_INS 2
50 #define NIX_MAX_VTAG_ACT_SIZE (4 * NIX_MAX_VTAG_INS)
52 /* ETH_HLEN+ETH_FCS+2*VLAN_HLEN */
53 #define NIX_L2_OVERHEAD \
54 (RTE_ETHER_HDR_LEN + RTE_ETHER_CRC_LEN + 8)
55 #define NIX_L2_MAX_LEN \
56 (RTE_ETHER_MTU + NIX_L2_OVERHEAD)
58 /* HW config of frame size doesn't include FCS */
59 #define NIX_MAX_HW_FRS 9212
60 #define NIX_MIN_HW_FRS 60
62 /* Since HW FRS includes NPC VTAG insertion space, user has reduced FRS */
64 (NIX_MAX_HW_FRS + RTE_ETHER_CRC_LEN - NIX_MAX_VTAG_ACT_SIZE)
67 (NIX_MIN_HW_FRS + RTE_ETHER_CRC_LEN)
70 (NIX_MAX_FRS - NIX_L2_OVERHEAD)
72 #define NIX_MAX_SQB 512
73 #define NIX_DEF_SQB 16
75 #define NIX_SQB_LIST_SPACE 2
76 #define NIX_RSS_RETA_SIZE_MAX 256
77 /* Group 0 will be used for RSS, 1 -7 will be used for rte_flow RSS action*/
78 #define NIX_RSS_GRPS 8
79 #define NIX_HASH_KEY_SIZE 48 /* 352 Bits */
80 #define NIX_RSS_RETA_SIZE 64
81 #define NIX_RX_MIN_DESC 16
82 #define NIX_RX_MIN_DESC_ALIGN 16
83 #define NIX_RX_NB_SEG_MAX 6
84 #define NIX_CQ_ENTRY_SZ 128
85 #define NIX_CQ_ALIGN 512
86 #define NIX_SQB_LOWER_THRESH 70
87 #define LMT_SLOT_MASK 0x7f
88 #define NIX_RX_DEFAULT_RING_SZ 4096
90 /* If PTP is enabled additional SEND MEM DESC is required which
91 * takes 2 words, hence max 7 iova address are possible
93 #if defined(RTE_LIBRTE_IEEE1588)
94 #define NIX_TX_NB_SEG_MAX 7
96 #define NIX_TX_NB_SEG_MAX 9
99 #define NIX_TX_MSEG_SG_DWORDS \
100 ((RTE_ALIGN_MUL_CEIL(NIX_TX_NB_SEG_MAX, 3) / 3) \
103 /* Apply BP/DROP when CQ is 95% full */
104 #define NIX_CQ_THRESH_LEVEL (5 * 256 / 100)
105 #define NIX_CQ_FULL_ERRATA_SKID (1024ull * 256)
107 #define CQ_OP_STAT_OP_ERR 63
108 #define CQ_OP_STAT_CQ_ERR 46
110 #define OP_ERR BIT_ULL(CQ_OP_STAT_OP_ERR)
111 #define CQ_ERR BIT_ULL(CQ_OP_STAT_CQ_ERR)
113 #define CQ_CQE_THRESH_DEFAULT 0x1ULL /* IRQ triggered when
114 * NIX_LF_CINTX_CNT[QCOUNT]
117 #define CQ_TIMER_THRESH_DEFAULT 0xAULL /* ~1usec i.e (0xA * 100nsec) */
118 #define CQ_TIMER_THRESH_MAX 255
120 #define NIX_RSS_L3_L4_SRC_DST (ETH_RSS_L3_SRC_ONLY | ETH_RSS_L3_DST_ONLY \
121 | ETH_RSS_L4_SRC_ONLY | ETH_RSS_L4_DST_ONLY)
123 #define NIX_RSS_OFFLOAD (ETH_RSS_PORT | ETH_RSS_IP | ETH_RSS_UDP |\
124 ETH_RSS_TCP | ETH_RSS_SCTP | \
125 ETH_RSS_TUNNEL | ETH_RSS_L2_PAYLOAD | \
126 NIX_RSS_L3_L4_SRC_DST | ETH_RSS_LEVEL_MASK | \
129 #define NIX_TX_OFFLOAD_CAPA ( \
130 DEV_TX_OFFLOAD_MBUF_FAST_FREE | \
131 DEV_TX_OFFLOAD_MT_LOCKFREE | \
132 DEV_TX_OFFLOAD_VLAN_INSERT | \
133 DEV_TX_OFFLOAD_QINQ_INSERT | \
134 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM | \
135 DEV_TX_OFFLOAD_OUTER_UDP_CKSUM | \
136 DEV_TX_OFFLOAD_TCP_CKSUM | \
137 DEV_TX_OFFLOAD_UDP_CKSUM | \
138 DEV_TX_OFFLOAD_SCTP_CKSUM | \
139 DEV_TX_OFFLOAD_TCP_TSO | \
140 DEV_TX_OFFLOAD_VXLAN_TNL_TSO | \
141 DEV_TX_OFFLOAD_GENEVE_TNL_TSO | \
142 DEV_TX_OFFLOAD_GRE_TNL_TSO | \
143 DEV_TX_OFFLOAD_MULTI_SEGS | \
144 DEV_TX_OFFLOAD_IPV4_CKSUM)
146 #define NIX_RX_OFFLOAD_CAPA ( \
147 DEV_RX_OFFLOAD_CHECKSUM | \
148 DEV_RX_OFFLOAD_SCTP_CKSUM | \
149 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM | \
150 DEV_RX_OFFLOAD_SCATTER | \
151 DEV_RX_OFFLOAD_JUMBO_FRAME | \
152 DEV_RX_OFFLOAD_OUTER_UDP_CKSUM | \
153 DEV_RX_OFFLOAD_VLAN_STRIP | \
154 DEV_RX_OFFLOAD_VLAN_FILTER | \
155 DEV_RX_OFFLOAD_QINQ_STRIP | \
156 DEV_RX_OFFLOAD_TIMESTAMP | \
157 DEV_RX_OFFLOAD_RSS_HASH)
159 #define NIX_DEFAULT_RSS_CTX_GROUP 0
160 #define NIX_DEFAULT_RSS_MCAM_IDX -1
162 #define otx2_ethdev_is_ptp_en(dev) ((dev)->ptp_en)
164 #define NIX_TIMESYNC_TX_CMD_LEN 8
165 /* Additional timesync values. */
166 #define OTX2_CYCLECOUNTER_MASK 0xffffffffffffffffULL
168 #define OCTEONTX2_PMD net_octeontx2
170 #define otx2_ethdev_is_same_driver(dev) \
171 (strcmp((dev)->device->driver->name, RTE_STR(OCTEONTX2_PMD)) == 0)
174 nix_q_size_16, /* 16 entries */
175 nix_q_size_64, /* 64 entries */
182 nix_q_size_1M, /* Million entries */
186 enum nix_lso_tun_type {
195 struct rte_eth_dev *eth_dev;
199 struct otx2_rss_info {
201 uint32_t flowkey_cfg;
204 uint8_t alg_idx; /* Selected algo index */
205 uint16_t ind_tbl[NIX_RSS_RETA_SIZE_MAX];
206 uint8_t key[NIX_HASH_KEY_SIZE];
209 struct otx2_eth_qconf {
211 struct rte_eth_txconf tx;
212 struct rte_eth_rxconf rx;
220 struct otx2_fc_info {
221 enum rte_eth_fc_mode mode; /**< Link flow control mode */
225 uint16_t bpid[NIX_MAX_CHAN];
228 struct vlan_mkex_info {
229 struct npc_xtract_info la_xtract;
230 struct npc_xtract_info lb_xtract;
231 uint64_t lb_lt_offset;
235 struct rte_ether_addr mcast_mac;
237 TAILQ_ENTRY(mcast_entry) next;
240 TAILQ_HEAD(otx2_nix_mc_filter_tbl, mcast_entry);
245 TAILQ_ENTRY(vlan_entry) next;
248 TAILQ_HEAD(otx2_vlan_filter_tbl, vlan_entry);
250 struct otx2_vlan_info {
251 struct otx2_vlan_filter_tbl fltr_tbl;
252 /* MKEX layer info */
253 struct mcam_entry def_tx_mcam_ent;
254 struct mcam_entry def_rx_mcam_ent;
255 struct vlan_mkex_info mkex;
256 /* Default mcam entry that matches vlan packets */
257 uint32_t def_rx_mcam_idx;
258 uint32_t def_tx_mcam_idx;
259 /* MCAM entry that matches double vlan packets */
260 uint32_t qinq_mcam_idx;
261 /* Indices of tx_vtag def registers */
262 uint32_t outer_vlan_idx;
263 uint32_t inner_vlan_idx;
264 uint16_t outer_vlan_tpid;
265 uint16_t inner_vlan_tpid;
267 /* QinQ entry allocated before default one */
268 uint8_t qinq_before_def;
269 uint8_t pvid_insert_on;
270 /* Rx vtag action type */
271 uint8_t vtag_type_idx;
278 struct otx2_eth_dev {
279 OTX2_DEV; /* Base class */
280 RTE_MARKER otx2_eth_dev_data_start;
282 uint16_t rx_chan_base;
283 uint16_t tx_chan_base;
286 uint8_t lso_tsov4_idx;
287 uint8_t lso_tsov6_idx;
288 uint8_t lso_udp_tun_idx[NIX_LSO_TUN_MAX];
289 uint8_t lso_tun_idx[NIX_LSO_TUN_MAX];
290 uint64_t lso_tun_fmt;
291 uint8_t mac_addr[RTE_ETHER_ADDR_LEN];
292 uint8_t mkex_pfl_name[MKEX_NAME_LEN];
293 uint8_t max_mac_entries;
294 bool dmac_filter_enable;
303 uint8_t configured_qints;
304 uint8_t configured_cints;
305 uint8_t configured_nb_rx_qs;
306 uint8_t configured_nb_tx_qs;
307 uint8_t ptype_disable;
308 uint16_t nix_msixoff;
312 uint16_t rss_tag_as_xor;
313 uint16_t max_sqb_count;
314 uint16_t rx_offload_flags; /* Selected Rx offload flags(NIX_RX_*_F) */
315 uint64_t rx_offloads;
316 uint16_t tx_offload_flags; /* Selected Tx offload flags(NIX_TX_*_F) */
317 uint64_t tx_offloads;
318 uint64_t rx_offload_capa;
319 uint64_t tx_offload_capa;
320 struct otx2_qint qints_mem[RTE_MAX_QUEUES_PER_PORT];
321 struct otx2_qint cints_mem[RTE_MAX_QUEUES_PER_PORT];
322 uint16_t txschq[NIX_TXSCH_LVL_CNT];
323 uint16_t txschq_contig[NIX_TXSCH_LVL_CNT];
324 uint16_t txschq_index[NIX_TXSCH_LVL_CNT];
325 uint16_t txschq_contig_index[NIX_TXSCH_LVL_CNT];
326 /* Dis-contiguous queues */
327 uint16_t txschq_list[NIX_TXSCH_LVL_CNT][MAX_TXSCHQ_PER_FUNC];
328 /* Contiguous queues */
329 uint16_t txschq_contig_list[NIX_TXSCH_LVL_CNT][MAX_TXSCHQ_PER_FUNC];
330 uint16_t otx2_tm_root_lvl;
331 uint16_t link_cfg_lvl;
333 uint16_t tm_leaf_cnt;
334 uint64_t tm_rate_min;
335 struct otx2_nix_tm_node_list node_list;
336 struct otx2_nix_tm_shaper_profile_list shaper_profile_list;
337 struct otx2_rss_info rss_info;
338 struct otx2_fc_info fc_info;
339 uint32_t txmap[RTE_ETHDEV_QUEUE_STAT_CNTRS];
340 uint32_t rxmap[RTE_ETHDEV_QUEUE_STAT_CNTRS];
341 struct otx2_npc_flow_info npc_flow;
342 struct otx2_vlan_info vlan_info;
343 struct otx2_eth_qconf *tx_qconf;
344 struct otx2_eth_qconf *rx_qconf;
345 struct rte_eth_dev *eth_dev;
346 eth_rx_burst_t rx_pkt_burst_no_offload;
349 struct otx2_timesync_info tstamp;
350 struct rte_timecounter systime_tc;
351 struct rte_timecounter rx_tstamp_tc;
352 struct rte_timecounter tx_tstamp_tc;
353 double clk_freq_mult;
356 struct otx2_nix_mc_filter_tbl mc_fltr_tbl;
357 bool sdp_link; /* SDP flag */
358 /* Inline IPsec params */
359 uint16_t ipsec_in_max_spi;
360 rte_spinlock_t ipsec_tbl_lock;
363 } __rte_cache_aligned;
365 struct otx2_eth_txq {
367 int64_t fc_cache_pkts;
372 uint16_t sqes_per_sqb_log2;
373 int16_t nb_sqb_bufs_adj;
374 uint64_t lso_tun_fmt;
375 RTE_MARKER slow_path_start;
376 uint16_t nb_sqb_bufs;
379 struct otx2_eth_dev *dev;
380 struct rte_mempool *sqb_pool;
381 struct otx2_eth_qconf qconf;
382 } __rte_cache_aligned;
384 struct otx2_eth_rxq {
385 uint64_t mbuf_initializer;
396 struct otx2_timesync_info *tstamp;
397 RTE_MARKER slow_path_start;
401 struct rte_mempool *pool;
402 enum nix_q_size_e qsize;
403 struct rte_eth_dev *eth_dev;
404 struct otx2_eth_qconf qconf;
406 } __rte_cache_aligned;
408 static inline struct otx2_eth_dev *
409 otx2_eth_pmd_priv(struct rte_eth_dev *eth_dev)
411 return eth_dev->data->dev_private;
415 int otx2_nix_info_get(struct rte_eth_dev *eth_dev,
416 struct rte_eth_dev_info *dev_info);
417 int otx2_nix_dev_flow_ops_get(struct rte_eth_dev *eth_dev,
418 const struct rte_flow_ops **ops);
419 int otx2_nix_fw_version_get(struct rte_eth_dev *eth_dev, char *fw_version,
421 int otx2_nix_get_module_info(struct rte_eth_dev *eth_dev,
422 struct rte_eth_dev_module_info *modinfo);
423 int otx2_nix_get_module_eeprom(struct rte_eth_dev *eth_dev,
424 struct rte_dev_eeprom_info *info);
425 int otx2_nix_pool_ops_supported(struct rte_eth_dev *eth_dev, const char *pool);
426 void otx2_nix_rxq_info_get(struct rte_eth_dev *eth_dev, uint16_t queue_id,
427 struct rte_eth_rxq_info *qinfo);
428 void otx2_nix_txq_info_get(struct rte_eth_dev *eth_dev, uint16_t queue_id,
429 struct rte_eth_txq_info *qinfo);
430 int otx2_rx_burst_mode_get(struct rte_eth_dev *dev, uint16_t queue_id,
431 struct rte_eth_burst_mode *mode);
432 int otx2_tx_burst_mode_get(struct rte_eth_dev *dev, uint16_t queue_id,
433 struct rte_eth_burst_mode *mode);
434 uint32_t otx2_nix_rx_queue_count(struct rte_eth_dev *eth_dev, uint16_t qidx);
435 int otx2_nix_tx_done_cleanup(void *txq, uint32_t free_cnt);
436 int otx2_nix_rx_descriptor_status(void *rx_queue, uint16_t offset);
437 int otx2_nix_tx_descriptor_status(void *tx_queue, uint16_t offset);
439 void otx2_nix_promisc_config(struct rte_eth_dev *eth_dev, int en);
440 int otx2_nix_promisc_enable(struct rte_eth_dev *eth_dev);
441 int otx2_nix_promisc_disable(struct rte_eth_dev *eth_dev);
442 int otx2_nix_allmulticast_enable(struct rte_eth_dev *eth_dev);
443 int otx2_nix_allmulticast_disable(struct rte_eth_dev *eth_dev);
444 int otx2_nix_tx_queue_start(struct rte_eth_dev *eth_dev, uint16_t qidx);
445 int otx2_nix_tx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t qidx);
446 uint64_t otx2_nix_rxq_mbuf_setup(struct otx2_eth_dev *dev, uint16_t port_id);
448 /* Multicast filter APIs */
449 void otx2_nix_mc_filter_init(struct otx2_eth_dev *dev);
450 void otx2_nix_mc_filter_fini(struct otx2_eth_dev *dev);
451 int otx2_nix_mc_addr_list_install(struct rte_eth_dev *eth_dev);
452 int otx2_nix_mc_addr_list_uninstall(struct rte_eth_dev *eth_dev);
453 int otx2_nix_set_mc_addr_list(struct rte_eth_dev *eth_dev,
454 struct rte_ether_addr *mc_addr_set,
455 uint32_t nb_mc_addr);
458 int otx2_nix_mtu_set(struct rte_eth_dev *eth_dev, uint16_t mtu);
459 int otx2_nix_recalc_mtu(struct rte_eth_dev *eth_dev);
460 void otx2_nix_enable_mseg_on_jumbo(struct otx2_eth_rxq *rxq);
464 void otx2_nix_toggle_flag_link_cfg(struct otx2_eth_dev *dev, bool set);
465 int otx2_nix_link_update(struct rte_eth_dev *eth_dev, int wait_to_complete);
466 void otx2_eth_dev_link_status_update(struct otx2_dev *dev,
467 struct cgx_link_user_info *link);
468 void otx2_eth_dev_link_status_get(struct otx2_dev *dev,
469 struct cgx_link_user_info *link);
470 int otx2_nix_dev_set_link_up(struct rte_eth_dev *eth_dev);
471 int otx2_nix_dev_set_link_down(struct rte_eth_dev *eth_dev);
472 int otx2_apply_link_speed(struct rte_eth_dev *eth_dev);
475 int otx2_nix_register_irqs(struct rte_eth_dev *eth_dev);
476 int oxt2_nix_register_queue_irqs(struct rte_eth_dev *eth_dev);
477 int oxt2_nix_register_cq_irqs(struct rte_eth_dev *eth_dev);
478 void otx2_nix_unregister_irqs(struct rte_eth_dev *eth_dev);
479 void oxt2_nix_unregister_queue_irqs(struct rte_eth_dev *eth_dev);
480 void oxt2_nix_unregister_cq_irqs(struct rte_eth_dev *eth_dev);
481 void otx2_nix_err_intr_enb_dis(struct rte_eth_dev *eth_dev, bool enb);
482 void otx2_nix_ras_intr_enb_dis(struct rte_eth_dev *eth_dev, bool enb);
484 int otx2_nix_rx_queue_intr_enable(struct rte_eth_dev *eth_dev,
485 uint16_t rx_queue_id);
486 int otx2_nix_rx_queue_intr_disable(struct rte_eth_dev *eth_dev,
487 uint16_t rx_queue_id);
490 int otx2_nix_reg_dump(struct otx2_eth_dev *dev, uint64_t *data);
491 int otx2_nix_dev_get_reg(struct rte_eth_dev *eth_dev,
492 struct rte_dev_reg_info *regs);
493 int otx2_nix_queues_ctx_dump(struct rte_eth_dev *eth_dev);
494 void otx2_nix_cqe_dump(const struct nix_cqe_hdr_s *cq);
495 void otx2_nix_tm_dump(struct otx2_eth_dev *dev);
498 int otx2_nix_dev_stats_get(struct rte_eth_dev *eth_dev,
499 struct rte_eth_stats *stats);
500 int otx2_nix_dev_stats_reset(struct rte_eth_dev *eth_dev);
502 int otx2_nix_queue_stats_mapping(struct rte_eth_dev *dev,
503 uint16_t queue_id, uint8_t stat_idx,
505 int otx2_nix_xstats_get(struct rte_eth_dev *eth_dev,
506 struct rte_eth_xstat *xstats, unsigned int n);
507 int otx2_nix_xstats_get_names(struct rte_eth_dev *eth_dev,
508 struct rte_eth_xstat_name *xstats_names,
510 int otx2_nix_xstats_reset(struct rte_eth_dev *eth_dev);
512 int otx2_nix_xstats_get_by_id(struct rte_eth_dev *eth_dev,
514 uint64_t *values, unsigned int n);
515 int otx2_nix_xstats_get_names_by_id(struct rte_eth_dev *eth_dev,
517 struct rte_eth_xstat_name *xstats_names,
521 void otx2_nix_rss_set_key(struct otx2_eth_dev *dev,
522 uint8_t *key, uint32_t key_len);
523 uint32_t otx2_rss_ethdev_to_nix(struct otx2_eth_dev *dev,
524 uint64_t ethdev_rss, uint8_t rss_level);
525 int otx2_rss_set_hf(struct otx2_eth_dev *dev,
526 uint32_t flowkey_cfg, uint8_t *alg_idx,
527 uint8_t group, int mcam_index);
528 int otx2_nix_rss_tbl_init(struct otx2_eth_dev *dev, uint8_t group,
530 int otx2_nix_rss_config(struct rte_eth_dev *eth_dev);
532 int otx2_nix_dev_reta_update(struct rte_eth_dev *eth_dev,
533 struct rte_eth_rss_reta_entry64 *reta_conf,
535 int otx2_nix_dev_reta_query(struct rte_eth_dev *eth_dev,
536 struct rte_eth_rss_reta_entry64 *reta_conf,
538 int otx2_nix_rss_hash_update(struct rte_eth_dev *eth_dev,
539 struct rte_eth_rss_conf *rss_conf);
541 int otx2_nix_rss_hash_conf_get(struct rte_eth_dev *eth_dev,
542 struct rte_eth_rss_conf *rss_conf);
545 int otx2_cgx_rxtx_start(struct otx2_eth_dev *dev);
546 int otx2_cgx_rxtx_stop(struct otx2_eth_dev *dev);
547 int otx2_cgx_mac_addr_set(struct rte_eth_dev *eth_dev,
548 struct rte_ether_addr *addr);
551 int otx2_nix_flow_ctrl_init(struct rte_eth_dev *eth_dev);
553 int otx2_nix_flow_ctrl_get(struct rte_eth_dev *eth_dev,
554 struct rte_eth_fc_conf *fc_conf);
556 int otx2_nix_flow_ctrl_set(struct rte_eth_dev *eth_dev,
557 struct rte_eth_fc_conf *fc_conf);
559 int otx2_nix_rxchan_bpid_cfg(struct rte_eth_dev *eth_dev, bool enb);
561 int otx2_nix_update_flow_ctrl_mode(struct rte_eth_dev *eth_dev);
564 int otx2_nix_vlan_offload_init(struct rte_eth_dev *eth_dev);
565 int otx2_nix_vlan_fini(struct rte_eth_dev *eth_dev);
566 int otx2_nix_vlan_offload_set(struct rte_eth_dev *eth_dev, int mask);
567 void otx2_nix_vlan_update_promisc(struct rte_eth_dev *eth_dev, int enable);
568 int otx2_nix_vlan_filter_set(struct rte_eth_dev *eth_dev, uint16_t vlan_id,
570 void otx2_nix_vlan_strip_queue_set(struct rte_eth_dev *dev,
571 uint16_t queue, int on);
572 int otx2_nix_vlan_tpid_set(struct rte_eth_dev *eth_dev,
573 enum rte_vlan_type type, uint16_t tpid);
574 int otx2_nix_vlan_pvid_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on);
576 /* Lookup configuration */
577 void *otx2_nix_fastpath_lookup_mem_get(void);
580 const uint32_t *otx2_nix_supported_ptypes_get(struct rte_eth_dev *dev);
581 int otx2_nix_ptypes_set(struct rte_eth_dev *eth_dev, uint32_t ptype_mask);
583 /* Mac address handling */
584 int otx2_nix_mac_addr_set(struct rte_eth_dev *eth_dev,
585 struct rte_ether_addr *addr);
586 int otx2_nix_mac_addr_get(struct rte_eth_dev *eth_dev, uint8_t *addr);
587 int otx2_nix_mac_addr_add(struct rte_eth_dev *eth_dev,
588 struct rte_ether_addr *addr,
589 uint32_t index, uint32_t pool);
590 void otx2_nix_mac_addr_del(struct rte_eth_dev *eth_dev, uint32_t index);
591 int otx2_cgx_mac_max_entries_get(struct otx2_eth_dev *dev);
594 int otx2_ethdev_parse_devargs(struct rte_devargs *devargs,
595 struct otx2_eth_dev *dev);
597 /* Rx and Tx routines */
598 void otx2_eth_set_rx_function(struct rte_eth_dev *eth_dev);
599 void otx2_eth_set_tx_function(struct rte_eth_dev *eth_dev);
600 void otx2_nix_form_default_desc(struct otx2_eth_txq *txq);
602 /* Timesync - PTP routines */
603 int otx2_nix_timesync_enable(struct rte_eth_dev *eth_dev);
604 int otx2_nix_timesync_disable(struct rte_eth_dev *eth_dev);
605 int otx2_nix_timesync_read_rx_timestamp(struct rte_eth_dev *eth_dev,
606 struct timespec *timestamp,
608 int otx2_nix_timesync_read_tx_timestamp(struct rte_eth_dev *eth_dev,
609 struct timespec *timestamp);
610 int otx2_nix_timesync_adjust_time(struct rte_eth_dev *eth_dev, int64_t delta);
611 int otx2_nix_timesync_write_time(struct rte_eth_dev *eth_dev,
612 const struct timespec *ts);
613 int otx2_nix_timesync_read_time(struct rte_eth_dev *eth_dev,
614 struct timespec *ts);
615 int otx2_eth_dev_ptp_info_update(struct otx2_dev *dev, bool ptp_en);
616 int otx2_nix_read_clock(struct rte_eth_dev *eth_dev, uint64_t *time);
617 int otx2_nix_raw_clock_tsc_conv(struct otx2_eth_dev *dev);
618 void otx2_nix_ptp_enable_vf(struct rte_eth_dev *eth_dev);
620 #endif /* __OTX2_ETHDEV_H__ */