Branch data Line data Source code
1 : : /* SPDX-License-Identifier: BSD-3-Clause 2 : : * Copyright 2025 Yunsilicon Technology Co., Ltd. 3 : : */ 4 : : 5 : : #ifndef _XSC_ETHDEV_H_ 6 : : #define _XSC_ETHDEV_H_ 7 : : 8 : : #include "xsc_dev.h" 9 : : 10 : : #define XSC_FLAG_RX_QUEUE_INIT 0x1 11 : : #define XSC_FLAG_TX_QUEUE_INIT 0x2 12 : : 13 : : struct xsc_ethdev_priv { 14 : : struct rte_eth_dev *eth_dev; 15 : : struct rte_pci_device *pci_dev; 16 : : struct xsc_dev *xdev; 17 : : struct xsc_repr_port *repr_port; 18 : : struct xsc_dev_config config; 19 : : struct rte_eth_dev_data *dev_data; 20 : : struct rte_ether_addr mac[XSC_MAX_MAC_ADDRESSES]; 21 : : struct rte_eth_rss_conf rss_conf; 22 : : 23 : : int representor_id; 24 : : uint32_t ifindex; 25 : : uint16_t mtu; 26 : : uint8_t isolated; 27 : : uint8_t is_representor; 28 : : 29 : : uint32_t mode:7; 30 : : uint32_t member_bitmap:8; 31 : : uint32_t funcid_type:3; 32 : : uint32_t funcid:14; 33 : : 34 : : uint16_t eth_type; 35 : : uint16_t qp_set_id; 36 : : 37 : : uint16_t num_sq; 38 : : uint16_t num_rq; 39 : : 40 : : uint16_t flags; 41 : : struct xsc_txq_data *(*txqs)[]; 42 : : struct xsc_rxq_data *(*rxqs)[]; 43 : : }; 44 : : 45 : : #define TO_XSC_ETHDEV_PRIV(dev) ((struct xsc_ethdev_priv *)(dev)->data->dev_private) 46 : : 47 : : static __rte_always_inline struct xsc_txq_data * 48 : : xsc_txq_get(struct xsc_ethdev_priv *priv, uint16_t idx) 49 : : { 50 [ # # # # : 0 : if (priv->txqs != NULL && (*priv->txqs)[idx] != NULL) # # # # # # # # # # # # # # # # ] 51 : 0 : return (*priv->txqs)[idx]; 52 : : return NULL; 53 : : } 54 : : 55 : : static __rte_always_inline struct xsc_rxq_data * 56 : : xsc_rxq_get(struct xsc_ethdev_priv *priv, uint16_t idx) 57 : : { 58 [ # # # # : 0 : if (priv->rxqs != NULL && (*priv->rxqs)[idx] != NULL) # # # # # # # # # # # # # # # # ] 59 : 0 : return (*priv->rxqs)[idx]; 60 : : return NULL; 61 : : } 62 : : 63 : : #endif /* _XSC_ETHDEV_H_ */