2 * This file is provided under a dual BSD/GPLv2 license. When using or
3 * redistributing this file, you may do so under either license.
7 * Copyright(c) 2012 Intel Corporation. All rights reserved.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
15 * Copyright(c) 2012 Intel Corporation. All rights reserved.
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
21 * * Redistributions of source code must retain the above copyright
22 * notice, this list of conditions and the following disclaimer.
23 * * Redistributions in binary form must reproduce the above copy
24 * notice, this list of conditions and the following disclaimer in
25 * the documentation and/or other materials provided with the
27 * * Neither the name of Intel Corporation nor the names of its
28 * contributors may be used to endorse or promote products derived
29 * from this software without specific prior written permission.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
37 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
38 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
39 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
41 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43 * Intel PCIe NTB Network Linux driver
45 * Contact Information:
46 * Jon Mason <jon.mason@intel.com>
48 #include <linux/etherdevice.h>
49 #include <linux/ethtool.h>
50 #include <linux/module.h>
51 #include <linux/pci.h>
52 #include <linux/ntb.h>
54 #define NTB_NETDEV_VER "0.6"
56 MODULE_DESCRIPTION(KBUILD_MODNAME);
57 MODULE_VERSION(NTB_NETDEV_VER);
58 MODULE_LICENSE("Dual BSD/GPL");
59 MODULE_AUTHOR("Intel Corporation");
62 struct list_head list;
64 struct net_device *ndev;
65 struct ntb_transport_qp *qp;
68 #define NTB_TX_TIMEOUT_MS 1000
69 #define NTB_RXQ_SIZE 100
71 static LIST_HEAD(dev_list);
73 static void ntb_netdev_event_handler(void *data, int status)
75 struct net_device *ndev = data;
76 struct ntb_netdev *dev = netdev_priv(ndev);
78 netdev_dbg(ndev, "Event %x, Link %x\n", status,
79 ntb_transport_link_query(dev->qp));
81 /* Currently, only link status event is supported */
83 netif_carrier_on(ndev);
85 netif_carrier_off(ndev);
88 static void ntb_netdev_rx_handler(struct ntb_transport_qp *qp, void *qp_data,
91 struct net_device *ndev = qp_data;
99 netdev_dbg(ndev, "%s: %d byte payload received\n", __func__, len);
102 skb->protocol = eth_type_trans(skb, ndev);
103 skb->ip_summed = CHECKSUM_NONE;
105 if (netif_rx(skb) == NET_RX_DROP) {
106 ndev->stats.rx_errors++;
107 ndev->stats.rx_dropped++;
109 ndev->stats.rx_packets++;
110 ndev->stats.rx_bytes += len;
113 skb = netdev_alloc_skb(ndev, ndev->mtu + ETH_HLEN);
115 ndev->stats.rx_errors++;
116 ndev->stats.rx_frame_errors++;
120 rc = ntb_transport_rx_enqueue(qp, skb, skb->data, ndev->mtu + ETH_HLEN);
123 ndev->stats.rx_errors++;
124 ndev->stats.rx_fifo_errors++;
128 static void ntb_netdev_tx_handler(struct ntb_transport_qp *qp, void *qp_data,
131 struct net_device *ndev = qp_data;
139 ndev->stats.tx_packets++;
140 ndev->stats.tx_bytes += skb->len;
142 ndev->stats.tx_errors++;
143 ndev->stats.tx_aborted_errors++;
148 if (netif_queue_stopped(ndev))
149 netif_wake_queue(ndev);
152 static netdev_tx_t ntb_netdev_start_xmit(struct sk_buff *skb,
153 struct net_device *ndev)
155 struct ntb_netdev *dev = netdev_priv(ndev);
158 netdev_dbg(ndev, "ntb_transport_tx_enqueue\n");
160 rc = ntb_transport_tx_enqueue(dev->qp, skb, skb->data, skb->len);
167 ndev->stats.tx_dropped++;
168 ndev->stats.tx_errors++;
169 netif_stop_queue(ndev);
170 return NETDEV_TX_BUSY;
173 static int ntb_netdev_open(struct net_device *ndev)
175 struct ntb_netdev *dev = netdev_priv(ndev);
179 /* Add some empty rx bufs */
180 for (i = 0; i < NTB_RXQ_SIZE; i++) {
181 skb = netdev_alloc_skb(ndev, ndev->mtu + ETH_HLEN);
187 rc = ntb_transport_rx_enqueue(dev->qp, skb, skb->data,
188 ndev->mtu + ETH_HLEN);
193 netif_carrier_off(ndev);
194 ntb_transport_link_up(dev->qp);
199 while ((skb = ntb_transport_rx_remove(dev->qp, &len)))
204 static int ntb_netdev_close(struct net_device *ndev)
206 struct ntb_netdev *dev = netdev_priv(ndev);
210 ntb_transport_link_down(dev->qp);
212 while ((skb = ntb_transport_rx_remove(dev->qp, &len)))
218 static int ntb_netdev_change_mtu(struct net_device *ndev, int new_mtu)
220 struct ntb_netdev *dev = netdev_priv(ndev);
224 if (new_mtu > ntb_transport_max_size(dev->qp) - ETH_HLEN)
227 if (!netif_running(ndev)) {
232 /* Bring down the link and dispose of posted rx entries */
233 ntb_transport_link_down(dev->qp);
235 if (ndev->mtu < new_mtu) {
238 for (i = 0; (skb = ntb_transport_rx_remove(dev->qp, &len)); i++)
242 skb = netdev_alloc_skb(ndev, new_mtu + ETH_HLEN);
248 rc = ntb_transport_rx_enqueue(dev->qp, skb, skb->data,
259 ntb_transport_link_up(dev->qp);
264 ntb_transport_link_down(dev->qp);
266 while ((skb = ntb_transport_rx_remove(dev->qp, &len)))
269 netdev_err(ndev, "Error changing MTU, device inoperable\n");
273 static void ntb_netdev_tx_timeout(struct net_device *ndev)
275 if (netif_running(ndev))
276 netif_wake_queue(ndev);
279 static const struct net_device_ops ntb_netdev_ops = {
280 .ndo_open = ntb_netdev_open,
281 .ndo_stop = ntb_netdev_close,
282 .ndo_start_xmit = ntb_netdev_start_xmit,
283 .ndo_change_mtu = ntb_netdev_change_mtu,
284 .ndo_tx_timeout = ntb_netdev_tx_timeout,
285 .ndo_set_mac_address = eth_mac_addr,
288 static void ntb_get_drvinfo(struct net_device *ndev,
289 struct ethtool_drvinfo *info)
291 struct ntb_netdev *dev = netdev_priv(ndev);
293 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
294 strlcpy(info->version, NTB_NETDEV_VER, sizeof(info->version));
295 strlcpy(info->bus_info, pci_name(dev->pdev), sizeof(info->bus_info));
298 static int ntb_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
300 cmd->supported = SUPPORTED_Backplane;
301 cmd->advertising = ADVERTISED_Backplane;
302 cmd->speed = SPEED_UNKNOWN;
303 ethtool_cmd_speed_set(cmd, SPEED_UNKNOWN);
304 cmd->duplex = DUPLEX_FULL;
305 cmd->port = PORT_OTHER;
306 cmd->phy_address = 0;
307 cmd->transceiver = XCVR_DUMMY1;
308 cmd->autoneg = AUTONEG_ENABLE;
315 static const struct ethtool_ops ntb_ethtool_ops = {
316 .get_drvinfo = ntb_get_drvinfo,
317 .get_link = ethtool_op_get_link,
318 .get_settings = ntb_get_settings,
321 static const struct ntb_queue_handlers ntb_netdev_handlers = {
322 .tx_handler = ntb_netdev_tx_handler,
323 .rx_handler = ntb_netdev_rx_handler,
324 .event_handler = ntb_netdev_event_handler,
327 static int ntb_netdev_probe(struct pci_dev *pdev)
329 struct net_device *ndev;
330 struct ntb_netdev *dev;
333 ndev = alloc_etherdev(sizeof(struct ntb_netdev));
337 dev = netdev_priv(ndev);
341 ndev->features = NETIF_F_HIGHDMA;
343 ndev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
345 ndev->hw_features = ndev->features;
346 ndev->watchdog_timeo = msecs_to_jiffies(NTB_TX_TIMEOUT_MS);
348 random_ether_addr(ndev->perm_addr);
349 memcpy(ndev->dev_addr, ndev->perm_addr, ndev->addr_len);
351 ndev->netdev_ops = &ntb_netdev_ops;
352 SET_ETHTOOL_OPS(ndev, &ntb_ethtool_ops);
354 dev->qp = ntb_transport_create_queue(ndev, pdev, &ntb_netdev_handlers);
360 ndev->mtu = ntb_transport_max_size(dev->qp) - ETH_HLEN;
362 rc = register_netdev(ndev);
366 list_add(&dev->list, &dev_list);
367 pr_info("%s: %s created\n", KBUILD_MODNAME, ndev->name);
371 ntb_transport_free_queue(dev->qp);
377 static void ntb_netdev_remove(struct pci_dev *pdev)
379 struct net_device *ndev;
380 struct ntb_netdev *dev;
382 list_for_each_entry(dev, &dev_list, list) {
383 if (dev->pdev == pdev)
391 unregister_netdev(ndev);
392 ntb_transport_free_queue(dev->qp);
396 static struct ntb_client ntb_netdev_client = {
397 .driver.name = KBUILD_MODNAME,
398 .driver.owner = THIS_MODULE,
399 .probe = ntb_netdev_probe,
400 .remove = ntb_netdev_remove,
403 static int __init ntb_netdev_init_module(void)
407 rc = ntb_register_client_dev(KBUILD_MODNAME);
410 return ntb_register_client(&ntb_netdev_client);
412 module_init(ntb_netdev_init_module);
414 static void __exit ntb_netdev_exit_module(void)
416 ntb_unregister_client(&ntb_netdev_client);
417 ntb_unregister_client_dev(KBUILD_MODNAME);
418 pr_info("%s: Driver removed\n", KBUILD_MODNAME);
420 module_exit(ntb_netdev_exit_module);