blob: c72fe1e86029eb1b2345a0e2841fae986f51fbdf [file] [log] [blame]
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001/*
2 * This file is part of the Chelsio T4 Ethernet driver for Linux.
3 *
Anish Bhattce100b8b2014-06-19 21:37:15 -07004 * Copyright (c) 2003-2014 Chelsio Communications, Inc. All rights reserved.
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00005 *
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the
10 * OpenIB.org BSD license below:
11 *
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
14 * conditions are met:
15 *
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
18 * disclaimer.
19 *
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials
23 * provided with the distribution.
24 *
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32 * SOFTWARE.
33 */
34
35#include <linux/skbuff.h>
36#include <linux/netdevice.h>
37#include <linux/etherdevice.h>
38#include <linux/if_vlan.h>
39#include <linux/ip.h>
40#include <linux/dma-mapping.h>
41#include <linux/jiffies.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040042#include <linux/prefetch.h>
Paul Gortmakeree40fa02011-05-27 16:14:23 -040043#include <linux/export.h>
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +000044#include <net/ipv6.h>
45#include <net/tcp.h>
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +053046#ifdef CONFIG_NET_RX_BUSY_POLL
47#include <net/busy_poll.h>
48#endif /* CONFIG_NET_RX_BUSY_POLL */
Varun Prakash84a200b2015-03-24 19:14:46 +053049#ifdef CONFIG_CHELSIO_T4_FCOE
50#include <scsi/fc/fc_fcoe.h>
51#endif /* CONFIG_CHELSIO_T4_FCOE */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +000052#include "cxgb4.h"
53#include "t4_regs.h"
Hariprasad Shenaif612b812015-01-05 16:30:43 +053054#include "t4_values.h"
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +000055#include "t4_msg.h"
56#include "t4fw_api.h"
57
58/*
59 * Rx buffer size. We use largish buffers if possible but settle for single
60 * pages under memory shortage.
61 */
62#if PAGE_SHIFT >= 16
63# define FL_PG_ORDER 0
64#else
65# define FL_PG_ORDER (16 - PAGE_SHIFT)
66#endif
67
68/* RX_PULL_LEN should be <= RX_COPY_THRES */
69#define RX_COPY_THRES 256
70#define RX_PULL_LEN 128
71
72/*
73 * Main body length for sk_buffs used for Rx Ethernet packets with fragments.
74 * Should be >= RX_PULL_LEN but possibly bigger to give pskb_may_pull some room.
75 */
76#define RX_PKT_SKB_LEN 512
77
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +000078/*
79 * Max number of Tx descriptors we clean up at a time. Should be modest as
80 * freeing skbs isn't cheap and it happens while holding locks. We just need
81 * to free packets faster than they arrive, we eventually catch up and keep
82 * the amortized cost reasonable. Must be >= 2 * TXQ_STOP_THRES.
83 */
84#define MAX_TX_RECLAIM 16
85
86/*
87 * Max number of Rx buffers we replenish at a time. Again keep this modest,
88 * allocating buffers isn't cheap either.
89 */
90#define MAX_RX_REFILL 16U
91
92/*
93 * Period of the Rx queue check timer. This timer is infrequent as it has
94 * something to do only when the system experiences severe memory shortage.
95 */
96#define RX_QCHECK_PERIOD (HZ / 2)
97
98/*
99 * Period of the Tx queue check timer.
100 */
101#define TX_QCHECK_PERIOD (HZ / 2)
102
103/*
104 * Max number of Tx descriptors to be reclaimed by the Tx timer.
105 */
106#define MAX_TIMER_TX_RECLAIM 100
107
108/*
109 * Timer index used when backing off due to memory shortage.
110 */
111#define NOMEM_TMR_IDX (SGE_NTIMERS - 1)
112
113/*
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000114 * Suspend an Ethernet Tx queue with fewer available descriptors than this.
115 * This is the same as calc_tx_descs() for a TSO packet with
116 * nr_frags == MAX_SKB_FRAGS.
117 */
118#define ETHTXQ_STOP_THRES \
119 (1 + DIV_ROUND_UP((3 * MAX_SKB_FRAGS) / 2 + (MAX_SKB_FRAGS & 1), 8))
120
121/*
122 * Suspension threshold for non-Ethernet Tx queues. We require enough room
123 * for a full sized WR.
124 */
125#define TXQ_STOP_THRES (SGE_MAX_WR_LEN / sizeof(struct tx_desc))
126
127/*
128 * Max Tx descriptor space we allow for an Ethernet packet to be inlined
129 * into a WR.
130 */
Hariprasad Shenai21dcfad2015-04-15 02:02:30 +0530131#define MAX_IMM_TX_PKT_LEN 256
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000132
133/*
134 * Max size of a WR sent through a control Tx queue.
135 */
136#define MAX_CTRL_WR_LEN SGE_MAX_WR_LEN
137
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000138struct tx_sw_desc { /* SW state per Tx descriptor */
139 struct sk_buff *skb;
140 struct ulptx_sgl *sgl;
141};
142
143struct rx_sw_desc { /* SW state per Rx descriptor */
144 struct page *page;
145 dma_addr_t dma_addr;
146};
147
148/*
Vipul Pandya52367a72012-09-26 02:39:38 +0000149 * Rx buffer sizes for "useskbs" Free List buffers (one ingress packet pe skb
150 * buffer). We currently only support two sizes for 1500- and 9000-byte MTUs.
151 * We could easily support more but there doesn't seem to be much need for
152 * that ...
153 */
154#define FL_MTU_SMALL 1500
155#define FL_MTU_LARGE 9000
156
157static inline unsigned int fl_mtu_bufsize(struct adapter *adapter,
158 unsigned int mtu)
159{
160 struct sge *s = &adapter->sge;
161
162 return ALIGN(s->pktshift + ETH_HLEN + VLAN_HLEN + mtu, s->fl_align);
163}
164
165#define FL_MTU_SMALL_BUFSIZE(adapter) fl_mtu_bufsize(adapter, FL_MTU_SMALL)
166#define FL_MTU_LARGE_BUFSIZE(adapter) fl_mtu_bufsize(adapter, FL_MTU_LARGE)
167
168/*
169 * Bits 0..3 of rx_sw_desc.dma_addr have special meaning. The hardware uses
170 * these to specify the buffer size as an index into the SGE Free List Buffer
171 * Size register array. We also use bit 4, when the buffer has been unmapped
172 * for DMA, but this is of course never sent to the hardware and is only used
173 * to prevent double unmappings. All of the above requires that the Free List
174 * Buffers which we allocate have the bottom 5 bits free (0) -- i.e. are
175 * 32-byte or or a power of 2 greater in alignment. Since the SGE's minimal
176 * Free List Buffer alignment is 32 bytes, this works out for us ...
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000177 */
178enum {
Vipul Pandya52367a72012-09-26 02:39:38 +0000179 RX_BUF_FLAGS = 0x1f, /* bottom five bits are special */
180 RX_BUF_SIZE = 0x0f, /* bottom three bits are for buf sizes */
181 RX_UNMAPPED_BUF = 0x10, /* buffer is not mapped */
182
183 /*
184 * XXX We shouldn't depend on being able to use these indices.
185 * XXX Especially when some other Master PF has initialized the
186 * XXX adapter or we use the Firmware Configuration File. We
187 * XXX should really search through the Host Buffer Size register
188 * XXX array for the appropriately sized buffer indices.
189 */
190 RX_SMALL_PG_BUF = 0x0, /* small (PAGE_SIZE) page buffer */
191 RX_LARGE_PG_BUF = 0x1, /* buffer large (FL_PG_ORDER) page buffer */
192
193 RX_SMALL_MTU_BUF = 0x2, /* small MTU buffer */
194 RX_LARGE_MTU_BUF = 0x3, /* large MTU buffer */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000195};
196
Hariprasad Shenaie553ec32014-09-26 00:23:55 +0530197static int timer_pkt_quota[] = {1, 1, 2, 3, 4, 5};
198#define MIN_NAPI_WORK 1
199
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000200static inline dma_addr_t get_buf_addr(const struct rx_sw_desc *d)
201{
Vipul Pandya52367a72012-09-26 02:39:38 +0000202 return d->dma_addr & ~(dma_addr_t)RX_BUF_FLAGS;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000203}
204
205static inline bool is_buf_mapped(const struct rx_sw_desc *d)
206{
207 return !(d->dma_addr & RX_UNMAPPED_BUF);
208}
209
210/**
211 * txq_avail - return the number of available slots in a Tx queue
212 * @q: the Tx queue
213 *
214 * Returns the number of descriptors in a Tx queue available to write new
215 * packets.
216 */
217static inline unsigned int txq_avail(const struct sge_txq *q)
218{
219 return q->size - 1 - q->in_use;
220}
221
222/**
223 * fl_cap - return the capacity of a free-buffer list
224 * @fl: the FL
225 *
226 * Returns the capacity of a free-buffer list. The capacity is less than
227 * the size because one descriptor needs to be left unpopulated, otherwise
228 * HW will think the FL is empty.
229 */
230static inline unsigned int fl_cap(const struct sge_fl *fl)
231{
232 return fl->size - 8; /* 1 descriptor = 8 buffers */
233}
234
Hariprasad Shenaic098b022015-04-15 02:02:31 +0530235/**
236 * fl_starving - return whether a Free List is starving.
237 * @adapter: pointer to the adapter
238 * @fl: the Free List
239 *
240 * Tests specified Free List to see whether the number of buffers
241 * available to the hardware has falled below our "starvation"
242 * threshold.
243 */
244static inline bool fl_starving(const struct adapter *adapter,
245 const struct sge_fl *fl)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000246{
Hariprasad Shenaic098b022015-04-15 02:02:31 +0530247 const struct sge *s = &adapter->sge;
248
249 return fl->avail - fl->pend_cred <= s->fl_starve_thres;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000250}
251
252static int map_skb(struct device *dev, const struct sk_buff *skb,
253 dma_addr_t *addr)
254{
255 const skb_frag_t *fp, *end;
256 const struct skb_shared_info *si;
257
258 *addr = dma_map_single(dev, skb->data, skb_headlen(skb), DMA_TO_DEVICE);
259 if (dma_mapping_error(dev, *addr))
260 goto out_err;
261
262 si = skb_shinfo(skb);
263 end = &si->frags[si->nr_frags];
264
265 for (fp = si->frags; fp < end; fp++) {
Ian Campbelle91b0f22011-10-19 23:01:46 +0000266 *++addr = skb_frag_dma_map(dev, fp, 0, skb_frag_size(fp),
267 DMA_TO_DEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000268 if (dma_mapping_error(dev, *addr))
269 goto unwind;
270 }
271 return 0;
272
273unwind:
274 while (fp-- > si->frags)
Eric Dumazet9e903e02011-10-18 21:00:24 +0000275 dma_unmap_page(dev, *--addr, skb_frag_size(fp), DMA_TO_DEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000276
277 dma_unmap_single(dev, addr[-1], skb_headlen(skb), DMA_TO_DEVICE);
278out_err:
279 return -ENOMEM;
280}
281
282#ifdef CONFIG_NEED_DMA_MAP_STATE
283static void unmap_skb(struct device *dev, const struct sk_buff *skb,
284 const dma_addr_t *addr)
285{
286 const skb_frag_t *fp, *end;
287 const struct skb_shared_info *si;
288
289 dma_unmap_single(dev, *addr++, skb_headlen(skb), DMA_TO_DEVICE);
290
291 si = skb_shinfo(skb);
292 end = &si->frags[si->nr_frags];
293 for (fp = si->frags; fp < end; fp++)
Eric Dumazet9e903e02011-10-18 21:00:24 +0000294 dma_unmap_page(dev, *addr++, skb_frag_size(fp), DMA_TO_DEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000295}
296
297/**
298 * deferred_unmap_destructor - unmap a packet when it is freed
299 * @skb: the packet
300 *
301 * This is the packet destructor used for Tx packets that need to remain
302 * mapped until they are freed rather than until their Tx descriptors are
303 * freed.
304 */
305static void deferred_unmap_destructor(struct sk_buff *skb)
306{
307 unmap_skb(skb->dev->dev.parent, skb, (dma_addr_t *)skb->head);
308}
309#endif
310
311static void unmap_sgl(struct device *dev, const struct sk_buff *skb,
312 const struct ulptx_sgl *sgl, const struct sge_txq *q)
313{
314 const struct ulptx_sge_pair *p;
315 unsigned int nfrags = skb_shinfo(skb)->nr_frags;
316
317 if (likely(skb_headlen(skb)))
318 dma_unmap_single(dev, be64_to_cpu(sgl->addr0), ntohl(sgl->len0),
319 DMA_TO_DEVICE);
320 else {
321 dma_unmap_page(dev, be64_to_cpu(sgl->addr0), ntohl(sgl->len0),
322 DMA_TO_DEVICE);
323 nfrags--;
324 }
325
326 /*
327 * the complexity below is because of the possibility of a wrap-around
328 * in the middle of an SGL
329 */
330 for (p = sgl->sge; nfrags >= 2; nfrags -= 2) {
331 if (likely((u8 *)(p + 1) <= (u8 *)q->stat)) {
332unmap: dma_unmap_page(dev, be64_to_cpu(p->addr[0]),
333 ntohl(p->len[0]), DMA_TO_DEVICE);
334 dma_unmap_page(dev, be64_to_cpu(p->addr[1]),
335 ntohl(p->len[1]), DMA_TO_DEVICE);
336 p++;
337 } else if ((u8 *)p == (u8 *)q->stat) {
338 p = (const struct ulptx_sge_pair *)q->desc;
339 goto unmap;
340 } else if ((u8 *)p + 8 == (u8 *)q->stat) {
341 const __be64 *addr = (const __be64 *)q->desc;
342
343 dma_unmap_page(dev, be64_to_cpu(addr[0]),
344 ntohl(p->len[0]), DMA_TO_DEVICE);
345 dma_unmap_page(dev, be64_to_cpu(addr[1]),
346 ntohl(p->len[1]), DMA_TO_DEVICE);
347 p = (const struct ulptx_sge_pair *)&addr[2];
348 } else {
349 const __be64 *addr = (const __be64 *)q->desc;
350
351 dma_unmap_page(dev, be64_to_cpu(p->addr[0]),
352 ntohl(p->len[0]), DMA_TO_DEVICE);
353 dma_unmap_page(dev, be64_to_cpu(addr[0]),
354 ntohl(p->len[1]), DMA_TO_DEVICE);
355 p = (const struct ulptx_sge_pair *)&addr[1];
356 }
357 }
358 if (nfrags) {
359 __be64 addr;
360
361 if ((u8 *)p == (u8 *)q->stat)
362 p = (const struct ulptx_sge_pair *)q->desc;
363 addr = (u8 *)p + 16 <= (u8 *)q->stat ? p->addr[0] :
364 *(const __be64 *)q->desc;
365 dma_unmap_page(dev, be64_to_cpu(addr), ntohl(p->len[0]),
366 DMA_TO_DEVICE);
367 }
368}
369
370/**
371 * free_tx_desc - reclaims Tx descriptors and their buffers
372 * @adapter: the adapter
373 * @q: the Tx queue to reclaim descriptors from
374 * @n: the number of descriptors to reclaim
375 * @unmap: whether the buffers should be unmapped for DMA
376 *
377 * Reclaims Tx descriptors from an SGE Tx queue and frees the associated
378 * Tx buffers. Called with the Tx queue lock held.
379 */
380static void free_tx_desc(struct adapter *adap, struct sge_txq *q,
381 unsigned int n, bool unmap)
382{
383 struct tx_sw_desc *d;
384 unsigned int cidx = q->cidx;
385 struct device *dev = adap->pdev_dev;
386
387 d = &q->sdesc[cidx];
388 while (n--) {
389 if (d->skb) { /* an SGL is present */
390 if (unmap)
391 unmap_sgl(dev, d->skb, d->sgl, q);
Eric W. Biedermana7525192014-03-15 16:29:49 -0700392 dev_consume_skb_any(d->skb);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000393 d->skb = NULL;
394 }
395 ++d;
396 if (++cidx == q->size) {
397 cidx = 0;
398 d = q->sdesc;
399 }
400 }
401 q->cidx = cidx;
402}
403
404/*
405 * Return the number of reclaimable descriptors in a Tx queue.
406 */
407static inline int reclaimable(const struct sge_txq *q)
408{
Hariprasad Shenai632be192015-12-08 10:09:13 +0530409 int hw_cidx = ntohs(ACCESS_ONCE(q->stat->cidx));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000410 hw_cidx -= q->cidx;
411 return hw_cidx < 0 ? hw_cidx + q->size : hw_cidx;
412}
413
414/**
415 * reclaim_completed_tx - reclaims completed Tx descriptors
416 * @adap: the adapter
417 * @q: the Tx queue to reclaim completed descriptors from
418 * @unmap: whether the buffers should be unmapped for DMA
419 *
420 * Reclaims Tx descriptors that the SGE has indicated it has processed,
421 * and frees the associated buffers if possible. Called with the Tx
422 * queue locked.
423 */
424static inline void reclaim_completed_tx(struct adapter *adap, struct sge_txq *q,
425 bool unmap)
426{
427 int avail = reclaimable(q);
428
429 if (avail) {
430 /*
431 * Limit the amount of clean up work we do at a time to keep
432 * the Tx lock hold time O(1).
433 */
434 if (avail > MAX_TX_RECLAIM)
435 avail = MAX_TX_RECLAIM;
436
437 free_tx_desc(adap, q, avail, unmap);
438 q->in_use -= avail;
439 }
440}
441
Vipul Pandya52367a72012-09-26 02:39:38 +0000442static inline int get_buf_size(struct adapter *adapter,
443 const struct rx_sw_desc *d)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000444{
Vipul Pandya52367a72012-09-26 02:39:38 +0000445 struct sge *s = &adapter->sge;
446 unsigned int rx_buf_size_idx = d->dma_addr & RX_BUF_SIZE;
447 int buf_size;
448
449 switch (rx_buf_size_idx) {
450 case RX_SMALL_PG_BUF:
451 buf_size = PAGE_SIZE;
452 break;
453
454 case RX_LARGE_PG_BUF:
455 buf_size = PAGE_SIZE << s->fl_pg_order;
456 break;
457
458 case RX_SMALL_MTU_BUF:
459 buf_size = FL_MTU_SMALL_BUFSIZE(adapter);
460 break;
461
462 case RX_LARGE_MTU_BUF:
463 buf_size = FL_MTU_LARGE_BUFSIZE(adapter);
464 break;
465
466 default:
467 BUG_ON(1);
468 }
469
470 return buf_size;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000471}
472
473/**
474 * free_rx_bufs - free the Rx buffers on an SGE free list
475 * @adap: the adapter
476 * @q: the SGE free list to free buffers from
477 * @n: how many buffers to free
478 *
479 * Release the next @n buffers on an SGE free-buffer Rx queue. The
480 * buffers must be made inaccessible to HW before calling this function.
481 */
482static void free_rx_bufs(struct adapter *adap, struct sge_fl *q, int n)
483{
484 while (n--) {
485 struct rx_sw_desc *d = &q->sdesc[q->cidx];
486
487 if (is_buf_mapped(d))
488 dma_unmap_page(adap->pdev_dev, get_buf_addr(d),
Vipul Pandya52367a72012-09-26 02:39:38 +0000489 get_buf_size(adap, d),
490 PCI_DMA_FROMDEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000491 put_page(d->page);
492 d->page = NULL;
493 if (++q->cidx == q->size)
494 q->cidx = 0;
495 q->avail--;
496 }
497}
498
499/**
500 * unmap_rx_buf - unmap the current Rx buffer on an SGE free list
501 * @adap: the adapter
502 * @q: the SGE free list
503 *
504 * Unmap the current buffer on an SGE free-buffer Rx queue. The
505 * buffer must be made inaccessible to HW before calling this function.
506 *
507 * This is similar to @free_rx_bufs above but does not free the buffer.
508 * Do note that the FL still loses any further access to the buffer.
509 */
510static void unmap_rx_buf(struct adapter *adap, struct sge_fl *q)
511{
512 struct rx_sw_desc *d = &q->sdesc[q->cidx];
513
514 if (is_buf_mapped(d))
515 dma_unmap_page(adap->pdev_dev, get_buf_addr(d),
Vipul Pandya52367a72012-09-26 02:39:38 +0000516 get_buf_size(adap, d), PCI_DMA_FROMDEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000517 d->page = NULL;
518 if (++q->cidx == q->size)
519 q->cidx = 0;
520 q->avail--;
521}
522
523static inline void ring_fl_db(struct adapter *adap, struct sge_fl *q)
524{
525 if (q->pend_cred >= 8) {
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +0530526 u32 val = adap->params.arch.sge_fl_db;
527
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530528 if (is_t4(adap->params.chip))
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +0530529 val |= PIDX_V(q->pend_cred / 8);
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530530 else
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +0530531 val |= PIDX_T5_V(q->pend_cred / 8);
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +0530532
533 /* Make sure all memory writes to the Free List queue are
534 * committed before we tell the hardware about them.
535 */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000536 wmb();
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530537
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530538 /* If we don't have access to the new User Doorbell (T5+), use
539 * the old doorbell mechanism; otherwise use the new BAR2
540 * mechanism.
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530541 */
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530542 if (unlikely(q->bar2_addr == NULL)) {
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530543 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
544 val | QID_V(q->cntxt_id));
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530545 } else {
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530546 writel(val | QID_V(q->bar2_qid),
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530547 q->bar2_addr + SGE_UDB_KDOORBELL);
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530548
549 /* This Write memory Barrier will force the write to
550 * the User Doorbell area to be flushed.
551 */
552 wmb();
553 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000554 q->pend_cred &= 7;
555 }
556}
557
558static inline void set_rx_sw_desc(struct rx_sw_desc *sd, struct page *pg,
559 dma_addr_t mapping)
560{
561 sd->page = pg;
562 sd->dma_addr = mapping; /* includes size low bits */
563}
564
565/**
566 * refill_fl - refill an SGE Rx buffer ring
567 * @adap: the adapter
568 * @q: the ring to refill
569 * @n: the number of new buffers to allocate
570 * @gfp: the gfp flags for the allocations
571 *
572 * (Re)populate an SGE free-buffer queue with up to @n new packet buffers,
573 * allocated with the supplied gfp flags. The caller must assure that
574 * @n does not exceed the queue's capacity. If afterwards the queue is
575 * found critically low mark it as starving in the bitmap of starving FLs.
576 *
577 * Returns the number of buffers allocated.
578 */
579static unsigned int refill_fl(struct adapter *adap, struct sge_fl *q, int n,
580 gfp_t gfp)
581{
Vipul Pandya52367a72012-09-26 02:39:38 +0000582 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000583 struct page *pg;
584 dma_addr_t mapping;
585 unsigned int cred = q->avail;
586 __be64 *d = &q->desc[q->pidx];
587 struct rx_sw_desc *sd = &q->sdesc[q->pidx];
Hariprasad Shenaid52ce922015-04-15 02:02:32 +0530588 int node;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000589
Hariprasad Shenai5b377d12015-05-27 22:30:23 +0530590#ifdef CONFIG_DEBUG_FS
591 if (test_bit(q->cntxt_id - adap->sge.egr_start, adap->sge.blocked_fl))
592 goto out;
593#endif
594
Alexander Duyckaa9cd312014-11-11 09:26:42 -0800595 gfp |= __GFP_NOWARN;
Hariprasad Shenaid52ce922015-04-15 02:02:32 +0530596 node = dev_to_node(adap->pdev_dev);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000597
Vipul Pandya52367a72012-09-26 02:39:38 +0000598 if (s->fl_pg_order == 0)
599 goto alloc_small_pages;
600
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000601 /*
602 * Prefer large buffers
603 */
604 while (n) {
Hariprasad Shenaid52ce922015-04-15 02:02:32 +0530605 pg = alloc_pages_node(node, gfp | __GFP_COMP, s->fl_pg_order);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000606 if (unlikely(!pg)) {
607 q->large_alloc_failed++;
608 break; /* fall back to single pages */
609 }
610
611 mapping = dma_map_page(adap->pdev_dev, pg, 0,
Vipul Pandya52367a72012-09-26 02:39:38 +0000612 PAGE_SIZE << s->fl_pg_order,
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000613 PCI_DMA_FROMDEVICE);
614 if (unlikely(dma_mapping_error(adap->pdev_dev, mapping))) {
Vipul Pandya52367a72012-09-26 02:39:38 +0000615 __free_pages(pg, s->fl_pg_order);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000616 goto out; /* do not try small pages for this error */
617 }
Vipul Pandya52367a72012-09-26 02:39:38 +0000618 mapping |= RX_LARGE_PG_BUF;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000619 *d++ = cpu_to_be64(mapping);
620
621 set_rx_sw_desc(sd, pg, mapping);
622 sd++;
623
624 q->avail++;
625 if (++q->pidx == q->size) {
626 q->pidx = 0;
627 sd = q->sdesc;
628 d = q->desc;
629 }
630 n--;
631 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000632
Vipul Pandya52367a72012-09-26 02:39:38 +0000633alloc_small_pages:
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000634 while (n--) {
Hariprasad Shenaid52ce922015-04-15 02:02:32 +0530635 pg = alloc_pages_node(node, gfp, 0);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000636 if (unlikely(!pg)) {
637 q->alloc_failed++;
638 break;
639 }
640
641 mapping = dma_map_page(adap->pdev_dev, pg, 0, PAGE_SIZE,
642 PCI_DMA_FROMDEVICE);
643 if (unlikely(dma_mapping_error(adap->pdev_dev, mapping))) {
Eric Dumazet1f2149c2011-11-22 10:57:41 +0000644 put_page(pg);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000645 goto out;
646 }
647 *d++ = cpu_to_be64(mapping);
648
649 set_rx_sw_desc(sd, pg, mapping);
650 sd++;
651
652 q->avail++;
653 if (++q->pidx == q->size) {
654 q->pidx = 0;
655 sd = q->sdesc;
656 d = q->desc;
657 }
658 }
659
660out: cred = q->avail - cred;
661 q->pend_cred += cred;
662 ring_fl_db(adap, q);
663
Hariprasad Shenaic098b022015-04-15 02:02:31 +0530664 if (unlikely(fl_starving(adap, q))) {
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000665 smp_wmb();
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000666 set_bit(q->cntxt_id - adap->sge.egr_start,
667 adap->sge.starving_fl);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000668 }
669
670 return cred;
671}
672
673static inline void __refill_fl(struct adapter *adap, struct sge_fl *fl)
674{
675 refill_fl(adap, fl, min(MAX_RX_REFILL, fl_cap(fl) - fl->avail),
676 GFP_ATOMIC);
677}
678
679/**
680 * alloc_ring - allocate resources for an SGE descriptor ring
681 * @dev: the PCI device's core device
682 * @nelem: the number of descriptors
683 * @elem_size: the size of each descriptor
684 * @sw_size: the size of the SW state associated with each ring element
685 * @phys: the physical address of the allocated ring
686 * @metadata: address of the array holding the SW state for the ring
687 * @stat_size: extra space in HW ring for status information
Dimitris Michailidisad6bad32010-12-14 21:36:55 +0000688 * @node: preferred node for memory allocations
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000689 *
690 * Allocates resources for an SGE descriptor ring, such as Tx queues,
691 * free buffer lists, or response queues. Each SGE ring requires
692 * space for its HW descriptors plus, optionally, space for the SW state
693 * associated with each HW entry (the metadata). The function returns
694 * three values: the virtual address for the HW ring (the return value
695 * of the function), the bus address of the HW ring, and the address
696 * of the SW ring.
697 */
698static void *alloc_ring(struct device *dev, size_t nelem, size_t elem_size,
699 size_t sw_size, dma_addr_t *phys, void *metadata,
Dimitris Michailidisad6bad32010-12-14 21:36:55 +0000700 size_t stat_size, int node)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000701{
702 size_t len = nelem * elem_size + stat_size;
703 void *s = NULL;
704 void *p = dma_alloc_coherent(dev, len, phys, GFP_KERNEL);
705
706 if (!p)
707 return NULL;
708 if (sw_size) {
Dimitris Michailidisad6bad32010-12-14 21:36:55 +0000709 s = kzalloc_node(nelem * sw_size, GFP_KERNEL, node);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000710
711 if (!s) {
712 dma_free_coherent(dev, len, p, *phys);
713 return NULL;
714 }
715 }
716 if (metadata)
717 *(void **)metadata = s;
718 memset(p, 0, len);
719 return p;
720}
721
722/**
723 * sgl_len - calculates the size of an SGL of the given capacity
724 * @n: the number of SGL entries
725 *
726 * Calculates the number of flits needed for a scatter/gather list that
727 * can hold the given number of entries.
728 */
729static inline unsigned int sgl_len(unsigned int n)
730{
Hariprasad Shenai0aac3f52015-04-15 02:02:33 +0530731 /* A Direct Scatter Gather List uses 32-bit lengths and 64-bit PCI DMA
732 * addresses. The DSGL Work Request starts off with a 32-bit DSGL
733 * ULPTX header, then Length0, then Address0, then, for 1 <= i <= N,
734 * repeated sequences of { Length[i], Length[i+1], Address[i],
735 * Address[i+1] } (this ensures that all addresses are on 64-bit
736 * boundaries). If N is even, then Length[N+1] should be set to 0 and
737 * Address[N+1] is omitted.
738 *
739 * The following calculation incorporates all of the above. It's
740 * somewhat hard to follow but, briefly: the "+2" accounts for the
741 * first two flits which include the DSGL header, Length0 and
742 * Address0; the "(3*(n-1))/2" covers the main body of list entries (3
743 * flits for every pair of the remaining N) +1 if (n-1) is odd; and
744 * finally the "+((n-1)&1)" adds the one remaining flit needed if
745 * (n-1) is odd ...
746 */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000747 n--;
748 return (3 * n) / 2 + (n & 1) + 2;
749}
750
751/**
752 * flits_to_desc - returns the num of Tx descriptors for the given flits
753 * @n: the number of flits
754 *
755 * Returns the number of Tx descriptors needed for the supplied number
756 * of flits.
757 */
758static inline unsigned int flits_to_desc(unsigned int n)
759{
760 BUG_ON(n > SGE_MAX_WR_LEN / 8);
761 return DIV_ROUND_UP(n, 8);
762}
763
764/**
765 * is_eth_imm - can an Ethernet packet be sent as immediate data?
766 * @skb: the packet
767 *
768 * Returns whether an Ethernet packet is small enough to fit as
Kumar Sanghvi0034b292014-02-18 17:56:14 +0530769 * immediate data. Return value corresponds to headroom required.
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000770 */
771static inline int is_eth_imm(const struct sk_buff *skb)
772{
Kumar Sanghvi0034b292014-02-18 17:56:14 +0530773 int hdrlen = skb_shinfo(skb)->gso_size ?
774 sizeof(struct cpl_tx_pkt_lso_core) : 0;
775
776 hdrlen += sizeof(struct cpl_tx_pkt);
777 if (skb->len <= MAX_IMM_TX_PKT_LEN - hdrlen)
778 return hdrlen;
779 return 0;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000780}
781
782/**
783 * calc_tx_flits - calculate the number of flits for a packet Tx WR
784 * @skb: the packet
785 *
786 * Returns the number of flits needed for a Tx WR for the given Ethernet
787 * packet, including the needed WR and CPL headers.
788 */
789static inline unsigned int calc_tx_flits(const struct sk_buff *skb)
790{
791 unsigned int flits;
Kumar Sanghvi0034b292014-02-18 17:56:14 +0530792 int hdrlen = is_eth_imm(skb);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000793
Hariprasad Shenai0aac3f52015-04-15 02:02:33 +0530794 /* If the skb is small enough, we can pump it out as a work request
795 * with only immediate data. In that case we just have to have the
796 * TX Packet header plus the skb data in the Work Request.
797 */
798
Kumar Sanghvi0034b292014-02-18 17:56:14 +0530799 if (hdrlen)
800 return DIV_ROUND_UP(skb->len + hdrlen, sizeof(__be64));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000801
Hariprasad Shenai0aac3f52015-04-15 02:02:33 +0530802 /* Otherwise, we're going to have to construct a Scatter gather list
803 * of the skb body and fragments. We also include the flits necessary
804 * for the TX Packet Work Request and CPL. We always have a firmware
805 * Write Header (incorporated as part of the cpl_tx_pkt_lso and
806 * cpl_tx_pkt structures), followed by either a TX Packet Write CPL
807 * message or, if we're doing a Large Send Offload, an LSO CPL message
808 * with an embedded TX Packet Write CPL message.
809 */
Hariprasad Shenaifd1754f2015-09-08 16:25:39 +0530810 flits = sgl_len(skb_shinfo(skb)->nr_frags + 1);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000811 if (skb_shinfo(skb)->gso_size)
Hariprasad Shenai0aac3f52015-04-15 02:02:33 +0530812 flits += (sizeof(struct fw_eth_tx_pkt_wr) +
813 sizeof(struct cpl_tx_pkt_lso_core) +
814 sizeof(struct cpl_tx_pkt_core)) / sizeof(__be64);
815 else
816 flits += (sizeof(struct fw_eth_tx_pkt_wr) +
817 sizeof(struct cpl_tx_pkt_core)) / sizeof(__be64);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000818 return flits;
819}
820
821/**
822 * calc_tx_descs - calculate the number of Tx descriptors for a packet
823 * @skb: the packet
824 *
825 * Returns the number of Tx descriptors needed for the given Ethernet
826 * packet, including the needed WR and CPL headers.
827 */
828static inline unsigned int calc_tx_descs(const struct sk_buff *skb)
829{
830 return flits_to_desc(calc_tx_flits(skb));
831}
832
833/**
834 * write_sgl - populate a scatter/gather list for a packet
835 * @skb: the packet
836 * @q: the Tx queue we are writing into
837 * @sgl: starting location for writing the SGL
838 * @end: points right after the end of the SGL
839 * @start: start offset into skb main-body data to include in the SGL
840 * @addr: the list of bus addresses for the SGL elements
841 *
842 * Generates a gather list for the buffers that make up a packet.
843 * The caller must provide adequate space for the SGL that will be written.
844 * The SGL includes all of the packet's page fragments and the data in its
845 * main body except for the first @start bytes. @sgl must be 16-byte
846 * aligned and within a Tx descriptor with available space. @end points
847 * right after the end of the SGL but does not account for any potential
848 * wrap around, i.e., @end > @sgl.
849 */
850static void write_sgl(const struct sk_buff *skb, struct sge_txq *q,
851 struct ulptx_sgl *sgl, u64 *end, unsigned int start,
852 const dma_addr_t *addr)
853{
854 unsigned int i, len;
855 struct ulptx_sge_pair *to;
856 const struct skb_shared_info *si = skb_shinfo(skb);
857 unsigned int nfrags = si->nr_frags;
858 struct ulptx_sge_pair buf[MAX_SKB_FRAGS / 2 + 1];
859
860 len = skb_headlen(skb) - start;
861 if (likely(len)) {
862 sgl->len0 = htonl(len);
863 sgl->addr0 = cpu_to_be64(addr[0] + start);
864 nfrags++;
865 } else {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000866 sgl->len0 = htonl(skb_frag_size(&si->frags[0]));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000867 sgl->addr0 = cpu_to_be64(addr[1]);
868 }
869
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -0800870 sgl->cmd_nsge = htonl(ULPTX_CMD_V(ULP_TX_SC_DSGL) |
871 ULPTX_NSGE_V(nfrags));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000872 if (likely(--nfrags == 0))
873 return;
874 /*
875 * Most of the complexity below deals with the possibility we hit the
876 * end of the queue in the middle of writing the SGL. For this case
877 * only we create the SGL in a temporary buffer and then copy it.
878 */
879 to = (u8 *)end > (u8 *)q->stat ? buf : sgl->sge;
880
881 for (i = (nfrags != si->nr_frags); nfrags >= 2; nfrags -= 2, to++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000882 to->len[0] = cpu_to_be32(skb_frag_size(&si->frags[i]));
883 to->len[1] = cpu_to_be32(skb_frag_size(&si->frags[++i]));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000884 to->addr[0] = cpu_to_be64(addr[i]);
885 to->addr[1] = cpu_to_be64(addr[++i]);
886 }
887 if (nfrags) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000888 to->len[0] = cpu_to_be32(skb_frag_size(&si->frags[i]));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000889 to->len[1] = cpu_to_be32(0);
890 to->addr[0] = cpu_to_be64(addr[i + 1]);
891 }
892 if (unlikely((u8 *)end > (u8 *)q->stat)) {
893 unsigned int part0 = (u8 *)q->stat - (u8 *)sgl->sge, part1;
894
895 if (likely(part0))
896 memcpy(sgl->sge, buf, part0);
897 part1 = (u8 *)end - (u8 *)q->stat;
898 memcpy(q->desc, (u8 *)buf + part0, part1);
899 end = (void *)q->desc + part1;
900 }
901 if ((uintptr_t)end & 8) /* 0-pad to multiple of 16 */
Joe Perches64699332012-06-04 12:44:16 +0000902 *end = 0;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000903}
904
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530905/* This function copies 64 byte coalesced work request to
906 * memory mapped BAR2 space. For coalesced WR SGE fetches
907 * data from the FIFO instead of from Host.
Santosh Rastapur22adfe02013-03-14 05:08:51 +0000908 */
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530909static void cxgb_pio_copy(u64 __iomem *dst, u64 *src)
Santosh Rastapur22adfe02013-03-14 05:08:51 +0000910{
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530911 int count = 8;
Santosh Rastapur22adfe02013-03-14 05:08:51 +0000912
913 while (count) {
914 writeq(*src, dst);
915 src++;
916 dst++;
917 count--;
918 }
919}
920
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000921/**
922 * ring_tx_db - check and potentially ring a Tx queue's doorbell
923 * @adap: the adapter
924 * @q: the Tx queue
925 * @n: number of new descriptors to give to HW
926 *
927 * Ring the doorbel for a Tx queue.
928 */
929static inline void ring_tx_db(struct adapter *adap, struct sge_txq *q, int n)
930{
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +0530931 /* Make sure that all writes to the TX Descriptors are committed
932 * before we tell the hardware about them.
933 */
934 wmb();
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530935
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530936 /* If we don't have access to the new User Doorbell (T5+), use the old
937 * doorbell mechanism; otherwise use the new BAR2 mechanism.
938 */
939 if (unlikely(q->bar2_addr == NULL)) {
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530940 u32 val = PIDX_V(n);
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530941 unsigned long flags;
942
943 /* For T4 we need to participate in the Doorbell Recovery
944 * mechanism.
945 */
946 spin_lock_irqsave(&q->db_lock, flags);
947 if (!q->db_disabled)
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530948 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
949 QID_V(q->cntxt_id) | val);
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530950 else
951 q->db_pidx_inc += n;
952 q->db_pidx = q->pidx;
953 spin_unlock_irqrestore(&q->db_lock, flags);
954 } else {
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530955 u32 val = PIDX_T5_V(n);
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530956
957 /* T4 and later chips share the same PIDX field offset within
958 * the doorbell, but T5 and later shrank the field in order to
959 * gain a bit for Doorbell Priority. The field was absurdly
960 * large in the first place (14 bits) so we just use the T5
961 * and later limits and warn if a Queue ID is too large.
962 */
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530963 WARN_ON(val & DBPRIO_F);
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530964
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530965 /* If we're only writing a single TX Descriptor and we can use
966 * Inferred QID registers, we can use the Write Combining
967 * Gather Buffer; otherwise we use the simple doorbell.
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530968 */
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530969 if (n == 1 && q->bar2_qid == 0) {
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530970 int index = (q->pidx
971 ? (q->pidx - 1)
972 : (q->size - 1));
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530973 u64 *wr = (u64 *)&q->desc[index];
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530974
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530975 cxgb_pio_copy((u64 __iomem *)
976 (q->bar2_addr + SGE_UDB_WCDOORBELL),
977 wr);
Santosh Rastapur22adfe02013-03-14 05:08:51 +0000978 } else {
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530979 writel(val | QID_V(q->bar2_qid),
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530980 q->bar2_addr + SGE_UDB_KDOORBELL);
Santosh Rastapur22adfe02013-03-14 05:08:51 +0000981 }
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530982
983 /* This Write Memory Barrier will force the write to the User
984 * Doorbell area to be flushed. This is needed to prevent
985 * writes on different CPUs for the same queue from hitting
986 * the adapter out of order. This is required when some Work
987 * Requests take the Write Combine Gather Buffer path (user
988 * doorbell area offset [SGE_UDB_WCDOORBELL..+63]) and some
989 * take the traditional path where we simply increment the
990 * PIDX (User Doorbell area SGE_UDB_KDOORBELL) and have the
991 * hardware DMA read the actual Work Request.
992 */
993 wmb();
994 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000995}
996
997/**
998 * inline_tx_skb - inline a packet's data into Tx descriptors
999 * @skb: the packet
1000 * @q: the Tx queue where the packet will be inlined
1001 * @pos: starting position in the Tx queue where to inline the packet
1002 *
1003 * Inline a packet's contents directly into Tx descriptors, starting at
1004 * the given position within the Tx DMA ring.
1005 * Most of the complexity of this operation is dealing with wrap arounds
1006 * in the middle of the packet we want to inline.
1007 */
1008static void inline_tx_skb(const struct sk_buff *skb, const struct sge_txq *q,
1009 void *pos)
1010{
1011 u64 *p;
1012 int left = (void *)q->stat - pos;
1013
1014 if (likely(skb->len <= left)) {
1015 if (likely(!skb->data_len))
1016 skb_copy_from_linear_data(skb, pos, skb->len);
1017 else
1018 skb_copy_bits(skb, 0, pos, skb->len);
1019 pos += skb->len;
1020 } else {
1021 skb_copy_bits(skb, 0, pos, left);
1022 skb_copy_bits(skb, left, q->desc, skb->len - left);
1023 pos = (void *)q->desc + (skb->len - left);
1024 }
1025
1026 /* 0-pad to multiple of 16 */
1027 p = PTR_ALIGN(pos, 8);
1028 if ((uintptr_t)p & 8)
1029 *p = 0;
1030}
1031
Hariprasad Shenai8d0557d2015-12-08 10:09:15 +05301032static void *inline_tx_skb_header(const struct sk_buff *skb,
1033 const struct sge_txq *q, void *pos,
1034 int length)
1035{
1036 u64 *p;
1037 int left = (void *)q->stat - pos;
1038
1039 if (likely(length <= left)) {
1040 memcpy(pos, skb->data, length);
1041 pos += length;
1042 } else {
1043 memcpy(pos, skb->data, left);
1044 memcpy(q->desc, skb->data + left, length - left);
1045 pos = (void *)q->desc + (length - left);
1046 }
1047 /* 0-pad to multiple of 16 */
1048 p = PTR_ALIGN(pos, 8);
1049 if ((uintptr_t)p & 8) {
1050 *p = 0;
1051 return p + 1;
1052 }
1053 return p;
1054}
1055
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001056/*
1057 * Figure out what HW csum a packet wants and return the appropriate control
1058 * bits.
1059 */
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05301060static u64 hwcsum(enum chip_type chip, const struct sk_buff *skb)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001061{
1062 int csum_type;
1063 const struct iphdr *iph = ip_hdr(skb);
1064
1065 if (iph->version == 4) {
1066 if (iph->protocol == IPPROTO_TCP)
1067 csum_type = TX_CSUM_TCPIP;
1068 else if (iph->protocol == IPPROTO_UDP)
1069 csum_type = TX_CSUM_UDPIP;
1070 else {
1071nocsum: /*
1072 * unknown protocol, disable HW csum
1073 * and hope a bad packet is detected
1074 */
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05301075 return TXPKT_L4CSUM_DIS_F;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001076 }
1077 } else {
1078 /*
1079 * this doesn't work with extension headers
1080 */
1081 const struct ipv6hdr *ip6h = (const struct ipv6hdr *)iph;
1082
1083 if (ip6h->nexthdr == IPPROTO_TCP)
1084 csum_type = TX_CSUM_TCPIP6;
1085 else if (ip6h->nexthdr == IPPROTO_UDP)
1086 csum_type = TX_CSUM_UDPIP6;
1087 else
1088 goto nocsum;
1089 }
1090
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05301091 if (likely(csum_type >= TX_CSUM_TCPIP)) {
1092 u64 hdr_len = TXPKT_IPHDR_LEN_V(skb_network_header_len(skb));
1093 int eth_hdr_len = skb_network_offset(skb) - ETH_HLEN;
1094
1095 if (CHELSIO_CHIP_VERSION(chip) <= CHELSIO_T5)
1096 hdr_len |= TXPKT_ETHHDR_LEN_V(eth_hdr_len);
1097 else
1098 hdr_len |= T6_TXPKT_ETHHDR_LEN_V(eth_hdr_len);
1099 return TXPKT_CSUM_TYPE_V(csum_type) | hdr_len;
1100 } else {
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001101 int start = skb_transport_offset(skb);
1102
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05301103 return TXPKT_CSUM_TYPE_V(csum_type) |
1104 TXPKT_CSUM_START_V(start) |
1105 TXPKT_CSUM_LOC_V(start + skb->csum_offset);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001106 }
1107}
1108
1109static void eth_txq_stop(struct sge_eth_txq *q)
1110{
1111 netif_tx_stop_queue(q->txq);
1112 q->q.stops++;
1113}
1114
1115static inline void txq_advance(struct sge_txq *q, unsigned int n)
1116{
1117 q->in_use += n;
1118 q->pidx += n;
1119 if (q->pidx >= q->size)
1120 q->pidx -= q->size;
1121}
1122
Varun Prakash84a200b2015-03-24 19:14:46 +05301123#ifdef CONFIG_CHELSIO_T4_FCOE
1124static inline int
1125cxgb_fcoe_offload(struct sk_buff *skb, struct adapter *adap,
1126 const struct port_info *pi, u64 *cntrl)
1127{
1128 const struct cxgb_fcoe *fcoe = &pi->fcoe;
1129
1130 if (!(fcoe->flags & CXGB_FCOE_ENABLED))
1131 return 0;
1132
1133 if (skb->protocol != htons(ETH_P_FCOE))
1134 return 0;
1135
1136 skb_reset_mac_header(skb);
1137 skb->mac_len = sizeof(struct ethhdr);
1138
1139 skb_set_network_header(skb, skb->mac_len);
1140 skb_set_transport_header(skb, skb->mac_len + sizeof(struct fcoe_hdr));
1141
1142 if (!cxgb_fcoe_sof_eof_supported(adap, skb))
1143 return -ENOTSUPP;
1144
1145 /* FC CRC offload */
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05301146 *cntrl = TXPKT_CSUM_TYPE_V(TX_CSUM_FCOE) |
1147 TXPKT_L4CSUM_DIS_F | TXPKT_IPCSUM_DIS_F |
1148 TXPKT_CSUM_START_V(CXGB_FCOE_TXPKT_CSUM_START) |
1149 TXPKT_CSUM_END_V(CXGB_FCOE_TXPKT_CSUM_END) |
1150 TXPKT_CSUM_LOC_V(CXGB_FCOE_TXPKT_CSUM_END);
Varun Prakash84a200b2015-03-24 19:14:46 +05301151 return 0;
1152}
1153#endif /* CONFIG_CHELSIO_T4_FCOE */
1154
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001155/**
1156 * t4_eth_xmit - add a packet to an Ethernet Tx queue
1157 * @skb: the packet
1158 * @dev: the egress net device
1159 *
1160 * Add a packet to an SGE Ethernet Tx queue. Runs with softirqs disabled.
1161 */
1162netdev_tx_t t4_eth_xmit(struct sk_buff *skb, struct net_device *dev)
1163{
Anish Bhatt397665d2015-07-17 13:12:33 -07001164 u32 wr_mid, ctrl0;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001165 u64 cntrl, *end;
1166 int qidx, credits;
1167 unsigned int flits, ndesc;
1168 struct adapter *adap;
1169 struct sge_eth_txq *q;
1170 const struct port_info *pi;
1171 struct fw_eth_tx_pkt_wr *wr;
1172 struct cpl_tx_pkt_core *cpl;
1173 const struct skb_shared_info *ssi;
1174 dma_addr_t addr[MAX_SKB_FRAGS + 1];
Kumar Sanghvi0034b292014-02-18 17:56:14 +05301175 bool immediate = false;
Hariprasad Shenai637d3e92015-05-05 14:59:56 +05301176 int len, max_pkt_len;
Varun Prakash84a200b2015-03-24 19:14:46 +05301177#ifdef CONFIG_CHELSIO_T4_FCOE
1178 int err;
1179#endif /* CONFIG_CHELSIO_T4_FCOE */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001180
1181 /*
1182 * The chip min packet length is 10 octets but play safe and reject
1183 * anything shorter than an Ethernet header.
1184 */
1185 if (unlikely(skb->len < ETH_HLEN)) {
Eric W. Biedermana7525192014-03-15 16:29:49 -07001186out_free: dev_kfree_skb_any(skb);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001187 return NETDEV_TX_OK;
1188 }
1189
Hariprasad Shenai637d3e92015-05-05 14:59:56 +05301190 /* Discard the packet if the length is greater than mtu */
1191 max_pkt_len = ETH_HLEN + dev->mtu;
1192 if (skb_vlan_tag_present(skb))
1193 max_pkt_len += VLAN_HLEN;
1194 if (!skb_shinfo(skb)->gso_size && (unlikely(skb->len > max_pkt_len)))
1195 goto out_free;
1196
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001197 pi = netdev_priv(dev);
1198 adap = pi->adapter;
1199 qidx = skb_get_queue_mapping(skb);
1200 q = &adap->sge.ethtxq[qidx + pi->first_qset];
1201
1202 reclaim_completed_tx(adap, &q->q, true);
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05301203 cntrl = TXPKT_L4CSUM_DIS_F | TXPKT_IPCSUM_DIS_F;
Varun Prakash84a200b2015-03-24 19:14:46 +05301204
1205#ifdef CONFIG_CHELSIO_T4_FCOE
1206 err = cxgb_fcoe_offload(skb, adap, pi, &cntrl);
1207 if (unlikely(err == -ENOTSUPP))
1208 goto out_free;
1209#endif /* CONFIG_CHELSIO_T4_FCOE */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001210
1211 flits = calc_tx_flits(skb);
1212 ndesc = flits_to_desc(flits);
1213 credits = txq_avail(&q->q) - ndesc;
1214
1215 if (unlikely(credits < 0)) {
1216 eth_txq_stop(q);
1217 dev_err(adap->pdev_dev,
1218 "%s: Tx ring %u full while queue awake!\n",
1219 dev->name, qidx);
1220 return NETDEV_TX_BUSY;
1221 }
1222
Kumar Sanghvi0034b292014-02-18 17:56:14 +05301223 if (is_eth_imm(skb))
1224 immediate = true;
1225
1226 if (!immediate &&
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001227 unlikely(map_skb(adap->pdev_dev, skb, addr) < 0)) {
1228 q->mapping_err++;
1229 goto out_free;
1230 }
1231
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301232 wr_mid = FW_WR_LEN16_V(DIV_ROUND_UP(flits, 2));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001233 if (unlikely(credits < ETHTXQ_STOP_THRES)) {
1234 eth_txq_stop(q);
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301235 wr_mid |= FW_WR_EQUEQ_F | FW_WR_EQUIQ_F;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001236 }
1237
1238 wr = (void *)&q->q.desc[q->q.pidx];
1239 wr->equiq_to_len16 = htonl(wr_mid);
1240 wr->r3 = cpu_to_be64(0);
1241 end = (u64 *)wr + flits;
1242
Kumar Sanghvi0034b292014-02-18 17:56:14 +05301243 len = immediate ? skb->len : 0;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001244 ssi = skb_shinfo(skb);
1245 if (ssi->gso_size) {
Dimitris Michailidis625ac6a2010-08-02 13:19:18 +00001246 struct cpl_tx_pkt_lso *lso = (void *)wr;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001247 bool v6 = (ssi->gso_type & SKB_GSO_TCPV6) != 0;
1248 int l3hdr_len = skb_network_header_len(skb);
1249 int eth_xtra_len = skb_network_offset(skb) - ETH_HLEN;
1250
Kumar Sanghvi0034b292014-02-18 17:56:14 +05301251 len += sizeof(*lso);
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301252 wr->op_immdlen = htonl(FW_WR_OP_V(FW_ETH_TX_PKT_WR) |
1253 FW_WR_IMMDLEN_V(len));
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05301254 lso->c.lso_ctrl = htonl(LSO_OPCODE_V(CPL_TX_PKT_LSO) |
1255 LSO_FIRST_SLICE_F | LSO_LAST_SLICE_F |
1256 LSO_IPV6_V(v6) |
1257 LSO_ETHHDR_LEN_V(eth_xtra_len / 4) |
1258 LSO_IPHDR_LEN_V(l3hdr_len / 4) |
1259 LSO_TCPHDR_LEN_V(tcp_hdr(skb)->doff));
Dimitris Michailidis625ac6a2010-08-02 13:19:18 +00001260 lso->c.ipid_ofst = htons(0);
1261 lso->c.mss = htons(ssi->gso_size);
1262 lso->c.seqno_offset = htonl(0);
Hariprasad Shenai7207c0d2014-10-09 05:48:45 +05301263 if (is_t4(adap->params.chip))
1264 lso->c.len = htonl(skb->len);
1265 else
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05301266 lso->c.len = htonl(LSO_T5_XFER_SIZE_V(skb->len));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001267 cpl = (void *)(lso + 1);
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05301268
1269 if (CHELSIO_CHIP_VERSION(adap->params.chip) <= CHELSIO_T5)
1270 cntrl = TXPKT_ETHHDR_LEN_V(eth_xtra_len);
1271 else
1272 cntrl = T6_TXPKT_ETHHDR_LEN_V(eth_xtra_len);
1273
1274 cntrl |= TXPKT_CSUM_TYPE_V(v6 ?
1275 TX_CSUM_TCPIP6 : TX_CSUM_TCPIP) |
1276 TXPKT_IPHDR_LEN_V(l3hdr_len);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001277 q->tso++;
1278 q->tx_cso += ssi->gso_segs;
1279 } else {
Kumar Sanghvica71de62014-03-13 20:50:50 +05301280 len += sizeof(*cpl);
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301281 wr->op_immdlen = htonl(FW_WR_OP_V(FW_ETH_TX_PKT_WR) |
1282 FW_WR_IMMDLEN_V(len));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001283 cpl = (void *)(wr + 1);
1284 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05301285 cntrl = hwcsum(adap->params.chip, skb) |
1286 TXPKT_IPCSUM_DIS_F;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001287 q->tx_cso++;
Varun Prakash84a200b2015-03-24 19:14:46 +05301288 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001289 }
1290
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001291 if (skb_vlan_tag_present(skb)) {
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001292 q->vlan_ins++;
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05301293 cntrl |= TXPKT_VLAN_VLD_F | TXPKT_VLAN_V(skb_vlan_tag_get(skb));
Varun Prakash84a200b2015-03-24 19:14:46 +05301294#ifdef CONFIG_CHELSIO_T4_FCOE
1295 if (skb->protocol == htons(ETH_P_FCOE))
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05301296 cntrl |= TXPKT_VLAN_V(
Varun Prakash84a200b2015-03-24 19:14:46 +05301297 ((skb->priority & 0x7) << VLAN_PRIO_SHIFT));
1298#endif /* CONFIG_CHELSIO_T4_FCOE */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001299 }
1300
Anish Bhatt397665d2015-07-17 13:12:33 -07001301 ctrl0 = TXPKT_OPCODE_V(CPL_TX_PKT_XT) | TXPKT_INTF_V(pi->tx_chan) |
1302 TXPKT_PF_V(adap->pf);
1303#ifdef CONFIG_CHELSIO_T4_DCB
1304 if (is_t4(adap->params.chip))
1305 ctrl0 |= TXPKT_OVLAN_IDX_V(q->dcb_prio);
1306 else
1307 ctrl0 |= TXPKT_T5_OVLAN_IDX_V(q->dcb_prio);
1308#endif
1309 cpl->ctrl0 = htonl(ctrl0);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001310 cpl->pack = htons(0);
1311 cpl->len = htons(skb->len);
1312 cpl->ctrl1 = cpu_to_be64(cntrl);
1313
Kumar Sanghvi0034b292014-02-18 17:56:14 +05301314 if (immediate) {
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001315 inline_tx_skb(skb, &q->q, cpl + 1);
Eric W. Biedermana7525192014-03-15 16:29:49 -07001316 dev_consume_skb_any(skb);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001317 } else {
1318 int last_desc;
1319
1320 write_sgl(skb, &q->q, (struct ulptx_sgl *)(cpl + 1), end, 0,
1321 addr);
1322 skb_orphan(skb);
1323
1324 last_desc = q->q.pidx + ndesc - 1;
1325 if (last_desc >= q->q.size)
1326 last_desc -= q->q.size;
1327 q->q.sdesc[last_desc].skb = skb;
1328 q->q.sdesc[last_desc].sgl = (struct ulptx_sgl *)(cpl + 1);
1329 }
1330
1331 txq_advance(&q->q, ndesc);
1332
1333 ring_tx_db(adap, &q->q, ndesc);
1334 return NETDEV_TX_OK;
1335}
1336
1337/**
1338 * reclaim_completed_tx_imm - reclaim completed control-queue Tx descs
1339 * @q: the SGE control Tx queue
1340 *
1341 * This is a variant of reclaim_completed_tx() that is used for Tx queues
1342 * that send only immediate data (presently just the control queues) and
1343 * thus do not have any sk_buffs to release.
1344 */
1345static inline void reclaim_completed_tx_imm(struct sge_txq *q)
1346{
Hariprasad Shenai632be192015-12-08 10:09:13 +05301347 int hw_cidx = ntohs(ACCESS_ONCE(q->stat->cidx));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001348 int reclaim = hw_cidx - q->cidx;
1349
1350 if (reclaim < 0)
1351 reclaim += q->size;
1352
1353 q->in_use -= reclaim;
1354 q->cidx = hw_cidx;
1355}
1356
1357/**
1358 * is_imm - check whether a packet can be sent as immediate data
1359 * @skb: the packet
1360 *
1361 * Returns true if a packet can be sent as a WR with immediate data.
1362 */
1363static inline int is_imm(const struct sk_buff *skb)
1364{
1365 return skb->len <= MAX_CTRL_WR_LEN;
1366}
1367
1368/**
1369 * ctrlq_check_stop - check if a control queue is full and should stop
1370 * @q: the queue
1371 * @wr: most recent WR written to the queue
1372 *
1373 * Check if a control queue has become full and should be stopped.
1374 * We clean up control queue descriptors very lazily, only when we are out.
1375 * If the queue is still full after reclaiming any completed descriptors
1376 * we suspend it and have the last WR wake it up.
1377 */
1378static void ctrlq_check_stop(struct sge_ctrl_txq *q, struct fw_wr_hdr *wr)
1379{
1380 reclaim_completed_tx_imm(&q->q);
1381 if (unlikely(txq_avail(&q->q) < TXQ_STOP_THRES)) {
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301382 wr->lo |= htonl(FW_WR_EQUEQ_F | FW_WR_EQUIQ_F);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001383 q->q.stops++;
1384 q->full = 1;
1385 }
1386}
1387
1388/**
1389 * ctrl_xmit - send a packet through an SGE control Tx queue
1390 * @q: the control queue
1391 * @skb: the packet
1392 *
1393 * Send a packet through an SGE control Tx queue. Packets sent through
1394 * a control queue must fit entirely as immediate data.
1395 */
1396static int ctrl_xmit(struct sge_ctrl_txq *q, struct sk_buff *skb)
1397{
1398 unsigned int ndesc;
1399 struct fw_wr_hdr *wr;
1400
1401 if (unlikely(!is_imm(skb))) {
1402 WARN_ON(1);
1403 dev_kfree_skb(skb);
1404 return NET_XMIT_DROP;
1405 }
1406
1407 ndesc = DIV_ROUND_UP(skb->len, sizeof(struct tx_desc));
1408 spin_lock(&q->sendq.lock);
1409
1410 if (unlikely(q->full)) {
1411 skb->priority = ndesc; /* save for restart */
1412 __skb_queue_tail(&q->sendq, skb);
1413 spin_unlock(&q->sendq.lock);
1414 return NET_XMIT_CN;
1415 }
1416
1417 wr = (struct fw_wr_hdr *)&q->q.desc[q->q.pidx];
1418 inline_tx_skb(skb, &q->q, wr);
1419
1420 txq_advance(&q->q, ndesc);
1421 if (unlikely(txq_avail(&q->q) < TXQ_STOP_THRES))
1422 ctrlq_check_stop(q, wr);
1423
1424 ring_tx_db(q->adap, &q->q, ndesc);
1425 spin_unlock(&q->sendq.lock);
1426
1427 kfree_skb(skb);
1428 return NET_XMIT_SUCCESS;
1429}
1430
1431/**
1432 * restart_ctrlq - restart a suspended control queue
1433 * @data: the control queue to restart
1434 *
1435 * Resumes transmission on a suspended Tx control queue.
1436 */
1437static void restart_ctrlq(unsigned long data)
1438{
1439 struct sk_buff *skb;
1440 unsigned int written = 0;
1441 struct sge_ctrl_txq *q = (struct sge_ctrl_txq *)data;
1442
1443 spin_lock(&q->sendq.lock);
1444 reclaim_completed_tx_imm(&q->q);
1445 BUG_ON(txq_avail(&q->q) < TXQ_STOP_THRES); /* q should be empty */
1446
1447 while ((skb = __skb_dequeue(&q->sendq)) != NULL) {
1448 struct fw_wr_hdr *wr;
1449 unsigned int ndesc = skb->priority; /* previously saved */
1450
Hariprasad Shenaia4011fd2015-08-12 16:55:07 +05301451 written += ndesc;
1452 /* Write descriptors and free skbs outside the lock to limit
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001453 * wait times. q->full is still set so new skbs will be queued.
1454 */
Hariprasad Shenaia4011fd2015-08-12 16:55:07 +05301455 wr = (struct fw_wr_hdr *)&q->q.desc[q->q.pidx];
1456 txq_advance(&q->q, ndesc);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001457 spin_unlock(&q->sendq.lock);
1458
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001459 inline_tx_skb(skb, &q->q, wr);
1460 kfree_skb(skb);
1461
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001462 if (unlikely(txq_avail(&q->q) < TXQ_STOP_THRES)) {
1463 unsigned long old = q->q.stops;
1464
1465 ctrlq_check_stop(q, wr);
1466 if (q->q.stops != old) { /* suspended anew */
1467 spin_lock(&q->sendq.lock);
1468 goto ringdb;
1469 }
1470 }
1471 if (written > 16) {
1472 ring_tx_db(q->adap, &q->q, written);
1473 written = 0;
1474 }
1475 spin_lock(&q->sendq.lock);
1476 }
1477 q->full = 0;
1478ringdb: if (written)
1479 ring_tx_db(q->adap, &q->q, written);
1480 spin_unlock(&q->sendq.lock);
1481}
1482
1483/**
1484 * t4_mgmt_tx - send a management message
1485 * @adap: the adapter
1486 * @skb: the packet containing the management message
1487 *
1488 * Send a management message through control queue 0.
1489 */
1490int t4_mgmt_tx(struct adapter *adap, struct sk_buff *skb)
1491{
1492 int ret;
1493
1494 local_bh_disable();
1495 ret = ctrl_xmit(&adap->sge.ctrlq[0], skb);
1496 local_bh_enable();
1497 return ret;
1498}
1499
1500/**
1501 * is_ofld_imm - check whether a packet can be sent as immediate data
1502 * @skb: the packet
1503 *
1504 * Returns true if a packet can be sent as an offload WR with immediate
1505 * data. We currently use the same limit as for Ethernet packets.
1506 */
1507static inline int is_ofld_imm(const struct sk_buff *skb)
1508{
1509 return skb->len <= MAX_IMM_TX_PKT_LEN;
1510}
1511
1512/**
1513 * calc_tx_flits_ofld - calculate # of flits for an offload packet
1514 * @skb: the packet
1515 *
1516 * Returns the number of flits needed for the given offload packet.
1517 * These packets are already fully constructed and no additional headers
1518 * will be added.
1519 */
1520static inline unsigned int calc_tx_flits_ofld(const struct sk_buff *skb)
1521{
1522 unsigned int flits, cnt;
1523
1524 if (is_ofld_imm(skb))
1525 return DIV_ROUND_UP(skb->len, 8);
1526
1527 flits = skb_transport_offset(skb) / 8U; /* headers */
1528 cnt = skb_shinfo(skb)->nr_frags;
Li RongQing15dd16c2013-06-03 22:11:16 +00001529 if (skb_tail_pointer(skb) != skb_transport_header(skb))
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001530 cnt++;
1531 return flits + sgl_len(cnt);
1532}
1533
1534/**
1535 * txq_stop_maperr - stop a Tx queue due to I/O MMU exhaustion
1536 * @adap: the adapter
1537 * @q: the queue to stop
1538 *
1539 * Mark a Tx queue stopped due to I/O MMU exhaustion and resulting
1540 * inability to map packets. A periodic timer attempts to restart
1541 * queues so marked.
1542 */
1543static void txq_stop_maperr(struct sge_ofld_txq *q)
1544{
1545 q->mapping_err++;
1546 q->q.stops++;
Dimitris Michailidise46dab42010-08-23 17:20:58 +00001547 set_bit(q->q.cntxt_id - q->adap->sge.egr_start,
1548 q->adap->sge.txq_maperr);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001549}
1550
1551/**
1552 * ofldtxq_stop - stop an offload Tx queue that has become full
1553 * @q: the queue to stop
1554 * @skb: the packet causing the queue to become full
1555 *
1556 * Stops an offload Tx queue that has become full and modifies the packet
1557 * being written to request a wakeup.
1558 */
1559static void ofldtxq_stop(struct sge_ofld_txq *q, struct sk_buff *skb)
1560{
1561 struct fw_wr_hdr *wr = (struct fw_wr_hdr *)skb->data;
1562
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301563 wr->lo |= htonl(FW_WR_EQUEQ_F | FW_WR_EQUIQ_F);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001564 q->q.stops++;
1565 q->full = 1;
1566}
1567
1568/**
Hariprasad Shenai126fca62015-12-08 10:09:14 +05301569 * service_ofldq - service/restart a suspended offload queue
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001570 * @q: the offload queue
1571 *
Hariprasad Shenai126fca62015-12-08 10:09:14 +05301572 * Services an offload Tx queue by moving packets from its Pending Send
1573 * Queue to the Hardware TX ring. The function starts and ends with the
1574 * Send Queue locked, but drops the lock while putting the skb at the
1575 * head of the Send Queue onto the Hardware TX Ring. Dropping the lock
1576 * allows more skbs to be added to the Send Queue by other threads.
1577 * The packet being processed at the head of the Pending Send Queue is
1578 * left on the queue in case we experience DMA Mapping errors, etc.
1579 * and need to give up and restart later.
1580 *
1581 * service_ofldq() can be thought of as a task which opportunistically
1582 * uses other threads execution contexts. We use the Offload Queue
1583 * boolean "service_ofldq_running" to make sure that only one instance
1584 * is ever running at a time ...
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001585 */
1586static void service_ofldq(struct sge_ofld_txq *q)
1587{
Hariprasad Shenai8d0557d2015-12-08 10:09:15 +05301588 u64 *pos, *before, *end;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001589 int credits;
1590 struct sk_buff *skb;
Hariprasad Shenai8d0557d2015-12-08 10:09:15 +05301591 struct sge_txq *txq;
1592 unsigned int left;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001593 unsigned int written = 0;
1594 unsigned int flits, ndesc;
1595
Hariprasad Shenai126fca62015-12-08 10:09:14 +05301596 /* If another thread is currently in service_ofldq() processing the
1597 * Pending Send Queue then there's nothing to do. Otherwise, flag
1598 * that we're doing the work and continue. Examining/modifying
1599 * the Offload Queue boolean "service_ofldq_running" must be done
1600 * while holding the Pending Send Queue Lock.
1601 */
1602 if (q->service_ofldq_running)
1603 return;
1604 q->service_ofldq_running = true;
1605
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001606 while ((skb = skb_peek(&q->sendq)) != NULL && !q->full) {
Hariprasad Shenai126fca62015-12-08 10:09:14 +05301607 /* We drop the lock while we're working with the skb at the
1608 * head of the Pending Send Queue. This allows more skbs to
1609 * be added to the Pending Send Queue while we're working on
1610 * this one. We don't need to lock to guard the TX Ring
1611 * updates because only one thread of execution is ever
1612 * allowed into service_ofldq() at a time.
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001613 */
1614 spin_unlock(&q->sendq.lock);
1615
1616 reclaim_completed_tx(q->adap, &q->q, false);
1617
1618 flits = skb->priority; /* previously saved */
1619 ndesc = flits_to_desc(flits);
1620 credits = txq_avail(&q->q) - ndesc;
1621 BUG_ON(credits < 0);
1622 if (unlikely(credits < TXQ_STOP_THRES))
1623 ofldtxq_stop(q, skb);
1624
1625 pos = (u64 *)&q->q.desc[q->q.pidx];
1626 if (is_ofld_imm(skb))
1627 inline_tx_skb(skb, &q->q, pos);
1628 else if (map_skb(q->adap->pdev_dev, skb,
1629 (dma_addr_t *)skb->head)) {
1630 txq_stop_maperr(q);
1631 spin_lock(&q->sendq.lock);
1632 break;
1633 } else {
1634 int last_desc, hdr_len = skb_transport_offset(skb);
1635
Hariprasad Shenai8d0557d2015-12-08 10:09:15 +05301636 /* The WR headers may not fit within one descriptor.
1637 * So we need to deal with wrap-around here.
1638 */
1639 before = (u64 *)pos;
1640 end = (u64 *)pos + flits;
1641 txq = &q->q;
1642 pos = (void *)inline_tx_skb_header(skb, &q->q,
1643 (void *)pos,
1644 hdr_len);
1645 if (before > (u64 *)pos) {
1646 left = (u8 *)end - (u8 *)txq->stat;
1647 end = (void *)txq->desc + left;
1648 }
1649
1650 /* If current position is already at the end of the
1651 * ofld queue, reset the current to point to
1652 * start of the queue and update the end ptr as well.
1653 */
1654 if (pos == (u64 *)txq->stat) {
1655 left = (u8 *)end - (u8 *)txq->stat;
1656 end = (void *)txq->desc + left;
1657 pos = (void *)txq->desc;
1658 }
1659
1660 write_sgl(skb, &q->q, (void *)pos,
1661 end, hdr_len,
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001662 (dma_addr_t *)skb->head);
1663#ifdef CONFIG_NEED_DMA_MAP_STATE
1664 skb->dev = q->adap->port[0];
1665 skb->destructor = deferred_unmap_destructor;
1666#endif
1667 last_desc = q->q.pidx + ndesc - 1;
1668 if (last_desc >= q->q.size)
1669 last_desc -= q->q.size;
1670 q->q.sdesc[last_desc].skb = skb;
1671 }
1672
1673 txq_advance(&q->q, ndesc);
1674 written += ndesc;
1675 if (unlikely(written > 32)) {
1676 ring_tx_db(q->adap, &q->q, written);
1677 written = 0;
1678 }
1679
Hariprasad Shenai126fca62015-12-08 10:09:14 +05301680 /* Reacquire the Pending Send Queue Lock so we can unlink the
1681 * skb we've just successfully transferred to the TX Ring and
1682 * loop for the next skb which may be at the head of the
1683 * Pending Send Queue.
1684 */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001685 spin_lock(&q->sendq.lock);
1686 __skb_unlink(skb, &q->sendq);
1687 if (is_ofld_imm(skb))
1688 kfree_skb(skb);
1689 }
1690 if (likely(written))
1691 ring_tx_db(q->adap, &q->q, written);
Hariprasad Shenai126fca62015-12-08 10:09:14 +05301692
1693 /*Indicate that no thread is processing the Pending Send Queue
1694 * currently.
1695 */
1696 q->service_ofldq_running = false;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001697}
1698
1699/**
1700 * ofld_xmit - send a packet through an offload queue
1701 * @q: the Tx offload queue
1702 * @skb: the packet
1703 *
1704 * Send an offload packet through an SGE offload queue.
1705 */
1706static int ofld_xmit(struct sge_ofld_txq *q, struct sk_buff *skb)
1707{
1708 skb->priority = calc_tx_flits_ofld(skb); /* save for restart */
1709 spin_lock(&q->sendq.lock);
Hariprasad Shenai126fca62015-12-08 10:09:14 +05301710
1711 /* Queue the new skb onto the Offload Queue's Pending Send Queue. If
1712 * that results in this new skb being the only one on the queue, start
1713 * servicing it. If there are other skbs already on the list, then
1714 * either the queue is currently being processed or it's been stopped
1715 * for some reason and it'll be restarted at a later time. Restart
1716 * paths are triggered by events like experiencing a DMA Mapping Error
1717 * or filling the Hardware TX Ring.
1718 */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001719 __skb_queue_tail(&q->sendq, skb);
1720 if (q->sendq.qlen == 1)
1721 service_ofldq(q);
Hariprasad Shenai126fca62015-12-08 10:09:14 +05301722
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001723 spin_unlock(&q->sendq.lock);
1724 return NET_XMIT_SUCCESS;
1725}
1726
1727/**
1728 * restart_ofldq - restart a suspended offload queue
1729 * @data: the offload queue to restart
1730 *
1731 * Resumes transmission on a suspended Tx offload queue.
1732 */
1733static void restart_ofldq(unsigned long data)
1734{
1735 struct sge_ofld_txq *q = (struct sge_ofld_txq *)data;
1736
1737 spin_lock(&q->sendq.lock);
1738 q->full = 0; /* the queue actually is completely empty now */
1739 service_ofldq(q);
1740 spin_unlock(&q->sendq.lock);
1741}
1742
1743/**
1744 * skb_txq - return the Tx queue an offload packet should use
1745 * @skb: the packet
1746 *
1747 * Returns the Tx queue an offload packet should use as indicated by bits
1748 * 1-15 in the packet's queue_mapping.
1749 */
1750static inline unsigned int skb_txq(const struct sk_buff *skb)
1751{
1752 return skb->queue_mapping >> 1;
1753}
1754
1755/**
1756 * is_ctrl_pkt - return whether an offload packet is a control packet
1757 * @skb: the packet
1758 *
1759 * Returns whether an offload packet should use an OFLD or a CTRL
1760 * Tx queue as indicated by bit 0 in the packet's queue_mapping.
1761 */
1762static inline unsigned int is_ctrl_pkt(const struct sk_buff *skb)
1763{
1764 return skb->queue_mapping & 1;
1765}
1766
1767static inline int ofld_send(struct adapter *adap, struct sk_buff *skb)
1768{
1769 unsigned int idx = skb_txq(skb);
1770
Kumar Sanghvi4fe44dd2014-02-18 17:56:11 +05301771 if (unlikely(is_ctrl_pkt(skb))) {
1772 /* Single ctrl queue is a requirement for LE workaround path */
1773 if (adap->tids.nsftids)
1774 idx = 0;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001775 return ctrl_xmit(&adap->sge.ctrlq[idx], skb);
Kumar Sanghvi4fe44dd2014-02-18 17:56:11 +05301776 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001777 return ofld_xmit(&adap->sge.ofldtxq[idx], skb);
1778}
1779
1780/**
1781 * t4_ofld_send - send an offload packet
1782 * @adap: the adapter
1783 * @skb: the packet
1784 *
1785 * Sends an offload packet. We use the packet queue_mapping to select the
1786 * appropriate Tx queue as follows: bit 0 indicates whether the packet
1787 * should be sent as regular or control, bits 1-15 select the queue.
1788 */
1789int t4_ofld_send(struct adapter *adap, struct sk_buff *skb)
1790{
1791 int ret;
1792
1793 local_bh_disable();
1794 ret = ofld_send(adap, skb);
1795 local_bh_enable();
1796 return ret;
1797}
1798
1799/**
1800 * cxgb4_ofld_send - send an offload packet
1801 * @dev: the net device
1802 * @skb: the packet
1803 *
1804 * Sends an offload packet. This is an exported version of @t4_ofld_send,
1805 * intended for ULDs.
1806 */
1807int cxgb4_ofld_send(struct net_device *dev, struct sk_buff *skb)
1808{
1809 return t4_ofld_send(netdev2adap(dev), skb);
1810}
1811EXPORT_SYMBOL(cxgb4_ofld_send);
1812
Ian Campbelle91b0f22011-10-19 23:01:46 +00001813static inline void copy_frags(struct sk_buff *skb,
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001814 const struct pkt_gl *gl, unsigned int offset)
1815{
Ian Campbelle91b0f22011-10-19 23:01:46 +00001816 int i;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001817
1818 /* usually there's just one frag */
Ian Campbelle91b0f22011-10-19 23:01:46 +00001819 __skb_fill_page_desc(skb, 0, gl->frags[0].page,
1820 gl->frags[0].offset + offset,
1821 gl->frags[0].size - offset);
1822 skb_shinfo(skb)->nr_frags = gl->nfrags;
1823 for (i = 1; i < gl->nfrags; i++)
1824 __skb_fill_page_desc(skb, i, gl->frags[i].page,
1825 gl->frags[i].offset,
1826 gl->frags[i].size);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001827
1828 /* get a reference to the last page, we don't own it */
Ian Campbelle91b0f22011-10-19 23:01:46 +00001829 get_page(gl->frags[gl->nfrags - 1].page);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001830}
1831
1832/**
1833 * cxgb4_pktgl_to_skb - build an sk_buff from a packet gather list
1834 * @gl: the gather list
1835 * @skb_len: size of sk_buff main body if it carries fragments
1836 * @pull_len: amount of data to move to the sk_buff's main body
1837 *
1838 * Builds an sk_buff from the given packet gather list. Returns the
1839 * sk_buff or %NULL if sk_buff allocation failed.
1840 */
1841struct sk_buff *cxgb4_pktgl_to_skb(const struct pkt_gl *gl,
1842 unsigned int skb_len, unsigned int pull_len)
1843{
1844 struct sk_buff *skb;
1845
1846 /*
1847 * Below we rely on RX_COPY_THRES being less than the smallest Rx buffer
1848 * size, which is expected since buffers are at least PAGE_SIZEd.
1849 * In this case packets up to RX_COPY_THRES have only one fragment.
1850 */
1851 if (gl->tot_len <= RX_COPY_THRES) {
1852 skb = dev_alloc_skb(gl->tot_len);
1853 if (unlikely(!skb))
1854 goto out;
1855 __skb_put(skb, gl->tot_len);
1856 skb_copy_to_linear_data(skb, gl->va, gl->tot_len);
1857 } else {
1858 skb = dev_alloc_skb(skb_len);
1859 if (unlikely(!skb))
1860 goto out;
1861 __skb_put(skb, pull_len);
1862 skb_copy_to_linear_data(skb, gl->va, pull_len);
1863
Ian Campbelle91b0f22011-10-19 23:01:46 +00001864 copy_frags(skb, gl, pull_len);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001865 skb->len = gl->tot_len;
1866 skb->data_len = skb->len - pull_len;
1867 skb->truesize += skb->data_len;
1868 }
1869out: return skb;
1870}
1871EXPORT_SYMBOL(cxgb4_pktgl_to_skb);
1872
1873/**
1874 * t4_pktgl_free - free a packet gather list
1875 * @gl: the gather list
1876 *
1877 * Releases the pages of a packet gather list. We do not own the last
1878 * page on the list and do not free it.
1879 */
Roland Dreierde498c82010-04-21 08:59:17 +00001880static void t4_pktgl_free(const struct pkt_gl *gl)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001881{
1882 int n;
Ian Campbelle91b0f22011-10-19 23:01:46 +00001883 const struct page_frag *p;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001884
1885 for (p = gl->frags, n = gl->nfrags - 1; n--; p++)
1886 put_page(p->page);
1887}
1888
1889/*
1890 * Process an MPS trace packet. Give it an unused protocol number so it won't
1891 * be delivered to anyone and send it to the stack for capture.
1892 */
1893static noinline int handle_trace_pkt(struct adapter *adap,
1894 const struct pkt_gl *gl)
1895{
1896 struct sk_buff *skb;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001897
1898 skb = cxgb4_pktgl_to_skb(gl, RX_PULL_LEN, RX_PULL_LEN);
1899 if (unlikely(!skb)) {
1900 t4_pktgl_free(gl);
1901 return 0;
1902 }
1903
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05301904 if (is_t4(adap->params.chip))
Santosh Rastapur0a57a532013-03-14 05:08:49 +00001905 __skb_pull(skb, sizeof(struct cpl_trace_pkt));
1906 else
1907 __skb_pull(skb, sizeof(struct cpl_t5_trace_pkt));
1908
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001909 skb_reset_mac_header(skb);
1910 skb->protocol = htons(0xffff);
1911 skb->dev = adap->port[0];
1912 netif_receive_skb(skb);
1913 return 0;
1914}
1915
Hariprasad Shenai5e2a5eb2015-09-28 10:26:53 +05301916/**
1917 * cxgb4_sgetim_to_hwtstamp - convert sge time stamp to hw time stamp
1918 * @adap: the adapter
1919 * @hwtstamps: time stamp structure to update
1920 * @sgetstamp: 60bit iqe timestamp
1921 *
1922 * Every ingress queue entry has the 60-bit timestamp, convert that timestamp
1923 * which is in Core Clock ticks into ktime_t and assign it
1924 **/
1925static void cxgb4_sgetim_to_hwtstamp(struct adapter *adap,
1926 struct skb_shared_hwtstamps *hwtstamps,
1927 u64 sgetstamp)
1928{
1929 u64 ns;
1930 u64 tmp = (sgetstamp * 1000 * 1000 + adap->params.vpd.cclk / 2);
1931
1932 ns = div_u64(tmp, adap->params.vpd.cclk);
1933
1934 memset(hwtstamps, 0, sizeof(*hwtstamps));
1935 hwtstamps->hwtstamp = ns_to_ktime(ns);
1936}
1937
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001938static void do_gro(struct sge_eth_rxq *rxq, const struct pkt_gl *gl,
1939 const struct cpl_rx_pkt *pkt)
1940{
Vipul Pandya52367a72012-09-26 02:39:38 +00001941 struct adapter *adapter = rxq->rspq.adap;
1942 struct sge *s = &adapter->sge;
Hariprasad Shenai5e2a5eb2015-09-28 10:26:53 +05301943 struct port_info *pi;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001944 int ret;
1945 struct sk_buff *skb;
1946
1947 skb = napi_get_frags(&rxq->rspq.napi);
1948 if (unlikely(!skb)) {
1949 t4_pktgl_free(gl);
1950 rxq->stats.rx_drops++;
1951 return;
1952 }
1953
Vipul Pandya52367a72012-09-26 02:39:38 +00001954 copy_frags(skb, gl, s->pktshift);
1955 skb->len = gl->tot_len - s->pktshift;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001956 skb->data_len = skb->len;
1957 skb->truesize += skb->data_len;
1958 skb->ip_summed = CHECKSUM_UNNECESSARY;
1959 skb_record_rx_queue(skb, rxq->rspq.idx);
Hariprasad Shenai5e2a5eb2015-09-28 10:26:53 +05301960 pi = netdev_priv(skb->dev);
1961 if (pi->rxtstamp)
1962 cxgb4_sgetim_to_hwtstamp(adapter, skb_hwtstamps(skb),
1963 gl->sgetstamp);
Dimitris Michailidis87b6cf52010-04-27 16:22:42 -07001964 if (rxq->rspq.netdev->features & NETIF_F_RXHASH)
Tom Herbert82649892013-12-17 23:23:29 -08001965 skb_set_hash(skb, (__force u32)pkt->rsshdr.hash_val,
1966 PKT_HASH_TYPE_L3);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001967
1968 if (unlikely(pkt->vlan_ex)) {
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001969 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), ntohs(pkt->vlan));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001970 rxq->stats.vlan_ex++;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001971 }
1972 ret = napi_gro_frags(&rxq->rspq.napi);
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001973 if (ret == GRO_HELD)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001974 rxq->stats.lro_pkts++;
1975 else if (ret == GRO_MERGED || ret == GRO_MERGED_FREE)
1976 rxq->stats.lro_merged++;
1977 rxq->stats.pkts++;
1978 rxq->stats.rx_cso++;
1979}
1980
1981/**
1982 * t4_ethrx_handler - process an ingress ethernet packet
1983 * @q: the response queue that received the packet
1984 * @rsp: the response queue descriptor holding the RX_PKT message
1985 * @si: the gather list of packet fragments
1986 *
1987 * Process an ingress ethernet packet and deliver it to the stack.
1988 */
1989int t4_ethrx_handler(struct sge_rspq *q, const __be64 *rsp,
1990 const struct pkt_gl *si)
1991{
1992 bool csum_ok;
1993 struct sk_buff *skb;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001994 const struct cpl_rx_pkt *pkt;
1995 struct sge_eth_rxq *rxq = container_of(q, struct sge_eth_rxq, rspq);
Vipul Pandya52367a72012-09-26 02:39:38 +00001996 struct sge *s = &q->adap->sge;
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05301997 int cpl_trace_pkt = is_t4(q->adap->params.chip) ?
Santosh Rastapur0a57a532013-03-14 05:08:49 +00001998 CPL_TRACE_PKT : CPL_TRACE_PKT_T5;
Varun Prakash84a200b2015-03-24 19:14:46 +05301999 struct port_info *pi;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002000
Santosh Rastapur0a57a532013-03-14 05:08:49 +00002001 if (unlikely(*(u8 *)rsp == cpl_trace_pkt))
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002002 return handle_trace_pkt(q->adap, si);
2003
Dimitris Michailidis87b6cf52010-04-27 16:22:42 -07002004 pkt = (const struct cpl_rx_pkt *)rsp;
Hariprasad Shenaicca28222014-05-07 18:01:03 +05302005 csum_ok = pkt->csum_calc && !pkt->err_vec &&
2006 (q->netdev->features & NETIF_F_RXCSUM);
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -08002007 if ((pkt->l2info & htonl(RXF_TCP_F)) &&
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05302008 !(cxgb_poll_busy_polling(q)) &&
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002009 (q->netdev->features & NETIF_F_GRO) && csum_ok && !pkt->ip_frag) {
2010 do_gro(rxq, si, pkt);
2011 return 0;
2012 }
2013
2014 skb = cxgb4_pktgl_to_skb(si, RX_PKT_SKB_LEN, RX_PULL_LEN);
2015 if (unlikely(!skb)) {
2016 t4_pktgl_free(si);
2017 rxq->stats.rx_drops++;
2018 return 0;
2019 }
2020
Vipul Pandya52367a72012-09-26 02:39:38 +00002021 __skb_pull(skb, s->pktshift); /* remove ethernet header padding */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002022 skb->protocol = eth_type_trans(skb, q->netdev);
2023 skb_record_rx_queue(skb, q->idx);
Dimitris Michailidis87b6cf52010-04-27 16:22:42 -07002024 if (skb->dev->features & NETIF_F_RXHASH)
Tom Herbert82649892013-12-17 23:23:29 -08002025 skb_set_hash(skb, (__force u32)pkt->rsshdr.hash_val,
2026 PKT_HASH_TYPE_L3);
Dimitris Michailidis87b6cf52010-04-27 16:22:42 -07002027
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002028 rxq->stats.pkts++;
2029
Hariprasad Shenai5e2a5eb2015-09-28 10:26:53 +05302030 pi = netdev_priv(skb->dev);
2031 if (pi->rxtstamp)
2032 cxgb4_sgetim_to_hwtstamp(q->adap, skb_hwtstamps(skb),
2033 si->sgetstamp);
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -08002034 if (csum_ok && (pkt->l2info & htonl(RXF_UDP_F | RXF_TCP_F))) {
Dimitris Michailidisba5d3c62010-08-02 13:19:17 +00002035 if (!pkt->ip_frag) {
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002036 skb->ip_summed = CHECKSUM_UNNECESSARY;
Dimitris Michailidisba5d3c62010-08-02 13:19:17 +00002037 rxq->stats.rx_cso++;
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -08002038 } else if (pkt->l2info & htonl(RXF_IP_F)) {
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002039 __sum16 c = (__force __sum16)pkt->csum;
2040 skb->csum = csum_unfold(c);
2041 skb->ip_summed = CHECKSUM_COMPLETE;
Dimitris Michailidisba5d3c62010-08-02 13:19:17 +00002042 rxq->stats.rx_cso++;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002043 }
Varun Prakash84a200b2015-03-24 19:14:46 +05302044 } else {
Eric Dumazetbc8acf22010-09-02 13:07:41 -07002045 skb_checksum_none_assert(skb);
Varun Prakash84a200b2015-03-24 19:14:46 +05302046#ifdef CONFIG_CHELSIO_T4_FCOE
2047#define CPL_RX_PKT_FLAGS (RXF_PSH_F | RXF_SYN_F | RXF_UDP_F | \
2048 RXF_TCP_F | RXF_IP_F | RXF_IP6_F | RXF_LRO_F)
2049
Varun Prakash84a200b2015-03-24 19:14:46 +05302050 if (!(pkt->l2info & cpu_to_be32(CPL_RX_PKT_FLAGS))) {
2051 if ((pkt->l2info & cpu_to_be32(RXF_FCOE_F)) &&
2052 (pi->fcoe.flags & CXGB_FCOE_ENABLED)) {
2053 if (!(pkt->err_vec & cpu_to_be16(RXERR_CSUM_F)))
2054 skb->ip_summed = CHECKSUM_UNNECESSARY;
2055 }
2056 }
2057
2058#undef CPL_RX_PKT_FLAGS
2059#endif /* CONFIG_CHELSIO_T4_FCOE */
2060 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002061
2062 if (unlikely(pkt->vlan_ex)) {
Patrick McHardy86a9bad2013-04-19 02:04:30 +00002063 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), ntohs(pkt->vlan));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002064 rxq->stats.vlan_ex++;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00002065 }
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05302066 skb_mark_napi_id(skb, &q->napi);
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00002067 netif_receive_skb(skb);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002068 return 0;
2069}
2070
2071/**
2072 * restore_rx_bufs - put back a packet's Rx buffers
2073 * @si: the packet gather list
2074 * @q: the SGE free list
2075 * @frags: number of FL buffers to restore
2076 *
2077 * Puts back on an FL the Rx buffers associated with @si. The buffers
2078 * have already been unmapped and are left unmapped, we mark them so to
2079 * prevent further unmapping attempts.
2080 *
2081 * This function undoes a series of @unmap_rx_buf calls when we find out
2082 * that the current packet can't be processed right away afterall and we
2083 * need to come back to it later. This is a very rare event and there's
2084 * no effort to make this particularly efficient.
2085 */
2086static void restore_rx_bufs(const struct pkt_gl *si, struct sge_fl *q,
2087 int frags)
2088{
2089 struct rx_sw_desc *d;
2090
2091 while (frags--) {
2092 if (q->cidx == 0)
2093 q->cidx = q->size - 1;
2094 else
2095 q->cidx--;
2096 d = &q->sdesc[q->cidx];
2097 d->page = si->frags[frags].page;
2098 d->dma_addr |= RX_UNMAPPED_BUF;
2099 q->avail++;
2100 }
2101}
2102
2103/**
2104 * is_new_response - check if a response is newly written
2105 * @r: the response descriptor
2106 * @q: the response queue
2107 *
2108 * Returns true if a response descriptor contains a yet unprocessed
2109 * response.
2110 */
2111static inline bool is_new_response(const struct rsp_ctrl *r,
2112 const struct sge_rspq *q)
2113{
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05302114 return (r->type_gen >> RSPD_GEN_S) == q->gen;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002115}
2116
2117/**
2118 * rspq_next - advance to the next entry in a response queue
2119 * @q: the queue
2120 *
2121 * Updates the state of a response queue to advance it to the next entry.
2122 */
2123static inline void rspq_next(struct sge_rspq *q)
2124{
2125 q->cur_desc = (void *)q->cur_desc + q->iqe_len;
2126 if (unlikely(++q->cidx == q->size)) {
2127 q->cidx = 0;
2128 q->gen ^= 1;
2129 q->cur_desc = q->desc;
2130 }
2131}
2132
2133/**
2134 * process_responses - process responses from an SGE response queue
2135 * @q: the ingress queue to process
2136 * @budget: how many responses can be processed in this round
2137 *
2138 * Process responses from an SGE response queue up to the supplied budget.
2139 * Responses include received packets as well as control messages from FW
2140 * or HW.
2141 *
2142 * Additionally choose the interrupt holdoff time for the next interrupt
2143 * on this queue. If the system is under memory shortage use a fairly
2144 * long delay to help recovery.
2145 */
2146static int process_responses(struct sge_rspq *q, int budget)
2147{
2148 int ret, rsp_type;
2149 int budget_left = budget;
2150 const struct rsp_ctrl *rc;
2151 struct sge_eth_rxq *rxq = container_of(q, struct sge_eth_rxq, rspq);
Vipul Pandya52367a72012-09-26 02:39:38 +00002152 struct adapter *adapter = q->adap;
2153 struct sge *s = &adapter->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002154
2155 while (likely(budget_left)) {
2156 rc = (void *)q->cur_desc + (q->iqe_len - sizeof(*rc));
2157 if (!is_new_response(rc, q))
2158 break;
2159
Alexander Duyck019be1c2015-04-08 18:49:29 -07002160 dma_rmb();
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05302161 rsp_type = RSPD_TYPE_G(rc->type_gen);
2162 if (likely(rsp_type == RSPD_TYPE_FLBUF_X)) {
Ian Campbelle91b0f22011-10-19 23:01:46 +00002163 struct page_frag *fp;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002164 struct pkt_gl si;
2165 const struct rx_sw_desc *rsd;
2166 u32 len = ntohl(rc->pldbuflen_qid), bufsz, frags;
2167
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05302168 if (len & RSPD_NEWBUF_F) {
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002169 if (likely(q->offset > 0)) {
2170 free_rx_bufs(q->adap, &rxq->fl, 1);
2171 q->offset = 0;
2172 }
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05302173 len = RSPD_LEN_G(len);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002174 }
2175 si.tot_len = len;
2176
2177 /* gather packet fragments */
2178 for (frags = 0, fp = si.frags; ; frags++, fp++) {
2179 rsd = &rxq->fl.sdesc[rxq->fl.cidx];
Vipul Pandya52367a72012-09-26 02:39:38 +00002180 bufsz = get_buf_size(adapter, rsd);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002181 fp->page = rsd->page;
Ian Campbelle91b0f22011-10-19 23:01:46 +00002182 fp->offset = q->offset;
2183 fp->size = min(bufsz, len);
2184 len -= fp->size;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002185 if (!len)
2186 break;
2187 unmap_rx_buf(q->adap, &rxq->fl);
2188 }
2189
Hariprasad Shenai5e2a5eb2015-09-28 10:26:53 +05302190 si.sgetstamp = SGE_TIMESTAMP_G(
2191 be64_to_cpu(rc->last_flit));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002192 /*
2193 * Last buffer remains mapped so explicitly make it
2194 * coherent for CPU access.
2195 */
2196 dma_sync_single_for_cpu(q->adap->pdev_dev,
2197 get_buf_addr(rsd),
Ian Campbelle91b0f22011-10-19 23:01:46 +00002198 fp->size, DMA_FROM_DEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002199
2200 si.va = page_address(si.frags[0].page) +
Ian Campbelle91b0f22011-10-19 23:01:46 +00002201 si.frags[0].offset;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002202 prefetch(si.va);
2203
2204 si.nfrags = frags + 1;
2205 ret = q->handler(q, q->cur_desc, &si);
2206 if (likely(ret == 0))
Vipul Pandya52367a72012-09-26 02:39:38 +00002207 q->offset += ALIGN(fp->size, s->fl_align);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002208 else
2209 restore_rx_bufs(&si, &rxq->fl, frags);
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05302210 } else if (likely(rsp_type == RSPD_TYPE_CPL_X)) {
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002211 ret = q->handler(q, q->cur_desc, NULL);
2212 } else {
2213 ret = q->handler(q, (const __be64 *)rc, CXGB4_MSG_AN);
2214 }
2215
2216 if (unlikely(ret)) {
2217 /* couldn't process descriptor, back off for recovery */
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05302218 q->next_intr_params = QINTR_TIMER_IDX_V(NOMEM_TMR_IDX);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002219 break;
2220 }
2221
2222 rspq_next(q);
2223 budget_left--;
2224 }
2225
2226 if (q->offset >= 0 && rxq->fl.size - rxq->fl.avail >= 16)
2227 __refill_fl(q->adap, &rxq->fl);
2228 return budget - budget_left;
2229}
2230
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05302231#ifdef CONFIG_NET_RX_BUSY_POLL
2232int cxgb_busy_poll(struct napi_struct *napi)
2233{
2234 struct sge_rspq *q = container_of(napi, struct sge_rspq, napi);
2235 unsigned int params, work_done;
2236 u32 val;
2237
2238 if (!cxgb_poll_lock_poll(q))
2239 return LL_FLUSH_BUSY;
2240
2241 work_done = process_responses(q, 4);
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05302242 params = QINTR_TIMER_IDX_V(TIMERREG_COUNTER0_X) | QINTR_CNT_EN_V(1);
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05302243 q->next_intr_params = params;
2244 val = CIDXINC_V(work_done) | SEINTARM_V(params);
2245
2246 /* If we don't have access to the new User GTS (T5+), use the old
2247 * doorbell mechanism; otherwise use the new BAR2 mechanism.
2248 */
2249 if (unlikely(!q->bar2_addr))
2250 t4_write_reg(q->adap, MYPF_REG(SGE_PF_GTS_A),
2251 val | INGRESSQID_V((u32)q->cntxt_id));
2252 else {
2253 writel(val | INGRESSQID_V(q->bar2_qid),
2254 q->bar2_addr + SGE_UDB_GTS);
2255 wmb();
2256 }
2257
2258 cxgb_poll_unlock_poll(q);
2259 return work_done;
2260}
2261#endif /* CONFIG_NET_RX_BUSY_POLL */
2262
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002263/**
2264 * napi_rx_handler - the NAPI handler for Rx processing
2265 * @napi: the napi instance
2266 * @budget: how many packets we can process in this round
2267 *
2268 * Handler for new data events when using NAPI. This does not need any
2269 * locking or protection from interrupts as data interrupts are off at
2270 * this point and other adapter interrupts do not interfere (the latter
2271 * in not a concern at all with MSI-X as non-data interrupts then have
2272 * a separate handler).
2273 */
2274static int napi_rx_handler(struct napi_struct *napi, int budget)
2275{
2276 unsigned int params;
2277 struct sge_rspq *q = container_of(napi, struct sge_rspq, napi);
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05302278 int work_done;
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302279 u32 val;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002280
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05302281 if (!cxgb_poll_lock_napi(q))
2282 return budget;
2283
2284 work_done = process_responses(q, budget);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002285 if (likely(work_done < budget)) {
Hariprasad Shenaie553ec32014-09-26 00:23:55 +05302286 int timer_index;
2287
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002288 napi_complete(napi);
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05302289 timer_index = QINTR_TIMER_IDX_G(q->next_intr_params);
Hariprasad Shenaie553ec32014-09-26 00:23:55 +05302290
2291 if (q->adaptive_rx) {
2292 if (work_done > max(timer_pkt_quota[timer_index],
2293 MIN_NAPI_WORK))
2294 timer_index = (timer_index + 1);
2295 else
2296 timer_index = timer_index - 1;
2297
2298 timer_index = clamp(timer_index, 0, SGE_TIMERREGS - 1);
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05302299 q->next_intr_params =
2300 QINTR_TIMER_IDX_V(timer_index) |
2301 QINTR_CNT_EN_V(0);
Hariprasad Shenaie553ec32014-09-26 00:23:55 +05302302 params = q->next_intr_params;
2303 } else {
2304 params = q->next_intr_params;
2305 q->next_intr_params = q->intr_params;
2306 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002307 } else
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05302308 params = QINTR_TIMER_IDX_V(7);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002309
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302310 val = CIDXINC_V(work_done) | SEINTARM_V(params);
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302311
2312 /* If we don't have access to the new User GTS (T5+), use the old
2313 * doorbell mechanism; otherwise use the new BAR2 mechanism.
2314 */
2315 if (unlikely(q->bar2_addr == NULL)) {
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302316 t4_write_reg(q->adap, MYPF_REG(SGE_PF_GTS_A),
2317 val | INGRESSQID_V((u32)q->cntxt_id));
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302318 } else {
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302319 writel(val | INGRESSQID_V(q->bar2_qid),
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302320 q->bar2_addr + SGE_UDB_GTS);
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302321 wmb();
2322 }
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05302323 cxgb_poll_unlock_napi(q);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002324 return work_done;
2325}
2326
2327/*
2328 * The MSI-X interrupt handler for an SGE response queue.
2329 */
2330irqreturn_t t4_sge_intr_msix(int irq, void *cookie)
2331{
2332 struct sge_rspq *q = cookie;
2333
2334 napi_schedule(&q->napi);
2335 return IRQ_HANDLED;
2336}
2337
2338/*
2339 * Process the indirect interrupt entries in the interrupt queue and kick off
2340 * NAPI for each queue that has generated an entry.
2341 */
2342static unsigned int process_intrq(struct adapter *adap)
2343{
2344 unsigned int credits;
2345 const struct rsp_ctrl *rc;
2346 struct sge_rspq *q = &adap->sge.intrq;
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302347 u32 val;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002348
2349 spin_lock(&adap->sge.intrq_lock);
2350 for (credits = 0; ; credits++) {
2351 rc = (void *)q->cur_desc + (q->iqe_len - sizeof(*rc));
2352 if (!is_new_response(rc, q))
2353 break;
2354
Alexander Duyck019be1c2015-04-08 18:49:29 -07002355 dma_rmb();
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05302356 if (RSPD_TYPE_G(rc->type_gen) == RSPD_TYPE_INTR_X) {
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002357 unsigned int qid = ntohl(rc->pldbuflen_qid);
2358
Dimitris Michailidise46dab42010-08-23 17:20:58 +00002359 qid -= adap->sge.ingr_start;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002360 napi_schedule(&adap->sge.ingr_map[qid]->napi);
2361 }
2362
2363 rspq_next(q);
2364 }
2365
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302366 val = CIDXINC_V(credits) | SEINTARM_V(q->intr_params);
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302367
2368 /* If we don't have access to the new User GTS (T5+), use the old
2369 * doorbell mechanism; otherwise use the new BAR2 mechanism.
2370 */
2371 if (unlikely(q->bar2_addr == NULL)) {
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302372 t4_write_reg(adap, MYPF_REG(SGE_PF_GTS_A),
2373 val | INGRESSQID_V(q->cntxt_id));
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302374 } else {
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302375 writel(val | INGRESSQID_V(q->bar2_qid),
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302376 q->bar2_addr + SGE_UDB_GTS);
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302377 wmb();
2378 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002379 spin_unlock(&adap->sge.intrq_lock);
2380 return credits;
2381}
2382
2383/*
2384 * The MSI interrupt handler, which handles data events from SGE response queues
2385 * as well as error and other async events as they all use the same MSI vector.
2386 */
2387static irqreturn_t t4_intr_msi(int irq, void *cookie)
2388{
2389 struct adapter *adap = cookie;
2390
Hariprasad Shenaic3c7b122015-04-15 02:02:34 +05302391 if (adap->flags & MASTER_PF)
2392 t4_slow_intr_handler(adap);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002393 process_intrq(adap);
2394 return IRQ_HANDLED;
2395}
2396
2397/*
2398 * Interrupt handler for legacy INTx interrupts.
2399 * Handles data events from SGE response queues as well as error and other
2400 * async events as they all use the same interrupt line.
2401 */
2402static irqreturn_t t4_intr_intx(int irq, void *cookie)
2403{
2404 struct adapter *adap = cookie;
2405
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302406 t4_write_reg(adap, MYPF_REG(PCIE_PF_CLI_A), 0);
Hariprasad Shenaic3c7b122015-04-15 02:02:34 +05302407 if (((adap->flags & MASTER_PF) && t4_slow_intr_handler(adap)) |
2408 process_intrq(adap))
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002409 return IRQ_HANDLED;
2410 return IRQ_NONE; /* probably shared interrupt */
2411}
2412
2413/**
2414 * t4_intr_handler - select the top-level interrupt handler
2415 * @adap: the adapter
2416 *
2417 * Selects the top-level interrupt handler based on the type of interrupts
2418 * (MSI-X, MSI, or INTx).
2419 */
2420irq_handler_t t4_intr_handler(struct adapter *adap)
2421{
2422 if (adap->flags & USING_MSIX)
2423 return t4_sge_intr_msix;
2424 if (adap->flags & USING_MSI)
2425 return t4_intr_msi;
2426 return t4_intr_intx;
2427}
2428
2429static void sge_rx_timer_cb(unsigned long data)
2430{
2431 unsigned long m;
Hariprasad Shenaia3bfb612015-05-05 14:59:55 +05302432 unsigned int i;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002433 struct adapter *adap = (struct adapter *)data;
2434 struct sge *s = &adap->sge;
2435
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05302436 for (i = 0; i < BITS_TO_LONGS(s->egr_sz); i++)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002437 for (m = s->starving_fl[i]; m; m &= m - 1) {
2438 struct sge_eth_rxq *rxq;
2439 unsigned int id = __ffs(m) + i * BITS_PER_LONG;
2440 struct sge_fl *fl = s->egr_map[id];
2441
2442 clear_bit(id, s->starving_fl);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002443 smp_mb__after_atomic();
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002444
Hariprasad Shenaic098b022015-04-15 02:02:31 +05302445 if (fl_starving(adap, fl)) {
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002446 rxq = container_of(fl, struct sge_eth_rxq, fl);
2447 if (napi_reschedule(&rxq->rspq.napi))
2448 fl->starving++;
2449 else
2450 set_bit(id, s->starving_fl);
2451 }
2452 }
Hariprasad Shenaia3bfb612015-05-05 14:59:55 +05302453 /* The remainder of the SGE RX Timer Callback routine is dedicated to
2454 * global Master PF activities like checking for chip ingress stalls,
2455 * etc.
2456 */
2457 if (!(adap->flags & MASTER_PF))
2458 goto done;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002459
Hariprasad Shenaia3bfb612015-05-05 14:59:55 +05302460 t4_idma_monitor(adap, &s->idma_monitor, HZ, RX_QCHECK_PERIOD);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002461
Hariprasad Shenaia3bfb612015-05-05 14:59:55 +05302462done:
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002463 mod_timer(&s->rx_timer, jiffies + RX_QCHECK_PERIOD);
2464}
2465
2466static void sge_tx_timer_cb(unsigned long data)
2467{
2468 unsigned long m;
2469 unsigned int i, budget;
2470 struct adapter *adap = (struct adapter *)data;
2471 struct sge *s = &adap->sge;
2472
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05302473 for (i = 0; i < BITS_TO_LONGS(s->egr_sz); i++)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002474 for (m = s->txq_maperr[i]; m; m &= m - 1) {
2475 unsigned long id = __ffs(m) + i * BITS_PER_LONG;
2476 struct sge_ofld_txq *txq = s->egr_map[id];
2477
2478 clear_bit(id, s->txq_maperr);
2479 tasklet_schedule(&txq->qresume_tsk);
2480 }
2481
2482 budget = MAX_TIMER_TX_RECLAIM;
2483 i = s->ethtxq_rover;
2484 do {
2485 struct sge_eth_txq *q = &s->ethtxq[i];
2486
2487 if (q->q.in_use &&
2488 time_after_eq(jiffies, q->txq->trans_start + HZ / 100) &&
2489 __netif_tx_trylock(q->txq)) {
2490 int avail = reclaimable(&q->q);
2491
2492 if (avail) {
2493 if (avail > budget)
2494 avail = budget;
2495
2496 free_tx_desc(adap, &q->q, avail, true);
2497 q->q.in_use -= avail;
2498 budget -= avail;
2499 }
2500 __netif_tx_unlock(q->txq);
2501 }
2502
2503 if (++i >= s->ethqsets)
2504 i = 0;
2505 } while (budget && i != s->ethtxq_rover);
2506 s->ethtxq_rover = i;
2507 mod_timer(&s->tx_timer, jiffies + (budget ? TX_QCHECK_PERIOD : 2));
2508}
2509
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302510/**
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302511 * bar2_address - return the BAR2 address for an SGE Queue's Registers
2512 * @adapter: the adapter
2513 * @qid: the SGE Queue ID
2514 * @qtype: the SGE Queue Type (Egress or Ingress)
2515 * @pbar2_qid: BAR2 Queue ID or 0 for Queue ID inferred SGE Queues
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302516 *
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302517 * Returns the BAR2 address for the SGE Queue Registers associated with
2518 * @qid. If BAR2 SGE Registers aren't available, returns NULL. Also
2519 * returns the BAR2 Queue ID to be used with writes to the BAR2 SGE
2520 * Queue Registers. If the BAR2 Queue ID is 0, then "Inferred Queue ID"
2521 * Registers are supported (e.g. the Write Combining Doorbell Buffer).
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302522 */
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302523static void __iomem *bar2_address(struct adapter *adapter,
2524 unsigned int qid,
2525 enum t4_bar2_qtype qtype,
2526 unsigned int *pbar2_qid)
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302527{
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302528 u64 bar2_qoffset;
2529 int ret;
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302530
Linus Torvaldse0456712015-06-24 16:49:49 -07002531 ret = t4_bar2_sge_qregs(adapter, qid, qtype, 0,
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302532 &bar2_qoffset, pbar2_qid);
2533 if (ret)
2534 return NULL;
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302535
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302536 return adapter->bar2 + bar2_qoffset;
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302537}
2538
Hariprasad Shenai145ef8a2015-05-05 14:59:52 +05302539/* @intr_idx: MSI/MSI-X vector if >=0, -(absolute qid + 1) if < 0
2540 * @cong: < 0 -> no congestion feedback, >= 0 -> congestion channel map
2541 */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002542int t4_sge_alloc_rxq(struct adapter *adap, struct sge_rspq *iq, bool fwevtq,
2543 struct net_device *dev, int intr_idx,
Hariprasad Shenai145ef8a2015-05-05 14:59:52 +05302544 struct sge_fl *fl, rspq_handler_t hnd, int cong)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002545{
2546 int ret, flsz = 0;
2547 struct fw_iq_cmd c;
Vipul Pandya52367a72012-09-26 02:39:38 +00002548 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002549 struct port_info *pi = netdev_priv(dev);
2550
2551 /* Size needs to be multiple of 16, including status entry. */
2552 iq->size = roundup(iq->size, 16);
2553
2554 iq->desc = alloc_ring(adap->pdev_dev, iq->size, iq->iqe_len, 0,
Dimitris Michailidisad6bad32010-12-14 21:36:55 +00002555 &iq->phys_addr, NULL, 0, NUMA_NO_NODE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002556 if (!iq->desc)
2557 return -ENOMEM;
2558
2559 memset(&c, 0, sizeof(c));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05302560 c.op_to_vfn = htonl(FW_CMD_OP_V(FW_IQ_CMD) | FW_CMD_REQUEST_F |
2561 FW_CMD_WRITE_F | FW_CMD_EXEC_F |
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302562 FW_IQ_CMD_PFN_V(adap->pf) | FW_IQ_CMD_VFN_V(0));
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302563 c.alloc_to_len16 = htonl(FW_IQ_CMD_ALLOC_F | FW_IQ_CMD_IQSTART_F |
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002564 FW_LEN16(c));
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302565 c.type_to_iqandstindex = htonl(FW_IQ_CMD_TYPE_V(FW_IQ_TYPE_FL_INT_CAP) |
2566 FW_IQ_CMD_IQASYNCH_V(fwevtq) | FW_IQ_CMD_VIID_V(pi->viid) |
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05302567 FW_IQ_CMD_IQANDST_V(intr_idx < 0) |
2568 FW_IQ_CMD_IQANUD_V(UPDATEDELIVERY_INTERRUPT_X) |
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302569 FW_IQ_CMD_IQANDSTINDEX_V(intr_idx >= 0 ? intr_idx :
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002570 -intr_idx - 1));
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302571 c.iqdroprss_to_iqesize = htons(FW_IQ_CMD_IQPCIECH_V(pi->tx_chan) |
2572 FW_IQ_CMD_IQGTSMODE_F |
2573 FW_IQ_CMD_IQINTCNTTHRESH_V(iq->pktcnt_idx) |
2574 FW_IQ_CMD_IQESIZE_V(ilog2(iq->iqe_len) - 4));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002575 c.iqsize = htons(iq->size);
2576 c.iqaddr = cpu_to_be64(iq->phys_addr);
Hariprasad Shenai145ef8a2015-05-05 14:59:52 +05302577 if (cong >= 0)
2578 c.iqns_to_fl0congen = htonl(FW_IQ_CMD_IQFLINTCONGEN_F);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002579
2580 if (fl) {
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05302581 enum chip_type chip = CHELSIO_CHIP_VERSION(adap->params.chip);
2582
Hariprasad Shenai13432992015-05-05 14:59:51 +05302583 /* Allocate the ring for the hardware free list (with space
2584 * for its status page) along with the associated software
2585 * descriptor ring. The free list size needs to be a multiple
2586 * of the Egress Queue Unit and at least 2 Egress Units larger
2587 * than the SGE's Egress Congrestion Threshold
2588 * (fl_starve_thres - 1).
2589 */
2590 if (fl->size < s->fl_starve_thres - 1 + 2 * 8)
2591 fl->size = s->fl_starve_thres - 1 + 2 * 8;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002592 fl->size = roundup(fl->size, 8);
2593 fl->desc = alloc_ring(adap->pdev_dev, fl->size, sizeof(__be64),
2594 sizeof(struct rx_sw_desc), &fl->addr,
Vipul Pandya52367a72012-09-26 02:39:38 +00002595 &fl->sdesc, s->stat_len, NUMA_NO_NODE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002596 if (!fl->desc)
2597 goto fl_nomem;
2598
Vipul Pandya52367a72012-09-26 02:39:38 +00002599 flsz = fl->size / 8 + s->stat_len / sizeof(struct tx_desc);
Hariprasad Shenai145ef8a2015-05-05 14:59:52 +05302600 c.iqns_to_fl0congen |= htonl(FW_IQ_CMD_FL0PACKEN_F |
2601 FW_IQ_CMD_FL0FETCHRO_F |
2602 FW_IQ_CMD_FL0DATARO_F |
2603 FW_IQ_CMD_FL0PADEN_F);
2604 if (cong >= 0)
2605 c.iqns_to_fl0congen |=
2606 htonl(FW_IQ_CMD_FL0CNGCHMAP_V(cong) |
2607 FW_IQ_CMD_FL0CONGCIF_F |
2608 FW_IQ_CMD_FL0CONGEN_F);
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05302609 c.fl0dcaen_to_fl0cidxfthresh =
2610 htons(FW_IQ_CMD_FL0FBMIN_V(FETCHBURSTMIN_64B_X) |
Hariprasad Shenai3ccc6cf2015-06-02 13:59:39 +05302611 FW_IQ_CMD_FL0FBMAX_V((chip <= CHELSIO_T5) ?
2612 FETCHBURSTMAX_512B_X :
2613 FETCHBURSTMAX_256B_X));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002614 c.fl0size = htons(flsz);
2615 c.fl0addr = cpu_to_be64(fl->addr);
2616 }
2617
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302618 ret = t4_wr_mbox(adap, adap->mbox, &c, sizeof(c), &c);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002619 if (ret)
2620 goto err;
2621
2622 netif_napi_add(dev, &iq->napi, napi_rx_handler, 64);
2623 iq->cur_desc = iq->desc;
2624 iq->cidx = 0;
2625 iq->gen = 1;
2626 iq->next_intr_params = iq->intr_params;
2627 iq->cntxt_id = ntohs(c.iqid);
2628 iq->abs_id = ntohs(c.physiqid);
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302629 iq->bar2_addr = bar2_address(adap,
2630 iq->cntxt_id,
2631 T4_BAR2_QTYPE_INGRESS,
2632 &iq->bar2_qid);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002633 iq->size--; /* subtract status entry */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002634 iq->netdev = dev;
2635 iq->handler = hnd;
2636
2637 /* set offset to -1 to distinguish ingress queues without FL */
2638 iq->offset = fl ? 0 : -1;
2639
Dimitris Michailidise46dab42010-08-23 17:20:58 +00002640 adap->sge.ingr_map[iq->cntxt_id - adap->sge.ingr_start] = iq;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002641
2642 if (fl) {
Roland Dreier62718b32010-04-21 08:09:21 +00002643 fl->cntxt_id = ntohs(c.fl0id);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002644 fl->avail = fl->pend_cred = 0;
2645 fl->pidx = fl->cidx = 0;
2646 fl->alloc_failed = fl->large_alloc_failed = fl->starving = 0;
Dimitris Michailidise46dab42010-08-23 17:20:58 +00002647 adap->sge.egr_map[fl->cntxt_id - adap->sge.egr_start] = fl;
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302648
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302649 /* Note, we must initialize the BAR2 Free List User Doorbell
2650 * information before refilling the Free List!
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302651 */
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302652 fl->bar2_addr = bar2_address(adap,
2653 fl->cntxt_id,
2654 T4_BAR2_QTYPE_EGRESS,
2655 &fl->bar2_qid);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002656 refill_fl(adap, fl, fl_cap(fl), GFP_KERNEL);
2657 }
Hariprasad Shenaib8b1ae92015-05-05 14:59:53 +05302658
2659 /* For T5 and later we attempt to set up the Congestion Manager values
2660 * of the new RX Ethernet Queue. This should really be handled by
2661 * firmware because it's more complex than any host driver wants to
2662 * get involved with and it's different per chip and this is almost
2663 * certainly wrong. Firmware would be wrong as well, but it would be
2664 * a lot easier to fix in one place ... For now we do something very
2665 * simple (and hopefully less wrong).
2666 */
2667 if (!is_t4(adap->params.chip) && cong >= 0) {
2668 u32 param, val;
2669 int i;
2670
2671 param = (FW_PARAMS_MNEM_V(FW_PARAMS_MNEM_DMAQ) |
2672 FW_PARAMS_PARAM_X_V(FW_PARAMS_PARAM_DMAQ_CONM_CTXT) |
2673 FW_PARAMS_PARAM_YZ_V(iq->cntxt_id));
2674 if (cong == 0) {
2675 val = CONMCTXT_CNGTPMODE_V(CONMCTXT_CNGTPMODE_QUEUE_X);
2676 } else {
2677 val =
2678 CONMCTXT_CNGTPMODE_V(CONMCTXT_CNGTPMODE_CHANNEL_X);
2679 for (i = 0; i < 4; i++) {
2680 if (cong & (1 << i))
2681 val |=
2682 CONMCTXT_CNGCHMAP_V(1 << (i << 2));
2683 }
2684 }
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302685 ret = t4_set_params(adap, adap->mbox, adap->pf, 0, 1,
Hariprasad Shenaib8b1ae92015-05-05 14:59:53 +05302686 &param, &val);
2687 if (ret)
2688 dev_warn(adap->pdev_dev, "Failed to set Congestion"
2689 " Manager Context for Ingress Queue %d: %d\n",
2690 iq->cntxt_id, -ret);
2691 }
2692
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002693 return 0;
2694
2695fl_nomem:
2696 ret = -ENOMEM;
2697err:
2698 if (iq->desc) {
2699 dma_free_coherent(adap->pdev_dev, iq->size * iq->iqe_len,
2700 iq->desc, iq->phys_addr);
2701 iq->desc = NULL;
2702 }
2703 if (fl && fl->desc) {
2704 kfree(fl->sdesc);
2705 fl->sdesc = NULL;
2706 dma_free_coherent(adap->pdev_dev, flsz * sizeof(struct tx_desc),
2707 fl->desc, fl->addr);
2708 fl->desc = NULL;
2709 }
2710 return ret;
2711}
2712
2713static void init_txq(struct adapter *adap, struct sge_txq *q, unsigned int id)
2714{
Santosh Rastapur22adfe02013-03-14 05:08:51 +00002715 q->cntxt_id = id;
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302716 q->bar2_addr = bar2_address(adap,
2717 q->cntxt_id,
2718 T4_BAR2_QTYPE_EGRESS,
2719 &q->bar2_qid);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002720 q->in_use = 0;
2721 q->cidx = q->pidx = 0;
2722 q->stops = q->restarts = 0;
2723 q->stat = (void *)&q->desc[q->size];
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302724 spin_lock_init(&q->db_lock);
Dimitris Michailidise46dab42010-08-23 17:20:58 +00002725 adap->sge.egr_map[id - adap->sge.egr_start] = q;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002726}
2727
2728int t4_sge_alloc_eth_txq(struct adapter *adap, struct sge_eth_txq *txq,
2729 struct net_device *dev, struct netdev_queue *netdevq,
2730 unsigned int iqid)
2731{
2732 int ret, nentries;
2733 struct fw_eq_eth_cmd c;
Vipul Pandya52367a72012-09-26 02:39:38 +00002734 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002735 struct port_info *pi = netdev_priv(dev);
2736
2737 /* Add status entries */
Vipul Pandya52367a72012-09-26 02:39:38 +00002738 nentries = txq->q.size + s->stat_len / sizeof(struct tx_desc);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002739
2740 txq->q.desc = alloc_ring(adap->pdev_dev, txq->q.size,
2741 sizeof(struct tx_desc), sizeof(struct tx_sw_desc),
Vipul Pandya52367a72012-09-26 02:39:38 +00002742 &txq->q.phys_addr, &txq->q.sdesc, s->stat_len,
Dimitris Michailidisad6bad32010-12-14 21:36:55 +00002743 netdev_queue_numa_node_read(netdevq));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002744 if (!txq->q.desc)
2745 return -ENOMEM;
2746
2747 memset(&c, 0, sizeof(c));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05302748 c.op_to_vfn = htonl(FW_CMD_OP_V(FW_EQ_ETH_CMD) | FW_CMD_REQUEST_F |
2749 FW_CMD_WRITE_F | FW_CMD_EXEC_F |
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302750 FW_EQ_ETH_CMD_PFN_V(adap->pf) |
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302751 FW_EQ_ETH_CMD_VFN_V(0));
2752 c.alloc_to_len16 = htonl(FW_EQ_ETH_CMD_ALLOC_F |
2753 FW_EQ_ETH_CMD_EQSTART_F | FW_LEN16(c));
2754 c.viid_pkd = htonl(FW_EQ_ETH_CMD_AUTOEQUEQE_F |
2755 FW_EQ_ETH_CMD_VIID_V(pi->viid));
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05302756 c.fetchszm_to_iqid =
2757 htonl(FW_EQ_ETH_CMD_HOSTFCMODE_V(HOSTFCMODE_STATUS_PAGE_X) |
2758 FW_EQ_ETH_CMD_PCIECHN_V(pi->tx_chan) |
2759 FW_EQ_ETH_CMD_FETCHRO_F | FW_EQ_ETH_CMD_IQID_V(iqid));
2760 c.dcaen_to_eqsize =
2761 htonl(FW_EQ_ETH_CMD_FBMIN_V(FETCHBURSTMIN_64B_X) |
2762 FW_EQ_ETH_CMD_FBMAX_V(FETCHBURSTMAX_512B_X) |
2763 FW_EQ_ETH_CMD_CIDXFTHRESH_V(CIDXFLUSHTHRESH_32_X) |
2764 FW_EQ_ETH_CMD_EQSIZE_V(nentries));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002765 c.eqaddr = cpu_to_be64(txq->q.phys_addr);
2766
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302767 ret = t4_wr_mbox(adap, adap->mbox, &c, sizeof(c), &c);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002768 if (ret) {
2769 kfree(txq->q.sdesc);
2770 txq->q.sdesc = NULL;
2771 dma_free_coherent(adap->pdev_dev,
2772 nentries * sizeof(struct tx_desc),
2773 txq->q.desc, txq->q.phys_addr);
2774 txq->q.desc = NULL;
2775 return ret;
2776 }
2777
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302778 init_txq(adap, &txq->q, FW_EQ_ETH_CMD_EQID_G(ntohl(c.eqid_pkd)));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002779 txq->txq = netdevq;
2780 txq->tso = txq->tx_cso = txq->vlan_ins = 0;
2781 txq->mapping_err = 0;
2782 return 0;
2783}
2784
2785int t4_sge_alloc_ctrl_txq(struct adapter *adap, struct sge_ctrl_txq *txq,
2786 struct net_device *dev, unsigned int iqid,
2787 unsigned int cmplqid)
2788{
2789 int ret, nentries;
2790 struct fw_eq_ctrl_cmd c;
Vipul Pandya52367a72012-09-26 02:39:38 +00002791 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002792 struct port_info *pi = netdev_priv(dev);
2793
2794 /* Add status entries */
Vipul Pandya52367a72012-09-26 02:39:38 +00002795 nentries = txq->q.size + s->stat_len / sizeof(struct tx_desc);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002796
2797 txq->q.desc = alloc_ring(adap->pdev_dev, nentries,
2798 sizeof(struct tx_desc), 0, &txq->q.phys_addr,
Hariprasad Shenai982b81e2015-05-05 14:59:54 +05302799 NULL, 0, dev_to_node(adap->pdev_dev));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002800 if (!txq->q.desc)
2801 return -ENOMEM;
2802
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05302803 c.op_to_vfn = htonl(FW_CMD_OP_V(FW_EQ_CTRL_CMD) | FW_CMD_REQUEST_F |
2804 FW_CMD_WRITE_F | FW_CMD_EXEC_F |
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302805 FW_EQ_CTRL_CMD_PFN_V(adap->pf) |
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302806 FW_EQ_CTRL_CMD_VFN_V(0));
2807 c.alloc_to_len16 = htonl(FW_EQ_CTRL_CMD_ALLOC_F |
2808 FW_EQ_CTRL_CMD_EQSTART_F | FW_LEN16(c));
2809 c.cmpliqid_eqid = htonl(FW_EQ_CTRL_CMD_CMPLIQID_V(cmplqid));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002810 c.physeqid_pkd = htonl(0);
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05302811 c.fetchszm_to_iqid =
2812 htonl(FW_EQ_CTRL_CMD_HOSTFCMODE_V(HOSTFCMODE_STATUS_PAGE_X) |
2813 FW_EQ_CTRL_CMD_PCIECHN_V(pi->tx_chan) |
2814 FW_EQ_CTRL_CMD_FETCHRO_F | FW_EQ_CTRL_CMD_IQID_V(iqid));
2815 c.dcaen_to_eqsize =
2816 htonl(FW_EQ_CTRL_CMD_FBMIN_V(FETCHBURSTMIN_64B_X) |
2817 FW_EQ_CTRL_CMD_FBMAX_V(FETCHBURSTMAX_512B_X) |
2818 FW_EQ_CTRL_CMD_CIDXFTHRESH_V(CIDXFLUSHTHRESH_32_X) |
2819 FW_EQ_CTRL_CMD_EQSIZE_V(nentries));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002820 c.eqaddr = cpu_to_be64(txq->q.phys_addr);
2821
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302822 ret = t4_wr_mbox(adap, adap->mbox, &c, sizeof(c), &c);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002823 if (ret) {
2824 dma_free_coherent(adap->pdev_dev,
2825 nentries * sizeof(struct tx_desc),
2826 txq->q.desc, txq->q.phys_addr);
2827 txq->q.desc = NULL;
2828 return ret;
2829 }
2830
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302831 init_txq(adap, &txq->q, FW_EQ_CTRL_CMD_EQID_G(ntohl(c.cmpliqid_eqid)));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002832 txq->adap = adap;
2833 skb_queue_head_init(&txq->sendq);
2834 tasklet_init(&txq->qresume_tsk, restart_ctrlq, (unsigned long)txq);
2835 txq->full = 0;
2836 return 0;
2837}
2838
2839int t4_sge_alloc_ofld_txq(struct adapter *adap, struct sge_ofld_txq *txq,
2840 struct net_device *dev, unsigned int iqid)
2841{
2842 int ret, nentries;
2843 struct fw_eq_ofld_cmd c;
Vipul Pandya52367a72012-09-26 02:39:38 +00002844 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002845 struct port_info *pi = netdev_priv(dev);
2846
2847 /* Add status entries */
Vipul Pandya52367a72012-09-26 02:39:38 +00002848 nentries = txq->q.size + s->stat_len / sizeof(struct tx_desc);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002849
2850 txq->q.desc = alloc_ring(adap->pdev_dev, txq->q.size,
2851 sizeof(struct tx_desc), sizeof(struct tx_sw_desc),
Vipul Pandya52367a72012-09-26 02:39:38 +00002852 &txq->q.phys_addr, &txq->q.sdesc, s->stat_len,
Dimitris Michailidisad6bad32010-12-14 21:36:55 +00002853 NUMA_NO_NODE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002854 if (!txq->q.desc)
2855 return -ENOMEM;
2856
2857 memset(&c, 0, sizeof(c));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05302858 c.op_to_vfn = htonl(FW_CMD_OP_V(FW_EQ_OFLD_CMD) | FW_CMD_REQUEST_F |
2859 FW_CMD_WRITE_F | FW_CMD_EXEC_F |
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302860 FW_EQ_OFLD_CMD_PFN_V(adap->pf) |
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302861 FW_EQ_OFLD_CMD_VFN_V(0));
2862 c.alloc_to_len16 = htonl(FW_EQ_OFLD_CMD_ALLOC_F |
2863 FW_EQ_OFLD_CMD_EQSTART_F | FW_LEN16(c));
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05302864 c.fetchszm_to_iqid =
2865 htonl(FW_EQ_OFLD_CMD_HOSTFCMODE_V(HOSTFCMODE_STATUS_PAGE_X) |
2866 FW_EQ_OFLD_CMD_PCIECHN_V(pi->tx_chan) |
2867 FW_EQ_OFLD_CMD_FETCHRO_F | FW_EQ_OFLD_CMD_IQID_V(iqid));
2868 c.dcaen_to_eqsize =
2869 htonl(FW_EQ_OFLD_CMD_FBMIN_V(FETCHBURSTMIN_64B_X) |
2870 FW_EQ_OFLD_CMD_FBMAX_V(FETCHBURSTMAX_512B_X) |
2871 FW_EQ_OFLD_CMD_CIDXFTHRESH_V(CIDXFLUSHTHRESH_32_X) |
2872 FW_EQ_OFLD_CMD_EQSIZE_V(nentries));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002873 c.eqaddr = cpu_to_be64(txq->q.phys_addr);
2874
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302875 ret = t4_wr_mbox(adap, adap->mbox, &c, sizeof(c), &c);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002876 if (ret) {
2877 kfree(txq->q.sdesc);
2878 txq->q.sdesc = NULL;
2879 dma_free_coherent(adap->pdev_dev,
2880 nentries * sizeof(struct tx_desc),
2881 txq->q.desc, txq->q.phys_addr);
2882 txq->q.desc = NULL;
2883 return ret;
2884 }
2885
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302886 init_txq(adap, &txq->q, FW_EQ_OFLD_CMD_EQID_G(ntohl(c.eqid_pkd)));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002887 txq->adap = adap;
2888 skb_queue_head_init(&txq->sendq);
2889 tasklet_init(&txq->qresume_tsk, restart_ofldq, (unsigned long)txq);
2890 txq->full = 0;
2891 txq->mapping_err = 0;
2892 return 0;
2893}
2894
2895static void free_txq(struct adapter *adap, struct sge_txq *q)
2896{
Vipul Pandya52367a72012-09-26 02:39:38 +00002897 struct sge *s = &adap->sge;
2898
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002899 dma_free_coherent(adap->pdev_dev,
Vipul Pandya52367a72012-09-26 02:39:38 +00002900 q->size * sizeof(struct tx_desc) + s->stat_len,
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002901 q->desc, q->phys_addr);
2902 q->cntxt_id = 0;
2903 q->sdesc = NULL;
2904 q->desc = NULL;
2905}
2906
2907static void free_rspq_fl(struct adapter *adap, struct sge_rspq *rq,
2908 struct sge_fl *fl)
2909{
Vipul Pandya52367a72012-09-26 02:39:38 +00002910 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002911 unsigned int fl_id = fl ? fl->cntxt_id : 0xffff;
2912
Dimitris Michailidise46dab42010-08-23 17:20:58 +00002913 adap->sge.ingr_map[rq->cntxt_id - adap->sge.ingr_start] = NULL;
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302914 t4_iq_free(adap, adap->mbox, adap->pf, 0, FW_IQ_TYPE_FL_INT_CAP,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002915 rq->cntxt_id, fl_id, 0xffff);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002916 dma_free_coherent(adap->pdev_dev, (rq->size + 1) * rq->iqe_len,
2917 rq->desc, rq->phys_addr);
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05302918 napi_hash_del(&rq->napi);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002919 netif_napi_del(&rq->napi);
2920 rq->netdev = NULL;
2921 rq->cntxt_id = rq->abs_id = 0;
2922 rq->desc = NULL;
2923
2924 if (fl) {
2925 free_rx_bufs(adap, fl, fl->avail);
Vipul Pandya52367a72012-09-26 02:39:38 +00002926 dma_free_coherent(adap->pdev_dev, fl->size * 8 + s->stat_len,
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002927 fl->desc, fl->addr);
2928 kfree(fl->sdesc);
2929 fl->sdesc = NULL;
2930 fl->cntxt_id = 0;
2931 fl->desc = NULL;
2932 }
2933}
2934
2935/**
Hariprasad Shenai5fa76692014-08-04 17:01:30 +05302936 * t4_free_ofld_rxqs - free a block of consecutive Rx queues
2937 * @adap: the adapter
2938 * @n: number of queues
2939 * @q: pointer to first queue
2940 *
2941 * Release the resources of a consecutive block of offload Rx queues.
2942 */
2943void t4_free_ofld_rxqs(struct adapter *adap, int n, struct sge_ofld_rxq *q)
2944{
2945 for ( ; n; n--, q++)
2946 if (q->rspq.desc)
2947 free_rspq_fl(adap, &q->rspq,
2948 q->fl.size ? &q->fl : NULL);
2949}
2950
2951/**
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002952 * t4_free_sge_resources - free SGE resources
2953 * @adap: the adapter
2954 *
2955 * Frees resources used by the SGE queue sets.
2956 */
2957void t4_free_sge_resources(struct adapter *adap)
2958{
2959 int i;
2960 struct sge_eth_rxq *eq = adap->sge.ethrxq;
2961 struct sge_eth_txq *etq = adap->sge.ethtxq;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002962
2963 /* clean up Ethernet Tx/Rx queues */
2964 for (i = 0; i < adap->sge.ethqsets; i++, eq++, etq++) {
2965 if (eq->rspq.desc)
Hariprasad Shenai5fa76692014-08-04 17:01:30 +05302966 free_rspq_fl(adap, &eq->rspq,
2967 eq->fl.size ? &eq->fl : NULL);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002968 if (etq->q.desc) {
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302969 t4_eth_eq_free(adap, adap->mbox, adap->pf, 0,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002970 etq->q.cntxt_id);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002971 free_tx_desc(adap, &etq->q, etq->q.in_use, true);
2972 kfree(etq->q.sdesc);
2973 free_txq(adap, &etq->q);
2974 }
2975 }
2976
2977 /* clean up RDMA and iSCSI Rx queues */
Hariprasad Shenai5fa76692014-08-04 17:01:30 +05302978 t4_free_ofld_rxqs(adap, adap->sge.ofldqsets, adap->sge.ofldrxq);
2979 t4_free_ofld_rxqs(adap, adap->sge.rdmaqs, adap->sge.rdmarxq);
2980 t4_free_ofld_rxqs(adap, adap->sge.rdmaciqs, adap->sge.rdmaciq);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002981
2982 /* clean up offload Tx queues */
2983 for (i = 0; i < ARRAY_SIZE(adap->sge.ofldtxq); i++) {
2984 struct sge_ofld_txq *q = &adap->sge.ofldtxq[i];
2985
2986 if (q->q.desc) {
2987 tasklet_kill(&q->qresume_tsk);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05302988 t4_ofld_eq_free(adap, adap->mbox, adap->pf, 0,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002989 q->q.cntxt_id);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002990 free_tx_desc(adap, &q->q, q->q.in_use, false);
2991 kfree(q->q.sdesc);
2992 __skb_queue_purge(&q->sendq);
2993 free_txq(adap, &q->q);
2994 }
2995 }
2996
2997 /* clean up control Tx queues */
2998 for (i = 0; i < ARRAY_SIZE(adap->sge.ctrlq); i++) {
2999 struct sge_ctrl_txq *cq = &adap->sge.ctrlq[i];
3000
3001 if (cq->q.desc) {
3002 tasklet_kill(&cq->qresume_tsk);
Hariprasad Shenaib2612722015-05-27 22:30:24 +05303003 t4_ctrl_eq_free(adap, adap->mbox, adap->pf, 0,
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00003004 cq->q.cntxt_id);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00003005 __skb_queue_purge(&cq->sendq);
3006 free_txq(adap, &cq->q);
3007 }
3008 }
3009
3010 if (adap->sge.fw_evtq.desc)
3011 free_rspq_fl(adap, &adap->sge.fw_evtq, NULL);
3012
3013 if (adap->sge.intrq.desc)
3014 free_rspq_fl(adap, &adap->sge.intrq, NULL);
3015
3016 /* clear the reverse egress queue map */
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05303017 memset(adap->sge.egr_map, 0,
3018 adap->sge.egr_sz * sizeof(*adap->sge.egr_map));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00003019}
3020
3021void t4_sge_start(struct adapter *adap)
3022{
3023 adap->sge.ethtxq_rover = 0;
3024 mod_timer(&adap->sge.rx_timer, jiffies + RX_QCHECK_PERIOD);
3025 mod_timer(&adap->sge.tx_timer, jiffies + TX_QCHECK_PERIOD);
3026}
3027
3028/**
3029 * t4_sge_stop - disable SGE operation
3030 * @adap: the adapter
3031 *
3032 * Stop tasklets and timers associated with the DMA engine. Note that
3033 * this is effective only if measures have been taken to disable any HW
3034 * events that may restart them.
3035 */
3036void t4_sge_stop(struct adapter *adap)
3037{
3038 int i;
3039 struct sge *s = &adap->sge;
3040
3041 if (in_interrupt()) /* actions below require waiting */
3042 return;
3043
3044 if (s->rx_timer.function)
3045 del_timer_sync(&s->rx_timer);
3046 if (s->tx_timer.function)
3047 del_timer_sync(&s->tx_timer);
3048
3049 for (i = 0; i < ARRAY_SIZE(s->ofldtxq); i++) {
3050 struct sge_ofld_txq *q = &s->ofldtxq[i];
3051
3052 if (q->q.desc)
3053 tasklet_kill(&q->qresume_tsk);
3054 }
3055 for (i = 0; i < ARRAY_SIZE(s->ctrlq); i++) {
3056 struct sge_ctrl_txq *cq = &s->ctrlq[i];
3057
3058 if (cq->q.desc)
3059 tasklet_kill(&cq->qresume_tsk);
3060 }
3061}
3062
3063/**
Hariprasad Shenai06640312015-01-13 15:19:25 +05303064 * t4_sge_init_soft - grab core SGE values needed by SGE code
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00003065 * @adap: the adapter
3066 *
Hariprasad Shenai06640312015-01-13 15:19:25 +05303067 * We need to grab the SGE operating parameters that we need to have
3068 * in order to do our job and make sure we can live with them.
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00003069 */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00003070
Vipul Pandya52367a72012-09-26 02:39:38 +00003071static int t4_sge_init_soft(struct adapter *adap)
3072{
3073 struct sge *s = &adap->sge;
3074 u32 fl_small_pg, fl_large_pg, fl_small_mtu, fl_large_mtu;
3075 u32 timer_value_0_and_1, timer_value_2_and_3, timer_value_4_and_5;
3076 u32 ingress_rx_threshold;
3077
3078 /*
3079 * Verify that CPL messages are going to the Ingress Queue for
3080 * process_responses() and that only packet data is going to the
3081 * Free Lists.
3082 */
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303083 if ((t4_read_reg(adap, SGE_CONTROL_A) & RXPKTCPLMODE_F) !=
3084 RXPKTCPLMODE_V(RXPKTCPLMODE_SPLIT_X)) {
Vipul Pandya52367a72012-09-26 02:39:38 +00003085 dev_err(adap->pdev_dev, "bad SGE CPL MODE\n");
3086 return -EINVAL;
3087 }
3088
3089 /*
3090 * Validate the Host Buffer Register Array indices that we want to
3091 * use ...
3092 *
3093 * XXX Note that we should really read through the Host Buffer Size
3094 * XXX register array and find the indices of the Buffer Sizes which
3095 * XXX meet our needs!
3096 */
3097 #define READ_FL_BUF(x) \
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303098 t4_read_reg(adap, SGE_FL_BUFFER_SIZE0_A+(x)*sizeof(u32))
Vipul Pandya52367a72012-09-26 02:39:38 +00003099
3100 fl_small_pg = READ_FL_BUF(RX_SMALL_PG_BUF);
3101 fl_large_pg = READ_FL_BUF(RX_LARGE_PG_BUF);
3102 fl_small_mtu = READ_FL_BUF(RX_SMALL_MTU_BUF);
3103 fl_large_mtu = READ_FL_BUF(RX_LARGE_MTU_BUF);
3104
Kumar Sanghvi92ddcc72014-03-13 20:50:46 +05303105 /* We only bother using the Large Page logic if the Large Page Buffer
3106 * is larger than our Page Size Buffer.
3107 */
3108 if (fl_large_pg <= fl_small_pg)
3109 fl_large_pg = 0;
3110
Vipul Pandya52367a72012-09-26 02:39:38 +00003111 #undef READ_FL_BUF
3112
Kumar Sanghvi92ddcc72014-03-13 20:50:46 +05303113 /* The Page Size Buffer must be exactly equal to our Page Size and the
3114 * Large Page Size Buffer should be 0 (per above) or a power of 2.
3115 */
Vipul Pandya52367a72012-09-26 02:39:38 +00003116 if (fl_small_pg != PAGE_SIZE ||
Kumar Sanghvi92ddcc72014-03-13 20:50:46 +05303117 (fl_large_pg & (fl_large_pg-1)) != 0) {
Vipul Pandya52367a72012-09-26 02:39:38 +00003118 dev_err(adap->pdev_dev, "bad SGE FL page buffer sizes [%d, %d]\n",
3119 fl_small_pg, fl_large_pg);
3120 return -EINVAL;
3121 }
3122 if (fl_large_pg)
3123 s->fl_pg_order = ilog2(fl_large_pg) - PAGE_SHIFT;
3124
3125 if (fl_small_mtu < FL_MTU_SMALL_BUFSIZE(adap) ||
3126 fl_large_mtu < FL_MTU_LARGE_BUFSIZE(adap)) {
3127 dev_err(adap->pdev_dev, "bad SGE FL MTU sizes [%d, %d]\n",
3128 fl_small_mtu, fl_large_mtu);
3129 return -EINVAL;
3130 }
3131
3132 /*
3133 * Retrieve our RX interrupt holdoff timer values and counter
3134 * threshold values from the SGE parameters.
3135 */
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303136 timer_value_0_and_1 = t4_read_reg(adap, SGE_TIMER_VALUE_0_AND_1_A);
3137 timer_value_2_and_3 = t4_read_reg(adap, SGE_TIMER_VALUE_2_AND_3_A);
3138 timer_value_4_and_5 = t4_read_reg(adap, SGE_TIMER_VALUE_4_AND_5_A);
Vipul Pandya52367a72012-09-26 02:39:38 +00003139 s->timer_val[0] = core_ticks_to_us(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303140 TIMERVALUE0_G(timer_value_0_and_1));
Vipul Pandya52367a72012-09-26 02:39:38 +00003141 s->timer_val[1] = core_ticks_to_us(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303142 TIMERVALUE1_G(timer_value_0_and_1));
Vipul Pandya52367a72012-09-26 02:39:38 +00003143 s->timer_val[2] = core_ticks_to_us(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303144 TIMERVALUE2_G(timer_value_2_and_3));
Vipul Pandya52367a72012-09-26 02:39:38 +00003145 s->timer_val[3] = core_ticks_to_us(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303146 TIMERVALUE3_G(timer_value_2_and_3));
Vipul Pandya52367a72012-09-26 02:39:38 +00003147 s->timer_val[4] = core_ticks_to_us(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303148 TIMERVALUE4_G(timer_value_4_and_5));
Vipul Pandya52367a72012-09-26 02:39:38 +00003149 s->timer_val[5] = core_ticks_to_us(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05303150 TIMERVALUE5_G(timer_value_4_and_5));
Vipul Pandya52367a72012-09-26 02:39:38 +00003151
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303152 ingress_rx_threshold = t4_read_reg(adap, SGE_INGRESS_RX_THRESHOLD_A);
3153 s->counter_val[0] = THRESHOLD_0_G(ingress_rx_threshold);
3154 s->counter_val[1] = THRESHOLD_1_G(ingress_rx_threshold);
3155 s->counter_val[2] = THRESHOLD_2_G(ingress_rx_threshold);
3156 s->counter_val[3] = THRESHOLD_3_G(ingress_rx_threshold);
Vipul Pandya52367a72012-09-26 02:39:38 +00003157
3158 return 0;
3159}
3160
Hariprasad Shenai06640312015-01-13 15:19:25 +05303161/**
3162 * t4_sge_init - initialize SGE
3163 * @adap: the adapter
3164 *
3165 * Perform low-level SGE code initialization needed every time after a
3166 * chip reset.
3167 */
Vipul Pandya52367a72012-09-26 02:39:38 +00003168int t4_sge_init(struct adapter *adap)
3169{
3170 struct sge *s = &adap->sge;
Hariprasad Shenaice8f4072014-11-07 17:06:30 +05303171 u32 sge_control, sge_control2, sge_conm_ctrl;
3172 unsigned int ingpadboundary, ingpackboundary;
Kumar Sanghvic2b955e2014-03-13 20:50:49 +05303173 int ret, egress_threshold;
Vipul Pandya52367a72012-09-26 02:39:38 +00003174
3175 /*
3176 * Ingress Padding Boundary and Egress Status Page Size are set up by
3177 * t4_fixup_host_params().
3178 */
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303179 sge_control = t4_read_reg(adap, SGE_CONTROL_A);
3180 s->pktshift = PKTSHIFT_G(sge_control);
3181 s->stat_len = (sge_control & EGRSTATUSPAGESIZE_F) ? 128 : 64;
Hariprasad Shenaice8f4072014-11-07 17:06:30 +05303182
3183 /* T4 uses a single control field to specify both the PCIe Padding and
3184 * Packing Boundary. T5 introduced the ability to specify these
3185 * separately. The actual Ingress Packet Data alignment boundary
3186 * within Packed Buffer Mode is the maximum of these two
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05303187 * specifications. (Note that it makes no real practical sense to
3188 * have the Pading Boudary be larger than the Packing Boundary but you
3189 * could set the chip up that way and, in fact, legacy T4 code would
3190 * end doing this because it would initialize the Padding Boundary and
3191 * leave the Packing Boundary initialized to 0 (16 bytes).)
Hariprasad Shenaice8f4072014-11-07 17:06:30 +05303192 */
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303193 ingpadboundary = 1 << (INGPADBOUNDARY_G(sge_control) +
3194 INGPADBOUNDARY_SHIFT_X);
Hariprasad Shenaice8f4072014-11-07 17:06:30 +05303195 if (is_t4(adap->params.chip)) {
3196 s->fl_align = ingpadboundary;
3197 } else {
3198 /* T5 has a different interpretation of one of the PCIe Packing
3199 * Boundary values.
3200 */
3201 sge_control2 = t4_read_reg(adap, SGE_CONTROL2_A);
3202 ingpackboundary = INGPACKBOUNDARY_G(sge_control2);
3203 if (ingpackboundary == INGPACKBOUNDARY_16B_X)
3204 ingpackboundary = 16;
3205 else
3206 ingpackboundary = 1 << (ingpackboundary +
3207 INGPACKBOUNDARY_SHIFT_X);
3208
3209 s->fl_align = max(ingpadboundary, ingpackboundary);
3210 }
Vipul Pandya52367a72012-09-26 02:39:38 +00003211
Hariprasad Shenai06640312015-01-13 15:19:25 +05303212 ret = t4_sge_init_soft(adap);
Vipul Pandya52367a72012-09-26 02:39:38 +00003213 if (ret < 0)
3214 return ret;
3215
3216 /*
3217 * A FL with <= fl_starve_thres buffers is starving and a periodic
3218 * timer will attempt to refill it. This needs to be larger than the
3219 * SGE's Egress Congestion Threshold. If it isn't, then we can get
3220 * stuck waiting for new packets while the SGE is waiting for us to
3221 * give it more Free List entries. (Note that the SGE's Egress
Kumar Sanghvic2b955e2014-03-13 20:50:49 +05303222 * Congestion Threshold is in units of 2 Free List pointers.) For T4,
3223 * there was only a single field to control this. For T5 there's the
3224 * original field which now only applies to Unpacked Mode Free List
3225 * buffers and a new field which only applies to Packed Mode Free List
3226 * buffers.
Vipul Pandya52367a72012-09-26 02:39:38 +00003227 */
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303228 sge_conm_ctrl = t4_read_reg(adap, SGE_CONM_CTRL_A);
Kumar Sanghvic2b955e2014-03-13 20:50:49 +05303229 if (is_t4(adap->params.chip))
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303230 egress_threshold = EGRTHRESHOLD_G(sge_conm_ctrl);
Kumar Sanghvic2b955e2014-03-13 20:50:49 +05303231 else
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303232 egress_threshold = EGRTHRESHOLDPACKING_G(sge_conm_ctrl);
Kumar Sanghvic2b955e2014-03-13 20:50:49 +05303233 s->fl_starve_thres = 2*egress_threshold + 1;
Vipul Pandya52367a72012-09-26 02:39:38 +00003234
Hariprasad Shenaia3bfb612015-05-05 14:59:55 +05303235 t4_idma_monitor_init(adap, &s->idma_monitor);
3236
Hariprasad Shenai1ecc7b72015-05-12 04:43:43 +05303237 /* Set up timers used for recuring callbacks to process RX and TX
3238 * administrative tasks.
3239 */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00003240 setup_timer(&s->rx_timer, sge_rx_timer_cb, (unsigned long)adap);
3241 setup_timer(&s->tx_timer, sge_tx_timer_cb, (unsigned long)adap);
Hariprasad Shenaia3bfb612015-05-05 14:59:55 +05303242
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00003243 spin_lock_init(&s->intrq_lock);
Vipul Pandya52367a72012-09-26 02:39:38 +00003244
3245 return 0;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00003246}