blob: 89664c670972c95a00a8944ed5bb73bcb5930a62 [file] [log] [blame]
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001/*
Vasanthy Kolluri29046f92010-06-24 10:52:26 +00002 * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved.
Scott Feldman01f2e4e2008-09-15 09:17:11 -07003 * 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>
Vasanthy Kolluri29046f92010-06-24 10:52:26 +000037#include <linux/rtnetlink.h>
Kamalesh Babulalb7c6bfb2008-10-13 18:41:01 -070038#include <net/ip6_checksum.h>
Scott Feldman01f2e4e2008-09-15 09:17:11 -070039
40#include "cq_enet_desc.h"
41#include "vnic_dev.h"
42#include "vnic_intr.h"
43#include "vnic_stats.h"
Scott Feldmanf8bd9092010-05-17 22:50:19 -070044#include "vnic_vic.h"
Scott Feldman01f2e4e2008-09-15 09:17:11 -070045#include "enic_res.h"
46#include "enic.h"
47
48#define ENIC_NOTIFY_TIMER_PERIOD (2 * HZ)
Scott Feldmanea0d7d92009-09-03 17:02:03 +000049#define WQ_ENET_MAX_DESC_LEN (1 << WQ_ENET_LEN_BITS)
50#define MAX_TSO (1 << 16)
51#define ENIC_DESC_MAX_SPLITS (MAX_TSO / WQ_ENET_MAX_DESC_LEN + 1)
52
53#define PCI_DEVICE_ID_CISCO_VIC_ENET 0x0043 /* ethernet vnic */
Scott Feldmanf8bd9092010-05-17 22:50:19 -070054#define PCI_DEVICE_ID_CISCO_VIC_ENET_DYN 0x0044 /* enet dynamic vnic */
Scott Feldman01f2e4e2008-09-15 09:17:11 -070055
56/* Supported devices */
Alexey Dobriyana3aa1882010-01-07 11:58:11 +000057static DEFINE_PCI_DEVICE_TABLE(enic_id_table) = {
Scott Feldmanea0d7d92009-09-03 17:02:03 +000058 { PCI_VDEVICE(CISCO, PCI_DEVICE_ID_CISCO_VIC_ENET) },
Scott Feldmanf8bd9092010-05-17 22:50:19 -070059 { PCI_VDEVICE(CISCO, PCI_DEVICE_ID_CISCO_VIC_ENET_DYN) },
Scott Feldman01f2e4e2008-09-15 09:17:11 -070060 { 0, } /* end of table */
61};
62
63MODULE_DESCRIPTION(DRV_DESCRIPTION);
64MODULE_AUTHOR("Scott Feldman <scofeldm@cisco.com>");
65MODULE_LICENSE("GPL");
66MODULE_VERSION(DRV_VERSION);
67MODULE_DEVICE_TABLE(pci, enic_id_table);
68
69struct enic_stat {
70 char name[ETH_GSTRING_LEN];
71 unsigned int offset;
72};
73
74#define ENIC_TX_STAT(stat) \
75 { .name = #stat, .offset = offsetof(struct vnic_tx_stats, stat) / 8 }
76#define ENIC_RX_STAT(stat) \
77 { .name = #stat, .offset = offsetof(struct vnic_rx_stats, stat) / 8 }
78
79static const struct enic_stat enic_tx_stats[] = {
80 ENIC_TX_STAT(tx_frames_ok),
81 ENIC_TX_STAT(tx_unicast_frames_ok),
82 ENIC_TX_STAT(tx_multicast_frames_ok),
83 ENIC_TX_STAT(tx_broadcast_frames_ok),
84 ENIC_TX_STAT(tx_bytes_ok),
85 ENIC_TX_STAT(tx_unicast_bytes_ok),
86 ENIC_TX_STAT(tx_multicast_bytes_ok),
87 ENIC_TX_STAT(tx_broadcast_bytes_ok),
88 ENIC_TX_STAT(tx_drops),
89 ENIC_TX_STAT(tx_errors),
90 ENIC_TX_STAT(tx_tso),
91};
92
93static const struct enic_stat enic_rx_stats[] = {
94 ENIC_RX_STAT(rx_frames_ok),
95 ENIC_RX_STAT(rx_frames_total),
96 ENIC_RX_STAT(rx_unicast_frames_ok),
97 ENIC_RX_STAT(rx_multicast_frames_ok),
98 ENIC_RX_STAT(rx_broadcast_frames_ok),
99 ENIC_RX_STAT(rx_bytes_ok),
100 ENIC_RX_STAT(rx_unicast_bytes_ok),
101 ENIC_RX_STAT(rx_multicast_bytes_ok),
102 ENIC_RX_STAT(rx_broadcast_bytes_ok),
103 ENIC_RX_STAT(rx_drop),
104 ENIC_RX_STAT(rx_no_bufs),
105 ENIC_RX_STAT(rx_errors),
106 ENIC_RX_STAT(rx_rss),
107 ENIC_RX_STAT(rx_crc_errors),
108 ENIC_RX_STAT(rx_frames_64),
109 ENIC_RX_STAT(rx_frames_127),
110 ENIC_RX_STAT(rx_frames_255),
111 ENIC_RX_STAT(rx_frames_511),
112 ENIC_RX_STAT(rx_frames_1023),
113 ENIC_RX_STAT(rx_frames_1518),
114 ENIC_RX_STAT(rx_frames_to_max),
115};
116
117static const unsigned int enic_n_tx_stats = ARRAY_SIZE(enic_tx_stats);
118static const unsigned int enic_n_rx_stats = ARRAY_SIZE(enic_rx_stats);
119
Scott Feldmanf8bd9092010-05-17 22:50:19 -0700120static int enic_is_dynamic(struct enic *enic)
121{
122 return enic->pdev->device == PCI_DEVICE_ID_CISCO_VIC_ENET_DYN;
123}
124
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000125static inline unsigned int enic_cq_rq(struct enic *enic, unsigned int rq)
126{
127 return rq;
128}
129
130static inline unsigned int enic_cq_wq(struct enic *enic, unsigned int wq)
131{
132 return enic->rq_count + wq;
133}
134
135static inline unsigned int enic_legacy_io_intr(void)
136{
137 return 0;
138}
139
140static inline unsigned int enic_legacy_err_intr(void)
141{
142 return 1;
143}
144
145static inline unsigned int enic_legacy_notify_intr(void)
146{
147 return 2;
148}
149
150static inline unsigned int enic_msix_rq_intr(struct enic *enic, unsigned int rq)
151{
152 return rq;
153}
154
155static inline unsigned int enic_msix_wq_intr(struct enic *enic, unsigned int wq)
156{
157 return enic->rq_count + wq;
158}
159
160static inline unsigned int enic_msix_err_intr(struct enic *enic)
161{
162 return enic->rq_count + enic->wq_count;
163}
164
165static inline unsigned int enic_msix_notify_intr(struct enic *enic)
166{
167 return enic->rq_count + enic->wq_count + 1;
168}
169
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700170static int enic_get_settings(struct net_device *netdev,
171 struct ethtool_cmd *ecmd)
172{
173 struct enic *enic = netdev_priv(netdev);
174
175 ecmd->supported = (SUPPORTED_10000baseT_Full | SUPPORTED_FIBRE);
176 ecmd->advertising = (ADVERTISED_10000baseT_Full | ADVERTISED_FIBRE);
177 ecmd->port = PORT_FIBRE;
178 ecmd->transceiver = XCVR_EXTERNAL;
179
180 if (netif_carrier_ok(netdev)) {
181 ecmd->speed = vnic_dev_port_speed(enic->vdev);
182 ecmd->duplex = DUPLEX_FULL;
183 } else {
184 ecmd->speed = -1;
185 ecmd->duplex = -1;
186 }
187
188 ecmd->autoneg = AUTONEG_DISABLE;
189
190 return 0;
191}
192
Vasanthy Kolluri383ab922010-06-24 10:50:12 +0000193static int enic_dev_fw_info(struct enic *enic,
194 struct vnic_devcmd_fw_info **fw_info)
195{
196 int err;
197
198 spin_lock(&enic->devcmd_lock);
199 err = vnic_dev_fw_info(enic->vdev, fw_info);
200 spin_unlock(&enic->devcmd_lock);
201
202 return err;
203}
204
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700205static void enic_get_drvinfo(struct net_device *netdev,
206 struct ethtool_drvinfo *drvinfo)
207{
208 struct enic *enic = netdev_priv(netdev);
209 struct vnic_devcmd_fw_info *fw_info;
210
Vasanthy Kolluri383ab922010-06-24 10:50:12 +0000211 enic_dev_fw_info(enic, &fw_info);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700212
213 strncpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver));
214 strncpy(drvinfo->version, DRV_VERSION, sizeof(drvinfo->version));
215 strncpy(drvinfo->fw_version, fw_info->fw_version,
216 sizeof(drvinfo->fw_version));
217 strncpy(drvinfo->bus_info, pci_name(enic->pdev),
218 sizeof(drvinfo->bus_info));
219}
220
221static void enic_get_strings(struct net_device *netdev, u32 stringset, u8 *data)
222{
223 unsigned int i;
224
225 switch (stringset) {
226 case ETH_SS_STATS:
227 for (i = 0; i < enic_n_tx_stats; i++) {
228 memcpy(data, enic_tx_stats[i].name, ETH_GSTRING_LEN);
229 data += ETH_GSTRING_LEN;
230 }
231 for (i = 0; i < enic_n_rx_stats; i++) {
232 memcpy(data, enic_rx_stats[i].name, ETH_GSTRING_LEN);
233 data += ETH_GSTRING_LEN;
234 }
235 break;
236 }
237}
238
Scott Feldman25f0a062008-09-24 11:23:32 -0700239static int enic_get_sset_count(struct net_device *netdev, int sset)
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700240{
Scott Feldman25f0a062008-09-24 11:23:32 -0700241 switch (sset) {
242 case ETH_SS_STATS:
243 return enic_n_tx_stats + enic_n_rx_stats;
244 default:
245 return -EOPNOTSUPP;
246 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700247}
248
Vasanthy Kolluri383ab922010-06-24 10:50:12 +0000249static int enic_dev_stats_dump(struct enic *enic, struct vnic_stats **vstats)
250{
251 int err;
252
253 spin_lock(&enic->devcmd_lock);
254 err = vnic_dev_stats_dump(enic->vdev, vstats);
255 spin_unlock(&enic->devcmd_lock);
256
257 return err;
258}
259
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700260static void enic_get_ethtool_stats(struct net_device *netdev,
261 struct ethtool_stats *stats, u64 *data)
262{
263 struct enic *enic = netdev_priv(netdev);
264 struct vnic_stats *vstats;
265 unsigned int i;
266
Vasanthy Kolluri383ab922010-06-24 10:50:12 +0000267 enic_dev_stats_dump(enic, &vstats);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700268
269 for (i = 0; i < enic_n_tx_stats; i++)
270 *(data++) = ((u64 *)&vstats->tx)[enic_tx_stats[i].offset];
271 for (i = 0; i < enic_n_rx_stats; i++)
272 *(data++) = ((u64 *)&vstats->rx)[enic_rx_stats[i].offset];
273}
274
275static u32 enic_get_rx_csum(struct net_device *netdev)
276{
277 struct enic *enic = netdev_priv(netdev);
278 return enic->csum_rx_enabled;
279}
280
281static int enic_set_rx_csum(struct net_device *netdev, u32 data)
282{
283 struct enic *enic = netdev_priv(netdev);
284
Scott Feldman25f0a062008-09-24 11:23:32 -0700285 if (data && !ENIC_SETTING(enic, RXCSUM))
286 return -EINVAL;
287
288 enic->csum_rx_enabled = !!data;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700289
290 return 0;
291}
292
293static int enic_set_tx_csum(struct net_device *netdev, u32 data)
294{
295 struct enic *enic = netdev_priv(netdev);
296
Scott Feldman25f0a062008-09-24 11:23:32 -0700297 if (data && !ENIC_SETTING(enic, TXCSUM))
298 return -EINVAL;
299
300 if (data)
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700301 netdev->features |= NETIF_F_HW_CSUM;
302 else
303 netdev->features &= ~NETIF_F_HW_CSUM;
304
305 return 0;
306}
307
308static int enic_set_tso(struct net_device *netdev, u32 data)
309{
310 struct enic *enic = netdev_priv(netdev);
311
Scott Feldman25f0a062008-09-24 11:23:32 -0700312 if (data && !ENIC_SETTING(enic, TSO))
313 return -EINVAL;
314
315 if (data)
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700316 netdev->features |=
317 NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_TSO_ECN;
318 else
319 netdev->features &=
320 ~(NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_TSO_ECN);
321
322 return 0;
323}
324
325static u32 enic_get_msglevel(struct net_device *netdev)
326{
327 struct enic *enic = netdev_priv(netdev);
328 return enic->msg_enable;
329}
330
331static void enic_set_msglevel(struct net_device *netdev, u32 value)
332{
333 struct enic *enic = netdev_priv(netdev);
334 enic->msg_enable = value;
335}
336
Scott Feldman7c844592009-12-23 13:27:54 +0000337static int enic_get_coalesce(struct net_device *netdev,
338 struct ethtool_coalesce *ecmd)
339{
340 struct enic *enic = netdev_priv(netdev);
341
342 ecmd->tx_coalesce_usecs = enic->tx_coalesce_usecs;
343 ecmd->rx_coalesce_usecs = enic->rx_coalesce_usecs;
344
345 return 0;
346}
347
348static int enic_set_coalesce(struct net_device *netdev,
349 struct ethtool_coalesce *ecmd)
350{
351 struct enic *enic = netdev_priv(netdev);
352 u32 tx_coalesce_usecs;
353 u32 rx_coalesce_usecs;
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000354 unsigned int i, intr;
Scott Feldman7c844592009-12-23 13:27:54 +0000355
356 tx_coalesce_usecs = min_t(u32,
357 INTR_COALESCE_HW_TO_USEC(VNIC_INTR_TIMER_MAX),
358 ecmd->tx_coalesce_usecs);
359 rx_coalesce_usecs = min_t(u32,
360 INTR_COALESCE_HW_TO_USEC(VNIC_INTR_TIMER_MAX),
361 ecmd->rx_coalesce_usecs);
362
363 switch (vnic_dev_get_intr_mode(enic->vdev)) {
364 case VNIC_DEV_INTR_MODE_INTX:
365 if (tx_coalesce_usecs != rx_coalesce_usecs)
366 return -EINVAL;
367
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000368 intr = enic_legacy_io_intr();
369 vnic_intr_coalescing_timer_set(&enic->intr[intr],
Scott Feldman7c844592009-12-23 13:27:54 +0000370 INTR_COALESCE_USEC_TO_HW(tx_coalesce_usecs));
371 break;
372 case VNIC_DEV_INTR_MODE_MSI:
373 if (tx_coalesce_usecs != rx_coalesce_usecs)
374 return -EINVAL;
375
376 vnic_intr_coalescing_timer_set(&enic->intr[0],
377 INTR_COALESCE_USEC_TO_HW(tx_coalesce_usecs));
378 break;
379 case VNIC_DEV_INTR_MODE_MSIX:
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000380 for (i = 0; i < enic->wq_count; i++) {
381 intr = enic_msix_wq_intr(enic, i);
382 vnic_intr_coalescing_timer_set(&enic->intr[intr],
383 INTR_COALESCE_USEC_TO_HW(tx_coalesce_usecs));
384 }
385
386 for (i = 0; i < enic->rq_count; i++) {
387 intr = enic_msix_rq_intr(enic, i);
388 vnic_intr_coalescing_timer_set(&enic->intr[intr],
389 INTR_COALESCE_USEC_TO_HW(rx_coalesce_usecs));
390 }
391
Scott Feldman7c844592009-12-23 13:27:54 +0000392 break;
393 default:
394 break;
395 }
396
397 enic->tx_coalesce_usecs = tx_coalesce_usecs;
398 enic->rx_coalesce_usecs = rx_coalesce_usecs;
399
400 return 0;
401}
402
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700403static const struct ethtool_ops enic_ethtool_ops = {
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700404 .get_settings = enic_get_settings,
405 .get_drvinfo = enic_get_drvinfo,
406 .get_msglevel = enic_get_msglevel,
407 .set_msglevel = enic_set_msglevel,
408 .get_link = ethtool_op_get_link,
409 .get_strings = enic_get_strings,
Scott Feldman25f0a062008-09-24 11:23:32 -0700410 .get_sset_count = enic_get_sset_count,
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700411 .get_ethtool_stats = enic_get_ethtool_stats,
412 .get_rx_csum = enic_get_rx_csum,
413 .set_rx_csum = enic_set_rx_csum,
414 .get_tx_csum = ethtool_op_get_tx_csum,
415 .set_tx_csum = enic_set_tx_csum,
416 .get_sg = ethtool_op_get_sg,
417 .set_sg = ethtool_op_set_sg,
418 .get_tso = ethtool_op_get_tso,
419 .set_tso = enic_set_tso,
Scott Feldman7c844592009-12-23 13:27:54 +0000420 .get_coalesce = enic_get_coalesce,
421 .set_coalesce = enic_set_coalesce,
Scott Feldman86ca9db2008-11-21 21:26:55 -0800422 .get_flags = ethtool_op_get_flags,
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700423};
424
425static void enic_free_wq_buf(struct vnic_wq *wq, struct vnic_wq_buf *buf)
426{
427 struct enic *enic = vnic_dev_priv(wq->vdev);
428
429 if (buf->sop)
430 pci_unmap_single(enic->pdev, buf->dma_addr,
431 buf->len, PCI_DMA_TODEVICE);
432 else
433 pci_unmap_page(enic->pdev, buf->dma_addr,
434 buf->len, PCI_DMA_TODEVICE);
435
436 if (buf->os_buf)
437 dev_kfree_skb_any(buf->os_buf);
438}
439
440static void enic_wq_free_buf(struct vnic_wq *wq,
441 struct cq_desc *cq_desc, struct vnic_wq_buf *buf, void *opaque)
442{
443 enic_free_wq_buf(wq, buf);
444}
445
446static int enic_wq_service(struct vnic_dev *vdev, struct cq_desc *cq_desc,
447 u8 type, u16 q_number, u16 completed_index, void *opaque)
448{
449 struct enic *enic = vnic_dev_priv(vdev);
450
451 spin_lock(&enic->wq_lock[q_number]);
452
453 vnic_wq_service(&enic->wq[q_number], cq_desc,
454 completed_index, enic_wq_free_buf,
455 opaque);
456
457 if (netif_queue_stopped(enic->netdev) &&
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000458 vnic_wq_desc_avail(&enic->wq[q_number]) >=
459 (MAX_SKB_FRAGS + ENIC_DESC_MAX_SPLITS))
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700460 netif_wake_queue(enic->netdev);
461
462 spin_unlock(&enic->wq_lock[q_number]);
463
464 return 0;
465}
466
467static void enic_log_q_error(struct enic *enic)
468{
469 unsigned int i;
470 u32 error_status;
471
472 for (i = 0; i < enic->wq_count; i++) {
473 error_status = vnic_wq_error_status(&enic->wq[i]);
474 if (error_status)
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +0000475 netdev_err(enic->netdev, "WQ[%d] error_status %d\n",
476 i, error_status);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700477 }
478
479 for (i = 0; i < enic->rq_count; i++) {
480 error_status = vnic_rq_error_status(&enic->rq[i]);
481 if (error_status)
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +0000482 netdev_err(enic->netdev, "RQ[%d] error_status %d\n",
483 i, error_status);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700484 }
485}
486
Vasanthy Kolluri383ab922010-06-24 10:50:12 +0000487static void enic_msglvl_check(struct enic *enic)
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700488{
Vasanthy Kolluri383ab922010-06-24 10:50:12 +0000489 u32 msg_enable = vnic_dev_msg_lvl(enic->vdev);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700490
Vasanthy Kolluri383ab922010-06-24 10:50:12 +0000491 if (msg_enable != enic->msg_enable) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +0000492 netdev_info(enic->netdev, "msg lvl changed from 0x%x to 0x%x\n",
493 enic->msg_enable, msg_enable);
Vasanthy Kolluri383ab922010-06-24 10:50:12 +0000494 enic->msg_enable = msg_enable;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700495 }
496}
497
498static void enic_mtu_check(struct enic *enic)
499{
500 u32 mtu = vnic_dev_mtu(enic->vdev);
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +0000501 struct net_device *netdev = enic->netdev;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700502
Scott Feldman491598a2009-09-03 17:02:40 +0000503 if (mtu && mtu != enic->port_mtu) {
Scott Feldman7c844592009-12-23 13:27:54 +0000504 enic->port_mtu = mtu;
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +0000505 if (mtu < netdev->mtu)
506 netdev_warn(netdev,
507 "interface MTU (%d) set higher "
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700508 "than switch port MTU (%d)\n",
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +0000509 netdev->mtu, mtu);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700510 }
511}
512
Vasanthy Kolluri383ab922010-06-24 10:50:12 +0000513static void enic_link_check(struct enic *enic)
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700514{
Vasanthy Kolluri383ab922010-06-24 10:50:12 +0000515 int link_status = vnic_dev_link_status(enic->vdev);
516 int carrier_ok = netif_carrier_ok(enic->netdev);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700517
Vasanthy Kolluri383ab922010-06-24 10:50:12 +0000518 if (link_status && !carrier_ok) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +0000519 netdev_info(enic->netdev, "Link UP\n");
Vasanthy Kolluri383ab922010-06-24 10:50:12 +0000520 netif_carrier_on(enic->netdev);
521 } else if (!link_status && carrier_ok) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +0000522 netdev_info(enic->netdev, "Link DOWN\n");
Vasanthy Kolluri383ab922010-06-24 10:50:12 +0000523 netif_carrier_off(enic->netdev);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700524 }
525}
526
527static void enic_notify_check(struct enic *enic)
528{
529 enic_msglvl_check(enic);
530 enic_mtu_check(enic);
531 enic_link_check(enic);
532}
533
534#define ENIC_TEST_INTR(pba, i) (pba & (1 << i))
535
536static irqreturn_t enic_isr_legacy(int irq, void *data)
537{
538 struct net_device *netdev = data;
539 struct enic *enic = netdev_priv(netdev);
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000540 unsigned int io_intr = enic_legacy_io_intr();
541 unsigned int err_intr = enic_legacy_err_intr();
542 unsigned int notify_intr = enic_legacy_notify_intr();
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700543 u32 pba;
544
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000545 vnic_intr_mask(&enic->intr[io_intr]);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700546
547 pba = vnic_intr_legacy_pba(enic->legacy_pba);
548 if (!pba) {
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000549 vnic_intr_unmask(&enic->intr[io_intr]);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700550 return IRQ_NONE; /* not our interrupt */
551 }
552
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000553 if (ENIC_TEST_INTR(pba, notify_intr)) {
554 vnic_intr_return_all_credits(&enic->intr[notify_intr]);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700555 enic_notify_check(enic);
Scott Feldmaned8af6b2009-02-09 23:23:50 -0800556 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700557
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000558 if (ENIC_TEST_INTR(pba, err_intr)) {
559 vnic_intr_return_all_credits(&enic->intr[err_intr]);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700560 enic_log_q_error(enic);
561 /* schedule recovery from WQ/RQ error */
562 schedule_work(&enic->reset);
563 return IRQ_HANDLED;
564 }
565
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000566 if (ENIC_TEST_INTR(pba, io_intr)) {
567 if (napi_schedule_prep(&enic->napi[0]))
568 __napi_schedule(&enic->napi[0]);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700569 } else {
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000570 vnic_intr_unmask(&enic->intr[io_intr]);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700571 }
572
573 return IRQ_HANDLED;
574}
575
576static irqreturn_t enic_isr_msi(int irq, void *data)
577{
578 struct enic *enic = data;
579
580 /* With MSI, there is no sharing of interrupts, so this is
581 * our interrupt and there is no need to ack it. The device
582 * is not providing per-vector masking, so the OS will not
583 * write to PCI config space to mask/unmask the interrupt.
584 * We're using mask_on_assertion for MSI, so the device
585 * automatically masks the interrupt when the interrupt is
586 * generated. Later, when exiting polling, the interrupt
587 * will be unmasked (see enic_poll).
588 *
589 * Also, the device uses the same PCIe Traffic Class (TC)
590 * for Memory Write data and MSI, so there are no ordering
591 * issues; the MSI will always arrive at the Root Complex
592 * _after_ corresponding Memory Writes (i.e. descriptor
593 * writes).
594 */
595
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000596 napi_schedule(&enic->napi[0]);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700597
598 return IRQ_HANDLED;
599}
600
601static irqreturn_t enic_isr_msix_rq(int irq, void *data)
602{
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000603 struct napi_struct *napi = data;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700604
605 /* schedule NAPI polling for RQ cleanup */
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000606 napi_schedule(napi);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700607
608 return IRQ_HANDLED;
609}
610
611static irqreturn_t enic_isr_msix_wq(int irq, void *data)
612{
613 struct enic *enic = data;
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000614 unsigned int cq = enic_cq_wq(enic, 0);
615 unsigned int intr = enic_msix_wq_intr(enic, 0);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700616 unsigned int wq_work_to_do = -1; /* no limit */
617 unsigned int wq_work_done;
618
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000619 wq_work_done = vnic_cq_service(&enic->cq[cq],
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700620 wq_work_to_do, enic_wq_service, NULL);
621
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000622 vnic_intr_return_credits(&enic->intr[intr],
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700623 wq_work_done,
624 1 /* unmask intr */,
625 1 /* reset intr timer */);
626
627 return IRQ_HANDLED;
628}
629
630static irqreturn_t enic_isr_msix_err(int irq, void *data)
631{
632 struct enic *enic = data;
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000633 unsigned int intr = enic_msix_err_intr(enic);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700634
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000635 vnic_intr_return_all_credits(&enic->intr[intr]);
Scott Feldmaned8af6b2009-02-09 23:23:50 -0800636
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700637 enic_log_q_error(enic);
638
639 /* schedule recovery from WQ/RQ error */
640 schedule_work(&enic->reset);
641
642 return IRQ_HANDLED;
643}
644
645static irqreturn_t enic_isr_msix_notify(int irq, void *data)
646{
647 struct enic *enic = data;
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000648 unsigned int intr = enic_msix_notify_intr(enic);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700649
Vasanthy Kolluri717258b2010-10-20 10:16:59 +0000650 vnic_intr_return_all_credits(&enic->intr[intr]);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700651 enic_notify_check(enic);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700652
653 return IRQ_HANDLED;
654}
655
656static inline void enic_queue_wq_skb_cont(struct enic *enic,
657 struct vnic_wq *wq, struct sk_buff *skb,
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +0000658 unsigned int len_left, int loopback)
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700659{
660 skb_frag_t *frag;
661
662 /* Queue additional data fragments */
663 for (frag = skb_shinfo(skb)->frags; len_left; frag++) {
664 len_left -= frag->size;
665 enic_queue_wq_desc_cont(wq, skb,
666 pci_map_page(enic->pdev, frag->page,
667 frag->page_offset, frag->size,
668 PCI_DMA_TODEVICE),
669 frag->size,
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +0000670 (len_left == 0), /* EOP? */
671 loopback);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700672 }
673}
674
675static inline void enic_queue_wq_skb_vlan(struct enic *enic,
676 struct vnic_wq *wq, struct sk_buff *skb,
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +0000677 int vlan_tag_insert, unsigned int vlan_tag, int loopback)
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700678{
679 unsigned int head_len = skb_headlen(skb);
680 unsigned int len_left = skb->len - head_len;
681 int eop = (len_left == 0);
682
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000683 /* Queue the main skb fragment. The fragments are no larger
684 * than max MTU(9000)+ETH_HDR_LEN(14) bytes, which is less
685 * than WQ_ENET_MAX_DESC_LEN length. So only one descriptor
686 * per fragment is queued.
687 */
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700688 enic_queue_wq_desc(wq, skb,
689 pci_map_single(enic->pdev, skb->data,
690 head_len, PCI_DMA_TODEVICE),
691 head_len,
692 vlan_tag_insert, vlan_tag,
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +0000693 eop, loopback);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700694
695 if (!eop)
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +0000696 enic_queue_wq_skb_cont(enic, wq, skb, len_left, loopback);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700697}
698
699static inline void enic_queue_wq_skb_csum_l4(struct enic *enic,
700 struct vnic_wq *wq, struct sk_buff *skb,
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +0000701 int vlan_tag_insert, unsigned int vlan_tag, int loopback)
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700702{
703 unsigned int head_len = skb_headlen(skb);
704 unsigned int len_left = skb->len - head_len;
Michał Mirosław0d0b1672010-12-14 15:24:08 +0000705 unsigned int hdr_len = skb_checksum_start_offset(skb);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700706 unsigned int csum_offset = hdr_len + skb->csum_offset;
707 int eop = (len_left == 0);
708
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000709 /* Queue the main skb fragment. The fragments are no larger
710 * than max MTU(9000)+ETH_HDR_LEN(14) bytes, which is less
711 * than WQ_ENET_MAX_DESC_LEN length. So only one descriptor
712 * per fragment is queued.
713 */
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700714 enic_queue_wq_desc_csum_l4(wq, skb,
715 pci_map_single(enic->pdev, skb->data,
716 head_len, PCI_DMA_TODEVICE),
717 head_len,
718 csum_offset,
719 hdr_len,
720 vlan_tag_insert, vlan_tag,
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +0000721 eop, loopback);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700722
723 if (!eop)
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +0000724 enic_queue_wq_skb_cont(enic, wq, skb, len_left, loopback);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700725}
726
727static inline void enic_queue_wq_skb_tso(struct enic *enic,
728 struct vnic_wq *wq, struct sk_buff *skb, unsigned int mss,
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +0000729 int vlan_tag_insert, unsigned int vlan_tag, int loopback)
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700730{
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000731 unsigned int frag_len_left = skb_headlen(skb);
732 unsigned int len_left = skb->len - frag_len_left;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700733 unsigned int hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
734 int eop = (len_left == 0);
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000735 unsigned int len;
736 dma_addr_t dma_addr;
737 unsigned int offset = 0;
738 skb_frag_t *frag;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700739
740 /* Preload TCP csum field with IP pseudo hdr calculated
741 * with IP length set to zero. HW will later add in length
742 * to each TCP segment resulting from the TSO.
743 */
744
Harvey Harrison09640e632009-02-01 00:45:17 -0800745 if (skb->protocol == cpu_to_be16(ETH_P_IP)) {
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700746 ip_hdr(skb)->check = 0;
747 tcp_hdr(skb)->check = ~csum_tcpudp_magic(ip_hdr(skb)->saddr,
748 ip_hdr(skb)->daddr, 0, IPPROTO_TCP, 0);
Harvey Harrison09640e632009-02-01 00:45:17 -0800749 } else if (skb->protocol == cpu_to_be16(ETH_P_IPV6)) {
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700750 tcp_hdr(skb)->check = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
751 &ipv6_hdr(skb)->daddr, 0, IPPROTO_TCP, 0);
752 }
753
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000754 /* Queue WQ_ENET_MAX_DESC_LEN length descriptors
755 * for the main skb fragment
756 */
757 while (frag_len_left) {
758 len = min(frag_len_left, (unsigned int)WQ_ENET_MAX_DESC_LEN);
759 dma_addr = pci_map_single(enic->pdev, skb->data + offset,
760 len, PCI_DMA_TODEVICE);
761 enic_queue_wq_desc_tso(wq, skb,
762 dma_addr,
763 len,
764 mss, hdr_len,
765 vlan_tag_insert, vlan_tag,
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +0000766 eop && (len == frag_len_left), loopback);
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000767 frag_len_left -= len;
768 offset += len;
769 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700770
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000771 if (eop)
772 return;
773
774 /* Queue WQ_ENET_MAX_DESC_LEN length descriptors
775 * for additional data fragments
776 */
777 for (frag = skb_shinfo(skb)->frags; len_left; frag++) {
778 len_left -= frag->size;
779 frag_len_left = frag->size;
780 offset = frag->page_offset;
781
782 while (frag_len_left) {
783 len = min(frag_len_left,
784 (unsigned int)WQ_ENET_MAX_DESC_LEN);
785 dma_addr = pci_map_page(enic->pdev, frag->page,
786 offset, len,
787 PCI_DMA_TODEVICE);
788 enic_queue_wq_desc_cont(wq, skb,
789 dma_addr,
790 len,
791 (len_left == 0) &&
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +0000792 (len == frag_len_left), /* EOP? */
793 loopback);
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000794 frag_len_left -= len;
795 offset += len;
796 }
797 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700798}
799
800static inline void enic_queue_wq_skb(struct enic *enic,
801 struct vnic_wq *wq, struct sk_buff *skb)
802{
803 unsigned int mss = skb_shinfo(skb)->gso_size;
804 unsigned int vlan_tag = 0;
805 int vlan_tag_insert = 0;
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +0000806 int loopback = 0;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700807
Jesse Grosseab6d182010-10-20 13:56:03 +0000808 if (vlan_tx_tag_present(skb)) {
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700809 /* VLAN tag from trunking driver */
810 vlan_tag_insert = 1;
811 vlan_tag = vlan_tx_tag_get(skb);
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +0000812 } else if (enic->loop_enable) {
813 vlan_tag = enic->loop_tag;
814 loopback = 1;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700815 }
816
817 if (mss)
818 enic_queue_wq_skb_tso(enic, wq, skb, mss,
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +0000819 vlan_tag_insert, vlan_tag, loopback);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700820 else if (skb->ip_summed == CHECKSUM_PARTIAL)
821 enic_queue_wq_skb_csum_l4(enic, wq, skb,
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +0000822 vlan_tag_insert, vlan_tag, loopback);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700823 else
824 enic_queue_wq_skb_vlan(enic, wq, skb,
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +0000825 vlan_tag_insert, vlan_tag, loopback);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700826}
827
Scott Feldmaned8af6b2009-02-09 23:23:50 -0800828/* netif_tx_lock held, process context with BHs disabled, or BH */
Stephen Hemminger613573252009-08-31 19:50:58 +0000829static netdev_tx_t enic_hard_start_xmit(struct sk_buff *skb,
Scott Feldmand87fd252009-12-23 13:27:59 +0000830 struct net_device *netdev)
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700831{
832 struct enic *enic = netdev_priv(netdev);
833 struct vnic_wq *wq = &enic->wq[0];
834 unsigned long flags;
835
836 if (skb->len <= 0) {
837 dev_kfree_skb(skb);
838 return NETDEV_TX_OK;
839 }
840
841 /* Non-TSO sends must fit within ENIC_NON_TSO_MAX_DESC descs,
842 * which is very likely. In the off chance it's going to take
843 * more than * ENIC_NON_TSO_MAX_DESC, linearize the skb.
844 */
845
846 if (skb_shinfo(skb)->gso_size == 0 &&
847 skb_shinfo(skb)->nr_frags + 1 > ENIC_NON_TSO_MAX_DESC &&
848 skb_linearize(skb)) {
849 dev_kfree_skb(skb);
850 return NETDEV_TX_OK;
851 }
852
853 spin_lock_irqsave(&enic->wq_lock[0], flags);
854
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000855 if (vnic_wq_desc_avail(wq) <
856 skb_shinfo(skb)->nr_frags + ENIC_DESC_MAX_SPLITS) {
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700857 netif_stop_queue(netdev);
858 /* This is a hard error, log it */
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +0000859 netdev_err(netdev, "BUG! Tx ring full when queue awake!\n");
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700860 spin_unlock_irqrestore(&enic->wq_lock[0], flags);
861 return NETDEV_TX_BUSY;
862 }
863
864 enic_queue_wq_skb(enic, wq, skb);
865
Scott Feldmanea0d7d92009-09-03 17:02:03 +0000866 if (vnic_wq_desc_avail(wq) < MAX_SKB_FRAGS + ENIC_DESC_MAX_SPLITS)
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700867 netif_stop_queue(netdev);
868
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700869 spin_unlock_irqrestore(&enic->wq_lock[0], flags);
870
871 return NETDEV_TX_OK;
872}
873
874/* dev_base_lock rwlock held, nominally process context */
875static struct net_device_stats *enic_get_stats(struct net_device *netdev)
876{
877 struct enic *enic = netdev_priv(netdev);
Scott Feldman25f0a062008-09-24 11:23:32 -0700878 struct net_device_stats *net_stats = &netdev->stats;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700879 struct vnic_stats *stats;
880
Vasanthy Kolluri383ab922010-06-24 10:50:12 +0000881 enic_dev_stats_dump(enic, &stats);
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700882
Scott Feldman25f0a062008-09-24 11:23:32 -0700883 net_stats->tx_packets = stats->tx.tx_frames_ok;
884 net_stats->tx_bytes = stats->tx.tx_bytes_ok;
885 net_stats->tx_errors = stats->tx.tx_errors;
886 net_stats->tx_dropped = stats->tx.tx_drops;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700887
Scott Feldman25f0a062008-09-24 11:23:32 -0700888 net_stats->rx_packets = stats->rx.rx_frames_ok;
889 net_stats->rx_bytes = stats->rx.rx_bytes_ok;
890 net_stats->rx_errors = stats->rx.rx_errors;
891 net_stats->multicast = stats->rx.rx_multicast_frames_ok;
Scott Feldman350991e2009-09-03 17:02:19 +0000892 net_stats->rx_over_errors = enic->rq_truncated_pkts;
Scott Feldmanbd9fb1a2009-02-09 23:24:08 -0800893 net_stats->rx_crc_errors = enic->rq_bad_fcs;
Scott Feldman350991e2009-09-03 17:02:19 +0000894 net_stats->rx_dropped = stats->rx.rx_no_bufs + stats->rx.rx_drop;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700895
Scott Feldman25f0a062008-09-24 11:23:32 -0700896 return net_stats;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700897}
898
Vasanthy Kolluri99ef5632010-06-24 10:50:00 +0000899static void enic_reset_multicast_list(struct enic *enic)
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700900{
901 enic->mc_count = 0;
Vasanthy Kolluri99ef5632010-06-24 10:50:00 +0000902 enic->flags = 0;
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700903}
904
905static int enic_set_mac_addr(struct net_device *netdev, char *addr)
906{
Scott Feldmanf8bd9092010-05-17 22:50:19 -0700907 struct enic *enic = netdev_priv(netdev);
908
909 if (enic_is_dynamic(enic)) {
910 if (!is_valid_ether_addr(addr) && !is_zero_ether_addr(addr))
911 return -EADDRNOTAVAIL;
912 } else {
913 if (!is_valid_ether_addr(addr))
914 return -EADDRNOTAVAIL;
915 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -0700916
917 memcpy(netdev->dev_addr, addr, netdev->addr_len);
918
919 return 0;
920}
921
Scott Feldmanf8bd9092010-05-17 22:50:19 -0700922static int enic_dev_add_station_addr(struct enic *enic)
923{
924 int err = 0;
925
926 if (is_valid_ether_addr(enic->netdev->dev_addr)) {
927 spin_lock(&enic->devcmd_lock);
928 err = vnic_dev_add_addr(enic->vdev, enic->netdev->dev_addr);
929 spin_unlock(&enic->devcmd_lock);
930 }
931
932 return err;
933}
934
935static int enic_dev_del_station_addr(struct enic *enic)
936{
937 int err = 0;
938
939 if (is_valid_ether_addr(enic->netdev->dev_addr)) {
940 spin_lock(&enic->devcmd_lock);
941 err = vnic_dev_del_addr(enic->vdev, enic->netdev->dev_addr);
942 spin_unlock(&enic->devcmd_lock);
943 }
944
945 return err;
946}
947
948static int enic_set_mac_address_dynamic(struct net_device *netdev, void *p)
949{
950 struct enic *enic = netdev_priv(netdev);
951 struct sockaddr *saddr = p;
952 char *addr = saddr->sa_data;
953 int err;
954
955 if (netif_running(enic->netdev)) {
956 err = enic_dev_del_station_addr(enic);
957 if (err)
958 return err;
959 }
960
961 err = enic_set_mac_addr(netdev, addr);
962 if (err)
963 return err;
964
965 if (netif_running(enic->netdev)) {
966 err = enic_dev_add_station_addr(enic);
967 if (err)
968 return err;
969 }
970
971 return err;
972}
973
974static int enic_set_mac_address(struct net_device *netdev, void *p)
975{
Roopa Prabhu294dab22010-08-10 18:54:55 +0000976 struct sockaddr *saddr = p;
Vasanthy Kolluric76fd322010-10-20 10:17:04 +0000977 char *addr = saddr->sa_data;
978 struct enic *enic = netdev_priv(netdev);
979 int err;
Roopa Prabhu294dab22010-08-10 18:54:55 +0000980
Vasanthy Kolluric76fd322010-10-20 10:17:04 +0000981 err = enic_dev_del_station_addr(enic);
982 if (err)
983 return err;
984
985 err = enic_set_mac_addr(netdev, addr);
986 if (err)
987 return err;
988
989 return enic_dev_add_station_addr(enic);
Scott Feldmanf8bd9092010-05-17 22:50:19 -0700990}
991
Vasanthy Kolluri383ab922010-06-24 10:50:12 +0000992static int enic_dev_packet_filter(struct enic *enic, int directed,
993 int multicast, int broadcast, int promisc, int allmulti)
994{
995 int err;
996
997 spin_lock(&enic->devcmd_lock);
998 err = vnic_dev_packet_filter(enic->vdev, directed,
999 multicast, broadcast, promisc, allmulti);
1000 spin_unlock(&enic->devcmd_lock);
1001
1002 return err;
1003}
1004
Roopa Prabhu319d7e82010-12-08 13:19:58 +00001005static int enic_dev_add_addr(struct enic *enic, u8 *addr)
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00001006{
1007 int err;
1008
1009 spin_lock(&enic->devcmd_lock);
1010 err = vnic_dev_add_addr(enic->vdev, addr);
1011 spin_unlock(&enic->devcmd_lock);
1012
1013 return err;
1014}
1015
Roopa Prabhu319d7e82010-12-08 13:19:58 +00001016static int enic_dev_del_addr(struct enic *enic, u8 *addr)
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00001017{
1018 int err;
1019
1020 spin_lock(&enic->devcmd_lock);
1021 err = vnic_dev_del_addr(enic->vdev, addr);
1022 spin_unlock(&enic->devcmd_lock);
1023
1024 return err;
1025}
1026
Roopa Prabhu319d7e82010-12-08 13:19:58 +00001027static void enic_add_multicast_addr_list(struct enic *enic)
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001028{
Roopa Prabhu319d7e82010-12-08 13:19:58 +00001029 struct net_device *netdev = enic->netdev;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001030 struct netdev_hw_addr *ha;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001031 unsigned int mc_count = netdev_mc_count(netdev);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001032 u8 mc_addr[ENIC_MULTICAST_PERFECT_FILTERS][ETH_ALEN];
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001033 unsigned int i, j;
1034
Roopa Prabhu319d7e82010-12-08 13:19:58 +00001035 if (mc_count > ENIC_MULTICAST_PERFECT_FILTERS) {
1036 netdev_warn(netdev, "Registering only %d out of %d "
1037 "multicast addresses\n",
1038 ENIC_MULTICAST_PERFECT_FILTERS, mc_count);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001039 mc_count = ENIC_MULTICAST_PERFECT_FILTERS;
Scott Feldman9959a182009-12-23 13:27:43 +00001040 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001041
1042 /* Is there an easier way? Trying to minimize to
1043 * calls to add/del multicast addrs. We keep the
1044 * addrs from the last call in enic->mc_addr and
1045 * look for changes to add/del.
1046 */
1047
Jiri Pirko48e2f182010-02-22 09:22:26 +00001048 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001049 netdev_for_each_mc_addr(ha, netdev) {
Jiri Pirko48e2f182010-02-22 09:22:26 +00001050 if (i == mc_count)
1051 break;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001052 memcpy(mc_addr[i++], ha->addr, ETH_ALEN);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001053 }
1054
1055 for (i = 0; i < enic->mc_count; i++) {
1056 for (j = 0; j < mc_count; j++)
1057 if (compare_ether_addr(enic->mc_addr[i],
1058 mc_addr[j]) == 0)
1059 break;
1060 if (j == mc_count)
Roopa Prabhu319d7e82010-12-08 13:19:58 +00001061 enic_dev_del_addr(enic, enic->mc_addr[i]);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001062 }
1063
1064 for (i = 0; i < mc_count; i++) {
1065 for (j = 0; j < enic->mc_count; j++)
1066 if (compare_ether_addr(mc_addr[i],
1067 enic->mc_addr[j]) == 0)
1068 break;
1069 if (j == enic->mc_count)
Roopa Prabhu319d7e82010-12-08 13:19:58 +00001070 enic_dev_add_addr(enic, mc_addr[i]);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001071 }
1072
1073 /* Save the list to compare against next time
1074 */
1075
1076 for (i = 0; i < mc_count; i++)
1077 memcpy(enic->mc_addr[i], mc_addr[i], ETH_ALEN);
1078
1079 enic->mc_count = mc_count;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001080}
1081
Roopa Prabhu319d7e82010-12-08 13:19:58 +00001082static void enic_add_unicast_addr_list(struct enic *enic)
1083{
1084 struct net_device *netdev = enic->netdev;
1085 struct netdev_hw_addr *ha;
1086 unsigned int uc_count = netdev_uc_count(netdev);
1087 u8 uc_addr[ENIC_UNICAST_PERFECT_FILTERS][ETH_ALEN];
1088 unsigned int i, j;
1089
1090 if (uc_count > ENIC_UNICAST_PERFECT_FILTERS) {
1091 netdev_warn(netdev, "Registering only %d out of %d "
1092 "unicast addresses\n",
1093 ENIC_UNICAST_PERFECT_FILTERS, uc_count);
1094 uc_count = ENIC_UNICAST_PERFECT_FILTERS;
1095 }
1096
1097 /* Is there an easier way? Trying to minimize to
1098 * calls to add/del unicast addrs. We keep the
1099 * addrs from the last call in enic->uc_addr and
1100 * look for changes to add/del.
1101 */
1102
1103 i = 0;
1104 netdev_for_each_uc_addr(ha, netdev) {
1105 if (i == uc_count)
1106 break;
1107 memcpy(uc_addr[i++], ha->addr, ETH_ALEN);
1108 }
1109
1110 for (i = 0; i < enic->uc_count; i++) {
1111 for (j = 0; j < uc_count; j++)
1112 if (compare_ether_addr(enic->uc_addr[i],
1113 uc_addr[j]) == 0)
1114 break;
1115 if (j == uc_count)
1116 enic_dev_del_addr(enic, enic->uc_addr[i]);
1117 }
1118
1119 for (i = 0; i < uc_count; i++) {
1120 for (j = 0; j < enic->uc_count; j++)
1121 if (compare_ether_addr(uc_addr[i],
1122 enic->uc_addr[j]) == 0)
1123 break;
1124 if (j == enic->uc_count)
1125 enic_dev_add_addr(enic, uc_addr[i]);
1126 }
1127
1128 /* Save the list to compare against next time
1129 */
1130
1131 for (i = 0; i < uc_count; i++)
1132 memcpy(enic->uc_addr[i], uc_addr[i], ETH_ALEN);
1133
1134 enic->uc_count = uc_count;
1135}
1136
1137/* netif_tx_lock held, BHs disabled */
1138static void enic_set_rx_mode(struct net_device *netdev)
1139{
1140 struct enic *enic = netdev_priv(netdev);
1141 int directed = 1;
1142 int multicast = (netdev->flags & IFF_MULTICAST) ? 1 : 0;
1143 int broadcast = (netdev->flags & IFF_BROADCAST) ? 1 : 0;
1144 int promisc = (netdev->flags & IFF_PROMISC) ||
1145 netdev_uc_count(netdev) > ENIC_UNICAST_PERFECT_FILTERS;
1146 int allmulti = (netdev->flags & IFF_ALLMULTI) ||
1147 netdev_mc_count(netdev) > ENIC_MULTICAST_PERFECT_FILTERS;
1148 unsigned int flags = netdev->flags |
1149 (allmulti ? IFF_ALLMULTI : 0) |
1150 (promisc ? IFF_PROMISC : 0);
1151
1152 if (enic->flags != flags) {
1153 enic->flags = flags;
1154 enic_dev_packet_filter(enic, directed,
1155 multicast, broadcast, promisc, allmulti);
1156 }
1157
1158 if (!promisc) {
1159 enic_add_unicast_addr_list(enic);
1160 if (!allmulti)
1161 enic_add_multicast_addr_list(enic);
1162 }
1163}
1164
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001165/* rtnl lock is held */
1166static void enic_vlan_rx_register(struct net_device *netdev,
1167 struct vlan_group *vlan_group)
1168{
1169 struct enic *enic = netdev_priv(netdev);
1170 enic->vlan_group = vlan_group;
1171}
1172
1173/* rtnl lock is held */
1174static void enic_vlan_rx_add_vid(struct net_device *netdev, u16 vid)
1175{
1176 struct enic *enic = netdev_priv(netdev);
1177
1178 spin_lock(&enic->devcmd_lock);
1179 enic_add_vlan(enic, vid);
1180 spin_unlock(&enic->devcmd_lock);
1181}
1182
1183/* rtnl lock is held */
1184static void enic_vlan_rx_kill_vid(struct net_device *netdev, u16 vid)
1185{
1186 struct enic *enic = netdev_priv(netdev);
1187
1188 spin_lock(&enic->devcmd_lock);
1189 enic_del_vlan(enic, vid);
1190 spin_unlock(&enic->devcmd_lock);
1191}
1192
1193/* netif_tx_lock held, BHs disabled */
1194static void enic_tx_timeout(struct net_device *netdev)
1195{
1196 struct enic *enic = netdev_priv(netdev);
1197 schedule_work(&enic->reset);
1198}
1199
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001200static int enic_vnic_dev_deinit(struct enic *enic)
1201{
1202 int err;
1203
1204 spin_lock(&enic->devcmd_lock);
1205 err = vnic_dev_deinit(enic->vdev);
1206 spin_unlock(&enic->devcmd_lock);
1207
1208 return err;
1209}
1210
1211static int enic_dev_init_prov(struct enic *enic, struct vic_provinfo *vp)
1212{
1213 int err;
1214
1215 spin_lock(&enic->devcmd_lock);
1216 err = vnic_dev_init_prov(enic->vdev,
1217 (u8 *)vp, vic_provinfo_size(vp));
1218 spin_unlock(&enic->devcmd_lock);
1219
1220 return err;
1221}
1222
1223static int enic_dev_init_done(struct enic *enic, int *done, int *error)
1224{
1225 int err;
1226
1227 spin_lock(&enic->devcmd_lock);
1228 err = vnic_dev_init_done(enic->vdev, done, error);
1229 spin_unlock(&enic->devcmd_lock);
1230
1231 return err;
1232}
1233
Roopa Prabhu0b1c00f2010-12-08 13:53:58 +00001234static int enic_set_vf_mac(struct net_device *netdev, int vf, u8 *mac)
1235{
1236 struct enic *enic = netdev_priv(netdev);
1237
1238 if (vf != PORT_SELF_VF)
1239 return -EOPNOTSUPP;
1240
1241 /* Ignore the vf argument for now. We can assume the request
1242 * is coming on a vf.
1243 */
1244 if (is_valid_ether_addr(mac)) {
1245 memcpy(enic->pp.vf_mac, mac, ETH_ALEN);
1246 return 0;
1247 } else
1248 return -EINVAL;
1249}
1250
Scott Feldman08f382e2010-06-01 08:59:33 +00001251static int enic_set_port_profile(struct enic *enic, u8 *mac)
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001252{
1253 struct vic_provinfo *vp;
1254 u8 oui[3] = VIC_PROVINFO_CISCO_OUI;
Roopa Prabhu6c2c9d92010-12-10 12:02:33 +00001255 u16 os_type = VIC_GENERIC_PROV_OS_TYPE_LINUX;
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001256 char uuid_str[38];
Roopa Prabhu6c2c9d92010-12-10 12:02:33 +00001257 char client_mac_str[18];
1258 u8 *client_mac;
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001259 int err;
1260
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001261 err = enic_vnic_dev_deinit(enic);
1262 if (err)
Scott Feldman08f382e2010-06-01 08:59:33 +00001263 return err;
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001264
Scott Feldman08f382e2010-06-01 08:59:33 +00001265 switch (enic->pp.request) {
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001266
Scott Feldman08f382e2010-06-01 08:59:33 +00001267 case PORT_REQUEST_ASSOCIATE:
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001268
Scott Feldman08f382e2010-06-01 08:59:33 +00001269 if (!(enic->pp.set & ENIC_SET_NAME) || !strlen(enic->pp.name))
1270 return -EINVAL;
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001271
Scott Feldman08f382e2010-06-01 08:59:33 +00001272 if (!is_valid_ether_addr(mac))
1273 return -EADDRNOTAVAIL;
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001274
Scott Feldman08f382e2010-06-01 08:59:33 +00001275 vp = vic_provinfo_alloc(GFP_KERNEL, oui,
Roopa Prabhu6c2c9d92010-12-10 12:02:33 +00001276 VIC_PROVINFO_GENERIC_TYPE);
Scott Feldman08f382e2010-06-01 08:59:33 +00001277 if (!vp)
1278 return -ENOMEM;
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001279
Scott Feldman08f382e2010-06-01 08:59:33 +00001280 vic_provinfo_add_tlv(vp,
Roopa Prabhu6c2c9d92010-12-10 12:02:33 +00001281 VIC_GENERIC_PROV_TLV_PORT_PROFILE_NAME_STR,
Scott Feldman08f382e2010-06-01 08:59:33 +00001282 strlen(enic->pp.name) + 1, enic->pp.name);
1283
Roopa Prabhu296390592010-12-08 13:54:03 +00001284 if (!is_zero_ether_addr(enic->pp.mac_addr))
Roopa Prabhu6c2c9d92010-12-10 12:02:33 +00001285 client_mac = enic->pp.mac_addr;
Roopa Prabhu296390592010-12-08 13:54:03 +00001286 else
Roopa Prabhu6c2c9d92010-12-10 12:02:33 +00001287 client_mac = mac;
1288
1289 vic_provinfo_add_tlv(vp,
1290 VIC_GENERIC_PROV_TLV_CLIENT_MAC_ADDR,
1291 ETH_ALEN, client_mac);
1292
1293 sprintf(client_mac_str, "%pM", client_mac);
1294 vic_provinfo_add_tlv(vp,
1295 VIC_GENERIC_PROV_TLV_CLUSTER_PORT_UUID_STR,
1296 sizeof(client_mac_str), client_mac_str);
Scott Feldman08f382e2010-06-01 08:59:33 +00001297
1298 if (enic->pp.set & ENIC_SET_INSTANCE) {
Joe Perchesc33788b2010-08-03 09:32:24 +00001299 sprintf(uuid_str, "%pUB", enic->pp.instance_uuid);
Scott Feldman08f382e2010-06-01 08:59:33 +00001300 vic_provinfo_add_tlv(vp,
Roopa Prabhu6c2c9d92010-12-10 12:02:33 +00001301 VIC_GENERIC_PROV_TLV_CLIENT_UUID_STR,
Scott Feldman08f382e2010-06-01 08:59:33 +00001302 sizeof(uuid_str), uuid_str);
1303 }
1304
1305 if (enic->pp.set & ENIC_SET_HOST) {
Joe Perchesc33788b2010-08-03 09:32:24 +00001306 sprintf(uuid_str, "%pUB", enic->pp.host_uuid);
Scott Feldman08f382e2010-06-01 08:59:33 +00001307 vic_provinfo_add_tlv(vp,
Roopa Prabhu6c2c9d92010-12-10 12:02:33 +00001308 VIC_GENERIC_PROV_TLV_HOST_UUID_STR,
Scott Feldman08f382e2010-06-01 08:59:33 +00001309 sizeof(uuid_str), uuid_str);
1310 }
1311
Roopa Prabhu6c2c9d92010-12-10 12:02:33 +00001312 os_type = htons(os_type);
1313 vic_provinfo_add_tlv(vp,
1314 VIC_GENERIC_PROV_TLV_OS_TYPE,
1315 sizeof(os_type), &os_type);
1316
Scott Feldman08f382e2010-06-01 08:59:33 +00001317 err = enic_dev_init_prov(enic, vp);
1318 vic_provinfo_free(vp);
1319 if (err)
1320 return err;
1321 break;
1322
1323 case PORT_REQUEST_DISASSOCIATE:
1324 break;
1325
1326 default:
1327 return -EINVAL;
1328 }
1329
Roopa Prabhu4dce2392011-01-20 14:35:54 +00001330 /* Set flag to indicate that the port assoc/disassoc
1331 * request has been sent out to fw
1332 */
1333 enic->pp.set |= ENIC_PORT_REQUEST_APPLIED;
1334
Scott Feldman08f382e2010-06-01 08:59:33 +00001335 return 0;
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001336}
1337
1338static int enic_set_vf_port(struct net_device *netdev, int vf,
1339 struct nlattr *port[])
1340{
1341 struct enic *enic = netdev_priv(netdev);
Roopa Prabhu296390592010-12-08 13:54:03 +00001342 struct enic_port_profile new_pp;
1343 int err = 0;
Scott Feldman08f382e2010-06-01 08:59:33 +00001344
Roopa Prabhu296390592010-12-08 13:54:03 +00001345 memset(&new_pp, 0, sizeof(new_pp));
Scott Feldman08f382e2010-06-01 08:59:33 +00001346
1347 if (port[IFLA_PORT_REQUEST]) {
Roopa Prabhu296390592010-12-08 13:54:03 +00001348 new_pp.set |= ENIC_SET_REQUEST;
1349 new_pp.request = nla_get_u8(port[IFLA_PORT_REQUEST]);
Scott Feldman08f382e2010-06-01 08:59:33 +00001350 }
1351
1352 if (port[IFLA_PORT_PROFILE]) {
Roopa Prabhu296390592010-12-08 13:54:03 +00001353 new_pp.set |= ENIC_SET_NAME;
1354 memcpy(new_pp.name, nla_data(port[IFLA_PORT_PROFILE]),
Scott Feldman08f382e2010-06-01 08:59:33 +00001355 PORT_PROFILE_MAX);
1356 }
1357
1358 if (port[IFLA_PORT_INSTANCE_UUID]) {
Roopa Prabhu296390592010-12-08 13:54:03 +00001359 new_pp.set |= ENIC_SET_INSTANCE;
1360 memcpy(new_pp.instance_uuid,
Scott Feldman08f382e2010-06-01 08:59:33 +00001361 nla_data(port[IFLA_PORT_INSTANCE_UUID]), PORT_UUID_MAX);
1362 }
1363
1364 if (port[IFLA_PORT_HOST_UUID]) {
Roopa Prabhu296390592010-12-08 13:54:03 +00001365 new_pp.set |= ENIC_SET_HOST;
1366 memcpy(new_pp.host_uuid,
Scott Feldman08f382e2010-06-01 08:59:33 +00001367 nla_data(port[IFLA_PORT_HOST_UUID]), PORT_UUID_MAX);
1368 }
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001369
1370 /* don't support VFs, yet */
1371 if (vf != PORT_SELF_VF)
1372 return -EOPNOTSUPP;
1373
Roopa Prabhu296390592010-12-08 13:54:03 +00001374 if (!(new_pp.set & ENIC_SET_REQUEST))
Scott Feldman08f382e2010-06-01 08:59:33 +00001375 return -EOPNOTSUPP;
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001376
Roopa Prabhu296390592010-12-08 13:54:03 +00001377 if (new_pp.request == PORT_REQUEST_ASSOCIATE) {
1378 /* Special case handling */
1379 if (!is_zero_ether_addr(enic->pp.vf_mac))
1380 memcpy(new_pp.mac_addr, enic->pp.vf_mac, ETH_ALEN);
Scott Feldman418c4372010-05-22 17:29:58 +00001381
1382 if (is_zero_ether_addr(netdev->dev_addr))
1383 random_ether_addr(netdev->dev_addr);
Roopa Prabhu296390592010-12-08 13:54:03 +00001384 } else if (new_pp.request == PORT_REQUEST_DISASSOCIATE) {
1385 if (!is_zero_ether_addr(enic->pp.mac_addr))
1386 enic_dev_del_addr(enic, enic->pp.mac_addr);
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001387 }
1388
Roopa Prabhu296390592010-12-08 13:54:03 +00001389 memcpy(&enic->pp, &new_pp, sizeof(struct enic_port_profile));
1390
1391 err = enic_set_port_profile(enic, netdev->dev_addr);
1392 if (err)
1393 goto set_port_profile_cleanup;
1394
1395 if (!is_zero_ether_addr(enic->pp.mac_addr))
1396 enic_dev_add_addr(enic, enic->pp.mac_addr);
1397
1398set_port_profile_cleanup:
1399 memset(enic->pp.vf_mac, 0, ETH_ALEN);
1400
1401 if (err || enic->pp.request == PORT_REQUEST_DISASSOCIATE) {
1402 memset(netdev->dev_addr, 0, ETH_ALEN);
1403 memset(enic->pp.mac_addr, 0, ETH_ALEN);
1404 }
1405
1406 return err;
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001407}
1408
1409static int enic_get_vf_port(struct net_device *netdev, int vf,
1410 struct sk_buff *skb)
1411{
1412 struct enic *enic = netdev_priv(netdev);
1413 int err, error, done;
1414 u16 response = PORT_PROFILE_RESPONSE_SUCCESS;
1415
Roopa Prabhu4dce2392011-01-20 14:35:54 +00001416 if (!(enic->pp.set & ENIC_PORT_REQUEST_APPLIED))
Scott Feldman08f382e2010-06-01 08:59:33 +00001417 return -ENODATA;
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001418
1419 err = enic_dev_init_done(enic, &done, &error);
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001420 if (err)
Scott Feldman08f382e2010-06-01 08:59:33 +00001421 error = err;
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001422
1423 switch (error) {
1424 case ERR_SUCCESS:
1425 if (!done)
1426 response = PORT_PROFILE_RESPONSE_INPROGRESS;
1427 break;
1428 case ERR_EINVAL:
1429 response = PORT_PROFILE_RESPONSE_INVALID;
1430 break;
1431 case ERR_EBADSTATE:
1432 response = PORT_PROFILE_RESPONSE_BADSTATE;
1433 break;
1434 case ERR_ENOMEM:
1435 response = PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES;
1436 break;
1437 default:
1438 response = PORT_PROFILE_RESPONSE_ERROR;
1439 break;
1440 }
1441
1442 NLA_PUT_U16(skb, IFLA_PORT_REQUEST, enic->pp.request);
1443 NLA_PUT_U16(skb, IFLA_PORT_RESPONSE, response);
Scott Feldman08f382e2010-06-01 08:59:33 +00001444 if (enic->pp.set & ENIC_SET_NAME)
1445 NLA_PUT(skb, IFLA_PORT_PROFILE, PORT_PROFILE_MAX,
1446 enic->pp.name);
1447 if (enic->pp.set & ENIC_SET_INSTANCE)
1448 NLA_PUT(skb, IFLA_PORT_INSTANCE_UUID, PORT_UUID_MAX,
1449 enic->pp.instance_uuid);
1450 if (enic->pp.set & ENIC_SET_HOST)
1451 NLA_PUT(skb, IFLA_PORT_HOST_UUID, PORT_UUID_MAX,
1452 enic->pp.host_uuid);
Scott Feldmanf8bd9092010-05-17 22:50:19 -07001453
1454 return 0;
1455
1456nla_put_failure:
1457 return -EMSGSIZE;
1458}
1459
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001460static void enic_free_rq_buf(struct vnic_rq *rq, struct vnic_rq_buf *buf)
1461{
1462 struct enic *enic = vnic_dev_priv(rq->vdev);
1463
1464 if (!buf->os_buf)
1465 return;
1466
1467 pci_unmap_single(enic->pdev, buf->dma_addr,
1468 buf->len, PCI_DMA_FROMDEVICE);
1469 dev_kfree_skb_any(buf->os_buf);
1470}
1471
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001472static int enic_rq_alloc_buf(struct vnic_rq *rq)
1473{
1474 struct enic *enic = vnic_dev_priv(rq->vdev);
Scott Feldmand19e22d2009-09-03 17:02:08 +00001475 struct net_device *netdev = enic->netdev;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001476 struct sk_buff *skb;
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +00001477 unsigned int len = netdev->mtu + VLAN_ETH_HLEN;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001478 unsigned int os_buf_index = 0;
1479 dma_addr_t dma_addr;
1480
Eric Dumazet89d71a62009-10-13 05:34:20 +00001481 skb = netdev_alloc_skb_ip_align(netdev, len);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001482 if (!skb)
1483 return -ENOMEM;
1484
1485 dma_addr = pci_map_single(enic->pdev, skb->data,
1486 len, PCI_DMA_FROMDEVICE);
1487
1488 enic_queue_rq_desc(rq, skb, os_buf_index,
1489 dma_addr, len);
1490
1491 return 0;
1492}
1493
Scott Feldman4badc382009-09-03 17:01:58 +00001494static int enic_rq_alloc_buf_a1(struct vnic_rq *rq)
1495{
1496 struct rq_enet_desc *desc = vnic_rq_next_desc(rq);
1497
1498 if (vnic_rq_posting_soon(rq)) {
1499
1500 /* SW workaround for A0 HW erratum: if we're just about
1501 * to write posted_index, insert a dummy desc
1502 * of type resvd
1503 */
1504
1505 rq_enet_desc_enc(desc, 0, RQ_ENET_TYPE_RESV2, 0);
1506 vnic_rq_post(rq, 0, 0, 0, 0);
1507 } else {
1508 return enic_rq_alloc_buf(rq);
1509 }
1510
1511 return 0;
1512}
1513
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00001514static int enic_dev_hw_version(struct enic *enic,
1515 enum vnic_dev_hw_version *hw_ver)
1516{
1517 int err;
1518
1519 spin_lock(&enic->devcmd_lock);
1520 err = vnic_dev_hw_version(enic->vdev, hw_ver);
1521 spin_unlock(&enic->devcmd_lock);
1522
1523 return err;
1524}
1525
Scott Feldman4badc382009-09-03 17:01:58 +00001526static int enic_set_rq_alloc_buf(struct enic *enic)
1527{
1528 enum vnic_dev_hw_version hw_ver;
1529 int err;
1530
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00001531 err = enic_dev_hw_version(enic, &hw_ver);
Scott Feldman4badc382009-09-03 17:01:58 +00001532 if (err)
1533 return err;
1534
1535 switch (hw_ver) {
1536 case VNIC_DEV_HW_VER_A1:
1537 enic->rq_alloc_buf = enic_rq_alloc_buf_a1;
1538 break;
1539 case VNIC_DEV_HW_VER_A2:
1540 case VNIC_DEV_HW_VER_UNKNOWN:
1541 enic->rq_alloc_buf = enic_rq_alloc_buf;
1542 break;
1543 default:
1544 return -ENODEV;
1545 }
1546
1547 return 0;
1548}
1549
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001550static void enic_rq_indicate_buf(struct vnic_rq *rq,
1551 struct cq_desc *cq_desc, struct vnic_rq_buf *buf,
1552 int skipped, void *opaque)
1553{
1554 struct enic *enic = vnic_dev_priv(rq->vdev);
Scott Feldman86ca9db2008-11-21 21:26:55 -08001555 struct net_device *netdev = enic->netdev;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001556 struct sk_buff *skb;
1557
1558 u8 type, color, eop, sop, ingress_port, vlan_stripped;
1559 u8 fcoe, fcoe_sof, fcoe_fc_crc_ok, fcoe_enc_error, fcoe_eof;
1560 u8 tcp_udp_csum_ok, udp, tcp, ipv4_csum_ok;
1561 u8 ipv6, ipv4, ipv4_fragment, fcs_ok, rss_type, csum_not_calc;
1562 u8 packet_error;
Vasanthy Kollurif8cac142010-06-24 10:49:51 +00001563 u16 q_number, completed_index, bytes_written, vlan_tci, checksum;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001564 u32 rss_hash;
1565
1566 if (skipped)
1567 return;
1568
1569 skb = buf->os_buf;
1570 prefetch(skb->data - NET_IP_ALIGN);
1571 pci_unmap_single(enic->pdev, buf->dma_addr,
1572 buf->len, PCI_DMA_FROMDEVICE);
1573
1574 cq_enet_rq_desc_dec((struct cq_enet_rq_desc *)cq_desc,
1575 &type, &color, &q_number, &completed_index,
1576 &ingress_port, &fcoe, &eop, &sop, &rss_type,
1577 &csum_not_calc, &rss_hash, &bytes_written,
Vasanthy Kollurif8cac142010-06-24 10:49:51 +00001578 &packet_error, &vlan_stripped, &vlan_tci, &checksum,
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001579 &fcoe_sof, &fcoe_fc_crc_ok, &fcoe_enc_error,
1580 &fcoe_eof, &tcp_udp_csum_ok, &udp, &tcp,
1581 &ipv4_csum_ok, &ipv6, &ipv4, &ipv4_fragment,
1582 &fcs_ok);
1583
1584 if (packet_error) {
1585
Scott Feldman350991e2009-09-03 17:02:19 +00001586 if (!fcs_ok) {
1587 if (bytes_written > 0)
1588 enic->rq_bad_fcs++;
1589 else if (bytes_written == 0)
1590 enic->rq_truncated_pkts++;
1591 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001592
1593 dev_kfree_skb_any(skb);
1594
1595 return;
1596 }
1597
1598 if (eop && bytes_written > 0) {
1599
1600 /* Good receive
1601 */
1602
1603 skb_put(skb, bytes_written);
Scott Feldman86ca9db2008-11-21 21:26:55 -08001604 skb->protocol = eth_type_trans(skb, netdev);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001605
1606 if (enic->csum_rx_enabled && !csum_not_calc) {
1607 skb->csum = htons(checksum);
1608 skb->ip_summed = CHECKSUM_COMPLETE;
1609 }
1610
Scott Feldman86ca9db2008-11-21 21:26:55 -08001611 skb->dev = netdev;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001612
Vasanthy Kollurif8cac142010-06-24 10:49:51 +00001613 if (enic->vlan_group && vlan_stripped &&
1614 (vlan_tci & CQ_ENET_RQ_DESC_VLAN_TCI_VLAN_MASK)) {
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001615
Vasanthy Kolluri88132f52010-06-24 10:49:25 +00001616 if (netdev->features & NETIF_F_GRO)
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001617 vlan_gro_receive(&enic->napi[q_number],
1618 enic->vlan_group, vlan_tci, skb);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001619 else
1620 vlan_hwaccel_receive_skb(skb,
Vasanthy Kollurif8cac142010-06-24 10:49:51 +00001621 enic->vlan_group, vlan_tci);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001622
1623 } else {
1624
Vasanthy Kolluri88132f52010-06-24 10:49:25 +00001625 if (netdev->features & NETIF_F_GRO)
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001626 napi_gro_receive(&enic->napi[q_number], skb);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001627 else
1628 netif_receive_skb(skb);
1629
1630 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001631 } else {
1632
1633 /* Buffer overflow
1634 */
1635
1636 dev_kfree_skb_any(skb);
1637 }
1638}
1639
1640static int enic_rq_service(struct vnic_dev *vdev, struct cq_desc *cq_desc,
1641 u8 type, u16 q_number, u16 completed_index, void *opaque)
1642{
1643 struct enic *enic = vnic_dev_priv(vdev);
1644
1645 vnic_rq_service(&enic->rq[q_number], cq_desc,
1646 completed_index, VNIC_RQ_RETURN_DESC,
1647 enic_rq_indicate_buf, opaque);
1648
1649 return 0;
1650}
1651
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001652static int enic_poll(struct napi_struct *napi, int budget)
1653{
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001654 struct net_device *netdev = napi->dev;
1655 struct enic *enic = netdev_priv(netdev);
1656 unsigned int cq_rq = enic_cq_rq(enic, 0);
1657 unsigned int cq_wq = enic_cq_wq(enic, 0);
1658 unsigned int intr = enic_legacy_io_intr();
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001659 unsigned int rq_work_to_do = budget;
1660 unsigned int wq_work_to_do = -1; /* no limit */
1661 unsigned int work_done, rq_work_done, wq_work_done;
Scott Feldman2d6ddce2009-12-23 13:27:38 +00001662 int err;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001663
1664 /* Service RQ (first) and WQ
1665 */
1666
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001667 rq_work_done = vnic_cq_service(&enic->cq[cq_rq],
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001668 rq_work_to_do, enic_rq_service, NULL);
1669
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001670 wq_work_done = vnic_cq_service(&enic->cq[cq_wq],
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001671 wq_work_to_do, enic_wq_service, NULL);
1672
1673 /* Accumulate intr event credits for this polling
1674 * cycle. An intr event is the completion of a
1675 * a WQ or RQ packet.
1676 */
1677
1678 work_done = rq_work_done + wq_work_done;
1679
1680 if (work_done > 0)
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001681 vnic_intr_return_credits(&enic->intr[intr],
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001682 work_done,
1683 0 /* don't unmask intr */,
1684 0 /* don't reset intr timer */);
1685
Scott Feldman2d6ddce2009-12-23 13:27:38 +00001686 err = vnic_rq_fill(&enic->rq[0], enic->rq_alloc_buf);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001687
Scott Feldman2d6ddce2009-12-23 13:27:38 +00001688 /* Buffer allocation failed. Stay in polling
1689 * mode so we can try to fill the ring again.
1690 */
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001691
Scott Feldman2d6ddce2009-12-23 13:27:38 +00001692 if (err)
1693 rq_work_done = rq_work_to_do;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001694
Scott Feldman2d6ddce2009-12-23 13:27:38 +00001695 if (rq_work_done < rq_work_to_do) {
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001696
Scott Feldman2d6ddce2009-12-23 13:27:38 +00001697 /* Some work done, but not enough to stay in polling,
Vasanthy Kolluri88132f52010-06-24 10:49:25 +00001698 * exit polling
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001699 */
1700
Ben Hutchings288379f2009-01-19 16:43:59 -08001701 napi_complete(napi);
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001702 vnic_intr_unmask(&enic->intr[intr]);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001703 }
1704
1705 return rq_work_done;
1706}
1707
1708static int enic_poll_msix(struct napi_struct *napi, int budget)
1709{
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001710 struct net_device *netdev = napi->dev;
1711 struct enic *enic = netdev_priv(netdev);
1712 unsigned int rq = (napi - &enic->napi[0]);
1713 unsigned int cq = enic_cq_rq(enic, rq);
1714 unsigned int intr = enic_msix_rq_intr(enic, rq);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001715 unsigned int work_to_do = budget;
1716 unsigned int work_done;
Scott Feldman2d6ddce2009-12-23 13:27:38 +00001717 int err;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001718
1719 /* Service RQ
1720 */
1721
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001722 work_done = vnic_cq_service(&enic->cq[cq],
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001723 work_to_do, enic_rq_service, NULL);
1724
Scott Feldman2d6ddce2009-12-23 13:27:38 +00001725 /* Return intr event credits for this polling
1726 * cycle. An intr event is the completion of a
1727 * RQ packet.
1728 */
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001729
Scott Feldman2d6ddce2009-12-23 13:27:38 +00001730 if (work_done > 0)
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001731 vnic_intr_return_credits(&enic->intr[intr],
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001732 work_done,
1733 0 /* don't unmask intr */,
1734 0 /* don't reset intr timer */);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001735
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001736 err = vnic_rq_fill(&enic->rq[rq], enic->rq_alloc_buf);
Scott Feldman2d6ddce2009-12-23 13:27:38 +00001737
1738 /* Buffer allocation failed. Stay in polling mode
1739 * so we can try to fill the ring again.
1740 */
1741
1742 if (err)
1743 work_done = work_to_do;
1744
1745 if (work_done < work_to_do) {
1746
1747 /* Some work done, but not enough to stay in polling,
Vasanthy Kolluri88132f52010-06-24 10:49:25 +00001748 * exit polling
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001749 */
1750
Ben Hutchings288379f2009-01-19 16:43:59 -08001751 napi_complete(napi);
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001752 vnic_intr_unmask(&enic->intr[intr]);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001753 }
1754
1755 return work_done;
1756}
1757
1758static void enic_notify_timer(unsigned long data)
1759{
1760 struct enic *enic = (struct enic *)data;
1761
1762 enic_notify_check(enic);
1763
Scott Feldman25f0a062008-09-24 11:23:32 -07001764 mod_timer(&enic->notify_timer,
1765 round_jiffies(jiffies + ENIC_NOTIFY_TIMER_PERIOD));
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001766}
1767
1768static void enic_free_intr(struct enic *enic)
1769{
1770 struct net_device *netdev = enic->netdev;
1771 unsigned int i;
1772
1773 switch (vnic_dev_get_intr_mode(enic->vdev)) {
1774 case VNIC_DEV_INTR_MODE_INTX:
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001775 free_irq(enic->pdev->irq, netdev);
1776 break;
Scott Feldman8f4d2482008-09-24 11:23:42 -07001777 case VNIC_DEV_INTR_MODE_MSI:
1778 free_irq(enic->pdev->irq, enic);
1779 break;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001780 case VNIC_DEV_INTR_MODE_MSIX:
1781 for (i = 0; i < ARRAY_SIZE(enic->msix); i++)
1782 if (enic->msix[i].requested)
1783 free_irq(enic->msix_entry[i].vector,
1784 enic->msix[i].devid);
1785 break;
1786 default:
1787 break;
1788 }
1789}
1790
1791static int enic_request_intr(struct enic *enic)
1792{
1793 struct net_device *netdev = enic->netdev;
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001794 unsigned int i, intr;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001795 int err = 0;
1796
1797 switch (vnic_dev_get_intr_mode(enic->vdev)) {
1798
1799 case VNIC_DEV_INTR_MODE_INTX:
1800
1801 err = request_irq(enic->pdev->irq, enic_isr_legacy,
1802 IRQF_SHARED, netdev->name, netdev);
1803 break;
1804
1805 case VNIC_DEV_INTR_MODE_MSI:
1806
1807 err = request_irq(enic->pdev->irq, enic_isr_msi,
1808 0, netdev->name, enic);
1809 break;
1810
1811 case VNIC_DEV_INTR_MODE_MSIX:
1812
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001813 for (i = 0; i < enic->rq_count; i++) {
1814 intr = enic_msix_rq_intr(enic, i);
1815 sprintf(enic->msix[intr].devname,
1816 "%.11s-rx-%d", netdev->name, i);
1817 enic->msix[intr].isr = enic_isr_msix_rq;
1818 enic->msix[intr].devid = &enic->napi[i];
1819 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001820
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001821 for (i = 0; i < enic->wq_count; i++) {
1822 intr = enic_msix_wq_intr(enic, i);
1823 sprintf(enic->msix[intr].devname,
1824 "%.11s-tx-%d", netdev->name, i);
1825 enic->msix[intr].isr = enic_isr_msix_wq;
1826 enic->msix[intr].devid = enic;
1827 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001828
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001829 intr = enic_msix_err_intr(enic);
1830 sprintf(enic->msix[intr].devname,
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001831 "%.11s-err", netdev->name);
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001832 enic->msix[intr].isr = enic_isr_msix_err;
1833 enic->msix[intr].devid = enic;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001834
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001835 intr = enic_msix_notify_intr(enic);
1836 sprintf(enic->msix[intr].devname,
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001837 "%.11s-notify", netdev->name);
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001838 enic->msix[intr].isr = enic_isr_msix_notify;
1839 enic->msix[intr].devid = enic;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001840
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001841 for (i = 0; i < ARRAY_SIZE(enic->msix); i++)
1842 enic->msix[i].requested = 0;
1843
1844 for (i = 0; i < enic->intr_count; i++) {
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001845 err = request_irq(enic->msix_entry[i].vector,
1846 enic->msix[i].isr, 0,
1847 enic->msix[i].devname,
1848 enic->msix[i].devid);
1849 if (err) {
1850 enic_free_intr(enic);
1851 break;
1852 }
1853 enic->msix[i].requested = 1;
1854 }
1855
1856 break;
1857
1858 default:
1859 break;
1860 }
1861
1862 return err;
1863}
1864
Scott Feldmanb3d18d12009-12-23 13:27:30 +00001865static void enic_synchronize_irqs(struct enic *enic)
1866{
1867 unsigned int i;
1868
1869 switch (vnic_dev_get_intr_mode(enic->vdev)) {
1870 case VNIC_DEV_INTR_MODE_INTX:
1871 case VNIC_DEV_INTR_MODE_MSI:
1872 synchronize_irq(enic->pdev->irq);
1873 break;
1874 case VNIC_DEV_INTR_MODE_MSIX:
1875 for (i = 0; i < enic->intr_count; i++)
1876 synchronize_irq(enic->msix_entry[i].vector);
1877 break;
1878 default:
1879 break;
1880 }
1881}
1882
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00001883static int enic_dev_notify_set(struct enic *enic)
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001884{
1885 int err;
1886
Scott Feldman56ac88b2009-09-03 17:02:14 +00001887 spin_lock(&enic->devcmd_lock);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001888 switch (vnic_dev_get_intr_mode(enic->vdev)) {
1889 case VNIC_DEV_INTR_MODE_INTX:
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001890 err = vnic_dev_notify_set(enic->vdev,
1891 enic_legacy_notify_intr());
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001892 break;
1893 case VNIC_DEV_INTR_MODE_MSIX:
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001894 err = vnic_dev_notify_set(enic->vdev,
1895 enic_msix_notify_intr(enic));
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001896 break;
1897 default:
1898 err = vnic_dev_notify_set(enic->vdev, -1 /* no intr */);
1899 break;
1900 }
Scott Feldman56ac88b2009-09-03 17:02:14 +00001901 spin_unlock(&enic->devcmd_lock);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001902
1903 return err;
1904}
1905
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00001906static int enic_dev_notify_unset(struct enic *enic)
1907{
1908 int err;
1909
1910 spin_lock(&enic->devcmd_lock);
1911 err = vnic_dev_notify_unset(enic->vdev);
1912 spin_unlock(&enic->devcmd_lock);
1913
1914 return err;
1915}
1916
1917static int enic_dev_enable(struct enic *enic)
1918{
1919 int err;
1920
1921 spin_lock(&enic->devcmd_lock);
Vasanthy Kolluri2db77e02010-10-20 10:17:09 +00001922 err = vnic_dev_enable_wait(enic->vdev);
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00001923 spin_unlock(&enic->devcmd_lock);
1924
1925 return err;
1926}
1927
1928static int enic_dev_disable(struct enic *enic)
1929{
1930 int err;
1931
1932 spin_lock(&enic->devcmd_lock);
1933 err = vnic_dev_disable(enic->vdev);
1934 spin_unlock(&enic->devcmd_lock);
1935
1936 return err;
1937}
1938
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001939static void enic_notify_timer_start(struct enic *enic)
1940{
1941 switch (vnic_dev_get_intr_mode(enic->vdev)) {
1942 case VNIC_DEV_INTR_MODE_MSI:
1943 mod_timer(&enic->notify_timer, jiffies);
1944 break;
1945 default:
1946 /* Using intr for notification for INTx/MSI-X */
1947 break;
1948 };
1949}
1950
1951/* rtnl lock is held, process context */
1952static int enic_open(struct net_device *netdev)
1953{
1954 struct enic *enic = netdev_priv(netdev);
1955 unsigned int i;
1956 int err;
1957
Scott Feldman4b75a442008-09-24 11:23:53 -07001958 err = enic_request_intr(enic);
1959 if (err) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00001960 netdev_err(netdev, "Unable to request irq.\n");
Scott Feldman4b75a442008-09-24 11:23:53 -07001961 return err;
1962 }
1963
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00001964 err = enic_dev_notify_set(enic);
Scott Feldman4b75a442008-09-24 11:23:53 -07001965 if (err) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00001966 netdev_err(netdev,
1967 "Failed to alloc notify buffer, aborting.\n");
Scott Feldman4b75a442008-09-24 11:23:53 -07001968 goto err_out_free_intr;
1969 }
1970
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001971 for (i = 0; i < enic->rq_count; i++) {
Scott Feldman2d6ddce2009-12-23 13:27:38 +00001972 vnic_rq_fill(&enic->rq[i], enic->rq_alloc_buf);
1973 /* Need at least one buffer on ring to get going */
1974 if (vnic_rq_desc_used(&enic->rq[i]) == 0) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00001975 netdev_err(netdev, "Unable to alloc receive buffers\n");
Scott Feldman2d6ddce2009-12-23 13:27:38 +00001976 err = -ENOMEM;
Scott Feldman4b75a442008-09-24 11:23:53 -07001977 goto err_out_notify_unset;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001978 }
1979 }
1980
1981 for (i = 0; i < enic->wq_count; i++)
1982 vnic_wq_enable(&enic->wq[i]);
1983 for (i = 0; i < enic->rq_count; i++)
1984 vnic_rq_enable(&enic->rq[i]);
1985
Roopa Prabhu296390592010-12-08 13:54:03 +00001986 if (enic_is_dynamic(enic) && !is_zero_ether_addr(enic->pp.mac_addr))
1987 enic_dev_add_addr(enic, enic->pp.mac_addr);
1988 else
1989 enic_dev_add_station_addr(enic);
Roopa Prabhu319d7e82010-12-08 13:19:58 +00001990 enic_set_rx_mode(netdev);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001991
1992 netif_wake_queue(netdev);
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00001993
1994 for (i = 0; i < enic->rq_count; i++)
1995 napi_enable(&enic->napi[i]);
1996
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00001997 enic_dev_enable(enic);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07001998
1999 for (i = 0; i < enic->intr_count; i++)
2000 vnic_intr_unmask(&enic->intr[i]);
2001
2002 enic_notify_timer_start(enic);
2003
2004 return 0;
Scott Feldman4b75a442008-09-24 11:23:53 -07002005
2006err_out_notify_unset:
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00002007 enic_dev_notify_unset(enic);
Scott Feldman4b75a442008-09-24 11:23:53 -07002008err_out_free_intr:
2009 enic_free_intr(enic);
2010
2011 return err;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002012}
2013
2014/* rtnl lock is held, process context */
2015static int enic_stop(struct net_device *netdev)
2016{
2017 struct enic *enic = netdev_priv(netdev);
2018 unsigned int i;
2019 int err;
2020
Vasanthy Kolluri29046f92010-06-24 10:52:26 +00002021 for (i = 0; i < enic->intr_count; i++) {
Scott Feldmanb3d18d12009-12-23 13:27:30 +00002022 vnic_intr_mask(&enic->intr[i]);
Vasanthy Kolluri29046f92010-06-24 10:52:26 +00002023 (void)vnic_intr_masked(&enic->intr[i]); /* flush write */
2024 }
Scott Feldmanb3d18d12009-12-23 13:27:30 +00002025
2026 enic_synchronize_irqs(enic);
2027
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002028 del_timer_sync(&enic->notify_timer);
2029
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00002030 enic_dev_disable(enic);
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002031
2032 for (i = 0; i < enic->rq_count; i++)
2033 napi_disable(&enic->napi[i]);
2034
Scott Feldmanb3d18d12009-12-23 13:27:30 +00002035 netif_carrier_off(netdev);
2036 netif_tx_disable(netdev);
Roopa Prabhu296390592010-12-08 13:54:03 +00002037 if (enic_is_dynamic(enic) && !is_zero_ether_addr(enic->pp.mac_addr))
2038 enic_dev_del_addr(enic, enic->pp.mac_addr);
2039 else
2040 enic_dev_del_station_addr(enic);
Scott Feldmanf8bd9092010-05-17 22:50:19 -07002041
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002042 for (i = 0; i < enic->wq_count; i++) {
2043 err = vnic_wq_disable(&enic->wq[i]);
2044 if (err)
2045 return err;
2046 }
2047 for (i = 0; i < enic->rq_count; i++) {
2048 err = vnic_rq_disable(&enic->rq[i]);
2049 if (err)
2050 return err;
2051 }
2052
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00002053 enic_dev_notify_unset(enic);
Scott Feldman4b75a442008-09-24 11:23:53 -07002054 enic_free_intr(enic);
2055
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002056 for (i = 0; i < enic->wq_count; i++)
2057 vnic_wq_clean(&enic->wq[i], enic_free_wq_buf);
2058 for (i = 0; i < enic->rq_count; i++)
2059 vnic_rq_clean(&enic->rq[i], enic_free_rq_buf);
2060 for (i = 0; i < enic->cq_count; i++)
2061 vnic_cq_clean(&enic->cq[i]);
2062 for (i = 0; i < enic->intr_count; i++)
2063 vnic_intr_clean(&enic->intr[i]);
2064
2065 return 0;
2066}
2067
2068static int enic_change_mtu(struct net_device *netdev, int new_mtu)
2069{
2070 struct enic *enic = netdev_priv(netdev);
2071 int running = netif_running(netdev);
2072
Scott Feldman25f0a062008-09-24 11:23:32 -07002073 if (new_mtu < ENIC_MIN_MTU || new_mtu > ENIC_MAX_MTU)
2074 return -EINVAL;
2075
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002076 if (running)
2077 enic_stop(netdev);
2078
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002079 netdev->mtu = new_mtu;
2080
2081 if (netdev->mtu > enic->port_mtu)
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002082 netdev_warn(netdev,
2083 "interface MTU (%d) set higher than port MTU (%d)\n",
2084 netdev->mtu, enic->port_mtu);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002085
2086 if (running)
2087 enic_open(netdev);
2088
2089 return 0;
2090}
2091
2092#ifdef CONFIG_NET_POLL_CONTROLLER
2093static void enic_poll_controller(struct net_device *netdev)
2094{
2095 struct enic *enic = netdev_priv(netdev);
2096 struct vnic_dev *vdev = enic->vdev;
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002097 unsigned int i, intr;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002098
2099 switch (vnic_dev_get_intr_mode(vdev)) {
2100 case VNIC_DEV_INTR_MODE_MSIX:
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002101 for (i = 0; i < enic->rq_count; i++) {
2102 intr = enic_msix_rq_intr(enic, i);
Vasanthy Kolluri79aeec52010-12-08 13:05:45 +00002103 enic_isr_msix_rq(enic->msix_entry[intr].vector,
2104 &enic->napi[i]);
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002105 }
2106 intr = enic_msix_wq_intr(enic, i);
2107 enic_isr_msix_wq(enic->msix_entry[intr].vector, enic);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002108 break;
2109 case VNIC_DEV_INTR_MODE_MSI:
2110 enic_isr_msi(enic->pdev->irq, enic);
2111 break;
2112 case VNIC_DEV_INTR_MODE_INTX:
2113 enic_isr_legacy(enic->pdev->irq, netdev);
2114 break;
2115 default:
2116 break;
2117 }
2118}
2119#endif
2120
2121static int enic_dev_wait(struct vnic_dev *vdev,
2122 int (*start)(struct vnic_dev *, int),
2123 int (*finished)(struct vnic_dev *, int *),
2124 int arg)
2125{
2126 unsigned long time;
2127 int done;
2128 int err;
2129
2130 BUG_ON(in_interrupt());
2131
2132 err = start(vdev, arg);
2133 if (err)
2134 return err;
2135
2136 /* Wait for func to complete...2 seconds max
2137 */
2138
2139 time = jiffies + (HZ * 2);
2140 do {
2141
2142 err = finished(vdev, &done);
2143 if (err)
2144 return err;
2145
2146 if (done)
2147 return 0;
2148
2149 schedule_timeout_uninterruptible(HZ / 10);
2150
2151 } while (time_after(time, jiffies));
2152
2153 return -ETIMEDOUT;
2154}
2155
2156static int enic_dev_open(struct enic *enic)
2157{
2158 int err;
2159
2160 err = enic_dev_wait(enic->vdev, vnic_dev_open,
2161 vnic_dev_open_done, 0);
2162 if (err)
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002163 dev_err(enic_get_dev(enic), "vNIC device open failed, err %d\n",
2164 err);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002165
2166 return err;
2167}
2168
Vasanthy Kolluri99ef5632010-06-24 10:50:00 +00002169static int enic_dev_hang_reset(struct enic *enic)
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002170{
2171 int err;
2172
Vasanthy Kolluri99ef5632010-06-24 10:50:00 +00002173 err = enic_dev_wait(enic->vdev, vnic_dev_hang_reset,
2174 vnic_dev_hang_reset_done, 0);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002175 if (err)
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002176 netdev_err(enic->netdev, "vNIC hang reset failed, err %d\n",
2177 err);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002178
2179 return err;
2180}
2181
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002182static int enic_set_rsskey(struct enic *enic)
Scott Feldman68f71702009-02-09 23:24:24 -08002183{
Vasanthy Kolluri1f4f0672010-11-15 08:09:55 +00002184 dma_addr_t rss_key_buf_pa;
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002185 union vnic_rss_key *rss_key_buf_va = NULL;
2186 union vnic_rss_key rss_key = {
2187 .key[0].b = {85, 67, 83, 97, 119, 101, 115, 111, 109, 101},
2188 .key[1].b = {80, 65, 76, 79, 117, 110, 105, 113, 117, 101},
2189 .key[2].b = {76, 73, 78, 85, 88, 114, 111, 99, 107, 115},
2190 .key[3].b = {69, 78, 73, 67, 105, 115, 99, 111, 111, 108},
2191 };
2192 int err;
2193
2194 rss_key_buf_va = pci_alloc_consistent(enic->pdev,
2195 sizeof(union vnic_rss_key), &rss_key_buf_pa);
2196 if (!rss_key_buf_va)
2197 return -ENOMEM;
2198
2199 memcpy(rss_key_buf_va, &rss_key, sizeof(union vnic_rss_key));
2200
2201 spin_lock(&enic->devcmd_lock);
2202 err = enic_set_rss_key(enic,
2203 rss_key_buf_pa,
2204 sizeof(union vnic_rss_key));
2205 spin_unlock(&enic->devcmd_lock);
2206
2207 pci_free_consistent(enic->pdev, sizeof(union vnic_rss_key),
2208 rss_key_buf_va, rss_key_buf_pa);
2209
2210 return err;
2211}
2212
2213static int enic_set_rsscpu(struct enic *enic, u8 rss_hash_bits)
2214{
Vasanthy Kolluri1f4f0672010-11-15 08:09:55 +00002215 dma_addr_t rss_cpu_buf_pa;
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002216 union vnic_rss_cpu *rss_cpu_buf_va = NULL;
2217 unsigned int i;
2218 int err;
2219
2220 rss_cpu_buf_va = pci_alloc_consistent(enic->pdev,
2221 sizeof(union vnic_rss_cpu), &rss_cpu_buf_pa);
2222 if (!rss_cpu_buf_va)
2223 return -ENOMEM;
2224
2225 for (i = 0; i < (1 << rss_hash_bits); i++)
2226 (*rss_cpu_buf_va).cpu[i/4].b[i%4] = i % enic->rq_count;
2227
2228 spin_lock(&enic->devcmd_lock);
2229 err = enic_set_rss_cpu(enic,
2230 rss_cpu_buf_pa,
2231 sizeof(union vnic_rss_cpu));
2232 spin_unlock(&enic->devcmd_lock);
2233
2234 pci_free_consistent(enic->pdev, sizeof(union vnic_rss_cpu),
2235 rss_cpu_buf_va, rss_cpu_buf_pa);
2236
2237 return err;
2238}
2239
2240static int enic_set_niccfg(struct enic *enic, u8 rss_default_cpu,
2241 u8 rss_hash_type, u8 rss_hash_bits, u8 rss_base_cpu, u8 rss_enable)
2242{
Scott Feldman68f71702009-02-09 23:24:24 -08002243 const u8 tso_ipid_split_en = 0;
2244 const u8 ig_vlan_strip_en = 1;
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00002245 int err;
Scott Feldman68f71702009-02-09 23:24:24 -08002246
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002247 /* Enable VLAN tag stripping.
2248 */
Scott Feldman68f71702009-02-09 23:24:24 -08002249
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00002250 spin_lock(&enic->devcmd_lock);
2251 err = enic_set_nic_cfg(enic,
Scott Feldman68f71702009-02-09 23:24:24 -08002252 rss_default_cpu, rss_hash_type,
2253 rss_hash_bits, rss_base_cpu,
2254 rss_enable, tso_ipid_split_en,
2255 ig_vlan_strip_en);
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00002256 spin_unlock(&enic->devcmd_lock);
2257
2258 return err;
2259}
2260
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002261static int enic_set_rss_nic_cfg(struct enic *enic)
2262{
2263 struct device *dev = enic_get_dev(enic);
2264 const u8 rss_default_cpu = 0;
2265 const u8 rss_hash_type = NIC_CFG_RSS_HASH_TYPE_IPV4 |
2266 NIC_CFG_RSS_HASH_TYPE_TCP_IPV4 |
2267 NIC_CFG_RSS_HASH_TYPE_IPV6 |
2268 NIC_CFG_RSS_HASH_TYPE_TCP_IPV6;
2269 const u8 rss_hash_bits = 7;
2270 const u8 rss_base_cpu = 0;
2271 u8 rss_enable = ENIC_SETTING(enic, RSS) && (enic->rq_count > 1);
2272
2273 if (rss_enable) {
2274 if (!enic_set_rsskey(enic)) {
2275 if (enic_set_rsscpu(enic, rss_hash_bits)) {
2276 rss_enable = 0;
2277 dev_warn(dev, "RSS disabled, "
2278 "Failed to set RSS cpu indirection table.");
2279 }
2280 } else {
2281 rss_enable = 0;
2282 dev_warn(dev, "RSS disabled, Failed to set RSS key.\n");
2283 }
2284 }
2285
2286 return enic_set_niccfg(enic, rss_default_cpu, rss_hash_type,
2287 rss_hash_bits, rss_base_cpu, rss_enable);
2288}
2289
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00002290static int enic_dev_hang_notify(struct enic *enic)
2291{
2292 int err;
2293
2294 spin_lock(&enic->devcmd_lock);
2295 err = vnic_dev_hang_notify(enic->vdev);
2296 spin_unlock(&enic->devcmd_lock);
2297
2298 return err;
Scott Feldman68f71702009-02-09 23:24:24 -08002299}
2300
Vasanthy Kolluri2fdba382010-09-30 13:35:45 +00002301static int enic_dev_set_ig_vlan_rewrite_mode(struct enic *enic)
Vasanthy Kollurif8cac142010-06-24 10:49:51 +00002302{
2303 int err;
2304
2305 spin_lock(&enic->devcmd_lock);
2306 err = vnic_dev_set_ig_vlan_rewrite_mode(enic->vdev,
2307 IG_VLAN_REWRITE_MODE_PRIORITY_TAG_DEFAULT_VLAN);
2308 spin_unlock(&enic->devcmd_lock);
2309
2310 return err;
2311}
2312
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002313static void enic_reset(struct work_struct *work)
2314{
2315 struct enic *enic = container_of(work, struct enic, reset);
2316
2317 if (!netif_running(enic->netdev))
2318 return;
2319
2320 rtnl_lock();
2321
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00002322 enic_dev_hang_notify(enic);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002323 enic_stop(enic->netdev);
Vasanthy Kolluri99ef5632010-06-24 10:50:00 +00002324 enic_dev_hang_reset(enic);
2325 enic_reset_multicast_list(enic);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002326 enic_init_vnic_resources(enic);
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002327 enic_set_rss_nic_cfg(enic);
Vasanthy Kollurif8cac142010-06-24 10:49:51 +00002328 enic_dev_set_ig_vlan_rewrite_mode(enic);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002329 enic_open(enic->netdev);
2330
2331 rtnl_unlock();
2332}
2333
2334static int enic_set_intr_mode(struct enic *enic)
2335{
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002336 unsigned int n = min_t(unsigned int, enic->rq_count, ENIC_RQ_MAX);
Scott Feldman6ba9cdc2009-09-03 17:02:24 +00002337 unsigned int m = 1;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002338 unsigned int i;
2339
2340 /* Set interrupt mode (INTx, MSI, MSI-X) depending
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002341 * on system capabilities.
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002342 *
2343 * Try MSI-X first
2344 *
2345 * We need n RQs, m WQs, n+m CQs, and n+m+2 INTRs
2346 * (the second to last INTR is used for WQ/RQ errors)
2347 * (the last INTR is used for notifications)
2348 */
2349
2350 BUG_ON(ARRAY_SIZE(enic->msix_entry) < n + m + 2);
2351 for (i = 0; i < n + m + 2; i++)
2352 enic->msix_entry[i].entry = i;
2353
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002354 /* Use multiple RQs if RSS is enabled
2355 */
2356
2357 if (ENIC_SETTING(enic, RSS) &&
2358 enic->config.intr_mode < 1 &&
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002359 enic->rq_count >= n &&
2360 enic->wq_count >= m &&
2361 enic->cq_count >= n + m &&
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002362 enic->intr_count >= n + m + 2) {
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002363
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002364 if (!pci_enable_msix(enic->pdev, enic->msix_entry, n + m + 2)) {
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002365
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002366 enic->rq_count = n;
2367 enic->wq_count = m;
2368 enic->cq_count = n + m;
2369 enic->intr_count = n + m + 2;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002370
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002371 vnic_dev_set_intr_mode(enic->vdev,
2372 VNIC_DEV_INTR_MODE_MSIX);
2373
2374 return 0;
2375 }
2376 }
2377
2378 if (enic->config.intr_mode < 1 &&
2379 enic->rq_count >= 1 &&
2380 enic->wq_count >= m &&
2381 enic->cq_count >= 1 + m &&
2382 enic->intr_count >= 1 + m + 2) {
2383 if (!pci_enable_msix(enic->pdev, enic->msix_entry, 1 + m + 2)) {
2384
2385 enic->rq_count = 1;
2386 enic->wq_count = m;
2387 enic->cq_count = 1 + m;
2388 enic->intr_count = 1 + m + 2;
2389
2390 vnic_dev_set_intr_mode(enic->vdev,
2391 VNIC_DEV_INTR_MODE_MSIX);
2392
2393 return 0;
2394 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002395 }
2396
2397 /* Next try MSI
2398 *
2399 * We need 1 RQ, 1 WQ, 2 CQs, and 1 INTR
2400 */
2401
2402 if (enic->config.intr_mode < 2 &&
2403 enic->rq_count >= 1 &&
2404 enic->wq_count >= 1 &&
2405 enic->cq_count >= 2 &&
2406 enic->intr_count >= 1 &&
2407 !pci_enable_msi(enic->pdev)) {
2408
2409 enic->rq_count = 1;
2410 enic->wq_count = 1;
2411 enic->cq_count = 2;
2412 enic->intr_count = 1;
2413
2414 vnic_dev_set_intr_mode(enic->vdev, VNIC_DEV_INTR_MODE_MSI);
2415
2416 return 0;
2417 }
2418
2419 /* Next try INTx
2420 *
2421 * We need 1 RQ, 1 WQ, 2 CQs, and 3 INTRs
2422 * (the first INTR is used for WQ/RQ)
2423 * (the second INTR is used for WQ/RQ errors)
2424 * (the last INTR is used for notifications)
2425 */
2426
2427 if (enic->config.intr_mode < 3 &&
2428 enic->rq_count >= 1 &&
2429 enic->wq_count >= 1 &&
2430 enic->cq_count >= 2 &&
2431 enic->intr_count >= 3) {
2432
2433 enic->rq_count = 1;
2434 enic->wq_count = 1;
2435 enic->cq_count = 2;
2436 enic->intr_count = 3;
2437
2438 vnic_dev_set_intr_mode(enic->vdev, VNIC_DEV_INTR_MODE_INTX);
2439
2440 return 0;
2441 }
2442
2443 vnic_dev_set_intr_mode(enic->vdev, VNIC_DEV_INTR_MODE_UNKNOWN);
2444
2445 return -EINVAL;
2446}
2447
2448static void enic_clear_intr_mode(struct enic *enic)
2449{
2450 switch (vnic_dev_get_intr_mode(enic->vdev)) {
2451 case VNIC_DEV_INTR_MODE_MSIX:
2452 pci_disable_msix(enic->pdev);
2453 break;
2454 case VNIC_DEV_INTR_MODE_MSI:
2455 pci_disable_msi(enic->pdev);
2456 break;
2457 default:
2458 break;
2459 }
2460
2461 vnic_dev_set_intr_mode(enic->vdev, VNIC_DEV_INTR_MODE_UNKNOWN);
2462}
2463
Scott Feldmanf8bd9092010-05-17 22:50:19 -07002464static const struct net_device_ops enic_netdev_dynamic_ops = {
2465 .ndo_open = enic_open,
2466 .ndo_stop = enic_stop,
2467 .ndo_start_xmit = enic_hard_start_xmit,
2468 .ndo_get_stats = enic_get_stats,
2469 .ndo_validate_addr = eth_validate_addr,
Roopa Prabhu319d7e82010-12-08 13:19:58 +00002470 .ndo_set_rx_mode = enic_set_rx_mode,
2471 .ndo_set_multicast_list = enic_set_rx_mode,
Scott Feldmanf8bd9092010-05-17 22:50:19 -07002472 .ndo_set_mac_address = enic_set_mac_address_dynamic,
2473 .ndo_change_mtu = enic_change_mtu,
2474 .ndo_vlan_rx_register = enic_vlan_rx_register,
2475 .ndo_vlan_rx_add_vid = enic_vlan_rx_add_vid,
2476 .ndo_vlan_rx_kill_vid = enic_vlan_rx_kill_vid,
2477 .ndo_tx_timeout = enic_tx_timeout,
2478 .ndo_set_vf_port = enic_set_vf_port,
2479 .ndo_get_vf_port = enic_get_vf_port,
Roopa Prabhu0b1c00f2010-12-08 13:53:58 +00002480#ifdef IFLA_VF_MAX
2481 .ndo_set_vf_mac = enic_set_vf_mac,
2482#endif
Scott Feldmanf8bd9092010-05-17 22:50:19 -07002483#ifdef CONFIG_NET_POLL_CONTROLLER
2484 .ndo_poll_controller = enic_poll_controller,
2485#endif
2486};
2487
Stephen Hemmingerafe29f72008-11-19 22:23:26 -08002488static const struct net_device_ops enic_netdev_ops = {
2489 .ndo_open = enic_open,
2490 .ndo_stop = enic_stop,
Stephen Hemminger00829822008-11-20 20:14:53 -08002491 .ndo_start_xmit = enic_hard_start_xmit,
Stephen Hemmingerafe29f72008-11-19 22:23:26 -08002492 .ndo_get_stats = enic_get_stats,
2493 .ndo_validate_addr = eth_validate_addr,
Scott Feldmanf8bd9092010-05-17 22:50:19 -07002494 .ndo_set_mac_address = enic_set_mac_address,
Roopa Prabhu319d7e82010-12-08 13:19:58 +00002495 .ndo_set_rx_mode = enic_set_rx_mode,
2496 .ndo_set_multicast_list = enic_set_rx_mode,
Stephen Hemmingerafe29f72008-11-19 22:23:26 -08002497 .ndo_change_mtu = enic_change_mtu,
2498 .ndo_vlan_rx_register = enic_vlan_rx_register,
2499 .ndo_vlan_rx_add_vid = enic_vlan_rx_add_vid,
2500 .ndo_vlan_rx_kill_vid = enic_vlan_rx_kill_vid,
2501 .ndo_tx_timeout = enic_tx_timeout,
2502#ifdef CONFIG_NET_POLL_CONTROLLER
2503 .ndo_poll_controller = enic_poll_controller,
2504#endif
2505};
2506
Vasanthy Kolluri2fdba382010-09-30 13:35:45 +00002507static void enic_dev_deinit(struct enic *enic)
Scott Feldman6fdfa972009-09-03 17:02:45 +00002508{
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002509 unsigned int i;
2510
2511 for (i = 0; i < enic->rq_count; i++)
2512 netif_napi_del(&enic->napi[i]);
2513
Scott Feldman6fdfa972009-09-03 17:02:45 +00002514 enic_free_vnic_resources(enic);
2515 enic_clear_intr_mode(enic);
2516}
2517
Vasanthy Kolluri2fdba382010-09-30 13:35:45 +00002518static int enic_dev_init(struct enic *enic)
Scott Feldman6fdfa972009-09-03 17:02:45 +00002519{
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002520 struct device *dev = enic_get_dev(enic);
Scott Feldman6fdfa972009-09-03 17:02:45 +00002521 struct net_device *netdev = enic->netdev;
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002522 unsigned int i;
Scott Feldman6fdfa972009-09-03 17:02:45 +00002523 int err;
2524
2525 /* Get vNIC configuration
2526 */
2527
2528 err = enic_get_vnic_config(enic);
2529 if (err) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002530 dev_err(dev, "Get vNIC configuration failed, aborting\n");
Scott Feldman6fdfa972009-09-03 17:02:45 +00002531 return err;
2532 }
2533
2534 /* Get available resource counts
2535 */
2536
2537 enic_get_res_counts(enic);
2538
2539 /* Set interrupt mode based on resource counts and system
2540 * capabilities
2541 */
2542
2543 err = enic_set_intr_mode(enic);
2544 if (err) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002545 dev_err(dev, "Failed to set intr mode based on resource "
2546 "counts and system capabilities, aborting\n");
Scott Feldman6fdfa972009-09-03 17:02:45 +00002547 return err;
2548 }
2549
2550 /* Allocate and configure vNIC resources
2551 */
2552
2553 err = enic_alloc_vnic_resources(enic);
2554 if (err) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002555 dev_err(dev, "Failed to alloc vNIC resources, aborting\n");
Scott Feldman6fdfa972009-09-03 17:02:45 +00002556 goto err_out_free_vnic_resources;
2557 }
2558
2559 enic_init_vnic_resources(enic);
2560
2561 err = enic_set_rq_alloc_buf(enic);
2562 if (err) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002563 dev_err(dev, "Failed to set RQ buffer allocator, aborting\n");
Scott Feldman6fdfa972009-09-03 17:02:45 +00002564 goto err_out_free_vnic_resources;
2565 }
2566
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002567 err = enic_set_rss_nic_cfg(enic);
Scott Feldman6fdfa972009-09-03 17:02:45 +00002568 if (err) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002569 dev_err(dev, "Failed to config nic, aborting\n");
Scott Feldman6fdfa972009-09-03 17:02:45 +00002570 goto err_out_free_vnic_resources;
2571 }
2572
Vasanthy Kollurif8cac142010-06-24 10:49:51 +00002573 err = enic_dev_set_ig_vlan_rewrite_mode(enic);
2574 if (err) {
Vasanthy Kolluri53c90532010-10-20 10:17:19 +00002575 dev_err(dev,
Vasanthy Kollurif8cac142010-06-24 10:49:51 +00002576 "Failed to set ingress vlan rewrite mode, aborting.\n");
2577 goto err_out_free_vnic_resources;
2578 }
2579
Scott Feldman6fdfa972009-09-03 17:02:45 +00002580 switch (vnic_dev_get_intr_mode(enic->vdev)) {
2581 default:
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002582 netif_napi_add(netdev, &enic->napi[0], enic_poll, 64);
Scott Feldman6fdfa972009-09-03 17:02:45 +00002583 break;
2584 case VNIC_DEV_INTR_MODE_MSIX:
Vasanthy Kolluri717258b2010-10-20 10:16:59 +00002585 for (i = 0; i < enic->rq_count; i++)
2586 netif_napi_add(netdev, &enic->napi[i],
2587 enic_poll_msix, 64);
Scott Feldman6fdfa972009-09-03 17:02:45 +00002588 break;
2589 }
2590
2591 return 0;
2592
2593err_out_free_vnic_resources:
2594 enic_clear_intr_mode(enic);
2595 enic_free_vnic_resources(enic);
2596
2597 return err;
2598}
2599
Scott Feldman27e6c7d2009-09-03 17:01:53 +00002600static void enic_iounmap(struct enic *enic)
2601{
2602 unsigned int i;
2603
2604 for (i = 0; i < ARRAY_SIZE(enic->bar); i++)
2605 if (enic->bar[i].vaddr)
2606 iounmap(enic->bar[i].vaddr);
2607}
2608
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002609static int __devinit enic_probe(struct pci_dev *pdev,
2610 const struct pci_device_id *ent)
2611{
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002612 struct device *dev = &pdev->dev;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002613 struct net_device *netdev;
2614 struct enic *enic;
2615 int using_dac = 0;
2616 unsigned int i;
2617 int err;
2618
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002619 /* Allocate net device structure and initialize. Private
2620 * instance data is initialized to zero.
2621 */
2622
2623 netdev = alloc_etherdev(sizeof(struct enic));
2624 if (!netdev) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002625 pr_err("Etherdev alloc failed, aborting\n");
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002626 return -ENOMEM;
2627 }
2628
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002629 pci_set_drvdata(pdev, netdev);
2630
2631 SET_NETDEV_DEV(netdev, &pdev->dev);
2632
2633 enic = netdev_priv(netdev);
2634 enic->netdev = netdev;
2635 enic->pdev = pdev;
2636
2637 /* Setup PCI resources
2638 */
2639
Vasanthy Kolluri29046f92010-06-24 10:52:26 +00002640 err = pci_enable_device_mem(pdev);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002641 if (err) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002642 dev_err(dev, "Cannot enable PCI device, aborting\n");
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002643 goto err_out_free_netdev;
2644 }
2645
2646 err = pci_request_regions(pdev, DRV_NAME);
2647 if (err) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002648 dev_err(dev, "Cannot request PCI regions, aborting\n");
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002649 goto err_out_disable_device;
2650 }
2651
2652 pci_set_master(pdev);
2653
2654 /* Query PCI controller on system for DMA addressing
2655 * limitation for the device. Try 40-bit first, and
2656 * fail to 32-bit.
2657 */
2658
Yang Hongyang50cf1562009-04-06 19:01:14 -07002659 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(40));
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002660 if (err) {
Yang Hongyang284901a2009-04-06 19:01:15 -07002661 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002662 if (err) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002663 dev_err(dev, "No usable DMA configuration, aborting\n");
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002664 goto err_out_release_regions;
2665 }
Yang Hongyang284901a2009-04-06 19:01:15 -07002666 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002667 if (err) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002668 dev_err(dev, "Unable to obtain %u-bit DMA "
2669 "for consistent allocations, aborting\n", 32);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002670 goto err_out_release_regions;
2671 }
2672 } else {
Yang Hongyang50cf1562009-04-06 19:01:14 -07002673 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(40));
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002674 if (err) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002675 dev_err(dev, "Unable to obtain %u-bit DMA "
2676 "for consistent allocations, aborting\n", 40);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002677 goto err_out_release_regions;
2678 }
2679 using_dac = 1;
2680 }
2681
Scott Feldman27e6c7d2009-09-03 17:01:53 +00002682 /* Map vNIC resources from BAR0-5
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002683 */
2684
Scott Feldman27e6c7d2009-09-03 17:01:53 +00002685 for (i = 0; i < ARRAY_SIZE(enic->bar); i++) {
2686 if (!(pci_resource_flags(pdev, i) & IORESOURCE_MEM))
2687 continue;
2688 enic->bar[i].len = pci_resource_len(pdev, i);
2689 enic->bar[i].vaddr = pci_iomap(pdev, i, enic->bar[i].len);
2690 if (!enic->bar[i].vaddr) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002691 dev_err(dev, "Cannot memory-map BAR %d, aborting\n", i);
Scott Feldman27e6c7d2009-09-03 17:01:53 +00002692 err = -ENODEV;
2693 goto err_out_iounmap;
2694 }
2695 enic->bar[i].bus_addr = pci_resource_start(pdev, i);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002696 }
2697
2698 /* Register vNIC device
2699 */
2700
Scott Feldman27e6c7d2009-09-03 17:01:53 +00002701 enic->vdev = vnic_dev_register(NULL, enic, pdev, enic->bar,
2702 ARRAY_SIZE(enic->bar));
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002703 if (!enic->vdev) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002704 dev_err(dev, "vNIC registration failed, aborting\n");
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002705 err = -ENODEV;
2706 goto err_out_iounmap;
2707 }
2708
2709 /* Issue device open to get device in known state
2710 */
2711
2712 err = enic_dev_open(enic);
2713 if (err) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002714 dev_err(dev, "vNIC dev open failed, aborting\n");
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002715 goto err_out_vnic_unregister;
2716 }
2717
2718 /* Issue device init to initialize the vnic-to-switch link.
2719 * We'll start with carrier off and wait for link UP
2720 * notification later to turn on carrier. We don't need
2721 * to wait here for the vnic-to-switch link initialization
2722 * to complete; link UP notification is the indication that
2723 * the process is complete.
2724 */
2725
2726 netif_carrier_off(netdev);
2727
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002728 /* Do not call dev_init for a dynamic vnic.
2729 * For a dynamic vnic, init_prov_info will be
2730 * called later by an upper layer.
2731 */
2732
Scott Feldmanf8bd9092010-05-17 22:50:19 -07002733 if (!enic_is_dynamic(enic)) {
2734 err = vnic_dev_init(enic->vdev, 0);
2735 if (err) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002736 dev_err(dev, "vNIC dev init failed, aborting\n");
Scott Feldmanf8bd9092010-05-17 22:50:19 -07002737 goto err_out_dev_close;
2738 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002739 }
2740
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00002741 /* Setup devcmd lock
2742 */
2743
2744 spin_lock_init(&enic->devcmd_lock);
2745
Scott Feldman6fdfa972009-09-03 17:02:45 +00002746 err = enic_dev_init(enic);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002747 if (err) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002748 dev_err(dev, "Device initialization failed, aborting\n");
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002749 goto err_out_dev_close;
2750 }
2751
Vasanthy Kolluri383ab922010-06-24 10:50:12 +00002752 /* Setup notification timer, HW reset task, and wq locks
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002753 */
2754
2755 init_timer(&enic->notify_timer);
2756 enic->notify_timer.function = enic_notify_timer;
2757 enic->notify_timer.data = (unsigned long)enic;
2758
2759 INIT_WORK(&enic->reset, enic_reset);
2760
2761 for (i = 0; i < enic->wq_count; i++)
2762 spin_lock_init(&enic->wq_lock[i]);
2763
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002764 /* Register net device
2765 */
2766
2767 enic->port_mtu = enic->config.mtu;
2768 (void)enic_change_mtu(netdev, enic->port_mtu);
2769
2770 err = enic_set_mac_addr(netdev, enic->mac_addr);
2771 if (err) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002772 dev_err(dev, "Invalid MAC address, aborting\n");
Scott Feldman6fdfa972009-09-03 17:02:45 +00002773 goto err_out_dev_deinit;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002774 }
2775
Scott Feldman7c844592009-12-23 13:27:54 +00002776 enic->tx_coalesce_usecs = enic->config.intr_timer_usec;
2777 enic->rx_coalesce_usecs = enic->tx_coalesce_usecs;
2778
Scott Feldmanf8bd9092010-05-17 22:50:19 -07002779 if (enic_is_dynamic(enic))
2780 netdev->netdev_ops = &enic_netdev_dynamic_ops;
2781 else
2782 netdev->netdev_ops = &enic_netdev_ops;
2783
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002784 netdev->watchdog_timeo = 2 * HZ;
2785 netdev->ethtool_ops = &enic_ethtool_ops;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002786
Vasanthy Kolluri73c1ea92010-03-18 16:19:54 +00002787 netdev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
Vasanthy Kolluri1825aca2010-06-24 10:51:59 +00002788 if (ENIC_SETTING(enic, LOOP)) {
2789 netdev->features &= ~NETIF_F_HW_VLAN_TX;
2790 enic->loop_enable = 1;
2791 enic->loop_tag = enic->config.loop_tag;
2792 dev_info(dev, "loopback tag=0x%04x\n", enic->loop_tag);
2793 }
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002794 if (ENIC_SETTING(enic, TXCSUM))
2795 netdev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
2796 if (ENIC_SETTING(enic, TSO))
2797 netdev->features |= NETIF_F_TSO |
2798 NETIF_F_TSO6 | NETIF_F_TSO_ECN;
Scott Feldman86ca9db2008-11-21 21:26:55 -08002799 if (ENIC_SETTING(enic, LRO))
Vasanthy Kolluri88132f52010-06-24 10:49:25 +00002800 netdev->features |= NETIF_F_GRO;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002801 if (using_dac)
2802 netdev->features |= NETIF_F_HIGHDMA;
2803
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002804 enic->csum_rx_enabled = ENIC_SETTING(enic, RXCSUM);
2805
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002806 err = register_netdev(netdev);
2807 if (err) {
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002808 dev_err(dev, "Cannot register net device, aborting\n");
Scott Feldman6fdfa972009-09-03 17:02:45 +00002809 goto err_out_dev_deinit;
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002810 }
2811
2812 return 0;
2813
Scott Feldman6fdfa972009-09-03 17:02:45 +00002814err_out_dev_deinit:
2815 enic_dev_deinit(enic);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002816err_out_dev_close:
2817 vnic_dev_close(enic->vdev);
2818err_out_vnic_unregister:
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002819 vnic_dev_unregister(enic->vdev);
2820err_out_iounmap:
2821 enic_iounmap(enic);
2822err_out_release_regions:
2823 pci_release_regions(pdev);
2824err_out_disable_device:
2825 pci_disable_device(pdev);
2826err_out_free_netdev:
2827 pci_set_drvdata(pdev, NULL);
2828 free_netdev(netdev);
2829
2830 return err;
2831}
2832
2833static void __devexit enic_remove(struct pci_dev *pdev)
2834{
2835 struct net_device *netdev = pci_get_drvdata(pdev);
2836
2837 if (netdev) {
2838 struct enic *enic = netdev_priv(netdev);
2839
Tejun Heo23f333a2010-12-12 16:45:14 +01002840 cancel_work_sync(&enic->reset);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002841 unregister_netdev(netdev);
Scott Feldman6fdfa972009-09-03 17:02:45 +00002842 enic_dev_deinit(enic);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002843 vnic_dev_close(enic->vdev);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002844 vnic_dev_unregister(enic->vdev);
2845 enic_iounmap(enic);
2846 pci_release_regions(pdev);
2847 pci_disable_device(pdev);
2848 pci_set_drvdata(pdev, NULL);
2849 free_netdev(netdev);
2850 }
2851}
2852
2853static struct pci_driver enic_driver = {
2854 .name = DRV_NAME,
2855 .id_table = enic_id_table,
2856 .probe = enic_probe,
2857 .remove = __devexit_p(enic_remove),
2858};
2859
2860static int __init enic_init_module(void)
2861{
Vasanthy Kolluria7a79de2010-06-24 10:50:56 +00002862 pr_info("%s, ver %s\n", DRV_DESCRIPTION, DRV_VERSION);
Scott Feldman01f2e4e2008-09-15 09:17:11 -07002863
2864 return pci_register_driver(&enic_driver);
2865}
2866
2867static void __exit enic_cleanup_module(void)
2868{
2869 pci_unregister_driver(&enic_driver);
2870}
2871
2872module_init(enic_init_module);
2873module_exit(enic_cleanup_module);