blob: 294214c152927a30564bf83d9204f3351b64f237 [file] [log] [blame]
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001/*
2 * Linux driver for VMware's vmxnet3 ethernet NIC.
3 *
4 * Copyright (C) 2008-2009, VMware, Inc. All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License 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 *
23 * Maintained by: Shreyas Bhatewara <pv-drivers@vmware.com>
24 *
25 */
26
Paul Gortmaker9d9779e2011-07-03 15:21:01 -040027#include <linux/module.h>
Stephen Rothwellb038b042009-11-17 23:04:59 -080028#include <net/ip6_checksum.h>
29
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070030#include "vmxnet3_int.h"
31
32char vmxnet3_driver_name[] = "vmxnet3";
33#define VMXNET3_DRIVER_DESC "VMware vmxnet3 virtual NIC driver"
34
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070035/*
36 * PCI Device ID Table
37 * Last entry must be all 0s
38 */
Benoit Taine9baa3c32014-08-08 15:56:03 +020039static const struct pci_device_id vmxnet3_pciid_table[] = {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070040 {PCI_VDEVICE(VMWARE, PCI_DEVICE_ID_VMWARE_VMXNET3)},
41 {0}
42};
43
44MODULE_DEVICE_TABLE(pci, vmxnet3_pciid_table);
45
Shreyas Bhatewara09c50882010-11-19 10:55:24 +000046static int enable_mq = 1;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070047
Shreyas Bhatewaraf9f25022011-01-14 14:59:31 +000048static void
49vmxnet3_write_mac_addr(struct vmxnet3_adapter *adapter, u8 *mac);
50
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070051/*
52 * Enable/Disable the given intr
53 */
54static void
55vmxnet3_enable_intr(struct vmxnet3_adapter *adapter, unsigned intr_idx)
56{
57 VMXNET3_WRITE_BAR0_REG(adapter, VMXNET3_REG_IMR + intr_idx * 8, 0);
58}
59
60
61static void
62vmxnet3_disable_intr(struct vmxnet3_adapter *adapter, unsigned intr_idx)
63{
64 VMXNET3_WRITE_BAR0_REG(adapter, VMXNET3_REG_IMR + intr_idx * 8, 1);
65}
66
67
68/*
69 * Enable/Disable all intrs used by the device
70 */
71static void
72vmxnet3_enable_all_intrs(struct vmxnet3_adapter *adapter)
73{
74 int i;
75
76 for (i = 0; i < adapter->intr.num_intrs; i++)
77 vmxnet3_enable_intr(adapter, i);
Ronghua Zang6929fe82010-07-15 22:18:47 -070078 adapter->shared->devRead.intrConf.intrCtrl &=
79 cpu_to_le32(~VMXNET3_IC_DISABLE_ALL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070080}
81
82
83static void
84vmxnet3_disable_all_intrs(struct vmxnet3_adapter *adapter)
85{
86 int i;
87
Ronghua Zang6929fe82010-07-15 22:18:47 -070088 adapter->shared->devRead.intrConf.intrCtrl |=
89 cpu_to_le32(VMXNET3_IC_DISABLE_ALL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -070090 for (i = 0; i < adapter->intr.num_intrs; i++)
91 vmxnet3_disable_intr(adapter, i);
92}
93
94
95static void
96vmxnet3_ack_events(struct vmxnet3_adapter *adapter, u32 events)
97{
98 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_ECR, events);
99}
100
101
102static bool
103vmxnet3_tq_stopped(struct vmxnet3_tx_queue *tq, struct vmxnet3_adapter *adapter)
104{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000105 return tq->stopped;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700106}
107
108
109static void
110vmxnet3_tq_start(struct vmxnet3_tx_queue *tq, struct vmxnet3_adapter *adapter)
111{
112 tq->stopped = false;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000113 netif_start_subqueue(adapter->netdev, tq - adapter->tx_queue);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700114}
115
116
117static void
118vmxnet3_tq_wake(struct vmxnet3_tx_queue *tq, struct vmxnet3_adapter *adapter)
119{
120 tq->stopped = false;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000121 netif_wake_subqueue(adapter->netdev, (tq - adapter->tx_queue));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700122}
123
124
125static void
126vmxnet3_tq_stop(struct vmxnet3_tx_queue *tq, struct vmxnet3_adapter *adapter)
127{
128 tq->stopped = true;
129 tq->num_stop++;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000130 netif_stop_subqueue(adapter->netdev, (tq - adapter->tx_queue));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700131}
132
133
134/*
135 * Check the link state. This may start or stop the tx queue.
136 */
137static void
Shreyas Bhatewara4a1745fc2010-07-15 21:51:14 +0000138vmxnet3_check_link(struct vmxnet3_adapter *adapter, bool affectTxQueue)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700139{
140 u32 ret;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000141 int i;
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +0000142 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700143
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +0000144 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700145 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD, VMXNET3_CMD_GET_LINK);
146 ret = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_CMD);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +0000147 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
148
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700149 adapter->link_speed = ret >> 16;
150 if (ret & 1) { /* Link is up. */
Stephen Hemminger204a6e62013-01-15 07:28:30 +0000151 netdev_info(adapter->netdev, "NIC Link is Up %d Mbps\n",
152 adapter->link_speed);
Neil Horman6cdd20c2013-01-29 16:15:45 -0500153 netif_carrier_on(adapter->netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700154
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000155 if (affectTxQueue) {
156 for (i = 0; i < adapter->num_tx_queues; i++)
157 vmxnet3_tq_start(&adapter->tx_queue[i],
158 adapter);
159 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700160 } else {
Stephen Hemminger204a6e62013-01-15 07:28:30 +0000161 netdev_info(adapter->netdev, "NIC Link is Down\n");
Neil Horman6cdd20c2013-01-29 16:15:45 -0500162 netif_carrier_off(adapter->netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700163
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000164 if (affectTxQueue) {
165 for (i = 0; i < adapter->num_tx_queues; i++)
166 vmxnet3_tq_stop(&adapter->tx_queue[i], adapter);
167 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700168 }
169}
170
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700171static void
172vmxnet3_process_events(struct vmxnet3_adapter *adapter)
173{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000174 int i;
Roland Dreiere328d412011-05-06 08:32:53 +0000175 unsigned long flags;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000176 u32 events = le32_to_cpu(adapter->shared->ecr);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700177 if (!events)
178 return;
179
180 vmxnet3_ack_events(adapter, events);
181
182 /* Check if link state has changed */
183 if (events & VMXNET3_ECR_LINK)
Shreyas Bhatewara4a1745fc2010-07-15 21:51:14 +0000184 vmxnet3_check_link(adapter, true);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700185
186 /* Check if there is an error on xmit/recv queues */
187 if (events & (VMXNET3_ECR_TQERR | VMXNET3_ECR_RQERR)) {
Roland Dreiere328d412011-05-06 08:32:53 +0000188 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700189 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
190 VMXNET3_CMD_GET_QUEUE_STATUS);
Roland Dreiere328d412011-05-06 08:32:53 +0000191 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700192
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000193 for (i = 0; i < adapter->num_tx_queues; i++)
194 if (adapter->tqd_start[i].status.stopped)
195 dev_err(&adapter->netdev->dev,
196 "%s: tq[%d] error 0x%x\n",
197 adapter->netdev->name, i, le32_to_cpu(
198 adapter->tqd_start[i].status.error));
199 for (i = 0; i < adapter->num_rx_queues; i++)
200 if (adapter->rqd_start[i].status.stopped)
201 dev_err(&adapter->netdev->dev,
202 "%s: rq[%d] error 0x%x\n",
203 adapter->netdev->name, i,
204 adapter->rqd_start[i].status.error);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700205
206 schedule_work(&adapter->work);
207 }
208}
209
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000210#ifdef __BIG_ENDIAN_BITFIELD
211/*
212 * The device expects the bitfields in shared structures to be written in
213 * little endian. When CPU is big endian, the following routines are used to
214 * correctly read and write into ABI.
215 * The general technique used here is : double word bitfields are defined in
216 * opposite order for big endian architecture. Then before reading them in
217 * driver the complete double word is translated using le32_to_cpu. Similarly
218 * After the driver writes into bitfields, cpu_to_le32 is used to translate the
219 * double words into required format.
220 * In order to avoid touching bits in shared structure more than once, temporary
221 * descriptors are used. These are passed as srcDesc to following functions.
222 */
223static void vmxnet3_RxDescToCPU(const struct Vmxnet3_RxDesc *srcDesc,
224 struct Vmxnet3_RxDesc *dstDesc)
225{
226 u32 *src = (u32 *)srcDesc + 2;
227 u32 *dst = (u32 *)dstDesc + 2;
228 dstDesc->addr = le64_to_cpu(srcDesc->addr);
229 *dst = le32_to_cpu(*src);
230 dstDesc->ext1 = le32_to_cpu(srcDesc->ext1);
231}
232
233static void vmxnet3_TxDescToLe(const struct Vmxnet3_TxDesc *srcDesc,
234 struct Vmxnet3_TxDesc *dstDesc)
235{
236 int i;
237 u32 *src = (u32 *)(srcDesc + 1);
238 u32 *dst = (u32 *)(dstDesc + 1);
239
240 /* Working backwards so that the gen bit is set at the end. */
241 for (i = 2; i > 0; i--) {
242 src--;
243 dst--;
244 *dst = cpu_to_le32(*src);
245 }
246}
247
248
249static void vmxnet3_RxCompToCPU(const struct Vmxnet3_RxCompDesc *srcDesc,
250 struct Vmxnet3_RxCompDesc *dstDesc)
251{
252 int i = 0;
253 u32 *src = (u32 *)srcDesc;
254 u32 *dst = (u32 *)dstDesc;
255 for (i = 0; i < sizeof(struct Vmxnet3_RxCompDesc) / sizeof(u32); i++) {
256 *dst = le32_to_cpu(*src);
257 src++;
258 dst++;
259 }
260}
261
262
263/* Used to read bitfield values from double words. */
264static u32 get_bitfield32(const __le32 *bitfield, u32 pos, u32 size)
265{
266 u32 temp = le32_to_cpu(*bitfield);
267 u32 mask = ((1 << size) - 1) << pos;
268 temp &= mask;
269 temp >>= pos;
270 return temp;
271}
272
273
274
275#endif /* __BIG_ENDIAN_BITFIELD */
276
277#ifdef __BIG_ENDIAN_BITFIELD
278
279# define VMXNET3_TXDESC_GET_GEN(txdesc) get_bitfield32(((const __le32 *) \
280 txdesc) + VMXNET3_TXD_GEN_DWORD_SHIFT, \
281 VMXNET3_TXD_GEN_SHIFT, VMXNET3_TXD_GEN_SIZE)
282# define VMXNET3_TXDESC_GET_EOP(txdesc) get_bitfield32(((const __le32 *) \
283 txdesc) + VMXNET3_TXD_EOP_DWORD_SHIFT, \
284 VMXNET3_TXD_EOP_SHIFT, VMXNET3_TXD_EOP_SIZE)
285# define VMXNET3_TCD_GET_GEN(tcd) get_bitfield32(((const __le32 *)tcd) + \
286 VMXNET3_TCD_GEN_DWORD_SHIFT, VMXNET3_TCD_GEN_SHIFT, \
287 VMXNET3_TCD_GEN_SIZE)
288# define VMXNET3_TCD_GET_TXIDX(tcd) get_bitfield32((const __le32 *)tcd, \
289 VMXNET3_TCD_TXIDX_SHIFT, VMXNET3_TCD_TXIDX_SIZE)
290# define vmxnet3_getRxComp(dstrcd, rcd, tmp) do { \
291 (dstrcd) = (tmp); \
292 vmxnet3_RxCompToCPU((rcd), (tmp)); \
293 } while (0)
294# define vmxnet3_getRxDesc(dstrxd, rxd, tmp) do { \
295 (dstrxd) = (tmp); \
296 vmxnet3_RxDescToCPU((rxd), (tmp)); \
297 } while (0)
298
299#else
300
301# define VMXNET3_TXDESC_GET_GEN(txdesc) ((txdesc)->gen)
302# define VMXNET3_TXDESC_GET_EOP(txdesc) ((txdesc)->eop)
303# define VMXNET3_TCD_GET_GEN(tcd) ((tcd)->gen)
304# define VMXNET3_TCD_GET_TXIDX(tcd) ((tcd)->txdIdx)
305# define vmxnet3_getRxComp(dstrcd, rcd, tmp) (dstrcd) = (rcd)
306# define vmxnet3_getRxDesc(dstrxd, rxd, tmp) (dstrxd) = (rxd)
307
308#endif /* __BIG_ENDIAN_BITFIELD */
309
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700310
311static void
312vmxnet3_unmap_tx_buf(struct vmxnet3_tx_buf_info *tbi,
313 struct pci_dev *pdev)
314{
315 if (tbi->map_type == VMXNET3_MAP_SINGLE)
Andy Kingb0eb57c2013-08-23 09:33:49 -0700316 dma_unmap_single(&pdev->dev, tbi->dma_addr, tbi->len,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700317 PCI_DMA_TODEVICE);
318 else if (tbi->map_type == VMXNET3_MAP_PAGE)
Andy Kingb0eb57c2013-08-23 09:33:49 -0700319 dma_unmap_page(&pdev->dev, tbi->dma_addr, tbi->len,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700320 PCI_DMA_TODEVICE);
321 else
322 BUG_ON(tbi->map_type != VMXNET3_MAP_NONE);
323
324 tbi->map_type = VMXNET3_MAP_NONE; /* to help debugging */
325}
326
327
328static int
329vmxnet3_unmap_pkt(u32 eop_idx, struct vmxnet3_tx_queue *tq,
330 struct pci_dev *pdev, struct vmxnet3_adapter *adapter)
331{
332 struct sk_buff *skb;
333 int entries = 0;
334
335 /* no out of order completion */
336 BUG_ON(tq->buf_info[eop_idx].sop_idx != tq->tx_ring.next2comp);
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000337 BUG_ON(VMXNET3_TXDESC_GET_EOP(&(tq->tx_ring.base[eop_idx].txd)) != 1);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700338
339 skb = tq->buf_info[eop_idx].skb;
340 BUG_ON(skb == NULL);
341 tq->buf_info[eop_idx].skb = NULL;
342
343 VMXNET3_INC_RING_IDX_ONLY(eop_idx, tq->tx_ring.size);
344
345 while (tq->tx_ring.next2comp != eop_idx) {
346 vmxnet3_unmap_tx_buf(tq->buf_info + tq->tx_ring.next2comp,
347 pdev);
348
349 /* update next2comp w/o tx_lock. Since we are marking more,
350 * instead of less, tx ring entries avail, the worst case is
351 * that the tx routine incorrectly re-queues a pkt due to
352 * insufficient tx ring entries.
353 */
354 vmxnet3_cmd_ring_adv_next2comp(&tq->tx_ring);
355 entries++;
356 }
357
358 dev_kfree_skb_any(skb);
359 return entries;
360}
361
362
363static int
364vmxnet3_tq_tx_complete(struct vmxnet3_tx_queue *tq,
365 struct vmxnet3_adapter *adapter)
366{
367 int completed = 0;
368 union Vmxnet3_GenericDesc *gdesc;
369
370 gdesc = tq->comp_ring.base + tq->comp_ring.next2proc;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000371 while (VMXNET3_TCD_GET_GEN(&gdesc->tcd) == tq->comp_ring.gen) {
372 completed += vmxnet3_unmap_pkt(VMXNET3_TCD_GET_TXIDX(
373 &gdesc->tcd), tq, adapter->pdev,
374 adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700375
376 vmxnet3_comp_ring_adv_next2proc(&tq->comp_ring);
377 gdesc = tq->comp_ring.base + tq->comp_ring.next2proc;
378 }
379
380 if (completed) {
381 spin_lock(&tq->tx_lock);
382 if (unlikely(vmxnet3_tq_stopped(tq, adapter) &&
383 vmxnet3_cmd_ring_desc_avail(&tq->tx_ring) >
384 VMXNET3_WAKE_QUEUE_THRESHOLD(tq) &&
385 netif_carrier_ok(adapter->netdev))) {
386 vmxnet3_tq_wake(tq, adapter);
387 }
388 spin_unlock(&tq->tx_lock);
389 }
390 return completed;
391}
392
393
394static void
395vmxnet3_tq_cleanup(struct vmxnet3_tx_queue *tq,
396 struct vmxnet3_adapter *adapter)
397{
398 int i;
399
400 while (tq->tx_ring.next2comp != tq->tx_ring.next2fill) {
401 struct vmxnet3_tx_buf_info *tbi;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700402
403 tbi = tq->buf_info + tq->tx_ring.next2comp;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700404
405 vmxnet3_unmap_tx_buf(tbi, adapter->pdev);
406 if (tbi->skb) {
407 dev_kfree_skb_any(tbi->skb);
408 tbi->skb = NULL;
409 }
410 vmxnet3_cmd_ring_adv_next2comp(&tq->tx_ring);
411 }
412
413 /* sanity check, verify all buffers are indeed unmapped and freed */
414 for (i = 0; i < tq->tx_ring.size; i++) {
415 BUG_ON(tq->buf_info[i].skb != NULL ||
416 tq->buf_info[i].map_type != VMXNET3_MAP_NONE);
417 }
418
419 tq->tx_ring.gen = VMXNET3_INIT_GEN;
420 tq->tx_ring.next2fill = tq->tx_ring.next2comp = 0;
421
422 tq->comp_ring.gen = VMXNET3_INIT_GEN;
423 tq->comp_ring.next2proc = 0;
424}
425
426
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000427static void
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700428vmxnet3_tq_destroy(struct vmxnet3_tx_queue *tq,
429 struct vmxnet3_adapter *adapter)
430{
431 if (tq->tx_ring.base) {
Andy Kingb0eb57c2013-08-23 09:33:49 -0700432 dma_free_coherent(&adapter->pdev->dev, tq->tx_ring.size *
433 sizeof(struct Vmxnet3_TxDesc),
434 tq->tx_ring.base, tq->tx_ring.basePA);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700435 tq->tx_ring.base = NULL;
436 }
437 if (tq->data_ring.base) {
Andy Kingb0eb57c2013-08-23 09:33:49 -0700438 dma_free_coherent(&adapter->pdev->dev, tq->data_ring.size *
439 sizeof(struct Vmxnet3_TxDataDesc),
440 tq->data_ring.base, tq->data_ring.basePA);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700441 tq->data_ring.base = NULL;
442 }
443 if (tq->comp_ring.base) {
Andy Kingb0eb57c2013-08-23 09:33:49 -0700444 dma_free_coherent(&adapter->pdev->dev, tq->comp_ring.size *
445 sizeof(struct Vmxnet3_TxCompDesc),
446 tq->comp_ring.base, tq->comp_ring.basePA);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700447 tq->comp_ring.base = NULL;
448 }
Andy Kingb0eb57c2013-08-23 09:33:49 -0700449 if (tq->buf_info) {
450 dma_free_coherent(&adapter->pdev->dev,
451 tq->tx_ring.size * sizeof(tq->buf_info[0]),
452 tq->buf_info, tq->buf_info_pa);
453 tq->buf_info = NULL;
454 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700455}
456
457
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000458/* Destroy all tx queues */
459void
460vmxnet3_tq_destroy_all(struct vmxnet3_adapter *adapter)
461{
462 int i;
463
464 for (i = 0; i < adapter->num_tx_queues; i++)
465 vmxnet3_tq_destroy(&adapter->tx_queue[i], adapter);
466}
467
468
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700469static void
470vmxnet3_tq_init(struct vmxnet3_tx_queue *tq,
471 struct vmxnet3_adapter *adapter)
472{
473 int i;
474
475 /* reset the tx ring contents to 0 and reset the tx ring states */
476 memset(tq->tx_ring.base, 0, tq->tx_ring.size *
477 sizeof(struct Vmxnet3_TxDesc));
478 tq->tx_ring.next2fill = tq->tx_ring.next2comp = 0;
479 tq->tx_ring.gen = VMXNET3_INIT_GEN;
480
481 memset(tq->data_ring.base, 0, tq->data_ring.size *
482 sizeof(struct Vmxnet3_TxDataDesc));
483
484 /* reset the tx comp ring contents to 0 and reset comp ring states */
485 memset(tq->comp_ring.base, 0, tq->comp_ring.size *
486 sizeof(struct Vmxnet3_TxCompDesc));
487 tq->comp_ring.next2proc = 0;
488 tq->comp_ring.gen = VMXNET3_INIT_GEN;
489
490 /* reset the bookkeeping data */
491 memset(tq->buf_info, 0, sizeof(tq->buf_info[0]) * tq->tx_ring.size);
492 for (i = 0; i < tq->tx_ring.size; i++)
493 tq->buf_info[i].map_type = VMXNET3_MAP_NONE;
494
495 /* stats are not reset */
496}
497
498
499static int
500vmxnet3_tq_create(struct vmxnet3_tx_queue *tq,
501 struct vmxnet3_adapter *adapter)
502{
Andy Kingb0eb57c2013-08-23 09:33:49 -0700503 size_t sz;
504
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700505 BUG_ON(tq->tx_ring.base || tq->data_ring.base ||
506 tq->comp_ring.base || tq->buf_info);
507
Andy Kingb0eb57c2013-08-23 09:33:49 -0700508 tq->tx_ring.base = dma_alloc_coherent(&adapter->pdev->dev,
509 tq->tx_ring.size * sizeof(struct Vmxnet3_TxDesc),
510 &tq->tx_ring.basePA, GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700511 if (!tq->tx_ring.base) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +0000512 netdev_err(adapter->netdev, "failed to allocate tx ring\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700513 goto err;
514 }
515
Andy Kingb0eb57c2013-08-23 09:33:49 -0700516 tq->data_ring.base = dma_alloc_coherent(&adapter->pdev->dev,
517 tq->data_ring.size * sizeof(struct Vmxnet3_TxDataDesc),
518 &tq->data_ring.basePA, GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700519 if (!tq->data_ring.base) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +0000520 netdev_err(adapter->netdev, "failed to allocate data ring\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700521 goto err;
522 }
523
Andy Kingb0eb57c2013-08-23 09:33:49 -0700524 tq->comp_ring.base = dma_alloc_coherent(&adapter->pdev->dev,
525 tq->comp_ring.size * sizeof(struct Vmxnet3_TxCompDesc),
526 &tq->comp_ring.basePA, GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700527 if (!tq->comp_ring.base) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +0000528 netdev_err(adapter->netdev, "failed to allocate tx comp ring\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700529 goto err;
530 }
531
Andy Kingb0eb57c2013-08-23 09:33:49 -0700532 sz = tq->tx_ring.size * sizeof(tq->buf_info[0]);
533 tq->buf_info = dma_zalloc_coherent(&adapter->pdev->dev, sz,
534 &tq->buf_info_pa, GFP_KERNEL);
Joe Perchese404dec2012-01-29 12:56:23 +0000535 if (!tq->buf_info)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700536 goto err;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700537
538 return 0;
539
540err:
541 vmxnet3_tq_destroy(tq, adapter);
542 return -ENOMEM;
543}
544
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000545static void
546vmxnet3_tq_cleanup_all(struct vmxnet3_adapter *adapter)
547{
548 int i;
549
550 for (i = 0; i < adapter->num_tx_queues; i++)
551 vmxnet3_tq_cleanup(&adapter->tx_queue[i], adapter);
552}
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700553
554/*
555 * starting from ring->next2fill, allocate rx buffers for the given ring
556 * of the rx queue and update the rx desc. stop after @num_to_alloc buffers
557 * are allocated or allocation fails
558 */
559
560static int
561vmxnet3_rq_alloc_rx_buf(struct vmxnet3_rx_queue *rq, u32 ring_idx,
562 int num_to_alloc, struct vmxnet3_adapter *adapter)
563{
564 int num_allocated = 0;
565 struct vmxnet3_rx_buf_info *rbi_base = rq->buf_info[ring_idx];
566 struct vmxnet3_cmd_ring *ring = &rq->rx_ring[ring_idx];
567 u32 val;
568
Shreyas Bhatewara5318d802011-07-05 14:34:05 +0000569 while (num_allocated <= num_to_alloc) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700570 struct vmxnet3_rx_buf_info *rbi;
571 union Vmxnet3_GenericDesc *gd;
572
573 rbi = rbi_base + ring->next2fill;
574 gd = ring->base + ring->next2fill;
575
576 if (rbi->buf_type == VMXNET3_RX_BUF_SKB) {
577 if (rbi->skb == NULL) {
Stephen Hemminger0d735f12013-01-15 07:28:26 +0000578 rbi->skb = __netdev_alloc_skb_ip_align(adapter->netdev,
579 rbi->len,
580 GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700581 if (unlikely(rbi->skb == NULL)) {
582 rq->stats.rx_buf_alloc_failure++;
583 break;
584 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700585
Andy Kingb0eb57c2013-08-23 09:33:49 -0700586 rbi->dma_addr = dma_map_single(
587 &adapter->pdev->dev,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700588 rbi->skb->data, rbi->len,
589 PCI_DMA_FROMDEVICE);
590 } else {
591 /* rx buffer skipped by the device */
592 }
593 val = VMXNET3_RXD_BTYPE_HEAD << VMXNET3_RXD_BTYPE_SHIFT;
594 } else {
595 BUG_ON(rbi->buf_type != VMXNET3_RX_BUF_PAGE ||
596 rbi->len != PAGE_SIZE);
597
598 if (rbi->page == NULL) {
599 rbi->page = alloc_page(GFP_ATOMIC);
600 if (unlikely(rbi->page == NULL)) {
601 rq->stats.rx_buf_alloc_failure++;
602 break;
603 }
Andy Kingb0eb57c2013-08-23 09:33:49 -0700604 rbi->dma_addr = dma_map_page(
605 &adapter->pdev->dev,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700606 rbi->page, 0, PAGE_SIZE,
607 PCI_DMA_FROMDEVICE);
608 } else {
609 /* rx buffers skipped by the device */
610 }
611 val = VMXNET3_RXD_BTYPE_BODY << VMXNET3_RXD_BTYPE_SHIFT;
612 }
613
614 BUG_ON(rbi->dma_addr == 0);
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000615 gd->rxd.addr = cpu_to_le64(rbi->dma_addr);
Shreyas Bhatewara5318d802011-07-05 14:34:05 +0000616 gd->dword[2] = cpu_to_le32((!ring->gen << VMXNET3_RXD_GEN_SHIFT)
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000617 | val | rbi->len);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700618
Shreyas Bhatewara5318d802011-07-05 14:34:05 +0000619 /* Fill the last buffer but dont mark it ready, or else the
620 * device will think that the queue is full */
621 if (num_allocated == num_to_alloc)
622 break;
623
624 gd->dword[2] |= cpu_to_le32(ring->gen << VMXNET3_RXD_GEN_SHIFT);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700625 num_allocated++;
626 vmxnet3_cmd_ring_adv_next2fill(ring);
627 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700628
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +0000629 netdev_dbg(adapter->netdev,
Stephen Hemminger69b9a712013-01-15 07:28:27 +0000630 "alloc_rx_buf: %d allocated, next2fill %u, next2comp %u\n",
631 num_allocated, ring->next2fill, ring->next2comp);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700632
633 /* so that the device can distinguish a full ring and an empty ring */
634 BUG_ON(num_allocated != 0 && ring->next2fill == ring->next2comp);
635
636 return num_allocated;
637}
638
639
640static void
641vmxnet3_append_frag(struct sk_buff *skb, struct Vmxnet3_RxCompDesc *rcd,
642 struct vmxnet3_rx_buf_info *rbi)
643{
644 struct skb_frag_struct *frag = skb_shinfo(skb)->frags +
645 skb_shinfo(skb)->nr_frags;
646
647 BUG_ON(skb_shinfo(skb)->nr_frags >= MAX_SKB_FRAGS);
648
Ian Campbell0e0634d2011-09-21 21:53:28 +0000649 __skb_frag_set_page(frag, rbi->page);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700650 frag->page_offset = 0;
Eric Dumazet9e903e02011-10-18 21:00:24 +0000651 skb_frag_size_set(frag, rcd->len);
652 skb->data_len += rcd->len;
Eric Dumazet5e6c3552011-10-13 11:38:17 +0000653 skb->truesize += PAGE_SIZE;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700654 skb_shinfo(skb)->nr_frags++;
655}
656
657
658static void
659vmxnet3_map_pkt(struct sk_buff *skb, struct vmxnet3_tx_ctx *ctx,
660 struct vmxnet3_tx_queue *tq, struct pci_dev *pdev,
661 struct vmxnet3_adapter *adapter)
662{
663 u32 dw2, len;
664 unsigned long buf_offset;
665 int i;
666 union Vmxnet3_GenericDesc *gdesc;
667 struct vmxnet3_tx_buf_info *tbi = NULL;
668
669 BUG_ON(ctx->copy_size > skb_headlen(skb));
670
671 /* use the previous gen bit for the SOP desc */
672 dw2 = (tq->tx_ring.gen ^ 0x1) << VMXNET3_TXD_GEN_SHIFT;
673
674 ctx->sop_txd = tq->tx_ring.base + tq->tx_ring.next2fill;
675 gdesc = ctx->sop_txd; /* both loops below can be skipped */
676
677 /* no need to map the buffer if headers are copied */
678 if (ctx->copy_size) {
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000679 ctx->sop_txd->txd.addr = cpu_to_le64(tq->data_ring.basePA +
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700680 tq->tx_ring.next2fill *
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000681 sizeof(struct Vmxnet3_TxDataDesc));
682 ctx->sop_txd->dword[2] = cpu_to_le32(dw2 | ctx->copy_size);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700683 ctx->sop_txd->dword[3] = 0;
684
685 tbi = tq->buf_info + tq->tx_ring.next2fill;
686 tbi->map_type = VMXNET3_MAP_NONE;
687
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +0000688 netdev_dbg(adapter->netdev,
Randy Dunlapf69655822009-10-16 17:54:34 -0700689 "txd[%u]: 0x%Lx 0x%x 0x%x\n",
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000690 tq->tx_ring.next2fill,
691 le64_to_cpu(ctx->sop_txd->txd.addr),
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700692 ctx->sop_txd->dword[2], ctx->sop_txd->dword[3]);
693 vmxnet3_cmd_ring_adv_next2fill(&tq->tx_ring);
694
695 /* use the right gen for non-SOP desc */
696 dw2 = tq->tx_ring.gen << VMXNET3_TXD_GEN_SHIFT;
697 }
698
699 /* linear part can use multiple tx desc if it's big */
700 len = skb_headlen(skb) - ctx->copy_size;
701 buf_offset = ctx->copy_size;
702 while (len) {
703 u32 buf_size;
704
Bhavesh Davda1f4b1612010-07-24 14:43:29 +0000705 if (len < VMXNET3_MAX_TX_BUF_SIZE) {
706 buf_size = len;
707 dw2 |= len;
708 } else {
709 buf_size = VMXNET3_MAX_TX_BUF_SIZE;
710 /* spec says that for TxDesc.len, 0 == 2^14 */
711 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700712
713 tbi = tq->buf_info + tq->tx_ring.next2fill;
714 tbi->map_type = VMXNET3_MAP_SINGLE;
Andy Kingb0eb57c2013-08-23 09:33:49 -0700715 tbi->dma_addr = dma_map_single(&adapter->pdev->dev,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700716 skb->data + buf_offset, buf_size,
717 PCI_DMA_TODEVICE);
718
Bhavesh Davda1f4b1612010-07-24 14:43:29 +0000719 tbi->len = buf_size;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700720
721 gdesc = tq->tx_ring.base + tq->tx_ring.next2fill;
722 BUG_ON(gdesc->txd.gen == tq->tx_ring.gen);
723
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000724 gdesc->txd.addr = cpu_to_le64(tbi->dma_addr);
Bhavesh Davda1f4b1612010-07-24 14:43:29 +0000725 gdesc->dword[2] = cpu_to_le32(dw2);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700726 gdesc->dword[3] = 0;
727
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +0000728 netdev_dbg(adapter->netdev,
Randy Dunlapf69655822009-10-16 17:54:34 -0700729 "txd[%u]: 0x%Lx 0x%x 0x%x\n",
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000730 tq->tx_ring.next2fill, le64_to_cpu(gdesc->txd.addr),
731 le32_to_cpu(gdesc->dword[2]), gdesc->dword[3]);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700732 vmxnet3_cmd_ring_adv_next2fill(&tq->tx_ring);
733 dw2 = tq->tx_ring.gen << VMXNET3_TXD_GEN_SHIFT;
734
735 len -= buf_size;
736 buf_offset += buf_size;
737 }
738
739 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000740 const struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i];
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000741 u32 buf_size;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700742
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000743 buf_offset = 0;
744 len = skb_frag_size(frag);
745 while (len) {
746 tbi = tq->buf_info + tq->tx_ring.next2fill;
747 if (len < VMXNET3_MAX_TX_BUF_SIZE) {
748 buf_size = len;
749 dw2 |= len;
750 } else {
751 buf_size = VMXNET3_MAX_TX_BUF_SIZE;
752 /* spec says that for TxDesc.len, 0 == 2^14 */
753 }
754 tbi->map_type = VMXNET3_MAP_PAGE;
755 tbi->dma_addr = skb_frag_dma_map(&adapter->pdev->dev, frag,
756 buf_offset, buf_size,
757 DMA_TO_DEVICE);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700758
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000759 tbi->len = buf_size;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700760
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000761 gdesc = tq->tx_ring.base + tq->tx_ring.next2fill;
762 BUG_ON(gdesc->txd.gen == tq->tx_ring.gen);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700763
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000764 gdesc->txd.addr = cpu_to_le64(tbi->dma_addr);
765 gdesc->dword[2] = cpu_to_le32(dw2);
766 gdesc->dword[3] = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700767
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +0000768 netdev_dbg(adapter->netdev,
Hans Wennborg8b429462014-08-05 21:42:41 -0700769 "txd[%u]: 0x%llx %u %u\n",
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000770 tq->tx_ring.next2fill, le64_to_cpu(gdesc->txd.addr),
771 le32_to_cpu(gdesc->dword[2]), gdesc->dword[3]);
772 vmxnet3_cmd_ring_adv_next2fill(&tq->tx_ring);
773 dw2 = tq->tx_ring.gen << VMXNET3_TXD_GEN_SHIFT;
774
775 len -= buf_size;
776 buf_offset += buf_size;
777 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700778 }
779
780 ctx->eop_txd = gdesc;
781
782 /* set the last buf_info for the pkt */
783 tbi->skb = skb;
784 tbi->sop_idx = ctx->sop_txd - tq->tx_ring.base;
785}
786
787
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000788/* Init all tx queues */
789static void
790vmxnet3_tq_init_all(struct vmxnet3_adapter *adapter)
791{
792 int i;
793
794 for (i = 0; i < adapter->num_tx_queues; i++)
795 vmxnet3_tq_init(&adapter->tx_queue[i], adapter);
796}
797
798
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700799/*
800 * parse and copy relevant protocol headers:
801 * For a tso pkt, relevant headers are L2/3/4 including options
802 * For a pkt requesting csum offloading, they are L2/3 and may include L4
803 * if it's a TCP/UDP pkt
804 *
805 * Returns:
806 * -1: error happens during parsing
807 * 0: protocol headers parsed, but too big to be copied
808 * 1: protocol headers parsed and copied
809 *
810 * Other effects:
811 * 1. related *ctx fields are updated.
812 * 2. ctx->copy_size is # of bytes copied
813 * 3. the portion copied is guaranteed to be in the linear part
814 *
815 */
816static int
817vmxnet3_parse_and_copy_hdr(struct sk_buff *skb, struct vmxnet3_tx_queue *tq,
818 struct vmxnet3_tx_ctx *ctx,
819 struct vmxnet3_adapter *adapter)
820{
821 struct Vmxnet3_TxDataDesc *tdd;
822
Michał Mirosław0d0b1672010-12-14 15:24:08 +0000823 if (ctx->mss) { /* TSO */
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700824 ctx->eth_ip_hdr_size = skb_transport_offset(skb);
Eric Dumazet8bca5d12012-01-24 19:47:21 +0000825 ctx->l4_hdr_size = tcp_hdrlen(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700826 ctx->copy_size = ctx->eth_ip_hdr_size + ctx->l4_hdr_size;
827 } else {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700828 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Michał Mirosław0d0b1672010-12-14 15:24:08 +0000829 ctx->eth_ip_hdr_size = skb_checksum_start_offset(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700830
831 if (ctx->ipv4) {
Eric Dumazet8bca5d12012-01-24 19:47:21 +0000832 const struct iphdr *iph = ip_hdr(skb);
833
Shreyas Bhatewara39d4a962011-01-14 14:59:41 +0000834 if (iph->protocol == IPPROTO_TCP)
Eric Dumazet8bca5d12012-01-24 19:47:21 +0000835 ctx->l4_hdr_size = tcp_hdrlen(skb);
Shreyas Bhatewara39d4a962011-01-14 14:59:41 +0000836 else if (iph->protocol == IPPROTO_UDP)
David S. Millerf6a1ad42012-03-05 21:16:26 -0500837 ctx->l4_hdr_size = sizeof(struct udphdr);
Shreyas Bhatewara39d4a962011-01-14 14:59:41 +0000838 else
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700839 ctx->l4_hdr_size = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700840 } else {
841 /* for simplicity, don't copy L4 headers */
842 ctx->l4_hdr_size = 0;
843 }
Neil Hormanb2032622012-02-16 01:48:56 +0000844 ctx->copy_size = min(ctx->eth_ip_hdr_size +
845 ctx->l4_hdr_size, skb->len);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700846 } else {
847 ctx->eth_ip_hdr_size = 0;
848 ctx->l4_hdr_size = 0;
849 /* copy as much as allowed */
850 ctx->copy_size = min((unsigned int)VMXNET3_HDR_COPY_SIZE
851 , skb_headlen(skb));
852 }
853
854 /* make sure headers are accessible directly */
855 if (unlikely(!pskb_may_pull(skb, ctx->copy_size)))
856 goto err;
857 }
858
859 if (unlikely(ctx->copy_size > VMXNET3_HDR_COPY_SIZE)) {
860 tq->stats.oversized_hdr++;
861 ctx->copy_size = 0;
862 return 0;
863 }
864
865 tdd = tq->data_ring.base + tq->tx_ring.next2fill;
866
867 memcpy(tdd->data, skb->data, ctx->copy_size);
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +0000868 netdev_dbg(adapter->netdev,
Randy Dunlapf69655822009-10-16 17:54:34 -0700869 "copy %u bytes to dataRing[%u]\n",
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700870 ctx->copy_size, tq->tx_ring.next2fill);
871 return 1;
872
873err:
874 return -1;
875}
876
877
878static void
879vmxnet3_prepare_tso(struct sk_buff *skb,
880 struct vmxnet3_tx_ctx *ctx)
881{
Eric Dumazet8bca5d12012-01-24 19:47:21 +0000882 struct tcphdr *tcph = tcp_hdr(skb);
883
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700884 if (ctx->ipv4) {
Eric Dumazet8bca5d12012-01-24 19:47:21 +0000885 struct iphdr *iph = ip_hdr(skb);
886
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700887 iph->check = 0;
888 tcph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr, 0,
889 IPPROTO_TCP, 0);
890 } else {
Eric Dumazet8bca5d12012-01-24 19:47:21 +0000891 struct ipv6hdr *iph = ipv6_hdr(skb);
892
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700893 tcph->check = ~csum_ipv6_magic(&iph->saddr, &iph->daddr, 0,
894 IPPROTO_TCP, 0);
895 }
896}
897
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000898static int txd_estimate(const struct sk_buff *skb)
899{
900 int count = VMXNET3_TXD_NEEDED(skb_headlen(skb)) + 1;
901 int i;
902
903 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
904 const struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i];
905
906 count += VMXNET3_TXD_NEEDED(skb_frag_size(frag));
907 }
908 return count;
909}
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700910
911/*
912 * Transmits a pkt thru a given tq
913 * Returns:
914 * NETDEV_TX_OK: descriptors are setup successfully
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300915 * NETDEV_TX_OK: error occurred, the pkt is dropped
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700916 * NETDEV_TX_BUSY: tx ring is full, queue is stopped
917 *
918 * Side-effects:
919 * 1. tx ring may be changed
920 * 2. tq stats may be updated accordingly
921 * 3. shared->txNumDeferred may be updated
922 */
923
924static int
925vmxnet3_tq_xmit(struct sk_buff *skb, struct vmxnet3_tx_queue *tq,
926 struct vmxnet3_adapter *adapter, struct net_device *netdev)
927{
928 int ret;
929 u32 count;
930 unsigned long flags;
931 struct vmxnet3_tx_ctx ctx;
932 union Vmxnet3_GenericDesc *gdesc;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +0000933#ifdef __BIG_ENDIAN_BITFIELD
934 /* Use temporary descriptor to avoid touching bits multiple times */
935 union Vmxnet3_GenericDesc tempTxDesc;
936#endif
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700937
Eric Dumazeta4d7e482012-10-29 07:30:49 +0000938 count = txd_estimate(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700939
Jesse Gross72e85c42011-06-23 13:04:39 +0000940 ctx.ipv4 = (vlan_get_protocol(skb) == cpu_to_be16(ETH_P_IP));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700941
942 ctx.mss = skb_shinfo(skb)->gso_size;
943 if (ctx.mss) {
944 if (skb_header_cloned(skb)) {
945 if (unlikely(pskb_expand_head(skb, 0, 0,
946 GFP_ATOMIC) != 0)) {
947 tq->stats.drop_tso++;
948 goto drop_pkt;
949 }
950 tq->stats.copy_skb_header++;
951 }
952 vmxnet3_prepare_tso(skb, &ctx);
953 } else {
954 if (unlikely(count > VMXNET3_MAX_TXD_PER_PKT)) {
955
956 /* non-tso pkts must not use more than
957 * VMXNET3_MAX_TXD_PER_PKT entries
958 */
959 if (skb_linearize(skb) != 0) {
960 tq->stats.drop_too_many_frags++;
961 goto drop_pkt;
962 }
963 tq->stats.linearized++;
964
965 /* recalculate the # of descriptors to use */
966 count = VMXNET3_TXD_NEEDED(skb_headlen(skb)) + 1;
967 }
968 }
969
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000970 spin_lock_irqsave(&tq->tx_lock, flags);
971
972 if (count > vmxnet3_cmd_ring_desc_avail(&tq->tx_ring)) {
973 tq->stats.tx_ring_full++;
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +0000974 netdev_dbg(adapter->netdev,
Shreyas Bhatewara09c50882010-11-19 10:55:24 +0000975 "tx queue stopped on %s, next2comp %u"
976 " next2fill %u\n", adapter->netdev->name,
977 tq->tx_ring.next2comp, tq->tx_ring.next2fill);
978
979 vmxnet3_tq_stop(tq, adapter);
980 spin_unlock_irqrestore(&tq->tx_lock, flags);
981 return NETDEV_TX_BUSY;
982 }
983
984
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -0700985 ret = vmxnet3_parse_and_copy_hdr(skb, tq, &ctx, adapter);
986 if (ret >= 0) {
987 BUG_ON(ret <= 0 && ctx.copy_size != 0);
988 /* hdrs parsed, check against other limits */
989 if (ctx.mss) {
990 if (unlikely(ctx.eth_ip_hdr_size + ctx.l4_hdr_size >
991 VMXNET3_MAX_TX_BUF_SIZE)) {
992 goto hdr_too_big;
993 }
994 } else {
995 if (skb->ip_summed == CHECKSUM_PARTIAL) {
996 if (unlikely(ctx.eth_ip_hdr_size +
997 skb->csum_offset >
998 VMXNET3_MAX_CSUM_OFFSET)) {
999 goto hdr_too_big;
1000 }
1001 }
1002 }
1003 } else {
1004 tq->stats.drop_hdr_inspect_err++;
Dan Carpenterf955e142010-12-20 03:03:15 +00001005 goto unlock_drop_pkt;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001006 }
1007
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001008 /* fill tx descs related to addr & len */
1009 vmxnet3_map_pkt(skb, &ctx, tq, adapter->pdev, adapter);
1010
1011 /* setup the EOP desc */
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001012 ctx.eop_txd->dword[3] = cpu_to_le32(VMXNET3_TXD_CQ | VMXNET3_TXD_EOP);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001013
1014 /* setup the SOP desc */
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001015#ifdef __BIG_ENDIAN_BITFIELD
1016 gdesc = &tempTxDesc;
1017 gdesc->dword[2] = ctx.sop_txd->dword[2];
1018 gdesc->dword[3] = ctx.sop_txd->dword[3];
1019#else
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001020 gdesc = ctx.sop_txd;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001021#endif
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001022 if (ctx.mss) {
1023 gdesc->txd.hlen = ctx.eth_ip_hdr_size + ctx.l4_hdr_size;
1024 gdesc->txd.om = VMXNET3_OM_TSO;
1025 gdesc->txd.msscof = ctx.mss;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001026 le32_add_cpu(&tq->shared->txNumDeferred, (skb->len -
1027 gdesc->txd.hlen + ctx.mss - 1) / ctx.mss);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001028 } else {
1029 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1030 gdesc->txd.hlen = ctx.eth_ip_hdr_size;
1031 gdesc->txd.om = VMXNET3_OM_CSUM;
1032 gdesc->txd.msscof = ctx.eth_ip_hdr_size +
1033 skb->csum_offset;
1034 } else {
1035 gdesc->txd.om = 0;
1036 gdesc->txd.msscof = 0;
1037 }
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001038 le32_add_cpu(&tq->shared->txNumDeferred, 1);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001039 }
1040
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001041 if (skb_vlan_tag_present(skb)) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001042 gdesc->txd.ti = 1;
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001043 gdesc->txd.tci = skb_vlan_tag_get(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001044 }
1045
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001046 /* finally flips the GEN bit of the SOP desc. */
1047 gdesc->dword[2] = cpu_to_le32(le32_to_cpu(gdesc->dword[2]) ^
1048 VMXNET3_TXD_GEN);
1049#ifdef __BIG_ENDIAN_BITFIELD
1050 /* Finished updating in bitfields of Tx Desc, so write them in original
1051 * place.
1052 */
1053 vmxnet3_TxDescToLe((struct Vmxnet3_TxDesc *)gdesc,
1054 (struct Vmxnet3_TxDesc *)ctx.sop_txd);
1055 gdesc = ctx.sop_txd;
1056#endif
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +00001057 netdev_dbg(adapter->netdev,
Randy Dunlapf69655822009-10-16 17:54:34 -07001058 "txd[%u]: SOP 0x%Lx 0x%x 0x%x\n",
Joe Perchesc2fd03a2012-06-04 12:44:18 +00001059 (u32)(ctx.sop_txd -
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001060 tq->tx_ring.base), le64_to_cpu(gdesc->txd.addr),
1061 le32_to_cpu(gdesc->dword[2]), le32_to_cpu(gdesc->dword[3]));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001062
1063 spin_unlock_irqrestore(&tq->tx_lock, flags);
1064
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001065 if (le32_to_cpu(tq->shared->txNumDeferred) >=
1066 le32_to_cpu(tq->shared->txThreshold)) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001067 tq->shared->txNumDeferred = 0;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001068 VMXNET3_WRITE_BAR0_REG(adapter,
1069 VMXNET3_REG_TXPROD + tq->qid * 8,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001070 tq->tx_ring.next2fill);
1071 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001072
1073 return NETDEV_TX_OK;
1074
1075hdr_too_big:
1076 tq->stats.drop_oversized_hdr++;
Dan Carpenterf955e142010-12-20 03:03:15 +00001077unlock_drop_pkt:
1078 spin_unlock_irqrestore(&tq->tx_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001079drop_pkt:
1080 tq->stats.drop_total++;
Eric W. Biedermanb1b71812014-03-15 18:31:16 -07001081 dev_kfree_skb_any(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001082 return NETDEV_TX_OK;
1083}
1084
1085
1086static netdev_tx_t
1087vmxnet3_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
1088{
1089 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001090
stephen hemminger96800ee2012-11-13 13:53:28 +00001091 BUG_ON(skb->queue_mapping > adapter->num_tx_queues);
1092 return vmxnet3_tq_xmit(skb,
1093 &adapter->tx_queue[skb->queue_mapping],
1094 adapter, netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001095}
1096
1097
1098static void
1099vmxnet3_rx_csum(struct vmxnet3_adapter *adapter,
1100 struct sk_buff *skb,
1101 union Vmxnet3_GenericDesc *gdesc)
1102{
Michał Mirosława0d27302011-04-18 13:31:21 +00001103 if (!gdesc->rcd.cnc && adapter->netdev->features & NETIF_F_RXCSUM) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001104 /* typical case: TCP/UDP over IP and both csums are correct */
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001105 if ((le32_to_cpu(gdesc->dword[3]) & VMXNET3_RCD_CSUM_OK) ==
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001106 VMXNET3_RCD_CSUM_OK) {
1107 skb->ip_summed = CHECKSUM_UNNECESSARY;
1108 BUG_ON(!(gdesc->rcd.tcp || gdesc->rcd.udp));
1109 BUG_ON(!(gdesc->rcd.v4 || gdesc->rcd.v6));
1110 BUG_ON(gdesc->rcd.frg);
1111 } else {
1112 if (gdesc->rcd.csum) {
1113 skb->csum = htons(gdesc->rcd.csum);
1114 skb->ip_summed = CHECKSUM_PARTIAL;
1115 } else {
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001116 skb_checksum_none_assert(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001117 }
1118 }
1119 } else {
Eric Dumazetbc8acf22010-09-02 13:07:41 -07001120 skb_checksum_none_assert(skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001121 }
1122}
1123
1124
1125static void
1126vmxnet3_rx_error(struct vmxnet3_rx_queue *rq, struct Vmxnet3_RxCompDesc *rcd,
1127 struct vmxnet3_rx_ctx *ctx, struct vmxnet3_adapter *adapter)
1128{
1129 rq->stats.drop_err++;
1130 if (!rcd->fcs)
1131 rq->stats.drop_fcs++;
1132
1133 rq->stats.drop_total++;
1134
1135 /*
1136 * We do not unmap and chain the rx buffer to the skb.
1137 * We basically pretend this buffer is not used and will be recycled
1138 * by vmxnet3_rq_alloc_rx_buf()
1139 */
1140
1141 /*
1142 * ctx->skb may be NULL if this is the first and the only one
1143 * desc for the pkt
1144 */
1145 if (ctx->skb)
1146 dev_kfree_skb_irq(ctx->skb);
1147
1148 ctx->skb = NULL;
1149}
1150
1151
1152static int
1153vmxnet3_rq_rx_complete(struct vmxnet3_rx_queue *rq,
1154 struct vmxnet3_adapter *adapter, int quota)
1155{
Joe Perches215faf92010-12-21 02:16:10 -08001156 static const u32 rxprod_reg[2] = {
1157 VMXNET3_REG_RXPROD, VMXNET3_REG_RXPROD2
1158 };
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001159 u32 num_rxd = 0;
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001160 bool skip_page_frags = false;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001161 struct Vmxnet3_RxCompDesc *rcd;
1162 struct vmxnet3_rx_ctx *ctx = &rq->rx_ctx;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001163#ifdef __BIG_ENDIAN_BITFIELD
1164 struct Vmxnet3_RxDesc rxCmdDesc;
1165 struct Vmxnet3_RxCompDesc rxComp;
1166#endif
1167 vmxnet3_getRxComp(rcd, &rq->comp_ring.base[rq->comp_ring.next2proc].rcd,
1168 &rxComp);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001169 while (rcd->gen == rq->comp_ring.gen) {
1170 struct vmxnet3_rx_buf_info *rbi;
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001171 struct sk_buff *skb, *new_skb = NULL;
1172 struct page *new_page = NULL;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001173 int num_to_alloc;
1174 struct Vmxnet3_RxDesc *rxd;
1175 u32 idx, ring_idx;
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001176 struct vmxnet3_cmd_ring *ring = NULL;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001177 if (num_rxd >= quota) {
1178 /* we may stop even before we see the EOP desc of
1179 * the current pkt
1180 */
1181 break;
1182 }
1183 num_rxd++;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001184 BUG_ON(rcd->rqID != rq->qid && rcd->rqID != rq->qid2);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001185 idx = rcd->rxdIdx;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001186 ring_idx = rcd->rqID < adapter->num_rx_queues ? 0 : 1;
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001187 ring = rq->rx_ring + ring_idx;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001188 vmxnet3_getRxDesc(rxd, &rq->rx_ring[ring_idx].base[idx].rxd,
1189 &rxCmdDesc);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001190 rbi = rq->buf_info[ring_idx] + idx;
1191
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001192 BUG_ON(rxd->addr != rbi->dma_addr ||
1193 rxd->len != rbi->len);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001194
1195 if (unlikely(rcd->eop && rcd->err)) {
1196 vmxnet3_rx_error(rq, rcd, ctx, adapter);
1197 goto rcd_done;
1198 }
1199
1200 if (rcd->sop) { /* first buf of the pkt */
1201 BUG_ON(rxd->btype != VMXNET3_RXD_BTYPE_HEAD ||
1202 rcd->rqID != rq->qid);
1203
1204 BUG_ON(rbi->buf_type != VMXNET3_RX_BUF_SKB);
1205 BUG_ON(ctx->skb != NULL || rbi->skb == NULL);
1206
1207 if (unlikely(rcd->len == 0)) {
1208 /* Pretend the rx buffer is skipped. */
1209 BUG_ON(!(rcd->sop && rcd->eop));
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +00001210 netdev_dbg(adapter->netdev,
Randy Dunlapf69655822009-10-16 17:54:34 -07001211 "rxRing[%u][%u] 0 length\n",
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001212 ring_idx, idx);
1213 goto rcd_done;
1214 }
1215
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001216 skip_page_frags = false;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001217 ctx->skb = rbi->skb;
Stephen Hemminger0d735f12013-01-15 07:28:26 +00001218 new_skb = netdev_alloc_skb_ip_align(adapter->netdev,
1219 rbi->len);
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001220 if (new_skb == NULL) {
1221 /* Skb allocation failed, do not handover this
1222 * skb to stack. Reuse it. Drop the existing pkt
1223 */
1224 rq->stats.rx_buf_alloc_failure++;
1225 ctx->skb = NULL;
1226 rq->stats.drop_total++;
1227 skip_page_frags = true;
1228 goto rcd_done;
1229 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001230
Andy Kingb0eb57c2013-08-23 09:33:49 -07001231 dma_unmap_single(&adapter->pdev->dev, rbi->dma_addr,
1232 rbi->len,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001233 PCI_DMA_FROMDEVICE);
1234
Stephen Hemminger7db11f72013-01-15 07:28:35 +00001235#ifdef VMXNET3_RSS
1236 if (rcd->rssType != VMXNET3_RCD_RSS_TYPE_NONE &&
1237 (adapter->netdev->features & NETIF_F_RXHASH))
Michal Schmidt2c15a152013-12-20 13:16:57 +01001238 skb_set_hash(ctx->skb,
1239 le32_to_cpu(rcd->rssHash),
Tom Herbert0b680702013-12-17 23:32:08 -08001240 PKT_HASH_TYPE_L3);
Stephen Hemminger7db11f72013-01-15 07:28:35 +00001241#endif
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001242 skb_put(ctx->skb, rcd->len);
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001243
1244 /* Immediate refill */
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001245 rbi->skb = new_skb;
Andy Kingb0eb57c2013-08-23 09:33:49 -07001246 rbi->dma_addr = dma_map_single(&adapter->pdev->dev,
stephen hemminger96800ee2012-11-13 13:53:28 +00001247 rbi->skb->data, rbi->len,
1248 PCI_DMA_FROMDEVICE);
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001249 rxd->addr = cpu_to_le64(rbi->dma_addr);
1250 rxd->len = rbi->len;
1251
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001252 } else {
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001253 BUG_ON(ctx->skb == NULL && !skip_page_frags);
1254
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001255 /* non SOP buffer must be type 1 in most cases */
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001256 BUG_ON(rbi->buf_type != VMXNET3_RX_BUF_PAGE);
1257 BUG_ON(rxd->btype != VMXNET3_RXD_BTYPE_BODY);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001258
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001259 /* If an sop buffer was dropped, skip all
1260 * following non-sop fragments. They will be reused.
1261 */
1262 if (skip_page_frags)
1263 goto rcd_done;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001264
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001265 new_page = alloc_page(GFP_ATOMIC);
1266 if (unlikely(new_page == NULL)) {
1267 /* Replacement page frag could not be allocated.
1268 * Reuse this page. Drop the pkt and free the
1269 * skb which contained this page as a frag. Skip
1270 * processing all the following non-sop frags.
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001271 */
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001272 rq->stats.rx_buf_alloc_failure++;
1273 dev_kfree_skb(ctx->skb);
1274 ctx->skb = NULL;
1275 skip_page_frags = true;
1276 goto rcd_done;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001277 }
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001278
1279 if (rcd->len) {
Andy Kingb0eb57c2013-08-23 09:33:49 -07001280 dma_unmap_page(&adapter->pdev->dev,
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001281 rbi->dma_addr, rbi->len,
1282 PCI_DMA_FROMDEVICE);
1283
1284 vmxnet3_append_frag(ctx->skb, rcd, rbi);
1285 }
1286
1287 /* Immediate refill */
1288 rbi->page = new_page;
Andy Kingb0eb57c2013-08-23 09:33:49 -07001289 rbi->dma_addr = dma_map_page(&adapter->pdev->dev,
1290 rbi->page,
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001291 0, PAGE_SIZE,
1292 PCI_DMA_FROMDEVICE);
1293 rxd->addr = cpu_to_le64(rbi->dma_addr);
1294 rxd->len = rbi->len;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001295 }
1296
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001297
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001298 skb = ctx->skb;
1299 if (rcd->eop) {
1300 skb->len += skb->data_len;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001301
1302 vmxnet3_rx_csum(adapter, skb,
1303 (union Vmxnet3_GenericDesc *)rcd);
1304 skb->protocol = eth_type_trans(skb, adapter->netdev);
1305
Jesse Gross72e85c42011-06-23 13:04:39 +00001306 if (unlikely(rcd->ts))
Patrick McHardy86a9bad2013-04-19 02:04:30 +00001307 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), rcd->tci);
Jesse Gross72e85c42011-06-23 13:04:39 +00001308
Jesse Gross213ade82011-06-24 14:24:35 +00001309 if (adapter->netdev->features & NETIF_F_LRO)
1310 netif_receive_skb(skb);
1311 else
1312 napi_gro_receive(&rq->napi, skb);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001313
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001314 ctx->skb = NULL;
1315 }
1316
1317rcd_done:
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001318 /* device may have skipped some rx descs */
1319 ring->next2comp = idx;
1320 num_to_alloc = vmxnet3_cmd_ring_desc_avail(ring);
1321 ring = rq->rx_ring + ring_idx;
1322 while (num_to_alloc) {
1323 vmxnet3_getRxDesc(rxd, &ring->base[ring->next2fill].rxd,
1324 &rxCmdDesc);
1325 BUG_ON(!rxd->addr);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001326
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001327 /* Recv desc is ready to be used by the device */
1328 rxd->gen = ring->gen;
1329 vmxnet3_cmd_ring_adv_next2fill(ring);
1330 num_to_alloc--;
1331 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001332
Shreyas Bhatewara5318d802011-07-05 14:34:05 +00001333 /* if needed, update the register */
1334 if (unlikely(rq->shared->updateRxProd)) {
1335 VMXNET3_WRITE_BAR0_REG(adapter,
stephen hemminger96800ee2012-11-13 13:53:28 +00001336 rxprod_reg[ring_idx] + rq->qid * 8,
1337 ring->next2fill);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001338 }
1339
1340 vmxnet3_comp_ring_adv_next2proc(&rq->comp_ring);
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001341 vmxnet3_getRxComp(rcd,
stephen hemminger96800ee2012-11-13 13:53:28 +00001342 &rq->comp_ring.base[rq->comp_ring.next2proc].rcd, &rxComp);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001343 }
1344
1345 return num_rxd;
1346}
1347
1348
1349static void
1350vmxnet3_rq_cleanup(struct vmxnet3_rx_queue *rq,
1351 struct vmxnet3_adapter *adapter)
1352{
1353 u32 i, ring_idx;
1354 struct Vmxnet3_RxDesc *rxd;
1355
1356 for (ring_idx = 0; ring_idx < 2; ring_idx++) {
1357 for (i = 0; i < rq->rx_ring[ring_idx].size; i++) {
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001358#ifdef __BIG_ENDIAN_BITFIELD
1359 struct Vmxnet3_RxDesc rxDesc;
1360#endif
1361 vmxnet3_getRxDesc(rxd,
1362 &rq->rx_ring[ring_idx].base[i].rxd, &rxDesc);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001363
1364 if (rxd->btype == VMXNET3_RXD_BTYPE_HEAD &&
1365 rq->buf_info[ring_idx][i].skb) {
Andy Kingb0eb57c2013-08-23 09:33:49 -07001366 dma_unmap_single(&adapter->pdev->dev, rxd->addr,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001367 rxd->len, PCI_DMA_FROMDEVICE);
1368 dev_kfree_skb(rq->buf_info[ring_idx][i].skb);
1369 rq->buf_info[ring_idx][i].skb = NULL;
1370 } else if (rxd->btype == VMXNET3_RXD_BTYPE_BODY &&
1371 rq->buf_info[ring_idx][i].page) {
Andy Kingb0eb57c2013-08-23 09:33:49 -07001372 dma_unmap_page(&adapter->pdev->dev, rxd->addr,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001373 rxd->len, PCI_DMA_FROMDEVICE);
1374 put_page(rq->buf_info[ring_idx][i].page);
1375 rq->buf_info[ring_idx][i].page = NULL;
1376 }
1377 }
1378
1379 rq->rx_ring[ring_idx].gen = VMXNET3_INIT_GEN;
1380 rq->rx_ring[ring_idx].next2fill =
1381 rq->rx_ring[ring_idx].next2comp = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001382 }
1383
1384 rq->comp_ring.gen = VMXNET3_INIT_GEN;
1385 rq->comp_ring.next2proc = 0;
1386}
1387
1388
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001389static void
1390vmxnet3_rq_cleanup_all(struct vmxnet3_adapter *adapter)
1391{
1392 int i;
1393
1394 for (i = 0; i < adapter->num_rx_queues; i++)
1395 vmxnet3_rq_cleanup(&adapter->rx_queue[i], adapter);
1396}
1397
1398
stephen hemminger280b74f2013-02-22 08:26:29 +00001399static void vmxnet3_rq_destroy(struct vmxnet3_rx_queue *rq,
1400 struct vmxnet3_adapter *adapter)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001401{
1402 int i;
1403 int j;
1404
1405 /* all rx buffers must have already been freed */
1406 for (i = 0; i < 2; i++) {
1407 if (rq->buf_info[i]) {
1408 for (j = 0; j < rq->rx_ring[i].size; j++)
1409 BUG_ON(rq->buf_info[i][j].page != NULL);
1410 }
1411 }
1412
1413
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001414 for (i = 0; i < 2; i++) {
1415 if (rq->rx_ring[i].base) {
Andy Kingb0eb57c2013-08-23 09:33:49 -07001416 dma_free_coherent(&adapter->pdev->dev,
1417 rq->rx_ring[i].size
1418 * sizeof(struct Vmxnet3_RxDesc),
1419 rq->rx_ring[i].base,
1420 rq->rx_ring[i].basePA);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001421 rq->rx_ring[i].base = NULL;
1422 }
1423 rq->buf_info[i] = NULL;
1424 }
1425
1426 if (rq->comp_ring.base) {
Andy Kingb0eb57c2013-08-23 09:33:49 -07001427 dma_free_coherent(&adapter->pdev->dev, rq->comp_ring.size
1428 * sizeof(struct Vmxnet3_RxCompDesc),
1429 rq->comp_ring.base, rq->comp_ring.basePA);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001430 rq->comp_ring.base = NULL;
1431 }
Andy Kingb0eb57c2013-08-23 09:33:49 -07001432
1433 if (rq->buf_info[0]) {
1434 size_t sz = sizeof(struct vmxnet3_rx_buf_info) *
1435 (rq->rx_ring[0].size + rq->rx_ring[1].size);
1436 dma_free_coherent(&adapter->pdev->dev, sz, rq->buf_info[0],
1437 rq->buf_info_pa);
1438 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001439}
1440
1441
1442static int
1443vmxnet3_rq_init(struct vmxnet3_rx_queue *rq,
1444 struct vmxnet3_adapter *adapter)
1445{
1446 int i;
1447
1448 /* initialize buf_info */
1449 for (i = 0; i < rq->rx_ring[0].size; i++) {
1450
1451 /* 1st buf for a pkt is skbuff */
1452 if (i % adapter->rx_buf_per_pkt == 0) {
1453 rq->buf_info[0][i].buf_type = VMXNET3_RX_BUF_SKB;
1454 rq->buf_info[0][i].len = adapter->skb_buf_size;
1455 } else { /* subsequent bufs for a pkt is frag */
1456 rq->buf_info[0][i].buf_type = VMXNET3_RX_BUF_PAGE;
1457 rq->buf_info[0][i].len = PAGE_SIZE;
1458 }
1459 }
1460 for (i = 0; i < rq->rx_ring[1].size; i++) {
1461 rq->buf_info[1][i].buf_type = VMXNET3_RX_BUF_PAGE;
1462 rq->buf_info[1][i].len = PAGE_SIZE;
1463 }
1464
1465 /* reset internal state and allocate buffers for both rings */
1466 for (i = 0; i < 2; i++) {
1467 rq->rx_ring[i].next2fill = rq->rx_ring[i].next2comp = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001468
1469 memset(rq->rx_ring[i].base, 0, rq->rx_ring[i].size *
1470 sizeof(struct Vmxnet3_RxDesc));
1471 rq->rx_ring[i].gen = VMXNET3_INIT_GEN;
1472 }
1473 if (vmxnet3_rq_alloc_rx_buf(rq, 0, rq->rx_ring[0].size - 1,
1474 adapter) == 0) {
1475 /* at least has 1 rx buffer for the 1st ring */
1476 return -ENOMEM;
1477 }
1478 vmxnet3_rq_alloc_rx_buf(rq, 1, rq->rx_ring[1].size - 1, adapter);
1479
1480 /* reset the comp ring */
1481 rq->comp_ring.next2proc = 0;
1482 memset(rq->comp_ring.base, 0, rq->comp_ring.size *
1483 sizeof(struct Vmxnet3_RxCompDesc));
1484 rq->comp_ring.gen = VMXNET3_INIT_GEN;
1485
1486 /* reset rxctx */
1487 rq->rx_ctx.skb = NULL;
1488
1489 /* stats are not reset */
1490 return 0;
1491}
1492
1493
1494static int
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001495vmxnet3_rq_init_all(struct vmxnet3_adapter *adapter)
1496{
1497 int i, err = 0;
1498
1499 for (i = 0; i < adapter->num_rx_queues; i++) {
1500 err = vmxnet3_rq_init(&adapter->rx_queue[i], adapter);
1501 if (unlikely(err)) {
1502 dev_err(&adapter->netdev->dev, "%s: failed to "
1503 "initialize rx queue%i\n",
1504 adapter->netdev->name, i);
1505 break;
1506 }
1507 }
1508 return err;
1509
1510}
1511
1512
1513static int
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001514vmxnet3_rq_create(struct vmxnet3_rx_queue *rq, struct vmxnet3_adapter *adapter)
1515{
1516 int i;
1517 size_t sz;
1518 struct vmxnet3_rx_buf_info *bi;
1519
1520 for (i = 0; i < 2; i++) {
1521
1522 sz = rq->rx_ring[i].size * sizeof(struct Vmxnet3_RxDesc);
Andy Kingb0eb57c2013-08-23 09:33:49 -07001523 rq->rx_ring[i].base = dma_alloc_coherent(
1524 &adapter->pdev->dev, sz,
1525 &rq->rx_ring[i].basePA,
1526 GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001527 if (!rq->rx_ring[i].base) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00001528 netdev_err(adapter->netdev,
1529 "failed to allocate rx ring %d\n", i);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001530 goto err;
1531 }
1532 }
1533
1534 sz = rq->comp_ring.size * sizeof(struct Vmxnet3_RxCompDesc);
Andy Kingb0eb57c2013-08-23 09:33:49 -07001535 rq->comp_ring.base = dma_alloc_coherent(&adapter->pdev->dev, sz,
1536 &rq->comp_ring.basePA,
1537 GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001538 if (!rq->comp_ring.base) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00001539 netdev_err(adapter->netdev, "failed to allocate rx comp ring\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001540 goto err;
1541 }
1542
1543 sz = sizeof(struct vmxnet3_rx_buf_info) * (rq->rx_ring[0].size +
1544 rq->rx_ring[1].size);
Andy Kingb0eb57c2013-08-23 09:33:49 -07001545 bi = dma_zalloc_coherent(&adapter->pdev->dev, sz, &rq->buf_info_pa,
1546 GFP_KERNEL);
Joe Perchese404dec2012-01-29 12:56:23 +00001547 if (!bi)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001548 goto err;
Joe Perchese404dec2012-01-29 12:56:23 +00001549
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001550 rq->buf_info[0] = bi;
1551 rq->buf_info[1] = bi + rq->rx_ring[0].size;
1552
1553 return 0;
1554
1555err:
1556 vmxnet3_rq_destroy(rq, adapter);
1557 return -ENOMEM;
1558}
1559
1560
1561static int
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001562vmxnet3_rq_create_all(struct vmxnet3_adapter *adapter)
1563{
1564 int i, err = 0;
1565
1566 for (i = 0; i < adapter->num_rx_queues; i++) {
1567 err = vmxnet3_rq_create(&adapter->rx_queue[i], adapter);
1568 if (unlikely(err)) {
1569 dev_err(&adapter->netdev->dev,
1570 "%s: failed to create rx queue%i\n",
1571 adapter->netdev->name, i);
1572 goto err_out;
1573 }
1574 }
1575 return err;
1576err_out:
1577 vmxnet3_rq_destroy_all(adapter);
1578 return err;
1579
1580}
1581
1582/* Multiple queue aware polling function for tx and rx */
1583
1584static int
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001585vmxnet3_do_poll(struct vmxnet3_adapter *adapter, int budget)
1586{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001587 int rcd_done = 0, i;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001588 if (unlikely(adapter->shared->ecr))
1589 vmxnet3_process_events(adapter);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001590 for (i = 0; i < adapter->num_tx_queues; i++)
1591 vmxnet3_tq_tx_complete(&adapter->tx_queue[i], adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001592
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001593 for (i = 0; i < adapter->num_rx_queues; i++)
1594 rcd_done += vmxnet3_rq_rx_complete(&adapter->rx_queue[i],
1595 adapter, budget);
1596 return rcd_done;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001597}
1598
1599
1600static int
1601vmxnet3_poll(struct napi_struct *napi, int budget)
1602{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001603 struct vmxnet3_rx_queue *rx_queue = container_of(napi,
1604 struct vmxnet3_rx_queue, napi);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001605 int rxd_done;
1606
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001607 rxd_done = vmxnet3_do_poll(rx_queue->adapter, budget);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001608
1609 if (rxd_done < budget) {
1610 napi_complete(napi);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001611 vmxnet3_enable_all_intrs(rx_queue->adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001612 }
1613 return rxd_done;
1614}
1615
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001616/*
1617 * NAPI polling function for MSI-X mode with multiple Rx queues
1618 * Returns the # of the NAPI credit consumed (# of rx descriptors processed)
1619 */
1620
1621static int
1622vmxnet3_poll_rx_only(struct napi_struct *napi, int budget)
1623{
1624 struct vmxnet3_rx_queue *rq = container_of(napi,
1625 struct vmxnet3_rx_queue, napi);
1626 struct vmxnet3_adapter *adapter = rq->adapter;
1627 int rxd_done;
1628
1629 /* When sharing interrupt with corresponding tx queue, process
1630 * tx completions in that queue as well
1631 */
1632 if (adapter->share_intr == VMXNET3_INTR_BUDDYSHARE) {
1633 struct vmxnet3_tx_queue *tq =
1634 &adapter->tx_queue[rq - adapter->rx_queue];
1635 vmxnet3_tq_tx_complete(tq, adapter);
1636 }
1637
1638 rxd_done = vmxnet3_rq_rx_complete(rq, adapter, budget);
1639
1640 if (rxd_done < budget) {
1641 napi_complete(napi);
1642 vmxnet3_enable_intr(adapter, rq->comp_ring.intr_idx);
1643 }
1644 return rxd_done;
1645}
1646
1647
1648#ifdef CONFIG_PCI_MSI
1649
1650/*
1651 * Handle completion interrupts on tx queues
1652 * Returns whether or not the intr is handled
1653 */
1654
1655static irqreturn_t
1656vmxnet3_msix_tx(int irq, void *data)
1657{
1658 struct vmxnet3_tx_queue *tq = data;
1659 struct vmxnet3_adapter *adapter = tq->adapter;
1660
1661 if (adapter->intr.mask_mode == VMXNET3_IMM_ACTIVE)
1662 vmxnet3_disable_intr(adapter, tq->comp_ring.intr_idx);
1663
1664 /* Handle the case where only one irq is allocate for all tx queues */
1665 if (adapter->share_intr == VMXNET3_INTR_TXSHARE) {
1666 int i;
1667 for (i = 0; i < adapter->num_tx_queues; i++) {
1668 struct vmxnet3_tx_queue *txq = &adapter->tx_queue[i];
1669 vmxnet3_tq_tx_complete(txq, adapter);
1670 }
1671 } else {
1672 vmxnet3_tq_tx_complete(tq, adapter);
1673 }
1674 vmxnet3_enable_intr(adapter, tq->comp_ring.intr_idx);
1675
1676 return IRQ_HANDLED;
1677}
1678
1679
1680/*
1681 * Handle completion interrupts on rx queues. Returns whether or not the
1682 * intr is handled
1683 */
1684
1685static irqreturn_t
1686vmxnet3_msix_rx(int irq, void *data)
1687{
1688 struct vmxnet3_rx_queue *rq = data;
1689 struct vmxnet3_adapter *adapter = rq->adapter;
1690
1691 /* disable intr if needed */
1692 if (adapter->intr.mask_mode == VMXNET3_IMM_ACTIVE)
1693 vmxnet3_disable_intr(adapter, rq->comp_ring.intr_idx);
1694 napi_schedule(&rq->napi);
1695
1696 return IRQ_HANDLED;
1697}
1698
1699/*
1700 *----------------------------------------------------------------------------
1701 *
1702 * vmxnet3_msix_event --
1703 *
1704 * vmxnet3 msix event intr handler
1705 *
1706 * Result:
1707 * whether or not the intr is handled
1708 *
1709 *----------------------------------------------------------------------------
1710 */
1711
1712static irqreturn_t
1713vmxnet3_msix_event(int irq, void *data)
1714{
1715 struct net_device *dev = data;
1716 struct vmxnet3_adapter *adapter = netdev_priv(dev);
1717
1718 /* disable intr if needed */
1719 if (adapter->intr.mask_mode == VMXNET3_IMM_ACTIVE)
1720 vmxnet3_disable_intr(adapter, adapter->intr.event_intr_idx);
1721
1722 if (adapter->shared->ecr)
1723 vmxnet3_process_events(adapter);
1724
1725 vmxnet3_enable_intr(adapter, adapter->intr.event_intr_idx);
1726
1727 return IRQ_HANDLED;
1728}
1729
1730#endif /* CONFIG_PCI_MSI */
1731
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001732
1733/* Interrupt handler for vmxnet3 */
1734static irqreturn_t
1735vmxnet3_intr(int irq, void *dev_id)
1736{
1737 struct net_device *dev = dev_id;
1738 struct vmxnet3_adapter *adapter = netdev_priv(dev);
1739
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001740 if (adapter->intr.type == VMXNET3_IT_INTX) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001741 u32 icr = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_ICR);
1742 if (unlikely(icr == 0))
1743 /* not ours */
1744 return IRQ_NONE;
1745 }
1746
1747
1748 /* disable intr if needed */
1749 if (adapter->intr.mask_mode == VMXNET3_IMM_ACTIVE)
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001750 vmxnet3_disable_all_intrs(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001751
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001752 napi_schedule(&adapter->rx_queue[0].napi);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001753
1754 return IRQ_HANDLED;
1755}
1756
1757#ifdef CONFIG_NET_POLL_CONTROLLER
1758
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001759/* netpoll callback. */
1760static void
1761vmxnet3_netpoll(struct net_device *netdev)
1762{
1763 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001764
Neil Hormand25f06e2014-03-10 06:55:55 -04001765 switch (adapter->intr.type) {
Arnd Bergmann0a8d8c42014-03-13 10:44:34 +01001766#ifdef CONFIG_PCI_MSI
1767 case VMXNET3_IT_MSIX: {
1768 int i;
Neil Hormand25f06e2014-03-10 06:55:55 -04001769 for (i = 0; i < adapter->num_rx_queues; i++)
1770 vmxnet3_msix_rx(0, &adapter->rx_queue[i]);
1771 break;
Arnd Bergmann0a8d8c42014-03-13 10:44:34 +01001772 }
1773#endif
Neil Hormand25f06e2014-03-10 06:55:55 -04001774 case VMXNET3_IT_MSI:
1775 default:
1776 vmxnet3_intr(0, adapter->netdev);
1777 break;
1778 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001779
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001780}
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001781#endif /* CONFIG_NET_POLL_CONTROLLER */
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001782
1783static int
1784vmxnet3_request_irqs(struct vmxnet3_adapter *adapter)
1785{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001786 struct vmxnet3_intr *intr = &adapter->intr;
1787 int err = 0, i;
1788 int vector = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001789
Randy Dunlap8f7e5242009-10-14 20:38:58 -07001790#ifdef CONFIG_PCI_MSI
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001791 if (adapter->intr.type == VMXNET3_IT_MSIX) {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001792 for (i = 0; i < adapter->num_tx_queues; i++) {
1793 if (adapter->share_intr != VMXNET3_INTR_BUDDYSHARE) {
1794 sprintf(adapter->tx_queue[i].name, "%s-tx-%d",
1795 adapter->netdev->name, vector);
1796 err = request_irq(
1797 intr->msix_entries[vector].vector,
1798 vmxnet3_msix_tx, 0,
1799 adapter->tx_queue[i].name,
1800 &adapter->tx_queue[i]);
1801 } else {
1802 sprintf(adapter->tx_queue[i].name, "%s-rxtx-%d",
1803 adapter->netdev->name, vector);
1804 }
1805 if (err) {
1806 dev_err(&adapter->netdev->dev,
1807 "Failed to request irq for MSIX, %s, "
1808 "error %d\n",
1809 adapter->tx_queue[i].name, err);
1810 return err;
1811 }
1812
1813 /* Handle the case where only 1 MSIx was allocated for
1814 * all tx queues */
1815 if (adapter->share_intr == VMXNET3_INTR_TXSHARE) {
1816 for (; i < adapter->num_tx_queues; i++)
1817 adapter->tx_queue[i].comp_ring.intr_idx
1818 = vector;
1819 vector++;
1820 break;
1821 } else {
1822 adapter->tx_queue[i].comp_ring.intr_idx
1823 = vector++;
1824 }
1825 }
1826 if (adapter->share_intr == VMXNET3_INTR_BUDDYSHARE)
1827 vector = 0;
1828
1829 for (i = 0; i < adapter->num_rx_queues; i++) {
1830 if (adapter->share_intr != VMXNET3_INTR_BUDDYSHARE)
1831 sprintf(adapter->rx_queue[i].name, "%s-rx-%d",
1832 adapter->netdev->name, vector);
1833 else
1834 sprintf(adapter->rx_queue[i].name, "%s-rxtx-%d",
1835 adapter->netdev->name, vector);
1836 err = request_irq(intr->msix_entries[vector].vector,
1837 vmxnet3_msix_rx, 0,
1838 adapter->rx_queue[i].name,
1839 &(adapter->rx_queue[i]));
1840 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00001841 netdev_err(adapter->netdev,
1842 "Failed to request irq for MSIX, "
1843 "%s, error %d\n",
1844 adapter->rx_queue[i].name, err);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001845 return err;
1846 }
1847
1848 adapter->rx_queue[i].comp_ring.intr_idx = vector++;
1849 }
1850
1851 sprintf(intr->event_msi_vector_name, "%s-event-%d",
1852 adapter->netdev->name, vector);
1853 err = request_irq(intr->msix_entries[vector].vector,
1854 vmxnet3_msix_event, 0,
1855 intr->event_msi_vector_name, adapter->netdev);
1856 intr->event_intr_idx = vector;
1857
1858 } else if (intr->type == VMXNET3_IT_MSI) {
1859 adapter->num_rx_queues = 1;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001860 err = request_irq(adapter->pdev->irq, vmxnet3_intr, 0,
1861 adapter->netdev->name, adapter->netdev);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001862 } else {
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00001863#endif
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001864 adapter->num_rx_queues = 1;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001865 err = request_irq(adapter->pdev->irq, vmxnet3_intr,
1866 IRQF_SHARED, adapter->netdev->name,
1867 adapter->netdev);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001868#ifdef CONFIG_PCI_MSI
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001869 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001870#endif
1871 intr->num_intrs = vector + 1;
1872 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00001873 netdev_err(adapter->netdev,
1874 "Failed to request irq (intr type:%d), error %d\n",
1875 intr->type, err);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001876 } else {
1877 /* Number of rx queues will not change after this */
1878 for (i = 0; i < adapter->num_rx_queues; i++) {
1879 struct vmxnet3_rx_queue *rq = &adapter->rx_queue[i];
1880 rq->qid = i;
1881 rq->qid2 = i + adapter->num_rx_queues;
1882 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001883
1884
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001885
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001886 /* init our intr settings */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001887 for (i = 0; i < intr->num_intrs; i++)
1888 intr->mod_levels[i] = UPT1_IML_ADAPTIVE;
1889 if (adapter->intr.type != VMXNET3_IT_MSIX) {
1890 adapter->intr.event_intr_idx = 0;
1891 for (i = 0; i < adapter->num_tx_queues; i++)
1892 adapter->tx_queue[i].comp_ring.intr_idx = 0;
1893 adapter->rx_queue[0].comp_ring.intr_idx = 0;
1894 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001895
Stephen Hemminger204a6e62013-01-15 07:28:30 +00001896 netdev_info(adapter->netdev,
1897 "intr type %u, mode %u, %u vectors allocated\n",
1898 intr->type, intr->mask_mode, intr->num_intrs);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001899 }
1900
1901 return err;
1902}
1903
1904
1905static void
1906vmxnet3_free_irqs(struct vmxnet3_adapter *adapter)
1907{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001908 struct vmxnet3_intr *intr = &adapter->intr;
1909 BUG_ON(intr->type == VMXNET3_IT_AUTO || intr->num_intrs <= 0);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001910
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001911 switch (intr->type) {
Randy Dunlap8f7e5242009-10-14 20:38:58 -07001912#ifdef CONFIG_PCI_MSI
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001913 case VMXNET3_IT_MSIX:
1914 {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001915 int i, vector = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001916
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00001917 if (adapter->share_intr != VMXNET3_INTR_BUDDYSHARE) {
1918 for (i = 0; i < adapter->num_tx_queues; i++) {
1919 free_irq(intr->msix_entries[vector++].vector,
1920 &(adapter->tx_queue[i]));
1921 if (adapter->share_intr == VMXNET3_INTR_TXSHARE)
1922 break;
1923 }
1924 }
1925
1926 for (i = 0; i < adapter->num_rx_queues; i++) {
1927 free_irq(intr->msix_entries[vector++].vector,
1928 &(adapter->rx_queue[i]));
1929 }
1930
1931 free_irq(intr->msix_entries[vector].vector,
1932 adapter->netdev);
1933 BUG_ON(vector >= intr->num_intrs);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001934 break;
1935 }
Randy Dunlap8f7e5242009-10-14 20:38:58 -07001936#endif
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001937 case VMXNET3_IT_MSI:
1938 free_irq(adapter->pdev->irq, adapter->netdev);
1939 break;
1940 case VMXNET3_IT_INTX:
1941 free_irq(adapter->pdev->irq, adapter->netdev);
1942 break;
1943 default:
Sasha Levinc068e772012-11-08 10:23:03 +00001944 BUG();
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001945 }
1946}
1947
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001948
1949static void
1950vmxnet3_restore_vlan(struct vmxnet3_adapter *adapter)
1951{
Jesse Gross72e85c42011-06-23 13:04:39 +00001952 u32 *vfTable = adapter->shared->devRead.rxFilterConf.vfTable;
1953 u16 vid;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001954
Jesse Gross72e85c42011-06-23 13:04:39 +00001955 /* allow untagged pkts */
1956 VMXNET3_SET_VFTABLE_ENTRY(vfTable, 0);
1957
1958 for_each_set_bit(vid, adapter->active_vlans, VLAN_N_VID)
1959 VMXNET3_SET_VFTABLE_ENTRY(vfTable, vid);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001960}
1961
1962
Jiri Pirko8e586132011-12-08 19:52:37 -05001963static int
Patrick McHardy80d5c362013-04-19 02:04:28 +00001964vmxnet3_vlan_rx_add_vid(struct net_device *netdev, __be16 proto, u16 vid)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001965{
1966 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001967
Jesse Grossf6957f82011-08-07 23:15:47 +00001968 if (!(netdev->flags & IFF_PROMISC)) {
1969 u32 *vfTable = adapter->shared->devRead.rxFilterConf.vfTable;
1970 unsigned long flags;
1971
1972 VMXNET3_SET_VFTABLE_ENTRY(vfTable, vid);
1973 spin_lock_irqsave(&adapter->cmd_lock, flags);
1974 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
1975 VMXNET3_CMD_UPDATE_VLAN_FILTERS);
1976 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
1977 }
Jesse Gross72e85c42011-06-23 13:04:39 +00001978
1979 set_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05001980
1981 return 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001982}
1983
1984
Jiri Pirko8e586132011-12-08 19:52:37 -05001985static int
Patrick McHardy80d5c362013-04-19 02:04:28 +00001986vmxnet3_vlan_rx_kill_vid(struct net_device *netdev, __be16 proto, u16 vid)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001987{
1988 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07001989
Jesse Grossf6957f82011-08-07 23:15:47 +00001990 if (!(netdev->flags & IFF_PROMISC)) {
1991 u32 *vfTable = adapter->shared->devRead.rxFilterConf.vfTable;
1992 unsigned long flags;
1993
1994 VMXNET3_CLEAR_VFTABLE_ENTRY(vfTable, vid);
1995 spin_lock_irqsave(&adapter->cmd_lock, flags);
1996 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
1997 VMXNET3_CMD_UPDATE_VLAN_FILTERS);
1998 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
1999 }
Jesse Gross72e85c42011-06-23 13:04:39 +00002000
2001 clear_bit(vid, adapter->active_vlans);
Jiri Pirko8e586132011-12-08 19:52:37 -05002002
2003 return 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002004}
2005
2006
2007static u8 *
2008vmxnet3_copy_mc(struct net_device *netdev)
2009{
2010 u8 *buf = NULL;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00002011 u32 sz = netdev_mc_count(netdev) * ETH_ALEN;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002012
2013 /* struct Vmxnet3_RxFilterConf.mfTableLen is u16. */
2014 if (sz <= 0xffff) {
2015 /* We may be called with BH disabled */
2016 buf = kmalloc(sz, GFP_ATOMIC);
2017 if (buf) {
Jiri Pirko22bedad32010-04-01 21:22:57 +00002018 struct netdev_hw_addr *ha;
Jiri Pirko567ec872010-02-23 23:17:07 +00002019 int i = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002020
Jiri Pirko22bedad32010-04-01 21:22:57 +00002021 netdev_for_each_mc_addr(ha, netdev)
2022 memcpy(buf + i++ * ETH_ALEN, ha->addr,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002023 ETH_ALEN);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002024 }
2025 }
2026 return buf;
2027}
2028
2029
2030static void
2031vmxnet3_set_mc(struct net_device *netdev)
2032{
2033 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002034 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002035 struct Vmxnet3_RxFilterConf *rxConf =
2036 &adapter->shared->devRead.rxFilterConf;
2037 u8 *new_table = NULL;
Andy Kingb0eb57c2013-08-23 09:33:49 -07002038 dma_addr_t new_table_pa = 0;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002039 u32 new_mode = VMXNET3_RXM_UCAST;
2040
Jesse Gross72e85c42011-06-23 13:04:39 +00002041 if (netdev->flags & IFF_PROMISC) {
2042 u32 *vfTable = adapter->shared->devRead.rxFilterConf.vfTable;
2043 memset(vfTable, 0, VMXNET3_VFT_SIZE * sizeof(*vfTable));
2044
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002045 new_mode |= VMXNET3_RXM_PROMISC;
Jesse Gross72e85c42011-06-23 13:04:39 +00002046 } else {
2047 vmxnet3_restore_vlan(adapter);
2048 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002049
2050 if (netdev->flags & IFF_BROADCAST)
2051 new_mode |= VMXNET3_RXM_BCAST;
2052
2053 if (netdev->flags & IFF_ALLMULTI)
2054 new_mode |= VMXNET3_RXM_ALL_MULTI;
2055 else
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00002056 if (!netdev_mc_empty(netdev)) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002057 new_table = vmxnet3_copy_mc(netdev);
2058 if (new_table) {
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002059 rxConf->mfTableLen = cpu_to_le16(
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00002060 netdev_mc_count(netdev) * ETH_ALEN);
Andy Kingb0eb57c2013-08-23 09:33:49 -07002061 new_table_pa = dma_map_single(
2062 &adapter->pdev->dev,
2063 new_table,
2064 rxConf->mfTableLen,
2065 PCI_DMA_TODEVICE);
Andy King4ad9a642014-09-02 13:13:44 -07002066 }
2067
2068 if (new_table_pa) {
2069 new_mode |= VMXNET3_RXM_MCAST;
Andy Kingb0eb57c2013-08-23 09:33:49 -07002070 rxConf->mfTablePA = cpu_to_le64(new_table_pa);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002071 } else {
Andy King4ad9a642014-09-02 13:13:44 -07002072 netdev_info(netdev,
2073 "failed to copy mcast list, setting ALL_MULTI\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002074 new_mode |= VMXNET3_RXM_ALL_MULTI;
2075 }
2076 }
2077
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002078 if (!(new_mode & VMXNET3_RXM_MCAST)) {
2079 rxConf->mfTableLen = 0;
2080 rxConf->mfTablePA = 0;
2081 }
2082
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002083 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002084 if (new_mode != rxConf->rxMode) {
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002085 rxConf->rxMode = cpu_to_le32(new_mode);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002086 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2087 VMXNET3_CMD_UPDATE_RX_MODE);
Jesse Gross72e85c42011-06-23 13:04:39 +00002088 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2089 VMXNET3_CMD_UPDATE_VLAN_FILTERS);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002090 }
2091
2092 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2093 VMXNET3_CMD_UPDATE_MAC_FILTERS);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002094 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002095
Andy King4ad9a642014-09-02 13:13:44 -07002096 if (new_table_pa)
Andy Kingb0eb57c2013-08-23 09:33:49 -07002097 dma_unmap_single(&adapter->pdev->dev, new_table_pa,
2098 rxConf->mfTableLen, PCI_DMA_TODEVICE);
Andy King4ad9a642014-09-02 13:13:44 -07002099 kfree(new_table);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002100}
2101
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002102void
2103vmxnet3_rq_destroy_all(struct vmxnet3_adapter *adapter)
2104{
2105 int i;
2106
2107 for (i = 0; i < adapter->num_rx_queues; i++)
2108 vmxnet3_rq_destroy(&adapter->rx_queue[i], adapter);
2109}
2110
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002111
2112/*
2113 * Set up driver_shared based on settings in adapter.
2114 */
2115
2116static void
2117vmxnet3_setup_driver_shared(struct vmxnet3_adapter *adapter)
2118{
2119 struct Vmxnet3_DriverShared *shared = adapter->shared;
2120 struct Vmxnet3_DSDevRead *devRead = &shared->devRead;
2121 struct Vmxnet3_TxQueueConf *tqc;
2122 struct Vmxnet3_RxQueueConf *rqc;
2123 int i;
2124
2125 memset(shared, 0, sizeof(*shared));
2126
2127 /* driver settings */
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002128 shared->magic = cpu_to_le32(VMXNET3_REV1_MAGIC);
2129 devRead->misc.driverInfo.version = cpu_to_le32(
2130 VMXNET3_DRIVER_VERSION_NUM);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002131 devRead->misc.driverInfo.gos.gosBits = (sizeof(void *) == 4 ?
2132 VMXNET3_GOS_BITS_32 : VMXNET3_GOS_BITS_64);
2133 devRead->misc.driverInfo.gos.gosType = VMXNET3_GOS_TYPE_LINUX;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002134 *((u32 *)&devRead->misc.driverInfo.gos) = cpu_to_le32(
2135 *((u32 *)&devRead->misc.driverInfo.gos));
2136 devRead->misc.driverInfo.vmxnet3RevSpt = cpu_to_le32(1);
2137 devRead->misc.driverInfo.uptVerSpt = cpu_to_le32(1);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002138
Andy Kingb0eb57c2013-08-23 09:33:49 -07002139 devRead->misc.ddPA = cpu_to_le64(adapter->adapter_pa);
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002140 devRead->misc.ddLen = cpu_to_le32(sizeof(struct vmxnet3_adapter));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002141
2142 /* set up feature flags */
Michał Mirosława0d27302011-04-18 13:31:21 +00002143 if (adapter->netdev->features & NETIF_F_RXCSUM)
Harvey Harrison3843e512010-10-21 18:05:32 +00002144 devRead->misc.uptFeatures |= UPT1_F_RXCSUM;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002145
Michał Mirosława0d27302011-04-18 13:31:21 +00002146 if (adapter->netdev->features & NETIF_F_LRO) {
Harvey Harrison3843e512010-10-21 18:05:32 +00002147 devRead->misc.uptFeatures |= UPT1_F_LRO;
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002148 devRead->misc.maxNumRxSG = cpu_to_le16(1 + MAX_SKB_FRAGS);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002149 }
Patrick McHardyf6469682013-04-19 02:04:27 +00002150 if (adapter->netdev->features & NETIF_F_HW_VLAN_CTAG_RX)
Harvey Harrison3843e512010-10-21 18:05:32 +00002151 devRead->misc.uptFeatures |= UPT1_F_RXVLAN;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002152
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002153 devRead->misc.mtu = cpu_to_le32(adapter->netdev->mtu);
2154 devRead->misc.queueDescPA = cpu_to_le64(adapter->queue_desc_pa);
2155 devRead->misc.queueDescLen = cpu_to_le32(
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002156 adapter->num_tx_queues * sizeof(struct Vmxnet3_TxQueueDesc) +
2157 adapter->num_rx_queues * sizeof(struct Vmxnet3_RxQueueDesc));
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002158
2159 /* tx queue settings */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002160 devRead->misc.numTxQueues = adapter->num_tx_queues;
2161 for (i = 0; i < adapter->num_tx_queues; i++) {
2162 struct vmxnet3_tx_queue *tq = &adapter->tx_queue[i];
2163 BUG_ON(adapter->tx_queue[i].tx_ring.base == NULL);
2164 tqc = &adapter->tqd_start[i].conf;
2165 tqc->txRingBasePA = cpu_to_le64(tq->tx_ring.basePA);
2166 tqc->dataRingBasePA = cpu_to_le64(tq->data_ring.basePA);
2167 tqc->compRingBasePA = cpu_to_le64(tq->comp_ring.basePA);
Andy Kingb0eb57c2013-08-23 09:33:49 -07002168 tqc->ddPA = cpu_to_le64(tq->buf_info_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002169 tqc->txRingSize = cpu_to_le32(tq->tx_ring.size);
2170 tqc->dataRingSize = cpu_to_le32(tq->data_ring.size);
2171 tqc->compRingSize = cpu_to_le32(tq->comp_ring.size);
2172 tqc->ddLen = cpu_to_le32(
2173 sizeof(struct vmxnet3_tx_buf_info) *
2174 tqc->txRingSize);
2175 tqc->intrIdx = tq->comp_ring.intr_idx;
2176 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002177
2178 /* rx queue settings */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002179 devRead->misc.numRxQueues = adapter->num_rx_queues;
2180 for (i = 0; i < adapter->num_rx_queues; i++) {
2181 struct vmxnet3_rx_queue *rq = &adapter->rx_queue[i];
2182 rqc = &adapter->rqd_start[i].conf;
2183 rqc->rxRingBasePA[0] = cpu_to_le64(rq->rx_ring[0].basePA);
2184 rqc->rxRingBasePA[1] = cpu_to_le64(rq->rx_ring[1].basePA);
2185 rqc->compRingBasePA = cpu_to_le64(rq->comp_ring.basePA);
Andy Kingb0eb57c2013-08-23 09:33:49 -07002186 rqc->ddPA = cpu_to_le64(rq->buf_info_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002187 rqc->rxRingSize[0] = cpu_to_le32(rq->rx_ring[0].size);
2188 rqc->rxRingSize[1] = cpu_to_le32(rq->rx_ring[1].size);
2189 rqc->compRingSize = cpu_to_le32(rq->comp_ring.size);
2190 rqc->ddLen = cpu_to_le32(
2191 sizeof(struct vmxnet3_rx_buf_info) *
2192 (rqc->rxRingSize[0] +
2193 rqc->rxRingSize[1]));
2194 rqc->intrIdx = rq->comp_ring.intr_idx;
2195 }
2196
2197#ifdef VMXNET3_RSS
2198 memset(adapter->rss_conf, 0, sizeof(*adapter->rss_conf));
2199
2200 if (adapter->rss) {
2201 struct UPT1_RSSConf *rssConf = adapter->rss_conf;
Stephen Hemminger66d35912013-01-15 07:28:34 +00002202
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002203 devRead->misc.uptFeatures |= UPT1_F_RSS;
2204 devRead->misc.numRxQueues = adapter->num_rx_queues;
2205 rssConf->hashType = UPT1_RSS_HASH_TYPE_TCP_IPV4 |
2206 UPT1_RSS_HASH_TYPE_IPV4 |
2207 UPT1_RSS_HASH_TYPE_TCP_IPV6 |
2208 UPT1_RSS_HASH_TYPE_IPV6;
2209 rssConf->hashFunc = UPT1_RSS_HASH_FUNC_TOEPLITZ;
2210 rssConf->hashKeySize = UPT1_RSS_MAX_KEY_SIZE;
2211 rssConf->indTableSize = VMXNET3_RSS_IND_TABLE_SIZE;
Eric Dumazet6bf79cd2014-11-16 06:23:18 -08002212 netdev_rss_key_fill(rssConf->hashKey, sizeof(rssConf->hashKey));
Stephen Hemminger66d35912013-01-15 07:28:34 +00002213
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002214 for (i = 0; i < rssConf->indTableSize; i++)
Ben Hutchings278bc422011-12-15 13:56:49 +00002215 rssConf->indTable[i] = ethtool_rxfh_indir_default(
2216 i, adapter->num_rx_queues);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002217
2218 devRead->rssConfDesc.confVer = 1;
Andy Kingb0eb57c2013-08-23 09:33:49 -07002219 devRead->rssConfDesc.confLen = cpu_to_le32(sizeof(*rssConf));
2220 devRead->rssConfDesc.confPA =
2221 cpu_to_le64(adapter->rss_conf_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002222 }
2223
2224#endif /* VMXNET3_RSS */
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002225
2226 /* intr settings */
2227 devRead->intrConf.autoMask = adapter->intr.mask_mode ==
2228 VMXNET3_IMM_AUTO;
2229 devRead->intrConf.numIntrs = adapter->intr.num_intrs;
2230 for (i = 0; i < adapter->intr.num_intrs; i++)
2231 devRead->intrConf.modLevels[i] = adapter->intr.mod_levels[i];
2232
2233 devRead->intrConf.eventIntrIdx = adapter->intr.event_intr_idx;
Ronghua Zang6929fe82010-07-15 22:18:47 -07002234 devRead->intrConf.intrCtrl |= cpu_to_le32(VMXNET3_IC_DISABLE_ALL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002235
2236 /* rx filter settings */
2237 devRead->rxFilterConf.rxMode = 0;
2238 vmxnet3_restore_vlan(adapter);
Shreyas Bhatewaraf9f25022011-01-14 14:59:31 +00002239 vmxnet3_write_mac_addr(adapter, adapter->netdev->dev_addr);
2240
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002241 /* the rest are already zeroed */
2242}
2243
2244
2245int
2246vmxnet3_activate_dev(struct vmxnet3_adapter *adapter)
2247{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002248 int err, i;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002249 u32 ret;
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002250 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002251
Stephen Hemmingerfdcd79b2013-01-15 07:28:29 +00002252 netdev_dbg(adapter->netdev, "%s: skb_buf_size %d, rx_buf_per_pkt %d,"
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002253 " ring sizes %u %u %u\n", adapter->netdev->name,
2254 adapter->skb_buf_size, adapter->rx_buf_per_pkt,
2255 adapter->tx_queue[0].tx_ring.size,
2256 adapter->rx_queue[0].rx_ring[0].size,
2257 adapter->rx_queue[0].rx_ring[1].size);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002258
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002259 vmxnet3_tq_init_all(adapter);
2260 err = vmxnet3_rq_init_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002261 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002262 netdev_err(adapter->netdev,
2263 "Failed to init rx queue error %d\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002264 goto rq_err;
2265 }
2266
2267 err = vmxnet3_request_irqs(adapter);
2268 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002269 netdev_err(adapter->netdev,
2270 "Failed to setup irq for error %d\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002271 goto irq_err;
2272 }
2273
2274 vmxnet3_setup_driver_shared(adapter);
2275
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00002276 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_DSAL, VMXNET3_GET_ADDR_LO(
2277 adapter->shared_pa));
2278 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_DSAH, VMXNET3_GET_ADDR_HI(
2279 adapter->shared_pa));
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002280 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002281 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2282 VMXNET3_CMD_ACTIVATE_DEV);
2283 ret = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_CMD);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002284 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002285
2286 if (ret != 0) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002287 netdev_err(adapter->netdev,
2288 "Failed to activate dev: error %u\n", ret);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002289 err = -EINVAL;
2290 goto activate_err;
2291 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002292
2293 for (i = 0; i < adapter->num_rx_queues; i++) {
2294 VMXNET3_WRITE_BAR0_REG(adapter,
2295 VMXNET3_REG_RXPROD + i * VMXNET3_REG_ALIGN,
2296 adapter->rx_queue[i].rx_ring[0].next2fill);
2297 VMXNET3_WRITE_BAR0_REG(adapter, (VMXNET3_REG_RXPROD2 +
2298 (i * VMXNET3_REG_ALIGN)),
2299 adapter->rx_queue[i].rx_ring[1].next2fill);
2300 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002301
2302 /* Apply the rx filter settins last. */
2303 vmxnet3_set_mc(adapter->netdev);
2304
2305 /*
2306 * Check link state when first activating device. It will start the
2307 * tx queue if the link is up.
2308 */
Shreyas Bhatewara4a1745fc2010-07-15 21:51:14 +00002309 vmxnet3_check_link(adapter, true);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002310 for (i = 0; i < adapter->num_rx_queues; i++)
2311 napi_enable(&adapter->rx_queue[i].napi);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002312 vmxnet3_enable_all_intrs(adapter);
2313 clear_bit(VMXNET3_STATE_BIT_QUIESCED, &adapter->state);
2314 return 0;
2315
2316activate_err:
2317 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_DSAL, 0);
2318 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_DSAH, 0);
2319 vmxnet3_free_irqs(adapter);
2320irq_err:
2321rq_err:
2322 /* free up buffers we allocated */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002323 vmxnet3_rq_cleanup_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002324 return err;
2325}
2326
2327
2328void
2329vmxnet3_reset_dev(struct vmxnet3_adapter *adapter)
2330{
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002331 unsigned long flags;
2332 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002333 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD, VMXNET3_CMD_RESET_DEV);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002334 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002335}
2336
2337
2338int
2339vmxnet3_quiesce_dev(struct vmxnet3_adapter *adapter)
2340{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002341 int i;
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002342 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002343 if (test_and_set_bit(VMXNET3_STATE_BIT_QUIESCED, &adapter->state))
2344 return 0;
2345
2346
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002347 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002348 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2349 VMXNET3_CMD_QUIESCE_DEV);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002350 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002351 vmxnet3_disable_all_intrs(adapter);
2352
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002353 for (i = 0; i < adapter->num_rx_queues; i++)
2354 napi_disable(&adapter->rx_queue[i].napi);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002355 netif_tx_disable(adapter->netdev);
2356 adapter->link_speed = 0;
2357 netif_carrier_off(adapter->netdev);
2358
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002359 vmxnet3_tq_cleanup_all(adapter);
2360 vmxnet3_rq_cleanup_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002361 vmxnet3_free_irqs(adapter);
2362 return 0;
2363}
2364
2365
2366static void
2367vmxnet3_write_mac_addr(struct vmxnet3_adapter *adapter, u8 *mac)
2368{
2369 u32 tmp;
2370
2371 tmp = *(u32 *)mac;
2372 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_MACL, tmp);
2373
2374 tmp = (mac[5] << 8) | mac[4];
2375 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_MACH, tmp);
2376}
2377
2378
2379static int
2380vmxnet3_set_mac_addr(struct net_device *netdev, void *p)
2381{
2382 struct sockaddr *addr = p;
2383 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
2384
2385 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
2386 vmxnet3_write_mac_addr(adapter, addr->sa_data);
2387
2388 return 0;
2389}
2390
2391
2392/* ==================== initialization and cleanup routines ============ */
2393
2394static int
2395vmxnet3_alloc_pci_resources(struct vmxnet3_adapter *adapter, bool *dma64)
2396{
2397 int err;
2398 unsigned long mmio_start, mmio_len;
2399 struct pci_dev *pdev = adapter->pdev;
2400
2401 err = pci_enable_device(pdev);
2402 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002403 dev_err(&pdev->dev, "Failed to enable adapter: error %d\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002404 return err;
2405 }
2406
2407 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) == 0) {
2408 if (pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)) != 0) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002409 dev_err(&pdev->dev,
2410 "pci_set_consistent_dma_mask failed\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002411 err = -EIO;
2412 goto err_set_mask;
2413 }
2414 *dma64 = true;
2415 } else {
2416 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002417 dev_err(&pdev->dev,
2418 "pci_set_dma_mask failed\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002419 err = -EIO;
2420 goto err_set_mask;
2421 }
2422 *dma64 = false;
2423 }
2424
2425 err = pci_request_selected_regions(pdev, (1 << 2) - 1,
2426 vmxnet3_driver_name);
2427 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002428 dev_err(&pdev->dev,
2429 "Failed to request region for adapter: error %d\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002430 goto err_set_mask;
2431 }
2432
2433 pci_set_master(pdev);
2434
2435 mmio_start = pci_resource_start(pdev, 0);
2436 mmio_len = pci_resource_len(pdev, 0);
2437 adapter->hw_addr0 = ioremap(mmio_start, mmio_len);
2438 if (!adapter->hw_addr0) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002439 dev_err(&pdev->dev, "Failed to map bar0\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002440 err = -EIO;
2441 goto err_ioremap;
2442 }
2443
2444 mmio_start = pci_resource_start(pdev, 1);
2445 mmio_len = pci_resource_len(pdev, 1);
2446 adapter->hw_addr1 = ioremap(mmio_start, mmio_len);
2447 if (!adapter->hw_addr1) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002448 dev_err(&pdev->dev, "Failed to map bar1\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002449 err = -EIO;
2450 goto err_bar1;
2451 }
2452 return 0;
2453
2454err_bar1:
2455 iounmap(adapter->hw_addr0);
2456err_ioremap:
2457 pci_release_selected_regions(pdev, (1 << 2) - 1);
2458err_set_mask:
2459 pci_disable_device(pdev);
2460 return err;
2461}
2462
2463
2464static void
2465vmxnet3_free_pci_resources(struct vmxnet3_adapter *adapter)
2466{
2467 BUG_ON(!adapter->pdev);
2468
2469 iounmap(adapter->hw_addr0);
2470 iounmap(adapter->hw_addr1);
2471 pci_release_selected_regions(adapter->pdev, (1 << 2) - 1);
2472 pci_disable_device(adapter->pdev);
2473}
2474
2475
2476static void
2477vmxnet3_adjust_rx_ring_size(struct vmxnet3_adapter *adapter)
2478{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002479 size_t sz, i, ring0_size, ring1_size, comp_size;
2480 struct vmxnet3_rx_queue *rq = &adapter->rx_queue[0];
2481
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002482
2483 if (adapter->netdev->mtu <= VMXNET3_MAX_SKB_BUF_SIZE -
2484 VMXNET3_MAX_ETH_HDR_SIZE) {
2485 adapter->skb_buf_size = adapter->netdev->mtu +
2486 VMXNET3_MAX_ETH_HDR_SIZE;
2487 if (adapter->skb_buf_size < VMXNET3_MIN_T0_BUF_SIZE)
2488 adapter->skb_buf_size = VMXNET3_MIN_T0_BUF_SIZE;
2489
2490 adapter->rx_buf_per_pkt = 1;
2491 } else {
2492 adapter->skb_buf_size = VMXNET3_MAX_SKB_BUF_SIZE;
2493 sz = adapter->netdev->mtu - VMXNET3_MAX_SKB_BUF_SIZE +
2494 VMXNET3_MAX_ETH_HDR_SIZE;
2495 adapter->rx_buf_per_pkt = 1 + (sz + PAGE_SIZE - 1) / PAGE_SIZE;
2496 }
2497
2498 /*
2499 * for simplicity, force the ring0 size to be a multiple of
2500 * rx_buf_per_pkt * VMXNET3_RING_SIZE_ALIGN
2501 */
2502 sz = adapter->rx_buf_per_pkt * VMXNET3_RING_SIZE_ALIGN;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002503 ring0_size = adapter->rx_queue[0].rx_ring[0].size;
2504 ring0_size = (ring0_size + sz - 1) / sz * sz;
Shreyas Bhatewaraa53255d2011-01-14 14:59:25 +00002505 ring0_size = min_t(u32, ring0_size, VMXNET3_RX_RING_MAX_SIZE /
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002506 sz * sz);
2507 ring1_size = adapter->rx_queue[0].rx_ring[1].size;
Shrikrishna Khare53831aa2015-01-06 09:20:15 -08002508 ring1_size = (ring1_size + sz - 1) / sz * sz;
2509 ring1_size = min_t(u32, ring1_size, VMXNET3_RX_RING2_MAX_SIZE /
2510 sz * sz);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002511 comp_size = ring0_size + ring1_size;
2512
2513 for (i = 0; i < adapter->num_rx_queues; i++) {
2514 rq = &adapter->rx_queue[i];
2515 rq->rx_ring[0].size = ring0_size;
2516 rq->rx_ring[1].size = ring1_size;
2517 rq->comp_ring.size = comp_size;
2518 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002519}
2520
2521
2522int
2523vmxnet3_create_queues(struct vmxnet3_adapter *adapter, u32 tx_ring_size,
2524 u32 rx_ring_size, u32 rx_ring2_size)
2525{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002526 int err = 0, i;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002527
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002528 for (i = 0; i < adapter->num_tx_queues; i++) {
2529 struct vmxnet3_tx_queue *tq = &adapter->tx_queue[i];
2530 tq->tx_ring.size = tx_ring_size;
2531 tq->data_ring.size = tx_ring_size;
2532 tq->comp_ring.size = tx_ring_size;
2533 tq->shared = &adapter->tqd_start[i].ctrl;
2534 tq->stopped = true;
2535 tq->adapter = adapter;
2536 tq->qid = i;
2537 err = vmxnet3_tq_create(tq, adapter);
2538 /*
2539 * Too late to change num_tx_queues. We cannot do away with
2540 * lesser number of queues than what we asked for
2541 */
2542 if (err)
2543 goto queue_err;
2544 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002545
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002546 adapter->rx_queue[0].rx_ring[0].size = rx_ring_size;
2547 adapter->rx_queue[0].rx_ring[1].size = rx_ring2_size;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002548 vmxnet3_adjust_rx_ring_size(adapter);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002549 for (i = 0; i < adapter->num_rx_queues; i++) {
2550 struct vmxnet3_rx_queue *rq = &adapter->rx_queue[i];
2551 /* qid and qid2 for rx queues will be assigned later when num
2552 * of rx queues is finalized after allocating intrs */
2553 rq->shared = &adapter->rqd_start[i].ctrl;
2554 rq->adapter = adapter;
2555 err = vmxnet3_rq_create(rq, adapter);
2556 if (err) {
2557 if (i == 0) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002558 netdev_err(adapter->netdev,
2559 "Could not allocate any rx queues. "
2560 "Aborting.\n");
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002561 goto queue_err;
2562 } else {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002563 netdev_info(adapter->netdev,
2564 "Number of rx queues changed "
2565 "to : %d.\n", i);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002566 adapter->num_rx_queues = i;
2567 err = 0;
2568 break;
2569 }
2570 }
2571 }
2572 return err;
2573queue_err:
2574 vmxnet3_tq_destroy_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002575 return err;
2576}
2577
2578static int
2579vmxnet3_open(struct net_device *netdev)
2580{
2581 struct vmxnet3_adapter *adapter;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002582 int err, i;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002583
2584 adapter = netdev_priv(netdev);
2585
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002586 for (i = 0; i < adapter->num_tx_queues; i++)
2587 spin_lock_init(&adapter->tx_queue[i].tx_lock);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002588
Neil Hormanf00e2b02014-06-13 10:03:21 -04002589 err = vmxnet3_create_queues(adapter, adapter->tx_ring_size,
2590 adapter->rx_ring_size,
Shrikrishna Khare53831aa2015-01-06 09:20:15 -08002591 adapter->rx_ring2_size);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002592 if (err)
2593 goto queue_err;
2594
2595 err = vmxnet3_activate_dev(adapter);
2596 if (err)
2597 goto activate_err;
2598
2599 return 0;
2600
2601activate_err:
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002602 vmxnet3_rq_destroy_all(adapter);
2603 vmxnet3_tq_destroy_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002604queue_err:
2605 return err;
2606}
2607
2608
2609static int
2610vmxnet3_close(struct net_device *netdev)
2611{
2612 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
2613
2614 /*
2615 * Reset_work may be in the middle of resetting the device, wait for its
2616 * completion.
2617 */
2618 while (test_and_set_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state))
2619 msleep(1);
2620
2621 vmxnet3_quiesce_dev(adapter);
2622
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002623 vmxnet3_rq_destroy_all(adapter);
2624 vmxnet3_tq_destroy_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002625
2626 clear_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state);
2627
2628
2629 return 0;
2630}
2631
2632
2633void
2634vmxnet3_force_close(struct vmxnet3_adapter *adapter)
2635{
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002636 int i;
2637
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002638 /*
2639 * we must clear VMXNET3_STATE_BIT_RESETTING, otherwise
2640 * vmxnet3_close() will deadlock.
2641 */
2642 BUG_ON(test_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state));
2643
2644 /* we need to enable NAPI, otherwise dev_close will deadlock */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002645 for (i = 0; i < adapter->num_rx_queues; i++)
2646 napi_enable(&adapter->rx_queue[i].napi);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002647 dev_close(adapter->netdev);
2648}
2649
2650
2651static int
2652vmxnet3_change_mtu(struct net_device *netdev, int new_mtu)
2653{
2654 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
2655 int err = 0;
2656
2657 if (new_mtu < VMXNET3_MIN_MTU || new_mtu > VMXNET3_MAX_MTU)
2658 return -EINVAL;
2659
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002660 netdev->mtu = new_mtu;
2661
2662 /*
2663 * Reset_work may be in the middle of resetting the device, wait for its
2664 * completion.
2665 */
2666 while (test_and_set_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state))
2667 msleep(1);
2668
2669 if (netif_running(netdev)) {
2670 vmxnet3_quiesce_dev(adapter);
2671 vmxnet3_reset_dev(adapter);
2672
2673 /* we need to re-create the rx queue based on the new mtu */
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002674 vmxnet3_rq_destroy_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002675 vmxnet3_adjust_rx_ring_size(adapter);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002676 err = vmxnet3_rq_create_all(adapter);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002677 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002678 netdev_err(netdev,
2679 "failed to re-create rx queues, "
2680 " error %d. Closing it.\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002681 goto out;
2682 }
2683
2684 err = vmxnet3_activate_dev(adapter);
2685 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002686 netdev_err(netdev,
2687 "failed to re-activate, error %d. "
2688 "Closing it\n", err);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002689 goto out;
2690 }
2691 }
2692
2693out:
2694 clear_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state);
2695 if (err)
2696 vmxnet3_force_close(adapter);
2697
2698 return err;
2699}
2700
2701
2702static void
2703vmxnet3_declare_features(struct vmxnet3_adapter *adapter, bool dma64)
2704{
2705 struct net_device *netdev = adapter->netdev;
2706
Michał Mirosława0d27302011-04-18 13:31:21 +00002707 netdev->hw_features = NETIF_F_SG | NETIF_F_RXCSUM |
Patrick McHardyf6469682013-04-19 02:04:27 +00002708 NETIF_F_HW_CSUM | NETIF_F_HW_VLAN_CTAG_TX |
2709 NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_TSO | NETIF_F_TSO6 |
Jesse Gross72e85c42011-06-23 13:04:39 +00002710 NETIF_F_LRO;
Michał Mirosława0d27302011-04-18 13:31:21 +00002711 if (dma64)
Shreyas Bhatewaraebbf9292011-07-20 17:21:51 +00002712 netdev->hw_features |= NETIF_F_HIGHDMA;
Jesse Gross72e85c42011-06-23 13:04:39 +00002713 netdev->vlan_features = netdev->hw_features &
Patrick McHardyf6469682013-04-19 02:04:27 +00002714 ~(NETIF_F_HW_VLAN_CTAG_TX |
2715 NETIF_F_HW_VLAN_CTAG_RX);
2716 netdev->features = netdev->hw_features | NETIF_F_HW_VLAN_CTAG_FILTER;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002717}
2718
2719
2720static void
2721vmxnet3_read_mac_addr(struct vmxnet3_adapter *adapter, u8 *mac)
2722{
2723 u32 tmp;
2724
2725 tmp = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_MACL);
2726 *(u32 *)mac = tmp;
2727
2728 tmp = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_MACH);
2729 mac[4] = tmp & 0xff;
2730 mac[5] = (tmp >> 8) & 0xff;
2731}
2732
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002733#ifdef CONFIG_PCI_MSI
2734
2735/*
2736 * Enable MSIx vectors.
2737 * Returns :
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002738 * VMXNET3_LINUX_MIN_MSIX_VECT when only minimum number of vectors required
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002739 * were enabled.
2740 * number of vectors which were enabled otherwise (this number is greater
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002741 * than VMXNET3_LINUX_MIN_MSIX_VECT)
2742 */
2743
2744static int
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002745vmxnet3_acquire_msix_vectors(struct vmxnet3_adapter *adapter, int nvec)
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002746{
Alexander Gordeevc0a1be32014-02-18 11:12:03 +01002747 int ret = pci_enable_msix_range(adapter->pdev,
2748 adapter->intr.msix_entries, nvec, nvec);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002749
Alexander Gordeevc0a1be32014-02-18 11:12:03 +01002750 if (ret == -ENOSPC && nvec > VMXNET3_LINUX_MIN_MSIX_VECT) {
2751 dev_err(&adapter->netdev->dev,
2752 "Failed to enable %d MSI-X, trying %d\n",
2753 nvec, VMXNET3_LINUX_MIN_MSIX_VECT);
2754
2755 ret = pci_enable_msix_range(adapter->pdev,
2756 adapter->intr.msix_entries,
2757 VMXNET3_LINUX_MIN_MSIX_VECT,
2758 VMXNET3_LINUX_MIN_MSIX_VECT);
2759 }
2760
2761 if (ret < 0) {
2762 dev_err(&adapter->netdev->dev,
2763 "Failed to enable MSI-X, error: %d\n", ret);
2764 }
2765
2766 return ret;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002767}
2768
2769
2770#endif /* CONFIG_PCI_MSI */
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002771
2772static void
2773vmxnet3_alloc_intr_resources(struct vmxnet3_adapter *adapter)
2774{
2775 u32 cfg;
Roland Dreiere328d412011-05-06 08:32:53 +00002776 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002777
2778 /* intr settings */
Roland Dreiere328d412011-05-06 08:32:53 +00002779 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002780 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
2781 VMXNET3_CMD_GET_CONF_INTR);
2782 cfg = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_CMD);
Roland Dreiere328d412011-05-06 08:32:53 +00002783 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002784 adapter->intr.type = cfg & 0x3;
2785 adapter->intr.mask_mode = (cfg >> 2) & 0x3;
2786
2787 if (adapter->intr.type == VMXNET3_IT_AUTO) {
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00002788 adapter->intr.type = VMXNET3_IT_MSIX;
2789 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002790
Randy Dunlap8f7e5242009-10-14 20:38:58 -07002791#ifdef CONFIG_PCI_MSI
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00002792 if (adapter->intr.type == VMXNET3_IT_MSIX) {
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002793 int i, nvec;
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00002794
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002795 nvec = adapter->share_intr == VMXNET3_INTR_TXSHARE ?
2796 1 : adapter->num_tx_queues;
2797 nvec += adapter->share_intr == VMXNET3_INTR_BUDDYSHARE ?
2798 0 : adapter->num_rx_queues;
2799 nvec += 1; /* for link event */
2800 nvec = nvec > VMXNET3_LINUX_MIN_MSIX_VECT ?
2801 nvec : VMXNET3_LINUX_MIN_MSIX_VECT;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002802
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002803 for (i = 0; i < nvec; i++)
2804 adapter->intr.msix_entries[i].entry = i;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002805
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002806 nvec = vmxnet3_acquire_msix_vectors(adapter, nvec);
2807 if (nvec < 0)
2808 goto msix_err;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002809
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002810 /* If we cannot allocate one MSIx vector per queue
2811 * then limit the number of rx queues to 1
2812 */
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002813 if (nvec == VMXNET3_LINUX_MIN_MSIX_VECT) {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002814 if (adapter->share_intr != VMXNET3_INTR_BUDDYSHARE
Shreyas Bhatewara7e96fbf2011-01-14 15:00:03 +00002815 || adapter->num_rx_queues != 1) {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002816 adapter->share_intr = VMXNET3_INTR_TXSHARE;
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002817 netdev_err(adapter->netdev,
2818 "Number of rx queues : 1\n");
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002819 adapter->num_rx_queues = 1;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002820 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002821 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002822
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002823 adapter->intr.num_intrs = nvec;
2824 return;
2825
2826msix_err:
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002827 /* If we cannot allocate MSIx vectors use only one rx queue */
Stephen Hemminger4bad25f2013-01-15 07:28:28 +00002828 dev_info(&adapter->pdev->dev,
2829 "Failed to enable MSI-X, error %d. "
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002830 "Limiting #rx queues to 1, try MSI.\n", nvec);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002831
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00002832 adapter->intr.type = VMXNET3_IT_MSI;
2833 }
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002834
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00002835 if (adapter->intr.type == VMXNET3_IT_MSI) {
Alexander Gordeevb60b8692014-02-18 11:12:02 +01002836 if (!pci_enable_msi(adapter->pdev)) {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002837 adapter->num_rx_queues = 1;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002838 adapter->intr.num_intrs = 1;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002839 return;
2840 }
2841 }
Shreyas Bhatewara0bdc0d72010-07-15 15:21:27 +00002842#endif /* CONFIG_PCI_MSI */
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002843
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002844 adapter->num_rx_queues = 1;
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002845 dev_info(&adapter->netdev->dev,
2846 "Using INTx interrupt, #Rx queues: 1.\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002847 adapter->intr.type = VMXNET3_IT_INTX;
2848
2849 /* INT-X related setting */
2850 adapter->intr.num_intrs = 1;
2851}
2852
2853
2854static void
2855vmxnet3_free_intr_resources(struct vmxnet3_adapter *adapter)
2856{
2857 if (adapter->intr.type == VMXNET3_IT_MSIX)
2858 pci_disable_msix(adapter->pdev);
2859 else if (adapter->intr.type == VMXNET3_IT_MSI)
2860 pci_disable_msi(adapter->pdev);
2861 else
2862 BUG_ON(adapter->intr.type != VMXNET3_IT_INTX);
2863}
2864
2865
2866static void
2867vmxnet3_tx_timeout(struct net_device *netdev)
2868{
2869 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
2870 adapter->tx_timeout_count++;
2871
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002872 netdev_err(adapter->netdev, "tx hang\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002873 schedule_work(&adapter->work);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002874 netif_wake_queue(adapter->netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002875}
2876
2877
2878static void
2879vmxnet3_reset_work(struct work_struct *data)
2880{
2881 struct vmxnet3_adapter *adapter;
2882
2883 adapter = container_of(data, struct vmxnet3_adapter, work);
2884
2885 /* if another thread is resetting the device, no need to proceed */
2886 if (test_and_set_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state))
2887 return;
2888
2889 /* if the device is closed, we must leave it alone */
Shreyas Bhatewarad9a5f212010-07-19 07:02:13 +00002890 rtnl_lock();
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002891 if (netif_running(adapter->netdev)) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002892 netdev_notice(adapter->netdev, "resetting\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002893 vmxnet3_quiesce_dev(adapter);
2894 vmxnet3_reset_dev(adapter);
2895 vmxnet3_activate_dev(adapter);
2896 } else {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002897 netdev_info(adapter->netdev, "already closed\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002898 }
Shreyas Bhatewarad9a5f212010-07-19 07:02:13 +00002899 rtnl_unlock();
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002900
2901 clear_bit(VMXNET3_STATE_BIT_RESETTING, &adapter->state);
2902}
2903
2904
Bill Pemberton3a4751a2012-12-03 09:24:16 -05002905static int
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002906vmxnet3_probe_device(struct pci_dev *pdev,
2907 const struct pci_device_id *id)
2908{
2909 static const struct net_device_ops vmxnet3_netdev_ops = {
2910 .ndo_open = vmxnet3_open,
2911 .ndo_stop = vmxnet3_close,
2912 .ndo_start_xmit = vmxnet3_xmit_frame,
2913 .ndo_set_mac_address = vmxnet3_set_mac_addr,
2914 .ndo_change_mtu = vmxnet3_change_mtu,
Michał Mirosława0d27302011-04-18 13:31:21 +00002915 .ndo_set_features = vmxnet3_set_features,
stephen hemminger95305f62011-06-08 14:53:57 +00002916 .ndo_get_stats64 = vmxnet3_get_stats64,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002917 .ndo_tx_timeout = vmxnet3_tx_timeout,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00002918 .ndo_set_rx_mode = vmxnet3_set_mc,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002919 .ndo_vlan_rx_add_vid = vmxnet3_vlan_rx_add_vid,
2920 .ndo_vlan_rx_kill_vid = vmxnet3_vlan_rx_kill_vid,
2921#ifdef CONFIG_NET_POLL_CONTROLLER
2922 .ndo_poll_controller = vmxnet3_netpoll,
2923#endif
2924 };
2925 int err;
2926 bool dma64 = false; /* stupid gcc */
2927 u32 ver;
2928 struct net_device *netdev;
2929 struct vmxnet3_adapter *adapter;
2930 u8 mac[ETH_ALEN];
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002931 int size;
2932 int num_tx_queues;
2933 int num_rx_queues;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002934
Shreyas Bhatewarae154b632011-05-10 06:13:56 +00002935 if (!pci_msi_enabled())
2936 enable_mq = 0;
2937
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002938#ifdef VMXNET3_RSS
2939 if (enable_mq)
2940 num_rx_queues = min(VMXNET3_DEVICE_MAX_RX_QUEUES,
2941 (int)num_online_cpus());
2942 else
2943#endif
2944 num_rx_queues = 1;
Shreyas Bhatewaraeebb02b2011-07-07 00:25:52 -07002945 num_rx_queues = rounddown_pow_of_two(num_rx_queues);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002946
2947 if (enable_mq)
2948 num_tx_queues = min(VMXNET3_DEVICE_MAX_TX_QUEUES,
2949 (int)num_online_cpus());
2950 else
2951 num_tx_queues = 1;
2952
Shreyas Bhatewaraeebb02b2011-07-07 00:25:52 -07002953 num_tx_queues = rounddown_pow_of_two(num_tx_queues);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002954 netdev = alloc_etherdev_mq(sizeof(struct vmxnet3_adapter),
2955 max(num_tx_queues, num_rx_queues));
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002956 dev_info(&pdev->dev,
2957 "# of Tx queues : %d, # of Rx queues : %d\n",
2958 num_tx_queues, num_rx_queues);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002959
Joe Perches41de8d42012-01-29 13:47:52 +00002960 if (!netdev)
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002961 return -ENOMEM;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002962
2963 pci_set_drvdata(pdev, netdev);
2964 adapter = netdev_priv(netdev);
2965 adapter->netdev = netdev;
2966 adapter->pdev = pdev;
2967
Neil Hormanf00e2b02014-06-13 10:03:21 -04002968 adapter->tx_ring_size = VMXNET3_DEF_TX_RING_SIZE;
2969 adapter->rx_ring_size = VMXNET3_DEF_RX_RING_SIZE;
Shrikrishna Khare53831aa2015-01-06 09:20:15 -08002970 adapter->rx_ring2_size = VMXNET3_DEF_RX_RING2_SIZE;
Neil Hormanf00e2b02014-06-13 10:03:21 -04002971
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00002972 spin_lock_init(&adapter->cmd_lock);
Andy Kingb0eb57c2013-08-23 09:33:49 -07002973 adapter->adapter_pa = dma_map_single(&adapter->pdev->dev, adapter,
2974 sizeof(struct vmxnet3_adapter),
2975 PCI_DMA_TODEVICE);
2976 adapter->shared = dma_alloc_coherent(
2977 &adapter->pdev->dev,
2978 sizeof(struct Vmxnet3_DriverShared),
2979 &adapter->shared_pa, GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002980 if (!adapter->shared) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002981 dev_err(&pdev->dev, "Failed to allocate memory\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002982 err = -ENOMEM;
2983 goto err_alloc_shared;
2984 }
2985
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002986 adapter->num_rx_queues = num_rx_queues;
2987 adapter->num_tx_queues = num_tx_queues;
Bhavesh Davdae4fabf22013-03-06 12:04:53 +00002988 adapter->rx_buf_per_pkt = 1;
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00002989
2990 size = sizeof(struct Vmxnet3_TxQueueDesc) * adapter->num_tx_queues;
2991 size += sizeof(struct Vmxnet3_RxQueueDesc) * adapter->num_rx_queues;
Andy Kingb0eb57c2013-08-23 09:33:49 -07002992 adapter->tqd_start = dma_alloc_coherent(&adapter->pdev->dev, size,
2993 &adapter->queue_desc_pa,
2994 GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002995
2996 if (!adapter->tqd_start) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00002997 dev_err(&pdev->dev, "Failed to allocate memory\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07002998 err = -ENOMEM;
2999 goto err_alloc_queue_desc;
3000 }
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003001 adapter->rqd_start = (struct Vmxnet3_RxQueueDesc *)(adapter->tqd_start +
stephen hemminger96800ee2012-11-13 13:53:28 +00003002 adapter->num_tx_queues);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003003
Andy Kingb0eb57c2013-08-23 09:33:49 -07003004 adapter->pm_conf = dma_alloc_coherent(&adapter->pdev->dev,
3005 sizeof(struct Vmxnet3_PMConf),
3006 &adapter->pm_conf_pa,
3007 GFP_KERNEL);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003008 if (adapter->pm_conf == NULL) {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003009 err = -ENOMEM;
3010 goto err_alloc_pm;
3011 }
3012
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003013#ifdef VMXNET3_RSS
3014
Andy Kingb0eb57c2013-08-23 09:33:49 -07003015 adapter->rss_conf = dma_alloc_coherent(&adapter->pdev->dev,
3016 sizeof(struct UPT1_RSSConf),
3017 &adapter->rss_conf_pa,
3018 GFP_KERNEL);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003019 if (adapter->rss_conf == NULL) {
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003020 err = -ENOMEM;
3021 goto err_alloc_rss;
3022 }
3023#endif /* VMXNET3_RSS */
3024
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003025 err = vmxnet3_alloc_pci_resources(adapter, &dma64);
3026 if (err < 0)
3027 goto err_alloc_pci;
3028
3029 ver = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_VRRS);
3030 if (ver & 1) {
3031 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_VRRS, 1);
3032 } else {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003033 dev_err(&pdev->dev,
3034 "Incompatible h/w version (0x%x) for adapter\n", ver);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003035 err = -EBUSY;
3036 goto err_ver;
3037 }
3038
3039 ver = VMXNET3_READ_BAR1_REG(adapter, VMXNET3_REG_UVRS);
3040 if (ver & 1) {
3041 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_UVRS, 1);
3042 } else {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003043 dev_err(&pdev->dev,
3044 "Incompatible upt version (0x%x) for adapter\n", ver);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003045 err = -EBUSY;
3046 goto err_ver;
3047 }
3048
Shreyas Bhatewarae101e7d2011-07-20 16:01:11 +00003049 SET_NETDEV_DEV(netdev, &pdev->dev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003050 vmxnet3_declare_features(adapter, dma64);
3051
Stephen Hemminger4db37a72013-01-15 07:28:33 +00003052 if (adapter->num_tx_queues == adapter->num_rx_queues)
3053 adapter->share_intr = VMXNET3_INTR_BUDDYSHARE;
3054 else
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003055 adapter->share_intr = VMXNET3_INTR_DONTSHARE;
3056
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003057 vmxnet3_alloc_intr_resources(adapter);
3058
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003059#ifdef VMXNET3_RSS
3060 if (adapter->num_rx_queues > 1 &&
3061 adapter->intr.type == VMXNET3_IT_MSIX) {
3062 adapter->rss = true;
Stephen Hemminger7db11f72013-01-15 07:28:35 +00003063 netdev->hw_features |= NETIF_F_RXHASH;
3064 netdev->features |= NETIF_F_RXHASH;
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003065 dev_dbg(&pdev->dev, "RSS is enabled.\n");
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003066 } else {
3067 adapter->rss = false;
3068 }
3069#endif
3070
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003071 vmxnet3_read_mac_addr(adapter, mac);
3072 memcpy(netdev->dev_addr, mac, netdev->addr_len);
3073
3074 netdev->netdev_ops = &vmxnet3_netdev_ops;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003075 vmxnet3_set_ethtool_ops(netdev);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003076 netdev->watchdog_timeo = 5 * HZ;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003077
3078 INIT_WORK(&adapter->work, vmxnet3_reset_work);
Steve Hodgsone3bc4ff2012-08-14 17:13:36 +01003079 set_bit(VMXNET3_STATE_BIT_QUIESCED, &adapter->state);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003080
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003081 if (adapter->intr.type == VMXNET3_IT_MSIX) {
3082 int i;
3083 for (i = 0; i < adapter->num_rx_queues; i++) {
3084 netif_napi_add(adapter->netdev,
3085 &adapter->rx_queue[i].napi,
3086 vmxnet3_poll_rx_only, 64);
3087 }
3088 } else {
3089 netif_napi_add(adapter->netdev, &adapter->rx_queue[0].napi,
3090 vmxnet3_poll, 64);
3091 }
3092
3093 netif_set_real_num_tx_queues(adapter->netdev, adapter->num_tx_queues);
3094 netif_set_real_num_rx_queues(adapter->netdev, adapter->num_rx_queues);
3095
Neil Horman6cdd20c2013-01-29 16:15:45 -05003096 netif_carrier_off(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003097 err = register_netdev(netdev);
3098
3099 if (err) {
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003100 dev_err(&pdev->dev, "Failed to register adapter\n");
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003101 goto err_register;
3102 }
3103
Shreyas Bhatewara4a1745fc2010-07-15 21:51:14 +00003104 vmxnet3_check_link(adapter, false);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003105 return 0;
3106
3107err_register:
3108 vmxnet3_free_intr_resources(adapter);
3109err_ver:
3110 vmxnet3_free_pci_resources(adapter);
3111err_alloc_pci:
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003112#ifdef VMXNET3_RSS
Andy Kingb0eb57c2013-08-23 09:33:49 -07003113 dma_free_coherent(&adapter->pdev->dev, sizeof(struct UPT1_RSSConf),
3114 adapter->rss_conf, adapter->rss_conf_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003115err_alloc_rss:
3116#endif
Andy Kingb0eb57c2013-08-23 09:33:49 -07003117 dma_free_coherent(&adapter->pdev->dev, sizeof(struct Vmxnet3_PMConf),
3118 adapter->pm_conf, adapter->pm_conf_pa);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003119err_alloc_pm:
Andy Kingb0eb57c2013-08-23 09:33:49 -07003120 dma_free_coherent(&adapter->pdev->dev, size, adapter->tqd_start,
3121 adapter->queue_desc_pa);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003122err_alloc_queue_desc:
Andy Kingb0eb57c2013-08-23 09:33:49 -07003123 dma_free_coherent(&adapter->pdev->dev,
3124 sizeof(struct Vmxnet3_DriverShared),
3125 adapter->shared, adapter->shared_pa);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003126err_alloc_shared:
Andy Kingb0eb57c2013-08-23 09:33:49 -07003127 dma_unmap_single(&adapter->pdev->dev, adapter->adapter_pa,
3128 sizeof(struct vmxnet3_adapter), PCI_DMA_TODEVICE);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003129 free_netdev(netdev);
3130 return err;
3131}
3132
3133
Bill Pemberton3a4751a2012-12-03 09:24:16 -05003134static void
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003135vmxnet3_remove_device(struct pci_dev *pdev)
3136{
3137 struct net_device *netdev = pci_get_drvdata(pdev);
3138 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003139 int size = 0;
3140 int num_rx_queues;
3141
3142#ifdef VMXNET3_RSS
3143 if (enable_mq)
3144 num_rx_queues = min(VMXNET3_DEVICE_MAX_RX_QUEUES,
3145 (int)num_online_cpus());
3146 else
3147#endif
3148 num_rx_queues = 1;
Shreyas Bhatewaraeebb02b2011-07-07 00:25:52 -07003149 num_rx_queues = rounddown_pow_of_two(num_rx_queues);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003150
Tejun Heo23f333a2010-12-12 16:45:14 +01003151 cancel_work_sync(&adapter->work);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003152
3153 unregister_netdev(netdev);
3154
3155 vmxnet3_free_intr_resources(adapter);
3156 vmxnet3_free_pci_resources(adapter);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003157#ifdef VMXNET3_RSS
Andy Kingb0eb57c2013-08-23 09:33:49 -07003158 dma_free_coherent(&adapter->pdev->dev, sizeof(struct UPT1_RSSConf),
3159 adapter->rss_conf, adapter->rss_conf_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003160#endif
Andy Kingb0eb57c2013-08-23 09:33:49 -07003161 dma_free_coherent(&adapter->pdev->dev, sizeof(struct Vmxnet3_PMConf),
3162 adapter->pm_conf, adapter->pm_conf_pa);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003163
3164 size = sizeof(struct Vmxnet3_TxQueueDesc) * adapter->num_tx_queues;
3165 size += sizeof(struct Vmxnet3_RxQueueDesc) * num_rx_queues;
Andy Kingb0eb57c2013-08-23 09:33:49 -07003166 dma_free_coherent(&adapter->pdev->dev, size, adapter->tqd_start,
3167 adapter->queue_desc_pa);
3168 dma_free_coherent(&adapter->pdev->dev,
3169 sizeof(struct Vmxnet3_DriverShared),
3170 adapter->shared, adapter->shared_pa);
3171 dma_unmap_single(&adapter->pdev->dev, adapter->adapter_pa,
3172 sizeof(struct vmxnet3_adapter), PCI_DMA_TODEVICE);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003173 free_netdev(netdev);
3174}
3175
3176
3177#ifdef CONFIG_PM
3178
3179static int
3180vmxnet3_suspend(struct device *device)
3181{
3182 struct pci_dev *pdev = to_pci_dev(device);
3183 struct net_device *netdev = pci_get_drvdata(pdev);
3184 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
3185 struct Vmxnet3_PMConf *pmConf;
3186 struct ethhdr *ehdr;
3187 struct arphdr *ahdr;
3188 u8 *arpreq;
3189 struct in_device *in_dev;
3190 struct in_ifaddr *ifa;
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003191 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003192 int i = 0;
3193
3194 if (!netif_running(netdev))
3195 return 0;
3196
Shreyas Bhatewara51956cd2011-01-14 14:59:52 +00003197 for (i = 0; i < adapter->num_rx_queues; i++)
3198 napi_disable(&adapter->rx_queue[i].napi);
3199
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003200 vmxnet3_disable_all_intrs(adapter);
3201 vmxnet3_free_irqs(adapter);
3202 vmxnet3_free_intr_resources(adapter);
3203
3204 netif_device_detach(netdev);
Shreyas Bhatewara09c50882010-11-19 10:55:24 +00003205 netif_tx_stop_all_queues(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003206
3207 /* Create wake-up filters. */
3208 pmConf = adapter->pm_conf;
3209 memset(pmConf, 0, sizeof(*pmConf));
3210
3211 if (adapter->wol & WAKE_UCAST) {
3212 pmConf->filters[i].patternSize = ETH_ALEN;
3213 pmConf->filters[i].maskSize = 1;
3214 memcpy(pmConf->filters[i].pattern, netdev->dev_addr, ETH_ALEN);
3215 pmConf->filters[i].mask[0] = 0x3F; /* LSB ETH_ALEN bits */
3216
Harvey Harrison3843e512010-10-21 18:05:32 +00003217 pmConf->wakeUpEvents |= VMXNET3_PM_WAKEUP_FILTER;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003218 i++;
3219 }
3220
3221 if (adapter->wol & WAKE_ARP) {
3222 in_dev = in_dev_get(netdev);
3223 if (!in_dev)
3224 goto skip_arp;
3225
3226 ifa = (struct in_ifaddr *)in_dev->ifa_list;
3227 if (!ifa)
3228 goto skip_arp;
3229
3230 pmConf->filters[i].patternSize = ETH_HLEN + /* Ethernet header*/
3231 sizeof(struct arphdr) + /* ARP header */
3232 2 * ETH_ALEN + /* 2 Ethernet addresses*/
3233 2 * sizeof(u32); /*2 IPv4 addresses */
3234 pmConf->filters[i].maskSize =
3235 (pmConf->filters[i].patternSize - 1) / 8 + 1;
3236
3237 /* ETH_P_ARP in Ethernet header. */
3238 ehdr = (struct ethhdr *)pmConf->filters[i].pattern;
3239 ehdr->h_proto = htons(ETH_P_ARP);
3240
3241 /* ARPOP_REQUEST in ARP header. */
3242 ahdr = (struct arphdr *)&pmConf->filters[i].pattern[ETH_HLEN];
3243 ahdr->ar_op = htons(ARPOP_REQUEST);
3244 arpreq = (u8 *)(ahdr + 1);
3245
3246 /* The Unicast IPv4 address in 'tip' field. */
3247 arpreq += 2 * ETH_ALEN + sizeof(u32);
3248 *(u32 *)arpreq = ifa->ifa_address;
3249
3250 /* The mask for the relevant bits. */
3251 pmConf->filters[i].mask[0] = 0x00;
3252 pmConf->filters[i].mask[1] = 0x30; /* ETH_P_ARP */
3253 pmConf->filters[i].mask[2] = 0x30; /* ARPOP_REQUEST */
3254 pmConf->filters[i].mask[3] = 0x00;
3255 pmConf->filters[i].mask[4] = 0xC0; /* IPv4 TIP */
3256 pmConf->filters[i].mask[5] = 0x03; /* IPv4 TIP */
3257 in_dev_put(in_dev);
3258
Harvey Harrison3843e512010-10-21 18:05:32 +00003259 pmConf->wakeUpEvents |= VMXNET3_PM_WAKEUP_FILTER;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003260 i++;
3261 }
3262
3263skip_arp:
3264 if (adapter->wol & WAKE_MAGIC)
Harvey Harrison3843e512010-10-21 18:05:32 +00003265 pmConf->wakeUpEvents |= VMXNET3_PM_WAKEUP_MAGIC;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003266
3267 pmConf->numFilters = i;
3268
Shreyas Bhatewara115924b2009-11-16 13:41:33 +00003269 adapter->shared->devRead.pmConfDesc.confVer = cpu_to_le32(1);
3270 adapter->shared->devRead.pmConfDesc.confLen = cpu_to_le32(sizeof(
3271 *pmConf));
Andy Kingb0eb57c2013-08-23 09:33:49 -07003272 adapter->shared->devRead.pmConfDesc.confPA =
3273 cpu_to_le64(adapter->pm_conf_pa);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003274
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003275 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003276 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
3277 VMXNET3_CMD_UPDATE_PMCFG);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003278 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003279
3280 pci_save_state(pdev);
3281 pci_enable_wake(pdev, pci_choose_state(pdev, PMSG_SUSPEND),
3282 adapter->wol);
3283 pci_disable_device(pdev);
3284 pci_set_power_state(pdev, pci_choose_state(pdev, PMSG_SUSPEND));
3285
3286 return 0;
3287}
3288
3289
3290static int
3291vmxnet3_resume(struct device *device)
3292{
Shrikrishna Khare5ec82c12015-01-09 15:19:14 -08003293 int err;
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003294 unsigned long flags;
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003295 struct pci_dev *pdev = to_pci_dev(device);
3296 struct net_device *netdev = pci_get_drvdata(pdev);
3297 struct vmxnet3_adapter *adapter = netdev_priv(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003298
3299 if (!netif_running(netdev))
3300 return 0;
3301
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003302 pci_set_power_state(pdev, PCI_D0);
3303 pci_restore_state(pdev);
3304 err = pci_enable_device_mem(pdev);
3305 if (err != 0)
3306 return err;
3307
3308 pci_enable_wake(pdev, PCI_D0, 0);
3309
Shrikrishna Khare5ec82c12015-01-09 15:19:14 -08003310 vmxnet3_alloc_intr_resources(adapter);
3311
3312 /* During hibernate and suspend, device has to be reinitialized as the
3313 * device state need not be preserved.
3314 */
3315
3316 /* Need not check adapter state as other reset tasks cannot run during
3317 * device resume.
3318 */
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003319 spin_lock_irqsave(&adapter->cmd_lock, flags);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003320 VMXNET3_WRITE_BAR1_REG(adapter, VMXNET3_REG_CMD,
Shrikrishna Khare5ec82c12015-01-09 15:19:14 -08003321 VMXNET3_CMD_QUIESCE_DEV);
Shreyas Bhatewara83d0fef2011-01-14 14:59:57 +00003322 spin_unlock_irqrestore(&adapter->cmd_lock, flags);
Shrikrishna Khare5ec82c12015-01-09 15:19:14 -08003323 vmxnet3_tq_cleanup_all(adapter);
3324 vmxnet3_rq_cleanup_all(adapter);
3325
3326 vmxnet3_reset_dev(adapter);
3327 err = vmxnet3_activate_dev(adapter);
3328 if (err != 0) {
3329 netdev_err(netdev,
3330 "failed to re-activate on resume, error: %d", err);
3331 vmxnet3_force_close(adapter);
3332 return err;
3333 }
3334 netif_device_attach(netdev);
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003335
3336 return 0;
3337}
3338
Alexey Dobriyan47145212009-12-14 18:00:08 -08003339static const struct dev_pm_ops vmxnet3_pm_ops = {
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003340 .suspend = vmxnet3_suspend,
3341 .resume = vmxnet3_resume,
Shrikrishna Khare5ec82c12015-01-09 15:19:14 -08003342 .freeze = vmxnet3_suspend,
3343 .restore = vmxnet3_resume,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003344};
3345#endif
3346
3347static struct pci_driver vmxnet3_driver = {
3348 .name = vmxnet3_driver_name,
3349 .id_table = vmxnet3_pciid_table,
3350 .probe = vmxnet3_probe_device,
Bill Pemberton3a4751a2012-12-03 09:24:16 -05003351 .remove = vmxnet3_remove_device,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003352#ifdef CONFIG_PM
3353 .driver.pm = &vmxnet3_pm_ops,
3354#endif
3355};
3356
3357
3358static int __init
3359vmxnet3_init_module(void)
3360{
Stephen Hemminger204a6e62013-01-15 07:28:30 +00003361 pr_info("%s - version %s\n", VMXNET3_DRIVER_DESC,
Shreyas Bhatewarad1a890fa2009-10-13 00:15:51 -07003362 VMXNET3_DRIVER_VERSION_REPORT);
3363 return pci_register_driver(&vmxnet3_driver);
3364}
3365
3366module_init(vmxnet3_init_module);
3367
3368
3369static void
3370vmxnet3_exit_module(void)
3371{
3372 pci_unregister_driver(&vmxnet3_driver);
3373}
3374
3375module_exit(vmxnet3_exit_module);
3376
3377MODULE_AUTHOR("VMware, Inc.");
3378MODULE_DESCRIPTION(VMXNET3_DRIVER_DESC);
3379MODULE_LICENSE("GPL v2");
3380MODULE_VERSION(VMXNET3_DRIVER_VERSION_STRING);