blob: d0bcc1d97e80e93f6a05cfa69123062dd69c041e [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) {
Shrikrishna Khare3c8b3ef2016-06-16 10:51:55 -0700438 dma_free_coherent(&adapter->pdev->dev,
439 tq->data_ring.size * tq->txdata_desc_size,
Andy Kingb0eb57c2013-08-23 09:33:49 -0700440 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
Shrikrishna Khare3c8b3ef2016-06-16 10:51:55 -0700481 memset(tq->data_ring.base, 0,
482 tq->data_ring.size * tq->txdata_desc_size);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700483
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,
Shrikrishna Khare3c8b3ef2016-06-16 10:51:55 -0700517 tq->data_ring.size * tq->txdata_desc_size,
Andy Kingb0eb57c2013-08-23 09:33:49 -0700518 &tq->data_ring.basePA, GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700519 if (!tq->data_ring.base) {
Shrikrishna Khare3c8b3ef2016-06-16 10:51:55 -0700520 netdev_err(adapter->netdev, "failed to allocate tx 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 *
Shrikrishna Khare3c8b3ef2016-06-16 10:51:55 -0700692 tq->txdata_desc_size);
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000693 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 */
Shrikrishna Khare3c8b3ef2016-06-16 10:51:55 -0700876 ctx->copy_size = min_t(unsigned int,
877 tq->txdata_desc_size,
878 skb_headlen(skb));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700879 }
880
Shreyas Bhatewarac41fcce2015-06-19 13:37:03 -0700881 if (skb->len <= VMXNET3_HDR_COPY_SIZE)
882 ctx->copy_size = skb->len;
883
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700884 /* make sure headers are accessible directly */
885 if (unlikely(!pskb_may_pull(skb, ctx->copy_size)))
886 goto err;
887 }
888
Shrikrishna Khare3c8b3ef2016-06-16 10:51:55 -0700889 if (unlikely(ctx->copy_size > tq->txdata_desc_size)) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700890 tq->stats.oversized_hdr++;
891 ctx->copy_size = 0;
892 return 0;
893 }
894
Neil Hormancec05562016-03-04 13:40:48 -0500895 return 1;
896err:
897 return -1;
898}
899
900/*
901 * copy relevant protocol headers to the transmit ring:
902 * For a tso pkt, relevant headers are L2/3/4 including options
903 * For a pkt requesting csum offloading, they are L2/3 and may include L4
904 * if it's a TCP/UDP pkt
905 *
906 *
907 * Note that this requires that vmxnet3_parse_hdr be called first to set the
908 * appropriate bits in ctx first
909 */
910static void
911vmxnet3_copy_hdr(struct sk_buff *skb, struct vmxnet3_tx_queue *tq,
912 struct vmxnet3_tx_ctx *ctx,
913 struct vmxnet3_adapter *adapter)
914{
915 struct Vmxnet3_TxDataDesc *tdd;
916
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700917 tdd = tq->data_ring.base + tq->tx_ring.next2fill;
918
919 memcpy(tdd->data, skb->data, ctx->copy_size);
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +0000920 netdev_dbg(adapter->netdev,
Randy Dunlapf69655822009-10-16 17:54:34 -0700921 "copy %u bytes to dataRing[%u]\n",
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700922 ctx->copy_size, tq->tx_ring.next2fill);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700923}
924
925
926static void
927vmxnet3_prepare_tso(struct sk_buff *skb,
928 struct vmxnet3_tx_ctx *ctx)
929{
Eric Dumazet8bca5d12012-01-24 19:47:21 +0000930 struct tcphdr *tcph = tcp_hdr(skb);
931
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700932 if (ctx->ipv4) {
Eric Dumazet8bca5d12012-01-24 19:47:21 +0000933 struct iphdr *iph = ip_hdr(skb);
934
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700935 iph->check = 0;
936 tcph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr, 0,
937 IPPROTO_TCP, 0);
Shrikrishna Khare759c9352015-02-28 20:33:09 -0800938 } else if (ctx->ipv6) {
Eric Dumazet8bca5d12012-01-24 19:47:21 +0000939 struct ipv6hdr *iph = ipv6_hdr(skb);
940
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700941 tcph->check = ~csum_ipv6_magic(&iph->saddr, &iph->daddr, 0,
942 IPPROTO_TCP, 0);
943 }
944}
945
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000946static int txd_estimate(const struct sk_buff *skb)
947{
948 int count = VMXNET3_TXD_NEEDED(skb_headlen(skb)) + 1;
949 int i;
950
951 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
952 const struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i];
953
954 count += VMXNET3_TXD_NEEDED(skb_frag_size(frag));
955 }
956 return count;
957}
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700958
959/*
960 * Transmits a pkt thru a given tq
961 * Returns:
962 * NETDEV_TX_OK: descriptors are setup successfully
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300963 * NETDEV_TX_OK: error occurred, the pkt is dropped
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700964 * NETDEV_TX_BUSY: tx ring is full, queue is stopped
965 *
966 * Side-effects:
967 * 1. tx ring may be changed
968 * 2. tq stats may be updated accordingly
969 * 3. shared->txNumDeferred may be updated
970 */
971
972static int
973vmxnet3_tq_xmit(struct sk_buff *skb, struct vmxnet3_tx_queue *tq,
974 struct vmxnet3_adapter *adapter, struct net_device *netdev)
975{
976 int ret;
977 u32 count;
978 unsigned long flags;
979 struct vmxnet3_tx_ctx ctx;
980 union Vmxnet3_GenericDesc *gdesc;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000981#ifdef __BIG_ENDIAN_BITFIELD
982 /* Use temporary descriptor to avoid touching bits multiple times */
983 union Vmxnet3_GenericDesc tempTxDesc;
984#endif
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700985
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000986 count = txd_estimate(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700987
Jesse Gross72e85c42011-06-23 13:04:39 +0000988 ctx.ipv4 = (vlan_get_protocol(skb) == cpu_to_be16(ETH_P_IP));
Shrikrishna Khare759c9352015-02-28 20:33:09 -0800989 ctx.ipv6 = (vlan_get_protocol(skb) == cpu_to_be16(ETH_P_IPV6));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700990
991 ctx.mss = skb_shinfo(skb)->gso_size;
992 if (ctx.mss) {
993 if (skb_header_cloned(skb)) {
994 if (unlikely(pskb_expand_head(skb, 0, 0,
995 GFP_ATOMIC) != 0)) {
996 tq->stats.drop_tso++;
997 goto drop_pkt;
998 }
999 tq->stats.copy_skb_header++;
1000 }
1001 vmxnet3_prepare_tso(skb, &ctx);
1002 } else {
1003 if (unlikely(count > VMXNET3_MAX_TXD_PER_PKT)) {
1004
1005 /* non-tso pkts must not use more than
1006 * VMXNET3_MAX_TXD_PER_PKT entries
1007 */
1008 if (skb_linearize(skb) != 0) {
1009 tq->stats.drop_too_many_frags++;
1010 goto drop_pkt;
1011 }
1012 tq->stats.linearized++;
1013
1014 /* recalculate the # of descriptors to use */
1015 count = VMXNET3_TXD_NEEDED(skb_headlen(skb)) + 1;
1016 }
1017 }
1018
Neil Hormancec05562016-03-04 13:40:48 -05001019 ret = vmxnet3_parse_hdr(skb, tq, &ctx, adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001020 if (ret >= 0) {
1021 BUG_ON(ret <= 0 && ctx.copy_size != 0);
1022 /* hdrs parsed, check against other limits */
1023 if (ctx.mss) {
1024 if (unlikely(ctx.eth_ip_hdr_size + ctx.l4_hdr_size >
1025 VMXNET3_MAX_TX_BUF_SIZE)) {
Arnd Bergmannefc21d92016-03-14 15:53:57 +01001026 tq->stats.drop_oversized_hdr++;
1027 goto drop_pkt;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001028 }
1029 } else {
1030 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1031 if (unlikely(ctx.eth_ip_hdr_size +
1032 skb->csum_offset >
1033 VMXNET3_MAX_CSUM_OFFSET)) {
Arnd Bergmannefc21d92016-03-14 15:53:57 +01001034 tq->stats.drop_oversized_hdr++;
1035 goto drop_pkt;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001036 }
1037 }
1038 }
1039 } else {
1040 tq->stats.drop_hdr_inspect_err++;
Neil Hormancec05562016-03-04 13:40:48 -05001041 goto drop_pkt;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001042 }
1043
Neil Hormancec05562016-03-04 13:40:48 -05001044 spin_lock_irqsave(&tq->tx_lock, flags);
1045
1046 if (count > vmxnet3_cmd_ring_desc_avail(&tq->tx_ring)) {
1047 tq->stats.tx_ring_full++;
1048 netdev_dbg(adapter->netdev,
1049 "tx queue stopped on %s, next2comp %u"
1050 " next2fill %u\n", adapter->netdev->name,
1051 tq->tx_ring.next2comp, tq->tx_ring.next2fill);
1052
1053 vmxnet3_tq_stop(tq, adapter);
1054 spin_unlock_irqrestore(&tq->tx_lock, flags);
1055 return NETDEV_TX_BUSY;
1056 }
1057
1058
1059 vmxnet3_copy_hdr(skb, tq, &ctx, adapter);
1060
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001061 /* fill tx descs related to addr & len */
Alexey Khoroshilov5738a092015-11-28 01:29:30 +03001062 if (vmxnet3_map_pkt(skb, &ctx, tq, adapter->pdev, adapter))
1063 goto unlock_drop_pkt;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001064
1065 /* setup the EOP desc */
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001066 ctx.eop_txd->dword[3] = cpu_to_le32(VMXNET3_TXD_CQ | VMXNET3_TXD_EOP);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001067
1068 /* setup the SOP desc */
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001069#ifdef __BIG_ENDIAN_BITFIELD
1070 gdesc = &tempTxDesc;
1071 gdesc->dword[2] = ctx.sop_txd->dword[2];
1072 gdesc->dword[3] = ctx.sop_txd->dword[3];
1073#else
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001074 gdesc = ctx.sop_txd;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001075#endif
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001076 if (ctx.mss) {
1077 gdesc->txd.hlen = ctx.eth_ip_hdr_size + ctx.l4_hdr_size;
1078 gdesc->txd.om = VMXNET3_OM_TSO;
1079 gdesc->txd.msscof = ctx.mss;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001080 le32_add_cpu(&tq->shared->txNumDeferred, (skb->len -
1081 gdesc->txd.hlen + ctx.mss - 1) / ctx.mss);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001082 } else {
1083 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1084 gdesc->txd.hlen = ctx.eth_ip_hdr_size;
1085 gdesc->txd.om = VMXNET3_OM_CSUM;
1086 gdesc->txd.msscof = ctx.eth_ip_hdr_size +
1087 skb->csum_offset;
1088 } else {
1089 gdesc->txd.om = 0;
1090 gdesc->txd.msscof = 0;
1091 }
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001092 le32_add_cpu(&tq->shared->txNumDeferred, 1);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001093 }
1094
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001095 if (skb_vlan_tag_present(skb)) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001096 gdesc->txd.ti = 1;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001097 gdesc->txd.tci = skb_vlan_tag_get(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001098 }
1099
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001100 /* finally flips the GEN bit of the SOP desc. */
1101 gdesc->dword[2] = cpu_to_le32(le32_to_cpu(gdesc->dword[2]) ^
1102 VMXNET3_TXD_GEN);
1103#ifdef __BIG_ENDIAN_BITFIELD
1104 /* Finished updating in bitfields of Tx Desc, so write them in original
1105 * place.
1106 */
1107 vmxnet3_TxDescToLe((struct Vmxnet3_TxDesc *)gdesc,
1108 (struct Vmxnet3_TxDesc *)ctx.sop_txd);
1109 gdesc = ctx.sop_txd;
1110#endif
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +00001111 netdev_dbg(adapter->netdev,
Randy Dunlapf69655822009-10-16 17:54:34 -07001112 "txd[%u]: SOP 0x%Lx 0x%x 0x%x\n",
Joe Perchesc2fd03a2012-06-04 12:44:18 +00001113 (u32)(ctx.sop_txd -
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001114 tq->tx_ring.base), le64_to_cpu(gdesc->txd.addr),
1115 le32_to_cpu(gdesc->dword[2]), le32_to_cpu(gdesc->dword[3]));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001116
1117 spin_unlock_irqrestore(&tq->tx_lock, flags);
1118
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001119 if (le32_to_cpu(tq->shared->txNumDeferred) >=
1120 le32_to_cpu(tq->shared->txThreshold)) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001121 tq->shared->txNumDeferred = 0;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001122 VMXNET3_WRITE_BAR0_REG(adapter,
1123 VMXNET3_REG_TXPROD + tq->qid * 8,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001124 tq->tx_ring.next2fill);
1125 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001126
1127 return NETDEV_TX_OK;
1128
Dan Carpenterf955e142010-12-20 03:03:15 +00001129unlock_drop_pkt:
1130 spin_unlock_irqrestore(&tq->tx_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001131drop_pkt:
1132 tq->stats.drop_total++;
Eric W. Biedermanb1b71812014-03-15 18:31:16 -07001133 dev_kfree_skb_any(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001134 return NETDEV_TX_OK;
1135}
1136
1137
1138static netdev_tx_t
1139vmxnet3_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
1140{
1141 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001142
stephen hemminger96800ee2012-11-13 13:53:28 +00001143 BUG_ON(skb->queue_mapping > adapter->num_tx_queues);
1144 return vmxnet3_tq_xmit(skb,
1145 &adapter->tx_queue[skb->queue_mapping],
1146 adapter, netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001147}
1148
1149
1150static void
1151vmxnet3_rx_csum(struct vmxnet3_adapter *adapter,
1152 struct sk_buff *skb,
1153 union Vmxnet3_GenericDesc *gdesc)
1154{
Michał Mirosława0d27302011-04-18 13:31:21 +00001155 if (!gdesc->rcd.cnc && adapter->netdev->features & NETIF_F_RXCSUM) {
Shrikrishna Kharef0d43782016-04-20 18:12:29 -07001156 if (gdesc->rcd.v4 &&
1157 (le32_to_cpu(gdesc->dword[3]) &
1158 VMXNET3_RCD_CSUM_OK) == VMXNET3_RCD_CSUM_OK) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001159 skb->ip_summed = CHECKSUM_UNNECESSARY;
1160 BUG_ON(!(gdesc->rcd.tcp || gdesc->rcd.udp));
Shrikrishna Kharef0d43782016-04-20 18:12:29 -07001161 BUG_ON(gdesc->rcd.frg);
1162 } else if (gdesc->rcd.v6 && (le32_to_cpu(gdesc->dword[3]) &
1163 (1 << VMXNET3_RCD_TUC_SHIFT))) {
1164 skb->ip_summed = CHECKSUM_UNNECESSARY;
1165 BUG_ON(!(gdesc->rcd.tcp || gdesc->rcd.udp));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001166 BUG_ON(gdesc->rcd.frg);
1167 } else {
1168 if (gdesc->rcd.csum) {
1169 skb->csum = htons(gdesc->rcd.csum);
1170 skb->ip_summed = CHECKSUM_PARTIAL;
1171 } else {
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001172 skb_checksum_none_assert(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001173 }
1174 }
1175 } else {
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001176 skb_checksum_none_assert(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001177 }
1178}
1179
1180
1181static void
1182vmxnet3_rx_error(struct vmxnet3_rx_queue *rq, struct Vmxnet3_RxCompDesc *rcd,
1183 struct vmxnet3_rx_ctx *ctx, struct vmxnet3_adapter *adapter)
1184{
1185 rq->stats.drop_err++;
1186 if (!rcd->fcs)
1187 rq->stats.drop_fcs++;
1188
1189 rq->stats.drop_total++;
1190
1191 /*
1192 * We do not unmap and chain the rx buffer to the skb.
1193 * We basically pretend this buffer is not used and will be recycled
1194 * by vmxnet3_rq_alloc_rx_buf()
1195 */
1196
1197 /*
1198 * ctx->skb may be NULL if this is the first and the only one
1199 * desc for the pkt
1200 */
1201 if (ctx->skb)
1202 dev_kfree_skb_irq(ctx->skb);
1203
1204 ctx->skb = NULL;
1205}
1206
1207
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07001208static u32
1209vmxnet3_get_hdr_len(struct vmxnet3_adapter *adapter, struct sk_buff *skb,
1210 union Vmxnet3_GenericDesc *gdesc)
1211{
1212 u32 hlen, maplen;
1213 union {
1214 void *ptr;
1215 struct ethhdr *eth;
1216 struct iphdr *ipv4;
1217 struct ipv6hdr *ipv6;
1218 struct tcphdr *tcp;
1219 } hdr;
1220 BUG_ON(gdesc->rcd.tcp == 0);
1221
1222 maplen = skb_headlen(skb);
1223 if (unlikely(sizeof(struct iphdr) + sizeof(struct tcphdr) > maplen))
1224 return 0;
1225
1226 hdr.eth = eth_hdr(skb);
1227 if (gdesc->rcd.v4) {
1228 BUG_ON(hdr.eth->h_proto != htons(ETH_P_IP));
1229 hdr.ptr += sizeof(struct ethhdr);
1230 BUG_ON(hdr.ipv4->protocol != IPPROTO_TCP);
1231 hlen = hdr.ipv4->ihl << 2;
1232 hdr.ptr += hdr.ipv4->ihl << 2;
1233 } else if (gdesc->rcd.v6) {
1234 BUG_ON(hdr.eth->h_proto != htons(ETH_P_IPV6));
1235 hdr.ptr += sizeof(struct ethhdr);
1236 /* Use an estimated value, since we also need to handle
1237 * TSO case.
1238 */
1239 if (hdr.ipv6->nexthdr != IPPROTO_TCP)
1240 return sizeof(struct ipv6hdr) + sizeof(struct tcphdr);
1241 hlen = sizeof(struct ipv6hdr);
1242 hdr.ptr += sizeof(struct ipv6hdr);
1243 } else {
1244 /* Non-IP pkt, dont estimate header length */
1245 return 0;
1246 }
1247
1248 if (hlen + sizeof(struct tcphdr) > maplen)
1249 return 0;
1250
1251 return (hlen + (hdr.tcp->doff << 2));
1252}
1253
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001254static int
1255vmxnet3_rq_rx_complete(struct vmxnet3_rx_queue *rq,
1256 struct vmxnet3_adapter *adapter, int quota)
1257{
Joe Perches215faf92010-12-21 02:16:10 -08001258 static const u32 rxprod_reg[2] = {
1259 VMXNET3_REG_RXPROD, VMXNET3_REG_RXPROD2
1260 };
Neil Horman07696362015-07-07 14:02:18 -04001261 u32 num_pkts = 0;
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001262 bool skip_page_frags = false;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001263 struct Vmxnet3_RxCompDesc *rcd;
1264 struct vmxnet3_rx_ctx *ctx = &rq->rx_ctx;
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07001265 u16 segCnt = 0, mss = 0;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001266#ifdef __BIG_ENDIAN_BITFIELD
1267 struct Vmxnet3_RxDesc rxCmdDesc;
1268 struct Vmxnet3_RxCompDesc rxComp;
1269#endif
1270 vmxnet3_getRxComp(rcd, &rq->comp_ring.base[rq->comp_ring.next2proc].rcd,
1271 &rxComp);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001272 while (rcd->gen == rq->comp_ring.gen) {
1273 struct vmxnet3_rx_buf_info *rbi;
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001274 struct sk_buff *skb, *new_skb = NULL;
1275 struct page *new_page = NULL;
Alexey Khoroshilov5738a092015-11-28 01:29:30 +03001276 dma_addr_t new_dma_addr;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001277 int num_to_alloc;
1278 struct Vmxnet3_RxDesc *rxd;
1279 u32 idx, ring_idx;
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001280 struct vmxnet3_cmd_ring *ring = NULL;
Neil Horman07696362015-07-07 14:02:18 -04001281 if (num_pkts >= quota) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001282 /* we may stop even before we see the EOP desc of
1283 * the current pkt
1284 */
1285 break;
1286 }
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07001287 BUG_ON(rcd->rqID != rq->qid && rcd->rqID != rq->qid2 &&
1288 rcd->rqID != rq->dataRingQid);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001289 idx = rcd->rxdIdx;
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07001290 ring_idx = VMXNET3_GET_RING_IDX(adapter, rcd->rqID);
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001291 ring = rq->rx_ring + ring_idx;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001292 vmxnet3_getRxDesc(rxd, &rq->rx_ring[ring_idx].base[idx].rxd,
1293 &rxCmdDesc);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001294 rbi = rq->buf_info[ring_idx] + idx;
1295
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001296 BUG_ON(rxd->addr != rbi->dma_addr ||
1297 rxd->len != rbi->len);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001298
1299 if (unlikely(rcd->eop && rcd->err)) {
1300 vmxnet3_rx_error(rq, rcd, ctx, adapter);
1301 goto rcd_done;
1302 }
1303
1304 if (rcd->sop) { /* first buf of the pkt */
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07001305 bool rxDataRingUsed;
1306 u16 len;
1307
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001308 BUG_ON(rxd->btype != VMXNET3_RXD_BTYPE_HEAD ||
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07001309 (rcd->rqID != rq->qid &&
1310 rcd->rqID != rq->dataRingQid));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001311
1312 BUG_ON(rbi->buf_type != VMXNET3_RX_BUF_SKB);
1313 BUG_ON(ctx->skb != NULL || rbi->skb == NULL);
1314
1315 if (unlikely(rcd->len == 0)) {
1316 /* Pretend the rx buffer is skipped. */
1317 BUG_ON(!(rcd->sop && rcd->eop));
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +00001318 netdev_dbg(adapter->netdev,
Randy Dunlapf69655822009-10-16 17:54:34 -07001319 "rxRing[%u][%u] 0 length\n",
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001320 ring_idx, idx);
1321 goto rcd_done;
1322 }
1323
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001324 skip_page_frags = false;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001325 ctx->skb = rbi->skb;
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07001326
1327 rxDataRingUsed =
1328 VMXNET3_RX_DATA_RING(adapter, rcd->rqID);
1329 len = rxDataRingUsed ? rcd->len : rbi->len;
Stephen Hemminger0d735f12013-01-15 07:28:26 +00001330 new_skb = netdev_alloc_skb_ip_align(adapter->netdev,
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07001331 len);
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001332 if (new_skb == NULL) {
1333 /* Skb allocation failed, do not handover this
1334 * skb to stack. Reuse it. Drop the existing pkt
1335 */
1336 rq->stats.rx_buf_alloc_failure++;
1337 ctx->skb = NULL;
1338 rq->stats.drop_total++;
1339 skip_page_frags = true;
1340 goto rcd_done;
1341 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001342
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07001343 if (rxDataRingUsed) {
1344 size_t sz;
1345
1346 BUG_ON(rcd->len > rq->data_ring.desc_size);
1347
1348 ctx->skb = new_skb;
1349 sz = rcd->rxdIdx * rq->data_ring.desc_size;
1350 memcpy(new_skb->data,
1351 &rq->data_ring.base[sz], rcd->len);
1352 } else {
1353 ctx->skb = rbi->skb;
1354
1355 new_dma_addr =
1356 dma_map_single(&adapter->pdev->dev,
1357 new_skb->data, rbi->len,
1358 PCI_DMA_FROMDEVICE);
1359 if (dma_mapping_error(&adapter->pdev->dev,
1360 new_dma_addr)) {
1361 dev_kfree_skb(new_skb);
1362 /* Skb allocation failed, do not
1363 * handover this skb to stack. Reuse
1364 * it. Drop the existing pkt.
1365 */
1366 rq->stats.rx_buf_alloc_failure++;
1367 ctx->skb = NULL;
1368 rq->stats.drop_total++;
1369 skip_page_frags = true;
1370 goto rcd_done;
1371 }
1372
1373 dma_unmap_single(&adapter->pdev->dev,
1374 rbi->dma_addr,
1375 rbi->len,
1376 PCI_DMA_FROMDEVICE);
1377
1378 /* Immediate refill */
1379 rbi->skb = new_skb;
1380 rbi->dma_addr = new_dma_addr;
1381 rxd->addr = cpu_to_le64(rbi->dma_addr);
1382 rxd->len = rbi->len;
1383 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001384
Stephen Hemminger7db11f72013-01-15 07:28:35 +00001385#ifdef VMXNET3_RSS
1386 if (rcd->rssType != VMXNET3_RCD_RSS_TYPE_NONE &&
1387 (adapter->netdev->features & NETIF_F_RXHASH))
Michal Schmidt2c15a152013-12-20 13:16:57 +01001388 skb_set_hash(ctx->skb,
1389 le32_to_cpu(rcd->rssHash),
Tom Herbert0b680702013-12-17 23:32:08 -08001390 PKT_HASH_TYPE_L3);
Stephen Hemminger7db11f72013-01-15 07:28:35 +00001391#endif
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001392 skb_put(ctx->skb, rcd->len);
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001393
Shrikrishna Khare190af102016-06-16 10:51:53 -07001394 if (VMXNET3_VERSION_GE_2(adapter) &&
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07001395 rcd->type == VMXNET3_CDTYPE_RXCOMP_LRO) {
1396 struct Vmxnet3_RxCompDescExt *rcdlro;
1397 rcdlro = (struct Vmxnet3_RxCompDescExt *)rcd;
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001398
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07001399 segCnt = rcdlro->segCnt;
Shrikrishna Khare50219532016-06-08 07:40:53 -07001400 WARN_ON_ONCE(segCnt == 0);
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07001401 mss = rcdlro->mss;
1402 if (unlikely(segCnt <= 1))
1403 segCnt = 0;
1404 } else {
1405 segCnt = 0;
1406 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001407 } else {
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001408 BUG_ON(ctx->skb == NULL && !skip_page_frags);
1409
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001410 /* non SOP buffer must be type 1 in most cases */
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001411 BUG_ON(rbi->buf_type != VMXNET3_RX_BUF_PAGE);
1412 BUG_ON(rxd->btype != VMXNET3_RXD_BTYPE_BODY);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001413
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001414 /* If an sop buffer was dropped, skip all
1415 * following non-sop fragments. They will be reused.
1416 */
1417 if (skip_page_frags)
1418 goto rcd_done;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001419
Shreyas Bhatewarac41fcce2015-06-19 13:37:03 -07001420 if (rcd->len) {
1421 new_page = alloc_page(GFP_ATOMIC);
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001422 /* Replacement page frag could not be allocated.
1423 * Reuse this page. Drop the pkt and free the
1424 * skb which contained this page as a frag. Skip
1425 * processing all the following non-sop frags.
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001426 */
Shreyas Bhatewarac41fcce2015-06-19 13:37:03 -07001427 if (unlikely(!new_page)) {
1428 rq->stats.rx_buf_alloc_failure++;
1429 dev_kfree_skb(ctx->skb);
1430 ctx->skb = NULL;
1431 skip_page_frags = true;
1432 goto rcd_done;
1433 }
Shrikrishna Khare58caf632016-01-06 10:44:27 -08001434 new_dma_addr = dma_map_page(&adapter->pdev->dev,
1435 new_page,
1436 0, PAGE_SIZE,
1437 PCI_DMA_FROMDEVICE);
Alexey Khoroshilov5738a092015-11-28 01:29:30 +03001438 if (dma_mapping_error(&adapter->pdev->dev,
1439 new_dma_addr)) {
1440 put_page(new_page);
1441 rq->stats.rx_buf_alloc_failure++;
1442 dev_kfree_skb(ctx->skb);
1443 ctx->skb = NULL;
1444 skip_page_frags = true;
1445 goto rcd_done;
1446 }
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001447
Andy Kingb0eb57c2013-08-23 09:33:49 -07001448 dma_unmap_page(&adapter->pdev->dev,
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001449 rbi->dma_addr, rbi->len,
1450 PCI_DMA_FROMDEVICE);
1451
1452 vmxnet3_append_frag(ctx->skb, rcd, rbi);
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001453
Shreyas Bhatewarac41fcce2015-06-19 13:37:03 -07001454 /* Immediate refill */
1455 rbi->page = new_page;
Alexey Khoroshilov5738a092015-11-28 01:29:30 +03001456 rbi->dma_addr = new_dma_addr;
Shreyas Bhatewarac41fcce2015-06-19 13:37:03 -07001457 rxd->addr = cpu_to_le64(rbi->dma_addr);
1458 rxd->len = rbi->len;
1459 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001460 }
1461
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001462
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001463 skb = ctx->skb;
1464 if (rcd->eop) {
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07001465 u32 mtu = adapter->netdev->mtu;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001466 skb->len += skb->data_len;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001467
1468 vmxnet3_rx_csum(adapter, skb,
1469 (union Vmxnet3_GenericDesc *)rcd);
1470 skb->protocol = eth_type_trans(skb, adapter->netdev);
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07001471 if (!rcd->tcp || !adapter->lro)
1472 goto not_lro;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001473
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07001474 if (segCnt != 0 && mss != 0) {
1475 skb_shinfo(skb)->gso_type = rcd->v4 ?
1476 SKB_GSO_TCPV4 : SKB_GSO_TCPV6;
1477 skb_shinfo(skb)->gso_size = mss;
1478 skb_shinfo(skb)->gso_segs = segCnt;
1479 } else if (segCnt != 0 || skb->len > mtu) {
1480 u32 hlen;
1481
1482 hlen = vmxnet3_get_hdr_len(adapter, skb,
1483 (union Vmxnet3_GenericDesc *)rcd);
1484 if (hlen == 0)
1485 goto not_lro;
1486
1487 skb_shinfo(skb)->gso_type =
1488 rcd->v4 ? SKB_GSO_TCPV4 : SKB_GSO_TCPV6;
1489 if (segCnt != 0) {
1490 skb_shinfo(skb)->gso_segs = segCnt;
1491 skb_shinfo(skb)->gso_size =
1492 DIV_ROUND_UP(skb->len -
1493 hlen, segCnt);
1494 } else {
1495 skb_shinfo(skb)->gso_size = mtu - hlen;
1496 }
1497 }
1498not_lro:
Jesse Gross72e85c42011-06-23 13:04:39 +00001499 if (unlikely(rcd->ts))
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001500 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), rcd->tci);
Jesse Gross72e85c42011-06-23 13:04:39 +00001501
Jesse Gross213ade82011-06-24 14:24:35 +00001502 if (adapter->netdev->features & NETIF_F_LRO)
1503 netif_receive_skb(skb);
1504 else
1505 napi_gro_receive(&rq->napi, skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001506
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001507 ctx->skb = NULL;
Neil Horman07696362015-07-07 14:02:18 -04001508 num_pkts++;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001509 }
1510
1511rcd_done:
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001512 /* device may have skipped some rx descs */
1513 ring->next2comp = idx;
1514 num_to_alloc = vmxnet3_cmd_ring_desc_avail(ring);
1515 ring = rq->rx_ring + ring_idx;
1516 while (num_to_alloc) {
1517 vmxnet3_getRxDesc(rxd, &ring->base[ring->next2fill].rxd,
1518 &rxCmdDesc);
1519 BUG_ON(!rxd->addr);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001520
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001521 /* Recv desc is ready to be used by the device */
1522 rxd->gen = ring->gen;
1523 vmxnet3_cmd_ring_adv_next2fill(ring);
1524 num_to_alloc--;
1525 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001526
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001527 /* if needed, update the register */
1528 if (unlikely(rq->shared->updateRxProd)) {
1529 VMXNET3_WRITE_BAR0_REG(adapter,
stephen hemminger96800ee2012-11-13 13:53:28 +00001530 rxprod_reg[ring_idx] + rq->qid * 8,
1531 ring->next2fill);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001532 }
1533
1534 vmxnet3_comp_ring_adv_next2proc(&rq->comp_ring);
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001535 vmxnet3_getRxComp(rcd,
stephen hemminger96800ee2012-11-13 13:53:28 +00001536 &rq->comp_ring.base[rq->comp_ring.next2proc].rcd, &rxComp);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001537 }
1538
Neil Horman07696362015-07-07 14:02:18 -04001539 return num_pkts;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001540}
1541
1542
1543static void
1544vmxnet3_rq_cleanup(struct vmxnet3_rx_queue *rq,
1545 struct vmxnet3_adapter *adapter)
1546{
1547 u32 i, ring_idx;
1548 struct Vmxnet3_RxDesc *rxd;
1549
1550 for (ring_idx = 0; ring_idx < 2; ring_idx++) {
1551 for (i = 0; i < rq->rx_ring[ring_idx].size; i++) {
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001552#ifdef __BIG_ENDIAN_BITFIELD
1553 struct Vmxnet3_RxDesc rxDesc;
1554#endif
1555 vmxnet3_getRxDesc(rxd,
1556 &rq->rx_ring[ring_idx].base[i].rxd, &rxDesc);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001557
1558 if (rxd->btype == VMXNET3_RXD_BTYPE_HEAD &&
1559 rq->buf_info[ring_idx][i].skb) {
Andy Kingb0eb57c2013-08-23 09:33:49 -07001560 dma_unmap_single(&adapter->pdev->dev, rxd->addr,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001561 rxd->len, PCI_DMA_FROMDEVICE);
1562 dev_kfree_skb(rq->buf_info[ring_idx][i].skb);
1563 rq->buf_info[ring_idx][i].skb = NULL;
1564 } else if (rxd->btype == VMXNET3_RXD_BTYPE_BODY &&
1565 rq->buf_info[ring_idx][i].page) {
Andy Kingb0eb57c2013-08-23 09:33:49 -07001566 dma_unmap_page(&adapter->pdev->dev, rxd->addr,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001567 rxd->len, PCI_DMA_FROMDEVICE);
1568 put_page(rq->buf_info[ring_idx][i].page);
1569 rq->buf_info[ring_idx][i].page = NULL;
1570 }
1571 }
1572
1573 rq->rx_ring[ring_idx].gen = VMXNET3_INIT_GEN;
1574 rq->rx_ring[ring_idx].next2fill =
1575 rq->rx_ring[ring_idx].next2comp = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001576 }
1577
1578 rq->comp_ring.gen = VMXNET3_INIT_GEN;
1579 rq->comp_ring.next2proc = 0;
1580}
1581
1582
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001583static void
1584vmxnet3_rq_cleanup_all(struct vmxnet3_adapter *adapter)
1585{
1586 int i;
1587
1588 for (i = 0; i < adapter->num_rx_queues; i++)
1589 vmxnet3_rq_cleanup(&adapter->rx_queue[i], adapter);
1590}
1591
1592
stephen hemminger280b74f2013-02-22 08:26:29 +00001593static void vmxnet3_rq_destroy(struct vmxnet3_rx_queue *rq,
1594 struct vmxnet3_adapter *adapter)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001595{
1596 int i;
1597 int j;
1598
1599 /* all rx buffers must have already been freed */
1600 for (i = 0; i < 2; i++) {
1601 if (rq->buf_info[i]) {
1602 for (j = 0; j < rq->rx_ring[i].size; j++)
1603 BUG_ON(rq->buf_info[i][j].page != NULL);
1604 }
1605 }
1606
1607
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001608 for (i = 0; i < 2; i++) {
1609 if (rq->rx_ring[i].base) {
Andy Kingb0eb57c2013-08-23 09:33:49 -07001610 dma_free_coherent(&adapter->pdev->dev,
1611 rq->rx_ring[i].size
1612 * sizeof(struct Vmxnet3_RxDesc),
1613 rq->rx_ring[i].base,
1614 rq->rx_ring[i].basePA);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001615 rq->rx_ring[i].base = NULL;
1616 }
1617 rq->buf_info[i] = NULL;
1618 }
1619
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07001620 if (rq->data_ring.base) {
1621 dma_free_coherent(&adapter->pdev->dev,
1622 rq->rx_ring[0].size * rq->data_ring.desc_size,
1623 rq->data_ring.base, rq->data_ring.basePA);
1624 rq->data_ring.base = NULL;
1625 }
1626
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001627 if (rq->comp_ring.base) {
Andy Kingb0eb57c2013-08-23 09:33:49 -07001628 dma_free_coherent(&adapter->pdev->dev, rq->comp_ring.size
1629 * sizeof(struct Vmxnet3_RxCompDesc),
1630 rq->comp_ring.base, rq->comp_ring.basePA);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001631 rq->comp_ring.base = NULL;
1632 }
Andy Kingb0eb57c2013-08-23 09:33:49 -07001633
1634 if (rq->buf_info[0]) {
1635 size_t sz = sizeof(struct vmxnet3_rx_buf_info) *
1636 (rq->rx_ring[0].size + rq->rx_ring[1].size);
1637 dma_free_coherent(&adapter->pdev->dev, sz, rq->buf_info[0],
1638 rq->buf_info_pa);
1639 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001640}
1641
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07001642void
1643vmxnet3_rq_destroy_all_rxdataring(struct vmxnet3_adapter *adapter)
1644{
1645 int i;
1646
1647 for (i = 0; i < adapter->num_rx_queues; i++) {
1648 struct vmxnet3_rx_queue *rq = &adapter->rx_queue[i];
1649
1650 if (rq->data_ring.base) {
1651 dma_free_coherent(&adapter->pdev->dev,
1652 (rq->rx_ring[0].size *
1653 rq->data_ring.desc_size),
1654 rq->data_ring.base,
1655 rq->data_ring.basePA);
1656 rq->data_ring.base = NULL;
1657 rq->data_ring.desc_size = 0;
1658 }
1659 }
1660}
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001661
1662static int
1663vmxnet3_rq_init(struct vmxnet3_rx_queue *rq,
1664 struct vmxnet3_adapter *adapter)
1665{
1666 int i;
1667
1668 /* initialize buf_info */
1669 for (i = 0; i < rq->rx_ring[0].size; i++) {
1670
1671 /* 1st buf for a pkt is skbuff */
1672 if (i % adapter->rx_buf_per_pkt == 0) {
1673 rq->buf_info[0][i].buf_type = VMXNET3_RX_BUF_SKB;
1674 rq->buf_info[0][i].len = adapter->skb_buf_size;
1675 } else { /* subsequent bufs for a pkt is frag */
1676 rq->buf_info[0][i].buf_type = VMXNET3_RX_BUF_PAGE;
1677 rq->buf_info[0][i].len = PAGE_SIZE;
1678 }
1679 }
1680 for (i = 0; i < rq->rx_ring[1].size; i++) {
1681 rq->buf_info[1][i].buf_type = VMXNET3_RX_BUF_PAGE;
1682 rq->buf_info[1][i].len = PAGE_SIZE;
1683 }
1684
1685 /* reset internal state and allocate buffers for both rings */
1686 for (i = 0; i < 2; i++) {
1687 rq->rx_ring[i].next2fill = rq->rx_ring[i].next2comp = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001688
1689 memset(rq->rx_ring[i].base, 0, rq->rx_ring[i].size *
1690 sizeof(struct Vmxnet3_RxDesc));
1691 rq->rx_ring[i].gen = VMXNET3_INIT_GEN;
1692 }
1693 if (vmxnet3_rq_alloc_rx_buf(rq, 0, rq->rx_ring[0].size - 1,
1694 adapter) == 0) {
1695 /* at least has 1 rx buffer for the 1st ring */
1696 return -ENOMEM;
1697 }
1698 vmxnet3_rq_alloc_rx_buf(rq, 1, rq->rx_ring[1].size - 1, adapter);
1699
1700 /* reset the comp ring */
1701 rq->comp_ring.next2proc = 0;
1702 memset(rq->comp_ring.base, 0, rq->comp_ring.size *
1703 sizeof(struct Vmxnet3_RxCompDesc));
1704 rq->comp_ring.gen = VMXNET3_INIT_GEN;
1705
1706 /* reset rxctx */
1707 rq->rx_ctx.skb = NULL;
1708
1709 /* stats are not reset */
1710 return 0;
1711}
1712
1713
1714static int
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001715vmxnet3_rq_init_all(struct vmxnet3_adapter *adapter)
1716{
1717 int i, err = 0;
1718
1719 for (i = 0; i < adapter->num_rx_queues; i++) {
1720 err = vmxnet3_rq_init(&adapter->rx_queue[i], adapter);
1721 if (unlikely(err)) {
1722 dev_err(&adapter->netdev->dev, "%s: failed to "
1723 "initialize rx queue%i\n",
1724 adapter->netdev->name, i);
1725 break;
1726 }
1727 }
1728 return err;
1729
1730}
1731
1732
1733static int
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001734vmxnet3_rq_create(struct vmxnet3_rx_queue *rq, struct vmxnet3_adapter *adapter)
1735{
1736 int i;
1737 size_t sz;
1738 struct vmxnet3_rx_buf_info *bi;
1739
1740 for (i = 0; i < 2; i++) {
1741
1742 sz = rq->rx_ring[i].size * sizeof(struct Vmxnet3_RxDesc);
Andy Kingb0eb57c2013-08-23 09:33:49 -07001743 rq->rx_ring[i].base = dma_alloc_coherent(
1744 &adapter->pdev->dev, sz,
1745 &rq->rx_ring[i].basePA,
1746 GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001747 if (!rq->rx_ring[i].base) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00001748 netdev_err(adapter->netdev,
1749 "failed to allocate rx ring %d\n", i);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001750 goto err;
1751 }
1752 }
1753
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07001754 if ((adapter->rxdataring_enabled) && (rq->data_ring.desc_size != 0)) {
1755 sz = rq->rx_ring[0].size * rq->data_ring.desc_size;
1756 rq->data_ring.base =
1757 dma_alloc_coherent(&adapter->pdev->dev, sz,
1758 &rq->data_ring.basePA,
1759 GFP_KERNEL);
1760 if (!rq->data_ring.base) {
1761 netdev_err(adapter->netdev,
1762 "rx data ring will be disabled\n");
1763 adapter->rxdataring_enabled = false;
1764 }
1765 } else {
1766 rq->data_ring.base = NULL;
1767 rq->data_ring.desc_size = 0;
1768 }
1769
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001770 sz = rq->comp_ring.size * sizeof(struct Vmxnet3_RxCompDesc);
Andy Kingb0eb57c2013-08-23 09:33:49 -07001771 rq->comp_ring.base = dma_alloc_coherent(&adapter->pdev->dev, sz,
1772 &rq->comp_ring.basePA,
1773 GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001774 if (!rq->comp_ring.base) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00001775 netdev_err(adapter->netdev, "failed to allocate rx comp ring\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001776 goto err;
1777 }
1778
1779 sz = sizeof(struct vmxnet3_rx_buf_info) * (rq->rx_ring[0].size +
1780 rq->rx_ring[1].size);
Andy Kingb0eb57c2013-08-23 09:33:49 -07001781 bi = dma_zalloc_coherent(&adapter->pdev->dev, sz, &rq->buf_info_pa,
1782 GFP_KERNEL);
Joe Perchese404dec2012-01-29 12:56:23 +00001783 if (!bi)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001784 goto err;
Joe Perchese404dec2012-01-29 12:56:23 +00001785
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001786 rq->buf_info[0] = bi;
1787 rq->buf_info[1] = bi + rq->rx_ring[0].size;
1788
1789 return 0;
1790
1791err:
1792 vmxnet3_rq_destroy(rq, adapter);
1793 return -ENOMEM;
1794}
1795
1796
1797static int
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001798vmxnet3_rq_create_all(struct vmxnet3_adapter *adapter)
1799{
1800 int i, err = 0;
1801
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07001802 adapter->rxdataring_enabled = VMXNET3_VERSION_GE_3(adapter);
1803
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001804 for (i = 0; i < adapter->num_rx_queues; i++) {
1805 err = vmxnet3_rq_create(&adapter->rx_queue[i], adapter);
1806 if (unlikely(err)) {
1807 dev_err(&adapter->netdev->dev,
1808 "%s: failed to create rx queue%i\n",
1809 adapter->netdev->name, i);
1810 goto err_out;
1811 }
1812 }
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07001813
1814 if (!adapter->rxdataring_enabled)
1815 vmxnet3_rq_destroy_all_rxdataring(adapter);
1816
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001817 return err;
1818err_out:
1819 vmxnet3_rq_destroy_all(adapter);
1820 return err;
1821
1822}
1823
1824/* Multiple queue aware polling function for tx and rx */
1825
1826static int
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001827vmxnet3_do_poll(struct vmxnet3_adapter *adapter, int budget)
1828{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001829 int rcd_done = 0, i;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001830 if (unlikely(adapter->shared->ecr))
1831 vmxnet3_process_events(adapter);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001832 for (i = 0; i < adapter->num_tx_queues; i++)
1833 vmxnet3_tq_tx_complete(&adapter->tx_queue[i], adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001834
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001835 for (i = 0; i < adapter->num_rx_queues; i++)
1836 rcd_done += vmxnet3_rq_rx_complete(&adapter->rx_queue[i],
1837 adapter, budget);
1838 return rcd_done;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001839}
1840
1841
1842static int
1843vmxnet3_poll(struct napi_struct *napi, int budget)
1844{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001845 struct vmxnet3_rx_queue *rx_queue = container_of(napi,
1846 struct vmxnet3_rx_queue, napi);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001847 int rxd_done;
1848
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001849 rxd_done = vmxnet3_do_poll(rx_queue->adapter, budget);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001850
1851 if (rxd_done < budget) {
1852 napi_complete(napi);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001853 vmxnet3_enable_all_intrs(rx_queue->adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001854 }
1855 return rxd_done;
1856}
1857
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001858/*
1859 * NAPI polling function for MSI-X mode with multiple Rx queues
1860 * Returns the # of the NAPI credit consumed (# of rx descriptors processed)
1861 */
1862
1863static int
1864vmxnet3_poll_rx_only(struct napi_struct *napi, int budget)
1865{
1866 struct vmxnet3_rx_queue *rq = container_of(napi,
1867 struct vmxnet3_rx_queue, napi);
1868 struct vmxnet3_adapter *adapter = rq->adapter;
1869 int rxd_done;
1870
1871 /* When sharing interrupt with corresponding tx queue, process
1872 * tx completions in that queue as well
1873 */
1874 if (adapter->share_intr == VMXNET3_INTR_BUDDYSHARE) {
1875 struct vmxnet3_tx_queue *tq =
1876 &adapter->tx_queue[rq - adapter->rx_queue];
1877 vmxnet3_tq_tx_complete(tq, adapter);
1878 }
1879
1880 rxd_done = vmxnet3_rq_rx_complete(rq, adapter, budget);
1881
1882 if (rxd_done < budget) {
1883 napi_complete(napi);
1884 vmxnet3_enable_intr(adapter, rq->comp_ring.intr_idx);
1885 }
1886 return rxd_done;
1887}
1888
1889
1890#ifdef CONFIG_PCI_MSI
1891
1892/*
1893 * Handle completion interrupts on tx queues
1894 * Returns whether or not the intr is handled
1895 */
1896
1897static irqreturn_t
1898vmxnet3_msix_tx(int irq, void *data)
1899{
1900 struct vmxnet3_tx_queue *tq = data;
1901 struct vmxnet3_adapter *adapter = tq->adapter;
1902
1903 if (adapter->intr.mask_mode == VMXNET3_IMM_ACTIVE)
1904 vmxnet3_disable_intr(adapter, tq->comp_ring.intr_idx);
1905
1906 /* Handle the case where only one irq is allocate for all tx queues */
1907 if (adapter->share_intr == VMXNET3_INTR_TXSHARE) {
1908 int i;
1909 for (i = 0; i < adapter->num_tx_queues; i++) {
1910 struct vmxnet3_tx_queue *txq = &adapter->tx_queue[i];
1911 vmxnet3_tq_tx_complete(txq, adapter);
1912 }
1913 } else {
1914 vmxnet3_tq_tx_complete(tq, adapter);
1915 }
1916 vmxnet3_enable_intr(adapter, tq->comp_ring.intr_idx);
1917
1918 return IRQ_HANDLED;
1919}
1920
1921
1922/*
1923 * Handle completion interrupts on rx queues. Returns whether or not the
1924 * intr is handled
1925 */
1926
1927static irqreturn_t
1928vmxnet3_msix_rx(int irq, void *data)
1929{
1930 struct vmxnet3_rx_queue *rq = data;
1931 struct vmxnet3_adapter *adapter = rq->adapter;
1932
1933 /* disable intr if needed */
1934 if (adapter->intr.mask_mode == VMXNET3_IMM_ACTIVE)
1935 vmxnet3_disable_intr(adapter, rq->comp_ring.intr_idx);
1936 napi_schedule(&rq->napi);
1937
1938 return IRQ_HANDLED;
1939}
1940
1941/*
1942 *----------------------------------------------------------------------------
1943 *
1944 * vmxnet3_msix_event --
1945 *
1946 * vmxnet3 msix event intr handler
1947 *
1948 * Result:
1949 * whether or not the intr is handled
1950 *
1951 *----------------------------------------------------------------------------
1952 */
1953
1954static irqreturn_t
1955vmxnet3_msix_event(int irq, void *data)
1956{
1957 struct net_device *dev = data;
1958 struct vmxnet3_adapter *adapter = netdev_priv(dev);
1959
1960 /* disable intr if needed */
1961 if (adapter->intr.mask_mode == VMXNET3_IMM_ACTIVE)
1962 vmxnet3_disable_intr(adapter, adapter->intr.event_intr_idx);
1963
1964 if (adapter->shared->ecr)
1965 vmxnet3_process_events(adapter);
1966
1967 vmxnet3_enable_intr(adapter, adapter->intr.event_intr_idx);
1968
1969 return IRQ_HANDLED;
1970}
1971
1972#endif /* CONFIG_PCI_MSI */
1973
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001974
1975/* Interrupt handler for vmxnet3 */
1976static irqreturn_t
1977vmxnet3_intr(int irq, void *dev_id)
1978{
1979 struct net_device *dev = dev_id;
1980 struct vmxnet3_adapter *adapter = netdev_priv(dev);
1981
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001982 if (adapter->intr.type == VMXNET3_IT_INTX) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001983 u32 icr = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_ICR);
1984 if (unlikely(icr == 0))
1985 /* not ours */
1986 return IRQ_NONE;
1987 }
1988
1989
1990 /* disable intr if needed */
1991 if (adapter->intr.mask_mode == VMXNET3_IMM_ACTIVE)
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001992 vmxnet3_disable_all_intrs(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001993
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001994 napi_schedule(&adapter->rx_queue[0].napi);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001995
1996 return IRQ_HANDLED;
1997}
1998
1999#ifdef CONFIG_NET_POLL_CONTROLLER
2000
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002001/* netpoll callback. */
2002static void
2003vmxnet3_netpoll(struct net_device *netdev)
2004{
2005 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002006
Neil Hormand25f06e2014-03-10 06:55:55 -04002007 switch (adapter->intr.type) {
Arnd Bergmann0a8d8c42014-03-13 10:44:34 +01002008#ifdef CONFIG_PCI_MSI
2009 case VMXNET3_IT_MSIX: {
2010 int i;
Neil Hormand25f06e2014-03-10 06:55:55 -04002011 for (i = 0; i < adapter->num_rx_queues; i++)
2012 vmxnet3_msix_rx(0, &adapter->rx_queue[i]);
2013 break;
Arnd Bergmann0a8d8c42014-03-13 10:44:34 +01002014 }
2015#endif
Neil Hormand25f06e2014-03-10 06:55:55 -04002016 case VMXNET3_IT_MSI:
2017 default:
2018 vmxnet3_intr(0, adapter->netdev);
2019 break;
2020 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002021
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002022}
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002023#endif /* CONFIG_NET_POLL_CONTROLLER */
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002024
2025static int
2026vmxnet3_request_irqs(struct vmxnet3_adapter *adapter)
2027{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002028 struct vmxnet3_intr *intr = &adapter->intr;
2029 int err = 0, i;
2030 int vector = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002031
Randy Dunlap8f7e5242009-10-14 20:38:58 -07002032#ifdef CONFIG_PCI_MSI
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002033 if (adapter->intr.type == VMXNET3_IT_MSIX) {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002034 for (i = 0; i < adapter->num_tx_queues; i++) {
2035 if (adapter->share_intr != VMXNET3_INTR_BUDDYSHARE) {
2036 sprintf(adapter->tx_queue[i].name, "%s-tx-%d",
2037 adapter->netdev->name, vector);
2038 err = request_irq(
2039 intr->msix_entries[vector].vector,
2040 vmxnet3_msix_tx, 0,
2041 adapter->tx_queue[i].name,
2042 &adapter->tx_queue[i]);
2043 } else {
2044 sprintf(adapter->tx_queue[i].name, "%s-rxtx-%d",
2045 adapter->netdev->name, vector);
2046 }
2047 if (err) {
2048 dev_err(&adapter->netdev->dev,
2049 "Failed to request irq for MSIX, %s, "
2050 "error %d\n",
2051 adapter->tx_queue[i].name, err);
2052 return err;
2053 }
2054
2055 /* Handle the case where only 1 MSIx was allocated for
2056 * all tx queues */
2057 if (adapter->share_intr == VMXNET3_INTR_TXSHARE) {
2058 for (; i < adapter->num_tx_queues; i++)
2059 adapter->tx_queue[i].comp_ring.intr_idx
2060 = vector;
2061 vector++;
2062 break;
2063 } else {
2064 adapter->tx_queue[i].comp_ring.intr_idx
2065 = vector++;
2066 }
2067 }
2068 if (adapter->share_intr == VMXNET3_INTR_BUDDYSHARE)
2069 vector = 0;
2070
2071 for (i = 0; i < adapter->num_rx_queues; i++) {
2072 if (adapter->share_intr != VMXNET3_INTR_BUDDYSHARE)
2073 sprintf(adapter->rx_queue[i].name, "%s-rx-%d",
2074 adapter->netdev->name, vector);
2075 else
2076 sprintf(adapter->rx_queue[i].name, "%s-rxtx-%d",
2077 adapter->netdev->name, vector);
2078 err = request_irq(intr->msix_entries[vector].vector,
2079 vmxnet3_msix_rx, 0,
2080 adapter->rx_queue[i].name,
2081 &(adapter->rx_queue[i]));
2082 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002083 netdev_err(adapter->netdev,
2084 "Failed to request irq for MSIX, "
2085 "%s, error %d\n",
2086 adapter->rx_queue[i].name, err);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002087 return err;
2088 }
2089
2090 adapter->rx_queue[i].comp_ring.intr_idx = vector++;
2091 }
2092
2093 sprintf(intr->event_msi_vector_name, "%s-event-%d",
2094 adapter->netdev->name, vector);
2095 err = request_irq(intr->msix_entries[vector].vector,
2096 vmxnet3_msix_event, 0,
2097 intr->event_msi_vector_name, adapter->netdev);
2098 intr->event_intr_idx = vector;
2099
2100 } else if (intr->type == VMXNET3_IT_MSI) {
2101 adapter->num_rx_queues = 1;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002102 err = request_irq(adapter->pdev->irq, vmxnet3_intr, 0,
2103 adapter->netdev->name, adapter->netdev);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002104 } else {
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002105#endif
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002106 adapter->num_rx_queues = 1;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002107 err = request_irq(adapter->pdev->irq, vmxnet3_intr,
2108 IRQF_SHARED, adapter->netdev->name,
2109 adapter->netdev);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002110#ifdef CONFIG_PCI_MSI
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002111 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002112#endif
2113 intr->num_intrs = vector + 1;
2114 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002115 netdev_err(adapter->netdev,
2116 "Failed to request irq (intr type:%d), error %d\n",
2117 intr->type, err);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002118 } else {
2119 /* Number of rx queues will not change after this */
2120 for (i = 0; i < adapter->num_rx_queues; i++) {
2121 struct vmxnet3_rx_queue *rq = &adapter->rx_queue[i];
2122 rq->qid = i;
2123 rq->qid2 = i + adapter->num_rx_queues;
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07002124 rq->dataRingQid = i + 2 * adapter->num_rx_queues;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002125 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002126
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002127 /* init our intr settings */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002128 for (i = 0; i < intr->num_intrs; i++)
2129 intr->mod_levels[i] = UPT1_IML_ADAPTIVE;
2130 if (adapter->intr.type != VMXNET3_IT_MSIX) {
2131 adapter->intr.event_intr_idx = 0;
2132 for (i = 0; i < adapter->num_tx_queues; i++)
2133 adapter->tx_queue[i].comp_ring.intr_idx = 0;
2134 adapter->rx_queue[0].comp_ring.intr_idx = 0;
2135 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002136
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002137 netdev_info(adapter->netdev,
2138 "intr type %u, mode %u, %u vectors allocated\n",
2139 intr->type, intr->mask_mode, intr->num_intrs);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002140 }
2141
2142 return err;
2143}
2144
2145
2146static void
2147vmxnet3_free_irqs(struct vmxnet3_adapter *adapter)
2148{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002149 struct vmxnet3_intr *intr = &adapter->intr;
2150 BUG_ON(intr->type == VMXNET3_IT_AUTO || intr->num_intrs <= 0);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002151
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002152 switch (intr->type) {
Randy Dunlap8f7e5242009-10-14 20:38:58 -07002153#ifdef CONFIG_PCI_MSI
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002154 case VMXNET3_IT_MSIX:
2155 {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002156 int i, vector = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002157
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002158 if (adapter->share_intr != VMXNET3_INTR_BUDDYSHARE) {
2159 for (i = 0; i < adapter->num_tx_queues; i++) {
2160 free_irq(intr->msix_entries[vector++].vector,
2161 &(adapter->tx_queue[i]));
2162 if (adapter->share_intr == VMXNET3_INTR_TXSHARE)
2163 break;
2164 }
2165 }
2166
2167 for (i = 0; i < adapter->num_rx_queues; i++) {
2168 free_irq(intr->msix_entries[vector++].vector,
2169 &(adapter->rx_queue[i]));
2170 }
2171
2172 free_irq(intr->msix_entries[vector].vector,
2173 adapter->netdev);
2174 BUG_ON(vector >= intr->num_intrs);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002175 break;
2176 }
Randy Dunlap8f7e5242009-10-14 20:38:58 -07002177#endif
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002178 case VMXNET3_IT_MSI:
2179 free_irq(adapter->pdev->irq, adapter->netdev);
2180 break;
2181 case VMXNET3_IT_INTX:
2182 free_irq(adapter->pdev->irq, adapter->netdev);
2183 break;
2184 default:
Sasha Levinc068e772012-11-08 10:23:03 +00002185 BUG();
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002186 }
2187}
2188
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002189
2190static void
2191vmxnet3_restore_vlan(struct vmxnet3_adapter *adapter)
2192{
Jesse Gross72e85c42011-06-23 13:04:39 +00002193 u32 *vfTable = adapter->shared->devRead.rxFilterConf.vfTable;
2194 u16 vid;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002195
Jesse Gross72e85c42011-06-23 13:04:39 +00002196 /* allow untagged pkts */
2197 VMXNET3_SET_VFTABLE_ENTRY(vfTable, 0);
2198
2199 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
2200 VMXNET3_SET_VFTABLE_ENTRY(vfTable, vid);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002201}
2202
2203
Jiri Pirko8e586132011-12-08 19:52:37 -05002204static int
Patrick McHardy80d5c362013-04-19 02:04:28 +00002205vmxnet3_vlan_rx_add_vid(struct net_device *netdev, __be16 proto, u16 vid)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002206{
2207 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002208
Jesse Grossf6957f82011-08-07 23:15:47 +00002209 if (!(netdev->flags & IFF_PROMISC)) {
2210 u32 *vfTable = adapter->shared->devRead.rxFilterConf.vfTable;
2211 unsigned long flags;
2212
2213 VMXNET3_SET_VFTABLE_ENTRY(vfTable, vid);
2214 spin_lock_irqsave(&adapter->cmd_lock, flags);
2215 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2216 VMXNET3_CMD_UPDATE_VLAN_FILTERS);
2217 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
2218 }
Jesse Gross72e85c42011-06-23 13:04:39 +00002219
2220 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05002221
2222 return 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002223}
2224
2225
Jiri Pirko8e586132011-12-08 19:52:37 -05002226static int
Patrick McHardy80d5c362013-04-19 02:04:28 +00002227vmxnet3_vlan_rx_kill_vid(struct net_device *netdev, __be16 proto, u16 vid)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002228{
2229 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002230
Jesse Grossf6957f82011-08-07 23:15:47 +00002231 if (!(netdev->flags & IFF_PROMISC)) {
2232 u32 *vfTable = adapter->shared->devRead.rxFilterConf.vfTable;
2233 unsigned long flags;
2234
2235 VMXNET3_CLEAR_VFTABLE_ENTRY(vfTable, vid);
2236 spin_lock_irqsave(&adapter->cmd_lock, flags);
2237 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2238 VMXNET3_CMD_UPDATE_VLAN_FILTERS);
2239 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
2240 }
Jesse Gross72e85c42011-06-23 13:04:39 +00002241
2242 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05002243
2244 return 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002245}
2246
2247
2248static u8 *
2249vmxnet3_copy_mc(struct net_device *netdev)
2250{
2251 u8 *buf = NULL;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00002252 u32 sz = netdev_mc_count(netdev) * ETH_ALEN;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002253
2254 /* struct Vmxnet3_RxFilterConf.mfTableLen is u16. */
2255 if (sz <= 0xffff) {
2256 /* We may be called with BH disabled */
2257 buf = kmalloc(sz, GFP_ATOMIC);
2258 if (buf) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00002259 struct netdev_hw_addr *ha;
Jiri Pirko567ec872010-02-23 23:17:07 +00002260 int i = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002261
Jiri Pirko22bedad32010-04-01 21:22:57 +00002262 netdev_for_each_mc_addr(ha, netdev)
2263 memcpy(buf + i++ * ETH_ALEN, ha->addr,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002264 ETH_ALEN);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002265 }
2266 }
2267 return buf;
2268}
2269
2270
2271static void
2272vmxnet3_set_mc(struct net_device *netdev)
2273{
2274 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002275 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002276 struct Vmxnet3_RxFilterConf *rxConf =
2277 &adapter->shared->devRead.rxFilterConf;
2278 u8 *new_table = NULL;
Andy Kingb0eb57c2013-08-23 09:33:49 -07002279 dma_addr_t new_table_pa = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002280 u32 new_mode = VMXNET3_RXM_UCAST;
2281
Jesse Gross72e85c42011-06-23 13:04:39 +00002282 if (netdev->flags & IFF_PROMISC) {
2283 u32 *vfTable = adapter->shared->devRead.rxFilterConf.vfTable;
2284 memset(vfTable, 0, VMXNET3_VFT_SIZE * sizeof(*vfTable));
2285
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002286 new_mode |= VMXNET3_RXM_PROMISC;
Jesse Gross72e85c42011-06-23 13:04:39 +00002287 } else {
2288 vmxnet3_restore_vlan(adapter);
2289 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002290
2291 if (netdev->flags & IFF_BROADCAST)
2292 new_mode |= VMXNET3_RXM_BCAST;
2293
2294 if (netdev->flags & IFF_ALLMULTI)
2295 new_mode |= VMXNET3_RXM_ALL_MULTI;
2296 else
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00002297 if (!netdev_mc_empty(netdev)) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002298 new_table = vmxnet3_copy_mc(netdev);
2299 if (new_table) {
Shrikrishna Khared37d5ec2015-11-13 15:42:10 -08002300 size_t sz = netdev_mc_count(netdev) * ETH_ALEN;
2301
2302 rxConf->mfTableLen = cpu_to_le16(sz);
Andy Kingb0eb57c2013-08-23 09:33:49 -07002303 new_table_pa = dma_map_single(
2304 &adapter->pdev->dev,
2305 new_table,
Shrikrishna Khared37d5ec2015-11-13 15:42:10 -08002306 sz,
Andy Kingb0eb57c2013-08-23 09:33:49 -07002307 PCI_DMA_TODEVICE);
Andy King4ad9a642014-09-02 13:13:44 -07002308 }
2309
Alexey Khoroshilov5738a092015-11-28 01:29:30 +03002310 if (!dma_mapping_error(&adapter->pdev->dev,
2311 new_table_pa)) {
Andy King4ad9a642014-09-02 13:13:44 -07002312 new_mode |= VMXNET3_RXM_MCAST;
Andy Kingb0eb57c2013-08-23 09:33:49 -07002313 rxConf->mfTablePA = cpu_to_le64(new_table_pa);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002314 } else {
Andy King4ad9a642014-09-02 13:13:44 -07002315 netdev_info(netdev,
2316 "failed to copy mcast list, setting ALL_MULTI\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002317 new_mode |= VMXNET3_RXM_ALL_MULTI;
2318 }
2319 }
2320
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002321 if (!(new_mode & VMXNET3_RXM_MCAST)) {
2322 rxConf->mfTableLen = 0;
2323 rxConf->mfTablePA = 0;
2324 }
2325
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002326 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002327 if (new_mode != rxConf->rxMode) {
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002328 rxConf->rxMode = cpu_to_le32(new_mode);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002329 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2330 VMXNET3_CMD_UPDATE_RX_MODE);
Jesse Gross72e85c42011-06-23 13:04:39 +00002331 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2332 VMXNET3_CMD_UPDATE_VLAN_FILTERS);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002333 }
2334
2335 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2336 VMXNET3_CMD_UPDATE_MAC_FILTERS);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002337 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002338
Andy King4ad9a642014-09-02 13:13:44 -07002339 if (new_table_pa)
Andy Kingb0eb57c2013-08-23 09:33:49 -07002340 dma_unmap_single(&adapter->pdev->dev, new_table_pa,
2341 rxConf->mfTableLen, PCI_DMA_TODEVICE);
Andy King4ad9a642014-09-02 13:13:44 -07002342 kfree(new_table);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002343}
2344
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002345void
2346vmxnet3_rq_destroy_all(struct vmxnet3_adapter *adapter)
2347{
2348 int i;
2349
2350 for (i = 0; i < adapter->num_rx_queues; i++)
2351 vmxnet3_rq_destroy(&adapter->rx_queue[i], adapter);
2352}
2353
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002354
2355/*
2356 * Set up driver_shared based on settings in adapter.
2357 */
2358
2359static void
2360vmxnet3_setup_driver_shared(struct vmxnet3_adapter *adapter)
2361{
2362 struct Vmxnet3_DriverShared *shared = adapter->shared;
2363 struct Vmxnet3_DSDevRead *devRead = &shared->devRead;
2364 struct Vmxnet3_TxQueueConf *tqc;
2365 struct Vmxnet3_RxQueueConf *rqc;
2366 int i;
2367
2368 memset(shared, 0, sizeof(*shared));
2369
2370 /* driver settings */
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002371 shared->magic = cpu_to_le32(VMXNET3_REV1_MAGIC);
2372 devRead->misc.driverInfo.version = cpu_to_le32(
2373 VMXNET3_DRIVER_VERSION_NUM);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002374 devRead->misc.driverInfo.gos.gosBits = (sizeof(void *) == 4 ?
2375 VMXNET3_GOS_BITS_32 : VMXNET3_GOS_BITS_64);
2376 devRead->misc.driverInfo.gos.gosType = VMXNET3_GOS_TYPE_LINUX;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002377 *((u32 *)&devRead->misc.driverInfo.gos) = cpu_to_le32(
2378 *((u32 *)&devRead->misc.driverInfo.gos));
2379 devRead->misc.driverInfo.vmxnet3RevSpt = cpu_to_le32(1);
2380 devRead->misc.driverInfo.uptVerSpt = cpu_to_le32(1);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002381
Andy Kingb0eb57c2013-08-23 09:33:49 -07002382 devRead->misc.ddPA = cpu_to_le64(adapter->adapter_pa);
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002383 devRead->misc.ddLen = cpu_to_le32(sizeof(struct vmxnet3_adapter));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002384
2385 /* set up feature flags */
Michał Mirosława0d27302011-04-18 13:31:21 +00002386 if (adapter->netdev->features & NETIF_F_RXCSUM)
Harvey Harrison3843e512010-10-21 18:05:32 +00002387 devRead->misc.uptFeatures |= UPT1_F_RXCSUM;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002388
Michał Mirosława0d27302011-04-18 13:31:21 +00002389 if (adapter->netdev->features & NETIF_F_LRO) {
Harvey Harrison3843e512010-10-21 18:05:32 +00002390 devRead->misc.uptFeatures |= UPT1_F_LRO;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002391 devRead->misc.maxNumRxSG = cpu_to_le16(1 + MAX_SKB_FRAGS);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002392 }
Patrick McHardyf6469682013-04-19 02:04:27 +00002393 if (adapter->netdev->features & NETIF_F_HW_VLAN_CTAG_RX)
Harvey Harrison3843e512010-10-21 18:05:32 +00002394 devRead->misc.uptFeatures |= UPT1_F_RXVLAN;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002395
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002396 devRead->misc.mtu = cpu_to_le32(adapter->netdev->mtu);
2397 devRead->misc.queueDescPA = cpu_to_le64(adapter->queue_desc_pa);
2398 devRead->misc.queueDescLen = cpu_to_le32(
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002399 adapter->num_tx_queues * sizeof(struct Vmxnet3_TxQueueDesc) +
2400 adapter->num_rx_queues * sizeof(struct Vmxnet3_RxQueueDesc));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002401
2402 /* tx queue settings */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002403 devRead->misc.numTxQueues = adapter->num_tx_queues;
2404 for (i = 0; i < adapter->num_tx_queues; i++) {
2405 struct vmxnet3_tx_queue *tq = &adapter->tx_queue[i];
2406 BUG_ON(adapter->tx_queue[i].tx_ring.base == NULL);
2407 tqc = &adapter->tqd_start[i].conf;
2408 tqc->txRingBasePA = cpu_to_le64(tq->tx_ring.basePA);
2409 tqc->dataRingBasePA = cpu_to_le64(tq->data_ring.basePA);
2410 tqc->compRingBasePA = cpu_to_le64(tq->comp_ring.basePA);
Andy Kingb0eb57c2013-08-23 09:33:49 -07002411 tqc->ddPA = cpu_to_le64(tq->buf_info_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002412 tqc->txRingSize = cpu_to_le32(tq->tx_ring.size);
2413 tqc->dataRingSize = cpu_to_le32(tq->data_ring.size);
Shrikrishna Khare3c8b3ef2016-06-16 10:51:55 -07002414 tqc->txDataRingDescSize = cpu_to_le32(tq->txdata_desc_size);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002415 tqc->compRingSize = cpu_to_le32(tq->comp_ring.size);
2416 tqc->ddLen = cpu_to_le32(
2417 sizeof(struct vmxnet3_tx_buf_info) *
2418 tqc->txRingSize);
2419 tqc->intrIdx = tq->comp_ring.intr_idx;
2420 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002421
2422 /* rx queue settings */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002423 devRead->misc.numRxQueues = adapter->num_rx_queues;
2424 for (i = 0; i < adapter->num_rx_queues; i++) {
2425 struct vmxnet3_rx_queue *rq = &adapter->rx_queue[i];
2426 rqc = &adapter->rqd_start[i].conf;
2427 rqc->rxRingBasePA[0] = cpu_to_le64(rq->rx_ring[0].basePA);
2428 rqc->rxRingBasePA[1] = cpu_to_le64(rq->rx_ring[1].basePA);
2429 rqc->compRingBasePA = cpu_to_le64(rq->comp_ring.basePA);
Andy Kingb0eb57c2013-08-23 09:33:49 -07002430 rqc->ddPA = cpu_to_le64(rq->buf_info_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002431 rqc->rxRingSize[0] = cpu_to_le32(rq->rx_ring[0].size);
2432 rqc->rxRingSize[1] = cpu_to_le32(rq->rx_ring[1].size);
2433 rqc->compRingSize = cpu_to_le32(rq->comp_ring.size);
2434 rqc->ddLen = cpu_to_le32(
2435 sizeof(struct vmxnet3_rx_buf_info) *
2436 (rqc->rxRingSize[0] +
2437 rqc->rxRingSize[1]));
2438 rqc->intrIdx = rq->comp_ring.intr_idx;
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07002439 if (VMXNET3_VERSION_GE_3(adapter)) {
2440 rqc->rxDataRingBasePA =
2441 cpu_to_le64(rq->data_ring.basePA);
2442 rqc->rxDataRingDescSize =
2443 cpu_to_le16(rq->data_ring.desc_size);
2444 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002445 }
2446
2447#ifdef VMXNET3_RSS
2448 memset(adapter->rss_conf, 0, sizeof(*adapter->rss_conf));
2449
2450 if (adapter->rss) {
2451 struct UPT1_RSSConf *rssConf = adapter->rss_conf;
Stephen Hemminger66d35912013-01-15 07:28:34 +00002452
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002453 devRead->misc.uptFeatures |= UPT1_F_RSS;
2454 devRead->misc.numRxQueues = adapter->num_rx_queues;
2455 rssConf->hashType = UPT1_RSS_HASH_TYPE_TCP_IPV4 |
2456 UPT1_RSS_HASH_TYPE_IPV4 |
2457 UPT1_RSS_HASH_TYPE_TCP_IPV6 |
2458 UPT1_RSS_HASH_TYPE_IPV6;
2459 rssConf->hashFunc = UPT1_RSS_HASH_FUNC_TOEPLITZ;
2460 rssConf->hashKeySize = UPT1_RSS_MAX_KEY_SIZE;
2461 rssConf->indTableSize = VMXNET3_RSS_IND_TABLE_SIZE;
Eric Dumazet6bf79cd2014-11-16 06:23:18 -08002462 netdev_rss_key_fill(rssConf->hashKey, sizeof(rssConf->hashKey));
Stephen Hemminger66d35912013-01-15 07:28:34 +00002463
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002464 for (i = 0; i < rssConf->indTableSize; i++)
Ben Hutchings278bc422011-12-15 13:56:49 +00002465 rssConf->indTable[i] = ethtool_rxfh_indir_default(
2466 i, adapter->num_rx_queues);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002467
2468 devRead->rssConfDesc.confVer = 1;
Andy Kingb0eb57c2013-08-23 09:33:49 -07002469 devRead->rssConfDesc.confLen = cpu_to_le32(sizeof(*rssConf));
2470 devRead->rssConfDesc.confPA =
2471 cpu_to_le64(adapter->rss_conf_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002472 }
2473
2474#endif /* VMXNET3_RSS */
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002475
2476 /* intr settings */
2477 devRead->intrConf.autoMask = adapter->intr.mask_mode ==
2478 VMXNET3_IMM_AUTO;
2479 devRead->intrConf.numIntrs = adapter->intr.num_intrs;
2480 for (i = 0; i < adapter->intr.num_intrs; i++)
2481 devRead->intrConf.modLevels[i] = adapter->intr.mod_levels[i];
2482
2483 devRead->intrConf.eventIntrIdx = adapter->intr.event_intr_idx;
Ronghua Zang6929fe82010-07-15 22:18:47 -07002484 devRead->intrConf.intrCtrl |= cpu_to_le32(VMXNET3_IC_DISABLE_ALL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002485
2486 /* rx filter settings */
2487 devRead->rxFilterConf.rxMode = 0;
2488 vmxnet3_restore_vlan(adapter);
Shreyas Bhatewaraf9f25022011-01-14 14:59:31 +00002489 vmxnet3_write_mac_addr(adapter, adapter->netdev->dev_addr);
2490
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002491 /* the rest are already zeroed */
2492}
2493
Shrikrishna Khare4edef40e2016-06-16 10:51:57 -07002494static void
2495vmxnet3_init_coalesce(struct vmxnet3_adapter *adapter)
2496{
2497 struct Vmxnet3_DriverShared *shared = adapter->shared;
2498 union Vmxnet3_CmdInfo *cmdInfo = &shared->cu.cmdInfo;
2499 unsigned long flags;
2500
2501 if (!VMXNET3_VERSION_GE_3(adapter))
2502 return;
2503
2504 spin_lock_irqsave(&adapter->cmd_lock, flags);
2505 cmdInfo->varConf.confVer = 1;
2506 cmdInfo->varConf.confLen =
2507 cpu_to_le32(sizeof(*adapter->coal_conf));
2508 cmdInfo->varConf.confPA = cpu_to_le64(adapter->coal_conf_pa);
2509
2510 if (adapter->default_coal_mode) {
2511 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2512 VMXNET3_CMD_GET_COALESCE);
2513 } else {
2514 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2515 VMXNET3_CMD_SET_COALESCE);
2516 }
2517
2518 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
2519}
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002520
2521int
2522vmxnet3_activate_dev(struct vmxnet3_adapter *adapter)
2523{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002524 int err, i;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002525 u32 ret;
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002526 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002527
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +00002528 netdev_dbg(adapter->netdev, "%s: skb_buf_size %d, rx_buf_per_pkt %d,"
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002529 " ring sizes %u %u %u\n", adapter->netdev->name,
2530 adapter->skb_buf_size, adapter->rx_buf_per_pkt,
2531 adapter->tx_queue[0].tx_ring.size,
2532 adapter->rx_queue[0].rx_ring[0].size,
2533 adapter->rx_queue[0].rx_ring[1].size);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002534
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002535 vmxnet3_tq_init_all(adapter);
2536 err = vmxnet3_rq_init_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002537 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002538 netdev_err(adapter->netdev,
2539 "Failed to init rx queue error %d\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002540 goto rq_err;
2541 }
2542
2543 err = vmxnet3_request_irqs(adapter);
2544 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002545 netdev_err(adapter->netdev,
2546 "Failed to setup irq for error %d\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002547 goto irq_err;
2548 }
2549
2550 vmxnet3_setup_driver_shared(adapter);
2551
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002552 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_DSAL, VMXNET3_GET_ADDR_LO(
2553 adapter->shared_pa));
2554 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_DSAH, VMXNET3_GET_ADDR_HI(
2555 adapter->shared_pa));
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002556 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002557 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2558 VMXNET3_CMD_ACTIVATE_DEV);
2559 ret = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_CMD);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002560 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002561
2562 if (ret != 0) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002563 netdev_err(adapter->netdev,
2564 "Failed to activate dev: error %u\n", ret);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002565 err = -EINVAL;
2566 goto activate_err;
2567 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002568
Shrikrishna Khare4edef40e2016-06-16 10:51:57 -07002569 vmxnet3_init_coalesce(adapter);
2570
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002571 for (i = 0; i < adapter->num_rx_queues; i++) {
2572 VMXNET3_WRITE_BAR0_REG(adapter,
2573 VMXNET3_REG_RXPROD + i * VMXNET3_REG_ALIGN,
2574 adapter->rx_queue[i].rx_ring[0].next2fill);
2575 VMXNET3_WRITE_BAR0_REG(adapter, (VMXNET3_REG_RXPROD2 +
2576 (i * VMXNET3_REG_ALIGN)),
2577 adapter->rx_queue[i].rx_ring[1].next2fill);
2578 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002579
2580 /* Apply the rx filter settins last. */
2581 vmxnet3_set_mc(adapter->netdev);
2582
2583 /*
2584 * Check link state when first activating device. It will start the
2585 * tx queue if the link is up.
2586 */
Shreyas Bhatewara4a1745fc2010-07-15 21:51:14 +00002587 vmxnet3_check_link(adapter, true);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002588 for (i = 0; i < adapter->num_rx_queues; i++)
2589 napi_enable(&adapter->rx_queue[i].napi);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002590 vmxnet3_enable_all_intrs(adapter);
2591 clear_bit(VMXNET3_STATE_BIT_QUIESCED, &adapter->state);
2592 return 0;
2593
2594activate_err:
2595 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_DSAL, 0);
2596 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_DSAH, 0);
2597 vmxnet3_free_irqs(adapter);
2598irq_err:
2599rq_err:
2600 /* free up buffers we allocated */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002601 vmxnet3_rq_cleanup_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002602 return err;
2603}
2604
2605
2606void
2607vmxnet3_reset_dev(struct vmxnet3_adapter *adapter)
2608{
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002609 unsigned long flags;
2610 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002611 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD, VMXNET3_CMD_RESET_DEV);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002612 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002613}
2614
2615
2616int
2617vmxnet3_quiesce_dev(struct vmxnet3_adapter *adapter)
2618{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002619 int i;
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002620 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002621 if (test_and_set_bit(VMXNET3_STATE_BIT_QUIESCED, &adapter->state))
2622 return 0;
2623
2624
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002625 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002626 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2627 VMXNET3_CMD_QUIESCE_DEV);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002628 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002629 vmxnet3_disable_all_intrs(adapter);
2630
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002631 for (i = 0; i < adapter->num_rx_queues; i++)
2632 napi_disable(&adapter->rx_queue[i].napi);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002633 netif_tx_disable(adapter->netdev);
2634 adapter->link_speed = 0;
2635 netif_carrier_off(adapter->netdev);
2636
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002637 vmxnet3_tq_cleanup_all(adapter);
2638 vmxnet3_rq_cleanup_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002639 vmxnet3_free_irqs(adapter);
2640 return 0;
2641}
2642
2643
2644static void
2645vmxnet3_write_mac_addr(struct vmxnet3_adapter *adapter, u8 *mac)
2646{
2647 u32 tmp;
2648
2649 tmp = *(u32 *)mac;
2650 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_MACL, tmp);
2651
2652 tmp = (mac[5] << 8) | mac[4];
2653 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_MACH, tmp);
2654}
2655
2656
2657static int
2658vmxnet3_set_mac_addr(struct net_device *netdev, void *p)
2659{
2660 struct sockaddr *addr = p;
2661 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
2662
2663 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
2664 vmxnet3_write_mac_addr(adapter, addr->sa_data);
2665
2666 return 0;
2667}
2668
2669
2670/* ==================== initialization and cleanup routines ============ */
2671
2672static int
2673vmxnet3_alloc_pci_resources(struct vmxnet3_adapter *adapter, bool *dma64)
2674{
2675 int err;
2676 unsigned long mmio_start, mmio_len;
2677 struct pci_dev *pdev = adapter->pdev;
2678
2679 err = pci_enable_device(pdev);
2680 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002681 dev_err(&pdev->dev, "Failed to enable adapter: error %d\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002682 return err;
2683 }
2684
2685 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) == 0) {
2686 if (pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)) != 0) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002687 dev_err(&pdev->dev,
2688 "pci_set_consistent_dma_mask failed\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002689 err = -EIO;
2690 goto err_set_mask;
2691 }
2692 *dma64 = true;
2693 } else {
2694 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002695 dev_err(&pdev->dev,
2696 "pci_set_dma_mask failed\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002697 err = -EIO;
2698 goto err_set_mask;
2699 }
2700 *dma64 = false;
2701 }
2702
2703 err = pci_request_selected_regions(pdev, (1 << 2) - 1,
2704 vmxnet3_driver_name);
2705 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002706 dev_err(&pdev->dev,
2707 "Failed to request region for adapter: error %d\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002708 goto err_set_mask;
2709 }
2710
2711 pci_set_master(pdev);
2712
2713 mmio_start = pci_resource_start(pdev, 0);
2714 mmio_len = pci_resource_len(pdev, 0);
2715 adapter->hw_addr0 = ioremap(mmio_start, mmio_len);
2716 if (!adapter->hw_addr0) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002717 dev_err(&pdev->dev, "Failed to map bar0\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002718 err = -EIO;
2719 goto err_ioremap;
2720 }
2721
2722 mmio_start = pci_resource_start(pdev, 1);
2723 mmio_len = pci_resource_len(pdev, 1);
2724 adapter->hw_addr1 = ioremap(mmio_start, mmio_len);
2725 if (!adapter->hw_addr1) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002726 dev_err(&pdev->dev, "Failed to map bar1\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002727 err = -EIO;
2728 goto err_bar1;
2729 }
2730 return 0;
2731
2732err_bar1:
2733 iounmap(adapter->hw_addr0);
2734err_ioremap:
2735 pci_release_selected_regions(pdev, (1 << 2) - 1);
2736err_set_mask:
2737 pci_disable_device(pdev);
2738 return err;
2739}
2740
2741
2742static void
2743vmxnet3_free_pci_resources(struct vmxnet3_adapter *adapter)
2744{
2745 BUG_ON(!adapter->pdev);
2746
2747 iounmap(adapter->hw_addr0);
2748 iounmap(adapter->hw_addr1);
2749 pci_release_selected_regions(adapter->pdev, (1 << 2) - 1);
2750 pci_disable_device(adapter->pdev);
2751}
2752
2753
2754static void
2755vmxnet3_adjust_rx_ring_size(struct vmxnet3_adapter *adapter)
2756{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002757 size_t sz, i, ring0_size, ring1_size, comp_size;
2758 struct vmxnet3_rx_queue *rq = &adapter->rx_queue[0];
2759
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002760
2761 if (adapter->netdev->mtu <= VMXNET3_MAX_SKB_BUF_SIZE -
2762 VMXNET3_MAX_ETH_HDR_SIZE) {
2763 adapter->skb_buf_size = adapter->netdev->mtu +
2764 VMXNET3_MAX_ETH_HDR_SIZE;
2765 if (adapter->skb_buf_size < VMXNET3_MIN_T0_BUF_SIZE)
2766 adapter->skb_buf_size = VMXNET3_MIN_T0_BUF_SIZE;
2767
2768 adapter->rx_buf_per_pkt = 1;
2769 } else {
2770 adapter->skb_buf_size = VMXNET3_MAX_SKB_BUF_SIZE;
2771 sz = adapter->netdev->mtu - VMXNET3_MAX_SKB_BUF_SIZE +
2772 VMXNET3_MAX_ETH_HDR_SIZE;
2773 adapter->rx_buf_per_pkt = 1 + (sz + PAGE_SIZE - 1) / PAGE_SIZE;
2774 }
2775
2776 /*
2777 * for simplicity, force the ring0 size to be a multiple of
2778 * rx_buf_per_pkt * VMXNET3_RING_SIZE_ALIGN
2779 */
2780 sz = adapter->rx_buf_per_pkt * VMXNET3_RING_SIZE_ALIGN;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002781 ring0_size = adapter->rx_queue[0].rx_ring[0].size;
2782 ring0_size = (ring0_size + sz - 1) / sz * sz;
Shreyas Bhatewaraa53255d2011-01-14 14:59:25 +00002783 ring0_size = min_t(u32, ring0_size, VMXNET3_RX_RING_MAX_SIZE /
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002784 sz * sz);
2785 ring1_size = adapter->rx_queue[0].rx_ring[1].size;
Shrikrishna Khare53831aa2015-01-06 09:20:15 -08002786 ring1_size = (ring1_size + sz - 1) / sz * sz;
2787 ring1_size = min_t(u32, ring1_size, VMXNET3_RX_RING2_MAX_SIZE /
2788 sz * sz);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002789 comp_size = ring0_size + ring1_size;
2790
2791 for (i = 0; i < adapter->num_rx_queues; i++) {
2792 rq = &adapter->rx_queue[i];
2793 rq->rx_ring[0].size = ring0_size;
2794 rq->rx_ring[1].size = ring1_size;
2795 rq->comp_ring.size = comp_size;
2796 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002797}
2798
2799
2800int
2801vmxnet3_create_queues(struct vmxnet3_adapter *adapter, u32 tx_ring_size,
Shrikrishna Khare3c8b3ef2016-06-16 10:51:55 -07002802 u32 rx_ring_size, u32 rx_ring2_size,
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07002803 u16 txdata_desc_size, u16 rxdata_desc_size)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002804{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002805 int err = 0, i;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002806
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002807 for (i = 0; i < adapter->num_tx_queues; i++) {
2808 struct vmxnet3_tx_queue *tq = &adapter->tx_queue[i];
2809 tq->tx_ring.size = tx_ring_size;
2810 tq->data_ring.size = tx_ring_size;
2811 tq->comp_ring.size = tx_ring_size;
Shrikrishna Khare3c8b3ef2016-06-16 10:51:55 -07002812 tq->txdata_desc_size = txdata_desc_size;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002813 tq->shared = &adapter->tqd_start[i].ctrl;
2814 tq->stopped = true;
2815 tq->adapter = adapter;
2816 tq->qid = i;
2817 err = vmxnet3_tq_create(tq, adapter);
2818 /*
2819 * Too late to change num_tx_queues. We cannot do away with
2820 * lesser number of queues than what we asked for
2821 */
2822 if (err)
2823 goto queue_err;
2824 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002825
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002826 adapter->rx_queue[0].rx_ring[0].size = rx_ring_size;
2827 adapter->rx_queue[0].rx_ring[1].size = rx_ring2_size;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002828 vmxnet3_adjust_rx_ring_size(adapter);
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07002829
2830 adapter->rxdataring_enabled = VMXNET3_VERSION_GE_3(adapter);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002831 for (i = 0; i < adapter->num_rx_queues; i++) {
2832 struct vmxnet3_rx_queue *rq = &adapter->rx_queue[i];
2833 /* qid and qid2 for rx queues will be assigned later when num
2834 * of rx queues is finalized after allocating intrs */
2835 rq->shared = &adapter->rqd_start[i].ctrl;
2836 rq->adapter = adapter;
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07002837 rq->data_ring.desc_size = rxdata_desc_size;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002838 err = vmxnet3_rq_create(rq, adapter);
2839 if (err) {
2840 if (i == 0) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002841 netdev_err(adapter->netdev,
2842 "Could not allocate any rx queues. "
2843 "Aborting.\n");
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002844 goto queue_err;
2845 } else {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002846 netdev_info(adapter->netdev,
2847 "Number of rx queues changed "
2848 "to : %d.\n", i);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002849 adapter->num_rx_queues = i;
2850 err = 0;
2851 break;
2852 }
2853 }
2854 }
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07002855
2856 if (!adapter->rxdataring_enabled)
2857 vmxnet3_rq_destroy_all_rxdataring(adapter);
2858
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002859 return err;
2860queue_err:
2861 vmxnet3_tq_destroy_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002862 return err;
2863}
2864
2865static int
2866vmxnet3_open(struct net_device *netdev)
2867{
2868 struct vmxnet3_adapter *adapter;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002869 int err, i;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002870
2871 adapter = netdev_priv(netdev);
2872
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002873 for (i = 0; i < adapter->num_tx_queues; i++)
2874 spin_lock_init(&adapter->tx_queue[i].tx_lock);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002875
Shrikrishna Khare3c8b3ef2016-06-16 10:51:55 -07002876 if (VMXNET3_VERSION_GE_3(adapter)) {
2877 unsigned long flags;
2878 u16 txdata_desc_size;
2879
2880 spin_lock_irqsave(&adapter->cmd_lock, flags);
2881 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2882 VMXNET3_CMD_GET_TXDATA_DESC_SIZE);
2883 txdata_desc_size = VMXNET3_READ_BAR1_REG(adapter,
2884 VMXNET3_REG_CMD);
2885 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
2886
2887 if ((txdata_desc_size < VMXNET3_TXDATA_DESC_MIN_SIZE) ||
2888 (txdata_desc_size > VMXNET3_TXDATA_DESC_MAX_SIZE) ||
2889 (txdata_desc_size & VMXNET3_TXDATA_DESC_SIZE_MASK)) {
2890 adapter->txdata_desc_size =
2891 sizeof(struct Vmxnet3_TxDataDesc);
2892 } else {
2893 adapter->txdata_desc_size = txdata_desc_size;
2894 }
2895 } else {
2896 adapter->txdata_desc_size = sizeof(struct Vmxnet3_TxDataDesc);
2897 }
2898
2899 err = vmxnet3_create_queues(adapter,
2900 adapter->tx_ring_size,
Neil Hormanf00e2b02014-06-13 10:03:21 -04002901 adapter->rx_ring_size,
Shrikrishna Khare3c8b3ef2016-06-16 10:51:55 -07002902 adapter->rx_ring2_size,
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07002903 adapter->txdata_desc_size,
2904 adapter->rxdata_desc_size);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002905 if (err)
2906 goto queue_err;
2907
2908 err = vmxnet3_activate_dev(adapter);
2909 if (err)
2910 goto activate_err;
2911
2912 return 0;
2913
2914activate_err:
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002915 vmxnet3_rq_destroy_all(adapter);
2916 vmxnet3_tq_destroy_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002917queue_err:
2918 return err;
2919}
2920
2921
2922static int
2923vmxnet3_close(struct net_device *netdev)
2924{
2925 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
2926
2927 /*
2928 * Reset_work may be in the middle of resetting the device, wait for its
2929 * completion.
2930 */
2931 while (test_and_set_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state))
2932 msleep(1);
2933
2934 vmxnet3_quiesce_dev(adapter);
2935
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002936 vmxnet3_rq_destroy_all(adapter);
2937 vmxnet3_tq_destroy_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002938
2939 clear_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state);
2940
2941
2942 return 0;
2943}
2944
2945
2946void
2947vmxnet3_force_close(struct vmxnet3_adapter *adapter)
2948{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002949 int i;
2950
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002951 /*
2952 * we must clear VMXNET3_STATE_BIT_RESETTING, otherwise
2953 * vmxnet3_close() will deadlock.
2954 */
2955 BUG_ON(test_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state));
2956
2957 /* we need to enable NAPI, otherwise dev_close will deadlock */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002958 for (i = 0; i < adapter->num_rx_queues; i++)
2959 napi_enable(&adapter->rx_queue[i].napi);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002960 dev_close(adapter->netdev);
2961}
2962
2963
2964static int
2965vmxnet3_change_mtu(struct net_device *netdev, int new_mtu)
2966{
2967 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
2968 int err = 0;
2969
2970 if (new_mtu < VMXNET3_MIN_MTU || new_mtu > VMXNET3_MAX_MTU)
2971 return -EINVAL;
2972
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002973 netdev->mtu = new_mtu;
2974
2975 /*
2976 * Reset_work may be in the middle of resetting the device, wait for its
2977 * completion.
2978 */
2979 while (test_and_set_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state))
2980 msleep(1);
2981
2982 if (netif_running(netdev)) {
2983 vmxnet3_quiesce_dev(adapter);
2984 vmxnet3_reset_dev(adapter);
2985
2986 /* we need to re-create the rx queue based on the new mtu */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002987 vmxnet3_rq_destroy_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002988 vmxnet3_adjust_rx_ring_size(adapter);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002989 err = vmxnet3_rq_create_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002990 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002991 netdev_err(netdev,
2992 "failed to re-create rx queues, "
2993 " error %d. Closing it.\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002994 goto out;
2995 }
2996
2997 err = vmxnet3_activate_dev(adapter);
2998 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002999 netdev_err(netdev,
3000 "failed to re-activate, error %d. "
3001 "Closing it\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003002 goto out;
3003 }
3004 }
3005
3006out:
3007 clear_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state);
3008 if (err)
3009 vmxnet3_force_close(adapter);
3010
3011 return err;
3012}
3013
3014
3015static void
3016vmxnet3_declare_features(struct vmxnet3_adapter *adapter, bool dma64)
3017{
3018 struct net_device *netdev = adapter->netdev;
3019
Michał Mirosława0d27302011-04-18 13:31:21 +00003020 netdev->hw_features = NETIF_F_SG | NETIF_F_RXCSUM |
Patrick McHardyf6469682013-04-19 02:04:27 +00003021 NETIF_F_HW_CSUM | NETIF_F_HW_VLAN_CTAG_TX |
3022 NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_TSO | NETIF_F_TSO6 |
Jesse Gross72e85c42011-06-23 13:04:39 +00003023 NETIF_F_LRO;
Michał Mirosława0d27302011-04-18 13:31:21 +00003024 if (dma64)
Shreyas Bhatewaraebbf9292011-07-20 17:21:51 +00003025 netdev->hw_features |= NETIF_F_HIGHDMA;
Jesse Gross72e85c42011-06-23 13:04:39 +00003026 netdev->vlan_features = netdev->hw_features &
Patrick McHardyf6469682013-04-19 02:04:27 +00003027 ~(NETIF_F_HW_VLAN_CTAG_TX |
3028 NETIF_F_HW_VLAN_CTAG_RX);
3029 netdev->features = netdev->hw_features | NETIF_F_HW_VLAN_CTAG_FILTER;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003030}
3031
3032
3033static void
3034vmxnet3_read_mac_addr(struct vmxnet3_adapter *adapter, u8 *mac)
3035{
3036 u32 tmp;
3037
3038 tmp = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_MACL);
3039 *(u32 *)mac = tmp;
3040
3041 tmp = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_MACH);
3042 mac[4] = tmp & 0xff;
3043 mac[5] = (tmp >> 8) & 0xff;
3044}
3045
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003046#ifdef CONFIG_PCI_MSI
3047
3048/*
3049 * Enable MSIx vectors.
3050 * Returns :
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003051 * VMXNET3_LINUX_MIN_MSIX_VECT when only minimum number of vectors required
Alexander Gordeevb60b8692014-02-18 11:12:02 +01003052 * were enabled.
3053 * number of vectors which were enabled otherwise (this number is greater
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003054 * than VMXNET3_LINUX_MIN_MSIX_VECT)
3055 */
3056
3057static int
Alexander Gordeevb60b8692014-02-18 11:12:02 +01003058vmxnet3_acquire_msix_vectors(struct vmxnet3_adapter *adapter, int nvec)
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003059{
Alexander Gordeevc0a1be32014-02-18 11:12:03 +01003060 int ret = pci_enable_msix_range(adapter->pdev,
3061 adapter->intr.msix_entries, nvec, nvec);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003062
Alexander Gordeevc0a1be32014-02-18 11:12:03 +01003063 if (ret == -ENOSPC && nvec > VMXNET3_LINUX_MIN_MSIX_VECT) {
3064 dev_err(&adapter->netdev->dev,
3065 "Failed to enable %d MSI-X, trying %d\n",
3066 nvec, VMXNET3_LINUX_MIN_MSIX_VECT);
3067
3068 ret = pci_enable_msix_range(adapter->pdev,
3069 adapter->intr.msix_entries,
3070 VMXNET3_LINUX_MIN_MSIX_VECT,
3071 VMXNET3_LINUX_MIN_MSIX_VECT);
3072 }
3073
3074 if (ret < 0) {
3075 dev_err(&adapter->netdev->dev,
3076 "Failed to enable MSI-X, error: %d\n", ret);
3077 }
3078
3079 return ret;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003080}
3081
3082
3083#endif /* CONFIG_PCI_MSI */
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003084
3085static void
3086vmxnet3_alloc_intr_resources(struct vmxnet3_adapter *adapter)
3087{
3088 u32 cfg;
Roland Dreiere328d412011-05-06 08:32:53 +00003089 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003090
3091 /* intr settings */
Roland Dreiere328d412011-05-06 08:32:53 +00003092 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003093 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
3094 VMXNET3_CMD_GET_CONF_INTR);
3095 cfg = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_CMD);
Roland Dreiere328d412011-05-06 08:32:53 +00003096 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003097 adapter->intr.type = cfg & 0x3;
3098 adapter->intr.mask_mode = (cfg >> 2) & 0x3;
3099
3100 if (adapter->intr.type == VMXNET3_IT_AUTO) {
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00003101 adapter->intr.type = VMXNET3_IT_MSIX;
3102 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003103
Randy Dunlap8f7e5242009-10-14 20:38:58 -07003104#ifdef CONFIG_PCI_MSI
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00003105 if (adapter->intr.type == VMXNET3_IT_MSIX) {
Alexander Gordeevb60b8692014-02-18 11:12:02 +01003106 int i, nvec;
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00003107
Alexander Gordeevb60b8692014-02-18 11:12:02 +01003108 nvec = adapter->share_intr == VMXNET3_INTR_TXSHARE ?
3109 1 : adapter->num_tx_queues;
3110 nvec += adapter->share_intr == VMXNET3_INTR_BUDDYSHARE ?
3111 0 : adapter->num_rx_queues;
3112 nvec += 1; /* for link event */
3113 nvec = nvec > VMXNET3_LINUX_MIN_MSIX_VECT ?
3114 nvec : VMXNET3_LINUX_MIN_MSIX_VECT;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003115
Alexander Gordeevb60b8692014-02-18 11:12:02 +01003116 for (i = 0; i < nvec; i++)
3117 adapter->intr.msix_entries[i].entry = i;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003118
Alexander Gordeevb60b8692014-02-18 11:12:02 +01003119 nvec = vmxnet3_acquire_msix_vectors(adapter, nvec);
3120 if (nvec < 0)
3121 goto msix_err;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003122
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003123 /* If we cannot allocate one MSIx vector per queue
3124 * then limit the number of rx queues to 1
3125 */
Alexander Gordeevb60b8692014-02-18 11:12:02 +01003126 if (nvec == VMXNET3_LINUX_MIN_MSIX_VECT) {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003127 if (adapter->share_intr != VMXNET3_INTR_BUDDYSHARE
Shreyas Bhatewara7e96fbf2011-01-14 15:00:03 +00003128 || adapter->num_rx_queues != 1) {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003129 adapter->share_intr = VMXNET3_INTR_TXSHARE;
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003130 netdev_err(adapter->netdev,
3131 "Number of rx queues : 1\n");
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003132 adapter->num_rx_queues = 1;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003133 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003134 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003135
Alexander Gordeevb60b8692014-02-18 11:12:02 +01003136 adapter->intr.num_intrs = nvec;
3137 return;
3138
3139msix_err:
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003140 /* If we cannot allocate MSIx vectors use only one rx queue */
Stephen Hemminger4bad25f2013-01-15 07:28:28 +00003141 dev_info(&adapter->pdev->dev,
3142 "Failed to enable MSI-X, error %d. "
Alexander Gordeevb60b8692014-02-18 11:12:02 +01003143 "Limiting #rx queues to 1, try MSI.\n", nvec);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003144
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00003145 adapter->intr.type = VMXNET3_IT_MSI;
3146 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003147
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00003148 if (adapter->intr.type == VMXNET3_IT_MSI) {
Alexander Gordeevb60b8692014-02-18 11:12:02 +01003149 if (!pci_enable_msi(adapter->pdev)) {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003150 adapter->num_rx_queues = 1;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003151 adapter->intr.num_intrs = 1;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003152 return;
3153 }
3154 }
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00003155#endif /* CONFIG_PCI_MSI */
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003156
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003157 adapter->num_rx_queues = 1;
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003158 dev_info(&adapter->netdev->dev,
3159 "Using INTx interrupt, #Rx queues: 1.\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003160 adapter->intr.type = VMXNET3_IT_INTX;
3161
3162 /* INT-X related setting */
3163 adapter->intr.num_intrs = 1;
3164}
3165
3166
3167static void
3168vmxnet3_free_intr_resources(struct vmxnet3_adapter *adapter)
3169{
3170 if (adapter->intr.type == VMXNET3_IT_MSIX)
3171 pci_disable_msix(adapter->pdev);
3172 else if (adapter->intr.type == VMXNET3_IT_MSI)
3173 pci_disable_msi(adapter->pdev);
3174 else
3175 BUG_ON(adapter->intr.type != VMXNET3_IT_INTX);
3176}
3177
3178
3179static void
3180vmxnet3_tx_timeout(struct net_device *netdev)
3181{
3182 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
3183 adapter->tx_timeout_count++;
3184
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003185 netdev_err(adapter->netdev, "tx hang\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003186 schedule_work(&adapter->work);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003187 netif_wake_queue(adapter->netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003188}
3189
3190
3191static void
3192vmxnet3_reset_work(struct work_struct *data)
3193{
3194 struct vmxnet3_adapter *adapter;
3195
3196 adapter = container_of(data, struct vmxnet3_adapter, work);
3197
3198 /* if another thread is resetting the device, no need to proceed */
3199 if (test_and_set_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state))
3200 return;
3201
3202 /* if the device is closed, we must leave it alone */
Shreyas Bhatewarad9a5f212010-07-19 07:02:13 +00003203 rtnl_lock();
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003204 if (netif_running(adapter->netdev)) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003205 netdev_notice(adapter->netdev, "resetting\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003206 vmxnet3_quiesce_dev(adapter);
3207 vmxnet3_reset_dev(adapter);
3208 vmxnet3_activate_dev(adapter);
3209 } else {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003210 netdev_info(adapter->netdev, "already closed\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003211 }
Shreyas Bhatewarad9a5f212010-07-19 07:02:13 +00003212 rtnl_unlock();
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003213
3214 clear_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state);
3215}
3216
3217
Bill Pemberton3a4751a2012-12-03 09:24:16 -05003218static int
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003219vmxnet3_probe_device(struct pci_dev *pdev,
3220 const struct pci_device_id *id)
3221{
3222 static const struct net_device_ops vmxnet3_netdev_ops = {
3223 .ndo_open = vmxnet3_open,
3224 .ndo_stop = vmxnet3_close,
3225 .ndo_start_xmit = vmxnet3_xmit_frame,
3226 .ndo_set_mac_address = vmxnet3_set_mac_addr,
3227 .ndo_change_mtu = vmxnet3_change_mtu,
Michał Mirosława0d27302011-04-18 13:31:21 +00003228 .ndo_set_features = vmxnet3_set_features,
stephen hemminger95305f62011-06-08 14:53:57 +00003229 .ndo_get_stats64 = vmxnet3_get_stats64,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003230 .ndo_tx_timeout = vmxnet3_tx_timeout,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00003231 .ndo_set_rx_mode = vmxnet3_set_mc,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003232 .ndo_vlan_rx_add_vid = vmxnet3_vlan_rx_add_vid,
3233 .ndo_vlan_rx_kill_vid = vmxnet3_vlan_rx_kill_vid,
3234#ifdef CONFIG_NET_POLL_CONTROLLER
3235 .ndo_poll_controller = vmxnet3_netpoll,
3236#endif
3237 };
3238 int err;
3239 bool dma64 = false; /* stupid gcc */
3240 u32 ver;
3241 struct net_device *netdev;
3242 struct vmxnet3_adapter *adapter;
3243 u8 mac[ETH_ALEN];
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003244 int size;
3245 int num_tx_queues;
3246 int num_rx_queues;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003247
Shreyas Bhatewarae154b632011-05-10 06:13:56 +00003248 if (!pci_msi_enabled())
3249 enable_mq = 0;
3250
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003251#ifdef VMXNET3_RSS
3252 if (enable_mq)
3253 num_rx_queues = min(VMXNET3_DEVICE_MAX_RX_QUEUES,
3254 (int)num_online_cpus());
3255 else
3256#endif
3257 num_rx_queues = 1;
Shreyas Bhatewaraeebb02b2011-07-07 00:25:52 -07003258 num_rx_queues = rounddown_pow_of_two(num_rx_queues);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003259
3260 if (enable_mq)
3261 num_tx_queues = min(VMXNET3_DEVICE_MAX_TX_QUEUES,
3262 (int)num_online_cpus());
3263 else
3264 num_tx_queues = 1;
3265
Shreyas Bhatewaraeebb02b2011-07-07 00:25:52 -07003266 num_tx_queues = rounddown_pow_of_two(num_tx_queues);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003267 netdev = alloc_etherdev_mq(sizeof(struct vmxnet3_adapter),
3268 max(num_tx_queues, num_rx_queues));
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003269 dev_info(&pdev->dev,
3270 "# of Tx queues : %d, # of Rx queues : %d\n",
3271 num_tx_queues, num_rx_queues);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003272
Joe Perches41de8d42012-01-29 13:47:52 +00003273 if (!netdev)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003274 return -ENOMEM;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003275
3276 pci_set_drvdata(pdev, netdev);
3277 adapter = netdev_priv(netdev);
3278 adapter->netdev = netdev;
3279 adapter->pdev = pdev;
3280
Neil Hormanf00e2b02014-06-13 10:03:21 -04003281 adapter->tx_ring_size = VMXNET3_DEF_TX_RING_SIZE;
3282 adapter->rx_ring_size = VMXNET3_DEF_RX_RING_SIZE;
Shrikrishna Khare53831aa2015-01-06 09:20:15 -08003283 adapter->rx_ring2_size = VMXNET3_DEF_RX_RING2_SIZE;
Neil Hormanf00e2b02014-06-13 10:03:21 -04003284
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003285 spin_lock_init(&adapter->cmd_lock);
Andy Kingb0eb57c2013-08-23 09:33:49 -07003286 adapter->adapter_pa = dma_map_single(&adapter->pdev->dev, adapter,
3287 sizeof(struct vmxnet3_adapter),
3288 PCI_DMA_TODEVICE);
Alexey Khoroshilov5738a092015-11-28 01:29:30 +03003289 if (dma_mapping_error(&adapter->pdev->dev, adapter->adapter_pa)) {
3290 dev_err(&pdev->dev, "Failed to map dma\n");
3291 err = -EFAULT;
3292 goto err_dma_map;
3293 }
Andy Kingb0eb57c2013-08-23 09:33:49 -07003294 adapter->shared = dma_alloc_coherent(
3295 &adapter->pdev->dev,
3296 sizeof(struct Vmxnet3_DriverShared),
3297 &adapter->shared_pa, GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003298 if (!adapter->shared) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003299 dev_err(&pdev->dev, "Failed to allocate memory\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003300 err = -ENOMEM;
3301 goto err_alloc_shared;
3302 }
3303
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003304 adapter->num_rx_queues = num_rx_queues;
3305 adapter->num_tx_queues = num_tx_queues;
Bhavesh Davdae4fabf22013-03-06 12:04:53 +00003306 adapter->rx_buf_per_pkt = 1;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003307
3308 size = sizeof(struct Vmxnet3_TxQueueDesc) * adapter->num_tx_queues;
3309 size += sizeof(struct Vmxnet3_RxQueueDesc) * adapter->num_rx_queues;
Andy Kingb0eb57c2013-08-23 09:33:49 -07003310 adapter->tqd_start = dma_alloc_coherent(&adapter->pdev->dev, size,
3311 &adapter->queue_desc_pa,
3312 GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003313
3314 if (!adapter->tqd_start) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003315 dev_err(&pdev->dev, "Failed to allocate memory\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003316 err = -ENOMEM;
3317 goto err_alloc_queue_desc;
3318 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003319 adapter->rqd_start = (struct Vmxnet3_RxQueueDesc *)(adapter->tqd_start +
stephen hemminger96800ee2012-11-13 13:53:28 +00003320 adapter->num_tx_queues);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003321
Andy Kingb0eb57c2013-08-23 09:33:49 -07003322 adapter->pm_conf = dma_alloc_coherent(&adapter->pdev->dev,
3323 sizeof(struct Vmxnet3_PMConf),
3324 &adapter->pm_conf_pa,
3325 GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003326 if (adapter->pm_conf == NULL) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003327 err = -ENOMEM;
3328 goto err_alloc_pm;
3329 }
3330
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003331#ifdef VMXNET3_RSS
3332
Andy Kingb0eb57c2013-08-23 09:33:49 -07003333 adapter->rss_conf = dma_alloc_coherent(&adapter->pdev->dev,
3334 sizeof(struct UPT1_RSSConf),
3335 &adapter->rss_conf_pa,
3336 GFP_KERNEL);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003337 if (adapter->rss_conf == NULL) {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003338 err = -ENOMEM;
3339 goto err_alloc_rss;
3340 }
3341#endif /* VMXNET3_RSS */
3342
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003343 err = vmxnet3_alloc_pci_resources(adapter, &dma64);
3344 if (err < 0)
3345 goto err_alloc_pci;
3346
3347 ver = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_VRRS);
Shrikrishna Khare190af102016-06-16 10:51:53 -07003348 if (ver & (1 << VMXNET3_REV_2)) {
3349 VMXNET3_WRITE_BAR1_REG(adapter,
3350 VMXNET3_REG_VRRS,
3351 1 << VMXNET3_REV_2);
3352 adapter->version = VMXNET3_REV_2 + 1;
3353 } else if (ver & (1 << VMXNET3_REV_1)) {
3354 VMXNET3_WRITE_BAR1_REG(adapter,
3355 VMXNET3_REG_VRRS,
3356 1 << VMXNET3_REV_1);
3357 adapter->version = VMXNET3_REV_1 + 1;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003358 } else {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003359 dev_err(&pdev->dev,
3360 "Incompatible h/w version (0x%x) for adapter\n", ver);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003361 err = -EBUSY;
3362 goto err_ver;
3363 }
Shreyas Bhatewara45dac1d2015-06-19 13:38:29 -07003364 dev_dbg(&pdev->dev, "Using device version %d\n", adapter->version);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003365
3366 ver = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_UVRS);
3367 if (ver & 1) {
3368 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_UVRS, 1);
3369 } else {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003370 dev_err(&pdev->dev,
3371 "Incompatible upt version (0x%x) for adapter\n", ver);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003372 err = -EBUSY;
3373 goto err_ver;
3374 }
3375
Shrikrishna Khare4edef40e2016-06-16 10:51:57 -07003376 if (VMXNET3_VERSION_GE_3(adapter)) {
3377 adapter->coal_conf =
3378 dma_alloc_coherent(&adapter->pdev->dev,
3379 sizeof(struct Vmxnet3_CoalesceScheme)
3380 ,
3381 &adapter->coal_conf_pa,
3382 GFP_KERNEL);
3383 if (!adapter->coal_conf) {
3384 err = -ENOMEM;
3385 goto err_ver;
3386 }
3387 memset(adapter->coal_conf, 0, sizeof(*adapter->coal_conf));
3388 adapter->coal_conf->coalMode = VMXNET3_COALESCE_DISABLED;
3389 adapter->default_coal_mode = true;
3390 }
3391
Shreyas Bhatewarae101e7d2011-07-20 16:01:11 +00003392 SET_NETDEV_DEV(netdev, &pdev->dev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003393 vmxnet3_declare_features(adapter, dma64);
3394
Shrikrishna Khare50a5ce32016-06-16 10:51:56 -07003395 adapter->rxdata_desc_size = VMXNET3_VERSION_GE_3(adapter) ?
3396 VMXNET3_DEF_RXDATA_DESC_SIZE : 0;
3397
Stephen Hemminger4db37a72013-01-15 07:28:33 +00003398 if (adapter->num_tx_queues == adapter->num_rx_queues)
3399 adapter->share_intr = VMXNET3_INTR_BUDDYSHARE;
3400 else
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003401 adapter->share_intr = VMXNET3_INTR_DONTSHARE;
3402
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003403 vmxnet3_alloc_intr_resources(adapter);
3404
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003405#ifdef VMXNET3_RSS
3406 if (adapter->num_rx_queues > 1 &&
3407 adapter->intr.type == VMXNET3_IT_MSIX) {
3408 adapter->rss = true;
Stephen Hemminger7db11f72013-01-15 07:28:35 +00003409 netdev->hw_features |= NETIF_F_RXHASH;
3410 netdev->features |= NETIF_F_RXHASH;
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003411 dev_dbg(&pdev->dev, "RSS is enabled.\n");
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003412 } else {
3413 adapter->rss = false;
3414 }
3415#endif
3416
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003417 vmxnet3_read_mac_addr(adapter, mac);
3418 memcpy(netdev->dev_addr, mac, netdev->addr_len);
3419
3420 netdev->netdev_ops = &vmxnet3_netdev_ops;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003421 vmxnet3_set_ethtool_ops(netdev);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003422 netdev->watchdog_timeo = 5 * HZ;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003423
3424 INIT_WORK(&adapter->work, vmxnet3_reset_work);
Steve Hodgsone3bc4ff2012-08-14 17:13:36 +01003425 set_bit(VMXNET3_STATE_BIT_QUIESCED, &adapter->state);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003426
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003427 if (adapter->intr.type == VMXNET3_IT_MSIX) {
3428 int i;
3429 for (i = 0; i < adapter->num_rx_queues; i++) {
3430 netif_napi_add(adapter->netdev,
3431 &adapter->rx_queue[i].napi,
3432 vmxnet3_poll_rx_only, 64);
3433 }
3434 } else {
3435 netif_napi_add(adapter->netdev, &adapter->rx_queue[0].napi,
3436 vmxnet3_poll, 64);
3437 }
3438
3439 netif_set_real_num_tx_queues(adapter->netdev, adapter->num_tx_queues);
3440 netif_set_real_num_rx_queues(adapter->netdev, adapter->num_rx_queues);
3441
Neil Horman6cdd20c2013-01-29 16:15:45 -05003442 netif_carrier_off(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003443 err = register_netdev(netdev);
3444
3445 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003446 dev_err(&pdev->dev, "Failed to register adapter\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003447 goto err_register;
3448 }
3449
Shreyas Bhatewara4a1745fc2010-07-15 21:51:14 +00003450 vmxnet3_check_link(adapter, false);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003451 return 0;
3452
3453err_register:
Shrikrishna Khare4edef40e2016-06-16 10:51:57 -07003454 if (VMXNET3_VERSION_GE_3(adapter)) {
3455 dma_free_coherent(&adapter->pdev->dev,
3456 sizeof(struct Vmxnet3_CoalesceScheme),
3457 adapter->coal_conf, adapter->coal_conf_pa);
3458 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003459 vmxnet3_free_intr_resources(adapter);
3460err_ver:
3461 vmxnet3_free_pci_resources(adapter);
3462err_alloc_pci:
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003463#ifdef VMXNET3_RSS
Andy Kingb0eb57c2013-08-23 09:33:49 -07003464 dma_free_coherent(&adapter->pdev->dev, sizeof(struct UPT1_RSSConf),
3465 adapter->rss_conf, adapter->rss_conf_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003466err_alloc_rss:
3467#endif
Andy Kingb0eb57c2013-08-23 09:33:49 -07003468 dma_free_coherent(&adapter->pdev->dev, sizeof(struct Vmxnet3_PMConf),
3469 adapter->pm_conf, adapter->pm_conf_pa);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003470err_alloc_pm:
Andy Kingb0eb57c2013-08-23 09:33:49 -07003471 dma_free_coherent(&adapter->pdev->dev, size, adapter->tqd_start,
3472 adapter->queue_desc_pa);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003473err_alloc_queue_desc:
Andy Kingb0eb57c2013-08-23 09:33:49 -07003474 dma_free_coherent(&adapter->pdev->dev,
3475 sizeof(struct Vmxnet3_DriverShared),
3476 adapter->shared, adapter->shared_pa);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003477err_alloc_shared:
Andy Kingb0eb57c2013-08-23 09:33:49 -07003478 dma_unmap_single(&adapter->pdev->dev, adapter->adapter_pa,
3479 sizeof(struct vmxnet3_adapter), PCI_DMA_TODEVICE);
Alexey Khoroshilov5738a092015-11-28 01:29:30 +03003480err_dma_map:
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003481 free_netdev(netdev);
3482 return err;
3483}
3484
3485
Bill Pemberton3a4751a2012-12-03 09:24:16 -05003486static void
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003487vmxnet3_remove_device(struct pci_dev *pdev)
3488{
3489 struct net_device *netdev = pci_get_drvdata(pdev);
3490 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003491 int size = 0;
3492 int num_rx_queues;
3493
3494#ifdef VMXNET3_RSS
3495 if (enable_mq)
3496 num_rx_queues = min(VMXNET3_DEVICE_MAX_RX_QUEUES,
3497 (int)num_online_cpus());
3498 else
3499#endif
3500 num_rx_queues = 1;
Shreyas Bhatewaraeebb02b2011-07-07 00:25:52 -07003501 num_rx_queues = rounddown_pow_of_two(num_rx_queues);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003502
Tejun Heo23f333a2010-12-12 16:45:14 +01003503 cancel_work_sync(&adapter->work);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003504
3505 unregister_netdev(netdev);
3506
3507 vmxnet3_free_intr_resources(adapter);
3508 vmxnet3_free_pci_resources(adapter);
Shrikrishna Khare4edef40e2016-06-16 10:51:57 -07003509 if (VMXNET3_VERSION_GE_3(adapter)) {
3510 dma_free_coherent(&adapter->pdev->dev,
3511 sizeof(struct Vmxnet3_CoalesceScheme),
3512 adapter->coal_conf, adapter->coal_conf_pa);
3513 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003514#ifdef VMXNET3_RSS
Andy Kingb0eb57c2013-08-23 09:33:49 -07003515 dma_free_coherent(&adapter->pdev->dev, sizeof(struct UPT1_RSSConf),
3516 adapter->rss_conf, adapter->rss_conf_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003517#endif
Andy Kingb0eb57c2013-08-23 09:33:49 -07003518 dma_free_coherent(&adapter->pdev->dev, sizeof(struct Vmxnet3_PMConf),
3519 adapter->pm_conf, adapter->pm_conf_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003520
3521 size = sizeof(struct Vmxnet3_TxQueueDesc) * adapter->num_tx_queues;
3522 size += sizeof(struct Vmxnet3_RxQueueDesc) * num_rx_queues;
Andy Kingb0eb57c2013-08-23 09:33:49 -07003523 dma_free_coherent(&adapter->pdev->dev, size, adapter->tqd_start,
3524 adapter->queue_desc_pa);
3525 dma_free_coherent(&adapter->pdev->dev,
3526 sizeof(struct Vmxnet3_DriverShared),
3527 adapter->shared, adapter->shared_pa);
3528 dma_unmap_single(&adapter->pdev->dev, adapter->adapter_pa,
3529 sizeof(struct vmxnet3_adapter), PCI_DMA_TODEVICE);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003530 free_netdev(netdev);
3531}
3532
Shreyas Bhatewarae9ba47b2015-06-19 13:36:02 -07003533static void vmxnet3_shutdown_device(struct pci_dev *pdev)
3534{
3535 struct net_device *netdev = pci_get_drvdata(pdev);
3536 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
3537 unsigned long flags;
3538
3539 /* Reset_work may be in the middle of resetting the device, wait for its
3540 * completion.
3541 */
3542 while (test_and_set_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state))
3543 msleep(1);
3544
3545 if (test_and_set_bit(VMXNET3_STATE_BIT_QUIESCED,
3546 &adapter->state)) {
3547 clear_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state);
3548 return;
3549 }
3550 spin_lock_irqsave(&adapter->cmd_lock, flags);
3551 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
3552 VMXNET3_CMD_QUIESCE_DEV);
3553 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
3554 vmxnet3_disable_all_intrs(adapter);
3555
3556 clear_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state);
3557}
3558
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003559
3560#ifdef CONFIG_PM
3561
3562static int
3563vmxnet3_suspend(struct device *device)
3564{
3565 struct pci_dev *pdev = to_pci_dev(device);
3566 struct net_device *netdev = pci_get_drvdata(pdev);
3567 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
3568 struct Vmxnet3_PMConf *pmConf;
3569 struct ethhdr *ehdr;
3570 struct arphdr *ahdr;
3571 u8 *arpreq;
3572 struct in_device *in_dev;
3573 struct in_ifaddr *ifa;
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003574 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003575 int i = 0;
3576
3577 if (!netif_running(netdev))
3578 return 0;
3579
Shreyas Bhatewara51956cd2011-01-14 14:59:52 +00003580 for (i = 0; i < adapter->num_rx_queues; i++)
3581 napi_disable(&adapter->rx_queue[i].napi);
3582
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003583 vmxnet3_disable_all_intrs(adapter);
3584 vmxnet3_free_irqs(adapter);
3585 vmxnet3_free_intr_resources(adapter);
3586
3587 netif_device_detach(netdev);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003588 netif_tx_stop_all_queues(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003589
3590 /* Create wake-up filters. */
3591 pmConf = adapter->pm_conf;
3592 memset(pmConf, 0, sizeof(*pmConf));
3593
3594 if (adapter->wol & WAKE_UCAST) {
3595 pmConf->filters[i].patternSize = ETH_ALEN;
3596 pmConf->filters[i].maskSize = 1;
3597 memcpy(pmConf->filters[i].pattern, netdev->dev_addr, ETH_ALEN);
3598 pmConf->filters[i].mask[0] = 0x3F; /* LSB ETH_ALEN bits */
3599
Harvey Harrison3843e512010-10-21 18:05:32 +00003600 pmConf->wakeUpEvents |= VMXNET3_PM_WAKEUP_FILTER;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003601 i++;
3602 }
3603
3604 if (adapter->wol & WAKE_ARP) {
3605 in_dev = in_dev_get(netdev);
3606 if (!in_dev)
3607 goto skip_arp;
3608
3609 ifa = (struct in_ifaddr *)in_dev->ifa_list;
3610 if (!ifa)
3611 goto skip_arp;
3612
3613 pmConf->filters[i].patternSize = ETH_HLEN + /* Ethernet header*/
3614 sizeof(struct arphdr) + /* ARP header */
3615 2 * ETH_ALEN + /* 2 Ethernet addresses*/
3616 2 * sizeof(u32); /*2 IPv4 addresses */
3617 pmConf->filters[i].maskSize =
3618 (pmConf->filters[i].patternSize - 1) / 8 + 1;
3619
3620 /* ETH_P_ARP in Ethernet header. */
3621 ehdr = (struct ethhdr *)pmConf->filters[i].pattern;
3622 ehdr->h_proto = htons(ETH_P_ARP);
3623
3624 /* ARPOP_REQUEST in ARP header. */
3625 ahdr = (struct arphdr *)&pmConf->filters[i].pattern[ETH_HLEN];
3626 ahdr->ar_op = htons(ARPOP_REQUEST);
3627 arpreq = (u8 *)(ahdr + 1);
3628
3629 /* The Unicast IPv4 address in 'tip' field. */
3630 arpreq += 2 * ETH_ALEN + sizeof(u32);
3631 *(u32 *)arpreq = ifa->ifa_address;
3632
3633 /* The mask for the relevant bits. */
3634 pmConf->filters[i].mask[0] = 0x00;
3635 pmConf->filters[i].mask[1] = 0x30; /* ETH_P_ARP */
3636 pmConf->filters[i].mask[2] = 0x30; /* ARPOP_REQUEST */
3637 pmConf->filters[i].mask[3] = 0x00;
3638 pmConf->filters[i].mask[4] = 0xC0; /* IPv4 TIP */
3639 pmConf->filters[i].mask[5] = 0x03; /* IPv4 TIP */
3640 in_dev_put(in_dev);
3641
Harvey Harrison3843e512010-10-21 18:05:32 +00003642 pmConf->wakeUpEvents |= VMXNET3_PM_WAKEUP_FILTER;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003643 i++;
3644 }
3645
3646skip_arp:
3647 if (adapter->wol & WAKE_MAGIC)
Harvey Harrison3843e512010-10-21 18:05:32 +00003648 pmConf->wakeUpEvents |= VMXNET3_PM_WAKEUP_MAGIC;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003649
3650 pmConf->numFilters = i;
3651
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00003652 adapter->shared->devRead.pmConfDesc.confVer = cpu_to_le32(1);
3653 adapter->shared->devRead.pmConfDesc.confLen = cpu_to_le32(sizeof(
3654 *pmConf));
Andy Kingb0eb57c2013-08-23 09:33:49 -07003655 adapter->shared->devRead.pmConfDesc.confPA =
3656 cpu_to_le64(adapter->pm_conf_pa);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003657
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003658 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003659 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
3660 VMXNET3_CMD_UPDATE_PMCFG);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003661 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003662
3663 pci_save_state(pdev);
3664 pci_enable_wake(pdev, pci_choose_state(pdev, PMSG_SUSPEND),
3665 adapter->wol);
3666 pci_disable_device(pdev);
3667 pci_set_power_state(pdev, pci_choose_state(pdev, PMSG_SUSPEND));
3668
3669 return 0;
3670}
3671
3672
3673static int
3674vmxnet3_resume(struct device *device)
3675{
Shrikrishna Khare5ec82c12015-01-09 15:19:14 -08003676 int err;
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003677 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003678 struct pci_dev *pdev = to_pci_dev(device);
3679 struct net_device *netdev = pci_get_drvdata(pdev);
3680 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003681
3682 if (!netif_running(netdev))
3683 return 0;
3684
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003685 pci_set_power_state(pdev, PCI_D0);
3686 pci_restore_state(pdev);
3687 err = pci_enable_device_mem(pdev);
3688 if (err != 0)
3689 return err;
3690
3691 pci_enable_wake(pdev, PCI_D0, 0);
3692
Shrikrishna Khare5ec82c12015-01-09 15:19:14 -08003693 vmxnet3_alloc_intr_resources(adapter);
3694
3695 /* During hibernate and suspend, device has to be reinitialized as the
3696 * device state need not be preserved.
3697 */
3698
3699 /* Need not check adapter state as other reset tasks cannot run during
3700 * device resume.
3701 */
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003702 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003703 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
Shrikrishna Khare5ec82c12015-01-09 15:19:14 -08003704 VMXNET3_CMD_QUIESCE_DEV);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003705 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shrikrishna Khare5ec82c12015-01-09 15:19:14 -08003706 vmxnet3_tq_cleanup_all(adapter);
3707 vmxnet3_rq_cleanup_all(adapter);
3708
3709 vmxnet3_reset_dev(adapter);
3710 err = vmxnet3_activate_dev(adapter);
3711 if (err != 0) {
3712 netdev_err(netdev,
3713 "failed to re-activate on resume, error: %d", err);
3714 vmxnet3_force_close(adapter);
3715 return err;
3716 }
3717 netif_device_attach(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003718
3719 return 0;
3720}
3721
Alexey Dobriyan47145212009-12-14 18:00:08 -08003722static const struct dev_pm_ops vmxnet3_pm_ops = {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003723 .suspend = vmxnet3_suspend,
3724 .resume = vmxnet3_resume,
Shrikrishna Khare5ec82c12015-01-09 15:19:14 -08003725 .freeze = vmxnet3_suspend,
3726 .restore = vmxnet3_resume,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003727};
3728#endif
3729
3730static struct pci_driver vmxnet3_driver = {
3731 .name = vmxnet3_driver_name,
3732 .id_table = vmxnet3_pciid_table,
3733 .probe = vmxnet3_probe_device,
Bill Pemberton3a4751a2012-12-03 09:24:16 -05003734 .remove = vmxnet3_remove_device,
Shreyas Bhatewarae9ba47b2015-06-19 13:36:02 -07003735 .shutdown = vmxnet3_shutdown_device,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003736#ifdef CONFIG_PM
3737 .driver.pm = &vmxnet3_pm_ops,
3738#endif
3739};
3740
3741
3742static int __init
3743vmxnet3_init_module(void)
3744{
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003745 pr_info("%s - version %s\n", VMXNET3_DRIVER_DESC,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003746 VMXNET3_DRIVER_VERSION_REPORT);
3747 return pci_register_driver(&vmxnet3_driver);
3748}
3749
3750module_init(vmxnet3_init_module);
3751
3752
3753static void
3754vmxnet3_exit_module(void)
3755{
3756 pci_unregister_driver(&vmxnet3_driver);
3757}
3758
3759module_exit(vmxnet3_exit_module);
3760
3761MODULE_AUTHOR("VMware, Inc.");
3762MODULE_DESCRIPTION(VMXNET3_DRIVER_DESC);
3763MODULE_LICENSE("GPL v2");
3764MODULE_VERSION(VMXNET3_DRIVER_VERSION_STRING);