percpu: add __percpu sparse annotations to net drivers
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / net / chelsio / sge.c
CommitLineData
8199d3a7
CL
1/*****************************************************************************
2 * *
3 * File: sge.c *
559fb51b
SB
4 * $Revision: 1.26 $ *
5 * $Date: 2005/06/21 18:29:48 $ *
8199d3a7
CL
6 * Description: *
7 * DMA engine. *
8 * part of the Chelsio 10Gb Ethernet Driver. *
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License, version 2, as *
12 * published by the Free Software Foundation. *
13 * *
14 * You should have received a copy of the GNU General Public License along *
15 * with this program; if not, write to the Free Software Foundation, Inc., *
16 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
17 * *
18 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED *
19 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF *
20 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. *
21 * *
22 * http://www.chelsio.com *
23 * *
24 * Copyright (c) 2003 - 2005 Chelsio Communications, Inc. *
25 * All rights reserved. *
26 * *
27 * Maintainers: maintainers@chelsio.com *
28 * *
29 * Authors: Dimitrios Michailidis <dm@chelsio.com> *
30 * Tina Yang <tainay@chelsio.com> *
31 * Felix Marti <felix@chelsio.com> *
32 * Scott Bardone <sbardone@chelsio.com> *
33 * Kurt Ottaway <kottaway@chelsio.com> *
34 * Frank DiMambro <frank@chelsio.com> *
35 * *
36 * History: *
37 * *
38 ****************************************************************************/
39
40#include "common.h"
41
8199d3a7
CL
42#include <linux/types.h>
43#include <linux/errno.h>
44#include <linux/pci.h>
f1d3d38a 45#include <linux/ktime.h>
8199d3a7
CL
46#include <linux/netdevice.h>
47#include <linux/etherdevice.h>
48#include <linux/if_vlan.h>
49#include <linux/skbuff.h>
50#include <linux/init.h>
51#include <linux/mm.h>
f1d3d38a 52#include <linux/tcp.h>
8199d3a7
CL
53#include <linux/ip.h>
54#include <linux/in.h>
55#include <linux/if_arp.h>
56
57#include "cpl5_cmd.h"
58#include "sge.h"
59#include "regs.h"
60#include "espi.h"
61
f1d3d38a
SH
62/* This belongs in if_ether.h */
63#define ETH_P_CPL5 0xf
8199d3a7
CL
64
65#define SGE_CMDQ_N 2
66#define SGE_FREELQ_N 2
559fb51b 67#define SGE_CMDQ0_E_N 1024
8199d3a7
CL
68#define SGE_CMDQ1_E_N 128
69#define SGE_FREEL_SIZE 4096
70#define SGE_JUMBO_FREEL_SIZE 512
71#define SGE_FREEL_REFILL_THRESH 16
72#define SGE_RESPQ_E_N 1024
559fb51b 73#define SGE_INTRTIMER_NRES 1000
8199d3a7 74#define SGE_RX_SM_BUF_SIZE 1536
f1d3d38a 75#define SGE_TX_DESC_MAX_PLEN 16384
8199d3a7 76
559fb51b
SB
77#define SGE_RESPQ_REPLENISH_THRES (SGE_RESPQ_E_N / 4)
78
79/*
80 * Period of the TX buffer reclaim timer. This timer does not need to run
81 * frequently as TX buffers are usually reclaimed by new TX packets.
82 */
83#define TX_RECLAIM_PERIOD (HZ / 4)
8199d3a7 84
559fb51b
SB
85#define M_CMD_LEN 0x7fffffff
86#define V_CMD_LEN(v) (v)
87#define G_CMD_LEN(v) ((v) & M_CMD_LEN)
88#define V_CMD_GEN1(v) ((v) << 31)
89#define V_CMD_GEN2(v) (v)
90#define F_CMD_DATAVALID (1 << 1)
91#define F_CMD_SOP (1 << 2)
92#define V_CMD_EOP(v) ((v) << 3)
93
8199d3a7 94/*
559fb51b 95 * Command queue, receive buffer list, and response queue descriptors.
8199d3a7
CL
96 */
97#if defined(__BIG_ENDIAN_BITFIELD)
98struct cmdQ_e {
559fb51b
SB
99 u32 addr_lo;
100 u32 len_gen;
101 u32 flags;
102 u32 addr_hi;
8199d3a7
CL
103};
104
105struct freelQ_e {
559fb51b
SB
106 u32 addr_lo;
107 u32 len_gen;
108 u32 gen2;
109 u32 addr_hi;
8199d3a7
CL
110};
111
112struct respQ_e {
113 u32 Qsleeping : 4;
114 u32 Cmdq1CreditReturn : 5;
115 u32 Cmdq1DmaComplete : 5;
116 u32 Cmdq0CreditReturn : 5;
117 u32 Cmdq0DmaComplete : 5;
118 u32 FreelistQid : 2;
119 u32 CreditValid : 1;
120 u32 DataValid : 1;
121 u32 Offload : 1;
122 u32 Eop : 1;
123 u32 Sop : 1;
124 u32 GenerationBit : 1;
125 u32 BufferLength;
126};
8199d3a7
CL
127#elif defined(__LITTLE_ENDIAN_BITFIELD)
128struct cmdQ_e {
559fb51b
SB
129 u32 len_gen;
130 u32 addr_lo;
131 u32 addr_hi;
132 u32 flags;
8199d3a7
CL
133};
134
135struct freelQ_e {
559fb51b
SB
136 u32 len_gen;
137 u32 addr_lo;
138 u32 addr_hi;
139 u32 gen2;
8199d3a7
CL
140};
141
142struct respQ_e {
143 u32 BufferLength;
144 u32 GenerationBit : 1;
145 u32 Sop : 1;
146 u32 Eop : 1;
147 u32 Offload : 1;
148 u32 DataValid : 1;
149 u32 CreditValid : 1;
150 u32 FreelistQid : 2;
151 u32 Cmdq0DmaComplete : 5;
152 u32 Cmdq0CreditReturn : 5;
153 u32 Cmdq1DmaComplete : 5;
154 u32 Cmdq1CreditReturn : 5;
155 u32 Qsleeping : 4;
156} ;
157#endif
158
159/*
160 * SW Context Command and Freelist Queue Descriptors
161 */
162struct cmdQ_ce {
163 struct sk_buff *skb;
164 DECLARE_PCI_UNMAP_ADDR(dma_addr);
165 DECLARE_PCI_UNMAP_LEN(dma_len);
8199d3a7
CL
166};
167
168struct freelQ_ce {
169 struct sk_buff *skb;
170 DECLARE_PCI_UNMAP_ADDR(dma_addr);
171 DECLARE_PCI_UNMAP_LEN(dma_len);
172};
173
174/*
559fb51b 175 * SW command, freelist and response rings
8199d3a7
CL
176 */
177struct cmdQ {
559fb51b
SB
178 unsigned long status; /* HW DMA fetch status */
179 unsigned int in_use; /* # of in-use command descriptors */
180 unsigned int size; /* # of descriptors */
f1d3d38a
SH
181 unsigned int processed; /* total # of descs HW has processed */
182 unsigned int cleaned; /* total # of descs SW has reclaimed */
183 unsigned int stop_thres; /* SW TX queue suspend threshold */
559fb51b
SB
184 u16 pidx; /* producer index (SW) */
185 u16 cidx; /* consumer index (HW) */
186 u8 genbit; /* current generation (=valid) bit */
f1d3d38a 187 u8 sop; /* is next entry start of packet? */
559fb51b
SB
188 struct cmdQ_e *entries; /* HW command descriptor Q */
189 struct cmdQ_ce *centries; /* SW command context descriptor Q */
559fb51b 190 dma_addr_t dma_addr; /* DMA addr HW command descriptor Q */
356bd146 191 spinlock_t lock; /* Lock to protect cmdQ enqueuing */
8199d3a7
CL
192};
193
194struct freelQ {
559fb51b
SB
195 unsigned int credits; /* # of available RX buffers */
196 unsigned int size; /* free list capacity */
197 u16 pidx; /* producer index (SW) */
198 u16 cidx; /* consumer index (HW) */
8199d3a7 199 u16 rx_buffer_size; /* Buffer size on this free list */
f1d3d38a
SH
200 u16 dma_offset; /* DMA offset to align IP headers */
201 u16 recycleq_idx; /* skb recycle q to use */
559fb51b
SB
202 u8 genbit; /* current generation (=valid) bit */
203 struct freelQ_e *entries; /* HW freelist descriptor Q */
204 struct freelQ_ce *centries; /* SW freelist context descriptor Q */
205 dma_addr_t dma_addr; /* DMA addr HW freelist descriptor Q */
8199d3a7
CL
206};
207
208struct respQ {
559fb51b
SB
209 unsigned int credits; /* credits to be returned to SGE */
210 unsigned int size; /* # of response Q descriptors */
211 u16 cidx; /* consumer index (SW) */
212 u8 genbit; /* current generation(=valid) bit */
8199d3a7 213 struct respQ_e *entries; /* HW response descriptor Q */
559fb51b
SB
214 dma_addr_t dma_addr; /* DMA addr HW response descriptor Q */
215};
216
217/* Bit flags for cmdQ.status */
218enum {
219 CMDQ_STAT_RUNNING = 1, /* fetch engine is running */
220 CMDQ_STAT_LAST_PKT_DB = 2 /* last packet rung the doorbell */
8199d3a7
CL
221};
222
f1d3d38a
SH
223/* T204 TX SW scheduler */
224
225/* Per T204 TX port */
226struct sched_port {
227 unsigned int avail; /* available bits - quota */
228 unsigned int drain_bits_per_1024ns; /* drain rate */
229 unsigned int speed; /* drain rate, mbps */
230 unsigned int mtu; /* mtu size */
231 struct sk_buff_head skbq; /* pending skbs */
232};
233
234/* Per T204 device */
235struct sched {
236 ktime_t last_updated; /* last time quotas were computed */
356bd146
FR
237 unsigned int max_avail; /* max bits to be sent to any port */
238 unsigned int port; /* port index (round robin ports) */
239 unsigned int num; /* num skbs in per port queues */
f1d3d38a
SH
240 struct sched_port p[MAX_NPORTS];
241 struct tasklet_struct sched_tsk;/* tasklet used to run scheduler */
242};
243static void restart_sched(unsigned long);
244
245
8199d3a7
CL
246/*
247 * Main SGE data structure
248 *
249 * Interrupts are handled by a single CPU and it is likely that on a MP system
250 * the application is migrated to another CPU. In that scenario, we try to
251 * seperate the RX(in irq context) and TX state in order to decrease memory
252 * contention.
253 */
254struct sge {
356bd146 255 struct adapter *adapter; /* adapter backpointer */
559fb51b 256 struct net_device *netdev; /* netdevice backpointer */
356bd146
FR
257 struct freelQ freelQ[SGE_FREELQ_N]; /* buffer free lists */
258 struct respQ respQ; /* response Q */
559fb51b 259 unsigned long stopped_tx_queues; /* bitmap of suspended Tx queues */
8199d3a7
CL
260 unsigned int rx_pkt_pad; /* RX padding for L2 packets */
261 unsigned int jumbo_fl; /* jumbo freelist Q index */
559fb51b 262 unsigned int intrtimer_nres; /* no-resource interrupt timer */
f1d3d38a 263 unsigned int fixed_intrtimer;/* non-adaptive interrupt timer */
559fb51b
SB
264 struct timer_list tx_reclaim_timer; /* reclaims TX buffers */
265 struct timer_list espibug_timer;
f1d3d38a
SH
266 unsigned long espibug_timeout;
267 struct sk_buff *espibug_skb[MAX_NPORTS];
559fb51b
SB
268 u32 sge_control; /* shadow value of sge control reg */
269 struct sge_intr_counts stats;
47d74275 270 struct sge_port_stats __percpu *port_stats[MAX_NPORTS];
f1d3d38a 271 struct sched *tx_sched;
559fb51b 272 struct cmdQ cmdQ[SGE_CMDQ_N] ____cacheline_aligned_in_smp;
8199d3a7
CL
273};
274
f1d3d38a
SH
275/*
276 * stop tasklet and free all pending skb's
277 */
278static void tx_sched_stop(struct sge *sge)
279{
280 struct sched *s = sge->tx_sched;
281 int i;
282
283 tasklet_kill(&s->sched_tsk);
284
285 for (i = 0; i < MAX_NPORTS; i++)
286 __skb_queue_purge(&s->p[s->port].skbq);
287}
288
289/*
290 * t1_sched_update_parms() is called when the MTU or link speed changes. It
291 * re-computes scheduler parameters to scope with the change.
292 */
293unsigned int t1_sched_update_parms(struct sge *sge, unsigned int port,
294 unsigned int mtu, unsigned int speed)
295{
296 struct sched *s = sge->tx_sched;
297 struct sched_port *p = &s->p[port];
298 unsigned int max_avail_segs;
299
300 pr_debug("t1_sched_update_params mtu=%d speed=%d\n", mtu, speed);
301 if (speed)
302 p->speed = speed;
303 if (mtu)
304 p->mtu = mtu;
305
306 if (speed || mtu) {
307 unsigned long long drain = 1024ULL * p->speed * (p->mtu - 40);
308 do_div(drain, (p->mtu + 50) * 1000);
309 p->drain_bits_per_1024ns = (unsigned int) drain;
310
311 if (p->speed < 1000)
312 p->drain_bits_per_1024ns =
313 90 * p->drain_bits_per_1024ns / 100;
314 }
315
316 if (board_info(sge->adapter)->board == CHBT_BOARD_CHT204) {
317 p->drain_bits_per_1024ns -= 16;
318 s->max_avail = max(4096U, p->mtu + 16 + 14 + 4);
319 max_avail_segs = max(1U, 4096 / (p->mtu - 40));
320 } else {
321 s->max_avail = 16384;
322 max_avail_segs = max(1U, 9000 / (p->mtu - 40));
323 }
324
325 pr_debug("t1_sched_update_parms: mtu %u speed %u max_avail %u "
326 "max_avail_segs %u drain_bits_per_1024ns %u\n", p->mtu,
327 p->speed, s->max_avail, max_avail_segs,
328 p->drain_bits_per_1024ns);
329
330 return max_avail_segs * (p->mtu - 40);
331}
332
68d579fb
AB
333#if 0
334
f1d3d38a
SH
335/*
336 * t1_sched_max_avail_bytes() tells the scheduler the maximum amount of
337 * data that can be pushed per port.
338 */
339void t1_sched_set_max_avail_bytes(struct sge *sge, unsigned int val)
340{
341 struct sched *s = sge->tx_sched;
342 unsigned int i;
343
344 s->max_avail = val;
345 for (i = 0; i < MAX_NPORTS; i++)
346 t1_sched_update_parms(sge, i, 0, 0);
347}
348
349/*
350 * t1_sched_set_drain_bits_per_us() tells the scheduler at which rate a port
351 * is draining.
352 */
353void t1_sched_set_drain_bits_per_us(struct sge *sge, unsigned int port,
354 unsigned int val)
355{
356 struct sched *s = sge->tx_sched;
357 struct sched_port *p = &s->p[port];
358 p->drain_bits_per_1024ns = val * 1024 / 1000;
359 t1_sched_update_parms(sge, port, 0, 0);
360}
361
68d579fb
AB
362#endif /* 0 */
363
f1d3d38a
SH
364
365/*
366 * get_clock() implements a ns clock (see ktime_get)
367 */
368static inline ktime_t get_clock(void)
369{
370 struct timespec ts;
371
372 ktime_get_ts(&ts);
373 return timespec_to_ktime(ts);
374}
375
376/*
377 * tx_sched_init() allocates resources and does basic initialization.
378 */
379static int tx_sched_init(struct sge *sge)
380{
381 struct sched *s;
382 int i;
383
384 s = kzalloc(sizeof (struct sched), GFP_KERNEL);
385 if (!s)
386 return -ENOMEM;
387
388 pr_debug("tx_sched_init\n");
389 tasklet_init(&s->sched_tsk, restart_sched, (unsigned long) sge);
390 sge->tx_sched = s;
391
392 for (i = 0; i < MAX_NPORTS; i++) {
393 skb_queue_head_init(&s->p[i].skbq);
394 t1_sched_update_parms(sge, i, 1500, 1000);
395 }
396
397 return 0;
398}
399
400/*
401 * sched_update_avail() computes the delta since the last time it was called
402 * and updates the per port quota (number of bits that can be sent to the any
403 * port).
404 */
405static inline int sched_update_avail(struct sge *sge)
406{
407 struct sched *s = sge->tx_sched;
408 ktime_t now = get_clock();
409 unsigned int i;
410 long long delta_time_ns;
411
412 delta_time_ns = ktime_to_ns(ktime_sub(now, s->last_updated));
413
414 pr_debug("sched_update_avail delta=%lld\n", delta_time_ns);
415 if (delta_time_ns < 15000)
416 return 0;
417
418 for (i = 0; i < MAX_NPORTS; i++) {
419 struct sched_port *p = &s->p[i];
420 unsigned int delta_avail;
421
422 delta_avail = (p->drain_bits_per_1024ns * delta_time_ns) >> 13;
423 p->avail = min(p->avail + delta_avail, s->max_avail);
424 }
425
426 s->last_updated = now;
427
428 return 1;
429}
430
431/*
432 * sched_skb() is called from two different places. In the tx path, any
433 * packet generating load on an output port will call sched_skb()
434 * (skb != NULL). In addition, sched_skb() is called from the irq/soft irq
435 * context (skb == NULL).
436 * The scheduler only returns a skb (which will then be sent) if the
437 * length of the skb is <= the current quota of the output port.
438 */
439static struct sk_buff *sched_skb(struct sge *sge, struct sk_buff *skb,
440 unsigned int credits)
441{
442 struct sched *s = sge->tx_sched;
443 struct sk_buff_head *skbq;
444 unsigned int i, len, update = 1;
445
446 pr_debug("sched_skb %p\n", skb);
447 if (!skb) {
448 if (!s->num)
449 return NULL;
450 } else {
451 skbq = &s->p[skb->dev->if_port].skbq;
452 __skb_queue_tail(skbq, skb);
453 s->num++;
454 skb = NULL;
455 }
456
457 if (credits < MAX_SKB_FRAGS + 1)
458 goto out;
459
356bd146 460again:
f1d3d38a
SH
461 for (i = 0; i < MAX_NPORTS; i++) {
462 s->port = ++s->port & (MAX_NPORTS - 1);
463 skbq = &s->p[s->port].skbq;
464
465 skb = skb_peek(skbq);
466
467 if (!skb)
468 continue;
469
470 len = skb->len;
471 if (len <= s->p[s->port].avail) {
472 s->p[s->port].avail -= len;
473 s->num--;
474 __skb_unlink(skb, skbq);
475 goto out;
476 }
477 skb = NULL;
478 }
479
480 if (update-- && sched_update_avail(sge))
481 goto again;
482
356bd146
FR
483out:
484 /* If there are more pending skbs, we use the hardware to schedule us
f1d3d38a
SH
485 * again.
486 */
487 if (s->num && !skb) {
488 struct cmdQ *q = &sge->cmdQ[0];
489 clear_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
490 if (test_and_set_bit(CMDQ_STAT_RUNNING, &q->status) == 0) {
491 set_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
492 writel(F_CMDQ0_ENABLE, sge->adapter->regs + A_SG_DOORBELL);
493 }
494 }
495 pr_debug("sched_skb ret %p\n", skb);
496
497 return skb;
498}
499
8199d3a7
CL
500/*
501 * PIO to indicate that memory mapped Q contains valid descriptor(s).
502 */
559fb51b 503static inline void doorbell_pio(struct adapter *adapter, u32 val)
8199d3a7
CL
504{
505 wmb();
559fb51b 506 writel(val, adapter->regs + A_SG_DOORBELL);
8199d3a7
CL
507}
508
509/*
510 * Frees all RX buffers on the freelist Q. The caller must make sure that
511 * the SGE is turned off before calling this function.
512 */
559fb51b 513static void free_freelQ_buffers(struct pci_dev *pdev, struct freelQ *q)
8199d3a7 514{
559fb51b 515 unsigned int cidx = q->cidx;
8199d3a7 516
559fb51b
SB
517 while (q->credits--) {
518 struct freelQ_ce *ce = &q->centries[cidx];
8199d3a7
CL
519
520 pci_unmap_single(pdev, pci_unmap_addr(ce, dma_addr),
521 pci_unmap_len(ce, dma_len),
522 PCI_DMA_FROMDEVICE);
523 dev_kfree_skb(ce->skb);
524 ce->skb = NULL;
559fb51b 525 if (++cidx == q->size)
8199d3a7
CL
526 cidx = 0;
527 }
528}
529
530/*
531 * Free RX free list and response queue resources.
532 */
533static void free_rx_resources(struct sge *sge)
534{
535 struct pci_dev *pdev = sge->adapter->pdev;
536 unsigned int size, i;
537
538 if (sge->respQ.entries) {
559fb51b 539 size = sizeof(struct respQ_e) * sge->respQ.size;
8199d3a7
CL
540 pci_free_consistent(pdev, size, sge->respQ.entries,
541 sge->respQ.dma_addr);
542 }
543
544 for (i = 0; i < SGE_FREELQ_N; i++) {
559fb51b 545 struct freelQ *q = &sge->freelQ[i];
8199d3a7 546
559fb51b
SB
547 if (q->centries) {
548 free_freelQ_buffers(pdev, q);
549 kfree(q->centries);
8199d3a7 550 }
559fb51b
SB
551 if (q->entries) {
552 size = sizeof(struct freelQ_e) * q->size;
553 pci_free_consistent(pdev, size, q->entries,
554 q->dma_addr);
8199d3a7
CL
555 }
556 }
557}
558
559/*
560 * Allocates basic RX resources, consisting of memory mapped freelist Qs and a
559fb51b 561 * response queue.
8199d3a7
CL
562 */
563static int alloc_rx_resources(struct sge *sge, struct sge_params *p)
564{
565 struct pci_dev *pdev = sge->adapter->pdev;
566 unsigned int size, i;
567
568 for (i = 0; i < SGE_FREELQ_N; i++) {
559fb51b
SB
569 struct freelQ *q = &sge->freelQ[i];
570
571 q->genbit = 1;
572 q->size = p->freelQ_size[i];
573 q->dma_offset = sge->rx_pkt_pad ? 0 : NET_IP_ALIGN;
574 size = sizeof(struct freelQ_e) * q->size;
3e0f75be 575 q->entries = pci_alloc_consistent(pdev, size, &q->dma_addr);
559fb51b 576 if (!q->entries)
8199d3a7 577 goto err_no_mem;
3e0f75be 578
559fb51b 579 size = sizeof(struct freelQ_ce) * q->size;
cbee9f91 580 q->centries = kzalloc(size, GFP_KERNEL);
559fb51b 581 if (!q->centries)
8199d3a7
CL
582 goto err_no_mem;
583 }
584
585 /*
586 * Calculate the buffer sizes for the two free lists. FL0 accommodates
587 * regular sized Ethernet frames, FL1 is sized not to exceed 16K,
588 * including all the sk_buff overhead.
589 *
590 * Note: For T2 FL0 and FL1 are reversed.
591 */
592 sge->freelQ[!sge->jumbo_fl].rx_buffer_size = SGE_RX_SM_BUF_SIZE +
593 sizeof(struct cpl_rx_data) +
594 sge->freelQ[!sge->jumbo_fl].dma_offset;
f1d3d38a
SH
595
596 size = (16 * 1024) -
597 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
598
599 sge->freelQ[sge->jumbo_fl].rx_buffer_size = size;
8199d3a7 600
559fb51b
SB
601 /*
602 * Setup which skb recycle Q should be used when recycling buffers from
603 * each free list.
604 */
605 sge->freelQ[!sge->jumbo_fl].recycleq_idx = 0;
606 sge->freelQ[sge->jumbo_fl].recycleq_idx = 1;
607
8199d3a7 608 sge->respQ.genbit = 1;
559fb51b
SB
609 sge->respQ.size = SGE_RESPQ_E_N;
610 sge->respQ.credits = 0;
611 size = sizeof(struct respQ_e) * sge->respQ.size;
3e0f75be 612 sge->respQ.entries =
8199d3a7
CL
613 pci_alloc_consistent(pdev, size, &sge->respQ.dma_addr);
614 if (!sge->respQ.entries)
615 goto err_no_mem;
8199d3a7
CL
616 return 0;
617
618err_no_mem:
619 free_rx_resources(sge);
620 return -ENOMEM;
621}
622
623/*
559fb51b 624 * Reclaims n TX descriptors and frees the buffers associated with them.
8199d3a7 625 */
559fb51b 626static void free_cmdQ_buffers(struct sge *sge, struct cmdQ *q, unsigned int n)
8199d3a7 627{
559fb51b 628 struct cmdQ_ce *ce;
8199d3a7 629 struct pci_dev *pdev = sge->adapter->pdev;
559fb51b 630 unsigned int cidx = q->cidx;
8199d3a7 631
559fb51b
SB
632 q->in_use -= n;
633 ce = &q->centries[cidx];
634 while (n--) {
3e0f75be
FR
635 if (likely(pci_unmap_len(ce, dma_len))) {
636 pci_unmap_single(pdev, pci_unmap_addr(ce, dma_addr),
637 pci_unmap_len(ce, dma_len),
638 PCI_DMA_TODEVICE);
639 if (q->sop)
f1d3d38a 640 q->sop = 0;
f1d3d38a 641 }
559fb51b 642 if (ce->skb) {
f1d3d38a 643 dev_kfree_skb_any(ce->skb);
559fb51b
SB
644 q->sop = 1;
645 }
8199d3a7 646 ce++;
559fb51b 647 if (++cidx == q->size) {
8199d3a7 648 cidx = 0;
559fb51b 649 ce = q->centries;
8199d3a7
CL
650 }
651 }
559fb51b 652 q->cidx = cidx;
8199d3a7
CL
653}
654
655/*
656 * Free TX resources.
657 *
658 * Assumes that SGE is stopped and all interrupts are disabled.
659 */
660static void free_tx_resources(struct sge *sge)
661{
662 struct pci_dev *pdev = sge->adapter->pdev;
663 unsigned int size, i;
664
665 for (i = 0; i < SGE_CMDQ_N; i++) {
559fb51b 666 struct cmdQ *q = &sge->cmdQ[i];
8199d3a7 667
559fb51b
SB
668 if (q->centries) {
669 if (q->in_use)
670 free_cmdQ_buffers(sge, q, q->in_use);
671 kfree(q->centries);
8199d3a7 672 }
559fb51b
SB
673 if (q->entries) {
674 size = sizeof(struct cmdQ_e) * q->size;
675 pci_free_consistent(pdev, size, q->entries,
676 q->dma_addr);
8199d3a7
CL
677 }
678 }
679}
680
681/*
682 * Allocates basic TX resources, consisting of memory mapped command Qs.
683 */
684static int alloc_tx_resources(struct sge *sge, struct sge_params *p)
685{
686 struct pci_dev *pdev = sge->adapter->pdev;
687 unsigned int size, i;
688
689 for (i = 0; i < SGE_CMDQ_N; i++) {
559fb51b
SB
690 struct cmdQ *q = &sge->cmdQ[i];
691
692 q->genbit = 1;
693 q->sop = 1;
694 q->size = p->cmdQ_size[i];
695 q->in_use = 0;
696 q->status = 0;
697 q->processed = q->cleaned = 0;
698 q->stop_thres = 0;
699 spin_lock_init(&q->lock);
700 size = sizeof(struct cmdQ_e) * q->size;
3e0f75be 701 q->entries = pci_alloc_consistent(pdev, size, &q->dma_addr);
559fb51b 702 if (!q->entries)
8199d3a7 703 goto err_no_mem;
3e0f75be 704
559fb51b 705 size = sizeof(struct cmdQ_ce) * q->size;
cbee9f91 706 q->centries = kzalloc(size, GFP_KERNEL);
559fb51b 707 if (!q->centries)
8199d3a7
CL
708 goto err_no_mem;
709 }
710
559fb51b
SB
711 /*
712 * CommandQ 0 handles Ethernet and TOE packets, while queue 1 is TOE
713 * only. For queue 0 set the stop threshold so we can handle one more
714 * packet from each port, plus reserve an additional 24 entries for
715 * Ethernet packets only. Queue 1 never suspends nor do we reserve
716 * space for Ethernet packets.
717 */
718 sge->cmdQ[0].stop_thres = sge->adapter->params.nports *
719 (MAX_SKB_FRAGS + 1);
8199d3a7
CL
720 return 0;
721
722err_no_mem:
723 free_tx_resources(sge);
724 return -ENOMEM;
725}
726
727static inline void setup_ring_params(struct adapter *adapter, u64 addr,
728 u32 size, int base_reg_lo,
729 int base_reg_hi, int size_reg)
730{
559fb51b
SB
731 writel((u32)addr, adapter->regs + base_reg_lo);
732 writel(addr >> 32, adapter->regs + base_reg_hi);
733 writel(size, adapter->regs + size_reg);
8199d3a7
CL
734}
735
736/*
737 * Enable/disable VLAN acceleration.
738 */
739void t1_set_vlan_accel(struct adapter *adapter, int on_off)
740{
741 struct sge *sge = adapter->sge;
742
743 sge->sge_control &= ~F_VLAN_XTRACT;
744 if (on_off)
745 sge->sge_control |= F_VLAN_XTRACT;
746 if (adapter->open_device_map) {
559fb51b 747 writel(sge->sge_control, adapter->regs + A_SG_CONTROL);
f1d3d38a 748 readl(adapter->regs + A_SG_CONTROL); /* flush */
8199d3a7
CL
749 }
750}
751
8199d3a7
CL
752/*
753 * Programs the various SGE registers. However, the engine is not yet enabled,
754 * but sge->sge_control is setup and ready to go.
755 */
756static void configure_sge(struct sge *sge, struct sge_params *p)
757{
758 struct adapter *ap = sge->adapter;
356bd146 759
559fb51b
SB
760 writel(0, ap->regs + A_SG_CONTROL);
761 setup_ring_params(ap, sge->cmdQ[0].dma_addr, sge->cmdQ[0].size,
8199d3a7 762 A_SG_CMD0BASELWR, A_SG_CMD0BASEUPR, A_SG_CMD0SIZE);
559fb51b 763 setup_ring_params(ap, sge->cmdQ[1].dma_addr, sge->cmdQ[1].size,
8199d3a7
CL
764 A_SG_CMD1BASELWR, A_SG_CMD1BASEUPR, A_SG_CMD1SIZE);
765 setup_ring_params(ap, sge->freelQ[0].dma_addr,
559fb51b 766 sge->freelQ[0].size, A_SG_FL0BASELWR,
8199d3a7
CL
767 A_SG_FL0BASEUPR, A_SG_FL0SIZE);
768 setup_ring_params(ap, sge->freelQ[1].dma_addr,
559fb51b 769 sge->freelQ[1].size, A_SG_FL1BASELWR,
8199d3a7
CL
770 A_SG_FL1BASEUPR, A_SG_FL1SIZE);
771
772 /* The threshold comparison uses <. */
559fb51b 773 writel(SGE_RX_SM_BUF_SIZE + 1, ap->regs + A_SG_FLTHRESHOLD);
8199d3a7 774
559fb51b
SB
775 setup_ring_params(ap, sge->respQ.dma_addr, sge->respQ.size,
776 A_SG_RSPBASELWR, A_SG_RSPBASEUPR, A_SG_RSPSIZE);
777 writel((u32)sge->respQ.size - 1, ap->regs + A_SG_RSPQUEUECREDIT);
8199d3a7
CL
778
779 sge->sge_control = F_CMDQ0_ENABLE | F_CMDQ1_ENABLE | F_FL0_ENABLE |
780 F_FL1_ENABLE | F_CPL_ENABLE | F_RESPONSE_QUEUE_ENABLE |
781 V_CMDQ_PRIORITY(2) | F_DISABLE_CMDQ1_GTS | F_ISCSI_COALESCE |
782 V_RX_PKT_OFFSET(sge->rx_pkt_pad);
783
784#if defined(__BIG_ENDIAN_BITFIELD)
785 sge->sge_control |= F_ENABLE_BIG_ENDIAN;
786#endif
787
559fb51b
SB
788 /* Initialize no-resource timer */
789 sge->intrtimer_nres = SGE_INTRTIMER_NRES * core_ticks_per_usec(ap);
790
791 t1_sge_set_coalesce_params(sge, p);
8199d3a7
CL
792}
793
794/*
795 * Return the payload capacity of the jumbo free-list buffers.
796 */
797static inline unsigned int jumbo_payload_capacity(const struct sge *sge)
798{
799 return sge->freelQ[sge->jumbo_fl].rx_buffer_size -
559fb51b
SB
800 sge->freelQ[sge->jumbo_fl].dma_offset -
801 sizeof(struct cpl_rx_data);
8199d3a7
CL
802}
803
804/*
805 * Frees all SGE related resources and the sge structure itself
806 */
807void t1_sge_destroy(struct sge *sge)
808{
56f643c2
SH
809 int i;
810
811 for_each_port(sge->adapter, i)
812 free_percpu(sge->port_stats[i]);
813
f1d3d38a 814 kfree(sge->tx_sched);
8199d3a7
CL
815 free_tx_resources(sge);
816 free_rx_resources(sge);
817 kfree(sge);
818}
819
820/*
821 * Allocates new RX buffers on the freelist Q (and tracks them on the freelist
822 * context Q) until the Q is full or alloc_skb fails.
823 *
824 * It is possible that the generation bits already match, indicating that the
825 * buffer is already valid and nothing needs to be done. This happens when we
826 * copied a received buffer into a new sk_buff during the interrupt processing.
827 *
828 * If the SGE doesn't automatically align packets properly (!sge->rx_pkt_pad),
829 * we specify a RX_OFFSET in order to make sure that the IP header is 4B
830 * aligned.
831 */
559fb51b 832static void refill_free_list(struct sge *sge, struct freelQ *q)
8199d3a7
CL
833{
834 struct pci_dev *pdev = sge->adapter->pdev;
559fb51b
SB
835 struct freelQ_ce *ce = &q->centries[q->pidx];
836 struct freelQ_e *e = &q->entries[q->pidx];
837 unsigned int dma_len = q->rx_buffer_size - q->dma_offset;
8199d3a7 838
559fb51b
SB
839 while (q->credits < q->size) {
840 struct sk_buff *skb;
841 dma_addr_t mapping;
8199d3a7 842
559fb51b
SB
843 skb = alloc_skb(q->rx_buffer_size, GFP_ATOMIC);
844 if (!skb)
845 break;
846
847 skb_reserve(skb, q->dma_offset);
848 mapping = pci_map_single(pdev, skb->data, dma_len,
849 PCI_DMA_FROMDEVICE);
24a427cf
SH
850 skb_reserve(skb, sge->rx_pkt_pad);
851
559fb51b
SB
852 ce->skb = skb;
853 pci_unmap_addr_set(ce, dma_addr, mapping);
854 pci_unmap_len_set(ce, dma_len, dma_len);
855 e->addr_lo = (u32)mapping;
856 e->addr_hi = (u64)mapping >> 32;
857 e->len_gen = V_CMD_LEN(dma_len) | V_CMD_GEN1(q->genbit);
858 wmb();
859 e->gen2 = V_CMD_GEN2(q->genbit);
8199d3a7
CL
860
861 e++;
862 ce++;
559fb51b
SB
863 if (++q->pidx == q->size) {
864 q->pidx = 0;
865 q->genbit ^= 1;
866 ce = q->centries;
867 e = q->entries;
8199d3a7 868 }
559fb51b 869 q->credits++;
8199d3a7 870 }
8199d3a7
CL
871}
872
873/*
559fb51b
SB
874 * Calls refill_free_list for both free lists. If we cannot fill at least 1/4
875 * of both rings, we go into 'few interrupt mode' in order to give the system
876 * time to free up resources.
8199d3a7
CL
877 */
878static void freelQs_empty(struct sge *sge)
879{
559fb51b
SB
880 struct adapter *adapter = sge->adapter;
881 u32 irq_reg = readl(adapter->regs + A_SG_INT_ENABLE);
8199d3a7
CL
882 u32 irqholdoff_reg;
883
884 refill_free_list(sge, &sge->freelQ[0]);
885 refill_free_list(sge, &sge->freelQ[1]);
886
559fb51b
SB
887 if (sge->freelQ[0].credits > (sge->freelQ[0].size >> 2) &&
888 sge->freelQ[1].credits > (sge->freelQ[1].size >> 2)) {
8199d3a7 889 irq_reg |= F_FL_EXHAUSTED;
559fb51b 890 irqholdoff_reg = sge->fixed_intrtimer;
8199d3a7
CL
891 } else {
892 /* Clear the F_FL_EXHAUSTED interrupts for now */
893 irq_reg &= ~F_FL_EXHAUSTED;
894 irqholdoff_reg = sge->intrtimer_nres;
895 }
559fb51b
SB
896 writel(irqholdoff_reg, adapter->regs + A_SG_INTRTIMER);
897 writel(irq_reg, adapter->regs + A_SG_INT_ENABLE);
8199d3a7
CL
898
899 /* We reenable the Qs to force a freelist GTS interrupt later */
559fb51b 900 doorbell_pio(adapter, F_FL0_ENABLE | F_FL1_ENABLE);
8199d3a7
CL
901}
902
903#define SGE_PL_INTR_MASK (F_PL_INTR_SGE_ERR | F_PL_INTR_SGE_DATA)
904#define SGE_INT_FATAL (F_RESPQ_OVERFLOW | F_PACKET_TOO_BIG | F_PACKET_MISMATCH)
905#define SGE_INT_ENABLE (F_RESPQ_EXHAUSTED | F_RESPQ_OVERFLOW | \
906 F_FL_EXHAUSTED | F_PACKET_TOO_BIG | F_PACKET_MISMATCH)
907
908/*
909 * Disable SGE Interrupts
910 */
911void t1_sge_intr_disable(struct sge *sge)
912{
559fb51b 913 u32 val = readl(sge->adapter->regs + A_PL_ENABLE);
8199d3a7 914
559fb51b
SB
915 writel(val & ~SGE_PL_INTR_MASK, sge->adapter->regs + A_PL_ENABLE);
916 writel(0, sge->adapter->regs + A_SG_INT_ENABLE);
8199d3a7
CL
917}
918
919/*
920 * Enable SGE interrupts.
921 */
922void t1_sge_intr_enable(struct sge *sge)
923{
924 u32 en = SGE_INT_ENABLE;
559fb51b 925 u32 val = readl(sge->adapter->regs + A_PL_ENABLE);
8199d3a7
CL
926
927 if (sge->adapter->flags & TSO_CAPABLE)
928 en &= ~F_PACKET_TOO_BIG;
559fb51b
SB
929 writel(en, sge->adapter->regs + A_SG_INT_ENABLE);
930 writel(val | SGE_PL_INTR_MASK, sge->adapter->regs + A_PL_ENABLE);
8199d3a7
CL
931}
932
933/*
934 * Clear SGE interrupts.
935 */
936void t1_sge_intr_clear(struct sge *sge)
937{
559fb51b
SB
938 writel(SGE_PL_INTR_MASK, sge->adapter->regs + A_PL_CAUSE);
939 writel(0xffffffff, sge->adapter->regs + A_SG_INT_CAUSE);
8199d3a7
CL
940}
941
942/*
943 * SGE 'Error' interrupt handler
944 */
945int t1_sge_intr_error_handler(struct sge *sge)
946{
947 struct adapter *adapter = sge->adapter;
559fb51b 948 u32 cause = readl(adapter->regs + A_SG_INT_CAUSE);
8199d3a7
CL
949
950 if (adapter->flags & TSO_CAPABLE)
951 cause &= ~F_PACKET_TOO_BIG;
952 if (cause & F_RESPQ_EXHAUSTED)
559fb51b 953 sge->stats.respQ_empty++;
8199d3a7 954 if (cause & F_RESPQ_OVERFLOW) {
559fb51b 955 sge->stats.respQ_overflow++;
8199d3a7
CL
956 CH_ALERT("%s: SGE response queue overflow\n",
957 adapter->name);
958 }
959 if (cause & F_FL_EXHAUSTED) {
559fb51b 960 sge->stats.freelistQ_empty++;
8199d3a7
CL
961 freelQs_empty(sge);
962 }
963 if (cause & F_PACKET_TOO_BIG) {
559fb51b 964 sge->stats.pkt_too_big++;
8199d3a7
CL
965 CH_ALERT("%s: SGE max packet size exceeded\n",
966 adapter->name);
967 }
968 if (cause & F_PACKET_MISMATCH) {
559fb51b 969 sge->stats.pkt_mismatch++;
8199d3a7
CL
970 CH_ALERT("%s: SGE packet mismatch\n", adapter->name);
971 }
972 if (cause & SGE_INT_FATAL)
973 t1_fatal_err(adapter);
974
559fb51b 975 writel(cause, adapter->regs + A_SG_INT_CAUSE);
8199d3a7
CL
976 return 0;
977}
978
56f643c2 979const struct sge_intr_counts *t1_sge_get_intr_counts(const struct sge *sge)
559fb51b
SB
980{
981 return &sge->stats;
982}
983
56f643c2
SH
984void t1_sge_get_port_stats(const struct sge *sge, int port,
985 struct sge_port_stats *ss)
559fb51b 986{
56f643c2
SH
987 int cpu;
988
989 memset(ss, 0, sizeof(*ss));
990 for_each_possible_cpu(cpu) {
991 struct sge_port_stats *st = per_cpu_ptr(sge->port_stats[port], cpu);
992
56f643c2 993 ss->rx_cso_good += st->rx_cso_good;
56f643c2
SH
994 ss->tx_cso += st->tx_cso;
995 ss->tx_tso += st->tx_tso;
7832ee03 996 ss->tx_need_hdrroom += st->tx_need_hdrroom;
56f643c2
SH
997 ss->vlan_xtract += st->vlan_xtract;
998 ss->vlan_insert += st->vlan_insert;
999 }
559fb51b
SB
1000}
1001
1002/**
1003 * recycle_fl_buf - recycle a free list buffer
1004 * @fl: the free list
1005 * @idx: index of buffer to recycle
8199d3a7 1006 *
559fb51b
SB
1007 * Recycles the specified buffer on the given free list by adding it at
1008 * the next available slot on the list.
8199d3a7 1009 */
559fb51b 1010static void recycle_fl_buf(struct freelQ *fl, int idx)
8199d3a7 1011{
559fb51b
SB
1012 struct freelQ_e *from = &fl->entries[idx];
1013 struct freelQ_e *to = &fl->entries[fl->pidx];
8199d3a7 1014
559fb51b
SB
1015 fl->centries[fl->pidx] = fl->centries[idx];
1016 to->addr_lo = from->addr_lo;
1017 to->addr_hi = from->addr_hi;
1018 to->len_gen = G_CMD_LEN(from->len_gen) | V_CMD_GEN1(fl->genbit);
1019 wmb();
1020 to->gen2 = V_CMD_GEN2(fl->genbit);
1021 fl->credits++;
8199d3a7 1022
559fb51b
SB
1023 if (++fl->pidx == fl->size) {
1024 fl->pidx = 0;
1025 fl->genbit ^= 1;
8199d3a7 1026 }
559fb51b 1027}
8199d3a7 1028
24a427cf
SH
1029static int copybreak __read_mostly = 256;
1030module_param(copybreak, int, 0);
1031MODULE_PARM_DESC(copybreak, "Receive copy threshold");
1032
559fb51b
SB
1033/**
1034 * get_packet - return the next ingress packet buffer
1035 * @pdev: the PCI device that received the packet
1036 * @fl: the SGE free list holding the packet
1037 * @len: the actual packet length, excluding any SGE padding
559fb51b
SB
1038 *
1039 * Get the next packet from a free list and complete setup of the
1040 * sk_buff. If the packet is small we make a copy and recycle the
1041 * original buffer, otherwise we use the original buffer itself. If a
1042 * positive drop threshold is supplied packets are dropped and their
1043 * buffers recycled if (a) the number of remaining buffers is under the
1044 * threshold and the packet is too big to copy, or (b) the packet should
1045 * be copied but there is no memory for the copy.
1046 */
1047static inline struct sk_buff *get_packet(struct pci_dev *pdev,
24a427cf 1048 struct freelQ *fl, unsigned int len)
559fb51b
SB
1049{
1050 struct sk_buff *skb;
24a427cf 1051 const struct freelQ_ce *ce = &fl->centries[fl->cidx];
559fb51b 1052
24a427cf
SH
1053 if (len < copybreak) {
1054 skb = alloc_skb(len + 2, GFP_ATOMIC);
1055 if (!skb)
1056 goto use_orig_buf;
1057
1058 skb_reserve(skb, 2); /* align IP header */
1059 skb_put(skb, len);
1060 pci_dma_sync_single_for_cpu(pdev,
559fb51b 1061 pci_unmap_addr(ce, dma_addr),
356bd146 1062 pci_unmap_len(ce, dma_len),
559fb51b 1063 PCI_DMA_FROMDEVICE);
d626f62b 1064 skb_copy_from_linear_data(ce->skb, skb->data, len);
24a427cf
SH
1065 pci_dma_sync_single_for_device(pdev,
1066 pci_unmap_addr(ce, dma_addr),
1067 pci_unmap_len(ce, dma_len),
1068 PCI_DMA_FROMDEVICE);
559fb51b
SB
1069 recycle_fl_buf(fl, fl->cidx);
1070 return skb;
8199d3a7
CL
1071 }
1072
24a427cf
SH
1073use_orig_buf:
1074 if (fl->credits < 2) {
559fb51b
SB
1075 recycle_fl_buf(fl, fl->cidx);
1076 return NULL;
1077 }
8199d3a7 1078
559fb51b
SB
1079 pci_unmap_single(pdev, pci_unmap_addr(ce, dma_addr),
1080 pci_unmap_len(ce, dma_len), PCI_DMA_FROMDEVICE);
1081 skb = ce->skb;
24a427cf
SH
1082 prefetch(skb->data);
1083
559fb51b
SB
1084 skb_put(skb, len);
1085 return skb;
1086}
8199d3a7 1087
559fb51b
SB
1088/**
1089 * unexpected_offload - handle an unexpected offload packet
1090 * @adapter: the adapter
1091 * @fl: the free list that received the packet
1092 *
1093 * Called when we receive an unexpected offload packet (e.g., the TOE
1094 * function is disabled or the card is a NIC). Prints a message and
1095 * recycles the buffer.
1096 */
1097static void unexpected_offload(struct adapter *adapter, struct freelQ *fl)
1098{
1099 struct freelQ_ce *ce = &fl->centries[fl->cidx];
1100 struct sk_buff *skb = ce->skb;
1101
1102 pci_dma_sync_single_for_cpu(adapter->pdev, pci_unmap_addr(ce, dma_addr),
1103 pci_unmap_len(ce, dma_len), PCI_DMA_FROMDEVICE);
1104 CH_ERR("%s: unexpected offload packet, cmd %u\n",
1105 adapter->name, *skb->data);
1106 recycle_fl_buf(fl, fl->cidx);
8199d3a7
CL
1107}
1108
f1d3d38a
SH
1109/*
1110 * T1/T2 SGE limits the maximum DMA size per TX descriptor to
1111 * SGE_TX_DESC_MAX_PLEN (16KB). If the PAGE_SIZE is larger than 16KB, the
1112 * stack might send more than SGE_TX_DESC_MAX_PLEN in a contiguous manner.
1113 * Note that the *_large_page_tx_descs stuff will be optimized out when
1114 * PAGE_SIZE <= SGE_TX_DESC_MAX_PLEN.
1115 *
1116 * compute_large_page_descs() computes how many additional descriptors are
1117 * required to break down the stack's request.
1118 */
1119static inline unsigned int compute_large_page_tx_descs(struct sk_buff *skb)
1120{
1121 unsigned int count = 0;
356bd146 1122
f1d3d38a
SH
1123 if (PAGE_SIZE > SGE_TX_DESC_MAX_PLEN) {
1124 unsigned int nfrags = skb_shinfo(skb)->nr_frags;
1125 unsigned int i, len = skb->len - skb->data_len;
1126 while (len > SGE_TX_DESC_MAX_PLEN) {
1127 count++;
1128 len -= SGE_TX_DESC_MAX_PLEN;
1129 }
1130 for (i = 0; nfrags--; i++) {
1131 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1132 len = frag->size;
1133 while (len > SGE_TX_DESC_MAX_PLEN) {
1134 count++;
1135 len -= SGE_TX_DESC_MAX_PLEN;
1136 }
1137 }
1138 }
1139 return count;
1140}
1141
1142/*
1143 * Write a cmdQ entry.
1144 *
1145 * Since this function writes the 'flags' field, it must not be used to
1146 * write the first cmdQ entry.
1147 */
1148static inline void write_tx_desc(struct cmdQ_e *e, dma_addr_t mapping,
1149 unsigned int len, unsigned int gen,
1150 unsigned int eop)
1151{
0ee904c3
AB
1152 BUG_ON(len > SGE_TX_DESC_MAX_PLEN);
1153
f1d3d38a
SH
1154 e->addr_lo = (u32)mapping;
1155 e->addr_hi = (u64)mapping >> 32;
1156 e->len_gen = V_CMD_LEN(len) | V_CMD_GEN1(gen);
1157 e->flags = F_CMD_DATAVALID | V_CMD_EOP(eop) | V_CMD_GEN2(gen);
1158}
1159
1160/*
1161 * See comment for previous function.
1162 *
1163 * write_tx_descs_large_page() writes additional SGE tx descriptors if
1164 * *desc_len exceeds HW's capability.
1165 */
1166static inline unsigned int write_large_page_tx_descs(unsigned int pidx,
1167 struct cmdQ_e **e,
1168 struct cmdQ_ce **ce,
1169 unsigned int *gen,
1170 dma_addr_t *desc_mapping,
1171 unsigned int *desc_len,
1172 unsigned int nfrags,
1173 struct cmdQ *q)
1174{
1175 if (PAGE_SIZE > SGE_TX_DESC_MAX_PLEN) {
1176 struct cmdQ_e *e1 = *e;
1177 struct cmdQ_ce *ce1 = *ce;
1178
1179 while (*desc_len > SGE_TX_DESC_MAX_PLEN) {
1180 *desc_len -= SGE_TX_DESC_MAX_PLEN;
1181 write_tx_desc(e1, *desc_mapping, SGE_TX_DESC_MAX_PLEN,
1182 *gen, nfrags == 0 && *desc_len == 0);
1183 ce1->skb = NULL;
1184 pci_unmap_len_set(ce1, dma_len, 0);
1185 *desc_mapping += SGE_TX_DESC_MAX_PLEN;
1186 if (*desc_len) {
1187 ce1++;
1188 e1++;
1189 if (++pidx == q->size) {
1190 pidx = 0;
1191 *gen ^= 1;
1192 ce1 = q->centries;
1193 e1 = q->entries;
1194 }
1195 }
1196 }
1197 *e = e1;
1198 *ce = ce1;
1199 }
1200 return pidx;
1201}
1202
8199d3a7 1203/*
559fb51b
SB
1204 * Write the command descriptors to transmit the given skb starting at
1205 * descriptor pidx with the given generation.
8199d3a7 1206 */
559fb51b
SB
1207static inline void write_tx_descs(struct adapter *adapter, struct sk_buff *skb,
1208 unsigned int pidx, unsigned int gen,
1209 struct cmdQ *q)
8199d3a7 1210{
f1d3d38a 1211 dma_addr_t mapping, desc_mapping;
559fb51b
SB
1212 struct cmdQ_e *e, *e1;
1213 struct cmdQ_ce *ce;
f1d3d38a
SH
1214 unsigned int i, flags, first_desc_len, desc_len,
1215 nfrags = skb_shinfo(skb)->nr_frags;
559fb51b 1216
f1d3d38a 1217 e = e1 = &q->entries[pidx];
559fb51b 1218 ce = &q->centries[pidx];
f1d3d38a
SH
1219
1220 mapping = pci_map_single(adapter->pdev, skb->data,
1221 skb->len - skb->data_len, PCI_DMA_TODEVICE);
1222
1223 desc_mapping = mapping;
1224 desc_len = skb->len - skb->data_len;
1225
1226 flags = F_CMD_DATAVALID | F_CMD_SOP |
1227 V_CMD_EOP(nfrags == 0 && desc_len <= SGE_TX_DESC_MAX_PLEN) |
1228 V_CMD_GEN2(gen);
1229 first_desc_len = (desc_len <= SGE_TX_DESC_MAX_PLEN) ?
1230 desc_len : SGE_TX_DESC_MAX_PLEN;
1231 e->addr_lo = (u32)desc_mapping;
1232 e->addr_hi = (u64)desc_mapping >> 32;
1233 e->len_gen = V_CMD_LEN(first_desc_len) | V_CMD_GEN1(gen);
1234 ce->skb = NULL;
1235 pci_unmap_len_set(ce, dma_len, 0);
1236
1237 if (PAGE_SIZE > SGE_TX_DESC_MAX_PLEN &&
1238 desc_len > SGE_TX_DESC_MAX_PLEN) {
1239 desc_mapping += first_desc_len;
1240 desc_len -= first_desc_len;
1241 e1++;
1242 ce++;
1243 if (++pidx == q->size) {
1244 pidx = 0;
1245 gen ^= 1;
1246 e1 = q->entries;
1247 ce = q->centries;
1248 }
1249 pidx = write_large_page_tx_descs(pidx, &e1, &ce, &gen,
1250 &desc_mapping, &desc_len,
1251 nfrags, q);
1252
1253 if (likely(desc_len))
1254 write_tx_desc(e1, desc_mapping, desc_len, gen,
1255 nfrags == 0);
1256 }
1257
559fb51b
SB
1258 ce->skb = NULL;
1259 pci_unmap_addr_set(ce, dma_addr, mapping);
1260 pci_unmap_len_set(ce, dma_len, skb->len - skb->data_len);
8199d3a7 1261
f1d3d38a 1262 for (i = 0; nfrags--; i++) {
559fb51b 1263 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
559fb51b 1264 e1++;
f1d3d38a 1265 ce++;
559fb51b
SB
1266 if (++pidx == q->size) {
1267 pidx = 0;
1268 gen ^= 1;
559fb51b 1269 e1 = q->entries;
f1d3d38a 1270 ce = q->centries;
8199d3a7 1271 }
8199d3a7 1272
559fb51b
SB
1273 mapping = pci_map_page(adapter->pdev, frag->page,
1274 frag->page_offset, frag->size,
1275 PCI_DMA_TODEVICE);
f1d3d38a
SH
1276 desc_mapping = mapping;
1277 desc_len = frag->size;
1278
1279 pidx = write_large_page_tx_descs(pidx, &e1, &ce, &gen,
1280 &desc_mapping, &desc_len,
1281 nfrags, q);
1282 if (likely(desc_len))
1283 write_tx_desc(e1, desc_mapping, desc_len, gen,
1284 nfrags == 0);
559fb51b
SB
1285 ce->skb = NULL;
1286 pci_unmap_addr_set(ce, dma_addr, mapping);
1287 pci_unmap_len_set(ce, dma_len, frag->size);
8199d3a7 1288 }
559fb51b
SB
1289 ce->skb = skb;
1290 wmb();
1291 e->flags = flags;
1292}
8199d3a7 1293
559fb51b
SB
1294/*
1295 * Clean up completed Tx buffers.
1296 */
1297static inline void reclaim_completed_tx(struct sge *sge, struct cmdQ *q)
1298{
1299 unsigned int reclaim = q->processed - q->cleaned;
8199d3a7 1300
559fb51b 1301 if (reclaim) {
f1d3d38a
SH
1302 pr_debug("reclaim_completed_tx processed:%d cleaned:%d\n",
1303 q->processed, q->cleaned);
559fb51b
SB
1304 free_cmdQ_buffers(sge, q, reclaim);
1305 q->cleaned += reclaim;
8199d3a7 1306 }
559fb51b 1307}
8199d3a7 1308
f1d3d38a
SH
1309/*
1310 * Called from tasklet. Checks the scheduler for any
1311 * pending skbs that can be sent.
1312 */
1313static void restart_sched(unsigned long arg)
1314{
1315 struct sge *sge = (struct sge *) arg;
1316 struct adapter *adapter = sge->adapter;
1317 struct cmdQ *q = &sge->cmdQ[0];
1318 struct sk_buff *skb;
1319 unsigned int credits, queued_skb = 0;
1320
1321 spin_lock(&q->lock);
1322 reclaim_completed_tx(sge, q);
1323
1324 credits = q->size - q->in_use;
1325 pr_debug("restart_sched credits=%d\n", credits);
1326 while ((skb = sched_skb(sge, NULL, credits)) != NULL) {
1327 unsigned int genbit, pidx, count;
1328 count = 1 + skb_shinfo(skb)->nr_frags;
356bd146 1329 count += compute_large_page_tx_descs(skb);
f1d3d38a
SH
1330 q->in_use += count;
1331 genbit = q->genbit;
1332 pidx = q->pidx;
1333 q->pidx += count;
1334 if (q->pidx >= q->size) {
1335 q->pidx -= q->size;
1336 q->genbit ^= 1;
1337 }
1338 write_tx_descs(adapter, skb, pidx, genbit, q);
1339 credits = q->size - q->in_use;
1340 queued_skb = 1;
1341 }
1342
1343 if (queued_skb) {
1344 clear_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
1345 if (test_and_set_bit(CMDQ_STAT_RUNNING, &q->status) == 0) {
1346 set_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
1347 writel(F_CMDQ0_ENABLE, adapter->regs + A_SG_DOORBELL);
1348 }
1349 }
1350 spin_unlock(&q->lock);
1351}
8199d3a7 1352
559fb51b
SB
1353/**
1354 * sge_rx - process an ingress ethernet packet
1355 * @sge: the sge structure
1356 * @fl: the free list that contains the packet buffer
1357 * @len: the packet length
8199d3a7 1358 *
559fb51b 1359 * Process an ingress ethernet pakcet and deliver it to the stack.
8199d3a7 1360 */
24a427cf 1361static void sge_rx(struct sge *sge, struct freelQ *fl, unsigned int len)
8199d3a7 1362{
559fb51b 1363 struct sk_buff *skb;
24a427cf 1364 const struct cpl_rx_pkt *p;
559fb51b 1365 struct adapter *adapter = sge->adapter;
56f643c2 1366 struct sge_port_stats *st;
8199d3a7 1367
24a427cf 1368 skb = get_packet(adapter->pdev, fl, len - sge->rx_pkt_pad);
56f643c2
SH
1369 if (unlikely(!skb)) {
1370 sge->stats.rx_drops++;
24a427cf 1371 return;
8199d3a7 1372 }
559fb51b 1373
24a427cf 1374 p = (const struct cpl_rx_pkt *) skb->data;
f1d3d38a
SH
1375 if (p->iff >= adapter->params.nports) {
1376 kfree_skb(skb);
24a427cf 1377 return;
f1d3d38a 1378 }
24a427cf 1379 __skb_pull(skb, sizeof(*p));
f1d3d38a 1380
ca0c9584 1381 st = this_cpu_ptr(sge->port_stats[p->iff]);
56f643c2 1382
4c13eb66 1383 skb->protocol = eth_type_trans(skb, adapter->port[p->iff].dev);
559fb51b
SB
1384 if ((adapter->flags & RX_CSUM_ENABLED) && p->csum == 0xffff &&
1385 skb->protocol == htons(ETH_P_IP) &&
1386 (skb->data[9] == IPPROTO_TCP || skb->data[9] == IPPROTO_UDP)) {
56f643c2 1387 ++st->rx_cso_good;
559fb51b
SB
1388 skb->ip_summed = CHECKSUM_UNNECESSARY;
1389 } else
1390 skb->ip_summed = CHECKSUM_NONE;
1391
1392 if (unlikely(adapter->vlan_grp && p->vlan_valid)) {
56f643c2 1393 st->vlan_xtract++;
4422b003
FR
1394 vlan_hwaccel_receive_skb(skb, adapter->vlan_grp,
1395 ntohs(p->vlan));
1396 } else
559fb51b 1397 netif_receive_skb(skb);
8199d3a7
CL
1398}
1399
1400/*
559fb51b 1401 * Returns true if a command queue has enough available descriptors that
8199d3a7
CL
1402 * we can resume Tx operation after temporarily disabling its packet queue.
1403 */
559fb51b 1404static inline int enough_free_Tx_descs(const struct cmdQ *q)
8199d3a7 1405{
559fb51b
SB
1406 unsigned int r = q->processed - q->cleaned;
1407
1408 return q->in_use - r < (q->size >> 1);
8199d3a7
CL
1409}
1410
1411/*
559fb51b
SB
1412 * Called when sufficient space has become available in the SGE command queues
1413 * after the Tx packet schedulers have been suspended to restart the Tx path.
8199d3a7 1414 */
559fb51b 1415static void restart_tx_queues(struct sge *sge)
8199d3a7 1416{
559fb51b 1417 struct adapter *adap = sge->adapter;
3e0f75be 1418 int i;
8199d3a7 1419
3e0f75be
FR
1420 if (!enough_free_Tx_descs(&sge->cmdQ[0]))
1421 return;
559fb51b 1422
3e0f75be
FR
1423 for_each_port(adap, i) {
1424 struct net_device *nd = adap->port[i].dev;
559fb51b 1425
3e0f75be
FR
1426 if (test_and_clear_bit(nd->if_port, &sge->stopped_tx_queues) &&
1427 netif_running(nd)) {
1428 sge->stats.cmdQ_restarted[2]++;
1429 netif_wake_queue(nd);
559fb51b
SB
1430 }
1431 }
1432}
1433
1434/*
356bd146 1435 * update_tx_info is called from the interrupt handler/NAPI to return cmdQ0
559fb51b
SB
1436 * information.
1437 */
356bd146
FR
1438static unsigned int update_tx_info(struct adapter *adapter,
1439 unsigned int flags,
559fb51b
SB
1440 unsigned int pr0)
1441{
1442 struct sge *sge = adapter->sge;
1443 struct cmdQ *cmdq = &sge->cmdQ[0];
8199d3a7 1444
559fb51b 1445 cmdq->processed += pr0;
f1d3d38a
SH
1446 if (flags & (F_FL0_ENABLE | F_FL1_ENABLE)) {
1447 freelQs_empty(sge);
1448 flags &= ~(F_FL0_ENABLE | F_FL1_ENABLE);
1449 }
559fb51b
SB
1450 if (flags & F_CMDQ0_ENABLE) {
1451 clear_bit(CMDQ_STAT_RUNNING, &cmdq->status);
f1d3d38a 1452
559fb51b
SB
1453 if (cmdq->cleaned + cmdq->in_use != cmdq->processed &&
1454 !test_and_set_bit(CMDQ_STAT_LAST_PKT_DB, &cmdq->status)) {
1455 set_bit(CMDQ_STAT_RUNNING, &cmdq->status);
1456 writel(F_CMDQ0_ENABLE, adapter->regs + A_SG_DOORBELL);
1457 }
f1d3d38a
SH
1458 if (sge->tx_sched)
1459 tasklet_hi_schedule(&sge->tx_sched->sched_tsk);
1460
1461 flags &= ~F_CMDQ0_ENABLE;
559fb51b 1462 }
f1d3d38a 1463
559fb51b
SB
1464 if (unlikely(sge->stopped_tx_queues != 0))
1465 restart_tx_queues(sge);
8199d3a7 1466
559fb51b
SB
1467 return flags;
1468}
8199d3a7 1469
559fb51b
SB
1470/*
1471 * Process SGE responses, up to the supplied budget. Returns the number of
1472 * responses processed. A negative budget is effectively unlimited.
1473 */
1474static int process_responses(struct adapter *adapter, int budget)
1475{
1476 struct sge *sge = adapter->sge;
1477 struct respQ *q = &sge->respQ;
1478 struct respQ_e *e = &q->entries[q->cidx];
24a427cf 1479 int done = 0;
559fb51b
SB
1480 unsigned int flags = 0;
1481 unsigned int cmdq_processed[SGE_CMDQ_N] = {0, 0};
356bd146 1482
24a427cf 1483 while (done < budget && e->GenerationBit == q->genbit) {
559fb51b 1484 flags |= e->Qsleeping;
356bd146 1485
559fb51b
SB
1486 cmdq_processed[0] += e->Cmdq0CreditReturn;
1487 cmdq_processed[1] += e->Cmdq1CreditReturn;
356bd146 1488
559fb51b
SB
1489 /* We batch updates to the TX side to avoid cacheline
1490 * ping-pong of TX state information on MP where the sender
1491 * might run on a different CPU than this function...
1492 */
24a427cf 1493 if (unlikely((flags & F_CMDQ0_ENABLE) || cmdq_processed[0] > 64)) {
559fb51b
SB
1494 flags = update_tx_info(adapter, flags, cmdq_processed[0]);
1495 cmdq_processed[0] = 0;
1496 }
24a427cf 1497
559fb51b
SB
1498 if (unlikely(cmdq_processed[1] > 16)) {
1499 sge->cmdQ[1].processed += cmdq_processed[1];
1500 cmdq_processed[1] = 0;
8199d3a7 1501 }
24a427cf 1502
8199d3a7 1503 if (likely(e->DataValid)) {
559fb51b
SB
1504 struct freelQ *fl = &sge->freelQ[e->FreelistQid];
1505
5d9428de 1506 BUG_ON(!e->Sop || !e->Eop);
559fb51b
SB
1507 if (unlikely(e->Offload))
1508 unexpected_offload(adapter, fl);
1509 else
1510 sge_rx(sge, fl, e->BufferLength);
1511
24a427cf
SH
1512 ++done;
1513
559fb51b
SB
1514 /*
1515 * Note: this depends on each packet consuming a
1516 * single free-list buffer; cf. the BUG above.
1517 */
1518 if (++fl->cidx == fl->size)
1519 fl->cidx = 0;
24a427cf
SH
1520 prefetch(fl->centries[fl->cidx].skb);
1521
559fb51b
SB
1522 if (unlikely(--fl->credits <
1523 fl->size - SGE_FREEL_REFILL_THRESH))
1524 refill_free_list(sge, fl);
1525 } else
1526 sge->stats.pure_rsps++;
8199d3a7 1527
8199d3a7 1528 e++;
559fb51b
SB
1529 if (unlikely(++q->cidx == q->size)) {
1530 q->cidx = 0;
1531 q->genbit ^= 1;
1532 e = q->entries;
1533 }
1534 prefetch(e);
1535
1536 if (++q->credits > SGE_RESPQ_REPLENISH_THRES) {
1537 writel(q->credits, adapter->regs + A_SG_RSPQUEUECREDIT);
1538 q->credits = 0;
8199d3a7
CL
1539 }
1540 }
1541
356bd146 1542 flags = update_tx_info(adapter, flags, cmdq_processed[0]);
559fb51b 1543 sge->cmdQ[1].processed += cmdq_processed[1];
8199d3a7 1544
24a427cf 1545 return done;
559fb51b 1546}
8199d3a7 1547
3de00b89
SH
1548static inline int responses_pending(const struct adapter *adapter)
1549{
1550 const struct respQ *Q = &adapter->sge->respQ;
1551 const struct respQ_e *e = &Q->entries[Q->cidx];
1552
1553 return (e->GenerationBit == Q->genbit);
1554}
1555
559fb51b
SB
1556/*
1557 * A simpler version of process_responses() that handles only pure (i.e.,
1558 * non data-carrying) responses. Such respones are too light-weight to justify
1559 * calling a softirq when using NAPI, so we handle them specially in hard
1560 * interrupt context. The function is called with a pointer to a response,
1561 * which the caller must ensure is a valid pure response. Returns 1 if it
1562 * encounters a valid data-carrying response, 0 otherwise.
1563 */
3de00b89 1564static int process_pure_responses(struct adapter *adapter)
559fb51b
SB
1565{
1566 struct sge *sge = adapter->sge;
1567 struct respQ *q = &sge->respQ;
3de00b89 1568 struct respQ_e *e = &q->entries[q->cidx];
24a427cf 1569 const struct freelQ *fl = &sge->freelQ[e->FreelistQid];
559fb51b
SB
1570 unsigned int flags = 0;
1571 unsigned int cmdq_processed[SGE_CMDQ_N] = {0, 0};
8199d3a7 1572
24a427cf 1573 prefetch(fl->centries[fl->cidx].skb);
3de00b89
SH
1574 if (e->DataValid)
1575 return 1;
24a427cf 1576
559fb51b
SB
1577 do {
1578 flags |= e->Qsleeping;
8199d3a7 1579
559fb51b
SB
1580 cmdq_processed[0] += e->Cmdq0CreditReturn;
1581 cmdq_processed[1] += e->Cmdq1CreditReturn;
356bd146 1582
559fb51b
SB
1583 e++;
1584 if (unlikely(++q->cidx == q->size)) {
1585 q->cidx = 0;
1586 q->genbit ^= 1;
1587 e = q->entries;
8199d3a7 1588 }
559fb51b 1589 prefetch(e);
8199d3a7 1590
559fb51b
SB
1591 if (++q->credits > SGE_RESPQ_REPLENISH_THRES) {
1592 writel(q->credits, adapter->regs + A_SG_RSPQUEUECREDIT);
1593 q->credits = 0;
8199d3a7 1594 }
559fb51b
SB
1595 sge->stats.pure_rsps++;
1596 } while (e->GenerationBit == q->genbit && !e->DataValid);
8199d3a7 1597
356bd146 1598 flags = update_tx_info(adapter, flags, cmdq_processed[0]);
559fb51b 1599 sge->cmdQ[1].processed += cmdq_processed[1];
8199d3a7 1600
559fb51b 1601 return e->GenerationBit == q->genbit;
8199d3a7
CL
1602}
1603
1604/*
559fb51b
SB
1605 * Handler for new data events when using NAPI. This does not need any locking
1606 * or protection from interrupts as data interrupts are off at this point and
1607 * other adapter interrupts do not interfere.
8199d3a7 1608 */
bea3348e 1609int t1_poll(struct napi_struct *napi, int budget)
8199d3a7 1610{
bea3348e 1611 struct adapter *adapter = container_of(napi, struct adapter, napi);
445cf803 1612 int work_done = process_responses(adapter, budget);
7fe26a60 1613
445cf803 1614 if (likely(work_done < budget)) {
288379f0 1615 napi_complete(napi);
bea3348e
SH
1616 writel(adapter->sge->respQ.cidx,
1617 adapter->regs + A_SG_SLEEPING);
1618 }
1619 return work_done;
559fb51b 1620}
8199d3a7 1621
7fe26a60 1622irqreturn_t t1_interrupt(int irq, void *data)
559fb51b 1623{
559fb51b
SB
1624 struct adapter *adapter = data;
1625 struct sge *sge = adapter->sge;
3de00b89 1626 int handled;
559fb51b 1627
3de00b89 1628 if (likely(responses_pending(adapter))) {
356bd146 1629 writel(F_PL_INTR_SGE_DATA, adapter->regs + A_PL_CAUSE);
7fe26a60 1630
bea3348e 1631 if (napi_schedule_prep(&adapter->napi)) {
3de00b89 1632 if (process_pure_responses(adapter))
288379f0 1633 __napi_schedule(&adapter->napi);
3de00b89
SH
1634 else {
1635 /* no data, no NAPI needed */
1636 writel(sge->respQ.cidx, adapter->regs + A_SG_SLEEPING);
4422b003
FR
1637 /* undo schedule_prep */
1638 napi_enable(&adapter->napi);
7fe26a60 1639 }
7fe26a60 1640 }
3de00b89
SH
1641 return IRQ_HANDLED;
1642 }
1643
1644 spin_lock(&adapter->async_lock);
1645 handled = t1_slow_intr_handler(adapter);
1646 spin_unlock(&adapter->async_lock);
7fe26a60 1647
559fb51b
SB
1648 if (!handled)
1649 sge->stats.unhandled_irqs++;
3de00b89 1650
559fb51b
SB
1651 return IRQ_RETVAL(handled != 0);
1652}
8199d3a7 1653
559fb51b
SB
1654/*
1655 * Enqueues the sk_buff onto the cmdQ[qid] and has hardware fetch it.
1656 *
1657 * The code figures out how many entries the sk_buff will require in the
1658 * cmdQ and updates the cmdQ data structure with the state once the enqueue
1659 * has complete. Then, it doesn't access the global structure anymore, but
1660 * uses the corresponding fields on the stack. In conjuction with a spinlock
1661 * around that code, we can make the function reentrant without holding the
1662 * lock when we actually enqueue (which might be expensive, especially on
1663 * architectures with IO MMUs).
1664 *
1665 * This runs with softirqs disabled.
1666 */
aa84505f
SH
1667static int t1_sge_tx(struct sk_buff *skb, struct adapter *adapter,
1668 unsigned int qid, struct net_device *dev)
559fb51b
SB
1669{
1670 struct sge *sge = adapter->sge;
1671 struct cmdQ *q = &sge->cmdQ[qid];
f1d3d38a 1672 unsigned int credits, pidx, genbit, count, use_sched_skb = 0;
559fb51b 1673
cabdfb37
SH
1674 if (!spin_trylock(&q->lock))
1675 return NETDEV_TX_LOCKED;
1676
559fb51b
SB
1677 reclaim_completed_tx(sge, q);
1678
1679 pidx = q->pidx;
1680 credits = q->size - q->in_use;
1681 count = 1 + skb_shinfo(skb)->nr_frags;
f1d3d38a 1682 count += compute_large_page_tx_descs(skb);
559fb51b 1683
f1d3d38a
SH
1684 /* Ethernet packet */
1685 if (unlikely(credits < count)) {
1686 if (!netif_queue_stopped(dev)) {
559fb51b
SB
1687 netif_stop_queue(dev);
1688 set_bit(dev->if_port, &sge->stopped_tx_queues);
232a347a 1689 sge->stats.cmdQ_full[2]++;
f1d3d38a
SH
1690 CH_ERR("%s: Tx ring full while queue awake!\n",
1691 adapter->name);
8199d3a7 1692 }
f1d3d38a
SH
1693 spin_unlock(&q->lock);
1694 return NETDEV_TX_BUSY;
1695 }
1696
1697 if (unlikely(credits - count < q->stop_thres)) {
1698 netif_stop_queue(dev);
1699 set_bit(dev->if_port, &sge->stopped_tx_queues);
1700 sge->stats.cmdQ_full[2]++;
1701 }
1702
1703 /* T204 cmdQ0 skbs that are destined for a certain port have to go
1704 * through the scheduler.
1705 */
1706 if (sge->tx_sched && !qid && skb->dev) {
356bd146 1707use_sched:
f1d3d38a
SH
1708 use_sched_skb = 1;
1709 /* Note that the scheduler might return a different skb than
1710 * the one passed in.
1711 */
1712 skb = sched_skb(sge, skb, credits);
1713 if (!skb) {
1714 spin_unlock(&q->lock);
1715 return NETDEV_TX_OK;
559fb51b 1716 }
f1d3d38a
SH
1717 pidx = q->pidx;
1718 count = 1 + skb_shinfo(skb)->nr_frags;
1719 count += compute_large_page_tx_descs(skb);
559fb51b 1720 }
f1d3d38a 1721
559fb51b
SB
1722 q->in_use += count;
1723 genbit = q->genbit;
f1d3d38a 1724 pidx = q->pidx;
559fb51b
SB
1725 q->pidx += count;
1726 if (q->pidx >= q->size) {
1727 q->pidx -= q->size;
1728 q->genbit ^= 1;
8199d3a7 1729 }
559fb51b 1730 spin_unlock(&q->lock);
8199d3a7 1731
559fb51b 1732 write_tx_descs(adapter, skb, pidx, genbit, q);
8199d3a7
CL
1733
1734 /*
1735 * We always ring the doorbell for cmdQ1. For cmdQ0, we only ring
1736 * the doorbell if the Q is asleep. There is a natural race, where
1737 * the hardware is going to sleep just after we checked, however,
1738 * then the interrupt handler will detect the outstanding TX packet
1739 * and ring the doorbell for us.
1740 */
559fb51b
SB
1741 if (qid)
1742 doorbell_pio(adapter, F_CMDQ1_ENABLE);
1743 else {
1744 clear_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
1745 if (test_and_set_bit(CMDQ_STAT_RUNNING, &q->status) == 0) {
1746 set_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
1747 writel(F_CMDQ0_ENABLE, adapter->regs + A_SG_DOORBELL);
1748 }
8199d3a7 1749 }
f1d3d38a
SH
1750
1751 if (use_sched_skb) {
1752 if (spin_trylock(&q->lock)) {
1753 credits = q->size - q->in_use;
1754 skb = NULL;
1755 goto use_sched;
1756 }
1757 }
aa84505f 1758 return NETDEV_TX_OK;
8199d3a7
CL
1759}
1760
1761#define MK_ETH_TYPE_MSS(type, mss) (((mss) & 0x3FFF) | ((type) << 14))
1762
559fb51b
SB
1763/*
1764 * eth_hdr_len - return the length of an Ethernet header
1765 * @data: pointer to the start of the Ethernet header
1766 *
1767 * Returns the length of an Ethernet header, including optional VLAN tag.
1768 */
1769static inline int eth_hdr_len(const void *data)
1770{
1771 const struct ethhdr *e = data;
1772
1773 return e->h_proto == htons(ETH_P_8021Q) ? VLAN_ETH_HLEN : ETH_HLEN;
1774}
1775
8199d3a7
CL
1776/*
1777 * Adds the CPL header to the sk_buff and passes it to t1_sge_tx.
1778 */
61357325 1779netdev_tx_t t1_start_xmit(struct sk_buff *skb, struct net_device *dev)
8199d3a7 1780{
c3ccc123 1781 struct adapter *adapter = dev->ml_priv;
559fb51b 1782 struct sge *sge = adapter->sge;
ca0c9584 1783 struct sge_port_stats *st = this_cpu_ptr(sge->port_stats[dev->if_port]);
8199d3a7 1784 struct cpl_tx_pkt *cpl;
cabdfb37
SH
1785 struct sk_buff *orig_skb = skb;
1786 int ret;
8199d3a7 1787
f1d3d38a
SH
1788 if (skb->protocol == htons(ETH_P_CPL5))
1789 goto send;
1790
7832ee03
DLR
1791 /*
1792 * We are using a non-standard hard_header_len.
1793 * Allocate more header room in the rare cases it is not big enough.
1794 */
1795 if (unlikely(skb_headroom(skb) < dev->hard_header_len - ETH_HLEN)) {
1796 skb = skb_realloc_headroom(skb, sizeof(struct cpl_tx_pkt_lso));
1797 ++st->tx_need_hdrroom;
1798 dev_kfree_skb_any(orig_skb);
1799 if (!skb)
1800 return NETDEV_TX_OK;
1801 }
1802
f1d3d38a 1803 if (skb_shinfo(skb)->gso_size) {
8199d3a7
CL
1804 int eth_type;
1805 struct cpl_tx_pkt_lso *hdr;
1806
56f643c2 1807 ++st->tx_tso;
559fb51b 1808
bbe735e4 1809 eth_type = skb_network_offset(skb) == ETH_HLEN ?
8199d3a7
CL
1810 CPL_ETH_II : CPL_ETH_II_VLAN;
1811
1812 hdr = (struct cpl_tx_pkt_lso *)skb_push(skb, sizeof(*hdr));
1813 hdr->opcode = CPL_TX_PKT_LSO;
1814 hdr->ip_csum_dis = hdr->l4_csum_dis = 0;
eddc9ec5 1815 hdr->ip_hdr_words = ip_hdr(skb)->ihl;
aa8223c7 1816 hdr->tcp_hdr_words = tcp_hdr(skb)->doff;
8199d3a7 1817 hdr->eth_type_mss = htons(MK_ETH_TYPE_MSS(eth_type,
f1d3d38a 1818 skb_shinfo(skb)->gso_size));
8199d3a7
CL
1819 hdr->len = htonl(skb->len - sizeof(*hdr));
1820 cpl = (struct cpl_tx_pkt *)hdr;
f1d3d38a 1821 } else {
8199d3a7 1822 /*
356bd146 1823 * Packets shorter than ETH_HLEN can break the MAC, drop them
559fb51b
SB
1824 * early. Also, we may get oversized packets because some
1825 * parts of the kernel don't handle our unusual hard_header_len
1826 * right, drop those too.
8199d3a7 1827 */
559fb51b
SB
1828 if (unlikely(skb->len < ETH_HLEN ||
1829 skb->len > dev->mtu + eth_hdr_len(skb->data))) {
f1d3d38a
SH
1830 pr_debug("%s: packet size %d hdr %d mtu%d\n", dev->name,
1831 skb->len, eth_hdr_len(skb->data), dev->mtu);
559fb51b 1832 dev_kfree_skb_any(skb);
aa84505f 1833 return NETDEV_TX_OK;
559fb51b
SB
1834 }
1835
8199d3a7 1836 if (!(adapter->flags & UDP_CSUM_CAPABLE) &&
84fa7933 1837 skb->ip_summed == CHECKSUM_PARTIAL &&
eddc9ec5 1838 ip_hdr(skb)->protocol == IPPROTO_UDP) {
84fa7933 1839 if (unlikely(skb_checksum_help(skb))) {
f1d3d38a 1840 pr_debug("%s: unable to do udp checksum\n", dev->name);
559fb51b 1841 dev_kfree_skb_any(skb);
aa84505f 1842 return NETDEV_TX_OK;
559fb51b 1843 }
f1d3d38a 1844 }
8199d3a7 1845
559fb51b
SB
1846 /* Hmmm, assuming to catch the gratious arp... and we'll use
1847 * it to flush out stuck espi packets...
f1d3d38a
SH
1848 */
1849 if ((unlikely(!adapter->sge->espibug_skb[dev->if_port]))) {
8199d3a7 1850 if (skb->protocol == htons(ETH_P_ARP) &&
d0a92be0 1851 arp_hdr(skb)->ar_op == htons(ARPOP_REQUEST)) {
f1d3d38a 1852 adapter->sge->espibug_skb[dev->if_port] = skb;
559fb51b
SB
1853 /* We want to re-use this skb later. We
1854 * simply bump the reference count and it
1855 * will not be freed...
1856 */
1857 skb = skb_get(skb);
1858 }
8199d3a7 1859 }
559fb51b
SB
1860
1861 cpl = (struct cpl_tx_pkt *)__skb_push(skb, sizeof(*cpl));
8199d3a7
CL
1862 cpl->opcode = CPL_TX_PKT;
1863 cpl->ip_csum_dis = 1; /* SW calculates IP csum */
84fa7933 1864 cpl->l4_csum_dis = skb->ip_summed == CHECKSUM_PARTIAL ? 0 : 1;
8199d3a7 1865 /* the length field isn't used so don't bother setting it */
559fb51b 1866
84fa7933 1867 st->tx_cso += (skb->ip_summed == CHECKSUM_PARTIAL);
8199d3a7
CL
1868 }
1869 cpl->iff = dev->if_port;
1870
1871#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
1872 if (adapter->vlan_grp && vlan_tx_tag_present(skb)) {
1873 cpl->vlan_valid = 1;
1874 cpl->vlan = htons(vlan_tx_tag_get(skb));
559fb51b 1875 st->vlan_insert++;
8199d3a7
CL
1876 } else
1877#endif
1878 cpl->vlan_valid = 0;
1879
f1d3d38a 1880send:
cabdfb37
SH
1881 ret = t1_sge_tx(skb, adapter, 0, dev);
1882
1883 /* If transmit busy, and we reallocated skb's due to headroom limit,
1884 * then silently discard to avoid leak.
1885 */
1886 if (unlikely(ret != NETDEV_TX_OK && skb != orig_skb)) {
356bd146 1887 dev_kfree_skb_any(skb);
cabdfb37 1888 ret = NETDEV_TX_OK;
356bd146 1889 }
cabdfb37 1890 return ret;
559fb51b 1891}
8199d3a7 1892
559fb51b
SB
1893/*
1894 * Callback for the Tx buffer reclaim timer. Runs with softirqs disabled.
1895 */
1896static void sge_tx_reclaim_cb(unsigned long data)
1897{
1898 int i;
1899 struct sge *sge = (struct sge *)data;
1900
1901 for (i = 0; i < SGE_CMDQ_N; ++i) {
1902 struct cmdQ *q = &sge->cmdQ[i];
1903
1904 if (!spin_trylock(&q->lock))
1905 continue;
8199d3a7 1906
559fb51b 1907 reclaim_completed_tx(sge, q);
f1d3d38a
SH
1908 if (i == 0 && q->in_use) { /* flush pending credits */
1909 writel(F_CMDQ0_ENABLE, sge->adapter->regs + A_SG_DOORBELL);
1910 }
559fb51b
SB
1911 spin_unlock(&q->lock);
1912 }
1913 mod_timer(&sge->tx_reclaim_timer, jiffies + TX_RECLAIM_PERIOD);
1914}
1915
1916/*
1917 * Propagate changes of the SGE coalescing parameters to the HW.
1918 */
1919int t1_sge_set_coalesce_params(struct sge *sge, struct sge_params *p)
1920{
559fb51b
SB
1921 sge->fixed_intrtimer = p->rx_coalesce_usecs *
1922 core_ticks_per_usec(sge->adapter);
1923 writel(sge->fixed_intrtimer, sge->adapter->regs + A_SG_INTRTIMER);
8199d3a7
CL
1924 return 0;
1925}
1926
559fb51b
SB
1927/*
1928 * Allocates both RX and TX resources and configures the SGE. However,
1929 * the hardware is not enabled yet.
1930 */
1931int t1_sge_configure(struct sge *sge, struct sge_params *p)
8199d3a7 1932{
559fb51b
SB
1933 if (alloc_rx_resources(sge, p))
1934 return -ENOMEM;
1935 if (alloc_tx_resources(sge, p)) {
1936 free_rx_resources(sge);
1937 return -ENOMEM;
1938 }
1939 configure_sge(sge, p);
1940
1941 /*
1942 * Now that we have sized the free lists calculate the payload
1943 * capacity of the large buffers. Other parts of the driver use
1944 * this to set the max offload coalescing size so that RX packets
1945 * do not overflow our large buffers.
1946 */
1947 p->large_buf_capacity = jumbo_payload_capacity(sge);
1948 return 0;
1949}
8199d3a7 1950
559fb51b
SB
1951/*
1952 * Disables the DMA engine.
1953 */
1954void t1_sge_stop(struct sge *sge)
1955{
f1d3d38a 1956 int i;
559fb51b 1957 writel(0, sge->adapter->regs + A_SG_CONTROL);
f1d3d38a
SH
1958 readl(sge->adapter->regs + A_SG_CONTROL); /* flush */
1959
559fb51b
SB
1960 if (is_T2(sge->adapter))
1961 del_timer_sync(&sge->espibug_timer);
f1d3d38a 1962
559fb51b 1963 del_timer_sync(&sge->tx_reclaim_timer);
f1d3d38a
SH
1964 if (sge->tx_sched)
1965 tx_sched_stop(sge);
1966
1967 for (i = 0; i < MAX_NPORTS; i++)
f4fe5a9c 1968 kfree_skb(sge->espibug_skb[i]);
8199d3a7
CL
1969}
1970
559fb51b
SB
1971/*
1972 * Enables the DMA engine.
1973 */
1974void t1_sge_start(struct sge *sge)
8199d3a7 1975{
559fb51b
SB
1976 refill_free_list(sge, &sge->freelQ[0]);
1977 refill_free_list(sge, &sge->freelQ[1]);
1978
1979 writel(sge->sge_control, sge->adapter->regs + A_SG_CONTROL);
1980 doorbell_pio(sge->adapter, F_FL0_ENABLE | F_FL1_ENABLE);
f1d3d38a 1981 readl(sge->adapter->regs + A_SG_CONTROL); /* flush */
559fb51b
SB
1982
1983 mod_timer(&sge->tx_reclaim_timer, jiffies + TX_RECLAIM_PERIOD);
1984
f1d3d38a 1985 if (is_T2(sge->adapter))
559fb51b
SB
1986 mod_timer(&sge->espibug_timer, jiffies + sge->espibug_timeout);
1987}
1988
1989/*
1990 * Callback for the T2 ESPI 'stuck packet feature' workaorund
1991 */
f1d3d38a 1992static void espibug_workaround_t204(unsigned long data)
559fb51b
SB
1993{
1994 struct adapter *adapter = (struct adapter *)data;
8199d3a7 1995 struct sge *sge = adapter->sge;
f1d3d38a
SH
1996 unsigned int nports = adapter->params.nports;
1997 u32 seop[MAX_NPORTS];
8199d3a7 1998
f1d3d38a
SH
1999 if (adapter->open_device_map & PORT_MASK) {
2000 int i;
356bd146
FR
2001
2002 if (t1_espi_get_mon_t204(adapter, &(seop[0]), 0) < 0)
f1d3d38a 2003 return;
356bd146 2004
f1d3d38a 2005 for (i = 0; i < nports; i++) {
356bd146
FR
2006 struct sk_buff *skb = sge->espibug_skb[i];
2007
2008 if (!netif_running(adapter->port[i].dev) ||
2009 netif_queue_stopped(adapter->port[i].dev) ||
2010 !seop[i] || ((seop[i] & 0xfff) != 0) || !skb)
2011 continue;
2012
2013 if (!skb->cb[0]) {
2014 u8 ch_mac_addr[ETH_ALEN] = {
2015 0x0, 0x7, 0x43, 0x0, 0x0, 0x0
2016 };
2017
27d7ff46
ACM
2018 skb_copy_to_linear_data_offset(skb,
2019 sizeof(struct cpl_tx_pkt),
2020 ch_mac_addr,
2021 ETH_ALEN);
2022 skb_copy_to_linear_data_offset(skb,
2023 skb->len - 10,
2024 ch_mac_addr,
2025 ETH_ALEN);
356bd146 2026 skb->cb[0] = 0xff;
559fb51b 2027 }
356bd146
FR
2028
2029 /* bump the reference count to avoid freeing of
2030 * the skb once the DMA has completed.
2031 */
2032 skb = skb_get(skb);
2033 t1_sge_tx(skb, adapter, 0, adapter->port[i].dev);
559fb51b
SB
2034 }
2035 }
2036 mod_timer(&sge->espibug_timer, jiffies + sge->espibug_timeout);
8199d3a7
CL
2037}
2038
f1d3d38a
SH
2039static void espibug_workaround(unsigned long data)
2040{
2041 struct adapter *adapter = (struct adapter *)data;
2042 struct sge *sge = adapter->sge;
2043
2044 if (netif_running(adapter->port[0].dev)) {
2045 struct sk_buff *skb = sge->espibug_skb[0];
2046 u32 seop = t1_espi_get_mon(adapter, 0x930, 0);
2047
2048 if ((seop & 0xfff0fff) == 0xfff && skb) {
2049 if (!skb->cb[0]) {
2050 u8 ch_mac_addr[ETH_ALEN] =
2051 {0x0, 0x7, 0x43, 0x0, 0x0, 0x0};
27d7ff46
ACM
2052 skb_copy_to_linear_data_offset(skb,
2053 sizeof(struct cpl_tx_pkt),
2054 ch_mac_addr,
2055 ETH_ALEN);
2056 skb_copy_to_linear_data_offset(skb,
2057 skb->len - 10,
2058 ch_mac_addr,
2059 ETH_ALEN);
f1d3d38a
SH
2060 skb->cb[0] = 0xff;
2061 }
2062
2063 /* bump the reference count to avoid freeing of the
2064 * skb once the DMA has completed.
2065 */
2066 skb = skb_get(skb);
2067 t1_sge_tx(skb, adapter, 0, adapter->port[0].dev);
2068 }
2069 }
2070 mod_timer(&sge->espibug_timer, jiffies + sge->espibug_timeout);
2071}
2072
559fb51b
SB
2073/*
2074 * Creates a t1_sge structure and returns suggested resource parameters.
2075 */
2076struct sge * __devinit t1_sge_create(struct adapter *adapter,
2077 struct sge_params *p)
2078{
cbee9f91 2079 struct sge *sge = kzalloc(sizeof(*sge), GFP_KERNEL);
56f643c2 2080 int i;
559fb51b
SB
2081
2082 if (!sge)
2083 return NULL;
559fb51b
SB
2084
2085 sge->adapter = adapter;
2086 sge->netdev = adapter->port[0].dev;
2087 sge->rx_pkt_pad = t1_is_T1B(adapter) ? 0 : 2;
2088 sge->jumbo_fl = t1_is_T1B(adapter) ? 1 : 0;
2089
56f643c2
SH
2090 for_each_port(adapter, i) {
2091 sge->port_stats[i] = alloc_percpu(struct sge_port_stats);
2092 if (!sge->port_stats[i])
2093 goto nomem_port;
2094 }
2095
559fb51b
SB
2096 init_timer(&sge->tx_reclaim_timer);
2097 sge->tx_reclaim_timer.data = (unsigned long)sge;
2098 sge->tx_reclaim_timer.function = sge_tx_reclaim_cb;
2099
2100 if (is_T2(sge->adapter)) {
2101 init_timer(&sge->espibug_timer);
f1d3d38a
SH
2102
2103 if (adapter->params.nports > 1) {
2104 tx_sched_init(sge);
2105 sge->espibug_timer.function = espibug_workaround_t204;
d7487421 2106 } else
f1d3d38a 2107 sge->espibug_timer.function = espibug_workaround;
559fb51b 2108 sge->espibug_timer.data = (unsigned long)sge->adapter;
f1d3d38a 2109
559fb51b 2110 sge->espibug_timeout = 1;
f1d3d38a
SH
2111 /* for T204, every 10ms */
2112 if (adapter->params.nports > 1)
2113 sge->espibug_timeout = HZ/100;
559fb51b 2114 }
356bd146 2115
559fb51b
SB
2116
2117 p->cmdQ_size[0] = SGE_CMDQ0_E_N;
2118 p->cmdQ_size[1] = SGE_CMDQ1_E_N;
2119 p->freelQ_size[!sge->jumbo_fl] = SGE_FREEL_SIZE;
2120 p->freelQ_size[sge->jumbo_fl] = SGE_JUMBO_FREEL_SIZE;
f1d3d38a
SH
2121 if (sge->tx_sched) {
2122 if (board_info(sge->adapter)->board == CHBT_BOARD_CHT204)
2123 p->rx_coalesce_usecs = 15;
2124 else
2125 p->rx_coalesce_usecs = 50;
2126 } else
2127 p->rx_coalesce_usecs = 50;
2128
559fb51b
SB
2129 p->coalesce_enable = 0;
2130 p->sample_interval_usecs = 0;
559fb51b
SB
2131
2132 return sge;
56f643c2
SH
2133nomem_port:
2134 while (i >= 0) {
2135 free_percpu(sge->port_stats[i]);
2136 --i;
2137 }
2138 kfree(sge);
2139 return NULL;
2140
559fb51b 2141}