blob: e0cfce88890fb17f48a92615feafc6a030299f85 [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
Kumar Sanghvi0f4d2012014-03-13 20:50:48 +0530103/* SGE Hung Ingress DMA Threshold Warning time (in Hz) and Warning Repeat Rate
104 * (in RX_QCHECK_PERIOD multiples). If we find one of the SGE Ingress DMA
105 * State Machines in the same state for this amount of time (in HZ) then we'll
106 * issue a warning about a potential hang. We'll repeat the warning as the
107 * SGE Ingress DMA Channel appears to be hung every N RX_QCHECK_PERIODs till
108 * the situation clears. If the situation clears, we'll note that as well.
109 */
110#define SGE_IDMA_WARN_THRESH (1 * HZ)
111#define SGE_IDMA_WARN_REPEAT (20 * RX_QCHECK_PERIOD)
112
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000113/*
114 * Max number of Tx descriptors to be reclaimed by the Tx timer.
115 */
116#define MAX_TIMER_TX_RECLAIM 100
117
118/*
119 * Timer index used when backing off due to memory shortage.
120 */
121#define NOMEM_TMR_IDX (SGE_NTIMERS - 1)
122
123/*
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000124 * Suspend an Ethernet Tx queue with fewer available descriptors than this.
125 * This is the same as calc_tx_descs() for a TSO packet with
126 * nr_frags == MAX_SKB_FRAGS.
127 */
128#define ETHTXQ_STOP_THRES \
129 (1 + DIV_ROUND_UP((3 * MAX_SKB_FRAGS) / 2 + (MAX_SKB_FRAGS & 1), 8))
130
131/*
132 * Suspension threshold for non-Ethernet Tx queues. We require enough room
133 * for a full sized WR.
134 */
135#define TXQ_STOP_THRES (SGE_MAX_WR_LEN / sizeof(struct tx_desc))
136
137/*
138 * Max Tx descriptor space we allow for an Ethernet packet to be inlined
139 * into a WR.
140 */
Hariprasad Shenai21dcfad2015-04-15 02:02:30 +0530141#define MAX_IMM_TX_PKT_LEN 256
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000142
143/*
144 * Max size of a WR sent through a control Tx queue.
145 */
146#define MAX_CTRL_WR_LEN SGE_MAX_WR_LEN
147
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000148struct tx_sw_desc { /* SW state per Tx descriptor */
149 struct sk_buff *skb;
150 struct ulptx_sgl *sgl;
151};
152
153struct rx_sw_desc { /* SW state per Rx descriptor */
154 struct page *page;
155 dma_addr_t dma_addr;
156};
157
158/*
Vipul Pandya52367a72012-09-26 02:39:38 +0000159 * Rx buffer sizes for "useskbs" Free List buffers (one ingress packet pe skb
160 * buffer). We currently only support two sizes for 1500- and 9000-byte MTUs.
161 * We could easily support more but there doesn't seem to be much need for
162 * that ...
163 */
164#define FL_MTU_SMALL 1500
165#define FL_MTU_LARGE 9000
166
167static inline unsigned int fl_mtu_bufsize(struct adapter *adapter,
168 unsigned int mtu)
169{
170 struct sge *s = &adapter->sge;
171
172 return ALIGN(s->pktshift + ETH_HLEN + VLAN_HLEN + mtu, s->fl_align);
173}
174
175#define FL_MTU_SMALL_BUFSIZE(adapter) fl_mtu_bufsize(adapter, FL_MTU_SMALL)
176#define FL_MTU_LARGE_BUFSIZE(adapter) fl_mtu_bufsize(adapter, FL_MTU_LARGE)
177
178/*
179 * Bits 0..3 of rx_sw_desc.dma_addr have special meaning. The hardware uses
180 * these to specify the buffer size as an index into the SGE Free List Buffer
181 * Size register array. We also use bit 4, when the buffer has been unmapped
182 * for DMA, but this is of course never sent to the hardware and is only used
183 * to prevent double unmappings. All of the above requires that the Free List
184 * Buffers which we allocate have the bottom 5 bits free (0) -- i.e. are
185 * 32-byte or or a power of 2 greater in alignment. Since the SGE's minimal
186 * Free List Buffer alignment is 32 bytes, this works out for us ...
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000187 */
188enum {
Vipul Pandya52367a72012-09-26 02:39:38 +0000189 RX_BUF_FLAGS = 0x1f, /* bottom five bits are special */
190 RX_BUF_SIZE = 0x0f, /* bottom three bits are for buf sizes */
191 RX_UNMAPPED_BUF = 0x10, /* buffer is not mapped */
192
193 /*
194 * XXX We shouldn't depend on being able to use these indices.
195 * XXX Especially when some other Master PF has initialized the
196 * XXX adapter or we use the Firmware Configuration File. We
197 * XXX should really search through the Host Buffer Size register
198 * XXX array for the appropriately sized buffer indices.
199 */
200 RX_SMALL_PG_BUF = 0x0, /* small (PAGE_SIZE) page buffer */
201 RX_LARGE_PG_BUF = 0x1, /* buffer large (FL_PG_ORDER) page buffer */
202
203 RX_SMALL_MTU_BUF = 0x2, /* small MTU buffer */
204 RX_LARGE_MTU_BUF = 0x3, /* large MTU buffer */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000205};
206
Hariprasad Shenaie553ec32014-09-26 00:23:55 +0530207static int timer_pkt_quota[] = {1, 1, 2, 3, 4, 5};
208#define MIN_NAPI_WORK 1
209
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000210static inline dma_addr_t get_buf_addr(const struct rx_sw_desc *d)
211{
Vipul Pandya52367a72012-09-26 02:39:38 +0000212 return d->dma_addr & ~(dma_addr_t)RX_BUF_FLAGS;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000213}
214
215static inline bool is_buf_mapped(const struct rx_sw_desc *d)
216{
217 return !(d->dma_addr & RX_UNMAPPED_BUF);
218}
219
220/**
221 * txq_avail - return the number of available slots in a Tx queue
222 * @q: the Tx queue
223 *
224 * Returns the number of descriptors in a Tx queue available to write new
225 * packets.
226 */
227static inline unsigned int txq_avail(const struct sge_txq *q)
228{
229 return q->size - 1 - q->in_use;
230}
231
232/**
233 * fl_cap - return the capacity of a free-buffer list
234 * @fl: the FL
235 *
236 * Returns the capacity of a free-buffer list. The capacity is less than
237 * the size because one descriptor needs to be left unpopulated, otherwise
238 * HW will think the FL is empty.
239 */
240static inline unsigned int fl_cap(const struct sge_fl *fl)
241{
242 return fl->size - 8; /* 1 descriptor = 8 buffers */
243}
244
Hariprasad Shenaic098b022015-04-15 02:02:31 +0530245/**
246 * fl_starving - return whether a Free List is starving.
247 * @adapter: pointer to the adapter
248 * @fl: the Free List
249 *
250 * Tests specified Free List to see whether the number of buffers
251 * available to the hardware has falled below our "starvation"
252 * threshold.
253 */
254static inline bool fl_starving(const struct adapter *adapter,
255 const struct sge_fl *fl)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000256{
Hariprasad Shenaic098b022015-04-15 02:02:31 +0530257 const struct sge *s = &adapter->sge;
258
259 return fl->avail - fl->pend_cred <= s->fl_starve_thres;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000260}
261
262static int map_skb(struct device *dev, const struct sk_buff *skb,
263 dma_addr_t *addr)
264{
265 const skb_frag_t *fp, *end;
266 const struct skb_shared_info *si;
267
268 *addr = dma_map_single(dev, skb->data, skb_headlen(skb), DMA_TO_DEVICE);
269 if (dma_mapping_error(dev, *addr))
270 goto out_err;
271
272 si = skb_shinfo(skb);
273 end = &si->frags[si->nr_frags];
274
275 for (fp = si->frags; fp < end; fp++) {
Ian Campbelle91b0f22011-10-19 23:01:46 +0000276 *++addr = skb_frag_dma_map(dev, fp, 0, skb_frag_size(fp),
277 DMA_TO_DEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000278 if (dma_mapping_error(dev, *addr))
279 goto unwind;
280 }
281 return 0;
282
283unwind:
284 while (fp-- > si->frags)
Eric Dumazet9e903e02011-10-18 21:00:24 +0000285 dma_unmap_page(dev, *--addr, skb_frag_size(fp), DMA_TO_DEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000286
287 dma_unmap_single(dev, addr[-1], skb_headlen(skb), DMA_TO_DEVICE);
288out_err:
289 return -ENOMEM;
290}
291
292#ifdef CONFIG_NEED_DMA_MAP_STATE
293static void unmap_skb(struct device *dev, const struct sk_buff *skb,
294 const dma_addr_t *addr)
295{
296 const skb_frag_t *fp, *end;
297 const struct skb_shared_info *si;
298
299 dma_unmap_single(dev, *addr++, skb_headlen(skb), DMA_TO_DEVICE);
300
301 si = skb_shinfo(skb);
302 end = &si->frags[si->nr_frags];
303 for (fp = si->frags; fp < end; fp++)
Eric Dumazet9e903e02011-10-18 21:00:24 +0000304 dma_unmap_page(dev, *addr++, skb_frag_size(fp), DMA_TO_DEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000305}
306
307/**
308 * deferred_unmap_destructor - unmap a packet when it is freed
309 * @skb: the packet
310 *
311 * This is the packet destructor used for Tx packets that need to remain
312 * mapped until they are freed rather than until their Tx descriptors are
313 * freed.
314 */
315static void deferred_unmap_destructor(struct sk_buff *skb)
316{
317 unmap_skb(skb->dev->dev.parent, skb, (dma_addr_t *)skb->head);
318}
319#endif
320
321static void unmap_sgl(struct device *dev, const struct sk_buff *skb,
322 const struct ulptx_sgl *sgl, const struct sge_txq *q)
323{
324 const struct ulptx_sge_pair *p;
325 unsigned int nfrags = skb_shinfo(skb)->nr_frags;
326
327 if (likely(skb_headlen(skb)))
328 dma_unmap_single(dev, be64_to_cpu(sgl->addr0), ntohl(sgl->len0),
329 DMA_TO_DEVICE);
330 else {
331 dma_unmap_page(dev, be64_to_cpu(sgl->addr0), ntohl(sgl->len0),
332 DMA_TO_DEVICE);
333 nfrags--;
334 }
335
336 /*
337 * the complexity below is because of the possibility of a wrap-around
338 * in the middle of an SGL
339 */
340 for (p = sgl->sge; nfrags >= 2; nfrags -= 2) {
341 if (likely((u8 *)(p + 1) <= (u8 *)q->stat)) {
342unmap: dma_unmap_page(dev, be64_to_cpu(p->addr[0]),
343 ntohl(p->len[0]), DMA_TO_DEVICE);
344 dma_unmap_page(dev, be64_to_cpu(p->addr[1]),
345 ntohl(p->len[1]), DMA_TO_DEVICE);
346 p++;
347 } else if ((u8 *)p == (u8 *)q->stat) {
348 p = (const struct ulptx_sge_pair *)q->desc;
349 goto unmap;
350 } else if ((u8 *)p + 8 == (u8 *)q->stat) {
351 const __be64 *addr = (const __be64 *)q->desc;
352
353 dma_unmap_page(dev, be64_to_cpu(addr[0]),
354 ntohl(p->len[0]), DMA_TO_DEVICE);
355 dma_unmap_page(dev, be64_to_cpu(addr[1]),
356 ntohl(p->len[1]), DMA_TO_DEVICE);
357 p = (const struct ulptx_sge_pair *)&addr[2];
358 } else {
359 const __be64 *addr = (const __be64 *)q->desc;
360
361 dma_unmap_page(dev, be64_to_cpu(p->addr[0]),
362 ntohl(p->len[0]), DMA_TO_DEVICE);
363 dma_unmap_page(dev, be64_to_cpu(addr[0]),
364 ntohl(p->len[1]), DMA_TO_DEVICE);
365 p = (const struct ulptx_sge_pair *)&addr[1];
366 }
367 }
368 if (nfrags) {
369 __be64 addr;
370
371 if ((u8 *)p == (u8 *)q->stat)
372 p = (const struct ulptx_sge_pair *)q->desc;
373 addr = (u8 *)p + 16 <= (u8 *)q->stat ? p->addr[0] :
374 *(const __be64 *)q->desc;
375 dma_unmap_page(dev, be64_to_cpu(addr), ntohl(p->len[0]),
376 DMA_TO_DEVICE);
377 }
378}
379
380/**
381 * free_tx_desc - reclaims Tx descriptors and their buffers
382 * @adapter: the adapter
383 * @q: the Tx queue to reclaim descriptors from
384 * @n: the number of descriptors to reclaim
385 * @unmap: whether the buffers should be unmapped for DMA
386 *
387 * Reclaims Tx descriptors from an SGE Tx queue and frees the associated
388 * Tx buffers. Called with the Tx queue lock held.
389 */
390static void free_tx_desc(struct adapter *adap, struct sge_txq *q,
391 unsigned int n, bool unmap)
392{
393 struct tx_sw_desc *d;
394 unsigned int cidx = q->cidx;
395 struct device *dev = adap->pdev_dev;
396
397 d = &q->sdesc[cidx];
398 while (n--) {
399 if (d->skb) { /* an SGL is present */
400 if (unmap)
401 unmap_sgl(dev, d->skb, d->sgl, q);
Eric W. Biedermana7525192014-03-15 16:29:49 -0700402 dev_consume_skb_any(d->skb);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000403 d->skb = NULL;
404 }
405 ++d;
406 if (++cidx == q->size) {
407 cidx = 0;
408 d = q->sdesc;
409 }
410 }
411 q->cidx = cidx;
412}
413
414/*
415 * Return the number of reclaimable descriptors in a Tx queue.
416 */
417static inline int reclaimable(const struct sge_txq *q)
418{
419 int hw_cidx = ntohs(q->stat->cidx);
420 hw_cidx -= q->cidx;
421 return hw_cidx < 0 ? hw_cidx + q->size : hw_cidx;
422}
423
424/**
425 * reclaim_completed_tx - reclaims completed Tx descriptors
426 * @adap: the adapter
427 * @q: the Tx queue to reclaim completed descriptors from
428 * @unmap: whether the buffers should be unmapped for DMA
429 *
430 * Reclaims Tx descriptors that the SGE has indicated it has processed,
431 * and frees the associated buffers if possible. Called with the Tx
432 * queue locked.
433 */
434static inline void reclaim_completed_tx(struct adapter *adap, struct sge_txq *q,
435 bool unmap)
436{
437 int avail = reclaimable(q);
438
439 if (avail) {
440 /*
441 * Limit the amount of clean up work we do at a time to keep
442 * the Tx lock hold time O(1).
443 */
444 if (avail > MAX_TX_RECLAIM)
445 avail = MAX_TX_RECLAIM;
446
447 free_tx_desc(adap, q, avail, unmap);
448 q->in_use -= avail;
449 }
450}
451
Vipul Pandya52367a72012-09-26 02:39:38 +0000452static inline int get_buf_size(struct adapter *adapter,
453 const struct rx_sw_desc *d)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000454{
Vipul Pandya52367a72012-09-26 02:39:38 +0000455 struct sge *s = &adapter->sge;
456 unsigned int rx_buf_size_idx = d->dma_addr & RX_BUF_SIZE;
457 int buf_size;
458
459 switch (rx_buf_size_idx) {
460 case RX_SMALL_PG_BUF:
461 buf_size = PAGE_SIZE;
462 break;
463
464 case RX_LARGE_PG_BUF:
465 buf_size = PAGE_SIZE << s->fl_pg_order;
466 break;
467
468 case RX_SMALL_MTU_BUF:
469 buf_size = FL_MTU_SMALL_BUFSIZE(adapter);
470 break;
471
472 case RX_LARGE_MTU_BUF:
473 buf_size = FL_MTU_LARGE_BUFSIZE(adapter);
474 break;
475
476 default:
477 BUG_ON(1);
478 }
479
480 return buf_size;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000481}
482
483/**
484 * free_rx_bufs - free the Rx buffers on an SGE free list
485 * @adap: the adapter
486 * @q: the SGE free list to free buffers from
487 * @n: how many buffers to free
488 *
489 * Release the next @n buffers on an SGE free-buffer Rx queue. The
490 * buffers must be made inaccessible to HW before calling this function.
491 */
492static void free_rx_bufs(struct adapter *adap, struct sge_fl *q, int n)
493{
494 while (n--) {
495 struct rx_sw_desc *d = &q->sdesc[q->cidx];
496
497 if (is_buf_mapped(d))
498 dma_unmap_page(adap->pdev_dev, get_buf_addr(d),
Vipul Pandya52367a72012-09-26 02:39:38 +0000499 get_buf_size(adap, d),
500 PCI_DMA_FROMDEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000501 put_page(d->page);
502 d->page = NULL;
503 if (++q->cidx == q->size)
504 q->cidx = 0;
505 q->avail--;
506 }
507}
508
509/**
510 * unmap_rx_buf - unmap the current Rx buffer on an SGE free list
511 * @adap: the adapter
512 * @q: the SGE free list
513 *
514 * Unmap the current buffer on an SGE free-buffer Rx queue. The
515 * buffer must be made inaccessible to HW before calling this function.
516 *
517 * This is similar to @free_rx_bufs above but does not free the buffer.
518 * Do note that the FL still loses any further access to the buffer.
519 */
520static void unmap_rx_buf(struct adapter *adap, struct sge_fl *q)
521{
522 struct rx_sw_desc *d = &q->sdesc[q->cidx];
523
524 if (is_buf_mapped(d))
525 dma_unmap_page(adap->pdev_dev, get_buf_addr(d),
Vipul Pandya52367a72012-09-26 02:39:38 +0000526 get_buf_size(adap, d), PCI_DMA_FROMDEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000527 d->page = NULL;
528 if (++q->cidx == q->size)
529 q->cidx = 0;
530 q->avail--;
531}
532
533static inline void ring_fl_db(struct adapter *adap, struct sge_fl *q)
534{
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000535 u32 val;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000536 if (q->pend_cred >= 8) {
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530537 if (is_t4(adap->params.chip))
538 val = PIDX_V(q->pend_cred / 8);
539 else
540 val = PIDX_T5_V(q->pend_cred / 8) |
541 DBTYPE_F;
542 val |= DBPRIO_F;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000543 wmb();
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530544
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530545 /* If we don't have access to the new User Doorbell (T5+), use
546 * the old doorbell mechanism; otherwise use the new BAR2
547 * mechanism.
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530548 */
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530549 if (unlikely(q->bar2_addr == NULL)) {
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530550 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
551 val | QID_V(q->cntxt_id));
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530552 } else {
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530553 writel(val | QID_V(q->bar2_qid),
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530554 q->bar2_addr + SGE_UDB_KDOORBELL);
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530555
556 /* This Write memory Barrier will force the write to
557 * the User Doorbell area to be flushed.
558 */
559 wmb();
560 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000561 q->pend_cred &= 7;
562 }
563}
564
565static inline void set_rx_sw_desc(struct rx_sw_desc *sd, struct page *pg,
566 dma_addr_t mapping)
567{
568 sd->page = pg;
569 sd->dma_addr = mapping; /* includes size low bits */
570}
571
572/**
573 * refill_fl - refill an SGE Rx buffer ring
574 * @adap: the adapter
575 * @q: the ring to refill
576 * @n: the number of new buffers to allocate
577 * @gfp: the gfp flags for the allocations
578 *
579 * (Re)populate an SGE free-buffer queue with up to @n new packet buffers,
580 * allocated with the supplied gfp flags. The caller must assure that
581 * @n does not exceed the queue's capacity. If afterwards the queue is
582 * found critically low mark it as starving in the bitmap of starving FLs.
583 *
584 * Returns the number of buffers allocated.
585 */
586static unsigned int refill_fl(struct adapter *adap, struct sge_fl *q, int n,
587 gfp_t gfp)
588{
Vipul Pandya52367a72012-09-26 02:39:38 +0000589 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000590 struct page *pg;
591 dma_addr_t mapping;
592 unsigned int cred = q->avail;
593 __be64 *d = &q->desc[q->pidx];
594 struct rx_sw_desc *sd = &q->sdesc[q->pidx];
595
Alexander Duyckaa9cd312014-11-11 09:26:42 -0800596 gfp |= __GFP_NOWARN;
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) {
Alexander Duyckaa9cd312014-11-11 09:26:42 -0800605 pg = __dev_alloc_pages(gfp, 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--) {
Alexander Duyckaa9cd312014-11-11 09:26:42 -0800635 pg = __dev_alloc_page(gfp);
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{
731 n--;
732 return (3 * n) / 2 + (n & 1) + 2;
733}
734
735/**
736 * flits_to_desc - returns the num of Tx descriptors for the given flits
737 * @n: the number of flits
738 *
739 * Returns the number of Tx descriptors needed for the supplied number
740 * of flits.
741 */
742static inline unsigned int flits_to_desc(unsigned int n)
743{
744 BUG_ON(n > SGE_MAX_WR_LEN / 8);
745 return DIV_ROUND_UP(n, 8);
746}
747
748/**
749 * is_eth_imm - can an Ethernet packet be sent as immediate data?
750 * @skb: the packet
751 *
752 * Returns whether an Ethernet packet is small enough to fit as
Kumar Sanghvi0034b292014-02-18 17:56:14 +0530753 * immediate data. Return value corresponds to headroom required.
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000754 */
755static inline int is_eth_imm(const struct sk_buff *skb)
756{
Kumar Sanghvi0034b292014-02-18 17:56:14 +0530757 int hdrlen = skb_shinfo(skb)->gso_size ?
758 sizeof(struct cpl_tx_pkt_lso_core) : 0;
759
760 hdrlen += sizeof(struct cpl_tx_pkt);
761 if (skb->len <= MAX_IMM_TX_PKT_LEN - hdrlen)
762 return hdrlen;
763 return 0;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000764}
765
766/**
767 * calc_tx_flits - calculate the number of flits for a packet Tx WR
768 * @skb: the packet
769 *
770 * Returns the number of flits needed for a Tx WR for the given Ethernet
771 * packet, including the needed WR and CPL headers.
772 */
773static inline unsigned int calc_tx_flits(const struct sk_buff *skb)
774{
775 unsigned int flits;
Kumar Sanghvi0034b292014-02-18 17:56:14 +0530776 int hdrlen = is_eth_imm(skb);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000777
Kumar Sanghvi0034b292014-02-18 17:56:14 +0530778 if (hdrlen)
779 return DIV_ROUND_UP(skb->len + hdrlen, sizeof(__be64));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000780
781 flits = sgl_len(skb_shinfo(skb)->nr_frags + 1) + 4;
782 if (skb_shinfo(skb)->gso_size)
783 flits += 2;
784 return flits;
785}
786
787/**
788 * calc_tx_descs - calculate the number of Tx descriptors for a packet
789 * @skb: the packet
790 *
791 * Returns the number of Tx descriptors needed for the given Ethernet
792 * packet, including the needed WR and CPL headers.
793 */
794static inline unsigned int calc_tx_descs(const struct sk_buff *skb)
795{
796 return flits_to_desc(calc_tx_flits(skb));
797}
798
799/**
800 * write_sgl - populate a scatter/gather list for a packet
801 * @skb: the packet
802 * @q: the Tx queue we are writing into
803 * @sgl: starting location for writing the SGL
804 * @end: points right after the end of the SGL
805 * @start: start offset into skb main-body data to include in the SGL
806 * @addr: the list of bus addresses for the SGL elements
807 *
808 * Generates a gather list for the buffers that make up a packet.
809 * The caller must provide adequate space for the SGL that will be written.
810 * The SGL includes all of the packet's page fragments and the data in its
811 * main body except for the first @start bytes. @sgl must be 16-byte
812 * aligned and within a Tx descriptor with available space. @end points
813 * right after the end of the SGL but does not account for any potential
814 * wrap around, i.e., @end > @sgl.
815 */
816static void write_sgl(const struct sk_buff *skb, struct sge_txq *q,
817 struct ulptx_sgl *sgl, u64 *end, unsigned int start,
818 const dma_addr_t *addr)
819{
820 unsigned int i, len;
821 struct ulptx_sge_pair *to;
822 const struct skb_shared_info *si = skb_shinfo(skb);
823 unsigned int nfrags = si->nr_frags;
824 struct ulptx_sge_pair buf[MAX_SKB_FRAGS / 2 + 1];
825
826 len = skb_headlen(skb) - start;
827 if (likely(len)) {
828 sgl->len0 = htonl(len);
829 sgl->addr0 = cpu_to_be64(addr[0] + start);
830 nfrags++;
831 } else {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000832 sgl->len0 = htonl(skb_frag_size(&si->frags[0]));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000833 sgl->addr0 = cpu_to_be64(addr[1]);
834 }
835
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -0800836 sgl->cmd_nsge = htonl(ULPTX_CMD_V(ULP_TX_SC_DSGL) |
837 ULPTX_NSGE_V(nfrags));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000838 if (likely(--nfrags == 0))
839 return;
840 /*
841 * Most of the complexity below deals with the possibility we hit the
842 * end of the queue in the middle of writing the SGL. For this case
843 * only we create the SGL in a temporary buffer and then copy it.
844 */
845 to = (u8 *)end > (u8 *)q->stat ? buf : sgl->sge;
846
847 for (i = (nfrags != si->nr_frags); nfrags >= 2; nfrags -= 2, to++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000848 to->len[0] = cpu_to_be32(skb_frag_size(&si->frags[i]));
849 to->len[1] = cpu_to_be32(skb_frag_size(&si->frags[++i]));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000850 to->addr[0] = cpu_to_be64(addr[i]);
851 to->addr[1] = cpu_to_be64(addr[++i]);
852 }
853 if (nfrags) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000854 to->len[0] = cpu_to_be32(skb_frag_size(&si->frags[i]));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000855 to->len[1] = cpu_to_be32(0);
856 to->addr[0] = cpu_to_be64(addr[i + 1]);
857 }
858 if (unlikely((u8 *)end > (u8 *)q->stat)) {
859 unsigned int part0 = (u8 *)q->stat - (u8 *)sgl->sge, part1;
860
861 if (likely(part0))
862 memcpy(sgl->sge, buf, part0);
863 part1 = (u8 *)end - (u8 *)q->stat;
864 memcpy(q->desc, (u8 *)buf + part0, part1);
865 end = (void *)q->desc + part1;
866 }
867 if ((uintptr_t)end & 8) /* 0-pad to multiple of 16 */
Joe Perches64699332012-06-04 12:44:16 +0000868 *end = 0;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000869}
870
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530871/* This function copies 64 byte coalesced work request to
872 * memory mapped BAR2 space. For coalesced WR SGE fetches
873 * data from the FIFO instead of from Host.
Santosh Rastapur22adfe02013-03-14 05:08:51 +0000874 */
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530875static void cxgb_pio_copy(u64 __iomem *dst, u64 *src)
Santosh Rastapur22adfe02013-03-14 05:08:51 +0000876{
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530877 int count = 8;
Santosh Rastapur22adfe02013-03-14 05:08:51 +0000878
879 while (count) {
880 writeq(*src, dst);
881 src++;
882 dst++;
883 count--;
884 }
885}
886
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000887/**
888 * ring_tx_db - check and potentially ring a Tx queue's doorbell
889 * @adap: the adapter
890 * @q: the Tx queue
891 * @n: number of new descriptors to give to HW
892 *
893 * Ring the doorbel for a Tx queue.
894 */
895static inline void ring_tx_db(struct adapter *adap, struct sge_txq *q, int n)
896{
897 wmb(); /* write descriptors before telling HW */
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530898
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530899 /* If we don't have access to the new User Doorbell (T5+), use the old
900 * doorbell mechanism; otherwise use the new BAR2 mechanism.
901 */
902 if (unlikely(q->bar2_addr == NULL)) {
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530903 u32 val = PIDX_V(n);
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530904 unsigned long flags;
905
906 /* For T4 we need to participate in the Doorbell Recovery
907 * mechanism.
908 */
909 spin_lock_irqsave(&q->db_lock, flags);
910 if (!q->db_disabled)
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530911 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL_A),
912 QID_V(q->cntxt_id) | val);
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530913 else
914 q->db_pidx_inc += n;
915 q->db_pidx = q->pidx;
916 spin_unlock_irqrestore(&q->db_lock, flags);
917 } else {
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530918 u32 val = PIDX_T5_V(n);
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530919
920 /* T4 and later chips share the same PIDX field offset within
921 * the doorbell, but T5 and later shrank the field in order to
922 * gain a bit for Doorbell Priority. The field was absurdly
923 * large in the first place (14 bits) so we just use the T5
924 * and later limits and warn if a Queue ID is too large.
925 */
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530926 WARN_ON(val & DBPRIO_F);
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530927
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530928 /* If we're only writing a single TX Descriptor and we can use
929 * Inferred QID registers, we can use the Write Combining
930 * Gather Buffer; otherwise we use the simple doorbell.
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530931 */
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530932 if (n == 1 && q->bar2_qid == 0) {
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530933 int index = (q->pidx
934 ? (q->pidx - 1)
935 : (q->size - 1));
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530936 u64 *wr = (u64 *)&q->desc[index];
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530937
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530938 cxgb_pio_copy((u64 __iomem *)
939 (q->bar2_addr + SGE_UDB_WCDOORBELL),
940 wr);
Santosh Rastapur22adfe02013-03-14 05:08:51 +0000941 } else {
Hariprasad Shenaif612b812015-01-05 16:30:43 +0530942 writel(val | QID_V(q->bar2_qid),
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +0530943 q->bar2_addr + SGE_UDB_KDOORBELL);
Santosh Rastapur22adfe02013-03-14 05:08:51 +0000944 }
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +0530945
946 /* This Write Memory Barrier will force the write to the User
947 * Doorbell area to be flushed. This is needed to prevent
948 * writes on different CPUs for the same queue from hitting
949 * the adapter out of order. This is required when some Work
950 * Requests take the Write Combine Gather Buffer path (user
951 * doorbell area offset [SGE_UDB_WCDOORBELL..+63]) and some
952 * take the traditional path where we simply increment the
953 * PIDX (User Doorbell area SGE_UDB_KDOORBELL) and have the
954 * hardware DMA read the actual Work Request.
955 */
956 wmb();
957 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000958}
959
960/**
961 * inline_tx_skb - inline a packet's data into Tx descriptors
962 * @skb: the packet
963 * @q: the Tx queue where the packet will be inlined
964 * @pos: starting position in the Tx queue where to inline the packet
965 *
966 * Inline a packet's contents directly into Tx descriptors, starting at
967 * the given position within the Tx DMA ring.
968 * Most of the complexity of this operation is dealing with wrap arounds
969 * in the middle of the packet we want to inline.
970 */
971static void inline_tx_skb(const struct sk_buff *skb, const struct sge_txq *q,
972 void *pos)
973{
974 u64 *p;
975 int left = (void *)q->stat - pos;
976
977 if (likely(skb->len <= left)) {
978 if (likely(!skb->data_len))
979 skb_copy_from_linear_data(skb, pos, skb->len);
980 else
981 skb_copy_bits(skb, 0, pos, skb->len);
982 pos += skb->len;
983 } else {
984 skb_copy_bits(skb, 0, pos, left);
985 skb_copy_bits(skb, left, q->desc, skb->len - left);
986 pos = (void *)q->desc + (skb->len - left);
987 }
988
989 /* 0-pad to multiple of 16 */
990 p = PTR_ALIGN(pos, 8);
991 if ((uintptr_t)p & 8)
992 *p = 0;
993}
994
995/*
996 * Figure out what HW csum a packet wants and return the appropriate control
997 * bits.
998 */
999static u64 hwcsum(const struct sk_buff *skb)
1000{
1001 int csum_type;
1002 const struct iphdr *iph = ip_hdr(skb);
1003
1004 if (iph->version == 4) {
1005 if (iph->protocol == IPPROTO_TCP)
1006 csum_type = TX_CSUM_TCPIP;
1007 else if (iph->protocol == IPPROTO_UDP)
1008 csum_type = TX_CSUM_UDPIP;
1009 else {
1010nocsum: /*
1011 * unknown protocol, disable HW csum
1012 * and hope a bad packet is detected
1013 */
1014 return TXPKT_L4CSUM_DIS;
1015 }
1016 } else {
1017 /*
1018 * this doesn't work with extension headers
1019 */
1020 const struct ipv6hdr *ip6h = (const struct ipv6hdr *)iph;
1021
1022 if (ip6h->nexthdr == IPPROTO_TCP)
1023 csum_type = TX_CSUM_TCPIP6;
1024 else if (ip6h->nexthdr == IPPROTO_UDP)
1025 csum_type = TX_CSUM_UDPIP6;
1026 else
1027 goto nocsum;
1028 }
1029
1030 if (likely(csum_type >= TX_CSUM_TCPIP))
1031 return TXPKT_CSUM_TYPE(csum_type) |
1032 TXPKT_IPHDR_LEN(skb_network_header_len(skb)) |
1033 TXPKT_ETHHDR_LEN(skb_network_offset(skb) - ETH_HLEN);
1034 else {
1035 int start = skb_transport_offset(skb);
1036
1037 return TXPKT_CSUM_TYPE(csum_type) | TXPKT_CSUM_START(start) |
1038 TXPKT_CSUM_LOC(start + skb->csum_offset);
1039 }
1040}
1041
1042static void eth_txq_stop(struct sge_eth_txq *q)
1043{
1044 netif_tx_stop_queue(q->txq);
1045 q->q.stops++;
1046}
1047
1048static inline void txq_advance(struct sge_txq *q, unsigned int n)
1049{
1050 q->in_use += n;
1051 q->pidx += n;
1052 if (q->pidx >= q->size)
1053 q->pidx -= q->size;
1054}
1055
Varun Prakash84a200b2015-03-24 19:14:46 +05301056#ifdef CONFIG_CHELSIO_T4_FCOE
1057static inline int
1058cxgb_fcoe_offload(struct sk_buff *skb, struct adapter *adap,
1059 const struct port_info *pi, u64 *cntrl)
1060{
1061 const struct cxgb_fcoe *fcoe = &pi->fcoe;
1062
1063 if (!(fcoe->flags & CXGB_FCOE_ENABLED))
1064 return 0;
1065
1066 if (skb->protocol != htons(ETH_P_FCOE))
1067 return 0;
1068
1069 skb_reset_mac_header(skb);
1070 skb->mac_len = sizeof(struct ethhdr);
1071
1072 skb_set_network_header(skb, skb->mac_len);
1073 skb_set_transport_header(skb, skb->mac_len + sizeof(struct fcoe_hdr));
1074
1075 if (!cxgb_fcoe_sof_eof_supported(adap, skb))
1076 return -ENOTSUPP;
1077
1078 /* FC CRC offload */
1079 *cntrl = TXPKT_CSUM_TYPE(TX_CSUM_FCOE) |
1080 TXPKT_L4CSUM_DIS | TXPKT_IPCSUM_DIS |
1081 TXPKT_CSUM_START(CXGB_FCOE_TXPKT_CSUM_START) |
1082 TXPKT_CSUM_END(CXGB_FCOE_TXPKT_CSUM_END) |
1083 TXPKT_CSUM_LOC(CXGB_FCOE_TXPKT_CSUM_END);
1084 return 0;
1085}
1086#endif /* CONFIG_CHELSIO_T4_FCOE */
1087
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001088/**
1089 * t4_eth_xmit - add a packet to an Ethernet Tx queue
1090 * @skb: the packet
1091 * @dev: the egress net device
1092 *
1093 * Add a packet to an SGE Ethernet Tx queue. Runs with softirqs disabled.
1094 */
1095netdev_tx_t t4_eth_xmit(struct sk_buff *skb, struct net_device *dev)
1096{
Kumar Sanghvi0034b292014-02-18 17:56:14 +05301097 int len;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001098 u32 wr_mid;
1099 u64 cntrl, *end;
1100 int qidx, credits;
1101 unsigned int flits, ndesc;
1102 struct adapter *adap;
1103 struct sge_eth_txq *q;
1104 const struct port_info *pi;
1105 struct fw_eth_tx_pkt_wr *wr;
1106 struct cpl_tx_pkt_core *cpl;
1107 const struct skb_shared_info *ssi;
1108 dma_addr_t addr[MAX_SKB_FRAGS + 1];
Kumar Sanghvi0034b292014-02-18 17:56:14 +05301109 bool immediate = false;
Varun Prakash84a200b2015-03-24 19:14:46 +05301110#ifdef CONFIG_CHELSIO_T4_FCOE
1111 int err;
1112#endif /* CONFIG_CHELSIO_T4_FCOE */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001113
1114 /*
1115 * The chip min packet length is 10 octets but play safe and reject
1116 * anything shorter than an Ethernet header.
1117 */
1118 if (unlikely(skb->len < ETH_HLEN)) {
Eric W. Biedermana7525192014-03-15 16:29:49 -07001119out_free: dev_kfree_skb_any(skb);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001120 return NETDEV_TX_OK;
1121 }
1122
1123 pi = netdev_priv(dev);
1124 adap = pi->adapter;
1125 qidx = skb_get_queue_mapping(skb);
1126 q = &adap->sge.ethtxq[qidx + pi->first_qset];
1127
1128 reclaim_completed_tx(adap, &q->q, true);
Varun Prakash84a200b2015-03-24 19:14:46 +05301129 cntrl = TXPKT_L4CSUM_DIS | TXPKT_IPCSUM_DIS;
1130
1131#ifdef CONFIG_CHELSIO_T4_FCOE
1132 err = cxgb_fcoe_offload(skb, adap, pi, &cntrl);
1133 if (unlikely(err == -ENOTSUPP))
1134 goto out_free;
1135#endif /* CONFIG_CHELSIO_T4_FCOE */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001136
1137 flits = calc_tx_flits(skb);
1138 ndesc = flits_to_desc(flits);
1139 credits = txq_avail(&q->q) - ndesc;
1140
1141 if (unlikely(credits < 0)) {
1142 eth_txq_stop(q);
1143 dev_err(adap->pdev_dev,
1144 "%s: Tx ring %u full while queue awake!\n",
1145 dev->name, qidx);
1146 return NETDEV_TX_BUSY;
1147 }
1148
Kumar Sanghvi0034b292014-02-18 17:56:14 +05301149 if (is_eth_imm(skb))
1150 immediate = true;
1151
1152 if (!immediate &&
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001153 unlikely(map_skb(adap->pdev_dev, skb, addr) < 0)) {
1154 q->mapping_err++;
1155 goto out_free;
1156 }
1157
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301158 wr_mid = FW_WR_LEN16_V(DIV_ROUND_UP(flits, 2));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001159 if (unlikely(credits < ETHTXQ_STOP_THRES)) {
1160 eth_txq_stop(q);
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301161 wr_mid |= FW_WR_EQUEQ_F | FW_WR_EQUIQ_F;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001162 }
1163
1164 wr = (void *)&q->q.desc[q->q.pidx];
1165 wr->equiq_to_len16 = htonl(wr_mid);
1166 wr->r3 = cpu_to_be64(0);
1167 end = (u64 *)wr + flits;
1168
Kumar Sanghvi0034b292014-02-18 17:56:14 +05301169 len = immediate ? skb->len : 0;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001170 ssi = skb_shinfo(skb);
1171 if (ssi->gso_size) {
Dimitris Michailidis625ac6a2010-08-02 13:19:18 +00001172 struct cpl_tx_pkt_lso *lso = (void *)wr;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001173 bool v6 = (ssi->gso_type & SKB_GSO_TCPV6) != 0;
1174 int l3hdr_len = skb_network_header_len(skb);
1175 int eth_xtra_len = skb_network_offset(skb) - ETH_HLEN;
1176
Kumar Sanghvi0034b292014-02-18 17:56:14 +05301177 len += sizeof(*lso);
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301178 wr->op_immdlen = htonl(FW_WR_OP_V(FW_ETH_TX_PKT_WR) |
1179 FW_WR_IMMDLEN_V(len));
Dimitris Michailidis625ac6a2010-08-02 13:19:18 +00001180 lso->c.lso_ctrl = htonl(LSO_OPCODE(CPL_TX_PKT_LSO) |
1181 LSO_FIRST_SLICE | LSO_LAST_SLICE |
1182 LSO_IPV6(v6) |
1183 LSO_ETHHDR_LEN(eth_xtra_len / 4) |
1184 LSO_IPHDR_LEN(l3hdr_len / 4) |
1185 LSO_TCPHDR_LEN(tcp_hdr(skb)->doff));
1186 lso->c.ipid_ofst = htons(0);
1187 lso->c.mss = htons(ssi->gso_size);
1188 lso->c.seqno_offset = htonl(0);
Hariprasad Shenai7207c0d2014-10-09 05:48:45 +05301189 if (is_t4(adap->params.chip))
1190 lso->c.len = htonl(skb->len);
1191 else
1192 lso->c.len = htonl(LSO_T5_XFER_SIZE(skb->len));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001193 cpl = (void *)(lso + 1);
1194 cntrl = TXPKT_CSUM_TYPE(v6 ? TX_CSUM_TCPIP6 : TX_CSUM_TCPIP) |
1195 TXPKT_IPHDR_LEN(l3hdr_len) |
1196 TXPKT_ETHHDR_LEN(eth_xtra_len);
1197 q->tso++;
1198 q->tx_cso += ssi->gso_segs;
1199 } else {
Kumar Sanghvica71de62014-03-13 20:50:50 +05301200 len += sizeof(*cpl);
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301201 wr->op_immdlen = htonl(FW_WR_OP_V(FW_ETH_TX_PKT_WR) |
1202 FW_WR_IMMDLEN_V(len));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001203 cpl = (void *)(wr + 1);
1204 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1205 cntrl = hwcsum(skb) | TXPKT_IPCSUM_DIS;
1206 q->tx_cso++;
Varun Prakash84a200b2015-03-24 19:14:46 +05301207 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001208 }
1209
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001210 if (skb_vlan_tag_present(skb)) {
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001211 q->vlan_ins++;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001212 cntrl |= TXPKT_VLAN_VLD | TXPKT_VLAN(skb_vlan_tag_get(skb));
Varun Prakash84a200b2015-03-24 19:14:46 +05301213#ifdef CONFIG_CHELSIO_T4_FCOE
1214 if (skb->protocol == htons(ETH_P_FCOE))
1215 cntrl |= TXPKT_VLAN(
1216 ((skb->priority & 0x7) << VLAN_PRIO_SHIFT));
1217#endif /* CONFIG_CHELSIO_T4_FCOE */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001218 }
1219
1220 cpl->ctrl0 = htonl(TXPKT_OPCODE(CPL_TX_PKT_XT) |
Dimitris Michailidis1707aec2010-08-23 17:21:00 +00001221 TXPKT_INTF(pi->tx_chan) | TXPKT_PF(adap->fn));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001222 cpl->pack = htons(0);
1223 cpl->len = htons(skb->len);
1224 cpl->ctrl1 = cpu_to_be64(cntrl);
1225
Kumar Sanghvi0034b292014-02-18 17:56:14 +05301226 if (immediate) {
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001227 inline_tx_skb(skb, &q->q, cpl + 1);
Eric W. Biedermana7525192014-03-15 16:29:49 -07001228 dev_consume_skb_any(skb);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001229 } else {
1230 int last_desc;
1231
1232 write_sgl(skb, &q->q, (struct ulptx_sgl *)(cpl + 1), end, 0,
1233 addr);
1234 skb_orphan(skb);
1235
1236 last_desc = q->q.pidx + ndesc - 1;
1237 if (last_desc >= q->q.size)
1238 last_desc -= q->q.size;
1239 q->q.sdesc[last_desc].skb = skb;
1240 q->q.sdesc[last_desc].sgl = (struct ulptx_sgl *)(cpl + 1);
1241 }
1242
1243 txq_advance(&q->q, ndesc);
1244
1245 ring_tx_db(adap, &q->q, ndesc);
1246 return NETDEV_TX_OK;
1247}
1248
1249/**
1250 * reclaim_completed_tx_imm - reclaim completed control-queue Tx descs
1251 * @q: the SGE control Tx queue
1252 *
1253 * This is a variant of reclaim_completed_tx() that is used for Tx queues
1254 * that send only immediate data (presently just the control queues) and
1255 * thus do not have any sk_buffs to release.
1256 */
1257static inline void reclaim_completed_tx_imm(struct sge_txq *q)
1258{
1259 int hw_cidx = ntohs(q->stat->cidx);
1260 int reclaim = hw_cidx - q->cidx;
1261
1262 if (reclaim < 0)
1263 reclaim += q->size;
1264
1265 q->in_use -= reclaim;
1266 q->cidx = hw_cidx;
1267}
1268
1269/**
1270 * is_imm - check whether a packet can be sent as immediate data
1271 * @skb: the packet
1272 *
1273 * Returns true if a packet can be sent as a WR with immediate data.
1274 */
1275static inline int is_imm(const struct sk_buff *skb)
1276{
1277 return skb->len <= MAX_CTRL_WR_LEN;
1278}
1279
1280/**
1281 * ctrlq_check_stop - check if a control queue is full and should stop
1282 * @q: the queue
1283 * @wr: most recent WR written to the queue
1284 *
1285 * Check if a control queue has become full and should be stopped.
1286 * We clean up control queue descriptors very lazily, only when we are out.
1287 * If the queue is still full after reclaiming any completed descriptors
1288 * we suspend it and have the last WR wake it up.
1289 */
1290static void ctrlq_check_stop(struct sge_ctrl_txq *q, struct fw_wr_hdr *wr)
1291{
1292 reclaim_completed_tx_imm(&q->q);
1293 if (unlikely(txq_avail(&q->q) < TXQ_STOP_THRES)) {
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301294 wr->lo |= htonl(FW_WR_EQUEQ_F | FW_WR_EQUIQ_F);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001295 q->q.stops++;
1296 q->full = 1;
1297 }
1298}
1299
1300/**
1301 * ctrl_xmit - send a packet through an SGE control Tx queue
1302 * @q: the control queue
1303 * @skb: the packet
1304 *
1305 * Send a packet through an SGE control Tx queue. Packets sent through
1306 * a control queue must fit entirely as immediate data.
1307 */
1308static int ctrl_xmit(struct sge_ctrl_txq *q, struct sk_buff *skb)
1309{
1310 unsigned int ndesc;
1311 struct fw_wr_hdr *wr;
1312
1313 if (unlikely(!is_imm(skb))) {
1314 WARN_ON(1);
1315 dev_kfree_skb(skb);
1316 return NET_XMIT_DROP;
1317 }
1318
1319 ndesc = DIV_ROUND_UP(skb->len, sizeof(struct tx_desc));
1320 spin_lock(&q->sendq.lock);
1321
1322 if (unlikely(q->full)) {
1323 skb->priority = ndesc; /* save for restart */
1324 __skb_queue_tail(&q->sendq, skb);
1325 spin_unlock(&q->sendq.lock);
1326 return NET_XMIT_CN;
1327 }
1328
1329 wr = (struct fw_wr_hdr *)&q->q.desc[q->q.pidx];
1330 inline_tx_skb(skb, &q->q, wr);
1331
1332 txq_advance(&q->q, ndesc);
1333 if (unlikely(txq_avail(&q->q) < TXQ_STOP_THRES))
1334 ctrlq_check_stop(q, wr);
1335
1336 ring_tx_db(q->adap, &q->q, ndesc);
1337 spin_unlock(&q->sendq.lock);
1338
1339 kfree_skb(skb);
1340 return NET_XMIT_SUCCESS;
1341}
1342
1343/**
1344 * restart_ctrlq - restart a suspended control queue
1345 * @data: the control queue to restart
1346 *
1347 * Resumes transmission on a suspended Tx control queue.
1348 */
1349static void restart_ctrlq(unsigned long data)
1350{
1351 struct sk_buff *skb;
1352 unsigned int written = 0;
1353 struct sge_ctrl_txq *q = (struct sge_ctrl_txq *)data;
1354
1355 spin_lock(&q->sendq.lock);
1356 reclaim_completed_tx_imm(&q->q);
1357 BUG_ON(txq_avail(&q->q) < TXQ_STOP_THRES); /* q should be empty */
1358
1359 while ((skb = __skb_dequeue(&q->sendq)) != NULL) {
1360 struct fw_wr_hdr *wr;
1361 unsigned int ndesc = skb->priority; /* previously saved */
1362
1363 /*
1364 * Write descriptors and free skbs outside the lock to limit
1365 * wait times. q->full is still set so new skbs will be queued.
1366 */
1367 spin_unlock(&q->sendq.lock);
1368
1369 wr = (struct fw_wr_hdr *)&q->q.desc[q->q.pidx];
1370 inline_tx_skb(skb, &q->q, wr);
1371 kfree_skb(skb);
1372
1373 written += ndesc;
1374 txq_advance(&q->q, ndesc);
1375 if (unlikely(txq_avail(&q->q) < TXQ_STOP_THRES)) {
1376 unsigned long old = q->q.stops;
1377
1378 ctrlq_check_stop(q, wr);
1379 if (q->q.stops != old) { /* suspended anew */
1380 spin_lock(&q->sendq.lock);
1381 goto ringdb;
1382 }
1383 }
1384 if (written > 16) {
1385 ring_tx_db(q->adap, &q->q, written);
1386 written = 0;
1387 }
1388 spin_lock(&q->sendq.lock);
1389 }
1390 q->full = 0;
1391ringdb: if (written)
1392 ring_tx_db(q->adap, &q->q, written);
1393 spin_unlock(&q->sendq.lock);
1394}
1395
1396/**
1397 * t4_mgmt_tx - send a management message
1398 * @adap: the adapter
1399 * @skb: the packet containing the management message
1400 *
1401 * Send a management message through control queue 0.
1402 */
1403int t4_mgmt_tx(struct adapter *adap, struct sk_buff *skb)
1404{
1405 int ret;
1406
1407 local_bh_disable();
1408 ret = ctrl_xmit(&adap->sge.ctrlq[0], skb);
1409 local_bh_enable();
1410 return ret;
1411}
1412
1413/**
1414 * is_ofld_imm - check whether a packet can be sent as immediate data
1415 * @skb: the packet
1416 *
1417 * Returns true if a packet can be sent as an offload WR with immediate
1418 * data. We currently use the same limit as for Ethernet packets.
1419 */
1420static inline int is_ofld_imm(const struct sk_buff *skb)
1421{
1422 return skb->len <= MAX_IMM_TX_PKT_LEN;
1423}
1424
1425/**
1426 * calc_tx_flits_ofld - calculate # of flits for an offload packet
1427 * @skb: the packet
1428 *
1429 * Returns the number of flits needed for the given offload packet.
1430 * These packets are already fully constructed and no additional headers
1431 * will be added.
1432 */
1433static inline unsigned int calc_tx_flits_ofld(const struct sk_buff *skb)
1434{
1435 unsigned int flits, cnt;
1436
1437 if (is_ofld_imm(skb))
1438 return DIV_ROUND_UP(skb->len, 8);
1439
1440 flits = skb_transport_offset(skb) / 8U; /* headers */
1441 cnt = skb_shinfo(skb)->nr_frags;
Li RongQing15dd16c2013-06-03 22:11:16 +00001442 if (skb_tail_pointer(skb) != skb_transport_header(skb))
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001443 cnt++;
1444 return flits + sgl_len(cnt);
1445}
1446
1447/**
1448 * txq_stop_maperr - stop a Tx queue due to I/O MMU exhaustion
1449 * @adap: the adapter
1450 * @q: the queue to stop
1451 *
1452 * Mark a Tx queue stopped due to I/O MMU exhaustion and resulting
1453 * inability to map packets. A periodic timer attempts to restart
1454 * queues so marked.
1455 */
1456static void txq_stop_maperr(struct sge_ofld_txq *q)
1457{
1458 q->mapping_err++;
1459 q->q.stops++;
Dimitris Michailidise46dab42010-08-23 17:20:58 +00001460 set_bit(q->q.cntxt_id - q->adap->sge.egr_start,
1461 q->adap->sge.txq_maperr);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001462}
1463
1464/**
1465 * ofldtxq_stop - stop an offload Tx queue that has become full
1466 * @q: the queue to stop
1467 * @skb: the packet causing the queue to become full
1468 *
1469 * Stops an offload Tx queue that has become full and modifies the packet
1470 * being written to request a wakeup.
1471 */
1472static void ofldtxq_stop(struct sge_ofld_txq *q, struct sk_buff *skb)
1473{
1474 struct fw_wr_hdr *wr = (struct fw_wr_hdr *)skb->data;
1475
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301476 wr->lo |= htonl(FW_WR_EQUEQ_F | FW_WR_EQUIQ_F);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001477 q->q.stops++;
1478 q->full = 1;
1479}
1480
1481/**
1482 * service_ofldq - restart a suspended offload queue
1483 * @q: the offload queue
1484 *
1485 * Services an offload Tx queue by moving packets from its packet queue
1486 * to the HW Tx ring. The function starts and ends with the queue locked.
1487 */
1488static void service_ofldq(struct sge_ofld_txq *q)
1489{
1490 u64 *pos;
1491 int credits;
1492 struct sk_buff *skb;
1493 unsigned int written = 0;
1494 unsigned int flits, ndesc;
1495
1496 while ((skb = skb_peek(&q->sendq)) != NULL && !q->full) {
1497 /*
1498 * We drop the lock but leave skb on sendq, thus retaining
1499 * exclusive access to the state of the queue.
1500 */
1501 spin_unlock(&q->sendq.lock);
1502
1503 reclaim_completed_tx(q->adap, &q->q, false);
1504
1505 flits = skb->priority; /* previously saved */
1506 ndesc = flits_to_desc(flits);
1507 credits = txq_avail(&q->q) - ndesc;
1508 BUG_ON(credits < 0);
1509 if (unlikely(credits < TXQ_STOP_THRES))
1510 ofldtxq_stop(q, skb);
1511
1512 pos = (u64 *)&q->q.desc[q->q.pidx];
1513 if (is_ofld_imm(skb))
1514 inline_tx_skb(skb, &q->q, pos);
1515 else if (map_skb(q->adap->pdev_dev, skb,
1516 (dma_addr_t *)skb->head)) {
1517 txq_stop_maperr(q);
1518 spin_lock(&q->sendq.lock);
1519 break;
1520 } else {
1521 int last_desc, hdr_len = skb_transport_offset(skb);
1522
1523 memcpy(pos, skb->data, hdr_len);
1524 write_sgl(skb, &q->q, (void *)pos + hdr_len,
1525 pos + flits, hdr_len,
1526 (dma_addr_t *)skb->head);
1527#ifdef CONFIG_NEED_DMA_MAP_STATE
1528 skb->dev = q->adap->port[0];
1529 skb->destructor = deferred_unmap_destructor;
1530#endif
1531 last_desc = q->q.pidx + ndesc - 1;
1532 if (last_desc >= q->q.size)
1533 last_desc -= q->q.size;
1534 q->q.sdesc[last_desc].skb = skb;
1535 }
1536
1537 txq_advance(&q->q, ndesc);
1538 written += ndesc;
1539 if (unlikely(written > 32)) {
1540 ring_tx_db(q->adap, &q->q, written);
1541 written = 0;
1542 }
1543
1544 spin_lock(&q->sendq.lock);
1545 __skb_unlink(skb, &q->sendq);
1546 if (is_ofld_imm(skb))
1547 kfree_skb(skb);
1548 }
1549 if (likely(written))
1550 ring_tx_db(q->adap, &q->q, written);
1551}
1552
1553/**
1554 * ofld_xmit - send a packet through an offload queue
1555 * @q: the Tx offload queue
1556 * @skb: the packet
1557 *
1558 * Send an offload packet through an SGE offload queue.
1559 */
1560static int ofld_xmit(struct sge_ofld_txq *q, struct sk_buff *skb)
1561{
1562 skb->priority = calc_tx_flits_ofld(skb); /* save for restart */
1563 spin_lock(&q->sendq.lock);
1564 __skb_queue_tail(&q->sendq, skb);
1565 if (q->sendq.qlen == 1)
1566 service_ofldq(q);
1567 spin_unlock(&q->sendq.lock);
1568 return NET_XMIT_SUCCESS;
1569}
1570
1571/**
1572 * restart_ofldq - restart a suspended offload queue
1573 * @data: the offload queue to restart
1574 *
1575 * Resumes transmission on a suspended Tx offload queue.
1576 */
1577static void restart_ofldq(unsigned long data)
1578{
1579 struct sge_ofld_txq *q = (struct sge_ofld_txq *)data;
1580
1581 spin_lock(&q->sendq.lock);
1582 q->full = 0; /* the queue actually is completely empty now */
1583 service_ofldq(q);
1584 spin_unlock(&q->sendq.lock);
1585}
1586
1587/**
1588 * skb_txq - return the Tx queue an offload packet should use
1589 * @skb: the packet
1590 *
1591 * Returns the Tx queue an offload packet should use as indicated by bits
1592 * 1-15 in the packet's queue_mapping.
1593 */
1594static inline unsigned int skb_txq(const struct sk_buff *skb)
1595{
1596 return skb->queue_mapping >> 1;
1597}
1598
1599/**
1600 * is_ctrl_pkt - return whether an offload packet is a control packet
1601 * @skb: the packet
1602 *
1603 * Returns whether an offload packet should use an OFLD or a CTRL
1604 * Tx queue as indicated by bit 0 in the packet's queue_mapping.
1605 */
1606static inline unsigned int is_ctrl_pkt(const struct sk_buff *skb)
1607{
1608 return skb->queue_mapping & 1;
1609}
1610
1611static inline int ofld_send(struct adapter *adap, struct sk_buff *skb)
1612{
1613 unsigned int idx = skb_txq(skb);
1614
Kumar Sanghvi4fe44dd2014-02-18 17:56:11 +05301615 if (unlikely(is_ctrl_pkt(skb))) {
1616 /* Single ctrl queue is a requirement for LE workaround path */
1617 if (adap->tids.nsftids)
1618 idx = 0;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001619 return ctrl_xmit(&adap->sge.ctrlq[idx], skb);
Kumar Sanghvi4fe44dd2014-02-18 17:56:11 +05301620 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001621 return ofld_xmit(&adap->sge.ofldtxq[idx], skb);
1622}
1623
1624/**
1625 * t4_ofld_send - send an offload packet
1626 * @adap: the adapter
1627 * @skb: the packet
1628 *
1629 * Sends an offload packet. We use the packet queue_mapping to select the
1630 * appropriate Tx queue as follows: bit 0 indicates whether the packet
1631 * should be sent as regular or control, bits 1-15 select the queue.
1632 */
1633int t4_ofld_send(struct adapter *adap, struct sk_buff *skb)
1634{
1635 int ret;
1636
1637 local_bh_disable();
1638 ret = ofld_send(adap, skb);
1639 local_bh_enable();
1640 return ret;
1641}
1642
1643/**
1644 * cxgb4_ofld_send - send an offload packet
1645 * @dev: the net device
1646 * @skb: the packet
1647 *
1648 * Sends an offload packet. This is an exported version of @t4_ofld_send,
1649 * intended for ULDs.
1650 */
1651int cxgb4_ofld_send(struct net_device *dev, struct sk_buff *skb)
1652{
1653 return t4_ofld_send(netdev2adap(dev), skb);
1654}
1655EXPORT_SYMBOL(cxgb4_ofld_send);
1656
Ian Campbelle91b0f22011-10-19 23:01:46 +00001657static inline void copy_frags(struct sk_buff *skb,
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001658 const struct pkt_gl *gl, unsigned int offset)
1659{
Ian Campbelle91b0f22011-10-19 23:01:46 +00001660 int i;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001661
1662 /* usually there's just one frag */
Ian Campbelle91b0f22011-10-19 23:01:46 +00001663 __skb_fill_page_desc(skb, 0, gl->frags[0].page,
1664 gl->frags[0].offset + offset,
1665 gl->frags[0].size - offset);
1666 skb_shinfo(skb)->nr_frags = gl->nfrags;
1667 for (i = 1; i < gl->nfrags; i++)
1668 __skb_fill_page_desc(skb, i, gl->frags[i].page,
1669 gl->frags[i].offset,
1670 gl->frags[i].size);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001671
1672 /* get a reference to the last page, we don't own it */
Ian Campbelle91b0f22011-10-19 23:01:46 +00001673 get_page(gl->frags[gl->nfrags - 1].page);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001674}
1675
1676/**
1677 * cxgb4_pktgl_to_skb - build an sk_buff from a packet gather list
1678 * @gl: the gather list
1679 * @skb_len: size of sk_buff main body if it carries fragments
1680 * @pull_len: amount of data to move to the sk_buff's main body
1681 *
1682 * Builds an sk_buff from the given packet gather list. Returns the
1683 * sk_buff or %NULL if sk_buff allocation failed.
1684 */
1685struct sk_buff *cxgb4_pktgl_to_skb(const struct pkt_gl *gl,
1686 unsigned int skb_len, unsigned int pull_len)
1687{
1688 struct sk_buff *skb;
1689
1690 /*
1691 * Below we rely on RX_COPY_THRES being less than the smallest Rx buffer
1692 * size, which is expected since buffers are at least PAGE_SIZEd.
1693 * In this case packets up to RX_COPY_THRES have only one fragment.
1694 */
1695 if (gl->tot_len <= RX_COPY_THRES) {
1696 skb = dev_alloc_skb(gl->tot_len);
1697 if (unlikely(!skb))
1698 goto out;
1699 __skb_put(skb, gl->tot_len);
1700 skb_copy_to_linear_data(skb, gl->va, gl->tot_len);
1701 } else {
1702 skb = dev_alloc_skb(skb_len);
1703 if (unlikely(!skb))
1704 goto out;
1705 __skb_put(skb, pull_len);
1706 skb_copy_to_linear_data(skb, gl->va, pull_len);
1707
Ian Campbelle91b0f22011-10-19 23:01:46 +00001708 copy_frags(skb, gl, pull_len);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001709 skb->len = gl->tot_len;
1710 skb->data_len = skb->len - pull_len;
1711 skb->truesize += skb->data_len;
1712 }
1713out: return skb;
1714}
1715EXPORT_SYMBOL(cxgb4_pktgl_to_skb);
1716
1717/**
1718 * t4_pktgl_free - free a packet gather list
1719 * @gl: the gather list
1720 *
1721 * Releases the pages of a packet gather list. We do not own the last
1722 * page on the list and do not free it.
1723 */
Roland Dreierde498c82010-04-21 08:59:17 +00001724static void t4_pktgl_free(const struct pkt_gl *gl)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001725{
1726 int n;
Ian Campbelle91b0f22011-10-19 23:01:46 +00001727 const struct page_frag *p;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001728
1729 for (p = gl->frags, n = gl->nfrags - 1; n--; p++)
1730 put_page(p->page);
1731}
1732
1733/*
1734 * Process an MPS trace packet. Give it an unused protocol number so it won't
1735 * be delivered to anyone and send it to the stack for capture.
1736 */
1737static noinline int handle_trace_pkt(struct adapter *adap,
1738 const struct pkt_gl *gl)
1739{
1740 struct sk_buff *skb;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001741
1742 skb = cxgb4_pktgl_to_skb(gl, RX_PULL_LEN, RX_PULL_LEN);
1743 if (unlikely(!skb)) {
1744 t4_pktgl_free(gl);
1745 return 0;
1746 }
1747
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05301748 if (is_t4(adap->params.chip))
Santosh Rastapur0a57a532013-03-14 05:08:49 +00001749 __skb_pull(skb, sizeof(struct cpl_trace_pkt));
1750 else
1751 __skb_pull(skb, sizeof(struct cpl_t5_trace_pkt));
1752
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001753 skb_reset_mac_header(skb);
1754 skb->protocol = htons(0xffff);
1755 skb->dev = adap->port[0];
1756 netif_receive_skb(skb);
1757 return 0;
1758}
1759
1760static void do_gro(struct sge_eth_rxq *rxq, const struct pkt_gl *gl,
1761 const struct cpl_rx_pkt *pkt)
1762{
Vipul Pandya52367a72012-09-26 02:39:38 +00001763 struct adapter *adapter = rxq->rspq.adap;
1764 struct sge *s = &adapter->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001765 int ret;
1766 struct sk_buff *skb;
1767
1768 skb = napi_get_frags(&rxq->rspq.napi);
1769 if (unlikely(!skb)) {
1770 t4_pktgl_free(gl);
1771 rxq->stats.rx_drops++;
1772 return;
1773 }
1774
Vipul Pandya52367a72012-09-26 02:39:38 +00001775 copy_frags(skb, gl, s->pktshift);
1776 skb->len = gl->tot_len - s->pktshift;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001777 skb->data_len = skb->len;
1778 skb->truesize += skb->data_len;
1779 skb->ip_summed = CHECKSUM_UNNECESSARY;
1780 skb_record_rx_queue(skb, rxq->rspq.idx);
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05301781 skb_mark_napi_id(skb, &rxq->rspq.napi);
Dimitris Michailidis87b6cf52010-04-27 16:22:42 -07001782 if (rxq->rspq.netdev->features & NETIF_F_RXHASH)
Tom Herbert82649892013-12-17 23:23:29 -08001783 skb_set_hash(skb, (__force u32)pkt->rsshdr.hash_val,
1784 PKT_HASH_TYPE_L3);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001785
1786 if (unlikely(pkt->vlan_ex)) {
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001787 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), ntohs(pkt->vlan));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001788 rxq->stats.vlan_ex++;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001789 }
1790 ret = napi_gro_frags(&rxq->rspq.napi);
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001791 if (ret == GRO_HELD)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001792 rxq->stats.lro_pkts++;
1793 else if (ret == GRO_MERGED || ret == GRO_MERGED_FREE)
1794 rxq->stats.lro_merged++;
1795 rxq->stats.pkts++;
1796 rxq->stats.rx_cso++;
1797}
1798
1799/**
1800 * t4_ethrx_handler - process an ingress ethernet packet
1801 * @q: the response queue that received the packet
1802 * @rsp: the response queue descriptor holding the RX_PKT message
1803 * @si: the gather list of packet fragments
1804 *
1805 * Process an ingress ethernet packet and deliver it to the stack.
1806 */
1807int t4_ethrx_handler(struct sge_rspq *q, const __be64 *rsp,
1808 const struct pkt_gl *si)
1809{
1810 bool csum_ok;
1811 struct sk_buff *skb;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001812 const struct cpl_rx_pkt *pkt;
1813 struct sge_eth_rxq *rxq = container_of(q, struct sge_eth_rxq, rspq);
Vipul Pandya52367a72012-09-26 02:39:38 +00001814 struct sge *s = &q->adap->sge;
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05301815 int cpl_trace_pkt = is_t4(q->adap->params.chip) ?
Santosh Rastapur0a57a532013-03-14 05:08:49 +00001816 CPL_TRACE_PKT : CPL_TRACE_PKT_T5;
Varun Prakash84a200b2015-03-24 19:14:46 +05301817#ifdef CONFIG_CHELSIO_T4_FCOE
1818 struct port_info *pi;
1819#endif
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001820
Santosh Rastapur0a57a532013-03-14 05:08:49 +00001821 if (unlikely(*(u8 *)rsp == cpl_trace_pkt))
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001822 return handle_trace_pkt(q->adap, si);
1823
Dimitris Michailidis87b6cf52010-04-27 16:22:42 -07001824 pkt = (const struct cpl_rx_pkt *)rsp;
Hariprasad Shenaicca28222014-05-07 18:01:03 +05301825 csum_ok = pkt->csum_calc && !pkt->err_vec &&
1826 (q->netdev->features & NETIF_F_RXCSUM);
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -08001827 if ((pkt->l2info & htonl(RXF_TCP_F)) &&
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05301828 !(cxgb_poll_busy_polling(q)) &&
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001829 (q->netdev->features & NETIF_F_GRO) && csum_ok && !pkt->ip_frag) {
1830 do_gro(rxq, si, pkt);
1831 return 0;
1832 }
1833
1834 skb = cxgb4_pktgl_to_skb(si, RX_PKT_SKB_LEN, RX_PULL_LEN);
1835 if (unlikely(!skb)) {
1836 t4_pktgl_free(si);
1837 rxq->stats.rx_drops++;
1838 return 0;
1839 }
1840
Vipul Pandya52367a72012-09-26 02:39:38 +00001841 __skb_pull(skb, s->pktshift); /* remove ethernet header padding */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001842 skb->protocol = eth_type_trans(skb, q->netdev);
1843 skb_record_rx_queue(skb, q->idx);
Dimitris Michailidis87b6cf52010-04-27 16:22:42 -07001844 if (skb->dev->features & NETIF_F_RXHASH)
Tom Herbert82649892013-12-17 23:23:29 -08001845 skb_set_hash(skb, (__force u32)pkt->rsshdr.hash_val,
1846 PKT_HASH_TYPE_L3);
Dimitris Michailidis87b6cf52010-04-27 16:22:42 -07001847
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001848 rxq->stats.pkts++;
1849
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -08001850 if (csum_ok && (pkt->l2info & htonl(RXF_UDP_F | RXF_TCP_F))) {
Dimitris Michailidisba5d3c62010-08-02 13:19:17 +00001851 if (!pkt->ip_frag) {
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001852 skb->ip_summed = CHECKSUM_UNNECESSARY;
Dimitris Michailidisba5d3c62010-08-02 13:19:17 +00001853 rxq->stats.rx_cso++;
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -08001854 } else if (pkt->l2info & htonl(RXF_IP_F)) {
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001855 __sum16 c = (__force __sum16)pkt->csum;
1856 skb->csum = csum_unfold(c);
1857 skb->ip_summed = CHECKSUM_COMPLETE;
Dimitris Michailidisba5d3c62010-08-02 13:19:17 +00001858 rxq->stats.rx_cso++;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001859 }
Varun Prakash84a200b2015-03-24 19:14:46 +05301860 } else {
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001861 skb_checksum_none_assert(skb);
Varun Prakash84a200b2015-03-24 19:14:46 +05301862#ifdef CONFIG_CHELSIO_T4_FCOE
1863#define CPL_RX_PKT_FLAGS (RXF_PSH_F | RXF_SYN_F | RXF_UDP_F | \
1864 RXF_TCP_F | RXF_IP_F | RXF_IP6_F | RXF_LRO_F)
1865
1866 pi = netdev_priv(skb->dev);
1867 if (!(pkt->l2info & cpu_to_be32(CPL_RX_PKT_FLAGS))) {
1868 if ((pkt->l2info & cpu_to_be32(RXF_FCOE_F)) &&
1869 (pi->fcoe.flags & CXGB_FCOE_ENABLED)) {
1870 if (!(pkt->err_vec & cpu_to_be16(RXERR_CSUM_F)))
1871 skb->ip_summed = CHECKSUM_UNNECESSARY;
1872 }
1873 }
1874
1875#undef CPL_RX_PKT_FLAGS
1876#endif /* CONFIG_CHELSIO_T4_FCOE */
1877 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001878
1879 if (unlikely(pkt->vlan_ex)) {
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001880 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), ntohs(pkt->vlan));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001881 rxq->stats.vlan_ex++;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001882 }
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05301883 skb_mark_napi_id(skb, &q->napi);
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001884 netif_receive_skb(skb);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001885 return 0;
1886}
1887
1888/**
1889 * restore_rx_bufs - put back a packet's Rx buffers
1890 * @si: the packet gather list
1891 * @q: the SGE free list
1892 * @frags: number of FL buffers to restore
1893 *
1894 * Puts back on an FL the Rx buffers associated with @si. The buffers
1895 * have already been unmapped and are left unmapped, we mark them so to
1896 * prevent further unmapping attempts.
1897 *
1898 * This function undoes a series of @unmap_rx_buf calls when we find out
1899 * that the current packet can't be processed right away afterall and we
1900 * need to come back to it later. This is a very rare event and there's
1901 * no effort to make this particularly efficient.
1902 */
1903static void restore_rx_bufs(const struct pkt_gl *si, struct sge_fl *q,
1904 int frags)
1905{
1906 struct rx_sw_desc *d;
1907
1908 while (frags--) {
1909 if (q->cidx == 0)
1910 q->cidx = q->size - 1;
1911 else
1912 q->cidx--;
1913 d = &q->sdesc[q->cidx];
1914 d->page = si->frags[frags].page;
1915 d->dma_addr |= RX_UNMAPPED_BUF;
1916 q->avail++;
1917 }
1918}
1919
1920/**
1921 * is_new_response - check if a response is newly written
1922 * @r: the response descriptor
1923 * @q: the response queue
1924 *
1925 * Returns true if a response descriptor contains a yet unprocessed
1926 * response.
1927 */
1928static inline bool is_new_response(const struct rsp_ctrl *r,
1929 const struct sge_rspq *q)
1930{
1931 return RSPD_GEN(r->type_gen) == q->gen;
1932}
1933
1934/**
1935 * rspq_next - advance to the next entry in a response queue
1936 * @q: the queue
1937 *
1938 * Updates the state of a response queue to advance it to the next entry.
1939 */
1940static inline void rspq_next(struct sge_rspq *q)
1941{
1942 q->cur_desc = (void *)q->cur_desc + q->iqe_len;
1943 if (unlikely(++q->cidx == q->size)) {
1944 q->cidx = 0;
1945 q->gen ^= 1;
1946 q->cur_desc = q->desc;
1947 }
1948}
1949
1950/**
1951 * process_responses - process responses from an SGE response queue
1952 * @q: the ingress queue to process
1953 * @budget: how many responses can be processed in this round
1954 *
1955 * Process responses from an SGE response queue up to the supplied budget.
1956 * Responses include received packets as well as control messages from FW
1957 * or HW.
1958 *
1959 * Additionally choose the interrupt holdoff time for the next interrupt
1960 * on this queue. If the system is under memory shortage use a fairly
1961 * long delay to help recovery.
1962 */
1963static int process_responses(struct sge_rspq *q, int budget)
1964{
1965 int ret, rsp_type;
1966 int budget_left = budget;
1967 const struct rsp_ctrl *rc;
1968 struct sge_eth_rxq *rxq = container_of(q, struct sge_eth_rxq, rspq);
Vipul Pandya52367a72012-09-26 02:39:38 +00001969 struct adapter *adapter = q->adap;
1970 struct sge *s = &adapter->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001971
1972 while (likely(budget_left)) {
1973 rc = (void *)q->cur_desc + (q->iqe_len - sizeof(*rc));
1974 if (!is_new_response(rc, q))
1975 break;
1976
Alexander Duyck019be1c2015-04-08 18:49:29 -07001977 dma_rmb();
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001978 rsp_type = RSPD_TYPE(rc->type_gen);
1979 if (likely(rsp_type == RSP_TYPE_FLBUF)) {
Ian Campbelle91b0f22011-10-19 23:01:46 +00001980 struct page_frag *fp;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001981 struct pkt_gl si;
1982 const struct rx_sw_desc *rsd;
1983 u32 len = ntohl(rc->pldbuflen_qid), bufsz, frags;
1984
1985 if (len & RSPD_NEWBUF) {
1986 if (likely(q->offset > 0)) {
1987 free_rx_bufs(q->adap, &rxq->fl, 1);
1988 q->offset = 0;
1989 }
Casey Leedom1704d742010-06-25 12:09:38 +00001990 len = RSPD_LEN(len);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001991 }
1992 si.tot_len = len;
1993
1994 /* gather packet fragments */
1995 for (frags = 0, fp = si.frags; ; frags++, fp++) {
1996 rsd = &rxq->fl.sdesc[rxq->fl.cidx];
Vipul Pandya52367a72012-09-26 02:39:38 +00001997 bufsz = get_buf_size(adapter, rsd);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001998 fp->page = rsd->page;
Ian Campbelle91b0f22011-10-19 23:01:46 +00001999 fp->offset = q->offset;
2000 fp->size = min(bufsz, len);
2001 len -= fp->size;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002002 if (!len)
2003 break;
2004 unmap_rx_buf(q->adap, &rxq->fl);
2005 }
2006
2007 /*
2008 * Last buffer remains mapped so explicitly make it
2009 * coherent for CPU access.
2010 */
2011 dma_sync_single_for_cpu(q->adap->pdev_dev,
2012 get_buf_addr(rsd),
Ian Campbelle91b0f22011-10-19 23:01:46 +00002013 fp->size, DMA_FROM_DEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002014
2015 si.va = page_address(si.frags[0].page) +
Ian Campbelle91b0f22011-10-19 23:01:46 +00002016 si.frags[0].offset;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002017 prefetch(si.va);
2018
2019 si.nfrags = frags + 1;
2020 ret = q->handler(q, q->cur_desc, &si);
2021 if (likely(ret == 0))
Vipul Pandya52367a72012-09-26 02:39:38 +00002022 q->offset += ALIGN(fp->size, s->fl_align);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002023 else
2024 restore_rx_bufs(&si, &rxq->fl, frags);
2025 } else if (likely(rsp_type == RSP_TYPE_CPL)) {
2026 ret = q->handler(q, q->cur_desc, NULL);
2027 } else {
2028 ret = q->handler(q, (const __be64 *)rc, CXGB4_MSG_AN);
2029 }
2030
2031 if (unlikely(ret)) {
2032 /* couldn't process descriptor, back off for recovery */
2033 q->next_intr_params = QINTR_TIMER_IDX(NOMEM_TMR_IDX);
2034 break;
2035 }
2036
2037 rspq_next(q);
2038 budget_left--;
2039 }
2040
2041 if (q->offset >= 0 && rxq->fl.size - rxq->fl.avail >= 16)
2042 __refill_fl(q->adap, &rxq->fl);
2043 return budget - budget_left;
2044}
2045
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05302046#ifdef CONFIG_NET_RX_BUSY_POLL
2047int cxgb_busy_poll(struct napi_struct *napi)
2048{
2049 struct sge_rspq *q = container_of(napi, struct sge_rspq, napi);
2050 unsigned int params, work_done;
2051 u32 val;
2052
2053 if (!cxgb_poll_lock_poll(q))
2054 return LL_FLUSH_BUSY;
2055
2056 work_done = process_responses(q, 4);
2057 params = QINTR_TIMER_IDX(TIMERREG_COUNTER0_X) | QINTR_CNT_EN;
2058 q->next_intr_params = params;
2059 val = CIDXINC_V(work_done) | SEINTARM_V(params);
2060
2061 /* If we don't have access to the new User GTS (T5+), use the old
2062 * doorbell mechanism; otherwise use the new BAR2 mechanism.
2063 */
2064 if (unlikely(!q->bar2_addr))
2065 t4_write_reg(q->adap, MYPF_REG(SGE_PF_GTS_A),
2066 val | INGRESSQID_V((u32)q->cntxt_id));
2067 else {
2068 writel(val | INGRESSQID_V(q->bar2_qid),
2069 q->bar2_addr + SGE_UDB_GTS);
2070 wmb();
2071 }
2072
2073 cxgb_poll_unlock_poll(q);
2074 return work_done;
2075}
2076#endif /* CONFIG_NET_RX_BUSY_POLL */
2077
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002078/**
2079 * napi_rx_handler - the NAPI handler for Rx processing
2080 * @napi: the napi instance
2081 * @budget: how many packets we can process in this round
2082 *
2083 * Handler for new data events when using NAPI. This does not need any
2084 * locking or protection from interrupts as data interrupts are off at
2085 * this point and other adapter interrupts do not interfere (the latter
2086 * in not a concern at all with MSI-X as non-data interrupts then have
2087 * a separate handler).
2088 */
2089static int napi_rx_handler(struct napi_struct *napi, int budget)
2090{
2091 unsigned int params;
2092 struct sge_rspq *q = container_of(napi, struct sge_rspq, napi);
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05302093 int work_done;
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302094 u32 val;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002095
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05302096 if (!cxgb_poll_lock_napi(q))
2097 return budget;
2098
2099 work_done = process_responses(q, budget);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002100 if (likely(work_done < budget)) {
Hariprasad Shenaie553ec32014-09-26 00:23:55 +05302101 int timer_index;
2102
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002103 napi_complete(napi);
Hariprasad Shenaie553ec32014-09-26 00:23:55 +05302104 timer_index = QINTR_TIMER_IDX_GET(q->next_intr_params);
2105
2106 if (q->adaptive_rx) {
2107 if (work_done > max(timer_pkt_quota[timer_index],
2108 MIN_NAPI_WORK))
2109 timer_index = (timer_index + 1);
2110 else
2111 timer_index = timer_index - 1;
2112
2113 timer_index = clamp(timer_index, 0, SGE_TIMERREGS - 1);
2114 q->next_intr_params = QINTR_TIMER_IDX(timer_index) |
2115 V_QINTR_CNT_EN;
2116 params = q->next_intr_params;
2117 } else {
2118 params = q->next_intr_params;
2119 q->next_intr_params = q->intr_params;
2120 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002121 } else
2122 params = QINTR_TIMER_IDX(7);
2123
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302124 val = CIDXINC_V(work_done) | SEINTARM_V(params);
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302125
2126 /* If we don't have access to the new User GTS (T5+), use the old
2127 * doorbell mechanism; otherwise use the new BAR2 mechanism.
2128 */
2129 if (unlikely(q->bar2_addr == NULL)) {
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302130 t4_write_reg(q->adap, MYPF_REG(SGE_PF_GTS_A),
2131 val | INGRESSQID_V((u32)q->cntxt_id));
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302132 } else {
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302133 writel(val | INGRESSQID_V(q->bar2_qid),
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302134 q->bar2_addr + SGE_UDB_GTS);
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302135 wmb();
2136 }
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05302137 cxgb_poll_unlock_napi(q);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002138 return work_done;
2139}
2140
2141/*
2142 * The MSI-X interrupt handler for an SGE response queue.
2143 */
2144irqreturn_t t4_sge_intr_msix(int irq, void *cookie)
2145{
2146 struct sge_rspq *q = cookie;
2147
2148 napi_schedule(&q->napi);
2149 return IRQ_HANDLED;
2150}
2151
2152/*
2153 * Process the indirect interrupt entries in the interrupt queue and kick off
2154 * NAPI for each queue that has generated an entry.
2155 */
2156static unsigned int process_intrq(struct adapter *adap)
2157{
2158 unsigned int credits;
2159 const struct rsp_ctrl *rc;
2160 struct sge_rspq *q = &adap->sge.intrq;
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302161 u32 val;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002162
2163 spin_lock(&adap->sge.intrq_lock);
2164 for (credits = 0; ; credits++) {
2165 rc = (void *)q->cur_desc + (q->iqe_len - sizeof(*rc));
2166 if (!is_new_response(rc, q))
2167 break;
2168
Alexander Duyck019be1c2015-04-08 18:49:29 -07002169 dma_rmb();
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002170 if (RSPD_TYPE(rc->type_gen) == RSP_TYPE_INTR) {
2171 unsigned int qid = ntohl(rc->pldbuflen_qid);
2172
Dimitris Michailidise46dab42010-08-23 17:20:58 +00002173 qid -= adap->sge.ingr_start;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002174 napi_schedule(&adap->sge.ingr_map[qid]->napi);
2175 }
2176
2177 rspq_next(q);
2178 }
2179
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302180 val = CIDXINC_V(credits) | SEINTARM_V(q->intr_params);
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302181
2182 /* If we don't have access to the new User GTS (T5+), use the old
2183 * doorbell mechanism; otherwise use the new BAR2 mechanism.
2184 */
2185 if (unlikely(q->bar2_addr == NULL)) {
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302186 t4_write_reg(adap, MYPF_REG(SGE_PF_GTS_A),
2187 val | INGRESSQID_V(q->cntxt_id));
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302188 } else {
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302189 writel(val | INGRESSQID_V(q->bar2_qid),
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302190 q->bar2_addr + SGE_UDB_GTS);
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302191 wmb();
2192 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002193 spin_unlock(&adap->sge.intrq_lock);
2194 return credits;
2195}
2196
2197/*
2198 * The MSI interrupt handler, which handles data events from SGE response queues
2199 * as well as error and other async events as they all use the same MSI vector.
2200 */
2201static irqreturn_t t4_intr_msi(int irq, void *cookie)
2202{
2203 struct adapter *adap = cookie;
2204
2205 t4_slow_intr_handler(adap);
2206 process_intrq(adap);
2207 return IRQ_HANDLED;
2208}
2209
2210/*
2211 * Interrupt handler for legacy INTx interrupts.
2212 * Handles data events from SGE response queues as well as error and other
2213 * async events as they all use the same interrupt line.
2214 */
2215static irqreturn_t t4_intr_intx(int irq, void *cookie)
2216{
2217 struct adapter *adap = cookie;
2218
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302219 t4_write_reg(adap, MYPF_REG(PCIE_PF_CLI_A), 0);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002220 if (t4_slow_intr_handler(adap) | process_intrq(adap))
2221 return IRQ_HANDLED;
2222 return IRQ_NONE; /* probably shared interrupt */
2223}
2224
2225/**
2226 * t4_intr_handler - select the top-level interrupt handler
2227 * @adap: the adapter
2228 *
2229 * Selects the top-level interrupt handler based on the type of interrupts
2230 * (MSI-X, MSI, or INTx).
2231 */
2232irq_handler_t t4_intr_handler(struct adapter *adap)
2233{
2234 if (adap->flags & USING_MSIX)
2235 return t4_sge_intr_msix;
2236 if (adap->flags & USING_MSI)
2237 return t4_intr_msi;
2238 return t4_intr_intx;
2239}
2240
2241static void sge_rx_timer_cb(unsigned long data)
2242{
2243 unsigned long m;
Kumar Sanghvi0f4d2012014-03-13 20:50:48 +05302244 unsigned int i, idma_same_state_cnt[2];
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002245 struct adapter *adap = (struct adapter *)data;
2246 struct sge *s = &adap->sge;
2247
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05302248 for (i = 0; i < BITS_TO_LONGS(s->egr_sz); i++)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002249 for (m = s->starving_fl[i]; m; m &= m - 1) {
2250 struct sge_eth_rxq *rxq;
2251 unsigned int id = __ffs(m) + i * BITS_PER_LONG;
2252 struct sge_fl *fl = s->egr_map[id];
2253
2254 clear_bit(id, s->starving_fl);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002255 smp_mb__after_atomic();
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002256
Hariprasad Shenaic098b022015-04-15 02:02:31 +05302257 if (fl_starving(adap, fl)) {
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002258 rxq = container_of(fl, struct sge_eth_rxq, fl);
2259 if (napi_reschedule(&rxq->rspq.napi))
2260 fl->starving++;
2261 else
2262 set_bit(id, s->starving_fl);
2263 }
2264 }
2265
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302266 t4_write_reg(adap, SGE_DEBUG_INDEX_A, 13);
2267 idma_same_state_cnt[0] = t4_read_reg(adap, SGE_DEBUG_DATA_HIGH_A);
2268 idma_same_state_cnt[1] = t4_read_reg(adap, SGE_DEBUG_DATA_LOW_A);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002269
Kumar Sanghvi0f4d2012014-03-13 20:50:48 +05302270 for (i = 0; i < 2; i++) {
2271 u32 debug0, debug11;
2272
2273 /* If the Ingress DMA Same State Counter ("timer") is less
2274 * than 1s, then we can reset our synthesized Stall Timer and
2275 * continue. If we have previously emitted warnings about a
2276 * potential stalled Ingress Queue, issue a note indicating
2277 * that the Ingress Queue has resumed forward progress.
2278 */
2279 if (idma_same_state_cnt[i] < s->idma_1s_thresh) {
2280 if (s->idma_stalled[i] >= SGE_IDMA_WARN_THRESH)
2281 CH_WARN(adap, "SGE idma%d, queue%u,resumed after %d sec\n",
2282 i, s->idma_qid[i],
2283 s->idma_stalled[i]/HZ);
2284 s->idma_stalled[i] = 0;
2285 continue;
2286 }
2287
2288 /* Synthesize an SGE Ingress DMA Same State Timer in the Hz
2289 * domain. The first time we get here it'll be because we
2290 * passed the 1s Threshold; each additional time it'll be
2291 * because the RX Timer Callback is being fired on its regular
2292 * schedule.
2293 *
2294 * If the stall is below our Potential Hung Ingress Queue
2295 * Warning Threshold, continue.
2296 */
2297 if (s->idma_stalled[i] == 0)
2298 s->idma_stalled[i] = HZ;
2299 else
2300 s->idma_stalled[i] += RX_QCHECK_PERIOD;
2301
2302 if (s->idma_stalled[i] < SGE_IDMA_WARN_THRESH)
2303 continue;
2304
2305 /* We'll issue a warning every SGE_IDMA_WARN_REPEAT Hz */
2306 if (((s->idma_stalled[i] - HZ) % SGE_IDMA_WARN_REPEAT) != 0)
2307 continue;
2308
2309 /* Read and save the SGE IDMA State and Queue ID information.
2310 * We do this every time in case it changes across time ...
2311 */
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302312 t4_write_reg(adap, SGE_DEBUG_INDEX_A, 0);
2313 debug0 = t4_read_reg(adap, SGE_DEBUG_DATA_LOW_A);
Kumar Sanghvi0f4d2012014-03-13 20:50:48 +05302314 s->idma_state[i] = (debug0 >> (i * 9)) & 0x3f;
2315
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302316 t4_write_reg(adap, SGE_DEBUG_INDEX_A, 11);
2317 debug11 = t4_read_reg(adap, SGE_DEBUG_DATA_LOW_A);
Kumar Sanghvi0f4d2012014-03-13 20:50:48 +05302318 s->idma_qid[i] = (debug11 >> (i * 16)) & 0xffff;
2319
2320 CH_WARN(adap, "SGE idma%u, queue%u, maybe stuck state%u %dsecs (debug0=%#x, debug11=%#x)\n",
2321 i, s->idma_qid[i], s->idma_state[i],
2322 s->idma_stalled[i]/HZ, debug0, debug11);
2323 t4_sge_decode_idma_state(adap, s->idma_state[i]);
2324 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002325
2326 mod_timer(&s->rx_timer, jiffies + RX_QCHECK_PERIOD);
2327}
2328
2329static void sge_tx_timer_cb(unsigned long data)
2330{
2331 unsigned long m;
2332 unsigned int i, budget;
2333 struct adapter *adap = (struct adapter *)data;
2334 struct sge *s = &adap->sge;
2335
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05302336 for (i = 0; i < BITS_TO_LONGS(s->egr_sz); i++)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002337 for (m = s->txq_maperr[i]; m; m &= m - 1) {
2338 unsigned long id = __ffs(m) + i * BITS_PER_LONG;
2339 struct sge_ofld_txq *txq = s->egr_map[id];
2340
2341 clear_bit(id, s->txq_maperr);
2342 tasklet_schedule(&txq->qresume_tsk);
2343 }
2344
2345 budget = MAX_TIMER_TX_RECLAIM;
2346 i = s->ethtxq_rover;
2347 do {
2348 struct sge_eth_txq *q = &s->ethtxq[i];
2349
2350 if (q->q.in_use &&
2351 time_after_eq(jiffies, q->txq->trans_start + HZ / 100) &&
2352 __netif_tx_trylock(q->txq)) {
2353 int avail = reclaimable(&q->q);
2354
2355 if (avail) {
2356 if (avail > budget)
2357 avail = budget;
2358
2359 free_tx_desc(adap, &q->q, avail, true);
2360 q->q.in_use -= avail;
2361 budget -= avail;
2362 }
2363 __netif_tx_unlock(q->txq);
2364 }
2365
2366 if (++i >= s->ethqsets)
2367 i = 0;
2368 } while (budget && i != s->ethtxq_rover);
2369 s->ethtxq_rover = i;
2370 mod_timer(&s->tx_timer, jiffies + (budget ? TX_QCHECK_PERIOD : 2));
2371}
2372
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302373/**
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302374 * bar2_address - return the BAR2 address for an SGE Queue's Registers
2375 * @adapter: the adapter
2376 * @qid: the SGE Queue ID
2377 * @qtype: the SGE Queue Type (Egress or Ingress)
2378 * @pbar2_qid: BAR2 Queue ID or 0 for Queue ID inferred SGE Queues
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302379 *
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302380 * Returns the BAR2 address for the SGE Queue Registers associated with
2381 * @qid. If BAR2 SGE Registers aren't available, returns NULL. Also
2382 * returns the BAR2 Queue ID to be used with writes to the BAR2 SGE
2383 * Queue Registers. If the BAR2 Queue ID is 0, then "Inferred Queue ID"
2384 * Registers are supported (e.g. the Write Combining Doorbell Buffer).
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302385 */
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302386static void __iomem *bar2_address(struct adapter *adapter,
2387 unsigned int qid,
2388 enum t4_bar2_qtype qtype,
2389 unsigned int *pbar2_qid)
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302390{
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302391 u64 bar2_qoffset;
2392 int ret;
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302393
Stephen Rothwelldd0bcc02014-12-10 19:48:02 +11002394 ret = cxgb4_t4_bar2_sge_qregs(adapter, qid, qtype,
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302395 &bar2_qoffset, pbar2_qid);
2396 if (ret)
2397 return NULL;
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302398
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302399 return adapter->bar2 + bar2_qoffset;
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302400}
2401
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002402int t4_sge_alloc_rxq(struct adapter *adap, struct sge_rspq *iq, bool fwevtq,
2403 struct net_device *dev, int intr_idx,
2404 struct sge_fl *fl, rspq_handler_t hnd)
2405{
2406 int ret, flsz = 0;
2407 struct fw_iq_cmd c;
Vipul Pandya52367a72012-09-26 02:39:38 +00002408 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002409 struct port_info *pi = netdev_priv(dev);
2410
2411 /* Size needs to be multiple of 16, including status entry. */
2412 iq->size = roundup(iq->size, 16);
2413
2414 iq->desc = alloc_ring(adap->pdev_dev, iq->size, iq->iqe_len, 0,
Dimitris Michailidisad6bad32010-12-14 21:36:55 +00002415 &iq->phys_addr, NULL, 0, NUMA_NO_NODE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002416 if (!iq->desc)
2417 return -ENOMEM;
2418
2419 memset(&c, 0, sizeof(c));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05302420 c.op_to_vfn = htonl(FW_CMD_OP_V(FW_IQ_CMD) | FW_CMD_REQUEST_F |
2421 FW_CMD_WRITE_F | FW_CMD_EXEC_F |
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302422 FW_IQ_CMD_PFN_V(adap->fn) | FW_IQ_CMD_VFN_V(0));
2423 c.alloc_to_len16 = htonl(FW_IQ_CMD_ALLOC_F | FW_IQ_CMD_IQSTART_F |
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002424 FW_LEN16(c));
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302425 c.type_to_iqandstindex = htonl(FW_IQ_CMD_TYPE_V(FW_IQ_TYPE_FL_INT_CAP) |
2426 FW_IQ_CMD_IQASYNCH_V(fwevtq) | FW_IQ_CMD_VIID_V(pi->viid) |
2427 FW_IQ_CMD_IQANDST_V(intr_idx < 0) | FW_IQ_CMD_IQANUD_V(1) |
2428 FW_IQ_CMD_IQANDSTINDEX_V(intr_idx >= 0 ? intr_idx :
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002429 -intr_idx - 1));
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302430 c.iqdroprss_to_iqesize = htons(FW_IQ_CMD_IQPCIECH_V(pi->tx_chan) |
2431 FW_IQ_CMD_IQGTSMODE_F |
2432 FW_IQ_CMD_IQINTCNTTHRESH_V(iq->pktcnt_idx) |
2433 FW_IQ_CMD_IQESIZE_V(ilog2(iq->iqe_len) - 4));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002434 c.iqsize = htons(iq->size);
2435 c.iqaddr = cpu_to_be64(iq->phys_addr);
2436
2437 if (fl) {
2438 fl->size = roundup(fl->size, 8);
2439 fl->desc = alloc_ring(adap->pdev_dev, fl->size, sizeof(__be64),
2440 sizeof(struct rx_sw_desc), &fl->addr,
Vipul Pandya52367a72012-09-26 02:39:38 +00002441 &fl->sdesc, s->stat_len, NUMA_NO_NODE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002442 if (!fl->desc)
2443 goto fl_nomem;
2444
Vipul Pandya52367a72012-09-26 02:39:38 +00002445 flsz = fl->size / 8 + s->stat_len / sizeof(struct tx_desc);
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302446 c.iqns_to_fl0congen = htonl(FW_IQ_CMD_FL0PACKEN_F |
2447 FW_IQ_CMD_FL0FETCHRO_F |
2448 FW_IQ_CMD_FL0DATARO_F |
2449 FW_IQ_CMD_FL0PADEN_F);
2450 c.fl0dcaen_to_fl0cidxfthresh = htons(FW_IQ_CMD_FL0FBMIN_V(2) |
2451 FW_IQ_CMD_FL0FBMAX_V(3));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002452 c.fl0size = htons(flsz);
2453 c.fl0addr = cpu_to_be64(fl->addr);
2454 }
2455
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002456 ret = t4_wr_mbox(adap, adap->fn, &c, sizeof(c), &c);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002457 if (ret)
2458 goto err;
2459
2460 netif_napi_add(dev, &iq->napi, napi_rx_handler, 64);
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05302461 napi_hash_add(&iq->napi);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002462 iq->cur_desc = iq->desc;
2463 iq->cidx = 0;
2464 iq->gen = 1;
2465 iq->next_intr_params = iq->intr_params;
2466 iq->cntxt_id = ntohs(c.iqid);
2467 iq->abs_id = ntohs(c.physiqid);
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302468 iq->bar2_addr = bar2_address(adap,
2469 iq->cntxt_id,
2470 T4_BAR2_QTYPE_INGRESS,
2471 &iq->bar2_qid);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002472 iq->size--; /* subtract status entry */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002473 iq->netdev = dev;
2474 iq->handler = hnd;
2475
2476 /* set offset to -1 to distinguish ingress queues without FL */
2477 iq->offset = fl ? 0 : -1;
2478
Dimitris Michailidise46dab42010-08-23 17:20:58 +00002479 adap->sge.ingr_map[iq->cntxt_id - adap->sge.ingr_start] = iq;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002480
2481 if (fl) {
Roland Dreier62718b32010-04-21 08:09:21 +00002482 fl->cntxt_id = ntohs(c.fl0id);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002483 fl->avail = fl->pend_cred = 0;
2484 fl->pidx = fl->cidx = 0;
2485 fl->alloc_failed = fl->large_alloc_failed = fl->starving = 0;
Dimitris Michailidise46dab42010-08-23 17:20:58 +00002486 adap->sge.egr_map[fl->cntxt_id - adap->sge.egr_start] = fl;
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302487
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302488 /* Note, we must initialize the BAR2 Free List User Doorbell
2489 * information before refilling the Free List!
Hariprasad Shenaid63a6dc2014-09-26 00:23:52 +05302490 */
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302491 fl->bar2_addr = bar2_address(adap,
2492 fl->cntxt_id,
2493 T4_BAR2_QTYPE_EGRESS,
2494 &fl->bar2_qid);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002495 refill_fl(adap, fl, fl_cap(fl), GFP_KERNEL);
2496 }
2497 return 0;
2498
2499fl_nomem:
2500 ret = -ENOMEM;
2501err:
2502 if (iq->desc) {
2503 dma_free_coherent(adap->pdev_dev, iq->size * iq->iqe_len,
2504 iq->desc, iq->phys_addr);
2505 iq->desc = NULL;
2506 }
2507 if (fl && fl->desc) {
2508 kfree(fl->sdesc);
2509 fl->sdesc = NULL;
2510 dma_free_coherent(adap->pdev_dev, flsz * sizeof(struct tx_desc),
2511 fl->desc, fl->addr);
2512 fl->desc = NULL;
2513 }
2514 return ret;
2515}
2516
2517static void init_txq(struct adapter *adap, struct sge_txq *q, unsigned int id)
2518{
Santosh Rastapur22adfe02013-03-14 05:08:51 +00002519 q->cntxt_id = id;
Hariprasad Shenaidf64e4d2014-12-03 19:32:53 +05302520 q->bar2_addr = bar2_address(adap,
2521 q->cntxt_id,
2522 T4_BAR2_QTYPE_EGRESS,
2523 &q->bar2_qid);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002524 q->in_use = 0;
2525 q->cidx = q->pidx = 0;
2526 q->stops = q->restarts = 0;
2527 q->stat = (void *)&q->desc[q->size];
Vipul Pandya3069ee9b2012-05-18 15:29:26 +05302528 spin_lock_init(&q->db_lock);
Dimitris Michailidise46dab42010-08-23 17:20:58 +00002529 adap->sge.egr_map[id - adap->sge.egr_start] = q;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002530}
2531
2532int t4_sge_alloc_eth_txq(struct adapter *adap, struct sge_eth_txq *txq,
2533 struct net_device *dev, struct netdev_queue *netdevq,
2534 unsigned int iqid)
2535{
2536 int ret, nentries;
2537 struct fw_eq_eth_cmd c;
Vipul Pandya52367a72012-09-26 02:39:38 +00002538 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002539 struct port_info *pi = netdev_priv(dev);
2540
2541 /* Add status entries */
Vipul Pandya52367a72012-09-26 02:39:38 +00002542 nentries = txq->q.size + s->stat_len / sizeof(struct tx_desc);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002543
2544 txq->q.desc = alloc_ring(adap->pdev_dev, txq->q.size,
2545 sizeof(struct tx_desc), sizeof(struct tx_sw_desc),
Vipul Pandya52367a72012-09-26 02:39:38 +00002546 &txq->q.phys_addr, &txq->q.sdesc, s->stat_len,
Dimitris Michailidisad6bad32010-12-14 21:36:55 +00002547 netdev_queue_numa_node_read(netdevq));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002548 if (!txq->q.desc)
2549 return -ENOMEM;
2550
2551 memset(&c, 0, sizeof(c));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05302552 c.op_to_vfn = htonl(FW_CMD_OP_V(FW_EQ_ETH_CMD) | FW_CMD_REQUEST_F |
2553 FW_CMD_WRITE_F | FW_CMD_EXEC_F |
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302554 FW_EQ_ETH_CMD_PFN_V(adap->fn) |
2555 FW_EQ_ETH_CMD_VFN_V(0));
2556 c.alloc_to_len16 = htonl(FW_EQ_ETH_CMD_ALLOC_F |
2557 FW_EQ_ETH_CMD_EQSTART_F | FW_LEN16(c));
2558 c.viid_pkd = htonl(FW_EQ_ETH_CMD_AUTOEQUEQE_F |
2559 FW_EQ_ETH_CMD_VIID_V(pi->viid));
2560 c.fetchszm_to_iqid = htonl(FW_EQ_ETH_CMD_HOSTFCMODE_V(2) |
2561 FW_EQ_ETH_CMD_PCIECHN_V(pi->tx_chan) |
2562 FW_EQ_ETH_CMD_FETCHRO_V(1) |
2563 FW_EQ_ETH_CMD_IQID_V(iqid));
2564 c.dcaen_to_eqsize = htonl(FW_EQ_ETH_CMD_FBMIN_V(2) |
2565 FW_EQ_ETH_CMD_FBMAX_V(3) |
2566 FW_EQ_ETH_CMD_CIDXFTHRESH_V(5) |
2567 FW_EQ_ETH_CMD_EQSIZE_V(nentries));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002568 c.eqaddr = cpu_to_be64(txq->q.phys_addr);
2569
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002570 ret = t4_wr_mbox(adap, adap->fn, &c, sizeof(c), &c);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002571 if (ret) {
2572 kfree(txq->q.sdesc);
2573 txq->q.sdesc = NULL;
2574 dma_free_coherent(adap->pdev_dev,
2575 nentries * sizeof(struct tx_desc),
2576 txq->q.desc, txq->q.phys_addr);
2577 txq->q.desc = NULL;
2578 return ret;
2579 }
2580
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302581 init_txq(adap, &txq->q, FW_EQ_ETH_CMD_EQID_G(ntohl(c.eqid_pkd)));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002582 txq->txq = netdevq;
2583 txq->tso = txq->tx_cso = txq->vlan_ins = 0;
2584 txq->mapping_err = 0;
2585 return 0;
2586}
2587
2588int t4_sge_alloc_ctrl_txq(struct adapter *adap, struct sge_ctrl_txq *txq,
2589 struct net_device *dev, unsigned int iqid,
2590 unsigned int cmplqid)
2591{
2592 int ret, nentries;
2593 struct fw_eq_ctrl_cmd c;
Vipul Pandya52367a72012-09-26 02:39:38 +00002594 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002595 struct port_info *pi = netdev_priv(dev);
2596
2597 /* Add status entries */
Vipul Pandya52367a72012-09-26 02:39:38 +00002598 nentries = txq->q.size + s->stat_len / sizeof(struct tx_desc);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002599
2600 txq->q.desc = alloc_ring(adap->pdev_dev, nentries,
2601 sizeof(struct tx_desc), 0, &txq->q.phys_addr,
Dimitris Michailidisad6bad32010-12-14 21:36:55 +00002602 NULL, 0, NUMA_NO_NODE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002603 if (!txq->q.desc)
2604 return -ENOMEM;
2605
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05302606 c.op_to_vfn = htonl(FW_CMD_OP_V(FW_EQ_CTRL_CMD) | FW_CMD_REQUEST_F |
2607 FW_CMD_WRITE_F | FW_CMD_EXEC_F |
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302608 FW_EQ_CTRL_CMD_PFN_V(adap->fn) |
2609 FW_EQ_CTRL_CMD_VFN_V(0));
2610 c.alloc_to_len16 = htonl(FW_EQ_CTRL_CMD_ALLOC_F |
2611 FW_EQ_CTRL_CMD_EQSTART_F | FW_LEN16(c));
2612 c.cmpliqid_eqid = htonl(FW_EQ_CTRL_CMD_CMPLIQID_V(cmplqid));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002613 c.physeqid_pkd = htonl(0);
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302614 c.fetchszm_to_iqid = htonl(FW_EQ_CTRL_CMD_HOSTFCMODE_V(2) |
2615 FW_EQ_CTRL_CMD_PCIECHN_V(pi->tx_chan) |
2616 FW_EQ_CTRL_CMD_FETCHRO_F |
2617 FW_EQ_CTRL_CMD_IQID_V(iqid));
2618 c.dcaen_to_eqsize = htonl(FW_EQ_CTRL_CMD_FBMIN_V(2) |
2619 FW_EQ_CTRL_CMD_FBMAX_V(3) |
2620 FW_EQ_CTRL_CMD_CIDXFTHRESH_V(5) |
2621 FW_EQ_CTRL_CMD_EQSIZE_V(nentries));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002622 c.eqaddr = cpu_to_be64(txq->q.phys_addr);
2623
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002624 ret = t4_wr_mbox(adap, adap->fn, &c, sizeof(c), &c);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002625 if (ret) {
2626 dma_free_coherent(adap->pdev_dev,
2627 nentries * sizeof(struct tx_desc),
2628 txq->q.desc, txq->q.phys_addr);
2629 txq->q.desc = NULL;
2630 return ret;
2631 }
2632
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302633 init_txq(adap, &txq->q, FW_EQ_CTRL_CMD_EQID_G(ntohl(c.cmpliqid_eqid)));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002634 txq->adap = adap;
2635 skb_queue_head_init(&txq->sendq);
2636 tasklet_init(&txq->qresume_tsk, restart_ctrlq, (unsigned long)txq);
2637 txq->full = 0;
2638 return 0;
2639}
2640
2641int t4_sge_alloc_ofld_txq(struct adapter *adap, struct sge_ofld_txq *txq,
2642 struct net_device *dev, unsigned int iqid)
2643{
2644 int ret, nentries;
2645 struct fw_eq_ofld_cmd c;
Vipul Pandya52367a72012-09-26 02:39:38 +00002646 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002647 struct port_info *pi = netdev_priv(dev);
2648
2649 /* Add status entries */
Vipul Pandya52367a72012-09-26 02:39:38 +00002650 nentries = txq->q.size + s->stat_len / sizeof(struct tx_desc);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002651
2652 txq->q.desc = alloc_ring(adap->pdev_dev, txq->q.size,
2653 sizeof(struct tx_desc), sizeof(struct tx_sw_desc),
Vipul Pandya52367a72012-09-26 02:39:38 +00002654 &txq->q.phys_addr, &txq->q.sdesc, s->stat_len,
Dimitris Michailidisad6bad32010-12-14 21:36:55 +00002655 NUMA_NO_NODE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002656 if (!txq->q.desc)
2657 return -ENOMEM;
2658
2659 memset(&c, 0, sizeof(c));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05302660 c.op_to_vfn = htonl(FW_CMD_OP_V(FW_EQ_OFLD_CMD) | FW_CMD_REQUEST_F |
2661 FW_CMD_WRITE_F | FW_CMD_EXEC_F |
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302662 FW_EQ_OFLD_CMD_PFN_V(adap->fn) |
2663 FW_EQ_OFLD_CMD_VFN_V(0));
2664 c.alloc_to_len16 = htonl(FW_EQ_OFLD_CMD_ALLOC_F |
2665 FW_EQ_OFLD_CMD_EQSTART_F | FW_LEN16(c));
2666 c.fetchszm_to_iqid = htonl(FW_EQ_OFLD_CMD_HOSTFCMODE_V(2) |
2667 FW_EQ_OFLD_CMD_PCIECHN_V(pi->tx_chan) |
2668 FW_EQ_OFLD_CMD_FETCHRO_F |
2669 FW_EQ_OFLD_CMD_IQID_V(iqid));
2670 c.dcaen_to_eqsize = htonl(FW_EQ_OFLD_CMD_FBMIN_V(2) |
2671 FW_EQ_OFLD_CMD_FBMAX_V(3) |
2672 FW_EQ_OFLD_CMD_CIDXFTHRESH_V(5) |
2673 FW_EQ_OFLD_CMD_EQSIZE_V(nentries));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002674 c.eqaddr = cpu_to_be64(txq->q.phys_addr);
2675
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002676 ret = t4_wr_mbox(adap, adap->fn, &c, sizeof(c), &c);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002677 if (ret) {
2678 kfree(txq->q.sdesc);
2679 txq->q.sdesc = NULL;
2680 dma_free_coherent(adap->pdev_dev,
2681 nentries * sizeof(struct tx_desc),
2682 txq->q.desc, txq->q.phys_addr);
2683 txq->q.desc = NULL;
2684 return ret;
2685 }
2686
Hariprasad Shenai6e4b51a2014-11-21 12:52:03 +05302687 init_txq(adap, &txq->q, FW_EQ_OFLD_CMD_EQID_G(ntohl(c.eqid_pkd)));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002688 txq->adap = adap;
2689 skb_queue_head_init(&txq->sendq);
2690 tasklet_init(&txq->qresume_tsk, restart_ofldq, (unsigned long)txq);
2691 txq->full = 0;
2692 txq->mapping_err = 0;
2693 return 0;
2694}
2695
2696static void free_txq(struct adapter *adap, struct sge_txq *q)
2697{
Vipul Pandya52367a72012-09-26 02:39:38 +00002698 struct sge *s = &adap->sge;
2699
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002700 dma_free_coherent(adap->pdev_dev,
Vipul Pandya52367a72012-09-26 02:39:38 +00002701 q->size * sizeof(struct tx_desc) + s->stat_len,
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002702 q->desc, q->phys_addr);
2703 q->cntxt_id = 0;
2704 q->sdesc = NULL;
2705 q->desc = NULL;
2706}
2707
2708static void free_rspq_fl(struct adapter *adap, struct sge_rspq *rq,
2709 struct sge_fl *fl)
2710{
Vipul Pandya52367a72012-09-26 02:39:38 +00002711 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002712 unsigned int fl_id = fl ? fl->cntxt_id : 0xffff;
2713
Dimitris Michailidise46dab42010-08-23 17:20:58 +00002714 adap->sge.ingr_map[rq->cntxt_id - adap->sge.ingr_start] = NULL;
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002715 t4_iq_free(adap, adap->fn, adap->fn, 0, FW_IQ_TYPE_FL_INT_CAP,
2716 rq->cntxt_id, fl_id, 0xffff);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002717 dma_free_coherent(adap->pdev_dev, (rq->size + 1) * rq->iqe_len,
2718 rq->desc, rq->phys_addr);
Hariprasad Shenai3a336cb2015-02-04 15:32:52 +05302719 napi_hash_del(&rq->napi);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002720 netif_napi_del(&rq->napi);
2721 rq->netdev = NULL;
2722 rq->cntxt_id = rq->abs_id = 0;
2723 rq->desc = NULL;
2724
2725 if (fl) {
2726 free_rx_bufs(adap, fl, fl->avail);
Vipul Pandya52367a72012-09-26 02:39:38 +00002727 dma_free_coherent(adap->pdev_dev, fl->size * 8 + s->stat_len,
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002728 fl->desc, fl->addr);
2729 kfree(fl->sdesc);
2730 fl->sdesc = NULL;
2731 fl->cntxt_id = 0;
2732 fl->desc = NULL;
2733 }
2734}
2735
2736/**
Hariprasad Shenai5fa76692014-08-04 17:01:30 +05302737 * t4_free_ofld_rxqs - free a block of consecutive Rx queues
2738 * @adap: the adapter
2739 * @n: number of queues
2740 * @q: pointer to first queue
2741 *
2742 * Release the resources of a consecutive block of offload Rx queues.
2743 */
2744void t4_free_ofld_rxqs(struct adapter *adap, int n, struct sge_ofld_rxq *q)
2745{
2746 for ( ; n; n--, q++)
2747 if (q->rspq.desc)
2748 free_rspq_fl(adap, &q->rspq,
2749 q->fl.size ? &q->fl : NULL);
2750}
2751
2752/**
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002753 * t4_free_sge_resources - free SGE resources
2754 * @adap: the adapter
2755 *
2756 * Frees resources used by the SGE queue sets.
2757 */
2758void t4_free_sge_resources(struct adapter *adap)
2759{
2760 int i;
2761 struct sge_eth_rxq *eq = adap->sge.ethrxq;
2762 struct sge_eth_txq *etq = adap->sge.ethtxq;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002763
2764 /* clean up Ethernet Tx/Rx queues */
2765 for (i = 0; i < adap->sge.ethqsets; i++, eq++, etq++) {
2766 if (eq->rspq.desc)
Hariprasad Shenai5fa76692014-08-04 17:01:30 +05302767 free_rspq_fl(adap, &eq->rspq,
2768 eq->fl.size ? &eq->fl : NULL);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002769 if (etq->q.desc) {
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002770 t4_eth_eq_free(adap, adap->fn, adap->fn, 0,
2771 etq->q.cntxt_id);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002772 free_tx_desc(adap, &etq->q, etq->q.in_use, true);
2773 kfree(etq->q.sdesc);
2774 free_txq(adap, &etq->q);
2775 }
2776 }
2777
2778 /* clean up RDMA and iSCSI Rx queues */
Hariprasad Shenai5fa76692014-08-04 17:01:30 +05302779 t4_free_ofld_rxqs(adap, adap->sge.ofldqsets, adap->sge.ofldrxq);
2780 t4_free_ofld_rxqs(adap, adap->sge.rdmaqs, adap->sge.rdmarxq);
2781 t4_free_ofld_rxqs(adap, adap->sge.rdmaciqs, adap->sge.rdmaciq);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002782
2783 /* clean up offload Tx queues */
2784 for (i = 0; i < ARRAY_SIZE(adap->sge.ofldtxq); i++) {
2785 struct sge_ofld_txq *q = &adap->sge.ofldtxq[i];
2786
2787 if (q->q.desc) {
2788 tasklet_kill(&q->qresume_tsk);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002789 t4_ofld_eq_free(adap, adap->fn, adap->fn, 0,
2790 q->q.cntxt_id);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002791 free_tx_desc(adap, &q->q, q->q.in_use, false);
2792 kfree(q->q.sdesc);
2793 __skb_queue_purge(&q->sendq);
2794 free_txq(adap, &q->q);
2795 }
2796 }
2797
2798 /* clean up control Tx queues */
2799 for (i = 0; i < ARRAY_SIZE(adap->sge.ctrlq); i++) {
2800 struct sge_ctrl_txq *cq = &adap->sge.ctrlq[i];
2801
2802 if (cq->q.desc) {
2803 tasklet_kill(&cq->qresume_tsk);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002804 t4_ctrl_eq_free(adap, adap->fn, adap->fn, 0,
2805 cq->q.cntxt_id);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002806 __skb_queue_purge(&cq->sendq);
2807 free_txq(adap, &cq->q);
2808 }
2809 }
2810
2811 if (adap->sge.fw_evtq.desc)
2812 free_rspq_fl(adap, &adap->sge.fw_evtq, NULL);
2813
2814 if (adap->sge.intrq.desc)
2815 free_rspq_fl(adap, &adap->sge.intrq, NULL);
2816
2817 /* clear the reverse egress queue map */
Hariprasad Shenai4b8e27a2015-03-26 10:04:25 +05302818 memset(adap->sge.egr_map, 0,
2819 adap->sge.egr_sz * sizeof(*adap->sge.egr_map));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002820}
2821
2822void t4_sge_start(struct adapter *adap)
2823{
2824 adap->sge.ethtxq_rover = 0;
2825 mod_timer(&adap->sge.rx_timer, jiffies + RX_QCHECK_PERIOD);
2826 mod_timer(&adap->sge.tx_timer, jiffies + TX_QCHECK_PERIOD);
2827}
2828
2829/**
2830 * t4_sge_stop - disable SGE operation
2831 * @adap: the adapter
2832 *
2833 * Stop tasklets and timers associated with the DMA engine. Note that
2834 * this is effective only if measures have been taken to disable any HW
2835 * events that may restart them.
2836 */
2837void t4_sge_stop(struct adapter *adap)
2838{
2839 int i;
2840 struct sge *s = &adap->sge;
2841
2842 if (in_interrupt()) /* actions below require waiting */
2843 return;
2844
2845 if (s->rx_timer.function)
2846 del_timer_sync(&s->rx_timer);
2847 if (s->tx_timer.function)
2848 del_timer_sync(&s->tx_timer);
2849
2850 for (i = 0; i < ARRAY_SIZE(s->ofldtxq); i++) {
2851 struct sge_ofld_txq *q = &s->ofldtxq[i];
2852
2853 if (q->q.desc)
2854 tasklet_kill(&q->qresume_tsk);
2855 }
2856 for (i = 0; i < ARRAY_SIZE(s->ctrlq); i++) {
2857 struct sge_ctrl_txq *cq = &s->ctrlq[i];
2858
2859 if (cq->q.desc)
2860 tasklet_kill(&cq->qresume_tsk);
2861 }
2862}
2863
2864/**
Hariprasad Shenai06640312015-01-13 15:19:25 +05302865 * t4_sge_init_soft - grab core SGE values needed by SGE code
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002866 * @adap: the adapter
2867 *
Hariprasad Shenai06640312015-01-13 15:19:25 +05302868 * We need to grab the SGE operating parameters that we need to have
2869 * in order to do our job and make sure we can live with them.
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002870 */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002871
Vipul Pandya52367a72012-09-26 02:39:38 +00002872static int t4_sge_init_soft(struct adapter *adap)
2873{
2874 struct sge *s = &adap->sge;
2875 u32 fl_small_pg, fl_large_pg, fl_small_mtu, fl_large_mtu;
2876 u32 timer_value_0_and_1, timer_value_2_and_3, timer_value_4_and_5;
2877 u32 ingress_rx_threshold;
2878
2879 /*
2880 * Verify that CPL messages are going to the Ingress Queue for
2881 * process_responses() and that only packet data is going to the
2882 * Free Lists.
2883 */
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302884 if ((t4_read_reg(adap, SGE_CONTROL_A) & RXPKTCPLMODE_F) !=
2885 RXPKTCPLMODE_V(RXPKTCPLMODE_SPLIT_X)) {
Vipul Pandya52367a72012-09-26 02:39:38 +00002886 dev_err(adap->pdev_dev, "bad SGE CPL MODE\n");
2887 return -EINVAL;
2888 }
2889
2890 /*
2891 * Validate the Host Buffer Register Array indices that we want to
2892 * use ...
2893 *
2894 * XXX Note that we should really read through the Host Buffer Size
2895 * XXX register array and find the indices of the Buffer Sizes which
2896 * XXX meet our needs!
2897 */
2898 #define READ_FL_BUF(x) \
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302899 t4_read_reg(adap, SGE_FL_BUFFER_SIZE0_A+(x)*sizeof(u32))
Vipul Pandya52367a72012-09-26 02:39:38 +00002900
2901 fl_small_pg = READ_FL_BUF(RX_SMALL_PG_BUF);
2902 fl_large_pg = READ_FL_BUF(RX_LARGE_PG_BUF);
2903 fl_small_mtu = READ_FL_BUF(RX_SMALL_MTU_BUF);
2904 fl_large_mtu = READ_FL_BUF(RX_LARGE_MTU_BUF);
2905
Kumar Sanghvi92ddcc72014-03-13 20:50:46 +05302906 /* We only bother using the Large Page logic if the Large Page Buffer
2907 * is larger than our Page Size Buffer.
2908 */
2909 if (fl_large_pg <= fl_small_pg)
2910 fl_large_pg = 0;
2911
Vipul Pandya52367a72012-09-26 02:39:38 +00002912 #undef READ_FL_BUF
2913
Kumar Sanghvi92ddcc72014-03-13 20:50:46 +05302914 /* The Page Size Buffer must be exactly equal to our Page Size and the
2915 * Large Page Size Buffer should be 0 (per above) or a power of 2.
2916 */
Vipul Pandya52367a72012-09-26 02:39:38 +00002917 if (fl_small_pg != PAGE_SIZE ||
Kumar Sanghvi92ddcc72014-03-13 20:50:46 +05302918 (fl_large_pg & (fl_large_pg-1)) != 0) {
Vipul Pandya52367a72012-09-26 02:39:38 +00002919 dev_err(adap->pdev_dev, "bad SGE FL page buffer sizes [%d, %d]\n",
2920 fl_small_pg, fl_large_pg);
2921 return -EINVAL;
2922 }
2923 if (fl_large_pg)
2924 s->fl_pg_order = ilog2(fl_large_pg) - PAGE_SHIFT;
2925
2926 if (fl_small_mtu < FL_MTU_SMALL_BUFSIZE(adap) ||
2927 fl_large_mtu < FL_MTU_LARGE_BUFSIZE(adap)) {
2928 dev_err(adap->pdev_dev, "bad SGE FL MTU sizes [%d, %d]\n",
2929 fl_small_mtu, fl_large_mtu);
2930 return -EINVAL;
2931 }
2932
2933 /*
2934 * Retrieve our RX interrupt holdoff timer values and counter
2935 * threshold values from the SGE parameters.
2936 */
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302937 timer_value_0_and_1 = t4_read_reg(adap, SGE_TIMER_VALUE_0_AND_1_A);
2938 timer_value_2_and_3 = t4_read_reg(adap, SGE_TIMER_VALUE_2_AND_3_A);
2939 timer_value_4_and_5 = t4_read_reg(adap, SGE_TIMER_VALUE_4_AND_5_A);
Vipul Pandya52367a72012-09-26 02:39:38 +00002940 s->timer_val[0] = core_ticks_to_us(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302941 TIMERVALUE0_G(timer_value_0_and_1));
Vipul Pandya52367a72012-09-26 02:39:38 +00002942 s->timer_val[1] = core_ticks_to_us(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302943 TIMERVALUE1_G(timer_value_0_and_1));
Vipul Pandya52367a72012-09-26 02:39:38 +00002944 s->timer_val[2] = core_ticks_to_us(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302945 TIMERVALUE2_G(timer_value_2_and_3));
Vipul Pandya52367a72012-09-26 02:39:38 +00002946 s->timer_val[3] = core_ticks_to_us(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302947 TIMERVALUE3_G(timer_value_2_and_3));
Vipul Pandya52367a72012-09-26 02:39:38 +00002948 s->timer_val[4] = core_ticks_to_us(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302949 TIMERVALUE4_G(timer_value_4_and_5));
Vipul Pandya52367a72012-09-26 02:39:38 +00002950 s->timer_val[5] = core_ticks_to_us(adap,
Hariprasad Shenaif061de422015-01-05 16:30:44 +05302951 TIMERVALUE5_G(timer_value_4_and_5));
Vipul Pandya52367a72012-09-26 02:39:38 +00002952
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302953 ingress_rx_threshold = t4_read_reg(adap, SGE_INGRESS_RX_THRESHOLD_A);
2954 s->counter_val[0] = THRESHOLD_0_G(ingress_rx_threshold);
2955 s->counter_val[1] = THRESHOLD_1_G(ingress_rx_threshold);
2956 s->counter_val[2] = THRESHOLD_2_G(ingress_rx_threshold);
2957 s->counter_val[3] = THRESHOLD_3_G(ingress_rx_threshold);
Vipul Pandya52367a72012-09-26 02:39:38 +00002958
2959 return 0;
2960}
2961
Hariprasad Shenai06640312015-01-13 15:19:25 +05302962/**
2963 * t4_sge_init - initialize SGE
2964 * @adap: the adapter
2965 *
2966 * Perform low-level SGE code initialization needed every time after a
2967 * chip reset.
2968 */
Vipul Pandya52367a72012-09-26 02:39:38 +00002969int t4_sge_init(struct adapter *adap)
2970{
2971 struct sge *s = &adap->sge;
Hariprasad Shenaice8f4072014-11-07 17:06:30 +05302972 u32 sge_control, sge_control2, sge_conm_ctrl;
2973 unsigned int ingpadboundary, ingpackboundary;
Kumar Sanghvic2b955e2014-03-13 20:50:49 +05302974 int ret, egress_threshold;
Vipul Pandya52367a72012-09-26 02:39:38 +00002975
2976 /*
2977 * Ingress Padding Boundary and Egress Status Page Size are set up by
2978 * t4_fixup_host_params().
2979 */
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302980 sge_control = t4_read_reg(adap, SGE_CONTROL_A);
2981 s->pktshift = PKTSHIFT_G(sge_control);
2982 s->stat_len = (sge_control & EGRSTATUSPAGESIZE_F) ? 128 : 64;
Hariprasad Shenaice8f4072014-11-07 17:06:30 +05302983
2984 /* T4 uses a single control field to specify both the PCIe Padding and
2985 * Packing Boundary. T5 introduced the ability to specify these
2986 * separately. The actual Ingress Packet Data alignment boundary
2987 * within Packed Buffer Mode is the maximum of these two
2988 * specifications.
2989 */
Hariprasad Shenaif612b812015-01-05 16:30:43 +05302990 ingpadboundary = 1 << (INGPADBOUNDARY_G(sge_control) +
2991 INGPADBOUNDARY_SHIFT_X);
Hariprasad Shenaice8f4072014-11-07 17:06:30 +05302992 if (is_t4(adap->params.chip)) {
2993 s->fl_align = ingpadboundary;
2994 } else {
2995 /* T5 has a different interpretation of one of the PCIe Packing
2996 * Boundary values.
2997 */
2998 sge_control2 = t4_read_reg(adap, SGE_CONTROL2_A);
2999 ingpackboundary = INGPACKBOUNDARY_G(sge_control2);
3000 if (ingpackboundary == INGPACKBOUNDARY_16B_X)
3001 ingpackboundary = 16;
3002 else
3003 ingpackboundary = 1 << (ingpackboundary +
3004 INGPACKBOUNDARY_SHIFT_X);
3005
3006 s->fl_align = max(ingpadboundary, ingpackboundary);
3007 }
Vipul Pandya52367a72012-09-26 02:39:38 +00003008
Hariprasad Shenai06640312015-01-13 15:19:25 +05303009 ret = t4_sge_init_soft(adap);
Vipul Pandya52367a72012-09-26 02:39:38 +00003010 if (ret < 0)
3011 return ret;
3012
3013 /*
3014 * A FL with <= fl_starve_thres buffers is starving and a periodic
3015 * timer will attempt to refill it. This needs to be larger than the
3016 * SGE's Egress Congestion Threshold. If it isn't, then we can get
3017 * stuck waiting for new packets while the SGE is waiting for us to
3018 * give it more Free List entries. (Note that the SGE's Egress
Kumar Sanghvic2b955e2014-03-13 20:50:49 +05303019 * Congestion Threshold is in units of 2 Free List pointers.) For T4,
3020 * there was only a single field to control this. For T5 there's the
3021 * original field which now only applies to Unpacked Mode Free List
3022 * buffers and a new field which only applies to Packed Mode Free List
3023 * buffers.
Vipul Pandya52367a72012-09-26 02:39:38 +00003024 */
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303025 sge_conm_ctrl = t4_read_reg(adap, SGE_CONM_CTRL_A);
Kumar Sanghvic2b955e2014-03-13 20:50:49 +05303026 if (is_t4(adap->params.chip))
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303027 egress_threshold = EGRTHRESHOLD_G(sge_conm_ctrl);
Kumar Sanghvic2b955e2014-03-13 20:50:49 +05303028 else
Hariprasad Shenaif612b812015-01-05 16:30:43 +05303029 egress_threshold = EGRTHRESHOLDPACKING_G(sge_conm_ctrl);
Kumar Sanghvic2b955e2014-03-13 20:50:49 +05303030 s->fl_starve_thres = 2*egress_threshold + 1;
Vipul Pandya52367a72012-09-26 02:39:38 +00003031
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00003032 setup_timer(&s->rx_timer, sge_rx_timer_cb, (unsigned long)adap);
3033 setup_timer(&s->tx_timer, sge_tx_timer_cb, (unsigned long)adap);
Kumar Sanghvi0f4d2012014-03-13 20:50:48 +05303034 s->idma_1s_thresh = core_ticks_per_usec(adap) * 1000000; /* 1 s */
3035 s->idma_stalled[0] = 0;
3036 s->idma_stalled[1] = 0;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00003037 spin_lock_init(&s->intrq_lock);
Vipul Pandya52367a72012-09-26 02:39:38 +00003038
3039 return 0;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00003040}