1 /* SPDX-License-Identifier: BSD-3-Clause
3 * Copyright (c) 2016-2018 Solarflare Communications Inc.
6 * This software was jointly developed between OKTET Labs (under contract
7 * for Solarflare) and Solarflare Communications, Inc.
14 #include <rte_mempool.h>
15 #include <rte_ethdev_driver.h>
19 #include "sfc_dp_rx.h"
29 * Software Rx descriptor information associated with hardware Rx
32 struct sfc_efx_rx_sw_desc {
33 struct rte_mbuf *mbuf;
38 /** Receive queue state bits */
39 enum sfc_rxq_state_bit {
40 SFC_RXQ_INITIALIZED_BIT = 0,
41 #define SFC_RXQ_INITIALIZED (1 << SFC_RXQ_INITIALIZED_BIT)
43 #define SFC_RXQ_STARTED (1 << SFC_RXQ_STARTED_BIT)
45 #define SFC_RXQ_FLUSHING (1 << SFC_RXQ_FLUSHING_BIT)
47 #define SFC_RXQ_FLUSHED (1 << SFC_RXQ_FLUSHED_BIT)
48 SFC_RXQ_FLUSH_FAILED_BIT,
49 #define SFC_RXQ_FLUSH_FAILED (1 << SFC_RXQ_FLUSH_FAILED_BIT)
53 * Receive queue control information.
54 * Allocated on the socket specified on the queue setup.
60 unsigned int hw_index;
61 unsigned int refill_threshold;
62 struct rte_mempool *refill_mb_pool;
64 struct sfc_dp_rxq *dp;
68 static inline unsigned int
69 sfc_rxq_sw_index_by_hw_index(unsigned int hw_index)
74 static inline unsigned int
75 sfc_rxq_sw_index(const struct sfc_rxq *rxq)
77 return sfc_rxq_sw_index_by_hw_index(rxq->hw_index);
80 struct sfc_rxq *sfc_rxq_by_dp_rxq(const struct sfc_dp_rxq *dp_rxq);
83 * Receive queue information used on libefx-based data path.
84 * Allocated on the socket specified on the queue setup.
87 /* Used on data path */
90 #define SFC_EFX_RXQ_FLAG_STARTED 0x1
91 #define SFC_EFX_RXQ_FLAG_RUNNING 0x2
92 #define SFC_EFX_RXQ_FLAG_RSS_HASH 0x4
93 unsigned int ptr_mask;
95 unsigned int completed;
98 struct sfc_efx_rx_sw_desc *sw_desc;
103 unsigned int max_fill_level;
104 unsigned int refill_threshold;
106 struct rte_mempool *refill_mb_pool;
109 /* Datapath receive queue anchor */
110 struct sfc_dp_rxq dp;
113 static inline struct sfc_efx_rxq *
114 sfc_efx_rxq_by_dp_rxq(struct sfc_dp_rxq *dp_rxq)
116 return container_of(dp_rxq, struct sfc_efx_rxq, dp);
120 * Receive queue information used during setup/release only.
121 * Allocated on the same socket as adapter data.
123 struct sfc_rxq_info {
124 unsigned int max_entries;
125 unsigned int entries;
127 unsigned int type_flags;
129 boolean_t deferred_start;
130 boolean_t deferred_started;
133 int sfc_rx_configure(struct sfc_adapter *sa);
134 void sfc_rx_close(struct sfc_adapter *sa);
135 int sfc_rx_start(struct sfc_adapter *sa);
136 void sfc_rx_stop(struct sfc_adapter *sa);
138 int sfc_rx_qinit(struct sfc_adapter *sa, unsigned int rx_queue_id,
139 uint16_t nb_rx_desc, unsigned int socket_id,
140 const struct rte_eth_rxconf *rx_conf,
141 struct rte_mempool *mb_pool);
142 void sfc_rx_qfini(struct sfc_adapter *sa, unsigned int sw_index);
143 int sfc_rx_qstart(struct sfc_adapter *sa, unsigned int sw_index);
144 void sfc_rx_qstop(struct sfc_adapter *sa, unsigned int sw_index);
146 uint64_t sfc_rx_get_dev_offload_caps(struct sfc_adapter *sa);
147 uint64_t sfc_rx_get_queue_offload_caps(struct sfc_adapter *sa);
149 void sfc_rx_qflush_done(struct sfc_rxq *rxq);
150 void sfc_rx_qflush_failed(struct sfc_rxq *rxq);
152 unsigned int sfc_rx_qdesc_npending(struct sfc_adapter *sa,
153 unsigned int sw_index);
154 int sfc_rx_qdesc_done(struct sfc_dp_rxq *dp_rxq, unsigned int offset);
156 int sfc_rx_hash_init(struct sfc_adapter *sa);
157 void sfc_rx_hash_fini(struct sfc_adapter *sa);
158 int sfc_rx_hf_rte_to_efx(struct sfc_adapter *sa, uint64_t rte,
159 efx_rx_hash_type_t *efx);
160 uint64_t sfc_rx_hf_efx_to_rte(struct sfc_adapter *sa,
161 efx_rx_hash_type_t efx);
166 #endif /* _SFC_RX_H */