blob: 31587f4066ab08f52409b2c666df0b92b4707781 [file] [log] [blame]
Ben Hutchings8ceee662008-04-27 12:55:59 +01001/****************************************************************************
Ben Hutchingsf7a6d2c2013-08-29 23:32:48 +01002 * Driver for Solarflare network controllers and boards
Ben Hutchings8ceee662008-04-27 12:55:59 +01003 * Copyright 2005-2006 Fen Systems Ltd.
Ben Hutchingsf7a6d2c2013-08-29 23:32:48 +01004 * Copyright 2005-2013 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/socket.h>
12#include <linux/in.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010014#include <linux/ip.h>
Ben Hutchingsc47b2d92013-09-03 17:22:23 +010015#include <linux/ipv6.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010016#include <linux/tcp.h>
17#include <linux/udp.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040018#include <linux/prefetch.h>
Paul Gortmaker6eb07ca2011-09-15 19:46:05 -040019#include <linux/moduleparam.h>
Daniel Pieczko27689352013-02-13 10:54:41 +000020#include <linux/iommu.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010021#include <net/ip.h>
22#include <net/checksum.h>
23#include "net_driver.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010024#include "efx.h"
Ben Hutchingsadd72472012-11-08 01:46:53 +000025#include "filter.h"
Ben Hutchings744093c2009-11-29 15:12:08 +000026#include "nic.h"
Ben Hutchings3273c2e2008-05-07 13:36:19 +010027#include "selftest.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010028#include "workarounds.h"
29
Daniel Pieczko1648a232013-02-13 10:54:41 +000030/* Preferred number of descriptors to fill at once */
31#define EFX_RX_PREFERRED_BATCH 8U
Ben Hutchings8ceee662008-04-27 12:55:59 +010032
Daniel Pieczko27689352013-02-13 10:54:41 +000033/* Number of RX buffers to recycle pages for. When creating the RX page recycle
34 * ring, this number is divided by the number of buffers per page to calculate
35 * the number of pages to store in the RX page recycle ring.
36 */
37#define EFX_RECYCLE_RING_SIZE_IOMMU 4096
Daniel Pieczko1648a232013-02-13 10:54:41 +000038#define EFX_RECYCLE_RING_SIZE_NOIOMMU (2 * EFX_RX_PREFERRED_BATCH)
Steve Hodgson62b330b2010-06-01 11:20:53 +000039
Ben Hutchings8ceee662008-04-27 12:55:59 +010040/* Size of buffer allocated for skb header area. */
Jon Cooperd4ef5b62013-04-08 12:55:58 +010041#define EFX_SKB_HEADERS 128u
Ben Hutchings8ceee662008-04-27 12:55:59 +010042
Ben Hutchings8ceee662008-04-27 12:55:59 +010043/* This is the percentage fill level below which new RX descriptors
44 * will be added to the RX descriptor ring.
45 */
David Riddoch64235182012-04-11 13:12:41 +010046static unsigned int rx_refill_threshold;
Ben Hutchings8ceee662008-04-27 12:55:59 +010047
Ben Hutchings85740cdf2013-01-29 23:33:15 +000048/* Each packet can consume up to ceil(max_frame_len / buffer_size) buffers */
49#define EFX_RX_MAX_FRAGS DIV_ROUND_UP(EFX_MAX_FRAME_LEN(EFX_MAX_MTU), \
50 EFX_RX_USR_BUF_SIZE)
51
Ben Hutchings8ceee662008-04-27 12:55:59 +010052/*
53 * RX maximum head room required.
54 *
Ben Hutchings85740cdf2013-01-29 23:33:15 +000055 * This must be at least 1 to prevent overflow, plus one packet-worth
56 * to allow pipelined receives.
Ben Hutchings8ceee662008-04-27 12:55:59 +010057 */
Ben Hutchings85740cdf2013-01-29 23:33:15 +000058#define EFX_RXD_HEAD_ROOM (1 + EFX_RX_MAX_FRAGS)
Ben Hutchings8ceee662008-04-27 12:55:59 +010059
Ben Hutchingsb184f162013-01-29 23:33:15 +000060static inline u8 *efx_rx_buf_va(struct efx_rx_buffer *buf)
Ben Hutchings39c9cf02010-06-23 11:31:28 +000061{
Ben Hutchingsb184f162013-01-29 23:33:15 +000062 return page_address(buf->page) + buf->page_offset;
Steve Hodgsona526f142011-02-24 23:45:16 +000063}
64
Jon Cooper43a37392012-10-18 15:49:54 +010065static inline u32 efx_rx_buf_hash(struct efx_nic *efx, const u8 *eh)
Steve Hodgsona526f142011-02-24 23:45:16 +000066{
Jon Cooper43a37392012-10-18 15:49:54 +010067#if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
68 return __le32_to_cpup((const __le32 *)(eh + efx->rx_packet_hash_offset));
Ben Hutchings39c9cf02010-06-23 11:31:28 +000069#else
Jon Cooper43a37392012-10-18 15:49:54 +010070 const u8 *data = eh + efx->rx_packet_hash_offset;
Ben Hutchings0beaca22012-01-05 18:54:04 +000071 return (u32)data[0] |
72 (u32)data[1] << 8 |
73 (u32)data[2] << 16 |
74 (u32)data[3] << 24;
Ben Hutchings39c9cf02010-06-23 11:31:28 +000075#endif
76}
77
Ben Hutchings85740cdf2013-01-29 23:33:15 +000078static inline struct efx_rx_buffer *
79efx_rx_buf_next(struct efx_rx_queue *rx_queue, struct efx_rx_buffer *rx_buf)
80{
81 if (unlikely(rx_buf == efx_rx_buffer(rx_queue, rx_queue->ptr_mask)))
82 return efx_rx_buffer(rx_queue, 0);
83 else
84 return rx_buf + 1;
85}
86
Daniel Pieczko27689352013-02-13 10:54:41 +000087static inline void efx_sync_rx_buffer(struct efx_nic *efx,
88 struct efx_rx_buffer *rx_buf,
89 unsigned int len)
90{
91 dma_sync_single_for_cpu(&efx->pci_dev->dev, rx_buf->dma_addr, len,
92 DMA_FROM_DEVICE);
93}
94
Daniel Pieczko1648a232013-02-13 10:54:41 +000095void efx_rx_config_page_split(struct efx_nic *efx)
96{
Andrew Rybchenko2ec03012013-11-16 11:02:27 +040097 efx->rx_page_buf_step = ALIGN(efx->rx_dma_len + efx->rx_ip_align,
Ben Hutchings950c54d2013-05-13 12:01:22 +000098 EFX_RX_BUF_ALIGNMENT);
Daniel Pieczko1648a232013-02-13 10:54:41 +000099 efx->rx_bufs_per_page = efx->rx_buffer_order ? 1 :
100 ((PAGE_SIZE - sizeof(struct efx_rx_page_state)) /
101 efx->rx_page_buf_step);
102 efx->rx_buffer_truesize = (PAGE_SIZE << efx->rx_buffer_order) /
103 efx->rx_bufs_per_page;
104 efx->rx_pages_per_batch = DIV_ROUND_UP(EFX_RX_PREFERRED_BATCH,
105 efx->rx_bufs_per_page);
106}
107
Daniel Pieczko27689352013-02-13 10:54:41 +0000108/* Check the RX page recycle ring for a page that can be reused. */
109static struct page *efx_reuse_page(struct efx_rx_queue *rx_queue)
110{
111 struct efx_nic *efx = rx_queue->efx;
112 struct page *page;
113 struct efx_rx_page_state *state;
114 unsigned index;
115
116 index = rx_queue->page_remove & rx_queue->page_ptr_mask;
117 page = rx_queue->page_ring[index];
118 if (page == NULL)
119 return NULL;
120
121 rx_queue->page_ring[index] = NULL;
122 /* page_remove cannot exceed page_add. */
123 if (rx_queue->page_remove != rx_queue->page_add)
124 ++rx_queue->page_remove;
125
126 /* If page_count is 1 then we hold the only reference to this page. */
127 if (page_count(page) == 1) {
128 ++rx_queue->page_recycle_count;
129 return page;
130 } else {
131 state = page_address(page);
132 dma_unmap_page(&efx->pci_dev->dev, state->dma_addr,
133 PAGE_SIZE << efx->rx_buffer_order,
134 DMA_FROM_DEVICE);
135 put_page(page);
136 ++rx_queue->page_recycle_failed;
137 }
138
139 return NULL;
140}
141
Ben Hutchings8ceee662008-04-27 12:55:59 +0100142/**
Alexandre Rames97d48a12013-01-11 12:26:21 +0000143 * efx_init_rx_buffers - create EFX_RX_BATCH page-based RX buffers
Ben Hutchings8ceee662008-04-27 12:55:59 +0100144 *
145 * @rx_queue: Efx RX queue
Ben Hutchings8ceee662008-04-27 12:55:59 +0100146 *
Daniel Pieczko1648a232013-02-13 10:54:41 +0000147 * This allocates a batch of pages, maps them for DMA, and populates
148 * struct efx_rx_buffers for each one. Return a negative error code or
149 * 0 on success. If a single page can be used for multiple buffers,
150 * then the page will either be inserted fully, or not at all.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100151 */
Jon Coopercce28792013-10-02 11:04:14 +0100152static int efx_init_rx_buffers(struct efx_rx_queue *rx_queue, bool atomic)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100153{
154 struct efx_nic *efx = rx_queue->efx;
Steve Hodgsonf7d6f372010-06-01 11:33:17 +0000155 struct efx_rx_buffer *rx_buf;
156 struct page *page;
Ben Hutchingsb590ace2013-01-10 23:51:54 +0000157 unsigned int page_offset;
Steve Hodgson62b330b2010-06-01 11:20:53 +0000158 struct efx_rx_page_state *state;
Steve Hodgsonf7d6f372010-06-01 11:33:17 +0000159 dma_addr_t dma_addr;
160 unsigned index, count;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100161
Daniel Pieczko1648a232013-02-13 10:54:41 +0000162 count = 0;
163 do {
Daniel Pieczko27689352013-02-13 10:54:41 +0000164 page = efx_reuse_page(rx_queue);
165 if (page == NULL) {
Jon Coopercce28792013-10-02 11:04:14 +0100166 page = alloc_pages(__GFP_COLD | __GFP_COMP |
167 (atomic ? GFP_ATOMIC : GFP_KERNEL),
Daniel Pieczko27689352013-02-13 10:54:41 +0000168 efx->rx_buffer_order);
169 if (unlikely(page == NULL))
170 return -ENOMEM;
171 dma_addr =
172 dma_map_page(&efx->pci_dev->dev, page, 0,
173 PAGE_SIZE << efx->rx_buffer_order,
174 DMA_FROM_DEVICE);
175 if (unlikely(dma_mapping_error(&efx->pci_dev->dev,
176 dma_addr))) {
177 __free_pages(page, efx->rx_buffer_order);
178 return -EIO;
179 }
180 state = page_address(page);
181 state->dma_addr = dma_addr;
182 } else {
183 state = page_address(page);
184 dma_addr = state->dma_addr;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100185 }
Steve Hodgson62b330b2010-06-01 11:20:53 +0000186
Steve Hodgson62b330b2010-06-01 11:20:53 +0000187 dma_addr += sizeof(struct efx_rx_page_state);
Ben Hutchingsb590ace2013-01-10 23:51:54 +0000188 page_offset = sizeof(struct efx_rx_page_state);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100189
Daniel Pieczko1648a232013-02-13 10:54:41 +0000190 do {
191 index = rx_queue->added_count & rx_queue->ptr_mask;
192 rx_buf = efx_rx_buffer(rx_queue, index);
Andrew Rybchenko2ec03012013-11-16 11:02:27 +0400193 rx_buf->dma_addr = dma_addr + efx->rx_ip_align;
Daniel Pieczko1648a232013-02-13 10:54:41 +0000194 rx_buf->page = page;
Andrew Rybchenko2ec03012013-11-16 11:02:27 +0400195 rx_buf->page_offset = page_offset + efx->rx_ip_align;
Daniel Pieczko1648a232013-02-13 10:54:41 +0000196 rx_buf->len = efx->rx_dma_len;
Ben Hutchings179ea7f2013-03-07 16:31:17 +0000197 rx_buf->flags = 0;
Daniel Pieczko1648a232013-02-13 10:54:41 +0000198 ++rx_queue->added_count;
199 get_page(page);
200 dma_addr += efx->rx_page_buf_step;
201 page_offset += efx->rx_page_buf_step;
202 } while (page_offset + efx->rx_page_buf_step <= PAGE_SIZE);
Ben Hutchings179ea7f2013-03-07 16:31:17 +0000203
204 rx_buf->flags = EFX_RX_BUF_LAST_IN_PAGE;
Daniel Pieczko1648a232013-02-13 10:54:41 +0000205 } while (++count < efx->rx_pages_per_batch);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100206
Ben Hutchings8ceee662008-04-27 12:55:59 +0100207 return 0;
208}
209
Daniel Pieczko27689352013-02-13 10:54:41 +0000210/* Unmap a DMA-mapped page. This function is only called for the final RX
211 * buffer in a page.
212 */
Ben Hutchings4d566062008-09-01 12:47:12 +0100213static void efx_unmap_rx_buffer(struct efx_nic *efx,
Daniel Pieczko27689352013-02-13 10:54:41 +0000214 struct efx_rx_buffer *rx_buf)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100215{
Daniel Pieczko27689352013-02-13 10:54:41 +0000216 struct page *page = rx_buf->page;
Steve Hodgson62b330b2010-06-01 11:20:53 +0000217
Daniel Pieczko27689352013-02-13 10:54:41 +0000218 if (page) {
219 struct efx_rx_page_state *state = page_address(page);
220 dma_unmap_page(&efx->pci_dev->dev,
221 state->dma_addr,
222 PAGE_SIZE << efx->rx_buffer_order,
223 DMA_FROM_DEVICE);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100224 }
225}
226
Daniel Pieczko9eb0a5d2015-05-29 12:25:54 +0100227static void efx_free_rx_buffers(struct efx_rx_queue *rx_queue,
228 struct efx_rx_buffer *rx_buf,
229 unsigned int num_bufs)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100230{
Daniel Pieczko9eb0a5d2015-05-29 12:25:54 +0100231 do {
232 if (rx_buf->page) {
233 put_page(rx_buf->page);
234 rx_buf->page = NULL;
235 }
236 rx_buf = efx_rx_buf_next(rx_queue, rx_buf);
237 } while (--num_bufs);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100238}
239
Daniel Pieczko27689352013-02-13 10:54:41 +0000240/* Attempt to recycle the page if there is an RX recycle ring; the page can
241 * only be added if this is the final RX buffer, to prevent pages being used in
242 * the descriptor ring and appearing in the recycle ring simultaneously.
243 */
244static void efx_recycle_rx_page(struct efx_channel *channel,
245 struct efx_rx_buffer *rx_buf)
246{
247 struct page *page = rx_buf->page;
248 struct efx_rx_queue *rx_queue = efx_channel_get_rx_queue(channel);
249 struct efx_nic *efx = rx_queue->efx;
250 unsigned index;
251
252 /* Only recycle the page after processing the final buffer. */
Ben Hutchings179ea7f2013-03-07 16:31:17 +0000253 if (!(rx_buf->flags & EFX_RX_BUF_LAST_IN_PAGE))
Daniel Pieczko27689352013-02-13 10:54:41 +0000254 return;
255
256 index = rx_queue->page_add & rx_queue->page_ptr_mask;
257 if (rx_queue->page_ring[index] == NULL) {
258 unsigned read_index = rx_queue->page_remove &
259 rx_queue->page_ptr_mask;
260
261 /* The next slot in the recycle ring is available, but
262 * increment page_remove if the read pointer currently
263 * points here.
264 */
265 if (read_index == index)
266 ++rx_queue->page_remove;
267 rx_queue->page_ring[index] = page;
268 ++rx_queue->page_add;
269 return;
270 }
271 ++rx_queue->page_recycle_full;
272 efx_unmap_rx_buffer(efx, rx_buf);
273 put_page(rx_buf->page);
274}
275
Ben Hutchings4d566062008-09-01 12:47:12 +0100276static void efx_fini_rx_buffer(struct efx_rx_queue *rx_queue,
277 struct efx_rx_buffer *rx_buf)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100278{
Daniel Pieczko27689352013-02-13 10:54:41 +0000279 /* Release the page reference we hold for the buffer. */
280 if (rx_buf->page)
281 put_page(rx_buf->page);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100282
Daniel Pieczko27689352013-02-13 10:54:41 +0000283 /* If this is the last buffer in a page, unmap and free it. */
Ben Hutchings179ea7f2013-03-07 16:31:17 +0000284 if (rx_buf->flags & EFX_RX_BUF_LAST_IN_PAGE) {
Daniel Pieczko27689352013-02-13 10:54:41 +0000285 efx_unmap_rx_buffer(rx_queue->efx, rx_buf);
Daniel Pieczko9eb0a5d2015-05-29 12:25:54 +0100286 efx_free_rx_buffers(rx_queue, rx_buf, 1);
Steve Hodgson62b330b2010-06-01 11:20:53 +0000287 }
Daniel Pieczko27689352013-02-13 10:54:41 +0000288 rx_buf->page = NULL;
Steve Hodgson24455802010-06-01 11:20:34 +0000289}
290
Daniel Pieczko27689352013-02-13 10:54:41 +0000291/* Recycle the pages that are used by buffers that have just been received. */
Ben Hutchings734d4e12013-07-04 23:48:46 +0100292static void efx_recycle_rx_pages(struct efx_channel *channel,
293 struct efx_rx_buffer *rx_buf,
294 unsigned int n_frags)
Steve Hodgson24455802010-06-01 11:20:34 +0000295{
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +0000296 struct efx_rx_queue *rx_queue = efx_channel_get_rx_queue(channel);
Steve Hodgson24455802010-06-01 11:20:34 +0000297
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000298 do {
Daniel Pieczko27689352013-02-13 10:54:41 +0000299 efx_recycle_rx_page(channel, rx_buf);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000300 rx_buf = efx_rx_buf_next(rx_queue, rx_buf);
301 } while (--n_frags);
Steve Hodgson24455802010-06-01 11:20:34 +0000302}
303
Ben Hutchings734d4e12013-07-04 23:48:46 +0100304static void efx_discard_rx_packet(struct efx_channel *channel,
305 struct efx_rx_buffer *rx_buf,
306 unsigned int n_frags)
307{
308 struct efx_rx_queue *rx_queue = efx_channel_get_rx_queue(channel);
309
310 efx_recycle_rx_pages(channel, rx_buf, n_frags);
311
Daniel Pieczko9eb0a5d2015-05-29 12:25:54 +0100312 efx_free_rx_buffers(rx_queue, rx_buf, n_frags);
Ben Hutchings734d4e12013-07-04 23:48:46 +0100313}
314
Ben Hutchings8ceee662008-04-27 12:55:59 +0100315/**
316 * efx_fast_push_rx_descriptors - push new RX descriptors quickly
317 * @rx_queue: RX descriptor queue
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000318 *
Ben Hutchings8ceee662008-04-27 12:55:59 +0100319 * This will aim to fill the RX descriptor queue up to
David Riddochda9ca502012-04-11 13:09:24 +0100320 * @rx_queue->@max_fill. If there is insufficient atomic
Steve Hodgson90d683a2010-06-01 11:19:39 +0000321 * memory to do so, a slow fill will be scheduled.
322 *
323 * The caller must provide serialisation (none is used here). In practise,
324 * this means this function must run from the NAPI handler, or be called
325 * when NAPI is disabled.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100326 */
Jon Coopercce28792013-10-02 11:04:14 +0100327void efx_fast_push_rx_descriptors(struct efx_rx_queue *rx_queue, bool atomic)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100328{
Daniel Pieczko1648a232013-02-13 10:54:41 +0000329 struct efx_nic *efx = rx_queue->efx;
330 unsigned int fill_level, batch_size;
Steve Hodgsonf7d6f372010-06-01 11:33:17 +0000331 int space, rc = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100332
Ben Hutchingsd8aec742013-05-27 16:52:54 +0100333 if (!rx_queue->refill_enabled)
334 return;
335
Steve Hodgson90d683a2010-06-01 11:19:39 +0000336 /* Calculate current fill level, and exit if we don't need to fill */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100337 fill_level = (rx_queue->added_count - rx_queue->removed_count);
Edward Creee01b16a2016-12-02 15:51:33 +0000338 EFX_WARN_ON_ONCE_PARANOID(fill_level > rx_queue->efx->rxq_entries);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100339 if (fill_level >= rx_queue->fast_fill_trigger)
Steve Hodgson24455802010-06-01 11:20:34 +0000340 goto out;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100341
342 /* Record minimum fill level */
Ben Hutchingsb3475642008-05-16 21:15:49 +0100343 if (unlikely(fill_level < rx_queue->min_fill)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100344 if (fill_level)
345 rx_queue->min_fill = fill_level;
Ben Hutchingsb3475642008-05-16 21:15:49 +0100346 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100347
Daniel Pieczko1648a232013-02-13 10:54:41 +0000348 batch_size = efx->rx_pages_per_batch * efx->rx_bufs_per_page;
David Riddochda9ca502012-04-11 13:09:24 +0100349 space = rx_queue->max_fill - fill_level;
Edward Creee01b16a2016-12-02 15:51:33 +0000350 EFX_WARN_ON_ONCE_PARANOID(space < batch_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100351
Ben Hutchings62776d02010-06-23 11:30:07 +0000352 netif_vdbg(rx_queue->efx, rx_status, rx_queue->efx->net_dev,
353 "RX queue %d fast-filling descriptor ring from"
Alexandre Rames97d48a12013-01-11 12:26:21 +0000354 " level %d to level %d\n",
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000355 efx_rx_queue_index(rx_queue), fill_level,
Alexandre Rames97d48a12013-01-11 12:26:21 +0000356 rx_queue->max_fill);
357
Ben Hutchings8ceee662008-04-27 12:55:59 +0100358
359 do {
Jon Coopercce28792013-10-02 11:04:14 +0100360 rc = efx_init_rx_buffers(rx_queue, atomic);
Steve Hodgsonf7d6f372010-06-01 11:33:17 +0000361 if (unlikely(rc)) {
362 /* Ensure that we don't leave the rx queue empty */
363 if (rx_queue->added_count == rx_queue->removed_count)
364 efx_schedule_slow_fill(rx_queue);
365 goto out;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100366 }
Daniel Pieczko1648a232013-02-13 10:54:41 +0000367 } while ((space -= batch_size) >= batch_size);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100368
Ben Hutchings62776d02010-06-23 11:30:07 +0000369 netif_vdbg(rx_queue->efx, rx_status, rx_queue->efx->net_dev,
370 "RX queue %d fast-filled descriptor ring "
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000371 "to level %d\n", efx_rx_queue_index(rx_queue),
Ben Hutchings62776d02010-06-23 11:30:07 +0000372 rx_queue->added_count - rx_queue->removed_count);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100373
374 out:
Steve Hodgson24455802010-06-01 11:20:34 +0000375 if (rx_queue->notified_count != rx_queue->added_count)
376 efx_nic_notify_rx_desc(rx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100377}
378
Steve Hodgson90d683a2010-06-01 11:19:39 +0000379void efx_rx_slow_fill(unsigned long context)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100380{
Steve Hodgson90d683a2010-06-01 11:19:39 +0000381 struct efx_rx_queue *rx_queue = (struct efx_rx_queue *)context;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100382
Steve Hodgson90d683a2010-06-01 11:19:39 +0000383 /* Post an event to cause NAPI to run and refill the queue */
Ben Hutchings2ae75da2012-02-07 23:49:52 +0000384 efx_nic_generate_fill_event(rx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100385 ++rx_queue->slow_fill_count;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100386}
387
Ben Hutchings4d566062008-09-01 12:47:12 +0100388static void efx_rx_packet__check_len(struct efx_rx_queue *rx_queue,
389 struct efx_rx_buffer *rx_buf,
Alexandre Rames97d48a12013-01-11 12:26:21 +0000390 int len)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100391{
392 struct efx_nic *efx = rx_queue->efx;
393 unsigned max_len = rx_buf->len - efx->type->rx_buffer_padding;
394
395 if (likely(len <= max_len))
396 return;
397
398 /* The packet must be discarded, but this is only a fatal error
399 * if the caller indicated it was
400 */
Ben Hutchingsdb339562011-08-26 18:05:11 +0100401 rx_buf->flags |= EFX_RX_PKT_DISCARD;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100402
Edward Cree5a6681e2016-11-28 18:55:34 +0000403 if (net_ratelimit())
404 netif_err(efx, rx_err, efx->net_dev,
405 "RX queue %d overlength RX event (%#x > %#x)\n",
406 efx_rx_queue_index(rx_queue), len, max_len);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100407
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000408 efx_rx_queue_channel(rx_queue)->n_rx_overlength++;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100409}
410
Ben Hutchings61321d92012-02-25 01:58:35 +0000411/* Pass a received packet up through GRO. GRO can handle pages
412 * regardless of checksum state and skbs with a good checksum.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100413 */
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000414static void
415efx_rx_packet_gro(struct efx_channel *channel, struct efx_rx_buffer *rx_buf,
416 unsigned int n_frags, u8 *eh)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100417{
Herbert Xuda3bc072009-01-18 21:50:16 -0800418 struct napi_struct *napi = &channel->napi_str;
Ben Hutchings18e1d2b2009-10-29 07:21:24 +0000419 gro_result_t gro_result;
Alexandre Rames97d48a12013-01-11 12:26:21 +0000420 struct efx_nic *efx = channel->efx;
Alexandre Rames97d48a12013-01-11 12:26:21 +0000421 struct sk_buff *skb;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100422
Alexandre Rames97d48a12013-01-11 12:26:21 +0000423 skb = napi_get_frags(napi);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000424 if (unlikely(!skb)) {
Daniel Pieczko9eb0a5d2015-05-29 12:25:54 +0100425 struct efx_rx_queue *rx_queue;
426
427 rx_queue = efx_channel_get_rx_queue(channel);
428 efx_free_rx_buffers(rx_queue, rx_buf, n_frags);
Alexandre Rames97d48a12013-01-11 12:26:21 +0000429 return;
430 }
Ben Hutchings1241e952009-11-23 16:02:25 +0000431
Alexandre Rames97d48a12013-01-11 12:26:21 +0000432 if (efx->net_dev->features & NETIF_F_RXHASH)
Tom Herbertc7cb38a2013-12-17 23:31:50 -0800433 skb_set_hash(skb, efx_rx_buf_hash(efx, eh),
434 PKT_HASH_TYPE_L3);
Alexandre Rames97d48a12013-01-11 12:26:21 +0000435 skb->ip_summed = ((rx_buf->flags & EFX_RX_PKT_CSUMMED) ?
436 CHECKSUM_UNNECESSARY : CHECKSUM_NONE);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100437
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000438 for (;;) {
439 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
440 rx_buf->page, rx_buf->page_offset,
441 rx_buf->len);
442 rx_buf->page = NULL;
443 skb->len += rx_buf->len;
444 if (skb_shinfo(skb)->nr_frags == n_frags)
445 break;
446
447 rx_buf = efx_rx_buf_next(&channel->rx_queue, rx_buf);
448 }
449
450 skb->data_len = skb->len;
451 skb->truesize += n_frags * efx->rx_buffer_truesize;
452
Alexandre Rames97d48a12013-01-11 12:26:21 +0000453 skb_record_rx_queue(skb, channel->rx_queue.core_index);
Ben Hutchings3eadb7b2009-11-23 16:02:40 +0000454
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000455 gro_result = napi_gro_frags(napi);
Alexandre Rames97d48a12013-01-11 12:26:21 +0000456 if (gro_result != GRO_DROP)
Ben Hutchings18e1d2b2009-10-29 07:21:24 +0000457 channel->irq_mod_score += 2;
Alexandre Rames97d48a12013-01-11 12:26:21 +0000458}
459
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000460/* Allocate and construct an SKB around page fragments */
Alexandre Rames97d48a12013-01-11 12:26:21 +0000461static struct sk_buff *efx_rx_mk_skb(struct efx_channel *channel,
462 struct efx_rx_buffer *rx_buf,
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000463 unsigned int n_frags,
Alexandre Rames97d48a12013-01-11 12:26:21 +0000464 u8 *eh, int hdr_len)
465{
466 struct efx_nic *efx = channel->efx;
467 struct sk_buff *skb;
468
469 /* Allocate an SKB to store the headers */
Ben Hutchings2ccd0b12013-11-28 18:58:11 +0000470 skb = netdev_alloc_skb(efx->net_dev,
471 efx->rx_ip_align + efx->rx_prefix_size +
472 hdr_len);
Edward Creee4d112e2014-07-15 11:58:12 +0100473 if (unlikely(skb == NULL)) {
474 atomic_inc(&efx->n_rx_noskb_drops);
Alexandre Rames97d48a12013-01-11 12:26:21 +0000475 return NULL;
Edward Creee4d112e2014-07-15 11:58:12 +0100476 }
Alexandre Rames97d48a12013-01-11 12:26:21 +0000477
Edward Creee01b16a2016-12-02 15:51:33 +0000478 EFX_WARN_ON_ONCE_PARANOID(rx_buf->len < hdr_len);
Alexandre Rames97d48a12013-01-11 12:26:21 +0000479
Ben Hutchings2ccd0b12013-11-28 18:58:11 +0000480 memcpy(skb->data + efx->rx_ip_align, eh - efx->rx_prefix_size,
481 efx->rx_prefix_size + hdr_len);
482 skb_reserve(skb, efx->rx_ip_align + efx->rx_prefix_size);
483 __skb_put(skb, hdr_len);
Alexandre Rames97d48a12013-01-11 12:26:21 +0000484
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000485 /* Append the remaining page(s) onto the frag list */
Alexandre Rames97d48a12013-01-11 12:26:21 +0000486 if (rx_buf->len > hdr_len) {
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000487 rx_buf->page_offset += hdr_len;
488 rx_buf->len -= hdr_len;
489
490 for (;;) {
491 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
492 rx_buf->page, rx_buf->page_offset,
493 rx_buf->len);
494 rx_buf->page = NULL;
495 skb->len += rx_buf->len;
496 skb->data_len += rx_buf->len;
497 if (skb_shinfo(skb)->nr_frags == n_frags)
498 break;
499
500 rx_buf = efx_rx_buf_next(&channel->rx_queue, rx_buf);
501 }
Alexandre Rames97d48a12013-01-11 12:26:21 +0000502 } else {
503 __free_pages(rx_buf->page, efx->rx_buffer_order);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000504 rx_buf->page = NULL;
505 n_frags = 0;
Ben Hutchings18e1d2b2009-10-29 07:21:24 +0000506 }
Alexandre Rames97d48a12013-01-11 12:26:21 +0000507
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000508 skb->truesize += n_frags * efx->rx_buffer_truesize;
Alexandre Rames97d48a12013-01-11 12:26:21 +0000509
510 /* Move past the ethernet header */
511 skb->protocol = eth_type_trans(skb, efx->net_dev);
512
Alexandre Rames36763262014-07-22 14:03:25 +0100513 skb_mark_napi_id(skb, &channel->napi_str);
514
Alexandre Rames97d48a12013-01-11 12:26:21 +0000515 return skb;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100516}
517
Ben Hutchings8ceee662008-04-27 12:55:59 +0100518void efx_rx_packet(struct efx_rx_queue *rx_queue, unsigned int index,
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000519 unsigned int n_frags, unsigned int len, u16 flags)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100520{
521 struct efx_nic *efx = rx_queue->efx;
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000522 struct efx_channel *channel = efx_rx_queue_channel(rx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100523 struct efx_rx_buffer *rx_buf;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100524
Andrew Rybchenko8ccf38002014-07-17 12:10:43 +0100525 rx_queue->rx_packets++;
526
Ben Hutchings8ceee662008-04-27 12:55:59 +0100527 rx_buf = efx_rx_buffer(rx_queue, index);
Ben Hutchings179ea7f2013-03-07 16:31:17 +0000528 rx_buf->flags |= flags;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100529
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000530 /* Validate the number of fragments and completed length */
531 if (n_frags == 1) {
Ben Hutchings3dced742013-04-27 01:55:18 +0100532 if (!(flags & EFX_RX_PKT_PREFIX_LEN))
533 efx_rx_packet__check_len(rx_queue, rx_buf, len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000534 } else if (unlikely(n_frags > EFX_RX_MAX_FRAGS) ||
Jon Coopere8c68c02013-03-08 10:18:28 +0000535 unlikely(len <= (n_frags - 1) * efx->rx_dma_len) ||
536 unlikely(len > n_frags * efx->rx_dma_len) ||
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000537 unlikely(!efx->rx_scatter)) {
538 /* If this isn't an explicit discard request, either
539 * the hardware or the driver is broken.
540 */
541 WARN_ON(!(len == 0 && rx_buf->flags & EFX_RX_PKT_DISCARD));
542 rx_buf->flags |= EFX_RX_PKT_DISCARD;
543 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100544
Ben Hutchings62776d02010-06-23 11:30:07 +0000545 netif_vdbg(efx, rx_status, efx->net_dev,
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000546 "RX queue %d received ids %x-%x len %d %s%s\n",
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000547 efx_rx_queue_index(rx_queue), index,
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000548 (index + n_frags - 1) & rx_queue->ptr_mask, len,
Ben Hutchingsdb339562011-08-26 18:05:11 +0100549 (rx_buf->flags & EFX_RX_PKT_CSUMMED) ? " [SUMMED]" : "",
550 (rx_buf->flags & EFX_RX_PKT_DISCARD) ? " [DISCARD]" : "");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100551
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000552 /* Discard packet, if instructed to do so. Process the
553 * previous receive first.
554 */
Ben Hutchingsdb339562011-08-26 18:05:11 +0100555 if (unlikely(rx_buf->flags & EFX_RX_PKT_DISCARD)) {
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000556 efx_rx_flush_packet(channel);
Ben Hutchings734d4e12013-07-04 23:48:46 +0100557 efx_discard_rx_packet(channel, rx_buf, n_frags);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000558 return;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100559 }
560
Ben Hutchings3dced742013-04-27 01:55:18 +0100561 if (n_frags == 1 && !(flags & EFX_RX_PKT_PREFIX_LEN))
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000562 rx_buf->len = len;
563
Daniel Pieczko27689352013-02-13 10:54:41 +0000564 /* Release and/or sync the DMA mapping - assumes all RX buffers
565 * consumed in-order per RX queue.
Ben Hutchings8ceee662008-04-27 12:55:59 +0100566 */
Daniel Pieczko27689352013-02-13 10:54:41 +0000567 efx_sync_rx_buffer(efx, rx_buf, rx_buf->len);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100568
569 /* Prefetch nice and early so data will (hopefully) be in cache by
570 * the time we look at it.
571 */
Ben Hutchings5036b7c2013-01-29 23:33:15 +0000572 prefetch(efx_rx_buf_va(rx_buf));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100573
Jon Cooper43a37392012-10-18 15:49:54 +0100574 rx_buf->page_offset += efx->rx_prefix_size;
575 rx_buf->len -= efx->rx_prefix_size;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000576
577 if (n_frags > 1) {
578 /* Release/sync DMA mapping for additional fragments.
579 * Fix length for last fragment.
580 */
581 unsigned int tail_frags = n_frags - 1;
582
583 for (;;) {
584 rx_buf = efx_rx_buf_next(rx_queue, rx_buf);
585 if (--tail_frags == 0)
586 break;
Jon Coopere8c68c02013-03-08 10:18:28 +0000587 efx_sync_rx_buffer(efx, rx_buf, efx->rx_dma_len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000588 }
Jon Coopere8c68c02013-03-08 10:18:28 +0000589 rx_buf->len = len - (n_frags - 1) * efx->rx_dma_len;
Daniel Pieczko27689352013-02-13 10:54:41 +0000590 efx_sync_rx_buffer(efx, rx_buf, rx_buf->len);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000591 }
Ben Hutchingsb74e3e82013-01-29 23:33:15 +0000592
Ben Hutchings734d4e12013-07-04 23:48:46 +0100593 /* All fragments have been DMA-synced, so recycle pages. */
Daniel Pieczko27689352013-02-13 10:54:41 +0000594 rx_buf = efx_rx_buffer(rx_queue, index);
Ben Hutchings734d4e12013-07-04 23:48:46 +0100595 efx_recycle_rx_pages(channel, rx_buf, n_frags);
Daniel Pieczko27689352013-02-13 10:54:41 +0000596
Ben Hutchings8ceee662008-04-27 12:55:59 +0100597 /* Pipeline receives so that we give time for packet headers to be
598 * prefetched into cache.
599 */
Ben Hutchingsff734ef2013-01-29 23:33:14 +0000600 efx_rx_flush_packet(channel);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000601 channel->rx_pkt_n_frags = n_frags;
602 channel->rx_pkt_index = index;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100603}
604
Alexandre Rames97d48a12013-01-11 12:26:21 +0000605static void efx_rx_deliver(struct efx_channel *channel, u8 *eh,
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000606 struct efx_rx_buffer *rx_buf,
607 unsigned int n_frags)
Ben Hutchings1ddceb42012-01-23 22:41:30 +0000608{
609 struct sk_buff *skb;
Alexandre Rames97d48a12013-01-11 12:26:21 +0000610 u16 hdr_len = min_t(u16, rx_buf->len, EFX_SKB_HEADERS);
Ben Hutchings1ddceb42012-01-23 22:41:30 +0000611
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000612 skb = efx_rx_mk_skb(channel, rx_buf, n_frags, eh, hdr_len);
Alexandre Rames97d48a12013-01-11 12:26:21 +0000613 if (unlikely(skb == NULL)) {
Daniel Pieczko9eb0a5d2015-05-29 12:25:54 +0100614 struct efx_rx_queue *rx_queue;
615
616 rx_queue = efx_channel_get_rx_queue(channel);
617 efx_free_rx_buffers(rx_queue, rx_buf, n_frags);
Alexandre Rames97d48a12013-01-11 12:26:21 +0000618 return;
619 }
620 skb_record_rx_queue(skb, channel->rx_queue.core_index);
Ben Hutchings1ddceb42012-01-23 22:41:30 +0000621
622 /* Set the SKB flags */
623 skb_checksum_none_assert(skb);
Jon Cooperc99dffc2013-04-08 12:49:48 +0100624 if (likely(rx_buf->flags & EFX_RX_PKT_CSUMMED))
625 skb->ip_summed = CHECKSUM_UNNECESSARY;
Ben Hutchings1ddceb42012-01-23 22:41:30 +0000626
Jon Cooperbd9a2652013-11-18 12:54:41 +0000627 efx_rx_skb_attach_timestamp(channel, skb);
628
Stuart Hodgsonc31e5f92012-07-18 09:52:11 +0100629 if (channel->type->receive_skb)
Ben Hutchings4a74dc652013-03-05 20:13:54 +0000630 if (channel->type->receive_skb(channel, skb))
Alexandre Rames97d48a12013-01-11 12:26:21 +0000631 return;
Ben Hutchings1ddceb42012-01-23 22:41:30 +0000632
Ben Hutchings4a74dc652013-03-05 20:13:54 +0000633 /* Pass the packet up */
634 netif_receive_skb(skb);
Ben Hutchings1ddceb42012-01-23 22:41:30 +0000635}
636
Ben Hutchings8ceee662008-04-27 12:55:59 +0100637/* Handle a received packet. Second half: Touches packet payload. */
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000638void __efx_rx_packet(struct efx_channel *channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100639{
640 struct efx_nic *efx = channel->efx;
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000641 struct efx_rx_buffer *rx_buf =
642 efx_rx_buffer(&channel->rx_queue, channel->rx_pkt_index);
Ben Hutchingsb74e3e82013-01-29 23:33:15 +0000643 u8 *eh = efx_rx_buf_va(rx_buf);
Ben Hutchings604f6042010-06-25 07:05:33 +0000644
Ben Hutchings3dced742013-04-27 01:55:18 +0100645 /* Read length from the prefix if necessary. This already
646 * excludes the length of the prefix itself.
647 */
648 if (rx_buf->flags & EFX_RX_PKT_PREFIX_LEN)
649 rx_buf->len = le16_to_cpup((__le16 *)
650 (eh + efx->rx_packet_len_offset));
651
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100652 /* If we're in loopback test, then pass the packet directly to the
653 * loopback layer, and free the rx_buf here
654 */
655 if (unlikely(efx->loopback_selftest)) {
Daniel Pieczko9eb0a5d2015-05-29 12:25:54 +0100656 struct efx_rx_queue *rx_queue;
657
Steve Hodgsona526f142011-02-24 23:45:16 +0000658 efx_loopback_rx_packet(efx, eh, rx_buf->len);
Daniel Pieczko9eb0a5d2015-05-29 12:25:54 +0100659 rx_queue = efx_channel_get_rx_queue(channel);
660 efx_free_rx_buffers(rx_queue, rx_buf,
661 channel->rx_pkt_n_frags);
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000662 goto out;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100663 }
664
Ben Hutchingsabfe9032011-04-05 15:00:02 +0100665 if (unlikely(!(efx->net_dev->features & NETIF_F_RXCSUM)))
Ben Hutchingsdb339562011-08-26 18:05:11 +0100666 rx_buf->flags &= ~EFX_RX_PKT_CSUMMED;
Ben Hutchingsab3cf6d2011-04-01 22:20:06 +0100667
Eric Dumazete7fe9492017-02-02 17:13:19 -0800668 if ((rx_buf->flags & EFX_RX_PKT_TCP) && !channel->type->receive_skb)
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000669 efx_rx_packet_gro(channel, rx_buf, channel->rx_pkt_n_frags, eh);
Ben Hutchings1ddceb42012-01-23 22:41:30 +0000670 else
Ben Hutchings85740cdf2013-01-29 23:33:15 +0000671 efx_rx_deliver(channel, eh, rx_buf, channel->rx_pkt_n_frags);
672out:
673 channel->rx_pkt_n_frags = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100674}
675
676int efx_probe_rx_queue(struct efx_rx_queue *rx_queue)
677{
678 struct efx_nic *efx = rx_queue->efx;
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000679 unsigned int entries;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100680 int rc;
681
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000682 /* Create the smallest power-of-two aligned ring */
683 entries = max(roundup_pow_of_two(efx->rxq_entries), EFX_MIN_DMAQ_SIZE);
Edward Creee01b16a2016-12-02 15:51:33 +0000684 EFX_WARN_ON_PARANOID(entries > EFX_MAX_DMAQ_SIZE);
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000685 rx_queue->ptr_mask = entries - 1;
686
Ben Hutchings62776d02010-06-23 11:30:07 +0000687 netif_dbg(efx, probe, efx->net_dev,
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000688 "creating RX queue %d size %#x mask %#x\n",
689 efx_rx_queue_index(rx_queue), efx->rxq_entries,
690 rx_queue->ptr_mask);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100691
692 /* Allocate RX buffers */
Thomas Meyerc2e4e252011-12-02 12:36:13 +0000693 rx_queue->buffer = kcalloc(entries, sizeof(*rx_queue->buffer),
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000694 GFP_KERNEL);
Ben Hutchings8831da72008-09-01 12:47:48 +0100695 if (!rx_queue->buffer)
696 return -ENOMEM;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100697
Ben Hutchings152b6a62009-11-29 03:43:56 +0000698 rc = efx_nic_probe_rx(rx_queue);
Ben Hutchings8831da72008-09-01 12:47:48 +0100699 if (rc) {
700 kfree(rx_queue->buffer);
701 rx_queue->buffer = NULL;
702 }
Daniel Pieczko27689352013-02-13 10:54:41 +0000703
Ben Hutchings8ceee662008-04-27 12:55:59 +0100704 return rc;
705}
706
stephen hemmingerdebd0032013-03-16 06:57:51 +0000707static void efx_init_rx_recycle_ring(struct efx_nic *efx,
708 struct efx_rx_queue *rx_queue)
Daniel Pieczko27689352013-02-13 10:54:41 +0000709{
710 unsigned int bufs_in_recycle_ring, page_ring_size;
711
712 /* Set the RX recycle ring size */
713#ifdef CONFIG_PPC64
714 bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_IOMMU;
715#else
Ben Hutchings636d73d2013-06-12 18:09:08 +0100716 if (iommu_present(&pci_bus_type))
Daniel Pieczko27689352013-02-13 10:54:41 +0000717 bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_IOMMU;
718 else
719 bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_NOIOMMU;
720#endif /* CONFIG_PPC64 */
721
722 page_ring_size = roundup_pow_of_two(bufs_in_recycle_ring /
723 efx->rx_bufs_per_page);
724 rx_queue->page_ring = kcalloc(page_ring_size,
725 sizeof(*rx_queue->page_ring), GFP_KERNEL);
726 rx_queue->page_ptr_mask = page_ring_size - 1;
727}
728
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100729void efx_init_rx_queue(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100730{
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000731 struct efx_nic *efx = rx_queue->efx;
David Riddoch64235182012-04-11 13:12:41 +0100732 unsigned int max_fill, trigger, max_trigger;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100733
Ben Hutchings62776d02010-06-23 11:30:07 +0000734 netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev,
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000735 "initialising RX queue %d\n", efx_rx_queue_index(rx_queue));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100736
737 /* Initialise ptr fields */
738 rx_queue->added_count = 0;
739 rx_queue->notified_count = 0;
740 rx_queue->removed_count = 0;
741 rx_queue->min_fill = -1U;
Daniel Pieczko27689352013-02-13 10:54:41 +0000742 efx_init_rx_recycle_ring(efx, rx_queue);
743
744 rx_queue->page_remove = 0;
745 rx_queue->page_add = rx_queue->page_ptr_mask + 1;
746 rx_queue->page_recycle_count = 0;
747 rx_queue->page_recycle_failed = 0;
748 rx_queue->page_recycle_full = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100749
750 /* Initialise limit fields */
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000751 max_fill = efx->rxq_entries - EFX_RXD_HEAD_ROOM;
Daniel Pieczko1648a232013-02-13 10:54:41 +0000752 max_trigger =
753 max_fill - efx->rx_pages_per_batch * efx->rx_bufs_per_page;
David Riddoch64235182012-04-11 13:12:41 +0100754 if (rx_refill_threshold != 0) {
755 trigger = max_fill * min(rx_refill_threshold, 100U) / 100U;
756 if (trigger > max_trigger)
757 trigger = max_trigger;
758 } else {
759 trigger = max_trigger;
760 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100761
762 rx_queue->max_fill = max_fill;
763 rx_queue->fast_fill_trigger = trigger;
Ben Hutchingsd8aec742013-05-27 16:52:54 +0100764 rx_queue->refill_enabled = true;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100765
766 /* Set up RX descriptor ring */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000767 efx_nic_init_rx(rx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100768}
769
770void efx_fini_rx_queue(struct efx_rx_queue *rx_queue)
771{
772 int i;
Daniel Pieczko27689352013-02-13 10:54:41 +0000773 struct efx_nic *efx = rx_queue->efx;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100774 struct efx_rx_buffer *rx_buf;
775
Ben Hutchings62776d02010-06-23 11:30:07 +0000776 netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev,
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000777 "shutting down RX queue %d\n", efx_rx_queue_index(rx_queue));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100778
Steve Hodgson90d683a2010-06-01 11:19:39 +0000779 del_timer_sync(&rx_queue->slow_fill);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100780
Daniel Pieczko27689352013-02-13 10:54:41 +0000781 /* Release RX buffers from the current read ptr to the write ptr */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100782 if (rx_queue->buffer) {
Daniel Pieczko27689352013-02-13 10:54:41 +0000783 for (i = rx_queue->removed_count; i < rx_queue->added_count;
784 i++) {
785 unsigned index = i & rx_queue->ptr_mask;
786 rx_buf = efx_rx_buffer(rx_queue, index);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100787 efx_fini_rx_buffer(rx_queue, rx_buf);
788 }
789 }
Daniel Pieczko27689352013-02-13 10:54:41 +0000790
791 /* Unmap and release the pages in the recycle ring. Remove the ring. */
792 for (i = 0; i <= rx_queue->page_ptr_mask; i++) {
793 struct page *page = rx_queue->page_ring[i];
794 struct efx_rx_page_state *state;
795
796 if (page == NULL)
797 continue;
798
799 state = page_address(page);
800 dma_unmap_page(&efx->pci_dev->dev, state->dma_addr,
801 PAGE_SIZE << efx->rx_buffer_order,
802 DMA_FROM_DEVICE);
803 put_page(page);
804 }
805 kfree(rx_queue->page_ring);
806 rx_queue->page_ring = NULL;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100807}
808
809void efx_remove_rx_queue(struct efx_rx_queue *rx_queue)
810{
Ben Hutchings62776d02010-06-23 11:30:07 +0000811 netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev,
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000812 "destroying RX queue %d\n", efx_rx_queue_index(rx_queue));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100813
Ben Hutchings152b6a62009-11-29 03:43:56 +0000814 efx_nic_remove_rx(rx_queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100815
816 kfree(rx_queue->buffer);
817 rx_queue->buffer = NULL;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100818}
819
Ben Hutchings8ceee662008-04-27 12:55:59 +0100820
Ben Hutchings8ceee662008-04-27 12:55:59 +0100821module_param(rx_refill_threshold, uint, 0444);
822MODULE_PARM_DESC(rx_refill_threshold,
David Riddoch64235182012-04-11 13:12:41 +0100823 "RX descriptor ring refill threshold (%)");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100824
Ben Hutchingsadd72472012-11-08 01:46:53 +0000825#ifdef CONFIG_RFS_ACCEL
826
827int efx_filter_rfs(struct net_device *net_dev, const struct sk_buff *skb,
828 u16 rxq_index, u32 flow_id)
829{
830 struct efx_nic *efx = netdev_priv(net_dev);
831 struct efx_channel *channel;
832 struct efx_filter_spec spec;
Edward Cree68bb399e2016-05-26 21:46:05 +0100833 struct flow_keys fk;
Ben Hutchingsadd72472012-11-08 01:46:53 +0000834 int rc;
835
Jon Cooperfaf8dcc2016-05-31 19:12:32 +0100836 if (flow_id == RPS_FLOW_ID_INVALID)
837 return -EINVAL;
838
Edward Cree68bb399e2016-05-26 21:46:05 +0100839 if (!skb_flow_dissect_flow_keys(skb, &fk, 0))
840 return -EPROTONOSUPPORT;
Ben Hutchingsadd72472012-11-08 01:46:53 +0000841
Edward Cree68bb399e2016-05-26 21:46:05 +0100842 if (fk.basic.n_proto != htons(ETH_P_IP) && fk.basic.n_proto != htons(ETH_P_IPV6))
843 return -EPROTONOSUPPORT;
844 if (fk.control.flags & FLOW_DIS_IS_FRAGMENT)
Ben Hutchingsadd72472012-11-08 01:46:53 +0000845 return -EPROTONOSUPPORT;
Ben Hutchingsadd72472012-11-08 01:46:53 +0000846
847 efx_filter_init_rx(&spec, EFX_FILTER_PRI_HINT,
848 efx->rx_scatter ? EFX_FILTER_FLAG_RX_SCATTER : 0,
849 rxq_index);
Ben Hutchingsc47b2d92013-09-03 17:22:23 +0100850 spec.match_flags =
851 EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_IP_PROTO |
852 EFX_FILTER_MATCH_LOC_HOST | EFX_FILTER_MATCH_LOC_PORT |
853 EFX_FILTER_MATCH_REM_HOST | EFX_FILTER_MATCH_REM_PORT;
Edward Cree68bb399e2016-05-26 21:46:05 +0100854 spec.ether_type = fk.basic.n_proto;
855 spec.ip_proto = fk.basic.ip_proto;
Ben Hutchingsc47b2d92013-09-03 17:22:23 +0100856
Edward Cree68bb399e2016-05-26 21:46:05 +0100857 if (fk.basic.n_proto == htons(ETH_P_IP)) {
858 spec.rem_host[0] = fk.addrs.v4addrs.src;
859 spec.loc_host[0] = fk.addrs.v4addrs.dst;
Ben Hutchingsc47b2d92013-09-03 17:22:23 +0100860 } else {
Edward Cree68bb399e2016-05-26 21:46:05 +0100861 memcpy(spec.rem_host, &fk.addrs.v6addrs.src, sizeof(struct in6_addr));
862 memcpy(spec.loc_host, &fk.addrs.v6addrs.dst, sizeof(struct in6_addr));
Ben Hutchingsc47b2d92013-09-03 17:22:23 +0100863 }
864
Edward Cree68bb399e2016-05-26 21:46:05 +0100865 spec.rem_port = fk.ports.src;
866 spec.loc_port = fk.ports.dst;
Ben Hutchingsadd72472012-11-08 01:46:53 +0000867
868 rc = efx->type->filter_rfs_insert(efx, &spec);
869 if (rc < 0)
870 return rc;
871
872 /* Remember this so we can check whether to expire the filter later */
Jon Cooperfaf8dcc2016-05-31 19:12:32 +0100873 channel = efx_get_channel(efx, rxq_index);
874 channel->rps_flow_id[rc] = flow_id;
Ben Hutchingsadd72472012-11-08 01:46:53 +0000875 ++channel->rfs_filters_added;
876
Edward Cree68bb399e2016-05-26 21:46:05 +0100877 if (spec.ether_type == htons(ETH_P_IP))
Ben Hutchingsc47b2d92013-09-03 17:22:23 +0100878 netif_info(efx, rx_status, efx->net_dev,
879 "steering %s %pI4:%u:%pI4:%u to queue %u [flow %u filter %d]\n",
880 (spec.ip_proto == IPPROTO_TCP) ? "TCP" : "UDP",
Edward Cree68bb399e2016-05-26 21:46:05 +0100881 spec.rem_host, ntohs(spec.rem_port), spec.loc_host,
882 ntohs(spec.loc_port), rxq_index, flow_id, rc);
Ben Hutchingsc47b2d92013-09-03 17:22:23 +0100883 else
884 netif_info(efx, rx_status, efx->net_dev,
885 "steering %s [%pI6]:%u:[%pI6]:%u to queue %u [flow %u filter %d]\n",
886 (spec.ip_proto == IPPROTO_TCP) ? "TCP" : "UDP",
Edward Cree68bb399e2016-05-26 21:46:05 +0100887 spec.rem_host, ntohs(spec.rem_port), spec.loc_host,
888 ntohs(spec.loc_port), rxq_index, flow_id, rc);
Ben Hutchingsadd72472012-11-08 01:46:53 +0000889
890 return rc;
891}
892
893bool __efx_filter_rfs_expire(struct efx_nic *efx, unsigned int quota)
894{
895 bool (*expire_one)(struct efx_nic *efx, u32 flow_id, unsigned int index);
Jon Cooperfaf8dcc2016-05-31 19:12:32 +0100896 unsigned int channel_idx, index, size;
Ben Hutchingsadd72472012-11-08 01:46:53 +0000897 u32 flow_id;
898
899 if (!spin_trylock_bh(&efx->filter_lock))
900 return false;
901
902 expire_one = efx->type->filter_rfs_expire_one;
Jon Cooperfaf8dcc2016-05-31 19:12:32 +0100903 channel_idx = efx->rps_expire_channel;
Ben Hutchingsadd72472012-11-08 01:46:53 +0000904 index = efx->rps_expire_index;
905 size = efx->type->max_rx_ip_filters;
906 while (quota--) {
Jon Cooperfaf8dcc2016-05-31 19:12:32 +0100907 struct efx_channel *channel = efx_get_channel(efx, channel_idx);
908 flow_id = channel->rps_flow_id[index];
909
910 if (flow_id != RPS_FLOW_ID_INVALID &&
911 expire_one(efx, flow_id, index)) {
Ben Hutchingsadd72472012-11-08 01:46:53 +0000912 netif_info(efx, rx_status, efx->net_dev,
Jon Cooperfaf8dcc2016-05-31 19:12:32 +0100913 "expired filter %d [queue %u flow %u]\n",
914 index, channel_idx, flow_id);
915 channel->rps_flow_id[index] = RPS_FLOW_ID_INVALID;
916 }
917 if (++index == size) {
918 if (++channel_idx == efx->n_channels)
919 channel_idx = 0;
Ben Hutchingsadd72472012-11-08 01:46:53 +0000920 index = 0;
Jon Cooperfaf8dcc2016-05-31 19:12:32 +0100921 }
Ben Hutchingsadd72472012-11-08 01:46:53 +0000922 }
Jon Cooperfaf8dcc2016-05-31 19:12:32 +0100923 efx->rps_expire_channel = channel_idx;
Ben Hutchingsadd72472012-11-08 01:46:53 +0000924 efx->rps_expire_index = index;
925
926 spin_unlock_bh(&efx->filter_lock);
927 return true;
928}
929
930#endif /* CONFIG_RFS_ACCEL */
Ben Hutchingsb883d0b2013-01-15 22:00:07 +0000931
932/**
933 * efx_filter_is_mc_recipient - test whether spec is a multicast recipient
934 * @spec: Specification to test
935 *
936 * Return: %true if the specification is a non-drop RX filter that
937 * matches a local MAC address I/G bit value of 1 or matches a local
938 * IPv4 or IPv6 address value in the respective multicast address
939 * range. Otherwise %false.
940 */
941bool efx_filter_is_mc_recipient(const struct efx_filter_spec *spec)
942{
943 if (!(spec->flags & EFX_FILTER_FLAG_RX) ||
944 spec->dmaq_id == EFX_FILTER_RX_DMAQ_ID_DROP)
945 return false;
946
947 if (spec->match_flags &
948 (EFX_FILTER_MATCH_LOC_MAC | EFX_FILTER_MATCH_LOC_MAC_IG) &&
949 is_multicast_ether_addr(spec->loc_mac))
950 return true;
951
952 if ((spec->match_flags &
953 (EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_LOC_HOST)) ==
954 (EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_LOC_HOST)) {
955 if (spec->ether_type == htons(ETH_P_IP) &&
956 ipv4_is_multicast(spec->loc_host[0]))
957 return true;
958 if (spec->ether_type == htons(ETH_P_IPV6) &&
959 ((const u8 *)spec->loc_host)[0] == 0xff)
960 return true;
961 }
962
963 return false;
964}