blob: 507c53d4e09cf593560e8952eb1df785a0da9103 [file] [log] [blame]
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001/*
2 * Linux driver for VMware's vmxnet3 ethernet NIC.
3 *
Shrikrishna Khare190af102016-06-16 10:51:53 -07004 * Copyright (C) 2008-2016, VMware, Inc. All Rights Reserved.
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; version 2 of the License and no later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
13 * NON INFRINGEMENT. See the GNU General Public License for more
14 * details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 * The full GNU General Public License is included in this distribution in
21 * the file called "COPYING".
22 *
Shrikrishna Khare190af102016-06-16 10:51:53 -070023 * Maintained by: pv-drivers@vmware.com
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070024 *
25 */
26
Paul Gortmaker9d9779e2011-07-03 15:21:01 -040027#include <linux/module.h>
Stephen Rothwellb038b042009-11-17 23:04:59 -080028#include <net/ip6_checksum.h>
29
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070030#include "vmxnet3_int.h"
31
32char vmxnet3_driver_name[] = "vmxnet3";
33#define VMXNET3_DRIVER_DESC "VMware vmxnet3 virtual NIC driver"
34
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070035/*
36 * PCI Device ID Table
37 * Last entry must be all 0s
38 */
Benoit Taine9baa3c32014-08-08 15:56:03 +020039static const struct pci_device_id vmxnet3_pciid_table[] = {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070040 {PCI_VDEVICE(VMWARE, PCI_DEVICE_ID_VMWARE_VMXNET3)},
41 {0}
42};
43
44MODULE_DEVICE_TABLE(pci, vmxnet3_pciid_table);
45
Shreyas Bhatewara09c50882010-11-19 10:55:24 +000046static int enable_mq = 1;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070047
Shreyas Bhatewaraf9f25022011-01-14 14:59:31 +000048static void
49vmxnet3_write_mac_addr(struct vmxnet3_adapter *adapter, u8 *mac);
50
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070051/*
52 * Enable/Disable the given intr
53 */
54static void
55vmxnet3_enable_intr(struct vmxnet3_adapter *adapter, unsigned intr_idx)
56{
57 VMXNET3_WRITE_BAR0_REG(adapter, VMXNET3_REG_IMR + intr_idx * 8, 0);
58}
59
60
61static void
62vmxnet3_disable_intr(struct vmxnet3_adapter *adapter, unsigned intr_idx)
63{
64 VMXNET3_WRITE_BAR0_REG(adapter, VMXNET3_REG_IMR + intr_idx * 8, 1);
65}
66
67
68/*
69 * Enable/Disable all intrs used by the device
70 */
71static void
72vmxnet3_enable_all_intrs(struct vmxnet3_adapter *adapter)
73{
74 int i;
75
76 for (i = 0; i < adapter->intr.num_intrs; i++)
77 vmxnet3_enable_intr(adapter, i);
Ronghua Zang6929fe82010-07-15 22:18:47 -070078 adapter->shared->devRead.intrConf.intrCtrl &=
79 cpu_to_le32(~VMXNET3_IC_DISABLE_ALL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070080}
81
82
83static void
84vmxnet3_disable_all_intrs(struct vmxnet3_adapter *adapter)
85{
86 int i;
87
Ronghua Zang6929fe82010-07-15 22:18:47 -070088 adapter->shared->devRead.intrConf.intrCtrl |=
89 cpu_to_le32(VMXNET3_IC_DISABLE_ALL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070090 for (i = 0; i < adapter->intr.num_intrs; i++)
91 vmxnet3_disable_intr(adapter, i);
92}
93
94
95static void
96vmxnet3_ack_events(struct vmxnet3_adapter *adapter, u32 events)
97{
98 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_ECR, events);
99}
100
101
102static bool
103vmxnet3_tq_stopped(struct vmxnet3_tx_queue *tq, struct vmxnet3_adapter *adapter)
104{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000105 return tq->stopped;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700106}
107
108
109static void
110vmxnet3_tq_start(struct vmxnet3_tx_queue *tq, struct vmxnet3_adapter *adapter)
111{
112 tq->stopped = false;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000113 netif_start_subqueue(adapter->netdev, tq - adapter->tx_queue);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700114}
115
116
117static void
118vmxnet3_tq_wake(struct vmxnet3_tx_queue *tq, struct vmxnet3_adapter *adapter)
119{
120 tq->stopped = false;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000121 netif_wake_subqueue(adapter->netdev, (tq - adapter->tx_queue));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700122}
123
124
125static void
126vmxnet3_tq_stop(struct vmxnet3_tx_queue *tq, struct vmxnet3_adapter *adapter)
127{
128 tq->stopped = true;
129 tq->num_stop++;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000130 netif_stop_subqueue(adapter->netdev, (tq - adapter->tx_queue));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700131}
132
133
134/*
135 * Check the link state. This may start or stop the tx queue.
136 */
137static void
Shreyas Bhatewara4a1745fc2010-07-15 21:51:14 +0000138vmxnet3_check_link(struct vmxnet3_adapter *adapter, bool affectTxQueue)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700139{
140 u32 ret;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000141 int i;
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +0000142 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700143
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +0000144 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700145 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD, VMXNET3_CMD_GET_LINK);
146 ret = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_CMD);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +0000147 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
148
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700149 adapter->link_speed = ret >> 16;
150 if (ret & 1) { /* Link is up. */
Stephen Hemminger204a6e62013-01-15 07:28:30 +0000151 netdev_info(adapter->netdev, "NIC Link is Up %d Mbps\n",
152 adapter->link_speed);
Neil Horman6cdd20c2013-01-29 16:15:45 -0500153 netif_carrier_on(adapter->netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700154
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000155 if (affectTxQueue) {
156 for (i = 0; i < adapter->num_tx_queues; i++)
157 vmxnet3_tq_start(&adapter->tx_queue[i],
158 adapter);
159 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700160 } else {
Stephen Hemminger204a6e62013-01-15 07:28:30 +0000161 netdev_info(adapter->netdev, "NIC Link is Down\n");
Neil Horman6cdd20c2013-01-29 16:15:45 -0500162 netif_carrier_off(adapter->netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700163
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000164 if (affectTxQueue) {
165 for (i = 0; i < adapter->num_tx_queues; i++)
166 vmxnet3_tq_stop(&adapter->tx_queue[i], adapter);
167 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700168 }
169}
170
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700171static void
172vmxnet3_process_events(struct vmxnet3_adapter *adapter)
173{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000174 int i;
Roland Dreiere328d412011-05-06 08:32:53 +0000175 unsigned long flags;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000176 u32 events = le32_to_cpu(adapter->shared->ecr);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700177 if (!events)
178 return;
179
180 vmxnet3_ack_events(adapter, events);
181
182 /* Check if link state has changed */
183 if (events & VMXNET3_ECR_LINK)
Shreyas Bhatewara4a1745fc2010-07-15 21:51:14 +0000184 vmxnet3_check_link(adapter, true);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700185
186 /* Check if there is an error on xmit/recv queues */
187 if (events & (VMXNET3_ECR_TQERR | VMXNET3_ECR_RQERR)) {
Roland Dreiere328d412011-05-06 08:32:53 +0000188 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700189 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
190 VMXNET3_CMD_GET_QUEUE_STATUS);
Roland Dreiere328d412011-05-06 08:32:53 +0000191 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700192
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000193 for (i = 0; i < adapter->num_tx_queues; i++)
194 if (adapter->tqd_start[i].status.stopped)
195 dev_err(&adapter->netdev->dev,
196 "%s: tq[%d] error 0x%x\n",
197 adapter->netdev->name, i, le32_to_cpu(
198 adapter->tqd_start[i].status.error));
199 for (i = 0; i < adapter->num_rx_queues; i++)
200 if (adapter->rqd_start[i].status.stopped)
201 dev_err(&adapter->netdev->dev,
202 "%s: rq[%d] error 0x%x\n",
203 adapter->netdev->name, i,
204 adapter->rqd_start[i].status.error);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700205
206 schedule_work(&adapter->work);
207 }
208}
209
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000210#ifdef __BIG_ENDIAN_BITFIELD
211/*
212 * The device expects the bitfields in shared structures to be written in
213 * little endian. When CPU is big endian, the following routines are used to
214 * correctly read and write into ABI.
215 * The general technique used here is : double word bitfields are defined in
216 * opposite order for big endian architecture. Then before reading them in
217 * driver the complete double word is translated using le32_to_cpu. Similarly
218 * After the driver writes into bitfields, cpu_to_le32 is used to translate the
219 * double words into required format.
220 * In order to avoid touching bits in shared structure more than once, temporary
221 * descriptors are used. These are passed as srcDesc to following functions.
222 */
223static void vmxnet3_RxDescToCPU(const struct Vmxnet3_RxDesc *srcDesc,
224 struct Vmxnet3_RxDesc *dstDesc)
225{
226 u32 *src = (u32 *)srcDesc + 2;
227 u32 *dst = (u32 *)dstDesc + 2;
228 dstDesc->addr = le64_to_cpu(srcDesc->addr);
229 *dst = le32_to_cpu(*src);
230 dstDesc->ext1 = le32_to_cpu(srcDesc->ext1);
231}
232
233static void vmxnet3_TxDescToLe(const struct Vmxnet3_TxDesc *srcDesc,
234 struct Vmxnet3_TxDesc *dstDesc)
235{
236 int i;
237 u32 *src = (u32 *)(srcDesc + 1);
238 u32 *dst = (u32 *)(dstDesc + 1);
239
240 /* Working backwards so that the gen bit is set at the end. */
241 for (i = 2; i > 0; i--) {
242 src--;
243 dst--;
244 *dst = cpu_to_le32(*src);
245 }
246}
247
248
249static void vmxnet3_RxCompToCPU(const struct Vmxnet3_RxCompDesc *srcDesc,
250 struct Vmxnet3_RxCompDesc *dstDesc)
251{
252 int i = 0;
253 u32 *src = (u32 *)srcDesc;
254 u32 *dst = (u32 *)dstDesc;
255 for (i = 0; i < sizeof(struct Vmxnet3_RxCompDesc) / sizeof(u32); i++) {
256 *dst = le32_to_cpu(*src);
257 src++;
258 dst++;
259 }
260}
261
262
263/* Used to read bitfield values from double words. */
264static u32 get_bitfield32(const __le32 *bitfield, u32 pos, u32 size)
265{
266 u32 temp = le32_to_cpu(*bitfield);
267 u32 mask = ((1 << size) - 1) << pos;
268 temp &= mask;
269 temp >>= pos;
270 return temp;
271}
272
273
274
275#endif /* __BIG_ENDIAN_BITFIELD */
276
277#ifdef __BIG_ENDIAN_BITFIELD
278
279# define VMXNET3_TXDESC_GET_GEN(txdesc) get_bitfield32(((const __le32 *) \
280 txdesc) + VMXNET3_TXD_GEN_DWORD_SHIFT, \
281 VMXNET3_TXD_GEN_SHIFT, VMXNET3_TXD_GEN_SIZE)
282# define VMXNET3_TXDESC_GET_EOP(txdesc) get_bitfield32(((const __le32 *) \
283 txdesc) + VMXNET3_TXD_EOP_DWORD_SHIFT, \
284 VMXNET3_TXD_EOP_SHIFT, VMXNET3_TXD_EOP_SIZE)
285# define VMXNET3_TCD_GET_GEN(tcd) get_bitfield32(((const __le32 *)tcd) + \
286 VMXNET3_TCD_GEN_DWORD_SHIFT, VMXNET3_TCD_GEN_SHIFT, \
287 VMXNET3_TCD_GEN_SIZE)
288# define VMXNET3_TCD_GET_TXIDX(tcd) get_bitfield32((const __le32 *)tcd, \
289 VMXNET3_TCD_TXIDX_SHIFT, VMXNET3_TCD_TXIDX_SIZE)
290# define vmxnet3_getRxComp(dstrcd, rcd, tmp) do { \
291 (dstrcd) = (tmp); \
292 vmxnet3_RxCompToCPU((rcd), (tmp)); \
293 } while (0)
294# define vmxnet3_getRxDesc(dstrxd, rxd, tmp) do { \
295 (dstrxd) = (tmp); \
296 vmxnet3_RxDescToCPU((rxd), (tmp)); \
297 } while (0)
298
299#else
300
301# define VMXNET3_TXDESC_GET_GEN(txdesc) ((txdesc)->gen)
302# define VMXNET3_TXDESC_GET_EOP(txdesc) ((txdesc)->eop)
303# define VMXNET3_TCD_GET_GEN(tcd) ((tcd)->gen)
304# define VMXNET3_TCD_GET_TXIDX(tcd) ((tcd)->txdIdx)
305# define vmxnet3_getRxComp(dstrcd, rcd, tmp) (dstrcd) = (rcd)
306# define vmxnet3_getRxDesc(dstrxd, rxd, tmp) (dstrxd) = (rxd)
307
308#endif /* __BIG_ENDIAN_BITFIELD */
309
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700310
311static void
312vmxnet3_unmap_tx_buf(struct vmxnet3_tx_buf_info *tbi,
313 struct pci_dev *pdev)
314{
315 if (tbi->map_type == VMXNET3_MAP_SINGLE)
Andy Kingb0eb57c2013-08-23 09:33:49 -0700316 dma_unmap_single(&pdev->dev, tbi->dma_addr, tbi->len,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700317 PCI_DMA_TODEVICE);
318 else if (tbi->map_type == VMXNET3_MAP_PAGE)
Andy Kingb0eb57c2013-08-23 09:33:49 -0700319 dma_unmap_page(&pdev->dev, tbi->dma_addr, tbi->len,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700320 PCI_DMA_TODEVICE);
321 else
322 BUG_ON(tbi->map_type != VMXNET3_MAP_NONE);
323
324 tbi->map_type = VMXNET3_MAP_NONE; /* to help debugging */
325}
326
327
328static int
329vmxnet3_unmap_pkt(u32 eop_idx, struct vmxnet3_tx_queue *tq,
330 struct pci_dev *pdev, struct vmxnet3_adapter *adapter)
331{
332 struct sk_buff *skb;
333 int entries = 0;
334
335 /* no out of order completion */
336 BUG_ON(tq->buf_info[eop_idx].sop_idx != tq->tx_ring.next2comp);
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000337 BUG_ON(VMXNET3_TXDESC_GET_EOP(&(tq->tx_ring.base[eop_idx].txd)) != 1);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700338
339 skb = tq->buf_info[eop_idx].skb;
340 BUG_ON(skb == NULL);
341 tq->buf_info[eop_idx].skb = NULL;
342
343 VMXNET3_INC_RING_IDX_ONLY(eop_idx, tq->tx_ring.size);
344
345 while (tq->tx_ring.next2comp != eop_idx) {
346 vmxnet3_unmap_tx_buf(tq->buf_info + tq->tx_ring.next2comp,
347 pdev);
348
349 /* update next2comp w/o tx_lock. Since we are marking more,
350 * instead of less, tx ring entries avail, the worst case is
351 * that the tx routine incorrectly re-queues a pkt due to
352 * insufficient tx ring entries.
353 */
354 vmxnet3_cmd_ring_adv_next2comp(&tq->tx_ring);
355 entries++;
356 }
357
358 dev_kfree_skb_any(skb);
359 return entries;
360}
361
362
363static int
364vmxnet3_tq_tx_complete(struct vmxnet3_tx_queue *tq,
365 struct vmxnet3_adapter *adapter)
366{
367 int completed = 0;
368 union Vmxnet3_GenericDesc *gdesc;
369
370 gdesc = tq->comp_ring.base + tq->comp_ring.next2proc;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000371 while (VMXNET3_TCD_GET_GEN(&gdesc->tcd) == tq->comp_ring.gen) {
372 completed += vmxnet3_unmap_pkt(VMXNET3_TCD_GET_TXIDX(
373 &gdesc->tcd), tq, adapter->pdev,
374 adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700375
376 vmxnet3_comp_ring_adv_next2proc(&tq->comp_ring);
377 gdesc = tq->comp_ring.base + tq->comp_ring.next2proc;
378 }
379
380 if (completed) {
381 spin_lock(&tq->tx_lock);
382 if (unlikely(vmxnet3_tq_stopped(tq, adapter) &&
383 vmxnet3_cmd_ring_desc_avail(&tq->tx_ring) >
384 VMXNET3_WAKE_QUEUE_THRESHOLD(tq) &&
385 netif_carrier_ok(adapter->netdev))) {
386 vmxnet3_tq_wake(tq, adapter);
387 }
388 spin_unlock(&tq->tx_lock);
389 }
390 return completed;
391}
392
393
394static void
395vmxnet3_tq_cleanup(struct vmxnet3_tx_queue *tq,
396 struct vmxnet3_adapter *adapter)
397{
398 int i;
399
400 while (tq->tx_ring.next2comp != tq->tx_ring.next2fill) {
401 struct vmxnet3_tx_buf_info *tbi;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700402
403 tbi = tq->buf_info + tq->tx_ring.next2comp;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700404
405 vmxnet3_unmap_tx_buf(tbi, adapter->pdev);
406 if (tbi->skb) {
407 dev_kfree_skb_any(tbi->skb);
408 tbi->skb = NULL;
409 }
410 vmxnet3_cmd_ring_adv_next2comp(&tq->tx_ring);
411 }
412
413 /* sanity check, verify all buffers are indeed unmapped and freed */
414 for (i = 0; i < tq->tx_ring.size; i++) {
415 BUG_ON(tq->buf_info[i].skb != NULL ||
416 tq->buf_info[i].map_type != VMXNET3_MAP_NONE);
417 }
418
419 tq->tx_ring.gen = VMXNET3_INIT_GEN;
420 tq->tx_ring.next2fill = tq->tx_ring.next2comp = 0;
421
422 tq->comp_ring.gen = VMXNET3_INIT_GEN;
423 tq->comp_ring.next2proc = 0;
424}
425
426
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000427static void
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700428vmxnet3_tq_destroy(struct vmxnet3_tx_queue *tq,
429 struct vmxnet3_adapter *adapter)
430{
431 if (tq->tx_ring.base) {
Andy Kingb0eb57c2013-08-23 09:33:49 -0700432 dma_free_coherent(&adapter->pdev->dev, tq->tx_ring.size *
433 sizeof(struct Vmxnet3_TxDesc),
434 tq->tx_ring.base, tq->tx_ring.basePA);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700435 tq->tx_ring.base = NULL;
436 }
437 if (tq->data_ring.base) {
Andy Kingb0eb57c2013-08-23 09:33:49 -0700438 dma_free_coherent(&adapter->pdev->dev, tq->data_ring.size *
439 sizeof(struct Vmxnet3_TxDataDesc),
440 tq->data_ring.base, tq->data_ring.basePA);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700441 tq->data_ring.base = NULL;
442 }
443 if (tq->comp_ring.base) {
Andy Kingb0eb57c2013-08-23 09:33:49 -0700444 dma_free_coherent(&adapter->pdev->dev, tq->comp_ring.size *
445 sizeof(struct Vmxnet3_TxCompDesc),
446 tq->comp_ring.base, tq->comp_ring.basePA);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700447 tq->comp_ring.base = NULL;
448 }
Andy Kingb0eb57c2013-08-23 09:33:49 -0700449 if (tq->buf_info) {
450 dma_free_coherent(&adapter->pdev->dev,
451 tq->tx_ring.size * sizeof(tq->buf_info[0]),
452 tq->buf_info, tq->buf_info_pa);
453 tq->buf_info = NULL;
454 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700455}
456
457
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000458/* Destroy all tx queues */
459void
460vmxnet3_tq_destroy_all(struct vmxnet3_adapter *adapter)
461{
462 int i;
463
464 for (i = 0; i < adapter->num_tx_queues; i++)
465 vmxnet3_tq_destroy(&adapter->tx_queue[i], adapter);
466}
467
468
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700469static void
470vmxnet3_tq_init(struct vmxnet3_tx_queue *tq,
471 struct vmxnet3_adapter *adapter)
472{
473 int i;
474
475 /* reset the tx ring contents to 0 and reset the tx ring states */
476 memset(tq->tx_ring.base, 0, tq->tx_ring.size *
477 sizeof(struct Vmxnet3_TxDesc));
478 tq->tx_ring.next2fill = tq->tx_ring.next2comp = 0;
479 tq->tx_ring.gen = VMXNET3_INIT_GEN;
480
481 memset(tq->data_ring.base, 0, tq->data_ring.size *
482 sizeof(struct Vmxnet3_TxDataDesc));
483
484 /* reset the tx comp ring contents to 0 and reset comp ring states */
485 memset(tq->comp_ring.base, 0, tq->comp_ring.size *
486 sizeof(struct Vmxnet3_TxCompDesc));
487 tq->comp_ring.next2proc = 0;
488 tq->comp_ring.gen = VMXNET3_INIT_GEN;
489
490 /* reset the bookkeeping data */
491 memset(tq->buf_info, 0, sizeof(tq->buf_info[0]) * tq->tx_ring.size);
492 for (i = 0; i < tq->tx_ring.size; i++)
493 tq->buf_info[i].map_type = VMXNET3_MAP_NONE;
494
495 /* stats are not reset */
496}
497
498
499static int
500vmxnet3_tq_create(struct vmxnet3_tx_queue *tq,
501 struct vmxnet3_adapter *adapter)
502{
Andy Kingb0eb57c2013-08-23 09:33:49 -0700503 size_t sz;
504
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700505 BUG_ON(tq->tx_ring.base || tq->data_ring.base ||
506 tq->comp_ring.base || tq->buf_info);
507
Andy Kingb0eb57c2013-08-23 09:33:49 -0700508 tq->tx_ring.base = dma_alloc_coherent(&adapter->pdev->dev,
509 tq->tx_ring.size * sizeof(struct Vmxnet3_TxDesc),
510 &tq->tx_ring.basePA, GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700511 if (!tq->tx_ring.base) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +0000512 netdev_err(adapter->netdev, "failed to allocate tx ring\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700513 goto err;
514 }
515
Andy Kingb0eb57c2013-08-23 09:33:49 -0700516 tq->data_ring.base = dma_alloc_coherent(&adapter->pdev->dev,
517 tq->data_ring.size * sizeof(struct Vmxnet3_TxDataDesc),
518 &tq->data_ring.basePA, GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700519 if (!tq->data_ring.base) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +0000520 netdev_err(adapter->netdev, "failed to allocate data ring\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700521 goto err;
522 }
523
Andy Kingb0eb57c2013-08-23 09:33:49 -0700524 tq->comp_ring.base = dma_alloc_coherent(&adapter->pdev->dev,
525 tq->comp_ring.size * sizeof(struct Vmxnet3_TxCompDesc),
526 &tq->comp_ring.basePA, GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700527 if (!tq->comp_ring.base) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +0000528 netdev_err(adapter->netdev, "failed to allocate tx comp ring\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700529 goto err;
530 }
531
Andy Kingb0eb57c2013-08-23 09:33:49 -0700532 sz = tq->tx_ring.size * sizeof(tq->buf_info[0]);
533 tq->buf_info = dma_zalloc_coherent(&adapter->pdev->dev, sz,
534 &tq->buf_info_pa, GFP_KERNEL);
Joe Perchese404dec2012-01-29 12:56:23 +0000535 if (!tq->buf_info)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700536 goto err;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700537
538 return 0;
539
540err:
541 vmxnet3_tq_destroy(tq, adapter);
542 return -ENOMEM;
543}
544
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000545static void
546vmxnet3_tq_cleanup_all(struct vmxnet3_adapter *adapter)
547{
548 int i;
549
550 for (i = 0; i < adapter->num_tx_queues; i++)
551 vmxnet3_tq_cleanup(&adapter->tx_queue[i], adapter);
552}
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700553
554/*
555 * starting from ring->next2fill, allocate rx buffers for the given ring
556 * of the rx queue and update the rx desc. stop after @num_to_alloc buffers
557 * are allocated or allocation fails
558 */
559
560static int
561vmxnet3_rq_alloc_rx_buf(struct vmxnet3_rx_queue *rq, u32 ring_idx,
562 int num_to_alloc, struct vmxnet3_adapter *adapter)
563{
564 int num_allocated = 0;
565 struct vmxnet3_rx_buf_info *rbi_base = rq->buf_info[ring_idx];
566 struct vmxnet3_cmd_ring *ring = &rq->rx_ring[ring_idx];
567 u32 val;
568
Shreyas Bhatewara5318d802011-07-05 14:34:05 +0000569 while (num_allocated <= num_to_alloc) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700570 struct vmxnet3_rx_buf_info *rbi;
571 union Vmxnet3_GenericDesc *gd;
572
573 rbi = rbi_base + ring->next2fill;
574 gd = ring->base + ring->next2fill;
575
576 if (rbi->buf_type == VMXNET3_RX_BUF_SKB) {
577 if (rbi->skb == NULL) {
Stephen Hemminger0d735f12013-01-15 07:28:26 +0000578 rbi->skb = __netdev_alloc_skb_ip_align(adapter->netdev,
579 rbi->len,
580 GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700581 if (unlikely(rbi->skb == NULL)) {
582 rq->stats.rx_buf_alloc_failure++;
583 break;
584 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700585
Andy Kingb0eb57c2013-08-23 09:33:49 -0700586 rbi->dma_addr = dma_map_single(
587 &adapter->pdev->dev,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700588 rbi->skb->data, rbi->len,
589 PCI_DMA_FROMDEVICE);
Alexey Khoroshilov5738a092015-11-28 01:29:30 +0300590 if (dma_mapping_error(&adapter->pdev->dev,
591 rbi->dma_addr)) {
592 dev_kfree_skb_any(rbi->skb);
593 rq->stats.rx_buf_alloc_failure++;
594 break;
595 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700596 } else {
597 /* rx buffer skipped by the device */
598 }
599 val = VMXNET3_RXD_BTYPE_HEAD << VMXNET3_RXD_BTYPE_SHIFT;
600 } else {
601 BUG_ON(rbi->buf_type != VMXNET3_RX_BUF_PAGE ||
602 rbi->len != PAGE_SIZE);
603
604 if (rbi->page == NULL) {
605 rbi->page = alloc_page(GFP_ATOMIC);
606 if (unlikely(rbi->page == NULL)) {
607 rq->stats.rx_buf_alloc_failure++;
608 break;
609 }
Andy Kingb0eb57c2013-08-23 09:33:49 -0700610 rbi->dma_addr = dma_map_page(
611 &adapter->pdev->dev,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700612 rbi->page, 0, PAGE_SIZE,
613 PCI_DMA_FROMDEVICE);
Alexey Khoroshilov5738a092015-11-28 01:29:30 +0300614 if (dma_mapping_error(&adapter->pdev->dev,
615 rbi->dma_addr)) {
616 put_page(rbi->page);
617 rq->stats.rx_buf_alloc_failure++;
618 break;
619 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700620 } else {
621 /* rx buffers skipped by the device */
622 }
623 val = VMXNET3_RXD_BTYPE_BODY << VMXNET3_RXD_BTYPE_SHIFT;
624 }
625
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000626 gd->rxd.addr = cpu_to_le64(rbi->dma_addr);
Shreyas Bhatewara5318d802011-07-05 14:34:05 +0000627 gd->dword[2] = cpu_to_le32((!ring->gen << VMXNET3_RXD_GEN_SHIFT)
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000628 | val | rbi->len);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700629
Shreyas Bhatewara5318d802011-07-05 14:34:05 +0000630 /* Fill the last buffer but dont mark it ready, or else the
631 * device will think that the queue is full */
632 if (num_allocated == num_to_alloc)
633 break;
634
635 gd->dword[2] |= cpu_to_le32(ring->gen << VMXNET3_RXD_GEN_SHIFT);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700636 num_allocated++;
637 vmxnet3_cmd_ring_adv_next2fill(ring);
638 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700639
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +0000640 netdev_dbg(adapter->netdev,
Stephen Hemminger69b9a712013-01-15 07:28:27 +0000641 "alloc_rx_buf: %d allocated, next2fill %u, next2comp %u\n",
642 num_allocated, ring->next2fill, ring->next2comp);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700643
644 /* so that the device can distinguish a full ring and an empty ring */
645 BUG_ON(num_allocated != 0 && ring->next2fill == ring->next2comp);
646
647 return num_allocated;
648}
649
650
651static void
652vmxnet3_append_frag(struct sk_buff *skb, struct Vmxnet3_RxCompDesc *rcd,
653 struct vmxnet3_rx_buf_info *rbi)
654{
655 struct skb_frag_struct *frag = skb_shinfo(skb)->frags +
656 skb_shinfo(skb)->nr_frags;
657
658 BUG_ON(skb_shinfo(skb)->nr_frags >= MAX_SKB_FRAGS);
659
Ian Campbell0e0634d2011-09-21 21:53:28 +0000660 __skb_frag_set_page(frag, rbi->page);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700661 frag->page_offset = 0;
Eric Dumazet9e903e02011-10-18 21:00:24 +0000662 skb_frag_size_set(frag, rcd->len);
663 skb->data_len += rcd->len;
Eric Dumazet5e6c3552011-10-13 11:38:17 +0000664 skb->truesize += PAGE_SIZE;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700665 skb_shinfo(skb)->nr_frags++;
666}
667
668
Alexey Khoroshilov5738a092015-11-28 01:29:30 +0300669static int
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700670vmxnet3_map_pkt(struct sk_buff *skb, struct vmxnet3_tx_ctx *ctx,
671 struct vmxnet3_tx_queue *tq, struct pci_dev *pdev,
672 struct vmxnet3_adapter *adapter)
673{
674 u32 dw2, len;
675 unsigned long buf_offset;
676 int i;
677 union Vmxnet3_GenericDesc *gdesc;
678 struct vmxnet3_tx_buf_info *tbi = NULL;
679
680 BUG_ON(ctx->copy_size > skb_headlen(skb));
681
682 /* use the previous gen bit for the SOP desc */
683 dw2 = (tq->tx_ring.gen ^ 0x1) << VMXNET3_TXD_GEN_SHIFT;
684
685 ctx->sop_txd = tq->tx_ring.base + tq->tx_ring.next2fill;
686 gdesc = ctx->sop_txd; /* both loops below can be skipped */
687
688 /* no need to map the buffer if headers are copied */
689 if (ctx->copy_size) {
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000690 ctx->sop_txd->txd.addr = cpu_to_le64(tq->data_ring.basePA +
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700691 tq->tx_ring.next2fill *
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000692 sizeof(struct Vmxnet3_TxDataDesc));
693 ctx->sop_txd->dword[2] = cpu_to_le32(dw2 | ctx->copy_size);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700694 ctx->sop_txd->dword[3] = 0;
695
696 tbi = tq->buf_info + tq->tx_ring.next2fill;
697 tbi->map_type = VMXNET3_MAP_NONE;
698
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +0000699 netdev_dbg(adapter->netdev,
Randy Dunlapf69655822009-10-16 17:54:34 -0700700 "txd[%u]: 0x%Lx 0x%x 0x%x\n",
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000701 tq->tx_ring.next2fill,
702 le64_to_cpu(ctx->sop_txd->txd.addr),
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700703 ctx->sop_txd->dword[2], ctx->sop_txd->dword[3]);
704 vmxnet3_cmd_ring_adv_next2fill(&tq->tx_ring);
705
706 /* use the right gen for non-SOP desc */
707 dw2 = tq->tx_ring.gen << VMXNET3_TXD_GEN_SHIFT;
708 }
709
710 /* linear part can use multiple tx desc if it's big */
711 len = skb_headlen(skb) - ctx->copy_size;
712 buf_offset = ctx->copy_size;
713 while (len) {
714 u32 buf_size;
715
Bhavesh Davda1f4b1612010-07-24 14:43:29 +0000716 if (len < VMXNET3_MAX_TX_BUF_SIZE) {
717 buf_size = len;
718 dw2 |= len;
719 } else {
720 buf_size = VMXNET3_MAX_TX_BUF_SIZE;
721 /* spec says that for TxDesc.len, 0 == 2^14 */
722 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700723
724 tbi = tq->buf_info + tq->tx_ring.next2fill;
725 tbi->map_type = VMXNET3_MAP_SINGLE;
Andy Kingb0eb57c2013-08-23 09:33:49 -0700726 tbi->dma_addr = dma_map_single(&adapter->pdev->dev,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700727 skb->data + buf_offset, buf_size,
728 PCI_DMA_TODEVICE);
Alexey Khoroshilov5738a092015-11-28 01:29:30 +0300729 if (dma_mapping_error(&adapter->pdev->dev, tbi->dma_addr))
730 return -EFAULT;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700731
Bhavesh Davda1f4b1612010-07-24 14:43:29 +0000732 tbi->len = buf_size;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700733
734 gdesc = tq->tx_ring.base + tq->tx_ring.next2fill;
735 BUG_ON(gdesc->txd.gen == tq->tx_ring.gen);
736
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000737 gdesc->txd.addr = cpu_to_le64(tbi->dma_addr);
Bhavesh Davda1f4b1612010-07-24 14:43:29 +0000738 gdesc->dword[2] = cpu_to_le32(dw2);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700739 gdesc->dword[3] = 0;
740
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +0000741 netdev_dbg(adapter->netdev,
Randy Dunlapf69655822009-10-16 17:54:34 -0700742 "txd[%u]: 0x%Lx 0x%x 0x%x\n",
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000743 tq->tx_ring.next2fill, le64_to_cpu(gdesc->txd.addr),
744 le32_to_cpu(gdesc->dword[2]), gdesc->dword[3]);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700745 vmxnet3_cmd_ring_adv_next2fill(&tq->tx_ring);
746 dw2 = tq->tx_ring.gen << VMXNET3_TXD_GEN_SHIFT;
747
748 len -= buf_size;
749 buf_offset += buf_size;
750 }
751
752 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000753 const struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i];
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000754 u32 buf_size;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700755
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000756 buf_offset = 0;
757 len = skb_frag_size(frag);
758 while (len) {
759 tbi = tq->buf_info + tq->tx_ring.next2fill;
760 if (len < VMXNET3_MAX_TX_BUF_SIZE) {
761 buf_size = len;
762 dw2 |= len;
763 } else {
764 buf_size = VMXNET3_MAX_TX_BUF_SIZE;
765 /* spec says that for TxDesc.len, 0 == 2^14 */
766 }
767 tbi->map_type = VMXNET3_MAP_PAGE;
768 tbi->dma_addr = skb_frag_dma_map(&adapter->pdev->dev, frag,
769 buf_offset, buf_size,
770 DMA_TO_DEVICE);
Alexey Khoroshilov5738a092015-11-28 01:29:30 +0300771 if (dma_mapping_error(&adapter->pdev->dev, tbi->dma_addr))
772 return -EFAULT;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700773
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000774 tbi->len = buf_size;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700775
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000776 gdesc = tq->tx_ring.base + tq->tx_ring.next2fill;
777 BUG_ON(gdesc->txd.gen == tq->tx_ring.gen);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700778
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000779 gdesc->txd.addr = cpu_to_le64(tbi->dma_addr);
780 gdesc->dword[2] = cpu_to_le32(dw2);
781 gdesc->dword[3] = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700782
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +0000783 netdev_dbg(adapter->netdev,
Hans Wennborg8b429462014-08-05 21:42:41 -0700784 "txd[%u]: 0x%llx %u %u\n",
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000785 tq->tx_ring.next2fill, le64_to_cpu(gdesc->txd.addr),
786 le32_to_cpu(gdesc->dword[2]), gdesc->dword[3]);
787 vmxnet3_cmd_ring_adv_next2fill(&tq->tx_ring);
788 dw2 = tq->tx_ring.gen << VMXNET3_TXD_GEN_SHIFT;
789
790 len -= buf_size;
791 buf_offset += buf_size;
792 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700793 }
794
795 ctx->eop_txd = gdesc;
796
797 /* set the last buf_info for the pkt */
798 tbi->skb = skb;
799 tbi->sop_idx = ctx->sop_txd - tq->tx_ring.base;
Alexey Khoroshilov5738a092015-11-28 01:29:30 +0300800
801 return 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700802}
803
804
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000805/* Init all tx queues */
806static void
807vmxnet3_tq_init_all(struct vmxnet3_adapter *adapter)
808{
809 int i;
810
811 for (i = 0; i < adapter->num_tx_queues; i++)
812 vmxnet3_tq_init(&adapter->tx_queue[i], adapter);
813}
814
815
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700816/*
Neil Hormancec05562016-03-04 13:40:48 -0500817 * parse relevant protocol headers:
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700818 * For a tso pkt, relevant headers are L2/3/4 including options
819 * For a pkt requesting csum offloading, they are L2/3 and may include L4
820 * if it's a TCP/UDP pkt
821 *
822 * Returns:
823 * -1: error happens during parsing
824 * 0: protocol headers parsed, but too big to be copied
825 * 1: protocol headers parsed and copied
826 *
827 * Other effects:
828 * 1. related *ctx fields are updated.
829 * 2. ctx->copy_size is # of bytes copied
Neil Hormancec05562016-03-04 13:40:48 -0500830 * 3. the portion to be copied is guaranteed to be in the linear part
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700831 *
832 */
833static int
Neil Hormancec05562016-03-04 13:40:48 -0500834vmxnet3_parse_hdr(struct sk_buff *skb, struct vmxnet3_tx_queue *tq,
835 struct vmxnet3_tx_ctx *ctx,
836 struct vmxnet3_adapter *adapter)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700837{
Shrikrishna Khare759c9352015-02-28 20:33:09 -0800838 u8 protocol = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700839
Michał Mirosław0d0b1672010-12-14 15:24:08 +0000840 if (ctx->mss) { /* TSO */
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700841 ctx->eth_ip_hdr_size = skb_transport_offset(skb);
Eric Dumazet8bca5d12012-01-24 19:47:21 +0000842 ctx->l4_hdr_size = tcp_hdrlen(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700843 ctx->copy_size = ctx->eth_ip_hdr_size + ctx->l4_hdr_size;
844 } else {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700845 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Michał Mirosław0d0b1672010-12-14 15:24:08 +0000846 ctx->eth_ip_hdr_size = skb_checksum_start_offset(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700847
848 if (ctx->ipv4) {
Eric Dumazet8bca5d12012-01-24 19:47:21 +0000849 const struct iphdr *iph = ip_hdr(skb);
850
Shrikrishna Khare759c9352015-02-28 20:33:09 -0800851 protocol = iph->protocol;
852 } else if (ctx->ipv6) {
853 const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
854
855 protocol = ipv6h->nexthdr;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700856 }
Shrikrishna Khare759c9352015-02-28 20:33:09 -0800857
858 switch (protocol) {
859 case IPPROTO_TCP:
860 ctx->l4_hdr_size = tcp_hdrlen(skb);
861 break;
862 case IPPROTO_UDP:
863 ctx->l4_hdr_size = sizeof(struct udphdr);
864 break;
865 default:
866 ctx->l4_hdr_size = 0;
867 break;
868 }
869
Neil Hormanb2032622012-02-16 01:48:56 +0000870 ctx->copy_size = min(ctx->eth_ip_hdr_size +
871 ctx->l4_hdr_size, skb->len);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700872 } else {
873 ctx->eth_ip_hdr_size = 0;
874 ctx->l4_hdr_size = 0;
875 /* copy as much as allowed */
876 ctx->copy_size = min((unsigned int)VMXNET3_HDR_COPY_SIZE
877 , skb_headlen(skb));
878 }
879
Shreyas Bhatewarac41fcce2015-06-19 13:37:03 -0700880 if (skb->len <= VMXNET3_HDR_COPY_SIZE)
881 ctx->copy_size = skb->len;
882
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700883 /* make sure headers are accessible directly */
884 if (unlikely(!pskb_may_pull(skb, ctx->copy_size)))
885 goto err;
886 }
887
888 if (unlikely(ctx->copy_size > VMXNET3_HDR_COPY_SIZE)) {
889 tq->stats.oversized_hdr++;
890 ctx->copy_size = 0;
891 return 0;
892 }
893
Neil Hormancec05562016-03-04 13:40:48 -0500894 return 1;
895err:
896 return -1;
897}
898
899/*
900 * copy relevant protocol headers to the transmit ring:
901 * For a tso pkt, relevant headers are L2/3/4 including options
902 * For a pkt requesting csum offloading, they are L2/3 and may include L4
903 * if it's a TCP/UDP pkt
904 *
905 *
906 * Note that this requires that vmxnet3_parse_hdr be called first to set the
907 * appropriate bits in ctx first
908 */
909static void
910vmxnet3_copy_hdr(struct sk_buff *skb, struct vmxnet3_tx_queue *tq,
911 struct vmxnet3_tx_ctx *ctx,
912 struct vmxnet3_adapter *adapter)
913{
914 struct Vmxnet3_TxDataDesc *tdd;
915
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700916 tdd = tq->data_ring.base + tq->tx_ring.next2fill;
917
918 memcpy(tdd->data, skb->data, ctx->copy_size);
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +0000919 netdev_dbg(adapter->netdev,
Randy Dunlapf69655822009-10-16 17:54:34 -0700920 "copy %u bytes to dataRing[%u]\n",
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700921 ctx->copy_size, tq->tx_ring.next2fill);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700922}
923
924
925static void
926vmxnet3_prepare_tso(struct sk_buff *skb,
927 struct vmxnet3_tx_ctx *ctx)
928{
Eric Dumazet8bca5d12012-01-24 19:47:21 +0000929 struct tcphdr *tcph = tcp_hdr(skb);
930
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700931 if (ctx->ipv4) {
Eric Dumazet8bca5d12012-01-24 19:47:21 +0000932 struct iphdr *iph = ip_hdr(skb);
933
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700934 iph->check = 0;
935 tcph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr, 0,
936 IPPROTO_TCP, 0);
Shrikrishna Khare759c9352015-02-28 20:33:09 -0800937 } else if (ctx->ipv6) {
Eric Dumazet8bca5d12012-01-24 19:47:21 +0000938 struct ipv6hdr *iph = ipv6_hdr(skb);
939
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700940 tcph->check = ~csum_ipv6_magic(&iph->saddr, &iph->daddr, 0,
941 IPPROTO_TCP, 0);
942 }
943}
944
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000945static int txd_estimate(const struct sk_buff *skb)
946{
947 int count = VMXNET3_TXD_NEEDED(skb_headlen(skb)) + 1;
948 int i;
949
950 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
951 const struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i];
952
953 count += VMXNET3_TXD_NEEDED(skb_frag_size(frag));
954 }
955 return count;
956}
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700957
958/*
959 * Transmits a pkt thru a given tq
960 * Returns:
961 * NETDEV_TX_OK: descriptors are setup successfully
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300962 * NETDEV_TX_OK: error occurred, the pkt is dropped
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700963 * NETDEV_TX_BUSY: tx ring is full, queue is stopped
964 *
965 * Side-effects:
966 * 1. tx ring may be changed
967 * 2. tq stats may be updated accordingly
968 * 3. shared->txNumDeferred may be updated
969 */
970
971static int
972vmxnet3_tq_xmit(struct sk_buff *skb, struct vmxnet3_tx_queue *tq,
973 struct vmxnet3_adapter *adapter, struct net_device *netdev)
974{
975 int ret;
976 u32 count;
977 unsigned long flags;
978 struct vmxnet3_tx_ctx ctx;
979 union Vmxnet3_GenericDesc *gdesc;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000980#ifdef __BIG_ENDIAN_BITFIELD
981 /* Use temporary descriptor to avoid touching bits multiple times */
982 union Vmxnet3_GenericDesc tempTxDesc;
983#endif
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700984
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000985 count = txd_estimate(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700986
Jesse Gross72e85c42011-06-23 13:04:39 +0000987 ctx.ipv4 = (vlan_get_protocol(skb) == cpu_to_be16(ETH_P_IP));
Shrikrishna Khare759c9352015-02-28 20:33:09 -0800988 ctx.ipv6 = (vlan_get_protocol(skb) == cpu_to_be16(ETH_P_IPV6));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700989
990 ctx.mss = skb_shinfo(skb)->gso_size;
991 if (ctx.mss) {
992 if (skb_header_cloned(skb)) {
993 if (unlikely(pskb_expand_head(skb, 0, 0,
994 GFP_ATOMIC) != 0)) {
995 tq->stats.drop_tso++;
996 goto drop_pkt;
997 }
998 tq->stats.copy_skb_header++;
999 }
1000 vmxnet3_prepare_tso(skb, &ctx);
1001 } else {
1002 if (unlikely(count > VMXNET3_MAX_TXD_PER_PKT)) {
1003
1004 /* non-tso pkts must not use more than
1005 * VMXNET3_MAX_TXD_PER_PKT entries
1006 */
1007 if (skb_linearize(skb) != 0) {
1008 tq->stats.drop_too_many_frags++;
1009 goto drop_pkt;
1010 }
1011 tq->stats.linearized++;
1012
1013 /* recalculate the # of descriptors to use */
1014 count = VMXNET3_TXD_NEEDED(skb_headlen(skb)) + 1;
1015 }
1016 }
1017
Neil Hormancec05562016-03-04 13:40:48 -05001018 ret = vmxnet3_parse_hdr(skb, tq, &ctx, adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001019 if (ret >= 0) {
1020 BUG_ON(ret <= 0 && ctx.copy_size != 0);
1021 /* hdrs parsed, check against other limits */
1022 if (ctx.mss) {
1023 if (unlikely(ctx.eth_ip_hdr_size + ctx.l4_hdr_size >
1024 VMXNET3_MAX_TX_BUF_SIZE)) {
Arnd Bergmannefc21d92016-03-14 15:53:57 +01001025 tq->stats.drop_oversized_hdr++;
1026 goto drop_pkt;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001027 }
1028 } else {
1029 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1030 if (unlikely(ctx.eth_ip_hdr_size +
1031 skb->csum_offset >
1032 VMXNET3_MAX_CSUM_OFFSET)) {
Arnd Bergmannefc21d92016-03-14 15:53:57 +01001033 tq->stats.drop_oversized_hdr++;
1034 goto drop_pkt;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001035 }
1036 }
1037 }
1038 } else {
1039 tq->stats.drop_hdr_inspect_err++;
Neil Hormancec05562016-03-04 13:40:48 -05001040 goto drop_pkt;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001041 }
1042
Neil Hormancec05562016-03-04 13:40:48 -05001043 spin_lock_irqsave(&tq->tx_lock, flags);
1044
1045 if (count > vmxnet3_cmd_ring_desc_avail(&tq->tx_ring)) {
1046 tq->stats.tx_ring_full++;
1047 netdev_dbg(adapter->netdev,
1048 "tx queue stopped on %s, next2comp %u"
1049 " next2fill %u\n", adapter->netdev->name,
1050 tq->tx_ring.next2comp, tq->tx_ring.next2fill);
1051
1052 vmxnet3_tq_stop(tq, adapter);
1053 spin_unlock_irqrestore(&tq->tx_lock, flags);
1054 return NETDEV_TX_BUSY;
1055 }
1056
1057
1058 vmxnet3_copy_hdr(skb, tq, &ctx, adapter);
1059
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001060 /* fill tx descs related to addr & len */
Alexey Khoroshilov5738a092015-11-28 01:29:30 +03001061 if (vmxnet3_map_pkt(skb, &ctx, tq, adapter->pdev, adapter))
1062 goto unlock_drop_pkt;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001063
1064 /* setup the EOP desc */
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001065 ctx.eop_txd->dword[3] = cpu_to_le32(VMXNET3_TXD_CQ | VMXNET3_TXD_EOP);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001066
1067 /* setup the SOP desc */
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001068#ifdef __BIG_ENDIAN_BITFIELD
1069 gdesc = &tempTxDesc;
1070 gdesc->dword[2] = ctx.sop_txd->dword[2];
1071 gdesc->dword[3] = ctx.sop_txd->dword[3];
1072#else
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001073 gdesc = ctx.sop_txd;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001074#endif
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001075 if (ctx.mss) {
1076 gdesc->txd.hlen = ctx.eth_ip_hdr_size + ctx.l4_hdr_size;
1077 gdesc->txd.om = VMXNET3_OM_TSO;
1078 gdesc->txd.msscof = ctx.mss;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001079 le32_add_cpu(&tq->shared->txNumDeferred, (skb->len -
1080 gdesc->txd.hlen + ctx.mss - 1) / ctx.mss);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001081 } else {
1082 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1083 gdesc->txd.hlen = ctx.eth_ip_hdr_size;
1084 gdesc->txd.om = VMXNET3_OM_CSUM;
1085 gdesc->txd.msscof = ctx.eth_ip_hdr_size +
1086 skb->csum_offset;
1087 } else {
1088 gdesc->txd.om = 0;
1089 gdesc->txd.msscof = 0;
1090 }
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001091 le32_add_cpu(&tq->shared->txNumDeferred, 1);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001092 }
1093
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001094 if (skb_vlan_tag_present(skb)) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001095 gdesc->txd.ti = 1;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001096 gdesc->txd.tci = skb_vlan_tag_get(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001097 }
1098
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001099 /* finally flips the GEN bit of the SOP desc. */
1100 gdesc->dword[2] = cpu_to_le32(le32_to_cpu(gdesc->dword[2]) ^
1101 VMXNET3_TXD_GEN);
1102#ifdef __BIG_ENDIAN_BITFIELD
1103 /* Finished updating in bitfields of Tx Desc, so write them in original
1104 * place.
1105 */
1106 vmxnet3_TxDescToLe((struct Vmxnet3_TxDesc *)gdesc,
1107 (struct Vmxnet3_TxDesc *)ctx.sop_txd);
1108 gdesc = ctx.sop_txd;
1109#endif
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +00001110 netdev_dbg(adapter->netdev,
Randy Dunlapf69655822009-10-16 17:54:34 -07001111 "txd[%u]: SOP 0x%Lx 0x%x 0x%x\n",
Joe Perchesc2fd03a2012-06-04 12:44:18 +00001112 (u32)(ctx.sop_txd -
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001113 tq->tx_ring.base), le64_to_cpu(gdesc->txd.addr),
1114 le32_to_cpu(gdesc->dword[2]), le32_to_cpu(gdesc->dword[3]));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001115
1116 spin_unlock_irqrestore(&tq->tx_lock, flags);
1117
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001118 if (le32_to_cpu(tq->shared->txNumDeferred) >=
1119 le32_to_cpu(tq->shared->txThreshold)) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001120 tq->shared->txNumDeferred = 0;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001121 VMXNET3_WRITE_BAR0_REG(adapter,
1122 VMXNET3_REG_TXPROD + tq->qid * 8,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001123 tq->tx_ring.next2fill);
1124 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001125
1126 return NETDEV_TX_OK;
1127
Dan Carpenterf955e142010-12-20 03:03:15 +00001128unlock_drop_pkt:
1129 spin_unlock_irqrestore(&tq->tx_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001130drop_pkt:
1131 tq->stats.drop_total++;
Eric W. Biedermanb1b71812014-03-15 18:31:16 -07001132 dev_kfree_skb_any(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001133 return NETDEV_TX_OK;
1134}
1135
1136
1137static netdev_tx_t
1138vmxnet3_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
1139{
1140 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001141
stephen hemminger96800ee2012-11-13 13:53:28 +00001142 BUG_ON(skb->queue_mapping > adapter->num_tx_queues);
1143 return vmxnet3_tq_xmit(skb,
1144 &adapter->tx_queue[skb->queue_mapping],
1145 adapter, netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001146}
1147
1148
1149static void
1150vmxnet3_rx_csum(struct vmxnet3_adapter *adapter,
1151 struct sk_buff *skb,
1152 union Vmxnet3_GenericDesc *gdesc)
1153{
Michał Mirosława0d27302011-04-18 13:31:21 +00001154 if (!gdesc->rcd.cnc && adapter->netdev->features & NETIF_F_RXCSUM) {
Shrikrishna Kharef0d43782016-04-20 18:12:29 -07001155 if (gdesc->rcd.v4 &&
1156 (le32_to_cpu(gdesc->dword[3]) &
1157 VMXNET3_RCD_CSUM_OK) == VMXNET3_RCD_CSUM_OK) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001158 skb->ip_summed = CHECKSUM_UNNECESSARY;
1159 BUG_ON(!(gdesc->rcd.tcp || gdesc->rcd.udp));
Shrikrishna Kharef0d43782016-04-20 18:12:29 -07001160 BUG_ON(gdesc->rcd.frg);
1161 } else if (gdesc->rcd.v6 && (le32_to_cpu(gdesc->dword[3]) &
1162 (1 << VMXNET3_RCD_TUC_SHIFT))) {
1163 skb->ip_summed = CHECKSUM_UNNECESSARY;
1164 BUG_ON(!(gdesc->rcd.tcp || gdesc->rcd.udp));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001165 BUG_ON(gdesc->rcd.frg);
1166 } else {
1167 if (gdesc->rcd.csum) {
1168 skb->csum = htons(gdesc->rcd.csum);
1169 skb->ip_summed = CHECKSUM_PARTIAL;
1170 } else {
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001171 skb_checksum_none_assert(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001172 }
1173 }
1174 } else {
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001175 skb_checksum_none_assert(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001176 }
1177}
1178
1179
1180static void
1181vmxnet3_rx_error(struct vmxnet3_rx_queue *rq, struct Vmxnet3_RxCompDesc *rcd,
1182 struct vmxnet3_rx_ctx *ctx, struct vmxnet3_adapter *adapter)
1183{
1184 rq->stats.drop_err++;
1185 if (!rcd->fcs)
1186 rq->stats.drop_fcs++;
1187
1188 rq->stats.drop_total++;
1189
1190 /*
1191 * We do not unmap and chain the rx buffer to the skb.
1192 * We basically pretend this buffer is not used and will be recycled
1193 * by vmxnet3_rq_alloc_rx_buf()
1194 */
1195
1196 /*
1197 * ctx->skb may be NULL if this is the first and the only one
1198 * desc for the pkt
1199 */
1200 if (ctx->skb)
1201 dev_kfree_skb_irq(ctx->skb);
1202
1203 ctx->skb = NULL;
1204}
1205
1206
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07001207static u32
1208vmxnet3_get_hdr_len(struct vmxnet3_adapter *adapter, struct sk_buff *skb,
1209 union Vmxnet3_GenericDesc *gdesc)
1210{
1211 u32 hlen, maplen;
1212 union {
1213 void *ptr;
1214 struct ethhdr *eth;
1215 struct iphdr *ipv4;
1216 struct ipv6hdr *ipv6;
1217 struct tcphdr *tcp;
1218 } hdr;
1219 BUG_ON(gdesc->rcd.tcp == 0);
1220
1221 maplen = skb_headlen(skb);
1222 if (unlikely(sizeof(struct iphdr) + sizeof(struct tcphdr) > maplen))
1223 return 0;
1224
1225 hdr.eth = eth_hdr(skb);
1226 if (gdesc->rcd.v4) {
1227 BUG_ON(hdr.eth->h_proto != htons(ETH_P_IP));
1228 hdr.ptr += sizeof(struct ethhdr);
1229 BUG_ON(hdr.ipv4->protocol != IPPROTO_TCP);
1230 hlen = hdr.ipv4->ihl << 2;
1231 hdr.ptr += hdr.ipv4->ihl << 2;
1232 } else if (gdesc->rcd.v6) {
1233 BUG_ON(hdr.eth->h_proto != htons(ETH_P_IPV6));
1234 hdr.ptr += sizeof(struct ethhdr);
1235 /* Use an estimated value, since we also need to handle
1236 * TSO case.
1237 */
1238 if (hdr.ipv6->nexthdr != IPPROTO_TCP)
1239 return sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
1240 hlen = sizeof(struct ipv6hdr);
1241 hdr.ptr += sizeof(struct ipv6hdr);
1242 } else {
1243 /* Non-IP pkt, dont estimate header length */
1244 return 0;
1245 }
1246
1247 if (hlen + sizeof(struct tcphdr) > maplen)
1248 return 0;
1249
1250 return (hlen + (hdr.tcp->doff << 2));
1251}
1252
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001253static int
1254vmxnet3_rq_rx_complete(struct vmxnet3_rx_queue *rq,
1255 struct vmxnet3_adapter *adapter, int quota)
1256{
Joe Perches215faf92010-12-21 02:16:10 -08001257 static const u32 rxprod_reg[2] = {
1258 VMXNET3_REG_RXPROD, VMXNET3_REG_RXPROD2
1259 };
Neil Horman07696362015-07-07 14:02:18 -04001260 u32 num_pkts = 0;
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001261 bool skip_page_frags = false;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001262 struct Vmxnet3_RxCompDesc *rcd;
1263 struct vmxnet3_rx_ctx *ctx = &rq->rx_ctx;
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07001264 u16 segCnt = 0, mss = 0;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001265#ifdef __BIG_ENDIAN_BITFIELD
1266 struct Vmxnet3_RxDesc rxCmdDesc;
1267 struct Vmxnet3_RxCompDesc rxComp;
1268#endif
1269 vmxnet3_getRxComp(rcd, &rq->comp_ring.base[rq->comp_ring.next2proc].rcd,
1270 &rxComp);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001271 while (rcd->gen == rq->comp_ring.gen) {
1272 struct vmxnet3_rx_buf_info *rbi;
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001273 struct sk_buff *skb, *new_skb = NULL;
1274 struct page *new_page = NULL;
Alexey Khoroshilov5738a092015-11-28 01:29:30 +03001275 dma_addr_t new_dma_addr;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001276 int num_to_alloc;
1277 struct Vmxnet3_RxDesc *rxd;
1278 u32 idx, ring_idx;
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001279 struct vmxnet3_cmd_ring *ring = NULL;
Neil Horman07696362015-07-07 14:02:18 -04001280 if (num_pkts >= quota) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001281 /* we may stop even before we see the EOP desc of
1282 * the current pkt
1283 */
1284 break;
1285 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001286 BUG_ON(rcd->rqID != rq->qid && rcd->rqID != rq->qid2);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001287 idx = rcd->rxdIdx;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001288 ring_idx = rcd->rqID < adapter->num_rx_queues ? 0 : 1;
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001289 ring = rq->rx_ring + ring_idx;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001290 vmxnet3_getRxDesc(rxd, &rq->rx_ring[ring_idx].base[idx].rxd,
1291 &rxCmdDesc);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001292 rbi = rq->buf_info[ring_idx] + idx;
1293
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001294 BUG_ON(rxd->addr != rbi->dma_addr ||
1295 rxd->len != rbi->len);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001296
1297 if (unlikely(rcd->eop && rcd->err)) {
1298 vmxnet3_rx_error(rq, rcd, ctx, adapter);
1299 goto rcd_done;
1300 }
1301
1302 if (rcd->sop) { /* first buf of the pkt */
1303 BUG_ON(rxd->btype != VMXNET3_RXD_BTYPE_HEAD ||
1304 rcd->rqID != rq->qid);
1305
1306 BUG_ON(rbi->buf_type != VMXNET3_RX_BUF_SKB);
1307 BUG_ON(ctx->skb != NULL || rbi->skb == NULL);
1308
1309 if (unlikely(rcd->len == 0)) {
1310 /* Pretend the rx buffer is skipped. */
1311 BUG_ON(!(rcd->sop && rcd->eop));
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +00001312 netdev_dbg(adapter->netdev,
Randy Dunlapf69655822009-10-16 17:54:34 -07001313 "rxRing[%u][%u] 0 length\n",
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001314 ring_idx, idx);
1315 goto rcd_done;
1316 }
1317
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001318 skip_page_frags = false;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001319 ctx->skb = rbi->skb;
Stephen Hemminger0d735f12013-01-15 07:28:26 +00001320 new_skb = netdev_alloc_skb_ip_align(adapter->netdev,
1321 rbi->len);
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001322 if (new_skb == NULL) {
1323 /* Skb allocation failed, do not handover this
1324 * skb to stack. Reuse it. Drop the existing pkt
1325 */
1326 rq->stats.rx_buf_alloc_failure++;
1327 ctx->skb = NULL;
1328 rq->stats.drop_total++;
1329 skip_page_frags = true;
1330 goto rcd_done;
1331 }
Alexey Khoroshilov5738a092015-11-28 01:29:30 +03001332 new_dma_addr = dma_map_single(&adapter->pdev->dev,
1333 new_skb->data, rbi->len,
1334 PCI_DMA_FROMDEVICE);
1335 if (dma_mapping_error(&adapter->pdev->dev,
1336 new_dma_addr)) {
1337 dev_kfree_skb(new_skb);
1338 /* Skb allocation failed, do not handover this
1339 * skb to stack. Reuse it. Drop the existing pkt
1340 */
1341 rq->stats.rx_buf_alloc_failure++;
1342 ctx->skb = NULL;
1343 rq->stats.drop_total++;
1344 skip_page_frags = true;
1345 goto rcd_done;
1346 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001347
Andy Kingb0eb57c2013-08-23 09:33:49 -07001348 dma_unmap_single(&adapter->pdev->dev, rbi->dma_addr,
1349 rbi->len,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001350 PCI_DMA_FROMDEVICE);
1351
Stephen Hemminger7db11f72013-01-15 07:28:35 +00001352#ifdef VMXNET3_RSS
1353 if (rcd->rssType != VMXNET3_RCD_RSS_TYPE_NONE &&
1354 (adapter->netdev->features & NETIF_F_RXHASH))
Michal Schmidt2c15a152013-12-20 13:16:57 +01001355 skb_set_hash(ctx->skb,
1356 le32_to_cpu(rcd->rssHash),
Tom Herbert0b680702013-12-17 23:32:08 -08001357 PKT_HASH_TYPE_L3);
Stephen Hemminger7db11f72013-01-15 07:28:35 +00001358#endif
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001359 skb_put(ctx->skb, rcd->len);
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001360
1361 /* Immediate refill */
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001362 rbi->skb = new_skb;
Alexey Khoroshilov5738a092015-11-28 01:29:30 +03001363 rbi->dma_addr = new_dma_addr;
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001364 rxd->addr = cpu_to_le64(rbi->dma_addr);
1365 rxd->len = rbi->len;
Shrikrishna Khare190af102016-06-16 10:51:53 -07001366 if (VMXNET3_VERSION_GE_2(adapter) &&
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07001367 rcd->type == VMXNET3_CDTYPE_RXCOMP_LRO) {
1368 struct Vmxnet3_RxCompDescExt *rcdlro;
1369 rcdlro = (struct Vmxnet3_RxCompDescExt *)rcd;
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001370
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07001371 segCnt = rcdlro->segCnt;
Shrikrishna Khare50219532016-06-08 07:40:53 -07001372 WARN_ON_ONCE(segCnt == 0);
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07001373 mss = rcdlro->mss;
1374 if (unlikely(segCnt <= 1))
1375 segCnt = 0;
1376 } else {
1377 segCnt = 0;
1378 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001379 } else {
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001380 BUG_ON(ctx->skb == NULL && !skip_page_frags);
1381
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001382 /* non SOP buffer must be type 1 in most cases */
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001383 BUG_ON(rbi->buf_type != VMXNET3_RX_BUF_PAGE);
1384 BUG_ON(rxd->btype != VMXNET3_RXD_BTYPE_BODY);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001385
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001386 /* If an sop buffer was dropped, skip all
1387 * following non-sop fragments. They will be reused.
1388 */
1389 if (skip_page_frags)
1390 goto rcd_done;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001391
Shreyas Bhatewarac41fcce2015-06-19 13:37:03 -07001392 if (rcd->len) {
1393 new_page = alloc_page(GFP_ATOMIC);
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001394 /* Replacement page frag could not be allocated.
1395 * Reuse this page. Drop the pkt and free the
1396 * skb which contained this page as a frag. Skip
1397 * processing all the following non-sop frags.
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001398 */
Shreyas Bhatewarac41fcce2015-06-19 13:37:03 -07001399 if (unlikely(!new_page)) {
1400 rq->stats.rx_buf_alloc_failure++;
1401 dev_kfree_skb(ctx->skb);
1402 ctx->skb = NULL;
1403 skip_page_frags = true;
1404 goto rcd_done;
1405 }
Shrikrishna Khare58caf632016-01-06 10:44:27 -08001406 new_dma_addr = dma_map_page(&adapter->pdev->dev,
1407 new_page,
1408 0, PAGE_SIZE,
1409 PCI_DMA_FROMDEVICE);
Alexey Khoroshilov5738a092015-11-28 01:29:30 +03001410 if (dma_mapping_error(&adapter->pdev->dev,
1411 new_dma_addr)) {
1412 put_page(new_page);
1413 rq->stats.rx_buf_alloc_failure++;
1414 dev_kfree_skb(ctx->skb);
1415 ctx->skb = NULL;
1416 skip_page_frags = true;
1417 goto rcd_done;
1418 }
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001419
Andy Kingb0eb57c2013-08-23 09:33:49 -07001420 dma_unmap_page(&adapter->pdev->dev,
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001421 rbi->dma_addr, rbi->len,
1422 PCI_DMA_FROMDEVICE);
1423
1424 vmxnet3_append_frag(ctx->skb, rcd, rbi);
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001425
Shreyas Bhatewarac41fcce2015-06-19 13:37:03 -07001426 /* Immediate refill */
1427 rbi->page = new_page;
Alexey Khoroshilov5738a092015-11-28 01:29:30 +03001428 rbi->dma_addr = new_dma_addr;
Shreyas Bhatewarac41fcce2015-06-19 13:37:03 -07001429 rxd->addr = cpu_to_le64(rbi->dma_addr);
1430 rxd->len = rbi->len;
1431 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001432 }
1433
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001434
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001435 skb = ctx->skb;
1436 if (rcd->eop) {
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07001437 u32 mtu = adapter->netdev->mtu;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001438 skb->len += skb->data_len;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001439
1440 vmxnet3_rx_csum(adapter, skb,
1441 (union Vmxnet3_GenericDesc *)rcd);
1442 skb->protocol = eth_type_trans(skb, adapter->netdev);
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07001443 if (!rcd->tcp || !adapter->lro)
1444 goto not_lro;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001445
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07001446 if (segCnt != 0 && mss != 0) {
1447 skb_shinfo(skb)->gso_type = rcd->v4 ?
1448 SKB_GSO_TCPV4 : SKB_GSO_TCPV6;
1449 skb_shinfo(skb)->gso_size = mss;
1450 skb_shinfo(skb)->gso_segs = segCnt;
1451 } else if (segCnt != 0 || skb->len > mtu) {
1452 u32 hlen;
1453
1454 hlen = vmxnet3_get_hdr_len(adapter, skb,
1455 (union Vmxnet3_GenericDesc *)rcd);
1456 if (hlen == 0)
1457 goto not_lro;
1458
1459 skb_shinfo(skb)->gso_type =
1460 rcd->v4 ? SKB_GSO_TCPV4 : SKB_GSO_TCPV6;
1461 if (segCnt != 0) {
1462 skb_shinfo(skb)->gso_segs = segCnt;
1463 skb_shinfo(skb)->gso_size =
1464 DIV_ROUND_UP(skb->len -
1465 hlen, segCnt);
1466 } else {
1467 skb_shinfo(skb)->gso_size = mtu - hlen;
1468 }
1469 }
1470not_lro:
Jesse Gross72e85c42011-06-23 13:04:39 +00001471 if (unlikely(rcd->ts))
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001472 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), rcd->tci);
Jesse Gross72e85c42011-06-23 13:04:39 +00001473
Jesse Gross213ade82011-06-24 14:24:35 +00001474 if (adapter->netdev->features & NETIF_F_LRO)
1475 netif_receive_skb(skb);
1476 else
1477 napi_gro_receive(&rq->napi, skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001478
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001479 ctx->skb = NULL;
Neil Horman07696362015-07-07 14:02:18 -04001480 num_pkts++;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001481 }
1482
1483rcd_done:
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001484 /* device may have skipped some rx descs */
1485 ring->next2comp = idx;
1486 num_to_alloc = vmxnet3_cmd_ring_desc_avail(ring);
1487 ring = rq->rx_ring + ring_idx;
1488 while (num_to_alloc) {
1489 vmxnet3_getRxDesc(rxd, &ring->base[ring->next2fill].rxd,
1490 &rxCmdDesc);
1491 BUG_ON(!rxd->addr);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001492
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001493 /* Recv desc is ready to be used by the device */
1494 rxd->gen = ring->gen;
1495 vmxnet3_cmd_ring_adv_next2fill(ring);
1496 num_to_alloc--;
1497 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001498
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001499 /* if needed, update the register */
1500 if (unlikely(rq->shared->updateRxProd)) {
1501 VMXNET3_WRITE_BAR0_REG(adapter,
stephen hemminger96800ee2012-11-13 13:53:28 +00001502 rxprod_reg[ring_idx] + rq->qid * 8,
1503 ring->next2fill);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001504 }
1505
1506 vmxnet3_comp_ring_adv_next2proc(&rq->comp_ring);
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001507 vmxnet3_getRxComp(rcd,
stephen hemminger96800ee2012-11-13 13:53:28 +00001508 &rq->comp_ring.base[rq->comp_ring.next2proc].rcd, &rxComp);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001509 }
1510
Neil Horman07696362015-07-07 14:02:18 -04001511 return num_pkts;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001512}
1513
1514
1515static void
1516vmxnet3_rq_cleanup(struct vmxnet3_rx_queue *rq,
1517 struct vmxnet3_adapter *adapter)
1518{
1519 u32 i, ring_idx;
1520 struct Vmxnet3_RxDesc *rxd;
1521
1522 for (ring_idx = 0; ring_idx < 2; ring_idx++) {
1523 for (i = 0; i < rq->rx_ring[ring_idx].size; i++) {
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001524#ifdef __BIG_ENDIAN_BITFIELD
1525 struct Vmxnet3_RxDesc rxDesc;
1526#endif
1527 vmxnet3_getRxDesc(rxd,
1528 &rq->rx_ring[ring_idx].base[i].rxd, &rxDesc);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001529
1530 if (rxd->btype == VMXNET3_RXD_BTYPE_HEAD &&
1531 rq->buf_info[ring_idx][i].skb) {
Andy Kingb0eb57c2013-08-23 09:33:49 -07001532 dma_unmap_single(&adapter->pdev->dev, rxd->addr,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001533 rxd->len, PCI_DMA_FROMDEVICE);
1534 dev_kfree_skb(rq->buf_info[ring_idx][i].skb);
1535 rq->buf_info[ring_idx][i].skb = NULL;
1536 } else if (rxd->btype == VMXNET3_RXD_BTYPE_BODY &&
1537 rq->buf_info[ring_idx][i].page) {
Andy Kingb0eb57c2013-08-23 09:33:49 -07001538 dma_unmap_page(&adapter->pdev->dev, rxd->addr,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001539 rxd->len, PCI_DMA_FROMDEVICE);
1540 put_page(rq->buf_info[ring_idx][i].page);
1541 rq->buf_info[ring_idx][i].page = NULL;
1542 }
1543 }
1544
1545 rq->rx_ring[ring_idx].gen = VMXNET3_INIT_GEN;
1546 rq->rx_ring[ring_idx].next2fill =
1547 rq->rx_ring[ring_idx].next2comp = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001548 }
1549
1550 rq->comp_ring.gen = VMXNET3_INIT_GEN;
1551 rq->comp_ring.next2proc = 0;
1552}
1553
1554
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001555static void
1556vmxnet3_rq_cleanup_all(struct vmxnet3_adapter *adapter)
1557{
1558 int i;
1559
1560 for (i = 0; i < adapter->num_rx_queues; i++)
1561 vmxnet3_rq_cleanup(&adapter->rx_queue[i], adapter);
1562}
1563
1564
stephen hemminger280b74f2013-02-22 08:26:29 +00001565static void vmxnet3_rq_destroy(struct vmxnet3_rx_queue *rq,
1566 struct vmxnet3_adapter *adapter)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001567{
1568 int i;
1569 int j;
1570
1571 /* all rx buffers must have already been freed */
1572 for (i = 0; i < 2; i++) {
1573 if (rq->buf_info[i]) {
1574 for (j = 0; j < rq->rx_ring[i].size; j++)
1575 BUG_ON(rq->buf_info[i][j].page != NULL);
1576 }
1577 }
1578
1579
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001580 for (i = 0; i < 2; i++) {
1581 if (rq->rx_ring[i].base) {
Andy Kingb0eb57c2013-08-23 09:33:49 -07001582 dma_free_coherent(&adapter->pdev->dev,
1583 rq->rx_ring[i].size
1584 * sizeof(struct Vmxnet3_RxDesc),
1585 rq->rx_ring[i].base,
1586 rq->rx_ring[i].basePA);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001587 rq->rx_ring[i].base = NULL;
1588 }
1589 rq->buf_info[i] = NULL;
1590 }
1591
1592 if (rq->comp_ring.base) {
Andy Kingb0eb57c2013-08-23 09:33:49 -07001593 dma_free_coherent(&adapter->pdev->dev, rq->comp_ring.size
1594 * sizeof(struct Vmxnet3_RxCompDesc),
1595 rq->comp_ring.base, rq->comp_ring.basePA);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001596 rq->comp_ring.base = NULL;
1597 }
Andy Kingb0eb57c2013-08-23 09:33:49 -07001598
1599 if (rq->buf_info[0]) {
1600 size_t sz = sizeof(struct vmxnet3_rx_buf_info) *
1601 (rq->rx_ring[0].size + rq->rx_ring[1].size);
1602 dma_free_coherent(&adapter->pdev->dev, sz, rq->buf_info[0],
1603 rq->buf_info_pa);
1604 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001605}
1606
1607
1608static int
1609vmxnet3_rq_init(struct vmxnet3_rx_queue *rq,
1610 struct vmxnet3_adapter *adapter)
1611{
1612 int i;
1613
1614 /* initialize buf_info */
1615 for (i = 0; i < rq->rx_ring[0].size; i++) {
1616
1617 /* 1st buf for a pkt is skbuff */
1618 if (i % adapter->rx_buf_per_pkt == 0) {
1619 rq->buf_info[0][i].buf_type = VMXNET3_RX_BUF_SKB;
1620 rq->buf_info[0][i].len = adapter->skb_buf_size;
1621 } else { /* subsequent bufs for a pkt is frag */
1622 rq->buf_info[0][i].buf_type = VMXNET3_RX_BUF_PAGE;
1623 rq->buf_info[0][i].len = PAGE_SIZE;
1624 }
1625 }
1626 for (i = 0; i < rq->rx_ring[1].size; i++) {
1627 rq->buf_info[1][i].buf_type = VMXNET3_RX_BUF_PAGE;
1628 rq->buf_info[1][i].len = PAGE_SIZE;
1629 }
1630
1631 /* reset internal state and allocate buffers for both rings */
1632 for (i = 0; i < 2; i++) {
1633 rq->rx_ring[i].next2fill = rq->rx_ring[i].next2comp = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001634
1635 memset(rq->rx_ring[i].base, 0, rq->rx_ring[i].size *
1636 sizeof(struct Vmxnet3_RxDesc));
1637 rq->rx_ring[i].gen = VMXNET3_INIT_GEN;
1638 }
1639 if (vmxnet3_rq_alloc_rx_buf(rq, 0, rq->rx_ring[0].size - 1,
1640 adapter) == 0) {
1641 /* at least has 1 rx buffer for the 1st ring */
1642 return -ENOMEM;
1643 }
1644 vmxnet3_rq_alloc_rx_buf(rq, 1, rq->rx_ring[1].size - 1, adapter);
1645
1646 /* reset the comp ring */
1647 rq->comp_ring.next2proc = 0;
1648 memset(rq->comp_ring.base, 0, rq->comp_ring.size *
1649 sizeof(struct Vmxnet3_RxCompDesc));
1650 rq->comp_ring.gen = VMXNET3_INIT_GEN;
1651
1652 /* reset rxctx */
1653 rq->rx_ctx.skb = NULL;
1654
1655 /* stats are not reset */
1656 return 0;
1657}
1658
1659
1660static int
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001661vmxnet3_rq_init_all(struct vmxnet3_adapter *adapter)
1662{
1663 int i, err = 0;
1664
1665 for (i = 0; i < adapter->num_rx_queues; i++) {
1666 err = vmxnet3_rq_init(&adapter->rx_queue[i], adapter);
1667 if (unlikely(err)) {
1668 dev_err(&adapter->netdev->dev, "%s: failed to "
1669 "initialize rx queue%i\n",
1670 adapter->netdev->name, i);
1671 break;
1672 }
1673 }
1674 return err;
1675
1676}
1677
1678
1679static int
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001680vmxnet3_rq_create(struct vmxnet3_rx_queue *rq, struct vmxnet3_adapter *adapter)
1681{
1682 int i;
1683 size_t sz;
1684 struct vmxnet3_rx_buf_info *bi;
1685
1686 for (i = 0; i < 2; i++) {
1687
1688 sz = rq->rx_ring[i].size * sizeof(struct Vmxnet3_RxDesc);
Andy Kingb0eb57c2013-08-23 09:33:49 -07001689 rq->rx_ring[i].base = dma_alloc_coherent(
1690 &adapter->pdev->dev, sz,
1691 &rq->rx_ring[i].basePA,
1692 GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001693 if (!rq->rx_ring[i].base) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00001694 netdev_err(adapter->netdev,
1695 "failed to allocate rx ring %d\n", i);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001696 goto err;
1697 }
1698 }
1699
1700 sz = rq->comp_ring.size * sizeof(struct Vmxnet3_RxCompDesc);
Andy Kingb0eb57c2013-08-23 09:33:49 -07001701 rq->comp_ring.base = dma_alloc_coherent(&adapter->pdev->dev, sz,
1702 &rq->comp_ring.basePA,
1703 GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001704 if (!rq->comp_ring.base) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00001705 netdev_err(adapter->netdev, "failed to allocate rx comp ring\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001706 goto err;
1707 }
1708
1709 sz = sizeof(struct vmxnet3_rx_buf_info) * (rq->rx_ring[0].size +
1710 rq->rx_ring[1].size);
Andy Kingb0eb57c2013-08-23 09:33:49 -07001711 bi = dma_zalloc_coherent(&adapter->pdev->dev, sz, &rq->buf_info_pa,
1712 GFP_KERNEL);
Joe Perchese404dec2012-01-29 12:56:23 +00001713 if (!bi)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001714 goto err;
Joe Perchese404dec2012-01-29 12:56:23 +00001715
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001716 rq->buf_info[0] = bi;
1717 rq->buf_info[1] = bi + rq->rx_ring[0].size;
1718
1719 return 0;
1720
1721err:
1722 vmxnet3_rq_destroy(rq, adapter);
1723 return -ENOMEM;
1724}
1725
1726
1727static int
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001728vmxnet3_rq_create_all(struct vmxnet3_adapter *adapter)
1729{
1730 int i, err = 0;
1731
1732 for (i = 0; i < adapter->num_rx_queues; i++) {
1733 err = vmxnet3_rq_create(&adapter->rx_queue[i], adapter);
1734 if (unlikely(err)) {
1735 dev_err(&adapter->netdev->dev,
1736 "%s: failed to create rx queue%i\n",
1737 adapter->netdev->name, i);
1738 goto err_out;
1739 }
1740 }
1741 return err;
1742err_out:
1743 vmxnet3_rq_destroy_all(adapter);
1744 return err;
1745
1746}
1747
1748/* Multiple queue aware polling function for tx and rx */
1749
1750static int
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001751vmxnet3_do_poll(struct vmxnet3_adapter *adapter, int budget)
1752{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001753 int rcd_done = 0, i;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001754 if (unlikely(adapter->shared->ecr))
1755 vmxnet3_process_events(adapter);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001756 for (i = 0; i < adapter->num_tx_queues; i++)
1757 vmxnet3_tq_tx_complete(&adapter->tx_queue[i], adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001758
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001759 for (i = 0; i < adapter->num_rx_queues; i++)
1760 rcd_done += vmxnet3_rq_rx_complete(&adapter->rx_queue[i],
1761 adapter, budget);
1762 return rcd_done;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001763}
1764
1765
1766static int
1767vmxnet3_poll(struct napi_struct *napi, int budget)
1768{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001769 struct vmxnet3_rx_queue *rx_queue = container_of(napi,
1770 struct vmxnet3_rx_queue, napi);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001771 int rxd_done;
1772
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001773 rxd_done = vmxnet3_do_poll(rx_queue->adapter, budget);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001774
1775 if (rxd_done < budget) {
1776 napi_complete(napi);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001777 vmxnet3_enable_all_intrs(rx_queue->adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001778 }
1779 return rxd_done;
1780}
1781
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001782/*
1783 * NAPI polling function for MSI-X mode with multiple Rx queues
1784 * Returns the # of the NAPI credit consumed (# of rx descriptors processed)
1785 */
1786
1787static int
1788vmxnet3_poll_rx_only(struct napi_struct *napi, int budget)
1789{
1790 struct vmxnet3_rx_queue *rq = container_of(napi,
1791 struct vmxnet3_rx_queue, napi);
1792 struct vmxnet3_adapter *adapter = rq->adapter;
1793 int rxd_done;
1794
1795 /* When sharing interrupt with corresponding tx queue, process
1796 * tx completions in that queue as well
1797 */
1798 if (adapter->share_intr == VMXNET3_INTR_BUDDYSHARE) {
1799 struct vmxnet3_tx_queue *tq =
1800 &adapter->tx_queue[rq - adapter->rx_queue];
1801 vmxnet3_tq_tx_complete(tq, adapter);
1802 }
1803
1804 rxd_done = vmxnet3_rq_rx_complete(rq, adapter, budget);
1805
1806 if (rxd_done < budget) {
1807 napi_complete(napi);
1808 vmxnet3_enable_intr(adapter, rq->comp_ring.intr_idx);
1809 }
1810 return rxd_done;
1811}
1812
1813
1814#ifdef CONFIG_PCI_MSI
1815
1816/*
1817 * Handle completion interrupts on tx queues
1818 * Returns whether or not the intr is handled
1819 */
1820
1821static irqreturn_t
1822vmxnet3_msix_tx(int irq, void *data)
1823{
1824 struct vmxnet3_tx_queue *tq = data;
1825 struct vmxnet3_adapter *adapter = tq->adapter;
1826
1827 if (adapter->intr.mask_mode == VMXNET3_IMM_ACTIVE)
1828 vmxnet3_disable_intr(adapter, tq->comp_ring.intr_idx);
1829
1830 /* Handle the case where only one irq is allocate for all tx queues */
1831 if (adapter->share_intr == VMXNET3_INTR_TXSHARE) {
1832 int i;
1833 for (i = 0; i < adapter->num_tx_queues; i++) {
1834 struct vmxnet3_tx_queue *txq = &adapter->tx_queue[i];
1835 vmxnet3_tq_tx_complete(txq, adapter);
1836 }
1837 } else {
1838 vmxnet3_tq_tx_complete(tq, adapter);
1839 }
1840 vmxnet3_enable_intr(adapter, tq->comp_ring.intr_idx);
1841
1842 return IRQ_HANDLED;
1843}
1844
1845
1846/*
1847 * Handle completion interrupts on rx queues. Returns whether or not the
1848 * intr is handled
1849 */
1850
1851static irqreturn_t
1852vmxnet3_msix_rx(int irq, void *data)
1853{
1854 struct vmxnet3_rx_queue *rq = data;
1855 struct vmxnet3_adapter *adapter = rq->adapter;
1856
1857 /* disable intr if needed */
1858 if (adapter->intr.mask_mode == VMXNET3_IMM_ACTIVE)
1859 vmxnet3_disable_intr(adapter, rq->comp_ring.intr_idx);
1860 napi_schedule(&rq->napi);
1861
1862 return IRQ_HANDLED;
1863}
1864
1865/*
1866 *----------------------------------------------------------------------------
1867 *
1868 * vmxnet3_msix_event --
1869 *
1870 * vmxnet3 msix event intr handler
1871 *
1872 * Result:
1873 * whether or not the intr is handled
1874 *
1875 *----------------------------------------------------------------------------
1876 */
1877
1878static irqreturn_t
1879vmxnet3_msix_event(int irq, void *data)
1880{
1881 struct net_device *dev = data;
1882 struct vmxnet3_adapter *adapter = netdev_priv(dev);
1883
1884 /* disable intr if needed */
1885 if (adapter->intr.mask_mode == VMXNET3_IMM_ACTIVE)
1886 vmxnet3_disable_intr(adapter, adapter->intr.event_intr_idx);
1887
1888 if (adapter->shared->ecr)
1889 vmxnet3_process_events(adapter);
1890
1891 vmxnet3_enable_intr(adapter, adapter->intr.event_intr_idx);
1892
1893 return IRQ_HANDLED;
1894}
1895
1896#endif /* CONFIG_PCI_MSI */
1897
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001898
1899/* Interrupt handler for vmxnet3 */
1900static irqreturn_t
1901vmxnet3_intr(int irq, void *dev_id)
1902{
1903 struct net_device *dev = dev_id;
1904 struct vmxnet3_adapter *adapter = netdev_priv(dev);
1905
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001906 if (adapter->intr.type == VMXNET3_IT_INTX) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001907 u32 icr = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_ICR);
1908 if (unlikely(icr == 0))
1909 /* not ours */
1910 return IRQ_NONE;
1911 }
1912
1913
1914 /* disable intr if needed */
1915 if (adapter->intr.mask_mode == VMXNET3_IMM_ACTIVE)
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001916 vmxnet3_disable_all_intrs(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001917
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001918 napi_schedule(&adapter->rx_queue[0].napi);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001919
1920 return IRQ_HANDLED;
1921}
1922
1923#ifdef CONFIG_NET_POLL_CONTROLLER
1924
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001925/* netpoll callback. */
1926static void
1927vmxnet3_netpoll(struct net_device *netdev)
1928{
1929 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001930
Neil Hormand25f06e2014-03-10 06:55:55 -04001931 switch (adapter->intr.type) {
Arnd Bergmann0a8d8c42014-03-13 10:44:34 +01001932#ifdef CONFIG_PCI_MSI
1933 case VMXNET3_IT_MSIX: {
1934 int i;
Neil Hormand25f06e2014-03-10 06:55:55 -04001935 for (i = 0; i < adapter->num_rx_queues; i++)
1936 vmxnet3_msix_rx(0, &adapter->rx_queue[i]);
1937 break;
Arnd Bergmann0a8d8c42014-03-13 10:44:34 +01001938 }
1939#endif
Neil Hormand25f06e2014-03-10 06:55:55 -04001940 case VMXNET3_IT_MSI:
1941 default:
1942 vmxnet3_intr(0, adapter->netdev);
1943 break;
1944 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001945
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001946}
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001947#endif /* CONFIG_NET_POLL_CONTROLLER */
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001948
1949static int
1950vmxnet3_request_irqs(struct vmxnet3_adapter *adapter)
1951{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001952 struct vmxnet3_intr *intr = &adapter->intr;
1953 int err = 0, i;
1954 int vector = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001955
Randy Dunlap8f7e5242009-10-14 20:38:58 -07001956#ifdef CONFIG_PCI_MSI
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001957 if (adapter->intr.type == VMXNET3_IT_MSIX) {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001958 for (i = 0; i < adapter->num_tx_queues; i++) {
1959 if (adapter->share_intr != VMXNET3_INTR_BUDDYSHARE) {
1960 sprintf(adapter->tx_queue[i].name, "%s-tx-%d",
1961 adapter->netdev->name, vector);
1962 err = request_irq(
1963 intr->msix_entries[vector].vector,
1964 vmxnet3_msix_tx, 0,
1965 adapter->tx_queue[i].name,
1966 &adapter->tx_queue[i]);
1967 } else {
1968 sprintf(adapter->tx_queue[i].name, "%s-rxtx-%d",
1969 adapter->netdev->name, vector);
1970 }
1971 if (err) {
1972 dev_err(&adapter->netdev->dev,
1973 "Failed to request irq for MSIX, %s, "
1974 "error %d\n",
1975 adapter->tx_queue[i].name, err);
1976 return err;
1977 }
1978
1979 /* Handle the case where only 1 MSIx was allocated for
1980 * all tx queues */
1981 if (adapter->share_intr == VMXNET3_INTR_TXSHARE) {
1982 for (; i < adapter->num_tx_queues; i++)
1983 adapter->tx_queue[i].comp_ring.intr_idx
1984 = vector;
1985 vector++;
1986 break;
1987 } else {
1988 adapter->tx_queue[i].comp_ring.intr_idx
1989 = vector++;
1990 }
1991 }
1992 if (adapter->share_intr == VMXNET3_INTR_BUDDYSHARE)
1993 vector = 0;
1994
1995 for (i = 0; i < adapter->num_rx_queues; i++) {
1996 if (adapter->share_intr != VMXNET3_INTR_BUDDYSHARE)
1997 sprintf(adapter->rx_queue[i].name, "%s-rx-%d",
1998 adapter->netdev->name, vector);
1999 else
2000 sprintf(adapter->rx_queue[i].name, "%s-rxtx-%d",
2001 adapter->netdev->name, vector);
2002 err = request_irq(intr->msix_entries[vector].vector,
2003 vmxnet3_msix_rx, 0,
2004 adapter->rx_queue[i].name,
2005 &(adapter->rx_queue[i]));
2006 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002007 netdev_err(adapter->netdev,
2008 "Failed to request irq for MSIX, "
2009 "%s, error %d\n",
2010 adapter->rx_queue[i].name, err);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002011 return err;
2012 }
2013
2014 adapter->rx_queue[i].comp_ring.intr_idx = vector++;
2015 }
2016
2017 sprintf(intr->event_msi_vector_name, "%s-event-%d",
2018 adapter->netdev->name, vector);
2019 err = request_irq(intr->msix_entries[vector].vector,
2020 vmxnet3_msix_event, 0,
2021 intr->event_msi_vector_name, adapter->netdev);
2022 intr->event_intr_idx = vector;
2023
2024 } else if (intr->type == VMXNET3_IT_MSI) {
2025 adapter->num_rx_queues = 1;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002026 err = request_irq(adapter->pdev->irq, vmxnet3_intr, 0,
2027 adapter->netdev->name, adapter->netdev);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002028 } else {
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002029#endif
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002030 adapter->num_rx_queues = 1;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002031 err = request_irq(adapter->pdev->irq, vmxnet3_intr,
2032 IRQF_SHARED, adapter->netdev->name,
2033 adapter->netdev);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002034#ifdef CONFIG_PCI_MSI
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002035 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002036#endif
2037 intr->num_intrs = vector + 1;
2038 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002039 netdev_err(adapter->netdev,
2040 "Failed to request irq (intr type:%d), error %d\n",
2041 intr->type, err);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002042 } else {
2043 /* Number of rx queues will not change after this */
2044 for (i = 0; i < adapter->num_rx_queues; i++) {
2045 struct vmxnet3_rx_queue *rq = &adapter->rx_queue[i];
2046 rq->qid = i;
2047 rq->qid2 = i + adapter->num_rx_queues;
2048 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002049
2050
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002051
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002052 /* init our intr settings */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002053 for (i = 0; i < intr->num_intrs; i++)
2054 intr->mod_levels[i] = UPT1_IML_ADAPTIVE;
2055 if (adapter->intr.type != VMXNET3_IT_MSIX) {
2056 adapter->intr.event_intr_idx = 0;
2057 for (i = 0; i < adapter->num_tx_queues; i++)
2058 adapter->tx_queue[i].comp_ring.intr_idx = 0;
2059 adapter->rx_queue[0].comp_ring.intr_idx = 0;
2060 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002061
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002062 netdev_info(adapter->netdev,
2063 "intr type %u, mode %u, %u vectors allocated\n",
2064 intr->type, intr->mask_mode, intr->num_intrs);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002065 }
2066
2067 return err;
2068}
2069
2070
2071static void
2072vmxnet3_free_irqs(struct vmxnet3_adapter *adapter)
2073{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002074 struct vmxnet3_intr *intr = &adapter->intr;
2075 BUG_ON(intr->type == VMXNET3_IT_AUTO || intr->num_intrs <= 0);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002076
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002077 switch (intr->type) {
Randy Dunlap8f7e5242009-10-14 20:38:58 -07002078#ifdef CONFIG_PCI_MSI
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002079 case VMXNET3_IT_MSIX:
2080 {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002081 int i, vector = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002082
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002083 if (adapter->share_intr != VMXNET3_INTR_BUDDYSHARE) {
2084 for (i = 0; i < adapter->num_tx_queues; i++) {
2085 free_irq(intr->msix_entries[vector++].vector,
2086 &(adapter->tx_queue[i]));
2087 if (adapter->share_intr == VMXNET3_INTR_TXSHARE)
2088 break;
2089 }
2090 }
2091
2092 for (i = 0; i < adapter->num_rx_queues; i++) {
2093 free_irq(intr->msix_entries[vector++].vector,
2094 &(adapter->rx_queue[i]));
2095 }
2096
2097 free_irq(intr->msix_entries[vector].vector,
2098 adapter->netdev);
2099 BUG_ON(vector >= intr->num_intrs);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002100 break;
2101 }
Randy Dunlap8f7e5242009-10-14 20:38:58 -07002102#endif
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002103 case VMXNET3_IT_MSI:
2104 free_irq(adapter->pdev->irq, adapter->netdev);
2105 break;
2106 case VMXNET3_IT_INTX:
2107 free_irq(adapter->pdev->irq, adapter->netdev);
2108 break;
2109 default:
Sasha Levinc068e772012-11-08 10:23:03 +00002110 BUG();
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002111 }
2112}
2113
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002114
2115static void
2116vmxnet3_restore_vlan(struct vmxnet3_adapter *adapter)
2117{
Jesse Gross72e85c42011-06-23 13:04:39 +00002118 u32 *vfTable = adapter->shared->devRead.rxFilterConf.vfTable;
2119 u16 vid;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002120
Jesse Gross72e85c42011-06-23 13:04:39 +00002121 /* allow untagged pkts */
2122 VMXNET3_SET_VFTABLE_ENTRY(vfTable, 0);
2123
2124 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
2125 VMXNET3_SET_VFTABLE_ENTRY(vfTable, vid);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002126}
2127
2128
Jiri Pirko8e586132011-12-08 19:52:37 -05002129static int
Patrick McHardy80d5c362013-04-19 02:04:28 +00002130vmxnet3_vlan_rx_add_vid(struct net_device *netdev, __be16 proto, u16 vid)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002131{
2132 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002133
Jesse Grossf6957f82011-08-07 23:15:47 +00002134 if (!(netdev->flags & IFF_PROMISC)) {
2135 u32 *vfTable = adapter->shared->devRead.rxFilterConf.vfTable;
2136 unsigned long flags;
2137
2138 VMXNET3_SET_VFTABLE_ENTRY(vfTable, vid);
2139 spin_lock_irqsave(&adapter->cmd_lock, flags);
2140 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2141 VMXNET3_CMD_UPDATE_VLAN_FILTERS);
2142 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
2143 }
Jesse Gross72e85c42011-06-23 13:04:39 +00002144
2145 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05002146
2147 return 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002148}
2149
2150
Jiri Pirko8e586132011-12-08 19:52:37 -05002151static int
Patrick McHardy80d5c362013-04-19 02:04:28 +00002152vmxnet3_vlan_rx_kill_vid(struct net_device *netdev, __be16 proto, u16 vid)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002153{
2154 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002155
Jesse Grossf6957f82011-08-07 23:15:47 +00002156 if (!(netdev->flags & IFF_PROMISC)) {
2157 u32 *vfTable = adapter->shared->devRead.rxFilterConf.vfTable;
2158 unsigned long flags;
2159
2160 VMXNET3_CLEAR_VFTABLE_ENTRY(vfTable, vid);
2161 spin_lock_irqsave(&adapter->cmd_lock, flags);
2162 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2163 VMXNET3_CMD_UPDATE_VLAN_FILTERS);
2164 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
2165 }
Jesse Gross72e85c42011-06-23 13:04:39 +00002166
2167 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05002168
2169 return 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002170}
2171
2172
2173static u8 *
2174vmxnet3_copy_mc(struct net_device *netdev)
2175{
2176 u8 *buf = NULL;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00002177 u32 sz = netdev_mc_count(netdev) * ETH_ALEN;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002178
2179 /* struct Vmxnet3_RxFilterConf.mfTableLen is u16. */
2180 if (sz <= 0xffff) {
2181 /* We may be called with BH disabled */
2182 buf = kmalloc(sz, GFP_ATOMIC);
2183 if (buf) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00002184 struct netdev_hw_addr *ha;
Jiri Pirko567ec872010-02-23 23:17:07 +00002185 int i = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002186
Jiri Pirko22bedad32010-04-01 21:22:57 +00002187 netdev_for_each_mc_addr(ha, netdev)
2188 memcpy(buf + i++ * ETH_ALEN, ha->addr,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002189 ETH_ALEN);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002190 }
2191 }
2192 return buf;
2193}
2194
2195
2196static void
2197vmxnet3_set_mc(struct net_device *netdev)
2198{
2199 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002200 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002201 struct Vmxnet3_RxFilterConf *rxConf =
2202 &adapter->shared->devRead.rxFilterConf;
2203 u8 *new_table = NULL;
Andy Kingb0eb57c2013-08-23 09:33:49 -07002204 dma_addr_t new_table_pa = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002205 u32 new_mode = VMXNET3_RXM_UCAST;
2206
Jesse Gross72e85c42011-06-23 13:04:39 +00002207 if (netdev->flags & IFF_PROMISC) {
2208 u32 *vfTable = adapter->shared->devRead.rxFilterConf.vfTable;
2209 memset(vfTable, 0, VMXNET3_VFT_SIZE * sizeof(*vfTable));
2210
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002211 new_mode |= VMXNET3_RXM_PROMISC;
Jesse Gross72e85c42011-06-23 13:04:39 +00002212 } else {
2213 vmxnet3_restore_vlan(adapter);
2214 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002215
2216 if (netdev->flags & IFF_BROADCAST)
2217 new_mode |= VMXNET3_RXM_BCAST;
2218
2219 if (netdev->flags & IFF_ALLMULTI)
2220 new_mode |= VMXNET3_RXM_ALL_MULTI;
2221 else
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00002222 if (!netdev_mc_empty(netdev)) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002223 new_table = vmxnet3_copy_mc(netdev);
2224 if (new_table) {
Shrikrishna Khared37d5ec2015-11-13 15:42:10 -08002225 size_t sz = netdev_mc_count(netdev) * ETH_ALEN;
2226
2227 rxConf->mfTableLen = cpu_to_le16(sz);
Andy Kingb0eb57c2013-08-23 09:33:49 -07002228 new_table_pa = dma_map_single(
2229 &adapter->pdev->dev,
2230 new_table,
Shrikrishna Khared37d5ec2015-11-13 15:42:10 -08002231 sz,
Andy Kingb0eb57c2013-08-23 09:33:49 -07002232 PCI_DMA_TODEVICE);
Andy King4ad9a642014-09-02 13:13:44 -07002233 }
2234
Alexey Khoroshilov5738a092015-11-28 01:29:30 +03002235 if (!dma_mapping_error(&adapter->pdev->dev,
2236 new_table_pa)) {
Andy King4ad9a642014-09-02 13:13:44 -07002237 new_mode |= VMXNET3_RXM_MCAST;
Andy Kingb0eb57c2013-08-23 09:33:49 -07002238 rxConf->mfTablePA = cpu_to_le64(new_table_pa);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002239 } else {
Andy King4ad9a642014-09-02 13:13:44 -07002240 netdev_info(netdev,
2241 "failed to copy mcast list, setting ALL_MULTI\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002242 new_mode |= VMXNET3_RXM_ALL_MULTI;
2243 }
2244 }
2245
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002246 if (!(new_mode & VMXNET3_RXM_MCAST)) {
2247 rxConf->mfTableLen = 0;
2248 rxConf->mfTablePA = 0;
2249 }
2250
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002251 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002252 if (new_mode != rxConf->rxMode) {
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002253 rxConf->rxMode = cpu_to_le32(new_mode);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002254 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2255 VMXNET3_CMD_UPDATE_RX_MODE);
Jesse Gross72e85c42011-06-23 13:04:39 +00002256 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2257 VMXNET3_CMD_UPDATE_VLAN_FILTERS);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002258 }
2259
2260 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2261 VMXNET3_CMD_UPDATE_MAC_FILTERS);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002262 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002263
Andy King4ad9a642014-09-02 13:13:44 -07002264 if (new_table_pa)
Andy Kingb0eb57c2013-08-23 09:33:49 -07002265 dma_unmap_single(&adapter->pdev->dev, new_table_pa,
2266 rxConf->mfTableLen, PCI_DMA_TODEVICE);
Andy King4ad9a642014-09-02 13:13:44 -07002267 kfree(new_table);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002268}
2269
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002270void
2271vmxnet3_rq_destroy_all(struct vmxnet3_adapter *adapter)
2272{
2273 int i;
2274
2275 for (i = 0; i < adapter->num_rx_queues; i++)
2276 vmxnet3_rq_destroy(&adapter->rx_queue[i], adapter);
2277}
2278
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002279
2280/*
2281 * Set up driver_shared based on settings in adapter.
2282 */
2283
2284static void
2285vmxnet3_setup_driver_shared(struct vmxnet3_adapter *adapter)
2286{
2287 struct Vmxnet3_DriverShared *shared = adapter->shared;
2288 struct Vmxnet3_DSDevRead *devRead = &shared->devRead;
2289 struct Vmxnet3_TxQueueConf *tqc;
2290 struct Vmxnet3_RxQueueConf *rqc;
2291 int i;
2292
2293 memset(shared, 0, sizeof(*shared));
2294
2295 /* driver settings */
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002296 shared->magic = cpu_to_le32(VMXNET3_REV1_MAGIC);
2297 devRead->misc.driverInfo.version = cpu_to_le32(
2298 VMXNET3_DRIVER_VERSION_NUM);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002299 devRead->misc.driverInfo.gos.gosBits = (sizeof(void *) == 4 ?
2300 VMXNET3_GOS_BITS_32 : VMXNET3_GOS_BITS_64);
2301 devRead->misc.driverInfo.gos.gosType = VMXNET3_GOS_TYPE_LINUX;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002302 *((u32 *)&devRead->misc.driverInfo.gos) = cpu_to_le32(
2303 *((u32 *)&devRead->misc.driverInfo.gos));
2304 devRead->misc.driverInfo.vmxnet3RevSpt = cpu_to_le32(1);
2305 devRead->misc.driverInfo.uptVerSpt = cpu_to_le32(1);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002306
Andy Kingb0eb57c2013-08-23 09:33:49 -07002307 devRead->misc.ddPA = cpu_to_le64(adapter->adapter_pa);
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002308 devRead->misc.ddLen = cpu_to_le32(sizeof(struct vmxnet3_adapter));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002309
2310 /* set up feature flags */
Michał Mirosława0d27302011-04-18 13:31:21 +00002311 if (adapter->netdev->features & NETIF_F_RXCSUM)
Harvey Harrison3843e512010-10-21 18:05:32 +00002312 devRead->misc.uptFeatures |= UPT1_F_RXCSUM;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002313
Michał Mirosława0d27302011-04-18 13:31:21 +00002314 if (adapter->netdev->features & NETIF_F_LRO) {
Harvey Harrison3843e512010-10-21 18:05:32 +00002315 devRead->misc.uptFeatures |= UPT1_F_LRO;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002316 devRead->misc.maxNumRxSG = cpu_to_le16(1 + MAX_SKB_FRAGS);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002317 }
Patrick McHardyf6469682013-04-19 02:04:27 +00002318 if (adapter->netdev->features & NETIF_F_HW_VLAN_CTAG_RX)
Harvey Harrison3843e512010-10-21 18:05:32 +00002319 devRead->misc.uptFeatures |= UPT1_F_RXVLAN;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002320
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002321 devRead->misc.mtu = cpu_to_le32(adapter->netdev->mtu);
2322 devRead->misc.queueDescPA = cpu_to_le64(adapter->queue_desc_pa);
2323 devRead->misc.queueDescLen = cpu_to_le32(
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002324 adapter->num_tx_queues * sizeof(struct Vmxnet3_TxQueueDesc) +
2325 adapter->num_rx_queues * sizeof(struct Vmxnet3_RxQueueDesc));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002326
2327 /* tx queue settings */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002328 devRead->misc.numTxQueues = adapter->num_tx_queues;
2329 for (i = 0; i < adapter->num_tx_queues; i++) {
2330 struct vmxnet3_tx_queue *tq = &adapter->tx_queue[i];
2331 BUG_ON(adapter->tx_queue[i].tx_ring.base == NULL);
2332 tqc = &adapter->tqd_start[i].conf;
2333 tqc->txRingBasePA = cpu_to_le64(tq->tx_ring.basePA);
2334 tqc->dataRingBasePA = cpu_to_le64(tq->data_ring.basePA);
2335 tqc->compRingBasePA = cpu_to_le64(tq->comp_ring.basePA);
Andy Kingb0eb57c2013-08-23 09:33:49 -07002336 tqc->ddPA = cpu_to_le64(tq->buf_info_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002337 tqc->txRingSize = cpu_to_le32(tq->tx_ring.size);
2338 tqc->dataRingSize = cpu_to_le32(tq->data_ring.size);
2339 tqc->compRingSize = cpu_to_le32(tq->comp_ring.size);
2340 tqc->ddLen = cpu_to_le32(
2341 sizeof(struct vmxnet3_tx_buf_info) *
2342 tqc->txRingSize);
2343 tqc->intrIdx = tq->comp_ring.intr_idx;
2344 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002345
2346 /* rx queue settings */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002347 devRead->misc.numRxQueues = adapter->num_rx_queues;
2348 for (i = 0; i < adapter->num_rx_queues; i++) {
2349 struct vmxnet3_rx_queue *rq = &adapter->rx_queue[i];
2350 rqc = &adapter->rqd_start[i].conf;
2351 rqc->rxRingBasePA[0] = cpu_to_le64(rq->rx_ring[0].basePA);
2352 rqc->rxRingBasePA[1] = cpu_to_le64(rq->rx_ring[1].basePA);
2353 rqc->compRingBasePA = cpu_to_le64(rq->comp_ring.basePA);
Andy Kingb0eb57c2013-08-23 09:33:49 -07002354 rqc->ddPA = cpu_to_le64(rq->buf_info_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002355 rqc->rxRingSize[0] = cpu_to_le32(rq->rx_ring[0].size);
2356 rqc->rxRingSize[1] = cpu_to_le32(rq->rx_ring[1].size);
2357 rqc->compRingSize = cpu_to_le32(rq->comp_ring.size);
2358 rqc->ddLen = cpu_to_le32(
2359 sizeof(struct vmxnet3_rx_buf_info) *
2360 (rqc->rxRingSize[0] +
2361 rqc->rxRingSize[1]));
2362 rqc->intrIdx = rq->comp_ring.intr_idx;
2363 }
2364
2365#ifdef VMXNET3_RSS
2366 memset(adapter->rss_conf, 0, sizeof(*adapter->rss_conf));
2367
2368 if (adapter->rss) {
2369 struct UPT1_RSSConf *rssConf = adapter->rss_conf;
Stephen Hemminger66d35912013-01-15 07:28:34 +00002370
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002371 devRead->misc.uptFeatures |= UPT1_F_RSS;
2372 devRead->misc.numRxQueues = adapter->num_rx_queues;
2373 rssConf->hashType = UPT1_RSS_HASH_TYPE_TCP_IPV4 |
2374 UPT1_RSS_HASH_TYPE_IPV4 |
2375 UPT1_RSS_HASH_TYPE_TCP_IPV6 |
2376 UPT1_RSS_HASH_TYPE_IPV6;
2377 rssConf->hashFunc = UPT1_RSS_HASH_FUNC_TOEPLITZ;
2378 rssConf->hashKeySize = UPT1_RSS_MAX_KEY_SIZE;
2379 rssConf->indTableSize = VMXNET3_RSS_IND_TABLE_SIZE;
Eric Dumazet6bf79cd2014-11-16 06:23:18 -08002380 netdev_rss_key_fill(rssConf->hashKey, sizeof(rssConf->hashKey));
Stephen Hemminger66d35912013-01-15 07:28:34 +00002381
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002382 for (i = 0; i < rssConf->indTableSize; i++)
Ben Hutchings278bc422011-12-15 13:56:49 +00002383 rssConf->indTable[i] = ethtool_rxfh_indir_default(
2384 i, adapter->num_rx_queues);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002385
2386 devRead->rssConfDesc.confVer = 1;
Andy Kingb0eb57c2013-08-23 09:33:49 -07002387 devRead->rssConfDesc.confLen = cpu_to_le32(sizeof(*rssConf));
2388 devRead->rssConfDesc.confPA =
2389 cpu_to_le64(adapter->rss_conf_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002390 }
2391
2392#endif /* VMXNET3_RSS */
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002393
2394 /* intr settings */
2395 devRead->intrConf.autoMask = adapter->intr.mask_mode ==
2396 VMXNET3_IMM_AUTO;
2397 devRead->intrConf.numIntrs = adapter->intr.num_intrs;
2398 for (i = 0; i < adapter->intr.num_intrs; i++)
2399 devRead->intrConf.modLevels[i] = adapter->intr.mod_levels[i];
2400
2401 devRead->intrConf.eventIntrIdx = adapter->intr.event_intr_idx;
Ronghua Zang6929fe82010-07-15 22:18:47 -07002402 devRead->intrConf.intrCtrl |= cpu_to_le32(VMXNET3_IC_DISABLE_ALL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002403
2404 /* rx filter settings */
2405 devRead->rxFilterConf.rxMode = 0;
2406 vmxnet3_restore_vlan(adapter);
Shreyas Bhatewaraf9f25022011-01-14 14:59:31 +00002407 vmxnet3_write_mac_addr(adapter, adapter->netdev->dev_addr);
2408
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002409 /* the rest are already zeroed */
2410}
2411
2412
2413int
2414vmxnet3_activate_dev(struct vmxnet3_adapter *adapter)
2415{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002416 int err, i;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002417 u32 ret;
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002418 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002419
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +00002420 netdev_dbg(adapter->netdev, "%s: skb_buf_size %d, rx_buf_per_pkt %d,"
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002421 " ring sizes %u %u %u\n", adapter->netdev->name,
2422 adapter->skb_buf_size, adapter->rx_buf_per_pkt,
2423 adapter->tx_queue[0].tx_ring.size,
2424 adapter->rx_queue[0].rx_ring[0].size,
2425 adapter->rx_queue[0].rx_ring[1].size);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002426
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002427 vmxnet3_tq_init_all(adapter);
2428 err = vmxnet3_rq_init_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002429 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002430 netdev_err(adapter->netdev,
2431 "Failed to init rx queue error %d\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002432 goto rq_err;
2433 }
2434
2435 err = vmxnet3_request_irqs(adapter);
2436 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002437 netdev_err(adapter->netdev,
2438 "Failed to setup irq for error %d\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002439 goto irq_err;
2440 }
2441
2442 vmxnet3_setup_driver_shared(adapter);
2443
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002444 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_DSAL, VMXNET3_GET_ADDR_LO(
2445 adapter->shared_pa));
2446 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_DSAH, VMXNET3_GET_ADDR_HI(
2447 adapter->shared_pa));
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002448 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002449 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2450 VMXNET3_CMD_ACTIVATE_DEV);
2451 ret = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_CMD);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002452 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002453
2454 if (ret != 0) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002455 netdev_err(adapter->netdev,
2456 "Failed to activate dev: error %u\n", ret);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002457 err = -EINVAL;
2458 goto activate_err;
2459 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002460
2461 for (i = 0; i < adapter->num_rx_queues; i++) {
2462 VMXNET3_WRITE_BAR0_REG(adapter,
2463 VMXNET3_REG_RXPROD + i * VMXNET3_REG_ALIGN,
2464 adapter->rx_queue[i].rx_ring[0].next2fill);
2465 VMXNET3_WRITE_BAR0_REG(adapter, (VMXNET3_REG_RXPROD2 +
2466 (i * VMXNET3_REG_ALIGN)),
2467 adapter->rx_queue[i].rx_ring[1].next2fill);
2468 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002469
2470 /* Apply the rx filter settins last. */
2471 vmxnet3_set_mc(adapter->netdev);
2472
2473 /*
2474 * Check link state when first activating device. It will start the
2475 * tx queue if the link is up.
2476 */
Shreyas Bhatewara4a1745fc2010-07-15 21:51:14 +00002477 vmxnet3_check_link(adapter, true);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002478 for (i = 0; i < adapter->num_rx_queues; i++)
2479 napi_enable(&adapter->rx_queue[i].napi);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002480 vmxnet3_enable_all_intrs(adapter);
2481 clear_bit(VMXNET3_STATE_BIT_QUIESCED, &adapter->state);
2482 return 0;
2483
2484activate_err:
2485 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_DSAL, 0);
2486 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_DSAH, 0);
2487 vmxnet3_free_irqs(adapter);
2488irq_err:
2489rq_err:
2490 /* free up buffers we allocated */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002491 vmxnet3_rq_cleanup_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002492 return err;
2493}
2494
2495
2496void
2497vmxnet3_reset_dev(struct vmxnet3_adapter *adapter)
2498{
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002499 unsigned long flags;
2500 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002501 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD, VMXNET3_CMD_RESET_DEV);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002502 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002503}
2504
2505
2506int
2507vmxnet3_quiesce_dev(struct vmxnet3_adapter *adapter)
2508{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002509 int i;
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002510 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002511 if (test_and_set_bit(VMXNET3_STATE_BIT_QUIESCED, &adapter->state))
2512 return 0;
2513
2514
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002515 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002516 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2517 VMXNET3_CMD_QUIESCE_DEV);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002518 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002519 vmxnet3_disable_all_intrs(adapter);
2520
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002521 for (i = 0; i < adapter->num_rx_queues; i++)
2522 napi_disable(&adapter->rx_queue[i].napi);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002523 netif_tx_disable(adapter->netdev);
2524 adapter->link_speed = 0;
2525 netif_carrier_off(adapter->netdev);
2526
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002527 vmxnet3_tq_cleanup_all(adapter);
2528 vmxnet3_rq_cleanup_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002529 vmxnet3_free_irqs(adapter);
2530 return 0;
2531}
2532
2533
2534static void
2535vmxnet3_write_mac_addr(struct vmxnet3_adapter *adapter, u8 *mac)
2536{
2537 u32 tmp;
2538
2539 tmp = *(u32 *)mac;
2540 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_MACL, tmp);
2541
2542 tmp = (mac[5] << 8) | mac[4];
2543 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_MACH, tmp);
2544}
2545
2546
2547static int
2548vmxnet3_set_mac_addr(struct net_device *netdev, void *p)
2549{
2550 struct sockaddr *addr = p;
2551 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
2552
2553 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
2554 vmxnet3_write_mac_addr(adapter, addr->sa_data);
2555
2556 return 0;
2557}
2558
2559
2560/* ==================== initialization and cleanup routines ============ */
2561
2562static int
2563vmxnet3_alloc_pci_resources(struct vmxnet3_adapter *adapter, bool *dma64)
2564{
2565 int err;
2566 unsigned long mmio_start, mmio_len;
2567 struct pci_dev *pdev = adapter->pdev;
2568
2569 err = pci_enable_device(pdev);
2570 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002571 dev_err(&pdev->dev, "Failed to enable adapter: error %d\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002572 return err;
2573 }
2574
2575 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) == 0) {
2576 if (pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)) != 0) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002577 dev_err(&pdev->dev,
2578 "pci_set_consistent_dma_mask failed\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002579 err = -EIO;
2580 goto err_set_mask;
2581 }
2582 *dma64 = true;
2583 } else {
2584 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002585 dev_err(&pdev->dev,
2586 "pci_set_dma_mask failed\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002587 err = -EIO;
2588 goto err_set_mask;
2589 }
2590 *dma64 = false;
2591 }
2592
2593 err = pci_request_selected_regions(pdev, (1 << 2) - 1,
2594 vmxnet3_driver_name);
2595 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002596 dev_err(&pdev->dev,
2597 "Failed to request region for adapter: error %d\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002598 goto err_set_mask;
2599 }
2600
2601 pci_set_master(pdev);
2602
2603 mmio_start = pci_resource_start(pdev, 0);
2604 mmio_len = pci_resource_len(pdev, 0);
2605 adapter->hw_addr0 = ioremap(mmio_start, mmio_len);
2606 if (!adapter->hw_addr0) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002607 dev_err(&pdev->dev, "Failed to map bar0\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002608 err = -EIO;
2609 goto err_ioremap;
2610 }
2611
2612 mmio_start = pci_resource_start(pdev, 1);
2613 mmio_len = pci_resource_len(pdev, 1);
2614 adapter->hw_addr1 = ioremap(mmio_start, mmio_len);
2615 if (!adapter->hw_addr1) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002616 dev_err(&pdev->dev, "Failed to map bar1\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002617 err = -EIO;
2618 goto err_bar1;
2619 }
2620 return 0;
2621
2622err_bar1:
2623 iounmap(adapter->hw_addr0);
2624err_ioremap:
2625 pci_release_selected_regions(pdev, (1 << 2) - 1);
2626err_set_mask:
2627 pci_disable_device(pdev);
2628 return err;
2629}
2630
2631
2632static void
2633vmxnet3_free_pci_resources(struct vmxnet3_adapter *adapter)
2634{
2635 BUG_ON(!adapter->pdev);
2636
2637 iounmap(adapter->hw_addr0);
2638 iounmap(adapter->hw_addr1);
2639 pci_release_selected_regions(adapter->pdev, (1 << 2) - 1);
2640 pci_disable_device(adapter->pdev);
2641}
2642
2643
2644static void
2645vmxnet3_adjust_rx_ring_size(struct vmxnet3_adapter *adapter)
2646{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002647 size_t sz, i, ring0_size, ring1_size, comp_size;
2648 struct vmxnet3_rx_queue *rq = &adapter->rx_queue[0];
2649
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002650
2651 if (adapter->netdev->mtu <= VMXNET3_MAX_SKB_BUF_SIZE -
2652 VMXNET3_MAX_ETH_HDR_SIZE) {
2653 adapter->skb_buf_size = adapter->netdev->mtu +
2654 VMXNET3_MAX_ETH_HDR_SIZE;
2655 if (adapter->skb_buf_size < VMXNET3_MIN_T0_BUF_SIZE)
2656 adapter->skb_buf_size = VMXNET3_MIN_T0_BUF_SIZE;
2657
2658 adapter->rx_buf_per_pkt = 1;
2659 } else {
2660 adapter->skb_buf_size = VMXNET3_MAX_SKB_BUF_SIZE;
2661 sz = adapter->netdev->mtu - VMXNET3_MAX_SKB_BUF_SIZE +
2662 VMXNET3_MAX_ETH_HDR_SIZE;
2663 adapter->rx_buf_per_pkt = 1 + (sz + PAGE_SIZE - 1) / PAGE_SIZE;
2664 }
2665
2666 /*
2667 * for simplicity, force the ring0 size to be a multiple of
2668 * rx_buf_per_pkt * VMXNET3_RING_SIZE_ALIGN
2669 */
2670 sz = adapter->rx_buf_per_pkt * VMXNET3_RING_SIZE_ALIGN;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002671 ring0_size = adapter->rx_queue[0].rx_ring[0].size;
2672 ring0_size = (ring0_size + sz - 1) / sz * sz;
Shreyas Bhatewaraa53255d2011-01-14 14:59:25 +00002673 ring0_size = min_t(u32, ring0_size, VMXNET3_RX_RING_MAX_SIZE /
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002674 sz * sz);
2675 ring1_size = adapter->rx_queue[0].rx_ring[1].size;
Shrikrishna Khare53831aa2015-01-06 09:20:15 -08002676 ring1_size = (ring1_size + sz - 1) / sz * sz;
2677 ring1_size = min_t(u32, ring1_size, VMXNET3_RX_RING2_MAX_SIZE /
2678 sz * sz);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002679 comp_size = ring0_size + ring1_size;
2680
2681 for (i = 0; i < adapter->num_rx_queues; i++) {
2682 rq = &adapter->rx_queue[i];
2683 rq->rx_ring[0].size = ring0_size;
2684 rq->rx_ring[1].size = ring1_size;
2685 rq->comp_ring.size = comp_size;
2686 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002687}
2688
2689
2690int
2691vmxnet3_create_queues(struct vmxnet3_adapter *adapter, u32 tx_ring_size,
2692 u32 rx_ring_size, u32 rx_ring2_size)
2693{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002694 int err = 0, i;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002695
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002696 for (i = 0; i < adapter->num_tx_queues; i++) {
2697 struct vmxnet3_tx_queue *tq = &adapter->tx_queue[i];
2698 tq->tx_ring.size = tx_ring_size;
2699 tq->data_ring.size = tx_ring_size;
2700 tq->comp_ring.size = tx_ring_size;
2701 tq->shared = &adapter->tqd_start[i].ctrl;
2702 tq->stopped = true;
2703 tq->adapter = adapter;
2704 tq->qid = i;
2705 err = vmxnet3_tq_create(tq, adapter);
2706 /*
2707 * Too late to change num_tx_queues. We cannot do away with
2708 * lesser number of queues than what we asked for
2709 */
2710 if (err)
2711 goto queue_err;
2712 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002713
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002714 adapter->rx_queue[0].rx_ring[0].size = rx_ring_size;
2715 adapter->rx_queue[0].rx_ring[1].size = rx_ring2_size;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002716 vmxnet3_adjust_rx_ring_size(adapter);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002717 for (i = 0; i < adapter->num_rx_queues; i++) {
2718 struct vmxnet3_rx_queue *rq = &adapter->rx_queue[i];
2719 /* qid and qid2 for rx queues will be assigned later when num
2720 * of rx queues is finalized after allocating intrs */
2721 rq->shared = &adapter->rqd_start[i].ctrl;
2722 rq->adapter = adapter;
2723 err = vmxnet3_rq_create(rq, adapter);
2724 if (err) {
2725 if (i == 0) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002726 netdev_err(adapter->netdev,
2727 "Could not allocate any rx queues. "
2728 "Aborting.\n");
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002729 goto queue_err;
2730 } else {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002731 netdev_info(adapter->netdev,
2732 "Number of rx queues changed "
2733 "to : %d.\n", i);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002734 adapter->num_rx_queues = i;
2735 err = 0;
2736 break;
2737 }
2738 }
2739 }
2740 return err;
2741queue_err:
2742 vmxnet3_tq_destroy_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002743 return err;
2744}
2745
2746static int
2747vmxnet3_open(struct net_device *netdev)
2748{
2749 struct vmxnet3_adapter *adapter;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002750 int err, i;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002751
2752 adapter = netdev_priv(netdev);
2753
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002754 for (i = 0; i < adapter->num_tx_queues; i++)
2755 spin_lock_init(&adapter->tx_queue[i].tx_lock);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002756
Neil Hormanf00e2b02014-06-13 10:03:21 -04002757 err = vmxnet3_create_queues(adapter, adapter->tx_ring_size,
2758 adapter->rx_ring_size,
Shrikrishna Khare53831aa2015-01-06 09:20:15 -08002759 adapter->rx_ring2_size);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002760 if (err)
2761 goto queue_err;
2762
2763 err = vmxnet3_activate_dev(adapter);
2764 if (err)
2765 goto activate_err;
2766
2767 return 0;
2768
2769activate_err:
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002770 vmxnet3_rq_destroy_all(adapter);
2771 vmxnet3_tq_destroy_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002772queue_err:
2773 return err;
2774}
2775
2776
2777static int
2778vmxnet3_close(struct net_device *netdev)
2779{
2780 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
2781
2782 /*
2783 * Reset_work may be in the middle of resetting the device, wait for its
2784 * completion.
2785 */
2786 while (test_and_set_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state))
2787 msleep(1);
2788
2789 vmxnet3_quiesce_dev(adapter);
2790
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002791 vmxnet3_rq_destroy_all(adapter);
2792 vmxnet3_tq_destroy_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002793
2794 clear_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state);
2795
2796
2797 return 0;
2798}
2799
2800
2801void
2802vmxnet3_force_close(struct vmxnet3_adapter *adapter)
2803{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002804 int i;
2805
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002806 /*
2807 * we must clear VMXNET3_STATE_BIT_RESETTING, otherwise
2808 * vmxnet3_close() will deadlock.
2809 */
2810 BUG_ON(test_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state));
2811
2812 /* we need to enable NAPI, otherwise dev_close will deadlock */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002813 for (i = 0; i < adapter->num_rx_queues; i++)
2814 napi_enable(&adapter->rx_queue[i].napi);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002815 dev_close(adapter->netdev);
2816}
2817
2818
2819static int
2820vmxnet3_change_mtu(struct net_device *netdev, int new_mtu)
2821{
2822 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
2823 int err = 0;
2824
2825 if (new_mtu < VMXNET3_MIN_MTU || new_mtu > VMXNET3_MAX_MTU)
2826 return -EINVAL;
2827
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002828 netdev->mtu = new_mtu;
2829
2830 /*
2831 * Reset_work may be in the middle of resetting the device, wait for its
2832 * completion.
2833 */
2834 while (test_and_set_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state))
2835 msleep(1);
2836
2837 if (netif_running(netdev)) {
2838 vmxnet3_quiesce_dev(adapter);
2839 vmxnet3_reset_dev(adapter);
2840
2841 /* we need to re-create the rx queue based on the new mtu */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002842 vmxnet3_rq_destroy_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002843 vmxnet3_adjust_rx_ring_size(adapter);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002844 err = vmxnet3_rq_create_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002845 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002846 netdev_err(netdev,
2847 "failed to re-create rx queues, "
2848 " error %d. Closing it.\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002849 goto out;
2850 }
2851
2852 err = vmxnet3_activate_dev(adapter);
2853 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002854 netdev_err(netdev,
2855 "failed to re-activate, error %d. "
2856 "Closing it\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002857 goto out;
2858 }
2859 }
2860
2861out:
2862 clear_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state);
2863 if (err)
2864 vmxnet3_force_close(adapter);
2865
2866 return err;
2867}
2868
2869
2870static void
2871vmxnet3_declare_features(struct vmxnet3_adapter *adapter, bool dma64)
2872{
2873 struct net_device *netdev = adapter->netdev;
2874
Michał Mirosława0d27302011-04-18 13:31:21 +00002875 netdev->hw_features = NETIF_F_SG | NETIF_F_RXCSUM |
Patrick McHardyf6469682013-04-19 02:04:27 +00002876 NETIF_F_HW_CSUM | NETIF_F_HW_VLAN_CTAG_TX |
2877 NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_TSO | NETIF_F_TSO6 |
Jesse Gross72e85c42011-06-23 13:04:39 +00002878 NETIF_F_LRO;
Michał Mirosława0d27302011-04-18 13:31:21 +00002879 if (dma64)
Shreyas Bhatewaraebbf9292011-07-20 17:21:51 +00002880 netdev->hw_features |= NETIF_F_HIGHDMA;
Jesse Gross72e85c42011-06-23 13:04:39 +00002881 netdev->vlan_features = netdev->hw_features &
Patrick McHardyf6469682013-04-19 02:04:27 +00002882 ~(NETIF_F_HW_VLAN_CTAG_TX |
2883 NETIF_F_HW_VLAN_CTAG_RX);
2884 netdev->features = netdev->hw_features | NETIF_F_HW_VLAN_CTAG_FILTER;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002885}
2886
2887
2888static void
2889vmxnet3_read_mac_addr(struct vmxnet3_adapter *adapter, u8 *mac)
2890{
2891 u32 tmp;
2892
2893 tmp = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_MACL);
2894 *(u32 *)mac = tmp;
2895
2896 tmp = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_MACH);
2897 mac[4] = tmp & 0xff;
2898 mac[5] = (tmp >> 8) & 0xff;
2899}
2900
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002901#ifdef CONFIG_PCI_MSI
2902
2903/*
2904 * Enable MSIx vectors.
2905 * Returns :
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002906 * VMXNET3_LINUX_MIN_MSIX_VECT when only minimum number of vectors required
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002907 * were enabled.
2908 * number of vectors which were enabled otherwise (this number is greater
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002909 * than VMXNET3_LINUX_MIN_MSIX_VECT)
2910 */
2911
2912static int
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002913vmxnet3_acquire_msix_vectors(struct vmxnet3_adapter *adapter, int nvec)
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002914{
Alexander Gordeevc0a1be32014-02-18 11:12:03 +01002915 int ret = pci_enable_msix_range(adapter->pdev,
2916 adapter->intr.msix_entries, nvec, nvec);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002917
Alexander Gordeevc0a1be32014-02-18 11:12:03 +01002918 if (ret == -ENOSPC && nvec > VMXNET3_LINUX_MIN_MSIX_VECT) {
2919 dev_err(&adapter->netdev->dev,
2920 "Failed to enable %d MSI-X, trying %d\n",
2921 nvec, VMXNET3_LINUX_MIN_MSIX_VECT);
2922
2923 ret = pci_enable_msix_range(adapter->pdev,
2924 adapter->intr.msix_entries,
2925 VMXNET3_LINUX_MIN_MSIX_VECT,
2926 VMXNET3_LINUX_MIN_MSIX_VECT);
2927 }
2928
2929 if (ret < 0) {
2930 dev_err(&adapter->netdev->dev,
2931 "Failed to enable MSI-X, error: %d\n", ret);
2932 }
2933
2934 return ret;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002935}
2936
2937
2938#endif /* CONFIG_PCI_MSI */
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002939
2940static void
2941vmxnet3_alloc_intr_resources(struct vmxnet3_adapter *adapter)
2942{
2943 u32 cfg;
Roland Dreiere328d412011-05-06 08:32:53 +00002944 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002945
2946 /* intr settings */
Roland Dreiere328d412011-05-06 08:32:53 +00002947 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002948 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2949 VMXNET3_CMD_GET_CONF_INTR);
2950 cfg = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_CMD);
Roland Dreiere328d412011-05-06 08:32:53 +00002951 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002952 adapter->intr.type = cfg & 0x3;
2953 adapter->intr.mask_mode = (cfg >> 2) & 0x3;
2954
2955 if (adapter->intr.type == VMXNET3_IT_AUTO) {
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00002956 adapter->intr.type = VMXNET3_IT_MSIX;
2957 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002958
Randy Dunlap8f7e5242009-10-14 20:38:58 -07002959#ifdef CONFIG_PCI_MSI
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00002960 if (adapter->intr.type == VMXNET3_IT_MSIX) {
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002961 int i, nvec;
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00002962
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002963 nvec = adapter->share_intr == VMXNET3_INTR_TXSHARE ?
2964 1 : adapter->num_tx_queues;
2965 nvec += adapter->share_intr == VMXNET3_INTR_BUDDYSHARE ?
2966 0 : adapter->num_rx_queues;
2967 nvec += 1; /* for link event */
2968 nvec = nvec > VMXNET3_LINUX_MIN_MSIX_VECT ?
2969 nvec : VMXNET3_LINUX_MIN_MSIX_VECT;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002970
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002971 for (i = 0; i < nvec; i++)
2972 adapter->intr.msix_entries[i].entry = i;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002973
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002974 nvec = vmxnet3_acquire_msix_vectors(adapter, nvec);
2975 if (nvec < 0)
2976 goto msix_err;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002977
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002978 /* If we cannot allocate one MSIx vector per queue
2979 * then limit the number of rx queues to 1
2980 */
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002981 if (nvec == VMXNET3_LINUX_MIN_MSIX_VECT) {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002982 if (adapter->share_intr != VMXNET3_INTR_BUDDYSHARE
Shreyas Bhatewara7e96fbf2011-01-14 15:00:03 +00002983 || adapter->num_rx_queues != 1) {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002984 adapter->share_intr = VMXNET3_INTR_TXSHARE;
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002985 netdev_err(adapter->netdev,
2986 "Number of rx queues : 1\n");
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002987 adapter->num_rx_queues = 1;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002988 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002989 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002990
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002991 adapter->intr.num_intrs = nvec;
2992 return;
2993
2994msix_err:
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002995 /* If we cannot allocate MSIx vectors use only one rx queue */
Stephen Hemminger4bad25f2013-01-15 07:28:28 +00002996 dev_info(&adapter->pdev->dev,
2997 "Failed to enable MSI-X, error %d. "
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002998 "Limiting #rx queues to 1, try MSI.\n", nvec);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002999
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00003000 adapter->intr.type = VMXNET3_IT_MSI;
3001 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003002
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00003003 if (adapter->intr.type == VMXNET3_IT_MSI) {
Alexander Gordeevb60b8692014-02-18 11:12:02 +01003004 if (!pci_enable_msi(adapter->pdev)) {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003005 adapter->num_rx_queues = 1;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003006 adapter->intr.num_intrs = 1;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003007 return;
3008 }
3009 }
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00003010#endif /* CONFIG_PCI_MSI */
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003011
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003012 adapter->num_rx_queues = 1;
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003013 dev_info(&adapter->netdev->dev,
3014 "Using INTx interrupt, #Rx queues: 1.\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003015 adapter->intr.type = VMXNET3_IT_INTX;
3016
3017 /* INT-X related setting */
3018 adapter->intr.num_intrs = 1;
3019}
3020
3021
3022static void
3023vmxnet3_free_intr_resources(struct vmxnet3_adapter *adapter)
3024{
3025 if (adapter->intr.type == VMXNET3_IT_MSIX)
3026 pci_disable_msix(adapter->pdev);
3027 else if (adapter->intr.type == VMXNET3_IT_MSI)
3028 pci_disable_msi(adapter->pdev);
3029 else
3030 BUG_ON(adapter->intr.type != VMXNET3_IT_INTX);
3031}
3032
3033
3034static void
3035vmxnet3_tx_timeout(struct net_device *netdev)
3036{
3037 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
3038 adapter->tx_timeout_count++;
3039
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003040 netdev_err(adapter->netdev, "tx hang\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003041 schedule_work(&adapter->work);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003042 netif_wake_queue(adapter->netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003043}
3044
3045
3046static void
3047vmxnet3_reset_work(struct work_struct *data)
3048{
3049 struct vmxnet3_adapter *adapter;
3050
3051 adapter = container_of(data, struct vmxnet3_adapter, work);
3052
3053 /* if another thread is resetting the device, no need to proceed */
3054 if (test_and_set_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state))
3055 return;
3056
3057 /* if the device is closed, we must leave it alone */
Shreyas Bhatewarad9a5f212010-07-19 07:02:13 +00003058 rtnl_lock();
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003059 if (netif_running(adapter->netdev)) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003060 netdev_notice(adapter->netdev, "resetting\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003061 vmxnet3_quiesce_dev(adapter);
3062 vmxnet3_reset_dev(adapter);
3063 vmxnet3_activate_dev(adapter);
3064 } else {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003065 netdev_info(adapter->netdev, "already closed\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003066 }
Shreyas Bhatewarad9a5f212010-07-19 07:02:13 +00003067 rtnl_unlock();
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003068
3069 clear_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state);
3070}
3071
3072
Bill Pemberton3a4751a2012-12-03 09:24:16 -05003073static int
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003074vmxnet3_probe_device(struct pci_dev *pdev,
3075 const struct pci_device_id *id)
3076{
3077 static const struct net_device_ops vmxnet3_netdev_ops = {
3078 .ndo_open = vmxnet3_open,
3079 .ndo_stop = vmxnet3_close,
3080 .ndo_start_xmit = vmxnet3_xmit_frame,
3081 .ndo_set_mac_address = vmxnet3_set_mac_addr,
3082 .ndo_change_mtu = vmxnet3_change_mtu,
Michał Mirosława0d27302011-04-18 13:31:21 +00003083 .ndo_set_features = vmxnet3_set_features,
stephen hemminger95305f62011-06-08 14:53:57 +00003084 .ndo_get_stats64 = vmxnet3_get_stats64,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003085 .ndo_tx_timeout = vmxnet3_tx_timeout,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00003086 .ndo_set_rx_mode = vmxnet3_set_mc,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003087 .ndo_vlan_rx_add_vid = vmxnet3_vlan_rx_add_vid,
3088 .ndo_vlan_rx_kill_vid = vmxnet3_vlan_rx_kill_vid,
3089#ifdef CONFIG_NET_POLL_CONTROLLER
3090 .ndo_poll_controller = vmxnet3_netpoll,
3091#endif
3092 };
3093 int err;
3094 bool dma64 = false; /* stupid gcc */
3095 u32 ver;
3096 struct net_device *netdev;
3097 struct vmxnet3_adapter *adapter;
3098 u8 mac[ETH_ALEN];
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003099 int size;
3100 int num_tx_queues;
3101 int num_rx_queues;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003102
Shreyas Bhatewarae154b632011-05-10 06:13:56 +00003103 if (!pci_msi_enabled())
3104 enable_mq = 0;
3105
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003106#ifdef VMXNET3_RSS
3107 if (enable_mq)
3108 num_rx_queues = min(VMXNET3_DEVICE_MAX_RX_QUEUES,
3109 (int)num_online_cpus());
3110 else
3111#endif
3112 num_rx_queues = 1;
Shreyas Bhatewaraeebb02b2011-07-07 00:25:52 -07003113 num_rx_queues = rounddown_pow_of_two(num_rx_queues);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003114
3115 if (enable_mq)
3116 num_tx_queues = min(VMXNET3_DEVICE_MAX_TX_QUEUES,
3117 (int)num_online_cpus());
3118 else
3119 num_tx_queues = 1;
3120
Shreyas Bhatewaraeebb02b2011-07-07 00:25:52 -07003121 num_tx_queues = rounddown_pow_of_two(num_tx_queues);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003122 netdev = alloc_etherdev_mq(sizeof(struct vmxnet3_adapter),
3123 max(num_tx_queues, num_rx_queues));
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003124 dev_info(&pdev->dev,
3125 "# of Tx queues : %d, # of Rx queues : %d\n",
3126 num_tx_queues, num_rx_queues);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003127
Joe Perches41de8d42012-01-29 13:47:52 +00003128 if (!netdev)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003129 return -ENOMEM;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003130
3131 pci_set_drvdata(pdev, netdev);
3132 adapter = netdev_priv(netdev);
3133 adapter->netdev = netdev;
3134 adapter->pdev = pdev;
3135
Neil Hormanf00e2b02014-06-13 10:03:21 -04003136 adapter->tx_ring_size = VMXNET3_DEF_TX_RING_SIZE;
3137 adapter->rx_ring_size = VMXNET3_DEF_RX_RING_SIZE;
Shrikrishna Khare53831aa2015-01-06 09:20:15 -08003138 adapter->rx_ring2_size = VMXNET3_DEF_RX_RING2_SIZE;
Neil Hormanf00e2b02014-06-13 10:03:21 -04003139
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003140 spin_lock_init(&adapter->cmd_lock);
Andy Kingb0eb57c2013-08-23 09:33:49 -07003141 adapter->adapter_pa = dma_map_single(&adapter->pdev->dev, adapter,
3142 sizeof(struct vmxnet3_adapter),
3143 PCI_DMA_TODEVICE);
Alexey Khoroshilov5738a092015-11-28 01:29:30 +03003144 if (dma_mapping_error(&adapter->pdev->dev, adapter->adapter_pa)) {
3145 dev_err(&pdev->dev, "Failed to map dma\n");
3146 err = -EFAULT;
3147 goto err_dma_map;
3148 }
Andy Kingb0eb57c2013-08-23 09:33:49 -07003149 adapter->shared = dma_alloc_coherent(
3150 &adapter->pdev->dev,
3151 sizeof(struct Vmxnet3_DriverShared),
3152 &adapter->shared_pa, GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003153 if (!adapter->shared) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003154 dev_err(&pdev->dev, "Failed to allocate memory\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003155 err = -ENOMEM;
3156 goto err_alloc_shared;
3157 }
3158
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003159 adapter->num_rx_queues = num_rx_queues;
3160 adapter->num_tx_queues = num_tx_queues;
Bhavesh Davdae4fabf22013-03-06 12:04:53 +00003161 adapter->rx_buf_per_pkt = 1;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003162
3163 size = sizeof(struct Vmxnet3_TxQueueDesc) * adapter->num_tx_queues;
3164 size += sizeof(struct Vmxnet3_RxQueueDesc) * adapter->num_rx_queues;
Andy Kingb0eb57c2013-08-23 09:33:49 -07003165 adapter->tqd_start = dma_alloc_coherent(&adapter->pdev->dev, size,
3166 &adapter->queue_desc_pa,
3167 GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003168
3169 if (!adapter->tqd_start) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003170 dev_err(&pdev->dev, "Failed to allocate memory\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003171 err = -ENOMEM;
3172 goto err_alloc_queue_desc;
3173 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003174 adapter->rqd_start = (struct Vmxnet3_RxQueueDesc *)(adapter->tqd_start +
stephen hemminger96800ee2012-11-13 13:53:28 +00003175 adapter->num_tx_queues);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003176
Andy Kingb0eb57c2013-08-23 09:33:49 -07003177 adapter->pm_conf = dma_alloc_coherent(&adapter->pdev->dev,
3178 sizeof(struct Vmxnet3_PMConf),
3179 &adapter->pm_conf_pa,
3180 GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003181 if (adapter->pm_conf == NULL) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003182 err = -ENOMEM;
3183 goto err_alloc_pm;
3184 }
3185
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003186#ifdef VMXNET3_RSS
3187
Andy Kingb0eb57c2013-08-23 09:33:49 -07003188 adapter->rss_conf = dma_alloc_coherent(&adapter->pdev->dev,
3189 sizeof(struct UPT1_RSSConf),
3190 &adapter->rss_conf_pa,
3191 GFP_KERNEL);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003192 if (adapter->rss_conf == NULL) {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003193 err = -ENOMEM;
3194 goto err_alloc_rss;
3195 }
3196#endif /* VMXNET3_RSS */
3197
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003198 err = vmxnet3_alloc_pci_resources(adapter, &dma64);
3199 if (err < 0)
3200 goto err_alloc_pci;
3201
3202 ver = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_VRRS);
Shrikrishna Khare190af102016-06-16 10:51:53 -07003203 if (ver & (1 << VMXNET3_REV_2)) {
3204 VMXNET3_WRITE_BAR1_REG(adapter,
3205 VMXNET3_REG_VRRS,
3206 1 << VMXNET3_REV_2);
3207 adapter->version = VMXNET3_REV_2 + 1;
3208 } else if (ver & (1 << VMXNET3_REV_1)) {
3209 VMXNET3_WRITE_BAR1_REG(adapter,
3210 VMXNET3_REG_VRRS,
3211 1 << VMXNET3_REV_1);
3212 adapter->version = VMXNET3_REV_1 + 1;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003213 } else {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003214 dev_err(&pdev->dev,
3215 "Incompatible h/w version (0x%x) for adapter\n", ver);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003216 err = -EBUSY;
3217 goto err_ver;
3218 }
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07003219 dev_dbg(&pdev->dev, "Using device version %d\n", adapter->version);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003220
3221 ver = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_UVRS);
3222 if (ver & 1) {
3223 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_UVRS, 1);
3224 } else {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003225 dev_err(&pdev->dev,
3226 "Incompatible upt version (0x%x) for adapter\n", ver);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003227 err = -EBUSY;
3228 goto err_ver;
3229 }
3230
Shreyas Bhatewarae101e7d2011-07-20 16:01:11 +00003231 SET_NETDEV_DEV(netdev, &pdev->dev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003232 vmxnet3_declare_features(adapter, dma64);
3233
Stephen Hemminger4db37a72013-01-15 07:28:33 +00003234 if (adapter->num_tx_queues == adapter->num_rx_queues)
3235 adapter->share_intr = VMXNET3_INTR_BUDDYSHARE;
3236 else
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003237 adapter->share_intr = VMXNET3_INTR_DONTSHARE;
3238
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003239 vmxnet3_alloc_intr_resources(adapter);
3240
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003241#ifdef VMXNET3_RSS
3242 if (adapter->num_rx_queues > 1 &&
3243 adapter->intr.type == VMXNET3_IT_MSIX) {
3244 adapter->rss = true;
Stephen Hemminger7db11f72013-01-15 07:28:35 +00003245 netdev->hw_features |= NETIF_F_RXHASH;
3246 netdev->features |= NETIF_F_RXHASH;
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003247 dev_dbg(&pdev->dev, "RSS is enabled.\n");
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003248 } else {
3249 adapter->rss = false;
3250 }
3251#endif
3252
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003253 vmxnet3_read_mac_addr(adapter, mac);
3254 memcpy(netdev->dev_addr, mac, netdev->addr_len);
3255
3256 netdev->netdev_ops = &vmxnet3_netdev_ops;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003257 vmxnet3_set_ethtool_ops(netdev);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003258 netdev->watchdog_timeo = 5 * HZ;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003259
3260 INIT_WORK(&adapter->work, vmxnet3_reset_work);
Steve Hodgsone3bc4ff2012-08-14 17:13:36 +01003261 set_bit(VMXNET3_STATE_BIT_QUIESCED, &adapter->state);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003262
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003263 if (adapter->intr.type == VMXNET3_IT_MSIX) {
3264 int i;
3265 for (i = 0; i < adapter->num_rx_queues; i++) {
3266 netif_napi_add(adapter->netdev,
3267 &adapter->rx_queue[i].napi,
3268 vmxnet3_poll_rx_only, 64);
3269 }
3270 } else {
3271 netif_napi_add(adapter->netdev, &adapter->rx_queue[0].napi,
3272 vmxnet3_poll, 64);
3273 }
3274
3275 netif_set_real_num_tx_queues(adapter->netdev, adapter->num_tx_queues);
3276 netif_set_real_num_rx_queues(adapter->netdev, adapter->num_rx_queues);
3277
Neil Horman6cdd20c2013-01-29 16:15:45 -05003278 netif_carrier_off(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003279 err = register_netdev(netdev);
3280
3281 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003282 dev_err(&pdev->dev, "Failed to register adapter\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003283 goto err_register;
3284 }
3285
Shreyas Bhatewara4a1745fc2010-07-15 21:51:14 +00003286 vmxnet3_check_link(adapter, false);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003287 return 0;
3288
3289err_register:
3290 vmxnet3_free_intr_resources(adapter);
3291err_ver:
3292 vmxnet3_free_pci_resources(adapter);
3293err_alloc_pci:
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003294#ifdef VMXNET3_RSS
Andy Kingb0eb57c2013-08-23 09:33:49 -07003295 dma_free_coherent(&adapter->pdev->dev, sizeof(struct UPT1_RSSConf),
3296 adapter->rss_conf, adapter->rss_conf_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003297err_alloc_rss:
3298#endif
Andy Kingb0eb57c2013-08-23 09:33:49 -07003299 dma_free_coherent(&adapter->pdev->dev, sizeof(struct Vmxnet3_PMConf),
3300 adapter->pm_conf, adapter->pm_conf_pa);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003301err_alloc_pm:
Andy Kingb0eb57c2013-08-23 09:33:49 -07003302 dma_free_coherent(&adapter->pdev->dev, size, adapter->tqd_start,
3303 adapter->queue_desc_pa);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003304err_alloc_queue_desc:
Andy Kingb0eb57c2013-08-23 09:33:49 -07003305 dma_free_coherent(&adapter->pdev->dev,
3306 sizeof(struct Vmxnet3_DriverShared),
3307 adapter->shared, adapter->shared_pa);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003308err_alloc_shared:
Andy Kingb0eb57c2013-08-23 09:33:49 -07003309 dma_unmap_single(&adapter->pdev->dev, adapter->adapter_pa,
3310 sizeof(struct vmxnet3_adapter), PCI_DMA_TODEVICE);
Alexey Khoroshilov5738a092015-11-28 01:29:30 +03003311err_dma_map:
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003312 free_netdev(netdev);
3313 return err;
3314}
3315
3316
Bill Pemberton3a4751a2012-12-03 09:24:16 -05003317static void
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003318vmxnet3_remove_device(struct pci_dev *pdev)
3319{
3320 struct net_device *netdev = pci_get_drvdata(pdev);
3321 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003322 int size = 0;
3323 int num_rx_queues;
3324
3325#ifdef VMXNET3_RSS
3326 if (enable_mq)
3327 num_rx_queues = min(VMXNET3_DEVICE_MAX_RX_QUEUES,
3328 (int)num_online_cpus());
3329 else
3330#endif
3331 num_rx_queues = 1;
Shreyas Bhatewaraeebb02b2011-07-07 00:25:52 -07003332 num_rx_queues = rounddown_pow_of_two(num_rx_queues);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003333
Tejun Heo23f333a2010-12-12 16:45:14 +01003334 cancel_work_sync(&adapter->work);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003335
3336 unregister_netdev(netdev);
3337
3338 vmxnet3_free_intr_resources(adapter);
3339 vmxnet3_free_pci_resources(adapter);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003340#ifdef VMXNET3_RSS
Andy Kingb0eb57c2013-08-23 09:33:49 -07003341 dma_free_coherent(&adapter->pdev->dev, sizeof(struct UPT1_RSSConf),
3342 adapter->rss_conf, adapter->rss_conf_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003343#endif
Andy Kingb0eb57c2013-08-23 09:33:49 -07003344 dma_free_coherent(&adapter->pdev->dev, sizeof(struct Vmxnet3_PMConf),
3345 adapter->pm_conf, adapter->pm_conf_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003346
3347 size = sizeof(struct Vmxnet3_TxQueueDesc) * adapter->num_tx_queues;
3348 size += sizeof(struct Vmxnet3_RxQueueDesc) * num_rx_queues;
Andy Kingb0eb57c2013-08-23 09:33:49 -07003349 dma_free_coherent(&adapter->pdev->dev, size, adapter->tqd_start,
3350 adapter->queue_desc_pa);
3351 dma_free_coherent(&adapter->pdev->dev,
3352 sizeof(struct Vmxnet3_DriverShared),
3353 adapter->shared, adapter->shared_pa);
3354 dma_unmap_single(&adapter->pdev->dev, adapter->adapter_pa,
3355 sizeof(struct vmxnet3_adapter), PCI_DMA_TODEVICE);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003356 free_netdev(netdev);
3357}
3358
Shreyas Bhatewarae9ba47b2015-06-19 13:36:02 -07003359static void vmxnet3_shutdown_device(struct pci_dev *pdev)
3360{
3361 struct net_device *netdev = pci_get_drvdata(pdev);
3362 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
3363 unsigned long flags;
3364
3365 /* Reset_work may be in the middle of resetting the device, wait for its
3366 * completion.
3367 */
3368 while (test_and_set_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state))
3369 msleep(1);
3370
3371 if (test_and_set_bit(VMXNET3_STATE_BIT_QUIESCED,
3372 &adapter->state)) {
3373 clear_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state);
3374 return;
3375 }
3376 spin_lock_irqsave(&adapter->cmd_lock, flags);
3377 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
3378 VMXNET3_CMD_QUIESCE_DEV);
3379 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
3380 vmxnet3_disable_all_intrs(adapter);
3381
3382 clear_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state);
3383}
3384
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003385
3386#ifdef CONFIG_PM
3387
3388static int
3389vmxnet3_suspend(struct device *device)
3390{
3391 struct pci_dev *pdev = to_pci_dev(device);
3392 struct net_device *netdev = pci_get_drvdata(pdev);
3393 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
3394 struct Vmxnet3_PMConf *pmConf;
3395 struct ethhdr *ehdr;
3396 struct arphdr *ahdr;
3397 u8 *arpreq;
3398 struct in_device *in_dev;
3399 struct in_ifaddr *ifa;
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003400 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003401 int i = 0;
3402
3403 if (!netif_running(netdev))
3404 return 0;
3405
Shreyas Bhatewara51956cd2011-01-14 14:59:52 +00003406 for (i = 0; i < adapter->num_rx_queues; i++)
3407 napi_disable(&adapter->rx_queue[i].napi);
3408
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003409 vmxnet3_disable_all_intrs(adapter);
3410 vmxnet3_free_irqs(adapter);
3411 vmxnet3_free_intr_resources(adapter);
3412
3413 netif_device_detach(netdev);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003414 netif_tx_stop_all_queues(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003415
3416 /* Create wake-up filters. */
3417 pmConf = adapter->pm_conf;
3418 memset(pmConf, 0, sizeof(*pmConf));
3419
3420 if (adapter->wol & WAKE_UCAST) {
3421 pmConf->filters[i].patternSize = ETH_ALEN;
3422 pmConf->filters[i].maskSize = 1;
3423 memcpy(pmConf->filters[i].pattern, netdev->dev_addr, ETH_ALEN);
3424 pmConf->filters[i].mask[0] = 0x3F; /* LSB ETH_ALEN bits */
3425
Harvey Harrison3843e512010-10-21 18:05:32 +00003426 pmConf->wakeUpEvents |= VMXNET3_PM_WAKEUP_FILTER;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003427 i++;
3428 }
3429
3430 if (adapter->wol & WAKE_ARP) {
3431 in_dev = in_dev_get(netdev);
3432 if (!in_dev)
3433 goto skip_arp;
3434
3435 ifa = (struct in_ifaddr *)in_dev->ifa_list;
3436 if (!ifa)
3437 goto skip_arp;
3438
3439 pmConf->filters[i].patternSize = ETH_HLEN + /* Ethernet header*/
3440 sizeof(struct arphdr) + /* ARP header */
3441 2 * ETH_ALEN + /* 2 Ethernet addresses*/
3442 2 * sizeof(u32); /*2 IPv4 addresses */
3443 pmConf->filters[i].maskSize =
3444 (pmConf->filters[i].patternSize - 1) / 8 + 1;
3445
3446 /* ETH_P_ARP in Ethernet header. */
3447 ehdr = (struct ethhdr *)pmConf->filters[i].pattern;
3448 ehdr->h_proto = htons(ETH_P_ARP);
3449
3450 /* ARPOP_REQUEST in ARP header. */
3451 ahdr = (struct arphdr *)&pmConf->filters[i].pattern[ETH_HLEN];
3452 ahdr->ar_op = htons(ARPOP_REQUEST);
3453 arpreq = (u8 *)(ahdr + 1);
3454
3455 /* The Unicast IPv4 address in 'tip' field. */
3456 arpreq += 2 * ETH_ALEN + sizeof(u32);
3457 *(u32 *)arpreq = ifa->ifa_address;
3458
3459 /* The mask for the relevant bits. */
3460 pmConf->filters[i].mask[0] = 0x00;
3461 pmConf->filters[i].mask[1] = 0x30; /* ETH_P_ARP */
3462 pmConf->filters[i].mask[2] = 0x30; /* ARPOP_REQUEST */
3463 pmConf->filters[i].mask[3] = 0x00;
3464 pmConf->filters[i].mask[4] = 0xC0; /* IPv4 TIP */
3465 pmConf->filters[i].mask[5] = 0x03; /* IPv4 TIP */
3466 in_dev_put(in_dev);
3467
Harvey Harrison3843e512010-10-21 18:05:32 +00003468 pmConf->wakeUpEvents |= VMXNET3_PM_WAKEUP_FILTER;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003469 i++;
3470 }
3471
3472skip_arp:
3473 if (adapter->wol & WAKE_MAGIC)
Harvey Harrison3843e512010-10-21 18:05:32 +00003474 pmConf->wakeUpEvents |= VMXNET3_PM_WAKEUP_MAGIC;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003475
3476 pmConf->numFilters = i;
3477
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00003478 adapter->shared->devRead.pmConfDesc.confVer = cpu_to_le32(1);
3479 adapter->shared->devRead.pmConfDesc.confLen = cpu_to_le32(sizeof(
3480 *pmConf));
Andy Kingb0eb57c2013-08-23 09:33:49 -07003481 adapter->shared->devRead.pmConfDesc.confPA =
3482 cpu_to_le64(adapter->pm_conf_pa);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003483
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003484 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003485 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
3486 VMXNET3_CMD_UPDATE_PMCFG);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003487 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003488
3489 pci_save_state(pdev);
3490 pci_enable_wake(pdev, pci_choose_state(pdev, PMSG_SUSPEND),
3491 adapter->wol);
3492 pci_disable_device(pdev);
3493 pci_set_power_state(pdev, pci_choose_state(pdev, PMSG_SUSPEND));
3494
3495 return 0;
3496}
3497
3498
3499static int
3500vmxnet3_resume(struct device *device)
3501{
Shrikrishna Khare5ec82c12015-01-09 15:19:14 -08003502 int err;
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003503 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003504 struct pci_dev *pdev = to_pci_dev(device);
3505 struct net_device *netdev = pci_get_drvdata(pdev);
3506 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003507
3508 if (!netif_running(netdev))
3509 return 0;
3510
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003511 pci_set_power_state(pdev, PCI_D0);
3512 pci_restore_state(pdev);
3513 err = pci_enable_device_mem(pdev);
3514 if (err != 0)
3515 return err;
3516
3517 pci_enable_wake(pdev, PCI_D0, 0);
3518
Shrikrishna Khare5ec82c12015-01-09 15:19:14 -08003519 vmxnet3_alloc_intr_resources(adapter);
3520
3521 /* During hibernate and suspend, device has to be reinitialized as the
3522 * device state need not be preserved.
3523 */
3524
3525 /* Need not check adapter state as other reset tasks cannot run during
3526 * device resume.
3527 */
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003528 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003529 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
Shrikrishna Khare5ec82c12015-01-09 15:19:14 -08003530 VMXNET3_CMD_QUIESCE_DEV);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003531 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shrikrishna Khare5ec82c12015-01-09 15:19:14 -08003532 vmxnet3_tq_cleanup_all(adapter);
3533 vmxnet3_rq_cleanup_all(adapter);
3534
3535 vmxnet3_reset_dev(adapter);
3536 err = vmxnet3_activate_dev(adapter);
3537 if (err != 0) {
3538 netdev_err(netdev,
3539 "failed to re-activate on resume, error: %d", err);
3540 vmxnet3_force_close(adapter);
3541 return err;
3542 }
3543 netif_device_attach(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003544
3545 return 0;
3546}
3547
Alexey Dobriyan47145212009-12-14 18:00:08 -08003548static const struct dev_pm_ops vmxnet3_pm_ops = {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003549 .suspend = vmxnet3_suspend,
3550 .resume = vmxnet3_resume,
Shrikrishna Khare5ec82c12015-01-09 15:19:14 -08003551 .freeze = vmxnet3_suspend,
3552 .restore = vmxnet3_resume,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003553};
3554#endif
3555
3556static struct pci_driver vmxnet3_driver = {
3557 .name = vmxnet3_driver_name,
3558 .id_table = vmxnet3_pciid_table,
3559 .probe = vmxnet3_probe_device,
Bill Pemberton3a4751a2012-12-03 09:24:16 -05003560 .remove = vmxnet3_remove_device,
Shreyas Bhatewarae9ba47b2015-06-19 13:36:02 -07003561 .shutdown = vmxnet3_shutdown_device,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003562#ifdef CONFIG_PM
3563 .driver.pm = &vmxnet3_pm_ops,
3564#endif
3565};
3566
3567
3568static int __init
3569vmxnet3_init_module(void)
3570{
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003571 pr_info("%s - version %s\n", VMXNET3_DRIVER_DESC,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003572 VMXNET3_DRIVER_VERSION_REPORT);
3573 return pci_register_driver(&vmxnet3_driver);
3574}
3575
3576module_init(vmxnet3_init_module);
3577
3578
3579static void
3580vmxnet3_exit_module(void)
3581{
3582 pci_unregister_driver(&vmxnet3_driver);
3583}
3584
3585module_exit(vmxnet3_exit_module);
3586
3587MODULE_AUTHOR("VMware, Inc.");
3588MODULE_DESCRIPTION(VMXNET3_DRIVER_DESC);
3589MODULE_LICENSE("GPL v2");
3590MODULE_VERSION(VMXNET3_DRIVER_VERSION_STRING);