blob: ec234b626fe37c07bed7993922374eb5bf27e505 [file] [log] [blame]
Sunil Goutham4863dea2015-05-26 19:20:15 -07001/*
2 * Copyright (C) 2015 Cavium, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License
6 * as published by the Free Software Foundation.
7 */
8
9#include <linux/pci.h>
10#include <linux/netdevice.h>
11#include <linux/ip.h>
12#include <linux/etherdevice.h>
Sunil Goutham83abb7d2017-03-07 18:09:08 +053013#include <linux/iommu.h>
Sunil Goutham4863dea2015-05-26 19:20:15 -070014#include <net/ip.h>
15#include <net/tso.h>
16
17#include "nic_reg.h"
18#include "nic.h"
19#include "q_struct.h"
20#include "nicvf_queues.h"
21
Sunil Goutham16f2bcc2017-05-02 18:36:56 +053022static inline void nicvf_sq_add_gather_subdesc(struct snd_queue *sq, int qentry,
23 int size, u64 data);
Sunil Goutham5c2e26f2016-03-14 16:36:14 +053024static void nicvf_get_page(struct nicvf *nic)
25{
26 if (!nic->rb_pageref || !nic->rb_page)
27 return;
28
Joonsoo Kim6d061f92016-05-19 17:10:46 -070029 page_ref_add(nic->rb_page, nic->rb_pageref);
Sunil Goutham5c2e26f2016-03-14 16:36:14 +053030 nic->rb_pageref = 0;
31}
32
Sunil Goutham4863dea2015-05-26 19:20:15 -070033/* Poll a register for a specific value */
34static int nicvf_poll_reg(struct nicvf *nic, int qidx,
35 u64 reg, int bit_pos, int bits, int val)
36{
37 u64 bit_mask;
38 u64 reg_val;
39 int timeout = 10;
40
41 bit_mask = (1ULL << bits) - 1;
42 bit_mask = (bit_mask << bit_pos);
43
44 while (timeout) {
45 reg_val = nicvf_queue_reg_read(nic, reg, qidx);
46 if (((reg_val & bit_mask) >> bit_pos) == val)
47 return 0;
48 usleep_range(1000, 2000);
49 timeout--;
50 }
51 netdev_err(nic->netdev, "Poll on reg 0x%llx failed\n", reg);
52 return 1;
53}
54
55/* Allocate memory for a queue's descriptors */
56static int nicvf_alloc_q_desc_mem(struct nicvf *nic, struct q_desc_mem *dmem,
57 int q_len, int desc_size, int align_bytes)
58{
59 dmem->q_len = q_len;
60 dmem->size = (desc_size * q_len) + align_bytes;
61 /* Save address, need it while freeing */
62 dmem->unalign_base = dma_zalloc_coherent(&nic->pdev->dev, dmem->size,
63 &dmem->dma, GFP_KERNEL);
64 if (!dmem->unalign_base)
65 return -ENOMEM;
66
67 /* Align memory address for 'align_bytes' */
68 dmem->phys_base = NICVF_ALIGNED_ADDR((u64)dmem->dma, align_bytes);
Aleksey Makarov39a0dd02015-06-02 11:00:25 -070069 dmem->base = dmem->unalign_base + (dmem->phys_base - dmem->dma);
Sunil Goutham4863dea2015-05-26 19:20:15 -070070 return 0;
71}
72
73/* Free queue's descriptor memory */
74static void nicvf_free_q_desc_mem(struct nicvf *nic, struct q_desc_mem *dmem)
75{
76 if (!dmem)
77 return;
78
79 dma_free_coherent(&nic->pdev->dev, dmem->size,
80 dmem->unalign_base, dmem->dma);
81 dmem->unalign_base = NULL;
82 dmem->base = NULL;
83}
84
Sunil Goutham5836b442017-05-02 18:36:50 +053085/* Allocate a new page or recycle one if possible
86 *
87 * We cannot optimize dma mapping here, since
88 * 1. It's only one RBDR ring for 8 Rx queues.
89 * 2. CQE_RX gives address of the buffer where pkt has been DMA'ed
90 * and not idx into RBDR ring, so can't refer to saved info.
91 * 3. There are multiple receive buffers per page
Sunil Goutham4863dea2015-05-26 19:20:15 -070092 */
Sunil Goutham5836b442017-05-02 18:36:50 +053093static struct pgcache *nicvf_alloc_page(struct nicvf *nic,
94 struct rbdr *rbdr, gfp_t gfp)
Sunil Goutham4863dea2015-05-26 19:20:15 -070095{
Sunil Goutham5836b442017-05-02 18:36:50 +053096 struct page *page = NULL;
97 struct pgcache *pgcache, *next;
98
99 /* Check if page is already allocated */
100 pgcache = &rbdr->pgcache[rbdr->pgidx];
101 page = pgcache->page;
102 /* Check if page can be recycled */
103 if (page && (page_ref_count(page) != 1))
104 page = NULL;
105
106 if (!page) {
107 page = alloc_pages(gfp | __GFP_COMP | __GFP_NOWARN, 0);
108 if (!page)
109 return NULL;
110
111 this_cpu_inc(nic->pnicvf->drv_stats->page_alloc);
112
113 /* Check for space */
114 if (rbdr->pgalloc >= rbdr->pgcnt) {
115 /* Page can still be used */
116 nic->rb_page = page;
117 return NULL;
118 }
119
120 /* Save the page in page cache */
121 pgcache->page = page;
Sunil Gouthamc56d91c2017-05-02 18:36:55 +0530122 pgcache->dma_addr = 0;
Sunil Goutham5836b442017-05-02 18:36:50 +0530123 rbdr->pgalloc++;
124 }
125
126 /* Take extra page reference for recycling */
127 page_ref_add(page, 1);
128
129 rbdr->pgidx++;
130 rbdr->pgidx &= (rbdr->pgcnt - 1);
131
132 /* Prefetch refcount of next page in page cache */
133 next = &rbdr->pgcache[rbdr->pgidx];
134 page = next->page;
135 if (page)
136 prefetch(&page->_refcount);
137
138 return pgcache;
139}
140
141/* Allocate buffer for packet reception */
142static inline int nicvf_alloc_rcv_buffer(struct nicvf *nic, struct rbdr *rbdr,
Sunil Goutham927987f2017-05-02 18:36:53 +0530143 gfp_t gfp, u32 buf_len, u64 *rbuf)
Sunil Goutham5836b442017-05-02 18:36:50 +0530144{
145 struct pgcache *pgcache = NULL;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700146
Sunil Goutham05c773f2017-05-02 18:36:54 +0530147 /* Check if request can be accomodated in previous allocated page.
148 * But in XDP mode only one buffer per page is permitted.
149 */
Sunil Gouthamc56d91c2017-05-02 18:36:55 +0530150 if (!rbdr->is_xdp && nic->rb_page &&
Sunil Goutham5836b442017-05-02 18:36:50 +0530151 ((nic->rb_page_offset + buf_len) <= PAGE_SIZE)) {
Sunil Goutham5c2e26f2016-03-14 16:36:14 +0530152 nic->rb_pageref++;
153 goto ret;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700154 }
155
Sunil Goutham5c2e26f2016-03-14 16:36:14 +0530156 nicvf_get_page(nic);
Sunil Goutham5836b442017-05-02 18:36:50 +0530157 nic->rb_page = NULL;
Sunil Goutham5c2e26f2016-03-14 16:36:14 +0530158
Sunil Goutham5836b442017-05-02 18:36:50 +0530159 /* Get new page, either recycled or new one */
160 pgcache = nicvf_alloc_page(nic, rbdr, gfp);
161 if (!pgcache && !nic->rb_page) {
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530162 this_cpu_inc(nic->pnicvf->drv_stats->rcv_buffer_alloc_failures);
163 return -ENOMEM;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700164 }
Sunil Goutham5836b442017-05-02 18:36:50 +0530165
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530166 nic->rb_page_offset = 0;
Sunil Goutham5836b442017-05-02 18:36:50 +0530167 /* Check if it's recycled */
168 if (pgcache)
169 nic->rb_page = pgcache->page;
Sunil Goutham5c2e26f2016-03-14 16:36:14 +0530170ret:
Sunil Gouthamc56d91c2017-05-02 18:36:55 +0530171 if (rbdr->is_xdp && pgcache && pgcache->dma_addr) {
172 *rbuf = pgcache->dma_addr;
173 } else {
174 /* HW will ensure data coherency, CPU sync not required */
175 *rbuf = (u64)dma_map_page_attrs(&nic->pdev->dev, nic->rb_page,
176 nic->rb_page_offset, buf_len,
177 DMA_FROM_DEVICE,
178 DMA_ATTR_SKIP_CPU_SYNC);
179 if (dma_mapping_error(&nic->pdev->dev, (dma_addr_t)*rbuf)) {
180 if (!nic->rb_page_offset)
181 __free_pages(nic->rb_page, 0);
182 nic->rb_page = NULL;
183 return -ENOMEM;
184 }
185 if (pgcache)
186 pgcache->dma_addr = *rbuf;
187 nic->rb_page_offset += buf_len;
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530188 }
Sunil Goutham4863dea2015-05-26 19:20:15 -0700189
Sunil Goutham4863dea2015-05-26 19:20:15 -0700190 return 0;
191}
192
Sunil Goutham668dda02015-12-07 10:30:33 +0530193/* Build skb around receive buffer */
Sunil Goutham4863dea2015-05-26 19:20:15 -0700194static struct sk_buff *nicvf_rb_ptr_to_skb(struct nicvf *nic,
195 u64 rb_ptr, int len)
196{
Sunil Goutham668dda02015-12-07 10:30:33 +0530197 void *data;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700198 struct sk_buff *skb;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700199
Sunil Goutham668dda02015-12-07 10:30:33 +0530200 data = phys_to_virt(rb_ptr);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700201
202 /* Now build an skb to give to stack */
Sunil Goutham668dda02015-12-07 10:30:33 +0530203 skb = build_skb(data, RCV_FRAG_LEN);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700204 if (!skb) {
Sunil Goutham668dda02015-12-07 10:30:33 +0530205 put_page(virt_to_page(data));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700206 return NULL;
207 }
208
Sunil Goutham668dda02015-12-07 10:30:33 +0530209 prefetch(skb->data);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700210 return skb;
211}
212
213/* Allocate RBDR ring and populate receive buffers */
214static int nicvf_init_rbdr(struct nicvf *nic, struct rbdr *rbdr,
215 int ring_len, int buf_size)
216{
217 int idx;
Sunil Goutham927987f2017-05-02 18:36:53 +0530218 u64 rbuf;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700219 struct rbdr_entry_t *desc;
220 int err;
221
222 err = nicvf_alloc_q_desc_mem(nic, &rbdr->dmem, ring_len,
223 sizeof(struct rbdr_entry_t),
224 NICVF_RCV_BUF_ALIGN_BYTES);
225 if (err)
226 return err;
227
228 rbdr->desc = rbdr->dmem.base;
229 /* Buffer size has to be in multiples of 128 bytes */
230 rbdr->dma_size = buf_size;
231 rbdr->enable = true;
232 rbdr->thresh = RBDR_THRESH;
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530233 rbdr->head = 0;
234 rbdr->tail = 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700235
Sunil Goutham5836b442017-05-02 18:36:50 +0530236 /* Initialize page recycling stuff.
237 *
238 * Can't use single buffer per page especially with 64K pages.
239 * On embedded platforms i.e 81xx/83xx available memory itself
240 * is low and minimum ring size of RBDR is 8K, that takes away
241 * lots of memory.
Sunil Gouthamc56d91c2017-05-02 18:36:55 +0530242 *
243 * But for XDP it has to be a single buffer per page.
Sunil Goutham5836b442017-05-02 18:36:50 +0530244 */
Sunil Gouthamc56d91c2017-05-02 18:36:55 +0530245 if (!nic->pnicvf->xdp_prog) {
246 rbdr->pgcnt = ring_len / (PAGE_SIZE / buf_size);
247 rbdr->is_xdp = false;
248 } else {
249 rbdr->pgcnt = ring_len;
250 rbdr->is_xdp = true;
251 }
Sunil Goutham5836b442017-05-02 18:36:50 +0530252 rbdr->pgcnt = roundup_pow_of_two(rbdr->pgcnt);
253 rbdr->pgcache = kzalloc(sizeof(*rbdr->pgcache) *
254 rbdr->pgcnt, GFP_KERNEL);
255 if (!rbdr->pgcache)
256 return -ENOMEM;
257 rbdr->pgidx = 0;
258 rbdr->pgalloc = 0;
259
Sunil Goutham4863dea2015-05-26 19:20:15 -0700260 nic->rb_page = NULL;
261 for (idx = 0; idx < ring_len; idx++) {
Sunil Goutham5836b442017-05-02 18:36:50 +0530262 err = nicvf_alloc_rcv_buffer(nic, rbdr, GFP_KERNEL,
263 RCV_FRAG_LEN, &rbuf);
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530264 if (err) {
265 /* To free already allocated and mapped ones */
266 rbdr->tail = idx - 1;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700267 return err;
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530268 }
Sunil Goutham4863dea2015-05-26 19:20:15 -0700269
270 desc = GET_RBDR_DESC(rbdr, idx);
Sunil Goutham927987f2017-05-02 18:36:53 +0530271 desc->buf_addr = rbuf & ~(NICVF_RCV_BUF_ALIGN_BYTES - 1);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700272 }
Sunil Goutham5c2e26f2016-03-14 16:36:14 +0530273
274 nicvf_get_page(nic);
275
Sunil Goutham4863dea2015-05-26 19:20:15 -0700276 return 0;
277}
278
279/* Free RBDR ring and its receive buffers */
280static void nicvf_free_rbdr(struct nicvf *nic, struct rbdr *rbdr)
281{
282 int head, tail;
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530283 u64 buf_addr, phys_addr;
Sunil Goutham5836b442017-05-02 18:36:50 +0530284 struct pgcache *pgcache;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700285 struct rbdr_entry_t *desc;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700286
287 if (!rbdr)
288 return;
289
290 rbdr->enable = false;
291 if (!rbdr->dmem.base)
292 return;
293
294 head = rbdr->head;
295 tail = rbdr->tail;
296
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530297 /* Release page references */
Sunil Goutham4863dea2015-05-26 19:20:15 -0700298 while (head != tail) {
299 desc = GET_RBDR_DESC(rbdr, head);
Sunil Goutham5e848e42017-05-02 18:36:51 +0530300 buf_addr = desc->buf_addr;
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530301 phys_addr = nicvf_iova_to_phys(nic, buf_addr);
302 dma_unmap_page_attrs(&nic->pdev->dev, buf_addr, RCV_FRAG_LEN,
303 DMA_FROM_DEVICE, DMA_ATTR_SKIP_CPU_SYNC);
304 if (phys_addr)
305 put_page(virt_to_page(phys_to_virt(phys_addr)));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700306 head++;
307 head &= (rbdr->dmem.q_len - 1);
308 }
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530309 /* Release buffer of tail desc */
Sunil Goutham4863dea2015-05-26 19:20:15 -0700310 desc = GET_RBDR_DESC(rbdr, tail);
Sunil Goutham5e848e42017-05-02 18:36:51 +0530311 buf_addr = desc->buf_addr;
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530312 phys_addr = nicvf_iova_to_phys(nic, buf_addr);
313 dma_unmap_page_attrs(&nic->pdev->dev, buf_addr, RCV_FRAG_LEN,
314 DMA_FROM_DEVICE, DMA_ATTR_SKIP_CPU_SYNC);
315 if (phys_addr)
316 put_page(virt_to_page(phys_to_virt(phys_addr)));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700317
Sunil Goutham5836b442017-05-02 18:36:50 +0530318 /* Sync page cache info */
319 smp_rmb();
320
321 /* Release additional page references held for recycling */
322 head = 0;
323 while (head < rbdr->pgcnt) {
324 pgcache = &rbdr->pgcache[head];
325 if (pgcache->page && page_ref_count(pgcache->page) != 0)
326 put_page(pgcache->page);
327 head++;
328 }
329
Sunil Goutham4863dea2015-05-26 19:20:15 -0700330 /* Free RBDR ring */
331 nicvf_free_q_desc_mem(nic, &rbdr->dmem);
332}
333
334/* Refill receive buffer descriptors with new buffers.
335 */
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700336static void nicvf_refill_rbdr(struct nicvf *nic, gfp_t gfp)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700337{
338 struct queue_set *qs = nic->qs;
339 int rbdr_idx = qs->rbdr_cnt;
340 int tail, qcount;
341 int refill_rb_cnt;
342 struct rbdr *rbdr;
343 struct rbdr_entry_t *desc;
Sunil Goutham927987f2017-05-02 18:36:53 +0530344 u64 rbuf;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700345 int new_rb = 0;
346
347refill:
348 if (!rbdr_idx)
349 return;
350 rbdr_idx--;
351 rbdr = &qs->rbdr[rbdr_idx];
352 /* Check if it's enabled */
353 if (!rbdr->enable)
354 goto next_rbdr;
355
356 /* Get no of desc's to be refilled */
357 qcount = nicvf_queue_reg_read(nic, NIC_QSET_RBDR_0_1_STATUS0, rbdr_idx);
358 qcount &= 0x7FFFF;
359 /* Doorbell can be ringed with a max of ring size minus 1 */
360 if (qcount >= (qs->rbdr_len - 1))
361 goto next_rbdr;
362 else
363 refill_rb_cnt = qs->rbdr_len - qcount - 1;
364
Sunil Goutham5836b442017-05-02 18:36:50 +0530365 /* Sync page cache info */
366 smp_rmb();
367
Sunil Goutham4863dea2015-05-26 19:20:15 -0700368 /* Start filling descs from tail */
369 tail = nicvf_queue_reg_read(nic, NIC_QSET_RBDR_0_1_TAIL, rbdr_idx) >> 3;
370 while (refill_rb_cnt) {
371 tail++;
372 tail &= (rbdr->dmem.q_len - 1);
373
Sunil Goutham5836b442017-05-02 18:36:50 +0530374 if (nicvf_alloc_rcv_buffer(nic, rbdr, gfp, RCV_FRAG_LEN, &rbuf))
Sunil Goutham4863dea2015-05-26 19:20:15 -0700375 break;
376
377 desc = GET_RBDR_DESC(rbdr, tail);
Sunil Goutham927987f2017-05-02 18:36:53 +0530378 desc->buf_addr = rbuf & ~(NICVF_RCV_BUF_ALIGN_BYTES - 1);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700379 refill_rb_cnt--;
380 new_rb++;
381 }
382
Sunil Goutham5c2e26f2016-03-14 16:36:14 +0530383 nicvf_get_page(nic);
384
Sunil Goutham4863dea2015-05-26 19:20:15 -0700385 /* make sure all memory stores are done before ringing doorbell */
386 smp_wmb();
387
388 /* Check if buffer allocation failed */
389 if (refill_rb_cnt)
390 nic->rb_alloc_fail = true;
391 else
392 nic->rb_alloc_fail = false;
393
394 /* Notify HW */
395 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_DOOR,
396 rbdr_idx, new_rb);
397next_rbdr:
398 /* Re-enable RBDR interrupts only if buffer allocation is success */
Sunil Gouthamc94acf82016-11-15 17:38:29 +0530399 if (!nic->rb_alloc_fail && rbdr->enable &&
400 netif_running(nic->pnicvf->netdev))
Sunil Goutham4863dea2015-05-26 19:20:15 -0700401 nicvf_enable_intr(nic, NICVF_INTR_RBDR, rbdr_idx);
402
403 if (rbdr_idx)
404 goto refill;
405}
406
407/* Alloc rcv buffers in non-atomic mode for better success */
408void nicvf_rbdr_work(struct work_struct *work)
409{
410 struct nicvf *nic = container_of(work, struct nicvf, rbdr_work.work);
411
412 nicvf_refill_rbdr(nic, GFP_KERNEL);
413 if (nic->rb_alloc_fail)
414 schedule_delayed_work(&nic->rbdr_work, msecs_to_jiffies(10));
415 else
416 nic->rb_work_scheduled = false;
417}
418
419/* In Softirq context, alloc rcv buffers in atomic mode */
420void nicvf_rbdr_task(unsigned long data)
421{
422 struct nicvf *nic = (struct nicvf *)data;
423
424 nicvf_refill_rbdr(nic, GFP_ATOMIC);
425 if (nic->rb_alloc_fail) {
426 nic->rb_work_scheduled = true;
427 schedule_delayed_work(&nic->rbdr_work, msecs_to_jiffies(10));
428 }
429}
430
431/* Initialize completion queue */
432static int nicvf_init_cmp_queue(struct nicvf *nic,
433 struct cmp_queue *cq, int q_len)
434{
435 int err;
436
437 err = nicvf_alloc_q_desc_mem(nic, &cq->dmem, q_len, CMP_QUEUE_DESC_SIZE,
438 NICVF_CQ_BASE_ALIGN_BYTES);
439 if (err)
440 return err;
441
442 cq->desc = cq->dmem.base;
Sunil Gouthamb9687b42015-12-10 13:25:20 +0530443 cq->thresh = pass1_silicon(nic->pdev) ? 0 : CMP_QUEUE_CQE_THRESH;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700444 nic->cq_coalesce_usecs = (CMP_QUEUE_TIMER_THRESH * 0.05) - 1;
445
446 return 0;
447}
448
449static void nicvf_free_cmp_queue(struct nicvf *nic, struct cmp_queue *cq)
450{
451 if (!cq)
452 return;
453 if (!cq->dmem.base)
454 return;
455
456 nicvf_free_q_desc_mem(nic, &cq->dmem);
457}
458
459/* Initialize transmit queue */
460static int nicvf_init_snd_queue(struct nicvf *nic,
Sunil Goutham16f2bcc2017-05-02 18:36:56 +0530461 struct snd_queue *sq, int q_len, int qidx)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700462{
463 int err;
464
465 err = nicvf_alloc_q_desc_mem(nic, &sq->dmem, q_len, SND_QUEUE_DESC_SIZE,
466 NICVF_SQ_BASE_ALIGN_BYTES);
467 if (err)
468 return err;
469
470 sq->desc = sq->dmem.base;
Aleksey Makarov86ace692015-06-02 11:00:27 -0700471 sq->skbuff = kcalloc(q_len, sizeof(u64), GFP_KERNEL);
Aleksey Makarovfa1a6c92015-06-02 11:00:26 -0700472 if (!sq->skbuff)
473 return -ENOMEM;
Sunil Goutham16f2bcc2017-05-02 18:36:56 +0530474
Sunil Goutham4863dea2015-05-26 19:20:15 -0700475 sq->head = 0;
476 sq->tail = 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700477 sq->thresh = SND_QUEUE_THRESH;
478
Sunil Goutham16f2bcc2017-05-02 18:36:56 +0530479 /* Check if this SQ is a XDP TX queue */
480 if (nic->sqs_mode)
481 qidx += ((nic->sqs_id + 1) * MAX_SND_QUEUES_PER_QS);
482 if (qidx < nic->pnicvf->xdp_tx_queues) {
483 /* Alloc memory to save page pointers for XDP_TX */
484 sq->xdp_page = kcalloc(q_len, sizeof(u64), GFP_KERNEL);
485 if (!sq->xdp_page)
486 return -ENOMEM;
487 sq->xdp_desc_cnt = 0;
488 sq->xdp_free_cnt = q_len - 1;
489 sq->is_xdp = true;
490 } else {
491 sq->xdp_page = NULL;
492 sq->xdp_desc_cnt = 0;
493 sq->xdp_free_cnt = 0;
494 sq->is_xdp = false;
495
496 atomic_set(&sq->free_cnt, q_len - 1);
497
498 /* Preallocate memory for TSO segment's header */
499 sq->tso_hdrs = dma_alloc_coherent(&nic->pdev->dev,
500 q_len * TSO_HEADER_SIZE,
501 &sq->tso_hdrs_phys,
502 GFP_KERNEL);
503 if (!sq->tso_hdrs)
504 return -ENOMEM;
505 }
Sunil Goutham4863dea2015-05-26 19:20:15 -0700506
507 return 0;
508}
509
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530510void nicvf_unmap_sndq_buffers(struct nicvf *nic, struct snd_queue *sq,
511 int hdr_sqe, u8 subdesc_cnt)
512{
513 u8 idx;
514 struct sq_gather_subdesc *gather;
515
516 /* Unmap DMA mapped skb data buffers */
517 for (idx = 0; idx < subdesc_cnt; idx++) {
518 hdr_sqe++;
519 hdr_sqe &= (sq->dmem.q_len - 1);
520 gather = (struct sq_gather_subdesc *)GET_SQ_DESC(sq, hdr_sqe);
521 /* HW will ensure data coherency, CPU sync not required */
522 dma_unmap_page_attrs(&nic->pdev->dev, gather->addr,
523 gather->size, DMA_TO_DEVICE,
524 DMA_ATTR_SKIP_CPU_SYNC);
525 }
526}
527
Sunil Goutham4863dea2015-05-26 19:20:15 -0700528static void nicvf_free_snd_queue(struct nicvf *nic, struct snd_queue *sq)
529{
Sunil Gouthamc94acf82016-11-15 17:38:29 +0530530 struct sk_buff *skb;
Sunil Goutham16f2bcc2017-05-02 18:36:56 +0530531 struct page *page;
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530532 struct sq_hdr_subdesc *hdr;
533 struct sq_hdr_subdesc *tso_sqe;
Sunil Gouthamc94acf82016-11-15 17:38:29 +0530534
Sunil Goutham4863dea2015-05-26 19:20:15 -0700535 if (!sq)
536 return;
537 if (!sq->dmem.base)
538 return;
539
540 if (sq->tso_hdrs)
Sunil Goutham143ceb02015-07-29 16:49:37 +0300541 dma_free_coherent(&nic->pdev->dev,
542 sq->dmem.q_len * TSO_HEADER_SIZE,
Sunil Goutham4863dea2015-05-26 19:20:15 -0700543 sq->tso_hdrs, sq->tso_hdrs_phys);
544
Sunil Gouthamc94acf82016-11-15 17:38:29 +0530545 /* Free pending skbs in the queue */
546 smp_rmb();
547 while (sq->head != sq->tail) {
548 skb = (struct sk_buff *)sq->skbuff[sq->head];
Sunil Goutham16f2bcc2017-05-02 18:36:56 +0530549 if (!skb || !sq->xdp_page)
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530550 goto next;
Sunil Goutham16f2bcc2017-05-02 18:36:56 +0530551
552 page = (struct page *)sq->xdp_page[sq->head];
553 if (!page)
554 goto next;
555 else
556 put_page(page);
557
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530558 hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, sq->head);
559 /* Check for dummy descriptor used for HW TSO offload on 88xx */
560 if (hdr->dont_send) {
561 /* Get actual TSO descriptors and unmap them */
562 tso_sqe =
563 (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, hdr->rsvd2);
564 nicvf_unmap_sndq_buffers(nic, sq, hdr->rsvd2,
565 tso_sqe->subdesc_cnt);
566 } else {
567 nicvf_unmap_sndq_buffers(nic, sq, sq->head,
568 hdr->subdesc_cnt);
569 }
Sunil Goutham16f2bcc2017-05-02 18:36:56 +0530570 if (skb)
571 dev_kfree_skb_any(skb);
Sunil Goutham83abb7d2017-03-07 18:09:08 +0530572next:
Sunil Gouthamc94acf82016-11-15 17:38:29 +0530573 sq->head++;
574 sq->head &= (sq->dmem.q_len - 1);
575 }
Sunil Goutham4863dea2015-05-26 19:20:15 -0700576 kfree(sq->skbuff);
Sunil Goutham16f2bcc2017-05-02 18:36:56 +0530577 kfree(sq->xdp_page);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700578 nicvf_free_q_desc_mem(nic, &sq->dmem);
579}
580
581static void nicvf_reclaim_snd_queue(struct nicvf *nic,
582 struct queue_set *qs, int qidx)
583{
584 /* Disable send queue */
585 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, 0);
586 /* Check if SQ is stopped */
587 if (nicvf_poll_reg(nic, qidx, NIC_QSET_SQ_0_7_STATUS, 21, 1, 0x01))
588 return;
589 /* Reset send queue */
590 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, NICVF_SQ_RESET);
591}
592
593static void nicvf_reclaim_rcv_queue(struct nicvf *nic,
594 struct queue_set *qs, int qidx)
595{
596 union nic_mbx mbx = {};
597
598 /* Make sure all packets in the pipeline are written back into mem */
599 mbx.msg.msg = NIC_MBOX_MSG_RQ_SW_SYNC;
600 nicvf_send_msg_to_pf(nic, &mbx);
601}
602
603static void nicvf_reclaim_cmp_queue(struct nicvf *nic,
604 struct queue_set *qs, int qidx)
605{
606 /* Disable timer threshold (doesn't get reset upon CQ reset */
607 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG2, qidx, 0);
608 /* Disable completion queue */
609 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG, qidx, 0);
610 /* Reset completion queue */
611 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG, qidx, NICVF_CQ_RESET);
612}
613
614static void nicvf_reclaim_rbdr(struct nicvf *nic,
615 struct rbdr *rbdr, int qidx)
616{
617 u64 tmp, fifo_state;
618 int timeout = 10;
619
620 /* Save head and tail pointers for feeing up buffers */
621 rbdr->head = nicvf_queue_reg_read(nic,
622 NIC_QSET_RBDR_0_1_HEAD,
623 qidx) >> 3;
624 rbdr->tail = nicvf_queue_reg_read(nic,
625 NIC_QSET_RBDR_0_1_TAIL,
626 qidx) >> 3;
627
628 /* If RBDR FIFO is in 'FAIL' state then do a reset first
629 * before relaiming.
630 */
631 fifo_state = nicvf_queue_reg_read(nic, NIC_QSET_RBDR_0_1_STATUS0, qidx);
632 if (((fifo_state >> 62) & 0x03) == 0x3)
633 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_CFG,
634 qidx, NICVF_RBDR_RESET);
635
636 /* Disable RBDR */
637 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_CFG, qidx, 0);
638 if (nicvf_poll_reg(nic, qidx, NIC_QSET_RBDR_0_1_STATUS0, 62, 2, 0x00))
639 return;
640 while (1) {
641 tmp = nicvf_queue_reg_read(nic,
642 NIC_QSET_RBDR_0_1_PREFETCH_STATUS,
643 qidx);
644 if ((tmp & 0xFFFFFFFF) == ((tmp >> 32) & 0xFFFFFFFF))
645 break;
646 usleep_range(1000, 2000);
647 timeout--;
648 if (!timeout) {
649 netdev_err(nic->netdev,
650 "Failed polling on prefetch status\n");
651 return;
652 }
653 }
654 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_CFG,
655 qidx, NICVF_RBDR_RESET);
656
657 if (nicvf_poll_reg(nic, qidx, NIC_QSET_RBDR_0_1_STATUS0, 62, 2, 0x02))
658 return;
659 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_CFG, qidx, 0x00);
660 if (nicvf_poll_reg(nic, qidx, NIC_QSET_RBDR_0_1_STATUS0, 62, 2, 0x00))
661 return;
662}
663
Sunil Gouthamaa2e2592015-08-30 12:29:13 +0300664void nicvf_config_vlan_stripping(struct nicvf *nic, netdev_features_t features)
665{
666 u64 rq_cfg;
667 int sqs;
668
669 rq_cfg = nicvf_queue_reg_read(nic, NIC_QSET_RQ_GEN_CFG, 0);
670
671 /* Enable first VLAN stripping */
672 if (features & NETIF_F_HW_VLAN_CTAG_RX)
673 rq_cfg |= (1ULL << 25);
674 else
675 rq_cfg &= ~(1ULL << 25);
676 nicvf_queue_reg_write(nic, NIC_QSET_RQ_GEN_CFG, 0, rq_cfg);
677
678 /* Configure Secondary Qsets, if any */
679 for (sqs = 0; sqs < nic->sqs_count; sqs++)
680 if (nic->snicvf[sqs])
681 nicvf_queue_reg_write(nic->snicvf[sqs],
682 NIC_QSET_RQ_GEN_CFG, 0, rq_cfg);
683}
684
Jerin Jacob3458c402016-08-12 16:51:39 +0530685static void nicvf_reset_rcv_queue_stats(struct nicvf *nic)
686{
687 union nic_mbx mbx = {};
688
Sunil Goutham964cb692016-11-15 17:38:16 +0530689 /* Reset all RQ/SQ and VF stats */
Jerin Jacob3458c402016-08-12 16:51:39 +0530690 mbx.reset_stat.msg = NIC_MBOX_MSG_RESET_STAT_COUNTER;
Sunil Goutham964cb692016-11-15 17:38:16 +0530691 mbx.reset_stat.rx_stat_mask = 0x3FFF;
692 mbx.reset_stat.tx_stat_mask = 0x1F;
Jerin Jacob3458c402016-08-12 16:51:39 +0530693 mbx.reset_stat.rq_stat_mask = 0xFFFF;
Sunil Goutham964cb692016-11-15 17:38:16 +0530694 mbx.reset_stat.sq_stat_mask = 0xFFFF;
Jerin Jacob3458c402016-08-12 16:51:39 +0530695 nicvf_send_msg_to_pf(nic, &mbx);
696}
697
Sunil Goutham4863dea2015-05-26 19:20:15 -0700698/* Configures receive queue */
699static void nicvf_rcv_queue_config(struct nicvf *nic, struct queue_set *qs,
700 int qidx, bool enable)
701{
702 union nic_mbx mbx = {};
703 struct rcv_queue *rq;
704 struct rq_cfg rq_cfg;
705
706 rq = &qs->rq[qidx];
707 rq->enable = enable;
708
709 /* Disable receive queue */
710 nicvf_queue_reg_write(nic, NIC_QSET_RQ_0_7_CFG, qidx, 0);
711
712 if (!rq->enable) {
713 nicvf_reclaim_rcv_queue(nic, qs, qidx);
714 return;
715 }
716
717 rq->cq_qs = qs->vnic_id;
718 rq->cq_idx = qidx;
719 rq->start_rbdr_qs = qs->vnic_id;
720 rq->start_qs_rbdr_idx = qs->rbdr_cnt - 1;
721 rq->cont_rbdr_qs = qs->vnic_id;
722 rq->cont_qs_rbdr_idx = qs->rbdr_cnt - 1;
723 /* all writes of RBDR data to be loaded into L2 Cache as well*/
724 rq->caching = 1;
725
726 /* Send a mailbox msg to PF to config RQ */
727 mbx.rq.msg = NIC_MBOX_MSG_RQ_CFG;
728 mbx.rq.qs_num = qs->vnic_id;
729 mbx.rq.rq_num = qidx;
730 mbx.rq.cfg = (rq->caching << 26) | (rq->cq_qs << 19) |
731 (rq->cq_idx << 16) | (rq->cont_rbdr_qs << 9) |
732 (rq->cont_qs_rbdr_idx << 8) |
733 (rq->start_rbdr_qs << 1) | (rq->start_qs_rbdr_idx);
734 nicvf_send_msg_to_pf(nic, &mbx);
735
736 mbx.rq.msg = NIC_MBOX_MSG_RQ_BP_CFG;
Sunil Gouthamd5b2d7a2016-11-24 14:48:02 +0530737 mbx.rq.cfg = BIT_ULL(63) | BIT_ULL(62) |
738 (RQ_PASS_RBDR_LVL << 16) | (RQ_PASS_CQ_LVL << 8) |
739 (qs->vnic_id << 0);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700740 nicvf_send_msg_to_pf(nic, &mbx);
741
742 /* RQ drop config
743 * Enable CQ drop to reserve sufficient CQEs for all tx packets
744 */
745 mbx.rq.msg = NIC_MBOX_MSG_RQ_DROP_CFG;
Sunil Gouthamd5b2d7a2016-11-24 14:48:02 +0530746 mbx.rq.cfg = BIT_ULL(63) | BIT_ULL(62) |
747 (RQ_PASS_RBDR_LVL << 40) | (RQ_DROP_RBDR_LVL << 32) |
748 (RQ_PASS_CQ_LVL << 16) | (RQ_DROP_CQ_LVL << 8);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700749 nicvf_send_msg_to_pf(nic, &mbx);
750
Sunil Gouthamcadcf952016-11-15 17:37:54 +0530751 if (!nic->sqs_mode && (qidx == 0)) {
Thanneeru Srinivasulu36fa35d2017-03-07 18:09:11 +0530752 /* Enable checking L3/L4 length and TCP/UDP checksums
753 * Also allow IPv6 pkts with zero UDP checksum.
754 */
Sunil Gouthamcadcf952016-11-15 17:37:54 +0530755 nicvf_queue_reg_write(nic, NIC_QSET_RQ_GEN_CFG, 0,
Thanneeru Srinivasulu36fa35d2017-03-07 18:09:11 +0530756 (BIT(24) | BIT(23) | BIT(21) | BIT(20)));
Sunil Gouthamaa2e2592015-08-30 12:29:13 +0300757 nicvf_config_vlan_stripping(nic, nic->netdev->features);
Sunil Gouthamcadcf952016-11-15 17:37:54 +0530758 }
Sunil Goutham4863dea2015-05-26 19:20:15 -0700759
760 /* Enable Receive queue */
xypron.glpk@gmx.de161de2c2016-05-09 00:46:18 +0200761 memset(&rq_cfg, 0, sizeof(struct rq_cfg));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700762 rq_cfg.ena = 1;
763 rq_cfg.tcp_ena = 0;
764 nicvf_queue_reg_write(nic, NIC_QSET_RQ_0_7_CFG, qidx, *(u64 *)&rq_cfg);
765}
766
767/* Configures completion queue */
768void nicvf_cmp_queue_config(struct nicvf *nic, struct queue_set *qs,
769 int qidx, bool enable)
770{
771 struct cmp_queue *cq;
772 struct cq_cfg cq_cfg;
773
774 cq = &qs->cq[qidx];
775 cq->enable = enable;
776
777 if (!cq->enable) {
778 nicvf_reclaim_cmp_queue(nic, qs, qidx);
779 return;
780 }
781
782 /* Reset completion queue */
783 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG, qidx, NICVF_CQ_RESET);
784
785 if (!cq->enable)
786 return;
787
788 spin_lock_init(&cq->lock);
789 /* Set completion queue base address */
790 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_BASE,
791 qidx, (u64)(cq->dmem.phys_base));
792
793 /* Enable Completion queue */
xypron.glpk@gmx.de161de2c2016-05-09 00:46:18 +0200794 memset(&cq_cfg, 0, sizeof(struct cq_cfg));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700795 cq_cfg.ena = 1;
796 cq_cfg.reset = 0;
797 cq_cfg.caching = 0;
Sunil Gouthamfff4ffd2017-01-25 17:36:23 +0530798 cq_cfg.qsize = ilog2(qs->cq_len >> 10);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700799 cq_cfg.avg_con = 0;
800 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG, qidx, *(u64 *)&cq_cfg);
801
802 /* Set threshold value for interrupt generation */
803 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_THRESH, qidx, cq->thresh);
804 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG2,
Sunil Goutham006394a2015-12-02 15:36:15 +0530805 qidx, CMP_QUEUE_TIMER_THRESH);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700806}
807
808/* Configures transmit queue */
809static void nicvf_snd_queue_config(struct nicvf *nic, struct queue_set *qs,
810 int qidx, bool enable)
811{
812 union nic_mbx mbx = {};
813 struct snd_queue *sq;
814 struct sq_cfg sq_cfg;
815
816 sq = &qs->sq[qidx];
817 sq->enable = enable;
818
819 if (!sq->enable) {
820 nicvf_reclaim_snd_queue(nic, qs, qidx);
821 return;
822 }
823
824 /* Reset send queue */
825 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, NICVF_SQ_RESET);
826
827 sq->cq_qs = qs->vnic_id;
828 sq->cq_idx = qidx;
829
830 /* Send a mailbox msg to PF to config SQ */
831 mbx.sq.msg = NIC_MBOX_MSG_SQ_CFG;
832 mbx.sq.qs_num = qs->vnic_id;
833 mbx.sq.sq_num = qidx;
Sunil Goutham92dc8762015-08-30 12:29:15 +0300834 mbx.sq.sqs_mode = nic->sqs_mode;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700835 mbx.sq.cfg = (sq->cq_qs << 3) | sq->cq_idx;
836 nicvf_send_msg_to_pf(nic, &mbx);
837
838 /* Set queue base address */
839 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_BASE,
840 qidx, (u64)(sq->dmem.phys_base));
841
842 /* Enable send queue & set queue size */
xypron.glpk@gmx.de161de2c2016-05-09 00:46:18 +0200843 memset(&sq_cfg, 0, sizeof(struct sq_cfg));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700844 sq_cfg.ena = 1;
845 sq_cfg.reset = 0;
846 sq_cfg.ldwb = 0;
Sunil Gouthamfff4ffd2017-01-25 17:36:23 +0530847 sq_cfg.qsize = ilog2(qs->sq_len >> 10);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700848 sq_cfg.tstmp_bgx_intf = 0;
Sunil Gouthamfff4ffd2017-01-25 17:36:23 +0530849 /* CQ's level at which HW will stop processing SQEs to avoid
850 * transmitting a pkt with no space in CQ to post CQE_TX.
851 */
852 sq_cfg.cq_limit = (CMP_QUEUE_PIPELINE_RSVD * 256) / qs->cq_len;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700853 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, *(u64 *)&sq_cfg);
854
855 /* Set threshold value for interrupt generation */
856 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_THRESH, qidx, sq->thresh);
857
858 /* Set queue:cpu affinity for better load distribution */
859 if (cpu_online(qidx)) {
860 cpumask_set_cpu(qidx, &sq->affinity_mask);
861 netif_set_xps_queue(nic->netdev,
862 &sq->affinity_mask, qidx);
863 }
864}
865
866/* Configures receive buffer descriptor ring */
867static void nicvf_rbdr_config(struct nicvf *nic, struct queue_set *qs,
868 int qidx, bool enable)
869{
870 struct rbdr *rbdr;
871 struct rbdr_cfg rbdr_cfg;
872
873 rbdr = &qs->rbdr[qidx];
874 nicvf_reclaim_rbdr(nic, rbdr, qidx);
875 if (!enable)
876 return;
877
878 /* Set descriptor base address */
879 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_BASE,
880 qidx, (u64)(rbdr->dmem.phys_base));
881
882 /* Enable RBDR & set queue size */
883 /* Buffer size should be in multiples of 128 bytes */
xypron.glpk@gmx.de161de2c2016-05-09 00:46:18 +0200884 memset(&rbdr_cfg, 0, sizeof(struct rbdr_cfg));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700885 rbdr_cfg.ena = 1;
886 rbdr_cfg.reset = 0;
887 rbdr_cfg.ldwb = 0;
888 rbdr_cfg.qsize = RBDR_SIZE;
889 rbdr_cfg.avg_con = 0;
890 rbdr_cfg.lines = rbdr->dma_size / 128;
891 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_CFG,
892 qidx, *(u64 *)&rbdr_cfg);
893
894 /* Notify HW */
895 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_DOOR,
896 qidx, qs->rbdr_len - 1);
897
898 /* Set threshold value for interrupt generation */
899 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_THRESH,
900 qidx, rbdr->thresh - 1);
901}
902
903/* Requests PF to assign and enable Qset */
904void nicvf_qset_config(struct nicvf *nic, bool enable)
905{
906 union nic_mbx mbx = {};
907 struct queue_set *qs = nic->qs;
908 struct qs_cfg *qs_cfg;
909
910 if (!qs) {
911 netdev_warn(nic->netdev,
912 "Qset is still not allocated, don't init queues\n");
913 return;
914 }
915
916 qs->enable = enable;
917 qs->vnic_id = nic->vf_id;
918
919 /* Send a mailbox msg to PF to config Qset */
920 mbx.qs.msg = NIC_MBOX_MSG_QS_CFG;
921 mbx.qs.num = qs->vnic_id;
Sunil Goutham92dc8762015-08-30 12:29:15 +0300922 mbx.qs.sqs_count = nic->sqs_count;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700923
924 mbx.qs.cfg = 0;
925 qs_cfg = (struct qs_cfg *)&mbx.qs.cfg;
926 if (qs->enable) {
927 qs_cfg->ena = 1;
928#ifdef __BIG_ENDIAN
929 qs_cfg->be = 1;
930#endif
931 qs_cfg->vnic = qs->vnic_id;
932 }
933 nicvf_send_msg_to_pf(nic, &mbx);
934}
935
936static void nicvf_free_resources(struct nicvf *nic)
937{
938 int qidx;
939 struct queue_set *qs = nic->qs;
940
941 /* Free receive buffer descriptor ring */
942 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++)
943 nicvf_free_rbdr(nic, &qs->rbdr[qidx]);
944
945 /* Free completion queue */
946 for (qidx = 0; qidx < qs->cq_cnt; qidx++)
947 nicvf_free_cmp_queue(nic, &qs->cq[qidx]);
948
949 /* Free send queue */
950 for (qidx = 0; qidx < qs->sq_cnt; qidx++)
951 nicvf_free_snd_queue(nic, &qs->sq[qidx]);
952}
953
954static int nicvf_alloc_resources(struct nicvf *nic)
955{
956 int qidx;
957 struct queue_set *qs = nic->qs;
958
959 /* Alloc receive buffer descriptor ring */
960 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++) {
961 if (nicvf_init_rbdr(nic, &qs->rbdr[qidx], qs->rbdr_len,
962 DMA_BUFFER_LEN))
963 goto alloc_fail;
964 }
965
966 /* Alloc send queue */
967 for (qidx = 0; qidx < qs->sq_cnt; qidx++) {
Sunil Goutham16f2bcc2017-05-02 18:36:56 +0530968 if (nicvf_init_snd_queue(nic, &qs->sq[qidx], qs->sq_len, qidx))
Sunil Goutham4863dea2015-05-26 19:20:15 -0700969 goto alloc_fail;
970 }
971
972 /* Alloc completion queue */
973 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
974 if (nicvf_init_cmp_queue(nic, &qs->cq[qidx], qs->cq_len))
975 goto alloc_fail;
976 }
977
978 return 0;
979alloc_fail:
980 nicvf_free_resources(nic);
981 return -ENOMEM;
982}
983
984int nicvf_set_qset_resources(struct nicvf *nic)
985{
986 struct queue_set *qs;
987
988 qs = devm_kzalloc(&nic->pdev->dev, sizeof(*qs), GFP_KERNEL);
989 if (!qs)
990 return -ENOMEM;
991 nic->qs = qs;
992
993 /* Set count of each queue */
Sunil Goutham3a397eb2016-08-12 16:51:27 +0530994 qs->rbdr_cnt = DEFAULT_RBDR_CNT;
995 qs->rq_cnt = min_t(u8, MAX_RCV_QUEUES_PER_QS, num_online_cpus());
996 qs->sq_cnt = min_t(u8, MAX_SND_QUEUES_PER_QS, num_online_cpus());
997 qs->cq_cnt = max_t(u8, qs->rq_cnt, qs->sq_cnt);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700998
999 /* Set queue lengths */
1000 qs->rbdr_len = RCV_BUF_COUNT;
1001 qs->sq_len = SND_QUEUE_LEN;
1002 qs->cq_len = CMP_QUEUE_LEN;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001003
1004 nic->rx_queues = qs->rq_cnt;
1005 nic->tx_queues = qs->sq_cnt;
Sunil Goutham05c773f2017-05-02 18:36:54 +05301006 nic->xdp_tx_queues = 0;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001007
Sunil Goutham4863dea2015-05-26 19:20:15 -07001008 return 0;
1009}
1010
1011int nicvf_config_data_transfer(struct nicvf *nic, bool enable)
1012{
1013 bool disable = false;
1014 struct queue_set *qs = nic->qs;
Sunil Gouthamfff4ffd2017-01-25 17:36:23 +05301015 struct queue_set *pqs = nic->pnicvf->qs;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001016 int qidx;
1017
1018 if (!qs)
1019 return 0;
1020
Sunil Gouthamfff4ffd2017-01-25 17:36:23 +05301021 /* Take primary VF's queue lengths.
1022 * This is needed to take queue lengths set from ethtool
1023 * into consideration.
1024 */
1025 if (nic->sqs_mode && pqs) {
1026 qs->cq_len = pqs->cq_len;
1027 qs->sq_len = pqs->sq_len;
1028 }
1029
Sunil Goutham4863dea2015-05-26 19:20:15 -07001030 if (enable) {
1031 if (nicvf_alloc_resources(nic))
1032 return -ENOMEM;
1033
1034 for (qidx = 0; qidx < qs->sq_cnt; qidx++)
1035 nicvf_snd_queue_config(nic, qs, qidx, enable);
1036 for (qidx = 0; qidx < qs->cq_cnt; qidx++)
1037 nicvf_cmp_queue_config(nic, qs, qidx, enable);
1038 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++)
1039 nicvf_rbdr_config(nic, qs, qidx, enable);
1040 for (qidx = 0; qidx < qs->rq_cnt; qidx++)
1041 nicvf_rcv_queue_config(nic, qs, qidx, enable);
1042 } else {
1043 for (qidx = 0; qidx < qs->rq_cnt; qidx++)
1044 nicvf_rcv_queue_config(nic, qs, qidx, disable);
1045 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++)
1046 nicvf_rbdr_config(nic, qs, qidx, disable);
1047 for (qidx = 0; qidx < qs->sq_cnt; qidx++)
1048 nicvf_snd_queue_config(nic, qs, qidx, disable);
1049 for (qidx = 0; qidx < qs->cq_cnt; qidx++)
1050 nicvf_cmp_queue_config(nic, qs, qidx, disable);
1051
1052 nicvf_free_resources(nic);
1053 }
1054
Jerin Jacob3458c402016-08-12 16:51:39 +05301055 /* Reset RXQ's stats.
1056 * SQ's stats will get reset automatically once SQ is reset.
1057 */
1058 nicvf_reset_rcv_queue_stats(nic);
1059
Sunil Goutham4863dea2015-05-26 19:20:15 -07001060 return 0;
1061}
1062
1063/* Get a free desc from SQ
1064 * returns descriptor ponter & descriptor number
1065 */
1066static inline int nicvf_get_sq_desc(struct snd_queue *sq, int desc_cnt)
1067{
1068 int qentry;
1069
1070 qentry = sq->tail;
Sunil Goutham16f2bcc2017-05-02 18:36:56 +05301071 if (!sq->is_xdp)
1072 atomic_sub(desc_cnt, &sq->free_cnt);
1073 else
1074 sq->xdp_free_cnt -= desc_cnt;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001075 sq->tail += desc_cnt;
1076 sq->tail &= (sq->dmem.q_len - 1);
1077
1078 return qentry;
1079}
1080
Sunil Goutham83abb7d2017-03-07 18:09:08 +05301081/* Rollback to previous tail pointer when descriptors not used */
1082static inline void nicvf_rollback_sq_desc(struct snd_queue *sq,
1083 int qentry, int desc_cnt)
1084{
1085 sq->tail = qentry;
1086 atomic_add(desc_cnt, &sq->free_cnt);
1087}
1088
Sunil Goutham4863dea2015-05-26 19:20:15 -07001089/* Free descriptor back to SQ for future use */
1090void nicvf_put_sq_desc(struct snd_queue *sq, int desc_cnt)
1091{
Sunil Goutham16f2bcc2017-05-02 18:36:56 +05301092 if (!sq->is_xdp)
1093 atomic_add(desc_cnt, &sq->free_cnt);
1094 else
1095 sq->xdp_free_cnt += desc_cnt;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001096 sq->head += desc_cnt;
1097 sq->head &= (sq->dmem.q_len - 1);
1098}
1099
1100static inline int nicvf_get_nxt_sqentry(struct snd_queue *sq, int qentry)
1101{
1102 qentry++;
1103 qentry &= (sq->dmem.q_len - 1);
1104 return qentry;
1105}
1106
1107void nicvf_sq_enable(struct nicvf *nic, struct snd_queue *sq, int qidx)
1108{
1109 u64 sq_cfg;
1110
1111 sq_cfg = nicvf_queue_reg_read(nic, NIC_QSET_SQ_0_7_CFG, qidx);
1112 sq_cfg |= NICVF_SQ_EN;
1113 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, sq_cfg);
1114 /* Ring doorbell so that H/W restarts processing SQEs */
1115 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_DOOR, qidx, 0);
1116}
1117
1118void nicvf_sq_disable(struct nicvf *nic, int qidx)
1119{
1120 u64 sq_cfg;
1121
1122 sq_cfg = nicvf_queue_reg_read(nic, NIC_QSET_SQ_0_7_CFG, qidx);
1123 sq_cfg &= ~NICVF_SQ_EN;
1124 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, sq_cfg);
1125}
1126
1127void nicvf_sq_free_used_descs(struct net_device *netdev, struct snd_queue *sq,
1128 int qidx)
1129{
1130 u64 head, tail;
1131 struct sk_buff *skb;
1132 struct nicvf *nic = netdev_priv(netdev);
1133 struct sq_hdr_subdesc *hdr;
1134
1135 head = nicvf_queue_reg_read(nic, NIC_QSET_SQ_0_7_HEAD, qidx) >> 4;
1136 tail = nicvf_queue_reg_read(nic, NIC_QSET_SQ_0_7_TAIL, qidx) >> 4;
1137 while (sq->head != head) {
1138 hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, sq->head);
1139 if (hdr->subdesc_type != SQ_DESC_TYPE_HEADER) {
1140 nicvf_put_sq_desc(sq, 1);
1141 continue;
1142 }
1143 skb = (struct sk_buff *)sq->skbuff[sq->head];
Sunil Goutham143ceb02015-07-29 16:49:37 +03001144 if (skb)
1145 dev_kfree_skb_any(skb);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001146 atomic64_add(1, (atomic64_t *)&netdev->stats.tx_packets);
1147 atomic64_add(hdr->tot_len,
1148 (atomic64_t *)&netdev->stats.tx_bytes);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001149 nicvf_put_sq_desc(sq, hdr->subdesc_cnt + 1);
1150 }
1151}
1152
Sunil Goutham16f2bcc2017-05-02 18:36:56 +05301153/* XDP Transmit APIs */
1154void nicvf_xdp_sq_doorbell(struct nicvf *nic,
1155 struct snd_queue *sq, int sq_num)
1156{
1157 if (!sq->xdp_desc_cnt)
1158 return;
1159
1160 /* make sure all memory stores are done before ringing doorbell */
1161 wmb();
1162
1163 /* Inform HW to xmit all TSO segments */
1164 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_DOOR,
1165 sq_num, sq->xdp_desc_cnt);
1166 sq->xdp_desc_cnt = 0;
1167}
1168
1169static inline void
1170nicvf_xdp_sq_add_hdr_subdesc(struct snd_queue *sq, int qentry,
1171 int subdesc_cnt, u64 data, int len)
1172{
1173 struct sq_hdr_subdesc *hdr;
1174
1175 hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, qentry);
1176 memset(hdr, 0, SND_QUEUE_DESC_SIZE);
1177 hdr->subdesc_type = SQ_DESC_TYPE_HEADER;
1178 hdr->subdesc_cnt = subdesc_cnt;
1179 hdr->tot_len = len;
1180 hdr->post_cqe = 1;
1181 sq->xdp_page[qentry] = (u64)virt_to_page((void *)data);
1182}
1183
1184int nicvf_xdp_sq_append_pkt(struct nicvf *nic, struct snd_queue *sq,
1185 u64 bufaddr, u64 dma_addr, u16 len)
1186{
1187 int subdesc_cnt = MIN_SQ_DESC_PER_PKT_XMIT;
1188 int qentry;
1189
1190 if (subdesc_cnt > sq->xdp_free_cnt)
1191 return 0;
1192
1193 qentry = nicvf_get_sq_desc(sq, subdesc_cnt);
1194
1195 nicvf_xdp_sq_add_hdr_subdesc(sq, qentry, subdesc_cnt - 1, bufaddr, len);
1196
1197 qentry = nicvf_get_nxt_sqentry(sq, qentry);
1198 nicvf_sq_add_gather_subdesc(sq, qentry, len, dma_addr);
1199
1200 sq->xdp_desc_cnt += subdesc_cnt;
1201
1202 return 1;
1203}
1204
Sunil Goutham4863dea2015-05-26 19:20:15 -07001205/* Calculate no of SQ subdescriptors needed to transmit all
1206 * segments of this TSO packet.
1207 * Taken from 'Tilera network driver' with a minor modification.
1208 */
1209static int nicvf_tso_count_subdescs(struct sk_buff *skb)
1210{
1211 struct skb_shared_info *sh = skb_shinfo(skb);
1212 unsigned int sh_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
1213 unsigned int data_len = skb->len - sh_len;
1214 unsigned int p_len = sh->gso_size;
1215 long f_id = -1; /* id of the current fragment */
1216 long f_size = skb_headlen(skb) - sh_len; /* current fragment size */
1217 long f_used = 0; /* bytes used from the current fragment */
1218 long n; /* size of the current piece of payload */
1219 int num_edescs = 0;
1220 int segment;
1221
1222 for (segment = 0; segment < sh->gso_segs; segment++) {
1223 unsigned int p_used = 0;
1224
1225 /* One edesc for header and for each piece of the payload. */
1226 for (num_edescs++; p_used < p_len; num_edescs++) {
1227 /* Advance as needed. */
1228 while (f_used >= f_size) {
1229 f_id++;
1230 f_size = skb_frag_size(&sh->frags[f_id]);
1231 f_used = 0;
1232 }
1233
1234 /* Use bytes from the current fragment. */
1235 n = p_len - p_used;
1236 if (n > f_size - f_used)
1237 n = f_size - f_used;
1238 f_used += n;
1239 p_used += n;
1240 }
1241
1242 /* The last segment may be less than gso_size. */
1243 data_len -= p_len;
1244 if (data_len < p_len)
1245 p_len = data_len;
1246 }
1247
1248 /* '+ gso_segs' for SQ_HDR_SUDESCs for each segment */
1249 return num_edescs + sh->gso_segs;
1250}
1251
Sunil Goutham7ceb8a12016-08-30 11:36:27 +05301252#define POST_CQE_DESC_COUNT 2
1253
Sunil Goutham4863dea2015-05-26 19:20:15 -07001254/* Get the number of SQ descriptors needed to xmit this skb */
1255static int nicvf_sq_subdesc_required(struct nicvf *nic, struct sk_buff *skb)
1256{
1257 int subdesc_cnt = MIN_SQ_DESC_PER_PKT_XMIT;
1258
Sunil Goutham40fb5f82015-12-10 13:25:19 +05301259 if (skb_shinfo(skb)->gso_size && !nic->hw_tso) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001260 subdesc_cnt = nicvf_tso_count_subdescs(skb);
1261 return subdesc_cnt;
1262 }
1263
Sunil Goutham7ceb8a12016-08-30 11:36:27 +05301264 /* Dummy descriptors to get TSO pkt completion notification */
1265 if (nic->t88 && nic->hw_tso && skb_shinfo(skb)->gso_size)
1266 subdesc_cnt += POST_CQE_DESC_COUNT;
1267
Sunil Goutham4863dea2015-05-26 19:20:15 -07001268 if (skb_shinfo(skb)->nr_frags)
1269 subdesc_cnt += skb_shinfo(skb)->nr_frags;
1270
1271 return subdesc_cnt;
1272}
1273
1274/* Add SQ HEADER subdescriptor.
1275 * First subdescriptor for every send descriptor.
1276 */
1277static inline void
Sunil Goutham40fb5f82015-12-10 13:25:19 +05301278nicvf_sq_add_hdr_subdesc(struct nicvf *nic, struct snd_queue *sq, int qentry,
Sunil Goutham4863dea2015-05-26 19:20:15 -07001279 int subdesc_cnt, struct sk_buff *skb, int len)
1280{
1281 int proto;
1282 struct sq_hdr_subdesc *hdr;
Thanneeru Srinivasulu3a9024f2017-04-06 16:12:26 +05301283 union {
1284 struct iphdr *v4;
1285 struct ipv6hdr *v6;
1286 unsigned char *hdr;
1287 } ip;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001288
Thanneeru Srinivasulu3a9024f2017-04-06 16:12:26 +05301289 ip.hdr = skb_network_header(skb);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001290 hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, qentry);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001291 memset(hdr, 0, SND_QUEUE_DESC_SIZE);
1292 hdr->subdesc_type = SQ_DESC_TYPE_HEADER;
Sunil Goutham7ceb8a12016-08-30 11:36:27 +05301293
1294 if (nic->t88 && nic->hw_tso && skb_shinfo(skb)->gso_size) {
1295 /* post_cqe = 0, to avoid HW posting a CQE for every TSO
1296 * segment transmitted on 88xx.
1297 */
1298 hdr->subdesc_cnt = subdesc_cnt - POST_CQE_DESC_COUNT;
1299 } else {
1300 sq->skbuff[qentry] = (u64)skb;
1301 /* Enable notification via CQE after processing SQE */
1302 hdr->post_cqe = 1;
1303 /* No of subdescriptors following this */
1304 hdr->subdesc_cnt = subdesc_cnt;
1305 }
Sunil Goutham4863dea2015-05-26 19:20:15 -07001306 hdr->tot_len = len;
1307
1308 /* Offload checksum calculation to HW */
1309 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001310 hdr->csum_l3 = 1; /* Enable IP csum calculation */
1311 hdr->l3_offset = skb_network_offset(skb);
1312 hdr->l4_offset = skb_transport_offset(skb);
1313
Thanneeru Srinivasulu3a9024f2017-04-06 16:12:26 +05301314 proto = (ip.v4->version == 4) ? ip.v4->protocol :
1315 ip.v6->nexthdr;
1316
Sunil Goutham4863dea2015-05-26 19:20:15 -07001317 switch (proto) {
1318 case IPPROTO_TCP:
1319 hdr->csum_l4 = SEND_L4_CSUM_TCP;
1320 break;
1321 case IPPROTO_UDP:
1322 hdr->csum_l4 = SEND_L4_CSUM_UDP;
1323 break;
1324 case IPPROTO_SCTP:
1325 hdr->csum_l4 = SEND_L4_CSUM_SCTP;
1326 break;
1327 }
1328 }
Sunil Goutham40fb5f82015-12-10 13:25:19 +05301329
1330 if (nic->hw_tso && skb_shinfo(skb)->gso_size) {
1331 hdr->tso = 1;
1332 hdr->tso_start = skb_transport_offset(skb) + tcp_hdrlen(skb);
1333 hdr->tso_max_paysize = skb_shinfo(skb)->gso_size;
1334 /* For non-tunneled pkts, point this to L2 ethertype */
1335 hdr->inner_l3_offset = skb_network_offset(skb) - 2;
Sunil Goutham964cb692016-11-15 17:38:16 +05301336 this_cpu_inc(nic->pnicvf->drv_stats->tx_tso);
Sunil Goutham40fb5f82015-12-10 13:25:19 +05301337 }
Sunil Goutham4863dea2015-05-26 19:20:15 -07001338}
1339
1340/* SQ GATHER subdescriptor
1341 * Must follow HDR descriptor
1342 */
1343static inline void nicvf_sq_add_gather_subdesc(struct snd_queue *sq, int qentry,
1344 int size, u64 data)
1345{
1346 struct sq_gather_subdesc *gather;
1347
1348 qentry &= (sq->dmem.q_len - 1);
1349 gather = (struct sq_gather_subdesc *)GET_SQ_DESC(sq, qentry);
1350
1351 memset(gather, 0, SND_QUEUE_DESC_SIZE);
1352 gather->subdesc_type = SQ_DESC_TYPE_GATHER;
Sunil Goutham4b561c12015-07-29 16:49:36 +03001353 gather->ld_type = NIC_SEND_LD_TYPE_E_LDD;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001354 gather->size = size;
1355 gather->addr = data;
1356}
1357
Sunil Goutham7ceb8a12016-08-30 11:36:27 +05301358/* Add HDR + IMMEDIATE subdescriptors right after descriptors of a TSO
1359 * packet so that a CQE is posted as a notifation for transmission of
1360 * TSO packet.
1361 */
1362static inline void nicvf_sq_add_cqe_subdesc(struct snd_queue *sq, int qentry,
1363 int tso_sqe, struct sk_buff *skb)
1364{
1365 struct sq_imm_subdesc *imm;
1366 struct sq_hdr_subdesc *hdr;
1367
1368 sq->skbuff[qentry] = (u64)skb;
1369
1370 hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, qentry);
1371 memset(hdr, 0, SND_QUEUE_DESC_SIZE);
1372 hdr->subdesc_type = SQ_DESC_TYPE_HEADER;
1373 /* Enable notification via CQE after processing SQE */
1374 hdr->post_cqe = 1;
1375 /* There is no packet to transmit here */
1376 hdr->dont_send = 1;
1377 hdr->subdesc_cnt = POST_CQE_DESC_COUNT - 1;
1378 hdr->tot_len = 1;
1379 /* Actual TSO header SQE index, needed for cleanup */
1380 hdr->rsvd2 = tso_sqe;
1381
1382 qentry = nicvf_get_nxt_sqentry(sq, qentry);
1383 imm = (struct sq_imm_subdesc *)GET_SQ_DESC(sq, qentry);
1384 memset(imm, 0, SND_QUEUE_DESC_SIZE);
1385 imm->subdesc_type = SQ_DESC_TYPE_IMMEDIATE;
1386 imm->len = 1;
1387}
1388
Sunil Goutham2c204c22016-09-23 14:42:28 +05301389static inline void nicvf_sq_doorbell(struct nicvf *nic, struct sk_buff *skb,
1390 int sq_num, int desc_cnt)
1391{
1392 struct netdev_queue *txq;
1393
1394 txq = netdev_get_tx_queue(nic->pnicvf->netdev,
1395 skb_get_queue_mapping(skb));
1396
1397 netdev_tx_sent_queue(txq, skb->len);
1398
1399 /* make sure all memory stores are done before ringing doorbell */
1400 smp_wmb();
1401
1402 /* Inform HW to xmit all TSO segments */
1403 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_DOOR,
1404 sq_num, desc_cnt);
1405}
1406
Sunil Goutham4863dea2015-05-26 19:20:15 -07001407/* Segment a TSO packet into 'gso_size' segments and append
1408 * them to SQ for transfer
1409 */
1410static int nicvf_sq_append_tso(struct nicvf *nic, struct snd_queue *sq,
Sunil Goutham92dc8762015-08-30 12:29:15 +03001411 int sq_num, int qentry, struct sk_buff *skb)
Sunil Goutham4863dea2015-05-26 19:20:15 -07001412{
1413 struct tso_t tso;
1414 int seg_subdescs = 0, desc_cnt = 0;
1415 int seg_len, total_len, data_left;
1416 int hdr_qentry = qentry;
1417 int hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
1418
1419 tso_start(skb, &tso);
1420 total_len = skb->len - hdr_len;
1421 while (total_len > 0) {
1422 char *hdr;
1423
1424 /* Save Qentry for adding HDR_SUBDESC at the end */
1425 hdr_qentry = qentry;
1426
1427 data_left = min_t(int, skb_shinfo(skb)->gso_size, total_len);
1428 total_len -= data_left;
1429
1430 /* Add segment's header */
1431 qentry = nicvf_get_nxt_sqentry(sq, qentry);
1432 hdr = sq->tso_hdrs + qentry * TSO_HEADER_SIZE;
1433 tso_build_hdr(skb, hdr, &tso, data_left, total_len == 0);
1434 nicvf_sq_add_gather_subdesc(sq, qentry, hdr_len,
1435 sq->tso_hdrs_phys +
1436 qentry * TSO_HEADER_SIZE);
1437 /* HDR_SUDESC + GATHER */
1438 seg_subdescs = 2;
1439 seg_len = hdr_len;
1440
1441 /* Add segment's payload fragments */
1442 while (data_left > 0) {
1443 int size;
1444
1445 size = min_t(int, tso.size, data_left);
1446
1447 qentry = nicvf_get_nxt_sqentry(sq, qentry);
1448 nicvf_sq_add_gather_subdesc(sq, qentry, size,
1449 virt_to_phys(tso.data));
1450 seg_subdescs++;
1451 seg_len += size;
1452
1453 data_left -= size;
1454 tso_build_data(skb, &tso, size);
1455 }
Sunil Goutham40fb5f82015-12-10 13:25:19 +05301456 nicvf_sq_add_hdr_subdesc(nic, sq, hdr_qentry,
Sunil Goutham4863dea2015-05-26 19:20:15 -07001457 seg_subdescs - 1, skb, seg_len);
Sunil Goutham143ceb02015-07-29 16:49:37 +03001458 sq->skbuff[hdr_qentry] = (u64)NULL;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001459 qentry = nicvf_get_nxt_sqentry(sq, qentry);
1460
1461 desc_cnt += seg_subdescs;
1462 }
1463 /* Save SKB in the last segment for freeing */
1464 sq->skbuff[hdr_qentry] = (u64)skb;
1465
Sunil Goutham2c204c22016-09-23 14:42:28 +05301466 nicvf_sq_doorbell(nic, skb, sq_num, desc_cnt);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001467
Sunil Goutham964cb692016-11-15 17:38:16 +05301468 this_cpu_inc(nic->pnicvf->drv_stats->tx_tso);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001469 return 1;
1470}
1471
1472/* Append an skb to a SQ for packet transfer. */
Sunil Gouthambd3ad7d2016-12-01 18:24:28 +05301473int nicvf_sq_append_skb(struct nicvf *nic, struct snd_queue *sq,
1474 struct sk_buff *skb, u8 sq_num)
Sunil Goutham4863dea2015-05-26 19:20:15 -07001475{
1476 int i, size;
Sunil Goutham83abb7d2017-03-07 18:09:08 +05301477 int subdesc_cnt, hdr_sqe = 0;
Sunil Gouthambd3ad7d2016-12-01 18:24:28 +05301478 int qentry;
Sunil Goutham83abb7d2017-03-07 18:09:08 +05301479 u64 dma_addr;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001480
1481 subdesc_cnt = nicvf_sq_subdesc_required(nic, skb);
1482 if (subdesc_cnt > atomic_read(&sq->free_cnt))
1483 goto append_fail;
1484
1485 qentry = nicvf_get_sq_desc(sq, subdesc_cnt);
1486
1487 /* Check if its a TSO packet */
Sunil Goutham40fb5f82015-12-10 13:25:19 +05301488 if (skb_shinfo(skb)->gso_size && !nic->hw_tso)
Sunil Goutham92dc8762015-08-30 12:29:15 +03001489 return nicvf_sq_append_tso(nic, sq, sq_num, qentry, skb);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001490
1491 /* Add SQ header subdesc */
Sunil Goutham40fb5f82015-12-10 13:25:19 +05301492 nicvf_sq_add_hdr_subdesc(nic, sq, qentry, subdesc_cnt - 1,
1493 skb, skb->len);
Sunil Goutham83abb7d2017-03-07 18:09:08 +05301494 hdr_sqe = qentry;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001495
1496 /* Add SQ gather subdescs */
1497 qentry = nicvf_get_nxt_sqentry(sq, qentry);
1498 size = skb_is_nonlinear(skb) ? skb_headlen(skb) : skb->len;
Sunil Goutham83abb7d2017-03-07 18:09:08 +05301499 /* HW will ensure data coherency, CPU sync not required */
1500 dma_addr = dma_map_page_attrs(&nic->pdev->dev, virt_to_page(skb->data),
1501 offset_in_page(skb->data), size,
1502 DMA_TO_DEVICE, DMA_ATTR_SKIP_CPU_SYNC);
1503 if (dma_mapping_error(&nic->pdev->dev, dma_addr)) {
1504 nicvf_rollback_sq_desc(sq, qentry, subdesc_cnt);
1505 return 0;
1506 }
1507
1508 nicvf_sq_add_gather_subdesc(sq, qentry, size, dma_addr);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001509
1510 /* Check for scattered buffer */
1511 if (!skb_is_nonlinear(skb))
1512 goto doorbell;
1513
1514 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1515 const struct skb_frag_struct *frag;
1516
1517 frag = &skb_shinfo(skb)->frags[i];
1518
1519 qentry = nicvf_get_nxt_sqentry(sq, qentry);
1520 size = skb_frag_size(frag);
Sunil Goutham83abb7d2017-03-07 18:09:08 +05301521 dma_addr = dma_map_page_attrs(&nic->pdev->dev,
1522 skb_frag_page(frag),
1523 frag->page_offset, size,
1524 DMA_TO_DEVICE,
1525 DMA_ATTR_SKIP_CPU_SYNC);
1526 if (dma_mapping_error(&nic->pdev->dev, dma_addr)) {
1527 /* Free entire chain of mapped buffers
1528 * here 'i' = frags mapped + above mapped skb->data
1529 */
1530 nicvf_unmap_sndq_buffers(nic, sq, hdr_sqe, i);
1531 nicvf_rollback_sq_desc(sq, qentry, subdesc_cnt);
1532 return 0;
1533 }
1534 nicvf_sq_add_gather_subdesc(sq, qentry, size, dma_addr);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001535 }
1536
1537doorbell:
Sunil Goutham7ceb8a12016-08-30 11:36:27 +05301538 if (nic->t88 && skb_shinfo(skb)->gso_size) {
1539 qentry = nicvf_get_nxt_sqentry(sq, qentry);
Sunil Goutham83abb7d2017-03-07 18:09:08 +05301540 nicvf_sq_add_cqe_subdesc(sq, qentry, hdr_sqe, skb);
Sunil Goutham7ceb8a12016-08-30 11:36:27 +05301541 }
1542
Sunil Goutham2c204c22016-09-23 14:42:28 +05301543 nicvf_sq_doorbell(nic, skb, sq_num, subdesc_cnt);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001544
Sunil Goutham4863dea2015-05-26 19:20:15 -07001545 return 1;
1546
1547append_fail:
Sunil Goutham92dc8762015-08-30 12:29:15 +03001548 /* Use original PCI dev for debug log */
1549 nic = nic->pnicvf;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001550 netdev_dbg(nic->netdev, "Not enough SQ descriptors to xmit pkt\n");
1551 return 0;
1552}
1553
1554static inline unsigned frag_num(unsigned i)
1555{
1556#ifdef __BIG_ENDIAN
1557 return (i & ~3) + 3 - (i & 3);
1558#else
1559 return i;
1560#endif
1561}
1562
Sunil Gouthamc56d91c2017-05-02 18:36:55 +05301563static void nicvf_unmap_rcv_buffer(struct nicvf *nic, u64 dma_addr,
1564 u64 buf_addr, bool xdp)
1565{
1566 struct page *page = NULL;
1567 int len = RCV_FRAG_LEN;
1568
1569 if (xdp) {
1570 page = virt_to_page(phys_to_virt(buf_addr));
1571 /* Check if it's a recycled page, if not
1572 * unmap the DMA mapping.
1573 *
1574 * Recycled page holds an extra reference.
1575 */
1576 if (page_ref_count(page) != 1)
1577 return;
1578 /* Receive buffers in XDP mode are mapped from page start */
1579 dma_addr &= PAGE_MASK;
1580 }
1581 dma_unmap_page_attrs(&nic->pdev->dev, dma_addr, len,
1582 DMA_FROM_DEVICE, DMA_ATTR_SKIP_CPU_SYNC);
1583}
1584
Sunil Goutham4863dea2015-05-26 19:20:15 -07001585/* Returns SKB for a received packet */
Sunil Gouthamc56d91c2017-05-02 18:36:55 +05301586struct sk_buff *nicvf_get_rcv_skb(struct nicvf *nic,
1587 struct cqe_rx_t *cqe_rx, bool xdp)
Sunil Goutham4863dea2015-05-26 19:20:15 -07001588{
1589 int frag;
1590 int payload_len = 0;
1591 struct sk_buff *skb = NULL;
Sunil Gouthama8671ac2016-08-12 16:51:37 +05301592 struct page *page;
1593 int offset;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001594 u16 *rb_lens = NULL;
1595 u64 *rb_ptrs = NULL;
Sunil Goutham83abb7d2017-03-07 18:09:08 +05301596 u64 phys_addr;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001597
1598 rb_lens = (void *)cqe_rx + (3 * sizeof(u64));
Sunil Goutham02a72bd2016-08-12 16:51:28 +05301599 /* Except 88xx pass1 on all other chips CQE_RX2_S is added to
1600 * CQE_RX at word6, hence buffer pointers move by word
1601 *
1602 * Use existing 'hw_tso' flag which will be set for all chips
1603 * except 88xx pass1 instead of a additional cache line
1604 * access (or miss) by using pci dev's revision.
1605 */
1606 if (!nic->hw_tso)
1607 rb_ptrs = (void *)cqe_rx + (6 * sizeof(u64));
1608 else
1609 rb_ptrs = (void *)cqe_rx + (7 * sizeof(u64));
Sunil Goutham4863dea2015-05-26 19:20:15 -07001610
Sunil Goutham4863dea2015-05-26 19:20:15 -07001611 for (frag = 0; frag < cqe_rx->rb_cnt; frag++) {
1612 payload_len = rb_lens[frag_num(frag)];
Sunil Goutham83abb7d2017-03-07 18:09:08 +05301613 phys_addr = nicvf_iova_to_phys(nic, *rb_ptrs);
1614 if (!phys_addr) {
1615 if (skb)
1616 dev_kfree_skb_any(skb);
1617 return NULL;
1618 }
1619
Sunil Goutham4863dea2015-05-26 19:20:15 -07001620 if (!frag) {
1621 /* First fragment */
Sunil Gouthamc56d91c2017-05-02 18:36:55 +05301622 nicvf_unmap_rcv_buffer(nic,
1623 *rb_ptrs - cqe_rx->align_pad,
1624 phys_addr, xdp);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001625 skb = nicvf_rb_ptr_to_skb(nic,
Sunil Goutham83abb7d2017-03-07 18:09:08 +05301626 phys_addr - cqe_rx->align_pad,
Sunil Goutham4863dea2015-05-26 19:20:15 -07001627 payload_len);
1628 if (!skb)
1629 return NULL;
1630 skb_reserve(skb, cqe_rx->align_pad);
1631 skb_put(skb, payload_len);
1632 } else {
1633 /* Add fragments */
Sunil Gouthamc56d91c2017-05-02 18:36:55 +05301634 nicvf_unmap_rcv_buffer(nic, *rb_ptrs, phys_addr, xdp);
Sunil Goutham83abb7d2017-03-07 18:09:08 +05301635 page = virt_to_page(phys_to_virt(phys_addr));
1636 offset = phys_to_virt(phys_addr) - page_address(page);
Sunil Gouthama8671ac2016-08-12 16:51:37 +05301637 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page,
1638 offset, payload_len, RCV_FRAG_LEN);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001639 }
1640 /* Next buffer pointer */
1641 rb_ptrs++;
1642 }
1643 return skb;
1644}
1645
Yury Norovb45ceb42015-12-07 10:30:32 +05301646static u64 nicvf_int_type_to_mask(int int_type, int q_idx)
Sunil Goutham4863dea2015-05-26 19:20:15 -07001647{
1648 u64 reg_val;
1649
Sunil Goutham4863dea2015-05-26 19:20:15 -07001650 switch (int_type) {
1651 case NICVF_INTR_CQ:
1652 reg_val = ((1ULL << q_idx) << NICVF_INTR_CQ_SHIFT);
1653 break;
1654 case NICVF_INTR_SQ:
1655 reg_val = ((1ULL << q_idx) << NICVF_INTR_SQ_SHIFT);
1656 break;
1657 case NICVF_INTR_RBDR:
1658 reg_val = ((1ULL << q_idx) << NICVF_INTR_RBDR_SHIFT);
1659 break;
1660 case NICVF_INTR_PKT_DROP:
1661 reg_val = (1ULL << NICVF_INTR_PKT_DROP_SHIFT);
1662 break;
1663 case NICVF_INTR_TCP_TIMER:
1664 reg_val = (1ULL << NICVF_INTR_TCP_TIMER_SHIFT);
1665 break;
1666 case NICVF_INTR_MBOX:
1667 reg_val = (1ULL << NICVF_INTR_MBOX_SHIFT);
1668 break;
1669 case NICVF_INTR_QS_ERR:
Yury Norovb45ceb42015-12-07 10:30:32 +05301670 reg_val = (1ULL << NICVF_INTR_QS_ERR_SHIFT);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001671 break;
1672 default:
Yury Norovb45ceb42015-12-07 10:30:32 +05301673 reg_val = 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001674 }
1675
Yury Norovb45ceb42015-12-07 10:30:32 +05301676 return reg_val;
1677}
1678
1679/* Enable interrupt */
1680void nicvf_enable_intr(struct nicvf *nic, int int_type, int q_idx)
1681{
1682 u64 mask = nicvf_int_type_to_mask(int_type, q_idx);
1683
1684 if (!mask) {
1685 netdev_dbg(nic->netdev,
1686 "Failed to enable interrupt: unknown type\n");
1687 return;
1688 }
1689 nicvf_reg_write(nic, NIC_VF_ENA_W1S,
1690 nicvf_reg_read(nic, NIC_VF_ENA_W1S) | mask);
1691}
1692
1693/* Disable interrupt */
1694void nicvf_disable_intr(struct nicvf *nic, int int_type, int q_idx)
1695{
1696 u64 mask = nicvf_int_type_to_mask(int_type, q_idx);
1697
1698 if (!mask) {
1699 netdev_dbg(nic->netdev,
1700 "Failed to disable interrupt: unknown type\n");
1701 return;
1702 }
1703
1704 nicvf_reg_write(nic, NIC_VF_ENA_W1C, mask);
1705}
1706
1707/* Clear interrupt */
1708void nicvf_clear_intr(struct nicvf *nic, int int_type, int q_idx)
1709{
1710 u64 mask = nicvf_int_type_to_mask(int_type, q_idx);
1711
1712 if (!mask) {
1713 netdev_dbg(nic->netdev,
1714 "Failed to clear interrupt: unknown type\n");
1715 return;
1716 }
1717
1718 nicvf_reg_write(nic, NIC_VF_INT, mask);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001719}
1720
1721/* Check if interrupt is enabled */
1722int nicvf_is_intr_enabled(struct nicvf *nic, int int_type, int q_idx)
1723{
Yury Norovb45ceb42015-12-07 10:30:32 +05301724 u64 mask = nicvf_int_type_to_mask(int_type, q_idx);
1725 /* If interrupt type is unknown, we treat it disabled. */
1726 if (!mask) {
1727 netdev_dbg(nic->netdev,
Sunil Goutham4863dea2015-05-26 19:20:15 -07001728 "Failed to check interrupt enable: unknown type\n");
Yury Norovb45ceb42015-12-07 10:30:32 +05301729 return 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001730 }
1731
Yury Norovb45ceb42015-12-07 10:30:32 +05301732 return mask & nicvf_reg_read(nic, NIC_VF_ENA_W1S);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001733}
1734
1735void nicvf_update_rq_stats(struct nicvf *nic, int rq_idx)
1736{
1737 struct rcv_queue *rq;
1738
1739#define GET_RQ_STATS(reg) \
1740 nicvf_reg_read(nic, NIC_QSET_RQ_0_7_STAT_0_1 |\
1741 (rq_idx << NIC_Q_NUM_SHIFT) | (reg << 3))
1742
1743 rq = &nic->qs->rq[rq_idx];
1744 rq->stats.bytes = GET_RQ_STATS(RQ_SQ_STATS_OCTS);
1745 rq->stats.pkts = GET_RQ_STATS(RQ_SQ_STATS_PKTS);
1746}
1747
1748void nicvf_update_sq_stats(struct nicvf *nic, int sq_idx)
1749{
1750 struct snd_queue *sq;
1751
1752#define GET_SQ_STATS(reg) \
1753 nicvf_reg_read(nic, NIC_QSET_SQ_0_7_STAT_0_1 |\
1754 (sq_idx << NIC_Q_NUM_SHIFT) | (reg << 3))
1755
1756 sq = &nic->qs->sq[sq_idx];
1757 sq->stats.bytes = GET_SQ_STATS(RQ_SQ_STATS_OCTS);
1758 sq->stats.pkts = GET_SQ_STATS(RQ_SQ_STATS_PKTS);
1759}
1760
1761/* Check for errors in the receive cmp.queue entry */
Sunil Gouthamad2eceb2016-02-16 16:29:51 +05301762int nicvf_check_cqe_rx_errs(struct nicvf *nic, struct cqe_rx_t *cqe_rx)
Sunil Goutham4863dea2015-05-26 19:20:15 -07001763{
Sunil Goutham4863dea2015-05-26 19:20:15 -07001764 if (netif_msg_rx_err(nic))
1765 netdev_err(nic->netdev,
1766 "%s: RX error CQE err_level 0x%x err_opcode 0x%x\n",
1767 nic->netdev->name,
1768 cqe_rx->err_level, cqe_rx->err_opcode);
1769
Sunil Goutham4863dea2015-05-26 19:20:15 -07001770 switch (cqe_rx->err_opcode) {
1771 case CQ_RX_ERROP_RE_PARTIAL:
Sunil Goutham964cb692016-11-15 17:38:16 +05301772 this_cpu_inc(nic->drv_stats->rx_bgx_truncated_pkts);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001773 break;
1774 case CQ_RX_ERROP_RE_JABBER:
Sunil Goutham964cb692016-11-15 17:38:16 +05301775 this_cpu_inc(nic->drv_stats->rx_jabber_errs);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001776 break;
1777 case CQ_RX_ERROP_RE_FCS:
Sunil Goutham964cb692016-11-15 17:38:16 +05301778 this_cpu_inc(nic->drv_stats->rx_fcs_errs);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001779 break;
1780 case CQ_RX_ERROP_RE_RX_CTL:
Sunil Goutham964cb692016-11-15 17:38:16 +05301781 this_cpu_inc(nic->drv_stats->rx_bgx_errs);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001782 break;
1783 case CQ_RX_ERROP_PREL2_ERR:
Sunil Goutham964cb692016-11-15 17:38:16 +05301784 this_cpu_inc(nic->drv_stats->rx_prel2_errs);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001785 break;
1786 case CQ_RX_ERROP_L2_MAL:
Sunil Goutham964cb692016-11-15 17:38:16 +05301787 this_cpu_inc(nic->drv_stats->rx_l2_hdr_malformed);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001788 break;
1789 case CQ_RX_ERROP_L2_OVERSIZE:
Sunil Goutham964cb692016-11-15 17:38:16 +05301790 this_cpu_inc(nic->drv_stats->rx_oversize);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001791 break;
1792 case CQ_RX_ERROP_L2_UNDERSIZE:
Sunil Goutham964cb692016-11-15 17:38:16 +05301793 this_cpu_inc(nic->drv_stats->rx_undersize);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001794 break;
1795 case CQ_RX_ERROP_L2_LENMISM:
Sunil Goutham964cb692016-11-15 17:38:16 +05301796 this_cpu_inc(nic->drv_stats->rx_l2_len_mismatch);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001797 break;
1798 case CQ_RX_ERROP_L2_PCLP:
Sunil Goutham964cb692016-11-15 17:38:16 +05301799 this_cpu_inc(nic->drv_stats->rx_l2_pclp);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001800 break;
1801 case CQ_RX_ERROP_IP_NOT:
Sunil Goutham964cb692016-11-15 17:38:16 +05301802 this_cpu_inc(nic->drv_stats->rx_ip_ver_errs);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001803 break;
1804 case CQ_RX_ERROP_IP_CSUM_ERR:
Sunil Goutham964cb692016-11-15 17:38:16 +05301805 this_cpu_inc(nic->drv_stats->rx_ip_csum_errs);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001806 break;
1807 case CQ_RX_ERROP_IP_MAL:
Sunil Goutham964cb692016-11-15 17:38:16 +05301808 this_cpu_inc(nic->drv_stats->rx_ip_hdr_malformed);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001809 break;
1810 case CQ_RX_ERROP_IP_MALD:
Sunil Goutham964cb692016-11-15 17:38:16 +05301811 this_cpu_inc(nic->drv_stats->rx_ip_payload_malformed);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001812 break;
1813 case CQ_RX_ERROP_IP_HOP:
Sunil Goutham964cb692016-11-15 17:38:16 +05301814 this_cpu_inc(nic->drv_stats->rx_ip_ttl_errs);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001815 break;
1816 case CQ_RX_ERROP_L3_PCLP:
Sunil Goutham964cb692016-11-15 17:38:16 +05301817 this_cpu_inc(nic->drv_stats->rx_l3_pclp);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001818 break;
1819 case CQ_RX_ERROP_L4_MAL:
Sunil Goutham964cb692016-11-15 17:38:16 +05301820 this_cpu_inc(nic->drv_stats->rx_l4_malformed);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001821 break;
1822 case CQ_RX_ERROP_L4_CHK:
Sunil Goutham964cb692016-11-15 17:38:16 +05301823 this_cpu_inc(nic->drv_stats->rx_l4_csum_errs);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001824 break;
1825 case CQ_RX_ERROP_UDP_LEN:
Sunil Goutham964cb692016-11-15 17:38:16 +05301826 this_cpu_inc(nic->drv_stats->rx_udp_len_errs);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001827 break;
1828 case CQ_RX_ERROP_L4_PORT:
Sunil Goutham964cb692016-11-15 17:38:16 +05301829 this_cpu_inc(nic->drv_stats->rx_l4_port_errs);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001830 break;
1831 case CQ_RX_ERROP_TCP_FLAG:
Sunil Goutham964cb692016-11-15 17:38:16 +05301832 this_cpu_inc(nic->drv_stats->rx_tcp_flag_errs);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001833 break;
1834 case CQ_RX_ERROP_TCP_OFFSET:
Sunil Goutham964cb692016-11-15 17:38:16 +05301835 this_cpu_inc(nic->drv_stats->rx_tcp_offset_errs);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001836 break;
1837 case CQ_RX_ERROP_L4_PCLP:
Sunil Goutham964cb692016-11-15 17:38:16 +05301838 this_cpu_inc(nic->drv_stats->rx_l4_pclp);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001839 break;
1840 case CQ_RX_ERROP_RBDR_TRUNC:
Sunil Goutham964cb692016-11-15 17:38:16 +05301841 this_cpu_inc(nic->drv_stats->rx_truncated_pkts);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001842 break;
1843 }
1844
1845 return 1;
1846}
1847
1848/* Check for errors in the send cmp.queue entry */
Sunil Goutham964cb692016-11-15 17:38:16 +05301849int nicvf_check_cqe_tx_errs(struct nicvf *nic, struct cqe_send_t *cqe_tx)
Sunil Goutham4863dea2015-05-26 19:20:15 -07001850{
Sunil Goutham4863dea2015-05-26 19:20:15 -07001851 switch (cqe_tx->send_status) {
Sunil Goutham4863dea2015-05-26 19:20:15 -07001852 case CQ_TX_ERROP_DESC_FAULT:
Sunil Goutham964cb692016-11-15 17:38:16 +05301853 this_cpu_inc(nic->drv_stats->tx_desc_fault);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001854 break;
1855 case CQ_TX_ERROP_HDR_CONS_ERR:
Sunil Goutham964cb692016-11-15 17:38:16 +05301856 this_cpu_inc(nic->drv_stats->tx_hdr_cons_err);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001857 break;
1858 case CQ_TX_ERROP_SUBDC_ERR:
Sunil Goutham964cb692016-11-15 17:38:16 +05301859 this_cpu_inc(nic->drv_stats->tx_subdesc_err);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001860 break;
Sunil Goutham712c3182016-11-15 17:37:36 +05301861 case CQ_TX_ERROP_MAX_SIZE_VIOL:
Sunil Goutham964cb692016-11-15 17:38:16 +05301862 this_cpu_inc(nic->drv_stats->tx_max_size_exceeded);
Sunil Goutham712c3182016-11-15 17:37:36 +05301863 break;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001864 case CQ_TX_ERROP_IMM_SIZE_OFLOW:
Sunil Goutham964cb692016-11-15 17:38:16 +05301865 this_cpu_inc(nic->drv_stats->tx_imm_size_oflow);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001866 break;
1867 case CQ_TX_ERROP_DATA_SEQUENCE_ERR:
Sunil Goutham964cb692016-11-15 17:38:16 +05301868 this_cpu_inc(nic->drv_stats->tx_data_seq_err);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001869 break;
1870 case CQ_TX_ERROP_MEM_SEQUENCE_ERR:
Sunil Goutham964cb692016-11-15 17:38:16 +05301871 this_cpu_inc(nic->drv_stats->tx_mem_seq_err);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001872 break;
1873 case CQ_TX_ERROP_LOCK_VIOL:
Sunil Goutham964cb692016-11-15 17:38:16 +05301874 this_cpu_inc(nic->drv_stats->tx_lock_viol);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001875 break;
1876 case CQ_TX_ERROP_DATA_FAULT:
Sunil Goutham964cb692016-11-15 17:38:16 +05301877 this_cpu_inc(nic->drv_stats->tx_data_fault);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001878 break;
1879 case CQ_TX_ERROP_TSTMP_CONFLICT:
Sunil Goutham964cb692016-11-15 17:38:16 +05301880 this_cpu_inc(nic->drv_stats->tx_tstmp_conflict);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001881 break;
1882 case CQ_TX_ERROP_TSTMP_TIMEOUT:
Sunil Goutham964cb692016-11-15 17:38:16 +05301883 this_cpu_inc(nic->drv_stats->tx_tstmp_timeout);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001884 break;
1885 case CQ_TX_ERROP_MEM_FAULT:
Sunil Goutham964cb692016-11-15 17:38:16 +05301886 this_cpu_inc(nic->drv_stats->tx_mem_fault);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001887 break;
1888 case CQ_TX_ERROP_CK_OVERLAP:
Sunil Goutham964cb692016-11-15 17:38:16 +05301889 this_cpu_inc(nic->drv_stats->tx_csum_overlap);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001890 break;
1891 case CQ_TX_ERROP_CK_OFLOW:
Sunil Goutham964cb692016-11-15 17:38:16 +05301892 this_cpu_inc(nic->drv_stats->tx_csum_overflow);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001893 break;
1894 }
1895
1896 return 1;
1897}