LCOV - code coverage report
Current view: top level - drivers/net/txgbe - txgbe_rxtx.h (source / functions) Hit Total Coverage
Test: Code coverage Lines: 0 3 0.0 %
Date: 2026-08-01 17:54:00 Functions: 0 0 -
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 24 0.0 %

           Branch data     Line data    Source code
       1                 :            : /* SPDX-License-Identifier: BSD-3-Clause
       2                 :            :  * Copyright(c) 2015-2020 Beijing WangXun Technology Co., Ltd.
       3                 :            :  * Copyright(c) 2010-2017 Intel Corporation
       4                 :            :  */
       5                 :            : 
       6                 :            : #ifndef _TXGBE_RXTX_H_
       7                 :            : #define _TXGBE_RXTX_H_
       8                 :            : 
       9                 :            : /*****************************************************************************
      10                 :            :  * Receive Descriptor
      11                 :            :  *****************************************************************************/
      12                 :            : struct txgbe_rx_desc {
      13                 :            :         struct {
      14                 :            :                 union {
      15                 :            :                         __le32 dw0;
      16                 :            :                         struct {
      17                 :            :                                 __le16 pkt;
      18                 :            :                                 __le16 hdr;
      19                 :            :                         } lo;
      20                 :            :                 };
      21                 :            :                 union {
      22                 :            :                         __le32 dw1;
      23                 :            :                         struct {
      24                 :            :                                 __le16 ipid;
      25                 :            :                                 __le16 csum;
      26                 :            :                         } hi;
      27                 :            :                 };
      28                 :            :         } qw0; /* also as r.pkt_addr */
      29                 :            :         struct {
      30                 :            :                 union {
      31                 :            :                         __le32 dw2;
      32                 :            :                         struct {
      33                 :            :                                 __le32 status;
      34                 :            :                         } lo;
      35                 :            :                 };
      36                 :            :                 union {
      37                 :            :                         __le32 dw3;
      38                 :            :                         struct {
      39                 :            :                                 __le16 len;
      40                 :            :                                 __le16 tag;
      41                 :            :                         } hi;
      42                 :            :                 };
      43                 :            :         } qw1; /* also as r.hdr_addr */
      44                 :            : };
      45                 :            : 
      46                 :            : /* @txgbe_rx_desc.qw0 */
      47                 :            : #define TXGBE_RXD_PKTADDR(rxd, v)  \
      48                 :            :         (((volatile __le64 *)(rxd))[0] = cpu_to_le64(v))
      49                 :            : 
      50                 :            : /* @txgbe_rx_desc.qw1 */
      51                 :            : #define TXGBE_RXD_HDRADDR(rxd, v)  \
      52                 :            :         (((volatile __le64 *)(rxd))[1] = cpu_to_le64(v))
      53                 :            : 
      54                 :            : /* @txgbe_rx_desc.dw0 */
      55                 :            : #define TXGBE_RXD_RSSTYPE(dw)      RS(dw, 0, 0xF)
      56                 :            : #define   TXGBE_RSSTYPE_NONE       0
      57                 :            : #define   TXGBE_RSSTYPE_IPV4TCP    1
      58                 :            : #define   TXGBE_RSSTYPE_IPV4       2
      59                 :            : #define   TXGBE_RSSTYPE_IPV6TCP    3
      60                 :            : #define   TXGBE_RSSTYPE_IPV4SCTP   4
      61                 :            : #define   TXGBE_RSSTYPE_IPV6       5
      62                 :            : #define   TXGBE_RSSTYPE_IPV6SCTP   6
      63                 :            : #define   TXGBE_RSSTYPE_IPV4UDP    7
      64                 :            : #define   TXGBE_RSSTYPE_IPV6UDP    8
      65                 :            : #define   TXGBE_RSSTYPE_FDIR       15
      66                 :            : #define TXGBE_RXD_SECTYPE(dw)      RS(dw, 4, 0x3)
      67                 :            : #define TXGBE_RXD_SECTYPE_NONE     LS(0, 4, 0x3)
      68                 :            : #define TXGBE_RXD_SECTYPE_LINKSEC  LS(1, 4, 0x3)
      69                 :            : #define TXGBE_RXD_SECTYPE_IPSECESP LS(2, 4, 0x3)
      70                 :            : #define TXGBE_RXD_SECTYPE_IPSECAH  LS(3, 4, 0x3)
      71                 :            : #define TXGBE_RXD_TPIDSEL(dw)      RS(dw, 6, 0x7)
      72                 :            : #define TXGBE_RXD_PTID(dw)         RS(dw, 9, 0xFF)
      73                 :            : #define TXGBE_RXD_RSCCNT(dw)       RS(dw, 17, 0xF)
      74                 :            : #define TXGBE_RXD_HDRLEN(dw)       RS(dw, 21, 0x3FF)
      75                 :            : #define TXGBE_RXD_SPH              MS(31, 0x1)
      76                 :            : 
      77                 :            : /* @txgbe_rx_desc.dw1 */
      78                 :            : /** bit 0-31, as rss hash when  **/
      79                 :            : #define TXGBE_RXD_RSSHASH(rxd)     ((rxd)->qw0.dw1)
      80                 :            : 
      81                 :            : /** bit 0-31, as ip csum when  **/
      82                 :            : #define TXGBE_RXD_IPID(rxd)        ((rxd)->qw0.hi.ipid)
      83                 :            : #define TXGBE_RXD_CSUM(rxd)        ((rxd)->qw0.hi.csum)
      84                 :            : 
      85                 :            : /** bit 0-31, as fdir id when  **/
      86                 :            : #define TXGBE_RXD_FDIRID(rxd)      ((rxd)->qw0.hi.dw1)
      87                 :            : 
      88                 :            : /* @txgbe_rx_desc.dw2 */
      89                 :            : #define TXGBE_RXD_STATUS(rxd)      ((rxd)->qw1.lo.status)
      90                 :            : /** bit 0-1 **/
      91                 :            : #define TXGBE_RXD_STAT_DD          MS(0, 0x1) /* Descriptor Done */
      92                 :            : #define TXGBE_RXD_STAT_EOP         MS(1, 0x1) /* End of Packet */
      93                 :            : /** bit 2-31, when EOP=0 **/
      94                 :            : #define TXGBE_RXD_NEXTP_RESV(v)    LS(v, 2, 0x3)
      95                 :            : #define TXGBE_RXD_NEXTP(dw)        RS(dw, 4, 0xFFFF) /* Next Descriptor */
      96                 :            : /** bit 2-31, when EOP=1 **/
      97                 :            : #define TXGBE_RXD_PKT_CLS_MASK     MS(2, 0x7) /* Packet Class */
      98                 :            : #define TXGBE_RXD_PKT_CLS_TC_RSS   LS(0, 2, 0x7) /* RSS Hash */
      99                 :            : #define TXGBE_RXD_PKT_CLS_FLM      LS(1, 2, 0x7) /* FDir Match */
     100                 :            : #define TXGBE_RXD_PKT_CLS_SYN      LS(2, 2, 0x7) /* TCP Sync */
     101                 :            : #define TXGBE_RXD_PKT_CLS_5TUPLE   LS(3, 2, 0x7) /* 5 Tuple */
     102                 :            : #define TXGBE_RXD_PKT_CLS_ETF      LS(4, 2, 0x7) /* Ethertype Filter */
     103                 :            : #define TXGBE_RXD_STAT_VLAN        MS(5, 0x1) /* IEEE VLAN Packet */
     104                 :            : #define TXGBE_RXD_STAT_UDPCS       MS(6, 0x1) /* UDP xsum calculated */
     105                 :            : #define TXGBE_RXD_STAT_L4CS        MS(7, 0x1) /* L4 xsum calculated */
     106                 :            : #define TXGBE_RXD_STAT_IPCS        MS(8, 0x1) /* IP xsum calculated */
     107                 :            : #define TXGBE_RXD_STAT_PIF         MS(9, 0x1) /* Non-unicast address */
     108                 :            : #define TXGBE_RXD_STAT_EIPCS       MS(10, 0x1) /* Encap IP xsum calculated */
     109                 :            : #define TXGBE_RXD_STAT_VEXT        MS(11, 0x1) /* Multi-VLAN */
     110                 :            : #define TXGBE_RXD_STAT_IPV6EX      MS(12, 0x1) /* IPv6 with option header */
     111                 :            : #define TXGBE_RXD_STAT_LLINT       MS(13, 0x1) /* Pkt caused LLI */
     112                 :            : #define TXGBE_RXD_STAT_1588        MS(14, 0x1) /* IEEE1588 Time Stamp */
     113                 :            : #define TXGBE_RXD_STAT_SECP        MS(15, 0x1) /* Security Processing */
     114                 :            : #define TXGBE_RXD_STAT_LB          MS(16, 0x1) /* Loopback Status */
     115                 :            : /*** bit 17-30, when PTYPE=IP ***/
     116                 :            : #define TXGBE_RXD_STAT_BMC         MS(17, 0x1) /* PTYPE=IP, BMC status */
     117                 :            : #define TXGBE_RXD_ERR_FDIR_LEN     MS(20, 0x1) /* FDIR Length error */
     118                 :            : #define TXGBE_RXD_ERR_FDIR_DROP    MS(21, 0x1) /* FDIR Drop error */
     119                 :            : #define TXGBE_RXD_ERR_FDIR_COLL    MS(22, 0x1) /* FDIR Collision error */
     120                 :            : #define TXGBE_RXD_ERR_HBO          MS(23, 0x1) /* Header Buffer Overflow */
     121                 :            : #define TXGBE_RXD_ERR_EIPCS        MS(26, 0x1) /* Encap IP header error */
     122                 :            : #define TXGBE_RXD_ERR_SECERR       MS(27, 0x1) /* macsec or ipsec error */
     123                 :            : #define TXGBE_RXD_ERR_RXE          MS(29, 0x1) /* Any MAC Error */
     124                 :            : #define TXGBE_RXD_ERR_L4CS         MS(30, 0x1) /* TCP/UDP xsum error */
     125                 :            : #define TXGBE_RXD_ERR_IPCS         MS(31, 0x1) /* IP xsum error */
     126                 :            : #define TXGBE_RXD_ERR_CSUM(dw)     RS(dw, 30, 0x3)
     127                 :            : /*** bit 17-30, when PTYPE=FCOE ***/
     128                 :            : #define TXGBE_RXD_STAT_FCOEFS      MS(17, 0x1) /* PTYPE=FCOE, FCoE EOF/SOF */
     129                 :            : #define TXGBE_RXD_FCSTAT_MASK      MS(18, 0x3) /* FCoE Pkt Stat */
     130                 :            : #define TXGBE_RXD_FCSTAT_NOMTCH    LS(0, 18, 0x3) /* No Ctxt Match */
     131                 :            : #define TXGBE_RXD_FCSTAT_NODDP     LS(1, 18, 0x3) /* Ctxt w/o DDP */
     132                 :            : #define TXGBE_RXD_FCSTAT_FCPRSP    LS(2, 18, 0x3) /* Recv. FCP_RSP */
     133                 :            : #define TXGBE_RXD_FCSTAT_DDP       LS(3, 18, 0x3) /* Ctxt w/ DDP */
     134                 :            : #define TXGBE_RXD_FCERR_MASK       MS(20, 0x7) /* FCERR */
     135                 :            : #define TXGBE_RXD_FCERR_0          LS(0, 20, 0x7)
     136                 :            : #define TXGBE_RXD_FCERR_1          LS(1, 20, 0x7)
     137                 :            : #define TXGBE_RXD_FCERR_2          LS(2, 20, 0x7)
     138                 :            : #define TXGBE_RXD_FCERR_3          LS(3, 20, 0x7)
     139                 :            : #define TXGBE_RXD_FCERR_4          LS(4, 20, 0x7)
     140                 :            : #define TXGBE_RXD_FCERR_5          LS(5, 20, 0x7)
     141                 :            : #define TXGBE_RXD_FCERR_6          LS(6, 20, 0x7)
     142                 :            : #define TXGBE_RXD_FCERR_7          LS(7, 20, 0x7)
     143                 :            : 
     144                 :            : /* @txgbe_rx_desc.dw3 */
     145                 :            : #define TXGBE_RXD_LENGTH(rxd)           ((rxd)->qw1.hi.len)
     146                 :            : #define TXGBE_RXD_VLAN(rxd)             ((rxd)->qw1.hi.tag)
     147                 :            : 
     148                 :            : /*****************************************************************************
     149                 :            :  * Transmit Descriptor
     150                 :            :  *****************************************************************************/
     151                 :            : /**
     152                 :            :  * Transmit Context Descriptor (TXGBE_TXD_TYP=CTXT)
     153                 :            :  **/
     154                 :            : struct txgbe_tx_ctx_desc {
     155                 :            :         __le32 dw0; /* w.vlan_macip_lens  */
     156                 :            :         __le32 dw1; /* w.seqnum_seed      */
     157                 :            :         __le32 dw2; /* w.type_tucmd_mlhl  */
     158                 :            :         __le32 dw3; /* w.mss_l4len_idx    */
     159                 :            : };
     160                 :            : 
     161                 :            : /* @txgbe_tx_ctx_desc.dw0 */
     162                 :            : #define TXGBE_TXD_IPLEN(v)         LS(v, 0, 0x1FF) /* ip/fcoe header end */
     163                 :            : #define TXGBE_TXD_MACLEN(v)        LS(v, 9, 0x7F) /* desc mac len */
     164                 :            : #define TXGBE_TXD_VLAN(v)          LS(v, 16, 0xFFFF) /* vlan tag */
     165                 :            : 
     166                 :            : /* @txgbe_tx_ctx_desc.dw1 */
     167                 :            : /*** bit 0-31, when TXGBE_TXD_DTYP_FCOE=0 ***/
     168                 :            : #define TXGBE_TXD_IPSEC_SAIDX(v)   LS(v, 0, 0x3FF) /* ipsec SA index */
     169                 :            : #define TXGBE_TXD_ETYPE(v)         LS(v, 11, 0x1) /* tunnel type */
     170                 :            : #define TXGBE_TXD_ETYPE_UDP        LS(0, 11, 0x1)
     171                 :            : #define TXGBE_TXD_ETYPE_GRE        LS(1, 11, 0x1)
     172                 :            : #define TXGBE_TXD_EIPLEN(v)        LS(v, 12, 0x7F) /* tunnel ip header */
     173                 :            : #define TXGBE_TXD_DTYP_FCOE        MS(16, 0x1) /* FCoE/IP descriptor */
     174                 :            : #define TXGBE_TXD_ETUNLEN(v)       LS(v, 21, 0xFF) /* tunnel header */
     175                 :            : #define TXGBE_TXD_DECTTL(v)        LS(v, 29, 0xF) /* decrease ip TTL */
     176                 :            : /*** bit 0-31, when TXGBE_TXD_DTYP_FCOE=1 ***/
     177                 :            : #define TXGBE_TXD_FCOEF_EOF_MASK   MS(10, 0x3) /* FC EOF index */
     178                 :            : #define TXGBE_TXD_FCOEF_EOF_N      LS(0, 10, 0x3) /* EOFn */
     179                 :            : #define TXGBE_TXD_FCOEF_EOF_T      LS(1, 10, 0x3) /* EOFt */
     180                 :            : #define TXGBE_TXD_FCOEF_EOF_NI     LS(2, 10, 0x3) /* EOFni */
     181                 :            : #define TXGBE_TXD_FCOEF_EOF_A      LS(3, 10, 0x3) /* EOFa */
     182                 :            : #define TXGBE_TXD_FCOEF_SOF        MS(12, 0x1) /* FC SOF index */
     183                 :            : #define TXGBE_TXD_FCOEF_PARINC     MS(13, 0x1) /* Rel_Off in F_CTL */
     184                 :            : #define TXGBE_TXD_FCOEF_ORIE       MS(14, 0x1) /* orientation end */
     185                 :            : #define TXGBE_TXD_FCOEF_ORIS       MS(15, 0x1) /* orientation start */
     186                 :            : 
     187                 :            : /* @txgbe_tx_ctx_desc.dw2 */
     188                 :            : #define TXGBE_TXD_IPSEC_ESPLEN(v)  LS(v, 1, 0x1FF) /* ipsec ESP length */
     189                 :            : #define TXGBE_TXD_SNAP             MS(10, 0x1) /* SNAP indication */
     190                 :            : #define TXGBE_TXD_TPID_SEL(v)      LS(v, 11, 0x7) /* vlan tag index */
     191                 :            : #define TXGBE_TXD_IPSEC_ESP        MS(14, 0x1) /* ipsec type: esp=1 ah=0 */
     192                 :            : #define TXGBE_TXD_IPSEC_ESPENC     MS(15, 0x1) /* ESP encrypt */
     193                 :            : #define TXGBE_TXD_CTXT             MS(20, 0x1) /* context descriptor */
     194                 :            : #define TXGBE_TXD_PTID(v)          LS(v, 24, 0xFF) /* packet type */
     195                 :            : /* @txgbe_tx_ctx_desc.dw3 */
     196                 :            : #define TXGBE_TXD_DD               MS(0, 0x1) /* descriptor done */
     197                 :            : #define TXGBE_TXD_IDX(v)           LS(v, 4, 0x1) /* ctxt desc index */
     198                 :            : #define TXGBE_TXD_L4LEN(v)         LS(v, 8, 0xFF) /* l4 header length */
     199                 :            : #define TXGBE_TXD_MSS(v)           LS(v, 16, 0xFFFF) /* l4 MSS */
     200                 :            : 
     201                 :            : /**
     202                 :            :  * Transmit Data Descriptor (TXGBE_TXD_TYP=DATA)
     203                 :            :  **/
     204                 :            : struct txgbe_tx_desc {
     205                 :            :         __le64 qw0; /* r.buffer_addr ,  w.reserved    */
     206                 :            :         __le32 dw2; /* r.cmd_type_len,  w.nxtseq_seed */
     207                 :            :         __le32 dw3; /* r.olinfo_status, w.status      */
     208                 :            : };
     209                 :            : /* @txgbe_tx_desc.qw0 */
     210                 :            : 
     211                 :            : /* @txgbe_tx_desc.dw2 */
     212                 :            : #define TXGBE_TXD_DATLEN(v)        ((0xFFFF & (v))) /* data buffer length */
     213                 :            : #define TXGBE_TXD_1588             ((0x1) << 19) /* IEEE1588 time stamp */
     214                 :            : #define TXGBE_TXD_DATA             ((0x0) << 20) /* data descriptor */
     215                 :            : #define TXGBE_TXD_EOP              ((0x1) << 24) /* End of Packet */
     216                 :            : #define TXGBE_TXD_FCS              ((0x1) << 25) /* Insert FCS */
     217                 :            : #define TXGBE_TXD_LINKSEC          ((0x1) << 26) /* Insert LinkSec */
     218                 :            : #define TXGBE_TXD_ECU              ((0x1) << 28) /* forward to ECU */
     219                 :            : #define TXGBE_TXD_CNTAG            ((0x1) << 29) /* insert CN tag */
     220                 :            : #define TXGBE_TXD_VLE              ((0x1) << 30) /* insert VLAN tag */
     221                 :            : #define TXGBE_TXD_TSE              ((0x1) << 31) /* transmit segmentation */
     222                 :            : 
     223                 :            : #define TXGBE_TXD_FLAGS (TXGBE_TXD_FCS | TXGBE_TXD_EOP)
     224                 :            : 
     225                 :            : /* @txgbe_tx_desc.dw3 */
     226                 :            : #define TXGBE_TXD_DD_UNUSED        TXGBE_TXD_DD
     227                 :            : #define TXGBE_TXD_IDX_UNUSED(v)    TXGBE_TXD_IDX(v)
     228                 :            : #define TXGBE_TXD_CC               ((0x1) << 7) /* check context */
     229                 :            : #define TXGBE_TXD_IPSEC            ((0x1) << 8) /* request ipsec offload */
     230                 :            : #define TXGBE_TXD_L4CS             ((0x1) << 9) /* insert TCP/UDP/SCTP csum */
     231                 :            : #define TXGBE_TXD_IPCS             ((0x1) << 10) /* insert IPv4 csum */
     232                 :            : #define TXGBE_TXD_EIPCS            ((0x1) << 11) /* insert outer IP csum */
     233                 :            : #define TXGBE_TXD_MNGFLT           ((0x1) << 12) /* enable management filter */
     234                 :            : #define TXGBE_TXD_PAYLEN(v)        ((0x7FFFF & (v)) << 13) /* payload length */
     235                 :            : 
     236                 :            : #define RTE_PMD_TXGBE_TX_MAX_BURST 32
     237                 :            : #define RTE_PMD_TXGBE_RX_MAX_BURST 32
     238                 :            : #define RTE_TXGBE_TX_MAX_FREE_BUF_SZ 64
     239                 :            : 
     240                 :            : #define RTE_TXGBE_DESCS_PER_LOOP    4
     241                 :            : 
     242                 :            : #define RX_RING_SZ ((TXGBE_RING_DESC_MAX + RTE_PMD_TXGBE_RX_MAX_BURST) * \
     243                 :            :                     sizeof(struct txgbe_rx_desc))
     244                 :            : 
     245                 :            : #define rte_packet_prefetch(p)  rte_prefetch1(p)
     246                 :            : 
     247                 :            : #define RTE_TXGBE_REGISTER_POLL_WAIT_10_MS  10
     248                 :            : #define RTE_TXGBE_WAIT_100_US               100
     249                 :            : 
     250                 :            : #define TXGBE_TX_MAX_SEG                    40
     251                 :            : 
     252                 :            : /**
     253                 :            :  * Structure associated with each descriptor of the RX ring of a RX queue.
     254                 :            :  */
     255                 :            : struct txgbe_rx_entry {
     256                 :            :         struct rte_mbuf *mbuf; /**< mbuf associated with RX descriptor. */
     257                 :            : };
     258                 :            : 
     259                 :            : struct txgbe_scattered_rx_entry {
     260                 :            :         struct rte_mbuf *fbuf; /**< First segment of the fragmented packet. */
     261                 :            : };
     262                 :            : 
     263                 :            : /**
     264                 :            :  * Structure associated with each descriptor of the TX ring of a TX queue.
     265                 :            :  */
     266                 :            : struct txgbe_tx_entry {
     267                 :            :         struct rte_mbuf *mbuf; /**< mbuf associated with TX desc, if any. */
     268                 :            :         uint16_t next_id; /**< Index of next descriptor in ring. */
     269                 :            :         uint16_t last_id; /**< Index of last scattered descriptor. */
     270                 :            : };
     271                 :            : 
     272                 :            : /**
     273                 :            :  * Structure associated with each descriptor of the TX ring of a TX queue.
     274                 :            :  */
     275                 :            : struct txgbe_tx_entry_v {
     276                 :            :         struct rte_mbuf *mbuf; /**< mbuf associated with TX desc, if any. */
     277                 :            : };
     278                 :            : 
     279                 :            : /**
     280                 :            :  * Structure associated with each RX queue.
     281                 :            :  */
     282                 :            : struct txgbe_rx_queue {
     283                 :            :         struct rte_mempool  *mb_pool; /**< mbuf pool to populate RX ring. */
     284                 :            :         volatile struct txgbe_rx_desc *rx_ring; /**< RX ring virtual address. */
     285                 :            :         uint64_t            rx_ring_phys_addr; /**< RX ring DMA address. */
     286                 :            :         volatile uint32_t   *rdt_reg_addr; /**< RDT register address. */
     287                 :            :         volatile uint32_t   *rdh_reg_addr; /**< RDH register address. */
     288                 :            :         struct txgbe_rx_entry *sw_ring; /**< address of RX software ring. */
     289                 :            :         /**< address of scattered Rx software ring. */
     290                 :            :         struct txgbe_scattered_rx_entry *sw_sc_ring;
     291                 :            :         struct rte_mbuf *pkt_first_seg; /**< First segment of current packet. */
     292                 :            :         struct rte_mbuf *pkt_last_seg; /**< Last segment of current packet. */
     293                 :            :         uint16_t            nb_rx_desc; /**< number of RX descriptors. */
     294                 :            :         uint16_t            rx_tail;  /**< current value of RDT register. */
     295                 :            :         uint16_t            nb_rx_hold; /**< number of held free RX desc. */
     296                 :            :         uint16_t rx_nb_avail; /**< nr of staged pkts ready to ret to app */
     297                 :            :         uint16_t rx_next_avail; /**< idx of next staged pkt to ret to app */
     298                 :            :         uint16_t rx_free_trigger; /**< triggers rx buffer allocation */
     299                 :            : #ifdef RTE_LIB_SECURITY
     300                 :            :         uint8_t            using_ipsec;
     301                 :            :         /**< indicates that IPsec RX feature is in use */
     302                 :            : #endif
     303                 :            :         uint64_t            mbuf_initializer; /**< value to init mbufs */
     304                 :            :         uint8_t             rx_using_sse;
     305                 :            : #if defined(RTE_ARCH_X86) || defined(RTE_ARCH_ARM)
     306                 :            :         uint16_t            rxrearm_nb;     /**< number of remaining to be re-armed */
     307                 :            :         uint16_t            rxrearm_start;  /**< the idx we start the re-arming from */
     308                 :            : #endif
     309                 :            :         uint16_t            rx_free_thresh; /**< max free RX desc to hold. */
     310                 :            :         uint16_t            queue_id; /**< RX queue index. */
     311                 :            :         uint16_t            reg_idx;  /**< RX queue register index. */
     312                 :            :         /**< Packet type mask for different NICs. */
     313                 :            :         uint16_t            pkt_type_mask;
     314                 :            :         uint16_t            port_id;  /**< Device port identifier. */
     315                 :            :         uint8_t             crc_len;  /**< 0 if CRC stripped, 4 otherwise. */
     316                 :            :         uint8_t             drop_en;  /**< If not 0, set SRRCTL.Drop_En. */
     317                 :            :         uint8_t             rx_deferred_start; /**< not in global dev start. */
     318                 :            :         /** flags to set in mbuf when a vlan is detected. */
     319                 :            :         uint64_t            vlan_flags;
     320                 :            :         uint64_t            offloads; /**< Rx offloads with RTE_ETH_RX_OFFLOAD_* */
     321                 :            :         /** need to alloc dummy mbuf, for wraparound when scanning hw ring */
     322                 :            :         struct rte_mbuf fake_mbuf;
     323                 :            :         /** hold packets to return to application */
     324                 :            :         struct rte_mbuf *rx_stage[RTE_PMD_TXGBE_RX_MAX_BURST * 2];
     325                 :            :         const struct rte_memzone *mz;
     326                 :            :         uint64_t            csum_err;
     327                 :            : };
     328                 :            : 
     329                 :            : /**
     330                 :            :  * TXGBE CTX Constants
     331                 :            :  */
     332                 :            : enum txgbe_ctx_num {
     333                 :            :         TXGBE_CTX_0    = 0, /**< CTX0 */
     334                 :            :         TXGBE_CTX_1    = 1, /**< CTX1  */
     335                 :            :         TXGBE_CTX_NUM  = 2, /**< CTX NUMBER  */
     336                 :            : };
     337                 :            : 
     338                 :            : /** Offload features */
     339                 :            : union txgbe_tx_offload {
     340                 :            :         uint64_t data[2];
     341                 :            :         struct {
     342                 :            :                 uint64_t ptid:8; /**< Packet Type Identifier. */
     343                 :            :                 uint64_t l2_len:7; /**< L2 (MAC) Header Length. */
     344                 :            :                 uint64_t l3_len:9; /**< L3 (IP) Header Length. */
     345                 :            :                 uint64_t l4_len:8; /**< L4 (TCP/UDP) Header Length. */
     346                 :            :                 uint64_t tso_segsz:16; /**< TCP TSO segment size */
     347                 :            :                 uint64_t vlan_tci:16;
     348                 :            :                 /**< VLAN Tag Control Identifier (CPU order). */
     349                 :            : 
     350                 :            :                 /* fields for TX offloading of tunnels */
     351                 :            :                 uint64_t outer_tun_len:8; /**< Outer TUN (Tunnel) Hdr Length. */
     352                 :            :                 uint64_t outer_l2_len:8; /**< Outer L2 (MAC) Hdr Length. */
     353                 :            :                 uint64_t outer_l3_len:16; /**< Outer L3 (IP) Hdr Length. */
     354                 :            : #ifdef RTE_LIB_SECURITY
     355                 :            :                 /* inline ipsec related*/
     356                 :            :                 uint64_t sa_idx:8;      /**< TX SA database entry index */
     357                 :            :                 uint64_t sec_pad_len:4; /**< padding length */
     358                 :            : #endif
     359                 :            :         };
     360                 :            : };
     361                 :            : 
     362                 :            : /**
     363                 :            :  * Structure to check if new context need be built
     364                 :            :  */
     365                 :            : struct txgbe_ctx_info {
     366                 :            :         uint64_t flags;           /**< ol_flags for context build. */
     367                 :            :         /**< tx offload: vlan, tso, l2-l3-l4 lengths. */
     368                 :            :         union txgbe_tx_offload tx_offload;
     369                 :            :         /** compare mask for tx offload. */
     370                 :            :         union txgbe_tx_offload tx_offload_mask;
     371                 :            : };
     372                 :            : 
     373                 :            : /**
     374                 :            :  * Structure associated with each TX queue.
     375                 :            :  */
     376                 :            : struct txgbe_tx_queue {
     377                 :            :         /** TX ring virtual address. */
     378                 :            :         volatile struct txgbe_tx_desc *tx_ring;
     379                 :            :         uint64_t            tx_ring_phys_addr; /**< TX ring DMA address. */
     380                 :            :         union {
     381                 :            :                 /**< address of SW ring for scalar PMD. */
     382                 :            :                 struct txgbe_tx_entry *sw_ring;
     383                 :            :                 /**< address of SW ring for vector PMD */
     384                 :            :                 struct txgbe_tx_entry_v *sw_ring_v;
     385                 :            :         };
     386                 :            :         volatile uint32_t   *tdt_reg_addr; /**< Address of TDT register. */
     387                 :            :         volatile uint32_t   *tdc_reg_addr; /**< Address of TDC register. */
     388                 :            :         uint16_t            nb_tx_desc;    /**< number of TX descriptors. */
     389                 :            :         uint16_t            tx_tail;       /**< current value of TDT reg. */
     390                 :            :         /**< Start freeing TX buffers if there are less free descriptors than
     391                 :            :          *   this value.
     392                 :            :          */
     393                 :            :         uint16_t            tx_free_thresh;
     394                 :            :         /** Index to last TX descriptor to have been cleaned. */
     395                 :            :         uint16_t            last_desc_cleaned;
     396                 :            :         /** Total number of TX descriptors ready to be allocated. */
     397                 :            :         uint16_t            nb_tx_free;
     398                 :            :         uint16_t            tx_next_dd;    /**< next desc to scan for DD bit */
     399                 :            :         uint16_t            queue_id;      /**< TX queue index. */
     400                 :            :         uint16_t            reg_idx;       /**< TX queue register index. */
     401                 :            :         uint16_t            port_id;       /**< Device port identifier. */
     402                 :            :         uint8_t             pthresh;       /**< Prefetch threshold register. */
     403                 :            :         uint8_t             hthresh;       /**< Host threshold register. */
     404                 :            :         uint8_t             wthresh;       /**< Write-back threshold reg. */
     405                 :            :         uint64_t            offloads; /* Tx offload flags of RTE_ETH_TX_OFFLOAD_* */
     406                 :            :         uint32_t            ctx_curr;      /**< Hardware context states. */
     407                 :            :         /** Hardware context0 history. */
     408                 :            :         struct txgbe_ctx_info ctx_cache[TXGBE_CTX_NUM];
     409                 :            :         const struct txgbe_txq_ops *ops;       /**< txq ops */
     410                 :            :         uint8_t             tx_deferred_start; /**< not in global dev start. */
     411                 :            : #ifdef RTE_LIB_SECURITY
     412                 :            :         uint8_t             using_ipsec;
     413                 :            :         /**< indicates that IPsec TX feature is in use */
     414                 :            : #endif
     415                 :            :         const struct rte_memzone *mz;
     416                 :            :         uint64_t            desc_error;
     417                 :            :         bool                resetting;
     418                 :            :         const struct rte_memzone *headwb;
     419                 :            :         uint16_t             headwb_size;
     420                 :            :         uint64_t             headwb_dma;
     421                 :            :         RTE_ATOMIC(uint32_t) *headwb_mem;
     422                 :            : };
     423                 :            : 
     424                 :            : struct txgbe_txq_ops {
     425                 :            :         void (*release_mbufs)(struct txgbe_tx_queue *txq);
     426                 :            :         void (*free_swring)(struct txgbe_tx_queue *txq);
     427                 :            :         void (*reset)(struct txgbe_tx_queue *txq);
     428                 :            : };
     429                 :            : 
     430                 :            : /**
     431                 :            :  * Check whether Tx descriptors in the range (last, next]  are done
     432                 :            :  * in Tx head write-back mode.
     433                 :            :  *
     434                 :            :  * In head write-back mode, the hardware periodically updates *headwb_mem
     435                 :            :  * with the index of the next descriptor it will process.
     436                 :            :  * All descriptors before the head are considered processed by hardware and can
     437                 :            :  * be safely freed. The descriptor pointed to by head itself is not yet processed.
     438                 :            :  *
     439                 :            :  * @param head
     440                 :            :  *   Current hardware head index read from headwb_mem.
     441                 :            :  * @param last
     442                 :            :  *   The highest-index descriptor cleaned in the previous round
     443                 :            :  *   (exclusive: descriptors at or before this index are already freed).
     444                 :            :  * @param next
     445                 :            :  *   The highest-index descriptor to be cleaned in this round
     446                 :            :  *   (inclusive: this descriptor is the target of the current cleanup).
     447                 :            :  * @return
     448                 :            :  *   true if all descriptors in the range (last, next] have been completed
     449                 :            :  *   by hardware and can be freed, false otherwise.
     450                 :            :  */
     451                 :            : static inline bool
     452                 :            : txgbe_tx_headwb_desc_done(uint16_t head, uint16_t last, uint16_t next)
     453                 :            : {
     454   [ #  #  #  #  :          0 :         if (next == head)
                   #  # ]
     455                 :            :                 return false;
     456   [ #  #  #  #  :          0 :         else if (next > head && head > last)
                   #  # ]
     457                 :            :                 return false;
     458                 :            :         /* wrap case */
     459   [ #  #  #  #  :          0 :         else if (last > next && (head > last || head < next))
          #  #  #  #  #  
                #  #  # ]
     460                 :            :                 return false;
     461                 :            : 
     462                 :            :         return true;
     463                 :            : }
     464                 :            : 
     465                 :            : /* Takes an ethdev and a queue and sets up the tx function to be used based on
     466                 :            :  * the queue parameters. Used in tx_queue_setup by primary process and then
     467                 :            :  * in dev_init by secondary process when attaching to an existing ethdev.
     468                 :            :  */
     469                 :            : void txgbe_set_tx_function(struct rte_eth_dev *dev, struct txgbe_tx_queue *txq);
     470                 :            : 
     471                 :            : void txgbe_set_rx_function(struct rte_eth_dev *dev);
     472                 :            : uint16_t txgbe_recv_pkts_vec(void *rx_queue, struct rte_mbuf **rx_pkts,
     473                 :            :                 uint16_t nb_pkts);
     474                 :            : uint16_t txgbe_recv_scattered_pkts_vec(void *rx_queue,
     475                 :            :                 struct rte_mbuf **rx_pkts, uint16_t nb_pkts);
     476                 :            : int txgbe_rx_vec_dev_conf_condition_check(struct rte_eth_dev *dev);
     477                 :            : int txgbe_rxq_vec_setup(struct txgbe_rx_queue *rxq);
     478                 :            : void txgbe_rx_queue_release_mbufs_vec(struct txgbe_rx_queue *rxq);
     479                 :            : uint16_t txgbe_xmit_fixed_burst_vec(void *tx_queue, struct rte_mbuf **tx_pkts,
     480                 :            :                                     uint16_t nb_pkts);
     481                 :            : int txgbe_txq_vec_setup(struct txgbe_tx_queue *txq);
     482                 :            : int txgbe_dev_tx_done_cleanup(void *tx_queue, uint32_t free_cnt);
     483                 :            : 
     484                 :            : uint64_t txgbe_get_tx_port_offloads(struct rte_eth_dev *dev);
     485                 :            : uint64_t txgbe_get_rx_queue_offloads(struct rte_eth_dev *dev);
     486                 :            : uint64_t txgbe_get_rx_port_offloads(struct rte_eth_dev *dev);
     487                 :            : uint64_t txgbe_get_tx_queue_offloads(struct rte_eth_dev *dev);
     488                 :            : 
     489                 :            : #endif /* _TXGBE_RXTX_H_ */

Generated by: LCOV version 1.14