blob: 89bef504d9dc77a004b12dc4d6f65342bb7f6ac8 [file] [log] [blame]
Christoph Lameter8199d3a2005-03-30 13:34:31 -08001/*****************************************************************************
2 * *
3 * File: sge.c *
Scott Bardone559fb512005-06-23 01:40:19 -04004 * $Revision: 1.26 $ *
5 * $Date: 2005/06/21 18:29:48 $ *
Christoph Lameter8199d3a2005-03-30 13:34:31 -08006 * 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
Christoph Lameter8199d3a2005-03-30 13:34:31 -080042#include <linux/types.h>
43#include <linux/errno.h>
44#include <linux/pci.h>
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -080045#include <linux/ktime.h>
Christoph Lameter8199d3a2005-03-30 13:34:31 -080046#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>
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -080052#include <linux/tcp.h>
Christoph Lameter8199d3a2005-03-30 13:34:31 -080053#include <linux/ip.h>
54#include <linux/in.h>
55#include <linux/if_arp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090056#include <linux/slab.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040057#include <linux/prefetch.h>
Christoph Lameter8199d3a2005-03-30 13:34:31 -080058
59#include "cpl5_cmd.h"
60#include "sge.h"
61#include "regs.h"
62#include "espi.h"
63
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -080064/* This belongs in if_ether.h */
65#define ETH_P_CPL5 0xf
Christoph Lameter8199d3a2005-03-30 13:34:31 -080066
67#define SGE_CMDQ_N 2
68#define SGE_FREELQ_N 2
Scott Bardone559fb512005-06-23 01:40:19 -040069#define SGE_CMDQ0_E_N 1024
Christoph Lameter8199d3a2005-03-30 13:34:31 -080070#define SGE_CMDQ1_E_N 128
71#define SGE_FREEL_SIZE 4096
72#define SGE_JUMBO_FREEL_SIZE 512
73#define SGE_FREEL_REFILL_THRESH 16
74#define SGE_RESPQ_E_N 1024
Scott Bardone559fb512005-06-23 01:40:19 -040075#define SGE_INTRTIMER_NRES 1000
Christoph Lameter8199d3a2005-03-30 13:34:31 -080076#define SGE_RX_SM_BUF_SIZE 1536
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -080077#define SGE_TX_DESC_MAX_PLEN 16384
Christoph Lameter8199d3a2005-03-30 13:34:31 -080078
Scott Bardone559fb512005-06-23 01:40:19 -040079#define SGE_RESPQ_REPLENISH_THRES (SGE_RESPQ_E_N / 4)
Christoph Lameter8199d3a2005-03-30 13:34:31 -080080
81/*
Scott Bardone559fb512005-06-23 01:40:19 -040082 * Period of the TX buffer reclaim timer. This timer does not need to run
83 * frequently as TX buffers are usually reclaimed by new TX packets.
84 */
85#define TX_RECLAIM_PERIOD (HZ / 4)
86
Scott Bardone559fb512005-06-23 01:40:19 -040087#define M_CMD_LEN 0x7fffffff
88#define V_CMD_LEN(v) (v)
89#define G_CMD_LEN(v) ((v) & M_CMD_LEN)
90#define V_CMD_GEN1(v) ((v) << 31)
91#define V_CMD_GEN2(v) (v)
92#define F_CMD_DATAVALID (1 << 1)
93#define F_CMD_SOP (1 << 2)
94#define V_CMD_EOP(v) ((v) << 3)
95
96/*
97 * Command queue, receive buffer list, and response queue descriptors.
Christoph Lameter8199d3a2005-03-30 13:34:31 -080098 */
99#if defined(__BIG_ENDIAN_BITFIELD)
100struct cmdQ_e {
Scott Bardone559fb512005-06-23 01:40:19 -0400101 u32 addr_lo;
102 u32 len_gen;
103 u32 flags;
104 u32 addr_hi;
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800105};
106
107struct freelQ_e {
Scott Bardone559fb512005-06-23 01:40:19 -0400108 u32 addr_lo;
109 u32 len_gen;
110 u32 gen2;
111 u32 addr_hi;
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800112};
113
114struct respQ_e {
115 u32 Qsleeping : 4;
116 u32 Cmdq1CreditReturn : 5;
117 u32 Cmdq1DmaComplete : 5;
118 u32 Cmdq0CreditReturn : 5;
119 u32 Cmdq0DmaComplete : 5;
120 u32 FreelistQid : 2;
121 u32 CreditValid : 1;
122 u32 DataValid : 1;
123 u32 Offload : 1;
124 u32 Eop : 1;
125 u32 Sop : 1;
126 u32 GenerationBit : 1;
127 u32 BufferLength;
128};
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800129#elif defined(__LITTLE_ENDIAN_BITFIELD)
130struct cmdQ_e {
Scott Bardone559fb512005-06-23 01:40:19 -0400131 u32 len_gen;
132 u32 addr_lo;
133 u32 addr_hi;
134 u32 flags;
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800135};
136
137struct freelQ_e {
Scott Bardone559fb512005-06-23 01:40:19 -0400138 u32 len_gen;
139 u32 addr_lo;
140 u32 addr_hi;
141 u32 gen2;
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800142};
143
144struct respQ_e {
145 u32 BufferLength;
146 u32 GenerationBit : 1;
147 u32 Sop : 1;
148 u32 Eop : 1;
149 u32 Offload : 1;
150 u32 DataValid : 1;
151 u32 CreditValid : 1;
152 u32 FreelistQid : 2;
153 u32 Cmdq0DmaComplete : 5;
154 u32 Cmdq0CreditReturn : 5;
155 u32 Cmdq1DmaComplete : 5;
156 u32 Cmdq1CreditReturn : 5;
157 u32 Qsleeping : 4;
158} ;
159#endif
160
161/*
162 * SW Context Command and Freelist Queue Descriptors
163 */
164struct cmdQ_ce {
165 struct sk_buff *skb;
FUJITA Tomonori094f92a2010-04-12 14:32:11 +0000166 DEFINE_DMA_UNMAP_ADDR(dma_addr);
167 DEFINE_DMA_UNMAP_LEN(dma_len);
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800168};
169
170struct freelQ_ce {
171 struct sk_buff *skb;
FUJITA Tomonori094f92a2010-04-12 14:32:11 +0000172 DEFINE_DMA_UNMAP_ADDR(dma_addr);
173 DEFINE_DMA_UNMAP_LEN(dma_len);
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800174};
175
176/*
Scott Bardone559fb512005-06-23 01:40:19 -0400177 * SW command, freelist and response rings
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800178 */
179struct cmdQ {
Scott Bardone559fb512005-06-23 01:40:19 -0400180 unsigned long status; /* HW DMA fetch status */
181 unsigned int in_use; /* # of in-use command descriptors */
182 unsigned int size; /* # of descriptors */
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800183 unsigned int processed; /* total # of descs HW has processed */
184 unsigned int cleaned; /* total # of descs SW has reclaimed */
185 unsigned int stop_thres; /* SW TX queue suspend threshold */
Scott Bardone559fb512005-06-23 01:40:19 -0400186 u16 pidx; /* producer index (SW) */
187 u16 cidx; /* consumer index (HW) */
188 u8 genbit; /* current generation (=valid) bit */
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800189 u8 sop; /* is next entry start of packet? */
Scott Bardone559fb512005-06-23 01:40:19 -0400190 struct cmdQ_e *entries; /* HW command descriptor Q */
191 struct cmdQ_ce *centries; /* SW command context descriptor Q */
Scott Bardone559fb512005-06-23 01:40:19 -0400192 dma_addr_t dma_addr; /* DMA addr HW command descriptor Q */
Francois Romieu356bd142006-12-11 23:47:00 +0100193 spinlock_t lock; /* Lock to protect cmdQ enqueuing */
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800194};
195
196struct freelQ {
Scott Bardone559fb512005-06-23 01:40:19 -0400197 unsigned int credits; /* # of available RX buffers */
198 unsigned int size; /* free list capacity */
199 u16 pidx; /* producer index (SW) */
200 u16 cidx; /* consumer index (HW) */
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800201 u16 rx_buffer_size; /* Buffer size on this free list */
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800202 u16 dma_offset; /* DMA offset to align IP headers */
203 u16 recycleq_idx; /* skb recycle q to use */
Scott Bardone559fb512005-06-23 01:40:19 -0400204 u8 genbit; /* current generation (=valid) bit */
205 struct freelQ_e *entries; /* HW freelist descriptor Q */
206 struct freelQ_ce *centries; /* SW freelist context descriptor Q */
207 dma_addr_t dma_addr; /* DMA addr HW freelist descriptor Q */
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800208};
209
210struct respQ {
Scott Bardone559fb512005-06-23 01:40:19 -0400211 unsigned int credits; /* credits to be returned to SGE */
212 unsigned int size; /* # of response Q descriptors */
213 u16 cidx; /* consumer index (SW) */
214 u8 genbit; /* current generation(=valid) bit */
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800215 struct respQ_e *entries; /* HW response descriptor Q */
Scott Bardone559fb512005-06-23 01:40:19 -0400216 dma_addr_t dma_addr; /* DMA addr HW response descriptor Q */
217};
218
219/* Bit flags for cmdQ.status */
220enum {
221 CMDQ_STAT_RUNNING = 1, /* fetch engine is running */
222 CMDQ_STAT_LAST_PKT_DB = 2 /* last packet rung the doorbell */
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800223};
224
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800225/* T204 TX SW scheduler */
226
227/* Per T204 TX port */
228struct sched_port {
229 unsigned int avail; /* available bits - quota */
230 unsigned int drain_bits_per_1024ns; /* drain rate */
231 unsigned int speed; /* drain rate, mbps */
232 unsigned int mtu; /* mtu size */
233 struct sk_buff_head skbq; /* pending skbs */
234};
235
236/* Per T204 device */
237struct sched {
238 ktime_t last_updated; /* last time quotas were computed */
Francois Romieu356bd142006-12-11 23:47:00 +0100239 unsigned int max_avail; /* max bits to be sent to any port */
240 unsigned int port; /* port index (round robin ports) */
241 unsigned int num; /* num skbs in per port queues */
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800242 struct sched_port p[MAX_NPORTS];
243 struct tasklet_struct sched_tsk;/* tasklet used to run scheduler */
244};
245static void restart_sched(unsigned long);
246
247
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800248/*
249 * Main SGE data structure
250 *
251 * Interrupts are handled by a single CPU and it is likely that on a MP system
252 * the application is migrated to another CPU. In that scenario, we try to
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800253 * separate the RX(in irq context) and TX state in order to decrease memory
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800254 * contention.
255 */
256struct sge {
Francois Romieu356bd142006-12-11 23:47:00 +0100257 struct adapter *adapter; /* adapter backpointer */
Scott Bardone559fb512005-06-23 01:40:19 -0400258 struct net_device *netdev; /* netdevice backpointer */
Francois Romieu356bd142006-12-11 23:47:00 +0100259 struct freelQ freelQ[SGE_FREELQ_N]; /* buffer free lists */
260 struct respQ respQ; /* response Q */
Scott Bardone559fb512005-06-23 01:40:19 -0400261 unsigned long stopped_tx_queues; /* bitmap of suspended Tx queues */
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800262 unsigned int rx_pkt_pad; /* RX padding for L2 packets */
263 unsigned int jumbo_fl; /* jumbo freelist Q index */
Scott Bardone559fb512005-06-23 01:40:19 -0400264 unsigned int intrtimer_nres; /* no-resource interrupt timer */
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800265 unsigned int fixed_intrtimer;/* non-adaptive interrupt timer */
Scott Bardone559fb512005-06-23 01:40:19 -0400266 struct timer_list tx_reclaim_timer; /* reclaims TX buffers */
267 struct timer_list espibug_timer;
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800268 unsigned long espibug_timeout;
269 struct sk_buff *espibug_skb[MAX_NPORTS];
Scott Bardone559fb512005-06-23 01:40:19 -0400270 u32 sge_control; /* shadow value of sge control reg */
271 struct sge_intr_counts stats;
Tejun Heo47d74272010-02-16 15:21:08 +0000272 struct sge_port_stats __percpu *port_stats[MAX_NPORTS];
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800273 struct sched *tx_sched;
Scott Bardone559fb512005-06-23 01:40:19 -0400274 struct cmdQ cmdQ[SGE_CMDQ_N] ____cacheline_aligned_in_smp;
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800275};
276
Joe Perches215faf92010-12-21 02:16:10 -0800277static const u8 ch_mac_addr[ETH_ALEN] = {
278 0x0, 0x7, 0x43, 0x0, 0x0, 0x0
279};
280
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800281/*
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800282 * stop tasklet and free all pending skb's
283 */
284static void tx_sched_stop(struct sge *sge)
285{
286 struct sched *s = sge->tx_sched;
287 int i;
288
289 tasklet_kill(&s->sched_tsk);
290
291 for (i = 0; i < MAX_NPORTS; i++)
292 __skb_queue_purge(&s->p[s->port].skbq);
293}
294
295/*
296 * t1_sched_update_parms() is called when the MTU or link speed changes. It
297 * re-computes scheduler parameters to scope with the change.
298 */
299unsigned int t1_sched_update_parms(struct sge *sge, unsigned int port,
300 unsigned int mtu, unsigned int speed)
301{
302 struct sched *s = sge->tx_sched;
303 struct sched_port *p = &s->p[port];
304 unsigned int max_avail_segs;
305
306 pr_debug("t1_sched_update_params mtu=%d speed=%d\n", mtu, speed);
307 if (speed)
308 p->speed = speed;
309 if (mtu)
310 p->mtu = mtu;
311
312 if (speed || mtu) {
313 unsigned long long drain = 1024ULL * p->speed * (p->mtu - 40);
314 do_div(drain, (p->mtu + 50) * 1000);
315 p->drain_bits_per_1024ns = (unsigned int) drain;
316
317 if (p->speed < 1000)
318 p->drain_bits_per_1024ns =
319 90 * p->drain_bits_per_1024ns / 100;
320 }
321
322 if (board_info(sge->adapter)->board == CHBT_BOARD_CHT204) {
323 p->drain_bits_per_1024ns -= 16;
324 s->max_avail = max(4096U, p->mtu + 16 + 14 + 4);
325 max_avail_segs = max(1U, 4096 / (p->mtu - 40));
326 } else {
327 s->max_avail = 16384;
328 max_avail_segs = max(1U, 9000 / (p->mtu - 40));
329 }
330
331 pr_debug("t1_sched_update_parms: mtu %u speed %u max_avail %u "
332 "max_avail_segs %u drain_bits_per_1024ns %u\n", p->mtu,
333 p->speed, s->max_avail, max_avail_segs,
334 p->drain_bits_per_1024ns);
335
336 return max_avail_segs * (p->mtu - 40);
337}
338
Adrian Bunk68d579f2007-11-21 15:02:55 -0800339#if 0
340
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800341/*
342 * t1_sched_max_avail_bytes() tells the scheduler the maximum amount of
343 * data that can be pushed per port.
344 */
345void t1_sched_set_max_avail_bytes(struct sge *sge, unsigned int val)
346{
347 struct sched *s = sge->tx_sched;
348 unsigned int i;
349
350 s->max_avail = val;
351 for (i = 0; i < MAX_NPORTS; i++)
352 t1_sched_update_parms(sge, i, 0, 0);
353}
354
355/*
356 * t1_sched_set_drain_bits_per_us() tells the scheduler at which rate a port
357 * is draining.
358 */
359void t1_sched_set_drain_bits_per_us(struct sge *sge, unsigned int port,
360 unsigned int val)
361{
362 struct sched *s = sge->tx_sched;
363 struct sched_port *p = &s->p[port];
364 p->drain_bits_per_1024ns = val * 1024 / 1000;
365 t1_sched_update_parms(sge, port, 0, 0);
366}
367
Adrian Bunk68d579f2007-11-21 15:02:55 -0800368#endif /* 0 */
369
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800370/*
371 * tx_sched_init() allocates resources and does basic initialization.
372 */
373static int tx_sched_init(struct sge *sge)
374{
375 struct sched *s;
376 int i;
377
378 s = kzalloc(sizeof (struct sched), GFP_KERNEL);
379 if (!s)
380 return -ENOMEM;
381
382 pr_debug("tx_sched_init\n");
383 tasklet_init(&s->sched_tsk, restart_sched, (unsigned long) sge);
384 sge->tx_sched = s;
385
386 for (i = 0; i < MAX_NPORTS; i++) {
387 skb_queue_head_init(&s->p[i].skbq);
388 t1_sched_update_parms(sge, i, 1500, 1000);
389 }
390
391 return 0;
392}
393
394/*
395 * sched_update_avail() computes the delta since the last time it was called
396 * and updates the per port quota (number of bits that can be sent to the any
397 * port).
398 */
399static inline int sched_update_avail(struct sge *sge)
400{
401 struct sched *s = sge->tx_sched;
Jan Glauberfd3065b2012-12-05 23:20:14 +0000402 ktime_t now = ktime_get();
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800403 unsigned int i;
404 long long delta_time_ns;
405
406 delta_time_ns = ktime_to_ns(ktime_sub(now, s->last_updated));
407
408 pr_debug("sched_update_avail delta=%lld\n", delta_time_ns);
409 if (delta_time_ns < 15000)
410 return 0;
411
412 for (i = 0; i < MAX_NPORTS; i++) {
413 struct sched_port *p = &s->p[i];
414 unsigned int delta_avail;
415
416 delta_avail = (p->drain_bits_per_1024ns * delta_time_ns) >> 13;
417 p->avail = min(p->avail + delta_avail, s->max_avail);
418 }
419
420 s->last_updated = now;
421
422 return 1;
423}
424
425/*
426 * sched_skb() is called from two different places. In the tx path, any
427 * packet generating load on an output port will call sched_skb()
428 * (skb != NULL). In addition, sched_skb() is called from the irq/soft irq
429 * context (skb == NULL).
430 * The scheduler only returns a skb (which will then be sent) if the
431 * length of the skb is <= the current quota of the output port.
432 */
433static struct sk_buff *sched_skb(struct sge *sge, struct sk_buff *skb,
434 unsigned int credits)
435{
436 struct sched *s = sge->tx_sched;
437 struct sk_buff_head *skbq;
438 unsigned int i, len, update = 1;
439
440 pr_debug("sched_skb %p\n", skb);
441 if (!skb) {
442 if (!s->num)
443 return NULL;
444 } else {
445 skbq = &s->p[skb->dev->if_port].skbq;
446 __skb_queue_tail(skbq, skb);
447 s->num++;
448 skb = NULL;
449 }
450
451 if (credits < MAX_SKB_FRAGS + 1)
452 goto out;
453
Francois Romieu356bd142006-12-11 23:47:00 +0100454again:
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800455 for (i = 0; i < MAX_NPORTS; i++) {
David S. Miller18d777a2010-04-13 03:07:17 -0700456 s->port = (s->port + 1) & (MAX_NPORTS - 1);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800457 skbq = &s->p[s->port].skbq;
458
459 skb = skb_peek(skbq);
460
461 if (!skb)
462 continue;
463
464 len = skb->len;
465 if (len <= s->p[s->port].avail) {
466 s->p[s->port].avail -= len;
467 s->num--;
468 __skb_unlink(skb, skbq);
469 goto out;
470 }
471 skb = NULL;
472 }
473
474 if (update-- && sched_update_avail(sge))
475 goto again;
476
Francois Romieu356bd142006-12-11 23:47:00 +0100477out:
478 /* If there are more pending skbs, we use the hardware to schedule us
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800479 * again.
480 */
481 if (s->num && !skb) {
482 struct cmdQ *q = &sge->cmdQ[0];
483 clear_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
484 if (test_and_set_bit(CMDQ_STAT_RUNNING, &q->status) == 0) {
485 set_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
486 writel(F_CMDQ0_ENABLE, sge->adapter->regs + A_SG_DOORBELL);
487 }
488 }
489 pr_debug("sched_skb ret %p\n", skb);
490
491 return skb;
492}
493
494/*
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800495 * PIO to indicate that memory mapped Q contains valid descriptor(s).
496 */
Scott Bardone559fb512005-06-23 01:40:19 -0400497static inline void doorbell_pio(struct adapter *adapter, u32 val)
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800498{
499 wmb();
Scott Bardone559fb512005-06-23 01:40:19 -0400500 writel(val, adapter->regs + A_SG_DOORBELL);
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800501}
502
503/*
504 * Frees all RX buffers on the freelist Q. The caller must make sure that
505 * the SGE is turned off before calling this function.
506 */
Scott Bardone559fb512005-06-23 01:40:19 -0400507static void free_freelQ_buffers(struct pci_dev *pdev, struct freelQ *q)
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800508{
Scott Bardone559fb512005-06-23 01:40:19 -0400509 unsigned int cidx = q->cidx;
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800510
Scott Bardone559fb512005-06-23 01:40:19 -0400511 while (q->credits--) {
512 struct freelQ_ce *ce = &q->centries[cidx];
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800513
FUJITA Tomonori094f92a2010-04-12 14:32:11 +0000514 pci_unmap_single(pdev, dma_unmap_addr(ce, dma_addr),
515 dma_unmap_len(ce, dma_len),
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800516 PCI_DMA_FROMDEVICE);
517 dev_kfree_skb(ce->skb);
518 ce->skb = NULL;
Scott Bardone559fb512005-06-23 01:40:19 -0400519 if (++cidx == q->size)
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800520 cidx = 0;
521 }
522}
523
524/*
525 * Free RX free list and response queue resources.
526 */
527static void free_rx_resources(struct sge *sge)
528{
529 struct pci_dev *pdev = sge->adapter->pdev;
530 unsigned int size, i;
531
532 if (sge->respQ.entries) {
Scott Bardone559fb512005-06-23 01:40:19 -0400533 size = sizeof(struct respQ_e) * sge->respQ.size;
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800534 pci_free_consistent(pdev, size, sge->respQ.entries,
535 sge->respQ.dma_addr);
536 }
537
538 for (i = 0; i < SGE_FREELQ_N; i++) {
Scott Bardone559fb512005-06-23 01:40:19 -0400539 struct freelQ *q = &sge->freelQ[i];
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800540
Scott Bardone559fb512005-06-23 01:40:19 -0400541 if (q->centries) {
542 free_freelQ_buffers(pdev, q);
543 kfree(q->centries);
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800544 }
Scott Bardone559fb512005-06-23 01:40:19 -0400545 if (q->entries) {
546 size = sizeof(struct freelQ_e) * q->size;
547 pci_free_consistent(pdev, size, q->entries,
548 q->dma_addr);
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800549 }
550 }
551}
552
553/*
554 * Allocates basic RX resources, consisting of memory mapped freelist Qs and a
Scott Bardone559fb512005-06-23 01:40:19 -0400555 * response queue.
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800556 */
557static int alloc_rx_resources(struct sge *sge, struct sge_params *p)
558{
559 struct pci_dev *pdev = sge->adapter->pdev;
560 unsigned int size, i;
561
562 for (i = 0; i < SGE_FREELQ_N; i++) {
Scott Bardone559fb512005-06-23 01:40:19 -0400563 struct freelQ *q = &sge->freelQ[i];
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800564
Scott Bardone559fb512005-06-23 01:40:19 -0400565 q->genbit = 1;
566 q->size = p->freelQ_size[i];
567 q->dma_offset = sge->rx_pkt_pad ? 0 : NET_IP_ALIGN;
568 size = sizeof(struct freelQ_e) * q->size;
Francois Romieu3e0f75b2006-12-05 23:57:41 +0100569 q->entries = pci_alloc_consistent(pdev, size, &q->dma_addr);
Scott Bardone559fb512005-06-23 01:40:19 -0400570 if (!q->entries)
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800571 goto err_no_mem;
Francois Romieu3e0f75b2006-12-05 23:57:41 +0100572
Scott Bardone559fb512005-06-23 01:40:19 -0400573 size = sizeof(struct freelQ_ce) * q->size;
Stephen Hemmingercbee9f92006-11-17 17:01:52 -0800574 q->centries = kzalloc(size, GFP_KERNEL);
Scott Bardone559fb512005-06-23 01:40:19 -0400575 if (!q->centries)
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800576 goto err_no_mem;
577 }
578
579 /*
580 * Calculate the buffer sizes for the two free lists. FL0 accommodates
581 * regular sized Ethernet frames, FL1 is sized not to exceed 16K,
582 * including all the sk_buff overhead.
583 *
584 * Note: For T2 FL0 and FL1 are reversed.
585 */
586 sge->freelQ[!sge->jumbo_fl].rx_buffer_size = SGE_RX_SM_BUF_SIZE +
587 sizeof(struct cpl_rx_data) +
588 sge->freelQ[!sge->jumbo_fl].dma_offset;
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800589
590 size = (16 * 1024) -
591 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
592
593 sge->freelQ[sge->jumbo_fl].rx_buffer_size = size;
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800594
Scott Bardone559fb512005-06-23 01:40:19 -0400595 /*
596 * Setup which skb recycle Q should be used when recycling buffers from
597 * each free list.
598 */
599 sge->freelQ[!sge->jumbo_fl].recycleq_idx = 0;
600 sge->freelQ[sge->jumbo_fl].recycleq_idx = 1;
601
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800602 sge->respQ.genbit = 1;
Scott Bardone559fb512005-06-23 01:40:19 -0400603 sge->respQ.size = SGE_RESPQ_E_N;
604 sge->respQ.credits = 0;
605 size = sizeof(struct respQ_e) * sge->respQ.size;
Francois Romieu3e0f75b2006-12-05 23:57:41 +0100606 sge->respQ.entries =
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800607 pci_alloc_consistent(pdev, size, &sge->respQ.dma_addr);
608 if (!sge->respQ.entries)
609 goto err_no_mem;
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800610 return 0;
611
612err_no_mem:
613 free_rx_resources(sge);
614 return -ENOMEM;
615}
616
617/*
Scott Bardone559fb512005-06-23 01:40:19 -0400618 * Reclaims n TX descriptors and frees the buffers associated with them.
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800619 */
Scott Bardone559fb512005-06-23 01:40:19 -0400620static void free_cmdQ_buffers(struct sge *sge, struct cmdQ *q, unsigned int n)
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800621{
Scott Bardone559fb512005-06-23 01:40:19 -0400622 struct cmdQ_ce *ce;
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800623 struct pci_dev *pdev = sge->adapter->pdev;
Scott Bardone559fb512005-06-23 01:40:19 -0400624 unsigned int cidx = q->cidx;
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800625
Scott Bardone559fb512005-06-23 01:40:19 -0400626 q->in_use -= n;
627 ce = &q->centries[cidx];
628 while (n--) {
FUJITA Tomonori094f92a2010-04-12 14:32:11 +0000629 if (likely(dma_unmap_len(ce, dma_len))) {
630 pci_unmap_single(pdev, dma_unmap_addr(ce, dma_addr),
631 dma_unmap_len(ce, dma_len),
Francois Romieu3e0f75b2006-12-05 23:57:41 +0100632 PCI_DMA_TODEVICE);
633 if (q->sop)
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800634 q->sop = 0;
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800635 }
Scott Bardone559fb512005-06-23 01:40:19 -0400636 if (ce->skb) {
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800637 dev_kfree_skb_any(ce->skb);
Scott Bardone559fb512005-06-23 01:40:19 -0400638 q->sop = 1;
639 }
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800640 ce++;
Scott Bardone559fb512005-06-23 01:40:19 -0400641 if (++cidx == q->size) {
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800642 cidx = 0;
Scott Bardone559fb512005-06-23 01:40:19 -0400643 ce = q->centries;
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800644 }
645 }
Scott Bardone559fb512005-06-23 01:40:19 -0400646 q->cidx = cidx;
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800647}
648
649/*
650 * Free TX resources.
651 *
652 * Assumes that SGE is stopped and all interrupts are disabled.
653 */
654static void free_tx_resources(struct sge *sge)
655{
656 struct pci_dev *pdev = sge->adapter->pdev;
657 unsigned int size, i;
658
659 for (i = 0; i < SGE_CMDQ_N; i++) {
Scott Bardone559fb512005-06-23 01:40:19 -0400660 struct cmdQ *q = &sge->cmdQ[i];
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800661
Scott Bardone559fb512005-06-23 01:40:19 -0400662 if (q->centries) {
663 if (q->in_use)
664 free_cmdQ_buffers(sge, q, q->in_use);
665 kfree(q->centries);
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800666 }
Scott Bardone559fb512005-06-23 01:40:19 -0400667 if (q->entries) {
668 size = sizeof(struct cmdQ_e) * q->size;
669 pci_free_consistent(pdev, size, q->entries,
670 q->dma_addr);
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800671 }
672 }
673}
674
675/*
676 * Allocates basic TX resources, consisting of memory mapped command Qs.
677 */
678static int alloc_tx_resources(struct sge *sge, struct sge_params *p)
679{
680 struct pci_dev *pdev = sge->adapter->pdev;
681 unsigned int size, i;
682
683 for (i = 0; i < SGE_CMDQ_N; i++) {
Scott Bardone559fb512005-06-23 01:40:19 -0400684 struct cmdQ *q = &sge->cmdQ[i];
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800685
Scott Bardone559fb512005-06-23 01:40:19 -0400686 q->genbit = 1;
687 q->sop = 1;
688 q->size = p->cmdQ_size[i];
689 q->in_use = 0;
690 q->status = 0;
691 q->processed = q->cleaned = 0;
692 q->stop_thres = 0;
693 spin_lock_init(&q->lock);
694 size = sizeof(struct cmdQ_e) * q->size;
Francois Romieu3e0f75b2006-12-05 23:57:41 +0100695 q->entries = pci_alloc_consistent(pdev, size, &q->dma_addr);
Scott Bardone559fb512005-06-23 01:40:19 -0400696 if (!q->entries)
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800697 goto err_no_mem;
Francois Romieu3e0f75b2006-12-05 23:57:41 +0100698
Scott Bardone559fb512005-06-23 01:40:19 -0400699 size = sizeof(struct cmdQ_ce) * q->size;
Stephen Hemmingercbee9f92006-11-17 17:01:52 -0800700 q->centries = kzalloc(size, GFP_KERNEL);
Scott Bardone559fb512005-06-23 01:40:19 -0400701 if (!q->centries)
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800702 goto err_no_mem;
703 }
704
Scott Bardone559fb512005-06-23 01:40:19 -0400705 /*
706 * CommandQ 0 handles Ethernet and TOE packets, while queue 1 is TOE
707 * only. For queue 0 set the stop threshold so we can handle one more
708 * packet from each port, plus reserve an additional 24 entries for
709 * Ethernet packets only. Queue 1 never suspends nor do we reserve
710 * space for Ethernet packets.
711 */
712 sge->cmdQ[0].stop_thres = sge->adapter->params.nports *
713 (MAX_SKB_FRAGS + 1);
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800714 return 0;
715
716err_no_mem:
717 free_tx_resources(sge);
718 return -ENOMEM;
719}
720
721static inline void setup_ring_params(struct adapter *adapter, u64 addr,
722 u32 size, int base_reg_lo,
723 int base_reg_hi, int size_reg)
724{
Scott Bardone559fb512005-06-23 01:40:19 -0400725 writel((u32)addr, adapter->regs + base_reg_lo);
726 writel(addr >> 32, adapter->regs + base_reg_hi);
727 writel(size, adapter->regs + size_reg);
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800728}
729
730/*
731 * Enable/disable VLAN acceleration.
732 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000733void t1_vlan_mode(struct adapter *adapter, netdev_features_t features)
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800734{
735 struct sge *sge = adapter->sge;
736
Jiri Pirko133b0852011-07-20 04:54:15 +0000737 if (features & NETIF_F_HW_VLAN_RX)
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800738 sge->sge_control |= F_VLAN_XTRACT;
Jiri Pirko133b0852011-07-20 04:54:15 +0000739 else
740 sge->sge_control &= ~F_VLAN_XTRACT;
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800741 if (adapter->open_device_map) {
Scott Bardone559fb512005-06-23 01:40:19 -0400742 writel(sge->sge_control, adapter->regs + A_SG_CONTROL);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800743 readl(adapter->regs + A_SG_CONTROL); /* flush */
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800744 }
745}
746
747/*
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800748 * Programs the various SGE registers. However, the engine is not yet enabled,
749 * but sge->sge_control is setup and ready to go.
750 */
751static void configure_sge(struct sge *sge, struct sge_params *p)
752{
753 struct adapter *ap = sge->adapter;
Francois Romieu356bd142006-12-11 23:47:00 +0100754
Scott Bardone559fb512005-06-23 01:40:19 -0400755 writel(0, ap->regs + A_SG_CONTROL);
756 setup_ring_params(ap, sge->cmdQ[0].dma_addr, sge->cmdQ[0].size,
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800757 A_SG_CMD0BASELWR, A_SG_CMD0BASEUPR, A_SG_CMD0SIZE);
Scott Bardone559fb512005-06-23 01:40:19 -0400758 setup_ring_params(ap, sge->cmdQ[1].dma_addr, sge->cmdQ[1].size,
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800759 A_SG_CMD1BASELWR, A_SG_CMD1BASEUPR, A_SG_CMD1SIZE);
760 setup_ring_params(ap, sge->freelQ[0].dma_addr,
Scott Bardone559fb512005-06-23 01:40:19 -0400761 sge->freelQ[0].size, A_SG_FL0BASELWR,
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800762 A_SG_FL0BASEUPR, A_SG_FL0SIZE);
763 setup_ring_params(ap, sge->freelQ[1].dma_addr,
Scott Bardone559fb512005-06-23 01:40:19 -0400764 sge->freelQ[1].size, A_SG_FL1BASELWR,
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800765 A_SG_FL1BASEUPR, A_SG_FL1SIZE);
766
767 /* The threshold comparison uses <. */
Scott Bardone559fb512005-06-23 01:40:19 -0400768 writel(SGE_RX_SM_BUF_SIZE + 1, ap->regs + A_SG_FLTHRESHOLD);
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800769
Scott Bardone559fb512005-06-23 01:40:19 -0400770 setup_ring_params(ap, sge->respQ.dma_addr, sge->respQ.size,
771 A_SG_RSPBASELWR, A_SG_RSPBASEUPR, A_SG_RSPSIZE);
772 writel((u32)sge->respQ.size - 1, ap->regs + A_SG_RSPQUEUECREDIT);
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800773
774 sge->sge_control = F_CMDQ0_ENABLE | F_CMDQ1_ENABLE | F_FL0_ENABLE |
775 F_FL1_ENABLE | F_CPL_ENABLE | F_RESPONSE_QUEUE_ENABLE |
776 V_CMDQ_PRIORITY(2) | F_DISABLE_CMDQ1_GTS | F_ISCSI_COALESCE |
777 V_RX_PKT_OFFSET(sge->rx_pkt_pad);
778
779#if defined(__BIG_ENDIAN_BITFIELD)
780 sge->sge_control |= F_ENABLE_BIG_ENDIAN;
781#endif
782
Scott Bardone559fb512005-06-23 01:40:19 -0400783 /* Initialize no-resource timer */
784 sge->intrtimer_nres = SGE_INTRTIMER_NRES * core_ticks_per_usec(ap);
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800785
Scott Bardone559fb512005-06-23 01:40:19 -0400786 t1_sge_set_coalesce_params(sge, p);
Christoph Lameter8199d3a2005-03-30 13:34:31 -0800787}
788
789/*
790 * Return the payload capacity of the jumbo free-list buffers.
791 */
792static inline unsigned int jumbo_payload_capacity(const struct sge *sge)
793{
794 return sge->freelQ[sge->jumbo_fl].rx_buffer_size -
Scott Bardone559fb512005-06-23 01:40:19 -0400795 sge->freelQ[sge->jumbo_fl].dma_offset -
796 sizeof(struct cpl_rx_data);
797}
798
799/*
800 * Frees all SGE related resources and the sge structure itself
801 */
802void t1_sge_destroy(struct sge *sge)
803{
Stephen Hemminger56f643c2006-12-01 16:36:21 -0800804 int i;
805
806 for_each_port(sge->adapter, i)
807 free_percpu(sge->port_stats[i]);
808
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -0800809 kfree(sge->tx_sched);
Scott Bardone559fb512005-06-23 01:40:19 -0400810 free_tx_resources(sge);
811 free_rx_resources(sge);
812 kfree(sge);
813}
814
815/*
816 * Allocates new RX buffers on the freelist Q (and tracks them on the freelist
817 * context Q) until the Q is full or alloc_skb fails.
818 *
819 * It is possible that the generation bits already match, indicating that the
820 * buffer is already valid and nothing needs to be done. This happens when we
821 * copied a received buffer into a new sk_buff during the interrupt processing.
822 *
823 * If the SGE doesn't automatically align packets properly (!sge->rx_pkt_pad),
824 * we specify a RX_OFFSET in order to make sure that the IP header is 4B
825 * aligned.
826 */
827static void refill_free_list(struct sge *sge, struct freelQ *q)
828{
829 struct pci_dev *pdev = sge->adapter->pdev;
830 struct freelQ_ce *ce = &q->centries[q->pidx];
831 struct freelQ_e *e = &q->entries[q->pidx];
832 unsigned int dma_len = q->rx_buffer_size - q->dma_offset;
833
Scott Bardone559fb512005-06-23 01:40:19 -0400834 while (q->credits < q->size) {
835 struct sk_buff *skb;
836 dma_addr_t mapping;
837
Eric Dumazet70386d42013-03-20 09:33:19 -0700838 skb = dev_alloc_skb(q->rx_buffer_size);
Scott Bardone559fb512005-06-23 01:40:19 -0400839 if (!skb)
840 break;
841
842 skb_reserve(skb, q->dma_offset);
843 mapping = pci_map_single(pdev, skb->data, dma_len,
844 PCI_DMA_FROMDEVICE);
Stephen Hemminger24a427c2007-01-08 11:26:12 -0800845 skb_reserve(skb, sge->rx_pkt_pad);
846
Scott Bardone559fb512005-06-23 01:40:19 -0400847 ce->skb = skb;
FUJITA Tomonori094f92a2010-04-12 14:32:11 +0000848 dma_unmap_addr_set(ce, dma_addr, mapping);
849 dma_unmap_len_set(ce, dma_len, dma_len);
Scott Bardone559fb512005-06-23 01:40:19 -0400850 e->addr_lo = (u32)mapping;
851 e->addr_hi = (u64)mapping >> 32;
852 e->len_gen = V_CMD_LEN(dma_len) | V_CMD_GEN1(q->genbit);
853 wmb();
854 e->gen2 = V_CMD_GEN2(q->genbit);
855
856 e++;
857 ce++;
858 if (++q->pidx == q->size) {
859 q->pidx = 0;
860 q->genbit ^= 1;
861 ce = q->centries;
862 e = q->entries;
863 }
864 q->credits++;
865 }
Scott Bardone559fb512005-06-23 01:40:19 -0400866}
867
868/*
869 * Calls refill_free_list for both free lists. If we cannot fill at least 1/4
870 * of both rings, we go into 'few interrupt mode' in order to give the system
871 * time to free up resources.
872 */
873static void freelQs_empty(struct sge *sge)
874{
875 struct adapter *adapter = sge->adapter;
876 u32 irq_reg = readl(adapter->regs + A_SG_INT_ENABLE);
877 u32 irqholdoff_reg;
878
879 refill_free_list(sge, &sge->freelQ[0]);
880 refill_free_list(sge, &sge->freelQ[1]);
881
882 if (sge->freelQ[0].credits > (sge->freelQ[0].size >> 2) &&
883 sge->freelQ[1].credits > (sge->freelQ[1].size >> 2)) {
884 irq_reg |= F_FL_EXHAUSTED;
885 irqholdoff_reg = sge->fixed_intrtimer;
886 } else {
887 /* Clear the F_FL_EXHAUSTED interrupts for now */
888 irq_reg &= ~F_FL_EXHAUSTED;
889 irqholdoff_reg = sge->intrtimer_nres;
890 }
891 writel(irqholdoff_reg, adapter->regs + A_SG_INTRTIMER);
892 writel(irq_reg, adapter->regs + A_SG_INT_ENABLE);
893
894 /* We reenable the Qs to force a freelist GTS interrupt later */
895 doorbell_pio(adapter, F_FL0_ENABLE | F_FL1_ENABLE);
896}
897
898#define SGE_PL_INTR_MASK (F_PL_INTR_SGE_ERR | F_PL_INTR_SGE_DATA)
899#define SGE_INT_FATAL (F_RESPQ_OVERFLOW | F_PACKET_TOO_BIG | F_PACKET_MISMATCH)
900#define SGE_INT_ENABLE (F_RESPQ_EXHAUSTED | F_RESPQ_OVERFLOW | \
901 F_FL_EXHAUSTED | F_PACKET_TOO_BIG | F_PACKET_MISMATCH)
902
903/*
904 * Disable SGE Interrupts
905 */
906void t1_sge_intr_disable(struct sge *sge)
907{
908 u32 val = readl(sge->adapter->regs + A_PL_ENABLE);
909
910 writel(val & ~SGE_PL_INTR_MASK, sge->adapter->regs + A_PL_ENABLE);
911 writel(0, sge->adapter->regs + A_SG_INT_ENABLE);
912}
913
914/*
915 * Enable SGE interrupts.
916 */
917void t1_sge_intr_enable(struct sge *sge)
918{
919 u32 en = SGE_INT_ENABLE;
920 u32 val = readl(sge->adapter->regs + A_PL_ENABLE);
921
Michał Mirosław30f554f2011-04-18 13:31:20 +0000922 if (sge->adapter->port[0].dev->hw_features & NETIF_F_TSO)
Scott Bardone559fb512005-06-23 01:40:19 -0400923 en &= ~F_PACKET_TOO_BIG;
924 writel(en, sge->adapter->regs + A_SG_INT_ENABLE);
925 writel(val | SGE_PL_INTR_MASK, sge->adapter->regs + A_PL_ENABLE);
926}
927
928/*
929 * Clear SGE interrupts.
930 */
931void t1_sge_intr_clear(struct sge *sge)
932{
933 writel(SGE_PL_INTR_MASK, sge->adapter->regs + A_PL_CAUSE);
934 writel(0xffffffff, sge->adapter->regs + A_SG_INT_CAUSE);
935}
936
937/*
938 * SGE 'Error' interrupt handler
939 */
940int t1_sge_intr_error_handler(struct sge *sge)
941{
942 struct adapter *adapter = sge->adapter;
943 u32 cause = readl(adapter->regs + A_SG_INT_CAUSE);
944
Michał Mirosław30f554f2011-04-18 13:31:20 +0000945 if (adapter->port[0].dev->hw_features & NETIF_F_TSO)
Scott Bardone559fb512005-06-23 01:40:19 -0400946 cause &= ~F_PACKET_TOO_BIG;
947 if (cause & F_RESPQ_EXHAUSTED)
948 sge->stats.respQ_empty++;
949 if (cause & F_RESPQ_OVERFLOW) {
950 sge->stats.respQ_overflow++;
Joe Perchesc1f51212010-02-22 16:56:57 +0000951 pr_alert("%s: SGE response queue overflow\n",
Scott Bardone559fb512005-06-23 01:40:19 -0400952 adapter->name);
953 }
954 if (cause & F_FL_EXHAUSTED) {
955 sge->stats.freelistQ_empty++;
956 freelQs_empty(sge);
957 }
958 if (cause & F_PACKET_TOO_BIG) {
959 sge->stats.pkt_too_big++;
Joe Perchesc1f51212010-02-22 16:56:57 +0000960 pr_alert("%s: SGE max packet size exceeded\n",
Scott Bardone559fb512005-06-23 01:40:19 -0400961 adapter->name);
962 }
963 if (cause & F_PACKET_MISMATCH) {
964 sge->stats.pkt_mismatch++;
Joe Perchesc1f51212010-02-22 16:56:57 +0000965 pr_alert("%s: SGE packet mismatch\n", adapter->name);
Scott Bardone559fb512005-06-23 01:40:19 -0400966 }
967 if (cause & SGE_INT_FATAL)
968 t1_fatal_err(adapter);
969
970 writel(cause, adapter->regs + A_SG_INT_CAUSE);
971 return 0;
972}
973
Stephen Hemminger56f643c2006-12-01 16:36:21 -0800974const struct sge_intr_counts *t1_sge_get_intr_counts(const struct sge *sge)
Scott Bardone559fb512005-06-23 01:40:19 -0400975{
976 return &sge->stats;
977}
978
Stephen Hemminger56f643c2006-12-01 16:36:21 -0800979void t1_sge_get_port_stats(const struct sge *sge, int port,
980 struct sge_port_stats *ss)
Scott Bardone559fb512005-06-23 01:40:19 -0400981{
Stephen Hemminger56f643c2006-12-01 16:36:21 -0800982 int cpu;
983
984 memset(ss, 0, sizeof(*ss));
985 for_each_possible_cpu(cpu) {
986 struct sge_port_stats *st = per_cpu_ptr(sge->port_stats[port], cpu);
987
Stephen Hemminger56f643c2006-12-01 16:36:21 -0800988 ss->rx_cso_good += st->rx_cso_good;
Stephen Hemminger56f643c2006-12-01 16:36:21 -0800989 ss->tx_cso += st->tx_cso;
990 ss->tx_tso += st->tx_tso;
Divy Le Ray7832ee02007-11-27 13:30:09 -0800991 ss->tx_need_hdrroom += st->tx_need_hdrroom;
Stephen Hemminger56f643c2006-12-01 16:36:21 -0800992 ss->vlan_xtract += st->vlan_xtract;
993 ss->vlan_insert += st->vlan_insert;
994 }
Scott Bardone559fb512005-06-23 01:40:19 -0400995}
996
997/**
998 * recycle_fl_buf - recycle a free list buffer
999 * @fl: the free list
1000 * @idx: index of buffer to recycle
1001 *
1002 * Recycles the specified buffer on the given free list by adding it at
1003 * the next available slot on the list.
1004 */
1005static void recycle_fl_buf(struct freelQ *fl, int idx)
1006{
1007 struct freelQ_e *from = &fl->entries[idx];
1008 struct freelQ_e *to = &fl->entries[fl->pidx];
1009
1010 fl->centries[fl->pidx] = fl->centries[idx];
1011 to->addr_lo = from->addr_lo;
1012 to->addr_hi = from->addr_hi;
1013 to->len_gen = G_CMD_LEN(from->len_gen) | V_CMD_GEN1(fl->genbit);
1014 wmb();
1015 to->gen2 = V_CMD_GEN2(fl->genbit);
1016 fl->credits++;
1017
1018 if (++fl->pidx == fl->size) {
1019 fl->pidx = 0;
1020 fl->genbit ^= 1;
1021 }
1022}
1023
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001024static int copybreak __read_mostly = 256;
1025module_param(copybreak, int, 0);
1026MODULE_PARM_DESC(copybreak, "Receive copy threshold");
1027
Scott Bardone559fb512005-06-23 01:40:19 -04001028/**
1029 * get_packet - return the next ingress packet buffer
1030 * @pdev: the PCI device that received the packet
1031 * @fl: the SGE free list holding the packet
1032 * @len: the actual packet length, excluding any SGE padding
Scott Bardone559fb512005-06-23 01:40:19 -04001033 *
1034 * Get the next packet from a free list and complete setup of the
1035 * sk_buff. If the packet is small we make a copy and recycle the
1036 * original buffer, otherwise we use the original buffer itself. If a
1037 * positive drop threshold is supplied packets are dropped and their
1038 * buffers recycled if (a) the number of remaining buffers is under the
1039 * threshold and the packet is too big to copy, or (b) the packet should
1040 * be copied but there is no memory for the copy.
1041 */
1042static inline struct sk_buff *get_packet(struct pci_dev *pdev,
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001043 struct freelQ *fl, unsigned int len)
Scott Bardone559fb512005-06-23 01:40:19 -04001044{
1045 struct sk_buff *skb;
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001046 const struct freelQ_ce *ce = &fl->centries[fl->cidx];
Scott Bardone559fb512005-06-23 01:40:19 -04001047
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001048 if (len < copybreak) {
1049 skb = alloc_skb(len + 2, GFP_ATOMIC);
1050 if (!skb)
Scott Bardone559fb512005-06-23 01:40:19 -04001051 goto use_orig_buf;
1052
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001053 skb_reserve(skb, 2); /* align IP header */
1054 skb_put(skb, len);
1055 pci_dma_sync_single_for_cpu(pdev,
FUJITA Tomonori094f92a2010-04-12 14:32:11 +00001056 dma_unmap_addr(ce, dma_addr),
1057 dma_unmap_len(ce, dma_len),
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001058 PCI_DMA_FROMDEVICE);
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001059 skb_copy_from_linear_data(ce->skb, skb->data, len);
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001060 pci_dma_sync_single_for_device(pdev,
FUJITA Tomonori094f92a2010-04-12 14:32:11 +00001061 dma_unmap_addr(ce, dma_addr),
1062 dma_unmap_len(ce, dma_len),
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001063 PCI_DMA_FROMDEVICE);
Scott Bardone559fb512005-06-23 01:40:19 -04001064 recycle_fl_buf(fl, fl->cidx);
1065 return skb;
1066 }
1067
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001068use_orig_buf:
1069 if (fl->credits < 2) {
Scott Bardone559fb512005-06-23 01:40:19 -04001070 recycle_fl_buf(fl, fl->cidx);
1071 return NULL;
1072 }
1073
FUJITA Tomonori094f92a2010-04-12 14:32:11 +00001074 pci_unmap_single(pdev, dma_unmap_addr(ce, dma_addr),
1075 dma_unmap_len(ce, dma_len), PCI_DMA_FROMDEVICE);
Scott Bardone559fb512005-06-23 01:40:19 -04001076 skb = ce->skb;
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001077 prefetch(skb->data);
1078
Scott Bardone559fb512005-06-23 01:40:19 -04001079 skb_put(skb, len);
1080 return skb;
1081}
1082
1083/**
1084 * unexpected_offload - handle an unexpected offload packet
1085 * @adapter: the adapter
1086 * @fl: the free list that received the packet
1087 *
1088 * Called when we receive an unexpected offload packet (e.g., the TOE
1089 * function is disabled or the card is a NIC). Prints a message and
1090 * recycles the buffer.
1091 */
1092static void unexpected_offload(struct adapter *adapter, struct freelQ *fl)
1093{
1094 struct freelQ_ce *ce = &fl->centries[fl->cidx];
1095 struct sk_buff *skb = ce->skb;
1096
FUJITA Tomonori094f92a2010-04-12 14:32:11 +00001097 pci_dma_sync_single_for_cpu(adapter->pdev, dma_unmap_addr(ce, dma_addr),
1098 dma_unmap_len(ce, dma_len), PCI_DMA_FROMDEVICE);
Joe Perchesc1f51212010-02-22 16:56:57 +00001099 pr_err("%s: unexpected offload packet, cmd %u\n",
Scott Bardone559fb512005-06-23 01:40:19 -04001100 adapter->name, *skb->data);
1101 recycle_fl_buf(fl, fl->cidx);
1102}
1103
1104/*
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001105 * T1/T2 SGE limits the maximum DMA size per TX descriptor to
1106 * SGE_TX_DESC_MAX_PLEN (16KB). If the PAGE_SIZE is larger than 16KB, the
1107 * stack might send more than SGE_TX_DESC_MAX_PLEN in a contiguous manner.
1108 * Note that the *_large_page_tx_descs stuff will be optimized out when
1109 * PAGE_SIZE <= SGE_TX_DESC_MAX_PLEN.
1110 *
1111 * compute_large_page_descs() computes how many additional descriptors are
1112 * required to break down the stack's request.
1113 */
1114static inline unsigned int compute_large_page_tx_descs(struct sk_buff *skb)
1115{
1116 unsigned int count = 0;
Francois Romieu356bd142006-12-11 23:47:00 +01001117
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001118 if (PAGE_SIZE > SGE_TX_DESC_MAX_PLEN) {
1119 unsigned int nfrags = skb_shinfo(skb)->nr_frags;
Eric Dumazete743d312010-04-14 15:59:40 -07001120 unsigned int i, len = skb_headlen(skb);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001121 while (len > SGE_TX_DESC_MAX_PLEN) {
1122 count++;
1123 len -= SGE_TX_DESC_MAX_PLEN;
1124 }
1125 for (i = 0; nfrags--; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001126 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1127 len = skb_frag_size(frag);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001128 while (len > SGE_TX_DESC_MAX_PLEN) {
1129 count++;
1130 len -= SGE_TX_DESC_MAX_PLEN;
1131 }
1132 }
1133 }
1134 return count;
1135}
1136
1137/*
1138 * Write a cmdQ entry.
1139 *
1140 * Since this function writes the 'flags' field, it must not be used to
1141 * write the first cmdQ entry.
1142 */
1143static inline void write_tx_desc(struct cmdQ_e *e, dma_addr_t mapping,
1144 unsigned int len, unsigned int gen,
1145 unsigned int eop)
1146{
Alexander Beregalov0ee904c2009-04-11 14:50:23 +00001147 BUG_ON(len > SGE_TX_DESC_MAX_PLEN);
1148
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001149 e->addr_lo = (u32)mapping;
1150 e->addr_hi = (u64)mapping >> 32;
1151 e->len_gen = V_CMD_LEN(len) | V_CMD_GEN1(gen);
1152 e->flags = F_CMD_DATAVALID | V_CMD_EOP(eop) | V_CMD_GEN2(gen);
1153}
1154
1155/*
1156 * See comment for previous function.
1157 *
1158 * write_tx_descs_large_page() writes additional SGE tx descriptors if
1159 * *desc_len exceeds HW's capability.
1160 */
1161static inline unsigned int write_large_page_tx_descs(unsigned int pidx,
1162 struct cmdQ_e **e,
1163 struct cmdQ_ce **ce,
1164 unsigned int *gen,
1165 dma_addr_t *desc_mapping,
1166 unsigned int *desc_len,
1167 unsigned int nfrags,
1168 struct cmdQ *q)
1169{
1170 if (PAGE_SIZE > SGE_TX_DESC_MAX_PLEN) {
1171 struct cmdQ_e *e1 = *e;
1172 struct cmdQ_ce *ce1 = *ce;
1173
1174 while (*desc_len > SGE_TX_DESC_MAX_PLEN) {
1175 *desc_len -= SGE_TX_DESC_MAX_PLEN;
1176 write_tx_desc(e1, *desc_mapping, SGE_TX_DESC_MAX_PLEN,
1177 *gen, nfrags == 0 && *desc_len == 0);
1178 ce1->skb = NULL;
FUJITA Tomonori094f92a2010-04-12 14:32:11 +00001179 dma_unmap_len_set(ce1, dma_len, 0);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001180 *desc_mapping += SGE_TX_DESC_MAX_PLEN;
1181 if (*desc_len) {
1182 ce1++;
1183 e1++;
1184 if (++pidx == q->size) {
1185 pidx = 0;
1186 *gen ^= 1;
1187 ce1 = q->centries;
1188 e1 = q->entries;
1189 }
1190 }
1191 }
1192 *e = e1;
1193 *ce = ce1;
1194 }
1195 return pidx;
1196}
1197
1198/*
Scott Bardone559fb512005-06-23 01:40:19 -04001199 * Write the command descriptors to transmit the given skb starting at
1200 * descriptor pidx with the given generation.
1201 */
1202static inline void write_tx_descs(struct adapter *adapter, struct sk_buff *skb,
1203 unsigned int pidx, unsigned int gen,
1204 struct cmdQ *q)
1205{
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001206 dma_addr_t mapping, desc_mapping;
Scott Bardone559fb512005-06-23 01:40:19 -04001207 struct cmdQ_e *e, *e1;
1208 struct cmdQ_ce *ce;
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001209 unsigned int i, flags, first_desc_len, desc_len,
1210 nfrags = skb_shinfo(skb)->nr_frags;
1211
1212 e = e1 = &q->entries[pidx];
1213 ce = &q->centries[pidx];
Scott Bardone559fb512005-06-23 01:40:19 -04001214
1215 mapping = pci_map_single(adapter->pdev, skb->data,
Eric Dumazete743d312010-04-14 15:59:40 -07001216 skb_headlen(skb), PCI_DMA_TODEVICE);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001217
1218 desc_mapping = mapping;
Eric Dumazete743d312010-04-14 15:59:40 -07001219 desc_len = skb_headlen(skb);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001220
1221 flags = F_CMD_DATAVALID | F_CMD_SOP |
1222 V_CMD_EOP(nfrags == 0 && desc_len <= SGE_TX_DESC_MAX_PLEN) |
1223 V_CMD_GEN2(gen);
1224 first_desc_len = (desc_len <= SGE_TX_DESC_MAX_PLEN) ?
1225 desc_len : SGE_TX_DESC_MAX_PLEN;
1226 e->addr_lo = (u32)desc_mapping;
1227 e->addr_hi = (u64)desc_mapping >> 32;
1228 e->len_gen = V_CMD_LEN(first_desc_len) | V_CMD_GEN1(gen);
1229 ce->skb = NULL;
FUJITA Tomonori094f92a2010-04-12 14:32:11 +00001230 dma_unmap_len_set(ce, dma_len, 0);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001231
1232 if (PAGE_SIZE > SGE_TX_DESC_MAX_PLEN &&
1233 desc_len > SGE_TX_DESC_MAX_PLEN) {
1234 desc_mapping += first_desc_len;
1235 desc_len -= first_desc_len;
1236 e1++;
1237 ce++;
1238 if (++pidx == q->size) {
1239 pidx = 0;
1240 gen ^= 1;
1241 e1 = q->entries;
1242 ce = q->centries;
1243 }
1244 pidx = write_large_page_tx_descs(pidx, &e1, &ce, &gen,
1245 &desc_mapping, &desc_len,
1246 nfrags, q);
1247
1248 if (likely(desc_len))
1249 write_tx_desc(e1, desc_mapping, desc_len, gen,
1250 nfrags == 0);
1251 }
1252
Scott Bardone559fb512005-06-23 01:40:19 -04001253 ce->skb = NULL;
FUJITA Tomonori094f92a2010-04-12 14:32:11 +00001254 dma_unmap_addr_set(ce, dma_addr, mapping);
Eric Dumazete743d312010-04-14 15:59:40 -07001255 dma_unmap_len_set(ce, dma_len, skb_headlen(skb));
Scott Bardone559fb512005-06-23 01:40:19 -04001256
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001257 for (i = 0; nfrags--; i++) {
Scott Bardone559fb512005-06-23 01:40:19 -04001258 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Scott Bardone559fb512005-06-23 01:40:19 -04001259 e1++;
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001260 ce++;
Scott Bardone559fb512005-06-23 01:40:19 -04001261 if (++pidx == q->size) {
1262 pidx = 0;
1263 gen ^= 1;
Scott Bardone559fb512005-06-23 01:40:19 -04001264 e1 = q->entries;
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001265 ce = q->centries;
Scott Bardone559fb512005-06-23 01:40:19 -04001266 }
1267
Ian Campbell011392222011-10-05 00:28:52 +00001268 mapping = skb_frag_dma_map(&adapter->pdev->dev, frag, 0,
Eric Dumazet9e903e02011-10-18 21:00:24 +00001269 skb_frag_size(frag), DMA_TO_DEVICE);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001270 desc_mapping = mapping;
Eric Dumazet9e903e02011-10-18 21:00:24 +00001271 desc_len = skb_frag_size(frag);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001272
1273 pidx = write_large_page_tx_descs(pidx, &e1, &ce, &gen,
1274 &desc_mapping, &desc_len,
1275 nfrags, q);
1276 if (likely(desc_len))
1277 write_tx_desc(e1, desc_mapping, desc_len, gen,
1278 nfrags == 0);
Scott Bardone559fb512005-06-23 01:40:19 -04001279 ce->skb = NULL;
FUJITA Tomonori094f92a2010-04-12 14:32:11 +00001280 dma_unmap_addr_set(ce, dma_addr, mapping);
Eric Dumazet9e903e02011-10-18 21:00:24 +00001281 dma_unmap_len_set(ce, dma_len, skb_frag_size(frag));
Scott Bardone559fb512005-06-23 01:40:19 -04001282 }
Scott Bardone559fb512005-06-23 01:40:19 -04001283 ce->skb = skb;
1284 wmb();
1285 e->flags = flags;
1286}
1287
1288/*
1289 * Clean up completed Tx buffers.
1290 */
1291static inline void reclaim_completed_tx(struct sge *sge, struct cmdQ *q)
1292{
1293 unsigned int reclaim = q->processed - q->cleaned;
1294
1295 if (reclaim) {
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001296 pr_debug("reclaim_completed_tx processed:%d cleaned:%d\n",
1297 q->processed, q->cleaned);
Scott Bardone559fb512005-06-23 01:40:19 -04001298 free_cmdQ_buffers(sge, q, reclaim);
1299 q->cleaned += reclaim;
1300 }
1301}
1302
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001303/*
1304 * Called from tasklet. Checks the scheduler for any
1305 * pending skbs that can be sent.
1306 */
1307static void restart_sched(unsigned long arg)
1308{
1309 struct sge *sge = (struct sge *) arg;
1310 struct adapter *adapter = sge->adapter;
1311 struct cmdQ *q = &sge->cmdQ[0];
1312 struct sk_buff *skb;
1313 unsigned int credits, queued_skb = 0;
1314
1315 spin_lock(&q->lock);
1316 reclaim_completed_tx(sge, q);
1317
1318 credits = q->size - q->in_use;
1319 pr_debug("restart_sched credits=%d\n", credits);
1320 while ((skb = sched_skb(sge, NULL, credits)) != NULL) {
1321 unsigned int genbit, pidx, count;
1322 count = 1 + skb_shinfo(skb)->nr_frags;
Francois Romieu356bd142006-12-11 23:47:00 +01001323 count += compute_large_page_tx_descs(skb);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001324 q->in_use += count;
1325 genbit = q->genbit;
1326 pidx = q->pidx;
1327 q->pidx += count;
1328 if (q->pidx >= q->size) {
1329 q->pidx -= q->size;
1330 q->genbit ^= 1;
1331 }
1332 write_tx_descs(adapter, skb, pidx, genbit, q);
1333 credits = q->size - q->in_use;
1334 queued_skb = 1;
1335 }
1336
1337 if (queued_skb) {
1338 clear_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
1339 if (test_and_set_bit(CMDQ_STAT_RUNNING, &q->status) == 0) {
1340 set_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
1341 writel(F_CMDQ0_ENABLE, adapter->regs + A_SG_DOORBELL);
1342 }
1343 }
1344 spin_unlock(&q->lock);
1345}
Scott Bardone559fb512005-06-23 01:40:19 -04001346
Scott Bardone559fb512005-06-23 01:40:19 -04001347/**
1348 * sge_rx - process an ingress ethernet packet
1349 * @sge: the sge structure
1350 * @fl: the free list that contains the packet buffer
1351 * @len: the packet length
1352 *
1353 * Process an ingress ethernet pakcet and deliver it to the stack.
1354 */
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001355static void sge_rx(struct sge *sge, struct freelQ *fl, unsigned int len)
Scott Bardone559fb512005-06-23 01:40:19 -04001356{
1357 struct sk_buff *skb;
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001358 const struct cpl_rx_pkt *p;
Scott Bardone559fb512005-06-23 01:40:19 -04001359 struct adapter *adapter = sge->adapter;
Stephen Hemminger56f643c2006-12-01 16:36:21 -08001360 struct sge_port_stats *st;
Michał Mirosław30f554f2011-04-18 13:31:20 +00001361 struct net_device *dev;
Scott Bardone559fb512005-06-23 01:40:19 -04001362
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001363 skb = get_packet(adapter->pdev, fl, len - sge->rx_pkt_pad);
Stephen Hemminger56f643c2006-12-01 16:36:21 -08001364 if (unlikely(!skb)) {
1365 sge->stats.rx_drops++;
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001366 return;
Scott Bardone559fb512005-06-23 01:40:19 -04001367 }
1368
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001369 p = (const struct cpl_rx_pkt *) skb->data;
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001370 if (p->iff >= adapter->params.nports) {
1371 kfree_skb(skb);
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001372 return;
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001373 }
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001374 __skb_pull(skb, sizeof(*p));
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001375
Christoph Lameterca0c9582009-10-03 19:48:22 +09001376 st = this_cpu_ptr(sge->port_stats[p->iff]);
Michał Mirosław30f554f2011-04-18 13:31:20 +00001377 dev = adapter->port[p->iff].dev;
Stephen Hemminger56f643c2006-12-01 16:36:21 -08001378
Michał Mirosław30f554f2011-04-18 13:31:20 +00001379 skb->protocol = eth_type_trans(skb, dev);
1380 if ((dev->features & NETIF_F_RXCSUM) && p->csum == 0xffff &&
Scott Bardone559fb512005-06-23 01:40:19 -04001381 skb->protocol == htons(ETH_P_IP) &&
1382 (skb->data[9] == IPPROTO_TCP || skb->data[9] == IPPROTO_UDP)) {
Stephen Hemminger56f643c2006-12-01 16:36:21 -08001383 ++st->rx_cso_good;
Scott Bardone559fb512005-06-23 01:40:19 -04001384 skb->ip_summed = CHECKSUM_UNNECESSARY;
1385 } else
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001386 skb_checksum_none_assert(skb);
Scott Bardone559fb512005-06-23 01:40:19 -04001387
Jiri Pirko133b0852011-07-20 04:54:15 +00001388 if (p->vlan_valid) {
Stephen Hemminger56f643c2006-12-01 16:36:21 -08001389 st->vlan_xtract++;
Jiri Pirko133b0852011-07-20 04:54:15 +00001390 __vlan_hwaccel_put_tag(skb, ntohs(p->vlan));
1391 }
1392 netif_receive_skb(skb);
Scott Bardone559fb512005-06-23 01:40:19 -04001393}
1394
1395/*
1396 * Returns true if a command queue has enough available descriptors that
1397 * we can resume Tx operation after temporarily disabling its packet queue.
1398 */
1399static inline int enough_free_Tx_descs(const struct cmdQ *q)
1400{
1401 unsigned int r = q->processed - q->cleaned;
1402
1403 return q->in_use - r < (q->size >> 1);
1404}
1405
1406/*
1407 * Called when sufficient space has become available in the SGE command queues
1408 * after the Tx packet schedulers have been suspended to restart the Tx path.
1409 */
1410static void restart_tx_queues(struct sge *sge)
1411{
1412 struct adapter *adap = sge->adapter;
Francois Romieu3e0f75b2006-12-05 23:57:41 +01001413 int i;
Scott Bardone559fb512005-06-23 01:40:19 -04001414
Francois Romieu3e0f75b2006-12-05 23:57:41 +01001415 if (!enough_free_Tx_descs(&sge->cmdQ[0]))
1416 return;
Scott Bardone559fb512005-06-23 01:40:19 -04001417
Francois Romieu3e0f75b2006-12-05 23:57:41 +01001418 for_each_port(adap, i) {
1419 struct net_device *nd = adap->port[i].dev;
Scott Bardone559fb512005-06-23 01:40:19 -04001420
Francois Romieu3e0f75b2006-12-05 23:57:41 +01001421 if (test_and_clear_bit(nd->if_port, &sge->stopped_tx_queues) &&
1422 netif_running(nd)) {
1423 sge->stats.cmdQ_restarted[2]++;
1424 netif_wake_queue(nd);
Scott Bardone559fb512005-06-23 01:40:19 -04001425 }
1426 }
1427}
1428
1429/*
Francois Romieu356bd142006-12-11 23:47:00 +01001430 * update_tx_info is called from the interrupt handler/NAPI to return cmdQ0
Scott Bardone559fb512005-06-23 01:40:19 -04001431 * information.
1432 */
Francois Romieu356bd142006-12-11 23:47:00 +01001433static unsigned int update_tx_info(struct adapter *adapter,
1434 unsigned int flags,
Scott Bardone559fb512005-06-23 01:40:19 -04001435 unsigned int pr0)
1436{
1437 struct sge *sge = adapter->sge;
1438 struct cmdQ *cmdq = &sge->cmdQ[0];
1439
1440 cmdq->processed += pr0;
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001441 if (flags & (F_FL0_ENABLE | F_FL1_ENABLE)) {
1442 freelQs_empty(sge);
1443 flags &= ~(F_FL0_ENABLE | F_FL1_ENABLE);
1444 }
Scott Bardone559fb512005-06-23 01:40:19 -04001445 if (flags & F_CMDQ0_ENABLE) {
1446 clear_bit(CMDQ_STAT_RUNNING, &cmdq->status);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001447
Scott Bardone559fb512005-06-23 01:40:19 -04001448 if (cmdq->cleaned + cmdq->in_use != cmdq->processed &&
1449 !test_and_set_bit(CMDQ_STAT_LAST_PKT_DB, &cmdq->status)) {
1450 set_bit(CMDQ_STAT_RUNNING, &cmdq->status);
1451 writel(F_CMDQ0_ENABLE, adapter->regs + A_SG_DOORBELL);
1452 }
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001453 if (sge->tx_sched)
1454 tasklet_hi_schedule(&sge->tx_sched->sched_tsk);
1455
1456 flags &= ~F_CMDQ0_ENABLE;
Scott Bardone559fb512005-06-23 01:40:19 -04001457 }
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001458
Scott Bardone559fb512005-06-23 01:40:19 -04001459 if (unlikely(sge->stopped_tx_queues != 0))
1460 restart_tx_queues(sge);
1461
1462 return flags;
1463}
1464
1465/*
1466 * Process SGE responses, up to the supplied budget. Returns the number of
1467 * responses processed. A negative budget is effectively unlimited.
1468 */
1469static int process_responses(struct adapter *adapter, int budget)
1470{
1471 struct sge *sge = adapter->sge;
1472 struct respQ *q = &sge->respQ;
1473 struct respQ_e *e = &q->entries[q->cidx];
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001474 int done = 0;
Scott Bardone559fb512005-06-23 01:40:19 -04001475 unsigned int flags = 0;
1476 unsigned int cmdq_processed[SGE_CMDQ_N] = {0, 0};
Francois Romieu356bd142006-12-11 23:47:00 +01001477
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001478 while (done < budget && e->GenerationBit == q->genbit) {
Scott Bardone559fb512005-06-23 01:40:19 -04001479 flags |= e->Qsleeping;
Francois Romieu356bd142006-12-11 23:47:00 +01001480
Scott Bardone559fb512005-06-23 01:40:19 -04001481 cmdq_processed[0] += e->Cmdq0CreditReturn;
1482 cmdq_processed[1] += e->Cmdq1CreditReturn;
Francois Romieu356bd142006-12-11 23:47:00 +01001483
Scott Bardone559fb512005-06-23 01:40:19 -04001484 /* We batch updates to the TX side to avoid cacheline
1485 * ping-pong of TX state information on MP where the sender
1486 * might run on a different CPU than this function...
1487 */
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001488 if (unlikely((flags & F_CMDQ0_ENABLE) || cmdq_processed[0] > 64)) {
Scott Bardone559fb512005-06-23 01:40:19 -04001489 flags = update_tx_info(adapter, flags, cmdq_processed[0]);
1490 cmdq_processed[0] = 0;
1491 }
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001492
Scott Bardone559fb512005-06-23 01:40:19 -04001493 if (unlikely(cmdq_processed[1] > 16)) {
1494 sge->cmdQ[1].processed += cmdq_processed[1];
1495 cmdq_processed[1] = 0;
1496 }
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001497
Scott Bardone559fb512005-06-23 01:40:19 -04001498 if (likely(e->DataValid)) {
1499 struct freelQ *fl = &sge->freelQ[e->FreelistQid];
1500
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +02001501 BUG_ON(!e->Sop || !e->Eop);
Scott Bardone559fb512005-06-23 01:40:19 -04001502 if (unlikely(e->Offload))
1503 unexpected_offload(adapter, fl);
1504 else
1505 sge_rx(sge, fl, e->BufferLength);
1506
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001507 ++done;
1508
Scott Bardone559fb512005-06-23 01:40:19 -04001509 /*
1510 * Note: this depends on each packet consuming a
1511 * single free-list buffer; cf. the BUG above.
1512 */
1513 if (++fl->cidx == fl->size)
1514 fl->cidx = 0;
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001515 prefetch(fl->centries[fl->cidx].skb);
1516
Scott Bardone559fb512005-06-23 01:40:19 -04001517 if (unlikely(--fl->credits <
1518 fl->size - SGE_FREEL_REFILL_THRESH))
1519 refill_free_list(sge, fl);
1520 } else
1521 sge->stats.pure_rsps++;
1522
1523 e++;
1524 if (unlikely(++q->cidx == q->size)) {
1525 q->cidx = 0;
1526 q->genbit ^= 1;
1527 e = q->entries;
1528 }
1529 prefetch(e);
1530
1531 if (++q->credits > SGE_RESPQ_REPLENISH_THRES) {
1532 writel(q->credits, adapter->regs + A_SG_RSPQUEUECREDIT);
1533 q->credits = 0;
1534 }
Scott Bardone559fb512005-06-23 01:40:19 -04001535 }
1536
Francois Romieu356bd142006-12-11 23:47:00 +01001537 flags = update_tx_info(adapter, flags, cmdq_processed[0]);
Scott Bardone559fb512005-06-23 01:40:19 -04001538 sge->cmdQ[1].processed += cmdq_processed[1];
1539
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001540 return done;
Scott Bardone559fb512005-06-23 01:40:19 -04001541}
1542
Stephen Hemminger3de00b82007-01-08 11:26:30 -08001543static inline int responses_pending(const struct adapter *adapter)
1544{
1545 const struct respQ *Q = &adapter->sge->respQ;
1546 const struct respQ_e *e = &Q->entries[Q->cidx];
1547
Eric Dumazet807540b2010-09-23 05:40:09 +00001548 return e->GenerationBit == Q->genbit;
Stephen Hemminger3de00b82007-01-08 11:26:30 -08001549}
1550
Scott Bardone559fb512005-06-23 01:40:19 -04001551/*
1552 * A simpler version of process_responses() that handles only pure (i.e.,
1553 * non data-carrying) responses. Such respones are too light-weight to justify
1554 * calling a softirq when using NAPI, so we handle them specially in hard
1555 * interrupt context. The function is called with a pointer to a response,
1556 * which the caller must ensure is a valid pure response. Returns 1 if it
1557 * encounters a valid data-carrying response, 0 otherwise.
1558 */
Stephen Hemminger3de00b82007-01-08 11:26:30 -08001559static int process_pure_responses(struct adapter *adapter)
Scott Bardone559fb512005-06-23 01:40:19 -04001560{
1561 struct sge *sge = adapter->sge;
1562 struct respQ *q = &sge->respQ;
Stephen Hemminger3de00b82007-01-08 11:26:30 -08001563 struct respQ_e *e = &q->entries[q->cidx];
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001564 const struct freelQ *fl = &sge->freelQ[e->FreelistQid];
Scott Bardone559fb512005-06-23 01:40:19 -04001565 unsigned int flags = 0;
1566 unsigned int cmdq_processed[SGE_CMDQ_N] = {0, 0};
1567
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001568 prefetch(fl->centries[fl->cidx].skb);
Stephen Hemminger3de00b82007-01-08 11:26:30 -08001569 if (e->DataValid)
1570 return 1;
Stephen Hemminger24a427c2007-01-08 11:26:12 -08001571
Scott Bardone559fb512005-06-23 01:40:19 -04001572 do {
1573 flags |= e->Qsleeping;
1574
1575 cmdq_processed[0] += e->Cmdq0CreditReturn;
1576 cmdq_processed[1] += e->Cmdq1CreditReturn;
Francois Romieu356bd142006-12-11 23:47:00 +01001577
Scott Bardone559fb512005-06-23 01:40:19 -04001578 e++;
1579 if (unlikely(++q->cidx == q->size)) {
1580 q->cidx = 0;
1581 q->genbit ^= 1;
1582 e = q->entries;
1583 }
1584 prefetch(e);
1585
1586 if (++q->credits > SGE_RESPQ_REPLENISH_THRES) {
1587 writel(q->credits, adapter->regs + A_SG_RSPQUEUECREDIT);
1588 q->credits = 0;
1589 }
1590 sge->stats.pure_rsps++;
1591 } while (e->GenerationBit == q->genbit && !e->DataValid);
1592
Francois Romieu356bd142006-12-11 23:47:00 +01001593 flags = update_tx_info(adapter, flags, cmdq_processed[0]);
Scott Bardone559fb512005-06-23 01:40:19 -04001594 sge->cmdQ[1].processed += cmdq_processed[1];
1595
1596 return e->GenerationBit == q->genbit;
1597}
1598
1599/*
1600 * Handler for new data events when using NAPI. This does not need any locking
1601 * or protection from interrupts as data interrupts are off at this point and
1602 * other adapter interrupts do not interfere.
1603 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001604int t1_poll(struct napi_struct *napi, int budget)
Scott Bardone559fb512005-06-23 01:40:19 -04001605{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001606 struct adapter *adapter = container_of(napi, struct adapter, napi);
Divy Le Ray445cf802007-11-27 13:30:15 -08001607 int work_done = process_responses(adapter, budget);
Stephen Hemminger7fe26a62006-12-08 11:08:33 -08001608
Divy Le Ray445cf802007-11-27 13:30:15 -08001609 if (likely(work_done < budget)) {
Ben Hutchings288379f2009-01-19 16:43:59 -08001610 napi_complete(napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001611 writel(adapter->sge->respQ.cidx,
1612 adapter->regs + A_SG_SLEEPING);
1613 }
1614 return work_done;
Scott Bardone559fb512005-06-23 01:40:19 -04001615}
1616
Stephen Hemminger7fe26a62006-12-08 11:08:33 -08001617irqreturn_t t1_interrupt(int irq, void *data)
Scott Bardone559fb512005-06-23 01:40:19 -04001618{
Scott Bardone559fb512005-06-23 01:40:19 -04001619 struct adapter *adapter = data;
1620 struct sge *sge = adapter->sge;
Stephen Hemminger3de00b82007-01-08 11:26:30 -08001621 int handled;
Scott Bardone559fb512005-06-23 01:40:19 -04001622
Stephen Hemminger3de00b82007-01-08 11:26:30 -08001623 if (likely(responses_pending(adapter))) {
Francois Romieu356bd142006-12-11 23:47:00 +01001624 writel(F_PL_INTR_SGE_DATA, adapter->regs + A_PL_CAUSE);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001625
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001626 if (napi_schedule_prep(&adapter->napi)) {
Stephen Hemminger3de00b82007-01-08 11:26:30 -08001627 if (process_pure_responses(adapter))
Ben Hutchings288379f2009-01-19 16:43:59 -08001628 __napi_schedule(&adapter->napi);
Stephen Hemminger3de00b82007-01-08 11:26:30 -08001629 else {
1630 /* no data, no NAPI needed */
1631 writel(sge->respQ.cidx, adapter->regs + A_SG_SLEEPING);
Francois Romieu4422b002008-07-11 00:29:19 +02001632 /* undo schedule_prep */
1633 napi_enable(&adapter->napi);
Stephen Hemminger7fe26a62006-12-08 11:08:33 -08001634 }
Stephen Hemminger7fe26a62006-12-08 11:08:33 -08001635 }
Stephen Hemminger3de00b82007-01-08 11:26:30 -08001636 return IRQ_HANDLED;
1637 }
1638
1639 spin_lock(&adapter->async_lock);
1640 handled = t1_slow_intr_handler(adapter);
1641 spin_unlock(&adapter->async_lock);
Stephen Hemminger7fe26a62006-12-08 11:08:33 -08001642
Scott Bardone559fb512005-06-23 01:40:19 -04001643 if (!handled)
1644 sge->stats.unhandled_irqs++;
Stephen Hemminger3de00b82007-01-08 11:26:30 -08001645
Scott Bardone559fb512005-06-23 01:40:19 -04001646 return IRQ_RETVAL(handled != 0);
1647}
1648
Scott Bardone559fb512005-06-23 01:40:19 -04001649/*
1650 * Enqueues the sk_buff onto the cmdQ[qid] and has hardware fetch it.
1651 *
1652 * The code figures out how many entries the sk_buff will require in the
1653 * cmdQ and updates the cmdQ data structure with the state once the enqueue
1654 * has complete. Then, it doesn't access the global structure anymore, but
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001655 * uses the corresponding fields on the stack. In conjunction with a spinlock
Scott Bardone559fb512005-06-23 01:40:19 -04001656 * around that code, we can make the function reentrant without holding the
1657 * lock when we actually enqueue (which might be expensive, especially on
1658 * architectures with IO MMUs).
1659 *
1660 * This runs with softirqs disabled.
1661 */
Stephen Hemmingeraa845052005-12-14 14:38:44 -08001662static int t1_sge_tx(struct sk_buff *skb, struct adapter *adapter,
1663 unsigned int qid, struct net_device *dev)
Scott Bardone559fb512005-06-23 01:40:19 -04001664{
1665 struct sge *sge = adapter->sge;
1666 struct cmdQ *q = &sge->cmdQ[qid];
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001667 unsigned int credits, pidx, genbit, count, use_sched_skb = 0;
Scott Bardone559fb512005-06-23 01:40:19 -04001668
Stephen Hemmingercabdfb32006-12-01 16:36:22 -08001669 if (!spin_trylock(&q->lock))
1670 return NETDEV_TX_LOCKED;
1671
Scott Bardone559fb512005-06-23 01:40:19 -04001672 reclaim_completed_tx(sge, q);
1673
1674 pidx = q->pidx;
1675 credits = q->size - q->in_use;
1676 count = 1 + skb_shinfo(skb)->nr_frags;
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001677 count += compute_large_page_tx_descs(skb);
Scott Bardone559fb512005-06-23 01:40:19 -04001678
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001679 /* Ethernet packet */
1680 if (unlikely(credits < count)) {
1681 if (!netif_queue_stopped(dev)) {
Scott Bardone559fb512005-06-23 01:40:19 -04001682 netif_stop_queue(dev);
1683 set_bit(dev->if_port, &sge->stopped_tx_queues);
Scott Bardone232a3472006-03-16 19:20:40 -05001684 sge->stats.cmdQ_full[2]++;
Joe Perchesc1f51212010-02-22 16:56:57 +00001685 pr_err("%s: Tx ring full while queue awake!\n",
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001686 adapter->name);
Scott Bardone559fb512005-06-23 01:40:19 -04001687 }
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001688 spin_unlock(&q->lock);
1689 return NETDEV_TX_BUSY;
Scott Bardone559fb512005-06-23 01:40:19 -04001690 }
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001691
1692 if (unlikely(credits - count < q->stop_thres)) {
1693 netif_stop_queue(dev);
1694 set_bit(dev->if_port, &sge->stopped_tx_queues);
1695 sge->stats.cmdQ_full[2]++;
1696 }
1697
1698 /* T204 cmdQ0 skbs that are destined for a certain port have to go
1699 * through the scheduler.
1700 */
1701 if (sge->tx_sched && !qid && skb->dev) {
Francois Romieu356bd142006-12-11 23:47:00 +01001702use_sched:
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001703 use_sched_skb = 1;
1704 /* Note that the scheduler might return a different skb than
1705 * the one passed in.
1706 */
1707 skb = sched_skb(sge, skb, credits);
1708 if (!skb) {
1709 spin_unlock(&q->lock);
1710 return NETDEV_TX_OK;
1711 }
1712 pidx = q->pidx;
1713 count = 1 + skb_shinfo(skb)->nr_frags;
1714 count += compute_large_page_tx_descs(skb);
1715 }
1716
Scott Bardone559fb512005-06-23 01:40:19 -04001717 q->in_use += count;
1718 genbit = q->genbit;
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001719 pidx = q->pidx;
Scott Bardone559fb512005-06-23 01:40:19 -04001720 q->pidx += count;
1721 if (q->pidx >= q->size) {
1722 q->pidx -= q->size;
1723 q->genbit ^= 1;
1724 }
1725 spin_unlock(&q->lock);
1726
1727 write_tx_descs(adapter, skb, pidx, genbit, q);
1728
1729 /*
1730 * We always ring the doorbell for cmdQ1. For cmdQ0, we only ring
1731 * the doorbell if the Q is asleep. There is a natural race, where
1732 * the hardware is going to sleep just after we checked, however,
1733 * then the interrupt handler will detect the outstanding TX packet
1734 * and ring the doorbell for us.
1735 */
1736 if (qid)
1737 doorbell_pio(adapter, F_CMDQ1_ENABLE);
1738 else {
1739 clear_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
1740 if (test_and_set_bit(CMDQ_STAT_RUNNING, &q->status) == 0) {
1741 set_bit(CMDQ_STAT_LAST_PKT_DB, &q->status);
1742 writel(F_CMDQ0_ENABLE, adapter->regs + A_SG_DOORBELL);
1743 }
1744 }
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001745
1746 if (use_sched_skb) {
1747 if (spin_trylock(&q->lock)) {
1748 credits = q->size - q->in_use;
1749 skb = NULL;
1750 goto use_sched;
1751 }
1752 }
Stephen Hemmingeraa845052005-12-14 14:38:44 -08001753 return NETDEV_TX_OK;
Scott Bardone559fb512005-06-23 01:40:19 -04001754}
1755
1756#define MK_ETH_TYPE_MSS(type, mss) (((mss) & 0x3FFF) | ((type) << 14))
1757
1758/*
1759 * eth_hdr_len - return the length of an Ethernet header
1760 * @data: pointer to the start of the Ethernet header
1761 *
1762 * Returns the length of an Ethernet header, including optional VLAN tag.
1763 */
1764static inline int eth_hdr_len(const void *data)
1765{
1766 const struct ethhdr *e = data;
1767
1768 return e->h_proto == htons(ETH_P_8021Q) ? VLAN_ETH_HLEN : ETH_HLEN;
1769}
1770
1771/*
1772 * Adds the CPL header to the sk_buff and passes it to t1_sge_tx.
1773 */
Stephen Hemminger613573252009-08-31 19:50:58 +00001774netdev_tx_t t1_start_xmit(struct sk_buff *skb, struct net_device *dev)
Scott Bardone559fb512005-06-23 01:40:19 -04001775{
Wang Chenc3ccc122008-11-16 23:06:39 -08001776 struct adapter *adapter = dev->ml_priv;
Scott Bardone559fb512005-06-23 01:40:19 -04001777 struct sge *sge = adapter->sge;
Christoph Lameterca0c9582009-10-03 19:48:22 +09001778 struct sge_port_stats *st = this_cpu_ptr(sge->port_stats[dev->if_port]);
Scott Bardone559fb512005-06-23 01:40:19 -04001779 struct cpl_tx_pkt *cpl;
Stephen Hemmingercabdfb32006-12-01 16:36:22 -08001780 struct sk_buff *orig_skb = skb;
1781 int ret;
Scott Bardone559fb512005-06-23 01:40:19 -04001782
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001783 if (skb->protocol == htons(ETH_P_CPL5))
1784 goto send;
1785
Divy Le Ray7832ee02007-11-27 13:30:09 -08001786 /*
1787 * We are using a non-standard hard_header_len.
1788 * Allocate more header room in the rare cases it is not big enough.
1789 */
1790 if (unlikely(skb_headroom(skb) < dev->hard_header_len - ETH_HLEN)) {
1791 skb = skb_realloc_headroom(skb, sizeof(struct cpl_tx_pkt_lso));
1792 ++st->tx_need_hdrroom;
1793 dev_kfree_skb_any(orig_skb);
1794 if (!skb)
1795 return NETDEV_TX_OK;
1796 }
1797
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001798 if (skb_shinfo(skb)->gso_size) {
Scott Bardone559fb512005-06-23 01:40:19 -04001799 int eth_type;
1800 struct cpl_tx_pkt_lso *hdr;
1801
Stephen Hemminger56f643c2006-12-01 16:36:21 -08001802 ++st->tx_tso;
Scott Bardone559fb512005-06-23 01:40:19 -04001803
Arnaldo Carvalho de Melobbe735e2007-03-10 22:16:10 -03001804 eth_type = skb_network_offset(skb) == ETH_HLEN ?
Scott Bardone559fb512005-06-23 01:40:19 -04001805 CPL_ETH_II : CPL_ETH_II_VLAN;
1806
1807 hdr = (struct cpl_tx_pkt_lso *)skb_push(skb, sizeof(*hdr));
1808 hdr->opcode = CPL_TX_PKT_LSO;
1809 hdr->ip_csum_dis = hdr->l4_csum_dis = 0;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001810 hdr->ip_hdr_words = ip_hdr(skb)->ihl;
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001811 hdr->tcp_hdr_words = tcp_hdr(skb)->doff;
Scott Bardone559fb512005-06-23 01:40:19 -04001812 hdr->eth_type_mss = htons(MK_ETH_TYPE_MSS(eth_type,
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001813 skb_shinfo(skb)->gso_size));
Scott Bardone559fb512005-06-23 01:40:19 -04001814 hdr->len = htonl(skb->len - sizeof(*hdr));
1815 cpl = (struct cpl_tx_pkt *)hdr;
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001816 } else {
Scott Bardone559fb512005-06-23 01:40:19 -04001817 /*
Francois Romieu356bd142006-12-11 23:47:00 +01001818 * Packets shorter than ETH_HLEN can break the MAC, drop them
Scott Bardone559fb512005-06-23 01:40:19 -04001819 * early. Also, we may get oversized packets because some
1820 * parts of the kernel don't handle our unusual hard_header_len
1821 * right, drop those too.
1822 */
1823 if (unlikely(skb->len < ETH_HLEN ||
1824 skb->len > dev->mtu + eth_hdr_len(skb->data))) {
Joe Perches428ac432013-01-06 13:34:49 +00001825 netdev_dbg(dev, "packet size %d hdr %d mtu%d\n",
1826 skb->len, eth_hdr_len(skb->data), dev->mtu);
Scott Bardone559fb512005-06-23 01:40:19 -04001827 dev_kfree_skb_any(skb);
Stephen Hemmingeraa845052005-12-14 14:38:44 -08001828 return NETDEV_TX_OK;
Scott Bardone559fb512005-06-23 01:40:19 -04001829 }
1830
Michał Mirosław30f554f2011-04-18 13:31:20 +00001831 if (skb->ip_summed == CHECKSUM_PARTIAL &&
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001832 ip_hdr(skb)->protocol == IPPROTO_UDP) {
Patrick McHardy84fa7932006-08-29 16:44:56 -07001833 if (unlikely(skb_checksum_help(skb))) {
Joe Perches428ac432013-01-06 13:34:49 +00001834 netdev_dbg(dev, "unable to do udp checksum\n");
Scott Bardone559fb512005-06-23 01:40:19 -04001835 dev_kfree_skb_any(skb);
Stephen Hemmingeraa845052005-12-14 14:38:44 -08001836 return NETDEV_TX_OK;
Scott Bardone559fb512005-06-23 01:40:19 -04001837 }
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001838 }
Scott Bardone559fb512005-06-23 01:40:19 -04001839
1840 /* Hmmm, assuming to catch the gratious arp... and we'll use
1841 * it to flush out stuck espi packets...
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001842 */
1843 if ((unlikely(!adapter->sge->espibug_skb[dev->if_port]))) {
Scott Bardone559fb512005-06-23 01:40:19 -04001844 if (skb->protocol == htons(ETH_P_ARP) &&
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -03001845 arp_hdr(skb)->ar_op == htons(ARPOP_REQUEST)) {
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001846 adapter->sge->espibug_skb[dev->if_port] = skb;
Scott Bardone559fb512005-06-23 01:40:19 -04001847 /* We want to re-use this skb later. We
1848 * simply bump the reference count and it
1849 * will not be freed...
1850 */
1851 skb = skb_get(skb);
1852 }
1853 }
1854
1855 cpl = (struct cpl_tx_pkt *)__skb_push(skb, sizeof(*cpl));
1856 cpl->opcode = CPL_TX_PKT;
1857 cpl->ip_csum_dis = 1; /* SW calculates IP csum */
Patrick McHardy84fa7932006-08-29 16:44:56 -07001858 cpl->l4_csum_dis = skb->ip_summed == CHECKSUM_PARTIAL ? 0 : 1;
Scott Bardone559fb512005-06-23 01:40:19 -04001859 /* the length field isn't used so don't bother setting it */
1860
Patrick McHardy84fa7932006-08-29 16:44:56 -07001861 st->tx_cso += (skb->ip_summed == CHECKSUM_PARTIAL);
Scott Bardone559fb512005-06-23 01:40:19 -04001862 }
1863 cpl->iff = dev->if_port;
1864
Jesse Grosseab6d182010-10-20 13:56:03 +00001865 if (vlan_tx_tag_present(skb)) {
Scott Bardone559fb512005-06-23 01:40:19 -04001866 cpl->vlan_valid = 1;
1867 cpl->vlan = htons(vlan_tx_tag_get(skb));
1868 st->vlan_insert++;
1869 } else
Scott Bardone559fb512005-06-23 01:40:19 -04001870 cpl->vlan_valid = 0;
1871
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001872send:
Stephen Hemmingercabdfb32006-12-01 16:36:22 -08001873 ret = t1_sge_tx(skb, adapter, 0, dev);
1874
1875 /* If transmit busy, and we reallocated skb's due to headroom limit,
1876 * then silently discard to avoid leak.
1877 */
1878 if (unlikely(ret != NETDEV_TX_OK && skb != orig_skb)) {
Francois Romieu356bd142006-12-11 23:47:00 +01001879 dev_kfree_skb_any(skb);
Stephen Hemmingercabdfb32006-12-01 16:36:22 -08001880 ret = NETDEV_TX_OK;
Francois Romieu356bd142006-12-11 23:47:00 +01001881 }
Stephen Hemmingercabdfb32006-12-01 16:36:22 -08001882 return ret;
Scott Bardone559fb512005-06-23 01:40:19 -04001883}
1884
1885/*
1886 * Callback for the Tx buffer reclaim timer. Runs with softirqs disabled.
1887 */
1888static void sge_tx_reclaim_cb(unsigned long data)
1889{
1890 int i;
1891 struct sge *sge = (struct sge *)data;
1892
1893 for (i = 0; i < SGE_CMDQ_N; ++i) {
1894 struct cmdQ *q = &sge->cmdQ[i];
1895
1896 if (!spin_trylock(&q->lock))
1897 continue;
1898
1899 reclaim_completed_tx(sge, q);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001900 if (i == 0 && q->in_use) { /* flush pending credits */
1901 writel(F_CMDQ0_ENABLE, sge->adapter->regs + A_SG_DOORBELL);
1902 }
Scott Bardone559fb512005-06-23 01:40:19 -04001903 spin_unlock(&q->lock);
1904 }
1905 mod_timer(&sge->tx_reclaim_timer, jiffies + TX_RECLAIM_PERIOD);
1906}
1907
1908/*
1909 * Propagate changes of the SGE coalescing parameters to the HW.
1910 */
1911int t1_sge_set_coalesce_params(struct sge *sge, struct sge_params *p)
1912{
Scott Bardone559fb512005-06-23 01:40:19 -04001913 sge->fixed_intrtimer = p->rx_coalesce_usecs *
1914 core_ticks_per_usec(sge->adapter);
1915 writel(sge->fixed_intrtimer, sge->adapter->regs + A_SG_INTRTIMER);
1916 return 0;
Christoph Lameter8199d3a2005-03-30 13:34:31 -08001917}
1918
1919/*
1920 * Allocates both RX and TX resources and configures the SGE. However,
1921 * the hardware is not enabled yet.
1922 */
1923int t1_sge_configure(struct sge *sge, struct sge_params *p)
1924{
1925 if (alloc_rx_resources(sge, p))
1926 return -ENOMEM;
1927 if (alloc_tx_resources(sge, p)) {
1928 free_rx_resources(sge);
1929 return -ENOMEM;
1930 }
1931 configure_sge(sge, p);
1932
1933 /*
1934 * Now that we have sized the free lists calculate the payload
1935 * capacity of the large buffers. Other parts of the driver use
1936 * this to set the max offload coalescing size so that RX packets
1937 * do not overflow our large buffers.
1938 */
1939 p->large_buf_capacity = jumbo_payload_capacity(sge);
1940 return 0;
1941}
1942
1943/*
Scott Bardone559fb512005-06-23 01:40:19 -04001944 * Disables the DMA engine.
Christoph Lameter8199d3a2005-03-30 13:34:31 -08001945 */
Scott Bardone559fb512005-06-23 01:40:19 -04001946void t1_sge_stop(struct sge *sge)
Christoph Lameter8199d3a2005-03-30 13:34:31 -08001947{
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001948 int i;
Scott Bardone559fb512005-06-23 01:40:19 -04001949 writel(0, sge->adapter->regs + A_SG_CONTROL);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001950 readl(sge->adapter->regs + A_SG_CONTROL); /* flush */
1951
Scott Bardone559fb512005-06-23 01:40:19 -04001952 if (is_T2(sge->adapter))
1953 del_timer_sync(&sge->espibug_timer);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001954
Scott Bardone559fb512005-06-23 01:40:19 -04001955 del_timer_sync(&sge->tx_reclaim_timer);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001956 if (sge->tx_sched)
1957 tx_sched_stop(sge);
1958
1959 for (i = 0; i < MAX_NPORTS; i++)
Wei Yongjunf4fe5a92009-02-25 00:45:09 +00001960 kfree_skb(sge->espibug_skb[i]);
Christoph Lameter8199d3a2005-03-30 13:34:31 -08001961}
1962
1963/*
Scott Bardone559fb512005-06-23 01:40:19 -04001964 * Enables the DMA engine.
Christoph Lameter8199d3a2005-03-30 13:34:31 -08001965 */
Scott Bardone559fb512005-06-23 01:40:19 -04001966void t1_sge_start(struct sge *sge)
Christoph Lameter8199d3a2005-03-30 13:34:31 -08001967{
Christoph Lameter8199d3a2005-03-30 13:34:31 -08001968 refill_free_list(sge, &sge->freelQ[0]);
1969 refill_free_list(sge, &sge->freelQ[1]);
1970
Scott Bardone559fb512005-06-23 01:40:19 -04001971 writel(sge->sge_control, sge->adapter->regs + A_SG_CONTROL);
1972 doorbell_pio(sge->adapter, F_FL0_ENABLE | F_FL1_ENABLE);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001973 readl(sge->adapter->regs + A_SG_CONTROL); /* flush */
Christoph Lameter8199d3a2005-03-30 13:34:31 -08001974
Scott Bardone559fb512005-06-23 01:40:19 -04001975 mod_timer(&sge->tx_reclaim_timer, jiffies + TX_RECLAIM_PERIOD);
Christoph Lameter8199d3a2005-03-30 13:34:31 -08001976
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001977 if (is_T2(sge->adapter))
Scott Bardone559fb512005-06-23 01:40:19 -04001978 mod_timer(&sge->espibug_timer, jiffies + sge->espibug_timeout);
Christoph Lameter8199d3a2005-03-30 13:34:31 -08001979}
1980
1981/*
Scott Bardone559fb512005-06-23 01:40:19 -04001982 * Callback for the T2 ESPI 'stuck packet feature' workaorund
Christoph Lameter8199d3a2005-03-30 13:34:31 -08001983 */
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001984static void espibug_workaround_t204(unsigned long data)
1985{
1986 struct adapter *adapter = (struct adapter *)data;
1987 struct sge *sge = adapter->sge;
1988 unsigned int nports = adapter->params.nports;
1989 u32 seop[MAX_NPORTS];
1990
1991 if (adapter->open_device_map & PORT_MASK) {
1992 int i;
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08001993
Francois Romieu356bd142006-12-11 23:47:00 +01001994 if (t1_espi_get_mon_t204(adapter, &(seop[0]), 0) < 0)
1995 return;
1996
1997 for (i = 0; i < nports; i++) {
1998 struct sk_buff *skb = sge->espibug_skb[i];
1999
2000 if (!netif_running(adapter->port[i].dev) ||
2001 netif_queue_stopped(adapter->port[i].dev) ||
2002 !seop[i] || ((seop[i] & 0xfff) != 0) || !skb)
2003 continue;
2004
2005 if (!skb->cb[0]) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002006 skb_copy_to_linear_data_offset(skb,
2007 sizeof(struct cpl_tx_pkt),
2008 ch_mac_addr,
2009 ETH_ALEN);
2010 skb_copy_to_linear_data_offset(skb,
2011 skb->len - 10,
2012 ch_mac_addr,
2013 ETH_ALEN);
Francois Romieu356bd142006-12-11 23:47:00 +01002014 skb->cb[0] = 0xff;
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08002015 }
Francois Romieu356bd142006-12-11 23:47:00 +01002016
2017 /* bump the reference count to avoid freeing of
2018 * the skb once the DMA has completed.
2019 */
2020 skb = skb_get(skb);
2021 t1_sge_tx(skb, adapter, 0, adapter->port[i].dev);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08002022 }
2023 }
2024 mod_timer(&sge->espibug_timer, jiffies + sge->espibug_timeout);
2025}
2026
2027static void espibug_workaround(unsigned long data)
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002028{
Scott Bardone559fb512005-06-23 01:40:19 -04002029 struct adapter *adapter = (struct adapter *)data;
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002030 struct sge *sge = adapter->sge;
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002031
Scott Bardone559fb512005-06-23 01:40:19 -04002032 if (netif_running(adapter->port[0].dev)) {
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08002033 struct sk_buff *skb = sge->espibug_skb[0];
2034 u32 seop = t1_espi_get_mon(adapter, 0x930, 0);
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002035
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08002036 if ((seop & 0xfff0fff) == 0xfff && skb) {
2037 if (!skb->cb[0]) {
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -03002038 skb_copy_to_linear_data_offset(skb,
2039 sizeof(struct cpl_tx_pkt),
2040 ch_mac_addr,
2041 ETH_ALEN);
2042 skb_copy_to_linear_data_offset(skb,
2043 skb->len - 10,
2044 ch_mac_addr,
2045 ETH_ALEN);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08002046 skb->cb[0] = 0xff;
2047 }
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002048
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08002049 /* bump the reference count to avoid freeing of the
2050 * skb once the DMA has completed.
2051 */
2052 skb = skb_get(skb);
2053 t1_sge_tx(skb, adapter, 0, adapter->port[0].dev);
2054 }
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002055 }
Scott Bardone559fb512005-06-23 01:40:19 -04002056 mod_timer(&sge->espibug_timer, jiffies + sge->espibug_timeout);
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002057}
2058
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002059/*
Scott Bardone559fb512005-06-23 01:40:19 -04002060 * Creates a t1_sge structure and returns suggested resource parameters.
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002061 */
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00002062struct sge *t1_sge_create(struct adapter *adapter, struct sge_params *p)
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002063{
Stephen Hemmingercbee9f92006-11-17 17:01:52 -08002064 struct sge *sge = kzalloc(sizeof(*sge), GFP_KERNEL);
Stephen Hemminger56f643c2006-12-01 16:36:21 -08002065 int i;
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002066
Scott Bardone559fb512005-06-23 01:40:19 -04002067 if (!sge)
2068 return NULL;
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002069
Scott Bardone559fb512005-06-23 01:40:19 -04002070 sge->adapter = adapter;
2071 sge->netdev = adapter->port[0].dev;
2072 sge->rx_pkt_pad = t1_is_T1B(adapter) ? 0 : 2;
2073 sge->jumbo_fl = t1_is_T1B(adapter) ? 1 : 0;
2074
Stephen Hemminger56f643c2006-12-01 16:36:21 -08002075 for_each_port(adapter, i) {
2076 sge->port_stats[i] = alloc_percpu(struct sge_port_stats);
2077 if (!sge->port_stats[i])
2078 goto nomem_port;
2079 }
2080
Scott Bardone559fb512005-06-23 01:40:19 -04002081 init_timer(&sge->tx_reclaim_timer);
2082 sge->tx_reclaim_timer.data = (unsigned long)sge;
2083 sge->tx_reclaim_timer.function = sge_tx_reclaim_cb;
2084
2085 if (is_T2(sge->adapter)) {
2086 init_timer(&sge->espibug_timer);
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08002087
2088 if (adapter->params.nports > 1) {
2089 tx_sched_init(sge);
2090 sge->espibug_timer.function = espibug_workaround_t204;
Francois Romieud7487422006-12-11 23:49:13 +01002091 } else
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08002092 sge->espibug_timer.function = espibug_workaround;
Scott Bardone559fb512005-06-23 01:40:19 -04002093 sge->espibug_timer.data = (unsigned long)sge->adapter;
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08002094
Scott Bardone559fb512005-06-23 01:40:19 -04002095 sge->espibug_timeout = 1;
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08002096 /* for T204, every 10ms */
2097 if (adapter->params.nports > 1)
2098 sge->espibug_timeout = HZ/100;
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002099 }
Francois Romieu356bd142006-12-11 23:47:00 +01002100
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002101
Scott Bardone559fb512005-06-23 01:40:19 -04002102 p->cmdQ_size[0] = SGE_CMDQ0_E_N;
2103 p->cmdQ_size[1] = SGE_CMDQ1_E_N;
2104 p->freelQ_size[!sge->jumbo_fl] = SGE_FREEL_SIZE;
2105 p->freelQ_size[sge->jumbo_fl] = SGE_JUMBO_FREEL_SIZE;
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08002106 if (sge->tx_sched) {
2107 if (board_info(sge->adapter)->board == CHBT_BOARD_CHT204)
2108 p->rx_coalesce_usecs = 15;
2109 else
2110 p->rx_coalesce_usecs = 50;
2111 } else
2112 p->rx_coalesce_usecs = 50;
2113
Scott Bardone559fb512005-06-23 01:40:19 -04002114 p->coalesce_enable = 0;
2115 p->sample_interval_usecs = 0;
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002116
Scott Bardone559fb512005-06-23 01:40:19 -04002117 return sge;
Stephen Hemminger56f643c2006-12-01 16:36:21 -08002118nomem_port:
2119 while (i >= 0) {
2120 free_percpu(sge->port_stats[i]);
2121 --i;
2122 }
2123 kfree(sge);
2124 return NULL;
2125
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002126}