blob: 4903c4f7f29227bbd878224650ea7c13648876b6 [file] [log] [blame]
Ben Hutchings8ceee662008-04-27 12:55:59 +01001/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2005-2006 Fen Systems Ltd.
Ben Hutchings0a6f40c2011-02-25 00:01:34 +00004 * Copyright 2005-2010 Solarflare Communications Inc.
Ben Hutchings8ceee662008-04-27 12:55:59 +01005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation, incorporated herein by reference.
9 */
10
11#include <linux/pci.h>
12#include <linux/tcp.h>
13#include <linux/ip.h>
14#include <linux/in.h>
Ben Hutchings738a8f42009-11-29 15:16:05 +000015#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Ben Hutchings738a8f42009-11-29 15:16:05 +000017#include <net/ipv6.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010018#include <linux/if_ether.h>
19#include <linux/highmem.h>
20#include "net_driver.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010021#include "efx.h"
Ben Hutchings744093c2009-11-29 15:12:08 +000022#include "nic.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010023#include "workarounds.h"
24
Ben Hutchings4d566062008-09-01 12:47:12 +010025static void efx_dequeue_buffer(struct efx_tx_queue *tx_queue,
Tom Herbertc3940992011-11-28 16:33:43 +000026 struct efx_tx_buffer *buffer,
27 unsigned int *pkts_compl,
28 unsigned int *bytes_compl)
Ben Hutchings8ceee662008-04-27 12:55:59 +010029{
30 if (buffer->unmap_len) {
Ben Hutchings0e33d872012-05-17 17:46:55 +010031 struct device *dma_dev = &tx_queue->efx->pci_dev->dev;
Ben Hutchingscc12dac2008-09-01 12:46:43 +010032 dma_addr_t unmap_addr = (buffer->dma_addr + buffer->len -
33 buffer->unmap_len);
Ben Hutchings7668ff92012-05-17 20:52:20 +010034 if (buffer->flags & EFX_TX_BUF_MAP_SINGLE)
Ben Hutchings0e33d872012-05-17 17:46:55 +010035 dma_unmap_single(dma_dev, unmap_addr, buffer->unmap_len,
36 DMA_TO_DEVICE);
Ben Hutchings8ceee662008-04-27 12:55:59 +010037 else
Ben Hutchings0e33d872012-05-17 17:46:55 +010038 dma_unmap_page(dma_dev, unmap_addr, buffer->unmap_len,
39 DMA_TO_DEVICE);
Ben Hutchings8ceee662008-04-27 12:55:59 +010040 buffer->unmap_len = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +010041 }
42
Ben Hutchings7668ff92012-05-17 20:52:20 +010043 if (buffer->flags & EFX_TX_BUF_SKB) {
Tom Herbertc3940992011-11-28 16:33:43 +000044 (*pkts_compl)++;
45 (*bytes_compl) += buffer->skb->len;
Ben Hutchings8ceee662008-04-27 12:55:59 +010046 dev_kfree_skb_any((struct sk_buff *) buffer->skb);
Ben Hutchings62776d02010-06-23 11:30:07 +000047 netif_vdbg(tx_queue->efx, tx_done, tx_queue->efx->net_dev,
48 "TX queue %d transmission id %x complete\n",
49 tx_queue->queue, tx_queue->read_count);
Ben Hutchingsf7251a92012-05-17 18:40:54 +010050 } else if (buffer->flags & EFX_TX_BUF_HEAP) {
51 kfree(buffer->heap_buf);
Ben Hutchings8ceee662008-04-27 12:55:59 +010052 }
Ben Hutchings7668ff92012-05-17 20:52:20 +010053
Ben Hutchingsf7251a92012-05-17 18:40:54 +010054 buffer->len = 0;
55 buffer->flags = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +010056}
57
Ben Hutchingsb9b39b62008-05-07 12:51:12 +010058static int efx_enqueue_skb_tso(struct efx_tx_queue *tx_queue,
Ben Hutchings740847d2008-09-01 12:48:23 +010059 struct sk_buff *skb);
Ben Hutchings8ceee662008-04-27 12:55:59 +010060
Ben Hutchings63f19882009-10-23 08:31:20 +000061static inline unsigned
62efx_max_tx_len(struct efx_nic *efx, dma_addr_t dma_addr)
63{
64 /* Depending on the NIC revision, we can use descriptor
65 * lengths up to 8K or 8K-1. However, since PCI Express
66 * devices must split read requests at 4K boundaries, there is
67 * little benefit from using descriptors that cross those
68 * boundaries and we keep things simple by not doing so.
69 */
Ben Hutchings5b6262d2012-02-02 21:21:15 +000070 unsigned len = (~dma_addr & (EFX_PAGE_SIZE - 1)) + 1;
Ben Hutchings63f19882009-10-23 08:31:20 +000071
72 /* Work around hardware bug for unaligned buffers. */
73 if (EFX_WORKAROUND_5391(efx) && (dma_addr & 0xf))
74 len = min_t(unsigned, len, 512 - (dma_addr & 0xf));
75
76 return len;
77}
78
Ben Hutchings7e6d06f2012-07-30 15:57:44 +000079unsigned int efx_tx_max_skb_descs(struct efx_nic *efx)
80{
81 /* Header and payload descriptor for each output segment, plus
82 * one for every input fragment boundary within a segment
83 */
84 unsigned int max_descs = EFX_TSO_MAX_SEGS * 2 + MAX_SKB_FRAGS;
85
86 /* Possibly one more per segment for the alignment workaround */
87 if (EFX_WORKAROUND_5391(efx))
88 max_descs += EFX_TSO_MAX_SEGS;
89
90 /* Possibly more for PCIe page boundaries within input fragments */
91 if (PAGE_SIZE > EFX_PAGE_SIZE)
92 max_descs += max_t(unsigned int, MAX_SKB_FRAGS,
93 DIV_ROUND_UP(GSO_MAX_SIZE, EFX_PAGE_SIZE));
94
95 return max_descs;
96}
97
Ben Hutchings14bf7182012-05-22 01:27:58 +010098/* Get partner of a TX queue, seen as part of the same net core queue */
99static struct efx_tx_queue *efx_tx_queue_partner(struct efx_tx_queue *tx_queue)
100{
101 if (tx_queue->queue & EFX_TXQ_TYPE_OFFLOAD)
102 return tx_queue - EFX_TXQ_TYPE_OFFLOAD;
103 else
104 return tx_queue + EFX_TXQ_TYPE_OFFLOAD;
105}
106
107static void efx_tx_maybe_stop_queue(struct efx_tx_queue *txq1)
108{
109 /* We need to consider both queues that the net core sees as one */
110 struct efx_tx_queue *txq2 = efx_tx_queue_partner(txq1);
111 struct efx_nic *efx = txq1->efx;
112 unsigned int fill_level;
113
114 fill_level = max(txq1->insert_count - txq1->old_read_count,
115 txq2->insert_count - txq2->old_read_count);
116 if (likely(fill_level < efx->txq_stop_thresh))
117 return;
118
119 /* We used the stale old_read_count above, which gives us a
120 * pessimistic estimate of the fill level (which may even
121 * validly be >= efx->txq_entries). Now try again using
122 * read_count (more likely to be a cache miss).
123 *
124 * If we read read_count and then conditionally stop the
125 * queue, it is possible for the completion path to race with
126 * us and complete all outstanding descriptors in the middle,
127 * after which there will be no more completions to wake it.
128 * Therefore we stop the queue first, then read read_count
129 * (with a memory barrier to ensure the ordering), then
130 * restart the queue if the fill level turns out to be low
131 * enough.
132 */
133 netif_tx_stop_queue(txq1->core_txq);
134 smp_mb();
135 txq1->old_read_count = ACCESS_ONCE(txq1->read_count);
136 txq2->old_read_count = ACCESS_ONCE(txq2->read_count);
137
138 fill_level = max(txq1->insert_count - txq1->old_read_count,
139 txq2->insert_count - txq2->old_read_count);
140 EFX_BUG_ON_PARANOID(fill_level >= efx->txq_entries);
141 if (likely(fill_level < efx->txq_stop_thresh)) {
142 smp_mb();
143 if (likely(!efx->loopback_selftest))
144 netif_tx_start_queue(txq1->core_txq);
145 }
146}
147
Ben Hutchings8ceee662008-04-27 12:55:59 +0100148/*
149 * Add a socket buffer to a TX queue
150 *
151 * This maps all fragments of a socket buffer for DMA and adds them to
152 * the TX queue. The queue's insert pointer will be incremented by
153 * the number of fragments in the socket buffer.
154 *
155 * If any DMA mapping fails, any mapped fragments will be unmapped,
156 * the queue's insert pointer will be restored to its original value.
157 *
Ben Hutchings497f5ba2009-11-23 16:07:05 +0000158 * This function is split out from efx_hard_start_xmit to allow the
159 * loopback test to direct packets via specific TX queues.
160 *
Ben Hutchings14bf7182012-05-22 01:27:58 +0100161 * Returns NETDEV_TX_OK.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100162 * You must hold netif_tx_lock() to call this function.
163 */
Ben Hutchings497f5ba2009-11-23 16:07:05 +0000164netdev_tx_t efx_enqueue_skb(struct efx_tx_queue *tx_queue, struct sk_buff *skb)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100165{
166 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings0e33d872012-05-17 17:46:55 +0100167 struct device *dma_dev = &efx->pci_dev->dev;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100168 struct efx_tx_buffer *buffer;
169 skb_frag_t *fragment;
Ben Hutchings14bf7182012-05-22 01:27:58 +0100170 unsigned int len, unmap_len = 0, insert_ptr;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100171 dma_addr_t dma_addr, unmap_addr = 0;
172 unsigned int dma_len;
Ben Hutchings7668ff92012-05-17 20:52:20 +0100173 unsigned short dma_flags;
Ben Hutchings14bf7182012-05-22 01:27:58 +0100174 int i = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100175
176 EFX_BUG_ON_PARANOID(tx_queue->write_count != tx_queue->insert_count);
177
Ben Hutchings9bc183d2009-11-23 16:06:47 +0000178 if (skb_shinfo(skb)->gso_size)
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100179 return efx_enqueue_skb_tso(tx_queue, skb);
180
Ben Hutchings8ceee662008-04-27 12:55:59 +0100181 /* Get size of the initial fragment */
182 len = skb_headlen(skb);
183
Ben Hutchingsbb145a92009-03-20 13:25:39 +0000184 /* Pad if necessary */
185 if (EFX_WORKAROUND_15592(efx) && skb->len <= 32) {
186 EFX_BUG_ON_PARANOID(skb->data_len);
187 len = 32 + 1;
188 if (skb_pad(skb, len - skb->len))
189 return NETDEV_TX_OK;
190 }
191
Ben Hutchings0e33d872012-05-17 17:46:55 +0100192 /* Map for DMA. Use dma_map_single rather than dma_map_page
Ben Hutchings8ceee662008-04-27 12:55:59 +0100193 * since this is more efficient on machines with sparse
194 * memory.
195 */
Ben Hutchings7668ff92012-05-17 20:52:20 +0100196 dma_flags = EFX_TX_BUF_MAP_SINGLE;
Ben Hutchings0e33d872012-05-17 17:46:55 +0100197 dma_addr = dma_map_single(dma_dev, skb->data, len, PCI_DMA_TODEVICE);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100198
199 /* Process all fragments */
200 while (1) {
Ben Hutchings0e33d872012-05-17 17:46:55 +0100201 if (unlikely(dma_mapping_error(dma_dev, dma_addr)))
202 goto dma_err;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100203
204 /* Store fields for marking in the per-fragment final
205 * descriptor */
206 unmap_len = len;
207 unmap_addr = dma_addr;
208
209 /* Add to TX queue, splitting across DMA boundaries */
210 do {
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000211 insert_ptr = tx_queue->insert_count & tx_queue->ptr_mask;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100212 buffer = &tx_queue->buffer[insert_ptr];
Ben Hutchings7668ff92012-05-17 20:52:20 +0100213 EFX_BUG_ON_PARANOID(buffer->flags);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100214 EFX_BUG_ON_PARANOID(buffer->len);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100215 EFX_BUG_ON_PARANOID(buffer->unmap_len);
216
Ben Hutchings63f19882009-10-23 08:31:20 +0000217 dma_len = efx_max_tx_len(efx, dma_addr);
218 if (likely(dma_len >= len))
Ben Hutchings8ceee662008-04-27 12:55:59 +0100219 dma_len = len;
220
Ben Hutchings8ceee662008-04-27 12:55:59 +0100221 /* Fill out per descriptor fields */
222 buffer->len = dma_len;
223 buffer->dma_addr = dma_addr;
Ben Hutchings7668ff92012-05-17 20:52:20 +0100224 buffer->flags = EFX_TX_BUF_CONT;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100225 len -= dma_len;
226 dma_addr += dma_len;
227 ++tx_queue->insert_count;
228 } while (len);
229
230 /* Transfer ownership of the unmapping to the final buffer */
Ben Hutchings7668ff92012-05-17 20:52:20 +0100231 buffer->flags = EFX_TX_BUF_CONT | dma_flags;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100232 buffer->unmap_len = unmap_len;
233 unmap_len = 0;
234
235 /* Get address and size of next fragment */
236 if (i >= skb_shinfo(skb)->nr_frags)
237 break;
238 fragment = &skb_shinfo(skb)->frags[i];
Eric Dumazet9e903e02011-10-18 21:00:24 +0000239 len = skb_frag_size(fragment);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100240 i++;
241 /* Map for DMA */
Ben Hutchings7668ff92012-05-17 20:52:20 +0100242 dma_flags = 0;
Ben Hutchings0e33d872012-05-17 17:46:55 +0100243 dma_addr = skb_frag_dma_map(dma_dev, fragment, 0, len,
Ian Campbell5d6bcdf2011-10-06 11:10:48 +0100244 DMA_TO_DEVICE);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100245 }
246
247 /* Transfer ownership of the skb to the final buffer */
248 buffer->skb = skb;
Ben Hutchings7668ff92012-05-17 20:52:20 +0100249 buffer->flags = EFX_TX_BUF_SKB | dma_flags;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100250
Tom Herbertc3940992011-11-28 16:33:43 +0000251 netdev_tx_sent_queue(tx_queue->core_txq, skb->len);
252
Ben Hutchings8ceee662008-04-27 12:55:59 +0100253 /* Pass off to hardware */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000254 efx_nic_push_buffers(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100255
Ben Hutchings14bf7182012-05-22 01:27:58 +0100256 efx_tx_maybe_stop_queue(tx_queue);
257
Ben Hutchings8ceee662008-04-27 12:55:59 +0100258 return NETDEV_TX_OK;
259
Ben Hutchings0e33d872012-05-17 17:46:55 +0100260 dma_err:
Ben Hutchings62776d02010-06-23 11:30:07 +0000261 netif_err(efx, tx_err, efx->net_dev,
262 " TX queue %d could not map skb with %d bytes %d "
263 "fragments for DMA\n", tx_queue->queue, skb->len,
264 skb_shinfo(skb)->nr_frags + 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100265
266 /* Mark the packet as transmitted, and free the SKB ourselves */
Ben Hutchings9bc183d2009-11-23 16:06:47 +0000267 dev_kfree_skb_any(skb);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100268
Ben Hutchings8ceee662008-04-27 12:55:59 +0100269 /* Work backwards until we hit the original insert pointer value */
270 while (tx_queue->insert_count != tx_queue->write_count) {
Tom Herbertc3940992011-11-28 16:33:43 +0000271 unsigned int pkts_compl = 0, bytes_compl = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100272 --tx_queue->insert_count;
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000273 insert_ptr = tx_queue->insert_count & tx_queue->ptr_mask;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100274 buffer = &tx_queue->buffer[insert_ptr];
Tom Herbertc3940992011-11-28 16:33:43 +0000275 efx_dequeue_buffer(tx_queue, buffer, &pkts_compl, &bytes_compl);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100276 }
277
278 /* Free the fragment we were mid-way through pushing */
Ben Hutchingsecbd95c2008-09-01 12:46:40 +0100279 if (unmap_len) {
Ben Hutchings7668ff92012-05-17 20:52:20 +0100280 if (dma_flags & EFX_TX_BUF_MAP_SINGLE)
Ben Hutchings0e33d872012-05-17 17:46:55 +0100281 dma_unmap_single(dma_dev, unmap_addr, unmap_len,
282 DMA_TO_DEVICE);
Ben Hutchingsecbd95c2008-09-01 12:46:40 +0100283 else
Ben Hutchings0e33d872012-05-17 17:46:55 +0100284 dma_unmap_page(dma_dev, unmap_addr, unmap_len,
285 DMA_TO_DEVICE);
Ben Hutchingsecbd95c2008-09-01 12:46:40 +0100286 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100287
Ben Hutchings14bf7182012-05-22 01:27:58 +0100288 return NETDEV_TX_OK;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100289}
290
291/* Remove packets from the TX queue
292 *
293 * This removes packets from the TX queue, up to and including the
294 * specified index.
295 */
Ben Hutchings4d566062008-09-01 12:47:12 +0100296static void efx_dequeue_buffers(struct efx_tx_queue *tx_queue,
Tom Herbertc3940992011-11-28 16:33:43 +0000297 unsigned int index,
298 unsigned int *pkts_compl,
299 unsigned int *bytes_compl)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100300{
301 struct efx_nic *efx = tx_queue->efx;
302 unsigned int stop_index, read_ptr;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100303
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000304 stop_index = (index + 1) & tx_queue->ptr_mask;
305 read_ptr = tx_queue->read_count & tx_queue->ptr_mask;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100306
307 while (read_ptr != stop_index) {
308 struct efx_tx_buffer *buffer = &tx_queue->buffer[read_ptr];
309 if (unlikely(buffer->len == 0)) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000310 netif_err(efx, tx_err, efx->net_dev,
311 "TX queue %d spurious TX completion id %x\n",
312 tx_queue->queue, read_ptr);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100313 efx_schedule_reset(efx, RESET_TYPE_TX_SKIP);
314 return;
315 }
316
Tom Herbertc3940992011-11-28 16:33:43 +0000317 efx_dequeue_buffer(tx_queue, buffer, pkts_compl, bytes_compl);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100318
319 ++tx_queue->read_count;
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000320 read_ptr = tx_queue->read_count & tx_queue->ptr_mask;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100321 }
322}
323
Ben Hutchings8ceee662008-04-27 12:55:59 +0100324/* Initiate a packet transmission. We use one channel per CPU
325 * (sharing when we have more CPUs than channels). On Falcon, the TX
326 * completion events will be directed back to the CPU that transmitted
327 * the packet, which should be cache-efficient.
328 *
329 * Context: non-blocking.
330 * Note that returning anything other than NETDEV_TX_OK will cause the
331 * OS to free the skb.
332 */
Stephen Hemminger613573252009-08-31 19:50:58 +0000333netdev_tx_t efx_hard_start_xmit(struct sk_buff *skb,
Ben Hutchings2d0cc562012-02-17 00:10:45 +0000334 struct net_device *net_dev)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100335{
Ben Hutchings767e4682008-09-01 12:43:14 +0100336 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings60ac1062008-09-01 12:44:59 +0100337 struct efx_tx_queue *tx_queue;
Ben Hutchings94b274b2011-01-10 21:18:20 +0000338 unsigned index, type;
Ben Hutchings60ac1062008-09-01 12:44:59 +0100339
Ben Hutchingse4abce82011-05-16 18:51:24 +0100340 EFX_WARN_ON_PARANOID(!netif_device_present(net_dev));
Ben Hutchingsa7ef5932009-03-04 09:52:37 +0000341
Stuart Hodgson7c236c42012-09-03 11:09:36 +0100342 /* PTP "event" packet */
343 if (unlikely(efx_xmit_with_hwtstamp(skb)) &&
344 unlikely(efx_ptp_is_ptp_tx(efx, skb))) {
345 return efx_ptp_tx(efx, skb);
346 }
347
Ben Hutchings94b274b2011-01-10 21:18:20 +0000348 index = skb_get_queue_mapping(skb);
349 type = skb->ip_summed == CHECKSUM_PARTIAL ? EFX_TXQ_TYPE_OFFLOAD : 0;
350 if (index >= efx->n_tx_channels) {
351 index -= efx->n_tx_channels;
352 type |= EFX_TXQ_TYPE_HIGHPRI;
353 }
354 tx_queue = efx_get_tx_queue(efx, index, type);
Ben Hutchings60ac1062008-09-01 12:44:59 +0100355
Ben Hutchings497f5ba2009-11-23 16:07:05 +0000356 return efx_enqueue_skb(tx_queue, skb);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100357}
358
Ben Hutchings60031fc2011-01-12 18:39:40 +0000359void efx_init_tx_queue_core_txq(struct efx_tx_queue *tx_queue)
360{
Ben Hutchings94b274b2011-01-10 21:18:20 +0000361 struct efx_nic *efx = tx_queue->efx;
362
Ben Hutchings60031fc2011-01-12 18:39:40 +0000363 /* Must be inverse of queue lookup in efx_hard_start_xmit() */
Ben Hutchings94b274b2011-01-10 21:18:20 +0000364 tx_queue->core_txq =
365 netdev_get_tx_queue(efx->net_dev,
366 tx_queue->queue / EFX_TXQ_TYPES +
367 ((tx_queue->queue & EFX_TXQ_TYPE_HIGHPRI) ?
368 efx->n_tx_channels : 0));
369}
370
371int efx_setup_tc(struct net_device *net_dev, u8 num_tc)
372{
373 struct efx_nic *efx = netdev_priv(net_dev);
374 struct efx_channel *channel;
375 struct efx_tx_queue *tx_queue;
376 unsigned tc;
377 int rc;
378
379 if (efx_nic_rev(efx) < EFX_REV_FALCON_B0 || num_tc > EFX_MAX_TX_TC)
380 return -EINVAL;
381
382 if (num_tc == net_dev->num_tc)
383 return 0;
384
385 for (tc = 0; tc < num_tc; tc++) {
386 net_dev->tc_to_txq[tc].offset = tc * efx->n_tx_channels;
387 net_dev->tc_to_txq[tc].count = efx->n_tx_channels;
388 }
389
390 if (num_tc > net_dev->num_tc) {
391 /* Initialise high-priority queues as necessary */
392 efx_for_each_channel(channel, efx) {
393 efx_for_each_possible_channel_tx_queue(tx_queue,
394 channel) {
395 if (!(tx_queue->queue & EFX_TXQ_TYPE_HIGHPRI))
396 continue;
397 if (!tx_queue->buffer) {
398 rc = efx_probe_tx_queue(tx_queue);
399 if (rc)
400 return rc;
401 }
402 if (!tx_queue->initialised)
403 efx_init_tx_queue(tx_queue);
404 efx_init_tx_queue_core_txq(tx_queue);
405 }
406 }
407 } else {
408 /* Reduce number of classes before number of queues */
409 net_dev->num_tc = num_tc;
410 }
411
412 rc = netif_set_real_num_tx_queues(net_dev,
413 max_t(int, num_tc, 1) *
414 efx->n_tx_channels);
415 if (rc)
416 return rc;
417
418 /* Do not destroy high-priority queues when they become
419 * unused. We would have to flush them first, and it is
420 * fairly difficult to flush a subset of TX queues. Leave
421 * it to efx_fini_channels().
422 */
423
424 net_dev->num_tc = num_tc;
425 return 0;
Ben Hutchings60031fc2011-01-12 18:39:40 +0000426}
427
Ben Hutchings8ceee662008-04-27 12:55:59 +0100428void efx_xmit_done(struct efx_tx_queue *tx_queue, unsigned int index)
429{
430 unsigned fill_level;
431 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings14bf7182012-05-22 01:27:58 +0100432 struct efx_tx_queue *txq2;
Tom Herbertc3940992011-11-28 16:33:43 +0000433 unsigned int pkts_compl = 0, bytes_compl = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100434
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000435 EFX_BUG_ON_PARANOID(index > tx_queue->ptr_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100436
Tom Herbertc3940992011-11-28 16:33:43 +0000437 efx_dequeue_buffers(tx_queue, index, &pkts_compl, &bytes_compl);
438 netdev_tx_completed_queue(tx_queue->core_txq, pkts_compl, bytes_compl);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100439
Ben Hutchings14bf7182012-05-22 01:27:58 +0100440 /* See if we need to restart the netif queue. This memory
441 * barrier ensures that we write read_count (inside
442 * efx_dequeue_buffers()) before reading the queue status.
443 */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100444 smp_mb();
Ben Hutchingsc04bfc62010-12-10 01:24:16 +0000445 if (unlikely(netif_tx_queue_stopped(tx_queue->core_txq)) &&
Neil Turton9d1aea62011-04-04 13:46:23 +0100446 likely(efx->port_enabled) &&
Ben Hutchingse4abce82011-05-16 18:51:24 +0100447 likely(netif_device_present(efx->net_dev))) {
Ben Hutchings14bf7182012-05-22 01:27:58 +0100448 txq2 = efx_tx_queue_partner(tx_queue);
449 fill_level = max(tx_queue->insert_count - tx_queue->read_count,
450 txq2->insert_count - txq2->read_count);
451 if (fill_level <= efx->txq_wake_thresh)
Ben Hutchingsc04bfc62010-12-10 01:24:16 +0000452 netif_tx_wake_queue(tx_queue->core_txq);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100453 }
Ben Hutchingscd385572010-11-15 23:53:11 +0000454
455 /* Check whether the hardware queue is now empty */
456 if ((int)(tx_queue->read_count - tx_queue->old_write_count) >= 0) {
457 tx_queue->old_write_count = ACCESS_ONCE(tx_queue->write_count);
458 if (tx_queue->read_count == tx_queue->old_write_count) {
459 smp_mb();
460 tx_queue->empty_read_count =
461 tx_queue->read_count | EFX_EMPTY_COUNT_VALID;
462 }
463 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100464}
465
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100466/* Size of page-based TSO header buffers. Larger blocks must be
467 * allocated from the heap.
468 */
469#define TSOH_STD_SIZE 128
470#define TSOH_PER_PAGE (PAGE_SIZE / TSOH_STD_SIZE)
471
472/* At most half the descriptors in the queue at any time will refer to
473 * a TSO header buffer, since they must always be followed by a
474 * payload descriptor referring to an skb.
475 */
476static unsigned int efx_tsoh_page_count(struct efx_tx_queue *tx_queue)
477{
478 return DIV_ROUND_UP(tx_queue->ptr_mask + 1, 2 * TSOH_PER_PAGE);
479}
480
Ben Hutchings8ceee662008-04-27 12:55:59 +0100481int efx_probe_tx_queue(struct efx_tx_queue *tx_queue)
482{
483 struct efx_nic *efx = tx_queue->efx;
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000484 unsigned int entries;
Ben Hutchings7668ff92012-05-17 20:52:20 +0100485 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100486
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000487 /* Create the smallest power-of-two aligned ring */
488 entries = max(roundup_pow_of_two(efx->txq_entries), EFX_MIN_DMAQ_SIZE);
489 EFX_BUG_ON_PARANOID(entries > EFX_MAX_DMAQ_SIZE);
490 tx_queue->ptr_mask = entries - 1;
491
492 netif_dbg(efx, probe, efx->net_dev,
493 "creating TX queue %d size %#x mask %#x\n",
494 tx_queue->queue, efx->txq_entries, tx_queue->ptr_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100495
496 /* Allocate software ring */
Thomas Meyerc2e4e252011-12-02 12:36:13 +0000497 tx_queue->buffer = kcalloc(entries, sizeof(*tx_queue->buffer),
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000498 GFP_KERNEL);
Ben Hutchings60ac1062008-09-01 12:44:59 +0100499 if (!tx_queue->buffer)
500 return -ENOMEM;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100501
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100502 if (tx_queue->queue & EFX_TXQ_TYPE_OFFLOAD) {
503 tx_queue->tsoh_page =
504 kcalloc(efx_tsoh_page_count(tx_queue),
505 sizeof(tx_queue->tsoh_page[0]), GFP_KERNEL);
506 if (!tx_queue->tsoh_page) {
507 rc = -ENOMEM;
508 goto fail1;
509 }
510 }
511
Ben Hutchings8ceee662008-04-27 12:55:59 +0100512 /* Allocate hardware ring */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000513 rc = efx_nic_probe_tx(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100514 if (rc)
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100515 goto fail2;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100516
517 return 0;
518
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100519fail2:
520 kfree(tx_queue->tsoh_page);
521 tx_queue->tsoh_page = NULL;
522fail1:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100523 kfree(tx_queue->buffer);
524 tx_queue->buffer = NULL;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100525 return rc;
526}
527
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100528void efx_init_tx_queue(struct efx_tx_queue *tx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100529{
Ben Hutchings62776d02010-06-23 11:30:07 +0000530 netif_dbg(tx_queue->efx, drv, tx_queue->efx->net_dev,
531 "initialising TX queue %d\n", tx_queue->queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100532
533 tx_queue->insert_count = 0;
534 tx_queue->write_count = 0;
Ben Hutchingscd385572010-11-15 23:53:11 +0000535 tx_queue->old_write_count = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100536 tx_queue->read_count = 0;
537 tx_queue->old_read_count = 0;
Ben Hutchingscd385572010-11-15 23:53:11 +0000538 tx_queue->empty_read_count = 0 | EFX_EMPTY_COUNT_VALID;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100539
540 /* Set up TX descriptor ring */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000541 efx_nic_init_tx(tx_queue);
Ben Hutchings94b274b2011-01-10 21:18:20 +0000542
543 tx_queue->initialised = true;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100544}
545
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100546void efx_fini_tx_queue(struct efx_tx_queue *tx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100547{
548 struct efx_tx_buffer *buffer;
549
Ben Hutchingse42c3d82013-05-27 16:52:54 +0100550 netif_dbg(tx_queue->efx, drv, tx_queue->efx->net_dev,
551 "shutting down TX queue %d\n", tx_queue->queue);
552
Ben Hutchings8ceee662008-04-27 12:55:59 +0100553 if (!tx_queue->buffer)
554 return;
555
556 /* Free any buffers left in the ring */
557 while (tx_queue->read_count != tx_queue->write_count) {
Tom Herbertc3940992011-11-28 16:33:43 +0000558 unsigned int pkts_compl = 0, bytes_compl = 0;
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000559 buffer = &tx_queue->buffer[tx_queue->read_count & tx_queue->ptr_mask];
Tom Herbertc3940992011-11-28 16:33:43 +0000560 efx_dequeue_buffer(tx_queue, buffer, &pkts_compl, &bytes_compl);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100561
562 ++tx_queue->read_count;
563 }
Tom Herbertc3940992011-11-28 16:33:43 +0000564 netdev_tx_reset_queue(tx_queue->core_txq);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100565}
566
Ben Hutchings8ceee662008-04-27 12:55:59 +0100567void efx_remove_tx_queue(struct efx_tx_queue *tx_queue)
568{
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100569 int i;
570
Ben Hutchings94b274b2011-01-10 21:18:20 +0000571 if (!tx_queue->buffer)
572 return;
573
Ben Hutchings62776d02010-06-23 11:30:07 +0000574 netif_dbg(tx_queue->efx, drv, tx_queue->efx->net_dev,
575 "destroying TX queue %d\n", tx_queue->queue);
Ben Hutchings152b6a62009-11-29 03:43:56 +0000576 efx_nic_remove_tx(tx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100577
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100578 if (tx_queue->tsoh_page) {
579 for (i = 0; i < efx_tsoh_page_count(tx_queue); i++)
580 efx_nic_free_buffer(tx_queue->efx,
581 &tx_queue->tsoh_page[i]);
582 kfree(tx_queue->tsoh_page);
583 tx_queue->tsoh_page = NULL;
584 }
585
Ben Hutchings8ceee662008-04-27 12:55:59 +0100586 kfree(tx_queue->buffer);
587 tx_queue->buffer = NULL;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100588}
589
590
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100591/* Efx TCP segmentation acceleration.
592 *
593 * Why? Because by doing it here in the driver we can go significantly
594 * faster than the GSO.
595 *
596 * Requires TX checksum offload support.
597 */
598
599/* Number of bytes inserted at the start of a TSO header buffer,
600 * similar to NET_IP_ALIGN.
601 */
Ben Hutchings13e9ab12008-09-01 12:50:28 +0100602#ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100603#define TSOH_OFFSET 0
604#else
605#define TSOH_OFFSET NET_IP_ALIGN
606#endif
607
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100608#define PTR_DIFF(p1, p2) ((u8 *)(p1) - (u8 *)(p2))
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100609
610/**
611 * struct tso_state - TSO state for an SKB
Ben Hutchings23d9e602008-09-01 12:47:02 +0100612 * @out_len: Remaining length in current segment
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100613 * @seqnum: Current sequence number
Ben Hutchings23d9e602008-09-01 12:47:02 +0100614 * @ipv4_id: Current IPv4 ID, host endian
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100615 * @packet_space: Remaining space in current packet
Ben Hutchings23d9e602008-09-01 12:47:02 +0100616 * @dma_addr: DMA address of current position
617 * @in_len: Remaining length in current SKB fragment
618 * @unmap_len: Length of SKB fragment
619 * @unmap_addr: DMA address of SKB fragment
Ben Hutchings7668ff92012-05-17 20:52:20 +0100620 * @dma_flags: TX buffer flags for DMA mapping - %EFX_TX_BUF_MAP_SINGLE or 0
Ben Hutchings738a8f42009-11-29 15:16:05 +0000621 * @protocol: Network protocol (after any VLAN header)
Ben Hutchings97142842012-06-22 02:44:01 +0100622 * @ip_off: Offset of IP header
623 * @tcp_off: Offset of TCP header
Ben Hutchings23d9e602008-09-01 12:47:02 +0100624 * @header_len: Number of bytes of header
Ben Hutchings53cb13c2012-06-19 20:03:41 +0100625 * @ip_base_len: IPv4 tot_len or IPv6 payload_len, before TCP payload
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100626 *
627 * The state used during segmentation. It is put into this data structure
628 * just to make it easy to pass into inline functions.
629 */
630struct tso_state {
Ben Hutchings23d9e602008-09-01 12:47:02 +0100631 /* Output position */
632 unsigned out_len;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100633 unsigned seqnum;
Ben Hutchings23d9e602008-09-01 12:47:02 +0100634 unsigned ipv4_id;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100635 unsigned packet_space;
636
Ben Hutchings23d9e602008-09-01 12:47:02 +0100637 /* Input position */
638 dma_addr_t dma_addr;
639 unsigned in_len;
640 unsigned unmap_len;
641 dma_addr_t unmap_addr;
Ben Hutchings7668ff92012-05-17 20:52:20 +0100642 unsigned short dma_flags;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100643
Ben Hutchings738a8f42009-11-29 15:16:05 +0000644 __be16 protocol;
Ben Hutchings97142842012-06-22 02:44:01 +0100645 unsigned int ip_off;
646 unsigned int tcp_off;
Ben Hutchings23d9e602008-09-01 12:47:02 +0100647 unsigned header_len;
Ben Hutchings53cb13c2012-06-19 20:03:41 +0100648 unsigned int ip_base_len;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100649};
650
651
652/*
653 * Verify that our various assumptions about sk_buffs and the conditions
Ben Hutchings738a8f42009-11-29 15:16:05 +0000654 * under which TSO will be attempted hold true. Return the protocol number.
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100655 */
Ben Hutchings738a8f42009-11-29 15:16:05 +0000656static __be16 efx_tso_check_protocol(struct sk_buff *skb)
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100657{
Ben Hutchings740847d2008-09-01 12:48:23 +0100658 __be16 protocol = skb->protocol;
659
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100660 EFX_BUG_ON_PARANOID(((struct ethhdr *)skb->data)->h_proto !=
Ben Hutchings740847d2008-09-01 12:48:23 +0100661 protocol);
662 if (protocol == htons(ETH_P_8021Q)) {
Ben Hutchings740847d2008-09-01 12:48:23 +0100663 struct vlan_ethhdr *veh = (struct vlan_ethhdr *)skb->data;
664 protocol = veh->h_vlan_encapsulated_proto;
Ben Hutchings740847d2008-09-01 12:48:23 +0100665 }
666
Ben Hutchings738a8f42009-11-29 15:16:05 +0000667 if (protocol == htons(ETH_P_IP)) {
668 EFX_BUG_ON_PARANOID(ip_hdr(skb)->protocol != IPPROTO_TCP);
669 } else {
670 EFX_BUG_ON_PARANOID(protocol != htons(ETH_P_IPV6));
671 EFX_BUG_ON_PARANOID(ipv6_hdr(skb)->nexthdr != NEXTHDR_TCP);
672 }
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100673 EFX_BUG_ON_PARANOID((PTR_DIFF(tcp_hdr(skb), skb->data)
674 + (tcp_hdr(skb)->doff << 2u)) >
675 skb_headlen(skb));
Ben Hutchings738a8f42009-11-29 15:16:05 +0000676
677 return protocol;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100678}
679
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100680static u8 *efx_tsoh_get_buffer(struct efx_tx_queue *tx_queue,
681 struct efx_tx_buffer *buffer, unsigned int len)
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100682{
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100683 u8 *result;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100684
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100685 EFX_BUG_ON_PARANOID(buffer->len);
686 EFX_BUG_ON_PARANOID(buffer->flags);
687 EFX_BUG_ON_PARANOID(buffer->unmap_len);
688
689 if (likely(len <= TSOH_STD_SIZE - TSOH_OFFSET)) {
690 unsigned index =
691 (tx_queue->insert_count & tx_queue->ptr_mask) / 2;
692 struct efx_buffer *page_buf =
693 &tx_queue->tsoh_page[index / TSOH_PER_PAGE];
694 unsigned offset =
695 TSOH_STD_SIZE * (index % TSOH_PER_PAGE) + TSOH_OFFSET;
696
697 if (unlikely(!page_buf->addr) &&
Ben Hutchings0d19a542012-09-18 21:59:52 +0100698 efx_nic_alloc_buffer(tx_queue->efx, page_buf, PAGE_SIZE,
699 GFP_ATOMIC))
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100700 return NULL;
701
702 result = (u8 *)page_buf->addr + offset;
703 buffer->dma_addr = page_buf->dma_addr + offset;
704 buffer->flags = EFX_TX_BUF_CONT;
705 } else {
706 tx_queue->tso_long_headers++;
707
708 buffer->heap_buf = kmalloc(TSOH_OFFSET + len, GFP_ATOMIC);
709 if (unlikely(!buffer->heap_buf))
710 return NULL;
711 result = (u8 *)buffer->heap_buf + TSOH_OFFSET;
712 buffer->flags = EFX_TX_BUF_CONT | EFX_TX_BUF_HEAP;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100713 }
714
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100715 buffer->len = len;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100716
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100717 return result;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100718}
719
720/**
721 * efx_tx_queue_insert - push descriptors onto the TX queue
722 * @tx_queue: Efx TX queue
723 * @dma_addr: DMA address of fragment
724 * @len: Length of fragment
Ben Hutchingsecbd95c2008-09-01 12:46:40 +0100725 * @final_buffer: The final buffer inserted into the queue
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100726 *
Ben Hutchings14bf7182012-05-22 01:27:58 +0100727 * Push descriptors onto the TX queue.
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100728 */
Ben Hutchings14bf7182012-05-22 01:27:58 +0100729static void efx_tx_queue_insert(struct efx_tx_queue *tx_queue,
730 dma_addr_t dma_addr, unsigned len,
731 struct efx_tx_buffer **final_buffer)
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100732{
733 struct efx_tx_buffer *buffer;
734 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings14bf7182012-05-22 01:27:58 +0100735 unsigned dma_len, insert_ptr;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100736
737 EFX_BUG_ON_PARANOID(len <= 0);
738
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100739 while (1) {
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000740 insert_ptr = tx_queue->insert_count & tx_queue->ptr_mask;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100741 buffer = &tx_queue->buffer[insert_ptr];
742 ++tx_queue->insert_count;
743
744 EFX_BUG_ON_PARANOID(tx_queue->insert_count -
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000745 tx_queue->read_count >=
746 efx->txq_entries);
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100747
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100748 EFX_BUG_ON_PARANOID(buffer->len);
749 EFX_BUG_ON_PARANOID(buffer->unmap_len);
Ben Hutchings7668ff92012-05-17 20:52:20 +0100750 EFX_BUG_ON_PARANOID(buffer->flags);
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100751
752 buffer->dma_addr = dma_addr;
753
Ben Hutchings63f19882009-10-23 08:31:20 +0000754 dma_len = efx_max_tx_len(efx, dma_addr);
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100755
756 /* If there is enough space to send then do so */
757 if (dma_len >= len)
758 break;
759
Ben Hutchings7668ff92012-05-17 20:52:20 +0100760 buffer->len = dma_len;
761 buffer->flags = EFX_TX_BUF_CONT;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100762 dma_addr += dma_len;
763 len -= dma_len;
764 }
765
766 EFX_BUG_ON_PARANOID(!len);
767 buffer->len = len;
Ben Hutchingsecbd95c2008-09-01 12:46:40 +0100768 *final_buffer = buffer;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100769}
770
771
772/*
773 * Put a TSO header into the TX queue.
774 *
775 * This is special-cased because we know that it is small enough to fit in
776 * a single fragment, and we know it doesn't cross a page boundary. It
777 * also allows us to not worry about end-of-packet etc.
778 */
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100779static int efx_tso_put_header(struct efx_tx_queue *tx_queue,
780 struct efx_tx_buffer *buffer, u8 *header)
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100781{
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100782 if (unlikely(buffer->flags & EFX_TX_BUF_HEAP)) {
783 buffer->dma_addr = dma_map_single(&tx_queue->efx->pci_dev->dev,
784 header, buffer->len,
785 DMA_TO_DEVICE);
786 if (unlikely(dma_mapping_error(&tx_queue->efx->pci_dev->dev,
787 buffer->dma_addr))) {
788 kfree(buffer->heap_buf);
789 buffer->len = 0;
790 buffer->flags = 0;
791 return -ENOMEM;
792 }
793 buffer->unmap_len = buffer->len;
794 buffer->flags |= EFX_TX_BUF_MAP_SINGLE;
795 }
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100796
797 ++tx_queue->insert_count;
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100798 return 0;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100799}
800
801
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100802/* Remove buffers put into a tx_queue. None of the buffers must have
803 * an skb attached.
804 */
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100805static void efx_enqueue_unwind(struct efx_tx_queue *tx_queue)
806{
807 struct efx_tx_buffer *buffer;
808
809 /* Work backwards until we hit the original insert pointer value */
810 while (tx_queue->insert_count != tx_queue->write_count) {
811 --tx_queue->insert_count;
812 buffer = &tx_queue->buffer[tx_queue->insert_count &
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000813 tx_queue->ptr_mask];
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100814 efx_dequeue_buffer(tx_queue, buffer, NULL, NULL);
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100815 }
816}
817
818
819/* Parse the SKB header and initialise state. */
Ben Hutchings4d566062008-09-01 12:47:12 +0100820static void tso_start(struct tso_state *st, const struct sk_buff *skb)
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100821{
Ben Hutchings97142842012-06-22 02:44:01 +0100822 st->ip_off = skb_network_header(skb) - skb->data;
823 st->tcp_off = skb_transport_header(skb) - skb->data;
824 st->header_len = st->tcp_off + (tcp_hdr(skb)->doff << 2u);
Ben Hutchings53cb13c2012-06-19 20:03:41 +0100825 if (st->protocol == htons(ETH_P_IP)) {
Ben Hutchings97142842012-06-22 02:44:01 +0100826 st->ip_base_len = st->header_len - st->ip_off;
Ben Hutchings738a8f42009-11-29 15:16:05 +0000827 st->ipv4_id = ntohs(ip_hdr(skb)->id);
Ben Hutchings53cb13c2012-06-19 20:03:41 +0100828 } else {
Ben Hutchings97142842012-06-22 02:44:01 +0100829 st->ip_base_len = st->header_len - st->tcp_off;
Ben Hutchings738a8f42009-11-29 15:16:05 +0000830 st->ipv4_id = 0;
Ben Hutchings53cb13c2012-06-19 20:03:41 +0100831 }
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100832 st->seqnum = ntohl(tcp_hdr(skb)->seq);
833
834 EFX_BUG_ON_PARANOID(tcp_hdr(skb)->urg);
835 EFX_BUG_ON_PARANOID(tcp_hdr(skb)->syn);
836 EFX_BUG_ON_PARANOID(tcp_hdr(skb)->rst);
837
Ben Hutchings23d9e602008-09-01 12:47:02 +0100838 st->out_len = skb->len - st->header_len;
839 st->unmap_len = 0;
Ben Hutchings7668ff92012-05-17 20:52:20 +0100840 st->dma_flags = 0;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100841}
842
Ben Hutchings4d566062008-09-01 12:47:12 +0100843static int tso_get_fragment(struct tso_state *st, struct efx_nic *efx,
844 skb_frag_t *frag)
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100845{
Ian Campbell4a22c4c2011-09-21 21:53:16 +0000846 st->unmap_addr = skb_frag_dma_map(&efx->pci_dev->dev, frag, 0,
Eric Dumazet9e903e02011-10-18 21:00:24 +0000847 skb_frag_size(frag), DMA_TO_DEVICE);
Ian Campbell5d6bcdf2011-10-06 11:10:48 +0100848 if (likely(!dma_mapping_error(&efx->pci_dev->dev, st->unmap_addr))) {
Ben Hutchings7668ff92012-05-17 20:52:20 +0100849 st->dma_flags = 0;
Eric Dumazet9e903e02011-10-18 21:00:24 +0000850 st->unmap_len = skb_frag_size(frag);
851 st->in_len = skb_frag_size(frag);
Ben Hutchings23d9e602008-09-01 12:47:02 +0100852 st->dma_addr = st->unmap_addr;
Ben Hutchingsecbd95c2008-09-01 12:46:40 +0100853 return 0;
854 }
855 return -ENOMEM;
856}
857
Ben Hutchings4d566062008-09-01 12:47:12 +0100858static int tso_get_head_fragment(struct tso_state *st, struct efx_nic *efx,
859 const struct sk_buff *skb)
Ben Hutchingsecbd95c2008-09-01 12:46:40 +0100860{
Ben Hutchings23d9e602008-09-01 12:47:02 +0100861 int hl = st->header_len;
Ben Hutchingsecbd95c2008-09-01 12:46:40 +0100862 int len = skb_headlen(skb) - hl;
863
Ben Hutchings0e33d872012-05-17 17:46:55 +0100864 st->unmap_addr = dma_map_single(&efx->pci_dev->dev, skb->data + hl,
865 len, DMA_TO_DEVICE);
866 if (likely(!dma_mapping_error(&efx->pci_dev->dev, st->unmap_addr))) {
Ben Hutchings7668ff92012-05-17 20:52:20 +0100867 st->dma_flags = EFX_TX_BUF_MAP_SINGLE;
Ben Hutchings23d9e602008-09-01 12:47:02 +0100868 st->unmap_len = len;
869 st->in_len = len;
870 st->dma_addr = st->unmap_addr;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100871 return 0;
872 }
873 return -ENOMEM;
874}
875
876
877/**
878 * tso_fill_packet_with_fragment - form descriptors for the current fragment
879 * @tx_queue: Efx TX queue
880 * @skb: Socket buffer
881 * @st: TSO state
882 *
883 * Form descriptors for the current fragment, until we reach the end
Ben Hutchings14bf7182012-05-22 01:27:58 +0100884 * of fragment or end-of-packet.
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100885 */
Ben Hutchings14bf7182012-05-22 01:27:58 +0100886static void tso_fill_packet_with_fragment(struct efx_tx_queue *tx_queue,
887 const struct sk_buff *skb,
888 struct tso_state *st)
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100889{
Ben Hutchingsecbd95c2008-09-01 12:46:40 +0100890 struct efx_tx_buffer *buffer;
Ben Hutchings14bf7182012-05-22 01:27:58 +0100891 int n;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100892
Ben Hutchings23d9e602008-09-01 12:47:02 +0100893 if (st->in_len == 0)
Ben Hutchings14bf7182012-05-22 01:27:58 +0100894 return;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100895 if (st->packet_space == 0)
Ben Hutchings14bf7182012-05-22 01:27:58 +0100896 return;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100897
Ben Hutchings23d9e602008-09-01 12:47:02 +0100898 EFX_BUG_ON_PARANOID(st->in_len <= 0);
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100899 EFX_BUG_ON_PARANOID(st->packet_space <= 0);
900
Ben Hutchings23d9e602008-09-01 12:47:02 +0100901 n = min(st->in_len, st->packet_space);
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100902
903 st->packet_space -= n;
Ben Hutchings23d9e602008-09-01 12:47:02 +0100904 st->out_len -= n;
905 st->in_len -= n;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100906
Ben Hutchings14bf7182012-05-22 01:27:58 +0100907 efx_tx_queue_insert(tx_queue, st->dma_addr, n, &buffer);
Ben Hutchingsecbd95c2008-09-01 12:46:40 +0100908
Ben Hutchings14bf7182012-05-22 01:27:58 +0100909 if (st->out_len == 0) {
910 /* Transfer ownership of the skb */
911 buffer->skb = skb;
912 buffer->flags = EFX_TX_BUF_SKB;
913 } else if (st->packet_space != 0) {
914 buffer->flags = EFX_TX_BUF_CONT;
915 }
916
917 if (st->in_len == 0) {
918 /* Transfer ownership of the DMA mapping */
919 buffer->unmap_len = st->unmap_len;
920 buffer->flags |= st->dma_flags;
921 st->unmap_len = 0;
Ben Hutchingsecbd95c2008-09-01 12:46:40 +0100922 }
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100923
Ben Hutchings23d9e602008-09-01 12:47:02 +0100924 st->dma_addr += n;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100925}
926
927
928/**
929 * tso_start_new_packet - generate a new header and prepare for the new packet
930 * @tx_queue: Efx TX queue
931 * @skb: Socket buffer
932 * @st: TSO state
933 *
934 * Generate a new header and prepare for the new packet. Return 0 on
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100935 * success, or -%ENOMEM if failed to alloc header.
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100936 */
Ben Hutchings4d566062008-09-01 12:47:12 +0100937static int tso_start_new_packet(struct efx_tx_queue *tx_queue,
938 const struct sk_buff *skb,
939 struct tso_state *st)
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100940{
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100941 struct efx_tx_buffer *buffer =
942 &tx_queue->buffer[tx_queue->insert_count & tx_queue->ptr_mask];
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100943 struct tcphdr *tsoh_th;
944 unsigned ip_length;
945 u8 *header;
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100946 int rc;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100947
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100948 /* Allocate and insert a DMA-mapped header buffer. */
949 header = efx_tsoh_get_buffer(tx_queue, buffer, st->header_len);
950 if (!header)
951 return -ENOMEM;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100952
Ben Hutchings97142842012-06-22 02:44:01 +0100953 tsoh_th = (struct tcphdr *)(header + st->tcp_off);
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100954
955 /* Copy and update the headers. */
Ben Hutchings23d9e602008-09-01 12:47:02 +0100956 memcpy(header, skb->data, st->header_len);
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100957
958 tsoh_th->seq = htonl(st->seqnum);
959 st->seqnum += skb_shinfo(skb)->gso_size;
Ben Hutchings23d9e602008-09-01 12:47:02 +0100960 if (st->out_len > skb_shinfo(skb)->gso_size) {
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100961 /* This packet will not finish the TSO burst. */
Ben Hutchings53cb13c2012-06-19 20:03:41 +0100962 st->packet_space = skb_shinfo(skb)->gso_size;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100963 tsoh_th->fin = 0;
964 tsoh_th->psh = 0;
965 } else {
966 /* This packet will be the last in the TSO burst. */
Ben Hutchings53cb13c2012-06-19 20:03:41 +0100967 st->packet_space = st->out_len;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100968 tsoh_th->fin = tcp_hdr(skb)->fin;
969 tsoh_th->psh = tcp_hdr(skb)->psh;
970 }
Ben Hutchings53cb13c2012-06-19 20:03:41 +0100971 ip_length = st->ip_base_len + st->packet_space;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100972
Ben Hutchings738a8f42009-11-29 15:16:05 +0000973 if (st->protocol == htons(ETH_P_IP)) {
Ben Hutchings97142842012-06-22 02:44:01 +0100974 struct iphdr *tsoh_iph = (struct iphdr *)(header + st->ip_off);
Ben Hutchings738a8f42009-11-29 15:16:05 +0000975
976 tsoh_iph->tot_len = htons(ip_length);
977
978 /* Linux leaves suitable gaps in the IP ID space for us to fill. */
979 tsoh_iph->id = htons(st->ipv4_id);
980 st->ipv4_id++;
981 } else {
982 struct ipv6hdr *tsoh_iph =
Ben Hutchings97142842012-06-22 02:44:01 +0100983 (struct ipv6hdr *)(header + st->ip_off);
Ben Hutchings738a8f42009-11-29 15:16:05 +0000984
Ben Hutchings53cb13c2012-06-19 20:03:41 +0100985 tsoh_iph->payload_len = htons(ip_length);
Ben Hutchings738a8f42009-11-29 15:16:05 +0000986 }
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100987
Ben Hutchingsf7251a92012-05-17 18:40:54 +0100988 rc = efx_tso_put_header(tx_queue, buffer, header);
989 if (unlikely(rc))
990 return rc;
991
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100992 ++tx_queue->tso_packets;
993
Ben Hutchingsb9b39b62008-05-07 12:51:12 +0100994 return 0;
995}
996
997
998/**
999 * efx_enqueue_skb_tso - segment and transmit a TSO socket buffer
1000 * @tx_queue: Efx TX queue
1001 * @skb: Socket buffer
1002 *
1003 * Context: You must hold netif_tx_lock() to call this function.
1004 *
1005 * Add socket buffer @skb to @tx_queue, doing TSO or return != 0 if
1006 * @skb was not enqueued. In all cases @skb is consumed. Return
Ben Hutchings14bf7182012-05-22 01:27:58 +01001007 * %NETDEV_TX_OK.
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01001008 */
1009static int efx_enqueue_skb_tso(struct efx_tx_queue *tx_queue,
Ben Hutchings740847d2008-09-01 12:48:23 +01001010 struct sk_buff *skb)
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01001011{
Ben Hutchingsecbd95c2008-09-01 12:46:40 +01001012 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings14bf7182012-05-22 01:27:58 +01001013 int frag_i, rc;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01001014 struct tso_state state;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01001015
Ben Hutchings738a8f42009-11-29 15:16:05 +00001016 /* Find the packet protocol and sanity-check it */
1017 state.protocol = efx_tso_check_protocol(skb);
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01001018
1019 EFX_BUG_ON_PARANOID(tx_queue->write_count != tx_queue->insert_count);
1020
1021 tso_start(&state, skb);
1022
1023 /* Assume that skb header area contains exactly the headers, and
1024 * all payload is in the frag list.
1025 */
Ben Hutchings23d9e602008-09-01 12:47:02 +01001026 if (skb_headlen(skb) == state.header_len) {
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01001027 /* Grab the first payload fragment. */
1028 EFX_BUG_ON_PARANOID(skb_shinfo(skb)->nr_frags < 1);
1029 frag_i = 0;
Ben Hutchingsecbd95c2008-09-01 12:46:40 +01001030 rc = tso_get_fragment(&state, efx,
1031 skb_shinfo(skb)->frags + frag_i);
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01001032 if (rc)
1033 goto mem_err;
1034 } else {
Ben Hutchingsecbd95c2008-09-01 12:46:40 +01001035 rc = tso_get_head_fragment(&state, efx, skb);
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01001036 if (rc)
1037 goto mem_err;
1038 frag_i = -1;
1039 }
1040
1041 if (tso_start_new_packet(tx_queue, skb, &state) < 0)
1042 goto mem_err;
1043
1044 while (1) {
Ben Hutchings14bf7182012-05-22 01:27:58 +01001045 tso_fill_packet_with_fragment(tx_queue, skb, &state);
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01001046
1047 /* Move onto the next fragment? */
Ben Hutchings23d9e602008-09-01 12:47:02 +01001048 if (state.in_len == 0) {
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01001049 if (++frag_i >= skb_shinfo(skb)->nr_frags)
1050 /* End of payload reached. */
1051 break;
Ben Hutchingsecbd95c2008-09-01 12:46:40 +01001052 rc = tso_get_fragment(&state, efx,
1053 skb_shinfo(skb)->frags + frag_i);
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01001054 if (rc)
1055 goto mem_err;
1056 }
1057
1058 /* Start at new packet? */
1059 if (state.packet_space == 0 &&
1060 tso_start_new_packet(tx_queue, skb, &state) < 0)
1061 goto mem_err;
1062 }
1063
Eric Dumazet449fa022011-11-30 17:12:27 -05001064 netdev_tx_sent_queue(tx_queue->core_txq, skb->len);
1065
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01001066 /* Pass off to hardware */
Ben Hutchings152b6a62009-11-29 03:43:56 +00001067 efx_nic_push_buffers(tx_queue);
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01001068
Ben Hutchings14bf7182012-05-22 01:27:58 +01001069 efx_tx_maybe_stop_queue(tx_queue);
1070
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01001071 tx_queue->tso_bursts++;
1072 return NETDEV_TX_OK;
1073
1074 mem_err:
Ben Hutchings62776d02010-06-23 11:30:07 +00001075 netif_err(efx, tx_err, efx->net_dev,
Ben Hutchings0e33d872012-05-17 17:46:55 +01001076 "Out of memory for TSO headers, or DMA mapping error\n");
Ben Hutchings9bc183d2009-11-23 16:06:47 +00001077 dev_kfree_skb_any(skb);
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01001078
Ben Hutchings5988b632008-09-01 12:46:36 +01001079 /* Free the DMA mapping we were in the process of writing out */
Ben Hutchings23d9e602008-09-01 12:47:02 +01001080 if (state.unmap_len) {
Ben Hutchings7668ff92012-05-17 20:52:20 +01001081 if (state.dma_flags & EFX_TX_BUF_MAP_SINGLE)
Ben Hutchings0e33d872012-05-17 17:46:55 +01001082 dma_unmap_single(&efx->pci_dev->dev, state.unmap_addr,
1083 state.unmap_len, DMA_TO_DEVICE);
Ben Hutchingsecbd95c2008-09-01 12:46:40 +01001084 else
Ben Hutchings0e33d872012-05-17 17:46:55 +01001085 dma_unmap_page(&efx->pci_dev->dev, state.unmap_addr,
1086 state.unmap_len, DMA_TO_DEVICE);
Ben Hutchingsecbd95c2008-09-01 12:46:40 +01001087 }
Ben Hutchings5988b632008-09-01 12:46:36 +01001088
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01001089 efx_enqueue_unwind(tx_queue);
Ben Hutchings14bf7182012-05-22 01:27:58 +01001090 return NETDEV_TX_OK;
Ben Hutchingsb9b39b62008-05-07 12:51:12 +01001091}