Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 1 | /**************************************************************************** |
| 2 | * Driver for Solarflare Solarstorm network controllers and boards |
| 3 | * Copyright 2005-2006 Fen Systems Ltd. |
Ben Hutchings | 0a6f40c | 2011-02-25 00:01:34 +0000 | [diff] [blame] | 4 | * Copyright 2005-2010 Solarflare Communications Inc. |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License version 2 as published |
| 8 | * by the Free Software Foundation, incorporated herein by reference. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/pci.h> |
| 12 | #include <linux/tcp.h> |
| 13 | #include <linux/ip.h> |
| 14 | #include <linux/in.h> |
Ben Hutchings | 738a8f4 | 2009-11-29 15:16:05 +0000 | [diff] [blame] | 15 | #include <linux/ipv6.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 16 | #include <linux/slab.h> |
Ben Hutchings | 738a8f4 | 2009-11-29 15:16:05 +0000 | [diff] [blame] | 17 | #include <net/ipv6.h> |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 18 | #include <linux/if_ether.h> |
| 19 | #include <linux/highmem.h> |
| 20 | #include "net_driver.h" |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 21 | #include "efx.h" |
Ben Hutchings | 744093c | 2009-11-29 15:12:08 +0000 | [diff] [blame] | 22 | #include "nic.h" |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 23 | #include "workarounds.h" |
| 24 | |
| 25 | /* |
| 26 | * TX descriptor ring full threshold |
| 27 | * |
| 28 | * The tx_queue descriptor ring fill-level must fall below this value |
| 29 | * before we restart the netif queue |
| 30 | */ |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 31 | #define EFX_TXQ_THRESHOLD(_efx) ((_efx)->txq_entries / 2u) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 32 | |
Ben Hutchings | 4d56606 | 2008-09-01 12:47:12 +0100 | [diff] [blame] | 33 | static void efx_dequeue_buffer(struct efx_tx_queue *tx_queue, |
Tom Herbert | c394099 | 2011-11-28 16:33:43 +0000 | [diff] [blame] | 34 | struct efx_tx_buffer *buffer, |
| 35 | unsigned int *pkts_compl, |
| 36 | unsigned int *bytes_compl) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 37 | { |
| 38 | if (buffer->unmap_len) { |
| 39 | struct pci_dev *pci_dev = tx_queue->efx->pci_dev; |
Ben Hutchings | cc12dac | 2008-09-01 12:46:43 +0100 | [diff] [blame] | 40 | dma_addr_t unmap_addr = (buffer->dma_addr + buffer->len - |
| 41 | buffer->unmap_len); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 42 | if (buffer->unmap_single) |
Ben Hutchings | cc12dac | 2008-09-01 12:46:43 +0100 | [diff] [blame] | 43 | pci_unmap_single(pci_dev, unmap_addr, buffer->unmap_len, |
| 44 | PCI_DMA_TODEVICE); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 45 | else |
Ben Hutchings | cc12dac | 2008-09-01 12:46:43 +0100 | [diff] [blame] | 46 | pci_unmap_page(pci_dev, unmap_addr, buffer->unmap_len, |
| 47 | PCI_DMA_TODEVICE); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 48 | buffer->unmap_len = 0; |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 49 | buffer->unmap_single = false; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | if (buffer->skb) { |
Tom Herbert | c394099 | 2011-11-28 16:33:43 +0000 | [diff] [blame] | 53 | (*pkts_compl)++; |
| 54 | (*bytes_compl) += buffer->skb->len; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 55 | dev_kfree_skb_any((struct sk_buff *) buffer->skb); |
| 56 | buffer->skb = NULL; |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 57 | netif_vdbg(tx_queue->efx, tx_done, tx_queue->efx->net_dev, |
| 58 | "TX queue %d transmission id %x complete\n", |
| 59 | tx_queue->queue, tx_queue->read_count); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 60 | } |
| 61 | } |
| 62 | |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 63 | /** |
| 64 | * struct efx_tso_header - a DMA mapped buffer for packet headers |
| 65 | * @next: Linked list of free ones. |
| 66 | * The list is protected by the TX queue lock. |
| 67 | * @dma_unmap_len: Length to unmap for an oversize buffer, or 0. |
| 68 | * @dma_addr: The DMA address of the header below. |
| 69 | * |
| 70 | * This controls the memory used for a TSO header. Use TSOH_DATA() |
| 71 | * to find the packet header data. Use TSOH_SIZE() to calculate the |
| 72 | * total size required for a given packet header length. TSO headers |
| 73 | * in the free list are exactly %TSOH_STD_SIZE bytes in size. |
| 74 | */ |
| 75 | struct efx_tso_header { |
| 76 | union { |
| 77 | struct efx_tso_header *next; |
| 78 | size_t unmap_len; |
| 79 | }; |
| 80 | dma_addr_t dma_addr; |
| 81 | }; |
| 82 | |
| 83 | static int efx_enqueue_skb_tso(struct efx_tx_queue *tx_queue, |
Ben Hutchings | 740847d | 2008-09-01 12:48:23 +0100 | [diff] [blame] | 84 | struct sk_buff *skb); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 85 | static void efx_fini_tso(struct efx_tx_queue *tx_queue); |
| 86 | static void efx_tsoh_heap_free(struct efx_tx_queue *tx_queue, |
| 87 | struct efx_tso_header *tsoh); |
| 88 | |
Ben Hutchings | 4d56606 | 2008-09-01 12:47:12 +0100 | [diff] [blame] | 89 | static void efx_tsoh_free(struct efx_tx_queue *tx_queue, |
| 90 | struct efx_tx_buffer *buffer) |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 91 | { |
| 92 | if (buffer->tsoh) { |
| 93 | if (likely(!buffer->tsoh->unmap_len)) { |
| 94 | buffer->tsoh->next = tx_queue->tso_headers_free; |
| 95 | tx_queue->tso_headers_free = buffer->tsoh; |
| 96 | } else { |
| 97 | efx_tsoh_heap_free(tx_queue, buffer->tsoh); |
| 98 | } |
| 99 | buffer->tsoh = NULL; |
| 100 | } |
| 101 | } |
| 102 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 103 | |
Ben Hutchings | 63f1988 | 2009-10-23 08:31:20 +0000 | [diff] [blame] | 104 | static inline unsigned |
| 105 | efx_max_tx_len(struct efx_nic *efx, dma_addr_t dma_addr) |
| 106 | { |
| 107 | /* Depending on the NIC revision, we can use descriptor |
| 108 | * lengths up to 8K or 8K-1. However, since PCI Express |
| 109 | * devices must split read requests at 4K boundaries, there is |
| 110 | * little benefit from using descriptors that cross those |
| 111 | * boundaries and we keep things simple by not doing so. |
| 112 | */ |
Ben Hutchings | 5b6262d | 2012-02-02 21:21:15 +0000 | [diff] [blame] | 113 | unsigned len = (~dma_addr & (EFX_PAGE_SIZE - 1)) + 1; |
Ben Hutchings | 63f1988 | 2009-10-23 08:31:20 +0000 | [diff] [blame] | 114 | |
| 115 | /* Work around hardware bug for unaligned buffers. */ |
| 116 | if (EFX_WORKAROUND_5391(efx) && (dma_addr & 0xf)) |
| 117 | len = min_t(unsigned, len, 512 - (dma_addr & 0xf)); |
| 118 | |
| 119 | return len; |
| 120 | } |
| 121 | |
Ben Hutchings | 0a1f711 | 2012-07-30 15:57:44 +0000 | [diff] [blame] | 122 | unsigned int efx_tx_max_skb_descs(struct efx_nic *efx) |
| 123 | { |
| 124 | /* Header and payload descriptor for each output segment, plus |
| 125 | * one for every input fragment boundary within a segment |
| 126 | */ |
| 127 | unsigned int max_descs = EFX_TSO_MAX_SEGS * 2 + MAX_SKB_FRAGS; |
| 128 | |
| 129 | /* Possibly one more per segment for the alignment workaround */ |
| 130 | if (EFX_WORKAROUND_5391(efx)) |
| 131 | max_descs += EFX_TSO_MAX_SEGS; |
| 132 | |
| 133 | /* Possibly more for PCIe page boundaries within input fragments */ |
| 134 | if (PAGE_SIZE > EFX_PAGE_SIZE) |
| 135 | max_descs += max_t(unsigned int, MAX_SKB_FRAGS, |
| 136 | DIV_ROUND_UP(GSO_MAX_SIZE, EFX_PAGE_SIZE)); |
| 137 | |
| 138 | return max_descs; |
| 139 | } |
| 140 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 141 | /* |
| 142 | * Add a socket buffer to a TX queue |
| 143 | * |
| 144 | * This maps all fragments of a socket buffer for DMA and adds them to |
| 145 | * the TX queue. The queue's insert pointer will be incremented by |
| 146 | * the number of fragments in the socket buffer. |
| 147 | * |
| 148 | * If any DMA mapping fails, any mapped fragments will be unmapped, |
| 149 | * the queue's insert pointer will be restored to its original value. |
| 150 | * |
Ben Hutchings | 497f5ba | 2009-11-23 16:07:05 +0000 | [diff] [blame] | 151 | * This function is split out from efx_hard_start_xmit to allow the |
| 152 | * loopback test to direct packets via specific TX queues. |
| 153 | * |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 154 | * Returns NETDEV_TX_OK or NETDEV_TX_BUSY |
| 155 | * You must hold netif_tx_lock() to call this function. |
| 156 | */ |
Ben Hutchings | 497f5ba | 2009-11-23 16:07:05 +0000 | [diff] [blame] | 157 | netdev_tx_t efx_enqueue_skb(struct efx_tx_queue *tx_queue, struct sk_buff *skb) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 158 | { |
| 159 | struct efx_nic *efx = tx_queue->efx; |
| 160 | struct pci_dev *pci_dev = efx->pci_dev; |
| 161 | struct efx_tx_buffer *buffer; |
| 162 | skb_frag_t *fragment; |
Ben Hutchings | 63f1988 | 2009-10-23 08:31:20 +0000 | [diff] [blame] | 163 | unsigned int len, unmap_len = 0, fill_level, insert_ptr; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 164 | dma_addr_t dma_addr, unmap_addr = 0; |
| 165 | unsigned int dma_len; |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 166 | bool unmap_single; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 167 | int q_space, i = 0; |
Stephen Hemminger | 61357325 | 2009-08-31 19:50:58 +0000 | [diff] [blame] | 168 | netdev_tx_t rc = NETDEV_TX_OK; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 169 | |
| 170 | EFX_BUG_ON_PARANOID(tx_queue->write_count != tx_queue->insert_count); |
| 171 | |
Ben Hutchings | 9bc183d | 2009-11-23 16:06:47 +0000 | [diff] [blame] | 172 | if (skb_shinfo(skb)->gso_size) |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 173 | return efx_enqueue_skb_tso(tx_queue, skb); |
| 174 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 175 | /* Get size of the initial fragment */ |
| 176 | len = skb_headlen(skb); |
| 177 | |
Ben Hutchings | bb145a9 | 2009-03-20 13:25:39 +0000 | [diff] [blame] | 178 | /* Pad if necessary */ |
| 179 | if (EFX_WORKAROUND_15592(efx) && skb->len <= 32) { |
| 180 | EFX_BUG_ON_PARANOID(skb->data_len); |
| 181 | len = 32 + 1; |
| 182 | if (skb_pad(skb, len - skb->len)) |
| 183 | return NETDEV_TX_OK; |
| 184 | } |
| 185 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 186 | fill_level = tx_queue->insert_count - tx_queue->old_read_count; |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 187 | q_space = efx->txq_entries - 1 - fill_level; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 188 | |
| 189 | /* Map for DMA. Use pci_map_single rather than pci_map_page |
| 190 | * since this is more efficient on machines with sparse |
| 191 | * memory. |
| 192 | */ |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 193 | unmap_single = true; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 194 | dma_addr = pci_map_single(pci_dev, skb->data, len, PCI_DMA_TODEVICE); |
| 195 | |
| 196 | /* Process all fragments */ |
| 197 | while (1) { |
FUJITA Tomonori | 8d8bb39 | 2008-07-25 19:44:49 -0700 | [diff] [blame] | 198 | if (unlikely(pci_dma_mapping_error(pci_dev, dma_addr))) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 199 | goto pci_err; |
| 200 | |
| 201 | /* Store fields for marking in the per-fragment final |
| 202 | * descriptor */ |
| 203 | unmap_len = len; |
| 204 | unmap_addr = dma_addr; |
| 205 | |
| 206 | /* Add to TX queue, splitting across DMA boundaries */ |
| 207 | do { |
| 208 | if (unlikely(q_space-- <= 0)) { |
| 209 | /* It might be that completions have |
| 210 | * happened since the xmit path last |
| 211 | * checked. Update the xmit path's |
| 212 | * copy of read_count. |
| 213 | */ |
Ben Hutchings | c04bfc6 | 2010-12-10 01:24:16 +0000 | [diff] [blame] | 214 | netif_tx_stop_queue(tx_queue->core_txq); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 215 | /* This memory barrier protects the |
Ben Hutchings | c04bfc6 | 2010-12-10 01:24:16 +0000 | [diff] [blame] | 216 | * change of queue state from the access |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 217 | * of read_count. */ |
| 218 | smp_mb(); |
| 219 | tx_queue->old_read_count = |
Ben Hutchings | 51c56f4 | 2010-11-10 18:46:40 +0000 | [diff] [blame] | 220 | ACCESS_ONCE(tx_queue->read_count); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 221 | fill_level = (tx_queue->insert_count |
| 222 | - tx_queue->old_read_count); |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 223 | q_space = efx->txq_entries - 1 - fill_level; |
Ben Hutchings | c04bfc6 | 2010-12-10 01:24:16 +0000 | [diff] [blame] | 224 | if (unlikely(q_space-- <= 0)) { |
| 225 | rc = NETDEV_TX_BUSY; |
| 226 | goto unwind; |
| 227 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 228 | smp_mb(); |
Ben Hutchings | e4abce8 | 2011-05-16 18:51:24 +0100 | [diff] [blame] | 229 | if (likely(!efx->loopback_selftest)) |
| 230 | netif_tx_start_queue( |
| 231 | tx_queue->core_txq); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 232 | } |
| 233 | |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 234 | insert_ptr = tx_queue->insert_count & tx_queue->ptr_mask; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 235 | buffer = &tx_queue->buffer[insert_ptr]; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 236 | efx_tsoh_free(tx_queue, buffer); |
| 237 | EFX_BUG_ON_PARANOID(buffer->tsoh); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 238 | EFX_BUG_ON_PARANOID(buffer->skb); |
| 239 | EFX_BUG_ON_PARANOID(buffer->len); |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 240 | EFX_BUG_ON_PARANOID(!buffer->continuation); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 241 | EFX_BUG_ON_PARANOID(buffer->unmap_len); |
| 242 | |
Ben Hutchings | 63f1988 | 2009-10-23 08:31:20 +0000 | [diff] [blame] | 243 | dma_len = efx_max_tx_len(efx, dma_addr); |
| 244 | if (likely(dma_len >= len)) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 245 | dma_len = len; |
| 246 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 247 | /* Fill out per descriptor fields */ |
| 248 | buffer->len = dma_len; |
| 249 | buffer->dma_addr = dma_addr; |
| 250 | len -= dma_len; |
| 251 | dma_addr += dma_len; |
| 252 | ++tx_queue->insert_count; |
| 253 | } while (len); |
| 254 | |
| 255 | /* Transfer ownership of the unmapping to the final buffer */ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 256 | buffer->unmap_single = unmap_single; |
| 257 | buffer->unmap_len = unmap_len; |
| 258 | unmap_len = 0; |
| 259 | |
| 260 | /* Get address and size of next fragment */ |
| 261 | if (i >= skb_shinfo(skb)->nr_frags) |
| 262 | break; |
| 263 | fragment = &skb_shinfo(skb)->frags[i]; |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 264 | len = skb_frag_size(fragment); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 265 | i++; |
| 266 | /* Map for DMA */ |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 267 | unmap_single = false; |
Ian Campbell | 4a22c4c | 2011-09-21 21:53:16 +0000 | [diff] [blame] | 268 | dma_addr = skb_frag_dma_map(&pci_dev->dev, fragment, 0, len, |
Ian Campbell | 5d6bcdf | 2011-10-06 11:10:48 +0100 | [diff] [blame] | 269 | DMA_TO_DEVICE); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | /* Transfer ownership of the skb to the final buffer */ |
| 273 | buffer->skb = skb; |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 274 | buffer->continuation = false; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 275 | |
Tom Herbert | c394099 | 2011-11-28 16:33:43 +0000 | [diff] [blame] | 276 | netdev_tx_sent_queue(tx_queue->core_txq, skb->len); |
| 277 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 278 | /* Pass off to hardware */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 279 | efx_nic_push_buffers(tx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 280 | |
| 281 | return NETDEV_TX_OK; |
| 282 | |
| 283 | pci_err: |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 284 | netif_err(efx, tx_err, efx->net_dev, |
| 285 | " TX queue %d could not map skb with %d bytes %d " |
| 286 | "fragments for DMA\n", tx_queue->queue, skb->len, |
| 287 | skb_shinfo(skb)->nr_frags + 1); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 288 | |
| 289 | /* Mark the packet as transmitted, and free the SKB ourselves */ |
Ben Hutchings | 9bc183d | 2009-11-23 16:06:47 +0000 | [diff] [blame] | 290 | dev_kfree_skb_any(skb); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 291 | |
| 292 | unwind: |
| 293 | /* Work backwards until we hit the original insert pointer value */ |
| 294 | while (tx_queue->insert_count != tx_queue->write_count) { |
Tom Herbert | c394099 | 2011-11-28 16:33:43 +0000 | [diff] [blame] | 295 | unsigned int pkts_compl = 0, bytes_compl = 0; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 296 | --tx_queue->insert_count; |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 297 | insert_ptr = tx_queue->insert_count & tx_queue->ptr_mask; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 298 | buffer = &tx_queue->buffer[insert_ptr]; |
Tom Herbert | c394099 | 2011-11-28 16:33:43 +0000 | [diff] [blame] | 299 | efx_dequeue_buffer(tx_queue, buffer, &pkts_compl, &bytes_compl); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 300 | buffer->len = 0; |
| 301 | } |
| 302 | |
| 303 | /* Free the fragment we were mid-way through pushing */ |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 304 | if (unmap_len) { |
| 305 | if (unmap_single) |
| 306 | pci_unmap_single(pci_dev, unmap_addr, unmap_len, |
| 307 | PCI_DMA_TODEVICE); |
| 308 | else |
| 309 | pci_unmap_page(pci_dev, unmap_addr, unmap_len, |
| 310 | PCI_DMA_TODEVICE); |
| 311 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 312 | |
| 313 | return rc; |
| 314 | } |
| 315 | |
| 316 | /* Remove packets from the TX queue |
| 317 | * |
| 318 | * This removes packets from the TX queue, up to and including the |
| 319 | * specified index. |
| 320 | */ |
Ben Hutchings | 4d56606 | 2008-09-01 12:47:12 +0100 | [diff] [blame] | 321 | static void efx_dequeue_buffers(struct efx_tx_queue *tx_queue, |
Tom Herbert | c394099 | 2011-11-28 16:33:43 +0000 | [diff] [blame] | 322 | unsigned int index, |
| 323 | unsigned int *pkts_compl, |
| 324 | unsigned int *bytes_compl) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 325 | { |
| 326 | struct efx_nic *efx = tx_queue->efx; |
| 327 | unsigned int stop_index, read_ptr; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 328 | |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 329 | stop_index = (index + 1) & tx_queue->ptr_mask; |
| 330 | read_ptr = tx_queue->read_count & tx_queue->ptr_mask; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 331 | |
| 332 | while (read_ptr != stop_index) { |
| 333 | struct efx_tx_buffer *buffer = &tx_queue->buffer[read_ptr]; |
| 334 | if (unlikely(buffer->len == 0)) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 335 | netif_err(efx, tx_err, efx->net_dev, |
| 336 | "TX queue %d spurious TX completion id %x\n", |
| 337 | tx_queue->queue, read_ptr); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 338 | efx_schedule_reset(efx, RESET_TYPE_TX_SKIP); |
| 339 | return; |
| 340 | } |
| 341 | |
Tom Herbert | c394099 | 2011-11-28 16:33:43 +0000 | [diff] [blame] | 342 | efx_dequeue_buffer(tx_queue, buffer, pkts_compl, bytes_compl); |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 343 | buffer->continuation = true; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 344 | buffer->len = 0; |
| 345 | |
| 346 | ++tx_queue->read_count; |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 347 | read_ptr = tx_queue->read_count & tx_queue->ptr_mask; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 348 | } |
| 349 | } |
| 350 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 351 | /* Initiate a packet transmission. We use one channel per CPU |
| 352 | * (sharing when we have more CPUs than channels). On Falcon, the TX |
| 353 | * completion events will be directed back to the CPU that transmitted |
| 354 | * the packet, which should be cache-efficient. |
| 355 | * |
| 356 | * Context: non-blocking. |
| 357 | * Note that returning anything other than NETDEV_TX_OK will cause the |
| 358 | * OS to free the skb. |
| 359 | */ |
Stephen Hemminger | 61357325 | 2009-08-31 19:50:58 +0000 | [diff] [blame] | 360 | netdev_tx_t efx_hard_start_xmit(struct sk_buff *skb, |
Ben Hutchings | 2d0cc56 | 2012-02-17 00:10:45 +0000 | [diff] [blame] | 361 | struct net_device *net_dev) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 362 | { |
Ben Hutchings | 767e468 | 2008-09-01 12:43:14 +0100 | [diff] [blame] | 363 | struct efx_nic *efx = netdev_priv(net_dev); |
Ben Hutchings | 60ac106 | 2008-09-01 12:44:59 +0100 | [diff] [blame] | 364 | struct efx_tx_queue *tx_queue; |
Ben Hutchings | 94b274b | 2011-01-10 21:18:20 +0000 | [diff] [blame] | 365 | unsigned index, type; |
Ben Hutchings | 60ac106 | 2008-09-01 12:44:59 +0100 | [diff] [blame] | 366 | |
Ben Hutchings | e4abce8 | 2011-05-16 18:51:24 +0100 | [diff] [blame] | 367 | EFX_WARN_ON_PARANOID(!netif_device_present(net_dev)); |
Ben Hutchings | a7ef593 | 2009-03-04 09:52:37 +0000 | [diff] [blame] | 368 | |
Ben Hutchings | 94b274b | 2011-01-10 21:18:20 +0000 | [diff] [blame] | 369 | index = skb_get_queue_mapping(skb); |
| 370 | type = skb->ip_summed == CHECKSUM_PARTIAL ? EFX_TXQ_TYPE_OFFLOAD : 0; |
| 371 | if (index >= efx->n_tx_channels) { |
| 372 | index -= efx->n_tx_channels; |
| 373 | type |= EFX_TXQ_TYPE_HIGHPRI; |
| 374 | } |
| 375 | tx_queue = efx_get_tx_queue(efx, index, type); |
Ben Hutchings | 60ac106 | 2008-09-01 12:44:59 +0100 | [diff] [blame] | 376 | |
Ben Hutchings | 497f5ba | 2009-11-23 16:07:05 +0000 | [diff] [blame] | 377 | return efx_enqueue_skb(tx_queue, skb); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 378 | } |
| 379 | |
Ben Hutchings | 60031fc | 2011-01-12 18:39:40 +0000 | [diff] [blame] | 380 | void efx_init_tx_queue_core_txq(struct efx_tx_queue *tx_queue) |
| 381 | { |
Ben Hutchings | 94b274b | 2011-01-10 21:18:20 +0000 | [diff] [blame] | 382 | struct efx_nic *efx = tx_queue->efx; |
| 383 | |
Ben Hutchings | 60031fc | 2011-01-12 18:39:40 +0000 | [diff] [blame] | 384 | /* Must be inverse of queue lookup in efx_hard_start_xmit() */ |
Ben Hutchings | 94b274b | 2011-01-10 21:18:20 +0000 | [diff] [blame] | 385 | tx_queue->core_txq = |
| 386 | netdev_get_tx_queue(efx->net_dev, |
| 387 | tx_queue->queue / EFX_TXQ_TYPES + |
| 388 | ((tx_queue->queue & EFX_TXQ_TYPE_HIGHPRI) ? |
| 389 | efx->n_tx_channels : 0)); |
| 390 | } |
| 391 | |
| 392 | int efx_setup_tc(struct net_device *net_dev, u8 num_tc) |
| 393 | { |
| 394 | struct efx_nic *efx = netdev_priv(net_dev); |
| 395 | struct efx_channel *channel; |
| 396 | struct efx_tx_queue *tx_queue; |
| 397 | unsigned tc; |
| 398 | int rc; |
| 399 | |
| 400 | if (efx_nic_rev(efx) < EFX_REV_FALCON_B0 || num_tc > EFX_MAX_TX_TC) |
| 401 | return -EINVAL; |
| 402 | |
| 403 | if (num_tc == net_dev->num_tc) |
| 404 | return 0; |
| 405 | |
| 406 | for (tc = 0; tc < num_tc; tc++) { |
| 407 | net_dev->tc_to_txq[tc].offset = tc * efx->n_tx_channels; |
| 408 | net_dev->tc_to_txq[tc].count = efx->n_tx_channels; |
| 409 | } |
| 410 | |
| 411 | if (num_tc > net_dev->num_tc) { |
| 412 | /* Initialise high-priority queues as necessary */ |
| 413 | efx_for_each_channel(channel, efx) { |
| 414 | efx_for_each_possible_channel_tx_queue(tx_queue, |
| 415 | channel) { |
| 416 | if (!(tx_queue->queue & EFX_TXQ_TYPE_HIGHPRI)) |
| 417 | continue; |
| 418 | if (!tx_queue->buffer) { |
| 419 | rc = efx_probe_tx_queue(tx_queue); |
| 420 | if (rc) |
| 421 | return rc; |
| 422 | } |
| 423 | if (!tx_queue->initialised) |
| 424 | efx_init_tx_queue(tx_queue); |
| 425 | efx_init_tx_queue_core_txq(tx_queue); |
| 426 | } |
| 427 | } |
| 428 | } else { |
| 429 | /* Reduce number of classes before number of queues */ |
| 430 | net_dev->num_tc = num_tc; |
| 431 | } |
| 432 | |
| 433 | rc = netif_set_real_num_tx_queues(net_dev, |
| 434 | max_t(int, num_tc, 1) * |
| 435 | efx->n_tx_channels); |
| 436 | if (rc) |
| 437 | return rc; |
| 438 | |
| 439 | /* Do not destroy high-priority queues when they become |
| 440 | * unused. We would have to flush them first, and it is |
| 441 | * fairly difficult to flush a subset of TX queues. Leave |
| 442 | * it to efx_fini_channels(). |
| 443 | */ |
| 444 | |
| 445 | net_dev->num_tc = num_tc; |
| 446 | return 0; |
Ben Hutchings | 60031fc | 2011-01-12 18:39:40 +0000 | [diff] [blame] | 447 | } |
| 448 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 449 | void efx_xmit_done(struct efx_tx_queue *tx_queue, unsigned int index) |
| 450 | { |
| 451 | unsigned fill_level; |
| 452 | struct efx_nic *efx = tx_queue->efx; |
Tom Herbert | c394099 | 2011-11-28 16:33:43 +0000 | [diff] [blame] | 453 | unsigned int pkts_compl = 0, bytes_compl = 0; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 454 | |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 455 | EFX_BUG_ON_PARANOID(index > tx_queue->ptr_mask); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 456 | |
Tom Herbert | c394099 | 2011-11-28 16:33:43 +0000 | [diff] [blame] | 457 | efx_dequeue_buffers(tx_queue, index, &pkts_compl, &bytes_compl); |
| 458 | netdev_tx_completed_queue(tx_queue->core_txq, pkts_compl, bytes_compl); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 459 | |
| 460 | /* See if we need to restart the netif queue. This barrier |
Ben Hutchings | c04bfc6 | 2010-12-10 01:24:16 +0000 | [diff] [blame] | 461 | * separates the update of read_count from the test of the |
| 462 | * queue state. */ |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 463 | smp_mb(); |
Ben Hutchings | c04bfc6 | 2010-12-10 01:24:16 +0000 | [diff] [blame] | 464 | if (unlikely(netif_tx_queue_stopped(tx_queue->core_txq)) && |
Neil Turton | 9d1aea6 | 2011-04-04 13:46:23 +0100 | [diff] [blame] | 465 | likely(efx->port_enabled) && |
Ben Hutchings | e4abce8 | 2011-05-16 18:51:24 +0100 | [diff] [blame] | 466 | likely(netif_device_present(efx->net_dev))) { |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 467 | fill_level = tx_queue->insert_count - tx_queue->read_count; |
Ben Hutchings | 73ba7b6 | 2012-01-09 19:47:08 +0000 | [diff] [blame] | 468 | if (fill_level < EFX_TXQ_THRESHOLD(efx)) |
Ben Hutchings | c04bfc6 | 2010-12-10 01:24:16 +0000 | [diff] [blame] | 469 | netif_tx_wake_queue(tx_queue->core_txq); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 470 | } |
Ben Hutchings | cd38557 | 2010-11-15 23:53:11 +0000 | [diff] [blame] | 471 | |
| 472 | /* Check whether the hardware queue is now empty */ |
| 473 | if ((int)(tx_queue->read_count - tx_queue->old_write_count) >= 0) { |
| 474 | tx_queue->old_write_count = ACCESS_ONCE(tx_queue->write_count); |
| 475 | if (tx_queue->read_count == tx_queue->old_write_count) { |
| 476 | smp_mb(); |
| 477 | tx_queue->empty_read_count = |
| 478 | tx_queue->read_count | EFX_EMPTY_COUNT_VALID; |
| 479 | } |
| 480 | } |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | int efx_probe_tx_queue(struct efx_tx_queue *tx_queue) |
| 484 | { |
| 485 | struct efx_nic *efx = tx_queue->efx; |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 486 | unsigned int entries; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 487 | int i, rc; |
| 488 | |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 489 | /* Create the smallest power-of-two aligned ring */ |
| 490 | entries = max(roundup_pow_of_two(efx->txq_entries), EFX_MIN_DMAQ_SIZE); |
| 491 | EFX_BUG_ON_PARANOID(entries > EFX_MAX_DMAQ_SIZE); |
| 492 | tx_queue->ptr_mask = entries - 1; |
| 493 | |
| 494 | netif_dbg(efx, probe, efx->net_dev, |
| 495 | "creating TX queue %d size %#x mask %#x\n", |
| 496 | tx_queue->queue, efx->txq_entries, tx_queue->ptr_mask); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 497 | |
| 498 | /* Allocate software ring */ |
Thomas Meyer | c2e4e25 | 2011-12-02 12:36:13 +0000 | [diff] [blame] | 499 | tx_queue->buffer = kcalloc(entries, sizeof(*tx_queue->buffer), |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 500 | GFP_KERNEL); |
Ben Hutchings | 60ac106 | 2008-09-01 12:44:59 +0100 | [diff] [blame] | 501 | if (!tx_queue->buffer) |
| 502 | return -ENOMEM; |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 503 | for (i = 0; i <= tx_queue->ptr_mask; ++i) |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 504 | tx_queue->buffer[i].continuation = true; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 505 | |
| 506 | /* Allocate hardware ring */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 507 | rc = efx_nic_probe_tx(tx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 508 | if (rc) |
Ben Hutchings | 60ac106 | 2008-09-01 12:44:59 +0100 | [diff] [blame] | 509 | goto fail; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 510 | |
| 511 | return 0; |
| 512 | |
Ben Hutchings | 60ac106 | 2008-09-01 12:44:59 +0100 | [diff] [blame] | 513 | fail: |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 514 | kfree(tx_queue->buffer); |
| 515 | tx_queue->buffer = NULL; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 516 | return rc; |
| 517 | } |
| 518 | |
Ben Hutchings | bc3c90a | 2008-09-01 12:48:46 +0100 | [diff] [blame] | 519 | void efx_init_tx_queue(struct efx_tx_queue *tx_queue) |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 520 | { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 521 | netif_dbg(tx_queue->efx, drv, tx_queue->efx->net_dev, |
| 522 | "initialising TX queue %d\n", tx_queue->queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 523 | |
| 524 | tx_queue->insert_count = 0; |
| 525 | tx_queue->write_count = 0; |
Ben Hutchings | cd38557 | 2010-11-15 23:53:11 +0000 | [diff] [blame] | 526 | tx_queue->old_write_count = 0; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 527 | tx_queue->read_count = 0; |
| 528 | tx_queue->old_read_count = 0; |
Ben Hutchings | cd38557 | 2010-11-15 23:53:11 +0000 | [diff] [blame] | 529 | tx_queue->empty_read_count = 0 | EFX_EMPTY_COUNT_VALID; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 530 | |
| 531 | /* Set up TX descriptor ring */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 532 | efx_nic_init_tx(tx_queue); |
Ben Hutchings | 94b274b | 2011-01-10 21:18:20 +0000 | [diff] [blame] | 533 | |
| 534 | tx_queue->initialised = true; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 535 | } |
| 536 | |
| 537 | void efx_release_tx_buffers(struct efx_tx_queue *tx_queue) |
| 538 | { |
| 539 | struct efx_tx_buffer *buffer; |
| 540 | |
| 541 | if (!tx_queue->buffer) |
| 542 | return; |
| 543 | |
| 544 | /* Free any buffers left in the ring */ |
| 545 | while (tx_queue->read_count != tx_queue->write_count) { |
Tom Herbert | c394099 | 2011-11-28 16:33:43 +0000 | [diff] [blame] | 546 | unsigned int pkts_compl = 0, bytes_compl = 0; |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 547 | buffer = &tx_queue->buffer[tx_queue->read_count & tx_queue->ptr_mask]; |
Tom Herbert | c394099 | 2011-11-28 16:33:43 +0000 | [diff] [blame] | 548 | efx_dequeue_buffer(tx_queue, buffer, &pkts_compl, &bytes_compl); |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 549 | buffer->continuation = true; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 550 | buffer->len = 0; |
| 551 | |
| 552 | ++tx_queue->read_count; |
| 553 | } |
Tom Herbert | c394099 | 2011-11-28 16:33:43 +0000 | [diff] [blame] | 554 | netdev_tx_reset_queue(tx_queue->core_txq); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 555 | } |
| 556 | |
| 557 | void efx_fini_tx_queue(struct efx_tx_queue *tx_queue) |
| 558 | { |
Ben Hutchings | 94b274b | 2011-01-10 21:18:20 +0000 | [diff] [blame] | 559 | if (!tx_queue->initialised) |
| 560 | return; |
| 561 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 562 | netif_dbg(tx_queue->efx, drv, tx_queue->efx->net_dev, |
| 563 | "shutting down TX queue %d\n", tx_queue->queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 564 | |
Ben Hutchings | 94b274b | 2011-01-10 21:18:20 +0000 | [diff] [blame] | 565 | tx_queue->initialised = false; |
| 566 | |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 567 | /* Flush TX queue, remove descriptor ring */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 568 | efx_nic_fini_tx(tx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 569 | |
| 570 | efx_release_tx_buffers(tx_queue); |
| 571 | |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 572 | /* Free up TSO header cache */ |
| 573 | efx_fini_tso(tx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 574 | } |
| 575 | |
| 576 | void efx_remove_tx_queue(struct efx_tx_queue *tx_queue) |
| 577 | { |
Ben Hutchings | 94b274b | 2011-01-10 21:18:20 +0000 | [diff] [blame] | 578 | if (!tx_queue->buffer) |
| 579 | return; |
| 580 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 581 | netif_dbg(tx_queue->efx, drv, tx_queue->efx->net_dev, |
| 582 | "destroying TX queue %d\n", tx_queue->queue); |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 583 | efx_nic_remove_tx(tx_queue); |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 584 | |
| 585 | kfree(tx_queue->buffer); |
| 586 | tx_queue->buffer = NULL; |
Ben Hutchings | 8ceee66 | 2008-04-27 12:55:59 +0100 | [diff] [blame] | 587 | } |
| 588 | |
| 589 | |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 590 | /* Efx TCP segmentation acceleration. |
| 591 | * |
| 592 | * Why? Because by doing it here in the driver we can go significantly |
| 593 | * faster than the GSO. |
| 594 | * |
| 595 | * Requires TX checksum offload support. |
| 596 | */ |
| 597 | |
| 598 | /* Number of bytes inserted at the start of a TSO header buffer, |
| 599 | * similar to NET_IP_ALIGN. |
| 600 | */ |
Ben Hutchings | 13e9ab1 | 2008-09-01 12:50:28 +0100 | [diff] [blame] | 601 | #ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 602 | #define TSOH_OFFSET 0 |
| 603 | #else |
| 604 | #define TSOH_OFFSET NET_IP_ALIGN |
| 605 | #endif |
| 606 | |
| 607 | #define TSOH_BUFFER(tsoh) ((u8 *)(tsoh + 1) + TSOH_OFFSET) |
| 608 | |
| 609 | /* Total size of struct efx_tso_header, buffer and padding */ |
| 610 | #define TSOH_SIZE(hdr_len) \ |
| 611 | (sizeof(struct efx_tso_header) + TSOH_OFFSET + hdr_len) |
| 612 | |
| 613 | /* Size of blocks on free list. Larger blocks must be allocated from |
| 614 | * the heap. |
| 615 | */ |
| 616 | #define TSOH_STD_SIZE 128 |
| 617 | |
| 618 | #define PTR_DIFF(p1, p2) ((u8 *)(p1) - (u8 *)(p2)) |
| 619 | #define ETH_HDR_LEN(skb) (skb_network_header(skb) - (skb)->data) |
| 620 | #define SKB_TCP_OFF(skb) PTR_DIFF(tcp_hdr(skb), (skb)->data) |
| 621 | #define SKB_IPV4_OFF(skb) PTR_DIFF(ip_hdr(skb), (skb)->data) |
Ben Hutchings | 738a8f4 | 2009-11-29 15:16:05 +0000 | [diff] [blame] | 622 | #define SKB_IPV6_OFF(skb) PTR_DIFF(ipv6_hdr(skb), (skb)->data) |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 623 | |
| 624 | /** |
| 625 | * struct tso_state - TSO state for an SKB |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 626 | * @out_len: Remaining length in current segment |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 627 | * @seqnum: Current sequence number |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 628 | * @ipv4_id: Current IPv4 ID, host endian |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 629 | * @packet_space: Remaining space in current packet |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 630 | * @dma_addr: DMA address of current position |
| 631 | * @in_len: Remaining length in current SKB fragment |
| 632 | * @unmap_len: Length of SKB fragment |
| 633 | * @unmap_addr: DMA address of SKB fragment |
| 634 | * @unmap_single: DMA single vs page mapping flag |
Ben Hutchings | 738a8f4 | 2009-11-29 15:16:05 +0000 | [diff] [blame] | 635 | * @protocol: Network protocol (after any VLAN header) |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 636 | * @header_len: Number of bytes of header |
| 637 | * @full_packet_size: Number of bytes to put in each outgoing segment |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 638 | * |
| 639 | * The state used during segmentation. It is put into this data structure |
| 640 | * just to make it easy to pass into inline functions. |
| 641 | */ |
| 642 | struct tso_state { |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 643 | /* Output position */ |
| 644 | unsigned out_len; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 645 | unsigned seqnum; |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 646 | unsigned ipv4_id; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 647 | unsigned packet_space; |
| 648 | |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 649 | /* Input position */ |
| 650 | dma_addr_t dma_addr; |
| 651 | unsigned in_len; |
| 652 | unsigned unmap_len; |
| 653 | dma_addr_t unmap_addr; |
| 654 | bool unmap_single; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 655 | |
Ben Hutchings | 738a8f4 | 2009-11-29 15:16:05 +0000 | [diff] [blame] | 656 | __be16 protocol; |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 657 | unsigned header_len; |
| 658 | int full_packet_size; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 659 | }; |
| 660 | |
| 661 | |
| 662 | /* |
| 663 | * Verify that our various assumptions about sk_buffs and the conditions |
Ben Hutchings | 738a8f4 | 2009-11-29 15:16:05 +0000 | [diff] [blame] | 664 | * under which TSO will be attempted hold true. Return the protocol number. |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 665 | */ |
Ben Hutchings | 738a8f4 | 2009-11-29 15:16:05 +0000 | [diff] [blame] | 666 | static __be16 efx_tso_check_protocol(struct sk_buff *skb) |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 667 | { |
Ben Hutchings | 740847d | 2008-09-01 12:48:23 +0100 | [diff] [blame] | 668 | __be16 protocol = skb->protocol; |
| 669 | |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 670 | EFX_BUG_ON_PARANOID(((struct ethhdr *)skb->data)->h_proto != |
Ben Hutchings | 740847d | 2008-09-01 12:48:23 +0100 | [diff] [blame] | 671 | protocol); |
| 672 | if (protocol == htons(ETH_P_8021Q)) { |
| 673 | /* Find the encapsulated protocol; reset network header |
| 674 | * and transport header based on that. */ |
| 675 | struct vlan_ethhdr *veh = (struct vlan_ethhdr *)skb->data; |
| 676 | protocol = veh->h_vlan_encapsulated_proto; |
| 677 | skb_set_network_header(skb, sizeof(*veh)); |
| 678 | if (protocol == htons(ETH_P_IP)) |
| 679 | skb_set_transport_header(skb, sizeof(*veh) + |
| 680 | 4 * ip_hdr(skb)->ihl); |
Ben Hutchings | 738a8f4 | 2009-11-29 15:16:05 +0000 | [diff] [blame] | 681 | else if (protocol == htons(ETH_P_IPV6)) |
| 682 | skb_set_transport_header(skb, sizeof(*veh) + |
| 683 | sizeof(struct ipv6hdr)); |
Ben Hutchings | 740847d | 2008-09-01 12:48:23 +0100 | [diff] [blame] | 684 | } |
| 685 | |
Ben Hutchings | 738a8f4 | 2009-11-29 15:16:05 +0000 | [diff] [blame] | 686 | if (protocol == htons(ETH_P_IP)) { |
| 687 | EFX_BUG_ON_PARANOID(ip_hdr(skb)->protocol != IPPROTO_TCP); |
| 688 | } else { |
| 689 | EFX_BUG_ON_PARANOID(protocol != htons(ETH_P_IPV6)); |
| 690 | EFX_BUG_ON_PARANOID(ipv6_hdr(skb)->nexthdr != NEXTHDR_TCP); |
| 691 | } |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 692 | EFX_BUG_ON_PARANOID((PTR_DIFF(tcp_hdr(skb), skb->data) |
| 693 | + (tcp_hdr(skb)->doff << 2u)) > |
| 694 | skb_headlen(skb)); |
Ben Hutchings | 738a8f4 | 2009-11-29 15:16:05 +0000 | [diff] [blame] | 695 | |
| 696 | return protocol; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 697 | } |
| 698 | |
| 699 | |
| 700 | /* |
| 701 | * Allocate a page worth of efx_tso_header structures, and string them |
| 702 | * into the tx_queue->tso_headers_free linked list. Return 0 or -ENOMEM. |
| 703 | */ |
| 704 | static int efx_tsoh_block_alloc(struct efx_tx_queue *tx_queue) |
| 705 | { |
| 706 | |
| 707 | struct pci_dev *pci_dev = tx_queue->efx->pci_dev; |
| 708 | struct efx_tso_header *tsoh; |
| 709 | dma_addr_t dma_addr; |
| 710 | u8 *base_kva, *kva; |
| 711 | |
| 712 | base_kva = pci_alloc_consistent(pci_dev, PAGE_SIZE, &dma_addr); |
| 713 | if (base_kva == NULL) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 714 | netif_err(tx_queue->efx, tx_err, tx_queue->efx->net_dev, |
| 715 | "Unable to allocate page for TSO headers\n"); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 716 | return -ENOMEM; |
| 717 | } |
| 718 | |
| 719 | /* pci_alloc_consistent() allocates pages. */ |
| 720 | EFX_BUG_ON_PARANOID(dma_addr & (PAGE_SIZE - 1u)); |
| 721 | |
| 722 | for (kva = base_kva; kva < base_kva + PAGE_SIZE; kva += TSOH_STD_SIZE) { |
| 723 | tsoh = (struct efx_tso_header *)kva; |
| 724 | tsoh->dma_addr = dma_addr + (TSOH_BUFFER(tsoh) - base_kva); |
| 725 | tsoh->next = tx_queue->tso_headers_free; |
| 726 | tx_queue->tso_headers_free = tsoh; |
| 727 | } |
| 728 | |
| 729 | return 0; |
| 730 | } |
| 731 | |
| 732 | |
| 733 | /* Free up a TSO header, and all others in the same page. */ |
| 734 | static void efx_tsoh_block_free(struct efx_tx_queue *tx_queue, |
| 735 | struct efx_tso_header *tsoh, |
| 736 | struct pci_dev *pci_dev) |
| 737 | { |
| 738 | struct efx_tso_header **p; |
| 739 | unsigned long base_kva; |
| 740 | dma_addr_t base_dma; |
| 741 | |
| 742 | base_kva = (unsigned long)tsoh & PAGE_MASK; |
| 743 | base_dma = tsoh->dma_addr & PAGE_MASK; |
| 744 | |
| 745 | p = &tx_queue->tso_headers_free; |
Ben Hutchings | b347564 | 2008-05-16 21:15:49 +0100 | [diff] [blame] | 746 | while (*p != NULL) { |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 747 | if (((unsigned long)*p & PAGE_MASK) == base_kva) |
| 748 | *p = (*p)->next; |
| 749 | else |
| 750 | p = &(*p)->next; |
Ben Hutchings | b347564 | 2008-05-16 21:15:49 +0100 | [diff] [blame] | 751 | } |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 752 | |
| 753 | pci_free_consistent(pci_dev, PAGE_SIZE, (void *)base_kva, base_dma); |
| 754 | } |
| 755 | |
| 756 | static struct efx_tso_header * |
| 757 | efx_tsoh_heap_alloc(struct efx_tx_queue *tx_queue, size_t header_len) |
| 758 | { |
| 759 | struct efx_tso_header *tsoh; |
| 760 | |
| 761 | tsoh = kmalloc(TSOH_SIZE(header_len), GFP_ATOMIC | GFP_DMA); |
| 762 | if (unlikely(!tsoh)) |
| 763 | return NULL; |
| 764 | |
| 765 | tsoh->dma_addr = pci_map_single(tx_queue->efx->pci_dev, |
| 766 | TSOH_BUFFER(tsoh), header_len, |
| 767 | PCI_DMA_TODEVICE); |
FUJITA Tomonori | 8d8bb39 | 2008-07-25 19:44:49 -0700 | [diff] [blame] | 768 | if (unlikely(pci_dma_mapping_error(tx_queue->efx->pci_dev, |
| 769 | tsoh->dma_addr))) { |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 770 | kfree(tsoh); |
| 771 | return NULL; |
| 772 | } |
| 773 | |
| 774 | tsoh->unmap_len = header_len; |
| 775 | return tsoh; |
| 776 | } |
| 777 | |
| 778 | static void |
| 779 | efx_tsoh_heap_free(struct efx_tx_queue *tx_queue, struct efx_tso_header *tsoh) |
| 780 | { |
| 781 | pci_unmap_single(tx_queue->efx->pci_dev, |
| 782 | tsoh->dma_addr, tsoh->unmap_len, |
| 783 | PCI_DMA_TODEVICE); |
| 784 | kfree(tsoh); |
| 785 | } |
| 786 | |
| 787 | /** |
| 788 | * efx_tx_queue_insert - push descriptors onto the TX queue |
| 789 | * @tx_queue: Efx TX queue |
| 790 | * @dma_addr: DMA address of fragment |
| 791 | * @len: Length of fragment |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 792 | * @final_buffer: The final buffer inserted into the queue |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 793 | * |
| 794 | * Push descriptors onto the TX queue. Return 0 on success or 1 if |
| 795 | * @tx_queue full. |
| 796 | */ |
| 797 | static int efx_tx_queue_insert(struct efx_tx_queue *tx_queue, |
| 798 | dma_addr_t dma_addr, unsigned len, |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 799 | struct efx_tx_buffer **final_buffer) |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 800 | { |
| 801 | struct efx_tx_buffer *buffer; |
| 802 | struct efx_nic *efx = tx_queue->efx; |
Ben Hutchings | 63f1988 | 2009-10-23 08:31:20 +0000 | [diff] [blame] | 803 | unsigned dma_len, fill_level, insert_ptr; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 804 | int q_space; |
| 805 | |
| 806 | EFX_BUG_ON_PARANOID(len <= 0); |
| 807 | |
| 808 | fill_level = tx_queue->insert_count - tx_queue->old_read_count; |
| 809 | /* -1 as there is no way to represent all descriptors used */ |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 810 | q_space = efx->txq_entries - 1 - fill_level; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 811 | |
| 812 | while (1) { |
| 813 | if (unlikely(q_space-- <= 0)) { |
| 814 | /* It might be that completions have happened |
| 815 | * since the xmit path last checked. Update |
| 816 | * the xmit path's copy of read_count. |
| 817 | */ |
Ben Hutchings | c04bfc6 | 2010-12-10 01:24:16 +0000 | [diff] [blame] | 818 | netif_tx_stop_queue(tx_queue->core_txq); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 819 | /* This memory barrier protects the change of |
Ben Hutchings | c04bfc6 | 2010-12-10 01:24:16 +0000 | [diff] [blame] | 820 | * queue state from the access of read_count. */ |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 821 | smp_mb(); |
| 822 | tx_queue->old_read_count = |
Ben Hutchings | 51c56f4 | 2010-11-10 18:46:40 +0000 | [diff] [blame] | 823 | ACCESS_ONCE(tx_queue->read_count); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 824 | fill_level = (tx_queue->insert_count |
| 825 | - tx_queue->old_read_count); |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 826 | q_space = efx->txq_entries - 1 - fill_level; |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 827 | if (unlikely(q_space-- <= 0)) { |
| 828 | *final_buffer = NULL; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 829 | return 1; |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 830 | } |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 831 | smp_mb(); |
Ben Hutchings | c04bfc6 | 2010-12-10 01:24:16 +0000 | [diff] [blame] | 832 | netif_tx_start_queue(tx_queue->core_txq); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 833 | } |
| 834 | |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 835 | insert_ptr = tx_queue->insert_count & tx_queue->ptr_mask; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 836 | buffer = &tx_queue->buffer[insert_ptr]; |
| 837 | ++tx_queue->insert_count; |
| 838 | |
| 839 | EFX_BUG_ON_PARANOID(tx_queue->insert_count - |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 840 | tx_queue->read_count >= |
| 841 | efx->txq_entries); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 842 | |
| 843 | efx_tsoh_free(tx_queue, buffer); |
| 844 | EFX_BUG_ON_PARANOID(buffer->len); |
| 845 | EFX_BUG_ON_PARANOID(buffer->unmap_len); |
| 846 | EFX_BUG_ON_PARANOID(buffer->skb); |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 847 | EFX_BUG_ON_PARANOID(!buffer->continuation); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 848 | EFX_BUG_ON_PARANOID(buffer->tsoh); |
| 849 | |
| 850 | buffer->dma_addr = dma_addr; |
| 851 | |
Ben Hutchings | 63f1988 | 2009-10-23 08:31:20 +0000 | [diff] [blame] | 852 | dma_len = efx_max_tx_len(efx, dma_addr); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 853 | |
| 854 | /* If there is enough space to send then do so */ |
| 855 | if (dma_len >= len) |
| 856 | break; |
| 857 | |
| 858 | buffer->len = dma_len; /* Don't set the other members */ |
| 859 | dma_addr += dma_len; |
| 860 | len -= dma_len; |
| 861 | } |
| 862 | |
| 863 | EFX_BUG_ON_PARANOID(!len); |
| 864 | buffer->len = len; |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 865 | *final_buffer = buffer; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 866 | return 0; |
| 867 | } |
| 868 | |
| 869 | |
| 870 | /* |
| 871 | * Put a TSO header into the TX queue. |
| 872 | * |
| 873 | * This is special-cased because we know that it is small enough to fit in |
| 874 | * a single fragment, and we know it doesn't cross a page boundary. It |
| 875 | * also allows us to not worry about end-of-packet etc. |
| 876 | */ |
Ben Hutchings | 4d56606 | 2008-09-01 12:47:12 +0100 | [diff] [blame] | 877 | static void efx_tso_put_header(struct efx_tx_queue *tx_queue, |
| 878 | struct efx_tso_header *tsoh, unsigned len) |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 879 | { |
| 880 | struct efx_tx_buffer *buffer; |
| 881 | |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 882 | buffer = &tx_queue->buffer[tx_queue->insert_count & tx_queue->ptr_mask]; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 883 | efx_tsoh_free(tx_queue, buffer); |
| 884 | EFX_BUG_ON_PARANOID(buffer->len); |
| 885 | EFX_BUG_ON_PARANOID(buffer->unmap_len); |
| 886 | EFX_BUG_ON_PARANOID(buffer->skb); |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 887 | EFX_BUG_ON_PARANOID(!buffer->continuation); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 888 | EFX_BUG_ON_PARANOID(buffer->tsoh); |
| 889 | buffer->len = len; |
| 890 | buffer->dma_addr = tsoh->dma_addr; |
| 891 | buffer->tsoh = tsoh; |
| 892 | |
| 893 | ++tx_queue->insert_count; |
| 894 | } |
| 895 | |
| 896 | |
| 897 | /* Remove descriptors put into a tx_queue. */ |
| 898 | static void efx_enqueue_unwind(struct efx_tx_queue *tx_queue) |
| 899 | { |
| 900 | struct efx_tx_buffer *buffer; |
Ben Hutchings | cc12dac | 2008-09-01 12:46:43 +0100 | [diff] [blame] | 901 | dma_addr_t unmap_addr; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 902 | |
| 903 | /* Work backwards until we hit the original insert pointer value */ |
| 904 | while (tx_queue->insert_count != tx_queue->write_count) { |
| 905 | --tx_queue->insert_count; |
| 906 | buffer = &tx_queue->buffer[tx_queue->insert_count & |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 907 | tx_queue->ptr_mask]; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 908 | efx_tsoh_free(tx_queue, buffer); |
| 909 | EFX_BUG_ON_PARANOID(buffer->skb); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 910 | if (buffer->unmap_len) { |
Ben Hutchings | cc12dac | 2008-09-01 12:46:43 +0100 | [diff] [blame] | 911 | unmap_addr = (buffer->dma_addr + buffer->len - |
| 912 | buffer->unmap_len); |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 913 | if (buffer->unmap_single) |
| 914 | pci_unmap_single(tx_queue->efx->pci_dev, |
Ben Hutchings | cc12dac | 2008-09-01 12:46:43 +0100 | [diff] [blame] | 915 | unmap_addr, buffer->unmap_len, |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 916 | PCI_DMA_TODEVICE); |
| 917 | else |
| 918 | pci_unmap_page(tx_queue->efx->pci_dev, |
Ben Hutchings | cc12dac | 2008-09-01 12:46:43 +0100 | [diff] [blame] | 919 | unmap_addr, buffer->unmap_len, |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 920 | PCI_DMA_TODEVICE); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 921 | buffer->unmap_len = 0; |
| 922 | } |
Neil Turton | a7ebd27 | 2009-12-23 13:47:13 +0000 | [diff] [blame] | 923 | buffer->len = 0; |
| 924 | buffer->continuation = true; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 925 | } |
| 926 | } |
| 927 | |
| 928 | |
| 929 | /* Parse the SKB header and initialise state. */ |
Ben Hutchings | 4d56606 | 2008-09-01 12:47:12 +0100 | [diff] [blame] | 930 | static void tso_start(struct tso_state *st, const struct sk_buff *skb) |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 931 | { |
| 932 | /* All ethernet/IP/TCP headers combined size is TCP header size |
| 933 | * plus offset of TCP header relative to start of packet. |
| 934 | */ |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 935 | st->header_len = ((tcp_hdr(skb)->doff << 2u) |
| 936 | + PTR_DIFF(tcp_hdr(skb), skb->data)); |
| 937 | st->full_packet_size = st->header_len + skb_shinfo(skb)->gso_size; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 938 | |
Ben Hutchings | 738a8f4 | 2009-11-29 15:16:05 +0000 | [diff] [blame] | 939 | if (st->protocol == htons(ETH_P_IP)) |
| 940 | st->ipv4_id = ntohs(ip_hdr(skb)->id); |
| 941 | else |
| 942 | st->ipv4_id = 0; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 943 | st->seqnum = ntohl(tcp_hdr(skb)->seq); |
| 944 | |
| 945 | EFX_BUG_ON_PARANOID(tcp_hdr(skb)->urg); |
| 946 | EFX_BUG_ON_PARANOID(tcp_hdr(skb)->syn); |
| 947 | EFX_BUG_ON_PARANOID(tcp_hdr(skb)->rst); |
| 948 | |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 949 | st->packet_space = st->full_packet_size; |
| 950 | st->out_len = skb->len - st->header_len; |
| 951 | st->unmap_len = 0; |
| 952 | st->unmap_single = false; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 953 | } |
| 954 | |
Ben Hutchings | 4d56606 | 2008-09-01 12:47:12 +0100 | [diff] [blame] | 955 | static int tso_get_fragment(struct tso_state *st, struct efx_nic *efx, |
| 956 | skb_frag_t *frag) |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 957 | { |
Ian Campbell | 4a22c4c | 2011-09-21 21:53:16 +0000 | [diff] [blame] | 958 | st->unmap_addr = skb_frag_dma_map(&efx->pci_dev->dev, frag, 0, |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 959 | skb_frag_size(frag), DMA_TO_DEVICE); |
Ian Campbell | 5d6bcdf | 2011-10-06 11:10:48 +0100 | [diff] [blame] | 960 | if (likely(!dma_mapping_error(&efx->pci_dev->dev, st->unmap_addr))) { |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 961 | st->unmap_single = false; |
Eric Dumazet | 9e903e0 | 2011-10-18 21:00:24 +0000 | [diff] [blame] | 962 | st->unmap_len = skb_frag_size(frag); |
| 963 | st->in_len = skb_frag_size(frag); |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 964 | st->dma_addr = st->unmap_addr; |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 965 | return 0; |
| 966 | } |
| 967 | return -ENOMEM; |
| 968 | } |
| 969 | |
Ben Hutchings | 4d56606 | 2008-09-01 12:47:12 +0100 | [diff] [blame] | 970 | static int tso_get_head_fragment(struct tso_state *st, struct efx_nic *efx, |
| 971 | const struct sk_buff *skb) |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 972 | { |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 973 | int hl = st->header_len; |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 974 | int len = skb_headlen(skb) - hl; |
| 975 | |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 976 | st->unmap_addr = pci_map_single(efx->pci_dev, skb->data + hl, |
| 977 | len, PCI_DMA_TODEVICE); |
| 978 | if (likely(!pci_dma_mapping_error(efx->pci_dev, st->unmap_addr))) { |
| 979 | st->unmap_single = true; |
| 980 | st->unmap_len = len; |
| 981 | st->in_len = len; |
| 982 | st->dma_addr = st->unmap_addr; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 983 | return 0; |
| 984 | } |
| 985 | return -ENOMEM; |
| 986 | } |
| 987 | |
| 988 | |
| 989 | /** |
| 990 | * tso_fill_packet_with_fragment - form descriptors for the current fragment |
| 991 | * @tx_queue: Efx TX queue |
| 992 | * @skb: Socket buffer |
| 993 | * @st: TSO state |
| 994 | * |
| 995 | * Form descriptors for the current fragment, until we reach the end |
| 996 | * of fragment or end-of-packet. Return 0 on success, 1 if not enough |
| 997 | * space in @tx_queue. |
| 998 | */ |
Ben Hutchings | 4d56606 | 2008-09-01 12:47:12 +0100 | [diff] [blame] | 999 | static int tso_fill_packet_with_fragment(struct efx_tx_queue *tx_queue, |
| 1000 | const struct sk_buff *skb, |
| 1001 | struct tso_state *st) |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1002 | { |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 1003 | struct efx_tx_buffer *buffer; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1004 | int n, end_of_packet, rc; |
| 1005 | |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1006 | if (st->in_len == 0) |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1007 | return 0; |
| 1008 | if (st->packet_space == 0) |
| 1009 | return 0; |
| 1010 | |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1011 | EFX_BUG_ON_PARANOID(st->in_len <= 0); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1012 | EFX_BUG_ON_PARANOID(st->packet_space <= 0); |
| 1013 | |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1014 | n = min(st->in_len, st->packet_space); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1015 | |
| 1016 | st->packet_space -= n; |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1017 | st->out_len -= n; |
| 1018 | st->in_len -= n; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1019 | |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1020 | rc = efx_tx_queue_insert(tx_queue, st->dma_addr, n, &buffer); |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 1021 | if (likely(rc == 0)) { |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1022 | if (st->out_len == 0) |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 1023 | /* Transfer ownership of the skb */ |
| 1024 | buffer->skb = skb; |
| 1025 | |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1026 | end_of_packet = st->out_len == 0 || st->packet_space == 0; |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 1027 | buffer->continuation = !end_of_packet; |
| 1028 | |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1029 | if (st->in_len == 0) { |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 1030 | /* Transfer ownership of the pci mapping */ |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1031 | buffer->unmap_len = st->unmap_len; |
| 1032 | buffer->unmap_single = st->unmap_single; |
| 1033 | st->unmap_len = 0; |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 1034 | } |
| 1035 | } |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1036 | |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1037 | st->dma_addr += n; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1038 | return rc; |
| 1039 | } |
| 1040 | |
| 1041 | |
| 1042 | /** |
| 1043 | * tso_start_new_packet - generate a new header and prepare for the new packet |
| 1044 | * @tx_queue: Efx TX queue |
| 1045 | * @skb: Socket buffer |
| 1046 | * @st: TSO state |
| 1047 | * |
| 1048 | * Generate a new header and prepare for the new packet. Return 0 on |
| 1049 | * success, or -1 if failed to alloc header. |
| 1050 | */ |
Ben Hutchings | 4d56606 | 2008-09-01 12:47:12 +0100 | [diff] [blame] | 1051 | static int tso_start_new_packet(struct efx_tx_queue *tx_queue, |
| 1052 | const struct sk_buff *skb, |
| 1053 | struct tso_state *st) |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1054 | { |
| 1055 | struct efx_tso_header *tsoh; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1056 | struct tcphdr *tsoh_th; |
| 1057 | unsigned ip_length; |
| 1058 | u8 *header; |
| 1059 | |
| 1060 | /* Allocate a DMA-mapped header buffer. */ |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1061 | if (likely(TSOH_SIZE(st->header_len) <= TSOH_STD_SIZE)) { |
Ben Hutchings | b347564 | 2008-05-16 21:15:49 +0100 | [diff] [blame] | 1062 | if (tx_queue->tso_headers_free == NULL) { |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1063 | if (efx_tsoh_block_alloc(tx_queue)) |
| 1064 | return -1; |
Ben Hutchings | b347564 | 2008-05-16 21:15:49 +0100 | [diff] [blame] | 1065 | } |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1066 | EFX_BUG_ON_PARANOID(!tx_queue->tso_headers_free); |
| 1067 | tsoh = tx_queue->tso_headers_free; |
| 1068 | tx_queue->tso_headers_free = tsoh->next; |
| 1069 | tsoh->unmap_len = 0; |
| 1070 | } else { |
| 1071 | tx_queue->tso_long_headers++; |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1072 | tsoh = efx_tsoh_heap_alloc(tx_queue, st->header_len); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1073 | if (unlikely(!tsoh)) |
| 1074 | return -1; |
| 1075 | } |
| 1076 | |
| 1077 | header = TSOH_BUFFER(tsoh); |
| 1078 | tsoh_th = (struct tcphdr *)(header + SKB_TCP_OFF(skb)); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1079 | |
| 1080 | /* Copy and update the headers. */ |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1081 | memcpy(header, skb->data, st->header_len); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1082 | |
| 1083 | tsoh_th->seq = htonl(st->seqnum); |
| 1084 | st->seqnum += skb_shinfo(skb)->gso_size; |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1085 | if (st->out_len > skb_shinfo(skb)->gso_size) { |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1086 | /* This packet will not finish the TSO burst. */ |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1087 | ip_length = st->full_packet_size - ETH_HDR_LEN(skb); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1088 | tsoh_th->fin = 0; |
| 1089 | tsoh_th->psh = 0; |
| 1090 | } else { |
| 1091 | /* This packet will be the last in the TSO burst. */ |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1092 | ip_length = st->header_len - ETH_HDR_LEN(skb) + st->out_len; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1093 | tsoh_th->fin = tcp_hdr(skb)->fin; |
| 1094 | tsoh_th->psh = tcp_hdr(skb)->psh; |
| 1095 | } |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1096 | |
Ben Hutchings | 738a8f4 | 2009-11-29 15:16:05 +0000 | [diff] [blame] | 1097 | if (st->protocol == htons(ETH_P_IP)) { |
| 1098 | struct iphdr *tsoh_iph = |
| 1099 | (struct iphdr *)(header + SKB_IPV4_OFF(skb)); |
| 1100 | |
| 1101 | tsoh_iph->tot_len = htons(ip_length); |
| 1102 | |
| 1103 | /* Linux leaves suitable gaps in the IP ID space for us to fill. */ |
| 1104 | tsoh_iph->id = htons(st->ipv4_id); |
| 1105 | st->ipv4_id++; |
| 1106 | } else { |
| 1107 | struct ipv6hdr *tsoh_iph = |
| 1108 | (struct ipv6hdr *)(header + SKB_IPV6_OFF(skb)); |
| 1109 | |
| 1110 | tsoh_iph->payload_len = htons(ip_length - sizeof(*tsoh_iph)); |
| 1111 | } |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1112 | |
| 1113 | st->packet_space = skb_shinfo(skb)->gso_size; |
| 1114 | ++tx_queue->tso_packets; |
| 1115 | |
| 1116 | /* Form a descriptor for this header. */ |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1117 | efx_tso_put_header(tx_queue, tsoh, st->header_len); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1118 | |
| 1119 | return 0; |
| 1120 | } |
| 1121 | |
| 1122 | |
| 1123 | /** |
| 1124 | * efx_enqueue_skb_tso - segment and transmit a TSO socket buffer |
| 1125 | * @tx_queue: Efx TX queue |
| 1126 | * @skb: Socket buffer |
| 1127 | * |
| 1128 | * Context: You must hold netif_tx_lock() to call this function. |
| 1129 | * |
| 1130 | * Add socket buffer @skb to @tx_queue, doing TSO or return != 0 if |
| 1131 | * @skb was not enqueued. In all cases @skb is consumed. Return |
| 1132 | * %NETDEV_TX_OK or %NETDEV_TX_BUSY. |
| 1133 | */ |
| 1134 | static int efx_enqueue_skb_tso(struct efx_tx_queue *tx_queue, |
Ben Hutchings | 740847d | 2008-09-01 12:48:23 +0100 | [diff] [blame] | 1135 | struct sk_buff *skb) |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1136 | { |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 1137 | struct efx_nic *efx = tx_queue->efx; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1138 | int frag_i, rc, rc2 = NETDEV_TX_OK; |
| 1139 | struct tso_state state; |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1140 | |
Ben Hutchings | 738a8f4 | 2009-11-29 15:16:05 +0000 | [diff] [blame] | 1141 | /* Find the packet protocol and sanity-check it */ |
| 1142 | state.protocol = efx_tso_check_protocol(skb); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1143 | |
| 1144 | EFX_BUG_ON_PARANOID(tx_queue->write_count != tx_queue->insert_count); |
| 1145 | |
| 1146 | tso_start(&state, skb); |
| 1147 | |
| 1148 | /* Assume that skb header area contains exactly the headers, and |
| 1149 | * all payload is in the frag list. |
| 1150 | */ |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1151 | if (skb_headlen(skb) == state.header_len) { |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1152 | /* Grab the first payload fragment. */ |
| 1153 | EFX_BUG_ON_PARANOID(skb_shinfo(skb)->nr_frags < 1); |
| 1154 | frag_i = 0; |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 1155 | rc = tso_get_fragment(&state, efx, |
| 1156 | skb_shinfo(skb)->frags + frag_i); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1157 | if (rc) |
| 1158 | goto mem_err; |
| 1159 | } else { |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 1160 | rc = tso_get_head_fragment(&state, efx, skb); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1161 | if (rc) |
| 1162 | goto mem_err; |
| 1163 | frag_i = -1; |
| 1164 | } |
| 1165 | |
| 1166 | if (tso_start_new_packet(tx_queue, skb, &state) < 0) |
| 1167 | goto mem_err; |
| 1168 | |
| 1169 | while (1) { |
| 1170 | rc = tso_fill_packet_with_fragment(tx_queue, skb, &state); |
Ben Hutchings | c04bfc6 | 2010-12-10 01:24:16 +0000 | [diff] [blame] | 1171 | if (unlikely(rc)) { |
| 1172 | rc2 = NETDEV_TX_BUSY; |
| 1173 | goto unwind; |
| 1174 | } |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1175 | |
| 1176 | /* Move onto the next fragment? */ |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1177 | if (state.in_len == 0) { |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1178 | if (++frag_i >= skb_shinfo(skb)->nr_frags) |
| 1179 | /* End of payload reached. */ |
| 1180 | break; |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 1181 | rc = tso_get_fragment(&state, efx, |
| 1182 | skb_shinfo(skb)->frags + frag_i); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1183 | if (rc) |
| 1184 | goto mem_err; |
| 1185 | } |
| 1186 | |
| 1187 | /* Start at new packet? */ |
| 1188 | if (state.packet_space == 0 && |
| 1189 | tso_start_new_packet(tx_queue, skb, &state) < 0) |
| 1190 | goto mem_err; |
| 1191 | } |
| 1192 | |
Eric Dumazet | 449fa02 | 2011-11-30 17:12:27 -0500 | [diff] [blame] | 1193 | netdev_tx_sent_queue(tx_queue->core_txq, skb->len); |
| 1194 | |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1195 | /* Pass off to hardware */ |
Ben Hutchings | 152b6a6 | 2009-11-29 03:43:56 +0000 | [diff] [blame] | 1196 | efx_nic_push_buffers(tx_queue); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1197 | |
| 1198 | tx_queue->tso_bursts++; |
| 1199 | return NETDEV_TX_OK; |
| 1200 | |
| 1201 | mem_err: |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 1202 | netif_err(efx, tx_err, efx->net_dev, |
| 1203 | "Out of memory for TSO headers, or PCI mapping error\n"); |
Ben Hutchings | 9bc183d | 2009-11-23 16:06:47 +0000 | [diff] [blame] | 1204 | dev_kfree_skb_any(skb); |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1205 | |
| 1206 | unwind: |
Ben Hutchings | 5988b63 | 2008-09-01 12:46:36 +0100 | [diff] [blame] | 1207 | /* Free the DMA mapping we were in the process of writing out */ |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1208 | if (state.unmap_len) { |
| 1209 | if (state.unmap_single) |
| 1210 | pci_unmap_single(efx->pci_dev, state.unmap_addr, |
| 1211 | state.unmap_len, PCI_DMA_TODEVICE); |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 1212 | else |
Ben Hutchings | 23d9e60 | 2008-09-01 12:47:02 +0100 | [diff] [blame] | 1213 | pci_unmap_page(efx->pci_dev, state.unmap_addr, |
| 1214 | state.unmap_len, PCI_DMA_TODEVICE); |
Ben Hutchings | ecbd95c | 2008-09-01 12:46:40 +0100 | [diff] [blame] | 1215 | } |
Ben Hutchings | 5988b63 | 2008-09-01 12:46:36 +0100 | [diff] [blame] | 1216 | |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1217 | efx_enqueue_unwind(tx_queue); |
| 1218 | return rc2; |
| 1219 | } |
| 1220 | |
| 1221 | |
| 1222 | /* |
| 1223 | * Free up all TSO datastructures associated with tx_queue. This |
| 1224 | * routine should be called only once the tx_queue is both empty and |
| 1225 | * will no longer be used. |
| 1226 | */ |
| 1227 | static void efx_fini_tso(struct efx_tx_queue *tx_queue) |
| 1228 | { |
| 1229 | unsigned i; |
| 1230 | |
Ben Hutchings | b347564 | 2008-05-16 21:15:49 +0100 | [diff] [blame] | 1231 | if (tx_queue->buffer) { |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 1232 | for (i = 0; i <= tx_queue->ptr_mask; ++i) |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1233 | efx_tsoh_free(tx_queue, &tx_queue->buffer[i]); |
Ben Hutchings | b347564 | 2008-05-16 21:15:49 +0100 | [diff] [blame] | 1234 | } |
Ben Hutchings | b9b39b6 | 2008-05-07 12:51:12 +0100 | [diff] [blame] | 1235 | |
| 1236 | while (tx_queue->tso_headers_free != NULL) |
| 1237 | efx_tsoh_block_free(tx_queue, tx_queue->tso_headers_free, |
| 1238 | tx_queue->efx->pci_dev); |
| 1239 | } |