blob: 7d90856c97835e88e1dd6030f5e89dc03288a931 [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>
13#include <net/ip.h>
14#include <net/tso.h>
15
16#include "nic_reg.h"
17#include "nic.h"
18#include "q_struct.h"
19#include "nicvf_queues.h"
20
Sunil Goutham5c2e26f2016-03-14 16:36:14 +053021static void nicvf_get_page(struct nicvf *nic)
22{
23 if (!nic->rb_pageref || !nic->rb_page)
24 return;
25
Joonsoo Kim6d061f92016-05-19 17:10:46 -070026 page_ref_add(nic->rb_page, nic->rb_pageref);
Sunil Goutham5c2e26f2016-03-14 16:36:14 +053027 nic->rb_pageref = 0;
28}
29
Sunil Goutham4863dea2015-05-26 19:20:15 -070030/* Poll a register for a specific value */
31static int nicvf_poll_reg(struct nicvf *nic, int qidx,
32 u64 reg, int bit_pos, int bits, int val)
33{
34 u64 bit_mask;
35 u64 reg_val;
36 int timeout = 10;
37
38 bit_mask = (1ULL << bits) - 1;
39 bit_mask = (bit_mask << bit_pos);
40
41 while (timeout) {
42 reg_val = nicvf_queue_reg_read(nic, reg, qidx);
43 if (((reg_val & bit_mask) >> bit_pos) == val)
44 return 0;
45 usleep_range(1000, 2000);
46 timeout--;
47 }
48 netdev_err(nic->netdev, "Poll on reg 0x%llx failed\n", reg);
49 return 1;
50}
51
52/* Allocate memory for a queue's descriptors */
53static int nicvf_alloc_q_desc_mem(struct nicvf *nic, struct q_desc_mem *dmem,
54 int q_len, int desc_size, int align_bytes)
55{
56 dmem->q_len = q_len;
57 dmem->size = (desc_size * q_len) + align_bytes;
58 /* Save address, need it while freeing */
59 dmem->unalign_base = dma_zalloc_coherent(&nic->pdev->dev, dmem->size,
60 &dmem->dma, GFP_KERNEL);
61 if (!dmem->unalign_base)
62 return -ENOMEM;
63
64 /* Align memory address for 'align_bytes' */
65 dmem->phys_base = NICVF_ALIGNED_ADDR((u64)dmem->dma, align_bytes);
Aleksey Makarov39a0dd02015-06-02 11:00:25 -070066 dmem->base = dmem->unalign_base + (dmem->phys_base - dmem->dma);
Sunil Goutham4863dea2015-05-26 19:20:15 -070067 return 0;
68}
69
70/* Free queue's descriptor memory */
71static void nicvf_free_q_desc_mem(struct nicvf *nic, struct q_desc_mem *dmem)
72{
73 if (!dmem)
74 return;
75
76 dma_free_coherent(&nic->pdev->dev, dmem->size,
77 dmem->unalign_base, dmem->dma);
78 dmem->unalign_base = NULL;
79 dmem->base = NULL;
80}
81
82/* Allocate buffer for packet reception
83 * HW returns memory address where packet is DMA'ed but not a pointer
84 * into RBDR ring, so save buffer address at the start of fragment and
85 * align the start address to a cache aligned address
86 */
87static inline int nicvf_alloc_rcv_buffer(struct nicvf *nic, gfp_t gfp,
88 u32 buf_len, u64 **rbuf)
89{
Sunil Goutham6e4be8d2016-02-11 21:50:26 +053090 int order = (PAGE_SIZE <= 4096) ? PAGE_ALLOC_COSTLY_ORDER : 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -070091
92 /* Check if request can be accomodated in previous allocated page */
Sunil Goutham5c2e26f2016-03-14 16:36:14 +053093 if (nic->rb_page &&
94 ((nic->rb_page_offset + buf_len) < (PAGE_SIZE << order))) {
95 nic->rb_pageref++;
96 goto ret;
Sunil Goutham4863dea2015-05-26 19:20:15 -070097 }
98
Sunil Goutham5c2e26f2016-03-14 16:36:14 +053099 nicvf_get_page(nic);
100 nic->rb_page = NULL;
101
Sunil Goutham4863dea2015-05-26 19:20:15 -0700102 /* Allocate a new page */
103 if (!nic->rb_page) {
Sunil Gouthamf8ce9662015-07-29 16:49:41 +0300104 nic->rb_page = alloc_pages(gfp | __GFP_COMP | __GFP_NOWARN,
105 order);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700106 if (!nic->rb_page) {
Thanneeru Srinivasulua05d4842016-02-11 21:50:21 +0530107 nic->drv_stats.rcv_buffer_alloc_failures++;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700108 return -ENOMEM;
109 }
110 nic->rb_page_offset = 0;
111 }
112
Sunil Goutham5c2e26f2016-03-14 16:36:14 +0530113ret:
Sunil Goutham668dda02015-12-07 10:30:33 +0530114 *rbuf = (u64 *)((u64)page_address(nic->rb_page) + nic->rb_page_offset);
Sunil Goutham5c2e26f2016-03-14 16:36:14 +0530115 nic->rb_page_offset += buf_len;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700116
Sunil Goutham4863dea2015-05-26 19:20:15 -0700117 return 0;
118}
119
Sunil Goutham668dda02015-12-07 10:30:33 +0530120/* Build skb around receive buffer */
Sunil Goutham4863dea2015-05-26 19:20:15 -0700121static struct sk_buff *nicvf_rb_ptr_to_skb(struct nicvf *nic,
122 u64 rb_ptr, int len)
123{
Sunil Goutham668dda02015-12-07 10:30:33 +0530124 void *data;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700125 struct sk_buff *skb;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700126
Sunil Goutham668dda02015-12-07 10:30:33 +0530127 data = phys_to_virt(rb_ptr);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700128
129 /* Now build an skb to give to stack */
Sunil Goutham668dda02015-12-07 10:30:33 +0530130 skb = build_skb(data, RCV_FRAG_LEN);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700131 if (!skb) {
Sunil Goutham668dda02015-12-07 10:30:33 +0530132 put_page(virt_to_page(data));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700133 return NULL;
134 }
135
Sunil Goutham668dda02015-12-07 10:30:33 +0530136 prefetch(skb->data);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700137 return skb;
138}
139
140/* Allocate RBDR ring and populate receive buffers */
141static int nicvf_init_rbdr(struct nicvf *nic, struct rbdr *rbdr,
142 int ring_len, int buf_size)
143{
144 int idx;
145 u64 *rbuf;
146 struct rbdr_entry_t *desc;
147 int err;
148
149 err = nicvf_alloc_q_desc_mem(nic, &rbdr->dmem, ring_len,
150 sizeof(struct rbdr_entry_t),
151 NICVF_RCV_BUF_ALIGN_BYTES);
152 if (err)
153 return err;
154
155 rbdr->desc = rbdr->dmem.base;
156 /* Buffer size has to be in multiples of 128 bytes */
157 rbdr->dma_size = buf_size;
158 rbdr->enable = true;
159 rbdr->thresh = RBDR_THRESH;
160
161 nic->rb_page = NULL;
162 for (idx = 0; idx < ring_len; idx++) {
163 err = nicvf_alloc_rcv_buffer(nic, GFP_KERNEL, RCV_FRAG_LEN,
164 &rbuf);
165 if (err)
166 return err;
167
168 desc = GET_RBDR_DESC(rbdr, idx);
169 desc->buf_addr = virt_to_phys(rbuf) >> NICVF_RCV_BUF_ALIGN;
170 }
Sunil Goutham5c2e26f2016-03-14 16:36:14 +0530171
172 nicvf_get_page(nic);
173
Sunil Goutham4863dea2015-05-26 19:20:15 -0700174 return 0;
175}
176
177/* Free RBDR ring and its receive buffers */
178static void nicvf_free_rbdr(struct nicvf *nic, struct rbdr *rbdr)
179{
180 int head, tail;
181 u64 buf_addr;
182 struct rbdr_entry_t *desc;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700183
184 if (!rbdr)
185 return;
186
187 rbdr->enable = false;
188 if (!rbdr->dmem.base)
189 return;
190
191 head = rbdr->head;
192 tail = rbdr->tail;
193
194 /* Free SKBs */
195 while (head != tail) {
196 desc = GET_RBDR_DESC(rbdr, head);
197 buf_addr = desc->buf_addr << NICVF_RCV_BUF_ALIGN;
Sunil Goutham668dda02015-12-07 10:30:33 +0530198 put_page(virt_to_page(phys_to_virt(buf_addr)));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700199 head++;
200 head &= (rbdr->dmem.q_len - 1);
201 }
202 /* Free SKB of tail desc */
203 desc = GET_RBDR_DESC(rbdr, tail);
204 buf_addr = desc->buf_addr << NICVF_RCV_BUF_ALIGN;
Sunil Goutham668dda02015-12-07 10:30:33 +0530205 put_page(virt_to_page(phys_to_virt(buf_addr)));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700206
207 /* Free RBDR ring */
208 nicvf_free_q_desc_mem(nic, &rbdr->dmem);
209}
210
211/* Refill receive buffer descriptors with new buffers.
212 */
Aleksey Makarovfd7ec062015-06-02 11:00:23 -0700213static void nicvf_refill_rbdr(struct nicvf *nic, gfp_t gfp)
Sunil Goutham4863dea2015-05-26 19:20:15 -0700214{
215 struct queue_set *qs = nic->qs;
216 int rbdr_idx = qs->rbdr_cnt;
217 int tail, qcount;
218 int refill_rb_cnt;
219 struct rbdr *rbdr;
220 struct rbdr_entry_t *desc;
221 u64 *rbuf;
222 int new_rb = 0;
223
224refill:
225 if (!rbdr_idx)
226 return;
227 rbdr_idx--;
228 rbdr = &qs->rbdr[rbdr_idx];
229 /* Check if it's enabled */
230 if (!rbdr->enable)
231 goto next_rbdr;
232
233 /* Get no of desc's to be refilled */
234 qcount = nicvf_queue_reg_read(nic, NIC_QSET_RBDR_0_1_STATUS0, rbdr_idx);
235 qcount &= 0x7FFFF;
236 /* Doorbell can be ringed with a max of ring size minus 1 */
237 if (qcount >= (qs->rbdr_len - 1))
238 goto next_rbdr;
239 else
240 refill_rb_cnt = qs->rbdr_len - qcount - 1;
241
242 /* Start filling descs from tail */
243 tail = nicvf_queue_reg_read(nic, NIC_QSET_RBDR_0_1_TAIL, rbdr_idx) >> 3;
244 while (refill_rb_cnt) {
245 tail++;
246 tail &= (rbdr->dmem.q_len - 1);
247
248 if (nicvf_alloc_rcv_buffer(nic, gfp, RCV_FRAG_LEN, &rbuf))
249 break;
250
251 desc = GET_RBDR_DESC(rbdr, tail);
252 desc->buf_addr = virt_to_phys(rbuf) >> NICVF_RCV_BUF_ALIGN;
253 refill_rb_cnt--;
254 new_rb++;
255 }
256
Sunil Goutham5c2e26f2016-03-14 16:36:14 +0530257 nicvf_get_page(nic);
258
Sunil Goutham4863dea2015-05-26 19:20:15 -0700259 /* make sure all memory stores are done before ringing doorbell */
260 smp_wmb();
261
262 /* Check if buffer allocation failed */
263 if (refill_rb_cnt)
264 nic->rb_alloc_fail = true;
265 else
266 nic->rb_alloc_fail = false;
267
268 /* Notify HW */
269 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_DOOR,
270 rbdr_idx, new_rb);
271next_rbdr:
272 /* Re-enable RBDR interrupts only if buffer allocation is success */
273 if (!nic->rb_alloc_fail && rbdr->enable)
274 nicvf_enable_intr(nic, NICVF_INTR_RBDR, rbdr_idx);
275
276 if (rbdr_idx)
277 goto refill;
278}
279
280/* Alloc rcv buffers in non-atomic mode for better success */
281void nicvf_rbdr_work(struct work_struct *work)
282{
283 struct nicvf *nic = container_of(work, struct nicvf, rbdr_work.work);
284
285 nicvf_refill_rbdr(nic, GFP_KERNEL);
286 if (nic->rb_alloc_fail)
287 schedule_delayed_work(&nic->rbdr_work, msecs_to_jiffies(10));
288 else
289 nic->rb_work_scheduled = false;
290}
291
292/* In Softirq context, alloc rcv buffers in atomic mode */
293void nicvf_rbdr_task(unsigned long data)
294{
295 struct nicvf *nic = (struct nicvf *)data;
296
297 nicvf_refill_rbdr(nic, GFP_ATOMIC);
298 if (nic->rb_alloc_fail) {
299 nic->rb_work_scheduled = true;
300 schedule_delayed_work(&nic->rbdr_work, msecs_to_jiffies(10));
301 }
302}
303
304/* Initialize completion queue */
305static int nicvf_init_cmp_queue(struct nicvf *nic,
306 struct cmp_queue *cq, int q_len)
307{
308 int err;
309
310 err = nicvf_alloc_q_desc_mem(nic, &cq->dmem, q_len, CMP_QUEUE_DESC_SIZE,
311 NICVF_CQ_BASE_ALIGN_BYTES);
312 if (err)
313 return err;
314
315 cq->desc = cq->dmem.base;
Sunil Gouthamb9687b42015-12-10 13:25:20 +0530316 cq->thresh = pass1_silicon(nic->pdev) ? 0 : CMP_QUEUE_CQE_THRESH;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700317 nic->cq_coalesce_usecs = (CMP_QUEUE_TIMER_THRESH * 0.05) - 1;
318
319 return 0;
320}
321
322static void nicvf_free_cmp_queue(struct nicvf *nic, struct cmp_queue *cq)
323{
324 if (!cq)
325 return;
326 if (!cq->dmem.base)
327 return;
328
329 nicvf_free_q_desc_mem(nic, &cq->dmem);
330}
331
332/* Initialize transmit queue */
333static int nicvf_init_snd_queue(struct nicvf *nic,
334 struct snd_queue *sq, int q_len)
335{
336 int err;
337
338 err = nicvf_alloc_q_desc_mem(nic, &sq->dmem, q_len, SND_QUEUE_DESC_SIZE,
339 NICVF_SQ_BASE_ALIGN_BYTES);
340 if (err)
341 return err;
342
343 sq->desc = sq->dmem.base;
Aleksey Makarov86ace692015-06-02 11:00:27 -0700344 sq->skbuff = kcalloc(q_len, sizeof(u64), GFP_KERNEL);
Aleksey Makarovfa1a6c92015-06-02 11:00:26 -0700345 if (!sq->skbuff)
346 return -ENOMEM;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700347 sq->head = 0;
348 sq->tail = 0;
349 atomic_set(&sq->free_cnt, q_len - 1);
350 sq->thresh = SND_QUEUE_THRESH;
351
352 /* Preallocate memory for TSO segment's header */
353 sq->tso_hdrs = dma_alloc_coherent(&nic->pdev->dev,
354 q_len * TSO_HEADER_SIZE,
355 &sq->tso_hdrs_phys, GFP_KERNEL);
356 if (!sq->tso_hdrs)
357 return -ENOMEM;
358
359 return 0;
360}
361
362static void nicvf_free_snd_queue(struct nicvf *nic, struct snd_queue *sq)
363{
364 if (!sq)
365 return;
366 if (!sq->dmem.base)
367 return;
368
369 if (sq->tso_hdrs)
Sunil Goutham143ceb02015-07-29 16:49:37 +0300370 dma_free_coherent(&nic->pdev->dev,
371 sq->dmem.q_len * TSO_HEADER_SIZE,
Sunil Goutham4863dea2015-05-26 19:20:15 -0700372 sq->tso_hdrs, sq->tso_hdrs_phys);
373
374 kfree(sq->skbuff);
375 nicvf_free_q_desc_mem(nic, &sq->dmem);
376}
377
378static void nicvf_reclaim_snd_queue(struct nicvf *nic,
379 struct queue_set *qs, int qidx)
380{
381 /* Disable send queue */
382 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, 0);
383 /* Check if SQ is stopped */
384 if (nicvf_poll_reg(nic, qidx, NIC_QSET_SQ_0_7_STATUS, 21, 1, 0x01))
385 return;
386 /* Reset send queue */
387 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, NICVF_SQ_RESET);
388}
389
390static void nicvf_reclaim_rcv_queue(struct nicvf *nic,
391 struct queue_set *qs, int qidx)
392{
393 union nic_mbx mbx = {};
394
395 /* Make sure all packets in the pipeline are written back into mem */
396 mbx.msg.msg = NIC_MBOX_MSG_RQ_SW_SYNC;
397 nicvf_send_msg_to_pf(nic, &mbx);
398}
399
400static void nicvf_reclaim_cmp_queue(struct nicvf *nic,
401 struct queue_set *qs, int qidx)
402{
403 /* Disable timer threshold (doesn't get reset upon CQ reset */
404 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG2, qidx, 0);
405 /* Disable completion queue */
406 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG, qidx, 0);
407 /* Reset completion queue */
408 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG, qidx, NICVF_CQ_RESET);
409}
410
411static void nicvf_reclaim_rbdr(struct nicvf *nic,
412 struct rbdr *rbdr, int qidx)
413{
414 u64 tmp, fifo_state;
415 int timeout = 10;
416
417 /* Save head and tail pointers for feeing up buffers */
418 rbdr->head = nicvf_queue_reg_read(nic,
419 NIC_QSET_RBDR_0_1_HEAD,
420 qidx) >> 3;
421 rbdr->tail = nicvf_queue_reg_read(nic,
422 NIC_QSET_RBDR_0_1_TAIL,
423 qidx) >> 3;
424
425 /* If RBDR FIFO is in 'FAIL' state then do a reset first
426 * before relaiming.
427 */
428 fifo_state = nicvf_queue_reg_read(nic, NIC_QSET_RBDR_0_1_STATUS0, qidx);
429 if (((fifo_state >> 62) & 0x03) == 0x3)
430 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_CFG,
431 qidx, NICVF_RBDR_RESET);
432
433 /* Disable RBDR */
434 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_CFG, qidx, 0);
435 if (nicvf_poll_reg(nic, qidx, NIC_QSET_RBDR_0_1_STATUS0, 62, 2, 0x00))
436 return;
437 while (1) {
438 tmp = nicvf_queue_reg_read(nic,
439 NIC_QSET_RBDR_0_1_PREFETCH_STATUS,
440 qidx);
441 if ((tmp & 0xFFFFFFFF) == ((tmp >> 32) & 0xFFFFFFFF))
442 break;
443 usleep_range(1000, 2000);
444 timeout--;
445 if (!timeout) {
446 netdev_err(nic->netdev,
447 "Failed polling on prefetch status\n");
448 return;
449 }
450 }
451 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_CFG,
452 qidx, NICVF_RBDR_RESET);
453
454 if (nicvf_poll_reg(nic, qidx, NIC_QSET_RBDR_0_1_STATUS0, 62, 2, 0x02))
455 return;
456 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_CFG, qidx, 0x00);
457 if (nicvf_poll_reg(nic, qidx, NIC_QSET_RBDR_0_1_STATUS0, 62, 2, 0x00))
458 return;
459}
460
Sunil Gouthamaa2e2592015-08-30 12:29:13 +0300461void nicvf_config_vlan_stripping(struct nicvf *nic, netdev_features_t features)
462{
463 u64 rq_cfg;
464 int sqs;
465
466 rq_cfg = nicvf_queue_reg_read(nic, NIC_QSET_RQ_GEN_CFG, 0);
467
468 /* Enable first VLAN stripping */
469 if (features & NETIF_F_HW_VLAN_CTAG_RX)
470 rq_cfg |= (1ULL << 25);
471 else
472 rq_cfg &= ~(1ULL << 25);
473 nicvf_queue_reg_write(nic, NIC_QSET_RQ_GEN_CFG, 0, rq_cfg);
474
475 /* Configure Secondary Qsets, if any */
476 for (sqs = 0; sqs < nic->sqs_count; sqs++)
477 if (nic->snicvf[sqs])
478 nicvf_queue_reg_write(nic->snicvf[sqs],
479 NIC_QSET_RQ_GEN_CFG, 0, rq_cfg);
480}
481
Jerin Jacob3458c402016-08-12 16:51:39 +0530482static void nicvf_reset_rcv_queue_stats(struct nicvf *nic)
483{
484 union nic_mbx mbx = {};
485
486 /* Reset all RXQ's stats */
487 mbx.reset_stat.msg = NIC_MBOX_MSG_RESET_STAT_COUNTER;
488 mbx.reset_stat.rq_stat_mask = 0xFFFF;
489 nicvf_send_msg_to_pf(nic, &mbx);
490}
491
Sunil Goutham4863dea2015-05-26 19:20:15 -0700492/* Configures receive queue */
493static void nicvf_rcv_queue_config(struct nicvf *nic, struct queue_set *qs,
494 int qidx, bool enable)
495{
496 union nic_mbx mbx = {};
497 struct rcv_queue *rq;
498 struct rq_cfg rq_cfg;
499
500 rq = &qs->rq[qidx];
501 rq->enable = enable;
502
503 /* Disable receive queue */
504 nicvf_queue_reg_write(nic, NIC_QSET_RQ_0_7_CFG, qidx, 0);
505
506 if (!rq->enable) {
507 nicvf_reclaim_rcv_queue(nic, qs, qidx);
508 return;
509 }
510
511 rq->cq_qs = qs->vnic_id;
512 rq->cq_idx = qidx;
513 rq->start_rbdr_qs = qs->vnic_id;
514 rq->start_qs_rbdr_idx = qs->rbdr_cnt - 1;
515 rq->cont_rbdr_qs = qs->vnic_id;
516 rq->cont_qs_rbdr_idx = qs->rbdr_cnt - 1;
517 /* all writes of RBDR data to be loaded into L2 Cache as well*/
518 rq->caching = 1;
519
520 /* Send a mailbox msg to PF to config RQ */
521 mbx.rq.msg = NIC_MBOX_MSG_RQ_CFG;
522 mbx.rq.qs_num = qs->vnic_id;
523 mbx.rq.rq_num = qidx;
524 mbx.rq.cfg = (rq->caching << 26) | (rq->cq_qs << 19) |
525 (rq->cq_idx << 16) | (rq->cont_rbdr_qs << 9) |
526 (rq->cont_qs_rbdr_idx << 8) |
527 (rq->start_rbdr_qs << 1) | (rq->start_qs_rbdr_idx);
528 nicvf_send_msg_to_pf(nic, &mbx);
529
530 mbx.rq.msg = NIC_MBOX_MSG_RQ_BP_CFG;
531 mbx.rq.cfg = (1ULL << 63) | (1ULL << 62) | (qs->vnic_id << 0);
532 nicvf_send_msg_to_pf(nic, &mbx);
533
534 /* RQ drop config
535 * Enable CQ drop to reserve sufficient CQEs for all tx packets
536 */
537 mbx.rq.msg = NIC_MBOX_MSG_RQ_DROP_CFG;
538 mbx.rq.cfg = (1ULL << 62) | (RQ_CQ_DROP << 8);
539 nicvf_send_msg_to_pf(nic, &mbx);
540
Sunil Gouthamaa2e2592015-08-30 12:29:13 +0300541 nicvf_queue_reg_write(nic, NIC_QSET_RQ_GEN_CFG, 0, 0x00);
542 if (!nic->sqs_mode)
543 nicvf_config_vlan_stripping(nic, nic->netdev->features);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700544
545 /* Enable Receive queue */
xypron.glpk@gmx.de161de2c2016-05-09 00:46:18 +0200546 memset(&rq_cfg, 0, sizeof(struct rq_cfg));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700547 rq_cfg.ena = 1;
548 rq_cfg.tcp_ena = 0;
549 nicvf_queue_reg_write(nic, NIC_QSET_RQ_0_7_CFG, qidx, *(u64 *)&rq_cfg);
550}
551
552/* Configures completion queue */
553void nicvf_cmp_queue_config(struct nicvf *nic, struct queue_set *qs,
554 int qidx, bool enable)
555{
556 struct cmp_queue *cq;
557 struct cq_cfg cq_cfg;
558
559 cq = &qs->cq[qidx];
560 cq->enable = enable;
561
562 if (!cq->enable) {
563 nicvf_reclaim_cmp_queue(nic, qs, qidx);
564 return;
565 }
566
567 /* Reset completion queue */
568 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG, qidx, NICVF_CQ_RESET);
569
570 if (!cq->enable)
571 return;
572
573 spin_lock_init(&cq->lock);
574 /* Set completion queue base address */
575 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_BASE,
576 qidx, (u64)(cq->dmem.phys_base));
577
578 /* Enable Completion queue */
xypron.glpk@gmx.de161de2c2016-05-09 00:46:18 +0200579 memset(&cq_cfg, 0, sizeof(struct cq_cfg));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700580 cq_cfg.ena = 1;
581 cq_cfg.reset = 0;
582 cq_cfg.caching = 0;
583 cq_cfg.qsize = CMP_QSIZE;
584 cq_cfg.avg_con = 0;
585 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG, qidx, *(u64 *)&cq_cfg);
586
587 /* Set threshold value for interrupt generation */
588 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_THRESH, qidx, cq->thresh);
589 nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_CFG2,
Sunil Goutham006394a2015-12-02 15:36:15 +0530590 qidx, CMP_QUEUE_TIMER_THRESH);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700591}
592
593/* Configures transmit queue */
594static void nicvf_snd_queue_config(struct nicvf *nic, struct queue_set *qs,
595 int qidx, bool enable)
596{
597 union nic_mbx mbx = {};
598 struct snd_queue *sq;
599 struct sq_cfg sq_cfg;
600
601 sq = &qs->sq[qidx];
602 sq->enable = enable;
603
604 if (!sq->enable) {
605 nicvf_reclaim_snd_queue(nic, qs, qidx);
606 return;
607 }
608
609 /* Reset send queue */
610 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, NICVF_SQ_RESET);
611
612 sq->cq_qs = qs->vnic_id;
613 sq->cq_idx = qidx;
614
615 /* Send a mailbox msg to PF to config SQ */
616 mbx.sq.msg = NIC_MBOX_MSG_SQ_CFG;
617 mbx.sq.qs_num = qs->vnic_id;
618 mbx.sq.sq_num = qidx;
Sunil Goutham92dc8762015-08-30 12:29:15 +0300619 mbx.sq.sqs_mode = nic->sqs_mode;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700620 mbx.sq.cfg = (sq->cq_qs << 3) | sq->cq_idx;
621 nicvf_send_msg_to_pf(nic, &mbx);
622
623 /* Set queue base address */
624 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_BASE,
625 qidx, (u64)(sq->dmem.phys_base));
626
627 /* Enable send queue & set queue size */
xypron.glpk@gmx.de161de2c2016-05-09 00:46:18 +0200628 memset(&sq_cfg, 0, sizeof(struct sq_cfg));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700629 sq_cfg.ena = 1;
630 sq_cfg.reset = 0;
631 sq_cfg.ldwb = 0;
632 sq_cfg.qsize = SND_QSIZE;
633 sq_cfg.tstmp_bgx_intf = 0;
634 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, *(u64 *)&sq_cfg);
635
636 /* Set threshold value for interrupt generation */
637 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_THRESH, qidx, sq->thresh);
638
639 /* Set queue:cpu affinity for better load distribution */
640 if (cpu_online(qidx)) {
641 cpumask_set_cpu(qidx, &sq->affinity_mask);
642 netif_set_xps_queue(nic->netdev,
643 &sq->affinity_mask, qidx);
644 }
645}
646
647/* Configures receive buffer descriptor ring */
648static void nicvf_rbdr_config(struct nicvf *nic, struct queue_set *qs,
649 int qidx, bool enable)
650{
651 struct rbdr *rbdr;
652 struct rbdr_cfg rbdr_cfg;
653
654 rbdr = &qs->rbdr[qidx];
655 nicvf_reclaim_rbdr(nic, rbdr, qidx);
656 if (!enable)
657 return;
658
659 /* Set descriptor base address */
660 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_BASE,
661 qidx, (u64)(rbdr->dmem.phys_base));
662
663 /* Enable RBDR & set queue size */
664 /* Buffer size should be in multiples of 128 bytes */
xypron.glpk@gmx.de161de2c2016-05-09 00:46:18 +0200665 memset(&rbdr_cfg, 0, sizeof(struct rbdr_cfg));
Sunil Goutham4863dea2015-05-26 19:20:15 -0700666 rbdr_cfg.ena = 1;
667 rbdr_cfg.reset = 0;
668 rbdr_cfg.ldwb = 0;
669 rbdr_cfg.qsize = RBDR_SIZE;
670 rbdr_cfg.avg_con = 0;
671 rbdr_cfg.lines = rbdr->dma_size / 128;
672 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_CFG,
673 qidx, *(u64 *)&rbdr_cfg);
674
675 /* Notify HW */
676 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_DOOR,
677 qidx, qs->rbdr_len - 1);
678
679 /* Set threshold value for interrupt generation */
680 nicvf_queue_reg_write(nic, NIC_QSET_RBDR_0_1_THRESH,
681 qidx, rbdr->thresh - 1);
682}
683
684/* Requests PF to assign and enable Qset */
685void nicvf_qset_config(struct nicvf *nic, bool enable)
686{
687 union nic_mbx mbx = {};
688 struct queue_set *qs = nic->qs;
689 struct qs_cfg *qs_cfg;
690
691 if (!qs) {
692 netdev_warn(nic->netdev,
693 "Qset is still not allocated, don't init queues\n");
694 return;
695 }
696
697 qs->enable = enable;
698 qs->vnic_id = nic->vf_id;
699
700 /* Send a mailbox msg to PF to config Qset */
701 mbx.qs.msg = NIC_MBOX_MSG_QS_CFG;
702 mbx.qs.num = qs->vnic_id;
Sunil Goutham92dc8762015-08-30 12:29:15 +0300703 mbx.qs.sqs_count = nic->sqs_count;
Sunil Goutham4863dea2015-05-26 19:20:15 -0700704
705 mbx.qs.cfg = 0;
706 qs_cfg = (struct qs_cfg *)&mbx.qs.cfg;
707 if (qs->enable) {
708 qs_cfg->ena = 1;
709#ifdef __BIG_ENDIAN
710 qs_cfg->be = 1;
711#endif
712 qs_cfg->vnic = qs->vnic_id;
713 }
714 nicvf_send_msg_to_pf(nic, &mbx);
715}
716
717static void nicvf_free_resources(struct nicvf *nic)
718{
719 int qidx;
720 struct queue_set *qs = nic->qs;
721
722 /* Free receive buffer descriptor ring */
723 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++)
724 nicvf_free_rbdr(nic, &qs->rbdr[qidx]);
725
726 /* Free completion queue */
727 for (qidx = 0; qidx < qs->cq_cnt; qidx++)
728 nicvf_free_cmp_queue(nic, &qs->cq[qidx]);
729
730 /* Free send queue */
731 for (qidx = 0; qidx < qs->sq_cnt; qidx++)
732 nicvf_free_snd_queue(nic, &qs->sq[qidx]);
733}
734
735static int nicvf_alloc_resources(struct nicvf *nic)
736{
737 int qidx;
738 struct queue_set *qs = nic->qs;
739
740 /* Alloc receive buffer descriptor ring */
741 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++) {
742 if (nicvf_init_rbdr(nic, &qs->rbdr[qidx], qs->rbdr_len,
743 DMA_BUFFER_LEN))
744 goto alloc_fail;
745 }
746
747 /* Alloc send queue */
748 for (qidx = 0; qidx < qs->sq_cnt; qidx++) {
749 if (nicvf_init_snd_queue(nic, &qs->sq[qidx], qs->sq_len))
750 goto alloc_fail;
751 }
752
753 /* Alloc completion queue */
754 for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
755 if (nicvf_init_cmp_queue(nic, &qs->cq[qidx], qs->cq_len))
756 goto alloc_fail;
757 }
758
759 return 0;
760alloc_fail:
761 nicvf_free_resources(nic);
762 return -ENOMEM;
763}
764
765int nicvf_set_qset_resources(struct nicvf *nic)
766{
767 struct queue_set *qs;
768
769 qs = devm_kzalloc(&nic->pdev->dev, sizeof(*qs), GFP_KERNEL);
770 if (!qs)
771 return -ENOMEM;
772 nic->qs = qs;
773
774 /* Set count of each queue */
Sunil Goutham3a397eb2016-08-12 16:51:27 +0530775 qs->rbdr_cnt = DEFAULT_RBDR_CNT;
776 qs->rq_cnt = min_t(u8, MAX_RCV_QUEUES_PER_QS, num_online_cpus());
777 qs->sq_cnt = min_t(u8, MAX_SND_QUEUES_PER_QS, num_online_cpus());
778 qs->cq_cnt = max_t(u8, qs->rq_cnt, qs->sq_cnt);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700779
780 /* Set queue lengths */
781 qs->rbdr_len = RCV_BUF_COUNT;
782 qs->sq_len = SND_QUEUE_LEN;
783 qs->cq_len = CMP_QUEUE_LEN;
Sunil Goutham92dc8762015-08-30 12:29:15 +0300784
785 nic->rx_queues = qs->rq_cnt;
786 nic->tx_queues = qs->sq_cnt;
787
Sunil Goutham4863dea2015-05-26 19:20:15 -0700788 return 0;
789}
790
791int nicvf_config_data_transfer(struct nicvf *nic, bool enable)
792{
793 bool disable = false;
794 struct queue_set *qs = nic->qs;
795 int qidx;
796
797 if (!qs)
798 return 0;
799
800 if (enable) {
801 if (nicvf_alloc_resources(nic))
802 return -ENOMEM;
803
804 for (qidx = 0; qidx < qs->sq_cnt; qidx++)
805 nicvf_snd_queue_config(nic, qs, qidx, enable);
806 for (qidx = 0; qidx < qs->cq_cnt; qidx++)
807 nicvf_cmp_queue_config(nic, qs, qidx, enable);
808 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++)
809 nicvf_rbdr_config(nic, qs, qidx, enable);
810 for (qidx = 0; qidx < qs->rq_cnt; qidx++)
811 nicvf_rcv_queue_config(nic, qs, qidx, enable);
812 } else {
813 for (qidx = 0; qidx < qs->rq_cnt; qidx++)
814 nicvf_rcv_queue_config(nic, qs, qidx, disable);
815 for (qidx = 0; qidx < qs->rbdr_cnt; qidx++)
816 nicvf_rbdr_config(nic, qs, qidx, disable);
817 for (qidx = 0; qidx < qs->sq_cnt; qidx++)
818 nicvf_snd_queue_config(nic, qs, qidx, disable);
819 for (qidx = 0; qidx < qs->cq_cnt; qidx++)
820 nicvf_cmp_queue_config(nic, qs, qidx, disable);
821
822 nicvf_free_resources(nic);
823 }
824
Jerin Jacob3458c402016-08-12 16:51:39 +0530825 /* Reset RXQ's stats.
826 * SQ's stats will get reset automatically once SQ is reset.
827 */
828 nicvf_reset_rcv_queue_stats(nic);
829
Sunil Goutham4863dea2015-05-26 19:20:15 -0700830 return 0;
831}
832
833/* Get a free desc from SQ
834 * returns descriptor ponter & descriptor number
835 */
836static inline int nicvf_get_sq_desc(struct snd_queue *sq, int desc_cnt)
837{
838 int qentry;
839
840 qentry = sq->tail;
841 atomic_sub(desc_cnt, &sq->free_cnt);
842 sq->tail += desc_cnt;
843 sq->tail &= (sq->dmem.q_len - 1);
844
845 return qentry;
846}
847
848/* Free descriptor back to SQ for future use */
849void nicvf_put_sq_desc(struct snd_queue *sq, int desc_cnt)
850{
851 atomic_add(desc_cnt, &sq->free_cnt);
852 sq->head += desc_cnt;
853 sq->head &= (sq->dmem.q_len - 1);
854}
855
856static inline int nicvf_get_nxt_sqentry(struct snd_queue *sq, int qentry)
857{
858 qentry++;
859 qentry &= (sq->dmem.q_len - 1);
860 return qentry;
861}
862
863void nicvf_sq_enable(struct nicvf *nic, struct snd_queue *sq, int qidx)
864{
865 u64 sq_cfg;
866
867 sq_cfg = nicvf_queue_reg_read(nic, NIC_QSET_SQ_0_7_CFG, qidx);
868 sq_cfg |= NICVF_SQ_EN;
869 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, sq_cfg);
870 /* Ring doorbell so that H/W restarts processing SQEs */
871 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_DOOR, qidx, 0);
872}
873
874void nicvf_sq_disable(struct nicvf *nic, int qidx)
875{
876 u64 sq_cfg;
877
878 sq_cfg = nicvf_queue_reg_read(nic, NIC_QSET_SQ_0_7_CFG, qidx);
879 sq_cfg &= ~NICVF_SQ_EN;
880 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_CFG, qidx, sq_cfg);
881}
882
883void nicvf_sq_free_used_descs(struct net_device *netdev, struct snd_queue *sq,
884 int qidx)
885{
886 u64 head, tail;
887 struct sk_buff *skb;
888 struct nicvf *nic = netdev_priv(netdev);
889 struct sq_hdr_subdesc *hdr;
890
891 head = nicvf_queue_reg_read(nic, NIC_QSET_SQ_0_7_HEAD, qidx) >> 4;
892 tail = nicvf_queue_reg_read(nic, NIC_QSET_SQ_0_7_TAIL, qidx) >> 4;
893 while (sq->head != head) {
894 hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, sq->head);
895 if (hdr->subdesc_type != SQ_DESC_TYPE_HEADER) {
896 nicvf_put_sq_desc(sq, 1);
897 continue;
898 }
899 skb = (struct sk_buff *)sq->skbuff[sq->head];
Sunil Goutham143ceb02015-07-29 16:49:37 +0300900 if (skb)
901 dev_kfree_skb_any(skb);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700902 atomic64_add(1, (atomic64_t *)&netdev->stats.tx_packets);
903 atomic64_add(hdr->tot_len,
904 (atomic64_t *)&netdev->stats.tx_bytes);
Sunil Goutham4863dea2015-05-26 19:20:15 -0700905 nicvf_put_sq_desc(sq, hdr->subdesc_cnt + 1);
906 }
907}
908
909/* Calculate no of SQ subdescriptors needed to transmit all
910 * segments of this TSO packet.
911 * Taken from 'Tilera network driver' with a minor modification.
912 */
913static int nicvf_tso_count_subdescs(struct sk_buff *skb)
914{
915 struct skb_shared_info *sh = skb_shinfo(skb);
916 unsigned int sh_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
917 unsigned int data_len = skb->len - sh_len;
918 unsigned int p_len = sh->gso_size;
919 long f_id = -1; /* id of the current fragment */
920 long f_size = skb_headlen(skb) - sh_len; /* current fragment size */
921 long f_used = 0; /* bytes used from the current fragment */
922 long n; /* size of the current piece of payload */
923 int num_edescs = 0;
924 int segment;
925
926 for (segment = 0; segment < sh->gso_segs; segment++) {
927 unsigned int p_used = 0;
928
929 /* One edesc for header and for each piece of the payload. */
930 for (num_edescs++; p_used < p_len; num_edescs++) {
931 /* Advance as needed. */
932 while (f_used >= f_size) {
933 f_id++;
934 f_size = skb_frag_size(&sh->frags[f_id]);
935 f_used = 0;
936 }
937
938 /* Use bytes from the current fragment. */
939 n = p_len - p_used;
940 if (n > f_size - f_used)
941 n = f_size - f_used;
942 f_used += n;
943 p_used += n;
944 }
945
946 /* The last segment may be less than gso_size. */
947 data_len -= p_len;
948 if (data_len < p_len)
949 p_len = data_len;
950 }
951
952 /* '+ gso_segs' for SQ_HDR_SUDESCs for each segment */
953 return num_edescs + sh->gso_segs;
954}
955
956/* Get the number of SQ descriptors needed to xmit this skb */
957static int nicvf_sq_subdesc_required(struct nicvf *nic, struct sk_buff *skb)
958{
959 int subdesc_cnt = MIN_SQ_DESC_PER_PKT_XMIT;
960
Sunil Goutham40fb5f82015-12-10 13:25:19 +0530961 if (skb_shinfo(skb)->gso_size && !nic->hw_tso) {
Sunil Goutham4863dea2015-05-26 19:20:15 -0700962 subdesc_cnt = nicvf_tso_count_subdescs(skb);
963 return subdesc_cnt;
964 }
965
966 if (skb_shinfo(skb)->nr_frags)
967 subdesc_cnt += skb_shinfo(skb)->nr_frags;
968
969 return subdesc_cnt;
970}
971
972/* Add SQ HEADER subdescriptor.
973 * First subdescriptor for every send descriptor.
974 */
975static inline void
Sunil Goutham40fb5f82015-12-10 13:25:19 +0530976nicvf_sq_add_hdr_subdesc(struct nicvf *nic, struct snd_queue *sq, int qentry,
Sunil Goutham4863dea2015-05-26 19:20:15 -0700977 int subdesc_cnt, struct sk_buff *skb, int len)
978{
979 int proto;
980 struct sq_hdr_subdesc *hdr;
981
982 hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, qentry);
983 sq->skbuff[qentry] = (u64)skb;
984
985 memset(hdr, 0, SND_QUEUE_DESC_SIZE);
986 hdr->subdesc_type = SQ_DESC_TYPE_HEADER;
987 /* Enable notification via CQE after processing SQE */
988 hdr->post_cqe = 1;
989 /* No of subdescriptors following this */
990 hdr->subdesc_cnt = subdesc_cnt;
991 hdr->tot_len = len;
992
993 /* Offload checksum calculation to HW */
994 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Sunil Goutham4863dea2015-05-26 19:20:15 -0700995 hdr->csum_l3 = 1; /* Enable IP csum calculation */
996 hdr->l3_offset = skb_network_offset(skb);
997 hdr->l4_offset = skb_transport_offset(skb);
998
999 proto = ip_hdr(skb)->protocol;
1000 switch (proto) {
1001 case IPPROTO_TCP:
1002 hdr->csum_l4 = SEND_L4_CSUM_TCP;
1003 break;
1004 case IPPROTO_UDP:
1005 hdr->csum_l4 = SEND_L4_CSUM_UDP;
1006 break;
1007 case IPPROTO_SCTP:
1008 hdr->csum_l4 = SEND_L4_CSUM_SCTP;
1009 break;
1010 }
1011 }
Sunil Goutham40fb5f82015-12-10 13:25:19 +05301012
1013 if (nic->hw_tso && skb_shinfo(skb)->gso_size) {
1014 hdr->tso = 1;
1015 hdr->tso_start = skb_transport_offset(skb) + tcp_hdrlen(skb);
1016 hdr->tso_max_paysize = skb_shinfo(skb)->gso_size;
1017 /* For non-tunneled pkts, point this to L2 ethertype */
1018 hdr->inner_l3_offset = skb_network_offset(skb) - 2;
1019 nic->drv_stats.tx_tso++;
1020 }
Sunil Goutham4863dea2015-05-26 19:20:15 -07001021}
1022
1023/* SQ GATHER subdescriptor
1024 * Must follow HDR descriptor
1025 */
1026static inline void nicvf_sq_add_gather_subdesc(struct snd_queue *sq, int qentry,
1027 int size, u64 data)
1028{
1029 struct sq_gather_subdesc *gather;
1030
1031 qentry &= (sq->dmem.q_len - 1);
1032 gather = (struct sq_gather_subdesc *)GET_SQ_DESC(sq, qentry);
1033
1034 memset(gather, 0, SND_QUEUE_DESC_SIZE);
1035 gather->subdesc_type = SQ_DESC_TYPE_GATHER;
Sunil Goutham4b561c12015-07-29 16:49:36 +03001036 gather->ld_type = NIC_SEND_LD_TYPE_E_LDD;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001037 gather->size = size;
1038 gather->addr = data;
1039}
1040
1041/* Segment a TSO packet into 'gso_size' segments and append
1042 * them to SQ for transfer
1043 */
1044static int nicvf_sq_append_tso(struct nicvf *nic, struct snd_queue *sq,
Sunil Goutham92dc8762015-08-30 12:29:15 +03001045 int sq_num, int qentry, struct sk_buff *skb)
Sunil Goutham4863dea2015-05-26 19:20:15 -07001046{
1047 struct tso_t tso;
1048 int seg_subdescs = 0, desc_cnt = 0;
1049 int seg_len, total_len, data_left;
1050 int hdr_qentry = qentry;
1051 int hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
1052
1053 tso_start(skb, &tso);
1054 total_len = skb->len - hdr_len;
1055 while (total_len > 0) {
1056 char *hdr;
1057
1058 /* Save Qentry for adding HDR_SUBDESC at the end */
1059 hdr_qentry = qentry;
1060
1061 data_left = min_t(int, skb_shinfo(skb)->gso_size, total_len);
1062 total_len -= data_left;
1063
1064 /* Add segment's header */
1065 qentry = nicvf_get_nxt_sqentry(sq, qentry);
1066 hdr = sq->tso_hdrs + qentry * TSO_HEADER_SIZE;
1067 tso_build_hdr(skb, hdr, &tso, data_left, total_len == 0);
1068 nicvf_sq_add_gather_subdesc(sq, qentry, hdr_len,
1069 sq->tso_hdrs_phys +
1070 qentry * TSO_HEADER_SIZE);
1071 /* HDR_SUDESC + GATHER */
1072 seg_subdescs = 2;
1073 seg_len = hdr_len;
1074
1075 /* Add segment's payload fragments */
1076 while (data_left > 0) {
1077 int size;
1078
1079 size = min_t(int, tso.size, data_left);
1080
1081 qentry = nicvf_get_nxt_sqentry(sq, qentry);
1082 nicvf_sq_add_gather_subdesc(sq, qentry, size,
1083 virt_to_phys(tso.data));
1084 seg_subdescs++;
1085 seg_len += size;
1086
1087 data_left -= size;
1088 tso_build_data(skb, &tso, size);
1089 }
Sunil Goutham40fb5f82015-12-10 13:25:19 +05301090 nicvf_sq_add_hdr_subdesc(nic, sq, hdr_qentry,
Sunil Goutham4863dea2015-05-26 19:20:15 -07001091 seg_subdescs - 1, skb, seg_len);
Sunil Goutham143ceb02015-07-29 16:49:37 +03001092 sq->skbuff[hdr_qentry] = (u64)NULL;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001093 qentry = nicvf_get_nxt_sqentry(sq, qentry);
1094
1095 desc_cnt += seg_subdescs;
1096 }
1097 /* Save SKB in the last segment for freeing */
1098 sq->skbuff[hdr_qentry] = (u64)skb;
1099
1100 /* make sure all memory stores are done before ringing doorbell */
1101 smp_wmb();
1102
1103 /* Inform HW to xmit all TSO segments */
1104 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_DOOR,
Sunil Goutham92dc8762015-08-30 12:29:15 +03001105 sq_num, desc_cnt);
Sunil Goutham2cb468e2015-07-29 16:49:40 +03001106 nic->drv_stats.tx_tso++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001107 return 1;
1108}
1109
1110/* Append an skb to a SQ for packet transfer. */
1111int nicvf_sq_append_skb(struct nicvf *nic, struct sk_buff *skb)
1112{
1113 int i, size;
1114 int subdesc_cnt;
1115 int sq_num, qentry;
Sunil Goutham92dc8762015-08-30 12:29:15 +03001116 struct queue_set *qs;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001117 struct snd_queue *sq;
1118
1119 sq_num = skb_get_queue_mapping(skb);
Sunil Goutham92dc8762015-08-30 12:29:15 +03001120 if (sq_num >= MAX_SND_QUEUES_PER_QS) {
1121 /* Get secondary Qset's SQ structure */
1122 i = sq_num / MAX_SND_QUEUES_PER_QS;
1123 if (!nic->snicvf[i - 1]) {
1124 netdev_warn(nic->netdev,
1125 "Secondary Qset#%d's ptr not initialized\n",
1126 i - 1);
1127 return 1;
1128 }
1129 nic = (struct nicvf *)nic->snicvf[i - 1];
1130 sq_num = sq_num % MAX_SND_QUEUES_PER_QS;
1131 }
1132
1133 qs = nic->qs;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001134 sq = &qs->sq[sq_num];
1135
1136 subdesc_cnt = nicvf_sq_subdesc_required(nic, skb);
1137 if (subdesc_cnt > atomic_read(&sq->free_cnt))
1138 goto append_fail;
1139
1140 qentry = nicvf_get_sq_desc(sq, subdesc_cnt);
1141
1142 /* Check if its a TSO packet */
Sunil Goutham40fb5f82015-12-10 13:25:19 +05301143 if (skb_shinfo(skb)->gso_size && !nic->hw_tso)
Sunil Goutham92dc8762015-08-30 12:29:15 +03001144 return nicvf_sq_append_tso(nic, sq, sq_num, qentry, skb);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001145
1146 /* Add SQ header subdesc */
Sunil Goutham40fb5f82015-12-10 13:25:19 +05301147 nicvf_sq_add_hdr_subdesc(nic, sq, qentry, subdesc_cnt - 1,
1148 skb, skb->len);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001149
1150 /* Add SQ gather subdescs */
1151 qentry = nicvf_get_nxt_sqentry(sq, qentry);
1152 size = skb_is_nonlinear(skb) ? skb_headlen(skb) : skb->len;
1153 nicvf_sq_add_gather_subdesc(sq, qentry, size, virt_to_phys(skb->data));
1154
1155 /* Check for scattered buffer */
1156 if (!skb_is_nonlinear(skb))
1157 goto doorbell;
1158
1159 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1160 const struct skb_frag_struct *frag;
1161
1162 frag = &skb_shinfo(skb)->frags[i];
1163
1164 qentry = nicvf_get_nxt_sqentry(sq, qentry);
1165 size = skb_frag_size(frag);
1166 nicvf_sq_add_gather_subdesc(sq, qentry, size,
1167 virt_to_phys(
1168 skb_frag_address(frag)));
1169 }
1170
1171doorbell:
1172 /* make sure all memory stores are done before ringing doorbell */
1173 smp_wmb();
1174
1175 /* Inform HW to xmit new packet */
1176 nicvf_queue_reg_write(nic, NIC_QSET_SQ_0_7_DOOR,
1177 sq_num, subdesc_cnt);
1178 return 1;
1179
1180append_fail:
Sunil Goutham92dc8762015-08-30 12:29:15 +03001181 /* Use original PCI dev for debug log */
1182 nic = nic->pnicvf;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001183 netdev_dbg(nic->netdev, "Not enough SQ descriptors to xmit pkt\n");
1184 return 0;
1185}
1186
1187static inline unsigned frag_num(unsigned i)
1188{
1189#ifdef __BIG_ENDIAN
1190 return (i & ~3) + 3 - (i & 3);
1191#else
1192 return i;
1193#endif
1194}
1195
1196/* Returns SKB for a received packet */
1197struct sk_buff *nicvf_get_rcv_skb(struct nicvf *nic, struct cqe_rx_t *cqe_rx)
1198{
1199 int frag;
1200 int payload_len = 0;
1201 struct sk_buff *skb = NULL;
Sunil Gouthama8671ac2016-08-12 16:51:37 +05301202 struct page *page;
1203 int offset;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001204 u16 *rb_lens = NULL;
1205 u64 *rb_ptrs = NULL;
1206
1207 rb_lens = (void *)cqe_rx + (3 * sizeof(u64));
Sunil Goutham02a72bd2016-08-12 16:51:28 +05301208 /* Except 88xx pass1 on all other chips CQE_RX2_S is added to
1209 * CQE_RX at word6, hence buffer pointers move by word
1210 *
1211 * Use existing 'hw_tso' flag which will be set for all chips
1212 * except 88xx pass1 instead of a additional cache line
1213 * access (or miss) by using pci dev's revision.
1214 */
1215 if (!nic->hw_tso)
1216 rb_ptrs = (void *)cqe_rx + (6 * sizeof(u64));
1217 else
1218 rb_ptrs = (void *)cqe_rx + (7 * sizeof(u64));
Sunil Goutham4863dea2015-05-26 19:20:15 -07001219
1220 netdev_dbg(nic->netdev, "%s rb_cnt %d rb0_ptr %llx rb0_sz %d\n",
1221 __func__, cqe_rx->rb_cnt, cqe_rx->rb0_ptr, cqe_rx->rb0_sz);
1222
1223 for (frag = 0; frag < cqe_rx->rb_cnt; frag++) {
1224 payload_len = rb_lens[frag_num(frag)];
1225 if (!frag) {
1226 /* First fragment */
1227 skb = nicvf_rb_ptr_to_skb(nic,
1228 *rb_ptrs - cqe_rx->align_pad,
1229 payload_len);
1230 if (!skb)
1231 return NULL;
1232 skb_reserve(skb, cqe_rx->align_pad);
1233 skb_put(skb, payload_len);
1234 } else {
1235 /* Add fragments */
Sunil Gouthama8671ac2016-08-12 16:51:37 +05301236 page = virt_to_page(phys_to_virt(*rb_ptrs));
1237 offset = phys_to_virt(*rb_ptrs) - page_address(page);
1238 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page,
1239 offset, payload_len, RCV_FRAG_LEN);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001240 }
1241 /* Next buffer pointer */
1242 rb_ptrs++;
1243 }
1244 return skb;
1245}
1246
Yury Norovb45ceb42015-12-07 10:30:32 +05301247static u64 nicvf_int_type_to_mask(int int_type, int q_idx)
Sunil Goutham4863dea2015-05-26 19:20:15 -07001248{
1249 u64 reg_val;
1250
Sunil Goutham4863dea2015-05-26 19:20:15 -07001251 switch (int_type) {
1252 case NICVF_INTR_CQ:
1253 reg_val = ((1ULL << q_idx) << NICVF_INTR_CQ_SHIFT);
1254 break;
1255 case NICVF_INTR_SQ:
1256 reg_val = ((1ULL << q_idx) << NICVF_INTR_SQ_SHIFT);
1257 break;
1258 case NICVF_INTR_RBDR:
1259 reg_val = ((1ULL << q_idx) << NICVF_INTR_RBDR_SHIFT);
1260 break;
1261 case NICVF_INTR_PKT_DROP:
1262 reg_val = (1ULL << NICVF_INTR_PKT_DROP_SHIFT);
1263 break;
1264 case NICVF_INTR_TCP_TIMER:
1265 reg_val = (1ULL << NICVF_INTR_TCP_TIMER_SHIFT);
1266 break;
1267 case NICVF_INTR_MBOX:
1268 reg_val = (1ULL << NICVF_INTR_MBOX_SHIFT);
1269 break;
1270 case NICVF_INTR_QS_ERR:
Yury Norovb45ceb42015-12-07 10:30:32 +05301271 reg_val = (1ULL << NICVF_INTR_QS_ERR_SHIFT);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001272 break;
1273 default:
Yury Norovb45ceb42015-12-07 10:30:32 +05301274 reg_val = 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001275 }
1276
Yury Norovb45ceb42015-12-07 10:30:32 +05301277 return reg_val;
1278}
1279
1280/* Enable interrupt */
1281void nicvf_enable_intr(struct nicvf *nic, int int_type, int q_idx)
1282{
1283 u64 mask = nicvf_int_type_to_mask(int_type, q_idx);
1284
1285 if (!mask) {
1286 netdev_dbg(nic->netdev,
1287 "Failed to enable interrupt: unknown type\n");
1288 return;
1289 }
1290 nicvf_reg_write(nic, NIC_VF_ENA_W1S,
1291 nicvf_reg_read(nic, NIC_VF_ENA_W1S) | mask);
1292}
1293
1294/* Disable interrupt */
1295void nicvf_disable_intr(struct nicvf *nic, int int_type, int q_idx)
1296{
1297 u64 mask = nicvf_int_type_to_mask(int_type, q_idx);
1298
1299 if (!mask) {
1300 netdev_dbg(nic->netdev,
1301 "Failed to disable interrupt: unknown type\n");
1302 return;
1303 }
1304
1305 nicvf_reg_write(nic, NIC_VF_ENA_W1C, mask);
1306}
1307
1308/* Clear interrupt */
1309void nicvf_clear_intr(struct nicvf *nic, int int_type, int q_idx)
1310{
1311 u64 mask = nicvf_int_type_to_mask(int_type, q_idx);
1312
1313 if (!mask) {
1314 netdev_dbg(nic->netdev,
1315 "Failed to clear interrupt: unknown type\n");
1316 return;
1317 }
1318
1319 nicvf_reg_write(nic, NIC_VF_INT, mask);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001320}
1321
1322/* Check if interrupt is enabled */
1323int nicvf_is_intr_enabled(struct nicvf *nic, int int_type, int q_idx)
1324{
Yury Norovb45ceb42015-12-07 10:30:32 +05301325 u64 mask = nicvf_int_type_to_mask(int_type, q_idx);
1326 /* If interrupt type is unknown, we treat it disabled. */
1327 if (!mask) {
1328 netdev_dbg(nic->netdev,
Sunil Goutham4863dea2015-05-26 19:20:15 -07001329 "Failed to check interrupt enable: unknown type\n");
Yury Norovb45ceb42015-12-07 10:30:32 +05301330 return 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001331 }
1332
Yury Norovb45ceb42015-12-07 10:30:32 +05301333 return mask & nicvf_reg_read(nic, NIC_VF_ENA_W1S);
Sunil Goutham4863dea2015-05-26 19:20:15 -07001334}
1335
1336void nicvf_update_rq_stats(struct nicvf *nic, int rq_idx)
1337{
1338 struct rcv_queue *rq;
1339
1340#define GET_RQ_STATS(reg) \
1341 nicvf_reg_read(nic, NIC_QSET_RQ_0_7_STAT_0_1 |\
1342 (rq_idx << NIC_Q_NUM_SHIFT) | (reg << 3))
1343
1344 rq = &nic->qs->rq[rq_idx];
1345 rq->stats.bytes = GET_RQ_STATS(RQ_SQ_STATS_OCTS);
1346 rq->stats.pkts = GET_RQ_STATS(RQ_SQ_STATS_PKTS);
1347}
1348
1349void nicvf_update_sq_stats(struct nicvf *nic, int sq_idx)
1350{
1351 struct snd_queue *sq;
1352
1353#define GET_SQ_STATS(reg) \
1354 nicvf_reg_read(nic, NIC_QSET_SQ_0_7_STAT_0_1 |\
1355 (sq_idx << NIC_Q_NUM_SHIFT) | (reg << 3))
1356
1357 sq = &nic->qs->sq[sq_idx];
1358 sq->stats.bytes = GET_SQ_STATS(RQ_SQ_STATS_OCTS);
1359 sq->stats.pkts = GET_SQ_STATS(RQ_SQ_STATS_PKTS);
1360}
1361
1362/* Check for errors in the receive cmp.queue entry */
Sunil Gouthamad2eceb2016-02-16 16:29:51 +05301363int nicvf_check_cqe_rx_errs(struct nicvf *nic, struct cqe_rx_t *cqe_rx)
Sunil Goutham4863dea2015-05-26 19:20:15 -07001364{
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001365 struct nicvf_hw_stats *stats = &nic->hw_stats;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001366
Sunil Gouthamad2eceb2016-02-16 16:29:51 +05301367 if (!cqe_rx->err_level && !cqe_rx->err_opcode)
Sunil Goutham4863dea2015-05-26 19:20:15 -07001368 return 0;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001369
1370 if (netif_msg_rx_err(nic))
1371 netdev_err(nic->netdev,
1372 "%s: RX error CQE err_level 0x%x err_opcode 0x%x\n",
1373 nic->netdev->name,
1374 cqe_rx->err_level, cqe_rx->err_opcode);
1375
Sunil Goutham4863dea2015-05-26 19:20:15 -07001376 switch (cqe_rx->err_opcode) {
1377 case CQ_RX_ERROP_RE_PARTIAL:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001378 stats->rx_bgx_truncated_pkts++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001379 break;
1380 case CQ_RX_ERROP_RE_JABBER:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001381 stats->rx_jabber_errs++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001382 break;
1383 case CQ_RX_ERROP_RE_FCS:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001384 stats->rx_fcs_errs++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001385 break;
1386 case CQ_RX_ERROP_RE_RX_CTL:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001387 stats->rx_bgx_errs++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001388 break;
1389 case CQ_RX_ERROP_PREL2_ERR:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001390 stats->rx_prel2_errs++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001391 break;
1392 case CQ_RX_ERROP_L2_MAL:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001393 stats->rx_l2_hdr_malformed++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001394 break;
1395 case CQ_RX_ERROP_L2_OVERSIZE:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001396 stats->rx_oversize++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001397 break;
1398 case CQ_RX_ERROP_L2_UNDERSIZE:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001399 stats->rx_undersize++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001400 break;
1401 case CQ_RX_ERROP_L2_LENMISM:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001402 stats->rx_l2_len_mismatch++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001403 break;
1404 case CQ_RX_ERROP_L2_PCLP:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001405 stats->rx_l2_pclp++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001406 break;
1407 case CQ_RX_ERROP_IP_NOT:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001408 stats->rx_ip_ver_errs++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001409 break;
1410 case CQ_RX_ERROP_IP_CSUM_ERR:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001411 stats->rx_ip_csum_errs++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001412 break;
1413 case CQ_RX_ERROP_IP_MAL:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001414 stats->rx_ip_hdr_malformed++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001415 break;
1416 case CQ_RX_ERROP_IP_MALD:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001417 stats->rx_ip_payload_malformed++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001418 break;
1419 case CQ_RX_ERROP_IP_HOP:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001420 stats->rx_ip_ttl_errs++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001421 break;
1422 case CQ_RX_ERROP_L3_PCLP:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001423 stats->rx_l3_pclp++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001424 break;
1425 case CQ_RX_ERROP_L4_MAL:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001426 stats->rx_l4_malformed++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001427 break;
1428 case CQ_RX_ERROP_L4_CHK:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001429 stats->rx_l4_csum_errs++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001430 break;
1431 case CQ_RX_ERROP_UDP_LEN:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001432 stats->rx_udp_len_errs++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001433 break;
1434 case CQ_RX_ERROP_L4_PORT:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001435 stats->rx_l4_port_errs++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001436 break;
1437 case CQ_RX_ERROP_TCP_FLAG:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001438 stats->rx_tcp_flag_errs++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001439 break;
1440 case CQ_RX_ERROP_TCP_OFFSET:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001441 stats->rx_tcp_offset_errs++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001442 break;
1443 case CQ_RX_ERROP_L4_PCLP:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001444 stats->rx_l4_pclp++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001445 break;
1446 case CQ_RX_ERROP_RBDR_TRUNC:
Sunil Gouthama2dc5de2015-08-30 12:29:10 +03001447 stats->rx_truncated_pkts++;
Sunil Goutham4863dea2015-05-26 19:20:15 -07001448 break;
1449 }
1450
1451 return 1;
1452}
1453
1454/* Check for errors in the send cmp.queue entry */
1455int nicvf_check_cqe_tx_errs(struct nicvf *nic,
1456 struct cmp_queue *cq, struct cqe_send_t *cqe_tx)
1457{
1458 struct cmp_queue_stats *stats = &cq->stats;
1459
1460 switch (cqe_tx->send_status) {
1461 case CQ_TX_ERROP_GOOD:
1462 stats->tx.good++;
1463 return 0;
1464 case CQ_TX_ERROP_DESC_FAULT:
1465 stats->tx.desc_fault++;
1466 break;
1467 case CQ_TX_ERROP_HDR_CONS_ERR:
1468 stats->tx.hdr_cons_err++;
1469 break;
1470 case CQ_TX_ERROP_SUBDC_ERR:
1471 stats->tx.subdesc_err++;
1472 break;
1473 case CQ_TX_ERROP_IMM_SIZE_OFLOW:
1474 stats->tx.imm_size_oflow++;
1475 break;
1476 case CQ_TX_ERROP_DATA_SEQUENCE_ERR:
1477 stats->tx.data_seq_err++;
1478 break;
1479 case CQ_TX_ERROP_MEM_SEQUENCE_ERR:
1480 stats->tx.mem_seq_err++;
1481 break;
1482 case CQ_TX_ERROP_LOCK_VIOL:
1483 stats->tx.lock_viol++;
1484 break;
1485 case CQ_TX_ERROP_DATA_FAULT:
1486 stats->tx.data_fault++;
1487 break;
1488 case CQ_TX_ERROP_TSTMP_CONFLICT:
1489 stats->tx.tstmp_conflict++;
1490 break;
1491 case CQ_TX_ERROP_TSTMP_TIMEOUT:
1492 stats->tx.tstmp_timeout++;
1493 break;
1494 case CQ_TX_ERROP_MEM_FAULT:
1495 stats->tx.mem_fault++;
1496 break;
1497 case CQ_TX_ERROP_CK_OVERLAP:
1498 stats->tx.csum_overlap++;
1499 break;
1500 case CQ_TX_ERROP_CK_OFLOW:
1501 stats->tx.csum_overflow++;
1502 break;
1503 }
1504
1505 return 1;
1506}