mlx4_en: bringing link up when registering netdevice
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / mlx4 / en_netdev.c
blob5727bf5ad4523a53356c778458f399afd6898af1
1 /*
2 * Copyright (c) 2007 Mellanox Technologies. All rights reserved.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
34 #include <linux/etherdevice.h>
35 #include <linux/tcp.h>
36 #include <linux/if_vlan.h>
37 #include <linux/delay.h>
38 #include <linux/slab.h>
40 #include <linux/mlx4/driver.h>
41 #include <linux/mlx4/device.h>
42 #include <linux/mlx4/cmd.h>
43 #include <linux/mlx4/cq.h>
45 #include "mlx4_en.h"
46 #include "en_port.h"
49 static void mlx4_en_vlan_rx_register(struct net_device *dev, struct vlan_group *grp)
51 struct mlx4_en_priv *priv = netdev_priv(dev);
52 struct mlx4_en_dev *mdev = priv->mdev;
53 int err;
55 en_dbg(HW, priv, "Registering VLAN group:%p\n", grp);
56 priv->vlgrp = grp;
58 mutex_lock(&mdev->state_lock);
59 if (mdev->device_up && priv->port_up) {
60 err = mlx4_SET_VLAN_FLTR(mdev->dev, priv->port, grp);
61 if (err)
62 en_err(priv, "Failed configuring VLAN filter\n");
64 mutex_unlock(&mdev->state_lock);
67 static void mlx4_en_vlan_rx_add_vid(struct net_device *dev, unsigned short vid)
69 struct mlx4_en_priv *priv = netdev_priv(dev);
70 struct mlx4_en_dev *mdev = priv->mdev;
71 int err;
72 int idx;
74 if (!priv->vlgrp)
75 return;
77 en_dbg(HW, priv, "adding VLAN:%d (vlgrp entry:%p)\n",
78 vid, vlan_group_get_device(priv->vlgrp, vid));
80 /* Add VID to port VLAN filter */
81 mutex_lock(&mdev->state_lock);
82 if (mdev->device_up && priv->port_up) {
83 err = mlx4_SET_VLAN_FLTR(mdev->dev, priv->port, priv->vlgrp);
84 if (err)
85 en_err(priv, "Failed configuring VLAN filter\n");
87 if (mlx4_register_vlan(mdev->dev, priv->port, vid, &idx))
88 en_err(priv, "failed adding vlan %d\n", vid);
89 mutex_unlock(&mdev->state_lock);
93 static void mlx4_en_vlan_rx_kill_vid(struct net_device *dev, unsigned short vid)
95 struct mlx4_en_priv *priv = netdev_priv(dev);
96 struct mlx4_en_dev *mdev = priv->mdev;
97 int err;
98 int idx;
100 if (!priv->vlgrp)
101 return;
103 en_dbg(HW, priv, "Killing VID:%d (vlgrp:%p vlgrp entry:%p)\n",
104 vid, priv->vlgrp, vlan_group_get_device(priv->vlgrp, vid));
105 vlan_group_set_device(priv->vlgrp, vid, NULL);
107 /* Remove VID from port VLAN filter */
108 mutex_lock(&mdev->state_lock);
109 if (!mlx4_find_cached_vlan(mdev->dev, priv->port, vid, &idx))
110 mlx4_unregister_vlan(mdev->dev, priv->port, idx);
111 else
112 en_err(priv, "could not find vid %d in cache\n", vid);
114 if (mdev->device_up && priv->port_up) {
115 err = mlx4_SET_VLAN_FLTR(mdev->dev, priv->port, priv->vlgrp);
116 if (err)
117 en_err(priv, "Failed configuring VLAN filter\n");
119 mutex_unlock(&mdev->state_lock);
122 u64 mlx4_en_mac_to_u64(u8 *addr)
124 u64 mac = 0;
125 int i;
127 for (i = 0; i < ETH_ALEN; i++) {
128 mac <<= 8;
129 mac |= addr[i];
131 return mac;
134 static int mlx4_en_set_mac(struct net_device *dev, void *addr)
136 struct mlx4_en_priv *priv = netdev_priv(dev);
137 struct mlx4_en_dev *mdev = priv->mdev;
138 struct sockaddr *saddr = addr;
140 if (!is_valid_ether_addr(saddr->sa_data))
141 return -EADDRNOTAVAIL;
143 memcpy(dev->dev_addr, saddr->sa_data, ETH_ALEN);
144 priv->mac = mlx4_en_mac_to_u64(dev->dev_addr);
145 queue_work(mdev->workqueue, &priv->mac_task);
146 return 0;
149 static void mlx4_en_do_set_mac(struct work_struct *work)
151 struct mlx4_en_priv *priv = container_of(work, struct mlx4_en_priv,
152 mac_task);
153 struct mlx4_en_dev *mdev = priv->mdev;
154 int err = 0;
156 mutex_lock(&mdev->state_lock);
157 if (priv->port_up) {
158 /* Remove old MAC and insert the new one */
159 mlx4_unregister_mac(mdev->dev, priv->port, priv->mac_index);
160 err = mlx4_register_mac(mdev->dev, priv->port,
161 priv->mac, &priv->mac_index);
162 if (err)
163 en_err(priv, "Failed changing HW MAC address\n");
164 } else
165 en_dbg(HW, priv, "Port is down while "
166 "registering mac, exiting...\n");
168 mutex_unlock(&mdev->state_lock);
171 static void mlx4_en_clear_list(struct net_device *dev)
173 struct mlx4_en_priv *priv = netdev_priv(dev);
175 kfree(priv->mc_addrs);
176 priv->mc_addrs_cnt = 0;
179 static void mlx4_en_cache_mclist(struct net_device *dev)
181 struct mlx4_en_priv *priv = netdev_priv(dev);
182 struct netdev_hw_addr *ha;
183 char *mc_addrs;
184 int mc_addrs_cnt = netdev_mc_count(dev);
185 int i;
187 mc_addrs = kmalloc(mc_addrs_cnt * ETH_ALEN, GFP_ATOMIC);
188 if (!mc_addrs) {
189 en_err(priv, "failed to allocate multicast list\n");
190 return;
192 i = 0;
193 netdev_for_each_mc_addr(ha, dev)
194 memcpy(mc_addrs + i++ * ETH_ALEN, ha->addr, ETH_ALEN);
195 priv->mc_addrs = mc_addrs;
196 priv->mc_addrs_cnt = mc_addrs_cnt;
200 static void mlx4_en_set_multicast(struct net_device *dev)
202 struct mlx4_en_priv *priv = netdev_priv(dev);
204 if (!priv->port_up)
205 return;
207 queue_work(priv->mdev->workqueue, &priv->mcast_task);
210 static void mlx4_en_do_set_multicast(struct work_struct *work)
212 struct mlx4_en_priv *priv = container_of(work, struct mlx4_en_priv,
213 mcast_task);
214 struct mlx4_en_dev *mdev = priv->mdev;
215 struct net_device *dev = priv->dev;
216 u64 mcast_addr = 0;
217 int err;
219 mutex_lock(&mdev->state_lock);
220 if (!mdev->device_up) {
221 en_dbg(HW, priv, "Card is not up, "
222 "ignoring multicast change.\n");
223 goto out;
225 if (!priv->port_up) {
226 en_dbg(HW, priv, "Port is down, "
227 "ignoring multicast change.\n");
228 goto out;
232 * Promsicuous mode: disable all filters
235 if (dev->flags & IFF_PROMISC) {
236 if (!(priv->flags & MLX4_EN_FLAG_PROMISC)) {
237 if (netif_msg_rx_status(priv))
238 en_warn(priv, "Entering promiscuous mode\n");
239 priv->flags |= MLX4_EN_FLAG_PROMISC;
241 /* Enable promiscouos mode */
242 err = mlx4_SET_PORT_qpn_calc(mdev->dev, priv->port,
243 priv->base_qpn, 1);
244 if (err)
245 en_err(priv, "Failed enabling "
246 "promiscous mode\n");
248 /* Disable port multicast filter (unconditionally) */
249 err = mlx4_SET_MCAST_FLTR(mdev->dev, priv->port, 0,
250 0, MLX4_MCAST_DISABLE);
251 if (err)
252 en_err(priv, "Failed disabling "
253 "multicast filter\n");
255 /* Disable port VLAN filter */
256 err = mlx4_SET_VLAN_FLTR(mdev->dev, priv->port, NULL);
257 if (err)
258 en_err(priv, "Failed disabling VLAN filter\n");
260 goto out;
264 * Not in promiscous mode
267 if (priv->flags & MLX4_EN_FLAG_PROMISC) {
268 if (netif_msg_rx_status(priv))
269 en_warn(priv, "Leaving promiscuous mode\n");
270 priv->flags &= ~MLX4_EN_FLAG_PROMISC;
272 /* Disable promiscouos mode */
273 err = mlx4_SET_PORT_qpn_calc(mdev->dev, priv->port,
274 priv->base_qpn, 0);
275 if (err)
276 en_err(priv, "Failed disabling promiscous mode\n");
278 /* Enable port VLAN filter */
279 err = mlx4_SET_VLAN_FLTR(mdev->dev, priv->port, priv->vlgrp);
280 if (err)
281 en_err(priv, "Failed enabling VLAN filter\n");
284 /* Enable/disable the multicast filter according to IFF_ALLMULTI */
285 if (dev->flags & IFF_ALLMULTI) {
286 err = mlx4_SET_MCAST_FLTR(mdev->dev, priv->port, 0,
287 0, MLX4_MCAST_DISABLE);
288 if (err)
289 en_err(priv, "Failed disabling multicast filter\n");
290 } else {
291 int i;
293 err = mlx4_SET_MCAST_FLTR(mdev->dev, priv->port, 0,
294 0, MLX4_MCAST_DISABLE);
295 if (err)
296 en_err(priv, "Failed disabling multicast filter\n");
298 /* Flush mcast filter and init it with broadcast address */
299 mlx4_SET_MCAST_FLTR(mdev->dev, priv->port, ETH_BCAST,
300 1, MLX4_MCAST_CONFIG);
302 /* Update multicast list - we cache all addresses so they won't
303 * change while HW is updated holding the command semaphor */
304 netif_tx_lock_bh(dev);
305 mlx4_en_cache_mclist(dev);
306 netif_tx_unlock_bh(dev);
307 for (i = 0; i < priv->mc_addrs_cnt; i++) {
308 mcast_addr =
309 mlx4_en_mac_to_u64(priv->mc_addrs + i * ETH_ALEN);
310 mlx4_SET_MCAST_FLTR(mdev->dev, priv->port,
311 mcast_addr, 0, MLX4_MCAST_CONFIG);
313 err = mlx4_SET_MCAST_FLTR(mdev->dev, priv->port, 0,
314 0, MLX4_MCAST_ENABLE);
315 if (err)
316 en_err(priv, "Failed enabling multicast filter\n");
318 mlx4_en_clear_list(dev);
320 out:
321 mutex_unlock(&mdev->state_lock);
324 #ifdef CONFIG_NET_POLL_CONTROLLER
325 static void mlx4_en_netpoll(struct net_device *dev)
327 struct mlx4_en_priv *priv = netdev_priv(dev);
328 struct mlx4_en_cq *cq;
329 unsigned long flags;
330 int i;
332 for (i = 0; i < priv->rx_ring_num; i++) {
333 cq = &priv->rx_cq[i];
334 spin_lock_irqsave(&cq->lock, flags);
335 napi_synchronize(&cq->napi);
336 mlx4_en_process_rx_cq(dev, cq, 0);
337 spin_unlock_irqrestore(&cq->lock, flags);
340 #endif
342 static void mlx4_en_tx_timeout(struct net_device *dev)
344 struct mlx4_en_priv *priv = netdev_priv(dev);
345 struct mlx4_en_dev *mdev = priv->mdev;
347 if (netif_msg_timer(priv))
348 en_warn(priv, "Tx timeout called on port:%d\n", priv->port);
350 priv->port_stats.tx_timeout++;
351 en_dbg(DRV, priv, "Scheduling watchdog\n");
352 queue_work(mdev->workqueue, &priv->watchdog_task);
356 static struct net_device_stats *mlx4_en_get_stats(struct net_device *dev)
358 struct mlx4_en_priv *priv = netdev_priv(dev);
360 spin_lock_bh(&priv->stats_lock);
361 memcpy(&priv->ret_stats, &priv->stats, sizeof(priv->stats));
362 spin_unlock_bh(&priv->stats_lock);
364 return &priv->ret_stats;
367 static void mlx4_en_set_default_moderation(struct mlx4_en_priv *priv)
369 struct mlx4_en_cq *cq;
370 int i;
372 /* If we haven't received a specific coalescing setting
373 * (module param), we set the moderation parameters as follows:
374 * - moder_cnt is set to the number of mtu sized packets to
375 * satisfy our coelsing target.
376 * - moder_time is set to a fixed value.
378 priv->rx_frames = MLX4_EN_RX_COAL_TARGET;
379 priv->rx_usecs = MLX4_EN_RX_COAL_TIME;
380 en_dbg(INTR, priv, "Default coalesing params for mtu:%d - "
381 "rx_frames:%d rx_usecs:%d\n",
382 priv->dev->mtu, priv->rx_frames, priv->rx_usecs);
384 /* Setup cq moderation params */
385 for (i = 0; i < priv->rx_ring_num; i++) {
386 cq = &priv->rx_cq[i];
387 cq->moder_cnt = priv->rx_frames;
388 cq->moder_time = priv->rx_usecs;
391 for (i = 0; i < priv->tx_ring_num; i++) {
392 cq = &priv->tx_cq[i];
393 cq->moder_cnt = MLX4_EN_TX_COAL_PKTS;
394 cq->moder_time = MLX4_EN_TX_COAL_TIME;
397 /* Reset auto-moderation params */
398 priv->pkt_rate_low = MLX4_EN_RX_RATE_LOW;
399 priv->rx_usecs_low = MLX4_EN_RX_COAL_TIME_LOW;
400 priv->pkt_rate_high = MLX4_EN_RX_RATE_HIGH;
401 priv->rx_usecs_high = MLX4_EN_RX_COAL_TIME_HIGH;
402 priv->sample_interval = MLX4_EN_SAMPLE_INTERVAL;
403 priv->adaptive_rx_coal = 1;
404 priv->last_moder_time = MLX4_EN_AUTO_CONF;
405 priv->last_moder_jiffies = 0;
406 priv->last_moder_packets = 0;
407 priv->last_moder_tx_packets = 0;
408 priv->last_moder_bytes = 0;
411 static void mlx4_en_auto_moderation(struct mlx4_en_priv *priv)
413 unsigned long period = (unsigned long) (jiffies - priv->last_moder_jiffies);
414 struct mlx4_en_cq *cq;
415 unsigned long packets;
416 unsigned long rate;
417 unsigned long avg_pkt_size;
418 unsigned long rx_packets;
419 unsigned long rx_bytes;
420 unsigned long tx_packets;
421 unsigned long tx_pkt_diff;
422 unsigned long rx_pkt_diff;
423 int moder_time;
424 int i, err;
426 if (!priv->adaptive_rx_coal || period < priv->sample_interval * HZ)
427 return;
429 spin_lock_bh(&priv->stats_lock);
430 rx_packets = priv->stats.rx_packets;
431 rx_bytes = priv->stats.rx_bytes;
432 tx_packets = priv->stats.tx_packets;
433 spin_unlock_bh(&priv->stats_lock);
435 if (!priv->last_moder_jiffies || !period)
436 goto out;
438 tx_pkt_diff = ((unsigned long) (tx_packets -
439 priv->last_moder_tx_packets));
440 rx_pkt_diff = ((unsigned long) (rx_packets -
441 priv->last_moder_packets));
442 packets = max(tx_pkt_diff, rx_pkt_diff);
443 rate = packets * HZ / period;
444 avg_pkt_size = packets ? ((unsigned long) (rx_bytes -
445 priv->last_moder_bytes)) / packets : 0;
447 /* Apply auto-moderation only when packet rate exceeds a rate that
448 * it matters */
449 if (rate > MLX4_EN_RX_RATE_THRESH && avg_pkt_size > MLX4_EN_AVG_PKT_SMALL) {
450 /* If tx and rx packet rates are not balanced, assume that
451 * traffic is mainly BW bound and apply maximum moderation.
452 * Otherwise, moderate according to packet rate */
453 if (2 * tx_pkt_diff > 3 * rx_pkt_diff ||
454 2 * rx_pkt_diff > 3 * tx_pkt_diff) {
455 moder_time = priv->rx_usecs_high;
456 } else {
457 if (rate < priv->pkt_rate_low)
458 moder_time = priv->rx_usecs_low;
459 else if (rate > priv->pkt_rate_high)
460 moder_time = priv->rx_usecs_high;
461 else
462 moder_time = (rate - priv->pkt_rate_low) *
463 (priv->rx_usecs_high - priv->rx_usecs_low) /
464 (priv->pkt_rate_high - priv->pkt_rate_low) +
465 priv->rx_usecs_low;
467 } else {
468 moder_time = priv->rx_usecs_low;
471 en_dbg(INTR, priv, "tx rate:%lu rx_rate:%lu\n",
472 tx_pkt_diff * HZ / period, rx_pkt_diff * HZ / period);
474 en_dbg(INTR, priv, "Rx moder_time changed from:%d to %d period:%lu "
475 "[jiff] packets:%lu avg_pkt_size:%lu rate:%lu [p/s])\n",
476 priv->last_moder_time, moder_time, period, packets,
477 avg_pkt_size, rate);
479 if (moder_time != priv->last_moder_time) {
480 priv->last_moder_time = moder_time;
481 for (i = 0; i < priv->rx_ring_num; i++) {
482 cq = &priv->rx_cq[i];
483 cq->moder_time = moder_time;
484 err = mlx4_en_set_cq_moder(priv, cq);
485 if (err) {
486 en_err(priv, "Failed modifying moderation for cq:%d\n", i);
487 break;
492 out:
493 priv->last_moder_packets = rx_packets;
494 priv->last_moder_tx_packets = tx_packets;
495 priv->last_moder_bytes = rx_bytes;
496 priv->last_moder_jiffies = jiffies;
499 static void mlx4_en_do_get_stats(struct work_struct *work)
501 struct delayed_work *delay = to_delayed_work(work);
502 struct mlx4_en_priv *priv = container_of(delay, struct mlx4_en_priv,
503 stats_task);
504 struct mlx4_en_dev *mdev = priv->mdev;
505 int err;
507 err = mlx4_en_DUMP_ETH_STATS(mdev, priv->port, 0);
508 if (err)
509 en_dbg(HW, priv, "Could not update stats\n");
511 mutex_lock(&mdev->state_lock);
512 if (mdev->device_up) {
513 if (priv->port_up)
514 mlx4_en_auto_moderation(priv);
516 queue_delayed_work(mdev->workqueue, &priv->stats_task, STATS_DELAY);
518 if (mdev->mac_removed[MLX4_MAX_PORTS + 1 - priv->port]) {
519 queue_work(mdev->workqueue, &priv->mac_task);
520 mdev->mac_removed[MLX4_MAX_PORTS + 1 - priv->port] = 0;
522 mutex_unlock(&mdev->state_lock);
525 static void mlx4_en_linkstate(struct work_struct *work)
527 struct mlx4_en_priv *priv = container_of(work, struct mlx4_en_priv,
528 linkstate_task);
529 struct mlx4_en_dev *mdev = priv->mdev;
530 int linkstate = priv->link_state;
532 mutex_lock(&mdev->state_lock);
533 /* If observable port state changed set carrier state and
534 * report to system log */
535 if (priv->last_link_state != linkstate) {
536 if (linkstate == MLX4_DEV_EVENT_PORT_DOWN) {
537 en_info(priv, "Link Down\n");
538 netif_carrier_off(priv->dev);
539 } else {
540 en_info(priv, "Link Up\n");
541 netif_carrier_on(priv->dev);
544 priv->last_link_state = linkstate;
545 mutex_unlock(&mdev->state_lock);
549 int mlx4_en_start_port(struct net_device *dev)
551 struct mlx4_en_priv *priv = netdev_priv(dev);
552 struct mlx4_en_dev *mdev = priv->mdev;
553 struct mlx4_en_cq *cq;
554 struct mlx4_en_tx_ring *tx_ring;
555 int rx_index = 0;
556 int tx_index = 0;
557 int err = 0;
558 int i;
559 int j;
561 if (priv->port_up) {
562 en_dbg(DRV, priv, "start port called while port already up\n");
563 return 0;
566 /* Calculate Rx buf size */
567 dev->mtu = min(dev->mtu, priv->max_mtu);
568 mlx4_en_calc_rx_buf(dev);
569 en_dbg(DRV, priv, "Rx buf size:%d\n", priv->rx_skb_size);
571 /* Configure rx cq's and rings */
572 err = mlx4_en_activate_rx_rings(priv);
573 if (err) {
574 en_err(priv, "Failed to activate RX rings\n");
575 return err;
577 for (i = 0; i < priv->rx_ring_num; i++) {
578 cq = &priv->rx_cq[i];
580 err = mlx4_en_activate_cq(priv, cq);
581 if (err) {
582 en_err(priv, "Failed activating Rx CQ\n");
583 goto cq_err;
585 for (j = 0; j < cq->size; j++)
586 cq->buf[j].owner_sr_opcode = MLX4_CQE_OWNER_MASK;
587 err = mlx4_en_set_cq_moder(priv, cq);
588 if (err) {
589 en_err(priv, "Failed setting cq moderation parameters");
590 mlx4_en_deactivate_cq(priv, cq);
591 goto cq_err;
593 mlx4_en_arm_cq(priv, cq);
594 priv->rx_ring[i].cqn = cq->mcq.cqn;
595 ++rx_index;
598 err = mlx4_en_config_rss_steer(priv);
599 if (err) {
600 en_err(priv, "Failed configuring rss steering\n");
601 goto cq_err;
604 /* Configure tx cq's and rings */
605 for (i = 0; i < priv->tx_ring_num; i++) {
606 /* Configure cq */
607 cq = &priv->tx_cq[i];
608 err = mlx4_en_activate_cq(priv, cq);
609 if (err) {
610 en_err(priv, "Failed allocating Tx CQ\n");
611 goto tx_err;
613 err = mlx4_en_set_cq_moder(priv, cq);
614 if (err) {
615 en_err(priv, "Failed setting cq moderation parameters");
616 mlx4_en_deactivate_cq(priv, cq);
617 goto tx_err;
619 en_dbg(DRV, priv, "Resetting index of collapsed CQ:%d to -1\n", i);
620 cq->buf->wqe_index = cpu_to_be16(0xffff);
622 /* Configure ring */
623 tx_ring = &priv->tx_ring[i];
624 err = mlx4_en_activate_tx_ring(priv, tx_ring, cq->mcq.cqn);
625 if (err) {
626 en_err(priv, "Failed allocating Tx ring\n");
627 mlx4_en_deactivate_cq(priv, cq);
628 goto tx_err;
630 /* Set initial ownership of all Tx TXBBs to SW (1) */
631 for (j = 0; j < tx_ring->buf_size; j += STAMP_STRIDE)
632 *((u32 *) (tx_ring->buf + j)) = 0xffffffff;
633 ++tx_index;
636 /* Configure port */
637 err = mlx4_SET_PORT_general(mdev->dev, priv->port,
638 priv->rx_skb_size + ETH_FCS_LEN,
639 priv->prof->tx_pause,
640 priv->prof->tx_ppp,
641 priv->prof->rx_pause,
642 priv->prof->rx_ppp);
643 if (err) {
644 en_err(priv, "Failed setting port general configurations "
645 "for port %d, with error %d\n", priv->port, err);
646 goto tx_err;
648 /* Set default qp number */
649 err = mlx4_SET_PORT_qpn_calc(mdev->dev, priv->port, priv->base_qpn, 0);
650 if (err) {
651 en_err(priv, "Failed setting default qp numbers\n");
652 goto tx_err;
654 /* Set port mac number */
655 en_dbg(DRV, priv, "Setting mac for port %d\n", priv->port);
656 err = mlx4_register_mac(mdev->dev, priv->port,
657 priv->mac, &priv->mac_index);
658 if (err) {
659 en_err(priv, "Failed setting port mac\n");
660 goto tx_err;
662 mdev->mac_removed[priv->port] = 0;
664 /* Init port */
665 en_dbg(HW, priv, "Initializing port\n");
666 err = mlx4_INIT_PORT(mdev->dev, priv->port);
667 if (err) {
668 en_err(priv, "Failed Initializing port\n");
669 goto mac_err;
672 /* Schedule multicast task to populate multicast list */
673 queue_work(mdev->workqueue, &priv->mcast_task);
675 priv->port_up = true;
676 netif_tx_start_all_queues(dev);
677 return 0;
679 mac_err:
680 mlx4_unregister_mac(mdev->dev, priv->port, priv->mac_index);
681 tx_err:
682 while (tx_index--) {
683 mlx4_en_deactivate_tx_ring(priv, &priv->tx_ring[tx_index]);
684 mlx4_en_deactivate_cq(priv, &priv->tx_cq[tx_index]);
687 mlx4_en_release_rss_steer(priv);
688 cq_err:
689 while (rx_index--)
690 mlx4_en_deactivate_cq(priv, &priv->rx_cq[rx_index]);
691 for (i = 0; i < priv->rx_ring_num; i++)
692 mlx4_en_deactivate_rx_ring(priv, &priv->rx_ring[i]);
694 return err; /* need to close devices */
698 void mlx4_en_stop_port(struct net_device *dev)
700 struct mlx4_en_priv *priv = netdev_priv(dev);
701 struct mlx4_en_dev *mdev = priv->mdev;
702 int i;
704 if (!priv->port_up) {
705 en_dbg(DRV, priv, "stop port called while port already down\n");
706 return;
709 /* Synchronize with tx routine */
710 netif_tx_lock_bh(dev);
711 netif_tx_stop_all_queues(dev);
712 netif_tx_unlock_bh(dev);
714 /* Set port as not active */
715 priv->port_up = false;
717 /* Unregister Mac address for the port */
718 mlx4_unregister_mac(mdev->dev, priv->port, priv->mac_index);
719 mdev->mac_removed[priv->port] = 1;
721 /* Free TX Rings */
722 for (i = 0; i < priv->tx_ring_num; i++) {
723 mlx4_en_deactivate_tx_ring(priv, &priv->tx_ring[i]);
724 mlx4_en_deactivate_cq(priv, &priv->tx_cq[i]);
726 msleep(10);
728 for (i = 0; i < priv->tx_ring_num; i++)
729 mlx4_en_free_tx_buf(dev, &priv->tx_ring[i]);
731 /* Free RSS qps */
732 mlx4_en_release_rss_steer(priv);
734 /* Free RX Rings */
735 for (i = 0; i < priv->rx_ring_num; i++) {
736 mlx4_en_deactivate_rx_ring(priv, &priv->rx_ring[i]);
737 while (test_bit(NAPI_STATE_SCHED, &priv->rx_cq[i].napi.state))
738 msleep(1);
739 mlx4_en_deactivate_cq(priv, &priv->rx_cq[i]);
742 /* close port*/
743 mlx4_CLOSE_PORT(mdev->dev, priv->port);
746 static void mlx4_en_restart(struct work_struct *work)
748 struct mlx4_en_priv *priv = container_of(work, struct mlx4_en_priv,
749 watchdog_task);
750 struct mlx4_en_dev *mdev = priv->mdev;
751 struct net_device *dev = priv->dev;
753 en_dbg(DRV, priv, "Watchdog task called for port %d\n", priv->port);
755 mutex_lock(&mdev->state_lock);
756 if (priv->port_up) {
757 mlx4_en_stop_port(dev);
758 if (mlx4_en_start_port(dev))
759 en_err(priv, "Failed restarting port %d\n", priv->port);
761 mutex_unlock(&mdev->state_lock);
765 static int mlx4_en_open(struct net_device *dev)
767 struct mlx4_en_priv *priv = netdev_priv(dev);
768 struct mlx4_en_dev *mdev = priv->mdev;
769 int i;
770 int err = 0;
772 mutex_lock(&mdev->state_lock);
774 if (!mdev->device_up) {
775 en_err(priv, "Cannot open - device down/disabled\n");
776 err = -EBUSY;
777 goto out;
780 /* Reset HW statistics and performance counters */
781 if (mlx4_en_DUMP_ETH_STATS(mdev, priv->port, 1))
782 en_dbg(HW, priv, "Failed dumping statistics\n");
784 memset(&priv->stats, 0, sizeof(priv->stats));
785 memset(&priv->pstats, 0, sizeof(priv->pstats));
787 for (i = 0; i < priv->tx_ring_num; i++) {
788 priv->tx_ring[i].bytes = 0;
789 priv->tx_ring[i].packets = 0;
791 for (i = 0; i < priv->rx_ring_num; i++) {
792 priv->rx_ring[i].bytes = 0;
793 priv->rx_ring[i].packets = 0;
796 err = mlx4_en_start_port(dev);
797 if (err)
798 en_err(priv, "Failed starting port:%d\n", priv->port);
800 out:
801 mutex_unlock(&mdev->state_lock);
802 return err;
806 static int mlx4_en_close(struct net_device *dev)
808 struct mlx4_en_priv *priv = netdev_priv(dev);
809 struct mlx4_en_dev *mdev = priv->mdev;
811 en_dbg(IFDOWN, priv, "Close port called\n");
813 mutex_lock(&mdev->state_lock);
815 mlx4_en_stop_port(dev);
816 netif_carrier_off(dev);
818 mutex_unlock(&mdev->state_lock);
819 return 0;
822 void mlx4_en_free_resources(struct mlx4_en_priv *priv)
824 int i;
826 for (i = 0; i < priv->tx_ring_num; i++) {
827 if (priv->tx_ring[i].tx_info)
828 mlx4_en_destroy_tx_ring(priv, &priv->tx_ring[i]);
829 if (priv->tx_cq[i].buf)
830 mlx4_en_destroy_cq(priv, &priv->tx_cq[i]);
833 for (i = 0; i < priv->rx_ring_num; i++) {
834 if (priv->rx_ring[i].rx_info)
835 mlx4_en_destroy_rx_ring(priv, &priv->rx_ring[i]);
836 if (priv->rx_cq[i].buf)
837 mlx4_en_destroy_cq(priv, &priv->rx_cq[i]);
841 int mlx4_en_alloc_resources(struct mlx4_en_priv *priv)
843 struct mlx4_en_port_profile *prof = priv->prof;
844 int i;
846 /* Create tx Rings */
847 for (i = 0; i < priv->tx_ring_num; i++) {
848 if (mlx4_en_create_cq(priv, &priv->tx_cq[i],
849 prof->tx_ring_size, i, TX))
850 goto err;
852 if (mlx4_en_create_tx_ring(priv, &priv->tx_ring[i],
853 prof->tx_ring_size, TXBB_SIZE))
854 goto err;
857 /* Create rx Rings */
858 for (i = 0; i < priv->rx_ring_num; i++) {
859 if (mlx4_en_create_cq(priv, &priv->rx_cq[i],
860 prof->rx_ring_size, i, RX))
861 goto err;
863 if (mlx4_en_create_rx_ring(priv, &priv->rx_ring[i],
864 prof->rx_ring_size, priv->stride))
865 goto err;
868 return 0;
870 err:
871 en_err(priv, "Failed to allocate NIC resources\n");
872 return -ENOMEM;
876 void mlx4_en_destroy_netdev(struct net_device *dev)
878 struct mlx4_en_priv *priv = netdev_priv(dev);
879 struct mlx4_en_dev *mdev = priv->mdev;
881 en_dbg(DRV, priv, "Destroying netdev on port:%d\n", priv->port);
883 /* Unregister device - this will close the port if it was up */
884 if (priv->registered)
885 unregister_netdev(dev);
887 if (priv->allocated)
888 mlx4_free_hwq_res(mdev->dev, &priv->res, MLX4_EN_PAGE_SIZE);
890 cancel_delayed_work(&priv->stats_task);
891 /* flush any pending task for this netdev */
892 flush_workqueue(mdev->workqueue);
894 /* Detach the netdev so tasks would not attempt to access it */
895 mutex_lock(&mdev->state_lock);
896 mdev->pndev[priv->port] = NULL;
897 mutex_unlock(&mdev->state_lock);
899 mlx4_en_free_resources(priv);
900 free_netdev(dev);
903 static int mlx4_en_change_mtu(struct net_device *dev, int new_mtu)
905 struct mlx4_en_priv *priv = netdev_priv(dev);
906 struct mlx4_en_dev *mdev = priv->mdev;
907 int err = 0;
909 en_dbg(DRV, priv, "Change MTU called - current:%d new:%d\n",
910 dev->mtu, new_mtu);
912 if ((new_mtu < MLX4_EN_MIN_MTU) || (new_mtu > priv->max_mtu)) {
913 en_err(priv, "Bad MTU size:%d.\n", new_mtu);
914 return -EPERM;
916 dev->mtu = new_mtu;
918 if (netif_running(dev)) {
919 mutex_lock(&mdev->state_lock);
920 if (!mdev->device_up) {
921 /* NIC is probably restarting - let watchdog task reset
922 * the port */
923 en_dbg(DRV, priv, "Change MTU called with card down!?\n");
924 } else {
925 mlx4_en_stop_port(dev);
926 err = mlx4_en_start_port(dev);
927 if (err) {
928 en_err(priv, "Failed restarting port:%d\n",
929 priv->port);
930 queue_work(mdev->workqueue, &priv->watchdog_task);
933 mutex_unlock(&mdev->state_lock);
935 return 0;
938 static const struct net_device_ops mlx4_netdev_ops = {
939 .ndo_open = mlx4_en_open,
940 .ndo_stop = mlx4_en_close,
941 .ndo_start_xmit = mlx4_en_xmit,
942 .ndo_select_queue = mlx4_en_select_queue,
943 .ndo_get_stats = mlx4_en_get_stats,
944 .ndo_set_multicast_list = mlx4_en_set_multicast,
945 .ndo_set_mac_address = mlx4_en_set_mac,
946 .ndo_validate_addr = eth_validate_addr,
947 .ndo_change_mtu = mlx4_en_change_mtu,
948 .ndo_tx_timeout = mlx4_en_tx_timeout,
949 .ndo_vlan_rx_register = mlx4_en_vlan_rx_register,
950 .ndo_vlan_rx_add_vid = mlx4_en_vlan_rx_add_vid,
951 .ndo_vlan_rx_kill_vid = mlx4_en_vlan_rx_kill_vid,
952 #ifdef CONFIG_NET_POLL_CONTROLLER
953 .ndo_poll_controller = mlx4_en_netpoll,
954 #endif
957 int mlx4_en_init_netdev(struct mlx4_en_dev *mdev, int port,
958 struct mlx4_en_port_profile *prof)
960 struct net_device *dev;
961 struct mlx4_en_priv *priv;
962 int i;
963 int err;
965 dev = alloc_etherdev_mqs(sizeof(struct mlx4_en_priv),
966 prof->tx_ring_num, prof->rx_ring_num);
967 if (dev == NULL) {
968 mlx4_err(mdev, "Net device allocation failed\n");
969 return -ENOMEM;
972 SET_NETDEV_DEV(dev, &mdev->dev->pdev->dev);
973 dev->dev_id = port - 1;
976 * Initialize driver private data
979 priv = netdev_priv(dev);
980 memset(priv, 0, sizeof(struct mlx4_en_priv));
981 priv->dev = dev;
982 priv->mdev = mdev;
983 priv->prof = prof;
984 priv->port = port;
985 priv->port_up = false;
986 priv->rx_csum = 1;
987 priv->flags = prof->flags;
988 priv->tx_ring_num = prof->tx_ring_num;
989 priv->rx_ring_num = prof->rx_ring_num;
990 priv->mac_index = -1;
991 priv->msg_enable = MLX4_EN_MSG_LEVEL;
992 spin_lock_init(&priv->stats_lock);
993 INIT_WORK(&priv->mcast_task, mlx4_en_do_set_multicast);
994 INIT_WORK(&priv->mac_task, mlx4_en_do_set_mac);
995 INIT_WORK(&priv->watchdog_task, mlx4_en_restart);
996 INIT_WORK(&priv->linkstate_task, mlx4_en_linkstate);
997 INIT_DELAYED_WORK(&priv->stats_task, mlx4_en_do_get_stats);
999 /* Query for default mac and max mtu */
1000 priv->max_mtu = mdev->dev->caps.eth_mtu_cap[priv->port];
1001 priv->mac = mdev->dev->caps.def_mac[priv->port];
1002 if (ILLEGAL_MAC(priv->mac)) {
1003 en_err(priv, "Port: %d, invalid mac burned: 0x%llx, quiting\n",
1004 priv->port, priv->mac);
1005 err = -EINVAL;
1006 goto out;
1009 priv->stride = roundup_pow_of_two(sizeof(struct mlx4_en_rx_desc) +
1010 DS_SIZE * MLX4_EN_MAX_RX_FRAGS);
1011 err = mlx4_en_alloc_resources(priv);
1012 if (err)
1013 goto out;
1015 /* Allocate page for receive rings */
1016 err = mlx4_alloc_hwq_res(mdev->dev, &priv->res,
1017 MLX4_EN_PAGE_SIZE, MLX4_EN_PAGE_SIZE);
1018 if (err) {
1019 en_err(priv, "Failed to allocate page for rx qps\n");
1020 goto out;
1022 priv->allocated = 1;
1025 * Initialize netdev entry points
1027 dev->netdev_ops = &mlx4_netdev_ops;
1028 dev->watchdog_timeo = MLX4_EN_WATCHDOG_TIMEOUT;
1029 netif_set_real_num_tx_queues(dev, priv->tx_ring_num);
1030 netif_set_real_num_rx_queues(dev, priv->rx_ring_num);
1032 SET_ETHTOOL_OPS(dev, &mlx4_en_ethtool_ops);
1034 /* Set defualt MAC */
1035 dev->addr_len = ETH_ALEN;
1036 for (i = 0; i < ETH_ALEN; i++) {
1037 dev->dev_addr[ETH_ALEN - 1 - i] = (u8) (priv->mac >> (8 * i));
1038 dev->perm_addr[ETH_ALEN - 1 - i] = (u8) (priv->mac >> (8 * i));
1042 * Set driver features
1044 dev->features |= NETIF_F_SG;
1045 dev->vlan_features |= NETIF_F_SG;
1046 dev->features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
1047 dev->vlan_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
1048 dev->features |= NETIF_F_HIGHDMA;
1049 dev->features |= NETIF_F_HW_VLAN_TX |
1050 NETIF_F_HW_VLAN_RX |
1051 NETIF_F_HW_VLAN_FILTER;
1052 dev->features |= NETIF_F_GRO;
1053 if (mdev->LSO_support) {
1054 dev->features |= NETIF_F_TSO;
1055 dev->features |= NETIF_F_TSO6;
1056 dev->vlan_features |= NETIF_F_TSO;
1057 dev->vlan_features |= NETIF_F_TSO6;
1060 mdev->pndev[port] = dev;
1062 netif_carrier_off(dev);
1063 err = register_netdev(dev);
1064 if (err) {
1065 en_err(priv, "Netdev registration failed for port %d\n", port);
1066 goto out;
1069 en_warn(priv, "Using %d TX rings\n", prof->tx_ring_num);
1070 en_warn(priv, "Using %d RX rings\n", prof->rx_ring_num);
1072 /* Configure port */
1073 err = mlx4_SET_PORT_general(mdev->dev, priv->port,
1074 MLX4_EN_MIN_MTU,
1075 0, 0, 0, 0);
1076 if (err) {
1077 en_err(priv, "Failed setting port general configurations "
1078 "for port %d, with error %d\n", priv->port, err);
1079 goto out;
1082 /* Init port */
1083 en_warn(priv, "Initializing port\n");
1084 err = mlx4_INIT_PORT(mdev->dev, priv->port);
1085 if (err) {
1086 en_err(priv, "Failed Initializing port\n");
1087 goto out;
1089 priv->registered = 1;
1090 mlx4_en_set_default_moderation(priv);
1091 queue_delayed_work(mdev->workqueue, &priv->stats_task, STATS_DELAY);
1092 return 0;
1094 out:
1095 mlx4_en_destroy_netdev(dev);
1096 return err;