Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1 | /**************************************************************************** |
Ben Hutchings | f7a6d2c | 2013-08-29 23:32:48 +0100 | [diff] [blame] | 2 | * Driver for Solarflare network controllers and boards |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 3 | * Copyright 2005-2006 Fen Systems Ltd. |
Ben Hutchings | f7a6d2c | 2013-08-29 23:32:48 +0100 | [diff] [blame] | 4 | * Copyright 2005-2013 Solarflare Communications Inc. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 14 | #include <linux/ip.h> |
Ben Hutchings | c47b2d9 | 2013-09-03 17:22:23 +0100 | [diff] [blame] | 15 | #include <linux/ipv6.h> |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 16 | #include <linux/tcp.h> |
| 17 | #include <linux/udp.h> |
Paul Gortmaker | 70c7160 | 2011-05-22 16:47:17 -0400 | [diff] [blame] | 18 | #include <linux/prefetch.h> |
Paul Gortmaker | 6eb07ca | 2011-09-15 19:46:05 -0400 | [diff] [blame] | 19 | #include <linux/moduleparam.h> |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 20 | #include <linux/iommu.h> |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 21 | #include <net/ip.h> |
| 22 | #include <net/checksum.h> |
| 23 | #include "net_driver.h" |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 24 | #include "efx.h" |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 25 | #include "filter.h" |
Ben Hutchings | 744093c | 2009-11-29 15:12:08 +0000 | [diff] [blame] | 26 | #include "nic.h" |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 27 | #include "selftest.h" |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 28 | #include "workarounds.h" |
| 29 | |
Daniel Pieczko | 1648a23 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 30 | /* Preferred number of descriptors to fill at once */ |
| 31 | #define EFX_RX_PREFERRED_BATCH 8U |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 32 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 33 | /* 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 Pieczko | 1648a23 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 38 | #define EFX_RECYCLE_RING_SIZE_NOIOMMU (2 * EFX_RX_PREFERRED_BATCH) |
Steve Hodgson | 62b330b | 2010-06-01 11:20:53 +0000 | [diff] [blame] | 39 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 40 | /* Size of buffer allocated for skb header area. */ |
Jon Cooper | d4ef5b6 | 2013-04-08 12:55:58 +0100 | [diff] [blame] | 41 | #define EFX_SKB_HEADERS 128u |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 42 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 43 | /* This is the percentage fill level below which new RX descriptors |
| 44 | * will be added to the RX descriptor ring. |
| 45 | */ |
David Riddoch | 6423518 | 2012-04-11 13:12:41 +0100 | [diff] [blame] | 46 | static unsigned int rx_refill_threshold; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 47 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 48 | /* 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 Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 52 | /* |
| 53 | * RX maximum head room required. |
| 54 | * |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 55 | * This must be at least 1 to prevent overflow, plus one packet-worth |
| 56 | * to allow pipelined receives. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 57 | */ |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 58 | #define EFX_RXD_HEAD_ROOM (1 + EFX_RX_MAX_FRAGS) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 59 | |
Ben Hutchings | b184f16 | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 60 | static inline u8 *efx_rx_buf_va(struct efx_rx_buffer *buf) |
Ben Hutchings | 39c9cf0 | 2010-06-23 11:31:28 +0000 | [diff] [blame] | 61 | { |
Ben Hutchings | b184f16 | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 62 | return page_address(buf->page) + buf->page_offset; |
Steve Hodgson | a526f14 | 2011-02-24 23:45:16 +0000 | [diff] [blame] | 63 | } |
| 64 | |
Jon Cooper | 43a3739 | 2012-10-18 15:49:54 +0100 | [diff] [blame] | 65 | static inline u32 efx_rx_buf_hash(struct efx_nic *efx, const u8 *eh) |
Steve Hodgson | a526f14 | 2011-02-24 23:45:16 +0000 | [diff] [blame] | 66 | { |
Jon Cooper | 43a3739 | 2012-10-18 15:49:54 +0100 | [diff] [blame] | 67 | #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) |
| 68 | return __le32_to_cpup((const __le32 *)(eh + efx->rx_packet_hash_offset)); |
Ben Hutchings | 39c9cf0 | 2010-06-23 11:31:28 +0000 | [diff] [blame] | 69 | #else |
Jon Cooper | 43a3739 | 2012-10-18 15:49:54 +0100 | [diff] [blame] | 70 | const u8 *data = eh + efx->rx_packet_hash_offset; |
Ben Hutchings | 0beaca2 | 2012-01-05 18:54:04 +0000 | [diff] [blame] | 71 | return (u32)data[0] | |
| 72 | (u32)data[1] << 8 | |
| 73 | (u32)data[2] << 16 | |
| 74 | (u32)data[3] << 24; |
Ben Hutchings | 39c9cf0 | 2010-06-23 11:31:28 +0000 | [diff] [blame] | 75 | #endif |
| 76 | } |
| 77 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 78 | static inline struct efx_rx_buffer * |
| 79 | efx_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 Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 87 | static 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 Pieczko | 1648a23 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 95 | void efx_rx_config_page_split(struct efx_nic *efx) |
| 96 | { |
Andrew Rybchenko | 2ec0301 | 2013-11-16 11:02:27 +0400 | [diff] [blame] | 97 | efx->rx_page_buf_step = ALIGN(efx->rx_dma_len + efx->rx_ip_align, |
Ben Hutchings | 950c54d | 2013-05-13 12:01:22 +0000 | [diff] [blame] | 98 | EFX_RX_BUF_ALIGNMENT); |
Daniel Pieczko | 1648a23 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 99 | 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 Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 108 | /* Check the RX page recycle ring for a page that can be reused. */ |
| 109 | static 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 Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 142 | /** |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 143 | * efx_init_rx_buffers - create EFX_RX_BATCH page-based RX buffers |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 144 | * |
| 145 | * @rx_queue: Efx RX queue |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 146 | * |
Daniel Pieczko | 1648a23 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 147 | * 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 Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 151 | */ |
Jon Cooper | cce2879 | 2013-10-02 11:04:14 +0100 | [diff] [blame] | 152 | static int efx_init_rx_buffers(struct efx_rx_queue *rx_queue, bool atomic) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 153 | { |
| 154 | struct efx_nic *efx = rx_queue->efx; |
Steve Hodgson | f7d6f37 | 2010-06-01 11:33:17 +0000 | [diff] [blame] | 155 | struct efx_rx_buffer *rx_buf; |
| 156 | struct page *page; |
Ben Hutchings | b590ace | 2013-01-10 23:51:54 +0000 | [diff] [blame] | 157 | unsigned int page_offset; |
Steve Hodgson | 62b330b | 2010-06-01 11:20:53 +0000 | [diff] [blame] | 158 | struct efx_rx_page_state *state; |
Steve Hodgson | f7d6f37 | 2010-06-01 11:33:17 +0000 | [diff] [blame] | 159 | dma_addr_t dma_addr; |
| 160 | unsigned index, count; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 161 | |
Daniel Pieczko | 1648a23 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 162 | count = 0; |
| 163 | do { |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 164 | page = efx_reuse_page(rx_queue); |
| 165 | if (page == NULL) { |
Mel Gorman | 453f85d | 2017-11-15 17:38:03 -0800 | [diff] [blame^] | 166 | page = alloc_pages(__GFP_COMP | |
Jon Cooper | cce2879 | 2013-10-02 11:04:14 +0100 | [diff] [blame] | 167 | (atomic ? GFP_ATOMIC : GFP_KERNEL), |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 168 | 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 Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 185 | } |
Steve Hodgson | 62b330b | 2010-06-01 11:20:53 +0000 | [diff] [blame] | 186 | |
Steve Hodgson | 62b330b | 2010-06-01 11:20:53 +0000 | [diff] [blame] | 187 | dma_addr += sizeof(struct efx_rx_page_state); |
Ben Hutchings | b590ace | 2013-01-10 23:51:54 +0000 | [diff] [blame] | 188 | page_offset = sizeof(struct efx_rx_page_state); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 189 | |
Daniel Pieczko | 1648a23 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 190 | do { |
| 191 | index = rx_queue->added_count & rx_queue->ptr_mask; |
| 192 | rx_buf = efx_rx_buffer(rx_queue, index); |
Andrew Rybchenko | 2ec0301 | 2013-11-16 11:02:27 +0400 | [diff] [blame] | 193 | rx_buf->dma_addr = dma_addr + efx->rx_ip_align; |
Daniel Pieczko | 1648a23 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 194 | rx_buf->page = page; |
Andrew Rybchenko | 2ec0301 | 2013-11-16 11:02:27 +0400 | [diff] [blame] | 195 | rx_buf->page_offset = page_offset + efx->rx_ip_align; |
Daniel Pieczko | 1648a23 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 196 | rx_buf->len = efx->rx_dma_len; |
Ben Hutchings | 179ea7f | 2013-03-07 16:31:17 +0000 | [diff] [blame] | 197 | rx_buf->flags = 0; |
Daniel Pieczko | 1648a23 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 198 | ++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 Hutchings | 179ea7f | 2013-03-07 16:31:17 +0000 | [diff] [blame] | 203 | |
| 204 | rx_buf->flags = EFX_RX_BUF_LAST_IN_PAGE; |
Daniel Pieczko | 1648a23 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 205 | } while (++count < efx->rx_pages_per_batch); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 206 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 207 | return 0; |
| 208 | } |
| 209 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 210 | /* Unmap a DMA-mapped page. This function is only called for the final RX |
| 211 | * buffer in a page. |
| 212 | */ |
Ben Hutchings | 4d56606 | 2008-09-01 12:47:12 +0100 | [diff] [blame] | 213 | static void efx_unmap_rx_buffer(struct efx_nic *efx, |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 214 | struct efx_rx_buffer *rx_buf) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 215 | { |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 216 | struct page *page = rx_buf->page; |
Steve Hodgson | 62b330b | 2010-06-01 11:20:53 +0000 | [diff] [blame] | 217 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 218 | 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 Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 224 | } |
| 225 | } |
| 226 | |
Daniel Pieczko | 9eb0a5d | 2015-05-29 12:25:54 +0100 | [diff] [blame] | 227 | static void efx_free_rx_buffers(struct efx_rx_queue *rx_queue, |
| 228 | struct efx_rx_buffer *rx_buf, |
| 229 | unsigned int num_bufs) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 230 | { |
Daniel Pieczko | 9eb0a5d | 2015-05-29 12:25:54 +0100 | [diff] [blame] | 231 | 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 Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 238 | } |
| 239 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 240 | /* 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 | */ |
| 244 | static 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 Hutchings | 179ea7f | 2013-03-07 16:31:17 +0000 | [diff] [blame] | 253 | if (!(rx_buf->flags & EFX_RX_BUF_LAST_IN_PAGE)) |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 254 | 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 Hutchings | 4d56606 | 2008-09-01 12:47:12 +0100 | [diff] [blame] | 276 | static void efx_fini_rx_buffer(struct efx_rx_queue *rx_queue, |
| 277 | struct efx_rx_buffer *rx_buf) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 278 | { |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 279 | /* Release the page reference we hold for the buffer. */ |
| 280 | if (rx_buf->page) |
| 281 | put_page(rx_buf->page); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 282 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 283 | /* If this is the last buffer in a page, unmap and free it. */ |
Ben Hutchings | 179ea7f | 2013-03-07 16:31:17 +0000 | [diff] [blame] | 284 | if (rx_buf->flags & EFX_RX_BUF_LAST_IN_PAGE) { |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 285 | efx_unmap_rx_buffer(rx_queue->efx, rx_buf); |
Daniel Pieczko | 9eb0a5d | 2015-05-29 12:25:54 +0100 | [diff] [blame] | 286 | efx_free_rx_buffers(rx_queue, rx_buf, 1); |
Steve Hodgson | 62b330b | 2010-06-01 11:20:53 +0000 | [diff] [blame] | 287 | } |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 288 | rx_buf->page = NULL; |
Steve Hodgson | 2445580 | 2010-06-01 11:20:34 +0000 | [diff] [blame] | 289 | } |
| 290 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 291 | /* Recycle the pages that are used by buffers that have just been received. */ |
Ben Hutchings | 734d4e1 | 2013-07-04 23:48:46 +0100 | [diff] [blame] | 292 | static void efx_recycle_rx_pages(struct efx_channel *channel, |
| 293 | struct efx_rx_buffer *rx_buf, |
| 294 | unsigned int n_frags) |
Steve Hodgson | 2445580 | 2010-06-01 11:20:34 +0000 | [diff] [blame] | 295 | { |
Ben Hutchings | f7d12cd | 2010-09-10 06:41:47 +0000 | [diff] [blame] | 296 | struct efx_rx_queue *rx_queue = efx_channel_get_rx_queue(channel); |
Steve Hodgson | 2445580 | 2010-06-01 11:20:34 +0000 | [diff] [blame] | 297 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 298 | do { |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 299 | efx_recycle_rx_page(channel, rx_buf); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 300 | rx_buf = efx_rx_buf_next(rx_queue, rx_buf); |
| 301 | } while (--n_frags); |
Steve Hodgson | 2445580 | 2010-06-01 11:20:34 +0000 | [diff] [blame] | 302 | } |
| 303 | |
Ben Hutchings | 734d4e1 | 2013-07-04 23:48:46 +0100 | [diff] [blame] | 304 | static 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 Pieczko | 9eb0a5d | 2015-05-29 12:25:54 +0100 | [diff] [blame] | 312 | efx_free_rx_buffers(rx_queue, rx_buf, n_frags); |
Ben Hutchings | 734d4e1 | 2013-07-04 23:48:46 +0100 | [diff] [blame] | 313 | } |
| 314 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 315 | /** |
| 316 | * efx_fast_push_rx_descriptors - push new RX descriptors quickly |
| 317 | * @rx_queue: RX descriptor queue |
Ben Hutchings | 49ce9c2 | 2012-07-10 10:56:00 +0000 | [diff] [blame] | 318 | * |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 319 | * This will aim to fill the RX descriptor queue up to |
David Riddoch | da9ca50 | 2012-04-11 13:09:24 +0100 | [diff] [blame] | 320 | * @rx_queue->@max_fill. If there is insufficient atomic |
Steve Hodgson | 90d683a | 2010-06-01 11:19:39 +0000 | [diff] [blame] | 321 | * 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 Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 326 | */ |
Jon Cooper | cce2879 | 2013-10-02 11:04:14 +0100 | [diff] [blame] | 327 | void efx_fast_push_rx_descriptors(struct efx_rx_queue *rx_queue, bool atomic) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 328 | { |
Daniel Pieczko | 1648a23 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 329 | struct efx_nic *efx = rx_queue->efx; |
| 330 | unsigned int fill_level, batch_size; |
Steve Hodgson | f7d6f37 | 2010-06-01 11:33:17 +0000 | [diff] [blame] | 331 | int space, rc = 0; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 332 | |
Ben Hutchings | d8aec74 | 2013-05-27 16:52:54 +0100 | [diff] [blame] | 333 | if (!rx_queue->refill_enabled) |
| 334 | return; |
| 335 | |
Steve Hodgson | 90d683a | 2010-06-01 11:19:39 +0000 | [diff] [blame] | 336 | /* Calculate current fill level, and exit if we don't need to fill */ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 337 | fill_level = (rx_queue->added_count - rx_queue->removed_count); |
Edward Cree | e01b16a | 2016-12-02 15:51:33 +0000 | [diff] [blame] | 338 | EFX_WARN_ON_ONCE_PARANOID(fill_level > rx_queue->efx->rxq_entries); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 339 | if (fill_level >= rx_queue->fast_fill_trigger) |
Steve Hodgson | 2445580 | 2010-06-01 11:20:34 +0000 | [diff] [blame] | 340 | goto out; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 341 | |
| 342 | /* Record minimum fill level */ |
Ben Hutchings | b347564 | 2008-05-16 21:15:49 +0100 | [diff] [blame] | 343 | if (unlikely(fill_level < rx_queue->min_fill)) { |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 344 | if (fill_level) |
| 345 | rx_queue->min_fill = fill_level; |
Ben Hutchings | b347564 | 2008-05-16 21:15:49 +0100 | [diff] [blame] | 346 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 347 | |
Daniel Pieczko | 1648a23 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 348 | batch_size = efx->rx_pages_per_batch * efx->rx_bufs_per_page; |
David Riddoch | da9ca50 | 2012-04-11 13:09:24 +0100 | [diff] [blame] | 349 | space = rx_queue->max_fill - fill_level; |
Edward Cree | e01b16a | 2016-12-02 15:51:33 +0000 | [diff] [blame] | 350 | EFX_WARN_ON_ONCE_PARANOID(space < batch_size); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 351 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 352 | netif_vdbg(rx_queue->efx, rx_status, rx_queue->efx->net_dev, |
| 353 | "RX queue %d fast-filling descriptor ring from" |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 354 | " level %d to level %d\n", |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 355 | efx_rx_queue_index(rx_queue), fill_level, |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 356 | rx_queue->max_fill); |
| 357 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 358 | |
| 359 | do { |
Jon Cooper | cce2879 | 2013-10-02 11:04:14 +0100 | [diff] [blame] | 360 | rc = efx_init_rx_buffers(rx_queue, atomic); |
Steve Hodgson | f7d6f37 | 2010-06-01 11:33:17 +0000 | [diff] [blame] | 361 | 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 Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 366 | } |
Daniel Pieczko | 1648a23 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 367 | } while ((space -= batch_size) >= batch_size); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 368 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 369 | netif_vdbg(rx_queue->efx, rx_status, rx_queue->efx->net_dev, |
| 370 | "RX queue %d fast-filled descriptor ring " |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 371 | "to level %d\n", efx_rx_queue_index(rx_queue), |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 372 | rx_queue->added_count - rx_queue->removed_count); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 373 | |
| 374 | out: |
Steve Hodgson | 2445580 | 2010-06-01 11:20:34 +0000 | [diff] [blame] | 375 | if (rx_queue->notified_count != rx_queue->added_count) |
| 376 | efx_nic_notify_rx_desc(rx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 377 | } |
| 378 | |
Steve Hodgson | 90d683a | 2010-06-01 11:19:39 +0000 | [diff] [blame] | 379 | void efx_rx_slow_fill(unsigned long context) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 380 | { |
Steve Hodgson | 90d683a | 2010-06-01 11:19:39 +0000 | [diff] [blame] | 381 | struct efx_rx_queue *rx_queue = (struct efx_rx_queue *)context; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 382 | |
Steve Hodgson | 90d683a | 2010-06-01 11:19:39 +0000 | [diff] [blame] | 383 | /* Post an event to cause NAPI to run and refill the queue */ |
Ben Hutchings | 2ae75da | 2012-02-07 23:49:52 +0000 | [diff] [blame] | 384 | efx_nic_generate_fill_event(rx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 385 | ++rx_queue->slow_fill_count; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 386 | } |
| 387 | |
Ben Hutchings | 4d56606 | 2008-09-01 12:47:12 +0100 | [diff] [blame] | 388 | static void efx_rx_packet__check_len(struct efx_rx_queue *rx_queue, |
| 389 | struct efx_rx_buffer *rx_buf, |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 390 | int len) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 391 | { |
| 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 Hutchings | db33956 | 2011-08-26 18:05:11 +0100 | [diff] [blame] | 401 | rx_buf->flags |= EFX_RX_PKT_DISCARD; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 402 | |
Edward Cree | 5a6681e | 2016-11-28 18:55:34 +0000 | [diff] [blame] | 403 | 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 Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 407 | |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 408 | efx_rx_queue_channel(rx_queue)->n_rx_overlength++; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 409 | } |
| 410 | |
Ben Hutchings | 61321d9 | 2012-02-25 01:58:35 +0000 | [diff] [blame] | 411 | /* Pass a received packet up through GRO. GRO can handle pages |
| 412 | * regardless of checksum state and skbs with a good checksum. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 413 | */ |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 414 | static void |
| 415 | efx_rx_packet_gro(struct efx_channel *channel, struct efx_rx_buffer *rx_buf, |
| 416 | unsigned int n_frags, u8 *eh) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 417 | { |
Herbert Xu | da3bc07 | 2009-01-18 21:50:16 -0800 | [diff] [blame] | 418 | struct napi_struct *napi = &channel->napi_str; |
Ben Hutchings | 18e1d2b | 2009-10-29 07:21:24 +0000 | [diff] [blame] | 419 | gro_result_t gro_result; |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 420 | struct efx_nic *efx = channel->efx; |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 421 | struct sk_buff *skb; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 422 | |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 423 | skb = napi_get_frags(napi); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 424 | if (unlikely(!skb)) { |
Daniel Pieczko | 9eb0a5d | 2015-05-29 12:25:54 +0100 | [diff] [blame] | 425 | 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 Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 429 | return; |
| 430 | } |
Ben Hutchings | 1241e95 | 2009-11-23 16:02:25 +0000 | [diff] [blame] | 431 | |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 432 | if (efx->net_dev->features & NETIF_F_RXHASH) |
Tom Herbert | c7cb38a | 2013-12-17 23:31:50 -0800 | [diff] [blame] | 433 | skb_set_hash(skb, efx_rx_buf_hash(efx, eh), |
| 434 | PKT_HASH_TYPE_L3); |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 435 | skb->ip_summed = ((rx_buf->flags & EFX_RX_PKT_CSUMMED) ? |
| 436 | CHECKSUM_UNNECESSARY : CHECKSUM_NONE); |
Jon Cooper | da50ae2 | 2017-02-08 16:51:02 +0000 | [diff] [blame] | 437 | skb->csum_level = !!(rx_buf->flags & EFX_RX_PKT_CSUM_LEVEL); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 438 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 439 | for (;;) { |
| 440 | skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags, |
| 441 | rx_buf->page, rx_buf->page_offset, |
| 442 | rx_buf->len); |
| 443 | rx_buf->page = NULL; |
| 444 | skb->len += rx_buf->len; |
| 445 | if (skb_shinfo(skb)->nr_frags == n_frags) |
| 446 | break; |
| 447 | |
| 448 | rx_buf = efx_rx_buf_next(&channel->rx_queue, rx_buf); |
| 449 | } |
| 450 | |
| 451 | skb->data_len = skb->len; |
| 452 | skb->truesize += n_frags * efx->rx_buffer_truesize; |
| 453 | |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 454 | skb_record_rx_queue(skb, channel->rx_queue.core_index); |
Ben Hutchings | 3eadb7b | 2009-11-23 16:02:40 +0000 | [diff] [blame] | 455 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 456 | gro_result = napi_gro_frags(napi); |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 457 | if (gro_result != GRO_DROP) |
Ben Hutchings | 18e1d2b | 2009-10-29 07:21:24 +0000 | [diff] [blame] | 458 | channel->irq_mod_score += 2; |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 459 | } |
| 460 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 461 | /* Allocate and construct an SKB around page fragments */ |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 462 | static struct sk_buff *efx_rx_mk_skb(struct efx_channel *channel, |
| 463 | struct efx_rx_buffer *rx_buf, |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 464 | unsigned int n_frags, |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 465 | u8 *eh, int hdr_len) |
| 466 | { |
| 467 | struct efx_nic *efx = channel->efx; |
| 468 | struct sk_buff *skb; |
| 469 | |
| 470 | /* Allocate an SKB to store the headers */ |
Ben Hutchings | 2ccd0b1 | 2013-11-28 18:58:11 +0000 | [diff] [blame] | 471 | skb = netdev_alloc_skb(efx->net_dev, |
| 472 | efx->rx_ip_align + efx->rx_prefix_size + |
| 473 | hdr_len); |
Edward Cree | e4d112e | 2014-07-15 11:58:12 +0100 | [diff] [blame] | 474 | if (unlikely(skb == NULL)) { |
| 475 | atomic_inc(&efx->n_rx_noskb_drops); |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 476 | return NULL; |
Edward Cree | e4d112e | 2014-07-15 11:58:12 +0100 | [diff] [blame] | 477 | } |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 478 | |
Edward Cree | e01b16a | 2016-12-02 15:51:33 +0000 | [diff] [blame] | 479 | EFX_WARN_ON_ONCE_PARANOID(rx_buf->len < hdr_len); |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 480 | |
Ben Hutchings | 2ccd0b1 | 2013-11-28 18:58:11 +0000 | [diff] [blame] | 481 | memcpy(skb->data + efx->rx_ip_align, eh - efx->rx_prefix_size, |
| 482 | efx->rx_prefix_size + hdr_len); |
| 483 | skb_reserve(skb, efx->rx_ip_align + efx->rx_prefix_size); |
| 484 | __skb_put(skb, hdr_len); |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 485 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 486 | /* Append the remaining page(s) onto the frag list */ |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 487 | if (rx_buf->len > hdr_len) { |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 488 | rx_buf->page_offset += hdr_len; |
| 489 | rx_buf->len -= hdr_len; |
| 490 | |
| 491 | for (;;) { |
| 492 | skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags, |
| 493 | rx_buf->page, rx_buf->page_offset, |
| 494 | rx_buf->len); |
| 495 | rx_buf->page = NULL; |
| 496 | skb->len += rx_buf->len; |
| 497 | skb->data_len += rx_buf->len; |
| 498 | if (skb_shinfo(skb)->nr_frags == n_frags) |
| 499 | break; |
| 500 | |
| 501 | rx_buf = efx_rx_buf_next(&channel->rx_queue, rx_buf); |
| 502 | } |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 503 | } else { |
| 504 | __free_pages(rx_buf->page, efx->rx_buffer_order); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 505 | rx_buf->page = NULL; |
| 506 | n_frags = 0; |
Ben Hutchings | 18e1d2b | 2009-10-29 07:21:24 +0000 | [diff] [blame] | 507 | } |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 508 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 509 | skb->truesize += n_frags * efx->rx_buffer_truesize; |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 510 | |
| 511 | /* Move past the ethernet header */ |
| 512 | skb->protocol = eth_type_trans(skb, efx->net_dev); |
| 513 | |
Alexandre Rames | 3676326 | 2014-07-22 14:03:25 +0100 | [diff] [blame] | 514 | skb_mark_napi_id(skb, &channel->napi_str); |
| 515 | |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 516 | return skb; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 517 | } |
| 518 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 519 | void efx_rx_packet(struct efx_rx_queue *rx_queue, unsigned int index, |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 520 | unsigned int n_frags, unsigned int len, u16 flags) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 521 | { |
| 522 | struct efx_nic *efx = rx_queue->efx; |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 523 | struct efx_channel *channel = efx_rx_queue_channel(rx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 524 | struct efx_rx_buffer *rx_buf; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 525 | |
Andrew Rybchenko | 8ccf3800 | 2014-07-17 12:10:43 +0100 | [diff] [blame] | 526 | rx_queue->rx_packets++; |
| 527 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 528 | rx_buf = efx_rx_buffer(rx_queue, index); |
Ben Hutchings | 179ea7f | 2013-03-07 16:31:17 +0000 | [diff] [blame] | 529 | rx_buf->flags |= flags; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 530 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 531 | /* Validate the number of fragments and completed length */ |
| 532 | if (n_frags == 1) { |
Ben Hutchings | 3dced74 | 2013-04-27 01:55:18 +0100 | [diff] [blame] | 533 | if (!(flags & EFX_RX_PKT_PREFIX_LEN)) |
| 534 | efx_rx_packet__check_len(rx_queue, rx_buf, len); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 535 | } else if (unlikely(n_frags > EFX_RX_MAX_FRAGS) || |
Jon Cooper | e8c68c0 | 2013-03-08 10:18:28 +0000 | [diff] [blame] | 536 | unlikely(len <= (n_frags - 1) * efx->rx_dma_len) || |
| 537 | unlikely(len > n_frags * efx->rx_dma_len) || |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 538 | unlikely(!efx->rx_scatter)) { |
| 539 | /* If this isn't an explicit discard request, either |
| 540 | * the hardware or the driver is broken. |
| 541 | */ |
| 542 | WARN_ON(!(len == 0 && rx_buf->flags & EFX_RX_PKT_DISCARD)); |
| 543 | rx_buf->flags |= EFX_RX_PKT_DISCARD; |
| 544 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 545 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 546 | netif_vdbg(efx, rx_status, efx->net_dev, |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 547 | "RX queue %d received ids %x-%x len %d %s%s\n", |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 548 | efx_rx_queue_index(rx_queue), index, |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 549 | (index + n_frags - 1) & rx_queue->ptr_mask, len, |
Ben Hutchings | db33956 | 2011-08-26 18:05:11 +0100 | [diff] [blame] | 550 | (rx_buf->flags & EFX_RX_PKT_CSUMMED) ? " [SUMMED]" : "", |
| 551 | (rx_buf->flags & EFX_RX_PKT_DISCARD) ? " [DISCARD]" : ""); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 552 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 553 | /* Discard packet, if instructed to do so. Process the |
| 554 | * previous receive first. |
| 555 | */ |
Ben Hutchings | db33956 | 2011-08-26 18:05:11 +0100 | [diff] [blame] | 556 | if (unlikely(rx_buf->flags & EFX_RX_PKT_DISCARD)) { |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 557 | efx_rx_flush_packet(channel); |
Ben Hutchings | 734d4e1 | 2013-07-04 23:48:46 +0100 | [diff] [blame] | 558 | efx_discard_rx_packet(channel, rx_buf, n_frags); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 559 | return; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 560 | } |
| 561 | |
Ben Hutchings | 3dced74 | 2013-04-27 01:55:18 +0100 | [diff] [blame] | 562 | if (n_frags == 1 && !(flags & EFX_RX_PKT_PREFIX_LEN)) |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 563 | rx_buf->len = len; |
| 564 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 565 | /* Release and/or sync the DMA mapping - assumes all RX buffers |
| 566 | * consumed in-order per RX queue. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 567 | */ |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 568 | efx_sync_rx_buffer(efx, rx_buf, rx_buf->len); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 569 | |
| 570 | /* Prefetch nice and early so data will (hopefully) be in cache by |
| 571 | * the time we look at it. |
| 572 | */ |
Ben Hutchings | 5036b7c | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 573 | prefetch(efx_rx_buf_va(rx_buf)); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 574 | |
Jon Cooper | 43a3739 | 2012-10-18 15:49:54 +0100 | [diff] [blame] | 575 | rx_buf->page_offset += efx->rx_prefix_size; |
| 576 | rx_buf->len -= efx->rx_prefix_size; |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 577 | |
| 578 | if (n_frags > 1) { |
| 579 | /* Release/sync DMA mapping for additional fragments. |
| 580 | * Fix length for last fragment. |
| 581 | */ |
| 582 | unsigned int tail_frags = n_frags - 1; |
| 583 | |
| 584 | for (;;) { |
| 585 | rx_buf = efx_rx_buf_next(rx_queue, rx_buf); |
| 586 | if (--tail_frags == 0) |
| 587 | break; |
Jon Cooper | e8c68c0 | 2013-03-08 10:18:28 +0000 | [diff] [blame] | 588 | efx_sync_rx_buffer(efx, rx_buf, efx->rx_dma_len); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 589 | } |
Jon Cooper | e8c68c0 | 2013-03-08 10:18:28 +0000 | [diff] [blame] | 590 | rx_buf->len = len - (n_frags - 1) * efx->rx_dma_len; |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 591 | efx_sync_rx_buffer(efx, rx_buf, rx_buf->len); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 592 | } |
Ben Hutchings | b74e3e8 | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 593 | |
Ben Hutchings | 734d4e1 | 2013-07-04 23:48:46 +0100 | [diff] [blame] | 594 | /* All fragments have been DMA-synced, so recycle pages. */ |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 595 | rx_buf = efx_rx_buffer(rx_queue, index); |
Ben Hutchings | 734d4e1 | 2013-07-04 23:48:46 +0100 | [diff] [blame] | 596 | efx_recycle_rx_pages(channel, rx_buf, n_frags); |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 597 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 598 | /* Pipeline receives so that we give time for packet headers to be |
| 599 | * prefetched into cache. |
| 600 | */ |
Ben Hutchings | ff734ef | 2013-01-29 23:33:14 +0000 | [diff] [blame] | 601 | efx_rx_flush_packet(channel); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 602 | channel->rx_pkt_n_frags = n_frags; |
| 603 | channel->rx_pkt_index = index; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 604 | } |
| 605 | |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 606 | static void efx_rx_deliver(struct efx_channel *channel, u8 *eh, |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 607 | struct efx_rx_buffer *rx_buf, |
| 608 | unsigned int n_frags) |
Ben Hutchings | 1ddceb4 | 2012-01-23 22:41:30 +0000 | [diff] [blame] | 609 | { |
| 610 | struct sk_buff *skb; |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 611 | u16 hdr_len = min_t(u16, rx_buf->len, EFX_SKB_HEADERS); |
Ben Hutchings | 1ddceb4 | 2012-01-23 22:41:30 +0000 | [diff] [blame] | 612 | |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 613 | skb = efx_rx_mk_skb(channel, rx_buf, n_frags, eh, hdr_len); |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 614 | if (unlikely(skb == NULL)) { |
Daniel Pieczko | 9eb0a5d | 2015-05-29 12:25:54 +0100 | [diff] [blame] | 615 | struct efx_rx_queue *rx_queue; |
| 616 | |
| 617 | rx_queue = efx_channel_get_rx_queue(channel); |
| 618 | efx_free_rx_buffers(rx_queue, rx_buf, n_frags); |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 619 | return; |
| 620 | } |
| 621 | skb_record_rx_queue(skb, channel->rx_queue.core_index); |
Ben Hutchings | 1ddceb4 | 2012-01-23 22:41:30 +0000 | [diff] [blame] | 622 | |
| 623 | /* Set the SKB flags */ |
| 624 | skb_checksum_none_assert(skb); |
Jon Cooper | da50ae2 | 2017-02-08 16:51:02 +0000 | [diff] [blame] | 625 | if (likely(rx_buf->flags & EFX_RX_PKT_CSUMMED)) { |
Jon Cooper | c99dffc | 2013-04-08 12:49:48 +0100 | [diff] [blame] | 626 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
Jon Cooper | da50ae2 | 2017-02-08 16:51:02 +0000 | [diff] [blame] | 627 | skb->csum_level = !!(rx_buf->flags & EFX_RX_PKT_CSUM_LEVEL); |
| 628 | } |
Ben Hutchings | 1ddceb4 | 2012-01-23 22:41:30 +0000 | [diff] [blame] | 629 | |
Jon Cooper | bd9a265 | 2013-11-18 12:54:41 +0000 | [diff] [blame] | 630 | efx_rx_skb_attach_timestamp(channel, skb); |
| 631 | |
Stuart Hodgson | c31e5f9 | 2012-07-18 09:52:11 +0100 | [diff] [blame] | 632 | if (channel->type->receive_skb) |
Ben Hutchings | 4a74dc65 | 2013-03-05 20:13:54 +0000 | [diff] [blame] | 633 | if (channel->type->receive_skb(channel, skb)) |
Alexandre Rames | 97d48a1 | 2013-01-11 12:26:21 +0000 | [diff] [blame] | 634 | return; |
Ben Hutchings | 1ddceb4 | 2012-01-23 22:41:30 +0000 | [diff] [blame] | 635 | |
Ben Hutchings | 4a74dc65 | 2013-03-05 20:13:54 +0000 | [diff] [blame] | 636 | /* Pass the packet up */ |
| 637 | netif_receive_skb(skb); |
Ben Hutchings | 1ddceb4 | 2012-01-23 22:41:30 +0000 | [diff] [blame] | 638 | } |
| 639 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 640 | /* Handle a received packet. Second half: Touches packet payload. */ |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 641 | void __efx_rx_packet(struct efx_channel *channel) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 642 | { |
| 643 | struct efx_nic *efx = channel->efx; |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 644 | struct efx_rx_buffer *rx_buf = |
| 645 | efx_rx_buffer(&channel->rx_queue, channel->rx_pkt_index); |
Ben Hutchings | b74e3e8 | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 646 | u8 *eh = efx_rx_buf_va(rx_buf); |
Ben Hutchings | 604f604 | 2010-06-25 07:05:33 +0000 | [diff] [blame] | 647 | |
Ben Hutchings | 3dced74 | 2013-04-27 01:55:18 +0100 | [diff] [blame] | 648 | /* Read length from the prefix if necessary. This already |
| 649 | * excludes the length of the prefix itself. |
| 650 | */ |
| 651 | if (rx_buf->flags & EFX_RX_PKT_PREFIX_LEN) |
| 652 | rx_buf->len = le16_to_cpup((__le16 *) |
| 653 | (eh + efx->rx_packet_len_offset)); |
| 654 | |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 655 | /* If we're in loopback test, then pass the packet directly to the |
| 656 | * loopback layer, and free the rx_buf here |
| 657 | */ |
| 658 | if (unlikely(efx->loopback_selftest)) { |
Daniel Pieczko | 9eb0a5d | 2015-05-29 12:25:54 +0100 | [diff] [blame] | 659 | struct efx_rx_queue *rx_queue; |
| 660 | |
Steve Hodgson | a526f14 | 2011-02-24 23:45:16 +0000 | [diff] [blame] | 661 | efx_loopback_rx_packet(efx, eh, rx_buf->len); |
Daniel Pieczko | 9eb0a5d | 2015-05-29 12:25:54 +0100 | [diff] [blame] | 662 | rx_queue = efx_channel_get_rx_queue(channel); |
| 663 | efx_free_rx_buffers(rx_queue, rx_buf, |
| 664 | channel->rx_pkt_n_frags); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 665 | goto out; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 666 | } |
| 667 | |
Ben Hutchings | abfe903 | 2011-04-05 15:00:02 +0100 | [diff] [blame] | 668 | if (unlikely(!(efx->net_dev->features & NETIF_F_RXCSUM))) |
Ben Hutchings | db33956 | 2011-08-26 18:05:11 +0100 | [diff] [blame] | 669 | rx_buf->flags &= ~EFX_RX_PKT_CSUMMED; |
Ben Hutchings | ab3cf6d | 2011-04-01 22:20:06 +0100 | [diff] [blame] | 670 | |
Eric Dumazet | e7fe949 | 2017-02-02 17:13:19 -0800 | [diff] [blame] | 671 | if ((rx_buf->flags & EFX_RX_PKT_TCP) && !channel->type->receive_skb) |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 672 | efx_rx_packet_gro(channel, rx_buf, channel->rx_pkt_n_frags, eh); |
Ben Hutchings | 1ddceb4 | 2012-01-23 22:41:30 +0000 | [diff] [blame] | 673 | else |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 674 | efx_rx_deliver(channel, eh, rx_buf, channel->rx_pkt_n_frags); |
| 675 | out: |
| 676 | channel->rx_pkt_n_frags = 0; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 677 | } |
| 678 | |
| 679 | int efx_probe_rx_queue(struct efx_rx_queue *rx_queue) |
| 680 | { |
| 681 | struct efx_nic *efx = rx_queue->efx; |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 682 | unsigned int entries; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 683 | int rc; |
| 684 | |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 685 | /* Create the smallest power-of-two aligned ring */ |
| 686 | entries = max(roundup_pow_of_two(efx->rxq_entries), EFX_MIN_DMAQ_SIZE); |
Edward Cree | e01b16a | 2016-12-02 15:51:33 +0000 | [diff] [blame] | 687 | EFX_WARN_ON_PARANOID(entries > EFX_MAX_DMAQ_SIZE); |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 688 | rx_queue->ptr_mask = entries - 1; |
| 689 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 690 | netif_dbg(efx, probe, efx->net_dev, |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 691 | "creating RX queue %d size %#x mask %#x\n", |
| 692 | efx_rx_queue_index(rx_queue), efx->rxq_entries, |
| 693 | rx_queue->ptr_mask); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 694 | |
| 695 | /* Allocate RX buffers */ |
Thomas Meyer | c2e4e25 | 2011-12-02 12:36:13 +0000 | [diff] [blame] | 696 | rx_queue->buffer = kcalloc(entries, sizeof(*rx_queue->buffer), |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 697 | GFP_KERNEL); |
Ben Hutchings | 8831da7 | 2008-09-01 12:47:48 +0100 | [diff] [blame] | 698 | if (!rx_queue->buffer) |
| 699 | return -ENOMEM; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 700 | |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 701 | rc = efx_nic_probe_rx(rx_queue); |
Ben Hutchings | 8831da7 | 2008-09-01 12:47:48 +0100 | [diff] [blame] | 702 | if (rc) { |
| 703 | kfree(rx_queue->buffer); |
| 704 | rx_queue->buffer = NULL; |
| 705 | } |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 706 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 707 | return rc; |
| 708 | } |
| 709 | |
stephen hemminger | debd003 | 2013-03-16 06:57:51 +0000 | [diff] [blame] | 710 | static void efx_init_rx_recycle_ring(struct efx_nic *efx, |
| 711 | struct efx_rx_queue *rx_queue) |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 712 | { |
| 713 | unsigned int bufs_in_recycle_ring, page_ring_size; |
| 714 | |
| 715 | /* Set the RX recycle ring size */ |
| 716 | #ifdef CONFIG_PPC64 |
| 717 | bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_IOMMU; |
| 718 | #else |
Ben Hutchings | 636d73d | 2013-06-12 18:09:08 +0100 | [diff] [blame] | 719 | if (iommu_present(&pci_bus_type)) |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 720 | bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_IOMMU; |
| 721 | else |
| 722 | bufs_in_recycle_ring = EFX_RECYCLE_RING_SIZE_NOIOMMU; |
| 723 | #endif /* CONFIG_PPC64 */ |
| 724 | |
| 725 | page_ring_size = roundup_pow_of_two(bufs_in_recycle_ring / |
| 726 | efx->rx_bufs_per_page); |
| 727 | rx_queue->page_ring = kcalloc(page_ring_size, |
| 728 | sizeof(*rx_queue->page_ring), GFP_KERNEL); |
| 729 | rx_queue->page_ptr_mask = page_ring_size - 1; |
| 730 | } |
| 731 | |
Ben Hutchings | bc3c90a | 2008-09-01 12:48:46 +0100 | [diff] [blame] | 732 | void efx_init_rx_queue(struct efx_rx_queue *rx_queue) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 733 | { |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 734 | struct efx_nic *efx = rx_queue->efx; |
David Riddoch | 6423518 | 2012-04-11 13:12:41 +0100 | [diff] [blame] | 735 | unsigned int max_fill, trigger, max_trigger; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 736 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 737 | netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev, |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 738 | "initialising RX queue %d\n", efx_rx_queue_index(rx_queue)); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 739 | |
| 740 | /* Initialise ptr fields */ |
| 741 | rx_queue->added_count = 0; |
| 742 | rx_queue->notified_count = 0; |
| 743 | rx_queue->removed_count = 0; |
| 744 | rx_queue->min_fill = -1U; |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 745 | efx_init_rx_recycle_ring(efx, rx_queue); |
| 746 | |
| 747 | rx_queue->page_remove = 0; |
| 748 | rx_queue->page_add = rx_queue->page_ptr_mask + 1; |
| 749 | rx_queue->page_recycle_count = 0; |
| 750 | rx_queue->page_recycle_failed = 0; |
| 751 | rx_queue->page_recycle_full = 0; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 752 | |
| 753 | /* Initialise limit fields */ |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 754 | max_fill = efx->rxq_entries - EFX_RXD_HEAD_ROOM; |
Daniel Pieczko | 1648a23 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 755 | max_trigger = |
| 756 | max_fill - efx->rx_pages_per_batch * efx->rx_bufs_per_page; |
David Riddoch | 6423518 | 2012-04-11 13:12:41 +0100 | [diff] [blame] | 757 | if (rx_refill_threshold != 0) { |
| 758 | trigger = max_fill * min(rx_refill_threshold, 100U) / 100U; |
| 759 | if (trigger > max_trigger) |
| 760 | trigger = max_trigger; |
| 761 | } else { |
| 762 | trigger = max_trigger; |
| 763 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 764 | |
| 765 | rx_queue->max_fill = max_fill; |
| 766 | rx_queue->fast_fill_trigger = trigger; |
Ben Hutchings | d8aec74 | 2013-05-27 16:52:54 +0100 | [diff] [blame] | 767 | rx_queue->refill_enabled = true; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 768 | |
| 769 | /* Set up RX descriptor ring */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 770 | efx_nic_init_rx(rx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 771 | } |
| 772 | |
| 773 | void efx_fini_rx_queue(struct efx_rx_queue *rx_queue) |
| 774 | { |
| 775 | int i; |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 776 | struct efx_nic *efx = rx_queue->efx; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 777 | struct efx_rx_buffer *rx_buf; |
| 778 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 779 | netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev, |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 780 | "shutting down RX queue %d\n", efx_rx_queue_index(rx_queue)); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 781 | |
Steve Hodgson | 90d683a | 2010-06-01 11:19:39 +0000 | [diff] [blame] | 782 | del_timer_sync(&rx_queue->slow_fill); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 783 | |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 784 | /* Release RX buffers from the current read ptr to the write ptr */ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 785 | if (rx_queue->buffer) { |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 786 | for (i = rx_queue->removed_count; i < rx_queue->added_count; |
| 787 | i++) { |
| 788 | unsigned index = i & rx_queue->ptr_mask; |
| 789 | rx_buf = efx_rx_buffer(rx_queue, index); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 790 | efx_fini_rx_buffer(rx_queue, rx_buf); |
| 791 | } |
| 792 | } |
Daniel Pieczko | 2768935 | 2013-02-13 10:54:41 +0000 | [diff] [blame] | 793 | |
| 794 | /* Unmap and release the pages in the recycle ring. Remove the ring. */ |
| 795 | for (i = 0; i <= rx_queue->page_ptr_mask; i++) { |
| 796 | struct page *page = rx_queue->page_ring[i]; |
| 797 | struct efx_rx_page_state *state; |
| 798 | |
| 799 | if (page == NULL) |
| 800 | continue; |
| 801 | |
| 802 | state = page_address(page); |
| 803 | dma_unmap_page(&efx->pci_dev->dev, state->dma_addr, |
| 804 | PAGE_SIZE << efx->rx_buffer_order, |
| 805 | DMA_FROM_DEVICE); |
| 806 | put_page(page); |
| 807 | } |
| 808 | kfree(rx_queue->page_ring); |
| 809 | rx_queue->page_ring = NULL; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 810 | } |
| 811 | |
| 812 | void efx_remove_rx_queue(struct efx_rx_queue *rx_queue) |
| 813 | { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 814 | netif_dbg(rx_queue->efx, drv, rx_queue->efx->net_dev, |
Ben Hutchings | ba1e8a3 | 2010-09-10 06:41:36 +0000 | [diff] [blame] | 815 | "destroying RX queue %d\n", efx_rx_queue_index(rx_queue)); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 816 | |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 817 | efx_nic_remove_rx(rx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 818 | |
| 819 | kfree(rx_queue->buffer); |
| 820 | rx_queue->buffer = NULL; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 821 | } |
| 822 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 823 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 824 | module_param(rx_refill_threshold, uint, 0444); |
| 825 | MODULE_PARM_DESC(rx_refill_threshold, |
David Riddoch | 6423518 | 2012-04-11 13:12:41 +0100 | [diff] [blame] | 826 | "RX descriptor ring refill threshold (%)"); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 827 | |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 828 | #ifdef CONFIG_RFS_ACCEL |
| 829 | |
| 830 | int efx_filter_rfs(struct net_device *net_dev, const struct sk_buff *skb, |
| 831 | u16 rxq_index, u32 flow_id) |
| 832 | { |
| 833 | struct efx_nic *efx = netdev_priv(net_dev); |
| 834 | struct efx_channel *channel; |
| 835 | struct efx_filter_spec spec; |
Edward Cree | 68bb399e | 2016-05-26 21:46:05 +0100 | [diff] [blame] | 836 | struct flow_keys fk; |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 837 | int rc; |
| 838 | |
Jon Cooper | faf8dcc | 2016-05-31 19:12:32 +0100 | [diff] [blame] | 839 | if (flow_id == RPS_FLOW_ID_INVALID) |
| 840 | return -EINVAL; |
| 841 | |
Edward Cree | 68bb399e | 2016-05-26 21:46:05 +0100 | [diff] [blame] | 842 | if (!skb_flow_dissect_flow_keys(skb, &fk, 0)) |
| 843 | return -EPROTONOSUPPORT; |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 844 | |
Edward Cree | 68bb399e | 2016-05-26 21:46:05 +0100 | [diff] [blame] | 845 | if (fk.basic.n_proto != htons(ETH_P_IP) && fk.basic.n_proto != htons(ETH_P_IPV6)) |
| 846 | return -EPROTONOSUPPORT; |
| 847 | if (fk.control.flags & FLOW_DIS_IS_FRAGMENT) |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 848 | return -EPROTONOSUPPORT; |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 849 | |
| 850 | efx_filter_init_rx(&spec, EFX_FILTER_PRI_HINT, |
| 851 | efx->rx_scatter ? EFX_FILTER_FLAG_RX_SCATTER : 0, |
| 852 | rxq_index); |
Ben Hutchings | c47b2d9 | 2013-09-03 17:22:23 +0100 | [diff] [blame] | 853 | spec.match_flags = |
| 854 | EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_IP_PROTO | |
| 855 | EFX_FILTER_MATCH_LOC_HOST | EFX_FILTER_MATCH_LOC_PORT | |
| 856 | EFX_FILTER_MATCH_REM_HOST | EFX_FILTER_MATCH_REM_PORT; |
Edward Cree | 68bb399e | 2016-05-26 21:46:05 +0100 | [diff] [blame] | 857 | spec.ether_type = fk.basic.n_proto; |
| 858 | spec.ip_proto = fk.basic.ip_proto; |
Ben Hutchings | c47b2d9 | 2013-09-03 17:22:23 +0100 | [diff] [blame] | 859 | |
Edward Cree | 68bb399e | 2016-05-26 21:46:05 +0100 | [diff] [blame] | 860 | if (fk.basic.n_proto == htons(ETH_P_IP)) { |
| 861 | spec.rem_host[0] = fk.addrs.v4addrs.src; |
| 862 | spec.loc_host[0] = fk.addrs.v4addrs.dst; |
Ben Hutchings | c47b2d9 | 2013-09-03 17:22:23 +0100 | [diff] [blame] | 863 | } else { |
Edward Cree | 68bb399e | 2016-05-26 21:46:05 +0100 | [diff] [blame] | 864 | memcpy(spec.rem_host, &fk.addrs.v6addrs.src, sizeof(struct in6_addr)); |
| 865 | memcpy(spec.loc_host, &fk.addrs.v6addrs.dst, sizeof(struct in6_addr)); |
Ben Hutchings | c47b2d9 | 2013-09-03 17:22:23 +0100 | [diff] [blame] | 866 | } |
| 867 | |
Edward Cree | 68bb399e | 2016-05-26 21:46:05 +0100 | [diff] [blame] | 868 | spec.rem_port = fk.ports.src; |
| 869 | spec.loc_port = fk.ports.dst; |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 870 | |
| 871 | rc = efx->type->filter_rfs_insert(efx, &spec); |
| 872 | if (rc < 0) |
| 873 | return rc; |
| 874 | |
| 875 | /* Remember this so we can check whether to expire the filter later */ |
Jon Cooper | faf8dcc | 2016-05-31 19:12:32 +0100 | [diff] [blame] | 876 | channel = efx_get_channel(efx, rxq_index); |
| 877 | channel->rps_flow_id[rc] = flow_id; |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 878 | ++channel->rfs_filters_added; |
| 879 | |
Edward Cree | 68bb399e | 2016-05-26 21:46:05 +0100 | [diff] [blame] | 880 | if (spec.ether_type == htons(ETH_P_IP)) |
Ben Hutchings | c47b2d9 | 2013-09-03 17:22:23 +0100 | [diff] [blame] | 881 | netif_info(efx, rx_status, efx->net_dev, |
| 882 | "steering %s %pI4:%u:%pI4:%u to queue %u [flow %u filter %d]\n", |
| 883 | (spec.ip_proto == IPPROTO_TCP) ? "TCP" : "UDP", |
Edward Cree | 68bb399e | 2016-05-26 21:46:05 +0100 | [diff] [blame] | 884 | spec.rem_host, ntohs(spec.rem_port), spec.loc_host, |
| 885 | ntohs(spec.loc_port), rxq_index, flow_id, rc); |
Ben Hutchings | c47b2d9 | 2013-09-03 17:22:23 +0100 | [diff] [blame] | 886 | else |
| 887 | netif_info(efx, rx_status, efx->net_dev, |
| 888 | "steering %s [%pI6]:%u:[%pI6]:%u to queue %u [flow %u filter %d]\n", |
| 889 | (spec.ip_proto == IPPROTO_TCP) ? "TCP" : "UDP", |
Edward Cree | 68bb399e | 2016-05-26 21:46:05 +0100 | [diff] [blame] | 890 | spec.rem_host, ntohs(spec.rem_port), spec.loc_host, |
| 891 | ntohs(spec.loc_port), rxq_index, flow_id, rc); |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 892 | |
| 893 | return rc; |
| 894 | } |
| 895 | |
| 896 | bool __efx_filter_rfs_expire(struct efx_nic *efx, unsigned int quota) |
| 897 | { |
| 898 | bool (*expire_one)(struct efx_nic *efx, u32 flow_id, unsigned int index); |
Jon Cooper | faf8dcc | 2016-05-31 19:12:32 +0100 | [diff] [blame] | 899 | unsigned int channel_idx, index, size; |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 900 | u32 flow_id; |
| 901 | |
| 902 | if (!spin_trylock_bh(&efx->filter_lock)) |
| 903 | return false; |
| 904 | |
| 905 | expire_one = efx->type->filter_rfs_expire_one; |
Jon Cooper | faf8dcc | 2016-05-31 19:12:32 +0100 | [diff] [blame] | 906 | channel_idx = efx->rps_expire_channel; |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 907 | index = efx->rps_expire_index; |
| 908 | size = efx->type->max_rx_ip_filters; |
| 909 | while (quota--) { |
Jon Cooper | faf8dcc | 2016-05-31 19:12:32 +0100 | [diff] [blame] | 910 | struct efx_channel *channel = efx_get_channel(efx, channel_idx); |
| 911 | flow_id = channel->rps_flow_id[index]; |
| 912 | |
| 913 | if (flow_id != RPS_FLOW_ID_INVALID && |
| 914 | expire_one(efx, flow_id, index)) { |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 915 | netif_info(efx, rx_status, efx->net_dev, |
Jon Cooper | faf8dcc | 2016-05-31 19:12:32 +0100 | [diff] [blame] | 916 | "expired filter %d [queue %u flow %u]\n", |
| 917 | index, channel_idx, flow_id); |
| 918 | channel->rps_flow_id[index] = RPS_FLOW_ID_INVALID; |
| 919 | } |
| 920 | if (++index == size) { |
| 921 | if (++channel_idx == efx->n_channels) |
| 922 | channel_idx = 0; |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 923 | index = 0; |
Jon Cooper | faf8dcc | 2016-05-31 19:12:32 +0100 | [diff] [blame] | 924 | } |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 925 | } |
Jon Cooper | faf8dcc | 2016-05-31 19:12:32 +0100 | [diff] [blame] | 926 | efx->rps_expire_channel = channel_idx; |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame] | 927 | efx->rps_expire_index = index; |
| 928 | |
| 929 | spin_unlock_bh(&efx->filter_lock); |
| 930 | return true; |
| 931 | } |
| 932 | |
| 933 | #endif /* CONFIG_RFS_ACCEL */ |
Ben Hutchings | b883d0b | 2013-01-15 22:00:07 +0000 | [diff] [blame] | 934 | |
| 935 | /** |
| 936 | * efx_filter_is_mc_recipient - test whether spec is a multicast recipient |
| 937 | * @spec: Specification to test |
| 938 | * |
| 939 | * Return: %true if the specification is a non-drop RX filter that |
| 940 | * matches a local MAC address I/G bit value of 1 or matches a local |
| 941 | * IPv4 or IPv6 address value in the respective multicast address |
| 942 | * range. Otherwise %false. |
| 943 | */ |
| 944 | bool efx_filter_is_mc_recipient(const struct efx_filter_spec *spec) |
| 945 | { |
| 946 | if (!(spec->flags & EFX_FILTER_FLAG_RX) || |
| 947 | spec->dmaq_id == EFX_FILTER_RX_DMAQ_ID_DROP) |
| 948 | return false; |
| 949 | |
| 950 | if (spec->match_flags & |
| 951 | (EFX_FILTER_MATCH_LOC_MAC | EFX_FILTER_MATCH_LOC_MAC_IG) && |
| 952 | is_multicast_ether_addr(spec->loc_mac)) |
| 953 | return true; |
| 954 | |
| 955 | if ((spec->match_flags & |
| 956 | (EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_LOC_HOST)) == |
| 957 | (EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_LOC_HOST)) { |
| 958 | if (spec->ether_type == htons(ETH_P_IP) && |
| 959 | ipv4_is_multicast(spec->loc_host[0])) |
| 960 | return true; |
| 961 | if (spec->ether_type == htons(ETH_P_IPV6) && |
| 962 | ((const u8 *)spec->loc_host)[0] == 0xff) |
| 963 | return true; |
| 964 | } |
| 965 | |
| 966 | return false; |
| 967 | } |