]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/contrib/ena-com/ena_eth_com.h
MFV r365636: libarchive: import fix for WARNS=6 builds in testing bits
[FreeBSD/FreeBSD.git] / sys / contrib / ena-com / ena_eth_com.h
1 /*-
2  * BSD LICENSE
3  *
4  * Copyright (c) 2015-2020 Amazon.com, Inc. or its affiliates.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * * Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  * * Redistributions in binary form must reproduce the above copyright
14  * notice, this list of conditions and the following disclaimer in
15  * the documentation and/or other materials provided with the
16  * distribution.
17  * * Neither the name of copyright holder nor the names of its
18  * contributors may be used to endorse or promote products derived
19  * from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #ifndef ENA_ETH_COM_H_
35 #define ENA_ETH_COM_H_
36
37 #if defined(__cplusplus)
38 extern "C" {
39 #endif
40 #include "ena_com.h"
41
42 /* head update threshold in units of (queue size / ENA_COMP_HEAD_THRESH) */
43 #define ENA_COMP_HEAD_THRESH 4
44
45 struct ena_com_tx_ctx {
46         struct ena_com_tx_meta ena_meta;
47         struct ena_com_buf *ena_bufs;
48         /* For LLQ, header buffer - pushed to the device mem space */
49         void *push_header;
50
51         enum ena_eth_io_l3_proto_index l3_proto;
52         enum ena_eth_io_l4_proto_index l4_proto;
53         u16 num_bufs;
54         u16 req_id;
55         /* For regular queue, indicate the size of the header
56          * For LLQ, indicate the size of the pushed buffer
57          */
58         u16 header_len;
59
60         u8 meta_valid;
61         u8 tso_enable;
62         u8 l3_csum_enable;
63         u8 l4_csum_enable;
64         u8 l4_csum_partial;
65         u8 df; /* Don't fragment */
66 };
67
68 struct ena_com_rx_ctx {
69         struct ena_com_rx_buf_info *ena_bufs;
70         enum ena_eth_io_l3_proto_index l3_proto;
71         enum ena_eth_io_l4_proto_index l4_proto;
72         bool l3_csum_err;
73         bool l4_csum_err;
74         u8 l4_csum_checked;
75         /* fragmented packet */
76         bool frag;
77         u32 hash;
78         u16 descs;
79         int max_bufs;
80         u8 pkt_offset;
81 };
82
83 int ena_com_prepare_tx(struct ena_com_io_sq *io_sq,
84                        struct ena_com_tx_ctx *ena_tx_ctx,
85                        int *nb_hw_desc);
86
87 int ena_com_rx_pkt(struct ena_com_io_cq *io_cq,
88                    struct ena_com_io_sq *io_sq,
89                    struct ena_com_rx_ctx *ena_rx_ctx);
90
91 int ena_com_add_single_rx_desc(struct ena_com_io_sq *io_sq,
92                                struct ena_com_buf *ena_buf,
93                                u16 req_id);
94
95 bool ena_com_cq_empty(struct ena_com_io_cq *io_cq);
96
97 static inline void ena_com_unmask_intr(struct ena_com_io_cq *io_cq,
98                                        struct ena_eth_io_intr_reg *intr_reg)
99 {
100         ENA_REG_WRITE32(io_cq->bus, intr_reg->intr_control, io_cq->unmask_reg);
101 }
102
103 static inline int ena_com_free_q_entries(struct ena_com_io_sq *io_sq)
104 {
105         u16 tail, next_to_comp, cnt;
106
107         next_to_comp = io_sq->next_to_comp;
108         tail = io_sq->tail;
109         cnt = tail - next_to_comp;
110
111         return io_sq->q_depth - 1 - cnt;
112 }
113
114 /* Check if the submission queue has enough space to hold required_buffers */
115 static inline bool ena_com_sq_have_enough_space(struct ena_com_io_sq *io_sq,
116                                                 u16 required_buffers)
117 {
118         int temp;
119
120         if (io_sq->mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_HOST)
121                 return ena_com_free_q_entries(io_sq) >= required_buffers;
122
123         /* This calculation doesn't need to be 100% accurate. So to reduce
124          * the calculation overhead just Subtract 2 lines from the free descs
125          * (one for the header line and one to compensate the devision
126          * down calculation.
127          */
128         temp = required_buffers / io_sq->llq_info.descs_per_entry + 2;
129
130         return ena_com_free_q_entries(io_sq) > temp;
131 }
132
133 static inline bool ena_com_meta_desc_changed(struct ena_com_io_sq *io_sq,
134                                              struct ena_com_tx_ctx *ena_tx_ctx)
135 {
136         if (!ena_tx_ctx->meta_valid)
137                 return false;
138
139         return !!memcmp(&io_sq->cached_tx_meta,
140                         &ena_tx_ctx->ena_meta,
141                         sizeof(struct ena_com_tx_meta));
142 }
143
144 static inline bool is_llq_max_tx_burst_exists(struct ena_com_io_sq *io_sq)
145 {
146         return (io_sq->mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_DEV) &&
147                io_sq->llq_info.max_entries_in_tx_burst > 0;
148 }
149
150 static inline bool ena_com_is_doorbell_needed(struct ena_com_io_sq *io_sq,
151                                               struct ena_com_tx_ctx *ena_tx_ctx)
152 {
153         struct ena_com_llq_info *llq_info;
154         int descs_after_first_entry;
155         int num_entries_needed = 1;
156         u16 num_descs;
157
158         if (!is_llq_max_tx_burst_exists(io_sq))
159                 return false;
160
161         llq_info = &io_sq->llq_info;
162         num_descs = ena_tx_ctx->num_bufs;
163
164         if (llq_info->disable_meta_caching ||
165             unlikely(ena_com_meta_desc_changed(io_sq, ena_tx_ctx)))
166                 ++num_descs;
167
168         if (num_descs > llq_info->descs_num_before_header) {
169                 descs_after_first_entry = num_descs - llq_info->descs_num_before_header;
170                 num_entries_needed += DIV_ROUND_UP(descs_after_first_entry,
171                                                    llq_info->descs_per_entry);
172         }
173
174         ena_trc_dbg("queue: %d num_descs: %d num_entries_needed: %d\n",
175                     io_sq->qid, num_descs, num_entries_needed);
176
177         return num_entries_needed > io_sq->entries_in_tx_burst_left;
178 }
179
180 static inline int ena_com_write_sq_doorbell(struct ena_com_io_sq *io_sq)
181 {
182         u16 max_entries_in_tx_burst = io_sq->llq_info.max_entries_in_tx_burst;
183         u16 tail = io_sq->tail;
184
185         ena_trc_dbg("write submission queue doorbell for queue: %d tail: %d\n",
186                     io_sq->qid, tail);
187
188         ENA_REG_WRITE32(io_sq->bus, tail, io_sq->db_addr);
189
190         if (is_llq_max_tx_burst_exists(io_sq)) {
191                 ena_trc_dbg("reset available entries in tx burst for queue %d to %d\n",
192                              io_sq->qid, max_entries_in_tx_burst);
193                 io_sq->entries_in_tx_burst_left = max_entries_in_tx_burst;
194         }
195
196         return 0;
197 }
198
199 static inline int ena_com_update_dev_comp_head(struct ena_com_io_cq *io_cq)
200 {
201         u16 unreported_comp, head;
202         bool need_update;
203
204         if (unlikely(io_cq->cq_head_db_reg)) {
205                 head = io_cq->head;
206                 unreported_comp = head - io_cq->last_head_update;
207                 need_update = unreported_comp > (io_cq->q_depth / ENA_COMP_HEAD_THRESH);
208
209                 if (unlikely(need_update)) {
210                         ena_trc_dbg("Write completion queue doorbell for queue %d: head: %d\n",
211                                     io_cq->qid, head);
212                         ENA_REG_WRITE32(io_cq->bus, head, io_cq->cq_head_db_reg);
213                         io_cq->last_head_update = head;
214                 }
215         }
216
217         return 0;
218 }
219
220 static inline void ena_com_update_numa_node(struct ena_com_io_cq *io_cq,
221                                             u8 numa_node)
222 {
223         struct ena_eth_io_numa_node_cfg_reg numa_cfg;
224
225         if (!io_cq->numa_node_cfg_reg)
226                 return;
227
228         numa_cfg.numa_cfg = (numa_node & ENA_ETH_IO_NUMA_NODE_CFG_REG_NUMA_MASK)
229                 | ENA_ETH_IO_NUMA_NODE_CFG_REG_ENABLED_MASK;
230
231         ENA_REG_WRITE32(io_cq->bus, numa_cfg.numa_cfg, io_cq->numa_node_cfg_reg);
232 }
233
234 static inline void ena_com_comp_ack(struct ena_com_io_sq *io_sq, u16 elem)
235 {
236         io_sq->next_to_comp += elem;
237 }
238
239 static inline void ena_com_cq_inc_head(struct ena_com_io_cq *io_cq)
240 {
241         io_cq->head++;
242
243         /* Switch phase bit in case of wrap around */
244         if (unlikely((io_cq->head & (io_cq->q_depth - 1)) == 0))
245                 io_cq->phase ^= 1;
246 }
247
248 static inline int ena_com_tx_comp_req_id_get(struct ena_com_io_cq *io_cq,
249                                              u16 *req_id)
250 {
251         u8 expected_phase, cdesc_phase;
252         struct ena_eth_io_tx_cdesc *cdesc;
253         u16 masked_head;
254
255         masked_head = io_cq->head & (io_cq->q_depth - 1);
256         expected_phase = io_cq->phase;
257
258         cdesc = (struct ena_eth_io_tx_cdesc *)
259                 ((uintptr_t)io_cq->cdesc_addr.virt_addr +
260                 (masked_head * io_cq->cdesc_entry_size_in_bytes));
261
262         /* When the current completion descriptor phase isn't the same as the
263          * expected, it mean that the device still didn't update
264          * this completion.
265          */
266         cdesc_phase = READ_ONCE16(cdesc->flags) & ENA_ETH_IO_TX_CDESC_PHASE_MASK;
267         if (cdesc_phase != expected_phase)
268                 return ENA_COM_TRY_AGAIN;
269
270         dma_rmb();
271
272         *req_id = READ_ONCE16(cdesc->req_id);
273         if (unlikely(*req_id >= io_cq->q_depth)) {
274                 ena_trc_err("Invalid req id %d\n", cdesc->req_id);
275                 return ENA_COM_INVAL;
276         }
277
278         ena_com_cq_inc_head(io_cq);
279
280         return 0;
281 }
282
283 #if defined(__cplusplus)
284 }
285 #endif
286 #endif /* ENA_ETH_COM_H_ */