blob: 23dbe28f8aca1135587c29c8014a28c7dc733a2e [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 *
4 * Copyright (c) 2003-2010 Chelsio Communications, Inc. All rights reserved.
5 *
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>
46#include "cxgb4.h"
47#include "t4_regs.h"
48#include "t4_msg.h"
49#include "t4fw_api.h"
50
51/*
52 * Rx buffer size. We use largish buffers if possible but settle for single
53 * pages under memory shortage.
54 */
55#if PAGE_SHIFT >= 16
56# define FL_PG_ORDER 0
57#else
58# define FL_PG_ORDER (16 - PAGE_SHIFT)
59#endif
60
61/* RX_PULL_LEN should be <= RX_COPY_THRES */
62#define RX_COPY_THRES 256
63#define RX_PULL_LEN 128
64
65/*
66 * Main body length for sk_buffs used for Rx Ethernet packets with fragments.
67 * Should be >= RX_PULL_LEN but possibly bigger to give pskb_may_pull some room.
68 */
69#define RX_PKT_SKB_LEN 512
70
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +000071/*
72 * Max number of Tx descriptors we clean up at a time. Should be modest as
73 * freeing skbs isn't cheap and it happens while holding locks. We just need
74 * to free packets faster than they arrive, we eventually catch up and keep
75 * the amortized cost reasonable. Must be >= 2 * TXQ_STOP_THRES.
76 */
77#define MAX_TX_RECLAIM 16
78
79/*
80 * Max number of Rx buffers we replenish at a time. Again keep this modest,
81 * allocating buffers isn't cheap either.
82 */
83#define MAX_RX_REFILL 16U
84
85/*
86 * Period of the Rx queue check timer. This timer is infrequent as it has
87 * something to do only when the system experiences severe memory shortage.
88 */
89#define RX_QCHECK_PERIOD (HZ / 2)
90
91/*
92 * Period of the Tx queue check timer.
93 */
94#define TX_QCHECK_PERIOD (HZ / 2)
95
96/*
97 * Max number of Tx descriptors to be reclaimed by the Tx timer.
98 */
99#define MAX_TIMER_TX_RECLAIM 100
100
101/*
102 * Timer index used when backing off due to memory shortage.
103 */
104#define NOMEM_TMR_IDX (SGE_NTIMERS - 1)
105
106/*
107 * An FL with <= FL_STARVE_THRES buffers is starving and a periodic timer will
108 * attempt to refill it.
109 */
110#define FL_STARVE_THRES 4
111
112/*
113 * Suspend an Ethernet Tx queue with fewer available descriptors than this.
114 * This is the same as calc_tx_descs() for a TSO packet with
115 * nr_frags == MAX_SKB_FRAGS.
116 */
117#define ETHTXQ_STOP_THRES \
118 (1 + DIV_ROUND_UP((3 * MAX_SKB_FRAGS) / 2 + (MAX_SKB_FRAGS & 1), 8))
119
120/*
121 * Suspension threshold for non-Ethernet Tx queues. We require enough room
122 * for a full sized WR.
123 */
124#define TXQ_STOP_THRES (SGE_MAX_WR_LEN / sizeof(struct tx_desc))
125
126/*
127 * Max Tx descriptor space we allow for an Ethernet packet to be inlined
128 * into a WR.
129 */
130#define MAX_IMM_TX_PKT_LEN 128
131
132/*
133 * Max size of a WR sent through a control Tx queue.
134 */
135#define MAX_CTRL_WR_LEN SGE_MAX_WR_LEN
136
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000137struct tx_sw_desc { /* SW state per Tx descriptor */
138 struct sk_buff *skb;
139 struct ulptx_sgl *sgl;
140};
141
142struct rx_sw_desc { /* SW state per Rx descriptor */
143 struct page *page;
144 dma_addr_t dma_addr;
145};
146
147/*
Vipul Pandya52367a72012-09-26 02:39:38 +0000148 * Rx buffer sizes for "useskbs" Free List buffers (one ingress packet pe skb
149 * buffer). We currently only support two sizes for 1500- and 9000-byte MTUs.
150 * We could easily support more but there doesn't seem to be much need for
151 * that ...
152 */
153#define FL_MTU_SMALL 1500
154#define FL_MTU_LARGE 9000
155
156static inline unsigned int fl_mtu_bufsize(struct adapter *adapter,
157 unsigned int mtu)
158{
159 struct sge *s = &adapter->sge;
160
161 return ALIGN(s->pktshift + ETH_HLEN + VLAN_HLEN + mtu, s->fl_align);
162}
163
164#define FL_MTU_SMALL_BUFSIZE(adapter) fl_mtu_bufsize(adapter, FL_MTU_SMALL)
165#define FL_MTU_LARGE_BUFSIZE(adapter) fl_mtu_bufsize(adapter, FL_MTU_LARGE)
166
167/*
168 * Bits 0..3 of rx_sw_desc.dma_addr have special meaning. The hardware uses
169 * these to specify the buffer size as an index into the SGE Free List Buffer
170 * Size register array. We also use bit 4, when the buffer has been unmapped
171 * for DMA, but this is of course never sent to the hardware and is only used
172 * to prevent double unmappings. All of the above requires that the Free List
173 * Buffers which we allocate have the bottom 5 bits free (0) -- i.e. are
174 * 32-byte or or a power of 2 greater in alignment. Since the SGE's minimal
175 * Free List Buffer alignment is 32 bytes, this works out for us ...
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000176 */
177enum {
Vipul Pandya52367a72012-09-26 02:39:38 +0000178 RX_BUF_FLAGS = 0x1f, /* bottom five bits are special */
179 RX_BUF_SIZE = 0x0f, /* bottom three bits are for buf sizes */
180 RX_UNMAPPED_BUF = 0x10, /* buffer is not mapped */
181
182 /*
183 * XXX We shouldn't depend on being able to use these indices.
184 * XXX Especially when some other Master PF has initialized the
185 * XXX adapter or we use the Firmware Configuration File. We
186 * XXX should really search through the Host Buffer Size register
187 * XXX array for the appropriately sized buffer indices.
188 */
189 RX_SMALL_PG_BUF = 0x0, /* small (PAGE_SIZE) page buffer */
190 RX_LARGE_PG_BUF = 0x1, /* buffer large (FL_PG_ORDER) page buffer */
191
192 RX_SMALL_MTU_BUF = 0x2, /* small MTU buffer */
193 RX_LARGE_MTU_BUF = 0x3, /* large MTU buffer */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000194};
195
196static inline dma_addr_t get_buf_addr(const struct rx_sw_desc *d)
197{
Vipul Pandya52367a72012-09-26 02:39:38 +0000198 return d->dma_addr & ~(dma_addr_t)RX_BUF_FLAGS;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000199}
200
201static inline bool is_buf_mapped(const struct rx_sw_desc *d)
202{
203 return !(d->dma_addr & RX_UNMAPPED_BUF);
204}
205
206/**
207 * txq_avail - return the number of available slots in a Tx queue
208 * @q: the Tx queue
209 *
210 * Returns the number of descriptors in a Tx queue available to write new
211 * packets.
212 */
213static inline unsigned int txq_avail(const struct sge_txq *q)
214{
215 return q->size - 1 - q->in_use;
216}
217
218/**
219 * fl_cap - return the capacity of a free-buffer list
220 * @fl: the FL
221 *
222 * Returns the capacity of a free-buffer list. The capacity is less than
223 * the size because one descriptor needs to be left unpopulated, otherwise
224 * HW will think the FL is empty.
225 */
226static inline unsigned int fl_cap(const struct sge_fl *fl)
227{
228 return fl->size - 8; /* 1 descriptor = 8 buffers */
229}
230
231static inline bool fl_starving(const struct sge_fl *fl)
232{
233 return fl->avail - fl->pend_cred <= FL_STARVE_THRES;
234}
235
236static int map_skb(struct device *dev, const struct sk_buff *skb,
237 dma_addr_t *addr)
238{
239 const skb_frag_t *fp, *end;
240 const struct skb_shared_info *si;
241
242 *addr = dma_map_single(dev, skb->data, skb_headlen(skb), DMA_TO_DEVICE);
243 if (dma_mapping_error(dev, *addr))
244 goto out_err;
245
246 si = skb_shinfo(skb);
247 end = &si->frags[si->nr_frags];
248
249 for (fp = si->frags; fp < end; fp++) {
Ian Campbelle91b0f22011-10-19 23:01:46 +0000250 *++addr = skb_frag_dma_map(dev, fp, 0, skb_frag_size(fp),
251 DMA_TO_DEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000252 if (dma_mapping_error(dev, *addr))
253 goto unwind;
254 }
255 return 0;
256
257unwind:
258 while (fp-- > si->frags)
Eric Dumazet9e903e02011-10-18 21:00:24 +0000259 dma_unmap_page(dev, *--addr, skb_frag_size(fp), DMA_TO_DEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000260
261 dma_unmap_single(dev, addr[-1], skb_headlen(skb), DMA_TO_DEVICE);
262out_err:
263 return -ENOMEM;
264}
265
266#ifdef CONFIG_NEED_DMA_MAP_STATE
267static void unmap_skb(struct device *dev, const struct sk_buff *skb,
268 const dma_addr_t *addr)
269{
270 const skb_frag_t *fp, *end;
271 const struct skb_shared_info *si;
272
273 dma_unmap_single(dev, *addr++, skb_headlen(skb), DMA_TO_DEVICE);
274
275 si = skb_shinfo(skb);
276 end = &si->frags[si->nr_frags];
277 for (fp = si->frags; fp < end; fp++)
Eric Dumazet9e903e02011-10-18 21:00:24 +0000278 dma_unmap_page(dev, *addr++, skb_frag_size(fp), DMA_TO_DEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000279}
280
281/**
282 * deferred_unmap_destructor - unmap a packet when it is freed
283 * @skb: the packet
284 *
285 * This is the packet destructor used for Tx packets that need to remain
286 * mapped until they are freed rather than until their Tx descriptors are
287 * freed.
288 */
289static void deferred_unmap_destructor(struct sk_buff *skb)
290{
291 unmap_skb(skb->dev->dev.parent, skb, (dma_addr_t *)skb->head);
292}
293#endif
294
295static void unmap_sgl(struct device *dev, const struct sk_buff *skb,
296 const struct ulptx_sgl *sgl, const struct sge_txq *q)
297{
298 const struct ulptx_sge_pair *p;
299 unsigned int nfrags = skb_shinfo(skb)->nr_frags;
300
301 if (likely(skb_headlen(skb)))
302 dma_unmap_single(dev, be64_to_cpu(sgl->addr0), ntohl(sgl->len0),
303 DMA_TO_DEVICE);
304 else {
305 dma_unmap_page(dev, be64_to_cpu(sgl->addr0), ntohl(sgl->len0),
306 DMA_TO_DEVICE);
307 nfrags--;
308 }
309
310 /*
311 * the complexity below is because of the possibility of a wrap-around
312 * in the middle of an SGL
313 */
314 for (p = sgl->sge; nfrags >= 2; nfrags -= 2) {
315 if (likely((u8 *)(p + 1) <= (u8 *)q->stat)) {
316unmap: dma_unmap_page(dev, be64_to_cpu(p->addr[0]),
317 ntohl(p->len[0]), DMA_TO_DEVICE);
318 dma_unmap_page(dev, be64_to_cpu(p->addr[1]),
319 ntohl(p->len[1]), DMA_TO_DEVICE);
320 p++;
321 } else if ((u8 *)p == (u8 *)q->stat) {
322 p = (const struct ulptx_sge_pair *)q->desc;
323 goto unmap;
324 } else if ((u8 *)p + 8 == (u8 *)q->stat) {
325 const __be64 *addr = (const __be64 *)q->desc;
326
327 dma_unmap_page(dev, be64_to_cpu(addr[0]),
328 ntohl(p->len[0]), DMA_TO_DEVICE);
329 dma_unmap_page(dev, be64_to_cpu(addr[1]),
330 ntohl(p->len[1]), DMA_TO_DEVICE);
331 p = (const struct ulptx_sge_pair *)&addr[2];
332 } else {
333 const __be64 *addr = (const __be64 *)q->desc;
334
335 dma_unmap_page(dev, be64_to_cpu(p->addr[0]),
336 ntohl(p->len[0]), DMA_TO_DEVICE);
337 dma_unmap_page(dev, be64_to_cpu(addr[0]),
338 ntohl(p->len[1]), DMA_TO_DEVICE);
339 p = (const struct ulptx_sge_pair *)&addr[1];
340 }
341 }
342 if (nfrags) {
343 __be64 addr;
344
345 if ((u8 *)p == (u8 *)q->stat)
346 p = (const struct ulptx_sge_pair *)q->desc;
347 addr = (u8 *)p + 16 <= (u8 *)q->stat ? p->addr[0] :
348 *(const __be64 *)q->desc;
349 dma_unmap_page(dev, be64_to_cpu(addr), ntohl(p->len[0]),
350 DMA_TO_DEVICE);
351 }
352}
353
354/**
355 * free_tx_desc - reclaims Tx descriptors and their buffers
356 * @adapter: the adapter
357 * @q: the Tx queue to reclaim descriptors from
358 * @n: the number of descriptors to reclaim
359 * @unmap: whether the buffers should be unmapped for DMA
360 *
361 * Reclaims Tx descriptors from an SGE Tx queue and frees the associated
362 * Tx buffers. Called with the Tx queue lock held.
363 */
364static void free_tx_desc(struct adapter *adap, struct sge_txq *q,
365 unsigned int n, bool unmap)
366{
367 struct tx_sw_desc *d;
368 unsigned int cidx = q->cidx;
369 struct device *dev = adap->pdev_dev;
370
371 d = &q->sdesc[cidx];
372 while (n--) {
373 if (d->skb) { /* an SGL is present */
374 if (unmap)
375 unmap_sgl(dev, d->skb, d->sgl, q);
376 kfree_skb(d->skb);
377 d->skb = NULL;
378 }
379 ++d;
380 if (++cidx == q->size) {
381 cidx = 0;
382 d = q->sdesc;
383 }
384 }
385 q->cidx = cidx;
386}
387
388/*
389 * Return the number of reclaimable descriptors in a Tx queue.
390 */
391static inline int reclaimable(const struct sge_txq *q)
392{
393 int hw_cidx = ntohs(q->stat->cidx);
394 hw_cidx -= q->cidx;
395 return hw_cidx < 0 ? hw_cidx + q->size : hw_cidx;
396}
397
398/**
399 * reclaim_completed_tx - reclaims completed Tx descriptors
400 * @adap: the adapter
401 * @q: the Tx queue to reclaim completed descriptors from
402 * @unmap: whether the buffers should be unmapped for DMA
403 *
404 * Reclaims Tx descriptors that the SGE has indicated it has processed,
405 * and frees the associated buffers if possible. Called with the Tx
406 * queue locked.
407 */
408static inline void reclaim_completed_tx(struct adapter *adap, struct sge_txq *q,
409 bool unmap)
410{
411 int avail = reclaimable(q);
412
413 if (avail) {
414 /*
415 * Limit the amount of clean up work we do at a time to keep
416 * the Tx lock hold time O(1).
417 */
418 if (avail > MAX_TX_RECLAIM)
419 avail = MAX_TX_RECLAIM;
420
421 free_tx_desc(adap, q, avail, unmap);
422 q->in_use -= avail;
423 }
424}
425
Vipul Pandya52367a72012-09-26 02:39:38 +0000426static inline int get_buf_size(struct adapter *adapter,
427 const struct rx_sw_desc *d)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000428{
Vipul Pandya52367a72012-09-26 02:39:38 +0000429 struct sge *s = &adapter->sge;
430 unsigned int rx_buf_size_idx = d->dma_addr & RX_BUF_SIZE;
431 int buf_size;
432
433 switch (rx_buf_size_idx) {
434 case RX_SMALL_PG_BUF:
435 buf_size = PAGE_SIZE;
436 break;
437
438 case RX_LARGE_PG_BUF:
439 buf_size = PAGE_SIZE << s->fl_pg_order;
440 break;
441
442 case RX_SMALL_MTU_BUF:
443 buf_size = FL_MTU_SMALL_BUFSIZE(adapter);
444 break;
445
446 case RX_LARGE_MTU_BUF:
447 buf_size = FL_MTU_LARGE_BUFSIZE(adapter);
448 break;
449
450 default:
451 BUG_ON(1);
452 }
453
454 return buf_size;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000455}
456
457/**
458 * free_rx_bufs - free the Rx buffers on an SGE free list
459 * @adap: the adapter
460 * @q: the SGE free list to free buffers from
461 * @n: how many buffers to free
462 *
463 * Release the next @n buffers on an SGE free-buffer Rx queue. The
464 * buffers must be made inaccessible to HW before calling this function.
465 */
466static void free_rx_bufs(struct adapter *adap, struct sge_fl *q, int n)
467{
468 while (n--) {
469 struct rx_sw_desc *d = &q->sdesc[q->cidx];
470
471 if (is_buf_mapped(d))
472 dma_unmap_page(adap->pdev_dev, get_buf_addr(d),
Vipul Pandya52367a72012-09-26 02:39:38 +0000473 get_buf_size(adap, d),
474 PCI_DMA_FROMDEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000475 put_page(d->page);
476 d->page = NULL;
477 if (++q->cidx == q->size)
478 q->cidx = 0;
479 q->avail--;
480 }
481}
482
483/**
484 * unmap_rx_buf - unmap the current Rx buffer on an SGE free list
485 * @adap: the adapter
486 * @q: the SGE free list
487 *
488 * Unmap the current buffer on an SGE free-buffer Rx queue. The
489 * buffer must be made inaccessible to HW before calling this function.
490 *
491 * This is similar to @free_rx_bufs above but does not free the buffer.
492 * Do note that the FL still loses any further access to the buffer.
493 */
494static void unmap_rx_buf(struct adapter *adap, struct sge_fl *q)
495{
496 struct rx_sw_desc *d = &q->sdesc[q->cidx];
497
498 if (is_buf_mapped(d))
499 dma_unmap_page(adap->pdev_dev, get_buf_addr(d),
Vipul Pandya52367a72012-09-26 02:39:38 +0000500 get_buf_size(adap, d), PCI_DMA_FROMDEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000501 d->page = NULL;
502 if (++q->cidx == q->size)
503 q->cidx = 0;
504 q->avail--;
505}
506
507static inline void ring_fl_db(struct adapter *adap, struct sge_fl *q)
508{
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000509 u32 val;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000510 if (q->pend_cred >= 8) {
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000511 val = PIDX(q->pend_cred / 8);
Hariprasad Shenaid14807d2013-12-03 17:05:56 +0530512 if (!is_t4(adap->params.chip))
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000513 val |= DBTYPE(1);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000514 wmb();
Naresh Kumar Innace91a922012-11-15 22:41:17 +0530515 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL), DBPRIO(1) |
Santosh Rastapur0a57a532013-03-14 05:08:49 +0000516 QID(q->cntxt_id) | val);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000517 q->pend_cred &= 7;
518 }
519}
520
521static inline void set_rx_sw_desc(struct rx_sw_desc *sd, struct page *pg,
522 dma_addr_t mapping)
523{
524 sd->page = pg;
525 sd->dma_addr = mapping; /* includes size low bits */
526}
527
528/**
529 * refill_fl - refill an SGE Rx buffer ring
530 * @adap: the adapter
531 * @q: the ring to refill
532 * @n: the number of new buffers to allocate
533 * @gfp: the gfp flags for the allocations
534 *
535 * (Re)populate an SGE free-buffer queue with up to @n new packet buffers,
536 * allocated with the supplied gfp flags. The caller must assure that
537 * @n does not exceed the queue's capacity. If afterwards the queue is
538 * found critically low mark it as starving in the bitmap of starving FLs.
539 *
540 * Returns the number of buffers allocated.
541 */
542static unsigned int refill_fl(struct adapter *adap, struct sge_fl *q, int n,
543 gfp_t gfp)
544{
Vipul Pandya52367a72012-09-26 02:39:38 +0000545 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000546 struct page *pg;
547 dma_addr_t mapping;
548 unsigned int cred = q->avail;
549 __be64 *d = &q->desc[q->pidx];
550 struct rx_sw_desc *sd = &q->sdesc[q->pidx];
551
Eric Dumazet1f2149c2011-11-22 10:57:41 +0000552 gfp |= __GFP_NOWARN | __GFP_COLD;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000553
Vipul Pandya52367a72012-09-26 02:39:38 +0000554 if (s->fl_pg_order == 0)
555 goto alloc_small_pages;
556
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000557 /*
558 * Prefer large buffers
559 */
560 while (n) {
Vipul Pandya52367a72012-09-26 02:39:38 +0000561 pg = alloc_pages(gfp | __GFP_COMP, s->fl_pg_order);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000562 if (unlikely(!pg)) {
563 q->large_alloc_failed++;
564 break; /* fall back to single pages */
565 }
566
567 mapping = dma_map_page(adap->pdev_dev, pg, 0,
Vipul Pandya52367a72012-09-26 02:39:38 +0000568 PAGE_SIZE << s->fl_pg_order,
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000569 PCI_DMA_FROMDEVICE);
570 if (unlikely(dma_mapping_error(adap->pdev_dev, mapping))) {
Vipul Pandya52367a72012-09-26 02:39:38 +0000571 __free_pages(pg, s->fl_pg_order);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000572 goto out; /* do not try small pages for this error */
573 }
Vipul Pandya52367a72012-09-26 02:39:38 +0000574 mapping |= RX_LARGE_PG_BUF;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000575 *d++ = cpu_to_be64(mapping);
576
577 set_rx_sw_desc(sd, pg, mapping);
578 sd++;
579
580 q->avail++;
581 if (++q->pidx == q->size) {
582 q->pidx = 0;
583 sd = q->sdesc;
584 d = q->desc;
585 }
586 n--;
587 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000588
Vipul Pandya52367a72012-09-26 02:39:38 +0000589alloc_small_pages:
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000590 while (n--) {
Mel Gorman06140022012-07-31 16:44:24 -0700591 pg = __skb_alloc_page(gfp, NULL);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000592 if (unlikely(!pg)) {
593 q->alloc_failed++;
594 break;
595 }
596
597 mapping = dma_map_page(adap->pdev_dev, pg, 0, PAGE_SIZE,
598 PCI_DMA_FROMDEVICE);
599 if (unlikely(dma_mapping_error(adap->pdev_dev, mapping))) {
Eric Dumazet1f2149c2011-11-22 10:57:41 +0000600 put_page(pg);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000601 goto out;
602 }
603 *d++ = cpu_to_be64(mapping);
604
605 set_rx_sw_desc(sd, pg, mapping);
606 sd++;
607
608 q->avail++;
609 if (++q->pidx == q->size) {
610 q->pidx = 0;
611 sd = q->sdesc;
612 d = q->desc;
613 }
614 }
615
616out: cred = q->avail - cred;
617 q->pend_cred += cred;
618 ring_fl_db(adap, q);
619
620 if (unlikely(fl_starving(q))) {
621 smp_wmb();
Dimitris Michailidise46dab42010-08-23 17:20:58 +0000622 set_bit(q->cntxt_id - adap->sge.egr_start,
623 adap->sge.starving_fl);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000624 }
625
626 return cred;
627}
628
629static inline void __refill_fl(struct adapter *adap, struct sge_fl *fl)
630{
631 refill_fl(adap, fl, min(MAX_RX_REFILL, fl_cap(fl) - fl->avail),
632 GFP_ATOMIC);
633}
634
635/**
636 * alloc_ring - allocate resources for an SGE descriptor ring
637 * @dev: the PCI device's core device
638 * @nelem: the number of descriptors
639 * @elem_size: the size of each descriptor
640 * @sw_size: the size of the SW state associated with each ring element
641 * @phys: the physical address of the allocated ring
642 * @metadata: address of the array holding the SW state for the ring
643 * @stat_size: extra space in HW ring for status information
Dimitris Michailidisad6bad32010-12-14 21:36:55 +0000644 * @node: preferred node for memory allocations
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000645 *
646 * Allocates resources for an SGE descriptor ring, such as Tx queues,
647 * free buffer lists, or response queues. Each SGE ring requires
648 * space for its HW descriptors plus, optionally, space for the SW state
649 * associated with each HW entry (the metadata). The function returns
650 * three values: the virtual address for the HW ring (the return value
651 * of the function), the bus address of the HW ring, and the address
652 * of the SW ring.
653 */
654static void *alloc_ring(struct device *dev, size_t nelem, size_t elem_size,
655 size_t sw_size, dma_addr_t *phys, void *metadata,
Dimitris Michailidisad6bad32010-12-14 21:36:55 +0000656 size_t stat_size, int node)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000657{
658 size_t len = nelem * elem_size + stat_size;
659 void *s = NULL;
660 void *p = dma_alloc_coherent(dev, len, phys, GFP_KERNEL);
661
662 if (!p)
663 return NULL;
664 if (sw_size) {
Dimitris Michailidisad6bad32010-12-14 21:36:55 +0000665 s = kzalloc_node(nelem * sw_size, GFP_KERNEL, node);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000666
667 if (!s) {
668 dma_free_coherent(dev, len, p, *phys);
669 return NULL;
670 }
671 }
672 if (metadata)
673 *(void **)metadata = s;
674 memset(p, 0, len);
675 return p;
676}
677
678/**
679 * sgl_len - calculates the size of an SGL of the given capacity
680 * @n: the number of SGL entries
681 *
682 * Calculates the number of flits needed for a scatter/gather list that
683 * can hold the given number of entries.
684 */
685static inline unsigned int sgl_len(unsigned int n)
686{
687 n--;
688 return (3 * n) / 2 + (n & 1) + 2;
689}
690
691/**
692 * flits_to_desc - returns the num of Tx descriptors for the given flits
693 * @n: the number of flits
694 *
695 * Returns the number of Tx descriptors needed for the supplied number
696 * of flits.
697 */
698static inline unsigned int flits_to_desc(unsigned int n)
699{
700 BUG_ON(n > SGE_MAX_WR_LEN / 8);
701 return DIV_ROUND_UP(n, 8);
702}
703
704/**
705 * is_eth_imm - can an Ethernet packet be sent as immediate data?
706 * @skb: the packet
707 *
708 * Returns whether an Ethernet packet is small enough to fit as
709 * immediate data.
710 */
711static inline int is_eth_imm(const struct sk_buff *skb)
712{
713 return skb->len <= MAX_IMM_TX_PKT_LEN - sizeof(struct cpl_tx_pkt);
714}
715
716/**
717 * calc_tx_flits - calculate the number of flits for a packet Tx WR
718 * @skb: the packet
719 *
720 * Returns the number of flits needed for a Tx WR for the given Ethernet
721 * packet, including the needed WR and CPL headers.
722 */
723static inline unsigned int calc_tx_flits(const struct sk_buff *skb)
724{
725 unsigned int flits;
726
727 if (is_eth_imm(skb))
728 return DIV_ROUND_UP(skb->len + sizeof(struct cpl_tx_pkt), 8);
729
730 flits = sgl_len(skb_shinfo(skb)->nr_frags + 1) + 4;
731 if (skb_shinfo(skb)->gso_size)
732 flits += 2;
733 return flits;
734}
735
736/**
737 * calc_tx_descs - calculate the number of Tx descriptors for a packet
738 * @skb: the packet
739 *
740 * Returns the number of Tx descriptors needed for the given Ethernet
741 * packet, including the needed WR and CPL headers.
742 */
743static inline unsigned int calc_tx_descs(const struct sk_buff *skb)
744{
745 return flits_to_desc(calc_tx_flits(skb));
746}
747
748/**
749 * write_sgl - populate a scatter/gather list for a packet
750 * @skb: the packet
751 * @q: the Tx queue we are writing into
752 * @sgl: starting location for writing the SGL
753 * @end: points right after the end of the SGL
754 * @start: start offset into skb main-body data to include in the SGL
755 * @addr: the list of bus addresses for the SGL elements
756 *
757 * Generates a gather list for the buffers that make up a packet.
758 * The caller must provide adequate space for the SGL that will be written.
759 * The SGL includes all of the packet's page fragments and the data in its
760 * main body except for the first @start bytes. @sgl must be 16-byte
761 * aligned and within a Tx descriptor with available space. @end points
762 * right after the end of the SGL but does not account for any potential
763 * wrap around, i.e., @end > @sgl.
764 */
765static void write_sgl(const struct sk_buff *skb, struct sge_txq *q,
766 struct ulptx_sgl *sgl, u64 *end, unsigned int start,
767 const dma_addr_t *addr)
768{
769 unsigned int i, len;
770 struct ulptx_sge_pair *to;
771 const struct skb_shared_info *si = skb_shinfo(skb);
772 unsigned int nfrags = si->nr_frags;
773 struct ulptx_sge_pair buf[MAX_SKB_FRAGS / 2 + 1];
774
775 len = skb_headlen(skb) - start;
776 if (likely(len)) {
777 sgl->len0 = htonl(len);
778 sgl->addr0 = cpu_to_be64(addr[0] + start);
779 nfrags++;
780 } else {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000781 sgl->len0 = htonl(skb_frag_size(&si->frags[0]));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000782 sgl->addr0 = cpu_to_be64(addr[1]);
783 }
784
785 sgl->cmd_nsge = htonl(ULPTX_CMD(ULP_TX_SC_DSGL) | ULPTX_NSGE(nfrags));
786 if (likely(--nfrags == 0))
787 return;
788 /*
789 * Most of the complexity below deals with the possibility we hit the
790 * end of the queue in the middle of writing the SGL. For this case
791 * only we create the SGL in a temporary buffer and then copy it.
792 */
793 to = (u8 *)end > (u8 *)q->stat ? buf : sgl->sge;
794
795 for (i = (nfrags != si->nr_frags); nfrags >= 2; nfrags -= 2, to++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000796 to->len[0] = cpu_to_be32(skb_frag_size(&si->frags[i]));
797 to->len[1] = cpu_to_be32(skb_frag_size(&si->frags[++i]));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000798 to->addr[0] = cpu_to_be64(addr[i]);
799 to->addr[1] = cpu_to_be64(addr[++i]);
800 }
801 if (nfrags) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000802 to->len[0] = cpu_to_be32(skb_frag_size(&si->frags[i]));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000803 to->len[1] = cpu_to_be32(0);
804 to->addr[0] = cpu_to_be64(addr[i + 1]);
805 }
806 if (unlikely((u8 *)end > (u8 *)q->stat)) {
807 unsigned int part0 = (u8 *)q->stat - (u8 *)sgl->sge, part1;
808
809 if (likely(part0))
810 memcpy(sgl->sge, buf, part0);
811 part1 = (u8 *)end - (u8 *)q->stat;
812 memcpy(q->desc, (u8 *)buf + part0, part1);
813 end = (void *)q->desc + part1;
814 }
815 if ((uintptr_t)end & 8) /* 0-pad to multiple of 16 */
Joe Perches64699332012-06-04 12:44:16 +0000816 *end = 0;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000817}
818
Santosh Rastapur22adfe02013-03-14 05:08:51 +0000819/* This function copies 64 byte coalesced work request to
820 * memory mapped BAR2 space(user space writes).
821 * For coalesced WR SGE, fetches data from the FIFO instead of from Host.
822 */
823static void cxgb_pio_copy(u64 __iomem *dst, u64 *src)
824{
825 int count = 8;
826
827 while (count) {
828 writeq(*src, dst);
829 src++;
830 dst++;
831 count--;
832 }
833}
834
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000835/**
836 * ring_tx_db - check and potentially ring a Tx queue's doorbell
837 * @adap: the adapter
838 * @q: the Tx queue
839 * @n: number of new descriptors to give to HW
840 *
841 * Ring the doorbel for a Tx queue.
842 */
843static inline void ring_tx_db(struct adapter *adap, struct sge_txq *q, int n)
844{
Santosh Rastapur22adfe02013-03-14 05:08:51 +0000845 unsigned int *wr, index;
846
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000847 wmb(); /* write descriptors before telling HW */
Vipul Pandya3069ee92012-05-18 15:29:26 +0530848 spin_lock(&q->db_lock);
849 if (!q->db_disabled) {
Hariprasad Shenaid14807d2013-12-03 17:05:56 +0530850 if (is_t4(adap->params.chip)) {
Santosh Rastapur22adfe02013-03-14 05:08:51 +0000851 t4_write_reg(adap, MYPF_REG(SGE_PF_KDOORBELL),
852 QID(q->cntxt_id) | PIDX(n));
853 } else {
854 if (n == 1) {
855 index = q->pidx ? (q->pidx - 1) : (q->size - 1);
856 wr = (unsigned int *)&q->desc[index];
857 cxgb_pio_copy((u64 __iomem *)
858 (adap->bar2 + q->udb + 64),
859 (u64 *)wr);
860 } else
861 writel(n, adap->bar2 + q->udb + 8);
862 wmb();
863 }
Vipul Pandya3069ee92012-05-18 15:29:26 +0530864 }
865 q->db_pidx = q->pidx;
866 spin_unlock(&q->db_lock);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +0000867}
868
869/**
870 * inline_tx_skb - inline a packet's data into Tx descriptors
871 * @skb: the packet
872 * @q: the Tx queue where the packet will be inlined
873 * @pos: starting position in the Tx queue where to inline the packet
874 *
875 * Inline a packet's contents directly into Tx descriptors, starting at
876 * the given position within the Tx DMA ring.
877 * Most of the complexity of this operation is dealing with wrap arounds
878 * in the middle of the packet we want to inline.
879 */
880static void inline_tx_skb(const struct sk_buff *skb, const struct sge_txq *q,
881 void *pos)
882{
883 u64 *p;
884 int left = (void *)q->stat - pos;
885
886 if (likely(skb->len <= left)) {
887 if (likely(!skb->data_len))
888 skb_copy_from_linear_data(skb, pos, skb->len);
889 else
890 skb_copy_bits(skb, 0, pos, skb->len);
891 pos += skb->len;
892 } else {
893 skb_copy_bits(skb, 0, pos, left);
894 skb_copy_bits(skb, left, q->desc, skb->len - left);
895 pos = (void *)q->desc + (skb->len - left);
896 }
897
898 /* 0-pad to multiple of 16 */
899 p = PTR_ALIGN(pos, 8);
900 if ((uintptr_t)p & 8)
901 *p = 0;
902}
903
904/*
905 * Figure out what HW csum a packet wants and return the appropriate control
906 * bits.
907 */
908static u64 hwcsum(const struct sk_buff *skb)
909{
910 int csum_type;
911 const struct iphdr *iph = ip_hdr(skb);
912
913 if (iph->version == 4) {
914 if (iph->protocol == IPPROTO_TCP)
915 csum_type = TX_CSUM_TCPIP;
916 else if (iph->protocol == IPPROTO_UDP)
917 csum_type = TX_CSUM_UDPIP;
918 else {
919nocsum: /*
920 * unknown protocol, disable HW csum
921 * and hope a bad packet is detected
922 */
923 return TXPKT_L4CSUM_DIS;
924 }
925 } else {
926 /*
927 * this doesn't work with extension headers
928 */
929 const struct ipv6hdr *ip6h = (const struct ipv6hdr *)iph;
930
931 if (ip6h->nexthdr == IPPROTO_TCP)
932 csum_type = TX_CSUM_TCPIP6;
933 else if (ip6h->nexthdr == IPPROTO_UDP)
934 csum_type = TX_CSUM_UDPIP6;
935 else
936 goto nocsum;
937 }
938
939 if (likely(csum_type >= TX_CSUM_TCPIP))
940 return TXPKT_CSUM_TYPE(csum_type) |
941 TXPKT_IPHDR_LEN(skb_network_header_len(skb)) |
942 TXPKT_ETHHDR_LEN(skb_network_offset(skb) - ETH_HLEN);
943 else {
944 int start = skb_transport_offset(skb);
945
946 return TXPKT_CSUM_TYPE(csum_type) | TXPKT_CSUM_START(start) |
947 TXPKT_CSUM_LOC(start + skb->csum_offset);
948 }
949}
950
951static void eth_txq_stop(struct sge_eth_txq *q)
952{
953 netif_tx_stop_queue(q->txq);
954 q->q.stops++;
955}
956
957static inline void txq_advance(struct sge_txq *q, unsigned int n)
958{
959 q->in_use += n;
960 q->pidx += n;
961 if (q->pidx >= q->size)
962 q->pidx -= q->size;
963}
964
965/**
966 * t4_eth_xmit - add a packet to an Ethernet Tx queue
967 * @skb: the packet
968 * @dev: the egress net device
969 *
970 * Add a packet to an SGE Ethernet Tx queue. Runs with softirqs disabled.
971 */
972netdev_tx_t t4_eth_xmit(struct sk_buff *skb, struct net_device *dev)
973{
974 u32 wr_mid;
975 u64 cntrl, *end;
976 int qidx, credits;
977 unsigned int flits, ndesc;
978 struct adapter *adap;
979 struct sge_eth_txq *q;
980 const struct port_info *pi;
981 struct fw_eth_tx_pkt_wr *wr;
982 struct cpl_tx_pkt_core *cpl;
983 const struct skb_shared_info *ssi;
984 dma_addr_t addr[MAX_SKB_FRAGS + 1];
985
986 /*
987 * The chip min packet length is 10 octets but play safe and reject
988 * anything shorter than an Ethernet header.
989 */
990 if (unlikely(skb->len < ETH_HLEN)) {
991out_free: dev_kfree_skb(skb);
992 return NETDEV_TX_OK;
993 }
994
995 pi = netdev_priv(dev);
996 adap = pi->adapter;
997 qidx = skb_get_queue_mapping(skb);
998 q = &adap->sge.ethtxq[qidx + pi->first_qset];
999
1000 reclaim_completed_tx(adap, &q->q, true);
1001
1002 flits = calc_tx_flits(skb);
1003 ndesc = flits_to_desc(flits);
1004 credits = txq_avail(&q->q) - ndesc;
1005
1006 if (unlikely(credits < 0)) {
1007 eth_txq_stop(q);
1008 dev_err(adap->pdev_dev,
1009 "%s: Tx ring %u full while queue awake!\n",
1010 dev->name, qidx);
1011 return NETDEV_TX_BUSY;
1012 }
1013
1014 if (!is_eth_imm(skb) &&
1015 unlikely(map_skb(adap->pdev_dev, skb, addr) < 0)) {
1016 q->mapping_err++;
1017 goto out_free;
1018 }
1019
1020 wr_mid = FW_WR_LEN16(DIV_ROUND_UP(flits, 2));
1021 if (unlikely(credits < ETHTXQ_STOP_THRES)) {
1022 eth_txq_stop(q);
1023 wr_mid |= FW_WR_EQUEQ | FW_WR_EQUIQ;
1024 }
1025
1026 wr = (void *)&q->q.desc[q->q.pidx];
1027 wr->equiq_to_len16 = htonl(wr_mid);
1028 wr->r3 = cpu_to_be64(0);
1029 end = (u64 *)wr + flits;
1030
1031 ssi = skb_shinfo(skb);
1032 if (ssi->gso_size) {
Dimitris Michailidis625ac6a2010-08-02 13:19:18 +00001033 struct cpl_tx_pkt_lso *lso = (void *)wr;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001034 bool v6 = (ssi->gso_type & SKB_GSO_TCPV6) != 0;
1035 int l3hdr_len = skb_network_header_len(skb);
1036 int eth_xtra_len = skb_network_offset(skb) - ETH_HLEN;
1037
1038 wr->op_immdlen = htonl(FW_WR_OP(FW_ETH_TX_PKT_WR) |
1039 FW_WR_IMMDLEN(sizeof(*lso)));
Dimitris Michailidis625ac6a2010-08-02 13:19:18 +00001040 lso->c.lso_ctrl = htonl(LSO_OPCODE(CPL_TX_PKT_LSO) |
1041 LSO_FIRST_SLICE | LSO_LAST_SLICE |
1042 LSO_IPV6(v6) |
1043 LSO_ETHHDR_LEN(eth_xtra_len / 4) |
1044 LSO_IPHDR_LEN(l3hdr_len / 4) |
1045 LSO_TCPHDR_LEN(tcp_hdr(skb)->doff));
1046 lso->c.ipid_ofst = htons(0);
1047 lso->c.mss = htons(ssi->gso_size);
1048 lso->c.seqno_offset = htonl(0);
1049 lso->c.len = htonl(skb->len);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001050 cpl = (void *)(lso + 1);
1051 cntrl = TXPKT_CSUM_TYPE(v6 ? TX_CSUM_TCPIP6 : TX_CSUM_TCPIP) |
1052 TXPKT_IPHDR_LEN(l3hdr_len) |
1053 TXPKT_ETHHDR_LEN(eth_xtra_len);
1054 q->tso++;
1055 q->tx_cso += ssi->gso_segs;
1056 } else {
1057 int len;
1058
1059 len = is_eth_imm(skb) ? skb->len + sizeof(*cpl) : sizeof(*cpl);
1060 wr->op_immdlen = htonl(FW_WR_OP(FW_ETH_TX_PKT_WR) |
1061 FW_WR_IMMDLEN(len));
1062 cpl = (void *)(wr + 1);
1063 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1064 cntrl = hwcsum(skb) | TXPKT_IPCSUM_DIS;
1065 q->tx_cso++;
1066 } else
1067 cntrl = TXPKT_L4CSUM_DIS | TXPKT_IPCSUM_DIS;
1068 }
1069
1070 if (vlan_tx_tag_present(skb)) {
1071 q->vlan_ins++;
1072 cntrl |= TXPKT_VLAN_VLD | TXPKT_VLAN(vlan_tx_tag_get(skb));
1073 }
1074
1075 cpl->ctrl0 = htonl(TXPKT_OPCODE(CPL_TX_PKT_XT) |
Dimitris Michailidis1707aec2010-08-23 17:21:00 +00001076 TXPKT_INTF(pi->tx_chan) | TXPKT_PF(adap->fn));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001077 cpl->pack = htons(0);
1078 cpl->len = htons(skb->len);
1079 cpl->ctrl1 = cpu_to_be64(cntrl);
1080
1081 if (is_eth_imm(skb)) {
1082 inline_tx_skb(skb, &q->q, cpl + 1);
1083 dev_kfree_skb(skb);
1084 } else {
1085 int last_desc;
1086
1087 write_sgl(skb, &q->q, (struct ulptx_sgl *)(cpl + 1), end, 0,
1088 addr);
1089 skb_orphan(skb);
1090
1091 last_desc = q->q.pidx + ndesc - 1;
1092 if (last_desc >= q->q.size)
1093 last_desc -= q->q.size;
1094 q->q.sdesc[last_desc].skb = skb;
1095 q->q.sdesc[last_desc].sgl = (struct ulptx_sgl *)(cpl + 1);
1096 }
1097
1098 txq_advance(&q->q, ndesc);
1099
1100 ring_tx_db(adap, &q->q, ndesc);
1101 return NETDEV_TX_OK;
1102}
1103
1104/**
1105 * reclaim_completed_tx_imm - reclaim completed control-queue Tx descs
1106 * @q: the SGE control Tx queue
1107 *
1108 * This is a variant of reclaim_completed_tx() that is used for Tx queues
1109 * that send only immediate data (presently just the control queues) and
1110 * thus do not have any sk_buffs to release.
1111 */
1112static inline void reclaim_completed_tx_imm(struct sge_txq *q)
1113{
1114 int hw_cidx = ntohs(q->stat->cidx);
1115 int reclaim = hw_cidx - q->cidx;
1116
1117 if (reclaim < 0)
1118 reclaim += q->size;
1119
1120 q->in_use -= reclaim;
1121 q->cidx = hw_cidx;
1122}
1123
1124/**
1125 * is_imm - check whether a packet can be sent as immediate data
1126 * @skb: the packet
1127 *
1128 * Returns true if a packet can be sent as a WR with immediate data.
1129 */
1130static inline int is_imm(const struct sk_buff *skb)
1131{
1132 return skb->len <= MAX_CTRL_WR_LEN;
1133}
1134
1135/**
1136 * ctrlq_check_stop - check if a control queue is full and should stop
1137 * @q: the queue
1138 * @wr: most recent WR written to the queue
1139 *
1140 * Check if a control queue has become full and should be stopped.
1141 * We clean up control queue descriptors very lazily, only when we are out.
1142 * If the queue is still full after reclaiming any completed descriptors
1143 * we suspend it and have the last WR wake it up.
1144 */
1145static void ctrlq_check_stop(struct sge_ctrl_txq *q, struct fw_wr_hdr *wr)
1146{
1147 reclaim_completed_tx_imm(&q->q);
1148 if (unlikely(txq_avail(&q->q) < TXQ_STOP_THRES)) {
1149 wr->lo |= htonl(FW_WR_EQUEQ | FW_WR_EQUIQ);
1150 q->q.stops++;
1151 q->full = 1;
1152 }
1153}
1154
1155/**
1156 * ctrl_xmit - send a packet through an SGE control Tx queue
1157 * @q: the control queue
1158 * @skb: the packet
1159 *
1160 * Send a packet through an SGE control Tx queue. Packets sent through
1161 * a control queue must fit entirely as immediate data.
1162 */
1163static int ctrl_xmit(struct sge_ctrl_txq *q, struct sk_buff *skb)
1164{
1165 unsigned int ndesc;
1166 struct fw_wr_hdr *wr;
1167
1168 if (unlikely(!is_imm(skb))) {
1169 WARN_ON(1);
1170 dev_kfree_skb(skb);
1171 return NET_XMIT_DROP;
1172 }
1173
1174 ndesc = DIV_ROUND_UP(skb->len, sizeof(struct tx_desc));
1175 spin_lock(&q->sendq.lock);
1176
1177 if (unlikely(q->full)) {
1178 skb->priority = ndesc; /* save for restart */
1179 __skb_queue_tail(&q->sendq, skb);
1180 spin_unlock(&q->sendq.lock);
1181 return NET_XMIT_CN;
1182 }
1183
1184 wr = (struct fw_wr_hdr *)&q->q.desc[q->q.pidx];
1185 inline_tx_skb(skb, &q->q, wr);
1186
1187 txq_advance(&q->q, ndesc);
1188 if (unlikely(txq_avail(&q->q) < TXQ_STOP_THRES))
1189 ctrlq_check_stop(q, wr);
1190
1191 ring_tx_db(q->adap, &q->q, ndesc);
1192 spin_unlock(&q->sendq.lock);
1193
1194 kfree_skb(skb);
1195 return NET_XMIT_SUCCESS;
1196}
1197
1198/**
1199 * restart_ctrlq - restart a suspended control queue
1200 * @data: the control queue to restart
1201 *
1202 * Resumes transmission on a suspended Tx control queue.
1203 */
1204static void restart_ctrlq(unsigned long data)
1205{
1206 struct sk_buff *skb;
1207 unsigned int written = 0;
1208 struct sge_ctrl_txq *q = (struct sge_ctrl_txq *)data;
1209
1210 spin_lock(&q->sendq.lock);
1211 reclaim_completed_tx_imm(&q->q);
1212 BUG_ON(txq_avail(&q->q) < TXQ_STOP_THRES); /* q should be empty */
1213
1214 while ((skb = __skb_dequeue(&q->sendq)) != NULL) {
1215 struct fw_wr_hdr *wr;
1216 unsigned int ndesc = skb->priority; /* previously saved */
1217
1218 /*
1219 * Write descriptors and free skbs outside the lock to limit
1220 * wait times. q->full is still set so new skbs will be queued.
1221 */
1222 spin_unlock(&q->sendq.lock);
1223
1224 wr = (struct fw_wr_hdr *)&q->q.desc[q->q.pidx];
1225 inline_tx_skb(skb, &q->q, wr);
1226 kfree_skb(skb);
1227
1228 written += ndesc;
1229 txq_advance(&q->q, ndesc);
1230 if (unlikely(txq_avail(&q->q) < TXQ_STOP_THRES)) {
1231 unsigned long old = q->q.stops;
1232
1233 ctrlq_check_stop(q, wr);
1234 if (q->q.stops != old) { /* suspended anew */
1235 spin_lock(&q->sendq.lock);
1236 goto ringdb;
1237 }
1238 }
1239 if (written > 16) {
1240 ring_tx_db(q->adap, &q->q, written);
1241 written = 0;
1242 }
1243 spin_lock(&q->sendq.lock);
1244 }
1245 q->full = 0;
1246ringdb: if (written)
1247 ring_tx_db(q->adap, &q->q, written);
1248 spin_unlock(&q->sendq.lock);
1249}
1250
1251/**
1252 * t4_mgmt_tx - send a management message
1253 * @adap: the adapter
1254 * @skb: the packet containing the management message
1255 *
1256 * Send a management message through control queue 0.
1257 */
1258int t4_mgmt_tx(struct adapter *adap, struct sk_buff *skb)
1259{
1260 int ret;
1261
1262 local_bh_disable();
1263 ret = ctrl_xmit(&adap->sge.ctrlq[0], skb);
1264 local_bh_enable();
1265 return ret;
1266}
1267
1268/**
1269 * is_ofld_imm - check whether a packet can be sent as immediate data
1270 * @skb: the packet
1271 *
1272 * Returns true if a packet can be sent as an offload WR with immediate
1273 * data. We currently use the same limit as for Ethernet packets.
1274 */
1275static inline int is_ofld_imm(const struct sk_buff *skb)
1276{
1277 return skb->len <= MAX_IMM_TX_PKT_LEN;
1278}
1279
1280/**
1281 * calc_tx_flits_ofld - calculate # of flits for an offload packet
1282 * @skb: the packet
1283 *
1284 * Returns the number of flits needed for the given offload packet.
1285 * These packets are already fully constructed and no additional headers
1286 * will be added.
1287 */
1288static inline unsigned int calc_tx_flits_ofld(const struct sk_buff *skb)
1289{
1290 unsigned int flits, cnt;
1291
1292 if (is_ofld_imm(skb))
1293 return DIV_ROUND_UP(skb->len, 8);
1294
1295 flits = skb_transport_offset(skb) / 8U; /* headers */
1296 cnt = skb_shinfo(skb)->nr_frags;
Li RongQing15dd16c2013-06-03 22:11:16 +00001297 if (skb_tail_pointer(skb) != skb_transport_header(skb))
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001298 cnt++;
1299 return flits + sgl_len(cnt);
1300}
1301
1302/**
1303 * txq_stop_maperr - stop a Tx queue due to I/O MMU exhaustion
1304 * @adap: the adapter
1305 * @q: the queue to stop
1306 *
1307 * Mark a Tx queue stopped due to I/O MMU exhaustion and resulting
1308 * inability to map packets. A periodic timer attempts to restart
1309 * queues so marked.
1310 */
1311static void txq_stop_maperr(struct sge_ofld_txq *q)
1312{
1313 q->mapping_err++;
1314 q->q.stops++;
Dimitris Michailidise46dab42010-08-23 17:20:58 +00001315 set_bit(q->q.cntxt_id - q->adap->sge.egr_start,
1316 q->adap->sge.txq_maperr);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001317}
1318
1319/**
1320 * ofldtxq_stop - stop an offload Tx queue that has become full
1321 * @q: the queue to stop
1322 * @skb: the packet causing the queue to become full
1323 *
1324 * Stops an offload Tx queue that has become full and modifies the packet
1325 * being written to request a wakeup.
1326 */
1327static void ofldtxq_stop(struct sge_ofld_txq *q, struct sk_buff *skb)
1328{
1329 struct fw_wr_hdr *wr = (struct fw_wr_hdr *)skb->data;
1330
1331 wr->lo |= htonl(FW_WR_EQUEQ | FW_WR_EQUIQ);
1332 q->q.stops++;
1333 q->full = 1;
1334}
1335
1336/**
1337 * service_ofldq - restart a suspended offload queue
1338 * @q: the offload queue
1339 *
1340 * Services an offload Tx queue by moving packets from its packet queue
1341 * to the HW Tx ring. The function starts and ends with the queue locked.
1342 */
1343static void service_ofldq(struct sge_ofld_txq *q)
1344{
1345 u64 *pos;
1346 int credits;
1347 struct sk_buff *skb;
1348 unsigned int written = 0;
1349 unsigned int flits, ndesc;
1350
1351 while ((skb = skb_peek(&q->sendq)) != NULL && !q->full) {
1352 /*
1353 * We drop the lock but leave skb on sendq, thus retaining
1354 * exclusive access to the state of the queue.
1355 */
1356 spin_unlock(&q->sendq.lock);
1357
1358 reclaim_completed_tx(q->adap, &q->q, false);
1359
1360 flits = skb->priority; /* previously saved */
1361 ndesc = flits_to_desc(flits);
1362 credits = txq_avail(&q->q) - ndesc;
1363 BUG_ON(credits < 0);
1364 if (unlikely(credits < TXQ_STOP_THRES))
1365 ofldtxq_stop(q, skb);
1366
1367 pos = (u64 *)&q->q.desc[q->q.pidx];
1368 if (is_ofld_imm(skb))
1369 inline_tx_skb(skb, &q->q, pos);
1370 else if (map_skb(q->adap->pdev_dev, skb,
1371 (dma_addr_t *)skb->head)) {
1372 txq_stop_maperr(q);
1373 spin_lock(&q->sendq.lock);
1374 break;
1375 } else {
1376 int last_desc, hdr_len = skb_transport_offset(skb);
1377
1378 memcpy(pos, skb->data, hdr_len);
1379 write_sgl(skb, &q->q, (void *)pos + hdr_len,
1380 pos + flits, hdr_len,
1381 (dma_addr_t *)skb->head);
1382#ifdef CONFIG_NEED_DMA_MAP_STATE
1383 skb->dev = q->adap->port[0];
1384 skb->destructor = deferred_unmap_destructor;
1385#endif
1386 last_desc = q->q.pidx + ndesc - 1;
1387 if (last_desc >= q->q.size)
1388 last_desc -= q->q.size;
1389 q->q.sdesc[last_desc].skb = skb;
1390 }
1391
1392 txq_advance(&q->q, ndesc);
1393 written += ndesc;
1394 if (unlikely(written > 32)) {
1395 ring_tx_db(q->adap, &q->q, written);
1396 written = 0;
1397 }
1398
1399 spin_lock(&q->sendq.lock);
1400 __skb_unlink(skb, &q->sendq);
1401 if (is_ofld_imm(skb))
1402 kfree_skb(skb);
1403 }
1404 if (likely(written))
1405 ring_tx_db(q->adap, &q->q, written);
1406}
1407
1408/**
1409 * ofld_xmit - send a packet through an offload queue
1410 * @q: the Tx offload queue
1411 * @skb: the packet
1412 *
1413 * Send an offload packet through an SGE offload queue.
1414 */
1415static int ofld_xmit(struct sge_ofld_txq *q, struct sk_buff *skb)
1416{
1417 skb->priority = calc_tx_flits_ofld(skb); /* save for restart */
1418 spin_lock(&q->sendq.lock);
1419 __skb_queue_tail(&q->sendq, skb);
1420 if (q->sendq.qlen == 1)
1421 service_ofldq(q);
1422 spin_unlock(&q->sendq.lock);
1423 return NET_XMIT_SUCCESS;
1424}
1425
1426/**
1427 * restart_ofldq - restart a suspended offload queue
1428 * @data: the offload queue to restart
1429 *
1430 * Resumes transmission on a suspended Tx offload queue.
1431 */
1432static void restart_ofldq(unsigned long data)
1433{
1434 struct sge_ofld_txq *q = (struct sge_ofld_txq *)data;
1435
1436 spin_lock(&q->sendq.lock);
1437 q->full = 0; /* the queue actually is completely empty now */
1438 service_ofldq(q);
1439 spin_unlock(&q->sendq.lock);
1440}
1441
1442/**
1443 * skb_txq - return the Tx queue an offload packet should use
1444 * @skb: the packet
1445 *
1446 * Returns the Tx queue an offload packet should use as indicated by bits
1447 * 1-15 in the packet's queue_mapping.
1448 */
1449static inline unsigned int skb_txq(const struct sk_buff *skb)
1450{
1451 return skb->queue_mapping >> 1;
1452}
1453
1454/**
1455 * is_ctrl_pkt - return whether an offload packet is a control packet
1456 * @skb: the packet
1457 *
1458 * Returns whether an offload packet should use an OFLD or a CTRL
1459 * Tx queue as indicated by bit 0 in the packet's queue_mapping.
1460 */
1461static inline unsigned int is_ctrl_pkt(const struct sk_buff *skb)
1462{
1463 return skb->queue_mapping & 1;
1464}
1465
1466static inline int ofld_send(struct adapter *adap, struct sk_buff *skb)
1467{
1468 unsigned int idx = skb_txq(skb);
1469
Kumar Sanghvi4fe44dd2014-02-18 17:56:11 +05301470 if (unlikely(is_ctrl_pkt(skb))) {
1471 /* Single ctrl queue is a requirement for LE workaround path */
1472 if (adap->tids.nsftids)
1473 idx = 0;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001474 return ctrl_xmit(&adap->sge.ctrlq[idx], skb);
Kumar Sanghvi4fe44dd2014-02-18 17:56:11 +05301475 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001476 return ofld_xmit(&adap->sge.ofldtxq[idx], skb);
1477}
1478
1479/**
1480 * t4_ofld_send - send an offload packet
1481 * @adap: the adapter
1482 * @skb: the packet
1483 *
1484 * Sends an offload packet. We use the packet queue_mapping to select the
1485 * appropriate Tx queue as follows: bit 0 indicates whether the packet
1486 * should be sent as regular or control, bits 1-15 select the queue.
1487 */
1488int t4_ofld_send(struct adapter *adap, struct sk_buff *skb)
1489{
1490 int ret;
1491
1492 local_bh_disable();
1493 ret = ofld_send(adap, skb);
1494 local_bh_enable();
1495 return ret;
1496}
1497
1498/**
1499 * cxgb4_ofld_send - send an offload packet
1500 * @dev: the net device
1501 * @skb: the packet
1502 *
1503 * Sends an offload packet. This is an exported version of @t4_ofld_send,
1504 * intended for ULDs.
1505 */
1506int cxgb4_ofld_send(struct net_device *dev, struct sk_buff *skb)
1507{
1508 return t4_ofld_send(netdev2adap(dev), skb);
1509}
1510EXPORT_SYMBOL(cxgb4_ofld_send);
1511
Ian Campbelle91b0f22011-10-19 23:01:46 +00001512static inline void copy_frags(struct sk_buff *skb,
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001513 const struct pkt_gl *gl, unsigned int offset)
1514{
Ian Campbelle91b0f22011-10-19 23:01:46 +00001515 int i;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001516
1517 /* usually there's just one frag */
Ian Campbelle91b0f22011-10-19 23:01:46 +00001518 __skb_fill_page_desc(skb, 0, gl->frags[0].page,
1519 gl->frags[0].offset + offset,
1520 gl->frags[0].size - offset);
1521 skb_shinfo(skb)->nr_frags = gl->nfrags;
1522 for (i = 1; i < gl->nfrags; i++)
1523 __skb_fill_page_desc(skb, i, gl->frags[i].page,
1524 gl->frags[i].offset,
1525 gl->frags[i].size);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001526
1527 /* get a reference to the last page, we don't own it */
Ian Campbelle91b0f22011-10-19 23:01:46 +00001528 get_page(gl->frags[gl->nfrags - 1].page);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001529}
1530
1531/**
1532 * cxgb4_pktgl_to_skb - build an sk_buff from a packet gather list
1533 * @gl: the gather list
1534 * @skb_len: size of sk_buff main body if it carries fragments
1535 * @pull_len: amount of data to move to the sk_buff's main body
1536 *
1537 * Builds an sk_buff from the given packet gather list. Returns the
1538 * sk_buff or %NULL if sk_buff allocation failed.
1539 */
1540struct sk_buff *cxgb4_pktgl_to_skb(const struct pkt_gl *gl,
1541 unsigned int skb_len, unsigned int pull_len)
1542{
1543 struct sk_buff *skb;
1544
1545 /*
1546 * Below we rely on RX_COPY_THRES being less than the smallest Rx buffer
1547 * size, which is expected since buffers are at least PAGE_SIZEd.
1548 * In this case packets up to RX_COPY_THRES have only one fragment.
1549 */
1550 if (gl->tot_len <= RX_COPY_THRES) {
1551 skb = dev_alloc_skb(gl->tot_len);
1552 if (unlikely(!skb))
1553 goto out;
1554 __skb_put(skb, gl->tot_len);
1555 skb_copy_to_linear_data(skb, gl->va, gl->tot_len);
1556 } else {
1557 skb = dev_alloc_skb(skb_len);
1558 if (unlikely(!skb))
1559 goto out;
1560 __skb_put(skb, pull_len);
1561 skb_copy_to_linear_data(skb, gl->va, pull_len);
1562
Ian Campbelle91b0f22011-10-19 23:01:46 +00001563 copy_frags(skb, gl, pull_len);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001564 skb->len = gl->tot_len;
1565 skb->data_len = skb->len - pull_len;
1566 skb->truesize += skb->data_len;
1567 }
1568out: return skb;
1569}
1570EXPORT_SYMBOL(cxgb4_pktgl_to_skb);
1571
1572/**
1573 * t4_pktgl_free - free a packet gather list
1574 * @gl: the gather list
1575 *
1576 * Releases the pages of a packet gather list. We do not own the last
1577 * page on the list and do not free it.
1578 */
Roland Dreierde498c82010-04-21 08:59:17 +00001579static void t4_pktgl_free(const struct pkt_gl *gl)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001580{
1581 int n;
Ian Campbelle91b0f22011-10-19 23:01:46 +00001582 const struct page_frag *p;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001583
1584 for (p = gl->frags, n = gl->nfrags - 1; n--; p++)
1585 put_page(p->page);
1586}
1587
1588/*
1589 * Process an MPS trace packet. Give it an unused protocol number so it won't
1590 * be delivered to anyone and send it to the stack for capture.
1591 */
1592static noinline int handle_trace_pkt(struct adapter *adap,
1593 const struct pkt_gl *gl)
1594{
1595 struct sk_buff *skb;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001596
1597 skb = cxgb4_pktgl_to_skb(gl, RX_PULL_LEN, RX_PULL_LEN);
1598 if (unlikely(!skb)) {
1599 t4_pktgl_free(gl);
1600 return 0;
1601 }
1602
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05301603 if (is_t4(adap->params.chip))
Santosh Rastapur0a57a532013-03-14 05:08:49 +00001604 __skb_pull(skb, sizeof(struct cpl_trace_pkt));
1605 else
1606 __skb_pull(skb, sizeof(struct cpl_t5_trace_pkt));
1607
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001608 skb_reset_mac_header(skb);
1609 skb->protocol = htons(0xffff);
1610 skb->dev = adap->port[0];
1611 netif_receive_skb(skb);
1612 return 0;
1613}
1614
1615static void do_gro(struct sge_eth_rxq *rxq, const struct pkt_gl *gl,
1616 const struct cpl_rx_pkt *pkt)
1617{
Vipul Pandya52367a72012-09-26 02:39:38 +00001618 struct adapter *adapter = rxq->rspq.adap;
1619 struct sge *s = &adapter->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001620 int ret;
1621 struct sk_buff *skb;
1622
1623 skb = napi_get_frags(&rxq->rspq.napi);
1624 if (unlikely(!skb)) {
1625 t4_pktgl_free(gl);
1626 rxq->stats.rx_drops++;
1627 return;
1628 }
1629
Vipul Pandya52367a72012-09-26 02:39:38 +00001630 copy_frags(skb, gl, s->pktshift);
1631 skb->len = gl->tot_len - s->pktshift;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001632 skb->data_len = skb->len;
1633 skb->truesize += skb->data_len;
1634 skb->ip_summed = CHECKSUM_UNNECESSARY;
1635 skb_record_rx_queue(skb, rxq->rspq.idx);
Dimitris Michailidis87b6cf52010-04-27 16:22:42 -07001636 if (rxq->rspq.netdev->features & NETIF_F_RXHASH)
Tom Herbert82649892013-12-17 23:23:29 -08001637 skb_set_hash(skb, (__force u32)pkt->rsshdr.hash_val,
1638 PKT_HASH_TYPE_L3);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001639
1640 if (unlikely(pkt->vlan_ex)) {
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001641 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), ntohs(pkt->vlan));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001642 rxq->stats.vlan_ex++;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001643 }
1644 ret = napi_gro_frags(&rxq->rspq.napi);
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001645 if (ret == GRO_HELD)
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001646 rxq->stats.lro_pkts++;
1647 else if (ret == GRO_MERGED || ret == GRO_MERGED_FREE)
1648 rxq->stats.lro_merged++;
1649 rxq->stats.pkts++;
1650 rxq->stats.rx_cso++;
1651}
1652
1653/**
1654 * t4_ethrx_handler - process an ingress ethernet packet
1655 * @q: the response queue that received the packet
1656 * @rsp: the response queue descriptor holding the RX_PKT message
1657 * @si: the gather list of packet fragments
1658 *
1659 * Process an ingress ethernet packet and deliver it to the stack.
1660 */
1661int t4_ethrx_handler(struct sge_rspq *q, const __be64 *rsp,
1662 const struct pkt_gl *si)
1663{
1664 bool csum_ok;
1665 struct sk_buff *skb;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001666 const struct cpl_rx_pkt *pkt;
1667 struct sge_eth_rxq *rxq = container_of(q, struct sge_eth_rxq, rspq);
Vipul Pandya52367a72012-09-26 02:39:38 +00001668 struct sge *s = &q->adap->sge;
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05301669 int cpl_trace_pkt = is_t4(q->adap->params.chip) ?
Santosh Rastapur0a57a532013-03-14 05:08:49 +00001670 CPL_TRACE_PKT : CPL_TRACE_PKT_T5;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001671
Santosh Rastapur0a57a532013-03-14 05:08:49 +00001672 if (unlikely(*(u8 *)rsp == cpl_trace_pkt))
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001673 return handle_trace_pkt(q->adap, si);
1674
Dimitris Michailidis87b6cf52010-04-27 16:22:42 -07001675 pkt = (const struct cpl_rx_pkt *)rsp;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001676 csum_ok = pkt->csum_calc && !pkt->err_vec;
1677 if ((pkt->l2info & htonl(RXF_TCP)) &&
1678 (q->netdev->features & NETIF_F_GRO) && csum_ok && !pkt->ip_frag) {
1679 do_gro(rxq, si, pkt);
1680 return 0;
1681 }
1682
1683 skb = cxgb4_pktgl_to_skb(si, RX_PKT_SKB_LEN, RX_PULL_LEN);
1684 if (unlikely(!skb)) {
1685 t4_pktgl_free(si);
1686 rxq->stats.rx_drops++;
1687 return 0;
1688 }
1689
Vipul Pandya52367a72012-09-26 02:39:38 +00001690 __skb_pull(skb, s->pktshift); /* remove ethernet header padding */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001691 skb->protocol = eth_type_trans(skb, q->netdev);
1692 skb_record_rx_queue(skb, q->idx);
Dimitris Michailidis87b6cf52010-04-27 16:22:42 -07001693 if (skb->dev->features & NETIF_F_RXHASH)
Tom Herbert82649892013-12-17 23:23:29 -08001694 skb_set_hash(skb, (__force u32)pkt->rsshdr.hash_val,
1695 PKT_HASH_TYPE_L3);
Dimitris Michailidis87b6cf52010-04-27 16:22:42 -07001696
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001697 rxq->stats.pkts++;
1698
Michał Mirosław2ed28ba2011-04-16 13:05:08 +00001699 if (csum_ok && (q->netdev->features & NETIF_F_RXCSUM) &&
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001700 (pkt->l2info & htonl(RXF_UDP | RXF_TCP))) {
Dimitris Michailidisba5d3c62010-08-02 13:19:17 +00001701 if (!pkt->ip_frag) {
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001702 skb->ip_summed = CHECKSUM_UNNECESSARY;
Dimitris Michailidisba5d3c62010-08-02 13:19:17 +00001703 rxq->stats.rx_cso++;
1704 } else if (pkt->l2info & htonl(RXF_IP)) {
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001705 __sum16 c = (__force __sum16)pkt->csum;
1706 skb->csum = csum_unfold(c);
1707 skb->ip_summed = CHECKSUM_COMPLETE;
Dimitris Michailidisba5d3c62010-08-02 13:19:17 +00001708 rxq->stats.rx_cso++;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001709 }
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001710 } else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001711 skb_checksum_none_assert(skb);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001712
1713 if (unlikely(pkt->vlan_ex)) {
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001714 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), ntohs(pkt->vlan));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001715 rxq->stats.vlan_ex++;
Dimitris Michailidis19ecae22010-10-21 11:29:56 +00001716 }
1717 netif_receive_skb(skb);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001718 return 0;
1719}
1720
1721/**
1722 * restore_rx_bufs - put back a packet's Rx buffers
1723 * @si: the packet gather list
1724 * @q: the SGE free list
1725 * @frags: number of FL buffers to restore
1726 *
1727 * Puts back on an FL the Rx buffers associated with @si. The buffers
1728 * have already been unmapped and are left unmapped, we mark them so to
1729 * prevent further unmapping attempts.
1730 *
1731 * This function undoes a series of @unmap_rx_buf calls when we find out
1732 * that the current packet can't be processed right away afterall and we
1733 * need to come back to it later. This is a very rare event and there's
1734 * no effort to make this particularly efficient.
1735 */
1736static void restore_rx_bufs(const struct pkt_gl *si, struct sge_fl *q,
1737 int frags)
1738{
1739 struct rx_sw_desc *d;
1740
1741 while (frags--) {
1742 if (q->cidx == 0)
1743 q->cidx = q->size - 1;
1744 else
1745 q->cidx--;
1746 d = &q->sdesc[q->cidx];
1747 d->page = si->frags[frags].page;
1748 d->dma_addr |= RX_UNMAPPED_BUF;
1749 q->avail++;
1750 }
1751}
1752
1753/**
1754 * is_new_response - check if a response is newly written
1755 * @r: the response descriptor
1756 * @q: the response queue
1757 *
1758 * Returns true if a response descriptor contains a yet unprocessed
1759 * response.
1760 */
1761static inline bool is_new_response(const struct rsp_ctrl *r,
1762 const struct sge_rspq *q)
1763{
1764 return RSPD_GEN(r->type_gen) == q->gen;
1765}
1766
1767/**
1768 * rspq_next - advance to the next entry in a response queue
1769 * @q: the queue
1770 *
1771 * Updates the state of a response queue to advance it to the next entry.
1772 */
1773static inline void rspq_next(struct sge_rspq *q)
1774{
1775 q->cur_desc = (void *)q->cur_desc + q->iqe_len;
1776 if (unlikely(++q->cidx == q->size)) {
1777 q->cidx = 0;
1778 q->gen ^= 1;
1779 q->cur_desc = q->desc;
1780 }
1781}
1782
1783/**
1784 * process_responses - process responses from an SGE response queue
1785 * @q: the ingress queue to process
1786 * @budget: how many responses can be processed in this round
1787 *
1788 * Process responses from an SGE response queue up to the supplied budget.
1789 * Responses include received packets as well as control messages from FW
1790 * or HW.
1791 *
1792 * Additionally choose the interrupt holdoff time for the next interrupt
1793 * on this queue. If the system is under memory shortage use a fairly
1794 * long delay to help recovery.
1795 */
1796static int process_responses(struct sge_rspq *q, int budget)
1797{
1798 int ret, rsp_type;
1799 int budget_left = budget;
1800 const struct rsp_ctrl *rc;
1801 struct sge_eth_rxq *rxq = container_of(q, struct sge_eth_rxq, rspq);
Vipul Pandya52367a72012-09-26 02:39:38 +00001802 struct adapter *adapter = q->adap;
1803 struct sge *s = &adapter->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001804
1805 while (likely(budget_left)) {
1806 rc = (void *)q->cur_desc + (q->iqe_len - sizeof(*rc));
1807 if (!is_new_response(rc, q))
1808 break;
1809
1810 rmb();
1811 rsp_type = RSPD_TYPE(rc->type_gen);
1812 if (likely(rsp_type == RSP_TYPE_FLBUF)) {
Ian Campbelle91b0f22011-10-19 23:01:46 +00001813 struct page_frag *fp;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001814 struct pkt_gl si;
1815 const struct rx_sw_desc *rsd;
1816 u32 len = ntohl(rc->pldbuflen_qid), bufsz, frags;
1817
1818 if (len & RSPD_NEWBUF) {
1819 if (likely(q->offset > 0)) {
1820 free_rx_bufs(q->adap, &rxq->fl, 1);
1821 q->offset = 0;
1822 }
Casey Leedom1704d742010-06-25 12:09:38 +00001823 len = RSPD_LEN(len);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001824 }
1825 si.tot_len = len;
1826
1827 /* gather packet fragments */
1828 for (frags = 0, fp = si.frags; ; frags++, fp++) {
1829 rsd = &rxq->fl.sdesc[rxq->fl.cidx];
Vipul Pandya52367a72012-09-26 02:39:38 +00001830 bufsz = get_buf_size(adapter, rsd);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001831 fp->page = rsd->page;
Ian Campbelle91b0f22011-10-19 23:01:46 +00001832 fp->offset = q->offset;
1833 fp->size = min(bufsz, len);
1834 len -= fp->size;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001835 if (!len)
1836 break;
1837 unmap_rx_buf(q->adap, &rxq->fl);
1838 }
1839
1840 /*
1841 * Last buffer remains mapped so explicitly make it
1842 * coherent for CPU access.
1843 */
1844 dma_sync_single_for_cpu(q->adap->pdev_dev,
1845 get_buf_addr(rsd),
Ian Campbelle91b0f22011-10-19 23:01:46 +00001846 fp->size, DMA_FROM_DEVICE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001847
1848 si.va = page_address(si.frags[0].page) +
Ian Campbelle91b0f22011-10-19 23:01:46 +00001849 si.frags[0].offset;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001850 prefetch(si.va);
1851
1852 si.nfrags = frags + 1;
1853 ret = q->handler(q, q->cur_desc, &si);
1854 if (likely(ret == 0))
Vipul Pandya52367a72012-09-26 02:39:38 +00001855 q->offset += ALIGN(fp->size, s->fl_align);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001856 else
1857 restore_rx_bufs(&si, &rxq->fl, frags);
1858 } else if (likely(rsp_type == RSP_TYPE_CPL)) {
1859 ret = q->handler(q, q->cur_desc, NULL);
1860 } else {
1861 ret = q->handler(q, (const __be64 *)rc, CXGB4_MSG_AN);
1862 }
1863
1864 if (unlikely(ret)) {
1865 /* couldn't process descriptor, back off for recovery */
1866 q->next_intr_params = QINTR_TIMER_IDX(NOMEM_TMR_IDX);
1867 break;
1868 }
1869
1870 rspq_next(q);
1871 budget_left--;
1872 }
1873
1874 if (q->offset >= 0 && rxq->fl.size - rxq->fl.avail >= 16)
1875 __refill_fl(q->adap, &rxq->fl);
1876 return budget - budget_left;
1877}
1878
1879/**
1880 * napi_rx_handler - the NAPI handler for Rx processing
1881 * @napi: the napi instance
1882 * @budget: how many packets we can process in this round
1883 *
1884 * Handler for new data events when using NAPI. This does not need any
1885 * locking or protection from interrupts as data interrupts are off at
1886 * this point and other adapter interrupts do not interfere (the latter
1887 * in not a concern at all with MSI-X as non-data interrupts then have
1888 * a separate handler).
1889 */
1890static int napi_rx_handler(struct napi_struct *napi, int budget)
1891{
1892 unsigned int params;
1893 struct sge_rspq *q = container_of(napi, struct sge_rspq, napi);
1894 int work_done = process_responses(q, budget);
1895
1896 if (likely(work_done < budget)) {
1897 napi_complete(napi);
1898 params = q->next_intr_params;
1899 q->next_intr_params = q->intr_params;
1900 } else
1901 params = QINTR_TIMER_IDX(7);
1902
1903 t4_write_reg(q->adap, MYPF_REG(SGE_PF_GTS), CIDXINC(work_done) |
1904 INGRESSQID((u32)q->cntxt_id) | SEINTARM(params));
1905 return work_done;
1906}
1907
1908/*
1909 * The MSI-X interrupt handler for an SGE response queue.
1910 */
1911irqreturn_t t4_sge_intr_msix(int irq, void *cookie)
1912{
1913 struct sge_rspq *q = cookie;
1914
1915 napi_schedule(&q->napi);
1916 return IRQ_HANDLED;
1917}
1918
1919/*
1920 * Process the indirect interrupt entries in the interrupt queue and kick off
1921 * NAPI for each queue that has generated an entry.
1922 */
1923static unsigned int process_intrq(struct adapter *adap)
1924{
1925 unsigned int credits;
1926 const struct rsp_ctrl *rc;
1927 struct sge_rspq *q = &adap->sge.intrq;
1928
1929 spin_lock(&adap->sge.intrq_lock);
1930 for (credits = 0; ; credits++) {
1931 rc = (void *)q->cur_desc + (q->iqe_len - sizeof(*rc));
1932 if (!is_new_response(rc, q))
1933 break;
1934
1935 rmb();
1936 if (RSPD_TYPE(rc->type_gen) == RSP_TYPE_INTR) {
1937 unsigned int qid = ntohl(rc->pldbuflen_qid);
1938
Dimitris Michailidise46dab42010-08-23 17:20:58 +00001939 qid -= adap->sge.ingr_start;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00001940 napi_schedule(&adap->sge.ingr_map[qid]->napi);
1941 }
1942
1943 rspq_next(q);
1944 }
1945
1946 t4_write_reg(adap, MYPF_REG(SGE_PF_GTS), CIDXINC(credits) |
1947 INGRESSQID(q->cntxt_id) | SEINTARM(q->intr_params));
1948 spin_unlock(&adap->sge.intrq_lock);
1949 return credits;
1950}
1951
1952/*
1953 * The MSI interrupt handler, which handles data events from SGE response queues
1954 * as well as error and other async events as they all use the same MSI vector.
1955 */
1956static irqreturn_t t4_intr_msi(int irq, void *cookie)
1957{
1958 struct adapter *adap = cookie;
1959
1960 t4_slow_intr_handler(adap);
1961 process_intrq(adap);
1962 return IRQ_HANDLED;
1963}
1964
1965/*
1966 * Interrupt handler for legacy INTx interrupts.
1967 * Handles data events from SGE response queues as well as error and other
1968 * async events as they all use the same interrupt line.
1969 */
1970static irqreturn_t t4_intr_intx(int irq, void *cookie)
1971{
1972 struct adapter *adap = cookie;
1973
1974 t4_write_reg(adap, MYPF_REG(PCIE_PF_CLI), 0);
1975 if (t4_slow_intr_handler(adap) | process_intrq(adap))
1976 return IRQ_HANDLED;
1977 return IRQ_NONE; /* probably shared interrupt */
1978}
1979
1980/**
1981 * t4_intr_handler - select the top-level interrupt handler
1982 * @adap: the adapter
1983 *
1984 * Selects the top-level interrupt handler based on the type of interrupts
1985 * (MSI-X, MSI, or INTx).
1986 */
1987irq_handler_t t4_intr_handler(struct adapter *adap)
1988{
1989 if (adap->flags & USING_MSIX)
1990 return t4_sge_intr_msix;
1991 if (adap->flags & USING_MSI)
1992 return t4_intr_msi;
1993 return t4_intr_intx;
1994}
1995
1996static void sge_rx_timer_cb(unsigned long data)
1997{
1998 unsigned long m;
1999 unsigned int i, cnt[2];
2000 struct adapter *adap = (struct adapter *)data;
2001 struct sge *s = &adap->sge;
2002
2003 for (i = 0; i < ARRAY_SIZE(s->starving_fl); i++)
2004 for (m = s->starving_fl[i]; m; m &= m - 1) {
2005 struct sge_eth_rxq *rxq;
2006 unsigned int id = __ffs(m) + i * BITS_PER_LONG;
2007 struct sge_fl *fl = s->egr_map[id];
2008
2009 clear_bit(id, s->starving_fl);
2010 smp_mb__after_clear_bit();
2011
2012 if (fl_starving(fl)) {
2013 rxq = container_of(fl, struct sge_eth_rxq, fl);
2014 if (napi_reschedule(&rxq->rspq.napi))
2015 fl->starving++;
2016 else
2017 set_bit(id, s->starving_fl);
2018 }
2019 }
2020
2021 t4_write_reg(adap, SGE_DEBUG_INDEX, 13);
2022 cnt[0] = t4_read_reg(adap, SGE_DEBUG_DATA_HIGH);
2023 cnt[1] = t4_read_reg(adap, SGE_DEBUG_DATA_LOW);
2024
2025 for (i = 0; i < 2; i++)
2026 if (cnt[i] >= s->starve_thres) {
2027 if (s->idma_state[i] || cnt[i] == 0xffffffff)
2028 continue;
2029 s->idma_state[i] = 1;
2030 t4_write_reg(adap, SGE_DEBUG_INDEX, 11);
2031 m = t4_read_reg(adap, SGE_DEBUG_DATA_LOW) >> (i * 16);
2032 dev_warn(adap->pdev_dev,
2033 "SGE idma%u starvation detected for "
2034 "queue %lu\n", i, m & 0xffff);
2035 } else if (s->idma_state[i])
2036 s->idma_state[i] = 0;
2037
2038 mod_timer(&s->rx_timer, jiffies + RX_QCHECK_PERIOD);
2039}
2040
2041static void sge_tx_timer_cb(unsigned long data)
2042{
2043 unsigned long m;
2044 unsigned int i, budget;
2045 struct adapter *adap = (struct adapter *)data;
2046 struct sge *s = &adap->sge;
2047
2048 for (i = 0; i < ARRAY_SIZE(s->txq_maperr); i++)
2049 for (m = s->txq_maperr[i]; m; m &= m - 1) {
2050 unsigned long id = __ffs(m) + i * BITS_PER_LONG;
2051 struct sge_ofld_txq *txq = s->egr_map[id];
2052
2053 clear_bit(id, s->txq_maperr);
2054 tasklet_schedule(&txq->qresume_tsk);
2055 }
2056
2057 budget = MAX_TIMER_TX_RECLAIM;
2058 i = s->ethtxq_rover;
2059 do {
2060 struct sge_eth_txq *q = &s->ethtxq[i];
2061
2062 if (q->q.in_use &&
2063 time_after_eq(jiffies, q->txq->trans_start + HZ / 100) &&
2064 __netif_tx_trylock(q->txq)) {
2065 int avail = reclaimable(&q->q);
2066
2067 if (avail) {
2068 if (avail > budget)
2069 avail = budget;
2070
2071 free_tx_desc(adap, &q->q, avail, true);
2072 q->q.in_use -= avail;
2073 budget -= avail;
2074 }
2075 __netif_tx_unlock(q->txq);
2076 }
2077
2078 if (++i >= s->ethqsets)
2079 i = 0;
2080 } while (budget && i != s->ethtxq_rover);
2081 s->ethtxq_rover = i;
2082 mod_timer(&s->tx_timer, jiffies + (budget ? TX_QCHECK_PERIOD : 2));
2083}
2084
2085int t4_sge_alloc_rxq(struct adapter *adap, struct sge_rspq *iq, bool fwevtq,
2086 struct net_device *dev, int intr_idx,
2087 struct sge_fl *fl, rspq_handler_t hnd)
2088{
2089 int ret, flsz = 0;
2090 struct fw_iq_cmd c;
Vipul Pandya52367a72012-09-26 02:39:38 +00002091 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002092 struct port_info *pi = netdev_priv(dev);
2093
2094 /* Size needs to be multiple of 16, including status entry. */
2095 iq->size = roundup(iq->size, 16);
2096
2097 iq->desc = alloc_ring(adap->pdev_dev, iq->size, iq->iqe_len, 0,
Dimitris Michailidisad6bad32010-12-14 21:36:55 +00002098 &iq->phys_addr, NULL, 0, NUMA_NO_NODE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002099 if (!iq->desc)
2100 return -ENOMEM;
2101
2102 memset(&c, 0, sizeof(c));
2103 c.op_to_vfn = htonl(FW_CMD_OP(FW_IQ_CMD) | FW_CMD_REQUEST |
2104 FW_CMD_WRITE | FW_CMD_EXEC |
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002105 FW_IQ_CMD_PFN(adap->fn) | FW_IQ_CMD_VFN(0));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002106 c.alloc_to_len16 = htonl(FW_IQ_CMD_ALLOC | FW_IQ_CMD_IQSTART(1) |
2107 FW_LEN16(c));
2108 c.type_to_iqandstindex = htonl(FW_IQ_CMD_TYPE(FW_IQ_TYPE_FL_INT_CAP) |
2109 FW_IQ_CMD_IQASYNCH(fwevtq) | FW_IQ_CMD_VIID(pi->viid) |
2110 FW_IQ_CMD_IQANDST(intr_idx < 0) | FW_IQ_CMD_IQANUD(1) |
2111 FW_IQ_CMD_IQANDSTINDEX(intr_idx >= 0 ? intr_idx :
2112 -intr_idx - 1));
2113 c.iqdroprss_to_iqesize = htons(FW_IQ_CMD_IQPCIECH(pi->tx_chan) |
2114 FW_IQ_CMD_IQGTSMODE |
2115 FW_IQ_CMD_IQINTCNTTHRESH(iq->pktcnt_idx) |
2116 FW_IQ_CMD_IQESIZE(ilog2(iq->iqe_len) - 4));
2117 c.iqsize = htons(iq->size);
2118 c.iqaddr = cpu_to_be64(iq->phys_addr);
2119
2120 if (fl) {
2121 fl->size = roundup(fl->size, 8);
2122 fl->desc = alloc_ring(adap->pdev_dev, fl->size, sizeof(__be64),
2123 sizeof(struct rx_sw_desc), &fl->addr,
Vipul Pandya52367a72012-09-26 02:39:38 +00002124 &fl->sdesc, s->stat_len, NUMA_NO_NODE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002125 if (!fl->desc)
2126 goto fl_nomem;
2127
Vipul Pandya52367a72012-09-26 02:39:38 +00002128 flsz = fl->size / 8 + s->stat_len / sizeof(struct tx_desc);
Naresh Kumar Innace91a922012-11-15 22:41:17 +05302129 c.iqns_to_fl0congen = htonl(FW_IQ_CMD_FL0PACKEN(1) |
Dimitris Michailidisef306b52010-12-14 21:36:44 +00002130 FW_IQ_CMD_FL0FETCHRO(1) |
2131 FW_IQ_CMD_FL0DATARO(1) |
Naresh Kumar Innace91a922012-11-15 22:41:17 +05302132 FW_IQ_CMD_FL0PADEN(1));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002133 c.fl0dcaen_to_fl0cidxfthresh = htons(FW_IQ_CMD_FL0FBMIN(2) |
2134 FW_IQ_CMD_FL0FBMAX(3));
2135 c.fl0size = htons(flsz);
2136 c.fl0addr = cpu_to_be64(fl->addr);
2137 }
2138
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002139 ret = t4_wr_mbox(adap, adap->fn, &c, sizeof(c), &c);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002140 if (ret)
2141 goto err;
2142
2143 netif_napi_add(dev, &iq->napi, napi_rx_handler, 64);
2144 iq->cur_desc = iq->desc;
2145 iq->cidx = 0;
2146 iq->gen = 1;
2147 iq->next_intr_params = iq->intr_params;
2148 iq->cntxt_id = ntohs(c.iqid);
2149 iq->abs_id = ntohs(c.physiqid);
2150 iq->size--; /* subtract status entry */
2151 iq->adap = adap;
2152 iq->netdev = dev;
2153 iq->handler = hnd;
2154
2155 /* set offset to -1 to distinguish ingress queues without FL */
2156 iq->offset = fl ? 0 : -1;
2157
Dimitris Michailidise46dab42010-08-23 17:20:58 +00002158 adap->sge.ingr_map[iq->cntxt_id - adap->sge.ingr_start] = iq;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002159
2160 if (fl) {
Roland Dreier62718b32010-04-21 08:09:21 +00002161 fl->cntxt_id = ntohs(c.fl0id);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002162 fl->avail = fl->pend_cred = 0;
2163 fl->pidx = fl->cidx = 0;
2164 fl->alloc_failed = fl->large_alloc_failed = fl->starving = 0;
Dimitris Michailidise46dab42010-08-23 17:20:58 +00002165 adap->sge.egr_map[fl->cntxt_id - adap->sge.egr_start] = fl;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002166 refill_fl(adap, fl, fl_cap(fl), GFP_KERNEL);
2167 }
2168 return 0;
2169
2170fl_nomem:
2171 ret = -ENOMEM;
2172err:
2173 if (iq->desc) {
2174 dma_free_coherent(adap->pdev_dev, iq->size * iq->iqe_len,
2175 iq->desc, iq->phys_addr);
2176 iq->desc = NULL;
2177 }
2178 if (fl && fl->desc) {
2179 kfree(fl->sdesc);
2180 fl->sdesc = NULL;
2181 dma_free_coherent(adap->pdev_dev, flsz * sizeof(struct tx_desc),
2182 fl->desc, fl->addr);
2183 fl->desc = NULL;
2184 }
2185 return ret;
2186}
2187
2188static void init_txq(struct adapter *adap, struct sge_txq *q, unsigned int id)
2189{
Santosh Rastapur22adfe02013-03-14 05:08:51 +00002190 q->cntxt_id = id;
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302191 if (!is_t4(adap->params.chip)) {
Santosh Rastapur22adfe02013-03-14 05:08:51 +00002192 unsigned int s_qpp;
2193 unsigned short udb_density;
2194 unsigned long qpshift;
2195 int page;
2196
2197 s_qpp = QUEUESPERPAGEPF1 * adap->fn;
2198 udb_density = 1 << QUEUESPERPAGEPF0_GET((t4_read_reg(adap,
2199 SGE_EGRESS_QUEUES_PER_PAGE_PF) >> s_qpp));
2200 qpshift = PAGE_SHIFT - ilog2(udb_density);
2201 q->udb = q->cntxt_id << qpshift;
2202 q->udb &= PAGE_MASK;
2203 page = q->udb / PAGE_SIZE;
2204 q->udb += (q->cntxt_id - (page * udb_density)) * 128;
2205 }
2206
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002207 q->in_use = 0;
2208 q->cidx = q->pidx = 0;
2209 q->stops = q->restarts = 0;
2210 q->stat = (void *)&q->desc[q->size];
Vipul Pandya3069ee92012-05-18 15:29:26 +05302211 spin_lock_init(&q->db_lock);
Dimitris Michailidise46dab42010-08-23 17:20:58 +00002212 adap->sge.egr_map[id - adap->sge.egr_start] = q;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002213}
2214
2215int t4_sge_alloc_eth_txq(struct adapter *adap, struct sge_eth_txq *txq,
2216 struct net_device *dev, struct netdev_queue *netdevq,
2217 unsigned int iqid)
2218{
2219 int ret, nentries;
2220 struct fw_eq_eth_cmd c;
Vipul Pandya52367a72012-09-26 02:39:38 +00002221 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002222 struct port_info *pi = netdev_priv(dev);
2223
2224 /* Add status entries */
Vipul Pandya52367a72012-09-26 02:39:38 +00002225 nentries = txq->q.size + s->stat_len / sizeof(struct tx_desc);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002226
2227 txq->q.desc = alloc_ring(adap->pdev_dev, txq->q.size,
2228 sizeof(struct tx_desc), sizeof(struct tx_sw_desc),
Vipul Pandya52367a72012-09-26 02:39:38 +00002229 &txq->q.phys_addr, &txq->q.sdesc, s->stat_len,
Dimitris Michailidisad6bad32010-12-14 21:36:55 +00002230 netdev_queue_numa_node_read(netdevq));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002231 if (!txq->q.desc)
2232 return -ENOMEM;
2233
2234 memset(&c, 0, sizeof(c));
2235 c.op_to_vfn = htonl(FW_CMD_OP(FW_EQ_ETH_CMD) | FW_CMD_REQUEST |
2236 FW_CMD_WRITE | FW_CMD_EXEC |
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002237 FW_EQ_ETH_CMD_PFN(adap->fn) | FW_EQ_ETH_CMD_VFN(0));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002238 c.alloc_to_len16 = htonl(FW_EQ_ETH_CMD_ALLOC |
2239 FW_EQ_ETH_CMD_EQSTART | FW_LEN16(c));
2240 c.viid_pkd = htonl(FW_EQ_ETH_CMD_VIID(pi->viid));
2241 c.fetchszm_to_iqid = htonl(FW_EQ_ETH_CMD_HOSTFCMODE(2) |
2242 FW_EQ_ETH_CMD_PCIECHN(pi->tx_chan) |
Dimitris Michailidisef306b52010-12-14 21:36:44 +00002243 FW_EQ_ETH_CMD_FETCHRO(1) |
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002244 FW_EQ_ETH_CMD_IQID(iqid));
2245 c.dcaen_to_eqsize = htonl(FW_EQ_ETH_CMD_FBMIN(2) |
2246 FW_EQ_ETH_CMD_FBMAX(3) |
2247 FW_EQ_ETH_CMD_CIDXFTHRESH(5) |
2248 FW_EQ_ETH_CMD_EQSIZE(nentries));
2249 c.eqaddr = cpu_to_be64(txq->q.phys_addr);
2250
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002251 ret = t4_wr_mbox(adap, adap->fn, &c, sizeof(c), &c);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002252 if (ret) {
2253 kfree(txq->q.sdesc);
2254 txq->q.sdesc = NULL;
2255 dma_free_coherent(adap->pdev_dev,
2256 nentries * sizeof(struct tx_desc),
2257 txq->q.desc, txq->q.phys_addr);
2258 txq->q.desc = NULL;
2259 return ret;
2260 }
2261
2262 init_txq(adap, &txq->q, FW_EQ_ETH_CMD_EQID_GET(ntohl(c.eqid_pkd)));
2263 txq->txq = netdevq;
2264 txq->tso = txq->tx_cso = txq->vlan_ins = 0;
2265 txq->mapping_err = 0;
2266 return 0;
2267}
2268
2269int t4_sge_alloc_ctrl_txq(struct adapter *adap, struct sge_ctrl_txq *txq,
2270 struct net_device *dev, unsigned int iqid,
2271 unsigned int cmplqid)
2272{
2273 int ret, nentries;
2274 struct fw_eq_ctrl_cmd c;
Vipul Pandya52367a72012-09-26 02:39:38 +00002275 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002276 struct port_info *pi = netdev_priv(dev);
2277
2278 /* Add status entries */
Vipul Pandya52367a72012-09-26 02:39:38 +00002279 nentries = txq->q.size + s->stat_len / sizeof(struct tx_desc);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002280
2281 txq->q.desc = alloc_ring(adap->pdev_dev, nentries,
2282 sizeof(struct tx_desc), 0, &txq->q.phys_addr,
Dimitris Michailidisad6bad32010-12-14 21:36:55 +00002283 NULL, 0, NUMA_NO_NODE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002284 if (!txq->q.desc)
2285 return -ENOMEM;
2286
2287 c.op_to_vfn = htonl(FW_CMD_OP(FW_EQ_CTRL_CMD) | FW_CMD_REQUEST |
2288 FW_CMD_WRITE | FW_CMD_EXEC |
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002289 FW_EQ_CTRL_CMD_PFN(adap->fn) |
2290 FW_EQ_CTRL_CMD_VFN(0));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002291 c.alloc_to_len16 = htonl(FW_EQ_CTRL_CMD_ALLOC |
2292 FW_EQ_CTRL_CMD_EQSTART | FW_LEN16(c));
2293 c.cmpliqid_eqid = htonl(FW_EQ_CTRL_CMD_CMPLIQID(cmplqid));
2294 c.physeqid_pkd = htonl(0);
2295 c.fetchszm_to_iqid = htonl(FW_EQ_CTRL_CMD_HOSTFCMODE(2) |
2296 FW_EQ_CTRL_CMD_PCIECHN(pi->tx_chan) |
Dimitris Michailidisef306b52010-12-14 21:36:44 +00002297 FW_EQ_CTRL_CMD_FETCHRO |
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002298 FW_EQ_CTRL_CMD_IQID(iqid));
2299 c.dcaen_to_eqsize = htonl(FW_EQ_CTRL_CMD_FBMIN(2) |
2300 FW_EQ_CTRL_CMD_FBMAX(3) |
2301 FW_EQ_CTRL_CMD_CIDXFTHRESH(5) |
2302 FW_EQ_CTRL_CMD_EQSIZE(nentries));
2303 c.eqaddr = cpu_to_be64(txq->q.phys_addr);
2304
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002305 ret = t4_wr_mbox(adap, adap->fn, &c, sizeof(c), &c);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002306 if (ret) {
2307 dma_free_coherent(adap->pdev_dev,
2308 nentries * sizeof(struct tx_desc),
2309 txq->q.desc, txq->q.phys_addr);
2310 txq->q.desc = NULL;
2311 return ret;
2312 }
2313
2314 init_txq(adap, &txq->q, FW_EQ_CTRL_CMD_EQID_GET(ntohl(c.cmpliqid_eqid)));
2315 txq->adap = adap;
2316 skb_queue_head_init(&txq->sendq);
2317 tasklet_init(&txq->qresume_tsk, restart_ctrlq, (unsigned long)txq);
2318 txq->full = 0;
2319 return 0;
2320}
2321
2322int t4_sge_alloc_ofld_txq(struct adapter *adap, struct sge_ofld_txq *txq,
2323 struct net_device *dev, unsigned int iqid)
2324{
2325 int ret, nentries;
2326 struct fw_eq_ofld_cmd c;
Vipul Pandya52367a72012-09-26 02:39:38 +00002327 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002328 struct port_info *pi = netdev_priv(dev);
2329
2330 /* Add status entries */
Vipul Pandya52367a72012-09-26 02:39:38 +00002331 nentries = txq->q.size + s->stat_len / sizeof(struct tx_desc);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002332
2333 txq->q.desc = alloc_ring(adap->pdev_dev, txq->q.size,
2334 sizeof(struct tx_desc), sizeof(struct tx_sw_desc),
Vipul Pandya52367a72012-09-26 02:39:38 +00002335 &txq->q.phys_addr, &txq->q.sdesc, s->stat_len,
Dimitris Michailidisad6bad32010-12-14 21:36:55 +00002336 NUMA_NO_NODE);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002337 if (!txq->q.desc)
2338 return -ENOMEM;
2339
2340 memset(&c, 0, sizeof(c));
2341 c.op_to_vfn = htonl(FW_CMD_OP(FW_EQ_OFLD_CMD) | FW_CMD_REQUEST |
2342 FW_CMD_WRITE | FW_CMD_EXEC |
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002343 FW_EQ_OFLD_CMD_PFN(adap->fn) |
2344 FW_EQ_OFLD_CMD_VFN(0));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002345 c.alloc_to_len16 = htonl(FW_EQ_OFLD_CMD_ALLOC |
2346 FW_EQ_OFLD_CMD_EQSTART | FW_LEN16(c));
2347 c.fetchszm_to_iqid = htonl(FW_EQ_OFLD_CMD_HOSTFCMODE(2) |
2348 FW_EQ_OFLD_CMD_PCIECHN(pi->tx_chan) |
Dimitris Michailidisef306b52010-12-14 21:36:44 +00002349 FW_EQ_OFLD_CMD_FETCHRO(1) |
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002350 FW_EQ_OFLD_CMD_IQID(iqid));
2351 c.dcaen_to_eqsize = htonl(FW_EQ_OFLD_CMD_FBMIN(2) |
2352 FW_EQ_OFLD_CMD_FBMAX(3) |
2353 FW_EQ_OFLD_CMD_CIDXFTHRESH(5) |
2354 FW_EQ_OFLD_CMD_EQSIZE(nentries));
2355 c.eqaddr = cpu_to_be64(txq->q.phys_addr);
2356
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002357 ret = t4_wr_mbox(adap, adap->fn, &c, sizeof(c), &c);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002358 if (ret) {
2359 kfree(txq->q.sdesc);
2360 txq->q.sdesc = NULL;
2361 dma_free_coherent(adap->pdev_dev,
2362 nentries * sizeof(struct tx_desc),
2363 txq->q.desc, txq->q.phys_addr);
2364 txq->q.desc = NULL;
2365 return ret;
2366 }
2367
2368 init_txq(adap, &txq->q, FW_EQ_OFLD_CMD_EQID_GET(ntohl(c.eqid_pkd)));
2369 txq->adap = adap;
2370 skb_queue_head_init(&txq->sendq);
2371 tasklet_init(&txq->qresume_tsk, restart_ofldq, (unsigned long)txq);
2372 txq->full = 0;
2373 txq->mapping_err = 0;
2374 return 0;
2375}
2376
2377static void free_txq(struct adapter *adap, struct sge_txq *q)
2378{
Vipul Pandya52367a72012-09-26 02:39:38 +00002379 struct sge *s = &adap->sge;
2380
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002381 dma_free_coherent(adap->pdev_dev,
Vipul Pandya52367a72012-09-26 02:39:38 +00002382 q->size * sizeof(struct tx_desc) + s->stat_len,
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002383 q->desc, q->phys_addr);
2384 q->cntxt_id = 0;
2385 q->sdesc = NULL;
2386 q->desc = NULL;
2387}
2388
2389static void free_rspq_fl(struct adapter *adap, struct sge_rspq *rq,
2390 struct sge_fl *fl)
2391{
Vipul Pandya52367a72012-09-26 02:39:38 +00002392 struct sge *s = &adap->sge;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002393 unsigned int fl_id = fl ? fl->cntxt_id : 0xffff;
2394
Dimitris Michailidise46dab42010-08-23 17:20:58 +00002395 adap->sge.ingr_map[rq->cntxt_id - adap->sge.ingr_start] = NULL;
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002396 t4_iq_free(adap, adap->fn, adap->fn, 0, FW_IQ_TYPE_FL_INT_CAP,
2397 rq->cntxt_id, fl_id, 0xffff);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002398 dma_free_coherent(adap->pdev_dev, (rq->size + 1) * rq->iqe_len,
2399 rq->desc, rq->phys_addr);
2400 netif_napi_del(&rq->napi);
2401 rq->netdev = NULL;
2402 rq->cntxt_id = rq->abs_id = 0;
2403 rq->desc = NULL;
2404
2405 if (fl) {
2406 free_rx_bufs(adap, fl, fl->avail);
Vipul Pandya52367a72012-09-26 02:39:38 +00002407 dma_free_coherent(adap->pdev_dev, fl->size * 8 + s->stat_len,
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002408 fl->desc, fl->addr);
2409 kfree(fl->sdesc);
2410 fl->sdesc = NULL;
2411 fl->cntxt_id = 0;
2412 fl->desc = NULL;
2413 }
2414}
2415
2416/**
2417 * t4_free_sge_resources - free SGE resources
2418 * @adap: the adapter
2419 *
2420 * Frees resources used by the SGE queue sets.
2421 */
2422void t4_free_sge_resources(struct adapter *adap)
2423{
2424 int i;
2425 struct sge_eth_rxq *eq = adap->sge.ethrxq;
2426 struct sge_eth_txq *etq = adap->sge.ethtxq;
2427 struct sge_ofld_rxq *oq = adap->sge.ofldrxq;
2428
2429 /* clean up Ethernet Tx/Rx queues */
2430 for (i = 0; i < adap->sge.ethqsets; i++, eq++, etq++) {
2431 if (eq->rspq.desc)
2432 free_rspq_fl(adap, &eq->rspq, &eq->fl);
2433 if (etq->q.desc) {
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002434 t4_eth_eq_free(adap, adap->fn, adap->fn, 0,
2435 etq->q.cntxt_id);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002436 free_tx_desc(adap, &etq->q, etq->q.in_use, true);
2437 kfree(etq->q.sdesc);
2438 free_txq(adap, &etq->q);
2439 }
2440 }
2441
2442 /* clean up RDMA and iSCSI Rx queues */
2443 for (i = 0; i < adap->sge.ofldqsets; i++, oq++) {
2444 if (oq->rspq.desc)
2445 free_rspq_fl(adap, &oq->rspq, &oq->fl);
2446 }
2447 for (i = 0, oq = adap->sge.rdmarxq; i < adap->sge.rdmaqs; i++, oq++) {
2448 if (oq->rspq.desc)
2449 free_rspq_fl(adap, &oq->rspq, &oq->fl);
2450 }
2451
2452 /* clean up offload Tx queues */
2453 for (i = 0; i < ARRAY_SIZE(adap->sge.ofldtxq); i++) {
2454 struct sge_ofld_txq *q = &adap->sge.ofldtxq[i];
2455
2456 if (q->q.desc) {
2457 tasklet_kill(&q->qresume_tsk);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002458 t4_ofld_eq_free(adap, adap->fn, adap->fn, 0,
2459 q->q.cntxt_id);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002460 free_tx_desc(adap, &q->q, q->q.in_use, false);
2461 kfree(q->q.sdesc);
2462 __skb_queue_purge(&q->sendq);
2463 free_txq(adap, &q->q);
2464 }
2465 }
2466
2467 /* clean up control Tx queues */
2468 for (i = 0; i < ARRAY_SIZE(adap->sge.ctrlq); i++) {
2469 struct sge_ctrl_txq *cq = &adap->sge.ctrlq[i];
2470
2471 if (cq->q.desc) {
2472 tasklet_kill(&cq->qresume_tsk);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002473 t4_ctrl_eq_free(adap, adap->fn, adap->fn, 0,
2474 cq->q.cntxt_id);
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002475 __skb_queue_purge(&cq->sendq);
2476 free_txq(adap, &cq->q);
2477 }
2478 }
2479
2480 if (adap->sge.fw_evtq.desc)
2481 free_rspq_fl(adap, &adap->sge.fw_evtq, NULL);
2482
2483 if (adap->sge.intrq.desc)
2484 free_rspq_fl(adap, &adap->sge.intrq, NULL);
2485
2486 /* clear the reverse egress queue map */
2487 memset(adap->sge.egr_map, 0, sizeof(adap->sge.egr_map));
2488}
2489
2490void t4_sge_start(struct adapter *adap)
2491{
2492 adap->sge.ethtxq_rover = 0;
2493 mod_timer(&adap->sge.rx_timer, jiffies + RX_QCHECK_PERIOD);
2494 mod_timer(&adap->sge.tx_timer, jiffies + TX_QCHECK_PERIOD);
2495}
2496
2497/**
2498 * t4_sge_stop - disable SGE operation
2499 * @adap: the adapter
2500 *
2501 * Stop tasklets and timers associated with the DMA engine. Note that
2502 * this is effective only if measures have been taken to disable any HW
2503 * events that may restart them.
2504 */
2505void t4_sge_stop(struct adapter *adap)
2506{
2507 int i;
2508 struct sge *s = &adap->sge;
2509
2510 if (in_interrupt()) /* actions below require waiting */
2511 return;
2512
2513 if (s->rx_timer.function)
2514 del_timer_sync(&s->rx_timer);
2515 if (s->tx_timer.function)
2516 del_timer_sync(&s->tx_timer);
2517
2518 for (i = 0; i < ARRAY_SIZE(s->ofldtxq); i++) {
2519 struct sge_ofld_txq *q = &s->ofldtxq[i];
2520
2521 if (q->q.desc)
2522 tasklet_kill(&q->qresume_tsk);
2523 }
2524 for (i = 0; i < ARRAY_SIZE(s->ctrlq); i++) {
2525 struct sge_ctrl_txq *cq = &s->ctrlq[i];
2526
2527 if (cq->q.desc)
2528 tasklet_kill(&cq->qresume_tsk);
2529 }
2530}
2531
2532/**
2533 * t4_sge_init - initialize SGE
2534 * @adap: the adapter
2535 *
2536 * Performs SGE initialization needed every time after a chip reset.
2537 * We do not initialize any of the queues here, instead the driver
2538 * top-level must request them individually.
Vipul Pandya52367a72012-09-26 02:39:38 +00002539 *
2540 * Called in two different modes:
2541 *
2542 * 1. Perform actual hardware initialization and record hard-coded
2543 * parameters which were used. This gets used when we're the
2544 * Master PF and the Firmware Configuration File support didn't
2545 * work for some reason.
2546 *
2547 * 2. We're not the Master PF or initialization was performed with
2548 * a Firmware Configuration File. In this case we need to grab
2549 * any of the SGE operating parameters that we need to have in
2550 * order to do our job and make sure we can live with them ...
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002551 */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002552
Vipul Pandya52367a72012-09-26 02:39:38 +00002553static int t4_sge_init_soft(struct adapter *adap)
2554{
2555 struct sge *s = &adap->sge;
2556 u32 fl_small_pg, fl_large_pg, fl_small_mtu, fl_large_mtu;
2557 u32 timer_value_0_and_1, timer_value_2_and_3, timer_value_4_and_5;
2558 u32 ingress_rx_threshold;
2559
2560 /*
2561 * Verify that CPL messages are going to the Ingress Queue for
2562 * process_responses() and that only packet data is going to the
2563 * Free Lists.
2564 */
2565 if ((t4_read_reg(adap, SGE_CONTROL) & RXPKTCPLMODE_MASK) !=
2566 RXPKTCPLMODE(X_RXPKTCPLMODE_SPLIT)) {
2567 dev_err(adap->pdev_dev, "bad SGE CPL MODE\n");
2568 return -EINVAL;
2569 }
2570
2571 /*
2572 * Validate the Host Buffer Register Array indices that we want to
2573 * use ...
2574 *
2575 * XXX Note that we should really read through the Host Buffer Size
2576 * XXX register array and find the indices of the Buffer Sizes which
2577 * XXX meet our needs!
2578 */
2579 #define READ_FL_BUF(x) \
2580 t4_read_reg(adap, SGE_FL_BUFFER_SIZE0+(x)*sizeof(u32))
2581
2582 fl_small_pg = READ_FL_BUF(RX_SMALL_PG_BUF);
2583 fl_large_pg = READ_FL_BUF(RX_LARGE_PG_BUF);
2584 fl_small_mtu = READ_FL_BUF(RX_SMALL_MTU_BUF);
2585 fl_large_mtu = READ_FL_BUF(RX_LARGE_MTU_BUF);
2586
2587 #undef READ_FL_BUF
2588
2589 if (fl_small_pg != PAGE_SIZE ||
Thadeu Lima de Souza Cascardo940d9d32013-12-23 15:34:29 -02002590 (fl_large_pg != 0 && (fl_large_pg < fl_small_pg ||
Vipul Pandya52367a72012-09-26 02:39:38 +00002591 (fl_large_pg & (fl_large_pg-1)) != 0))) {
2592 dev_err(adap->pdev_dev, "bad SGE FL page buffer sizes [%d, %d]\n",
2593 fl_small_pg, fl_large_pg);
2594 return -EINVAL;
2595 }
2596 if (fl_large_pg)
2597 s->fl_pg_order = ilog2(fl_large_pg) - PAGE_SHIFT;
2598
2599 if (fl_small_mtu < FL_MTU_SMALL_BUFSIZE(adap) ||
2600 fl_large_mtu < FL_MTU_LARGE_BUFSIZE(adap)) {
2601 dev_err(adap->pdev_dev, "bad SGE FL MTU sizes [%d, %d]\n",
2602 fl_small_mtu, fl_large_mtu);
2603 return -EINVAL;
2604 }
2605
2606 /*
2607 * Retrieve our RX interrupt holdoff timer values and counter
2608 * threshold values from the SGE parameters.
2609 */
2610 timer_value_0_and_1 = t4_read_reg(adap, SGE_TIMER_VALUE_0_AND_1);
2611 timer_value_2_and_3 = t4_read_reg(adap, SGE_TIMER_VALUE_2_AND_3);
2612 timer_value_4_and_5 = t4_read_reg(adap, SGE_TIMER_VALUE_4_AND_5);
2613 s->timer_val[0] = core_ticks_to_us(adap,
2614 TIMERVALUE0_GET(timer_value_0_and_1));
2615 s->timer_val[1] = core_ticks_to_us(adap,
2616 TIMERVALUE1_GET(timer_value_0_and_1));
2617 s->timer_val[2] = core_ticks_to_us(adap,
2618 TIMERVALUE2_GET(timer_value_2_and_3));
2619 s->timer_val[3] = core_ticks_to_us(adap,
2620 TIMERVALUE3_GET(timer_value_2_and_3));
2621 s->timer_val[4] = core_ticks_to_us(adap,
2622 TIMERVALUE4_GET(timer_value_4_and_5));
2623 s->timer_val[5] = core_ticks_to_us(adap,
2624 TIMERVALUE5_GET(timer_value_4_and_5));
2625
2626 ingress_rx_threshold = t4_read_reg(adap, SGE_INGRESS_RX_THRESHOLD);
2627 s->counter_val[0] = THRESHOLD_0_GET(ingress_rx_threshold);
2628 s->counter_val[1] = THRESHOLD_1_GET(ingress_rx_threshold);
2629 s->counter_val[2] = THRESHOLD_2_GET(ingress_rx_threshold);
2630 s->counter_val[3] = THRESHOLD_3_GET(ingress_rx_threshold);
2631
2632 return 0;
2633}
2634
2635static int t4_sge_init_hard(struct adapter *adap)
2636{
2637 struct sge *s = &adap->sge;
2638
2639 /*
2640 * Set up our basic SGE mode to deliver CPL messages to our Ingress
2641 * Queue and Packet Date to the Free List.
2642 */
2643 t4_set_reg_field(adap, SGE_CONTROL, RXPKTCPLMODE_MASK,
2644 RXPKTCPLMODE_MASK);
Dimitris Michailidis060e0c72010-08-02 13:19:21 +00002645
Vipul Pandya3069ee92012-05-18 15:29:26 +05302646 /*
2647 * Set up to drop DOORBELL writes when the DOORBELL FIFO overflows
2648 * and generate an interrupt when this occurs so we can recover.
2649 */
Hariprasad Shenaid14807d2013-12-03 17:05:56 +05302650 if (is_t4(adap->params.chip)) {
Santosh Rastapur0a57a532013-03-14 05:08:49 +00002651 t4_set_reg_field(adap, A_SGE_DBFIFO_STATUS,
2652 V_HP_INT_THRESH(M_HP_INT_THRESH) |
2653 V_LP_INT_THRESH(M_LP_INT_THRESH),
2654 V_HP_INT_THRESH(dbfifo_int_thresh) |
2655 V_LP_INT_THRESH(dbfifo_int_thresh));
2656 } else {
2657 t4_set_reg_field(adap, A_SGE_DBFIFO_STATUS,
2658 V_LP_INT_THRESH_T5(M_LP_INT_THRESH_T5),
2659 V_LP_INT_THRESH_T5(dbfifo_int_thresh));
2660 t4_set_reg_field(adap, SGE_DBFIFO_STATUS2,
2661 V_HP_INT_THRESH_T5(M_HP_INT_THRESH_T5),
2662 V_HP_INT_THRESH_T5(dbfifo_int_thresh));
2663 }
Vipul Pandya881806b2012-05-18 15:29:24 +05302664 t4_set_reg_field(adap, A_SGE_DOORBELL_CONTROL, F_ENABLE_DROP,
2665 F_ENABLE_DROP);
2666
Vipul Pandya52367a72012-09-26 02:39:38 +00002667 /*
2668 * SGE_FL_BUFFER_SIZE0 (RX_SMALL_PG_BUF) is set up by
2669 * t4_fixup_host_params().
2670 */
2671 s->fl_pg_order = FL_PG_ORDER;
2672 if (s->fl_pg_order)
2673 t4_write_reg(adap,
2674 SGE_FL_BUFFER_SIZE0+RX_LARGE_PG_BUF*sizeof(u32),
2675 PAGE_SIZE << FL_PG_ORDER);
2676 t4_write_reg(adap, SGE_FL_BUFFER_SIZE0+RX_SMALL_MTU_BUF*sizeof(u32),
2677 FL_MTU_SMALL_BUFSIZE(adap));
2678 t4_write_reg(adap, SGE_FL_BUFFER_SIZE0+RX_LARGE_MTU_BUF*sizeof(u32),
2679 FL_MTU_LARGE_BUFSIZE(adap));
2680
2681 /*
2682 * Note that the SGE Ingress Packet Count Interrupt Threshold and
2683 * Timer Holdoff values must be supplied by our caller.
2684 */
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002685 t4_write_reg(adap, SGE_INGRESS_RX_THRESHOLD,
2686 THRESHOLD_0(s->counter_val[0]) |
2687 THRESHOLD_1(s->counter_val[1]) |
2688 THRESHOLD_2(s->counter_val[2]) |
2689 THRESHOLD_3(s->counter_val[3]));
2690 t4_write_reg(adap, SGE_TIMER_VALUE_0_AND_1,
2691 TIMERVALUE0(us_to_core_ticks(adap, s->timer_val[0])) |
2692 TIMERVALUE1(us_to_core_ticks(adap, s->timer_val[1])));
2693 t4_write_reg(adap, SGE_TIMER_VALUE_2_AND_3,
Vipul Pandya52367a72012-09-26 02:39:38 +00002694 TIMERVALUE2(us_to_core_ticks(adap, s->timer_val[2])) |
2695 TIMERVALUE3(us_to_core_ticks(adap, s->timer_val[3])));
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002696 t4_write_reg(adap, SGE_TIMER_VALUE_4_AND_5,
Vipul Pandya52367a72012-09-26 02:39:38 +00002697 TIMERVALUE4(us_to_core_ticks(adap, s->timer_val[4])) |
2698 TIMERVALUE5(us_to_core_ticks(adap, s->timer_val[5])));
2699
2700 return 0;
2701}
2702
2703int t4_sge_init(struct adapter *adap)
2704{
2705 struct sge *s = &adap->sge;
2706 u32 sge_control;
2707 int ret;
2708
2709 /*
2710 * Ingress Padding Boundary and Egress Status Page Size are set up by
2711 * t4_fixup_host_params().
2712 */
2713 sge_control = t4_read_reg(adap, SGE_CONTROL);
2714 s->pktshift = PKTSHIFT_GET(sge_control);
2715 s->stat_len = (sge_control & EGRSTATUSPAGESIZE_MASK) ? 128 : 64;
2716 s->fl_align = 1 << (INGPADBOUNDARY_GET(sge_control) +
2717 X_INGPADBOUNDARY_SHIFT);
2718
2719 if (adap->flags & USING_SOFT_PARAMS)
2720 ret = t4_sge_init_soft(adap);
2721 else
2722 ret = t4_sge_init_hard(adap);
2723 if (ret < 0)
2724 return ret;
2725
2726 /*
2727 * A FL with <= fl_starve_thres buffers is starving and a periodic
2728 * timer will attempt to refill it. This needs to be larger than the
2729 * SGE's Egress Congestion Threshold. If it isn't, then we can get
2730 * stuck waiting for new packets while the SGE is waiting for us to
2731 * give it more Free List entries. (Note that the SGE's Egress
2732 * Congestion Threshold is in units of 2 Free List pointers.)
2733 */
2734 s->fl_starve_thres
2735 = EGRTHRESHOLD_GET(t4_read_reg(adap, SGE_CONM_CTRL))*2 + 1;
2736
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002737 setup_timer(&s->rx_timer, sge_rx_timer_cb, (unsigned long)adap);
2738 setup_timer(&s->tx_timer, sge_tx_timer_cb, (unsigned long)adap);
2739 s->starve_thres = core_ticks_per_usec(adap) * 1000000; /* 1 s */
2740 s->idma_state[0] = s->idma_state[1] = 0;
2741 spin_lock_init(&s->intrq_lock);
Vipul Pandya52367a72012-09-26 02:39:38 +00002742
2743 return 0;
Dimitris Michailidisfd3a4792010-04-01 15:28:24 +00002744}