blob: b7cbd126f20a3ed5fc925428daab74b1b9447941 [file] [log] [blame]
Hank Janssenfceaf242009-07-13 15:34:54 -07001/*
Hank Janssenfceaf242009-07-13 15:34:54 -07002 * Copyright (c) 2009, Microsoft Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
16 *
17 * Authors:
Haiyang Zhangd0e94d12009-11-23 17:00:22 +000018 * Haiyang Zhang <haiyangz@microsoft.com>
Hank Janssenfceaf242009-07-13 15:34:54 -070019 * Hank Janssen <hjanssen@microsoft.com>
Hank Janssenfceaf242009-07-13 15:34:54 -070020 */
Hank Jansseneb335bc2011-03-29 13:58:48 -070021#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
Hank Janssenfceaf242009-07-13 15:34:54 -070023#include <linux/init.h>
K. Y. Srinivasan9079ce62011-06-16 13:16:37 -070024#include <linux/atomic.h>
Hank Janssenfceaf242009-07-13 15:34:54 -070025#include <linux/module.h>
26#include <linux/highmem.h>
27#include <linux/device.h>
Hank Janssenfceaf242009-07-13 15:34:54 -070028#include <linux/io.h>
Hank Janssenfceaf242009-07-13 15:34:54 -070029#include <linux/delay.h>
30#include <linux/netdevice.h>
31#include <linux/inetdevice.h>
32#include <linux/etherdevice.h>
33#include <linux/skbuff.h>
34#include <linux/in.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Hank Janssenfceaf242009-07-13 15:34:54 -070036#include <net/arp.h>
37#include <net/route.h>
38#include <net/sock.h>
39#include <net/pkt_sched.h>
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070040
K. Y. Srinivasan5ca72522011-05-12 19:34:37 -070041#include "hyperv_net.h"
Hank Janssenfceaf242009-07-13 15:34:54 -070042
Hank Janssenfceaf242009-07-13 15:34:54 -070043struct net_device_context {
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -070044 /* point back to our device context */
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -080045 struct hv_device *device_ctx;
Haiyang Zhang122a5f62011-05-27 06:21:55 -070046 struct delayed_work dwork;
Hank Janssenfceaf242009-07-13 15:34:54 -070047};
48
Hank Janssenfceaf242009-07-13 15:34:54 -070049
Hank Janssen99c8da02010-10-12 10:45:23 -070050static int ring_size = 128;
Stephen Hemminger450d7a42010-05-04 09:58:53 -070051module_param(ring_size, int, S_IRUGO);
52MODULE_PARM_DESC(ring_size, "Ring buffer size (# of pages)");
Hank Janssenfceaf242009-07-13 15:34:54 -070053
Haiyang Zhangd426b2e2011-11-30 07:19:08 -080054struct set_multicast_work {
55 struct work_struct work;
56 struct net_device *net;
57};
58
59static void do_set_multicast(struct work_struct *w)
60{
61 struct set_multicast_work *swk =
62 container_of(w, struct set_multicast_work, work);
63 struct net_device *net = swk->net;
64
65 struct net_device_context *ndevctx = netdev_priv(net);
66 struct netvsc_device *nvdev;
67 struct rndis_device *rdev;
68
69 nvdev = hv_get_drvdata(ndevctx->device_ctx);
70 if (nvdev == NULL)
71 return;
72
73 rdev = nvdev->extension;
74 if (rdev == NULL)
75 return;
76
77 if (net->flags & IFF_PROMISC)
78 rndis_filter_set_packet_filter(rdev,
79 NDIS_PACKET_TYPE_PROMISCUOUS);
80 else
81 rndis_filter_set_packet_filter(rdev,
82 NDIS_PACKET_TYPE_BROADCAST |
83 NDIS_PACKET_TYPE_ALL_MULTICAST |
84 NDIS_PACKET_TYPE_DIRECTED);
85
86 kfree(w);
87}
88
Greg Kroah-Hartman4e9bfef2009-07-15 12:45:20 -070089static void netvsc_set_multicast_list(struct net_device *net)
Hank Janssenfceaf242009-07-13 15:34:54 -070090{
Haiyang Zhangd426b2e2011-11-30 07:19:08 -080091 struct set_multicast_work *swk =
92 kmalloc(sizeof(struct set_multicast_work), GFP_ATOMIC);
93 if (swk == NULL)
94 return;
95
96 swk->net = net;
97 INIT_WORK(&swk->work, do_set_multicast);
98 schedule_work(&swk->work);
Hank Janssenfceaf242009-07-13 15:34:54 -070099}
100
Hank Janssenfceaf242009-07-13 15:34:54 -0700101static int netvsc_open(struct net_device *net)
102{
Hank Janssenfceaf242009-07-13 15:34:54 -0700103 struct net_device_context *net_device_ctx = netdev_priv(net);
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800104 struct hv_device *device_obj = net_device_ctx->device_ctx;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700105 int ret = 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700106
Haiyang Zhangd515d0f2011-09-28 13:24:15 -0700107 /* Open up the device */
108 ret = rndis_filter_open(device_obj);
109 if (ret != 0) {
110 netdev_err(net, "unable to open device (ret %d).\n", ret);
111 return ret;
Hank Janssenfceaf242009-07-13 15:34:54 -0700112 }
113
Haiyang Zhangd515d0f2011-09-28 13:24:15 -0700114 netif_start_queue(net);
115
Hank Janssenfceaf242009-07-13 15:34:54 -0700116 return ret;
117}
118
Hank Janssenfceaf242009-07-13 15:34:54 -0700119static int netvsc_close(struct net_device *net)
120{
Hank Janssenfceaf242009-07-13 15:34:54 -0700121 struct net_device_context *net_device_ctx = netdev_priv(net);
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800122 struct hv_device *device_obj = net_device_ctx->device_ctx;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700123 int ret;
Hank Janssenfceaf242009-07-13 15:34:54 -0700124
Hank Janssenfceaf242009-07-13 15:34:54 -0700125 netif_stop_queue(net);
126
Haiyang Zhang9c26aa02010-12-10 12:03:57 -0800127 ret = rndis_filter_close(device_obj);
Hank Janssenfceaf242009-07-13 15:34:54 -0700128 if (ret != 0)
Hank Jansseneb335bc2011-03-29 13:58:48 -0700129 netdev_err(net, "unable to close device (ret %d).\n", ret);
Hank Janssenfceaf242009-07-13 15:34:54 -0700130
Hank Janssenfceaf242009-07-13 15:34:54 -0700131 return ret;
132}
133
Hank Janssenfceaf242009-07-13 15:34:54 -0700134static void netvsc_xmit_completion(void *context)
135{
Nicolas Palix4193d4f2009-07-29 14:10:10 +0200136 struct hv_netvsc_packet *packet = (struct hv_netvsc_packet *)context;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700137 struct sk_buff *skb = (struct sk_buff *)
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800138 (unsigned long)packet->completion.send.send_completion_tid;
Hank Janssenfceaf242009-07-13 15:34:54 -0700139
Hank Janssenfceaf242009-07-13 15:34:54 -0700140 kfree(packet);
141
Haiyang Zhang1d068252011-12-02 11:56:25 -0800142 if (skb)
Hank Janssenfceaf242009-07-13 15:34:54 -0700143 dev_kfree_skb_any(skb);
Hank Janssenfceaf242009-07-13 15:34:54 -0700144}
145
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700146static int netvsc_start_xmit(struct sk_buff *skb, struct net_device *net)
Hank Janssenfceaf242009-07-13 15:34:54 -0700147{
Hank Janssenfceaf242009-07-13 15:34:54 -0700148 struct net_device_context *net_device_ctx = netdev_priv(net);
Nicolas Palix4193d4f2009-07-29 14:10:10 +0200149 struct hv_netvsc_packet *packet;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700150 int ret;
Stephen Hemminger60487182010-05-04 09:58:55 -0700151 unsigned int i, num_pages;
Hank Janssenfceaf242009-07-13 15:34:54 -0700152
Stephen Hemminger60487182010-05-04 09:58:55 -0700153 /* Add 1 for skb->data and additional one for RNDIS */
154 num_pages = skb_shinfo(skb)->nr_frags + 1 + 1;
Hank Janssenfceaf242009-07-13 15:34:54 -0700155
Bill Pemberton454f18a2009-07-27 16:47:24 -0400156 /* Allocate a netvsc packet based on # of frags. */
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700157 packet = kzalloc(sizeof(struct hv_netvsc_packet) +
Stephen Hemminger60487182010-05-04 09:58:55 -0700158 (num_pages * sizeof(struct hv_page_buffer)) +
K. Y. Srinivasanf8ba8c72011-05-12 19:35:01 -0700159 sizeof(struct rndis_filter_packet), GFP_ATOMIC);
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700160 if (!packet) {
Haiyang Zhangbf769372011-09-01 12:19:46 -0700161 /* out of memory, drop packet */
Hank Jansseneb335bc2011-03-29 13:58:48 -0700162 netdev_err(net, "unable to allocate hv_netvsc_packet\n");
Stephen Hemmingerb220f5f2010-05-04 09:58:56 -0700163
164 dev_kfree_skb(skb);
165 net->stats.tx_dropped++;
Haiyang Zhangbf769372011-09-01 12:19:46 -0700166 return NETDEV_TX_BUSY;
Hank Janssenfceaf242009-07-13 15:34:54 -0700167 }
168
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800169 packet->extension = (void *)(unsigned long)packet +
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700170 sizeof(struct hv_netvsc_packet) +
Stephen Hemminger60487182010-05-04 09:58:55 -0700171 (num_pages * sizeof(struct hv_page_buffer));
Hank Janssenfceaf242009-07-13 15:34:54 -0700172
Bill Pemberton454f18a2009-07-27 16:47:24 -0400173 /* Setup the rndis header */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800174 packet->page_buf_cnt = num_pages;
Hank Janssenfceaf242009-07-13 15:34:54 -0700175
Bill Pemberton454f18a2009-07-27 16:47:24 -0400176 /* Initialize it from the skb */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800177 packet->total_data_buflen = skb->len;
Hank Janssenfceaf242009-07-13 15:34:54 -0700178
Stephen Hemminger60487182010-05-04 09:58:55 -0700179 /* Start filling in the page buffers starting after RNDIS buffer. */
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800180 packet->page_buf[1].pfn = virt_to_phys(skb->data) >> PAGE_SHIFT;
181 packet->page_buf[1].offset
Stephen Hemminger60487182010-05-04 09:58:55 -0700182 = (unsigned long)skb->data & (PAGE_SIZE - 1);
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800183 packet->page_buf[1].len = skb_headlen(skb);
Hank Janssenfceaf242009-07-13 15:34:54 -0700184
Stephen Hemminger60487182010-05-04 09:58:55 -0700185 /* Additional fragments are after SKB data */
186 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000187 const skb_frag_t *f = &skb_shinfo(skb)->frags[i];
Hank Janssenfceaf242009-07-13 15:34:54 -0700188
Ian Campbell6caaf902011-10-05 00:28:49 +0000189 packet->page_buf[i+2].pfn = page_to_pfn(skb_frag_page(f));
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800190 packet->page_buf[i+2].offset = f->page_offset;
Eric Dumazet9e903e02011-10-18 21:00:24 +0000191 packet->page_buf[i+2].len = skb_frag_size(f);
Hank Janssenfceaf242009-07-13 15:34:54 -0700192 }
193
Bill Pemberton454f18a2009-07-27 16:47:24 -0400194 /* Set the completion routine */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800195 packet->completion.send.send_completion = netvsc_xmit_completion;
196 packet->completion.send.send_completion_ctx = packet;
197 packet->completion.send.send_completion_tid = (unsigned long)skb;
Hank Janssenfceaf242009-07-13 15:34:54 -0700198
K. Y. Srinivasan55acb692011-05-12 19:34:54 -0700199 ret = rndis_filter_send(net_device_ctx->device_ctx,
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700200 packet);
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700201 if (ret == 0) {
Stephen Hemmingerb852fdc2010-03-09 17:42:33 -0800202 net->stats.tx_bytes += skb->len;
203 net->stats.tx_packets++;
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700204 } else {
Stephen Hemmingerb220f5f2010-05-04 09:58:56 -0700205 /* we are shutting down or bus overloaded, just drop packet */
Stephen Hemmingerb852fdc2010-03-09 17:42:33 -0800206 net->stats.tx_dropped++;
Haiyang Zhang8a5f9ed2011-09-01 12:19:45 -0700207 kfree(packet);
208 dev_kfree_skb_any(skb);
Hank Janssenfceaf242009-07-13 15:34:54 -0700209 }
210
Haiyang Zhangbf769372011-09-01 12:19:46 -0700211 return ret ? NETDEV_TX_BUSY : NETDEV_TX_OK;
Hank Janssenfceaf242009-07-13 15:34:54 -0700212}
213
Hank Janssen3e189512010-03-04 22:11:00 +0000214/*
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700215 * netvsc_linkstatus_callback - Link up/down notification
216 */
K. Y. Srinivasan90ef1172011-05-12 19:34:50 -0700217void netvsc_linkstatus_callback(struct hv_device *device_obj,
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700218 unsigned int status)
Hank Janssenfceaf242009-07-13 15:34:54 -0700219{
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700220 struct net_device *net;
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700221 struct net_device_context *ndev_ctx;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700222 struct netvsc_device *net_device;
223
224 net_device = hv_get_drvdata(device_obj);
225 net = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700226
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700227 if (!net) {
Hank Jansseneb335bc2011-03-29 13:58:48 -0700228 netdev_err(net, "got link status but net device "
229 "not initialized yet\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700230 return;
231 }
232
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700233 if (status == 1) {
Hank Janssenfceaf242009-07-13 15:34:54 -0700234 netif_carrier_on(net);
235 netif_wake_queue(net);
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700236 ndev_ctx = netdev_priv(net);
Haiyang Zhangc4b6a2e2011-09-01 12:19:42 -0700237 schedule_delayed_work(&ndev_ctx->dwork, 0);
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700238 schedule_delayed_work(&ndev_ctx->dwork, msecs_to_jiffies(20));
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700239 } else {
Hank Janssenfceaf242009-07-13 15:34:54 -0700240 netif_carrier_off(net);
241 netif_stop_queue(net);
242 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700243}
244
Hank Janssen3e189512010-03-04 22:11:00 +0000245/*
246 * netvsc_recv_callback - Callback when we receive a packet from the
247 * "wire" on the specified device.
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700248 */
K. Y. Srinivasanf79adf82011-05-12 19:34:51 -0700249int netvsc_recv_callback(struct hv_device *device_obj,
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700250 struct hv_netvsc_packet *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700251{
K. Y. Srinivasan6bad88da2011-03-07 13:35:48 -0800252 struct net_device *net = dev_get_drvdata(&device_obj->device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700253 struct sk_buff *skb;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700254 struct netvsc_device *net_device;
255
256 net_device = hv_get_drvdata(device_obj);
257 net = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700258
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700259 if (!net) {
Hank Jansseneb335bc2011-03-29 13:58:48 -0700260 netdev_err(net, "got receive callback but net device"
261 " not initialized yet\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700262 return 0;
263 }
264
Stephen Hemminger9495c282010-03-09 17:42:17 -0800265 /* Allocate a skb - TODO direct I/O to pages? */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800266 skb = netdev_alloc_skb_ip_align(net, packet->total_data_buflen);
Stephen Hemminger9495c282010-03-09 17:42:17 -0800267 if (unlikely(!skb)) {
268 ++net->stats.rx_dropped;
269 return 0;
270 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700271
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700272 /*
273 * Copy to skb. This copy is needed here since the memory pointed by
274 * hv_netvsc_packet cannot be deallocated
275 */
Haiyang Zhang45326342011-12-15 13:45:15 -0800276 memcpy(skb_put(skb, packet->total_data_buflen), packet->data,
277 packet->total_data_buflen);
Hank Janssenfceaf242009-07-13 15:34:54 -0700278
279 skb->protocol = eth_type_trans(skb, net);
Hank Janssenfceaf242009-07-13 15:34:54 -0700280 skb->ip_summed = CHECKSUM_NONE;
281
Stephen Hemminger9495c282010-03-09 17:42:17 -0800282 net->stats.rx_packets++;
283 net->stats.rx_bytes += skb->len;
284
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700285 /*
286 * Pass the skb back up. Network stack will deallocate the skb when it
Stephen Hemminger9495c282010-03-09 17:42:17 -0800287 * is done.
288 * TODO - use NAPI?
Greg Kroah-Hartman02fafbc2009-08-31 21:09:45 -0700289 */
Stephen Hemminger9495c282010-03-09 17:42:17 -0800290 netif_rx(skb);
Hank Janssenfceaf242009-07-13 15:34:54 -0700291
Hank Janssenfceaf242009-07-13 15:34:54 -0700292 return 0;
293}
294
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -0700295static void netvsc_get_drvinfo(struct net_device *net,
296 struct ethtool_drvinfo *info)
297{
298 strcpy(info->driver, "hv_netvsc");
299 strcpy(info->version, HV_DRV_VERSION);
300 strcpy(info->fw_version, "N/A");
301}
302
303static const struct ethtool_ops ethtool_ops = {
304 .get_drvinfo = netvsc_get_drvinfo,
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -0700305 .get_link = ethtool_op_get_link,
306};
307
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700308static const struct net_device_ops device_ops = {
309 .ndo_open = netvsc_open,
310 .ndo_stop = netvsc_close,
311 .ndo_start_xmit = netvsc_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000312 .ndo_set_rx_mode = netvsc_set_multicast_list,
Haiyang Zhangb681b582010-08-03 19:15:31 +0000313 .ndo_change_mtu = eth_change_mtu,
314 .ndo_validate_addr = eth_validate_addr,
315 .ndo_set_mac_address = eth_mac_addr,
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700316};
317
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700318/*
319 * Send GARP packet to network peers after migrations.
320 * After Quick Migration, the network is not immediately operational in the
321 * current context when receiving RNDIS_STATUS_MEDIA_CONNECT event. So, add
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700322 * another netif_notify_peers() into a delayed work, otherwise GARP packet
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700323 * will not be sent after quick migration, and cause network disconnection.
324 */
325static void netvsc_send_garp(struct work_struct *w)
326{
327 struct net_device_context *ndev_ctx;
328 struct net_device *net;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700329 struct netvsc_device *net_device;
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700330
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700331 ndev_ctx = container_of(w, struct net_device_context, dwork.work);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700332 net_device = hv_get_drvdata(ndev_ctx->device_ctx);
333 net = net_device->ndev;
Haiyang Zhangc996edc2011-04-06 15:18:00 -0700334 netif_notify_peers(net);
335}
336
337
K. Y. Srinivasan84946892011-09-13 10:59:38 -0700338static int netvsc_probe(struct hv_device *dev,
339 const struct hv_vmbus_device_id *dev_id)
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700340{
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700341 struct net_device *net = NULL;
342 struct net_device_context *net_device_ctx;
343 struct netvsc_device_info device_info;
344 int ret;
345
Stephen Hemminger546d9e12010-03-11 09:11:37 -0800346 net = alloc_etherdev(sizeof(struct net_device_context));
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700347 if (!net)
K. Y. Srinivasan51a805d2011-08-25 09:49:11 -0700348 return -ENOMEM;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700349
350 /* Set initial state */
351 netif_carrier_off(net);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700352
353 net_device_ctx = netdev_priv(net);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700354 net_device_ctx->device_ctx = dev;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700355 hv_set_drvdata(dev, net);
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700356 INIT_DELAYED_WORK(&net_device_ctx->dwork, netvsc_send_garp);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700357
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700358 net->netdev_ops = &device_ops;
359
Stephen Hemminger60487182010-05-04 09:58:55 -0700360 /* TODO: Add GSO and Checksum offload */
Michał Mirosław877a3442011-04-19 12:43:20 +0200361 net->hw_features = NETIF_F_SG;
Stephen Hemminger60487182010-05-04 09:58:55 -0700362 net->features = NETIF_F_SG;
363
Stephen Hemmingerf82f4ad2010-05-04 09:58:57 -0700364 SET_ETHTOOL_OPS(net, &ethtool_ops);
K. Y. Srinivasan9efd21e2011-04-29 13:45:10 -0700365 SET_NETDEV_DEV(net, &dev->device);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700366
367 ret = register_netdev(net);
368 if (ret != 0) {
Haiyang Zhang692e0842011-09-01 12:19:43 -0700369 pr_err("Unable to register netdev.\n");
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700370 free_netdev(net);
Haiyang Zhang692e0842011-09-01 12:19:43 -0700371 goto out;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700372 }
373
Haiyang Zhang692e0842011-09-01 12:19:43 -0700374 /* Notify the netvsc driver of the new device */
375 device_info.ring_size = ring_size;
376 ret = rndis_filter_device_add(dev, &device_info);
377 if (ret != 0) {
378 netdev_err(net, "unable to add netvsc device (ret %d)\n", ret);
379 unregister_netdev(net);
380 free_netdev(net);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700381 hv_set_drvdata(dev, NULL);
Haiyang Zhang692e0842011-09-01 12:19:43 -0700382 return ret;
383 }
384 memcpy(net->dev_addr, device_info.mac_adr, ETH_ALEN);
385
386 netif_carrier_on(net);
387
388out:
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700389 return ret;
390}
391
K. Y. Srinivasan415b0232011-04-29 13:45:12 -0700392static int netvsc_remove(struct hv_device *dev)
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700393{
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700394 struct net_device *net;
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700395 struct net_device_context *ndev_ctx;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700396 struct netvsc_device *net_device;
397
398 net_device = hv_get_drvdata(dev);
399 net = net_device->ndev;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700400
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700401 if (net == NULL) {
K. Y. Srinivasan415b0232011-04-29 13:45:12 -0700402 dev_err(&dev->device, "No net device to remove\n");
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700403 return 0;
404 }
405
Haiyang Zhang122a5f62011-05-27 06:21:55 -0700406 ndev_ctx = netdev_priv(net);
407 cancel_delayed_work_sync(&ndev_ctx->dwork);
408
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700409 /* Stop outbound asap */
410 netif_stop_queue(net);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700411
412 unregister_netdev(net);
413
414 /*
415 * Call to the vsc driver to let it know that the device is being
416 * removed
417 */
Haiyang Zhangdf06bcf2011-05-23 09:03:47 -0700418 rndis_filter_device_remove(dev);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700419
420 free_netdev(net);
Haiyang Zhangdf06bcf2011-05-23 09:03:47 -0700421 return 0;
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700422}
423
K. Y. Srinivasan345c4cc2011-08-25 09:48:34 -0700424static const struct hv_vmbus_device_id id_table[] = {
Greg Kroah-Hartmanc45cf2d2011-08-25 11:41:33 -0700425 /* Network guid */
426 { VMBUS_DEVICE(0x63, 0x51, 0x61, 0xF8, 0x3E, 0xDF, 0xc5, 0x46,
427 0x91, 0x3F, 0xF2, 0xD2, 0xF9, 0x65, 0xED, 0x0E) },
428 { },
K. Y. Srinivasan345c4cc2011-08-25 09:48:34 -0700429};
430
431MODULE_DEVICE_TABLE(vmbus, id_table);
432
K. Y. Srinivasanf1542a62011-05-10 07:55:16 -0700433/* The one and only one */
K. Y. Srinivasanfde0ef92011-05-12 19:35:08 -0700434static struct hv_driver netvsc_drv = {
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700435 .name = "netvsc",
K. Y. Srinivasan345c4cc2011-08-25 09:48:34 -0700436 .id_table = id_table,
K. Y. Srinivasanfde0ef92011-05-12 19:35:08 -0700437 .probe = netvsc_probe,
438 .remove = netvsc_remove,
K. Y. Srinivasand4890972011-05-10 07:55:17 -0700439};
K. Y. Srinivasanf1542a62011-05-10 07:55:16 -0700440
K. Y. Srinivasana9869c92011-05-12 19:35:17 -0700441static void __exit netvsc_drv_exit(void)
Hank Janssenfceaf242009-07-13 15:34:54 -0700442{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700443 vmbus_driver_unregister(&netvsc_drv);
Hank Janssenfceaf242009-07-13 15:34:54 -0700444}
445
K. Y. Srinivasan1fde28c2011-05-12 19:35:16 -0700446static int __init netvsc_drv_init(void)
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700447{
Greg Kroah-Hartman768fa212011-08-25 15:07:32 -0700448 return vmbus_driver_register(&netvsc_drv);
Greg Kroah-Hartmandf2fff22009-08-31 21:11:12 -0700449}
450
Hank Janssen26c14cc2010-02-11 23:02:42 +0000451MODULE_LICENSE("GPL");
452MODULE_VERSION(HV_DRV_VERSION);
Stephen Hemminger7880fc52010-05-04 09:58:52 -0700453MODULE_DESCRIPTION("Microsoft Hyper-V network driver");
Hank Janssenfceaf242009-07-13 15:34:54 -0700454
K. Y. Srinivasan1fde28c2011-05-12 19:35:16 -0700455module_init(netvsc_drv_init);
K. Y. Srinivasana9869c92011-05-12 19:35:17 -0700456module_exit(netvsc_drv_exit);