blob: b4a11befb3b31308ab05b1695ac667460f606847 [file] [log] [blame]
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001/*
2 * Copyright 2008 Cisco Systems, Inc. All rights reserved.
3 * Copyright 2007 Nuova Systems, Inc. All rights reserved.
4 *
5 * This program is free software; you may redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
10 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
11 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
12 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
13 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
14 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
16 * SOFTWARE.
17 *
18 */
19
20#include <linux/module.h>
21#include <linux/kernel.h>
22#include <linux/string.h>
23#include <linux/errno.h>
24#include <linux/types.h>
25#include <linux/init.h>
26#include <linux/workqueue.h>
27#include <linux/pci.h>
28#include <linux/netdevice.h>
29#include <linux/etherdevice.h>
30#include <linux/if_ether.h>
31#include <linux/if_vlan.h>
32#include <linux/ethtool.h>
33#include <linux/in.h>
34#include <linux/ip.h>
35#include <linux/ipv6.h>
36#include <linux/tcp.h>
Kamalesh Babulalb7c6bfb2008-10-13 18:41:01 -070037#include <net/ip6_checksum.h>
Scott Feldman01f2e4e2008-09-15 09:17:11 -070038
39#include "cq_enet_desc.h"
40#include "vnic_dev.h"
41#include "vnic_intr.h"
42#include "vnic_stats.h"
43#include "enic_res.h"
44#include "enic.h"
45
46#define ENIC_NOTIFY_TIMER_PERIOD (2 * HZ)
Scott Feldmanea0d7d92009-09-03 17:02:03 +000047#define WQ_ENET_MAX_DESC_LEN (1 << WQ_ENET_LEN_BITS)
48#define MAX_TSO (1 << 16)
49#define ENIC_DESC_MAX_SPLITS (MAX_TSO / WQ_ENET_MAX_DESC_LEN + 1)
50
51#define PCI_DEVICE_ID_CISCO_VIC_ENET 0x0043 /* ethernet vnic */
Scott Feldman01f2e4e2008-09-15 09:17:11 -070052
53/* Supported devices */
54static struct pci_device_id enic_id_table[] = {
Scott Feldmanea0d7d92009-09-03 17:02:03 +000055 { PCI_VDEVICE(CISCO, PCI_DEVICE_ID_CISCO_VIC_ENET) },
Scott Feldman01f2e4e2008-09-15 09:17:11 -070056 { 0, } /* end of table */
57};
58
59MODULE_DESCRIPTION(DRV_DESCRIPTION);
60MODULE_AUTHOR("Scott Feldman <scofeldm@cisco.com>");
61MODULE_LICENSE("GPL");
62MODULE_VERSION(DRV_VERSION);
63MODULE_DEVICE_TABLE(pci, enic_id_table);
64
65struct enic_stat {
66 char name[ETH_GSTRING_LEN];
67 unsigned int offset;
68};
69
70#define ENIC_TX_STAT(stat) \
71 { .name = #stat, .offset = offsetof(struct vnic_tx_stats, stat) / 8 }
72#define ENIC_RX_STAT(stat) \
73 { .name = #stat, .offset = offsetof(struct vnic_rx_stats, stat) / 8 }
74
75static const struct enic_stat enic_tx_stats[] = {
76 ENIC_TX_STAT(tx_frames_ok),
77 ENIC_TX_STAT(tx_unicast_frames_ok),
78 ENIC_TX_STAT(tx_multicast_frames_ok),
79 ENIC_TX_STAT(tx_broadcast_frames_ok),
80 ENIC_TX_STAT(tx_bytes_ok),
81 ENIC_TX_STAT(tx_unicast_bytes_ok),
82 ENIC_TX_STAT(tx_multicast_bytes_ok),
83 ENIC_TX_STAT(tx_broadcast_bytes_ok),
84 ENIC_TX_STAT(tx_drops),
85 ENIC_TX_STAT(tx_errors),
86 ENIC_TX_STAT(tx_tso),
87};
88
89static const struct enic_stat enic_rx_stats[] = {
90 ENIC_RX_STAT(rx_frames_ok),
91 ENIC_RX_STAT(rx_frames_total),
92 ENIC_RX_STAT(rx_unicast_frames_ok),
93 ENIC_RX_STAT(rx_multicast_frames_ok),
94 ENIC_RX_STAT(rx_broadcast_frames_ok),
95 ENIC_RX_STAT(rx_bytes_ok),
96 ENIC_RX_STAT(rx_unicast_bytes_ok),
97 ENIC_RX_STAT(rx_multicast_bytes_ok),
98 ENIC_RX_STAT(rx_broadcast_bytes_ok),
99 ENIC_RX_STAT(rx_drop),
100 ENIC_RX_STAT(rx_no_bufs),
101 ENIC_RX_STAT(rx_errors),
102 ENIC_RX_STAT(rx_rss),
103 ENIC_RX_STAT(rx_crc_errors),
104 ENIC_RX_STAT(rx_frames_64),
105 ENIC_RX_STAT(rx_frames_127),
106 ENIC_RX_STAT(rx_frames_255),
107 ENIC_RX_STAT(rx_frames_511),
108 ENIC_RX_STAT(rx_frames_1023),
109 ENIC_RX_STAT(rx_frames_1518),
110 ENIC_RX_STAT(rx_frames_to_max),
111};
112
113static const unsigned int enic_n_tx_stats = ARRAY_SIZE(enic_tx_stats);
114static const unsigned int enic_n_rx_stats = ARRAY_SIZE(enic_rx_stats);
115
116static int enic_get_settings(struct net_device *netdev,
117 struct ethtool_cmd *ecmd)
118{
119 struct enic *enic = netdev_priv(netdev);
120
121 ecmd->supported = (SUPPORTED_10000baseT_Full | SUPPORTED_FIBRE);
122 ecmd->advertising = (ADVERTISED_10000baseT_Full | ADVERTISED_FIBRE);
123 ecmd->port = PORT_FIBRE;
124 ecmd->transceiver = XCVR_EXTERNAL;
125
126 if (netif_carrier_ok(netdev)) {
127 ecmd->speed = vnic_dev_port_speed(enic->vdev);
128 ecmd->duplex = DUPLEX_FULL;
129 } else {
130 ecmd->speed = -1;
131 ecmd->duplex = -1;
132 }
133
134 ecmd->autoneg = AUTONEG_DISABLE;
135
136 return 0;
137}
138
139static void enic_get_drvinfo(struct net_device *netdev,
140 struct ethtool_drvinfo *drvinfo)
141{
142 struct enic *enic = netdev_priv(netdev);
143 struct vnic_devcmd_fw_info *fw_info;
144
145 spin_lock(&enic->devcmd_lock);
146 vnic_dev_fw_info(enic->vdev, &fw_info);
147 spin_unlock(&enic->devcmd_lock);
148
149 strncpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver));
150 strncpy(drvinfo->version, DRV_VERSION, sizeof(drvinfo->version));
151 strncpy(drvinfo->fw_version, fw_info->fw_version,
152 sizeof(drvinfo->fw_version));
153 strncpy(drvinfo->bus_info, pci_name(enic->pdev),
154 sizeof(drvinfo->bus_info));
155}
156
157static void enic_get_strings(struct net_device *netdev, u32 stringset, u8 *data)
158{
159 unsigned int i;
160
161 switch (stringset) {
162 case ETH_SS_STATS:
163 for (i = 0; i < enic_n_tx_stats; i++) {
164 memcpy(data, enic_tx_stats[i].name, ETH_GSTRING_LEN);
165 data += ETH_GSTRING_LEN;
166 }
167 for (i = 0; i < enic_n_rx_stats; i++) {
168 memcpy(data, enic_rx_stats[i].name, ETH_GSTRING_LEN);
169 data += ETH_GSTRING_LEN;
170 }
171 break;
172 }
173}
174
Scott Feldman25f0a062008-09-24 11:23:32 -0700175static int enic_get_sset_count(struct net_device *netdev, int sset)
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700176{
Scott Feldman25f0a062008-09-24 11:23:32 -0700177 switch (sset) {
178 case ETH_SS_STATS:
179 return enic_n_tx_stats + enic_n_rx_stats;
180 default:
181 return -EOPNOTSUPP;
182 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700183}
184
185static void enic_get_ethtool_stats(struct net_device *netdev,
186 struct ethtool_stats *stats, u64 *data)
187{
188 struct enic *enic = netdev_priv(netdev);
189 struct vnic_stats *vstats;
190 unsigned int i;
191
192 spin_lock(&enic->devcmd_lock);
193 vnic_dev_stats_dump(enic->vdev, &vstats);
194 spin_unlock(&enic->devcmd_lock);
195
196 for (i = 0; i < enic_n_tx_stats; i++)
197 *(data++) = ((u64 *)&vstats->tx)[enic_tx_stats[i].offset];
198 for (i = 0; i < enic_n_rx_stats; i++)
199 *(data++) = ((u64 *)&vstats->rx)[enic_rx_stats[i].offset];
200}
201
202static u32 enic_get_rx_csum(struct net_device *netdev)
203{
204 struct enic *enic = netdev_priv(netdev);
205 return enic->csum_rx_enabled;
206}
207
208static int enic_set_rx_csum(struct net_device *netdev, u32 data)
209{
210 struct enic *enic = netdev_priv(netdev);
211
Scott Feldman25f0a062008-09-24 11:23:32 -0700212 if (data && !ENIC_SETTING(enic, RXCSUM))
213 return -EINVAL;
214
215 enic->csum_rx_enabled = !!data;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700216
217 return 0;
218}
219
220static int enic_set_tx_csum(struct net_device *netdev, u32 data)
221{
222 struct enic *enic = netdev_priv(netdev);
223
Scott Feldman25f0a062008-09-24 11:23:32 -0700224 if (data && !ENIC_SETTING(enic, TXCSUM))
225 return -EINVAL;
226
227 if (data)
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700228 netdev->features |= NETIF_F_HW_CSUM;
229 else
230 netdev->features &= ~NETIF_F_HW_CSUM;
231
232 return 0;
233}
234
235static int enic_set_tso(struct net_device *netdev, u32 data)
236{
237 struct enic *enic = netdev_priv(netdev);
238
Scott Feldman25f0a062008-09-24 11:23:32 -0700239 if (data && !ENIC_SETTING(enic, TSO))
240 return -EINVAL;
241
242 if (data)
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700243 netdev->features |=
244 NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_TSO_ECN;
245 else
246 netdev->features &=
247 ~(NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_TSO_ECN);
248
249 return 0;
250}
251
252static u32 enic_get_msglevel(struct net_device *netdev)
253{
254 struct enic *enic = netdev_priv(netdev);
255 return enic->msg_enable;
256}
257
258static void enic_set_msglevel(struct net_device *netdev, u32 value)
259{
260 struct enic *enic = netdev_priv(netdev);
261 enic->msg_enable = value;
262}
263
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700264static const struct ethtool_ops enic_ethtool_ops = {
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700265 .get_settings = enic_get_settings,
266 .get_drvinfo = enic_get_drvinfo,
267 .get_msglevel = enic_get_msglevel,
268 .set_msglevel = enic_set_msglevel,
269 .get_link = ethtool_op_get_link,
270 .get_strings = enic_get_strings,
Scott Feldman25f0a062008-09-24 11:23:32 -0700271 .get_sset_count = enic_get_sset_count,
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700272 .get_ethtool_stats = enic_get_ethtool_stats,
273 .get_rx_csum = enic_get_rx_csum,
274 .set_rx_csum = enic_set_rx_csum,
275 .get_tx_csum = ethtool_op_get_tx_csum,
276 .set_tx_csum = enic_set_tx_csum,
277 .get_sg = ethtool_op_get_sg,
278 .set_sg = ethtool_op_set_sg,
279 .get_tso = ethtool_op_get_tso,
280 .set_tso = enic_set_tso,
Scott Feldman86ca9db2008-11-21 21:26:55 -0800281 .get_flags = ethtool_op_get_flags,
282 .set_flags = ethtool_op_set_flags,
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700283};
284
285static void enic_free_wq_buf(struct vnic_wq *wq, struct vnic_wq_buf *buf)
286{
287 struct enic *enic = vnic_dev_priv(wq->vdev);
288
289 if (buf->sop)
290 pci_unmap_single(enic->pdev, buf->dma_addr,
291 buf->len, PCI_DMA_TODEVICE);
292 else
293 pci_unmap_page(enic->pdev, buf->dma_addr,
294 buf->len, PCI_DMA_TODEVICE);
295
296 if (buf->os_buf)
297 dev_kfree_skb_any(buf->os_buf);
298}
299
300static void enic_wq_free_buf(struct vnic_wq *wq,
301 struct cq_desc *cq_desc, struct vnic_wq_buf *buf, void *opaque)
302{
303 enic_free_wq_buf(wq, buf);
304}
305
306static int enic_wq_service(struct vnic_dev *vdev, struct cq_desc *cq_desc,
307 u8 type, u16 q_number, u16 completed_index, void *opaque)
308{
309 struct enic *enic = vnic_dev_priv(vdev);
310
311 spin_lock(&enic->wq_lock[q_number]);
312
313 vnic_wq_service(&enic->wq[q_number], cq_desc,
314 completed_index, enic_wq_free_buf,
315 opaque);
316
317 if (netif_queue_stopped(enic->netdev) &&
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000318 vnic_wq_desc_avail(&enic->wq[q_number]) >=
319 (MAX_SKB_FRAGS + ENIC_DESC_MAX_SPLITS))
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700320 netif_wake_queue(enic->netdev);
321
322 spin_unlock(&enic->wq_lock[q_number]);
323
324 return 0;
325}
326
327static void enic_log_q_error(struct enic *enic)
328{
329 unsigned int i;
330 u32 error_status;
331
332 for (i = 0; i < enic->wq_count; i++) {
333 error_status = vnic_wq_error_status(&enic->wq[i]);
334 if (error_status)
335 printk(KERN_ERR PFX "%s: WQ[%d] error_status %d\n",
336 enic->netdev->name, i, error_status);
337 }
338
339 for (i = 0; i < enic->rq_count; i++) {
340 error_status = vnic_rq_error_status(&enic->rq[i]);
341 if (error_status)
342 printk(KERN_ERR PFX "%s: RQ[%d] error_status %d\n",
343 enic->netdev->name, i, error_status);
344 }
345}
346
347static void enic_link_check(struct enic *enic)
348{
349 int link_status = vnic_dev_link_status(enic->vdev);
350 int carrier_ok = netif_carrier_ok(enic->netdev);
351
352 if (link_status && !carrier_ok) {
353 printk(KERN_INFO PFX "%s: Link UP\n", enic->netdev->name);
354 netif_carrier_on(enic->netdev);
355 } else if (!link_status && carrier_ok) {
356 printk(KERN_INFO PFX "%s: Link DOWN\n", enic->netdev->name);
357 netif_carrier_off(enic->netdev);
358 }
359}
360
361static void enic_mtu_check(struct enic *enic)
362{
363 u32 mtu = vnic_dev_mtu(enic->vdev);
364
Scott Feldman491598a2009-09-03 17:02:40 +0000365 if (mtu && mtu != enic->port_mtu) {
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700366 if (mtu < enic->netdev->mtu)
367 printk(KERN_WARNING PFX
368 "%s: interface MTU (%d) set higher "
369 "than switch port MTU (%d)\n",
370 enic->netdev->name, enic->netdev->mtu, mtu);
371 enic->port_mtu = mtu;
372 }
373}
374
375static void enic_msglvl_check(struct enic *enic)
376{
377 u32 msg_enable = vnic_dev_msg_lvl(enic->vdev);
378
379 if (msg_enable != enic->msg_enable) {
380 printk(KERN_INFO PFX "%s: msg lvl changed from 0x%x to 0x%x\n",
381 enic->netdev->name, enic->msg_enable, msg_enable);
382 enic->msg_enable = msg_enable;
383 }
384}
385
386static void enic_notify_check(struct enic *enic)
387{
388 enic_msglvl_check(enic);
389 enic_mtu_check(enic);
390 enic_link_check(enic);
391}
392
393#define ENIC_TEST_INTR(pba, i) (pba & (1 << i))
394
395static irqreturn_t enic_isr_legacy(int irq, void *data)
396{
397 struct net_device *netdev = data;
398 struct enic *enic = netdev_priv(netdev);
399 u32 pba;
400
401 vnic_intr_mask(&enic->intr[ENIC_INTX_WQ_RQ]);
402
403 pba = vnic_intr_legacy_pba(enic->legacy_pba);
404 if (!pba) {
405 vnic_intr_unmask(&enic->intr[ENIC_INTX_WQ_RQ]);
406 return IRQ_NONE; /* not our interrupt */
407 }
408
Scott Feldmaned8af6b2009-02-09 23:23:50 -0800409 if (ENIC_TEST_INTR(pba, ENIC_INTX_NOTIFY)) {
410 vnic_intr_return_all_credits(&enic->intr[ENIC_INTX_NOTIFY]);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700411 enic_notify_check(enic);
Scott Feldmaned8af6b2009-02-09 23:23:50 -0800412 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700413
414 if (ENIC_TEST_INTR(pba, ENIC_INTX_ERR)) {
Scott Feldmaned8af6b2009-02-09 23:23:50 -0800415 vnic_intr_return_all_credits(&enic->intr[ENIC_INTX_ERR]);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700416 enic_log_q_error(enic);
417 /* schedule recovery from WQ/RQ error */
418 schedule_work(&enic->reset);
419 return IRQ_HANDLED;
420 }
421
422 if (ENIC_TEST_INTR(pba, ENIC_INTX_WQ_RQ)) {
Ben Hutchings288379f2009-01-19 16:43:59 -0800423 if (napi_schedule_prep(&enic->napi))
424 __napi_schedule(&enic->napi);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700425 } else {
426 vnic_intr_unmask(&enic->intr[ENIC_INTX_WQ_RQ]);
427 }
428
429 return IRQ_HANDLED;
430}
431
432static irqreturn_t enic_isr_msi(int irq, void *data)
433{
434 struct enic *enic = data;
435
436 /* With MSI, there is no sharing of interrupts, so this is
437 * our interrupt and there is no need to ack it. The device
438 * is not providing per-vector masking, so the OS will not
439 * write to PCI config space to mask/unmask the interrupt.
440 * We're using mask_on_assertion for MSI, so the device
441 * automatically masks the interrupt when the interrupt is
442 * generated. Later, when exiting polling, the interrupt
443 * will be unmasked (see enic_poll).
444 *
445 * Also, the device uses the same PCIe Traffic Class (TC)
446 * for Memory Write data and MSI, so there are no ordering
447 * issues; the MSI will always arrive at the Root Complex
448 * _after_ corresponding Memory Writes (i.e. descriptor
449 * writes).
450 */
451
Ben Hutchings288379f2009-01-19 16:43:59 -0800452 napi_schedule(&enic->napi);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700453
454 return IRQ_HANDLED;
455}
456
457static irqreturn_t enic_isr_msix_rq(int irq, void *data)
458{
459 struct enic *enic = data;
460
461 /* schedule NAPI polling for RQ cleanup */
Ben Hutchings288379f2009-01-19 16:43:59 -0800462 napi_schedule(&enic->napi);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700463
464 return IRQ_HANDLED;
465}
466
467static irqreturn_t enic_isr_msix_wq(int irq, void *data)
468{
469 struct enic *enic = data;
470 unsigned int wq_work_to_do = -1; /* no limit */
471 unsigned int wq_work_done;
472
473 wq_work_done = vnic_cq_service(&enic->cq[ENIC_CQ_WQ],
474 wq_work_to_do, enic_wq_service, NULL);
475
476 vnic_intr_return_credits(&enic->intr[ENIC_MSIX_WQ],
477 wq_work_done,
478 1 /* unmask intr */,
479 1 /* reset intr timer */);
480
481 return IRQ_HANDLED;
482}
483
484static irqreturn_t enic_isr_msix_err(int irq, void *data)
485{
486 struct enic *enic = data;
487
Scott Feldmaned8af6b2009-02-09 23:23:50 -0800488 vnic_intr_return_all_credits(&enic->intr[ENIC_MSIX_ERR]);
489
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700490 enic_log_q_error(enic);
491
492 /* schedule recovery from WQ/RQ error */
493 schedule_work(&enic->reset);
494
495 return IRQ_HANDLED;
496}
497
498static irqreturn_t enic_isr_msix_notify(int irq, void *data)
499{
500 struct enic *enic = data;
501
Scott Feldmaned8af6b2009-02-09 23:23:50 -0800502 vnic_intr_return_all_credits(&enic->intr[ENIC_MSIX_NOTIFY]);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700503 enic_notify_check(enic);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700504
505 return IRQ_HANDLED;
506}
507
508static inline void enic_queue_wq_skb_cont(struct enic *enic,
509 struct vnic_wq *wq, struct sk_buff *skb,
510 unsigned int len_left)
511{
512 skb_frag_t *frag;
513
514 /* Queue additional data fragments */
515 for (frag = skb_shinfo(skb)->frags; len_left; frag++) {
516 len_left -= frag->size;
517 enic_queue_wq_desc_cont(wq, skb,
518 pci_map_page(enic->pdev, frag->page,
519 frag->page_offset, frag->size,
520 PCI_DMA_TODEVICE),
521 frag->size,
522 (len_left == 0)); /* EOP? */
523 }
524}
525
526static inline void enic_queue_wq_skb_vlan(struct enic *enic,
527 struct vnic_wq *wq, struct sk_buff *skb,
528 int vlan_tag_insert, unsigned int vlan_tag)
529{
530 unsigned int head_len = skb_headlen(skb);
531 unsigned int len_left = skb->len - head_len;
532 int eop = (len_left == 0);
533
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000534 /* Queue the main skb fragment. The fragments are no larger
535 * than max MTU(9000)+ETH_HDR_LEN(14) bytes, which is less
536 * than WQ_ENET_MAX_DESC_LEN length. So only one descriptor
537 * per fragment is queued.
538 */
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700539 enic_queue_wq_desc(wq, skb,
540 pci_map_single(enic->pdev, skb->data,
541 head_len, PCI_DMA_TODEVICE),
542 head_len,
543 vlan_tag_insert, vlan_tag,
544 eop);
545
546 if (!eop)
547 enic_queue_wq_skb_cont(enic, wq, skb, len_left);
548}
549
550static inline void enic_queue_wq_skb_csum_l4(struct enic *enic,
551 struct vnic_wq *wq, struct sk_buff *skb,
552 int vlan_tag_insert, unsigned int vlan_tag)
553{
554 unsigned int head_len = skb_headlen(skb);
555 unsigned int len_left = skb->len - head_len;
556 unsigned int hdr_len = skb_transport_offset(skb);
557 unsigned int csum_offset = hdr_len + skb->csum_offset;
558 int eop = (len_left == 0);
559
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000560 /* Queue the main skb fragment. The fragments are no larger
561 * than max MTU(9000)+ETH_HDR_LEN(14) bytes, which is less
562 * than WQ_ENET_MAX_DESC_LEN length. So only one descriptor
563 * per fragment is queued.
564 */
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700565 enic_queue_wq_desc_csum_l4(wq, skb,
566 pci_map_single(enic->pdev, skb->data,
567 head_len, PCI_DMA_TODEVICE),
568 head_len,
569 csum_offset,
570 hdr_len,
571 vlan_tag_insert, vlan_tag,
572 eop);
573
574 if (!eop)
575 enic_queue_wq_skb_cont(enic, wq, skb, len_left);
576}
577
578static inline void enic_queue_wq_skb_tso(struct enic *enic,
579 struct vnic_wq *wq, struct sk_buff *skb, unsigned int mss,
580 int vlan_tag_insert, unsigned int vlan_tag)
581{
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000582 unsigned int frag_len_left = skb_headlen(skb);
583 unsigned int len_left = skb->len - frag_len_left;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700584 unsigned int hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
585 int eop = (len_left == 0);
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000586 unsigned int len;
587 dma_addr_t dma_addr;
588 unsigned int offset = 0;
589 skb_frag_t *frag;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700590
591 /* Preload TCP csum field with IP pseudo hdr calculated
592 * with IP length set to zero. HW will later add in length
593 * to each TCP segment resulting from the TSO.
594 */
595
Harvey Harrison09640e62009-02-01 00:45:17 -0800596 if (skb->protocol == cpu_to_be16(ETH_P_IP)) {
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700597 ip_hdr(skb)->check = 0;
598 tcp_hdr(skb)->check = ~csum_tcpudp_magic(ip_hdr(skb)->saddr,
599 ip_hdr(skb)->daddr, 0, IPPROTO_TCP, 0);
Harvey Harrison09640e62009-02-01 00:45:17 -0800600 } else if (skb->protocol == cpu_to_be16(ETH_P_IPV6)) {
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700601 tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
602 &ipv6_hdr(skb)->daddr, 0, IPPROTO_TCP, 0);
603 }
604
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000605 /* Queue WQ_ENET_MAX_DESC_LEN length descriptors
606 * for the main skb fragment
607 */
608 while (frag_len_left) {
609 len = min(frag_len_left, (unsigned int)WQ_ENET_MAX_DESC_LEN);
610 dma_addr = pci_map_single(enic->pdev, skb->data + offset,
611 len, PCI_DMA_TODEVICE);
612 enic_queue_wq_desc_tso(wq, skb,
613 dma_addr,
614 len,
615 mss, hdr_len,
616 vlan_tag_insert, vlan_tag,
617 eop && (len == frag_len_left));
618 frag_len_left -= len;
619 offset += len;
620 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700621
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000622 if (eop)
623 return;
624
625 /* Queue WQ_ENET_MAX_DESC_LEN length descriptors
626 * for additional data fragments
627 */
628 for (frag = skb_shinfo(skb)->frags; len_left; frag++) {
629 len_left -= frag->size;
630 frag_len_left = frag->size;
631 offset = frag->page_offset;
632
633 while (frag_len_left) {
634 len = min(frag_len_left,
635 (unsigned int)WQ_ENET_MAX_DESC_LEN);
636 dma_addr = pci_map_page(enic->pdev, frag->page,
637 offset, len,
638 PCI_DMA_TODEVICE);
639 enic_queue_wq_desc_cont(wq, skb,
640 dma_addr,
641 len,
642 (len_left == 0) &&
643 (len == frag_len_left)); /* EOP? */
644 frag_len_left -= len;
645 offset += len;
646 }
647 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700648}
649
650static inline void enic_queue_wq_skb(struct enic *enic,
651 struct vnic_wq *wq, struct sk_buff *skb)
652{
653 unsigned int mss = skb_shinfo(skb)->gso_size;
654 unsigned int vlan_tag = 0;
655 int vlan_tag_insert = 0;
656
657 if (enic->vlan_group && vlan_tx_tag_present(skb)) {
658 /* VLAN tag from trunking driver */
659 vlan_tag_insert = 1;
660 vlan_tag = vlan_tx_tag_get(skb);
661 }
662
663 if (mss)
664 enic_queue_wq_skb_tso(enic, wq, skb, mss,
665 vlan_tag_insert, vlan_tag);
666 else if (skb->ip_summed == CHECKSUM_PARTIAL)
667 enic_queue_wq_skb_csum_l4(enic, wq, skb,
668 vlan_tag_insert, vlan_tag);
669 else
670 enic_queue_wq_skb_vlan(enic, wq, skb,
671 vlan_tag_insert, vlan_tag);
672}
673
Scott Feldmaned8af6b2009-02-09 23:23:50 -0800674/* netif_tx_lock held, process context with BHs disabled, or BH */
Stephen Hemminger613573252009-08-31 19:50:58 +0000675static netdev_tx_t enic_hard_start_xmit(struct sk_buff *skb,
676 struct net_device *netdev)
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700677{
678 struct enic *enic = netdev_priv(netdev);
679 struct vnic_wq *wq = &enic->wq[0];
680 unsigned long flags;
681
682 if (skb->len <= 0) {
683 dev_kfree_skb(skb);
684 return NETDEV_TX_OK;
685 }
686
687 /* Non-TSO sends must fit within ENIC_NON_TSO_MAX_DESC descs,
688 * which is very likely. In the off chance it's going to take
689 * more than * ENIC_NON_TSO_MAX_DESC, linearize the skb.
690 */
691
692 if (skb_shinfo(skb)->gso_size == 0 &&
693 skb_shinfo(skb)->nr_frags + 1 > ENIC_NON_TSO_MAX_DESC &&
694 skb_linearize(skb)) {
695 dev_kfree_skb(skb);
696 return NETDEV_TX_OK;
697 }
698
699 spin_lock_irqsave(&enic->wq_lock[0], flags);
700
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000701 if (vnic_wq_desc_avail(wq) <
702 skb_shinfo(skb)->nr_frags + ENIC_DESC_MAX_SPLITS) {
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700703 netif_stop_queue(netdev);
704 /* This is a hard error, log it */
705 printk(KERN_ERR PFX "%s: BUG! Tx ring full when "
706 "queue awake!\n", netdev->name);
707 spin_unlock_irqrestore(&enic->wq_lock[0], flags);
708 return NETDEV_TX_BUSY;
709 }
710
711 enic_queue_wq_skb(enic, wq, skb);
712
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000713 if (vnic_wq_desc_avail(wq) < MAX_SKB_FRAGS + ENIC_DESC_MAX_SPLITS)
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700714 netif_stop_queue(netdev);
715
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700716 spin_unlock_irqrestore(&enic->wq_lock[0], flags);
717
718 return NETDEV_TX_OK;
719}
720
721/* dev_base_lock rwlock held, nominally process context */
722static struct net_device_stats *enic_get_stats(struct net_device *netdev)
723{
724 struct enic *enic = netdev_priv(netdev);
Scott Feldman25f0a062008-09-24 11:23:32 -0700725 struct net_device_stats *net_stats = &netdev->stats;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700726 struct vnic_stats *stats;
727
728 spin_lock(&enic->devcmd_lock);
729 vnic_dev_stats_dump(enic->vdev, &stats);
730 spin_unlock(&enic->devcmd_lock);
731
Scott Feldman25f0a062008-09-24 11:23:32 -0700732 net_stats->tx_packets = stats->tx.tx_frames_ok;
733 net_stats->tx_bytes = stats->tx.tx_bytes_ok;
734 net_stats->tx_errors = stats->tx.tx_errors;
735 net_stats->tx_dropped = stats->tx.tx_drops;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700736
Scott Feldman25f0a062008-09-24 11:23:32 -0700737 net_stats->rx_packets = stats->rx.rx_frames_ok;
738 net_stats->rx_bytes = stats->rx.rx_bytes_ok;
739 net_stats->rx_errors = stats->rx.rx_errors;
740 net_stats->multicast = stats->rx.rx_multicast_frames_ok;
Scott Feldman350991e2009-09-03 17:02:19 +0000741 net_stats->rx_over_errors = enic->rq_truncated_pkts;
Scott Feldmanbd9fb1a2009-02-09 23:24:08 -0800742 net_stats->rx_crc_errors = enic->rq_bad_fcs;
Scott Feldman350991e2009-09-03 17:02:19 +0000743 net_stats->rx_dropped = stats->rx.rx_no_bufs + stats->rx.rx_drop;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700744
Scott Feldman25f0a062008-09-24 11:23:32 -0700745 return net_stats;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700746}
747
748static void enic_reset_mcaddrs(struct enic *enic)
749{
750 enic->mc_count = 0;
751}
752
753static int enic_set_mac_addr(struct net_device *netdev, char *addr)
754{
755 if (!is_valid_ether_addr(addr))
756 return -EADDRNOTAVAIL;
757
758 memcpy(netdev->dev_addr, addr, netdev->addr_len);
759
760 return 0;
761}
762
763/* netif_tx_lock held, BHs disabled */
764static void enic_set_multicast_list(struct net_device *netdev)
765{
766 struct enic *enic = netdev_priv(netdev);
767 struct dev_mc_list *list = netdev->mc_list;
768 int directed = 1;
769 int multicast = (netdev->flags & IFF_MULTICAST) ? 1 : 0;
770 int broadcast = (netdev->flags & IFF_BROADCAST) ? 1 : 0;
771 int promisc = (netdev->flags & IFF_PROMISC) ? 1 : 0;
772 int allmulti = (netdev->flags & IFF_ALLMULTI) ||
773 (netdev->mc_count > ENIC_MULTICAST_PERFECT_FILTERS);
774 u8 mc_addr[ENIC_MULTICAST_PERFECT_FILTERS][ETH_ALEN];
775 unsigned int mc_count = netdev->mc_count;
776 unsigned int i, j;
777
778 if (mc_count > ENIC_MULTICAST_PERFECT_FILTERS)
779 mc_count = ENIC_MULTICAST_PERFECT_FILTERS;
780
781 spin_lock(&enic->devcmd_lock);
782
783 vnic_dev_packet_filter(enic->vdev, directed,
784 multicast, broadcast, promisc, allmulti);
785
786 /* Is there an easier way? Trying to minimize to
787 * calls to add/del multicast addrs. We keep the
788 * addrs from the last call in enic->mc_addr and
789 * look for changes to add/del.
790 */
791
792 for (i = 0; list && i < mc_count; i++) {
793 memcpy(mc_addr[i], list->dmi_addr, ETH_ALEN);
794 list = list->next;
795 }
796
797 for (i = 0; i < enic->mc_count; i++) {
798 for (j = 0; j < mc_count; j++)
799 if (compare_ether_addr(enic->mc_addr[i],
800 mc_addr[j]) == 0)
801 break;
802 if (j == mc_count)
803 enic_del_multicast_addr(enic, enic->mc_addr[i]);
804 }
805
806 for (i = 0; i < mc_count; i++) {
807 for (j = 0; j < enic->mc_count; j++)
808 if (compare_ether_addr(mc_addr[i],
809 enic->mc_addr[j]) == 0)
810 break;
811 if (j == enic->mc_count)
812 enic_add_multicast_addr(enic, mc_addr[i]);
813 }
814
815 /* Save the list to compare against next time
816 */
817
818 for (i = 0; i < mc_count; i++)
819 memcpy(enic->mc_addr[i], mc_addr[i], ETH_ALEN);
820
821 enic->mc_count = mc_count;
822
823 spin_unlock(&enic->devcmd_lock);
824}
825
826/* rtnl lock is held */
827static void enic_vlan_rx_register(struct net_device *netdev,
828 struct vlan_group *vlan_group)
829{
830 struct enic *enic = netdev_priv(netdev);
831 enic->vlan_group = vlan_group;
832}
833
834/* rtnl lock is held */
835static void enic_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
836{
837 struct enic *enic = netdev_priv(netdev);
838
839 spin_lock(&enic->devcmd_lock);
840 enic_add_vlan(enic, vid);
841 spin_unlock(&enic->devcmd_lock);
842}
843
844/* rtnl lock is held */
845static void enic_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
846{
847 struct enic *enic = netdev_priv(netdev);
848
849 spin_lock(&enic->devcmd_lock);
850 enic_del_vlan(enic, vid);
851 spin_unlock(&enic->devcmd_lock);
852}
853
854/* netif_tx_lock held, BHs disabled */
855static void enic_tx_timeout(struct net_device *netdev)
856{
857 struct enic *enic = netdev_priv(netdev);
858 schedule_work(&enic->reset);
859}
860
861static void enic_free_rq_buf(struct vnic_rq *rq, struct vnic_rq_buf *buf)
862{
863 struct enic *enic = vnic_dev_priv(rq->vdev);
864
865 if (!buf->os_buf)
866 return;
867
868 pci_unmap_single(enic->pdev, buf->dma_addr,
869 buf->len, PCI_DMA_FROMDEVICE);
870 dev_kfree_skb_any(buf->os_buf);
871}
872
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700873static int enic_rq_alloc_buf(struct vnic_rq *rq)
874{
875 struct enic *enic = vnic_dev_priv(rq->vdev);
Scott Feldmand19e22d2009-09-03 17:02:08 +0000876 struct net_device *netdev = enic->netdev;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700877 struct sk_buff *skb;
Scott Feldmand19e22d2009-09-03 17:02:08 +0000878 unsigned int len = netdev->mtu + ETH_HLEN;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700879 unsigned int os_buf_index = 0;
880 dma_addr_t dma_addr;
881
Eric Dumazet89d71a62009-10-13 05:34:20 +0000882 skb = netdev_alloc_skb_ip_align(netdev, len);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700883 if (!skb)
884 return -ENOMEM;
885
886 dma_addr = pci_map_single(enic->pdev, skb->data,
887 len, PCI_DMA_FROMDEVICE);
888
889 enic_queue_rq_desc(rq, skb, os_buf_index,
890 dma_addr, len);
891
892 return 0;
893}
894
Scott Feldman4badc382009-09-03 17:01:58 +0000895static int enic_rq_alloc_buf_a1(struct vnic_rq *rq)
896{
897 struct rq_enet_desc *desc = vnic_rq_next_desc(rq);
898
899 if (vnic_rq_posting_soon(rq)) {
900
901 /* SW workaround for A0 HW erratum: if we're just about
902 * to write posted_index, insert a dummy desc
903 * of type resvd
904 */
905
906 rq_enet_desc_enc(desc, 0, RQ_ENET_TYPE_RESV2, 0);
907 vnic_rq_post(rq, 0, 0, 0, 0);
908 } else {
909 return enic_rq_alloc_buf(rq);
910 }
911
912 return 0;
913}
914
915static int enic_set_rq_alloc_buf(struct enic *enic)
916{
917 enum vnic_dev_hw_version hw_ver;
918 int err;
919
920 err = vnic_dev_hw_version(enic->vdev, &hw_ver);
921 if (err)
922 return err;
923
924 switch (hw_ver) {
925 case VNIC_DEV_HW_VER_A1:
926 enic->rq_alloc_buf = enic_rq_alloc_buf_a1;
927 break;
928 case VNIC_DEV_HW_VER_A2:
929 case VNIC_DEV_HW_VER_UNKNOWN:
930 enic->rq_alloc_buf = enic_rq_alloc_buf;
931 break;
932 default:
933 return -ENODEV;
934 }
935
936 return 0;
937}
938
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700939static int enic_get_skb_header(struct sk_buff *skb, void **iphdr,
940 void **tcph, u64 *hdr_flags, void *priv)
941{
942 struct cq_enet_rq_desc *cq_desc = priv;
943 unsigned int ip_len;
944 struct iphdr *iph;
945
946 u8 type, color, eop, sop, ingress_port, vlan_stripped;
947 u8 fcoe, fcoe_sof, fcoe_fc_crc_ok, fcoe_enc_error, fcoe_eof;
948 u8 tcp_udp_csum_ok, udp, tcp, ipv4_csum_ok;
949 u8 ipv6, ipv4, ipv4_fragment, fcs_ok, rss_type, csum_not_calc;
950 u8 packet_error;
951 u16 q_number, completed_index, bytes_written, vlan, checksum;
952 u32 rss_hash;
953
954 cq_enet_rq_desc_dec(cq_desc,
955 &type, &color, &q_number, &completed_index,
956 &ingress_port, &fcoe, &eop, &sop, &rss_type,
957 &csum_not_calc, &rss_hash, &bytes_written,
958 &packet_error, &vlan_stripped, &vlan, &checksum,
959 &fcoe_sof, &fcoe_fc_crc_ok, &fcoe_enc_error,
960 &fcoe_eof, &tcp_udp_csum_ok, &udp, &tcp,
961 &ipv4_csum_ok, &ipv6, &ipv4, &ipv4_fragment,
962 &fcs_ok);
963
964 if (!(ipv4 && tcp && !ipv4_fragment))
965 return -1;
966
967 skb_reset_network_header(skb);
968 iph = ip_hdr(skb);
969
970 ip_len = ip_hdrlen(skb);
971 skb_set_transport_header(skb, ip_len);
972
973 /* check if ip header and tcp header are complete */
974 if (ntohs(iph->tot_len) < ip_len + tcp_hdrlen(skb))
975 return -1;
976
977 *hdr_flags = LRO_IPV4 | LRO_TCP;
978 *tcph = tcp_hdr(skb);
979 *iphdr = iph;
980
981 return 0;
982}
983
984static void enic_rq_indicate_buf(struct vnic_rq *rq,
985 struct cq_desc *cq_desc, struct vnic_rq_buf *buf,
986 int skipped, void *opaque)
987{
988 struct enic *enic = vnic_dev_priv(rq->vdev);
Scott Feldman86ca9db2008-11-21 21:26:55 -0800989 struct net_device *netdev = enic->netdev;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700990 struct sk_buff *skb;
991
992 u8 type, color, eop, sop, ingress_port, vlan_stripped;
993 u8 fcoe, fcoe_sof, fcoe_fc_crc_ok, fcoe_enc_error, fcoe_eof;
994 u8 tcp_udp_csum_ok, udp, tcp, ipv4_csum_ok;
995 u8 ipv6, ipv4, ipv4_fragment, fcs_ok, rss_type, csum_not_calc;
996 u8 packet_error;
997 u16 q_number, completed_index, bytes_written, vlan, checksum;
998 u32 rss_hash;
999
1000 if (skipped)
1001 return;
1002
1003 skb = buf->os_buf;
1004 prefetch(skb->data - NET_IP_ALIGN);
1005 pci_unmap_single(enic->pdev, buf->dma_addr,
1006 buf->len, PCI_DMA_FROMDEVICE);
1007
1008 cq_enet_rq_desc_dec((struct cq_enet_rq_desc *)cq_desc,
1009 &type, &color, &q_number, &completed_index,
1010 &ingress_port, &fcoe, &eop, &sop, &rss_type,
1011 &csum_not_calc, &rss_hash, &bytes_written,
1012 &packet_error, &vlan_stripped, &vlan, &checksum,
1013 &fcoe_sof, &fcoe_fc_crc_ok, &fcoe_enc_error,
1014 &fcoe_eof, &tcp_udp_csum_ok, &udp, &tcp,
1015 &ipv4_csum_ok, &ipv6, &ipv4, &ipv4_fragment,
1016 &fcs_ok);
1017
1018 if (packet_error) {
1019
Scott Feldman350991e2009-09-03 17:02:19 +00001020 if (!fcs_ok) {
1021 if (bytes_written > 0)
1022 enic->rq_bad_fcs++;
1023 else if (bytes_written == 0)
1024 enic->rq_truncated_pkts++;
1025 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001026
1027 dev_kfree_skb_any(skb);
1028
1029 return;
1030 }
1031
1032 if (eop && bytes_written > 0) {
1033
1034 /* Good receive
1035 */
1036
1037 skb_put(skb, bytes_written);
Scott Feldman86ca9db2008-11-21 21:26:55 -08001038 skb->protocol = eth_type_trans(skb, netdev);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001039
1040 if (enic->csum_rx_enabled && !csum_not_calc) {
1041 skb->csum = htons(checksum);
1042 skb->ip_summed = CHECKSUM_COMPLETE;
1043 }
1044
Scott Feldman86ca9db2008-11-21 21:26:55 -08001045 skb->dev = netdev;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001046
1047 if (enic->vlan_group && vlan_stripped) {
1048
Scott Feldman86ca9db2008-11-21 21:26:55 -08001049 if ((netdev->features & NETIF_F_LRO) && ipv4)
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001050 lro_vlan_hwaccel_receive_skb(&enic->lro_mgr,
1051 skb, enic->vlan_group,
1052 vlan, cq_desc);
1053 else
1054 vlan_hwaccel_receive_skb(skb,
1055 enic->vlan_group, vlan);
1056
1057 } else {
1058
Scott Feldman86ca9db2008-11-21 21:26:55 -08001059 if ((netdev->features & NETIF_F_LRO) && ipv4)
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001060 lro_receive_skb(&enic->lro_mgr, skb, cq_desc);
1061 else
1062 netif_receive_skb(skb);
1063
1064 }
1065
1066 } else {
1067
1068 /* Buffer overflow
1069 */
1070
1071 dev_kfree_skb_any(skb);
1072 }
1073}
1074
1075static int enic_rq_service(struct vnic_dev *vdev, struct cq_desc *cq_desc,
1076 u8 type, u16 q_number, u16 completed_index, void *opaque)
1077{
1078 struct enic *enic = vnic_dev_priv(vdev);
1079
1080 vnic_rq_service(&enic->rq[q_number], cq_desc,
1081 completed_index, VNIC_RQ_RETURN_DESC,
1082 enic_rq_indicate_buf, opaque);
1083
1084 return 0;
1085}
1086
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001087static int enic_poll(struct napi_struct *napi, int budget)
1088{
1089 struct enic *enic = container_of(napi, struct enic, napi);
1090 struct net_device *netdev = enic->netdev;
1091 unsigned int rq_work_to_do = budget;
1092 unsigned int wq_work_to_do = -1; /* no limit */
1093 unsigned int work_done, rq_work_done, wq_work_done;
1094
1095 /* Service RQ (first) and WQ
1096 */
1097
1098 rq_work_done = vnic_cq_service(&enic->cq[ENIC_CQ_RQ],
1099 rq_work_to_do, enic_rq_service, NULL);
1100
1101 wq_work_done = vnic_cq_service(&enic->cq[ENIC_CQ_WQ],
1102 wq_work_to_do, enic_wq_service, NULL);
1103
1104 /* Accumulate intr event credits for this polling
1105 * cycle. An intr event is the completion of a
1106 * a WQ or RQ packet.
1107 */
1108
1109 work_done = rq_work_done + wq_work_done;
1110
1111 if (work_done > 0)
1112 vnic_intr_return_credits(&enic->intr[ENIC_INTX_WQ_RQ],
1113 work_done,
1114 0 /* don't unmask intr */,
1115 0 /* don't reset intr timer */);
1116
1117 if (rq_work_done > 0) {
1118
1119 /* Replenish RQ
1120 */
1121
Scott Feldman4badc382009-09-03 17:01:58 +00001122 vnic_rq_fill(&enic->rq[0], enic->rq_alloc_buf);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001123
1124 } else {
1125
1126 /* If no work done, flush all LROs and exit polling
1127 */
1128
Scott Feldman86ca9db2008-11-21 21:26:55 -08001129 if (netdev->features & NETIF_F_LRO)
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001130 lro_flush_all(&enic->lro_mgr);
1131
Ben Hutchings288379f2009-01-19 16:43:59 -08001132 napi_complete(napi);
Scott Feldmaned8af6b2009-02-09 23:23:50 -08001133 vnic_intr_unmask(&enic->intr[ENIC_INTX_WQ_RQ]);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001134 }
1135
1136 return rq_work_done;
1137}
1138
1139static int enic_poll_msix(struct napi_struct *napi, int budget)
1140{
1141 struct enic *enic = container_of(napi, struct enic, napi);
1142 struct net_device *netdev = enic->netdev;
1143 unsigned int work_to_do = budget;
1144 unsigned int work_done;
1145
1146 /* Service RQ
1147 */
1148
1149 work_done = vnic_cq_service(&enic->cq[ENIC_CQ_RQ],
1150 work_to_do, enic_rq_service, NULL);
1151
1152 if (work_done > 0) {
1153
1154 /* Replenish RQ
1155 */
1156
Scott Feldman4badc382009-09-03 17:01:58 +00001157 vnic_rq_fill(&enic->rq[0], enic->rq_alloc_buf);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001158
Scott Feldmaned8af6b2009-02-09 23:23:50 -08001159 /* Return intr event credits for this polling
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001160 * cycle. An intr event is the completion of a
Scott Feldmaned8af6b2009-02-09 23:23:50 -08001161 * RQ packet.
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001162 */
1163
1164 vnic_intr_return_credits(&enic->intr[ENIC_MSIX_RQ],
1165 work_done,
1166 0 /* don't unmask intr */,
1167 0 /* don't reset intr timer */);
1168 } else {
1169
1170 /* If no work done, flush all LROs and exit polling
1171 */
1172
Scott Feldman86ca9db2008-11-21 21:26:55 -08001173 if (netdev->features & NETIF_F_LRO)
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001174 lro_flush_all(&enic->lro_mgr);
1175
Ben Hutchings288379f2009-01-19 16:43:59 -08001176 napi_complete(napi);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001177 vnic_intr_unmask(&enic->intr[ENIC_MSIX_RQ]);
1178 }
1179
1180 return work_done;
1181}
1182
1183static void enic_notify_timer(unsigned long data)
1184{
1185 struct enic *enic = (struct enic *)data;
1186
1187 enic_notify_check(enic);
1188
Scott Feldman25f0a062008-09-24 11:23:32 -07001189 mod_timer(&enic->notify_timer,
1190 round_jiffies(jiffies + ENIC_NOTIFY_TIMER_PERIOD));
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001191}
1192
1193static void enic_free_intr(struct enic *enic)
1194{
1195 struct net_device *netdev = enic->netdev;
1196 unsigned int i;
1197
1198 switch (vnic_dev_get_intr_mode(enic->vdev)) {
1199 case VNIC_DEV_INTR_MODE_INTX:
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001200 free_irq(enic->pdev->irq, netdev);
1201 break;
Scott Feldman8f4d2482008-09-24 11:23:42 -07001202 case VNIC_DEV_INTR_MODE_MSI:
1203 free_irq(enic->pdev->irq, enic);
1204 break;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001205 case VNIC_DEV_INTR_MODE_MSIX:
1206 for (i = 0; i < ARRAY_SIZE(enic->msix); i++)
1207 if (enic->msix[i].requested)
1208 free_irq(enic->msix_entry[i].vector,
1209 enic->msix[i].devid);
1210 break;
1211 default:
1212 break;
1213 }
1214}
1215
1216static int enic_request_intr(struct enic *enic)
1217{
1218 struct net_device *netdev = enic->netdev;
1219 unsigned int i;
1220 int err = 0;
1221
1222 switch (vnic_dev_get_intr_mode(enic->vdev)) {
1223
1224 case VNIC_DEV_INTR_MODE_INTX:
1225
1226 err = request_irq(enic->pdev->irq, enic_isr_legacy,
1227 IRQF_SHARED, netdev->name, netdev);
1228 break;
1229
1230 case VNIC_DEV_INTR_MODE_MSI:
1231
1232 err = request_irq(enic->pdev->irq, enic_isr_msi,
1233 0, netdev->name, enic);
1234 break;
1235
1236 case VNIC_DEV_INTR_MODE_MSIX:
1237
1238 sprintf(enic->msix[ENIC_MSIX_RQ].devname,
Scott Feldman8f4d2482008-09-24 11:23:42 -07001239 "%.11s-rx-0", netdev->name);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001240 enic->msix[ENIC_MSIX_RQ].isr = enic_isr_msix_rq;
1241 enic->msix[ENIC_MSIX_RQ].devid = enic;
1242
1243 sprintf(enic->msix[ENIC_MSIX_WQ].devname,
Scott Feldman8f4d2482008-09-24 11:23:42 -07001244 "%.11s-tx-0", netdev->name);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001245 enic->msix[ENIC_MSIX_WQ].isr = enic_isr_msix_wq;
1246 enic->msix[ENIC_MSIX_WQ].devid = enic;
1247
1248 sprintf(enic->msix[ENIC_MSIX_ERR].devname,
1249 "%.11s-err", netdev->name);
1250 enic->msix[ENIC_MSIX_ERR].isr = enic_isr_msix_err;
1251 enic->msix[ENIC_MSIX_ERR].devid = enic;
1252
1253 sprintf(enic->msix[ENIC_MSIX_NOTIFY].devname,
1254 "%.11s-notify", netdev->name);
1255 enic->msix[ENIC_MSIX_NOTIFY].isr = enic_isr_msix_notify;
1256 enic->msix[ENIC_MSIX_NOTIFY].devid = enic;
1257
1258 for (i = 0; i < ARRAY_SIZE(enic->msix); i++) {
1259 err = request_irq(enic->msix_entry[i].vector,
1260 enic->msix[i].isr, 0,
1261 enic->msix[i].devname,
1262 enic->msix[i].devid);
1263 if (err) {
1264 enic_free_intr(enic);
1265 break;
1266 }
1267 enic->msix[i].requested = 1;
1268 }
1269
1270 break;
1271
1272 default:
1273 break;
1274 }
1275
1276 return err;
1277}
1278
Scott Feldmanb3d18d12009-12-23 13:27:30 +00001279static void enic_synchronize_irqs(struct enic *enic)
1280{
1281 unsigned int i;
1282
1283 switch (vnic_dev_get_intr_mode(enic->vdev)) {
1284 case VNIC_DEV_INTR_MODE_INTX:
1285 case VNIC_DEV_INTR_MODE_MSI:
1286 synchronize_irq(enic->pdev->irq);
1287 break;
1288 case VNIC_DEV_INTR_MODE_MSIX:
1289 for (i = 0; i < enic->intr_count; i++)
1290 synchronize_irq(enic->msix_entry[i].vector);
1291 break;
1292 default:
1293 break;
1294 }
1295}
1296
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001297static int enic_notify_set(struct enic *enic)
1298{
1299 int err;
1300
Scott Feldman56ac88b2009-09-03 17:02:14 +00001301 spin_lock(&enic->devcmd_lock);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001302 switch (vnic_dev_get_intr_mode(enic->vdev)) {
1303 case VNIC_DEV_INTR_MODE_INTX:
1304 err = vnic_dev_notify_set(enic->vdev, ENIC_INTX_NOTIFY);
1305 break;
1306 case VNIC_DEV_INTR_MODE_MSIX:
1307 err = vnic_dev_notify_set(enic->vdev, ENIC_MSIX_NOTIFY);
1308 break;
1309 default:
1310 err = vnic_dev_notify_set(enic->vdev, -1 /* no intr */);
1311 break;
1312 }
Scott Feldman56ac88b2009-09-03 17:02:14 +00001313 spin_unlock(&enic->devcmd_lock);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001314
1315 return err;
1316}
1317
1318static void enic_notify_timer_start(struct enic *enic)
1319{
1320 switch (vnic_dev_get_intr_mode(enic->vdev)) {
1321 case VNIC_DEV_INTR_MODE_MSI:
1322 mod_timer(&enic->notify_timer, jiffies);
1323 break;
1324 default:
1325 /* Using intr for notification for INTx/MSI-X */
1326 break;
1327 };
1328}
1329
1330/* rtnl lock is held, process context */
1331static int enic_open(struct net_device *netdev)
1332{
1333 struct enic *enic = netdev_priv(netdev);
1334 unsigned int i;
1335 int err;
1336
Scott Feldman4b75a442008-09-24 11:23:53 -07001337 err = enic_request_intr(enic);
1338 if (err) {
1339 printk(KERN_ERR PFX "%s: Unable to request irq.\n",
1340 netdev->name);
1341 return err;
1342 }
1343
1344 err = enic_notify_set(enic);
1345 if (err) {
1346 printk(KERN_ERR PFX
1347 "%s: Failed to alloc notify buffer, aborting.\n",
1348 netdev->name);
1349 goto err_out_free_intr;
1350 }
1351
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001352 for (i = 0; i < enic->rq_count; i++) {
Scott Feldman4badc382009-09-03 17:01:58 +00001353 err = vnic_rq_fill(&enic->rq[i], enic->rq_alloc_buf);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001354 if (err) {
1355 printk(KERN_ERR PFX
1356 "%s: Unable to alloc receive buffers.\n",
1357 netdev->name);
Scott Feldman4b75a442008-09-24 11:23:53 -07001358 goto err_out_notify_unset;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001359 }
1360 }
1361
1362 for (i = 0; i < enic->wq_count; i++)
1363 vnic_wq_enable(&enic->wq[i]);
1364 for (i = 0; i < enic->rq_count; i++)
1365 vnic_rq_enable(&enic->rq[i]);
1366
Scott Feldman56ac88b2009-09-03 17:02:14 +00001367 spin_lock(&enic->devcmd_lock);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001368 enic_add_station_addr(enic);
Scott Feldman56ac88b2009-09-03 17:02:14 +00001369 spin_unlock(&enic->devcmd_lock);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001370 enic_set_multicast_list(netdev);
1371
1372 netif_wake_queue(netdev);
1373 napi_enable(&enic->napi);
Scott Feldman56ac88b2009-09-03 17:02:14 +00001374 spin_lock(&enic->devcmd_lock);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001375 vnic_dev_enable(enic->vdev);
Scott Feldman56ac88b2009-09-03 17:02:14 +00001376 spin_unlock(&enic->devcmd_lock);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001377
1378 for (i = 0; i < enic->intr_count; i++)
1379 vnic_intr_unmask(&enic->intr[i]);
1380
1381 enic_notify_timer_start(enic);
1382
1383 return 0;
Scott Feldman4b75a442008-09-24 11:23:53 -07001384
1385err_out_notify_unset:
Scott Feldman56ac88b2009-09-03 17:02:14 +00001386 spin_lock(&enic->devcmd_lock);
Scott Feldman4b75a442008-09-24 11:23:53 -07001387 vnic_dev_notify_unset(enic->vdev);
Scott Feldman56ac88b2009-09-03 17:02:14 +00001388 spin_unlock(&enic->devcmd_lock);
Scott Feldman4b75a442008-09-24 11:23:53 -07001389err_out_free_intr:
1390 enic_free_intr(enic);
1391
1392 return err;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001393}
1394
1395/* rtnl lock is held, process context */
1396static int enic_stop(struct net_device *netdev)
1397{
1398 struct enic *enic = netdev_priv(netdev);
1399 unsigned int i;
1400 int err;
1401
Scott Feldmanb3d18d12009-12-23 13:27:30 +00001402 for (i = 0; i < enic->intr_count; i++)
1403 vnic_intr_mask(&enic->intr[i]);
1404
1405 enic_synchronize_irqs(enic);
1406
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001407 del_timer_sync(&enic->notify_timer);
1408
Scott Feldman56ac88b2009-09-03 17:02:14 +00001409 spin_lock(&enic->devcmd_lock);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001410 vnic_dev_disable(enic->vdev);
Scott Feldman56ac88b2009-09-03 17:02:14 +00001411 spin_unlock(&enic->devcmd_lock);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001412 napi_disable(&enic->napi);
Scott Feldmanb3d18d12009-12-23 13:27:30 +00001413 netif_carrier_off(netdev);
1414 netif_tx_disable(netdev);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001415
1416 for (i = 0; i < enic->wq_count; i++) {
1417 err = vnic_wq_disable(&enic->wq[i]);
1418 if (err)
1419 return err;
1420 }
1421 for (i = 0; i < enic->rq_count; i++) {
1422 err = vnic_rq_disable(&enic->rq[i]);
1423 if (err)
1424 return err;
1425 }
1426
Scott Feldman56ac88b2009-09-03 17:02:14 +00001427 spin_lock(&enic->devcmd_lock);
Scott Feldman4b75a442008-09-24 11:23:53 -07001428 vnic_dev_notify_unset(enic->vdev);
Scott Feldman56ac88b2009-09-03 17:02:14 +00001429 spin_unlock(&enic->devcmd_lock);
Scott Feldman4b75a442008-09-24 11:23:53 -07001430 enic_free_intr(enic);
1431
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001432 for (i = 0; i < enic->wq_count; i++)
1433 vnic_wq_clean(&enic->wq[i], enic_free_wq_buf);
1434 for (i = 0; i < enic->rq_count; i++)
1435 vnic_rq_clean(&enic->rq[i], enic_free_rq_buf);
1436 for (i = 0; i < enic->cq_count; i++)
1437 vnic_cq_clean(&enic->cq[i]);
1438 for (i = 0; i < enic->intr_count; i++)
1439 vnic_intr_clean(&enic->intr[i]);
1440
1441 return 0;
1442}
1443
1444static int enic_change_mtu(struct net_device *netdev, int new_mtu)
1445{
1446 struct enic *enic = netdev_priv(netdev);
1447 int running = netif_running(netdev);
1448
Scott Feldman25f0a062008-09-24 11:23:32 -07001449 if (new_mtu < ENIC_MIN_MTU || new_mtu > ENIC_MAX_MTU)
1450 return -EINVAL;
1451
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001452 if (running)
1453 enic_stop(netdev);
1454
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001455 netdev->mtu = new_mtu;
1456
1457 if (netdev->mtu > enic->port_mtu)
1458 printk(KERN_WARNING PFX
1459 "%s: interface MTU (%d) set higher "
1460 "than port MTU (%d)\n",
1461 netdev->name, netdev->mtu, enic->port_mtu);
1462
1463 if (running)
1464 enic_open(netdev);
1465
1466 return 0;
1467}
1468
1469#ifdef CONFIG_NET_POLL_CONTROLLER
1470static void enic_poll_controller(struct net_device *netdev)
1471{
1472 struct enic *enic = netdev_priv(netdev);
1473 struct vnic_dev *vdev = enic->vdev;
1474
1475 switch (vnic_dev_get_intr_mode(vdev)) {
1476 case VNIC_DEV_INTR_MODE_MSIX:
1477 enic_isr_msix_rq(enic->pdev->irq, enic);
1478 enic_isr_msix_wq(enic->pdev->irq, enic);
1479 break;
1480 case VNIC_DEV_INTR_MODE_MSI:
1481 enic_isr_msi(enic->pdev->irq, enic);
1482 break;
1483 case VNIC_DEV_INTR_MODE_INTX:
1484 enic_isr_legacy(enic->pdev->irq, netdev);
1485 break;
1486 default:
1487 break;
1488 }
1489}
1490#endif
1491
1492static int enic_dev_wait(struct vnic_dev *vdev,
1493 int (*start)(struct vnic_dev *, int),
1494 int (*finished)(struct vnic_dev *, int *),
1495 int arg)
1496{
1497 unsigned long time;
1498 int done;
1499 int err;
1500
1501 BUG_ON(in_interrupt());
1502
1503 err = start(vdev, arg);
1504 if (err)
1505 return err;
1506
1507 /* Wait for func to complete...2 seconds max
1508 */
1509
1510 time = jiffies + (HZ * 2);
1511 do {
1512
1513 err = finished(vdev, &done);
1514 if (err)
1515 return err;
1516
1517 if (done)
1518 return 0;
1519
1520 schedule_timeout_uninterruptible(HZ / 10);
1521
1522 } while (time_after(time, jiffies));
1523
1524 return -ETIMEDOUT;
1525}
1526
1527static int enic_dev_open(struct enic *enic)
1528{
1529 int err;
1530
1531 err = enic_dev_wait(enic->vdev, vnic_dev_open,
1532 vnic_dev_open_done, 0);
1533 if (err)
1534 printk(KERN_ERR PFX
1535 "vNIC device open failed, err %d.\n", err);
1536
1537 return err;
1538}
1539
1540static int enic_dev_soft_reset(struct enic *enic)
1541{
1542 int err;
1543
1544 err = enic_dev_wait(enic->vdev, vnic_dev_soft_reset,
1545 vnic_dev_soft_reset_done, 0);
1546 if (err)
1547 printk(KERN_ERR PFX
1548 "vNIC soft reset failed, err %d.\n", err);
1549
1550 return err;
1551}
1552
Scott Feldman68f71702009-02-09 23:24:24 -08001553static int enic_set_niccfg(struct enic *enic)
1554{
1555 const u8 rss_default_cpu = 0;
1556 const u8 rss_hash_type = 0;
1557 const u8 rss_hash_bits = 0;
1558 const u8 rss_base_cpu = 0;
1559 const u8 rss_enable = 0;
1560 const u8 tso_ipid_split_en = 0;
1561 const u8 ig_vlan_strip_en = 1;
1562
1563 /* Enable VLAN tag stripping. RSS not enabled (yet).
Scott Feldman6ba9cdc2009-09-03 17:02:24 +00001564 */
Scott Feldman68f71702009-02-09 23:24:24 -08001565
1566 return enic_set_nic_cfg(enic,
1567 rss_default_cpu, rss_hash_type,
1568 rss_hash_bits, rss_base_cpu,
1569 rss_enable, tso_ipid_split_en,
1570 ig_vlan_strip_en);
1571}
1572
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001573static void enic_reset(struct work_struct *work)
1574{
1575 struct enic *enic = container_of(work, struct enic, reset);
1576
1577 if (!netif_running(enic->netdev))
1578 return;
1579
1580 rtnl_lock();
1581
1582 spin_lock(&enic->devcmd_lock);
1583 vnic_dev_hang_notify(enic->vdev);
1584 spin_unlock(&enic->devcmd_lock);
1585
1586 enic_stop(enic->netdev);
1587 enic_dev_soft_reset(enic);
Scott Feldman68f71702009-02-09 23:24:24 -08001588 vnic_dev_init(enic->vdev, 0);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001589 enic_reset_mcaddrs(enic);
1590 enic_init_vnic_resources(enic);
Scott Feldman68f71702009-02-09 23:24:24 -08001591 enic_set_niccfg(enic);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001592 enic_open(enic->netdev);
1593
1594 rtnl_unlock();
1595}
1596
1597static int enic_set_intr_mode(struct enic *enic)
1598{
Scott Feldman6ba9cdc2009-09-03 17:02:24 +00001599 unsigned int n = 1;
1600 unsigned int m = 1;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001601 unsigned int i;
1602
1603 /* Set interrupt mode (INTx, MSI, MSI-X) depending
1604 * system capabilities.
1605 *
1606 * Try MSI-X first
1607 *
1608 * We need n RQs, m WQs, n+m CQs, and n+m+2 INTRs
1609 * (the second to last INTR is used for WQ/RQ errors)
1610 * (the last INTR is used for notifications)
1611 */
1612
1613 BUG_ON(ARRAY_SIZE(enic->msix_entry) < n + m + 2);
1614 for (i = 0; i < n + m + 2; i++)
1615 enic->msix_entry[i].entry = i;
1616
1617 if (enic->config.intr_mode < 1 &&
1618 enic->rq_count >= n &&
1619 enic->wq_count >= m &&
1620 enic->cq_count >= n + m &&
1621 enic->intr_count >= n + m + 2 &&
1622 !pci_enable_msix(enic->pdev, enic->msix_entry, n + m + 2)) {
1623
1624 enic->rq_count = n;
1625 enic->wq_count = m;
1626 enic->cq_count = n + m;
1627 enic->intr_count = n + m + 2;
1628
1629 vnic_dev_set_intr_mode(enic->vdev, VNIC_DEV_INTR_MODE_MSIX);
1630
1631 return 0;
1632 }
1633
1634 /* Next try MSI
1635 *
1636 * We need 1 RQ, 1 WQ, 2 CQs, and 1 INTR
1637 */
1638
1639 if (enic->config.intr_mode < 2 &&
1640 enic->rq_count >= 1 &&
1641 enic->wq_count >= 1 &&
1642 enic->cq_count >= 2 &&
1643 enic->intr_count >= 1 &&
1644 !pci_enable_msi(enic->pdev)) {
1645
1646 enic->rq_count = 1;
1647 enic->wq_count = 1;
1648 enic->cq_count = 2;
1649 enic->intr_count = 1;
1650
1651 vnic_dev_set_intr_mode(enic->vdev, VNIC_DEV_INTR_MODE_MSI);
1652
1653 return 0;
1654 }
1655
1656 /* Next try INTx
1657 *
1658 * We need 1 RQ, 1 WQ, 2 CQs, and 3 INTRs
1659 * (the first INTR is used for WQ/RQ)
1660 * (the second INTR is used for WQ/RQ errors)
1661 * (the last INTR is used for notifications)
1662 */
1663
1664 if (enic->config.intr_mode < 3 &&
1665 enic->rq_count >= 1 &&
1666 enic->wq_count >= 1 &&
1667 enic->cq_count >= 2 &&
1668 enic->intr_count >= 3) {
1669
1670 enic->rq_count = 1;
1671 enic->wq_count = 1;
1672 enic->cq_count = 2;
1673 enic->intr_count = 3;
1674
1675 vnic_dev_set_intr_mode(enic->vdev, VNIC_DEV_INTR_MODE_INTX);
1676
1677 return 0;
1678 }
1679
1680 vnic_dev_set_intr_mode(enic->vdev, VNIC_DEV_INTR_MODE_UNKNOWN);
1681
1682 return -EINVAL;
1683}
1684
1685static void enic_clear_intr_mode(struct enic *enic)
1686{
1687 switch (vnic_dev_get_intr_mode(enic->vdev)) {
1688 case VNIC_DEV_INTR_MODE_MSIX:
1689 pci_disable_msix(enic->pdev);
1690 break;
1691 case VNIC_DEV_INTR_MODE_MSI:
1692 pci_disable_msi(enic->pdev);
1693 break;
1694 default:
1695 break;
1696 }
1697
1698 vnic_dev_set_intr_mode(enic->vdev, VNIC_DEV_INTR_MODE_UNKNOWN);
1699}
1700
Stephen Hemmingerafe29f72008-11-19 22:23:26 -08001701static const struct net_device_ops enic_netdev_ops = {
1702 .ndo_open = enic_open,
1703 .ndo_stop = enic_stop,
Stephen Hemminger00829822008-11-20 20:14:53 -08001704 .ndo_start_xmit = enic_hard_start_xmit,
Stephen Hemmingerafe29f72008-11-19 22:23:26 -08001705 .ndo_get_stats = enic_get_stats,
1706 .ndo_validate_addr = eth_validate_addr,
Stephen Hemmingerfe96aaa2009-01-09 11:13:14 +00001707 .ndo_set_mac_address = eth_mac_addr,
Stephen Hemmingerafe29f72008-11-19 22:23:26 -08001708 .ndo_set_multicast_list = enic_set_multicast_list,
1709 .ndo_change_mtu = enic_change_mtu,
1710 .ndo_vlan_rx_register = enic_vlan_rx_register,
1711 .ndo_vlan_rx_add_vid = enic_vlan_rx_add_vid,
1712 .ndo_vlan_rx_kill_vid = enic_vlan_rx_kill_vid,
1713 .ndo_tx_timeout = enic_tx_timeout,
1714#ifdef CONFIG_NET_POLL_CONTROLLER
1715 .ndo_poll_controller = enic_poll_controller,
1716#endif
1717};
1718
Scott Feldman6fdfa972009-09-03 17:02:45 +00001719void enic_dev_deinit(struct enic *enic)
1720{
1721 netif_napi_del(&enic->napi);
1722 enic_free_vnic_resources(enic);
1723 enic_clear_intr_mode(enic);
1724}
1725
1726int enic_dev_init(struct enic *enic)
1727{
1728 struct net_device *netdev = enic->netdev;
1729 int err;
1730
1731 /* Get vNIC configuration
1732 */
1733
1734 err = enic_get_vnic_config(enic);
1735 if (err) {
1736 printk(KERN_ERR PFX
1737 "Get vNIC configuration failed, aborting.\n");
1738 return err;
1739 }
1740
1741 /* Get available resource counts
1742 */
1743
1744 enic_get_res_counts(enic);
1745
1746 /* Set interrupt mode based on resource counts and system
1747 * capabilities
1748 */
1749
1750 err = enic_set_intr_mode(enic);
1751 if (err) {
1752 printk(KERN_ERR PFX
1753 "Failed to set intr mode, aborting.\n");
1754 return err;
1755 }
1756
1757 /* Allocate and configure vNIC resources
1758 */
1759
1760 err = enic_alloc_vnic_resources(enic);
1761 if (err) {
1762 printk(KERN_ERR PFX
1763 "Failed to alloc vNIC resources, aborting.\n");
1764 goto err_out_free_vnic_resources;
1765 }
1766
1767 enic_init_vnic_resources(enic);
1768
1769 err = enic_set_rq_alloc_buf(enic);
1770 if (err) {
1771 printk(KERN_ERR PFX
1772 "Failed to set RQ buffer allocator, aborting.\n");
1773 goto err_out_free_vnic_resources;
1774 }
1775
1776 err = enic_set_niccfg(enic);
1777 if (err) {
1778 printk(KERN_ERR PFX
1779 "Failed to config nic, aborting.\n");
1780 goto err_out_free_vnic_resources;
1781 }
1782
1783 switch (vnic_dev_get_intr_mode(enic->vdev)) {
1784 default:
1785 netif_napi_add(netdev, &enic->napi, enic_poll, 64);
1786 break;
1787 case VNIC_DEV_INTR_MODE_MSIX:
1788 netif_napi_add(netdev, &enic->napi, enic_poll_msix, 64);
1789 break;
1790 }
1791
1792 return 0;
1793
1794err_out_free_vnic_resources:
1795 enic_clear_intr_mode(enic);
1796 enic_free_vnic_resources(enic);
1797
1798 return err;
1799}
1800
Scott Feldman27e6c7d2009-09-03 17:01:53 +00001801static void enic_iounmap(struct enic *enic)
1802{
1803 unsigned int i;
1804
1805 for (i = 0; i < ARRAY_SIZE(enic->bar); i++)
1806 if (enic->bar[i].vaddr)
1807 iounmap(enic->bar[i].vaddr);
1808}
1809
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001810static int __devinit enic_probe(struct pci_dev *pdev,
1811 const struct pci_device_id *ent)
1812{
1813 struct net_device *netdev;
1814 struct enic *enic;
1815 int using_dac = 0;
1816 unsigned int i;
1817 int err;
1818
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001819 /* Allocate net device structure and initialize. Private
1820 * instance data is initialized to zero.
1821 */
1822
1823 netdev = alloc_etherdev(sizeof(struct enic));
1824 if (!netdev) {
1825 printk(KERN_ERR PFX "Etherdev alloc failed, aborting.\n");
1826 return -ENOMEM;
1827 }
1828
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001829 pci_set_drvdata(pdev, netdev);
1830
1831 SET_NETDEV_DEV(netdev, &pdev->dev);
1832
1833 enic = netdev_priv(netdev);
1834 enic->netdev = netdev;
1835 enic->pdev = pdev;
1836
1837 /* Setup PCI resources
1838 */
1839
1840 err = pci_enable_device(pdev);
1841 if (err) {
1842 printk(KERN_ERR PFX
Scott Feldman4b75a442008-09-24 11:23:53 -07001843 "Cannot enable PCI device, aborting.\n");
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001844 goto err_out_free_netdev;
1845 }
1846
1847 err = pci_request_regions(pdev, DRV_NAME);
1848 if (err) {
1849 printk(KERN_ERR PFX
Scott Feldman4b75a442008-09-24 11:23:53 -07001850 "Cannot request PCI regions, aborting.\n");
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001851 goto err_out_disable_device;
1852 }
1853
1854 pci_set_master(pdev);
1855
1856 /* Query PCI controller on system for DMA addressing
1857 * limitation for the device. Try 40-bit first, and
1858 * fail to 32-bit.
1859 */
1860
Yang Hongyang50cf1562009-04-06 19:01:14 -07001861 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(40));
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001862 if (err) {
Yang Hongyang284901a2009-04-06 19:01:15 -07001863 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001864 if (err) {
1865 printk(KERN_ERR PFX
Scott Feldman4b75a442008-09-24 11:23:53 -07001866 "No usable DMA configuration, aborting.\n");
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001867 goto err_out_release_regions;
1868 }
Yang Hongyang284901a2009-04-06 19:01:15 -07001869 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001870 if (err) {
1871 printk(KERN_ERR PFX
Scott Feldman4b75a442008-09-24 11:23:53 -07001872 "Unable to obtain 32-bit DMA "
1873 "for consistent allocations, aborting.\n");
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001874 goto err_out_release_regions;
1875 }
1876 } else {
Yang Hongyang50cf1562009-04-06 19:01:14 -07001877 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(40));
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001878 if (err) {
1879 printk(KERN_ERR PFX
Scott Feldman4b75a442008-09-24 11:23:53 -07001880 "Unable to obtain 40-bit DMA "
1881 "for consistent allocations, aborting.\n");
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001882 goto err_out_release_regions;
1883 }
1884 using_dac = 1;
1885 }
1886
Scott Feldman27e6c7d2009-09-03 17:01:53 +00001887 /* Map vNIC resources from BAR0-5
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001888 */
1889
Scott Feldman27e6c7d2009-09-03 17:01:53 +00001890 for (i = 0; i < ARRAY_SIZE(enic->bar); i++) {
1891 if (!(pci_resource_flags(pdev, i) & IORESOURCE_MEM))
1892 continue;
1893 enic->bar[i].len = pci_resource_len(pdev, i);
1894 enic->bar[i].vaddr = pci_iomap(pdev, i, enic->bar[i].len);
1895 if (!enic->bar[i].vaddr) {
1896 printk(KERN_ERR PFX
1897 "Cannot memory-map BAR %d, aborting.\n", i);
1898 err = -ENODEV;
1899 goto err_out_iounmap;
1900 }
1901 enic->bar[i].bus_addr = pci_resource_start(pdev, i);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001902 }
1903
1904 /* Register vNIC device
1905 */
1906
Scott Feldman27e6c7d2009-09-03 17:01:53 +00001907 enic->vdev = vnic_dev_register(NULL, enic, pdev, enic->bar,
1908 ARRAY_SIZE(enic->bar));
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001909 if (!enic->vdev) {
1910 printk(KERN_ERR PFX
Scott Feldman4b75a442008-09-24 11:23:53 -07001911 "vNIC registration failed, aborting.\n");
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001912 err = -ENODEV;
1913 goto err_out_iounmap;
1914 }
1915
1916 /* Issue device open to get device in known state
1917 */
1918
1919 err = enic_dev_open(enic);
1920 if (err) {
1921 printk(KERN_ERR PFX
Scott Feldman4b75a442008-09-24 11:23:53 -07001922 "vNIC dev open failed, aborting.\n");
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001923 goto err_out_vnic_unregister;
1924 }
1925
1926 /* Issue device init to initialize the vnic-to-switch link.
1927 * We'll start with carrier off and wait for link UP
1928 * notification later to turn on carrier. We don't need
1929 * to wait here for the vnic-to-switch link initialization
1930 * to complete; link UP notification is the indication that
1931 * the process is complete.
1932 */
1933
1934 netif_carrier_off(netdev);
1935
1936 err = vnic_dev_init(enic->vdev, 0);
1937 if (err) {
1938 printk(KERN_ERR PFX
Scott Feldman4b75a442008-09-24 11:23:53 -07001939 "vNIC dev init failed, aborting.\n");
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001940 goto err_out_dev_close;
1941 }
1942
Scott Feldman6fdfa972009-09-03 17:02:45 +00001943 err = enic_dev_init(enic);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001944 if (err) {
1945 printk(KERN_ERR PFX
Scott Feldman6fdfa972009-09-03 17:02:45 +00001946 "Device initialization failed, aborting.\n");
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001947 goto err_out_dev_close;
1948 }
1949
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001950 /* Setup notification timer, HW reset task, and locks
1951 */
1952
1953 init_timer(&enic->notify_timer);
1954 enic->notify_timer.function = enic_notify_timer;
1955 enic->notify_timer.data = (unsigned long)enic;
1956
1957 INIT_WORK(&enic->reset, enic_reset);
1958
1959 for (i = 0; i < enic->wq_count; i++)
1960 spin_lock_init(&enic->wq_lock[i]);
1961
1962 spin_lock_init(&enic->devcmd_lock);
1963
1964 /* Register net device
1965 */
1966
1967 enic->port_mtu = enic->config.mtu;
1968 (void)enic_change_mtu(netdev, enic->port_mtu);
1969
1970 err = enic_set_mac_addr(netdev, enic->mac_addr);
1971 if (err) {
1972 printk(KERN_ERR PFX
Scott Feldman4b75a442008-09-24 11:23:53 -07001973 "Invalid MAC address, aborting.\n");
Scott Feldman6fdfa972009-09-03 17:02:45 +00001974 goto err_out_dev_deinit;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001975 }
1976
Stephen Hemmingerafe29f72008-11-19 22:23:26 -08001977 netdev->netdev_ops = &enic_netdev_ops;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001978 netdev->watchdog_timeo = 2 * HZ;
1979 netdev->ethtool_ops = &enic_ethtool_ops;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001980
Scott Feldman9f63a7c2009-09-03 17:02:29 +00001981 netdev->features |= NETIF_F_HW_VLAN_TX |
1982 NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_FILTER;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001983 if (ENIC_SETTING(enic, TXCSUM))
1984 netdev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
1985 if (ENIC_SETTING(enic, TSO))
1986 netdev->features |= NETIF_F_TSO |
1987 NETIF_F_TSO6 | NETIF_F_TSO_ECN;
Scott Feldman86ca9db2008-11-21 21:26:55 -08001988 if (ENIC_SETTING(enic, LRO))
1989 netdev->features |= NETIF_F_LRO;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001990 if (using_dac)
1991 netdev->features |= NETIF_F_HIGHDMA;
1992
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001993 enic->csum_rx_enabled = ENIC_SETTING(enic, RXCSUM);
1994
Scott Feldman86ca9db2008-11-21 21:26:55 -08001995 enic->lro_mgr.max_aggr = ENIC_LRO_MAX_AGGR;
1996 enic->lro_mgr.max_desc = ENIC_LRO_MAX_DESC;
1997 enic->lro_mgr.lro_arr = enic->lro_desc;
1998 enic->lro_mgr.get_skb_header = enic_get_skb_header;
1999 enic->lro_mgr.features = LRO_F_NAPI | LRO_F_EXTRACT_VLAN_ID;
2000 enic->lro_mgr.dev = netdev;
2001 enic->lro_mgr.ip_summed = CHECKSUM_COMPLETE;
2002 enic->lro_mgr.ip_summed_aggr = CHECKSUM_UNNECESSARY;
2003
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002004 err = register_netdev(netdev);
2005 if (err) {
2006 printk(KERN_ERR PFX
Scott Feldman4b75a442008-09-24 11:23:53 -07002007 "Cannot register net device, aborting.\n");
Scott Feldman6fdfa972009-09-03 17:02:45 +00002008 goto err_out_dev_deinit;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002009 }
2010
2011 return 0;
2012
Scott Feldman6fdfa972009-09-03 17:02:45 +00002013err_out_dev_deinit:
2014 enic_dev_deinit(enic);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002015err_out_dev_close:
2016 vnic_dev_close(enic->vdev);
2017err_out_vnic_unregister:
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002018 vnic_dev_unregister(enic->vdev);
2019err_out_iounmap:
2020 enic_iounmap(enic);
2021err_out_release_regions:
2022 pci_release_regions(pdev);
2023err_out_disable_device:
2024 pci_disable_device(pdev);
2025err_out_free_netdev:
2026 pci_set_drvdata(pdev, NULL);
2027 free_netdev(netdev);
2028
2029 return err;
2030}
2031
2032static void __devexit enic_remove(struct pci_dev *pdev)
2033{
2034 struct net_device *netdev = pci_get_drvdata(pdev);
2035
2036 if (netdev) {
2037 struct enic *enic = netdev_priv(netdev);
2038
2039 flush_scheduled_work();
2040 unregister_netdev(netdev);
Scott Feldman6fdfa972009-09-03 17:02:45 +00002041 enic_dev_deinit(enic);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002042 vnic_dev_close(enic->vdev);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002043 vnic_dev_unregister(enic->vdev);
2044 enic_iounmap(enic);
2045 pci_release_regions(pdev);
2046 pci_disable_device(pdev);
2047 pci_set_drvdata(pdev, NULL);
2048 free_netdev(netdev);
2049 }
2050}
2051
2052static struct pci_driver enic_driver = {
2053 .name = DRV_NAME,
2054 .id_table = enic_id_table,
2055 .probe = enic_probe,
2056 .remove = __devexit_p(enic_remove),
2057};
2058
2059static int __init enic_init_module(void)
2060{
2061 printk(KERN_INFO PFX "%s, ver %s\n", DRV_DESCRIPTION, DRV_VERSION);
2062
2063 return pci_register_driver(&enic_driver);
2064}
2065
2066static void __exit enic_cleanup_module(void)
2067{
2068 pci_unregister_driver(&enic_driver);
2069}
2070
2071module_init(enic_init_module);
2072module_exit(enic_cleanup_module);