Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | * |
| 3 | * Intel Ethernet Controller XL710 Family Linux Virtual Function Driver |
Anjali Singhai Jain | ecc6a23 | 2016-01-13 16:51:43 -0800 | [diff] [blame] | 4 | * Copyright(c) 2013 - 2016 Intel Corporation. |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms and conditions of the GNU General Public License, |
| 8 | * version 2, as published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 13 | * more details. |
| 14 | * |
Jesse Brandeburg | b831607 | 2014-04-05 07:46:11 +0000 | [diff] [blame] | 15 | * You should have received a copy of the GNU General Public License along |
| 16 | * with this program. If not, see <http://www.gnu.org/licenses/>. |
| 17 | * |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 18 | * The full GNU General Public License is included in this distribution in |
| 19 | * the file called "COPYING". |
| 20 | * |
| 21 | * Contact Information: |
| 22 | * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
| 23 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 24 | * |
| 25 | ******************************************************************************/ |
| 26 | |
Paul Gortmaker | 7ed3f5f | 2014-01-11 04:00:31 +0000 | [diff] [blame] | 27 | #include <linux/prefetch.h> |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 28 | #include <net/busy_poll.h> |
Paul Gortmaker | 7ed3f5f | 2014-01-11 04:00:31 +0000 | [diff] [blame] | 29 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 30 | #include "i40evf.h" |
Scott Peterson | ed0980c | 2017-04-13 04:45:44 -0400 | [diff] [blame] | 31 | #include "i40e_trace.h" |
Jesse Brandeburg | 206812b | 2014-02-12 01:45:33 +0000 | [diff] [blame] | 32 | #include "i40e_prototype.h" |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 33 | |
| 34 | static inline __le64 build_ctob(u32 td_cmd, u32 td_offset, unsigned int size, |
| 35 | u32 td_tag) |
| 36 | { |
| 37 | return cpu_to_le64(I40E_TX_DESC_DTYPE_DATA | |
| 38 | ((u64)td_cmd << I40E_TXD_QW1_CMD_SHIFT) | |
| 39 | ((u64)td_offset << I40E_TXD_QW1_OFFSET_SHIFT) | |
| 40 | ((u64)size << I40E_TXD_QW1_TX_BUF_SZ_SHIFT) | |
| 41 | ((u64)td_tag << I40E_TXD_QW1_L2TAG1_SHIFT)); |
| 42 | } |
| 43 | |
| 44 | #define I40E_TXD_CMD (I40E_TX_DESC_CMD_EOP | I40E_TX_DESC_CMD_RS) |
| 45 | |
| 46 | /** |
| 47 | * i40e_unmap_and_free_tx_resource - Release a Tx buffer |
| 48 | * @ring: the ring that owns the buffer |
| 49 | * @tx_buffer: the buffer to free |
| 50 | **/ |
| 51 | static void i40e_unmap_and_free_tx_resource(struct i40e_ring *ring, |
| 52 | struct i40e_tx_buffer *tx_buffer) |
| 53 | { |
| 54 | if (tx_buffer->skb) { |
Alexander Duyck | 64bfd68 | 2016-09-12 14:18:39 -0700 | [diff] [blame] | 55 | if (tx_buffer->tx_flags & I40E_TX_FLAGS_FD_SB) |
| 56 | kfree(tx_buffer->raw_buf); |
| 57 | else |
| 58 | dev_kfree_skb_any(tx_buffer->skb); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 59 | if (dma_unmap_len(tx_buffer, len)) |
| 60 | dma_unmap_single(ring->dev, |
| 61 | dma_unmap_addr(tx_buffer, dma), |
| 62 | dma_unmap_len(tx_buffer, len), |
| 63 | DMA_TO_DEVICE); |
| 64 | } else if (dma_unmap_len(tx_buffer, len)) { |
| 65 | dma_unmap_page(ring->dev, |
| 66 | dma_unmap_addr(tx_buffer, dma), |
| 67 | dma_unmap_len(tx_buffer, len), |
| 68 | DMA_TO_DEVICE); |
| 69 | } |
Kiran Patil | a42e7a3 | 2015-11-06 15:26:03 -0800 | [diff] [blame] | 70 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 71 | tx_buffer->next_to_watch = NULL; |
| 72 | tx_buffer->skb = NULL; |
| 73 | dma_unmap_len_set(tx_buffer, len, 0); |
| 74 | /* tx_buffer must be completely set up in the transmit path */ |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * i40evf_clean_tx_ring - Free any empty Tx buffers |
| 79 | * @tx_ring: ring to be cleaned |
| 80 | **/ |
| 81 | void i40evf_clean_tx_ring(struct i40e_ring *tx_ring) |
| 82 | { |
| 83 | unsigned long bi_size; |
| 84 | u16 i; |
| 85 | |
| 86 | /* ring already cleared, nothing to do */ |
| 87 | if (!tx_ring->tx_bi) |
| 88 | return; |
| 89 | |
| 90 | /* Free all the Tx ring sk_buffs */ |
| 91 | for (i = 0; i < tx_ring->count; i++) |
| 92 | i40e_unmap_and_free_tx_resource(tx_ring, &tx_ring->tx_bi[i]); |
| 93 | |
| 94 | bi_size = sizeof(struct i40e_tx_buffer) * tx_ring->count; |
| 95 | memset(tx_ring->tx_bi, 0, bi_size); |
| 96 | |
| 97 | /* Zero out the descriptor ring */ |
| 98 | memset(tx_ring->desc, 0, tx_ring->size); |
| 99 | |
| 100 | tx_ring->next_to_use = 0; |
| 101 | tx_ring->next_to_clean = 0; |
| 102 | |
| 103 | if (!tx_ring->netdev) |
| 104 | return; |
| 105 | |
| 106 | /* cleanup Tx queue statistics */ |
Alexander Duyck | e486bdf | 2016-09-12 14:18:40 -0700 | [diff] [blame] | 107 | netdev_tx_reset_queue(txring_txq(tx_ring)); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | /** |
| 111 | * i40evf_free_tx_resources - Free Tx resources per queue |
| 112 | * @tx_ring: Tx descriptor ring for a specific queue |
| 113 | * |
| 114 | * Free all transmit software resources |
| 115 | **/ |
| 116 | void i40evf_free_tx_resources(struct i40e_ring *tx_ring) |
| 117 | { |
| 118 | i40evf_clean_tx_ring(tx_ring); |
| 119 | kfree(tx_ring->tx_bi); |
| 120 | tx_ring->tx_bi = NULL; |
| 121 | |
| 122 | if (tx_ring->desc) { |
| 123 | dma_free_coherent(tx_ring->dev, tx_ring->size, |
| 124 | tx_ring->desc, tx_ring->dma); |
| 125 | tx_ring->desc = NULL; |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | /** |
Kiran Patil | 9c6c125 | 2015-11-06 15:26:02 -0800 | [diff] [blame] | 130 | * i40evf_get_tx_pending - how many Tx descriptors not processed |
| 131 | * @tx_ring: the ring of descriptors |
Anjali Singhai Jain | dd35310 | 2016-01-15 14:33:12 -0800 | [diff] [blame] | 132 | * @in_sw: is tx_pending being checked in SW or HW |
Jesse Brandeburg | a68de58 | 2015-02-24 05:26:03 +0000 | [diff] [blame] | 133 | * |
Kiran Patil | 9c6c125 | 2015-11-06 15:26:02 -0800 | [diff] [blame] | 134 | * Since there is no access to the ring head register |
| 135 | * in XL710, we need to use our local copies |
Jesse Brandeburg | a68de58 | 2015-02-24 05:26:03 +0000 | [diff] [blame] | 136 | **/ |
Anjali Singhai Jain | dd35310 | 2016-01-15 14:33:12 -0800 | [diff] [blame] | 137 | u32 i40evf_get_tx_pending(struct i40e_ring *ring, bool in_sw) |
Jesse Brandeburg | a68de58 | 2015-02-24 05:26:03 +0000 | [diff] [blame] | 138 | { |
Kiran Patil | 9c6c125 | 2015-11-06 15:26:02 -0800 | [diff] [blame] | 139 | u32 head, tail; |
Jesse Brandeburg | a68de58 | 2015-02-24 05:26:03 +0000 | [diff] [blame] | 140 | |
Preethi Banala | b1cb07d | 2017-03-10 12:22:00 -0800 | [diff] [blame] | 141 | head = ring->next_to_clean; |
Kiran Patil | 9c6c125 | 2015-11-06 15:26:02 -0800 | [diff] [blame] | 142 | tail = readl(ring->tail); |
| 143 | |
| 144 | if (head != tail) |
| 145 | return (head < tail) ? |
| 146 | tail - head : (tail + ring->count - head); |
| 147 | |
| 148 | return 0; |
Jesse Brandeburg | a68de58 | 2015-02-24 05:26:03 +0000 | [diff] [blame] | 149 | } |
| 150 | |
Sudheer Mogilappagari | 07d4419 | 2017-12-18 05:17:25 -0500 | [diff] [blame] | 151 | /** |
| 152 | * i40evf_detect_recover_hung - Function to detect and recover hung_queues |
| 153 | * @vsi: pointer to vsi struct with tx queues |
| 154 | * |
| 155 | * VSI has netdev and netdev has TX queues. This function is to check each of |
| 156 | * those TX queues if they are hung, trigger recovery by issuing SW interrupt. |
| 157 | **/ |
| 158 | void i40evf_detect_recover_hung(struct i40e_vsi *vsi) |
| 159 | { |
| 160 | struct i40e_ring *tx_ring = NULL; |
| 161 | struct net_device *netdev; |
| 162 | unsigned int i; |
| 163 | int packets; |
| 164 | |
| 165 | if (!vsi) |
| 166 | return; |
| 167 | |
| 168 | if (test_bit(__I40E_VSI_DOWN, vsi->state)) |
| 169 | return; |
| 170 | |
| 171 | netdev = vsi->netdev; |
| 172 | if (!netdev) |
| 173 | return; |
| 174 | |
| 175 | if (!netif_carrier_ok(netdev)) |
| 176 | return; |
| 177 | |
| 178 | for (i = 0; i < vsi->back->num_active_queues; i++) { |
| 179 | tx_ring = &vsi->back->tx_rings[i]; |
| 180 | if (tx_ring && tx_ring->desc) { |
| 181 | /* If packet counter has not changed the queue is |
| 182 | * likely stalled, so force an interrupt for this |
| 183 | * queue. |
| 184 | * |
| 185 | * prev_pkt_ctr would be negative if there was no |
| 186 | * pending work. |
| 187 | */ |
| 188 | packets = tx_ring->stats.packets & INT_MAX; |
| 189 | if (tx_ring->tx_stats.prev_pkt_ctr == packets) { |
| 190 | i40evf_force_wb(vsi, tx_ring->q_vector); |
| 191 | continue; |
| 192 | } |
| 193 | |
| 194 | /* Memory barrier between read of packet count and call |
| 195 | * to i40evf_get_tx_pending() |
| 196 | */ |
| 197 | smp_rmb(); |
| 198 | tx_ring->tx_stats.prev_pkt_ctr = |
| 199 | i40evf_get_tx_pending(tx_ring, false) ? packets : -1; |
| 200 | } |
| 201 | } |
| 202 | } |
| 203 | |
Alexander Duyck | 1dc8b53 | 2016-10-11 15:26:54 -0700 | [diff] [blame] | 204 | #define WB_STRIDE 4 |
Anjali Singhai Jain | c29af37 | 2015-01-10 01:07:19 +0000 | [diff] [blame] | 205 | |
Jesse Brandeburg | 1943d8b | 2014-02-14 02:14:40 +0000 | [diff] [blame] | 206 | /** |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 207 | * i40e_clean_tx_irq - Reclaim resources after transmit completes |
Alexander Duyck | a619afe | 2016-03-07 09:30:03 -0800 | [diff] [blame] | 208 | * @vsi: the VSI we care about |
| 209 | * @tx_ring: Tx ring to clean |
| 210 | * @napi_budget: Used to determine if we are in netpoll |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 211 | * |
| 212 | * Returns true if there's any budget left (e.g. the clean is finished) |
| 213 | **/ |
Alexander Duyck | a619afe | 2016-03-07 09:30:03 -0800 | [diff] [blame] | 214 | static bool i40e_clean_tx_irq(struct i40e_vsi *vsi, |
| 215 | struct i40e_ring *tx_ring, int napi_budget) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 216 | { |
| 217 | u16 i = tx_ring->next_to_clean; |
| 218 | struct i40e_tx_buffer *tx_buf; |
| 219 | struct i40e_tx_desc *tx_desc; |
Alexander Duyck | a619afe | 2016-03-07 09:30:03 -0800 | [diff] [blame] | 220 | unsigned int total_bytes = 0, total_packets = 0; |
| 221 | unsigned int budget = vsi->work_limit; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 222 | |
| 223 | tx_buf = &tx_ring->tx_bi[i]; |
| 224 | tx_desc = I40E_TX_DESC(tx_ring, i); |
| 225 | i -= tx_ring->count; |
| 226 | |
| 227 | do { |
| 228 | struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch; |
| 229 | |
| 230 | /* if next_to_watch is not set then there is no work pending */ |
| 231 | if (!eop_desc) |
| 232 | break; |
| 233 | |
| 234 | /* prevent any other reads prior to eop_desc */ |
Brian King | f72271e | 2017-11-17 11:05:49 -0600 | [diff] [blame] | 235 | smp_rmb(); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 236 | |
Scott Peterson | ed0980c | 2017-04-13 04:45:44 -0400 | [diff] [blame] | 237 | i40e_trace(clean_tx_irq, tx_ring, tx_desc, tx_buf); |
Preethi Banala | b1cb07d | 2017-03-10 12:22:00 -0800 | [diff] [blame] | 238 | /* if the descriptor isn't done, no work yet to do */ |
| 239 | if (!(eop_desc->cmd_type_offset_bsz & |
| 240 | cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE))) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 241 | break; |
| 242 | |
| 243 | /* clear next_to_watch to prevent false hangs */ |
| 244 | tx_buf->next_to_watch = NULL; |
| 245 | |
| 246 | /* update the statistics for this packet */ |
| 247 | total_bytes += tx_buf->bytecount; |
| 248 | total_packets += tx_buf->gso_segs; |
| 249 | |
| 250 | /* free the skb */ |
Alexander Duyck | a619afe | 2016-03-07 09:30:03 -0800 | [diff] [blame] | 251 | napi_consume_skb(tx_buf->skb, napi_budget); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 252 | |
| 253 | /* unmap skb header data */ |
| 254 | dma_unmap_single(tx_ring->dev, |
| 255 | dma_unmap_addr(tx_buf, dma), |
| 256 | dma_unmap_len(tx_buf, len), |
| 257 | DMA_TO_DEVICE); |
| 258 | |
| 259 | /* clear tx_buffer data */ |
| 260 | tx_buf->skb = NULL; |
| 261 | dma_unmap_len_set(tx_buf, len, 0); |
| 262 | |
| 263 | /* unmap remaining buffers */ |
| 264 | while (tx_desc != eop_desc) { |
Scott Peterson | ed0980c | 2017-04-13 04:45:44 -0400 | [diff] [blame] | 265 | i40e_trace(clean_tx_irq_unmap, |
| 266 | tx_ring, tx_desc, tx_buf); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 267 | |
| 268 | tx_buf++; |
| 269 | tx_desc++; |
| 270 | i++; |
| 271 | if (unlikely(!i)) { |
| 272 | i -= tx_ring->count; |
| 273 | tx_buf = tx_ring->tx_bi; |
| 274 | tx_desc = I40E_TX_DESC(tx_ring, 0); |
| 275 | } |
| 276 | |
| 277 | /* unmap any remaining paged data */ |
| 278 | if (dma_unmap_len(tx_buf, len)) { |
| 279 | dma_unmap_page(tx_ring->dev, |
| 280 | dma_unmap_addr(tx_buf, dma), |
| 281 | dma_unmap_len(tx_buf, len), |
| 282 | DMA_TO_DEVICE); |
| 283 | dma_unmap_len_set(tx_buf, len, 0); |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | /* move us one more past the eop_desc for start of next pkt */ |
| 288 | tx_buf++; |
| 289 | tx_desc++; |
| 290 | i++; |
| 291 | if (unlikely(!i)) { |
| 292 | i -= tx_ring->count; |
| 293 | tx_buf = tx_ring->tx_bi; |
| 294 | tx_desc = I40E_TX_DESC(tx_ring, 0); |
| 295 | } |
| 296 | |
Jesse Brandeburg | 016890b | 2015-02-27 09:15:31 +0000 | [diff] [blame] | 297 | prefetch(tx_desc); |
| 298 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 299 | /* update budget accounting */ |
| 300 | budget--; |
| 301 | } while (likely(budget)); |
| 302 | |
| 303 | i += tx_ring->count; |
| 304 | tx_ring->next_to_clean = i; |
| 305 | u64_stats_update_begin(&tx_ring->syncp); |
| 306 | tx_ring->stats.bytes += total_bytes; |
| 307 | tx_ring->stats.packets += total_packets; |
| 308 | u64_stats_update_end(&tx_ring->syncp); |
| 309 | tx_ring->q_vector->tx.total_bytes += total_bytes; |
| 310 | tx_ring->q_vector->tx.total_packets += total_packets; |
| 311 | |
Anjali Singhai Jain | f6d83d1 | 2015-12-22 14:25:07 -0800 | [diff] [blame] | 312 | if (tx_ring->flags & I40E_TXR_FLAGS_WB_ON_ITR) { |
Anjali Singhai Jain | f6d83d1 | 2015-12-22 14:25:07 -0800 | [diff] [blame] | 313 | /* check to see if there are < 4 descriptors |
| 314 | * waiting to be written back, then kick the hardware to force |
| 315 | * them to be written back in case we stay in NAPI. |
| 316 | * In this mode on X722 we do not enable Interrupt. |
| 317 | */ |
Mitch Williams | 88dc9e6 | 2016-06-20 09:10:35 -0700 | [diff] [blame] | 318 | unsigned int j = i40evf_get_tx_pending(tx_ring, false); |
Anjali Singhai Jain | f6d83d1 | 2015-12-22 14:25:07 -0800 | [diff] [blame] | 319 | |
| 320 | if (budget && |
Alexander Duyck | 1dc8b53 | 2016-10-11 15:26:54 -0700 | [diff] [blame] | 321 | ((j / WB_STRIDE) == 0) && (j > 0) && |
Jacob Keller | 0da36b9 | 2017-04-19 09:25:55 -0400 | [diff] [blame] | 322 | !test_bit(__I40E_VSI_DOWN, vsi->state) && |
Anjali Singhai Jain | f6d83d1 | 2015-12-22 14:25:07 -0800 | [diff] [blame] | 323 | (I40E_DESC_UNUSED(tx_ring) != tx_ring->count)) |
| 324 | tx_ring->arm_wb = true; |
| 325 | } |
| 326 | |
Alexander Duyck | e486bdf | 2016-09-12 14:18:40 -0700 | [diff] [blame] | 327 | /* notify netdev of completed buffers */ |
| 328 | netdev_tx_completed_queue(txring_txq(tx_ring), |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 329 | total_packets, total_bytes); |
| 330 | |
Jesse Brandeburg | b85c94b | 2017-06-20 15:16:59 -0700 | [diff] [blame] | 331 | #define TX_WAKE_THRESHOLD ((s16)(DESC_NEEDED * 2)) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 332 | if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) && |
| 333 | (I40E_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD))) { |
| 334 | /* Make sure that anybody stopping the queue after this |
| 335 | * sees the new next_to_clean. |
| 336 | */ |
| 337 | smp_mb(); |
| 338 | if (__netif_subqueue_stopped(tx_ring->netdev, |
| 339 | tx_ring->queue_index) && |
Jacob Keller | 0da36b9 | 2017-04-19 09:25:55 -0400 | [diff] [blame] | 340 | !test_bit(__I40E_VSI_DOWN, vsi->state)) { |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 341 | netif_wake_subqueue(tx_ring->netdev, |
| 342 | tx_ring->queue_index); |
| 343 | ++tx_ring->tx_stats.restart_queue; |
| 344 | } |
| 345 | } |
| 346 | |
Kiran Patil | b03a8c1 | 2015-09-24 18:13:15 -0400 | [diff] [blame] | 347 | return !!budget; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | /** |
Anjali Singhai Jain | ecc6a23 | 2016-01-13 16:51:43 -0800 | [diff] [blame] | 351 | * i40evf_enable_wb_on_itr - Arm hardware to do a wb, interrupts are not enabled |
| 352 | * @vsi: the VSI we care about |
| 353 | * @q_vector: the vector on which to enable writeback |
| 354 | * |
| 355 | **/ |
| 356 | static void i40e_enable_wb_on_itr(struct i40e_vsi *vsi, |
| 357 | struct i40e_q_vector *q_vector) |
| 358 | { |
| 359 | u16 flags = q_vector->tx.ring[0].flags; |
| 360 | u32 val; |
| 361 | |
| 362 | if (!(flags & I40E_TXR_FLAGS_WB_ON_ITR)) |
| 363 | return; |
| 364 | |
| 365 | if (q_vector->arm_wb_state) |
| 366 | return; |
| 367 | |
| 368 | val = I40E_VFINT_DYN_CTLN1_WB_ON_ITR_MASK | |
| 369 | I40E_VFINT_DYN_CTLN1_ITR_INDX_MASK; /* set noitr */ |
| 370 | |
| 371 | wr32(&vsi->back->hw, |
Alexander Duyck | a3f9fb5 | 2017-12-29 08:48:53 -0500 | [diff] [blame] | 372 | I40E_VFINT_DYN_CTLN1(q_vector->reg_idx), val); |
Anjali Singhai Jain | ecc6a23 | 2016-01-13 16:51:43 -0800 | [diff] [blame] | 373 | q_vector->arm_wb_state = true; |
| 374 | } |
| 375 | |
| 376 | /** |
| 377 | * i40evf_force_wb - Issue SW Interrupt so HW does a wb |
Anjali Singhai Jain | c29af37 | 2015-01-10 01:07:19 +0000 | [diff] [blame] | 378 | * @vsi: the VSI we care about |
| 379 | * @q_vector: the vector on which to force writeback |
| 380 | * |
| 381 | **/ |
Anjali Singhai Jain | ecc6a23 | 2016-01-13 16:51:43 -0800 | [diff] [blame] | 382 | void i40evf_force_wb(struct i40e_vsi *vsi, struct i40e_q_vector *q_vector) |
Anjali Singhai Jain | c29af37 | 2015-01-10 01:07:19 +0000 | [diff] [blame] | 383 | { |
Anjali Singhai Jain | ecc6a23 | 2016-01-13 16:51:43 -0800 | [diff] [blame] | 384 | u32 val = I40E_VFINT_DYN_CTLN1_INTENA_MASK | |
| 385 | I40E_VFINT_DYN_CTLN1_ITR_INDX_MASK | /* set noitr */ |
| 386 | I40E_VFINT_DYN_CTLN1_SWINT_TRIG_MASK | |
| 387 | I40E_VFINT_DYN_CTLN1_SW_ITR_INDX_ENA_MASK |
| 388 | /* allow 00 to be written to the index */; |
Anjali Singhai Jain | c29af37 | 2015-01-10 01:07:19 +0000 | [diff] [blame] | 389 | |
Anjali Singhai Jain | ecc6a23 | 2016-01-13 16:51:43 -0800 | [diff] [blame] | 390 | wr32(&vsi->back->hw, |
Alexander Duyck | a3f9fb5 | 2017-12-29 08:48:53 -0500 | [diff] [blame] | 391 | I40E_VFINT_DYN_CTLN1(q_vector->reg_idx), |
Anjali Singhai Jain | ecc6a23 | 2016-01-13 16:51:43 -0800 | [diff] [blame] | 392 | val); |
Anjali Singhai Jain | c29af37 | 2015-01-10 01:07:19 +0000 | [diff] [blame] | 393 | } |
| 394 | |
| 395 | /** |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 396 | * i40e_set_new_dynamic_itr - Find new ITR level |
| 397 | * @rc: structure containing ring performance data |
| 398 | * |
Jesse Brandeburg | 8f5e39c | 2015-09-28 14:16:51 -0400 | [diff] [blame] | 399 | * Returns true if ITR changed, false if not |
| 400 | * |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 401 | * Stores a new ITR value based on packets and byte counts during |
| 402 | * the last interrupt. The advantage of per interrupt computation |
| 403 | * is faster updates and more accurate ITR for the current traffic |
| 404 | * pattern. Constants in this function were computed based on |
| 405 | * theoretical maximum wire speed and thresholds were set based on |
| 406 | * testing data as well as attempting to minimize response time |
| 407 | * while increasing bulk throughput. |
| 408 | **/ |
Jesse Brandeburg | 8f5e39c | 2015-09-28 14:16:51 -0400 | [diff] [blame] | 409 | static bool i40e_set_new_dynamic_itr(struct i40e_ring_container *rc) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 410 | { |
| 411 | enum i40e_latency_range new_latency_range = rc->latency_range; |
Jacob Keller | 2b634bb | 2017-07-14 09:10:14 -0400 | [diff] [blame] | 412 | int bytes_per_usec; |
Jacob Keller | 742c987 | 2017-07-14 09:10:13 -0400 | [diff] [blame] | 413 | unsigned int usecs, estimated_usecs; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 414 | |
Alexander Duyck | 71dc371 | 2017-12-29 08:49:53 -0500 | [diff] [blame] | 415 | if (!rc->ring || !ITR_IS_DYNAMIC(rc->ring->itr_setting)) |
| 416 | return false; |
| 417 | |
Alexander Duyck | 556fdfd | 2017-12-29 08:51:25 -0500 | [diff] [blame^] | 418 | if (!rc->total_packets || !rc->current_itr) |
Jesse Brandeburg | 8f5e39c | 2015-09-28 14:16:51 -0400 | [diff] [blame] | 419 | return false; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 420 | |
Alexander Duyck | 556fdfd | 2017-12-29 08:51:25 -0500 | [diff] [blame^] | 421 | usecs = (rc->current_itr << 1) * ITR_COUNTDOWN_START; |
Jacob Keller | 2b634bb | 2017-07-14 09:10:14 -0400 | [diff] [blame] | 422 | bytes_per_usec = rc->total_bytes / usecs; |
Jacob Keller | 742c987 | 2017-07-14 09:10:13 -0400 | [diff] [blame] | 423 | |
| 424 | /* The calculations in this algorithm depend on interrupts actually |
| 425 | * firing at the ITR rate. This may not happen if the packet rate is |
| 426 | * really low, or if we've been napi polling. Check to make sure |
| 427 | * that's not the case before we continue. |
| 428 | */ |
| 429 | estimated_usecs = jiffies_to_usecs(jiffies - rc->last_itr_update); |
| 430 | if (estimated_usecs > usecs) { |
| 431 | new_latency_range = I40E_LOW_LATENCY; |
| 432 | goto reset_latency; |
| 433 | } |
| 434 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 435 | /* simple throttlerate management |
Jesse Brandeburg | c56625d | 2015-09-28 14:16:53 -0400 | [diff] [blame] | 436 | * 0-10MB/s lowest (50000 ints/s) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 437 | * 10-20MB/s low (20000 ints/s) |
Jesse Brandeburg | c56625d | 2015-09-28 14:16:53 -0400 | [diff] [blame] | 438 | * 20-1249MB/s bulk (18000 ints/s) |
Jesse Brandeburg | 51cc6d9 | 2015-09-28 14:16:52 -0400 | [diff] [blame] | 439 | * |
| 440 | * The math works out because the divisor is in 10^(-6) which |
| 441 | * turns the bytes/us input value into MB/s values, but |
| 442 | * make sure to use usecs, as the register values written |
Jesse Brandeburg | ee2319c | 2015-09-28 14:16:54 -0400 | [diff] [blame] | 443 | * are in 2 usec increments in the ITR registers, and make sure |
| 444 | * to use the smoothed values that the countdown timer gives us. |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 445 | */ |
Carolyn Wyborny | de32e3e | 2015-06-10 13:42:07 -0400 | [diff] [blame] | 446 | switch (new_latency_range) { |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 447 | case I40E_LOWEST_LATENCY: |
Jacob Keller | 2b634bb | 2017-07-14 09:10:14 -0400 | [diff] [blame] | 448 | if (bytes_per_usec > 10) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 449 | new_latency_range = I40E_LOW_LATENCY; |
| 450 | break; |
| 451 | case I40E_LOW_LATENCY: |
Jacob Keller | 2b634bb | 2017-07-14 09:10:14 -0400 | [diff] [blame] | 452 | if (bytes_per_usec > 20) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 453 | new_latency_range = I40E_BULK_LATENCY; |
Jacob Keller | 2b634bb | 2017-07-14 09:10:14 -0400 | [diff] [blame] | 454 | else if (bytes_per_usec <= 10) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 455 | new_latency_range = I40E_LOWEST_LATENCY; |
| 456 | break; |
| 457 | case I40E_BULK_LATENCY: |
Carolyn Wyborny | de32e3e | 2015-06-10 13:42:07 -0400 | [diff] [blame] | 458 | default: |
Jacob Keller | 2b634bb | 2017-07-14 09:10:14 -0400 | [diff] [blame] | 459 | if (bytes_per_usec <= 20) |
Carolyn Wyborny | de32e3e | 2015-06-10 13:42:07 -0400 | [diff] [blame] | 460 | new_latency_range = I40E_LOW_LATENCY; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 461 | break; |
| 462 | } |
Jesse Brandeburg | c56625d | 2015-09-28 14:16:53 -0400 | [diff] [blame] | 463 | |
Jacob Keller | 742c987 | 2017-07-14 09:10:13 -0400 | [diff] [blame] | 464 | reset_latency: |
Carolyn Wyborny | de32e3e | 2015-06-10 13:42:07 -0400 | [diff] [blame] | 465 | rc->latency_range = new_latency_range; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 466 | |
| 467 | switch (new_latency_range) { |
| 468 | case I40E_LOWEST_LATENCY: |
Alexander Duyck | 556fdfd | 2017-12-29 08:51:25 -0500 | [diff] [blame^] | 469 | rc->target_itr = I40E_ITR_50K; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 470 | break; |
| 471 | case I40E_LOW_LATENCY: |
Alexander Duyck | 556fdfd | 2017-12-29 08:51:25 -0500 | [diff] [blame^] | 472 | rc->target_itr = I40E_ITR_20K; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 473 | break; |
| 474 | case I40E_BULK_LATENCY: |
Alexander Duyck | 556fdfd | 2017-12-29 08:51:25 -0500 | [diff] [blame^] | 475 | rc->target_itr = I40E_ITR_18K; |
Jesse Brandeburg | c56625d | 2015-09-28 14:16:53 -0400 | [diff] [blame] | 476 | break; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 477 | default: |
| 478 | break; |
| 479 | } |
| 480 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 481 | rc->total_bytes = 0; |
| 482 | rc->total_packets = 0; |
Jacob Keller | 742c987 | 2017-07-14 09:10:13 -0400 | [diff] [blame] | 483 | rc->last_itr_update = jiffies; |
Jesse Brandeburg | 8f5e39c | 2015-09-28 14:16:51 -0400 | [diff] [blame] | 484 | |
Alexander Duyck | 556fdfd | 2017-12-29 08:51:25 -0500 | [diff] [blame^] | 485 | return rc->target_itr != rc->current_itr; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 486 | } |
| 487 | |
Jesse Brandeburg | 4eeb1ff | 2015-11-18 17:35:42 -0800 | [diff] [blame] | 488 | /** |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 489 | * i40evf_setup_tx_descriptors - Allocate the Tx descriptors |
| 490 | * @tx_ring: the tx ring to set up |
| 491 | * |
| 492 | * Return 0 on success, negative on error |
| 493 | **/ |
| 494 | int i40evf_setup_tx_descriptors(struct i40e_ring *tx_ring) |
| 495 | { |
| 496 | struct device *dev = tx_ring->dev; |
| 497 | int bi_size; |
| 498 | |
| 499 | if (!dev) |
| 500 | return -ENOMEM; |
| 501 | |
Mitch Williams | 67c818a | 2015-06-19 08:56:30 -0700 | [diff] [blame] | 502 | /* warn if we are about to overwrite the pointer */ |
| 503 | WARN_ON(tx_ring->tx_bi); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 504 | bi_size = sizeof(struct i40e_tx_buffer) * tx_ring->count; |
| 505 | tx_ring->tx_bi = kzalloc(bi_size, GFP_KERNEL); |
| 506 | if (!tx_ring->tx_bi) |
| 507 | goto err; |
| 508 | |
| 509 | /* round up to nearest 4K */ |
| 510 | tx_ring->size = tx_ring->count * sizeof(struct i40e_tx_desc); |
| 511 | tx_ring->size = ALIGN(tx_ring->size, 4096); |
| 512 | tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size, |
| 513 | &tx_ring->dma, GFP_KERNEL); |
| 514 | if (!tx_ring->desc) { |
| 515 | dev_info(dev, "Unable to allocate memory for the Tx descriptor ring, size=%d\n", |
| 516 | tx_ring->size); |
| 517 | goto err; |
| 518 | } |
| 519 | |
| 520 | tx_ring->next_to_use = 0; |
| 521 | tx_ring->next_to_clean = 0; |
Sudheer Mogilappagari | 07d4419 | 2017-12-18 05:17:25 -0500 | [diff] [blame] | 522 | tx_ring->tx_stats.prev_pkt_ctr = -1; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 523 | return 0; |
| 524 | |
| 525 | err: |
| 526 | kfree(tx_ring->tx_bi); |
| 527 | tx_ring->tx_bi = NULL; |
| 528 | return -ENOMEM; |
| 529 | } |
| 530 | |
| 531 | /** |
| 532 | * i40evf_clean_rx_ring - Free Rx buffers |
| 533 | * @rx_ring: ring to be cleaned |
| 534 | **/ |
| 535 | void i40evf_clean_rx_ring(struct i40e_ring *rx_ring) |
| 536 | { |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 537 | unsigned long bi_size; |
| 538 | u16 i; |
| 539 | |
| 540 | /* ring already cleared, nothing to do */ |
| 541 | if (!rx_ring->rx_bi) |
| 542 | return; |
| 543 | |
Scott Peterson | e72e565 | 2017-02-09 23:40:25 -0800 | [diff] [blame] | 544 | if (rx_ring->skb) { |
| 545 | dev_kfree_skb(rx_ring->skb); |
| 546 | rx_ring->skb = NULL; |
| 547 | } |
| 548 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 549 | /* Free all the Rx ring sk_buffs */ |
| 550 | for (i = 0; i < rx_ring->count; i++) { |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 551 | struct i40e_rx_buffer *rx_bi = &rx_ring->rx_bi[i]; |
| 552 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 553 | if (!rx_bi->page) |
| 554 | continue; |
| 555 | |
Alexander Duyck | 59605bc | 2017-01-30 12:29:35 -0800 | [diff] [blame] | 556 | /* Invalidate cache lines that may have been written to by |
| 557 | * device so that we avoid corrupting memory. |
| 558 | */ |
| 559 | dma_sync_single_range_for_cpu(rx_ring->dev, |
| 560 | rx_bi->dma, |
| 561 | rx_bi->page_offset, |
Alexander Duyck | 98efd69 | 2017-04-05 07:51:01 -0400 | [diff] [blame] | 562 | rx_ring->rx_buf_len, |
Alexander Duyck | 59605bc | 2017-01-30 12:29:35 -0800 | [diff] [blame] | 563 | DMA_FROM_DEVICE); |
| 564 | |
| 565 | /* free resources associated with mapping */ |
| 566 | dma_unmap_page_attrs(rx_ring->dev, rx_bi->dma, |
Alexander Duyck | 98efd69 | 2017-04-05 07:51:01 -0400 | [diff] [blame] | 567 | i40e_rx_pg_size(rx_ring), |
Alexander Duyck | 59605bc | 2017-01-30 12:29:35 -0800 | [diff] [blame] | 568 | DMA_FROM_DEVICE, |
| 569 | I40E_RX_DMA_ATTR); |
Alexander Duyck | 98efd69 | 2017-04-05 07:51:01 -0400 | [diff] [blame] | 570 | |
Alexander Duyck | 1793668 | 2017-02-21 15:55:39 -0800 | [diff] [blame] | 571 | __page_frag_cache_drain(rx_bi->page, rx_bi->pagecnt_bias); |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 572 | |
| 573 | rx_bi->page = NULL; |
| 574 | rx_bi->page_offset = 0; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count; |
| 578 | memset(rx_ring->rx_bi, 0, bi_size); |
| 579 | |
| 580 | /* Zero out the descriptor ring */ |
| 581 | memset(rx_ring->desc, 0, rx_ring->size); |
| 582 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 583 | rx_ring->next_to_alloc = 0; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 584 | rx_ring->next_to_clean = 0; |
| 585 | rx_ring->next_to_use = 0; |
| 586 | } |
| 587 | |
| 588 | /** |
| 589 | * i40evf_free_rx_resources - Free Rx resources |
| 590 | * @rx_ring: ring to clean the resources from |
| 591 | * |
| 592 | * Free all receive software resources |
| 593 | **/ |
| 594 | void i40evf_free_rx_resources(struct i40e_ring *rx_ring) |
| 595 | { |
| 596 | i40evf_clean_rx_ring(rx_ring); |
| 597 | kfree(rx_ring->rx_bi); |
| 598 | rx_ring->rx_bi = NULL; |
| 599 | |
| 600 | if (rx_ring->desc) { |
| 601 | dma_free_coherent(rx_ring->dev, rx_ring->size, |
| 602 | rx_ring->desc, rx_ring->dma); |
| 603 | rx_ring->desc = NULL; |
| 604 | } |
| 605 | } |
| 606 | |
| 607 | /** |
| 608 | * i40evf_setup_rx_descriptors - Allocate Rx descriptors |
| 609 | * @rx_ring: Rx descriptor ring (for a specific queue) to setup |
| 610 | * |
| 611 | * Returns 0 on success, negative on failure |
| 612 | **/ |
| 613 | int i40evf_setup_rx_descriptors(struct i40e_ring *rx_ring) |
| 614 | { |
| 615 | struct device *dev = rx_ring->dev; |
| 616 | int bi_size; |
| 617 | |
Mitch Williams | 67c818a | 2015-06-19 08:56:30 -0700 | [diff] [blame] | 618 | /* warn if we are about to overwrite the pointer */ |
| 619 | WARN_ON(rx_ring->rx_bi); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 620 | bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count; |
| 621 | rx_ring->rx_bi = kzalloc(bi_size, GFP_KERNEL); |
| 622 | if (!rx_ring->rx_bi) |
| 623 | goto err; |
| 624 | |
Carolyn Wyborny | f217d6c | 2015-02-09 17:42:31 -0800 | [diff] [blame] | 625 | u64_stats_init(&rx_ring->syncp); |
Carolyn Wyborny | 638702b | 2015-01-24 09:58:32 +0000 | [diff] [blame] | 626 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 627 | /* Round up to nearest 4K */ |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 628 | rx_ring->size = rx_ring->count * sizeof(union i40e_32byte_rx_desc); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 629 | rx_ring->size = ALIGN(rx_ring->size, 4096); |
| 630 | rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size, |
| 631 | &rx_ring->dma, GFP_KERNEL); |
| 632 | |
| 633 | if (!rx_ring->desc) { |
| 634 | dev_info(dev, "Unable to allocate memory for the Rx descriptor ring, size=%d\n", |
| 635 | rx_ring->size); |
| 636 | goto err; |
| 637 | } |
| 638 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 639 | rx_ring->next_to_alloc = 0; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 640 | rx_ring->next_to_clean = 0; |
| 641 | rx_ring->next_to_use = 0; |
| 642 | |
| 643 | return 0; |
| 644 | err: |
| 645 | kfree(rx_ring->rx_bi); |
| 646 | rx_ring->rx_bi = NULL; |
| 647 | return -ENOMEM; |
| 648 | } |
| 649 | |
| 650 | /** |
| 651 | * i40e_release_rx_desc - Store the new tail and head values |
| 652 | * @rx_ring: ring to bump |
| 653 | * @val: new head index |
| 654 | **/ |
| 655 | static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val) |
| 656 | { |
| 657 | rx_ring->next_to_use = val; |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 658 | |
| 659 | /* update next to alloc since we have filled the ring */ |
| 660 | rx_ring->next_to_alloc = val; |
| 661 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 662 | /* Force memory writes to complete before letting h/w |
| 663 | * know there are new descriptors to fetch. (Only |
| 664 | * applicable for weak-ordered memory model archs, |
| 665 | * such as IA-64). |
| 666 | */ |
| 667 | wmb(); |
| 668 | writel(val, rx_ring->tail); |
| 669 | } |
| 670 | |
| 671 | /** |
Alexander Duyck | ca9ec08 | 2017-04-05 07:51:02 -0400 | [diff] [blame] | 672 | * i40e_rx_offset - Return expected offset into page to access data |
| 673 | * @rx_ring: Ring we are requesting offset of |
| 674 | * |
| 675 | * Returns the offset value for ring into the data buffer. |
| 676 | */ |
| 677 | static inline unsigned int i40e_rx_offset(struct i40e_ring *rx_ring) |
| 678 | { |
| 679 | return ring_uses_build_skb(rx_ring) ? I40E_SKB_PAD : 0; |
| 680 | } |
| 681 | |
| 682 | /** |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 683 | * i40e_alloc_mapped_page - recycle or make a new page |
| 684 | * @rx_ring: ring to use |
| 685 | * @bi: rx_buffer struct to modify |
Jesse Brandeburg | c2e245a | 2016-01-13 16:51:46 -0800 | [diff] [blame] | 686 | * |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 687 | * Returns true if the page was successfully allocated or |
| 688 | * reused. |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 689 | **/ |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 690 | static bool i40e_alloc_mapped_page(struct i40e_ring *rx_ring, |
| 691 | struct i40e_rx_buffer *bi) |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 692 | { |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 693 | struct page *page = bi->page; |
| 694 | dma_addr_t dma; |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 695 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 696 | /* since we are recycling buffers we should seldom need to alloc */ |
| 697 | if (likely(page)) { |
| 698 | rx_ring->rx_stats.page_reuse_count++; |
| 699 | return true; |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 700 | } |
| 701 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 702 | /* alloc new page for storage */ |
Alexander Duyck | 98efd69 | 2017-04-05 07:51:01 -0400 | [diff] [blame] | 703 | page = dev_alloc_pages(i40e_rx_pg_order(rx_ring)); |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 704 | if (unlikely(!page)) { |
| 705 | rx_ring->rx_stats.alloc_page_failed++; |
Jesse Brandeburg | c2e245a | 2016-01-13 16:51:46 -0800 | [diff] [blame] | 706 | return false; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 707 | } |
| 708 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 709 | /* map page for use */ |
Alexander Duyck | 59605bc | 2017-01-30 12:29:35 -0800 | [diff] [blame] | 710 | dma = dma_map_page_attrs(rx_ring->dev, page, 0, |
Alexander Duyck | 98efd69 | 2017-04-05 07:51:01 -0400 | [diff] [blame] | 711 | i40e_rx_pg_size(rx_ring), |
Alexander Duyck | 59605bc | 2017-01-30 12:29:35 -0800 | [diff] [blame] | 712 | DMA_FROM_DEVICE, |
| 713 | I40E_RX_DMA_ATTR); |
Jesse Brandeburg | c2e245a | 2016-01-13 16:51:46 -0800 | [diff] [blame] | 714 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 715 | /* if mapping failed free memory back to system since |
| 716 | * there isn't much point in holding memory we can't use |
Jesse Brandeburg | c2e245a | 2016-01-13 16:51:46 -0800 | [diff] [blame] | 717 | */ |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 718 | if (dma_mapping_error(rx_ring->dev, dma)) { |
Alexander Duyck | 98efd69 | 2017-04-05 07:51:01 -0400 | [diff] [blame] | 719 | __free_pages(page, i40e_rx_pg_order(rx_ring)); |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 720 | rx_ring->rx_stats.alloc_page_failed++; |
| 721 | return false; |
| 722 | } |
| 723 | |
| 724 | bi->dma = dma; |
| 725 | bi->page = page; |
Alexander Duyck | ca9ec08 | 2017-04-05 07:51:02 -0400 | [diff] [blame] | 726 | bi->page_offset = i40e_rx_offset(rx_ring); |
Alexander Duyck | a0cfc31 | 2017-03-14 10:15:24 -0700 | [diff] [blame] | 727 | |
| 728 | /* initialize pagecnt_bias to 1 representing we fully own page */ |
Alexander Duyck | 1793668 | 2017-02-21 15:55:39 -0800 | [diff] [blame] | 729 | bi->pagecnt_bias = 1; |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 730 | |
Jesse Brandeburg | c2e245a | 2016-01-13 16:51:46 -0800 | [diff] [blame] | 731 | return true; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 732 | } |
| 733 | |
| 734 | /** |
| 735 | * i40e_receive_skb - Send a completed packet up the stack |
| 736 | * @rx_ring: rx ring in play |
| 737 | * @skb: packet to send up |
| 738 | * @vlan_tag: vlan tag for packet |
| 739 | **/ |
| 740 | static void i40e_receive_skb(struct i40e_ring *rx_ring, |
| 741 | struct sk_buff *skb, u16 vlan_tag) |
| 742 | { |
| 743 | struct i40e_q_vector *q_vector = rx_ring->q_vector; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 744 | |
Jesse Brandeburg | a149f2c | 2016-04-12 08:30:49 -0700 | [diff] [blame] | 745 | if ((rx_ring->netdev->features & NETIF_F_HW_VLAN_CTAG_RX) && |
| 746 | (vlan_tag & VLAN_VID_MASK)) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 747 | __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vlan_tag); |
| 748 | |
Alexander Duyck | 8b65035 | 2015-09-24 09:04:32 -0700 | [diff] [blame] | 749 | napi_gro_receive(&q_vector->napi, skb); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 750 | } |
| 751 | |
| 752 | /** |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 753 | * i40evf_alloc_rx_buffers - Replace used receive buffers |
| 754 | * @rx_ring: ring to place buffers on |
| 755 | * @cleaned_count: number of buffers to replace |
| 756 | * |
| 757 | * Returns false if all allocations were successful, true if any fail |
| 758 | **/ |
| 759 | bool i40evf_alloc_rx_buffers(struct i40e_ring *rx_ring, u16 cleaned_count) |
| 760 | { |
| 761 | u16 ntu = rx_ring->next_to_use; |
| 762 | union i40e_rx_desc *rx_desc; |
| 763 | struct i40e_rx_buffer *bi; |
| 764 | |
| 765 | /* do nothing if no valid netdev defined */ |
| 766 | if (!rx_ring->netdev || !cleaned_count) |
| 767 | return false; |
| 768 | |
| 769 | rx_desc = I40E_RX_DESC(rx_ring, ntu); |
| 770 | bi = &rx_ring->rx_bi[ntu]; |
| 771 | |
| 772 | do { |
| 773 | if (!i40e_alloc_mapped_page(rx_ring, bi)) |
| 774 | goto no_buffers; |
| 775 | |
Alexander Duyck | 59605bc | 2017-01-30 12:29:35 -0800 | [diff] [blame] | 776 | /* sync the buffer for use by the device */ |
| 777 | dma_sync_single_range_for_device(rx_ring->dev, bi->dma, |
| 778 | bi->page_offset, |
Alexander Duyck | 98efd69 | 2017-04-05 07:51:01 -0400 | [diff] [blame] | 779 | rx_ring->rx_buf_len, |
Alexander Duyck | 59605bc | 2017-01-30 12:29:35 -0800 | [diff] [blame] | 780 | DMA_FROM_DEVICE); |
| 781 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 782 | /* Refresh the desc even if buffer_addrs didn't change |
| 783 | * because each write-back erases this info. |
| 784 | */ |
| 785 | rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset); |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 786 | |
| 787 | rx_desc++; |
| 788 | bi++; |
| 789 | ntu++; |
| 790 | if (unlikely(ntu == rx_ring->count)) { |
| 791 | rx_desc = I40E_RX_DESC(rx_ring, 0); |
| 792 | bi = rx_ring->rx_bi; |
| 793 | ntu = 0; |
| 794 | } |
| 795 | |
| 796 | /* clear the status bits for the next_to_use descriptor */ |
| 797 | rx_desc->wb.qword1.status_error_len = 0; |
| 798 | |
| 799 | cleaned_count--; |
| 800 | } while (cleaned_count); |
| 801 | |
| 802 | if (rx_ring->next_to_use != ntu) |
| 803 | i40e_release_rx_desc(rx_ring, ntu); |
| 804 | |
| 805 | return false; |
| 806 | |
| 807 | no_buffers: |
| 808 | if (rx_ring->next_to_use != ntu) |
| 809 | i40e_release_rx_desc(rx_ring, ntu); |
| 810 | |
| 811 | /* make sure to come back via polling to try again after |
| 812 | * allocation failure |
| 813 | */ |
| 814 | return true; |
| 815 | } |
| 816 | |
| 817 | /** |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 818 | * i40e_rx_checksum - Indicate in skb if hw indicated a good cksum |
| 819 | * @vsi: the VSI we care about |
| 820 | * @skb: skb currently being received and modified |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 821 | * @rx_desc: the receive descriptor |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 822 | **/ |
| 823 | static inline void i40e_rx_checksum(struct i40e_vsi *vsi, |
| 824 | struct sk_buff *skb, |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 825 | union i40e_rx_desc *rx_desc) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 826 | { |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 827 | struct i40e_rx_ptype_decoded decoded; |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 828 | u32 rx_error, rx_status; |
Alexander Duyck | 858296c8 | 2016-06-14 15:45:42 -0700 | [diff] [blame] | 829 | bool ipv4, ipv6; |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 830 | u8 ptype; |
| 831 | u64 qword; |
| 832 | |
| 833 | qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len); |
| 834 | ptype = (qword & I40E_RXD_QW1_PTYPE_MASK) >> I40E_RXD_QW1_PTYPE_SHIFT; |
| 835 | rx_error = (qword & I40E_RXD_QW1_ERROR_MASK) >> |
| 836 | I40E_RXD_QW1_ERROR_SHIFT; |
| 837 | rx_status = (qword & I40E_RXD_QW1_STATUS_MASK) >> |
| 838 | I40E_RXD_QW1_STATUS_SHIFT; |
| 839 | decoded = decode_rx_desc_ptype(ptype); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 840 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 841 | skb->ip_summed = CHECKSUM_NONE; |
| 842 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 843 | skb_checksum_none_assert(skb); |
| 844 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 845 | /* Rx csum enabled and ip headers found? */ |
Jesse Brandeburg | 8a3c91c | 2014-05-20 08:01:43 +0000 | [diff] [blame] | 846 | if (!(vsi->netdev->features & NETIF_F_RXCSUM)) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 847 | return; |
| 848 | |
Jesse Brandeburg | 8a3c91c | 2014-05-20 08:01:43 +0000 | [diff] [blame] | 849 | /* did the hardware decode the packet and checksum? */ |
Jesse Brandeburg | 41a1d04 | 2015-06-04 16:24:02 -0400 | [diff] [blame] | 850 | if (!(rx_status & BIT(I40E_RX_DESC_STATUS_L3L4P_SHIFT))) |
Jesse Brandeburg | 8a3c91c | 2014-05-20 08:01:43 +0000 | [diff] [blame] | 851 | return; |
| 852 | |
| 853 | /* both known and outer_ip must be set for the below code to work */ |
| 854 | if (!(decoded.known && decoded.outer_ip)) |
| 855 | return; |
| 856 | |
Alexander Duyck | fad5733 | 2016-01-24 21:17:22 -0800 | [diff] [blame] | 857 | ipv4 = (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP) && |
| 858 | (decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV4); |
| 859 | ipv6 = (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP) && |
| 860 | (decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV6); |
Jesse Brandeburg | 8a3c91c | 2014-05-20 08:01:43 +0000 | [diff] [blame] | 861 | |
| 862 | if (ipv4 && |
Jesse Brandeburg | 41a1d04 | 2015-06-04 16:24:02 -0400 | [diff] [blame] | 863 | (rx_error & (BIT(I40E_RX_DESC_ERROR_IPE_SHIFT) | |
| 864 | BIT(I40E_RX_DESC_ERROR_EIPE_SHIFT)))) |
Jesse Brandeburg | 8a3c91c | 2014-05-20 08:01:43 +0000 | [diff] [blame] | 865 | goto checksum_fail; |
| 866 | |
Jesse Brandeburg | ddf1d0d | 2014-02-13 03:48:39 -0800 | [diff] [blame] | 867 | /* likely incorrect csum if alternate IP extension headers found */ |
Jesse Brandeburg | 8a3c91c | 2014-05-20 08:01:43 +0000 | [diff] [blame] | 868 | if (ipv6 && |
Jesse Brandeburg | 41a1d04 | 2015-06-04 16:24:02 -0400 | [diff] [blame] | 869 | rx_status & BIT(I40E_RX_DESC_STATUS_IPV6EXADD_SHIFT)) |
Jesse Brandeburg | 8a3c91c | 2014-05-20 08:01:43 +0000 | [diff] [blame] | 870 | /* don't increment checksum err here, non-fatal err */ |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 871 | return; |
| 872 | |
Jesse Brandeburg | 8a3c91c | 2014-05-20 08:01:43 +0000 | [diff] [blame] | 873 | /* there was some L4 error, count error and punt packet to the stack */ |
Jesse Brandeburg | 41a1d04 | 2015-06-04 16:24:02 -0400 | [diff] [blame] | 874 | if (rx_error & BIT(I40E_RX_DESC_ERROR_L4E_SHIFT)) |
Jesse Brandeburg | 8a3c91c | 2014-05-20 08:01:43 +0000 | [diff] [blame] | 875 | goto checksum_fail; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 876 | |
Jesse Brandeburg | 8a3c91c | 2014-05-20 08:01:43 +0000 | [diff] [blame] | 877 | /* handle packets that were not able to be checksummed due |
| 878 | * to arrival speed, in this case the stack can compute |
| 879 | * the csum. |
| 880 | */ |
Jesse Brandeburg | 41a1d04 | 2015-06-04 16:24:02 -0400 | [diff] [blame] | 881 | if (rx_error & BIT(I40E_RX_DESC_ERROR_PPRS_SHIFT)) |
Jesse Brandeburg | 8a3c91c | 2014-05-20 08:01:43 +0000 | [diff] [blame] | 882 | return; |
| 883 | |
Alexander Duyck | 858296c8 | 2016-06-14 15:45:42 -0700 | [diff] [blame] | 884 | /* Only report checksum unnecessary for TCP, UDP, or SCTP */ |
| 885 | switch (decoded.inner_prot) { |
| 886 | case I40E_RX_PTYPE_INNER_PROT_TCP: |
| 887 | case I40E_RX_PTYPE_INNER_PROT_UDP: |
| 888 | case I40E_RX_PTYPE_INNER_PROT_SCTP: |
| 889 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
| 890 | /* fall though */ |
| 891 | default: |
| 892 | break; |
| 893 | } |
Jesse Brandeburg | 8a3c91c | 2014-05-20 08:01:43 +0000 | [diff] [blame] | 894 | |
| 895 | return; |
| 896 | |
| 897 | checksum_fail: |
| 898 | vsi->back->hw_csum_rx_error++; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 899 | } |
| 900 | |
| 901 | /** |
Anjali Singhai Jain | 857942f | 2015-12-09 15:50:21 -0800 | [diff] [blame] | 902 | * i40e_ptype_to_htype - get a hash type |
Jesse Brandeburg | 206812b | 2014-02-12 01:45:33 +0000 | [diff] [blame] | 903 | * @ptype: the ptype value from the descriptor |
| 904 | * |
| 905 | * Returns a hash type to be used by skb_set_hash |
| 906 | **/ |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 907 | static inline int i40e_ptype_to_htype(u8 ptype) |
Jesse Brandeburg | 206812b | 2014-02-12 01:45:33 +0000 | [diff] [blame] | 908 | { |
| 909 | struct i40e_rx_ptype_decoded decoded = decode_rx_desc_ptype(ptype); |
| 910 | |
| 911 | if (!decoded.known) |
| 912 | return PKT_HASH_TYPE_NONE; |
| 913 | |
| 914 | if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP && |
| 915 | decoded.payload_layer == I40E_RX_PTYPE_PAYLOAD_LAYER_PAY4) |
| 916 | return PKT_HASH_TYPE_L4; |
| 917 | else if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP && |
| 918 | decoded.payload_layer == I40E_RX_PTYPE_PAYLOAD_LAYER_PAY3) |
| 919 | return PKT_HASH_TYPE_L3; |
| 920 | else |
| 921 | return PKT_HASH_TYPE_L2; |
| 922 | } |
| 923 | |
| 924 | /** |
Anjali Singhai Jain | 857942f | 2015-12-09 15:50:21 -0800 | [diff] [blame] | 925 | * i40e_rx_hash - set the hash value in the skb |
| 926 | * @ring: descriptor ring |
| 927 | * @rx_desc: specific descriptor |
| 928 | **/ |
| 929 | static inline void i40e_rx_hash(struct i40e_ring *ring, |
| 930 | union i40e_rx_desc *rx_desc, |
| 931 | struct sk_buff *skb, |
| 932 | u8 rx_ptype) |
| 933 | { |
| 934 | u32 hash; |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 935 | const __le64 rss_mask = |
Anjali Singhai Jain | 857942f | 2015-12-09 15:50:21 -0800 | [diff] [blame] | 936 | cpu_to_le64((u64)I40E_RX_DESC_FLTSTAT_RSS_HASH << |
| 937 | I40E_RX_DESC_STATUS_FLTSTAT_SHIFT); |
| 938 | |
| 939 | if (ring->netdev->features & NETIF_F_RXHASH) |
| 940 | return; |
| 941 | |
| 942 | if ((rx_desc->wb.qword1.status_error_len & rss_mask) == rss_mask) { |
| 943 | hash = le32_to_cpu(rx_desc->wb.qword0.hi_dword.rss); |
| 944 | skb_set_hash(skb, hash, i40e_ptype_to_htype(rx_ptype)); |
| 945 | } |
| 946 | } |
| 947 | |
| 948 | /** |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 949 | * i40evf_process_skb_fields - Populate skb header fields from Rx descriptor |
| 950 | * @rx_ring: rx descriptor ring packet is being transacted on |
| 951 | * @rx_desc: pointer to the EOP Rx descriptor |
| 952 | * @skb: pointer to current skb being populated |
| 953 | * @rx_ptype: the packet type decoded by hardware |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 954 | * |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 955 | * This function checks the ring, descriptor, and packet information in |
| 956 | * order to populate the hash, checksum, VLAN, protocol, and |
| 957 | * other fields within the skb. |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 958 | **/ |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 959 | static inline |
| 960 | void i40evf_process_skb_fields(struct i40e_ring *rx_ring, |
| 961 | union i40e_rx_desc *rx_desc, struct sk_buff *skb, |
| 962 | u8 rx_ptype) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 963 | { |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 964 | i40e_rx_hash(rx_ring, rx_desc, skb, rx_ptype); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 965 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 966 | i40e_rx_checksum(rx_ring->vsi, skb, rx_desc); |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 967 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 968 | skb_record_rx_queue(skb, rx_ring->queue_index); |
Alexander Duyck | a5b268e | 2017-02-21 15:55:46 -0800 | [diff] [blame] | 969 | |
| 970 | /* modifies the skb - consumes the enet header */ |
| 971 | skb->protocol = eth_type_trans(skb, rx_ring->netdev); |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 972 | } |
| 973 | |
| 974 | /** |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 975 | * i40e_cleanup_headers - Correct empty headers |
| 976 | * @rx_ring: rx descriptor ring packet is being transacted on |
| 977 | * @skb: pointer to current skb being fixed |
| 978 | * |
| 979 | * Also address the case where we are pulling data in on pages only |
| 980 | * and as such no data is present in the skb header. |
| 981 | * |
| 982 | * In addition if skb is not at least 60 bytes we need to pad it so that |
| 983 | * it is large enough to qualify as a valid Ethernet frame. |
| 984 | * |
| 985 | * Returns true if an error was encountered and skb was freed. |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 986 | **/ |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 987 | static bool i40e_cleanup_headers(struct i40e_ring *rx_ring, struct sk_buff *skb) |
| 988 | { |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 989 | /* if eth_skb_pad returns an error the skb was freed */ |
| 990 | if (eth_skb_pad(skb)) |
| 991 | return true; |
| 992 | |
| 993 | return false; |
| 994 | } |
| 995 | |
| 996 | /** |
| 997 | * i40e_reuse_rx_page - page flip buffer and store it back on the ring |
| 998 | * @rx_ring: rx descriptor ring to store buffers on |
| 999 | * @old_buff: donor buffer to have page reused |
| 1000 | * |
| 1001 | * Synchronizes page for reuse by the adapter |
| 1002 | **/ |
| 1003 | static void i40e_reuse_rx_page(struct i40e_ring *rx_ring, |
| 1004 | struct i40e_rx_buffer *old_buff) |
| 1005 | { |
| 1006 | struct i40e_rx_buffer *new_buff; |
| 1007 | u16 nta = rx_ring->next_to_alloc; |
| 1008 | |
| 1009 | new_buff = &rx_ring->rx_bi[nta]; |
| 1010 | |
| 1011 | /* update, and store next to alloc */ |
| 1012 | nta++; |
| 1013 | rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0; |
| 1014 | |
| 1015 | /* transfer page from old buffer to new buffer */ |
Alexander Duyck | 1793668 | 2017-02-21 15:55:39 -0800 | [diff] [blame] | 1016 | new_buff->dma = old_buff->dma; |
| 1017 | new_buff->page = old_buff->page; |
| 1018 | new_buff->page_offset = old_buff->page_offset; |
| 1019 | new_buff->pagecnt_bias = old_buff->pagecnt_bias; |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1020 | } |
| 1021 | |
| 1022 | /** |
Scott Peterson | 9b37c93 | 2017-02-09 23:43:30 -0800 | [diff] [blame] | 1023 | * i40e_page_is_reusable - check if any reuse is possible |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1024 | * @page: page struct to check |
Scott Peterson | 9b37c93 | 2017-02-09 23:43:30 -0800 | [diff] [blame] | 1025 | * |
| 1026 | * A page is not reusable if it was allocated under low memory |
| 1027 | * conditions, or it's not in the same NUMA node as this CPU. |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1028 | */ |
Scott Peterson | 9b37c93 | 2017-02-09 23:43:30 -0800 | [diff] [blame] | 1029 | static inline bool i40e_page_is_reusable(struct page *page) |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1030 | { |
Scott Peterson | 9b37c93 | 2017-02-09 23:43:30 -0800 | [diff] [blame] | 1031 | return (page_to_nid(page) == numa_mem_id()) && |
| 1032 | !page_is_pfmemalloc(page); |
| 1033 | } |
| 1034 | |
| 1035 | /** |
| 1036 | * i40e_can_reuse_rx_page - Determine if this page can be reused by |
| 1037 | * the adapter for another receive |
| 1038 | * |
| 1039 | * @rx_buffer: buffer containing the page |
Scott Peterson | 9b37c93 | 2017-02-09 23:43:30 -0800 | [diff] [blame] | 1040 | * |
| 1041 | * If page is reusable, rx_buffer->page_offset is adjusted to point to |
| 1042 | * an unused region in the page. |
| 1043 | * |
| 1044 | * For small pages, @truesize will be a constant value, half the size |
| 1045 | * of the memory at page. We'll attempt to alternate between high and |
| 1046 | * low halves of the page, with one half ready for use by the hardware |
| 1047 | * and the other half being consumed by the stack. We use the page |
| 1048 | * ref count to determine whether the stack has finished consuming the |
| 1049 | * portion of this page that was passed up with a previous packet. If |
| 1050 | * the page ref count is >1, we'll assume the "other" half page is |
| 1051 | * still busy, and this page cannot be reused. |
| 1052 | * |
| 1053 | * For larger pages, @truesize will be the actual space used by the |
| 1054 | * received packet (adjusted upward to an even multiple of the cache |
| 1055 | * line size). This will advance through the page by the amount |
| 1056 | * actually consumed by the received packets while there is still |
| 1057 | * space for a buffer. Each region of larger pages will be used at |
| 1058 | * most once, after which the page will not be reused. |
| 1059 | * |
| 1060 | * In either case, if the page is reusable its refcount is increased. |
| 1061 | **/ |
Alexander Duyck | a0cfc31 | 2017-03-14 10:15:24 -0700 | [diff] [blame] | 1062 | static bool i40e_can_reuse_rx_page(struct i40e_rx_buffer *rx_buffer) |
Scott Peterson | 9b37c93 | 2017-02-09 23:43:30 -0800 | [diff] [blame] | 1063 | { |
Alexander Duyck | a0cfc31 | 2017-03-14 10:15:24 -0700 | [diff] [blame] | 1064 | unsigned int pagecnt_bias = rx_buffer->pagecnt_bias; |
| 1065 | struct page *page = rx_buffer->page; |
Scott Peterson | 9b37c93 | 2017-02-09 23:43:30 -0800 | [diff] [blame] | 1066 | |
| 1067 | /* Is any reuse possible? */ |
| 1068 | if (unlikely(!i40e_page_is_reusable(page))) |
| 1069 | return false; |
| 1070 | |
| 1071 | #if (PAGE_SIZE < 8192) |
| 1072 | /* if we are only owner of page we can reuse it */ |
Alexander Duyck | a0cfc31 | 2017-03-14 10:15:24 -0700 | [diff] [blame] | 1073 | if (unlikely((page_count(page) - pagecnt_bias) > 1)) |
Scott Peterson | 9b37c93 | 2017-02-09 23:43:30 -0800 | [diff] [blame] | 1074 | return false; |
Scott Peterson | 9b37c93 | 2017-02-09 23:43:30 -0800 | [diff] [blame] | 1075 | #else |
Alexander Duyck | 98efd69 | 2017-04-05 07:51:01 -0400 | [diff] [blame] | 1076 | #define I40E_LAST_OFFSET \ |
| 1077 | (SKB_WITH_OVERHEAD(PAGE_SIZE) - I40E_RXBUFFER_2048) |
| 1078 | if (rx_buffer->page_offset > I40E_LAST_OFFSET) |
Scott Peterson | 9b37c93 | 2017-02-09 23:43:30 -0800 | [diff] [blame] | 1079 | return false; |
| 1080 | #endif |
| 1081 | |
Alexander Duyck | 1793668 | 2017-02-21 15:55:39 -0800 | [diff] [blame] | 1082 | /* If we have drained the page fragment pool we need to update |
| 1083 | * the pagecnt_bias and page count so that we fully restock the |
| 1084 | * number of references the driver holds. |
| 1085 | */ |
Alexander Duyck | a0cfc31 | 2017-03-14 10:15:24 -0700 | [diff] [blame] | 1086 | if (unlikely(!pagecnt_bias)) { |
Alexander Duyck | 1793668 | 2017-02-21 15:55:39 -0800 | [diff] [blame] | 1087 | page_ref_add(page, USHRT_MAX); |
| 1088 | rx_buffer->pagecnt_bias = USHRT_MAX; |
| 1089 | } |
Scott Peterson | 9b37c93 | 2017-02-09 23:43:30 -0800 | [diff] [blame] | 1090 | |
| 1091 | return true; |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1092 | } |
| 1093 | |
| 1094 | /** |
| 1095 | * i40e_add_rx_frag - Add contents of Rx buffer to sk_buff |
| 1096 | * @rx_ring: rx descriptor ring to transact packets on |
| 1097 | * @rx_buffer: buffer containing page to add |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1098 | * @skb: sk_buff to place the data into |
Alexander Duyck | a0cfc31 | 2017-03-14 10:15:24 -0700 | [diff] [blame] | 1099 | * @size: packet length from rx_desc |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1100 | * |
| 1101 | * This function will add the data contained in rx_buffer->page to the skb. |
Alexander Duyck | fa2343e | 2017-03-14 10:15:25 -0700 | [diff] [blame] | 1102 | * It will just attach the page as a frag to the skb. |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1103 | * |
Alexander Duyck | fa2343e | 2017-03-14 10:15:25 -0700 | [diff] [blame] | 1104 | * The function will then update the page offset. |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1105 | **/ |
Alexander Duyck | a0cfc31 | 2017-03-14 10:15:24 -0700 | [diff] [blame] | 1106 | static void i40e_add_rx_frag(struct i40e_ring *rx_ring, |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1107 | struct i40e_rx_buffer *rx_buffer, |
Alexander Duyck | a0cfc31 | 2017-03-14 10:15:24 -0700 | [diff] [blame] | 1108 | struct sk_buff *skb, |
| 1109 | unsigned int size) |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1110 | { |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1111 | #if (PAGE_SIZE < 8192) |
Alexander Duyck | 98efd69 | 2017-04-05 07:51:01 -0400 | [diff] [blame] | 1112 | unsigned int truesize = i40e_rx_pg_size(rx_ring) / 2; |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1113 | #else |
Alexander Duyck | ca9ec08 | 2017-04-05 07:51:02 -0400 | [diff] [blame] | 1114 | unsigned int truesize = SKB_DATA_ALIGN(size + i40e_rx_offset(rx_ring)); |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1115 | #endif |
Scott Peterson | 9b37c93 | 2017-02-09 23:43:30 -0800 | [diff] [blame] | 1116 | |
Alexander Duyck | fa2343e | 2017-03-14 10:15:25 -0700 | [diff] [blame] | 1117 | skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, rx_buffer->page, |
| 1118 | rx_buffer->page_offset, size, truesize); |
Scott Peterson | 9b37c93 | 2017-02-09 23:43:30 -0800 | [diff] [blame] | 1119 | |
Alexander Duyck | a0cfc31 | 2017-03-14 10:15:24 -0700 | [diff] [blame] | 1120 | /* page is being used so we must update the page offset */ |
| 1121 | #if (PAGE_SIZE < 8192) |
| 1122 | rx_buffer->page_offset ^= truesize; |
| 1123 | #else |
| 1124 | rx_buffer->page_offset += truesize; |
| 1125 | #endif |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1126 | } |
| 1127 | |
| 1128 | /** |
Alexander Duyck | 9a06412 | 2017-03-14 10:15:23 -0700 | [diff] [blame] | 1129 | * i40e_get_rx_buffer - Fetch Rx buffer and synchronize data for use |
| 1130 | * @rx_ring: rx descriptor ring to transact packets on |
| 1131 | * @size: size of buffer to add to skb |
| 1132 | * |
| 1133 | * This function will pull an Rx buffer from the ring and synchronize it |
| 1134 | * for use by the CPU. |
| 1135 | */ |
| 1136 | static struct i40e_rx_buffer *i40e_get_rx_buffer(struct i40e_ring *rx_ring, |
| 1137 | const unsigned int size) |
| 1138 | { |
| 1139 | struct i40e_rx_buffer *rx_buffer; |
| 1140 | |
| 1141 | rx_buffer = &rx_ring->rx_bi[rx_ring->next_to_clean]; |
| 1142 | prefetchw(rx_buffer->page); |
| 1143 | |
| 1144 | /* we are reusing so sync this buffer for CPU use */ |
| 1145 | dma_sync_single_range_for_cpu(rx_ring->dev, |
| 1146 | rx_buffer->dma, |
| 1147 | rx_buffer->page_offset, |
| 1148 | size, |
| 1149 | DMA_FROM_DEVICE); |
| 1150 | |
Alexander Duyck | a0cfc31 | 2017-03-14 10:15:24 -0700 | [diff] [blame] | 1151 | /* We have pulled a buffer for use, so decrement pagecnt_bias */ |
| 1152 | rx_buffer->pagecnt_bias--; |
| 1153 | |
Alexander Duyck | 9a06412 | 2017-03-14 10:15:23 -0700 | [diff] [blame] | 1154 | return rx_buffer; |
| 1155 | } |
| 1156 | |
| 1157 | /** |
Alexander Duyck | fa2343e | 2017-03-14 10:15:25 -0700 | [diff] [blame] | 1158 | * i40e_construct_skb - Allocate skb and populate it |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1159 | * @rx_ring: rx descriptor ring to transact packets on |
Alexander Duyck | 9a06412 | 2017-03-14 10:15:23 -0700 | [diff] [blame] | 1160 | * @rx_buffer: rx buffer to pull data from |
Alexander Duyck | d57c0e0 | 2017-03-14 10:15:22 -0700 | [diff] [blame] | 1161 | * @size: size of buffer to add to skb |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1162 | * |
Alexander Duyck | fa2343e | 2017-03-14 10:15:25 -0700 | [diff] [blame] | 1163 | * This function allocates an skb. It then populates it with the page |
| 1164 | * data from the current receive descriptor, taking care to set up the |
| 1165 | * skb correctly. |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1166 | */ |
Alexander Duyck | fa2343e | 2017-03-14 10:15:25 -0700 | [diff] [blame] | 1167 | static struct sk_buff *i40e_construct_skb(struct i40e_ring *rx_ring, |
| 1168 | struct i40e_rx_buffer *rx_buffer, |
| 1169 | unsigned int size) |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1170 | { |
Alexander Duyck | fa2343e | 2017-03-14 10:15:25 -0700 | [diff] [blame] | 1171 | void *va = page_address(rx_buffer->page) + rx_buffer->page_offset; |
| 1172 | #if (PAGE_SIZE < 8192) |
Alexander Duyck | 98efd69 | 2017-04-05 07:51:01 -0400 | [diff] [blame] | 1173 | unsigned int truesize = i40e_rx_pg_size(rx_ring) / 2; |
Alexander Duyck | fa2343e | 2017-03-14 10:15:25 -0700 | [diff] [blame] | 1174 | #else |
| 1175 | unsigned int truesize = SKB_DATA_ALIGN(size); |
| 1176 | #endif |
| 1177 | unsigned int headlen; |
| 1178 | struct sk_buff *skb; |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1179 | |
Alexander Duyck | fa2343e | 2017-03-14 10:15:25 -0700 | [diff] [blame] | 1180 | /* prefetch first cache line of first page */ |
| 1181 | prefetch(va); |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1182 | #if L1_CACHE_BYTES < 128 |
Alexander Duyck | fa2343e | 2017-03-14 10:15:25 -0700 | [diff] [blame] | 1183 | prefetch(va + L1_CACHE_BYTES); |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1184 | #endif |
| 1185 | |
Alexander Duyck | fa2343e | 2017-03-14 10:15:25 -0700 | [diff] [blame] | 1186 | /* allocate a skb to store the frags */ |
| 1187 | skb = __napi_alloc_skb(&rx_ring->q_vector->napi, |
| 1188 | I40E_RX_HDR_SIZE, |
| 1189 | GFP_ATOMIC | __GFP_NOWARN); |
| 1190 | if (unlikely(!skb)) |
| 1191 | return NULL; |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1192 | |
Alexander Duyck | fa2343e | 2017-03-14 10:15:25 -0700 | [diff] [blame] | 1193 | /* Determine available headroom for copy */ |
| 1194 | headlen = size; |
| 1195 | if (headlen > I40E_RX_HDR_SIZE) |
| 1196 | headlen = eth_get_headlen(va, I40E_RX_HDR_SIZE); |
| 1197 | |
| 1198 | /* align pull length to size of long to optimize memcpy performance */ |
| 1199 | memcpy(__skb_put(skb, headlen), va, ALIGN(headlen, sizeof(long))); |
| 1200 | |
| 1201 | /* update all of the pointers */ |
| 1202 | size -= headlen; |
| 1203 | if (size) { |
| 1204 | skb_add_rx_frag(skb, 0, rx_buffer->page, |
| 1205 | rx_buffer->page_offset + headlen, |
| 1206 | size, truesize); |
| 1207 | |
| 1208 | /* buffer is used by skb, update page_offset */ |
| 1209 | #if (PAGE_SIZE < 8192) |
| 1210 | rx_buffer->page_offset ^= truesize; |
| 1211 | #else |
| 1212 | rx_buffer->page_offset += truesize; |
| 1213 | #endif |
| 1214 | } else { |
| 1215 | /* buffer is unused, reset bias back to rx_buffer */ |
| 1216 | rx_buffer->pagecnt_bias++; |
| 1217 | } |
Alexander Duyck | a0cfc31 | 2017-03-14 10:15:24 -0700 | [diff] [blame] | 1218 | |
| 1219 | return skb; |
| 1220 | } |
| 1221 | |
| 1222 | /** |
Alexander Duyck | f8b45b7 | 2017-04-05 07:51:03 -0400 | [diff] [blame] | 1223 | * i40e_build_skb - Build skb around an existing buffer |
| 1224 | * @rx_ring: Rx descriptor ring to transact packets on |
| 1225 | * @rx_buffer: Rx buffer to pull data from |
| 1226 | * @size: size of buffer to add to skb |
| 1227 | * |
| 1228 | * This function builds an skb around an existing Rx buffer, taking care |
| 1229 | * to set up the skb correctly and avoid any memcpy overhead. |
| 1230 | */ |
| 1231 | static struct sk_buff *i40e_build_skb(struct i40e_ring *rx_ring, |
| 1232 | struct i40e_rx_buffer *rx_buffer, |
| 1233 | unsigned int size) |
| 1234 | { |
| 1235 | void *va = page_address(rx_buffer->page) + rx_buffer->page_offset; |
| 1236 | #if (PAGE_SIZE < 8192) |
| 1237 | unsigned int truesize = i40e_rx_pg_size(rx_ring) / 2; |
| 1238 | #else |
Björn Töpel | 2aae918 | 2017-05-15 06:52:00 +0200 | [diff] [blame] | 1239 | unsigned int truesize = SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) + |
| 1240 | SKB_DATA_ALIGN(I40E_SKB_PAD + size); |
Alexander Duyck | f8b45b7 | 2017-04-05 07:51:03 -0400 | [diff] [blame] | 1241 | #endif |
| 1242 | struct sk_buff *skb; |
| 1243 | |
| 1244 | /* prefetch first cache line of first page */ |
| 1245 | prefetch(va); |
| 1246 | #if L1_CACHE_BYTES < 128 |
| 1247 | prefetch(va + L1_CACHE_BYTES); |
| 1248 | #endif |
| 1249 | /* build an skb around the page buffer */ |
| 1250 | skb = build_skb(va - I40E_SKB_PAD, truesize); |
| 1251 | if (unlikely(!skb)) |
| 1252 | return NULL; |
| 1253 | |
| 1254 | /* update pointers within the skb to store the data */ |
| 1255 | skb_reserve(skb, I40E_SKB_PAD); |
| 1256 | __skb_put(skb, size); |
| 1257 | |
| 1258 | /* buffer is used by skb, update page_offset */ |
| 1259 | #if (PAGE_SIZE < 8192) |
| 1260 | rx_buffer->page_offset ^= truesize; |
| 1261 | #else |
| 1262 | rx_buffer->page_offset += truesize; |
| 1263 | #endif |
| 1264 | |
| 1265 | return skb; |
| 1266 | } |
| 1267 | |
| 1268 | /** |
Alexander Duyck | a0cfc31 | 2017-03-14 10:15:24 -0700 | [diff] [blame] | 1269 | * i40e_put_rx_buffer - Clean up used buffer and either recycle or free |
| 1270 | * @rx_ring: rx descriptor ring to transact packets on |
| 1271 | * @rx_buffer: rx buffer to pull data from |
| 1272 | * |
| 1273 | * This function will clean up the contents of the rx_buffer. It will |
Alan Brady | 11a350c | 2017-12-29 08:48:33 -0500 | [diff] [blame] | 1274 | * either recycle the buffer or unmap it and free the associated resources. |
Alexander Duyck | a0cfc31 | 2017-03-14 10:15:24 -0700 | [diff] [blame] | 1275 | */ |
| 1276 | static void i40e_put_rx_buffer(struct i40e_ring *rx_ring, |
| 1277 | struct i40e_rx_buffer *rx_buffer) |
| 1278 | { |
| 1279 | if (i40e_can_reuse_rx_page(rx_buffer)) { |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1280 | /* hand second half of page back to the ring */ |
| 1281 | i40e_reuse_rx_page(rx_ring, rx_buffer); |
| 1282 | rx_ring->rx_stats.page_reuse_count++; |
| 1283 | } else { |
| 1284 | /* we are not reusing the buffer so unmap it */ |
Alexander Duyck | 98efd69 | 2017-04-05 07:51:01 -0400 | [diff] [blame] | 1285 | dma_unmap_page_attrs(rx_ring->dev, rx_buffer->dma, |
| 1286 | i40e_rx_pg_size(rx_ring), |
Alexander Duyck | 59605bc | 2017-01-30 12:29:35 -0800 | [diff] [blame] | 1287 | DMA_FROM_DEVICE, I40E_RX_DMA_ATTR); |
Alexander Duyck | 1793668 | 2017-02-21 15:55:39 -0800 | [diff] [blame] | 1288 | __page_frag_cache_drain(rx_buffer->page, |
| 1289 | rx_buffer->pagecnt_bias); |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1290 | } |
| 1291 | |
| 1292 | /* clear contents of buffer_info */ |
| 1293 | rx_buffer->page = NULL; |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1294 | } |
| 1295 | |
| 1296 | /** |
| 1297 | * i40e_is_non_eop - process handling of non-EOP buffers |
| 1298 | * @rx_ring: Rx ring being processed |
| 1299 | * @rx_desc: Rx descriptor for current buffer |
| 1300 | * @skb: Current socket buffer containing buffer in progress |
| 1301 | * |
| 1302 | * This function updates next to clean. If the buffer is an EOP buffer |
| 1303 | * this function exits returning false, otherwise it will place the |
| 1304 | * sk_buff in the next buffer to be chained and return true indicating |
| 1305 | * that this is in fact a non-EOP buffer. |
| 1306 | **/ |
| 1307 | static bool i40e_is_non_eop(struct i40e_ring *rx_ring, |
| 1308 | union i40e_rx_desc *rx_desc, |
| 1309 | struct sk_buff *skb) |
| 1310 | { |
| 1311 | u32 ntc = rx_ring->next_to_clean + 1; |
| 1312 | |
| 1313 | /* fetch, update, and store next to clean */ |
| 1314 | ntc = (ntc < rx_ring->count) ? ntc : 0; |
| 1315 | rx_ring->next_to_clean = ntc; |
| 1316 | |
| 1317 | prefetch(I40E_RX_DESC(rx_ring, ntc)); |
| 1318 | |
| 1319 | /* if we are the last buffer then there is nothing else to do */ |
| 1320 | #define I40E_RXD_EOF BIT(I40E_RX_DESC_STATUS_EOF_SHIFT) |
| 1321 | if (likely(i40e_test_staterr(rx_desc, I40E_RXD_EOF))) |
| 1322 | return false; |
| 1323 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1324 | rx_ring->rx_stats.non_eop_descs++; |
| 1325 | |
| 1326 | return true; |
| 1327 | } |
| 1328 | |
| 1329 | /** |
| 1330 | * i40e_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf |
| 1331 | * @rx_ring: rx descriptor ring to transact packets on |
| 1332 | * @budget: Total limit on number of packets to process |
| 1333 | * |
| 1334 | * This function provides a "bounce buffer" approach to Rx interrupt |
| 1335 | * processing. The advantage to this is that on systems that have |
| 1336 | * expensive overhead for IOMMU access this provides a means of avoiding |
| 1337 | * it by maintaining the mapping of the page to the system. |
| 1338 | * |
| 1339 | * Returns amount of work completed |
| 1340 | **/ |
| 1341 | static int i40e_clean_rx_irq(struct i40e_ring *rx_ring, int budget) |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 1342 | { |
| 1343 | unsigned int total_rx_bytes = 0, total_rx_packets = 0; |
Scott Peterson | e72e565 | 2017-02-09 23:40:25 -0800 | [diff] [blame] | 1344 | struct sk_buff *skb = rx_ring->skb; |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 1345 | u16 cleaned_count = I40E_DESC_UNUSED(rx_ring); |
Jesse Brandeburg | c2e245a | 2016-01-13 16:51:46 -0800 | [diff] [blame] | 1346 | bool failure = false; |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 1347 | |
Jesse Brandeburg | b85c94b | 2017-06-20 15:16:59 -0700 | [diff] [blame] | 1348 | while (likely(total_rx_packets < (unsigned int)budget)) { |
Alexander Duyck | 9a06412 | 2017-03-14 10:15:23 -0700 | [diff] [blame] | 1349 | struct i40e_rx_buffer *rx_buffer; |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1350 | union i40e_rx_desc *rx_desc; |
Alexander Duyck | d57c0e0 | 2017-03-14 10:15:22 -0700 | [diff] [blame] | 1351 | unsigned int size; |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 1352 | u16 vlan_tag; |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1353 | u8 rx_ptype; |
| 1354 | u64 qword; |
| 1355 | |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 1356 | /* return some buffers to hardware, one at a time is too slow */ |
| 1357 | if (cleaned_count >= I40E_RX_BUFFER_WRITE) { |
Jesse Brandeburg | c2e245a | 2016-01-13 16:51:46 -0800 | [diff] [blame] | 1358 | failure = failure || |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1359 | i40evf_alloc_rx_buffers(rx_ring, cleaned_count); |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 1360 | cleaned_count = 0; |
| 1361 | } |
| 1362 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1363 | rx_desc = I40E_RX_DESC(rx_ring, rx_ring->next_to_clean); |
| 1364 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1365 | /* status_error_len will always be zero for unused descriptors |
| 1366 | * because it's cleared in cleanup, and overlaps with hdr_addr |
| 1367 | * which is always zero because packet split isn't used, if the |
Alexander Duyck | d57c0e0 | 2017-03-14 10:15:22 -0700 | [diff] [blame] | 1368 | * hardware wrote DD then the length will be non-zero |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1369 | */ |
Alexander Duyck | d57c0e0 | 2017-03-14 10:15:22 -0700 | [diff] [blame] | 1370 | qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len); |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1371 | |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 1372 | /* This memory barrier is needed to keep us from reading |
Alexander Duyck | d57c0e0 | 2017-03-14 10:15:22 -0700 | [diff] [blame] | 1373 | * any other fields out of the rx_desc until we have |
| 1374 | * verified the descriptor has been written back. |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 1375 | */ |
Alexander Duyck | 6731716 | 2015-04-08 18:49:43 -0700 | [diff] [blame] | 1376 | dma_rmb(); |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 1377 | |
Alexander Duyck | 0e626ff | 2017-04-10 05:18:43 -0400 | [diff] [blame] | 1378 | size = (qword & I40E_RXD_QW1_LENGTH_PBUF_MASK) >> |
| 1379 | I40E_RXD_QW1_LENGTH_PBUF_SHIFT; |
| 1380 | if (!size) |
| 1381 | break; |
| 1382 | |
Scott Peterson | ed0980c | 2017-04-13 04:45:44 -0400 | [diff] [blame] | 1383 | i40e_trace(clean_rx_irq, rx_ring, rx_desc, skb); |
Alexander Duyck | 9a06412 | 2017-03-14 10:15:23 -0700 | [diff] [blame] | 1384 | rx_buffer = i40e_get_rx_buffer(rx_ring, size); |
| 1385 | |
Alexander Duyck | fa2343e | 2017-03-14 10:15:25 -0700 | [diff] [blame] | 1386 | /* retrieve a buffer from the ring */ |
| 1387 | if (skb) |
| 1388 | i40e_add_rx_frag(rx_ring, rx_buffer, skb, size); |
Alexander Duyck | f8b45b7 | 2017-04-05 07:51:03 -0400 | [diff] [blame] | 1389 | else if (ring_uses_build_skb(rx_ring)) |
| 1390 | skb = i40e_build_skb(rx_ring, rx_buffer, size); |
Alexander Duyck | fa2343e | 2017-03-14 10:15:25 -0700 | [diff] [blame] | 1391 | else |
| 1392 | skb = i40e_construct_skb(rx_ring, rx_buffer, size); |
| 1393 | |
| 1394 | /* exit if we failed to retrieve a buffer */ |
| 1395 | if (!skb) { |
| 1396 | rx_ring->rx_stats.alloc_buff_failed++; |
| 1397 | rx_buffer->pagecnt_bias++; |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1398 | break; |
Alexander Duyck | fa2343e | 2017-03-14 10:15:25 -0700 | [diff] [blame] | 1399 | } |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 1400 | |
Alexander Duyck | a0cfc31 | 2017-03-14 10:15:24 -0700 | [diff] [blame] | 1401 | i40e_put_rx_buffer(rx_ring, rx_buffer); |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 1402 | cleaned_count++; |
| 1403 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1404 | if (i40e_is_non_eop(rx_ring, rx_desc, skb)) |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 1405 | continue; |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 1406 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1407 | /* ERR_MASK will only have valid bits if EOP set, and |
| 1408 | * what we are doing here is actually checking |
| 1409 | * I40E_RX_DESC_ERROR_RXE_SHIFT, since it is the zeroth bit in |
| 1410 | * the error field |
| 1411 | */ |
| 1412 | if (unlikely(i40e_test_staterr(rx_desc, BIT(I40E_RXD_QW1_ERROR_SHIFT)))) { |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 1413 | dev_kfree_skb_any(skb); |
Alexander Duyck | 741b8b8 | 2017-02-21 15:55:41 -0800 | [diff] [blame] | 1414 | skb = NULL; |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 1415 | continue; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1416 | } |
| 1417 | |
Scott Peterson | e72e565 | 2017-02-09 23:40:25 -0800 | [diff] [blame] | 1418 | if (i40e_cleanup_headers(rx_ring, skb)) { |
| 1419 | skb = NULL; |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1420 | continue; |
Scott Peterson | e72e565 | 2017-02-09 23:40:25 -0800 | [diff] [blame] | 1421 | } |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1422 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1423 | /* probably a little skewed due to removing CRC */ |
| 1424 | total_rx_bytes += skb->len; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1425 | |
Alexander Duyck | 99dad8b | 2016-09-27 11:28:50 -0700 | [diff] [blame] | 1426 | qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len); |
| 1427 | rx_ptype = (qword & I40E_RXD_QW1_PTYPE_MASK) >> |
| 1428 | I40E_RXD_QW1_PTYPE_SHIFT; |
| 1429 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1430 | /* populate checksum, VLAN, and protocol */ |
| 1431 | i40evf_process_skb_fields(rx_ring, rx_desc, skb, rx_ptype); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1432 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1433 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1434 | vlan_tag = (qword & BIT(I40E_RX_DESC_STATUS_L2TAG1P_SHIFT)) ? |
| 1435 | le16_to_cpu(rx_desc->wb.qword0.lo_dword.l2tag1) : 0; |
| 1436 | |
Scott Peterson | ed0980c | 2017-04-13 04:45:44 -0400 | [diff] [blame] | 1437 | i40e_trace(clean_rx_irq_rx, rx_ring, rx_desc, skb); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1438 | i40e_receive_skb(rx_ring, skb, vlan_tag); |
Scott Peterson | e72e565 | 2017-02-09 23:40:25 -0800 | [diff] [blame] | 1439 | skb = NULL; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1440 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1441 | /* update budget accounting */ |
| 1442 | total_rx_packets++; |
| 1443 | } |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1444 | |
Scott Peterson | e72e565 | 2017-02-09 23:40:25 -0800 | [diff] [blame] | 1445 | rx_ring->skb = skb; |
| 1446 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1447 | u64_stats_update_begin(&rx_ring->syncp); |
| 1448 | rx_ring->stats.packets += total_rx_packets; |
| 1449 | rx_ring->stats.bytes += total_rx_bytes; |
| 1450 | u64_stats_update_end(&rx_ring->syncp); |
| 1451 | rx_ring->q_vector->rx.total_packets += total_rx_packets; |
| 1452 | rx_ring->q_vector->rx.total_bytes += total_rx_bytes; |
| 1453 | |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1454 | /* guarantee a trip back through this routine if there was a failure */ |
Jesse Brandeburg | b85c94b | 2017-06-20 15:16:59 -0700 | [diff] [blame] | 1455 | return failure ? budget : (int)total_rx_packets; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1456 | } |
| 1457 | |
Alexander Duyck | 92418fb | 2017-12-29 08:51:08 -0500 | [diff] [blame] | 1458 | static inline u32 i40e_buildreg_itr(const int type, u16 itr) |
Jesse Brandeburg | 8f5e39c | 2015-09-28 14:16:51 -0400 | [diff] [blame] | 1459 | { |
| 1460 | u32 val; |
| 1461 | |
Alexander Duyck | 4ff1792 | 2017-12-29 08:50:55 -0500 | [diff] [blame] | 1462 | /* We don't bother with setting the CLEARPBA bit as the data sheet |
| 1463 | * points out doing so is "meaningless since it was already |
| 1464 | * auto-cleared". The auto-clearing happens when the interrupt is |
| 1465 | * asserted. |
| 1466 | * |
| 1467 | * Hardware errata 28 for also indicates that writing to a |
| 1468 | * xxINT_DYN_CTLx CSR with INTENA_MSK (bit 31) set to 0 will clear |
| 1469 | * an event in the PBA anyway so we need to rely on the automask |
| 1470 | * to hold pending events for us until the interrupt is re-enabled |
Alexander Duyck | 92418fb | 2017-12-29 08:51:08 -0500 | [diff] [blame] | 1471 | * |
| 1472 | * The itr value is reported in microseconds, and the register |
| 1473 | * value is recorded in 2 microsecond units. For this reason we |
| 1474 | * only need to shift by the interval shift - 1 instead of the |
| 1475 | * full value. |
Alexander Duyck | 4ff1792 | 2017-12-29 08:50:55 -0500 | [diff] [blame] | 1476 | */ |
Alexander Duyck | 92418fb | 2017-12-29 08:51:08 -0500 | [diff] [blame] | 1477 | itr &= I40E_ITR_MASK; |
| 1478 | |
Jesse Brandeburg | 8f5e39c | 2015-09-28 14:16:51 -0400 | [diff] [blame] | 1479 | val = I40E_VFINT_DYN_CTLN1_INTENA_MASK | |
Jesse Brandeburg | 8f5e39c | 2015-09-28 14:16:51 -0400 | [diff] [blame] | 1480 | (type << I40E_VFINT_DYN_CTLN1_ITR_INDX_SHIFT) | |
Alexander Duyck | 92418fb | 2017-12-29 08:51:08 -0500 | [diff] [blame] | 1481 | (itr << (I40E_VFINT_DYN_CTLN1_INTERVAL_SHIFT - 1)); |
Jesse Brandeburg | 8f5e39c | 2015-09-28 14:16:51 -0400 | [diff] [blame] | 1482 | |
| 1483 | return val; |
| 1484 | } |
| 1485 | |
| 1486 | /* a small macro to shorten up some long lines */ |
| 1487 | #define INTREG I40E_VFINT_DYN_CTLN1 |
| 1488 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1489 | /** |
Carolyn Wyborny | de32e3e | 2015-06-10 13:42:07 -0400 | [diff] [blame] | 1490 | * i40e_update_enable_itr - Update itr and re-enable MSIX interrupt |
| 1491 | * @vsi: the VSI we care about |
| 1492 | * @q_vector: q_vector for which itr is being updated and interrupt enabled |
| 1493 | * |
| 1494 | **/ |
| 1495 | static inline void i40e_update_enable_itr(struct i40e_vsi *vsi, |
| 1496 | struct i40e_q_vector *q_vector) |
| 1497 | { |
| 1498 | struct i40e_hw *hw = &vsi->back->hw; |
Jesse Brandeburg | 8f5e39c | 2015-09-28 14:16:51 -0400 | [diff] [blame] | 1499 | bool rx = false, tx = false; |
Alexander Duyck | 556fdfd | 2017-12-29 08:51:25 -0500 | [diff] [blame^] | 1500 | u32 intval; |
Jesse Brandeburg | 8f5e39c | 2015-09-28 14:16:51 -0400 | [diff] [blame] | 1501 | |
Alexander Duyck | 71dc371 | 2017-12-29 08:49:53 -0500 | [diff] [blame] | 1502 | /* avoid dynamic calculation if in countdown mode */ |
| 1503 | if (q_vector->itr_countdown > 0) |
Jesse Brandeburg | ee2319c | 2015-09-28 14:16:54 -0400 | [diff] [blame] | 1504 | goto enable_int; |
Jesse Brandeburg | ee2319c | 2015-09-28 14:16:54 -0400 | [diff] [blame] | 1505 | |
Alexander Duyck | 71dc371 | 2017-12-29 08:49:53 -0500 | [diff] [blame] | 1506 | /* these will return false if dynamic mode is disabled */ |
| 1507 | rx = i40e_set_new_dynamic_itr(&q_vector->rx); |
| 1508 | tx = i40e_set_new_dynamic_itr(&q_vector->tx); |
Jesse Brandeburg | 4eeb1ff | 2015-11-18 17:35:42 -0800 | [diff] [blame] | 1509 | |
Jesse Brandeburg | 8f5e39c | 2015-09-28 14:16:51 -0400 | [diff] [blame] | 1510 | if (rx || tx) { |
| 1511 | /* get the higher of the two ITR adjustments and |
| 1512 | * use the same value for both ITR registers |
| 1513 | * when in adaptive mode (Rx and/or Tx) |
| 1514 | */ |
Alexander Duyck | 556fdfd | 2017-12-29 08:51:25 -0500 | [diff] [blame^] | 1515 | u16 itr = max(q_vector->tx.target_itr, |
| 1516 | q_vector->rx.target_itr); |
Jesse Brandeburg | 8f5e39c | 2015-09-28 14:16:51 -0400 | [diff] [blame] | 1517 | |
Alexander Duyck | 556fdfd | 2017-12-29 08:51:25 -0500 | [diff] [blame^] | 1518 | q_vector->tx.target_itr = itr; |
| 1519 | q_vector->rx.target_itr = itr; |
Jesse Brandeburg | 8f5e39c | 2015-09-28 14:16:51 -0400 | [diff] [blame] | 1520 | } |
| 1521 | |
Jesse Brandeburg | ee2319c | 2015-09-28 14:16:54 -0400 | [diff] [blame] | 1522 | enable_int: |
Alexander Duyck | 556fdfd | 2017-12-29 08:51:25 -0500 | [diff] [blame^] | 1523 | if (q_vector->rx.target_itr != q_vector->rx.current_itr) { |
| 1524 | intval = i40e_buildreg_itr(I40E_RX_ITR, |
| 1525 | q_vector->rx.target_itr); |
| 1526 | q_vector->rx.current_itr = q_vector->rx.target_itr; |
| 1527 | |
| 1528 | if (q_vector->tx.target_itr != q_vector->tx.current_itr) { |
| 1529 | /* set the INTENA_MSK_MASK so that this first write |
| 1530 | * won't actually enable the interrupt, instead just |
| 1531 | * updating the ITR (it's bit 31 PF and VF) |
| 1532 | * |
| 1533 | * don't check _DOWN because interrupt isn't being |
| 1534 | * enabled |
| 1535 | */ |
| 1536 | wr32(hw, INTREG(q_vector->reg_idx), |
| 1537 | intval | BIT(31)); |
| 1538 | /* now that Rx is done process Tx update */ |
| 1539 | goto update_tx; |
| 1540 | } |
| 1541 | } else if (q_vector->tx.target_itr != q_vector->tx.current_itr) { |
| 1542 | update_tx: |
| 1543 | intval = i40e_buildreg_itr(I40E_TX_ITR, |
| 1544 | q_vector->tx.target_itr); |
| 1545 | q_vector->tx.current_itr = q_vector->tx.target_itr; |
| 1546 | } else { |
| 1547 | intval = i40e_buildreg_itr(I40E_ITR_NONE, 0); |
| 1548 | } |
| 1549 | |
Jacob Keller | 0da36b9 | 2017-04-19 09:25:55 -0400 | [diff] [blame] | 1550 | if (!test_bit(__I40E_VSI_DOWN, vsi->state)) |
Alexander Duyck | 556fdfd | 2017-12-29 08:51:25 -0500 | [diff] [blame^] | 1551 | wr32(hw, INTREG(q_vector->reg_idx), intval); |
Jesse Brandeburg | ee2319c | 2015-09-28 14:16:54 -0400 | [diff] [blame] | 1552 | |
| 1553 | if (q_vector->itr_countdown) |
| 1554 | q_vector->itr_countdown--; |
| 1555 | else |
| 1556 | q_vector->itr_countdown = ITR_COUNTDOWN_START; |
Carolyn Wyborny | de32e3e | 2015-06-10 13:42:07 -0400 | [diff] [blame] | 1557 | } |
| 1558 | |
| 1559 | /** |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1560 | * i40evf_napi_poll - NAPI polling Rx/Tx cleanup routine |
| 1561 | * @napi: napi struct with our devices info in it |
| 1562 | * @budget: amount of work driver is allowed to do this pass, in packets |
| 1563 | * |
| 1564 | * This function will clean all queues associated with a q_vector. |
| 1565 | * |
| 1566 | * Returns the amount of work done |
| 1567 | **/ |
| 1568 | int i40evf_napi_poll(struct napi_struct *napi, int budget) |
| 1569 | { |
| 1570 | struct i40e_q_vector *q_vector = |
| 1571 | container_of(napi, struct i40e_q_vector, napi); |
| 1572 | struct i40e_vsi *vsi = q_vector->vsi; |
| 1573 | struct i40e_ring *ring; |
| 1574 | bool clean_complete = true; |
Anjali Singhai Jain | c29af37 | 2015-01-10 01:07:19 +0000 | [diff] [blame] | 1575 | bool arm_wb = false; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1576 | int budget_per_ring; |
Jesse Brandeburg | 32b3e08 | 2015-09-24 16:35:47 -0700 | [diff] [blame] | 1577 | int work_done = 0; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1578 | |
Jacob Keller | 0da36b9 | 2017-04-19 09:25:55 -0400 | [diff] [blame] | 1579 | if (test_bit(__I40E_VSI_DOWN, vsi->state)) { |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1580 | napi_complete(napi); |
| 1581 | return 0; |
| 1582 | } |
| 1583 | |
| 1584 | /* Since the actual Tx work is minimal, we can give the Tx a larger |
| 1585 | * budget and be more aggressive about cleaning up the Tx descriptors. |
| 1586 | */ |
Anjali Singhai Jain | c29af37 | 2015-01-10 01:07:19 +0000 | [diff] [blame] | 1587 | i40e_for_each_ring(ring, q_vector->tx) { |
Alexander Duyck | a619afe | 2016-03-07 09:30:03 -0800 | [diff] [blame] | 1588 | if (!i40e_clean_tx_irq(vsi, ring, budget)) { |
Alexander Duyck | f2edaaa | 2016-03-07 09:29:57 -0800 | [diff] [blame] | 1589 | clean_complete = false; |
| 1590 | continue; |
| 1591 | } |
| 1592 | arm_wb |= ring->arm_wb; |
Jesse Brandeburg | 0deda86 | 2015-07-23 16:54:34 -0400 | [diff] [blame] | 1593 | ring->arm_wb = false; |
Anjali Singhai Jain | c29af37 | 2015-01-10 01:07:19 +0000 | [diff] [blame] | 1594 | } |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1595 | |
Alexander Duyck | c67cace | 2015-09-24 09:04:26 -0700 | [diff] [blame] | 1596 | /* Handle case where we are called by netpoll with a budget of 0 */ |
| 1597 | if (budget <= 0) |
| 1598 | goto tx_only; |
| 1599 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1600 | /* We attempt to distribute budget to each Rx queue fairly, but don't |
| 1601 | * allow the budget to go below 1 because that would exit polling early. |
| 1602 | */ |
| 1603 | budget_per_ring = max(budget/q_vector->num_ringpairs, 1); |
| 1604 | |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 1605 | i40e_for_each_ring(ring, q_vector->rx) { |
Jesse Brandeburg | ab9ad98 | 2016-04-18 11:33:46 -0700 | [diff] [blame] | 1606 | int cleaned = i40e_clean_rx_irq(ring, budget_per_ring); |
Jesse Brandeburg | 32b3e08 | 2015-09-24 16:35:47 -0700 | [diff] [blame] | 1607 | |
| 1608 | work_done += cleaned; |
Alexander Duyck | f2edaaa | 2016-03-07 09:29:57 -0800 | [diff] [blame] | 1609 | /* if we clean as many as budgeted, we must not be done */ |
| 1610 | if (cleaned >= budget_per_ring) |
| 1611 | clean_complete = false; |
Mitch Williams | a132af2 | 2015-01-24 09:58:35 +0000 | [diff] [blame] | 1612 | } |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1613 | |
| 1614 | /* If work not completed, return budget and polling will return */ |
Anjali Singhai Jain | c29af37 | 2015-01-10 01:07:19 +0000 | [diff] [blame] | 1615 | if (!clean_complete) { |
Alan Brady | 96db776 | 2016-09-14 16:24:38 -0700 | [diff] [blame] | 1616 | int cpu_id = smp_processor_id(); |
| 1617 | |
| 1618 | /* It is possible that the interrupt affinity has changed but, |
| 1619 | * if the cpu is pegged at 100%, polling will never exit while |
| 1620 | * traffic continues and the interrupt will be stuck on this |
| 1621 | * cpu. We check to make sure affinity is correct before we |
| 1622 | * continue to poll, otherwise we must stop polling so the |
| 1623 | * interrupt can move to the correct cpu. |
| 1624 | */ |
Jacob Keller | 6d97772 | 2017-07-14 09:10:11 -0400 | [diff] [blame] | 1625 | if (!cpumask_test_cpu(cpu_id, &q_vector->affinity_mask)) { |
| 1626 | /* Tell napi that we are done polling */ |
| 1627 | napi_complete_done(napi, work_done); |
| 1628 | |
| 1629 | /* Force an interrupt */ |
| 1630 | i40evf_force_wb(vsi, q_vector); |
| 1631 | |
| 1632 | /* Return budget-1 so that polling stops */ |
| 1633 | return budget - 1; |
Anjali Singhai Jain | 164c9f5 | 2015-10-21 19:47:08 -0400 | [diff] [blame] | 1634 | } |
Jacob Keller | 6d97772 | 2017-07-14 09:10:11 -0400 | [diff] [blame] | 1635 | tx_only: |
| 1636 | if (arm_wb) { |
| 1637 | q_vector->tx.ring[0].tx_stats.tx_force_wb++; |
| 1638 | i40e_enable_wb_on_itr(vsi, q_vector); |
| 1639 | } |
| 1640 | return budget; |
Anjali Singhai Jain | c29af37 | 2015-01-10 01:07:19 +0000 | [diff] [blame] | 1641 | } |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1642 | |
Anjali Singhai Jain | 8e0764b | 2015-06-05 12:20:30 -0400 | [diff] [blame] | 1643 | if (vsi->back->flags & I40E_TXR_FLAGS_WB_ON_ITR) |
| 1644 | q_vector->arm_wb_state = false; |
| 1645 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1646 | /* Work is done so exit the polling mode and re-enable the interrupt */ |
Jesse Brandeburg | 32b3e08 | 2015-09-24 16:35:47 -0700 | [diff] [blame] | 1647 | napi_complete_done(napi, work_done); |
Alan Brady | 96db776 | 2016-09-14 16:24:38 -0700 | [diff] [blame] | 1648 | |
Jacob Keller | 6d97772 | 2017-07-14 09:10:11 -0400 | [diff] [blame] | 1649 | i40e_update_enable_itr(vsi, q_vector); |
Alan Brady | 96db776 | 2016-09-14 16:24:38 -0700 | [diff] [blame] | 1650 | |
Alexander Duyck | 6beb84a | 2016-11-08 13:05:16 -0800 | [diff] [blame] | 1651 | return min(work_done, budget - 1); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1652 | } |
| 1653 | |
| 1654 | /** |
Jesse Brandeburg | 3e587cf | 2015-04-16 20:06:10 -0400 | [diff] [blame] | 1655 | * i40evf_tx_prepare_vlan_flags - prepare generic TX VLAN tagging flags for HW |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1656 | * @skb: send buffer |
| 1657 | * @tx_ring: ring to send buffer on |
| 1658 | * @flags: the tx flags to be set |
| 1659 | * |
| 1660 | * Checks the skb and set up correspondingly several generic transmit flags |
| 1661 | * related to VLAN tagging for the HW, such as VLAN, DCB, etc. |
| 1662 | * |
| 1663 | * Returns error code indicate the frame should be dropped upon error and the |
| 1664 | * otherwise returns 0 to indicate the flags has been set properly. |
| 1665 | **/ |
Jesse Brandeburg | 3e587cf | 2015-04-16 20:06:10 -0400 | [diff] [blame] | 1666 | static inline int i40evf_tx_prepare_vlan_flags(struct sk_buff *skb, |
| 1667 | struct i40e_ring *tx_ring, |
| 1668 | u32 *flags) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1669 | { |
| 1670 | __be16 protocol = skb->protocol; |
| 1671 | u32 tx_flags = 0; |
| 1672 | |
Greg Rose | 31eaacc | 2015-03-31 00:45:03 -0700 | [diff] [blame] | 1673 | if (protocol == htons(ETH_P_8021Q) && |
| 1674 | !(tx_ring->netdev->features & NETIF_F_HW_VLAN_CTAG_TX)) { |
| 1675 | /* When HW VLAN acceleration is turned off by the user the |
| 1676 | * stack sets the protocol to 8021q so that the driver |
| 1677 | * can take any steps required to support the SW only |
| 1678 | * VLAN handling. In our case the driver doesn't need |
| 1679 | * to take any further steps so just set the protocol |
| 1680 | * to the encapsulated ethertype. |
| 1681 | */ |
| 1682 | skb->protocol = vlan_get_protocol(skb); |
| 1683 | goto out; |
| 1684 | } |
| 1685 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1686 | /* if we have a HW VLAN tag being added, default to the HW one */ |
Jiri Pirko | df8a39d | 2015-01-13 17:13:44 +0100 | [diff] [blame] | 1687 | if (skb_vlan_tag_present(skb)) { |
| 1688 | tx_flags |= skb_vlan_tag_get(skb) << I40E_TX_FLAGS_VLAN_SHIFT; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1689 | tx_flags |= I40E_TX_FLAGS_HW_VLAN; |
| 1690 | /* else if it is a SW VLAN, check the next protocol and store the tag */ |
| 1691 | } else if (protocol == htons(ETH_P_8021Q)) { |
| 1692 | struct vlan_hdr *vhdr, _vhdr; |
Jesse Brandeburg | 6995b36 | 2015-08-28 17:55:54 -0400 | [diff] [blame] | 1693 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1694 | vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr); |
| 1695 | if (!vhdr) |
| 1696 | return -EINVAL; |
| 1697 | |
| 1698 | protocol = vhdr->h_vlan_encapsulated_proto; |
| 1699 | tx_flags |= ntohs(vhdr->h_vlan_TCI) << I40E_TX_FLAGS_VLAN_SHIFT; |
| 1700 | tx_flags |= I40E_TX_FLAGS_SW_VLAN; |
| 1701 | } |
| 1702 | |
Greg Rose | 31eaacc | 2015-03-31 00:45:03 -0700 | [diff] [blame] | 1703 | out: |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1704 | *flags = tx_flags; |
| 1705 | return 0; |
| 1706 | } |
| 1707 | |
| 1708 | /** |
| 1709 | * i40e_tso - set up the tso context descriptor |
Alexander Duyck | 52ea3e8 | 2016-11-28 16:05:59 -0800 | [diff] [blame] | 1710 | * @first: pointer to first Tx buffer for xmit |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1711 | * @hdr_len: ptr to the size of the packet header |
Shannon Nelson | 9c883bd | 2015-10-21 19:47:02 -0400 | [diff] [blame] | 1712 | * @cd_type_cmd_tso_mss: Quad Word 1 |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1713 | * |
| 1714 | * Returns 0 if no TSO can happen, 1 if tso is going, or error |
| 1715 | **/ |
Alexander Duyck | 52ea3e8 | 2016-11-28 16:05:59 -0800 | [diff] [blame] | 1716 | static int i40e_tso(struct i40e_tx_buffer *first, u8 *hdr_len, |
| 1717 | u64 *cd_type_cmd_tso_mss) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1718 | { |
Alexander Duyck | 52ea3e8 | 2016-11-28 16:05:59 -0800 | [diff] [blame] | 1719 | struct sk_buff *skb = first->skb; |
Alexander Duyck | 03f9d6a | 2016-01-24 21:16:20 -0800 | [diff] [blame] | 1720 | u64 cd_cmd, cd_tso_len, cd_mss; |
Alexander Duyck | c777019 | 2016-01-24 21:16:35 -0800 | [diff] [blame] | 1721 | union { |
| 1722 | struct iphdr *v4; |
| 1723 | struct ipv6hdr *v6; |
| 1724 | unsigned char *hdr; |
| 1725 | } ip; |
Alexander Duyck | c49a7bc | 2016-01-24 21:16:28 -0800 | [diff] [blame] | 1726 | union { |
| 1727 | struct tcphdr *tcp; |
Alexander Duyck | 5453205 | 2016-01-24 21:17:29 -0800 | [diff] [blame] | 1728 | struct udphdr *udp; |
Alexander Duyck | c49a7bc | 2016-01-24 21:16:28 -0800 | [diff] [blame] | 1729 | unsigned char *hdr; |
| 1730 | } l4; |
| 1731 | u32 paylen, l4_offset; |
Alexander Duyck | 52ea3e8 | 2016-11-28 16:05:59 -0800 | [diff] [blame] | 1732 | u16 gso_segs, gso_size; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1733 | int err; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1734 | |
Shannon Nelson | e9f6563 | 2016-01-04 10:33:04 -0800 | [diff] [blame] | 1735 | if (skb->ip_summed != CHECKSUM_PARTIAL) |
| 1736 | return 0; |
| 1737 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1738 | if (!skb_is_gso(skb)) |
| 1739 | return 0; |
| 1740 | |
Francois Romieu | fe6d4aa | 2014-03-30 03:14:53 +0000 | [diff] [blame] | 1741 | err = skb_cow_head(skb, 0); |
| 1742 | if (err < 0) |
| 1743 | return err; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1744 | |
Alexander Duyck | c777019 | 2016-01-24 21:16:35 -0800 | [diff] [blame] | 1745 | ip.hdr = skb_network_header(skb); |
| 1746 | l4.hdr = skb_transport_header(skb); |
Anjali Singhai | 85e76d0 | 2015-02-21 06:44:16 +0000 | [diff] [blame] | 1747 | |
Alexander Duyck | c777019 | 2016-01-24 21:16:35 -0800 | [diff] [blame] | 1748 | /* initialize outer IP header fields */ |
| 1749 | if (ip.v4->version == 4) { |
| 1750 | ip.v4->tot_len = 0; |
| 1751 | ip.v4->check = 0; |
Alexander Duyck | c49a7bc | 2016-01-24 21:16:28 -0800 | [diff] [blame] | 1752 | } else { |
Alexander Duyck | c777019 | 2016-01-24 21:16:35 -0800 | [diff] [blame] | 1753 | ip.v6->payload_len = 0; |
| 1754 | } |
| 1755 | |
Alexander Duyck | 577389a | 2016-04-02 00:06:56 -0700 | [diff] [blame] | 1756 | if (skb_shinfo(skb)->gso_type & (SKB_GSO_GRE | |
Alexander Duyck | 1c7b4a2 | 2016-04-14 17:19:25 -0400 | [diff] [blame] | 1757 | SKB_GSO_GRE_CSUM | |
Tom Herbert | 7e13318 | 2016-05-18 09:06:10 -0700 | [diff] [blame] | 1758 | SKB_GSO_IPXIP4 | |
Alexander Duyck | bf2d1df | 2016-05-18 10:44:53 -0700 | [diff] [blame] | 1759 | SKB_GSO_IPXIP6 | |
Alexander Duyck | 577389a | 2016-04-02 00:06:56 -0700 | [diff] [blame] | 1760 | SKB_GSO_UDP_TUNNEL | |
Alexander Duyck | 5453205 | 2016-01-24 21:17:29 -0800 | [diff] [blame] | 1761 | SKB_GSO_UDP_TUNNEL_CSUM)) { |
Alexander Duyck | 1c7b4a2 | 2016-04-14 17:19:25 -0400 | [diff] [blame] | 1762 | if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL) && |
| 1763 | (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_TUNNEL_CSUM)) { |
| 1764 | l4.udp->len = 0; |
| 1765 | |
Alexander Duyck | 5453205 | 2016-01-24 21:17:29 -0800 | [diff] [blame] | 1766 | /* determine offset of outer transport header */ |
| 1767 | l4_offset = l4.hdr - skb->data; |
| 1768 | |
| 1769 | /* remove payload length from outer checksum */ |
Alexander Duyck | 24d41e5 | 2016-03-18 16:06:47 -0700 | [diff] [blame] | 1770 | paylen = skb->len - l4_offset; |
Jacob Keller | b9c015d | 2016-12-12 15:44:17 -0800 | [diff] [blame] | 1771 | csum_replace_by_diff(&l4.udp->check, |
| 1772 | (__force __wsum)htonl(paylen)); |
Alexander Duyck | 5453205 | 2016-01-24 21:17:29 -0800 | [diff] [blame] | 1773 | } |
| 1774 | |
Alexander Duyck | c777019 | 2016-01-24 21:16:35 -0800 | [diff] [blame] | 1775 | /* reset pointers to inner headers */ |
| 1776 | ip.hdr = skb_inner_network_header(skb); |
| 1777 | l4.hdr = skb_inner_transport_header(skb); |
| 1778 | |
| 1779 | /* initialize inner IP header fields */ |
| 1780 | if (ip.v4->version == 4) { |
| 1781 | ip.v4->tot_len = 0; |
| 1782 | ip.v4->check = 0; |
| 1783 | } else { |
| 1784 | ip.v6->payload_len = 0; |
| 1785 | } |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1786 | } |
| 1787 | |
Alexander Duyck | c49a7bc | 2016-01-24 21:16:28 -0800 | [diff] [blame] | 1788 | /* determine offset of inner transport header */ |
| 1789 | l4_offset = l4.hdr - skb->data; |
| 1790 | |
| 1791 | /* remove payload length from inner checksum */ |
Alexander Duyck | 24d41e5 | 2016-03-18 16:06:47 -0700 | [diff] [blame] | 1792 | paylen = skb->len - l4_offset; |
Jacob Keller | b9c015d | 2016-12-12 15:44:17 -0800 | [diff] [blame] | 1793 | csum_replace_by_diff(&l4.tcp->check, (__force __wsum)htonl(paylen)); |
Alexander Duyck | c49a7bc | 2016-01-24 21:16:28 -0800 | [diff] [blame] | 1794 | |
| 1795 | /* compute length of segmentation header */ |
| 1796 | *hdr_len = (l4.tcp->doff * 4) + l4_offset; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1797 | |
Alexander Duyck | 52ea3e8 | 2016-11-28 16:05:59 -0800 | [diff] [blame] | 1798 | /* pull values out of skb_shinfo */ |
| 1799 | gso_size = skb_shinfo(skb)->gso_size; |
| 1800 | gso_segs = skb_shinfo(skb)->gso_segs; |
| 1801 | |
| 1802 | /* update GSO size and bytecount with header size */ |
| 1803 | first->gso_segs = gso_segs; |
| 1804 | first->bytecount += (first->gso_segs - 1) * *hdr_len; |
| 1805 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1806 | /* find the field values */ |
| 1807 | cd_cmd = I40E_TX_CTX_DESC_TSO; |
| 1808 | cd_tso_len = skb->len - *hdr_len; |
Alexander Duyck | 52ea3e8 | 2016-11-28 16:05:59 -0800 | [diff] [blame] | 1809 | cd_mss = gso_size; |
Alexander Duyck | 03f9d6a | 2016-01-24 21:16:20 -0800 | [diff] [blame] | 1810 | *cd_type_cmd_tso_mss |= (cd_cmd << I40E_TXD_CTX_QW1_CMD_SHIFT) | |
| 1811 | (cd_tso_len << I40E_TXD_CTX_QW1_TSO_LEN_SHIFT) | |
| 1812 | (cd_mss << I40E_TXD_CTX_QW1_MSS_SHIFT); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1813 | return 1; |
| 1814 | } |
| 1815 | |
| 1816 | /** |
| 1817 | * i40e_tx_enable_csum - Enable Tx checksum offloads |
| 1818 | * @skb: send buffer |
Anjali Singhai Jain | 89232c3 | 2015-04-16 20:06:00 -0400 | [diff] [blame] | 1819 | * @tx_flags: pointer to Tx flags currently set |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1820 | * @td_cmd: Tx descriptor command bits to set |
| 1821 | * @td_offset: Tx descriptor header offsets to set |
Alexander Duyck | 529f1f6 | 2016-01-24 21:17:10 -0800 | [diff] [blame] | 1822 | * @tx_ring: Tx descriptor ring |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1823 | * @cd_tunneling: ptr to context desc bits |
| 1824 | **/ |
Alexander Duyck | 529f1f6 | 2016-01-24 21:17:10 -0800 | [diff] [blame] | 1825 | static int i40e_tx_enable_csum(struct sk_buff *skb, u32 *tx_flags, |
| 1826 | u32 *td_cmd, u32 *td_offset, |
| 1827 | struct i40e_ring *tx_ring, |
| 1828 | u32 *cd_tunneling) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1829 | { |
Alexander Duyck | b96b78f | 2016-01-24 21:16:42 -0800 | [diff] [blame] | 1830 | union { |
| 1831 | struct iphdr *v4; |
| 1832 | struct ipv6hdr *v6; |
| 1833 | unsigned char *hdr; |
| 1834 | } ip; |
| 1835 | union { |
| 1836 | struct tcphdr *tcp; |
| 1837 | struct udphdr *udp; |
| 1838 | unsigned char *hdr; |
| 1839 | } l4; |
Alexander Duyck | a3fd9d8 | 2016-01-24 21:16:54 -0800 | [diff] [blame] | 1840 | unsigned char *exthdr; |
Jesse Brandeburg | d1bd743 | 2016-04-01 03:56:04 -0700 | [diff] [blame] | 1841 | u32 offset, cmd = 0; |
Alexander Duyck | a3fd9d8 | 2016-01-24 21:16:54 -0800 | [diff] [blame] | 1842 | __be16 frag_off; |
Alexander Duyck | b96b78f | 2016-01-24 21:16:42 -0800 | [diff] [blame] | 1843 | u8 l4_proto = 0; |
| 1844 | |
Alexander Duyck | 529f1f6 | 2016-01-24 21:17:10 -0800 | [diff] [blame] | 1845 | if (skb->ip_summed != CHECKSUM_PARTIAL) |
| 1846 | return 0; |
| 1847 | |
Alexander Duyck | b96b78f | 2016-01-24 21:16:42 -0800 | [diff] [blame] | 1848 | ip.hdr = skb_network_header(skb); |
| 1849 | l4.hdr = skb_transport_header(skb); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1850 | |
Alexander Duyck | 475b420 | 2016-01-24 21:17:01 -0800 | [diff] [blame] | 1851 | /* compute outer L2 header size */ |
| 1852 | offset = ((ip.hdr - skb->data) / 2) << I40E_TX_DESC_LENGTH_MACLEN_SHIFT; |
| 1853 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1854 | if (skb->encapsulation) { |
Jesse Brandeburg | d1bd743 | 2016-04-01 03:56:04 -0700 | [diff] [blame] | 1855 | u32 tunnel = 0; |
Alexander Duyck | a006472 | 2016-01-24 21:16:48 -0800 | [diff] [blame] | 1856 | /* define outer network header type */ |
| 1857 | if (*tx_flags & I40E_TX_FLAGS_IPV4) { |
Alexander Duyck | 475b420 | 2016-01-24 21:17:01 -0800 | [diff] [blame] | 1858 | tunnel |= (*tx_flags & I40E_TX_FLAGS_TSO) ? |
| 1859 | I40E_TX_CTX_EXT_IP_IPV4 : |
| 1860 | I40E_TX_CTX_EXT_IP_IPV4_NO_CSUM; |
| 1861 | |
Alexander Duyck | a006472 | 2016-01-24 21:16:48 -0800 | [diff] [blame] | 1862 | l4_proto = ip.v4->protocol; |
| 1863 | } else if (*tx_flags & I40E_TX_FLAGS_IPV6) { |
Alexander Duyck | 475b420 | 2016-01-24 21:17:01 -0800 | [diff] [blame] | 1864 | tunnel |= I40E_TX_CTX_EXT_IP_IPV6; |
Alexander Duyck | a3fd9d8 | 2016-01-24 21:16:54 -0800 | [diff] [blame] | 1865 | |
| 1866 | exthdr = ip.hdr + sizeof(*ip.v6); |
Alexander Duyck | a006472 | 2016-01-24 21:16:48 -0800 | [diff] [blame] | 1867 | l4_proto = ip.v6->nexthdr; |
Alexander Duyck | a3fd9d8 | 2016-01-24 21:16:54 -0800 | [diff] [blame] | 1868 | if (l4.hdr != exthdr) |
| 1869 | ipv6_skip_exthdr(skb, exthdr - skb->data, |
| 1870 | &l4_proto, &frag_off); |
Alexander Duyck | a006472 | 2016-01-24 21:16:48 -0800 | [diff] [blame] | 1871 | } |
| 1872 | |
| 1873 | /* define outer transport */ |
| 1874 | switch (l4_proto) { |
Anjali Singhai Jain | 4599120 | 2015-02-27 09:15:29 +0000 | [diff] [blame] | 1875 | case IPPROTO_UDP: |
Alexander Duyck | 475b420 | 2016-01-24 21:17:01 -0800 | [diff] [blame] | 1876 | tunnel |= I40E_TXD_CTX_UDP_TUNNELING; |
Anjali Singhai Jain | 89232c3 | 2015-04-16 20:06:00 -0400 | [diff] [blame] | 1877 | *tx_flags |= I40E_TX_FLAGS_VXLAN_TUNNEL; |
Anjali Singhai Jain | 4599120 | 2015-02-27 09:15:29 +0000 | [diff] [blame] | 1878 | break; |
Alexander Duyck | a006472 | 2016-01-24 21:16:48 -0800 | [diff] [blame] | 1879 | case IPPROTO_GRE: |
Alexander Duyck | 475b420 | 2016-01-24 21:17:01 -0800 | [diff] [blame] | 1880 | tunnel |= I40E_TXD_CTX_GRE_TUNNELING; |
Alexander Duyck | a006472 | 2016-01-24 21:16:48 -0800 | [diff] [blame] | 1881 | *tx_flags |= I40E_TX_FLAGS_VXLAN_TUNNEL; |
| 1882 | break; |
Alexander Duyck | 577389a | 2016-04-02 00:06:56 -0700 | [diff] [blame] | 1883 | case IPPROTO_IPIP: |
| 1884 | case IPPROTO_IPV6: |
| 1885 | *tx_flags |= I40E_TX_FLAGS_VXLAN_TUNNEL; |
| 1886 | l4.hdr = skb_inner_network_header(skb); |
| 1887 | break; |
Anjali Singhai Jain | 4599120 | 2015-02-27 09:15:29 +0000 | [diff] [blame] | 1888 | default: |
Alexander Duyck | 529f1f6 | 2016-01-24 21:17:10 -0800 | [diff] [blame] | 1889 | if (*tx_flags & I40E_TX_FLAGS_TSO) |
| 1890 | return -1; |
| 1891 | |
| 1892 | skb_checksum_help(skb); |
| 1893 | return 0; |
Anjali Singhai Jain | 4599120 | 2015-02-27 09:15:29 +0000 | [diff] [blame] | 1894 | } |
Alexander Duyck | b96b78f | 2016-01-24 21:16:42 -0800 | [diff] [blame] | 1895 | |
Alexander Duyck | 577389a | 2016-04-02 00:06:56 -0700 | [diff] [blame] | 1896 | /* compute outer L3 header size */ |
| 1897 | tunnel |= ((l4.hdr - ip.hdr) / 4) << |
| 1898 | I40E_TXD_CTX_QW0_EXT_IPLEN_SHIFT; |
| 1899 | |
| 1900 | /* switch IP header pointer from outer to inner header */ |
| 1901 | ip.hdr = skb_inner_network_header(skb); |
| 1902 | |
Alexander Duyck | 475b420 | 2016-01-24 21:17:01 -0800 | [diff] [blame] | 1903 | /* compute tunnel header size */ |
| 1904 | tunnel |= ((ip.hdr - l4.hdr) / 2) << |
| 1905 | I40E_TXD_CTX_QW0_NATLEN_SHIFT; |
| 1906 | |
Alexander Duyck | 5453205 | 2016-01-24 21:17:29 -0800 | [diff] [blame] | 1907 | /* indicate if we need to offload outer UDP header */ |
| 1908 | if ((*tx_flags & I40E_TX_FLAGS_TSO) && |
Alexander Duyck | 1c7b4a2 | 2016-04-14 17:19:25 -0400 | [diff] [blame] | 1909 | !(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL) && |
Alexander Duyck | 5453205 | 2016-01-24 21:17:29 -0800 | [diff] [blame] | 1910 | (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_TUNNEL_CSUM)) |
| 1911 | tunnel |= I40E_TXD_CTX_QW0_L4T_CS_MASK; |
| 1912 | |
Alexander Duyck | 475b420 | 2016-01-24 21:17:01 -0800 | [diff] [blame] | 1913 | /* record tunnel offload values */ |
| 1914 | *cd_tunneling |= tunnel; |
| 1915 | |
Alexander Duyck | b96b78f | 2016-01-24 21:16:42 -0800 | [diff] [blame] | 1916 | /* switch L4 header pointer from outer to inner */ |
Alexander Duyck | b96b78f | 2016-01-24 21:16:42 -0800 | [diff] [blame] | 1917 | l4.hdr = skb_inner_transport_header(skb); |
Alexander Duyck | a006472 | 2016-01-24 21:16:48 -0800 | [diff] [blame] | 1918 | l4_proto = 0; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1919 | |
Alexander Duyck | a006472 | 2016-01-24 21:16:48 -0800 | [diff] [blame] | 1920 | /* reset type as we transition from outer to inner headers */ |
| 1921 | *tx_flags &= ~(I40E_TX_FLAGS_IPV4 | I40E_TX_FLAGS_IPV6); |
| 1922 | if (ip.v4->version == 4) |
| 1923 | *tx_flags |= I40E_TX_FLAGS_IPV4; |
| 1924 | if (ip.v6->version == 6) |
Anjali Singhai Jain | 89232c3 | 2015-04-16 20:06:00 -0400 | [diff] [blame] | 1925 | *tx_flags |= I40E_TX_FLAGS_IPV6; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1926 | } |
| 1927 | |
| 1928 | /* Enable IP checksum offloads */ |
Anjali Singhai Jain | 89232c3 | 2015-04-16 20:06:00 -0400 | [diff] [blame] | 1929 | if (*tx_flags & I40E_TX_FLAGS_IPV4) { |
Alexander Duyck | b96b78f | 2016-01-24 21:16:42 -0800 | [diff] [blame] | 1930 | l4_proto = ip.v4->protocol; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1931 | /* the stack computes the IP header already, the only time we |
| 1932 | * need the hardware to recompute it is in the case of TSO. |
| 1933 | */ |
Alexander Duyck | 475b420 | 2016-01-24 21:17:01 -0800 | [diff] [blame] | 1934 | cmd |= (*tx_flags & I40E_TX_FLAGS_TSO) ? |
| 1935 | I40E_TX_DESC_CMD_IIPT_IPV4_CSUM : |
| 1936 | I40E_TX_DESC_CMD_IIPT_IPV4; |
Anjali Singhai Jain | 89232c3 | 2015-04-16 20:06:00 -0400 | [diff] [blame] | 1937 | } else if (*tx_flags & I40E_TX_FLAGS_IPV6) { |
Alexander Duyck | 475b420 | 2016-01-24 21:17:01 -0800 | [diff] [blame] | 1938 | cmd |= I40E_TX_DESC_CMD_IIPT_IPV6; |
Alexander Duyck | a3fd9d8 | 2016-01-24 21:16:54 -0800 | [diff] [blame] | 1939 | |
| 1940 | exthdr = ip.hdr + sizeof(*ip.v6); |
| 1941 | l4_proto = ip.v6->nexthdr; |
| 1942 | if (l4.hdr != exthdr) |
| 1943 | ipv6_skip_exthdr(skb, exthdr - skb->data, |
| 1944 | &l4_proto, &frag_off); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1945 | } |
Alexander Duyck | b96b78f | 2016-01-24 21:16:42 -0800 | [diff] [blame] | 1946 | |
Alexander Duyck | 475b420 | 2016-01-24 21:17:01 -0800 | [diff] [blame] | 1947 | /* compute inner L3 header size */ |
| 1948 | offset |= ((l4.hdr - ip.hdr) / 4) << I40E_TX_DESC_LENGTH_IPLEN_SHIFT; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1949 | |
| 1950 | /* Enable L4 checksum offloads */ |
Alexander Duyck | b96b78f | 2016-01-24 21:16:42 -0800 | [diff] [blame] | 1951 | switch (l4_proto) { |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1952 | case IPPROTO_TCP: |
| 1953 | /* enable checksum offloads */ |
Alexander Duyck | 475b420 | 2016-01-24 21:17:01 -0800 | [diff] [blame] | 1954 | cmd |= I40E_TX_DESC_CMD_L4T_EOFT_TCP; |
| 1955 | offset |= l4.tcp->doff << I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1956 | break; |
| 1957 | case IPPROTO_SCTP: |
| 1958 | /* enable SCTP checksum offload */ |
Alexander Duyck | 475b420 | 2016-01-24 21:17:01 -0800 | [diff] [blame] | 1959 | cmd |= I40E_TX_DESC_CMD_L4T_EOFT_SCTP; |
| 1960 | offset |= (sizeof(struct sctphdr) >> 2) << |
| 1961 | I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1962 | break; |
| 1963 | case IPPROTO_UDP: |
| 1964 | /* enable UDP checksum offload */ |
Alexander Duyck | 475b420 | 2016-01-24 21:17:01 -0800 | [diff] [blame] | 1965 | cmd |= I40E_TX_DESC_CMD_L4T_EOFT_UDP; |
| 1966 | offset |= (sizeof(struct udphdr) >> 2) << |
| 1967 | I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1968 | break; |
| 1969 | default: |
Alexander Duyck | 529f1f6 | 2016-01-24 21:17:10 -0800 | [diff] [blame] | 1970 | if (*tx_flags & I40E_TX_FLAGS_TSO) |
| 1971 | return -1; |
| 1972 | skb_checksum_help(skb); |
| 1973 | return 0; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1974 | } |
Alexander Duyck | 475b420 | 2016-01-24 21:17:01 -0800 | [diff] [blame] | 1975 | |
| 1976 | *td_cmd |= cmd; |
| 1977 | *td_offset |= offset; |
Alexander Duyck | 529f1f6 | 2016-01-24 21:17:10 -0800 | [diff] [blame] | 1978 | |
| 1979 | return 1; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1980 | } |
| 1981 | |
| 1982 | /** |
| 1983 | * i40e_create_tx_ctx Build the Tx context descriptor |
| 1984 | * @tx_ring: ring to create the descriptor on |
| 1985 | * @cd_type_cmd_tso_mss: Quad Word 1 |
| 1986 | * @cd_tunneling: Quad Word 0 - bits 0-31 |
| 1987 | * @cd_l2tag2: Quad Word 0 - bits 32-63 |
| 1988 | **/ |
| 1989 | static void i40e_create_tx_ctx(struct i40e_ring *tx_ring, |
| 1990 | const u64 cd_type_cmd_tso_mss, |
| 1991 | const u32 cd_tunneling, const u32 cd_l2tag2) |
| 1992 | { |
| 1993 | struct i40e_tx_context_desc *context_desc; |
| 1994 | int i = tx_ring->next_to_use; |
| 1995 | |
Jesse Brandeburg | ff40dd5 | 2014-02-14 02:14:41 +0000 | [diff] [blame] | 1996 | if ((cd_type_cmd_tso_mss == I40E_TX_DESC_DTYPE_CONTEXT) && |
| 1997 | !cd_tunneling && !cd_l2tag2) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 1998 | return; |
| 1999 | |
| 2000 | /* grab the next descriptor */ |
| 2001 | context_desc = I40E_TX_CTXTDESC(tx_ring, i); |
| 2002 | |
| 2003 | i++; |
| 2004 | tx_ring->next_to_use = (i < tx_ring->count) ? i : 0; |
| 2005 | |
| 2006 | /* cpu_to_le32 and assign to struct fields */ |
| 2007 | context_desc->tunneling_params = cpu_to_le32(cd_tunneling); |
| 2008 | context_desc->l2tag2 = cpu_to_le16(cd_l2tag2); |
Jesse Brandeburg | 3efbbb2 | 2014-06-04 20:41:54 +0000 | [diff] [blame] | 2009 | context_desc->rsvd = cpu_to_le16(0); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2010 | context_desc->type_cmd_tso_mss = cpu_to_le64(cd_type_cmd_tso_mss); |
| 2011 | } |
| 2012 | |
Jesse Brandeburg | 4eeb1ff | 2015-11-18 17:35:42 -0800 | [diff] [blame] | 2013 | /** |
Alexander Duyck | 3f3f7cb | 2016-03-30 16:15:37 -0700 | [diff] [blame] | 2014 | * __i40evf_chk_linearize - Check if there are more than 8 buffers per packet |
Anjali Singhai | 71da619 | 2015-02-21 06:42:35 +0000 | [diff] [blame] | 2015 | * @skb: send buffer |
Anjali Singhai | 71da619 | 2015-02-21 06:42:35 +0000 | [diff] [blame] | 2016 | * |
Alexander Duyck | 3f3f7cb | 2016-03-30 16:15:37 -0700 | [diff] [blame] | 2017 | * Note: Our HW can't DMA more than 8 buffers to build a packet on the wire |
| 2018 | * and so we need to figure out the cases where we need to linearize the skb. |
| 2019 | * |
| 2020 | * For TSO we need to count the TSO header and segment payload separately. |
| 2021 | * As such we need to check cases where we have 7 fragments or more as we |
| 2022 | * can potentially require 9 DMA transactions, 1 for the TSO header, 1 for |
| 2023 | * the segment payload in the first descriptor, and another 7 for the |
| 2024 | * fragments. |
Anjali Singhai | 71da619 | 2015-02-21 06:42:35 +0000 | [diff] [blame] | 2025 | **/ |
Alexander Duyck | 2d37490 | 2016-02-17 11:02:50 -0800 | [diff] [blame] | 2026 | bool __i40evf_chk_linearize(struct sk_buff *skb) |
Anjali Singhai | 71da619 | 2015-02-21 06:42:35 +0000 | [diff] [blame] | 2027 | { |
Alexander Duyck | 2d37490 | 2016-02-17 11:02:50 -0800 | [diff] [blame] | 2028 | const struct skb_frag_struct *frag, *stale; |
Alexander Duyck | 3f3f7cb | 2016-03-30 16:15:37 -0700 | [diff] [blame] | 2029 | int nr_frags, sum; |
Anjali Singhai | 71da619 | 2015-02-21 06:42:35 +0000 | [diff] [blame] | 2030 | |
Alexander Duyck | 3f3f7cb | 2016-03-30 16:15:37 -0700 | [diff] [blame] | 2031 | /* no need to check if number of frags is less than 7 */ |
Alexander Duyck | 2d37490 | 2016-02-17 11:02:50 -0800 | [diff] [blame] | 2032 | nr_frags = skb_shinfo(skb)->nr_frags; |
Alexander Duyck | 3f3f7cb | 2016-03-30 16:15:37 -0700 | [diff] [blame] | 2033 | if (nr_frags < (I40E_MAX_BUFFER_TXD - 1)) |
Alexander Duyck | 2d37490 | 2016-02-17 11:02:50 -0800 | [diff] [blame] | 2034 | return false; |
Anjali Singhai | 71da619 | 2015-02-21 06:42:35 +0000 | [diff] [blame] | 2035 | |
Alexander Duyck | 2d37490 | 2016-02-17 11:02:50 -0800 | [diff] [blame] | 2036 | /* We need to walk through the list and validate that each group |
Alexander Duyck | 841493a | 2016-09-06 18:05:04 -0700 | [diff] [blame] | 2037 | * of 6 fragments totals at least gso_size. |
Alexander Duyck | 2d37490 | 2016-02-17 11:02:50 -0800 | [diff] [blame] | 2038 | */ |
Alexander Duyck | 3f3f7cb | 2016-03-30 16:15:37 -0700 | [diff] [blame] | 2039 | nr_frags -= I40E_MAX_BUFFER_TXD - 2; |
Alexander Duyck | 2d37490 | 2016-02-17 11:02:50 -0800 | [diff] [blame] | 2040 | frag = &skb_shinfo(skb)->frags[0]; |
| 2041 | |
| 2042 | /* Initialize size to the negative value of gso_size minus 1. We |
| 2043 | * use this as the worst case scenerio in which the frag ahead |
| 2044 | * of us only provides one byte which is why we are limited to 6 |
| 2045 | * descriptors for a single transmit as the header and previous |
| 2046 | * fragment are already consuming 2 descriptors. |
| 2047 | */ |
Alexander Duyck | 3f3f7cb | 2016-03-30 16:15:37 -0700 | [diff] [blame] | 2048 | sum = 1 - skb_shinfo(skb)->gso_size; |
Alexander Duyck | 2d37490 | 2016-02-17 11:02:50 -0800 | [diff] [blame] | 2049 | |
Alexander Duyck | 3f3f7cb | 2016-03-30 16:15:37 -0700 | [diff] [blame] | 2050 | /* Add size of frags 0 through 4 to create our initial sum */ |
| 2051 | sum += skb_frag_size(frag++); |
| 2052 | sum += skb_frag_size(frag++); |
| 2053 | sum += skb_frag_size(frag++); |
| 2054 | sum += skb_frag_size(frag++); |
| 2055 | sum += skb_frag_size(frag++); |
Alexander Duyck | 2d37490 | 2016-02-17 11:02:50 -0800 | [diff] [blame] | 2056 | |
| 2057 | /* Walk through fragments adding latest fragment, testing it, and |
| 2058 | * then removing stale fragments from the sum. |
| 2059 | */ |
Alexander Duyck | 248de22 | 2017-12-08 10:55:04 -0800 | [diff] [blame] | 2060 | for (stale = &skb_shinfo(skb)->frags[0];; stale++) { |
| 2061 | int stale_size = skb_frag_size(stale); |
| 2062 | |
Alexander Duyck | 3f3f7cb | 2016-03-30 16:15:37 -0700 | [diff] [blame] | 2063 | sum += skb_frag_size(frag++); |
Alexander Duyck | 2d37490 | 2016-02-17 11:02:50 -0800 | [diff] [blame] | 2064 | |
Alexander Duyck | 248de22 | 2017-12-08 10:55:04 -0800 | [diff] [blame] | 2065 | /* The stale fragment may present us with a smaller |
| 2066 | * descriptor than the actual fragment size. To account |
| 2067 | * for that we need to remove all the data on the front and |
| 2068 | * figure out what the remainder would be in the last |
| 2069 | * descriptor associated with the fragment. |
| 2070 | */ |
| 2071 | if (stale_size > I40E_MAX_DATA_PER_TXD) { |
| 2072 | int align_pad = -(stale->page_offset) & |
| 2073 | (I40E_MAX_READ_REQ_SIZE - 1); |
| 2074 | |
| 2075 | sum -= align_pad; |
| 2076 | stale_size -= align_pad; |
| 2077 | |
| 2078 | do { |
| 2079 | sum -= I40E_MAX_DATA_PER_TXD_ALIGNED; |
| 2080 | stale_size -= I40E_MAX_DATA_PER_TXD_ALIGNED; |
| 2081 | } while (stale_size > I40E_MAX_DATA_PER_TXD); |
| 2082 | } |
| 2083 | |
Alexander Duyck | 2d37490 | 2016-02-17 11:02:50 -0800 | [diff] [blame] | 2084 | /* if sum is negative we failed to make sufficient progress */ |
| 2085 | if (sum < 0) |
| 2086 | return true; |
| 2087 | |
Alexander Duyck | 841493a | 2016-09-06 18:05:04 -0700 | [diff] [blame] | 2088 | if (!nr_frags--) |
Alexander Duyck | 2d37490 | 2016-02-17 11:02:50 -0800 | [diff] [blame] | 2089 | break; |
| 2090 | |
Alexander Duyck | 248de22 | 2017-12-08 10:55:04 -0800 | [diff] [blame] | 2091 | sum -= stale_size; |
Anjali Singhai | 71da619 | 2015-02-21 06:42:35 +0000 | [diff] [blame] | 2092 | } |
| 2093 | |
Alexander Duyck | 2d37490 | 2016-02-17 11:02:50 -0800 | [diff] [blame] | 2094 | return false; |
Anjali Singhai | 71da619 | 2015-02-21 06:42:35 +0000 | [diff] [blame] | 2095 | } |
| 2096 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2097 | /** |
Jesse Brandeburg | 8f6a2b0 | 2015-04-16 20:06:09 -0400 | [diff] [blame] | 2098 | * __i40evf_maybe_stop_tx - 2nd level check for tx stop conditions |
| 2099 | * @tx_ring: the ring to be checked |
| 2100 | * @size: the size buffer we want to assure is available |
| 2101 | * |
| 2102 | * Returns -EBUSY if a stop is needed, else 0 |
| 2103 | **/ |
Alexander Duyck | 4ec441d | 2016-02-17 11:02:43 -0800 | [diff] [blame] | 2104 | int __i40evf_maybe_stop_tx(struct i40e_ring *tx_ring, int size) |
Jesse Brandeburg | 8f6a2b0 | 2015-04-16 20:06:09 -0400 | [diff] [blame] | 2105 | { |
| 2106 | netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index); |
| 2107 | /* Memory barrier before checking head and tail */ |
| 2108 | smp_mb(); |
| 2109 | |
| 2110 | /* Check again in a case another CPU has just made room available. */ |
| 2111 | if (likely(I40E_DESC_UNUSED(tx_ring) < size)) |
| 2112 | return -EBUSY; |
| 2113 | |
| 2114 | /* A reprieve! - use start_queue because it doesn't call schedule */ |
| 2115 | netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index); |
| 2116 | ++tx_ring->tx_stats.restart_queue; |
| 2117 | return 0; |
| 2118 | } |
| 2119 | |
| 2120 | /** |
Jesse Brandeburg | 3e587cf | 2015-04-16 20:06:10 -0400 | [diff] [blame] | 2121 | * i40evf_tx_map - Build the Tx descriptor |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2122 | * @tx_ring: ring to send buffer on |
| 2123 | * @skb: send buffer |
| 2124 | * @first: first buffer info buffer to use |
| 2125 | * @tx_flags: collected send information |
| 2126 | * @hdr_len: size of the packet header |
| 2127 | * @td_cmd: the command field in the descriptor |
| 2128 | * @td_offset: offset for checksum or crc |
| 2129 | **/ |
Jesse Brandeburg | 3e587cf | 2015-04-16 20:06:10 -0400 | [diff] [blame] | 2130 | static inline void i40evf_tx_map(struct i40e_ring *tx_ring, struct sk_buff *skb, |
| 2131 | struct i40e_tx_buffer *first, u32 tx_flags, |
| 2132 | const u8 hdr_len, u32 td_cmd, u32 td_offset) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2133 | { |
| 2134 | unsigned int data_len = skb->data_len; |
| 2135 | unsigned int size = skb_headlen(skb); |
| 2136 | struct skb_frag_struct *frag; |
| 2137 | struct i40e_tx_buffer *tx_bi; |
| 2138 | struct i40e_tx_desc *tx_desc; |
| 2139 | u16 i = tx_ring->next_to_use; |
| 2140 | u32 td_tag = 0; |
| 2141 | dma_addr_t dma; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2142 | |
| 2143 | if (tx_flags & I40E_TX_FLAGS_HW_VLAN) { |
| 2144 | td_cmd |= I40E_TX_DESC_CMD_IL2TAG1; |
| 2145 | td_tag = (tx_flags & I40E_TX_FLAGS_VLAN_MASK) >> |
| 2146 | I40E_TX_FLAGS_VLAN_SHIFT; |
| 2147 | } |
| 2148 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2149 | first->tx_flags = tx_flags; |
| 2150 | |
| 2151 | dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE); |
| 2152 | |
| 2153 | tx_desc = I40E_TX_DESC(tx_ring, i); |
| 2154 | tx_bi = first; |
| 2155 | |
| 2156 | for (frag = &skb_shinfo(skb)->frags[0];; frag++) { |
Alexander Duyck | 5c4654d | 2016-02-19 12:17:08 -0800 | [diff] [blame] | 2157 | unsigned int max_data = I40E_MAX_DATA_PER_TXD_ALIGNED; |
| 2158 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2159 | if (dma_mapping_error(tx_ring->dev, dma)) |
| 2160 | goto dma_error; |
| 2161 | |
| 2162 | /* record length, and DMA address */ |
| 2163 | dma_unmap_len_set(tx_bi, len, size); |
| 2164 | dma_unmap_addr_set(tx_bi, dma, dma); |
| 2165 | |
Alexander Duyck | 5c4654d | 2016-02-19 12:17:08 -0800 | [diff] [blame] | 2166 | /* align size to end of page */ |
| 2167 | max_data += -dma & (I40E_MAX_READ_REQ_SIZE - 1); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2168 | tx_desc->buffer_addr = cpu_to_le64(dma); |
| 2169 | |
| 2170 | while (unlikely(size > I40E_MAX_DATA_PER_TXD)) { |
| 2171 | tx_desc->cmd_type_offset_bsz = |
| 2172 | build_ctob(td_cmd, td_offset, |
Alexander Duyck | 5c4654d | 2016-02-19 12:17:08 -0800 | [diff] [blame] | 2173 | max_data, td_tag); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2174 | |
| 2175 | tx_desc++; |
| 2176 | i++; |
Anjali Singhai Jain | 6a7fded | 2015-10-26 19:44:29 -0400 | [diff] [blame] | 2177 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2178 | if (i == tx_ring->count) { |
| 2179 | tx_desc = I40E_TX_DESC(tx_ring, 0); |
| 2180 | i = 0; |
| 2181 | } |
| 2182 | |
Alexander Duyck | 5c4654d | 2016-02-19 12:17:08 -0800 | [diff] [blame] | 2183 | dma += max_data; |
| 2184 | size -= max_data; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2185 | |
Alexander Duyck | 5c4654d | 2016-02-19 12:17:08 -0800 | [diff] [blame] | 2186 | max_data = I40E_MAX_DATA_PER_TXD_ALIGNED; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2187 | tx_desc->buffer_addr = cpu_to_le64(dma); |
| 2188 | } |
| 2189 | |
| 2190 | if (likely(!data_len)) |
| 2191 | break; |
| 2192 | |
| 2193 | tx_desc->cmd_type_offset_bsz = build_ctob(td_cmd, td_offset, |
| 2194 | size, td_tag); |
| 2195 | |
| 2196 | tx_desc++; |
| 2197 | i++; |
Anjali Singhai Jain | 6a7fded | 2015-10-26 19:44:29 -0400 | [diff] [blame] | 2198 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2199 | if (i == tx_ring->count) { |
| 2200 | tx_desc = I40E_TX_DESC(tx_ring, 0); |
| 2201 | i = 0; |
| 2202 | } |
| 2203 | |
| 2204 | size = skb_frag_size(frag); |
| 2205 | data_len -= size; |
| 2206 | |
| 2207 | dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size, |
| 2208 | DMA_TO_DEVICE); |
| 2209 | |
| 2210 | tx_bi = &tx_ring->tx_bi[i]; |
| 2211 | } |
| 2212 | |
Alexander Duyck | 1dc8b53 | 2016-10-11 15:26:54 -0700 | [diff] [blame] | 2213 | netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2214 | |
| 2215 | i++; |
| 2216 | if (i == tx_ring->count) |
| 2217 | i = 0; |
| 2218 | |
| 2219 | tx_ring->next_to_use = i; |
| 2220 | |
Alexander Duyck | 4ec441d | 2016-02-17 11:02:43 -0800 | [diff] [blame] | 2221 | i40e_maybe_stop_tx(tx_ring, DESC_NEEDED); |
Anjali Singhai Jain | 6a7fded | 2015-10-26 19:44:29 -0400 | [diff] [blame] | 2222 | |
Preethi Banala | b1cb07d | 2017-03-10 12:22:00 -0800 | [diff] [blame] | 2223 | /* write last descriptor with RS and EOP bits */ |
| 2224 | td_cmd |= I40E_TXD_CMD; |
Anjali Singhai Jain | 6a7fded | 2015-10-26 19:44:29 -0400 | [diff] [blame] | 2225 | tx_desc->cmd_type_offset_bsz = |
Alexander Duyck | 1dc8b53 | 2016-10-11 15:26:54 -0700 | [diff] [blame] | 2226 | build_ctob(td_cmd, td_offset, size, td_tag); |
| 2227 | |
| 2228 | /* Force memory writes to complete before letting h/w know there |
| 2229 | * are new descriptors to fetch. |
| 2230 | * |
| 2231 | * We also use this memory barrier to make certain all of the |
| 2232 | * status bits have been updated before next_to_watch is written. |
| 2233 | */ |
| 2234 | wmb(); |
| 2235 | |
| 2236 | /* set next_to_watch value indicating a packet is present */ |
| 2237 | first->next_to_watch = tx_desc; |
Anjali Singhai Jain | 6a7fded | 2015-10-26 19:44:29 -0400 | [diff] [blame] | 2238 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2239 | /* notify HW of packet */ |
Preethi Banala | b1cb07d | 2017-03-10 12:22:00 -0800 | [diff] [blame] | 2240 | if (netif_xmit_stopped(txring_txq(tx_ring)) || !skb->xmit_more) { |
Anjali Singhai Jain | 6a7fded | 2015-10-26 19:44:29 -0400 | [diff] [blame] | 2241 | writel(i, tx_ring->tail); |
Alexander Duyck | 1dc8b53 | 2016-10-11 15:26:54 -0700 | [diff] [blame] | 2242 | |
| 2243 | /* we need this if more than one processor can write to our tail |
| 2244 | * at a time, it synchronizes IO on IA64/Altix systems |
| 2245 | */ |
| 2246 | mmiowb(); |
Anjali Singhai Jain | 6a7fded | 2015-10-26 19:44:29 -0400 | [diff] [blame] | 2247 | } |
Alexander Duyck | 1dc8b53 | 2016-10-11 15:26:54 -0700 | [diff] [blame] | 2248 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2249 | return; |
| 2250 | |
| 2251 | dma_error: |
| 2252 | dev_info(tx_ring->dev, "TX DMA map failed\n"); |
| 2253 | |
| 2254 | /* clear dma mappings for failed tx_bi map */ |
| 2255 | for (;;) { |
| 2256 | tx_bi = &tx_ring->tx_bi[i]; |
| 2257 | i40e_unmap_and_free_tx_resource(tx_ring, tx_bi); |
| 2258 | if (tx_bi == first) |
| 2259 | break; |
| 2260 | if (i == 0) |
| 2261 | i = tx_ring->count; |
| 2262 | i--; |
| 2263 | } |
| 2264 | |
| 2265 | tx_ring->next_to_use = i; |
| 2266 | } |
| 2267 | |
| 2268 | /** |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2269 | * i40e_xmit_frame_ring - Sends buffer on Tx ring |
| 2270 | * @skb: send buffer |
| 2271 | * @tx_ring: ring to send buffer on |
| 2272 | * |
| 2273 | * Returns NETDEV_TX_OK if sent, else an error code |
| 2274 | **/ |
| 2275 | static netdev_tx_t i40e_xmit_frame_ring(struct sk_buff *skb, |
| 2276 | struct i40e_ring *tx_ring) |
| 2277 | { |
| 2278 | u64 cd_type_cmd_tso_mss = I40E_TX_DESC_DTYPE_CONTEXT; |
| 2279 | u32 cd_tunneling = 0, cd_l2tag2 = 0; |
| 2280 | struct i40e_tx_buffer *first; |
| 2281 | u32 td_offset = 0; |
| 2282 | u32 tx_flags = 0; |
| 2283 | __be16 protocol; |
| 2284 | u32 td_cmd = 0; |
| 2285 | u8 hdr_len = 0; |
Alexander Duyck | 4ec441d | 2016-02-17 11:02:43 -0800 | [diff] [blame] | 2286 | int tso, count; |
Jesse Brandeburg | 6995b36 | 2015-08-28 17:55:54 -0400 | [diff] [blame] | 2287 | |
Jesse Brandeburg | b74118f | 2015-10-26 19:44:30 -0400 | [diff] [blame] | 2288 | /* prefetch the data, we'll need it later */ |
| 2289 | prefetch(skb->data); |
| 2290 | |
Scott Peterson | ed0980c | 2017-04-13 04:45:44 -0400 | [diff] [blame] | 2291 | i40e_trace(xmit_frame_ring, skb, tx_ring); |
| 2292 | |
Alexander Duyck | 4ec441d | 2016-02-17 11:02:43 -0800 | [diff] [blame] | 2293 | count = i40e_xmit_descriptor_count(skb); |
Alexander Duyck | 2d37490 | 2016-02-17 11:02:50 -0800 | [diff] [blame] | 2294 | if (i40e_chk_linearize(skb, count)) { |
Alexander Duyck | 52ea3e8 | 2016-11-28 16:05:59 -0800 | [diff] [blame] | 2295 | if (__skb_linearize(skb)) { |
| 2296 | dev_kfree_skb_any(skb); |
| 2297 | return NETDEV_TX_OK; |
| 2298 | } |
Alexander Duyck | 5c4654d | 2016-02-19 12:17:08 -0800 | [diff] [blame] | 2299 | count = i40e_txd_use_count(skb->len); |
Alexander Duyck | 2d37490 | 2016-02-17 11:02:50 -0800 | [diff] [blame] | 2300 | tx_ring->tx_stats.tx_linearize++; |
| 2301 | } |
Alexander Duyck | 4ec441d | 2016-02-17 11:02:43 -0800 | [diff] [blame] | 2302 | |
| 2303 | /* need: 1 descriptor per page * PAGE_SIZE/I40E_MAX_DATA_PER_TXD, |
| 2304 | * + 1 desc for skb_head_len/I40E_MAX_DATA_PER_TXD, |
| 2305 | * + 4 desc gap to avoid the cache line where head is, |
| 2306 | * + 1 desc for context descriptor, |
| 2307 | * otherwise try next time |
| 2308 | */ |
| 2309 | if (i40e_maybe_stop_tx(tx_ring, count + 4 + 1)) { |
| 2310 | tx_ring->tx_stats.tx_busy++; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2311 | return NETDEV_TX_BUSY; |
Alexander Duyck | 4ec441d | 2016-02-17 11:02:43 -0800 | [diff] [blame] | 2312 | } |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2313 | |
Alexander Duyck | 52ea3e8 | 2016-11-28 16:05:59 -0800 | [diff] [blame] | 2314 | /* record the location of the first descriptor for this packet */ |
| 2315 | first = &tx_ring->tx_bi[tx_ring->next_to_use]; |
| 2316 | first->skb = skb; |
| 2317 | first->bytecount = skb->len; |
| 2318 | first->gso_segs = 1; |
| 2319 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2320 | /* prepare the xmit flags */ |
Jesse Brandeburg | 3e587cf | 2015-04-16 20:06:10 -0400 | [diff] [blame] | 2321 | if (i40evf_tx_prepare_vlan_flags(skb, tx_ring, &tx_flags)) |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2322 | goto out_drop; |
| 2323 | |
| 2324 | /* obtain protocol of skb */ |
Vlad Yasevich | a12c415 | 2014-08-25 10:34:53 -0400 | [diff] [blame] | 2325 | protocol = vlan_get_protocol(skb); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2326 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2327 | /* setup IPv4/IPv6 offloads */ |
| 2328 | if (protocol == htons(ETH_P_IP)) |
| 2329 | tx_flags |= I40E_TX_FLAGS_IPV4; |
| 2330 | else if (protocol == htons(ETH_P_IPV6)) |
| 2331 | tx_flags |= I40E_TX_FLAGS_IPV6; |
| 2332 | |
Alexander Duyck | 52ea3e8 | 2016-11-28 16:05:59 -0800 | [diff] [blame] | 2333 | tso = i40e_tso(first, &hdr_len, &cd_type_cmd_tso_mss); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2334 | |
| 2335 | if (tso < 0) |
| 2336 | goto out_drop; |
| 2337 | else if (tso) |
| 2338 | tx_flags |= I40E_TX_FLAGS_TSO; |
| 2339 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2340 | /* Always offload the checksum, since it's in the data descriptor */ |
Alexander Duyck | 529f1f6 | 2016-01-24 21:17:10 -0800 | [diff] [blame] | 2341 | tso = i40e_tx_enable_csum(skb, &tx_flags, &td_cmd, &td_offset, |
| 2342 | tx_ring, &cd_tunneling); |
| 2343 | if (tso < 0) |
| 2344 | goto out_drop; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2345 | |
Alexander Duyck | 3bc6797 | 2016-02-17 11:02:56 -0800 | [diff] [blame] | 2346 | skb_tx_timestamp(skb); |
| 2347 | |
| 2348 | /* always enable CRC insertion offload */ |
| 2349 | td_cmd |= I40E_TX_DESC_CMD_ICRC; |
| 2350 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2351 | i40e_create_tx_ctx(tx_ring, cd_type_cmd_tso_mss, |
| 2352 | cd_tunneling, cd_l2tag2); |
| 2353 | |
Jesse Brandeburg | 3e587cf | 2015-04-16 20:06:10 -0400 | [diff] [blame] | 2354 | i40evf_tx_map(tx_ring, skb, first, tx_flags, hdr_len, |
| 2355 | td_cmd, td_offset); |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2356 | |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2357 | return NETDEV_TX_OK; |
| 2358 | |
| 2359 | out_drop: |
Scott Peterson | ed0980c | 2017-04-13 04:45:44 -0400 | [diff] [blame] | 2360 | i40e_trace(xmit_frame_ring_drop, first->skb, tx_ring); |
Alexander Duyck | 52ea3e8 | 2016-11-28 16:05:59 -0800 | [diff] [blame] | 2361 | dev_kfree_skb_any(first->skb); |
| 2362 | first->skb = NULL; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2363 | return NETDEV_TX_OK; |
| 2364 | } |
| 2365 | |
| 2366 | /** |
| 2367 | * i40evf_xmit_frame - Selects the correct VSI and Tx queue to send buffer |
| 2368 | * @skb: send buffer |
| 2369 | * @netdev: network interface device structure |
| 2370 | * |
| 2371 | * Returns NETDEV_TX_OK if sent, else an error code |
| 2372 | **/ |
| 2373 | netdev_tx_t i40evf_xmit_frame(struct sk_buff *skb, struct net_device *netdev) |
| 2374 | { |
| 2375 | struct i40evf_adapter *adapter = netdev_priv(netdev); |
Mitch Williams | 0dd438d | 2015-10-26 19:44:40 -0400 | [diff] [blame] | 2376 | struct i40e_ring *tx_ring = &adapter->tx_rings[skb->queue_mapping]; |
Greg Rose | 7f12ad7 | 2013-12-21 06:12:51 +0000 | [diff] [blame] | 2377 | |
| 2378 | /* hardware can't handle really short frames, hardware padding works |
| 2379 | * beyond this point |
| 2380 | */ |
| 2381 | if (unlikely(skb->len < I40E_MIN_TX_LEN)) { |
| 2382 | if (skb_pad(skb, I40E_MIN_TX_LEN - skb->len)) |
| 2383 | return NETDEV_TX_OK; |
| 2384 | skb->len = I40E_MIN_TX_LEN; |
| 2385 | skb_set_tail_pointer(skb, I40E_MIN_TX_LEN); |
| 2386 | } |
| 2387 | |
| 2388 | return i40e_xmit_frame_ring(skb, tx_ring); |
| 2389 | } |