blob: bab627f261c424af43c301cd8884704ccb454e84 [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
Greg Kroah-Hartman5654e932009-07-14 15:08:20 -070023#include <linux/kernel.h>
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -080024#include <linux/sched.h>
25#include <linux/wait.h>
Greg Kroah-Hartman0ffa63b2009-07-15 11:06:01 -070026#include <linux/mm.h>
Greg Kroah-Hartmanb4362c92009-07-16 11:50:41 -070027#include <linux/delay.h>
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -070028#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Haiyang Zhangd9871152011-09-01 12:19:41 -070030#include <linux/netdevice.h>
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070031
K. Y. Srinivasan5ca72522011-05-12 19:34:37 -070032#include "hyperv_net.h"
Hank Janssenfceaf242009-07-13 15:34:54 -070033
34
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080035static struct netvsc_device *alloc_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070036{
Haiyang Zhang85799a32010-12-10 12:03:54 -080037 struct netvsc_device *net_device;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070038 struct net_device *ndev = hv_get_drvdata(device);
Hank Janssenfceaf242009-07-13 15:34:54 -070039
Haiyang Zhang85799a32010-12-10 12:03:54 -080040 net_device = kzalloc(sizeof(struct netvsc_device), GFP_KERNEL);
41 if (!net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -070042 return NULL;
43
Hank Janssenfceaf242009-07-13 15:34:54 -070044
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -070045 net_device->destroy = false;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -080046 net_device->dev = device;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070047 net_device->ndev = ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -070048
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070049 hv_set_drvdata(device, net_device);
Haiyang Zhang85799a32010-12-10 12:03:54 -080050 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070051}
52
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080053static struct netvsc_device *get_outbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070054{
Haiyang Zhang85799a32010-12-10 12:03:54 -080055 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070056
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070057 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070058 if (net_device && net_device->destroy)
Haiyang Zhang85799a32010-12-10 12:03:54 -080059 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -070060
Haiyang Zhang85799a32010-12-10 12:03:54 -080061 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070062}
63
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080064static struct netvsc_device *get_inbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070065{
Haiyang Zhang85799a32010-12-10 12:03:54 -080066 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070067
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070068 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070069
70 if (!net_device)
71 goto get_in_err;
72
73 if (net_device->destroy &&
74 atomic_read(&net_device->num_outstanding_sends) == 0)
Haiyang Zhang85799a32010-12-10 12:03:54 -080075 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -070076
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070077get_in_err:
Haiyang Zhang85799a32010-12-10 12:03:54 -080078 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070079}
80
Hank Janssenfceaf242009-07-13 15:34:54 -070081
Haiyang Zhangec91cd02011-04-21 12:30:43 -070082static int netvsc_destroy_recv_buf(struct netvsc_device *net_device)
83{
84 struct nvsp_message *revoke_packet;
85 int ret = 0;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070086 struct net_device *ndev = net_device->ndev;
Haiyang Zhangec91cd02011-04-21 12:30:43 -070087
88 /*
89 * If we got a section count, it means we received a
90 * SendReceiveBufferComplete msg (ie sent
91 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
92 * to send a revoke msg here
93 */
94 if (net_device->recv_section_cnt) {
95 /* Send the revoke receive buffer */
96 revoke_packet = &net_device->revoke_packet;
97 memset(revoke_packet, 0, sizeof(struct nvsp_message));
98
99 revoke_packet->hdr.msg_type =
100 NVSP_MSG1_TYPE_REVOKE_RECV_BUF;
101 revoke_packet->msg.v1_msg.
102 revoke_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
103
104 ret = vmbus_sendpacket(net_device->dev->channel,
105 revoke_packet,
106 sizeof(struct nvsp_message),
107 (unsigned long)revoke_packet,
108 VM_PKT_DATA_INBAND, 0);
109 /*
110 * If we failed here, we might as well return and
111 * have a leak rather than continue and a bugchk
112 */
113 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700114 netdev_err(ndev, "unable to send "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700115 "revoke receive buffer to netvsp\n");
K. Y. Srinivasana3e00532011-08-25 09:49:12 -0700116 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700117 }
118 }
119
120 /* Teardown the gpadl on the vsp end */
121 if (net_device->recv_buf_gpadl_handle) {
122 ret = vmbus_teardown_gpadl(net_device->dev->channel,
123 net_device->recv_buf_gpadl_handle);
124
125 /* If we failed here, we might as well return and have a leak
126 * rather than continue and a bugchk
127 */
128 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700129 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700130 "unable to teardown receive buffer's gpadl\n");
Dan Carpenter7f9615e2011-08-27 14:06:07 +0300131 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700132 }
133 net_device->recv_buf_gpadl_handle = 0;
134 }
135
136 if (net_device->recv_buf) {
137 /* Free up the receive buffer */
138 free_pages((unsigned long)net_device->recv_buf,
139 get_order(net_device->recv_buf_size));
140 net_device->recv_buf = NULL;
141 }
142
143 if (net_device->recv_section) {
144 net_device->recv_section_cnt = 0;
145 kfree(net_device->recv_section);
146 net_device->recv_section = NULL;
147 }
148
149 return ret;
150}
151
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800152static int netvsc_init_recv_buf(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700153{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700154 int ret = 0;
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700155 int t;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800156 struct netvsc_device *net_device;
157 struct nvsp_message *init_packet;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700158 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700159
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800160 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700161 if (!net_device)
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700162 return -ENODEV;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700163 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700164
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800165 net_device->recv_buf =
K. Y. Srinivasandf3493e2011-02-11 09:59:00 -0800166 (void *)__get_free_pages(GFP_KERNEL|__GFP_ZERO,
167 get_order(net_device->recv_buf_size));
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800168 if (!net_device->recv_buf) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700169 netdev_err(ndev, "unable to allocate receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700170 "buffer of size %d\n", net_device->recv_buf_size);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700171 ret = -ENOMEM;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800172 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700173 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700174
Bill Pemberton454f18a2009-07-27 16:47:24 -0400175 /*
176 * Establish the gpadl handle for this buffer on this
177 * channel. Note: This call uses the vmbus connection rather
178 * than the channel to establish the gpadl handle.
179 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800180 ret = vmbus_establish_gpadl(device->channel, net_device->recv_buf,
181 net_device->recv_buf_size,
182 &net_device->recv_buf_gpadl_handle);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700183 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700184 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700185 "unable to establish receive buffer's gpadl\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800186 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700187 }
188
Hank Janssenfceaf242009-07-13 15:34:54 -0700189
Bill Pemberton454f18a2009-07-27 16:47:24 -0400190 /* Notify the NetVsp of the gpadl handle */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800191 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700192
Haiyang Zhang85799a32010-12-10 12:03:54 -0800193 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700194
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800195 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_RECV_BUF;
196 init_packet->msg.v1_msg.send_recv_buf.
197 gpadl_handle = net_device->recv_buf_gpadl_handle;
198 init_packet->msg.v1_msg.
199 send_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
Hank Janssenfceaf242009-07-13 15:34:54 -0700200
Bill Pemberton454f18a2009-07-27 16:47:24 -0400201 /* Send the gpadl notification request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800202 ret = vmbus_sendpacket(device->channel, init_packet,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700203 sizeof(struct nvsp_message),
Haiyang Zhang85799a32010-12-10 12:03:54 -0800204 (unsigned long)init_packet,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800205 VM_PKT_DATA_INBAND,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700206 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700207 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700208 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700209 "unable to send receive buffer's gpadl to netvsp\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800210 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700211 }
212
K. Y. Srinivasan5c5781b32011-06-16 13:16:35 -0700213 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700214 BUG_ON(t == 0);
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800215
Hank Janssenfceaf242009-07-13 15:34:54 -0700216
Bill Pemberton454f18a2009-07-27 16:47:24 -0400217 /* Check the response */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800218 if (init_packet->msg.v1_msg.
219 send_recv_buf_complete.status != NVSP_STAT_SUCCESS) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700220 netdev_err(ndev, "Unable to complete receive buffer "
Haiyang Zhang8bff33a2011-09-01 12:19:48 -0700221 "initialization with NetVsp - status %d\n",
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800222 init_packet->msg.v1_msg.
223 send_recv_buf_complete.status);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700224 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800225 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700226 }
227
Bill Pemberton454f18a2009-07-27 16:47:24 -0400228 /* Parse the response */
Hank Janssenfceaf242009-07-13 15:34:54 -0700229
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800230 net_device->recv_section_cnt = init_packet->msg.
231 v1_msg.send_recv_buf_complete.num_sections;
Hank Janssenfceaf242009-07-13 15:34:54 -0700232
Haiyang Zhangc1813202011-11-30 07:19:07 -0800233 net_device->recv_section = kmemdup(
234 init_packet->msg.v1_msg.send_recv_buf_complete.sections,
235 net_device->recv_section_cnt *
236 sizeof(struct nvsp_1_receive_buffer_section),
237 GFP_KERNEL);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800238 if (net_device->recv_section == NULL) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700239 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800240 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700241 }
242
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700243 /*
244 * For 1st release, there should only be 1 section that represents the
245 * entire receive buffer
246 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800247 if (net_device->recv_section_cnt != 1 ||
248 net_device->recv_section->offset != 0) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700249 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800250 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700251 }
252
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800253 goto exit;
Hank Janssenfceaf242009-07-13 15:34:54 -0700254
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800255cleanup:
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800256 netvsc_destroy_recv_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700257
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800258exit:
Hank Janssenfceaf242009-07-13 15:34:54 -0700259 return ret;
260}
261
Hank Janssenfceaf242009-07-13 15:34:54 -0700262
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800263static int netvsc_connect_vsp(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700264{
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700265 int ret, t;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800266 struct netvsc_device *net_device;
267 struct nvsp_message *init_packet;
268 int ndis_version;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700269 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700270
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800271 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700272 if (!net_device)
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700273 return -ENODEV;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700274 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700275
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800276 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700277
Haiyang Zhang85799a32010-12-10 12:03:54 -0800278 memset(init_packet, 0, sizeof(struct nvsp_message));
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800279 init_packet->hdr.msg_type = NVSP_MSG_TYPE_INIT;
280 init_packet->msg.init_msg.init.min_protocol_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800281 NVSP_MIN_PROTOCOL_VERSION;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800282 init_packet->msg.init_msg.init.max_protocol_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800283 NVSP_MAX_PROTOCOL_VERSION;
Hank Janssenfceaf242009-07-13 15:34:54 -0700284
Bill Pemberton454f18a2009-07-27 16:47:24 -0400285 /* Send the init request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800286 ret = vmbus_sendpacket(device->channel, init_packet,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700287 sizeof(struct nvsp_message),
Haiyang Zhang85799a32010-12-10 12:03:54 -0800288 (unsigned long)init_packet,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800289 VM_PKT_DATA_INBAND,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700290 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Hank Janssenfceaf242009-07-13 15:34:54 -0700291
Hank Janssenb8a3d522011-03-29 13:58:45 -0700292 if (ret != 0)
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800293 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700294
K. Y. Srinivasan5c5781b32011-06-16 13:16:35 -0700295 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700296
297 if (t == 0) {
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800298 ret = -ETIMEDOUT;
299 goto cleanup;
300 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700301
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800302 if (init_packet->msg.init_msg.init_complete.status !=
303 NVSP_STAT_SUCCESS) {
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700304 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800305 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700306 }
307
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800308 if (init_packet->msg.init_msg.init_complete.
309 negotiated_protocol_ver != NVSP_PROTOCOL_VERSION_1) {
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700310 ret = -EPROTO;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800311 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700312 }
Bill Pemberton454f18a2009-07-27 16:47:24 -0400313 /* Send the ndis version */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800314 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700315
Haiyang Zhang85799a32010-12-10 12:03:54 -0800316 ndis_version = 0x00050000;
Hank Janssenfceaf242009-07-13 15:34:54 -0700317
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800318 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_NDIS_VER;
319 init_packet->msg.v1_msg.
320 send_ndis_ver.ndis_major_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800321 (ndis_version & 0xFFFF0000) >> 16;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800322 init_packet->msg.v1_msg.
323 send_ndis_ver.ndis_minor_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800324 ndis_version & 0xFFFF;
Hank Janssenfceaf242009-07-13 15:34:54 -0700325
Bill Pemberton454f18a2009-07-27 16:47:24 -0400326 /* Send the init request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800327 ret = vmbus_sendpacket(device->channel, init_packet,
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800328 sizeof(struct nvsp_message),
329 (unsigned long)init_packet,
330 VM_PKT_DATA_INBAND, 0);
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700331 if (ret != 0)
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800332 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700333
Bill Pemberton454f18a2009-07-27 16:47:24 -0400334 /* Post the big receive buffer to NetVSP */
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800335 ret = netvsc_init_recv_buf(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700336
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800337cleanup:
Hank Janssenfceaf242009-07-13 15:34:54 -0700338 return ret;
339}
340
Haiyang Zhang648dc592011-04-21 12:30:47 -0700341static void netvsc_disconnect_vsp(struct netvsc_device *net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700342{
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800343 netvsc_destroy_recv_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700344}
345
Hank Janssen3e189512010-03-04 22:11:00 +0000346/*
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800347 * netvsc_device_remove - Callback when the root bus device is removed
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700348 */
K. Y. Srinivasan905620d2011-05-10 07:54:54 -0700349int netvsc_device_remove(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700350{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800351 struct netvsc_device *net_device;
352 struct hv_netvsc_packet *netvsc_packet, *pos;
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -0700353 unsigned long flags;
Hank Janssenfceaf242009-07-13 15:34:54 -0700354
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700355 net_device = hv_get_drvdata(device);
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -0700356 spin_lock_irqsave(&device->channel->inbound_lock, flags);
357 net_device->destroy = true;
358 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
359
Bill Pemberton454f18a2009-07-27 16:47:24 -0400360 /* Wait for all send completions */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800361 while (atomic_read(&net_device->num_outstanding_sends)) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700362 dev_info(&device->device,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700363 "waiting for %d requests to complete...\n",
Hank Jansseneb335bc2011-03-29 13:58:48 -0700364 atomic_read(&net_device->num_outstanding_sends));
Greg Kroah-Hartmanb4362c92009-07-16 11:50:41 -0700365 udelay(100);
Hank Janssenfceaf242009-07-13 15:34:54 -0700366 }
367
Haiyang Zhang648dc592011-04-21 12:30:47 -0700368 netvsc_disconnect_vsp(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700369
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700370 /*
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700371 * Since we have already drained, we don't need to busy wait
372 * as was done in final_release_stor_device()
373 * Note that we cannot set the ext pointer to NULL until
374 * we have drained - to drain the outgoing packets, we need to
375 * allow incoming packets.
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700376 */
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700377
378 spin_lock_irqsave(&device->channel->inbound_lock, flags);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700379 hv_set_drvdata(device, NULL);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700380 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700381
K. Y. Srinivasan86c921a2011-09-13 10:59:54 -0700382 /*
383 * At this point, no one should be accessing net_device
384 * except in here
385 */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700386 dev_notice(&device->device, "net device safe to remove\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700387
Bill Pemberton454f18a2009-07-27 16:47:24 -0400388 /* Now, we can close the channel safely */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800389 vmbus_close(device->channel);
Hank Janssenfceaf242009-07-13 15:34:54 -0700390
Bill Pemberton454f18a2009-07-27 16:47:24 -0400391 /* Release all resources */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800392 list_for_each_entry_safe(netvsc_packet, pos,
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800393 &net_device->recv_pkt_list, list_ent) {
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800394 list_del(&netvsc_packet->list_ent);
Haiyang Zhang85799a32010-12-10 12:03:54 -0800395 kfree(netvsc_packet);
Hank Janssenfceaf242009-07-13 15:34:54 -0700396 }
397
K. Y. Srinivasan356c4652011-08-27 11:31:10 -0700398 kfree(net_device);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700399 return 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700400}
401
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800402static void netvsc_send_completion(struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800403 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700404{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800405 struct netvsc_device *net_device;
406 struct nvsp_message *nvsp_packet;
407 struct hv_netvsc_packet *nvsc_packet;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700408 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700409
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800410 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700411 if (!net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700412 return;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700413 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700414
Haiyang Zhang85799a32010-12-10 12:03:54 -0800415 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -0800416 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -0700417
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800418 if ((nvsp_packet->hdr.msg_type == NVSP_MSG_TYPE_INIT_COMPLETE) ||
419 (nvsp_packet->hdr.msg_type ==
420 NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE) ||
421 (nvsp_packet->hdr.msg_type ==
422 NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE)) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400423 /* Copy the response back */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800424 memcpy(&net_device->channel_init_pkt, nvsp_packet,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700425 sizeof(struct nvsp_message));
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700426 complete(&net_device->channel_init_wait);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800427 } else if (nvsp_packet->hdr.msg_type ==
428 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400429 /* Get the send context */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800430 nvsc_packet = (struct hv_netvsc_packet *)(unsigned long)
Haiyang Zhang415f2282011-01-26 12:12:13 -0800431 packet->trans_id;
Hank Janssenfceaf242009-07-13 15:34:54 -0700432
Bill Pemberton454f18a2009-07-27 16:47:24 -0400433 /* Notify the layer above us */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800434 nvsc_packet->completion.send.send_completion(
435 nvsc_packet->completion.send.send_completion_ctx);
Hank Janssenfceaf242009-07-13 15:34:54 -0700436
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800437 atomic_dec(&net_device->num_outstanding_sends);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800438
439 if (netif_queue_stopped(ndev))
440 netif_wake_queue(ndev);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700441 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700442 netdev_err(ndev, "Unknown send completion packet type- "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700443 "%d received!!\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700444 }
445
Hank Janssenfceaf242009-07-13 15:34:54 -0700446}
447
K. Y. Srinivasanf9819f02011-05-12 19:34:49 -0700448int netvsc_send(struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800449 struct hv_netvsc_packet *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700450{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800451 struct netvsc_device *net_device;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700452 int ret = 0;
Greg Kroah-Hartman223c1aa2009-08-28 16:20:53 -0700453 struct nvsp_message sendMessage;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700454 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700455
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800456 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700457 if (!net_device)
K. Y. Srinivasanff2bd692011-08-25 09:49:15 -0700458 return -ENODEV;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700459 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700460
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800461 sendMessage.hdr.msg_type = NVSP_MSG1_TYPE_SEND_RNDIS_PKT;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800462 if (packet->is_data_pkt) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700463 /* 0 is RMC_DATA; */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800464 sendMessage.msg.v1_msg.send_rndis_pkt.channel_type = 0;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700465 } else {
466 /* 1 is RMC_CONTROL; */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800467 sendMessage.msg.v1_msg.send_rndis_pkt.channel_type = 1;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700468 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700469
Bill Pemberton454f18a2009-07-27 16:47:24 -0400470 /* Not using send buffer section */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800471 sendMessage.msg.v1_msg.send_rndis_pkt.send_buf_section_index =
472 0xFFFFFFFF;
473 sendMessage.msg.v1_msg.send_rndis_pkt.send_buf_section_size = 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700474
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800475 if (packet->page_buf_cnt) {
Haiyang Zhang85799a32010-12-10 12:03:54 -0800476 ret = vmbus_sendpacket_pagebuffer(device->channel,
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800477 packet->page_buf,
478 packet->page_buf_cnt,
Greg Kroah-Hartmanff3f8ee2010-10-21 09:32:46 -0700479 &sendMessage,
480 sizeof(struct nvsp_message),
Haiyang Zhang85799a32010-12-10 12:03:54 -0800481 (unsigned long)packet);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700482 } else {
Haiyang Zhang85799a32010-12-10 12:03:54 -0800483 ret = vmbus_sendpacket(device->channel, &sendMessage,
Haiyang Zhange4d59ac2011-06-17 07:58:04 -0700484 sizeof(struct nvsp_message),
485 (unsigned long)packet,
486 VM_PKT_DATA_INBAND,
487 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Hank Janssenfceaf242009-07-13 15:34:54 -0700488
489 }
490
Haiyang Zhang1d068252011-12-02 11:56:25 -0800491 if (ret == 0) {
492 atomic_inc(&net_device->num_outstanding_sends);
493 } else if (ret == -EAGAIN) {
494 netif_stop_queue(ndev);
495 if (atomic_read(&net_device->num_outstanding_sends) < 1)
496 netif_wake_queue(ndev);
497 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700498 netdev_err(ndev, "Unable to send packet %p ret %d\n",
Haiyang Zhang85799a32010-12-10 12:03:54 -0800499 packet, ret);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800500 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700501
Hank Janssenfceaf242009-07-13 15:34:54 -0700502 return ret;
503}
504
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700505static void netvsc_send_recv_completion(struct hv_device *device,
506 u64 transaction_id)
507{
508 struct nvsp_message recvcompMessage;
509 int retries = 0;
510 int ret;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700511 struct net_device *ndev;
512 struct netvsc_device *net_device = hv_get_drvdata(device);
513
514 ndev = net_device->ndev;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700515
516 recvcompMessage.hdr.msg_type =
517 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE;
518
519 /* FIXME: Pass in the status */
520 recvcompMessage.msg.v1_msg.send_rndis_pkt_complete.status =
521 NVSP_STAT_SUCCESS;
522
523retry_send_cmplt:
524 /* Send the completion */
525 ret = vmbus_sendpacket(device->channel, &recvcompMessage,
526 sizeof(struct nvsp_message), transaction_id,
527 VM_PKT_COMP, 0);
528 if (ret == 0) {
529 /* success */
530 /* no-op */
K. Y. Srinivasand2598f02011-08-25 09:48:58 -0700531 } else if (ret == -EAGAIN) {
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700532 /* no more room...wait a bit and attempt to retry 3 times */
533 retries++;
Haiyang Zhangd9871152011-09-01 12:19:41 -0700534 netdev_err(ndev, "unable to send receive completion pkt"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700535 " (tid %llx)...retrying %d\n", transaction_id, retries);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700536
537 if (retries < 4) {
538 udelay(100);
539 goto retry_send_cmplt;
540 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700541 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700542 "completion pkt (tid %llx)...give up retrying\n",
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700543 transaction_id);
544 }
545 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700546 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700547 "completion pkt - %llx\n", transaction_id);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700548 }
549}
550
Haiyang Zhang57991152011-04-21 12:30:41 -0700551/* Send a receive completion packet to RNDIS device (ie NetVsp) */
552static void netvsc_receive_completion(void *context)
553{
554 struct hv_netvsc_packet *packet = context;
555 struct hv_device *device = (struct hv_device *)packet->device;
556 struct netvsc_device *net_device;
557 u64 transaction_id = 0;
558 bool fsend_receive_comp = false;
559 unsigned long flags;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700560 struct net_device *ndev;
Haiyang Zhang57991152011-04-21 12:30:41 -0700561
562 /*
563 * Even though it seems logical to do a GetOutboundNetDevice() here to
564 * send out receive completion, we are using GetInboundNetDevice()
565 * since we may have disable outbound traffic already.
566 */
567 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700568 if (!net_device)
Haiyang Zhang57991152011-04-21 12:30:41 -0700569 return;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700570 ndev = net_device->ndev;
Haiyang Zhang57991152011-04-21 12:30:41 -0700571
572 /* Overloading use of the lock. */
573 spin_lock_irqsave(&net_device->recv_pkt_list_lock, flags);
574
575 packet->xfer_page_pkt->count--;
576
577 /*
578 * Last one in the line that represent 1 xfer page packet.
579 * Return the xfer page packet itself to the freelist
580 */
581 if (packet->xfer_page_pkt->count == 0) {
582 fsend_receive_comp = true;
583 transaction_id = packet->completion.recv.recv_completion_tid;
584 list_add_tail(&packet->xfer_page_pkt->list_ent,
585 &net_device->recv_pkt_list);
586
587 }
588
589 /* Put the packet back */
590 list_add_tail(&packet->list_ent, &net_device->recv_pkt_list);
591 spin_unlock_irqrestore(&net_device->recv_pkt_list_lock, flags);
592
593 /* Send a receive completion for the xfer page packet */
594 if (fsend_receive_comp)
595 netvsc_send_recv_completion(device, transaction_id);
596
Haiyang Zhang57991152011-04-21 12:30:41 -0700597}
598
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800599static void netvsc_receive(struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800600 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700601{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800602 struct netvsc_device *net_device;
603 struct vmtransfer_page_packet_header *vmxferpage_packet;
604 struct nvsp_message *nvsp_packet;
605 struct hv_netvsc_packet *netvsc_packet = NULL;
Greg Kroah-Hartman7e23a6e2009-08-27 15:58:15 -0700606 /* struct netvsc_driver *netvscDriver; */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800607 struct xferpage_packet *xferpage_packet = NULL;
Haiyang Zhang45326342011-12-15 13:45:15 -0800608 int i;
609 int count = 0;
Greg Kroah-Hartman64368732009-07-15 14:56:15 -0700610 unsigned long flags;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700611 struct net_device *ndev;
K. Y. Srinivasan779b4d12011-04-26 09:20:22 -0700612
Bill Pembertond29274e2009-09-11 21:46:43 -0400613 LIST_HEAD(listHead);
Hank Janssenfceaf242009-07-13 15:34:54 -0700614
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800615 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700616 if (!net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700617 return;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700618 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700619
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700620 /*
621 * All inbound packets other than send completion should be xfer page
622 * packet
623 */
Haiyang Zhang415f2282011-01-26 12:12:13 -0800624 if (packet->type != VM_PKT_DATA_USING_XFER_PAGES) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700625 netdev_err(ndev, "Unknown packet type received - %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -0800626 packet->type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700627 return;
628 }
629
Haiyang Zhang85799a32010-12-10 12:03:54 -0800630 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -0800631 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -0700632
Bill Pemberton454f18a2009-07-27 16:47:24 -0400633 /* Make sure this is a valid nvsp packet */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800634 if (nvsp_packet->hdr.msg_type !=
635 NVSP_MSG1_TYPE_SEND_RNDIS_PKT) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700636 netdev_err(ndev, "Unknown nvsp packet type received-"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700637 " %d\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700638 return;
639 }
640
Haiyang Zhang85799a32010-12-10 12:03:54 -0800641 vmxferpage_packet = (struct vmtransfer_page_packet_header *)packet;
Hank Janssenfceaf242009-07-13 15:34:54 -0700642
Haiyang Zhang415f2282011-01-26 12:12:13 -0800643 if (vmxferpage_packet->xfer_pageset_id != NETVSC_RECEIVE_BUFFER_ID) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700644 netdev_err(ndev, "Invalid xfer page set id - "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700645 "expecting %x got %x\n", NETVSC_RECEIVE_BUFFER_ID,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800646 vmxferpage_packet->xfer_pageset_id);
Hank Janssenfceaf242009-07-13 15:34:54 -0700647 return;
648 }
649
Bill Pemberton454f18a2009-07-27 16:47:24 -0400650 /*
651 * Grab free packets (range count + 1) to represent this xfer
652 * page packet. +1 to represent the xfer page packet itself.
653 * We grab it here so that we know exactly how many we can
654 * fulfil
655 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800656 spin_lock_irqsave(&net_device->recv_pkt_list_lock, flags);
657 while (!list_empty(&net_device->recv_pkt_list)) {
658 list_move_tail(net_device->recv_pkt_list.next, &listHead);
Haiyang Zhang415f2282011-01-26 12:12:13 -0800659 if (++count == vmxferpage_packet->range_cnt + 1)
Hank Janssenfceaf242009-07-13 15:34:54 -0700660 break;
661 }
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800662 spin_unlock_irqrestore(&net_device->recv_pkt_list_lock, flags);
Hank Janssenfceaf242009-07-13 15:34:54 -0700663
Bill Pemberton454f18a2009-07-27 16:47:24 -0400664 /*
665 * We need at least 2 netvsc pkts (1 to represent the xfer
666 * page and at least 1 for the range) i.e. we can handled
667 * some of the xfer page packet ranges...
668 */
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700669 if (count < 2) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700670 netdev_err(ndev, "Got only %d netvsc pkt...needed "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700671 "%d pkts. Dropping this xfer page packet completely!\n",
Hank Jansseneb335bc2011-03-29 13:58:48 -0700672 count, vmxferpage_packet->range_cnt + 1);
Hank Janssenfceaf242009-07-13 15:34:54 -0700673
Bill Pemberton454f18a2009-07-27 16:47:24 -0400674 /* Return it to the freelist */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800675 spin_lock_irqsave(&net_device->recv_pkt_list_lock, flags);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700676 for (i = count; i != 0; i--) {
Milan Dadok92ec0892009-10-28 23:23:37 +0100677 list_move_tail(listHead.next,
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800678 &net_device->recv_pkt_list);
Hank Janssenfceaf242009-07-13 15:34:54 -0700679 }
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800680 spin_unlock_irqrestore(&net_device->recv_pkt_list_lock,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700681 flags);
Hank Janssenfceaf242009-07-13 15:34:54 -0700682
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800683 netvsc_send_recv_completion(device,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800684 vmxferpage_packet->d.trans_id);
Hank Janssenfceaf242009-07-13 15:34:54 -0700685
Hank Janssenfceaf242009-07-13 15:34:54 -0700686 return;
687 }
688
Bill Pemberton454f18a2009-07-27 16:47:24 -0400689 /* Remove the 1st packet to represent the xfer page packet itself */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800690 xferpage_packet = (struct xferpage_packet *)listHead.next;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800691 list_del(&xferpage_packet->list_ent);
Bill Pembertond29274e2009-09-11 21:46:43 -0400692
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700693 /* This is how much we can satisfy */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800694 xferpage_packet->count = count - 1;
Hank Janssenfceaf242009-07-13 15:34:54 -0700695
Haiyang Zhang415f2282011-01-26 12:12:13 -0800696 if (xferpage_packet->count != vmxferpage_packet->range_cnt) {
Haiyang Zhang8bff33a2011-09-01 12:19:48 -0700697 netdev_err(ndev, "Needed %d netvsc pkts to satisfy "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700698 "this xfer page...got %d\n",
Hank Jansseneb335bc2011-03-29 13:58:48 -0700699 vmxferpage_packet->range_cnt, xferpage_packet->count);
Hank Janssenfceaf242009-07-13 15:34:54 -0700700 }
701
Bill Pemberton454f18a2009-07-27 16:47:24 -0400702 /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700703 for (i = 0; i < (count - 1); i++) {
Haiyang Zhang85799a32010-12-10 12:03:54 -0800704 netvsc_packet = (struct hv_netvsc_packet *)listHead.next;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800705 list_del(&netvsc_packet->list_ent);
Hank Janssenfceaf242009-07-13 15:34:54 -0700706
Bill Pemberton454f18a2009-07-27 16:47:24 -0400707 /* Initialize the netvsc packet */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800708 netvsc_packet->xfer_page_pkt = xferpage_packet;
709 netvsc_packet->completion.recv.recv_completion =
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800710 netvsc_receive_completion;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800711 netvsc_packet->completion.recv.recv_completion_ctx =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800712 netvsc_packet;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800713 netvsc_packet->device = device;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700714 /* Save this so that we can send it back */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800715 netvsc_packet->completion.recv.recv_completion_tid =
Haiyang Zhang415f2282011-01-26 12:12:13 -0800716 vmxferpage_packet->d.trans_id;
Hank Janssenfceaf242009-07-13 15:34:54 -0700717
Haiyang Zhang45326342011-12-15 13:45:15 -0800718 netvsc_packet->data = (void *)((unsigned long)net_device->
719 recv_buf + vmxferpage_packet->ranges[i].byte_offset);
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800720 netvsc_packet->total_data_buflen =
Haiyang Zhang415f2282011-01-26 12:12:13 -0800721 vmxferpage_packet->ranges[i].byte_count;
Hank Janssenfceaf242009-07-13 15:34:54 -0700722
Bill Pemberton454f18a2009-07-27 16:47:24 -0400723 /* Pass it to the upper layer */
K. Y. Srinivasanac6f7852011-05-12 19:34:58 -0700724 rndis_filter_receive(device, netvsc_packet);
Hank Janssenfceaf242009-07-13 15:34:54 -0700725
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800726 netvsc_receive_completion(netvsc_packet->
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800727 completion.recv.recv_completion_ctx);
Hank Janssenfceaf242009-07-13 15:34:54 -0700728 }
729
Hank Janssenfceaf242009-07-13 15:34:54 -0700730}
731
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800732static void netvsc_channel_cb(void *context)
Hank Janssenfceaf242009-07-13 15:34:54 -0700733{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700734 int ret;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800735 struct hv_device *device = context;
736 struct netvsc_device *net_device;
737 u32 bytes_recvd;
738 u64 request_id;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400739 unsigned char *packet;
Greg Kroah-Hartman8dc0a062009-08-27 16:02:36 -0700740 struct vmpacket_descriptor *desc;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400741 unsigned char *buffer;
742 int bufferlen = NETVSC_PACKET_SIZE;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700743 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700744
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400745 packet = kzalloc(NETVSC_PACKET_SIZE * sizeof(unsigned char),
Timo Teräsd70c6732010-12-17 11:40:24 +0200746 GFP_ATOMIC);
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400747 if (!packet)
748 return;
749 buffer = packet;
750
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800751 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700752 if (!net_device)
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400753 goto out;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700754 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700755
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700756 do {
Greg Kroah-Hartman9f630062010-10-21 09:09:48 -0700757 ret = vmbus_recvpacket_raw(device->channel, buffer, bufferlen,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800758 &bytes_recvd, &request_id);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700759 if (ret == 0) {
Haiyang Zhang85799a32010-12-10 12:03:54 -0800760 if (bytes_recvd > 0) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700761 desc = (struct vmpacket_descriptor *)buffer;
Haiyang Zhang415f2282011-01-26 12:12:13 -0800762 switch (desc->type) {
763 case VM_PKT_COMP:
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800764 netvsc_send_completion(device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700765 break;
Hank Janssenfceaf242009-07-13 15:34:54 -0700766
Haiyang Zhang415f2282011-01-26 12:12:13 -0800767 case VM_PKT_DATA_USING_XFER_PAGES:
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800768 netvsc_receive(device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700769 break;
Hank Janssenfceaf242009-07-13 15:34:54 -0700770
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700771 default:
Haiyang Zhangd9871152011-09-01 12:19:41 -0700772 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700773 "unhandled packet type %d, "
774 "tid %llx len %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -0800775 desc->type, request_id,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800776 bytes_recvd);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700777 break;
Hank Janssenfceaf242009-07-13 15:34:54 -0700778 }
779
Bill Pemberton454f18a2009-07-27 16:47:24 -0400780 /* reset */
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400781 if (bufferlen > NETVSC_PACKET_SIZE) {
Greg Kroah-Hartman8c69f522009-07-15 12:48:29 -0700782 kfree(buffer);
Hank Janssenfceaf242009-07-13 15:34:54 -0700783 buffer = packet;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400784 bufferlen = NETVSC_PACKET_SIZE;
Hank Janssenfceaf242009-07-13 15:34:54 -0700785 }
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700786 } else {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400787 /* reset */
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400788 if (bufferlen > NETVSC_PACKET_SIZE) {
Greg Kroah-Hartman8c69f522009-07-15 12:48:29 -0700789 kfree(buffer);
Hank Janssenfceaf242009-07-13 15:34:54 -0700790 buffer = packet;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400791 bufferlen = NETVSC_PACKET_SIZE;
Hank Janssenfceaf242009-07-13 15:34:54 -0700792 }
793
794 break;
795 }
K. Y. Srinivasan3d5cad92011-08-25 09:48:59 -0700796 } else if (ret == -ENOBUFS) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700797 /* Handle large packet */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800798 buffer = kmalloc(bytes_recvd, GFP_ATOMIC);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700799 if (buffer == NULL) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400800 /* Try again next time around */
Haiyang Zhangd9871152011-09-01 12:19:41 -0700801 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700802 "unable to allocate buffer of size "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700803 "(%d)!!\n", bytes_recvd);
Hank Janssenfceaf242009-07-13 15:34:54 -0700804 break;
805 }
806
Haiyang Zhang85799a32010-12-10 12:03:54 -0800807 bufferlen = bytes_recvd;
Hank Janssenfceaf242009-07-13 15:34:54 -0700808 }
809 } while (1);
810
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400811out:
812 kfree(buffer);
Hank Janssenfceaf242009-07-13 15:34:54 -0700813 return;
814}
Haiyang Zhangaf24ce42011-04-21 12:30:40 -0700815
816/*
Haiyang Zhangb637e022011-04-21 12:30:45 -0700817 * netvsc_device_add - Callback when the device belonging to this
818 * driver is added
819 */
K. Y. Srinivasan7bd23a42011-05-10 07:54:53 -0700820int netvsc_device_add(struct hv_device *device, void *additional_info)
Haiyang Zhangb637e022011-04-21 12:30:45 -0700821{
822 int ret = 0;
823 int i;
K. Y. Srinivasanaae23982011-05-12 19:35:05 -0700824 int ring_size =
825 ((struct netvsc_device_info *)additional_info)->ring_size;
Haiyang Zhangb637e022011-04-21 12:30:45 -0700826 struct netvsc_device *net_device;
827 struct hv_netvsc_packet *packet, *pos;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700828 struct net_device *ndev;
Haiyang Zhangb637e022011-04-21 12:30:45 -0700829
830 net_device = alloc_net_device(device);
831 if (!net_device) {
K. Y. Srinivasanace163a2011-08-25 09:49:16 -0700832 ret = -ENOMEM;
Haiyang Zhangb637e022011-04-21 12:30:45 -0700833 goto cleanup;
834 }
835
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700836 /*
837 * Coming into this function, struct net_device * is
838 * registered as the driver private data.
839 * In alloc_net_device(), we register struct netvsc_device *
840 * as the driver private data and stash away struct net_device *
841 * in struct netvsc_device *.
842 */
843 ndev = net_device->ndev;
844
Haiyang Zhangb637e022011-04-21 12:30:45 -0700845 /* Initialize the NetVSC channel extension */
846 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE;
847 spin_lock_init(&net_device->recv_pkt_list_lock);
848
Haiyang Zhangb637e022011-04-21 12:30:45 -0700849 INIT_LIST_HEAD(&net_device->recv_pkt_list);
850
851 for (i = 0; i < NETVSC_RECEIVE_PACKETLIST_COUNT; i++) {
852 packet = kzalloc(sizeof(struct hv_netvsc_packet) +
853 (NETVSC_RECEIVE_SG_COUNT *
854 sizeof(struct hv_page_buffer)), GFP_KERNEL);
855 if (!packet)
856 break;
857
858 list_add_tail(&packet->list_ent,
859 &net_device->recv_pkt_list);
860 }
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700861 init_completion(&net_device->channel_init_wait);
Haiyang Zhangb637e022011-04-21 12:30:45 -0700862
863 /* Open the channel */
K. Y. Srinivasanaae23982011-05-12 19:35:05 -0700864 ret = vmbus_open(device->channel, ring_size * PAGE_SIZE,
865 ring_size * PAGE_SIZE, NULL, 0,
Haiyang Zhangb637e022011-04-21 12:30:45 -0700866 netvsc_channel_cb, device);
867
868 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700869 netdev_err(ndev, "unable to open channel: %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -0700870 goto cleanup;
871 }
872
873 /* Channel is opened */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700874 pr_info("hv_netvsc channel opened successfully\n");
Haiyang Zhangb637e022011-04-21 12:30:45 -0700875
876 /* Connect with the NetVsp */
877 ret = netvsc_connect_vsp(device);
878 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700879 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700880 "unable to connect to NetVSP - %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -0700881 goto close;
882 }
883
884 return ret;
885
886close:
887 /* Now, we can close the channel safely */
888 vmbus_close(device->channel);
889
890cleanup:
891
892 if (net_device) {
893 list_for_each_entry_safe(packet, pos,
894 &net_device->recv_pkt_list,
895 list_ent) {
896 list_del(&packet->list_ent);
897 kfree(packet);
898 }
899
K. Y. Srinivasan356c4652011-08-27 11:31:10 -0700900 kfree(net_device);
Haiyang Zhangb637e022011-04-21 12:30:45 -0700901 }
902
903 return ret;
904}