net/sfc: do not use Rx queue control state on datapath
[dpdk.git] / drivers / net / sfc / sfc_rx.h
1 /*-
2  *   BSD LICENSE
3  *
4  * Copyright (c) 2016-2017 Solarflare Communications Inc.
5  * All rights reserved.
6  *
7  * This software was jointly developed between OKTET Labs (under contract
8  * for Solarflare) and Solarflare Communications, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright notice,
14  *    this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright notice,
16  *    this list of conditions and the following disclaimer in the documentation
17  *    and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
29  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 #ifndef _SFC_RX_H
33 #define _SFC_RX_H
34
35 #include <rte_mbuf.h>
36 #include <rte_mempool.h>
37 #include <rte_ethdev.h>
38
39 #include "efx.h"
40
41 #ifdef __cplusplus
42 extern "C" {
43 #endif
44
45 struct sfc_adapter;
46 struct sfc_evq;
47
48 /**
49  * Software Rx descriptor information associated with hardware Rx
50  * descriptor.
51  */
52 struct sfc_rx_sw_desc {
53         struct rte_mbuf         *mbuf;
54         unsigned int            flags;
55         unsigned int            size;
56 };
57
58 /** Receive queue state bits */
59 enum sfc_rxq_state_bit {
60         SFC_RXQ_INITIALIZED_BIT = 0,
61 #define SFC_RXQ_INITIALIZED     (1 << SFC_RXQ_INITIALIZED_BIT)
62         SFC_RXQ_STARTED_BIT,
63 #define SFC_RXQ_STARTED         (1 << SFC_RXQ_STARTED_BIT)
64         SFC_RXQ_FLUSHING_BIT,
65 #define SFC_RXQ_FLUSHING        (1 << SFC_RXQ_FLUSHING_BIT)
66         SFC_RXQ_FLUSHED_BIT,
67 #define SFC_RXQ_FLUSHED         (1 << SFC_RXQ_FLUSHED_BIT)
68         SFC_RXQ_FLUSH_FAILED_BIT,
69 #define SFC_RXQ_FLUSH_FAILED    (1 << SFC_RXQ_FLUSH_FAILED_BIT)
70 };
71
72 /**
73  * Receive queue information used on data path.
74  * Allocated on the socket specified on the queue setup.
75  */
76 struct sfc_rxq {
77         /* Used on data path */
78         struct sfc_evq          *evq;
79         struct sfc_rx_sw_desc   *sw_desc;
80         unsigned int            flags;
81 #define SFC_RXQ_FLAG_STARTED    0x1
82 #define SFC_RXQ_FLAG_RUNNING    0x2
83 #define SFC_RXQ_FLAG_RSS_HASH   0x4
84         unsigned int            ptr_mask;
85         unsigned int            pending;
86         unsigned int            completed;
87         uint16_t                batch_max;
88         uint16_t                prefix_size;
89
90         /* Used on refill */
91         unsigned int            added;
92         unsigned int            pushed;
93         unsigned int            refill_threshold;
94         uint8_t                 port_id;
95         uint16_t                buf_size;
96         struct rte_mempool      *refill_mb_pool;
97         efx_rxq_t               *common;
98         efsys_mem_t             mem;
99
100         /* Not used on data path */
101         unsigned int            hw_index;
102         unsigned int            state;
103 };
104
105 static inline unsigned int
106 sfc_rxq_sw_index_by_hw_index(unsigned int hw_index)
107 {
108         return hw_index;
109 }
110
111 static inline unsigned int
112 sfc_rxq_sw_index(const struct sfc_rxq *rxq)
113 {
114         return sfc_rxq_sw_index_by_hw_index(rxq->hw_index);
115 }
116
117 /**
118  * Receive queue information used during setup/release only.
119  * Allocated on the same socket as adapter data.
120  */
121 struct sfc_rxq_info {
122         unsigned int            max_entries;
123         unsigned int            entries;
124         efx_rxq_type_t          type;
125         struct sfc_rxq          *rxq;
126         boolean_t               deferred_start;
127         boolean_t               deferred_started;
128 };
129
130 int sfc_rx_init(struct sfc_adapter *sa);
131 void sfc_rx_fini(struct sfc_adapter *sa);
132 int sfc_rx_start(struct sfc_adapter *sa);
133 void sfc_rx_stop(struct sfc_adapter *sa);
134
135 int sfc_rx_qinit(struct sfc_adapter *sa, unsigned int rx_queue_id,
136                  uint16_t nb_rx_desc, unsigned int socket_id,
137                  const struct rte_eth_rxconf *rx_conf,
138                  struct rte_mempool *mb_pool);
139 void sfc_rx_qfini(struct sfc_adapter *sa, unsigned int sw_index);
140 int sfc_rx_qstart(struct sfc_adapter *sa, unsigned int sw_index);
141 void sfc_rx_qstop(struct sfc_adapter *sa, unsigned int sw_index);
142
143 void sfc_rx_qflush_done(struct sfc_rxq *rxq);
144 void sfc_rx_qflush_failed(struct sfc_rxq *rxq);
145
146 uint16_t sfc_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
147                        uint16_t nb_pkts);
148
149 unsigned int sfc_rx_qdesc_npending(struct sfc_adapter *sa,
150                                    unsigned int sw_index);
151 int sfc_rx_qdesc_done(struct sfc_rxq *rxq, unsigned int offset);
152
153 #if EFSYS_OPT_RX_SCALE
154 efx_rx_hash_type_t sfc_rte_to_efx_hash_type(uint64_t rss_hf);
155 uint64_t sfc_efx_to_rte_hash_type(efx_rx_hash_type_t efx_hash_types);
156 #endif
157
158 #ifdef __cplusplus
159 }
160 #endif
161 #endif  /* _SFC_RX_H */