net/i40e: fix boundary check in RSS config
[dpdk.git] / drivers / net / ena / base / ena_eth_com.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright (c) 2015-2020 Amazon.com, Inc. or its affiliates.
3  * All rights reserved.
4  */
5
6 #include "ena_eth_com.h"
7
8 static struct ena_eth_io_rx_cdesc_base *ena_com_get_next_rx_cdesc(
9         struct ena_com_io_cq *io_cq)
10 {
11         struct ena_eth_io_rx_cdesc_base *cdesc;
12         u16 expected_phase, head_masked;
13         u16 desc_phase;
14
15         head_masked = io_cq->head & (io_cq->q_depth - 1);
16         expected_phase = io_cq->phase;
17
18         cdesc = (struct ena_eth_io_rx_cdesc_base *)(io_cq->cdesc_addr.virt_addr
19                         + (head_masked * io_cq->cdesc_entry_size_in_bytes));
20
21         desc_phase = (READ_ONCE32(cdesc->status) & ENA_ETH_IO_RX_CDESC_BASE_PHASE_MASK) >>
22                         ENA_ETH_IO_RX_CDESC_BASE_PHASE_SHIFT;
23
24         if (desc_phase != expected_phase)
25                 return NULL;
26
27         /* Make sure we read the rest of the descriptor after the phase bit
28          * has been read
29          */
30         dma_rmb();
31
32         return cdesc;
33 }
34
35 static void *get_sq_desc_regular_queue(struct ena_com_io_sq *io_sq)
36 {
37         u16 tail_masked;
38         u32 offset;
39
40         tail_masked = io_sq->tail & (io_sq->q_depth - 1);
41
42         offset = tail_masked * io_sq->desc_entry_size;
43
44         return (void *)((uintptr_t)io_sq->desc_addr.virt_addr + offset);
45 }
46
47 static int ena_com_write_bounce_buffer_to_dev(struct ena_com_io_sq *io_sq,
48                                                      u8 *bounce_buffer)
49 {
50         struct ena_com_llq_info *llq_info = &io_sq->llq_info;
51
52         u16 dst_tail_mask;
53         u32 dst_offset;
54
55         dst_tail_mask = io_sq->tail & (io_sq->q_depth - 1);
56         dst_offset = dst_tail_mask * llq_info->desc_list_entry_size;
57
58         if (is_llq_max_tx_burst_exists(io_sq)) {
59                 if (unlikely(!io_sq->entries_in_tx_burst_left)) {
60                         ena_trc_err("Error: trying to send more packets than tx burst allows\n");
61                         return ENA_COM_NO_SPACE;
62                 }
63
64                 io_sq->entries_in_tx_burst_left--;
65                 ena_trc_dbg("decreasing entries_in_tx_burst_left of queue %d to %d\n",
66                             io_sq->qid, io_sq->entries_in_tx_burst_left);
67         }
68
69         /* Make sure everything was written into the bounce buffer before
70          * writing the bounce buffer to the device
71          */
72         wmb();
73
74         /* The line is completed. Copy it to dev */
75         ENA_MEMCPY_TO_DEVICE_64(io_sq->desc_addr.pbuf_dev_addr + dst_offset,
76                                 bounce_buffer,
77                                 llq_info->desc_list_entry_size);
78
79         io_sq->tail++;
80
81         /* Switch phase bit in case of wrap around */
82         if (unlikely((io_sq->tail & (io_sq->q_depth - 1)) == 0))
83                 io_sq->phase ^= 1;
84
85         return ENA_COM_OK;
86 }
87
88 static int ena_com_write_header_to_bounce(struct ena_com_io_sq *io_sq,
89                                                  u8 *header_src,
90                                                  u16 header_len)
91 {
92         struct ena_com_llq_pkt_ctrl *pkt_ctrl = &io_sq->llq_buf_ctrl;
93         struct ena_com_llq_info *llq_info = &io_sq->llq_info;
94         u8 *bounce_buffer = pkt_ctrl->curr_bounce_buf;
95         u16 header_offset;
96
97         if (unlikely(io_sq->mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_HOST))
98                 return 0;
99
100         header_offset =
101                 llq_info->descs_num_before_header * io_sq->desc_entry_size;
102
103         if (unlikely((header_offset + header_len) >  llq_info->desc_list_entry_size)) {
104                 ena_trc_err("trying to write header larger than llq entry can accommodate\n");
105                 return ENA_COM_FAULT;
106         }
107
108         if (unlikely(!bounce_buffer)) {
109                 ena_trc_err("bounce buffer is NULL\n");
110                 return ENA_COM_FAULT;
111         }
112
113         memcpy(bounce_buffer + header_offset, header_src, header_len);
114
115         return 0;
116 }
117
118 static void *get_sq_desc_llq(struct ena_com_io_sq *io_sq)
119 {
120         struct ena_com_llq_pkt_ctrl *pkt_ctrl = &io_sq->llq_buf_ctrl;
121         u8 *bounce_buffer;
122         void *sq_desc;
123
124         bounce_buffer = pkt_ctrl->curr_bounce_buf;
125
126         if (unlikely(!bounce_buffer)) {
127                 ena_trc_err("bounce buffer is NULL\n");
128                 return NULL;
129         }
130
131         sq_desc = bounce_buffer + pkt_ctrl->idx * io_sq->desc_entry_size;
132         pkt_ctrl->idx++;
133         pkt_ctrl->descs_left_in_line--;
134
135         return sq_desc;
136 }
137
138 static int ena_com_close_bounce_buffer(struct ena_com_io_sq *io_sq)
139 {
140         struct ena_com_llq_pkt_ctrl *pkt_ctrl = &io_sq->llq_buf_ctrl;
141         struct ena_com_llq_info *llq_info = &io_sq->llq_info;
142         int rc;
143
144         if (unlikely(io_sq->mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_HOST))
145                 return ENA_COM_OK;
146
147         /* bounce buffer was used, so write it and get a new one */
148         if (pkt_ctrl->idx) {
149                 rc = ena_com_write_bounce_buffer_to_dev(io_sq,
150                                                         pkt_ctrl->curr_bounce_buf);
151                 if (unlikely(rc)) {
152                         ena_trc_err("failed to write bounce buffer to device\n");
153                         return rc;
154                 }
155
156                 pkt_ctrl->curr_bounce_buf =
157                         ena_com_get_next_bounce_buffer(&io_sq->bounce_buf_ctrl);
158                 memset(io_sq->llq_buf_ctrl.curr_bounce_buf,
159                        0x0, llq_info->desc_list_entry_size);
160         }
161
162         pkt_ctrl->idx = 0;
163         pkt_ctrl->descs_left_in_line = llq_info->descs_num_before_header;
164         return ENA_COM_OK;
165 }
166
167 static void *get_sq_desc(struct ena_com_io_sq *io_sq)
168 {
169         if (io_sq->mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_DEV)
170                 return get_sq_desc_llq(io_sq);
171
172         return get_sq_desc_regular_queue(io_sq);
173 }
174
175 static int ena_com_sq_update_llq_tail(struct ena_com_io_sq *io_sq)
176 {
177         struct ena_com_llq_pkt_ctrl *pkt_ctrl = &io_sq->llq_buf_ctrl;
178         struct ena_com_llq_info *llq_info = &io_sq->llq_info;
179         int rc;
180
181         if (!pkt_ctrl->descs_left_in_line) {
182                 rc = ena_com_write_bounce_buffer_to_dev(io_sq,
183                                                         pkt_ctrl->curr_bounce_buf);
184                 if (unlikely(rc)) {
185                         ena_trc_err("failed to write bounce buffer to device\n");
186                         return rc;
187                 }
188
189                 pkt_ctrl->curr_bounce_buf =
190                         ena_com_get_next_bounce_buffer(&io_sq->bounce_buf_ctrl);
191                         memset(io_sq->llq_buf_ctrl.curr_bounce_buf,
192                                0x0, llq_info->desc_list_entry_size);
193
194                 pkt_ctrl->idx = 0;
195                 if (unlikely(llq_info->desc_stride_ctrl == ENA_ADMIN_SINGLE_DESC_PER_ENTRY))
196                         pkt_ctrl->descs_left_in_line = 1;
197                 else
198                         pkt_ctrl->descs_left_in_line =
199                         llq_info->desc_list_entry_size / io_sq->desc_entry_size;
200         }
201
202         return ENA_COM_OK;
203 }
204
205 static int ena_com_sq_update_tail(struct ena_com_io_sq *io_sq)
206 {
207         if (io_sq->mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_DEV)
208                 return ena_com_sq_update_llq_tail(io_sq);
209
210         io_sq->tail++;
211
212         /* Switch phase bit in case of wrap around */
213         if (unlikely((io_sq->tail & (io_sq->q_depth - 1)) == 0))
214                 io_sq->phase ^= 1;
215
216         return ENA_COM_OK;
217 }
218
219 static struct ena_eth_io_rx_cdesc_base *
220         ena_com_rx_cdesc_idx_to_ptr(struct ena_com_io_cq *io_cq, u16 idx)
221 {
222         idx &= (io_cq->q_depth - 1);
223         return (struct ena_eth_io_rx_cdesc_base *)
224                 ((uintptr_t)io_cq->cdesc_addr.virt_addr +
225                 idx * io_cq->cdesc_entry_size_in_bytes);
226 }
227
228 static u16 ena_com_cdesc_rx_pkt_get(struct ena_com_io_cq *io_cq,
229                                            u16 *first_cdesc_idx)
230 {
231         struct ena_eth_io_rx_cdesc_base *cdesc;
232         u16 count = 0, head_masked;
233         u32 last = 0;
234
235         do {
236                 cdesc = ena_com_get_next_rx_cdesc(io_cq);
237                 if (!cdesc)
238                         break;
239
240                 ena_com_cq_inc_head(io_cq);
241                 count++;
242                 last = (READ_ONCE32(cdesc->status) & ENA_ETH_IO_RX_CDESC_BASE_LAST_MASK) >>
243                         ENA_ETH_IO_RX_CDESC_BASE_LAST_SHIFT;
244         } while (!last);
245
246         if (last) {
247                 *first_cdesc_idx = io_cq->cur_rx_pkt_cdesc_start_idx;
248                 count += io_cq->cur_rx_pkt_cdesc_count;
249
250                 head_masked = io_cq->head & (io_cq->q_depth - 1);
251
252                 io_cq->cur_rx_pkt_cdesc_count = 0;
253                 io_cq->cur_rx_pkt_cdesc_start_idx = head_masked;
254
255                 ena_trc_dbg("ena q_id: %d packets were completed. first desc idx %u descs# %d\n",
256                             io_cq->qid, *first_cdesc_idx, count);
257         } else {
258                 io_cq->cur_rx_pkt_cdesc_count += count;
259                 count = 0;
260         }
261
262         return count;
263 }
264
265 static int ena_com_create_meta(struct ena_com_io_sq *io_sq,
266                                struct ena_com_tx_meta *ena_meta)
267 {
268         struct ena_eth_io_tx_meta_desc *meta_desc = NULL;
269
270         meta_desc = get_sq_desc(io_sq);
271         memset(meta_desc, 0x0, sizeof(struct ena_eth_io_tx_meta_desc));
272
273         meta_desc->len_ctrl |= ENA_ETH_IO_TX_META_DESC_META_DESC_MASK;
274
275         meta_desc->len_ctrl |= ENA_ETH_IO_TX_META_DESC_EXT_VALID_MASK;
276
277         /* bits 0-9 of the mss */
278         meta_desc->word2 |= (ena_meta->mss <<
279                 ENA_ETH_IO_TX_META_DESC_MSS_LO_SHIFT) &
280                 ENA_ETH_IO_TX_META_DESC_MSS_LO_MASK;
281         /* bits 10-13 of the mss */
282         meta_desc->len_ctrl |= ((ena_meta->mss >> 10) <<
283                 ENA_ETH_IO_TX_META_DESC_MSS_HI_SHIFT) &
284                 ENA_ETH_IO_TX_META_DESC_MSS_HI_MASK;
285
286         /* Extended meta desc */
287         meta_desc->len_ctrl |= ENA_ETH_IO_TX_META_DESC_ETH_META_TYPE_MASK;
288         meta_desc->len_ctrl |= (io_sq->phase <<
289                 ENA_ETH_IO_TX_META_DESC_PHASE_SHIFT) &
290                 ENA_ETH_IO_TX_META_DESC_PHASE_MASK;
291
292         meta_desc->len_ctrl |= ENA_ETH_IO_TX_META_DESC_FIRST_MASK;
293         meta_desc->len_ctrl |= ENA_ETH_IO_TX_META_DESC_META_STORE_MASK;
294
295         meta_desc->word2 |= ena_meta->l3_hdr_len &
296                 ENA_ETH_IO_TX_META_DESC_L3_HDR_LEN_MASK;
297         meta_desc->word2 |= (ena_meta->l3_hdr_offset <<
298                 ENA_ETH_IO_TX_META_DESC_L3_HDR_OFF_SHIFT) &
299                 ENA_ETH_IO_TX_META_DESC_L3_HDR_OFF_MASK;
300
301         meta_desc->word2 |= (ena_meta->l4_hdr_len <<
302                 ENA_ETH_IO_TX_META_DESC_L4_HDR_LEN_IN_WORDS_SHIFT) &
303                 ENA_ETH_IO_TX_META_DESC_L4_HDR_LEN_IN_WORDS_MASK;
304
305         return ena_com_sq_update_tail(io_sq);
306 }
307
308 static int ena_com_create_and_store_tx_meta_desc(struct ena_com_io_sq *io_sq,
309                                                  struct ena_com_tx_ctx *ena_tx_ctx,
310                                                  bool *have_meta)
311 {
312         struct ena_com_tx_meta *ena_meta = &ena_tx_ctx->ena_meta;
313
314         /* When disable meta caching is set, don't bother to save the meta and
315          * compare it to the stored version, just create the meta
316          */
317         if (io_sq->disable_meta_caching) {
318                 if (unlikely(!ena_tx_ctx->meta_valid))
319                         return ENA_COM_INVAL;
320
321                 *have_meta = true;
322                 return ena_com_create_meta(io_sq, ena_meta);
323         } else if (ena_com_meta_desc_changed(io_sq, ena_tx_ctx)) {
324                 *have_meta = true;
325                 /* Cache the meta desc */
326                 memcpy(&io_sq->cached_tx_meta, ena_meta,
327                        sizeof(struct ena_com_tx_meta));
328                 return ena_com_create_meta(io_sq, ena_meta);
329         } else {
330                 *have_meta = false;
331                 return ENA_COM_OK;
332         }
333 }
334
335 static void ena_com_rx_set_flags(struct ena_com_rx_ctx *ena_rx_ctx,
336                                         struct ena_eth_io_rx_cdesc_base *cdesc)
337 {
338         ena_rx_ctx->l3_proto = cdesc->status &
339                 ENA_ETH_IO_RX_CDESC_BASE_L3_PROTO_IDX_MASK;
340         ena_rx_ctx->l4_proto =
341                 (cdesc->status & ENA_ETH_IO_RX_CDESC_BASE_L4_PROTO_IDX_MASK) >>
342                 ENA_ETH_IO_RX_CDESC_BASE_L4_PROTO_IDX_SHIFT;
343         ena_rx_ctx->l3_csum_err =
344                 !!((cdesc->status & ENA_ETH_IO_RX_CDESC_BASE_L3_CSUM_ERR_MASK) >>
345                 ENA_ETH_IO_RX_CDESC_BASE_L3_CSUM_ERR_SHIFT);
346         ena_rx_ctx->l4_csum_err =
347                 !!((cdesc->status & ENA_ETH_IO_RX_CDESC_BASE_L4_CSUM_ERR_MASK) >>
348                 ENA_ETH_IO_RX_CDESC_BASE_L4_CSUM_ERR_SHIFT);
349         ena_rx_ctx->l4_csum_checked =
350                 !!((cdesc->status & ENA_ETH_IO_RX_CDESC_BASE_L4_CSUM_CHECKED_MASK) >>
351                 ENA_ETH_IO_RX_CDESC_BASE_L4_CSUM_CHECKED_SHIFT);
352         ena_rx_ctx->hash = cdesc->hash;
353         ena_rx_ctx->frag =
354                 (cdesc->status & ENA_ETH_IO_RX_CDESC_BASE_IPV4_FRAG_MASK) >>
355                 ENA_ETH_IO_RX_CDESC_BASE_IPV4_FRAG_SHIFT;
356
357         ena_trc_dbg("ena_rx_ctx->l3_proto %d ena_rx_ctx->l4_proto %d\nena_rx_ctx->l3_csum_err %d ena_rx_ctx->l4_csum_err %d\nhash frag %d frag: %d cdesc_status: %x\n",
358                     ena_rx_ctx->l3_proto,
359                     ena_rx_ctx->l4_proto,
360                     ena_rx_ctx->l3_csum_err,
361                     ena_rx_ctx->l4_csum_err,
362                     ena_rx_ctx->hash,
363                     ena_rx_ctx->frag,
364                     cdesc->status);
365 }
366
367 /*****************************************************************************/
368 /*****************************     API      **********************************/
369 /*****************************************************************************/
370
371 int ena_com_prepare_tx(struct ena_com_io_sq *io_sq,
372                        struct ena_com_tx_ctx *ena_tx_ctx,
373                        int *nb_hw_desc)
374 {
375         struct ena_eth_io_tx_desc *desc = NULL;
376         struct ena_com_buf *ena_bufs = ena_tx_ctx->ena_bufs;
377         void *buffer_to_push = ena_tx_ctx->push_header;
378         u16 header_len = ena_tx_ctx->header_len;
379         u16 num_bufs = ena_tx_ctx->num_bufs;
380         u16 start_tail = io_sq->tail;
381         int i, rc;
382         bool have_meta;
383         u64 addr_hi;
384
385         ENA_WARN(io_sq->direction != ENA_COM_IO_QUEUE_DIRECTION_TX,
386                  "wrong Q type");
387
388         /* num_bufs +1 for potential meta desc */
389         if (unlikely(!ena_com_sq_have_enough_space(io_sq, num_bufs + 1))) {
390                 ena_trc_dbg("Not enough space in the tx queue\n");
391                 return ENA_COM_NO_MEM;
392         }
393
394         if (unlikely(header_len > io_sq->tx_max_header_size)) {
395                 ena_trc_err("header size is too large %d max header: %d\n",
396                             header_len, io_sq->tx_max_header_size);
397                 return ENA_COM_INVAL;
398         }
399
400         if (unlikely(io_sq->mem_queue_type == ENA_ADMIN_PLACEMENT_POLICY_DEV
401                      && !buffer_to_push)) {
402                 ena_trc_err("push header wasn't provided on LLQ mode\n");
403                 return ENA_COM_INVAL;
404         }
405
406         rc = ena_com_write_header_to_bounce(io_sq, buffer_to_push, header_len);
407         if (unlikely(rc))
408                 return rc;
409
410         rc = ena_com_create_and_store_tx_meta_desc(io_sq, ena_tx_ctx, &have_meta);
411         if (unlikely(rc)) {
412                 ena_trc_err("failed to create and store tx meta desc\n");
413                 return rc;
414         }
415
416         /* If the caller doesn't want to send packets */
417         if (unlikely(!num_bufs && !header_len)) {
418                 rc = ena_com_close_bounce_buffer(io_sq);
419                 if (rc)
420                         ena_trc_err("failed to write buffers to LLQ\n");
421                 *nb_hw_desc = io_sq->tail - start_tail;
422                 return rc;
423         }
424
425         desc = get_sq_desc(io_sq);
426         if (unlikely(!desc))
427                 return ENA_COM_FAULT;
428         memset(desc, 0x0, sizeof(struct ena_eth_io_tx_desc));
429
430         /* Set first desc when we don't have meta descriptor */
431         if (!have_meta)
432                 desc->len_ctrl |= ENA_ETH_IO_TX_DESC_FIRST_MASK;
433
434         desc->buff_addr_hi_hdr_sz |= (header_len <<
435                 ENA_ETH_IO_TX_DESC_HEADER_LENGTH_SHIFT) &
436                 ENA_ETH_IO_TX_DESC_HEADER_LENGTH_MASK;
437         desc->len_ctrl |= (io_sq->phase << ENA_ETH_IO_TX_DESC_PHASE_SHIFT) &
438                 ENA_ETH_IO_TX_DESC_PHASE_MASK;
439
440         desc->len_ctrl |= ENA_ETH_IO_TX_DESC_COMP_REQ_MASK;
441
442         /* Bits 0-9 */
443         desc->meta_ctrl |= (ena_tx_ctx->req_id <<
444                 ENA_ETH_IO_TX_DESC_REQ_ID_LO_SHIFT) &
445                 ENA_ETH_IO_TX_DESC_REQ_ID_LO_MASK;
446
447         desc->meta_ctrl |= (ena_tx_ctx->df <<
448                 ENA_ETH_IO_TX_DESC_DF_SHIFT) &
449                 ENA_ETH_IO_TX_DESC_DF_MASK;
450
451         /* Bits 10-15 */
452         desc->len_ctrl |= ((ena_tx_ctx->req_id >> 10) <<
453                 ENA_ETH_IO_TX_DESC_REQ_ID_HI_SHIFT) &
454                 ENA_ETH_IO_TX_DESC_REQ_ID_HI_MASK;
455
456         if (ena_tx_ctx->meta_valid) {
457                 desc->meta_ctrl |= (ena_tx_ctx->tso_enable <<
458                         ENA_ETH_IO_TX_DESC_TSO_EN_SHIFT) &
459                         ENA_ETH_IO_TX_DESC_TSO_EN_MASK;
460                 desc->meta_ctrl |= ena_tx_ctx->l3_proto &
461                         ENA_ETH_IO_TX_DESC_L3_PROTO_IDX_MASK;
462                 desc->meta_ctrl |= (ena_tx_ctx->l4_proto <<
463                         ENA_ETH_IO_TX_DESC_L4_PROTO_IDX_SHIFT) &
464                         ENA_ETH_IO_TX_DESC_L4_PROTO_IDX_MASK;
465                 desc->meta_ctrl |= (ena_tx_ctx->l3_csum_enable <<
466                         ENA_ETH_IO_TX_DESC_L3_CSUM_EN_SHIFT) &
467                         ENA_ETH_IO_TX_DESC_L3_CSUM_EN_MASK;
468                 desc->meta_ctrl |= (ena_tx_ctx->l4_csum_enable <<
469                         ENA_ETH_IO_TX_DESC_L4_CSUM_EN_SHIFT) &
470                         ENA_ETH_IO_TX_DESC_L4_CSUM_EN_MASK;
471                 desc->meta_ctrl |= (ena_tx_ctx->l4_csum_partial <<
472                         ENA_ETH_IO_TX_DESC_L4_CSUM_PARTIAL_SHIFT) &
473                         ENA_ETH_IO_TX_DESC_L4_CSUM_PARTIAL_MASK;
474         }
475
476         for (i = 0; i < num_bufs; i++) {
477                 /* The first desc share the same desc as the header */
478                 if (likely(i != 0)) {
479                         rc = ena_com_sq_update_tail(io_sq);
480                         if (unlikely(rc)) {
481                                 ena_trc_err("failed to update sq tail\n");
482                                 return rc;
483                         }
484
485                         desc = get_sq_desc(io_sq);
486                         if (unlikely(!desc))
487                                 return ENA_COM_FAULT;
488
489                         memset(desc, 0x0, sizeof(struct ena_eth_io_tx_desc));
490
491                         desc->len_ctrl |= (io_sq->phase <<
492                                 ENA_ETH_IO_TX_DESC_PHASE_SHIFT) &
493                                 ENA_ETH_IO_TX_DESC_PHASE_MASK;
494                 }
495
496                 desc->len_ctrl |= ena_bufs->len &
497                         ENA_ETH_IO_TX_DESC_LENGTH_MASK;
498
499                 addr_hi = ((ena_bufs->paddr &
500                         GENMASK_ULL(io_sq->dma_addr_bits - 1, 32)) >> 32);
501
502                 desc->buff_addr_lo = (u32)ena_bufs->paddr;
503                 desc->buff_addr_hi_hdr_sz |= addr_hi &
504                         ENA_ETH_IO_TX_DESC_ADDR_HI_MASK;
505                 ena_bufs++;
506         }
507
508         /* set the last desc indicator */
509         desc->len_ctrl |= ENA_ETH_IO_TX_DESC_LAST_MASK;
510
511         rc = ena_com_sq_update_tail(io_sq);
512         if (unlikely(rc)) {
513                 ena_trc_err("failed to update sq tail of the last descriptor\n");
514                 return rc;
515         }
516
517         rc = ena_com_close_bounce_buffer(io_sq);
518         if (rc)
519                 ena_trc_err("failed when closing bounce buffer\n");
520
521         *nb_hw_desc = io_sq->tail - start_tail;
522         return rc;
523 }
524
525 int ena_com_rx_pkt(struct ena_com_io_cq *io_cq,
526                    struct ena_com_io_sq *io_sq,
527                    struct ena_com_rx_ctx *ena_rx_ctx)
528 {
529         struct ena_com_rx_buf_info *ena_buf = &ena_rx_ctx->ena_bufs[0];
530         struct ena_eth_io_rx_cdesc_base *cdesc = NULL;
531         u16 cdesc_idx = 0;
532         u16 nb_hw_desc;
533         u16 i = 0;
534
535         ENA_WARN(io_cq->direction != ENA_COM_IO_QUEUE_DIRECTION_RX,
536                  "wrong Q type");
537
538         nb_hw_desc = ena_com_cdesc_rx_pkt_get(io_cq, &cdesc_idx);
539         if (nb_hw_desc == 0) {
540                 ena_rx_ctx->descs = nb_hw_desc;
541                 return 0;
542         }
543
544         ena_trc_dbg("fetch rx packet: queue %d completed desc: %d\n",
545                     io_cq->qid, nb_hw_desc);
546
547         if (unlikely(nb_hw_desc > ena_rx_ctx->max_bufs)) {
548                 ena_trc_err("Too many RX cdescs (%d) > MAX(%d)\n",
549                             nb_hw_desc, ena_rx_ctx->max_bufs);
550                 return ENA_COM_NO_SPACE;
551         }
552
553         cdesc = ena_com_rx_cdesc_idx_to_ptr(io_cq, cdesc_idx);
554         ena_rx_ctx->pkt_offset = cdesc->offset;
555
556         do {
557                 ena_buf->len = cdesc->length;
558                 ena_buf->req_id = cdesc->req_id;
559                 ena_buf++;
560         } while ((++i < nb_hw_desc) && (cdesc = ena_com_rx_cdesc_idx_to_ptr(io_cq, cdesc_idx + i)));
561
562         /* Update SQ head ptr */
563         io_sq->next_to_comp += nb_hw_desc;
564
565         ena_trc_dbg("[%s][QID#%d] Updating SQ head to: %d\n", __func__,
566                     io_sq->qid, io_sq->next_to_comp);
567
568         /* Get rx flags from the last pkt */
569         ena_com_rx_set_flags(ena_rx_ctx, cdesc);
570
571         ena_rx_ctx->descs = nb_hw_desc;
572         return 0;
573 }
574
575 int ena_com_add_single_rx_desc(struct ena_com_io_sq *io_sq,
576                                struct ena_com_buf *ena_buf,
577                                u16 req_id)
578 {
579         struct ena_eth_io_rx_desc *desc;
580
581         ENA_WARN(io_sq->direction != ENA_COM_IO_QUEUE_DIRECTION_RX,
582                  "wrong Q type");
583
584         if (unlikely(!ena_com_sq_have_enough_space(io_sq, 1)))
585                 return ENA_COM_NO_SPACE;
586
587         desc = get_sq_desc(io_sq);
588         if (unlikely(!desc))
589                 return ENA_COM_FAULT;
590
591         memset(desc, 0x0, sizeof(struct ena_eth_io_rx_desc));
592
593         desc->length = ena_buf->len;
594
595         desc->ctrl = ENA_ETH_IO_RX_DESC_FIRST_MASK |
596                 ENA_ETH_IO_RX_DESC_LAST_MASK |
597                 (io_sq->phase & ENA_ETH_IO_RX_DESC_PHASE_MASK) |
598                 ENA_ETH_IO_RX_DESC_COMP_REQ_MASK;
599
600         desc->req_id = req_id;
601
602         desc->buff_addr_lo = (u32)ena_buf->paddr;
603         desc->buff_addr_hi =
604                 ((ena_buf->paddr & GENMASK_ULL(io_sq->dma_addr_bits - 1, 32)) >> 32);
605
606         return ena_com_sq_update_tail(io_sq);
607 }
608
609 bool ena_com_cq_empty(struct ena_com_io_cq *io_cq)
610 {
611         struct ena_eth_io_rx_cdesc_base *cdesc;
612
613         cdesc = ena_com_get_next_rx_cdesc(io_cq);
614         if (cdesc)
615                 return false;
616         else
617                 return true;
618 }