sit: fix tunnel update via netlink
[linux-block.git] / drivers / net / ethernet / sfc / rx.c
CommitLineData
8ceee660
BH
1/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2005-2006 Fen Systems Ltd.
0a6f40c6 4 * Copyright 2005-2011 Solarflare Communications Inc.
8ceee660
BH
5 *
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/socket.h>
12#include <linux/in.h>
5a0e3ad6 13#include <linux/slab.h>
8ceee660
BH
14#include <linux/ip.h>
15#include <linux/tcp.h>
16#include <linux/udp.h>
70c71606 17#include <linux/prefetch.h>
6eb07caf 18#include <linux/moduleparam.h>
2768935a 19#include <linux/iommu.h>
8ceee660
BH
20#include <net/ip.h>
21#include <net/checksum.h>
22#include "net_driver.h"
8ceee660 23#include "efx.h"
744093c9 24#include "nic.h"
3273c2e8 25#include "selftest.h"
8ceee660
BH
26#include "workarounds.h"
27
1648a23f
DP
28/* Preferred number of descriptors to fill at once */
29#define EFX_RX_PREFERRED_BATCH 8U
8ceee660 30
2768935a
DP
31/* Number of RX buffers to recycle pages for. When creating the RX page recycle
32 * ring, this number is divided by the number of buffers per page to calculate
33 * the number of pages to store in the RX page recycle ring.
34 */
35#define EFX_RECYCLE_RING_SIZE_IOMMU 4096
1648a23f 36#define EFX_RECYCLE_RING_SIZE_NOIOMMU (2 * EFX_RX_PREFERRED_BATCH)
62b330ba 37
8ceee660 38/* Size of buffer allocated for skb header area. */
d4ef5b6f 39#define EFX_SKB_HEADERS 128u
8ceee660 40
8ceee660
BH
41/* This is the percentage fill level below which new RX descriptors
42 * will be added to the RX descriptor ring.
43 */
64235187 44static unsigned int rx_refill_threshold;
8ceee660 45
85740cdf
BH
46/* Each packet can consume up to ceil(max_frame_len / buffer_size) buffers */
47#define EFX_RX_MAX_FRAGS DIV_ROUND_UP(EFX_MAX_FRAME_LEN(EFX_MAX_MTU), \
48 EFX_RX_USR_BUF_SIZE)
49
8ceee660
BH
50/*
51 * RX maximum head room required.
52 *
85740cdf
BH
53 * This must be at least 1 to prevent overflow, plus one packet-worth
54 * to allow pipelined receives.
8ceee660 55 */
85740cdf 56#define EFX_RXD_HEAD_ROOM (1 + EFX_RX_MAX_FRAGS)
8ceee660 57
b184f16b 58static inline u8 *efx_rx_buf_va(struct efx_rx_buffer *buf)
39c9cf07 59{
b184f16b 60 return page_address(buf->page) + buf->page_offset;
a526f140
SH
61}
62
63static inline u32 efx_rx_buf_hash(const u8 *eh)
64{
65 /* The ethernet header is always directly after any hash. */
39c9cf07 66#if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) || NET_IP_ALIGN % 4 == 0
a526f140 67 return __le32_to_cpup((const __le32 *)(eh - 4));
39c9cf07 68#else
a526f140 69 const u8 *data = eh - 4;
0beaca2c
BH
70 return (u32)data[0] |
71 (u32)data[1] << 8 |
72 (u32)data[2] << 16 |
73 (u32)data[3] << 24;
39c9cf07
BH
74#endif
75}
76
85740cdf
BH
77static inline struct efx_rx_buffer *
78efx_rx_buf_next(struct efx_rx_queue *rx_queue, struct efx_rx_buffer *rx_buf)
79{
80 if (unlikely(rx_buf == efx_rx_buffer(rx_queue, rx_queue->ptr_mask)))
81 return efx_rx_buffer(rx_queue, 0);
82 else
83 return rx_buf + 1;
84}
85
2768935a
DP
86static inline void efx_sync_rx_buffer(struct efx_nic *efx,
87 struct efx_rx_buffer *rx_buf,
88 unsigned int len)
89{
90 dma_sync_single_for_cpu(&efx->pci_dev->dev, rx_buf->dma_addr, len,
91 DMA_FROM_DEVICE);
92}
93
1648a23f
DP
94void efx_rx_config_page_split(struct efx_nic *efx)
95{
c14ff2ea 96 efx->rx_page_buf_step = ALIGN(efx->rx_dma_len + NET_IP_ALIGN,
950c54df 97 EFX_RX_BUF_ALIGNMENT);
1648a23f
DP
98 efx->rx_bufs_per_page = efx->rx_buffer_order ? 1 :
99 ((PAGE_SIZE - sizeof(struct efx_rx_page_state)) /
100 efx->rx_page_buf_step);
101 efx->rx_buffer_truesize = (PAGE_SIZE << efx->rx_buffer_order) /
102 efx->rx_bufs_per_page;
103 efx->rx_pages_per_batch = DIV_ROUND_UP(EFX_RX_PREFERRED_BATCH,
104 efx->rx_bufs_per_page);
105}
106
2768935a
DP
107/* Check the RX page recycle ring for a page that can be reused. */
108static struct page *efx_reuse_page(struct efx_rx_queue *rx_queue)
109{
110 struct efx_nic *efx = rx_queue->efx;
111 struct page *page;
112 struct efx_rx_page_state *state;
113 unsigned index;
114
115 index = rx_queue->page_remove & rx_queue->page_ptr_mask;
116 page = rx_queue->page_ring[index];
117 if (page == NULL)
118 return NULL;
119
120 rx_queue->page_ring[index] = NULL;
121 /* page_remove cannot exceed page_add. */
122 if (rx_queue->page_remove != rx_queue->page_add)
123 ++rx_queue->page_remove;
124
125 /* If page_count is 1 then we hold the only reference to this page. */
126 if (page_count(page) == 1) {
127 ++rx_queue->page_recycle_count;
128 return page;
129 } else {
130 state = page_address(page);
131 dma_unmap_page(&efx->pci_dev->dev, state->dma_addr,
132 PAGE_SIZE << efx->rx_buffer_order,
133 DMA_FROM_DEVICE);
134 put_page(page);
135 ++rx_queue->page_recycle_failed;
136 }
137
138 return NULL;
139}
140
8ceee660 141/**
97d48a10 142 * efx_init_rx_buffers - create EFX_RX_BATCH page-based RX buffers
8ceee660
BH
143 *
144 * @rx_queue: Efx RX queue
8ceee660 145 *
1648a23f
DP
146 * This allocates a batch of pages, maps them for DMA, and populates
147 * struct efx_rx_buffers for each one. Return a negative error code or
148 * 0 on success. If a single page can be used for multiple buffers,
149 * then the page will either be inserted fully, or not at all.
8ceee660 150 */
97d48a10 151static int efx_init_rx_buffers(struct efx_rx_queue *rx_queue)
8ceee660
BH
152{
153 struct efx_nic *efx = rx_queue->efx;
f7d6f379
SH
154 struct efx_rx_buffer *rx_buf;
155 struct page *page;
b590ace0 156 unsigned int page_offset;
62b330ba 157 struct efx_rx_page_state *state;
f7d6f379
SH
158 dma_addr_t dma_addr;
159 unsigned index, count;
160
1648a23f
DP
161 count = 0;
162 do {
2768935a
DP
163 page = efx_reuse_page(rx_queue);
164 if (page == NULL) {
165 page = alloc_pages(__GFP_COLD | __GFP_COMP | GFP_ATOMIC,
166 efx->rx_buffer_order);
167 if (unlikely(page == NULL))
168 return -ENOMEM;
169 dma_addr =
170 dma_map_page(&efx->pci_dev->dev, page, 0,
171 PAGE_SIZE << efx->rx_buffer_order,
172 DMA_FROM_DEVICE);
173 if (unlikely(dma_mapping_error(&efx->pci_dev->dev,
174 dma_addr))) {
175 __free_pages(page, efx->rx_buffer_order);
176 return -EIO;
177 }
178 state = page_address(page);
179 state->dma_addr = dma_addr;
180 } else {
181 state = page_address(page);
182 dma_addr = state->dma_addr;
8ceee660 183 }
62b330ba 184
62b330ba 185 dma_addr += sizeof(struct efx_rx_page_state);
b590ace0 186 page_offset = sizeof(struct efx_rx_page_state);
f7d6f379 187
1648a23f
DP
188 do {
189 index = rx_queue->added_count & rx_queue->ptr_mask;
190 rx_buf = efx_rx_buffer(rx_queue, index);
c14ff2ea 191 rx_buf->dma_addr = dma_addr + NET_IP_ALIGN;
1648a23f 192 rx_buf->page = page;
c14ff2ea 193 rx_buf->page_offset = page_offset + NET_IP_ALIGN;
1648a23f 194 rx_buf->len = efx->rx_dma_len;
179ea7f0 195 rx_buf->flags = 0;
1648a23f
DP
196 ++rx_queue->added_count;
197 get_page(page);
198 dma_addr += efx->rx_page_buf_step;
199 page_offset += efx->rx_page_buf_step;
200 } while (page_offset + efx->rx_page_buf_step <= PAGE_SIZE);
179ea7f0
BH
201
202 rx_buf->flags = EFX_RX_BUF_LAST_IN_PAGE;
1648a23f 203 } while (++count < efx->rx_pages_per_batch);
8ceee660 204
8ceee660
BH
205 return 0;
206}
207
2768935a
DP
208/* Unmap a DMA-mapped page. This function is only called for the final RX
209 * buffer in a page.
210 */
4d566063 211static void efx_unmap_rx_buffer(struct efx_nic *efx,
2768935a 212 struct efx_rx_buffer *rx_buf)
8ceee660 213{
2768935a
DP
214 struct page *page = rx_buf->page;
215
216 if (page) {
217 struct efx_rx_page_state *state = page_address(page);
218 dma_unmap_page(&efx->pci_dev->dev,
219 state->dma_addr,
220 PAGE_SIZE << efx->rx_buffer_order,
221 DMA_FROM_DEVICE);
8ceee660
BH
222 }
223}
224
2768935a 225static void efx_free_rx_buffer(struct efx_rx_buffer *rx_buf)
8ceee660 226{
97d48a10 227 if (rx_buf->page) {
2768935a 228 put_page(rx_buf->page);
97d48a10 229 rx_buf->page = NULL;
8ceee660
BH
230 }
231}
232
2768935a
DP
233/* Attempt to recycle the page if there is an RX recycle ring; the page can
234 * only be added if this is the final RX buffer, to prevent pages being used in
235 * the descriptor ring and appearing in the recycle ring simultaneously.
236 */
237static void efx_recycle_rx_page(struct efx_channel *channel,
238 struct efx_rx_buffer *rx_buf)
8ceee660 239{
2768935a
DP
240 struct page *page = rx_buf->page;
241 struct efx_rx_queue *rx_queue = efx_channel_get_rx_queue(channel);
242 struct efx_nic *efx = rx_queue->efx;
243 unsigned index;
8ceee660 244
2768935a 245 /* Only recycle the page after processing the final buffer. */
179ea7f0 246 if (!(rx_buf->flags & EFX_RX_BUF_LAST_IN_PAGE))
62b330ba 247 return;
24455800 248
2768935a
DP
249 index = rx_queue->page_add & rx_queue->page_ptr_mask;
250 if (rx_queue->page_ring[index] == NULL) {
251 unsigned read_index = rx_queue->page_remove &
252 rx_queue->page_ptr_mask;
24455800 253
2768935a
DP
254 /* The next slot in the recycle ring is available, but
255 * increment page_remove if the read pointer currently
256 * points here.
257 */
258 if (read_index == index)
259 ++rx_queue->page_remove;
260 rx_queue->page_ring[index] = page;
261 ++rx_queue->page_add;
262 return;
263 }
264 ++rx_queue->page_recycle_full;
265 efx_unmap_rx_buffer(efx, rx_buf);
266 put_page(rx_buf->page);
24455800
SH
267}
268
2768935a
DP
269static void efx_fini_rx_buffer(struct efx_rx_queue *rx_queue,
270 struct efx_rx_buffer *rx_buf)
271{
272 /* Release the page reference we hold for the buffer. */
273 if (rx_buf->page)
274 put_page(rx_buf->page);
275
276 /* If this is the last buffer in a page, unmap and free it. */
179ea7f0 277 if (rx_buf->flags & EFX_RX_BUF_LAST_IN_PAGE) {
2768935a
DP
278 efx_unmap_rx_buffer(rx_queue->efx, rx_buf);
279 efx_free_rx_buffer(rx_buf);
280 }
281 rx_buf->page = NULL;
282}
283
284/* Recycle the pages that are used by buffers that have just been received. */
85740cdf
BH
285static void efx_recycle_rx_buffers(struct efx_channel *channel,
286 struct efx_rx_buffer *rx_buf,
287 unsigned int n_frags)
24455800 288{
f7d12cdc 289 struct efx_rx_queue *rx_queue = efx_channel_get_rx_queue(channel);
24455800 290
85740cdf 291 do {
2768935a 292 efx_recycle_rx_page(channel, rx_buf);
85740cdf
BH
293 rx_buf = efx_rx_buf_next(rx_queue, rx_buf);
294 } while (--n_frags);
24455800
SH
295}
296
8ceee660
BH
297/**
298 * efx_fast_push_rx_descriptors - push new RX descriptors quickly
299 * @rx_queue: RX descriptor queue
49ce9c2c 300 *
8ceee660 301 * This will aim to fill the RX descriptor queue up to
da9ca505 302 * @rx_queue->@max_fill. If there is insufficient atomic
90d683af
SH
303 * memory to do so, a slow fill will be scheduled.
304 *
305 * The caller must provide serialisation (none is used here). In practise,
306 * this means this function must run from the NAPI handler, or be called
307 * when NAPI is disabled.
8ceee660 308 */
90d683af 309void efx_fast_push_rx_descriptors(struct efx_rx_queue *rx_queue)
8ceee660 310{
1648a23f
DP
311 struct efx_nic *efx = rx_queue->efx;
312 unsigned int fill_level, batch_size;
f7d6f379 313 int space, rc = 0;
8ceee660 314
90d683af 315 /* Calculate current fill level, and exit if we don't need to fill */
8ceee660 316 fill_level = (rx_queue->added_count - rx_queue->removed_count);
ecc910f5 317 EFX_BUG_ON_PARANOID(fill_level > rx_queue->efx->rxq_entries);
8ceee660 318 if (fill_level >= rx_queue->fast_fill_trigger)
24455800 319 goto out;
8ceee660
BH
320
321 /* Record minimum fill level */
b3475645 322 if (unlikely(fill_level < rx_queue->min_fill)) {
8ceee660
BH
323 if (fill_level)
324 rx_queue->min_fill = fill_level;
b3475645 325 }
8ceee660 326
1648a23f 327 batch_size = efx->rx_pages_per_batch * efx->rx_bufs_per_page;
da9ca505 328 space = rx_queue->max_fill - fill_level;
1648a23f 329 EFX_BUG_ON_PARANOID(space < batch_size);
8ceee660 330
62776d03
BH
331 netif_vdbg(rx_queue->efx, rx_status, rx_queue->efx->net_dev,
332 "RX queue %d fast-filling descriptor ring from"
97d48a10 333 " level %d to level %d\n",
ba1e8a35 334 efx_rx_queue_index(rx_queue), fill_level,
97d48a10
AR
335 rx_queue->max_fill);
336
8ceee660
BH
337
338 do {
97d48a10 339 rc = efx_init_rx_buffers(rx_queue);
f7d6f379
SH
340 if (unlikely(rc)) {
341 /* Ensure that we don't leave the rx queue empty */
342 if (rx_queue->added_count == rx_queue->removed_count)
343 efx_schedule_slow_fill(rx_queue);
344 goto out;
8ceee660 345 }
1648a23f 346 } while ((space -= batch_size) >= batch_size);
8ceee660 347
62776d03
BH
348 netif_vdbg(rx_queue->efx, rx_status, rx_queue->efx->net_dev,
349 "RX queue %d fast-filled descriptor ring "
ba1e8a35 350 "to level %d\n", efx_rx_queue_index(rx_queue),
62776d03 351 rx_queue->added_count - rx_queue->removed_count);
8ceee660
BH
352
353 out:
24455800
SH
354 if (rx_queue->notified_count != rx_queue->added_count)
355 efx_nic_notify_rx_desc(rx_queue);
8ceee660
BH
356}
357
90d683af 358void efx_rx_slow_fill(unsigned long context)
8ceee660 359{
90d683af 360 struct efx_rx_queue *rx_queue = (struct efx_rx_queue *)context;
8ceee660 361
90d683af 362 /* Post an event to cause NAPI to run and refill the queue */
2ae75dac 363 efx_nic_generate_fill_event(rx_queue);
8ceee660 364 ++rx_queue->slow_fill_count;
8ceee660
BH
365}
366
4d566063
BH
367static void efx_rx_packet__check_len(struct efx_rx_queue *rx_queue,
368 struct efx_rx_buffer *rx_buf,
97d48a10 369 int len)
8ceee660
BH
370{
371 struct efx_nic *efx = rx_queue->efx;
372 unsigned max_len = rx_buf->len - efx->type->rx_buffer_padding;
373
374 if (likely(len <= max_len))
375 return;
376
377 /* The packet must be discarded, but this is only a fatal error
378 * if the caller indicated it was
379 */
db339569 380 rx_buf->flags |= EFX_RX_PKT_DISCARD;
8ceee660
BH
381
382 if ((len > rx_buf->len) && EFX_WORKAROUND_8071(efx)) {
62776d03
BH
383 if (net_ratelimit())
384 netif_err(efx, rx_err, efx->net_dev,
385 " RX queue %d seriously overlength "
386 "RX event (0x%x > 0x%x+0x%x). Leaking\n",
ba1e8a35 387 efx_rx_queue_index(rx_queue), len, max_len,
62776d03 388 efx->type->rx_buffer_padding);
8ceee660
BH
389 efx_schedule_reset(efx, RESET_TYPE_RX_RECOVERY);
390 } else {
62776d03
BH
391 if (net_ratelimit())
392 netif_err(efx, rx_err, efx->net_dev,
393 " RX queue %d overlength RX event "
394 "(0x%x > 0x%x)\n",
ba1e8a35 395 efx_rx_queue_index(rx_queue), len, max_len);
8ceee660
BH
396 }
397
ba1e8a35 398 efx_rx_queue_channel(rx_queue)->n_rx_overlength++;
8ceee660
BH
399}
400
61321d92
BH
401/* Pass a received packet up through GRO. GRO can handle pages
402 * regardless of checksum state and skbs with a good checksum.
8ceee660 403 */
85740cdf
BH
404static void
405efx_rx_packet_gro(struct efx_channel *channel, struct efx_rx_buffer *rx_buf,
406 unsigned int n_frags, u8 *eh)
8ceee660 407{
da3bc071 408 struct napi_struct *napi = &channel->napi_str;
18e1d2be 409 gro_result_t gro_result;
97d48a10 410 struct efx_nic *efx = channel->efx;
97d48a10 411 struct sk_buff *skb;
8ceee660 412
97d48a10 413 skb = napi_get_frags(napi);
85740cdf
BH
414 if (unlikely(!skb)) {
415 while (n_frags--) {
416 put_page(rx_buf->page);
417 rx_buf->page = NULL;
418 rx_buf = efx_rx_buf_next(&channel->rx_queue, rx_buf);
419 }
97d48a10
AR
420 return;
421 }
76620aaf 422
97d48a10
AR
423 if (efx->net_dev->features & NETIF_F_RXHASH)
424 skb->rxhash = efx_rx_buf_hash(eh);
97d48a10
AR
425 skb->ip_summed = ((rx_buf->flags & EFX_RX_PKT_CSUMMED) ?
426 CHECKSUM_UNNECESSARY : CHECKSUM_NONE);
8ceee660 427
85740cdf
BH
428 for (;;) {
429 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
430 rx_buf->page, rx_buf->page_offset,
431 rx_buf->len);
432 rx_buf->page = NULL;
433 skb->len += rx_buf->len;
434 if (skb_shinfo(skb)->nr_frags == n_frags)
435 break;
3eadb7b0 436
85740cdf
BH
437 rx_buf = efx_rx_buf_next(&channel->rx_queue, rx_buf);
438 }
439
440 skb->data_len = skb->len;
441 skb->truesize += n_frags * efx->rx_buffer_truesize;
442
443 skb_record_rx_queue(skb, channel->rx_queue.core_index);
8ceee660 444
85740cdf 445 gro_result = napi_gro_frags(napi);
97d48a10
AR
446 if (gro_result != GRO_DROP)
447 channel->irq_mod_score += 2;
448}
1241e951 449
85740cdf 450/* Allocate and construct an SKB around page fragments */
97d48a10
AR
451static struct sk_buff *efx_rx_mk_skb(struct efx_channel *channel,
452 struct efx_rx_buffer *rx_buf,
85740cdf 453 unsigned int n_frags,
97d48a10
AR
454 u8 *eh, int hdr_len)
455{
456 struct efx_nic *efx = channel->efx;
457 struct sk_buff *skb;
18e1d2be 458
97d48a10
AR
459 /* Allocate an SKB to store the headers */
460 skb = netdev_alloc_skb(efx->net_dev, hdr_len + EFX_PAGE_SKB_ALIGN);
461 if (unlikely(skb == NULL))
462 return NULL;
463
464 EFX_BUG_ON_PARANOID(rx_buf->len < hdr_len);
465
466 skb_reserve(skb, EFX_PAGE_SKB_ALIGN);
85740cdf 467 memcpy(__skb_put(skb, hdr_len), eh, hdr_len);
97d48a10 468
85740cdf 469 /* Append the remaining page(s) onto the frag list */
97d48a10 470 if (rx_buf->len > hdr_len) {
85740cdf
BH
471 rx_buf->page_offset += hdr_len;
472 rx_buf->len -= hdr_len;
473
474 for (;;) {
475 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
476 rx_buf->page, rx_buf->page_offset,
477 rx_buf->len);
478 rx_buf->page = NULL;
479 skb->len += rx_buf->len;
480 skb->data_len += rx_buf->len;
481 if (skb_shinfo(skb)->nr_frags == n_frags)
482 break;
483
484 rx_buf = efx_rx_buf_next(&channel->rx_queue, rx_buf);
485 }
97d48a10
AR
486 } else {
487 __free_pages(rx_buf->page, efx->rx_buffer_order);
85740cdf
BH
488 rx_buf->page = NULL;
489 n_frags = 0;
18e1d2be 490 }
97d48a10 491
85740cdf 492 skb->truesize += n_frags * efx->rx_buffer_truesize;
97d48a10
AR
493
494 /* Move past the ethernet header */
495 skb->protocol = eth_type_trans(skb, efx->net_dev);
496
497 return skb;
8ceee660
BH
498}
499
8ceee660 500void efx_rx_packet(struct efx_rx_queue *rx_queue, unsigned int index,
85740cdf 501 unsigned int n_frags, unsigned int len, u16 flags)
8ceee660
BH
502{
503 struct efx_nic *efx = rx_queue->efx;
ba1e8a35 504 struct efx_channel *channel = efx_rx_queue_channel(rx_queue);
8ceee660 505 struct efx_rx_buffer *rx_buf;
8ceee660
BH
506
507 rx_buf = efx_rx_buffer(rx_queue, index);
179ea7f0 508 rx_buf->flags |= flags;
8ceee660 509
85740cdf
BH
510 /* Validate the number of fragments and completed length */
511 if (n_frags == 1) {
512 efx_rx_packet__check_len(rx_queue, rx_buf, len);
513 } else if (unlikely(n_frags > EFX_RX_MAX_FRAGS) ||
514 unlikely(len <= (n_frags - 1) * EFX_RX_USR_BUF_SIZE) ||
515 unlikely(len > n_frags * EFX_RX_USR_BUF_SIZE) ||
516 unlikely(!efx->rx_scatter)) {
517 /* If this isn't an explicit discard request, either
518 * the hardware or the driver is broken.
519 */
520 WARN_ON(!(len == 0 && rx_buf->flags & EFX_RX_PKT_DISCARD));
521 rx_buf->flags |= EFX_RX_PKT_DISCARD;
522 }
8ceee660 523
62776d03 524 netif_vdbg(efx, rx_status, efx->net_dev,
85740cdf 525 "RX queue %d received ids %x-%x len %d %s%s\n",
ba1e8a35 526 efx_rx_queue_index(rx_queue), index,
85740cdf 527 (index + n_frags - 1) & rx_queue->ptr_mask, len,
db339569
BH
528 (rx_buf->flags & EFX_RX_PKT_CSUMMED) ? " [SUMMED]" : "",
529 (rx_buf->flags & EFX_RX_PKT_DISCARD) ? " [DISCARD]" : "");
8ceee660 530
85740cdf
BH
531 /* Discard packet, if instructed to do so. Process the
532 * previous receive first.
533 */
db339569 534 if (unlikely(rx_buf->flags & EFX_RX_PKT_DISCARD)) {
85740cdf 535 efx_rx_flush_packet(channel);
2768935a 536 put_page(rx_buf->page);
85740cdf
BH
537 efx_recycle_rx_buffers(channel, rx_buf, n_frags);
538 return;
8ceee660
BH
539 }
540
85740cdf
BH
541 if (n_frags == 1)
542 rx_buf->len = len;
543
2768935a
DP
544 /* Release and/or sync the DMA mapping - assumes all RX buffers
545 * consumed in-order per RX queue.
8ceee660 546 */
2768935a 547 efx_sync_rx_buffer(efx, rx_buf, rx_buf->len);
8ceee660
BH
548
549 /* Prefetch nice and early so data will (hopefully) be in cache by
550 * the time we look at it.
551 */
5036b7c7 552 prefetch(efx_rx_buf_va(rx_buf));
8ceee660 553
b74e3e8c 554 rx_buf->page_offset += efx->type->rx_buffer_hash_size;
85740cdf
BH
555 rx_buf->len -= efx->type->rx_buffer_hash_size;
556
557 if (n_frags > 1) {
558 /* Release/sync DMA mapping for additional fragments.
559 * Fix length for last fragment.
560 */
561 unsigned int tail_frags = n_frags - 1;
562
563 for (;;) {
564 rx_buf = efx_rx_buf_next(rx_queue, rx_buf);
565 if (--tail_frags == 0)
566 break;
2768935a 567 efx_sync_rx_buffer(efx, rx_buf, EFX_RX_USR_BUF_SIZE);
85740cdf
BH
568 }
569 rx_buf->len = len - (n_frags - 1) * EFX_RX_USR_BUF_SIZE;
2768935a 570 efx_sync_rx_buffer(efx, rx_buf, rx_buf->len);
85740cdf 571 }
b74e3e8c 572
2768935a
DP
573 /* All fragments have been DMA-synced, so recycle buffers and pages. */
574 rx_buf = efx_rx_buffer(rx_queue, index);
575 efx_recycle_rx_buffers(channel, rx_buf, n_frags);
576
8ceee660
BH
577 /* Pipeline receives so that we give time for packet headers to be
578 * prefetched into cache.
579 */
ff734ef4 580 efx_rx_flush_packet(channel);
85740cdf
BH
581 channel->rx_pkt_n_frags = n_frags;
582 channel->rx_pkt_index = index;
8ceee660
BH
583}
584
97d48a10 585static void efx_rx_deliver(struct efx_channel *channel, u8 *eh,
85740cdf
BH
586 struct efx_rx_buffer *rx_buf,
587 unsigned int n_frags)
1ddceb4c
BH
588{
589 struct sk_buff *skb;
97d48a10 590 u16 hdr_len = min_t(u16, rx_buf->len, EFX_SKB_HEADERS);
1ddceb4c 591
85740cdf 592 skb = efx_rx_mk_skb(channel, rx_buf, n_frags, eh, hdr_len);
97d48a10 593 if (unlikely(skb == NULL)) {
2768935a 594 efx_free_rx_buffer(rx_buf);
97d48a10
AR
595 return;
596 }
597 skb_record_rx_queue(skb, channel->rx_queue.core_index);
1ddceb4c
BH
598
599 /* Set the SKB flags */
600 skb_checksum_none_assert(skb);
c99dffc4
JC
601 if (likely(rx_buf->flags & EFX_RX_PKT_CSUMMED))
602 skb->ip_summed = CHECKSUM_UNNECESSARY;
1ddceb4c 603
c31e5f9f 604 if (channel->type->receive_skb)
4a74dc65 605 if (channel->type->receive_skb(channel, skb))
97d48a10 606 return;
4a74dc65
BH
607
608 /* Pass the packet up */
609 netif_receive_skb(skb);
1ddceb4c
BH
610}
611
8ceee660 612/* Handle a received packet. Second half: Touches packet payload. */
85740cdf 613void __efx_rx_packet(struct efx_channel *channel)
8ceee660
BH
614{
615 struct efx_nic *efx = channel->efx;
85740cdf
BH
616 struct efx_rx_buffer *rx_buf =
617 efx_rx_buffer(&channel->rx_queue, channel->rx_pkt_index);
b74e3e8c 618 u8 *eh = efx_rx_buf_va(rx_buf);
604f6049 619
3273c2e8
BH
620 /* If we're in loopback test, then pass the packet directly to the
621 * loopback layer, and free the rx_buf here
622 */
623 if (unlikely(efx->loopback_selftest)) {
a526f140 624 efx_loopback_rx_packet(efx, eh, rx_buf->len);
2768935a 625 efx_free_rx_buffer(rx_buf);
85740cdf 626 goto out;
3273c2e8
BH
627 }
628
abfe9039 629 if (unlikely(!(efx->net_dev->features & NETIF_F_RXCSUM)))
db339569 630 rx_buf->flags &= ~EFX_RX_PKT_CSUMMED;
ab3cf6d0 631
e79255de 632 if ((rx_buf->flags & EFX_RX_PKT_TCP) && !channel->type->receive_skb)
85740cdf 633 efx_rx_packet_gro(channel, rx_buf, channel->rx_pkt_n_frags, eh);
1ddceb4c 634 else
85740cdf
BH
635 efx_rx_deliver(channel, eh, rx_buf, channel->rx_pkt_n_frags);
636out:
637 channel->rx_pkt_n_frags = 0;
8ceee660
BH
638}
639
640int efx_probe_rx_queue(struct efx_rx_queue *rx_queue)
641{
642 struct efx_nic *efx = rx_queue->efx;
ecc910f5 643 unsigned int entries;
8ceee660
BH
644 int rc;
645
ecc910f5
SH
646 /* Create the smallest power-of-two aligned ring */
647 entries = max(roundup_pow_of_two(efx->rxq_entries), EFX_MIN_DMAQ_SIZE);
648 EFX_BUG_ON_PARANOID(entries > EFX_MAX_DMAQ_SIZE);
649 rx_queue->ptr_mask = entries - 1;
650
62776d03 651 netif_dbg(efx, probe, efx->net_dev,
ecc910f5
SH
652 "creating RX queue %d size %#x mask %#x\n",
653 efx_rx_queue_index(rx_queue), efx->rxq_entries,
654 rx_queue->ptr_mask);
8ceee660
BH
655
656 /* Allocate RX buffers */
c2e4e25a 657 rx_queue->buffer = kcalloc(entries, sizeof(*rx_queue->buffer),
ecc910f5 658 GFP_KERNEL);
8831da7b
BH
659 if (!rx_queue->buffer)
660 return -ENOMEM;
8ceee660 661
152b6a62 662 rc = efx_nic_probe_rx(rx_queue);
8831da7b
BH
663 if (rc) {
664 kfree(rx_queue->buffer);
665 rx_queue->buffer = NULL;
666 }
2768935a 667
8ceee660
BH
668 return rc;
669}
670
debd0034 671static void efx_init_rx_recycle_ring(struct efx_nic *efx,
672 struct efx_rx_queue *rx_queue)
2768935a
DP
673{
674 unsigned int bufs_in_recycle_ring, page_ring_size;
675
676 /* Set the RX recycle ring size */
677#ifdef CONFIG_PPC64
678 bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_IOMMU;
679#else
636d73da 680 if (iommu_present(&pci_bus_type))
2768935a
DP
681 bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_IOMMU;
682 else
683 bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_NOIOMMU;
684#endif /* CONFIG_PPC64 */
685
686 page_ring_size = roundup_pow_of_two(bufs_in_recycle_ring /
687 efx->rx_bufs_per_page);
688 rx_queue->page_ring = kcalloc(page_ring_size,
689 sizeof(*rx_queue->page_ring), GFP_KERNEL);
690 rx_queue->page_ptr_mask = page_ring_size - 1;
691}
692
bc3c90a2 693void efx_init_rx_queue(struct efx_rx_queue *rx_queue)
8ceee660 694{
ecc910f5 695 struct efx_nic *efx = rx_queue->efx;
64235187 696 unsigned int max_fill, trigger, max_trigger;
8ceee660 697
62776d03 698 netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev,
ba1e8a35 699 "initialising RX queue %d\n", efx_rx_queue_index(rx_queue));
8ceee660
BH
700
701 /* Initialise ptr fields */
702 rx_queue->added_count = 0;
703 rx_queue->notified_count = 0;
704 rx_queue->removed_count = 0;
705 rx_queue->min_fill = -1U;
2768935a
DP
706 efx_init_rx_recycle_ring(efx, rx_queue);
707
708 rx_queue->page_remove = 0;
709 rx_queue->page_add = rx_queue->page_ptr_mask + 1;
710 rx_queue->page_recycle_count = 0;
711 rx_queue->page_recycle_failed = 0;
712 rx_queue->page_recycle_full = 0;
8ceee660
BH
713
714 /* Initialise limit fields */
ecc910f5 715 max_fill = efx->rxq_entries - EFX_RXD_HEAD_ROOM;
1648a23f
DP
716 max_trigger =
717 max_fill - efx->rx_pages_per_batch * efx->rx_bufs_per_page;
64235187
DR
718 if (rx_refill_threshold != 0) {
719 trigger = max_fill * min(rx_refill_threshold, 100U) / 100U;
720 if (trigger > max_trigger)
721 trigger = max_trigger;
722 } else {
723 trigger = max_trigger;
724 }
8ceee660
BH
725
726 rx_queue->max_fill = max_fill;
727 rx_queue->fast_fill_trigger = trigger;
8ceee660
BH
728
729 /* Set up RX descriptor ring */
9f2cb71c 730 rx_queue->enabled = true;
152b6a62 731 efx_nic_init_rx(rx_queue);
8ceee660
BH
732}
733
734void efx_fini_rx_queue(struct efx_rx_queue *rx_queue)
735{
736 int i;
2768935a 737 struct efx_nic *efx = rx_queue->efx;
8ceee660
BH
738 struct efx_rx_buffer *rx_buf;
739
62776d03 740 netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev,
ba1e8a35 741 "shutting down RX queue %d\n", efx_rx_queue_index(rx_queue));
8ceee660 742
9f2cb71c
BH
743 /* A flush failure might have left rx_queue->enabled */
744 rx_queue->enabled = false;
745
90d683af 746 del_timer_sync(&rx_queue->slow_fill);
152b6a62 747 efx_nic_fini_rx(rx_queue);
8ceee660 748
2768935a 749 /* Release RX buffers from the current read ptr to the write ptr */
8ceee660 750 if (rx_queue->buffer) {
2768935a
DP
751 for (i = rx_queue->removed_count; i < rx_queue->added_count;
752 i++) {
753 unsigned index = i & rx_queue->ptr_mask;
754 rx_buf = efx_rx_buffer(rx_queue, index);
8ceee660
BH
755 efx_fini_rx_buffer(rx_queue, rx_buf);
756 }
757 }
2768935a
DP
758
759 /* Unmap and release the pages in the recycle ring. Remove the ring. */
760 for (i = 0; i <= rx_queue->page_ptr_mask; i++) {
761 struct page *page = rx_queue->page_ring[i];
762 struct efx_rx_page_state *state;
763
764 if (page == NULL)
765 continue;
766
767 state = page_address(page);
768 dma_unmap_page(&efx->pci_dev->dev, state->dma_addr,
769 PAGE_SIZE << efx->rx_buffer_order,
770 DMA_FROM_DEVICE);
771 put_page(page);
772 }
773 kfree(rx_queue->page_ring);
774 rx_queue->page_ring = NULL;
8ceee660
BH
775}
776
777void efx_remove_rx_queue(struct efx_rx_queue *rx_queue)
778{
62776d03 779 netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev,
ba1e8a35 780 "destroying RX queue %d\n", efx_rx_queue_index(rx_queue));
8ceee660 781
152b6a62 782 efx_nic_remove_rx(rx_queue);
8ceee660
BH
783
784 kfree(rx_queue->buffer);
785 rx_queue->buffer = NULL;
8ceee660
BH
786}
787
8ceee660 788
8ceee660
BH
789module_param(rx_refill_threshold, uint, 0444);
790MODULE_PARM_DESC(rx_refill_threshold,
64235187 791 "RX descriptor ring refill threshold (%)");
8ceee660 792