blob: b81bd37d3afbb1b8a6e3048cf0c7bd71f87a7afa [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
Jeff Kirsheradf8d3f2013-12-06 06:28:47 -080014 * this program; if not, see <http://www.gnu.org/licenses/>.
Hank Janssenfceaf242009-07-13 15:34:54 -070015 *
16 * Authors:
Haiyang Zhangd0e94d12009-11-23 17:00:22 +000017 * Haiyang Zhang <haiyangz@microsoft.com>
Hank Janssenfceaf242009-07-13 15:34:54 -070018 * Hank Janssen <hjanssen@microsoft.com>
Hank Janssenfceaf242009-07-13 15:34:54 -070019 */
Hank Jansseneb335bc2011-03-29 13:58:48 -070020#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
Greg Kroah-Hartman5654e932009-07-14 15:08:20 -070022#include <linux/kernel.h>
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -080023#include <linux/sched.h>
24#include <linux/wait.h>
Greg Kroah-Hartman0ffa63b2009-07-15 11:06:01 -070025#include <linux/mm.h>
Greg Kroah-Hartmanb4362c92009-07-16 11:50:41 -070026#include <linux/delay.h>
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -070027#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Haiyang Zhangd9871152011-09-01 12:19:41 -070029#include <linux/netdevice.h>
Haiyang Zhangf157e782011-12-15 13:45:16 -080030#include <linux/if_ether.h>
KY Srinivasanc25aaf82014-04-30 10:14:31 -070031#include <asm/sync_bitops.h>
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070032
K. Y. Srinivasan5ca72522011-05-12 19:34:37 -070033#include "hyperv_net.h"
Hank Janssenfceaf242009-07-13 15:34:54 -070034
35
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080036static struct netvsc_device *alloc_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070037{
Haiyang Zhang85799a32010-12-10 12:03:54 -080038 struct netvsc_device *net_device;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -070039 struct net_device *ndev = hv_get_drvdata(device);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -070040 int i;
Hank Janssenfceaf242009-07-13 15:34:54 -070041
Haiyang Zhang85799a32010-12-10 12:03:54 -080042 net_device = kzalloc(sizeof(struct netvsc_device), GFP_KERNEL);
43 if (!net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -070044 return NULL;
45
Haiyang Zhangf90251c2014-08-15 19:18:19 +000046 net_device->cb_buffer = kzalloc(NETVSC_PACKET_SIZE, GFP_KERNEL);
47 if (!net_device->cb_buffer) {
48 kfree(net_device);
49 return NULL;
50 }
51
Haiyang Zhangdc5cd892012-06-04 06:42:38 +000052 init_waitqueue_head(&net_device->wait_drain);
Haiyang Zhang4d447c92011-12-15 13:45:17 -080053 net_device->start_remove = false;
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -070054 net_device->destroy = false;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -080055 net_device->dev = device;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -070056 net_device->ndev = ndev;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -070057 net_device->max_pkt = RNDIS_MAX_PKT_DEFAULT;
58 net_device->pkt_align = RNDIS_PKT_ALIGN_DEFAULT;
59
60 for (i = 0; i < num_online_cpus(); i++)
61 spin_lock_init(&net_device->msd[i].lock);
Hank Janssenfceaf242009-07-13 15:34:54 -070062
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -070063 hv_set_drvdata(device, net_device);
Haiyang Zhang85799a32010-12-10 12:03:54 -080064 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070065}
66
Haiyang Zhangf90251c2014-08-15 19:18:19 +000067static void free_netvsc_device(struct netvsc_device *nvdev)
68{
69 kfree(nvdev->cb_buffer);
70 kfree(nvdev);
71}
72
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080073static struct netvsc_device *get_outbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070074{
Haiyang Zhang85799a32010-12-10 12:03:54 -080075 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070076
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -070077 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070078 if (net_device && net_device->destroy)
Haiyang Zhang85799a32010-12-10 12:03:54 -080079 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -070080
Haiyang Zhang85799a32010-12-10 12:03:54 -080081 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070082}
83
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080084static struct netvsc_device *get_inbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070085{
Haiyang Zhang85799a32010-12-10 12:03:54 -080086 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070087
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -070088 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070089
90 if (!net_device)
91 goto get_in_err;
92
93 if (net_device->destroy &&
94 atomic_read(&net_device->num_outstanding_sends) == 0)
Haiyang Zhang85799a32010-12-10 12:03:54 -080095 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -070096
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070097get_in_err:
Haiyang Zhang85799a32010-12-10 12:03:54 -080098 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070099}
100
Hank Janssenfceaf242009-07-13 15:34:54 -0700101
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700102static int netvsc_destroy_buf(struct netvsc_device *net_device)
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700103{
104 struct nvsp_message *revoke_packet;
105 int ret = 0;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700106 struct net_device *ndev = net_device->ndev;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700107
108 /*
109 * If we got a section count, it means we received a
110 * SendReceiveBufferComplete msg (ie sent
111 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
112 * to send a revoke msg here
113 */
114 if (net_device->recv_section_cnt) {
115 /* Send the revoke receive buffer */
116 revoke_packet = &net_device->revoke_packet;
117 memset(revoke_packet, 0, sizeof(struct nvsp_message));
118
119 revoke_packet->hdr.msg_type =
120 NVSP_MSG1_TYPE_REVOKE_RECV_BUF;
121 revoke_packet->msg.v1_msg.
122 revoke_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
123
124 ret = vmbus_sendpacket(net_device->dev->channel,
125 revoke_packet,
126 sizeof(struct nvsp_message),
127 (unsigned long)revoke_packet,
128 VM_PKT_DATA_INBAND, 0);
129 /*
130 * If we failed here, we might as well return and
131 * have a leak rather than continue and a bugchk
132 */
133 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700134 netdev_err(ndev, "unable to send "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700135 "revoke receive buffer to netvsp\n");
K. Y. Srinivasana3e00532011-08-25 09:49:12 -0700136 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700137 }
138 }
139
140 /* Teardown the gpadl on the vsp end */
141 if (net_device->recv_buf_gpadl_handle) {
142 ret = vmbus_teardown_gpadl(net_device->dev->channel,
143 net_device->recv_buf_gpadl_handle);
144
145 /* If we failed here, we might as well return and have a leak
146 * rather than continue and a bugchk
147 */
148 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700149 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700150 "unable to teardown receive buffer's gpadl\n");
Dan Carpenter7f9615e2011-08-27 14:06:07 +0300151 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700152 }
153 net_device->recv_buf_gpadl_handle = 0;
154 }
155
156 if (net_device->recv_buf) {
157 /* Free up the receive buffer */
Haiyang Zhangb679ef72014-01-27 15:03:42 -0800158 vfree(net_device->recv_buf);
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700159 net_device->recv_buf = NULL;
160 }
161
162 if (net_device->recv_section) {
163 net_device->recv_section_cnt = 0;
164 kfree(net_device->recv_section);
165 net_device->recv_section = NULL;
166 }
167
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700168 /* Deal with the send buffer we may have setup.
169 * If we got a send section size, it means we received a
Haiyang Zhangc51ed18252014-12-19 18:25:18 -0800170 * NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE msg (ie sent
171 * NVSP_MSG1_TYPE_SEND_SEND_BUF msg) therefore, we need
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700172 * to send a revoke msg here
173 */
174 if (net_device->send_section_size) {
175 /* Send the revoke receive buffer */
176 revoke_packet = &net_device->revoke_packet;
177 memset(revoke_packet, 0, sizeof(struct nvsp_message));
178
179 revoke_packet->hdr.msg_type =
180 NVSP_MSG1_TYPE_REVOKE_SEND_BUF;
Haiyang Zhangc51ed18252014-12-19 18:25:18 -0800181 revoke_packet->msg.v1_msg.revoke_send_buf.id =
182 NETVSC_SEND_BUFFER_ID;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700183
184 ret = vmbus_sendpacket(net_device->dev->channel,
185 revoke_packet,
186 sizeof(struct nvsp_message),
187 (unsigned long)revoke_packet,
188 VM_PKT_DATA_INBAND, 0);
189 /* If we failed here, we might as well return and
190 * have a leak rather than continue and a bugchk
191 */
192 if (ret != 0) {
193 netdev_err(ndev, "unable to send "
194 "revoke send buffer to netvsp\n");
195 return ret;
196 }
197 }
198 /* Teardown the gpadl on the vsp end */
199 if (net_device->send_buf_gpadl_handle) {
200 ret = vmbus_teardown_gpadl(net_device->dev->channel,
201 net_device->send_buf_gpadl_handle);
202
203 /* If we failed here, we might as well return and have a leak
204 * rather than continue and a bugchk
205 */
206 if (ret != 0) {
207 netdev_err(ndev,
208 "unable to teardown send buffer's gpadl\n");
209 return ret;
210 }
Dave Jones2f184232014-06-16 16:59:02 -0400211 net_device->send_buf_gpadl_handle = 0;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700212 }
213 if (net_device->send_buf) {
Haiyang Zhangc51ed18252014-12-19 18:25:18 -0800214 /* Free up the send buffer */
KY Srinivasan06b47aa2014-08-02 10:42:02 -0700215 vfree(net_device->send_buf);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700216 net_device->send_buf = NULL;
217 }
218 kfree(net_device->send_section_map);
219
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700220 return ret;
221}
222
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700223static int netvsc_init_buf(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700224{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700225 int ret = 0;
Nicholas Mc Guire7390fe92015-01-25 15:46:31 +0100226 unsigned long t;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800227 struct netvsc_device *net_device;
228 struct nvsp_message *init_packet;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700229 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700230
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800231 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700232 if (!net_device)
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700233 return -ENODEV;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700234 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700235
Haiyang Zhangb679ef72014-01-27 15:03:42 -0800236 net_device->recv_buf = vzalloc(net_device->recv_buf_size);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800237 if (!net_device->recv_buf) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700238 netdev_err(ndev, "unable to allocate receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700239 "buffer of size %d\n", net_device->recv_buf_size);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700240 ret = -ENOMEM;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800241 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700242 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700243
Bill Pemberton454f18a2009-07-27 16:47:24 -0400244 /*
245 * Establish the gpadl handle for this buffer on this
246 * channel. Note: This call uses the vmbus connection rather
247 * than the channel to establish the gpadl handle.
248 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800249 ret = vmbus_establish_gpadl(device->channel, net_device->recv_buf,
250 net_device->recv_buf_size,
251 &net_device->recv_buf_gpadl_handle);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700252 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700253 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700254 "unable to establish receive buffer's gpadl\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800255 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700256 }
257
Hank Janssenfceaf242009-07-13 15:34:54 -0700258
Bill Pemberton454f18a2009-07-27 16:47:24 -0400259 /* Notify the NetVsp of the gpadl handle */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800260 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700261
Haiyang Zhang85799a32010-12-10 12:03:54 -0800262 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700263
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800264 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_RECV_BUF;
265 init_packet->msg.v1_msg.send_recv_buf.
266 gpadl_handle = net_device->recv_buf_gpadl_handle;
267 init_packet->msg.v1_msg.
268 send_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
Hank Janssenfceaf242009-07-13 15:34:54 -0700269
Bill Pemberton454f18a2009-07-27 16:47:24 -0400270 /* Send the gpadl notification request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800271 ret = vmbus_sendpacket(device->channel, init_packet,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700272 sizeof(struct nvsp_message),
Haiyang Zhang85799a32010-12-10 12:03:54 -0800273 (unsigned long)init_packet,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800274 VM_PKT_DATA_INBAND,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700275 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700276 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700277 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700278 "unable to send receive buffer's gpadl to netvsp\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800279 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700280 }
281
K. Y. Srinivasan5c5781b32011-06-16 13:16:35 -0700282 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700283 BUG_ON(t == 0);
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800284
Hank Janssenfceaf242009-07-13 15:34:54 -0700285
Bill Pemberton454f18a2009-07-27 16:47:24 -0400286 /* Check the response */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800287 if (init_packet->msg.v1_msg.
288 send_recv_buf_complete.status != NVSP_STAT_SUCCESS) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700289 netdev_err(ndev, "Unable to complete receive buffer "
Haiyang Zhang8bff33a2011-09-01 12:19:48 -0700290 "initialization with NetVsp - status %d\n",
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800291 init_packet->msg.v1_msg.
292 send_recv_buf_complete.status);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700293 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800294 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700295 }
296
Bill Pemberton454f18a2009-07-27 16:47:24 -0400297 /* Parse the response */
Hank Janssenfceaf242009-07-13 15:34:54 -0700298
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800299 net_device->recv_section_cnt = init_packet->msg.
300 v1_msg.send_recv_buf_complete.num_sections;
Hank Janssenfceaf242009-07-13 15:34:54 -0700301
Haiyang Zhangc1813202011-11-30 07:19:07 -0800302 net_device->recv_section = kmemdup(
303 init_packet->msg.v1_msg.send_recv_buf_complete.sections,
304 net_device->recv_section_cnt *
305 sizeof(struct nvsp_1_receive_buffer_section),
306 GFP_KERNEL);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800307 if (net_device->recv_section == NULL) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700308 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800309 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700310 }
311
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700312 /*
313 * For 1st release, there should only be 1 section that represents the
314 * entire receive buffer
315 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800316 if (net_device->recv_section_cnt != 1 ||
317 net_device->recv_section->offset != 0) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700318 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800319 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700320 }
321
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700322 /* Now setup the send buffer.
323 */
KY Srinivasan06b47aa2014-08-02 10:42:02 -0700324 net_device->send_buf = vzalloc(net_device->send_buf_size);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700325 if (!net_device->send_buf) {
326 netdev_err(ndev, "unable to allocate send "
327 "buffer of size %d\n", net_device->send_buf_size);
328 ret = -ENOMEM;
329 goto cleanup;
330 }
331
332 /* Establish the gpadl handle for this buffer on this
333 * channel. Note: This call uses the vmbus connection rather
334 * than the channel to establish the gpadl handle.
335 */
336 ret = vmbus_establish_gpadl(device->channel, net_device->send_buf,
337 net_device->send_buf_size,
338 &net_device->send_buf_gpadl_handle);
339 if (ret != 0) {
340 netdev_err(ndev,
341 "unable to establish send buffer's gpadl\n");
342 goto cleanup;
343 }
344
345 /* Notify the NetVsp of the gpadl handle */
346 init_packet = &net_device->channel_init_pkt;
347 memset(init_packet, 0, sizeof(struct nvsp_message));
348 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_SEND_BUF;
Haiyang Zhangc51ed18252014-12-19 18:25:18 -0800349 init_packet->msg.v1_msg.send_send_buf.gpadl_handle =
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700350 net_device->send_buf_gpadl_handle;
Haiyang Zhangc51ed18252014-12-19 18:25:18 -0800351 init_packet->msg.v1_msg.send_send_buf.id = NETVSC_SEND_BUFFER_ID;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700352
353 /* Send the gpadl notification request */
354 ret = vmbus_sendpacket(device->channel, init_packet,
355 sizeof(struct nvsp_message),
356 (unsigned long)init_packet,
357 VM_PKT_DATA_INBAND,
358 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
359 if (ret != 0) {
360 netdev_err(ndev,
361 "unable to send send buffer's gpadl to netvsp\n");
362 goto cleanup;
363 }
364
365 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
366 BUG_ON(t == 0);
367
368 /* Check the response */
369 if (init_packet->msg.v1_msg.
370 send_send_buf_complete.status != NVSP_STAT_SUCCESS) {
371 netdev_err(ndev, "Unable to complete send buffer "
372 "initialization with NetVsp - status %d\n",
373 init_packet->msg.v1_msg.
Haiyang Zhangc51ed18252014-12-19 18:25:18 -0800374 send_send_buf_complete.status);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700375 ret = -EINVAL;
376 goto cleanup;
377 }
378
379 /* Parse the response */
380 net_device->send_section_size = init_packet->msg.
381 v1_msg.send_send_buf_complete.section_size;
382
383 /* Section count is simply the size divided by the section size.
384 */
385 net_device->send_section_cnt =
386 net_device->send_buf_size/net_device->send_section_size;
387
388 dev_info(&device->device, "Send section size: %d, Section count:%d\n",
389 net_device->send_section_size, net_device->send_section_cnt);
390
391 /* Setup state for managing the send buffer. */
392 net_device->map_words = DIV_ROUND_UP(net_device->send_section_cnt,
393 BITS_PER_LONG);
394
395 net_device->send_section_map =
396 kzalloc(net_device->map_words * sizeof(ulong), GFP_KERNEL);
Wei Yongjundd1d3f82014-07-23 09:00:35 +0800397 if (net_device->send_section_map == NULL) {
398 ret = -ENOMEM;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700399 goto cleanup;
Wei Yongjundd1d3f82014-07-23 09:00:35 +0800400 }
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700401
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800402 goto exit;
Hank Janssenfceaf242009-07-13 15:34:54 -0700403
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800404cleanup:
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700405 netvsc_destroy_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700406
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800407exit:
Hank Janssenfceaf242009-07-13 15:34:54 -0700408 return ret;
409}
410
Hank Janssenfceaf242009-07-13 15:34:54 -0700411
Haiyang Zhangf157e782011-12-15 13:45:16 -0800412/* Negotiate NVSP protocol version */
413static int negotiate_nvsp_ver(struct hv_device *device,
414 struct netvsc_device *net_device,
415 struct nvsp_message *init_packet,
416 u32 nvsp_ver)
Hank Janssenfceaf242009-07-13 15:34:54 -0700417{
Nicholas Mc Guire7390fe92015-01-25 15:46:31 +0100418 int ret;
419 unsigned long t;
Haiyang Zhangf157e782011-12-15 13:45:16 -0800420
421 memset(init_packet, 0, sizeof(struct nvsp_message));
422 init_packet->hdr.msg_type = NVSP_MSG_TYPE_INIT;
423 init_packet->msg.init_msg.init.min_protocol_ver = nvsp_ver;
424 init_packet->msg.init_msg.init.max_protocol_ver = nvsp_ver;
425
426 /* Send the init request */
427 ret = vmbus_sendpacket(device->channel, init_packet,
428 sizeof(struct nvsp_message),
429 (unsigned long)init_packet,
430 VM_PKT_DATA_INBAND,
431 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
432
433 if (ret != 0)
434 return ret;
435
436 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
437
438 if (t == 0)
439 return -ETIMEDOUT;
440
441 if (init_packet->msg.init_msg.init_complete.status !=
442 NVSP_STAT_SUCCESS)
443 return -EINVAL;
444
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800445 if (nvsp_ver == NVSP_PROTOCOL_VERSION_1)
Haiyang Zhangf157e782011-12-15 13:45:16 -0800446 return 0;
447
448 /* NVSPv2 only: Send NDIS config */
449 memset(init_packet, 0, sizeof(struct nvsp_message));
450 init_packet->hdr.msg_type = NVSP_MSG2_TYPE_SEND_NDIS_CONFIG;
Haiyang Zhang4d3c9d32014-11-12 14:07:44 -0800451 init_packet->msg.v2_msg.send_ndis_config.mtu = net_device->ndev->mtu +
452 ETH_HLEN;
Haiyang Zhang1f5f3a72012-03-12 10:20:50 +0000453 init_packet->msg.v2_msg.send_ndis_config.capability.ieee8021q = 1;
Haiyang Zhangf157e782011-12-15 13:45:16 -0800454
455 ret = vmbus_sendpacket(device->channel, init_packet,
456 sizeof(struct nvsp_message),
457 (unsigned long)init_packet,
458 VM_PKT_DATA_INBAND, 0);
459
460 return ret;
461}
462
463static int netvsc_connect_vsp(struct hv_device *device)
464{
465 int ret;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800466 struct netvsc_device *net_device;
467 struct nvsp_message *init_packet;
468 int ndis_version;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700469 struct net_device *ndev;
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800470 u32 ver_list[] = { NVSP_PROTOCOL_VERSION_1, NVSP_PROTOCOL_VERSION_2,
471 NVSP_PROTOCOL_VERSION_4, NVSP_PROTOCOL_VERSION_5 };
472 int i, num_ver = 4; /* number of different NVSP versions */
Hank Janssenfceaf242009-07-13 15:34:54 -0700473
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800474 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700475 if (!net_device)
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700476 return -ENODEV;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700477 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700478
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800479 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700480
Haiyang Zhangf157e782011-12-15 13:45:16 -0800481 /* Negotiate the latest NVSP protocol supported */
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800482 for (i = num_ver - 1; i >= 0; i--)
483 if (negotiate_nvsp_ver(device, net_device, init_packet,
484 ver_list[i]) == 0) {
485 net_device->nvsp_version = ver_list[i];
486 break;
487 }
488
489 if (i < 0) {
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700490 ret = -EPROTO;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800491 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700492 }
Haiyang Zhangf157e782011-12-15 13:45:16 -0800493
494 pr_debug("Negotiated NVSP version:%x\n", net_device->nvsp_version);
495
Bill Pemberton454f18a2009-07-27 16:47:24 -0400496 /* Send the ndis version */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800497 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700498
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800499 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_4)
KY Srinivasan1f73db42014-04-09 15:00:46 -0700500 ndis_version = 0x00060001;
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800501 else
502 ndis_version = 0x0006001e;
Hank Janssenfceaf242009-07-13 15:34:54 -0700503
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800504 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_NDIS_VER;
505 init_packet->msg.v1_msg.
506 send_ndis_ver.ndis_major_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800507 (ndis_version & 0xFFFF0000) >> 16;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800508 init_packet->msg.v1_msg.
509 send_ndis_ver.ndis_minor_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800510 ndis_version & 0xFFFF;
Hank Janssenfceaf242009-07-13 15:34:54 -0700511
Bill Pemberton454f18a2009-07-27 16:47:24 -0400512 /* Send the init request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800513 ret = vmbus_sendpacket(device->channel, init_packet,
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800514 sizeof(struct nvsp_message),
515 (unsigned long)init_packet,
516 VM_PKT_DATA_INBAND, 0);
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700517 if (ret != 0)
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800518 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700519
Bill Pemberton454f18a2009-07-27 16:47:24 -0400520 /* Post the big receive buffer to NetVSP */
Haiyang Zhang99d30162014-03-09 16:10:59 -0700521 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_2)
522 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE_LEGACY;
523 else
524 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700525 net_device->send_buf_size = NETVSC_SEND_BUFFER_SIZE;
Haiyang Zhang99d30162014-03-09 16:10:59 -0700526
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700527 ret = netvsc_init_buf(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700528
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800529cleanup:
Hank Janssenfceaf242009-07-13 15:34:54 -0700530 return ret;
531}
532
Haiyang Zhang648dc592011-04-21 12:30:47 -0700533static void netvsc_disconnect_vsp(struct netvsc_device *net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700534{
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700535 netvsc_destroy_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700536}
537
Hank Janssen3e189512010-03-04 22:11:00 +0000538/*
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800539 * netvsc_device_remove - Callback when the root bus device is removed
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700540 */
K. Y. Srinivasan905620d2011-05-10 07:54:54 -0700541int netvsc_device_remove(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700542{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800543 struct netvsc_device *net_device;
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -0700544 unsigned long flags;
Hank Janssenfceaf242009-07-13 15:34:54 -0700545
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700546 net_device = hv_get_drvdata(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700547
Haiyang Zhang648dc592011-04-21 12:30:47 -0700548 netvsc_disconnect_vsp(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700549
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700550 /*
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700551 * Since we have already drained, we don't need to busy wait
552 * as was done in final_release_stor_device()
553 * Note that we cannot set the ext pointer to NULL until
554 * we have drained - to drain the outgoing packets, we need to
555 * allow incoming packets.
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700556 */
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700557
558 spin_lock_irqsave(&device->channel->inbound_lock, flags);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700559 hv_set_drvdata(device, NULL);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700560 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700561
K. Y. Srinivasan86c921a2011-09-13 10:59:54 -0700562 /*
563 * At this point, no one should be accessing net_device
564 * except in here
565 */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700566 dev_notice(&device->device, "net device safe to remove\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700567
Bill Pemberton454f18a2009-07-27 16:47:24 -0400568 /* Now, we can close the channel safely */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800569 vmbus_close(device->channel);
Hank Janssenfceaf242009-07-13 15:34:54 -0700570
Bill Pemberton454f18a2009-07-27 16:47:24 -0400571 /* Release all resources */
Markus Elfringaa99c472014-11-25 22:33:45 +0100572 vfree(net_device->sub_cb_buf);
Haiyang Zhangf90251c2014-08-15 19:18:19 +0000573 free_netvsc_device(net_device);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700574 return 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700575}
576
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000577
578#define RING_AVAIL_PERCENT_HIWATER 20
579#define RING_AVAIL_PERCENT_LOWATER 10
580
581/*
582 * Get the percentage of available bytes to write in the ring.
583 * The return value is in range from 0 to 100.
584 */
585static inline u32 hv_ringbuf_avail_percent(
586 struct hv_ring_buffer_info *ring_info)
587{
588 u32 avail_read, avail_write;
589
590 hv_get_ringbuffer_availbytes(ring_info, &avail_read, &avail_write);
591
592 return avail_write * 100 / ring_info->ring_datasize;
593}
594
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700595static inline void netvsc_free_send_slot(struct netvsc_device *net_device,
596 u32 index)
597{
598 sync_change_bit(index, net_device->send_section_map);
599}
600
KY Srinivasan97c17232014-02-16 16:38:44 -0800601static void netvsc_send_completion(struct netvsc_device *net_device,
602 struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800603 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700604{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800605 struct nvsp_message *nvsp_packet;
606 struct hv_netvsc_packet *nvsc_packet;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700607 struct net_device *ndev;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700608 u32 send_index;
Hank Janssenfceaf242009-07-13 15:34:54 -0700609
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700610 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700611
Haiyang Zhang85799a32010-12-10 12:03:54 -0800612 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -0800613 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -0700614
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800615 if ((nvsp_packet->hdr.msg_type == NVSP_MSG_TYPE_INIT_COMPLETE) ||
616 (nvsp_packet->hdr.msg_type ==
617 NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE) ||
618 (nvsp_packet->hdr.msg_type ==
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700619 NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE) ||
620 (nvsp_packet->hdr.msg_type ==
621 NVSP_MSG5_TYPE_SUBCHANNEL)) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400622 /* Copy the response back */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800623 memcpy(&net_device->channel_init_pkt, nvsp_packet,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700624 sizeof(struct nvsp_message));
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700625 complete(&net_device->channel_init_wait);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800626 } else if (nvsp_packet->hdr.msg_type ==
627 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE) {
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000628 int num_outstanding_sends;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700629 u16 q_idx = 0;
630 struct vmbus_channel *channel = device->channel;
631 int queue_sends;
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000632
Bill Pemberton454f18a2009-07-27 16:47:24 -0400633 /* Get the send context */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800634 nvsc_packet = (struct hv_netvsc_packet *)(unsigned long)
Haiyang Zhang415f2282011-01-26 12:12:13 -0800635 packet->trans_id;
Hank Janssenfceaf242009-07-13 15:34:54 -0700636
Bill Pemberton454f18a2009-07-27 16:47:24 -0400637 /* Notify the layer above us */
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700638 if (nvsc_packet) {
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700639 send_index = nvsc_packet->send_buf_index;
640 if (send_index != NETVSC_INVALID_INDEX)
641 netvsc_free_send_slot(net_device, send_index);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700642 q_idx = nvsc_packet->q_idx;
643 channel = nvsc_packet->channel;
Haiyang Zhang893f6622014-04-21 14:54:44 -0700644 nvsc_packet->send_completion(nvsc_packet->
645 send_completion_ctx);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700646 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700647
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000648 num_outstanding_sends =
649 atomic_dec_return(&net_device->num_outstanding_sends);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700650 queue_sends = atomic_dec_return(&net_device->
651 queue_sends[q_idx]);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800652
Haiyang Zhangdc5cd892012-06-04 06:42:38 +0000653 if (net_device->destroy && num_outstanding_sends == 0)
654 wake_up(&net_device->wait_drain);
655
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700656 if (netif_tx_queue_stopped(netdev_get_tx_queue(ndev, q_idx)) &&
657 !net_device->start_remove &&
658 (hv_ringbuf_avail_percent(&channel->outbound) >
659 RING_AVAIL_PERCENT_HIWATER || queue_sends < 1))
660 netif_tx_wake_queue(netdev_get_tx_queue(
661 ndev, q_idx));
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700662 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700663 netdev_err(ndev, "Unknown send completion packet type- "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700664 "%d received!!\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700665 }
666
Hank Janssenfceaf242009-07-13 15:34:54 -0700667}
668
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700669static u32 netvsc_get_next_send_section(struct netvsc_device *net_device)
670{
671 unsigned long index;
672 u32 max_words = net_device->map_words;
673 unsigned long *map_addr = (unsigned long *)net_device->send_section_map;
674 u32 section_cnt = net_device->send_section_cnt;
675 int ret_val = NETVSC_INVALID_INDEX;
676 int i;
677 int prev_val;
678
679 for (i = 0; i < max_words; i++) {
680 if (!~(map_addr[i]))
681 continue;
682 index = ffz(map_addr[i]);
683 prev_val = sync_test_and_set_bit(index, &map_addr[i]);
684 if (prev_val)
685 continue;
686 if ((index + (i * BITS_PER_LONG)) >= section_cnt)
687 break;
688 ret_val = (index + (i * BITS_PER_LONG));
689 break;
690 }
691 return ret_val;
692}
693
Lad, Prabhakarda19fcd2015-02-05 15:06:33 +0000694static u32 netvsc_copy_to_send_buf(struct netvsc_device *net_device,
695 unsigned int section_index,
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700696 u32 pend_size,
Lad, Prabhakarda19fcd2015-02-05 15:06:33 +0000697 struct hv_netvsc_packet *packet)
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700698{
699 char *start = net_device->send_buf;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700700 char *dest = start + (section_index * net_device->send_section_size)
701 + pend_size;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700702 int i;
703 u32 msg_size = 0;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700704 u32 padding = 0;
705 u32 remain = packet->total_data_buflen % net_device->pkt_align;
706
707 /* Add padding */
708 if (packet->is_data_pkt && packet->xmit_more && remain) {
709 padding = net_device->pkt_align - remain;
710 packet->rndis_msg->msg_len += padding;
711 packet->total_data_buflen += padding;
712 }
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700713
714 for (i = 0; i < packet->page_buf_cnt; i++) {
715 char *src = phys_to_virt(packet->page_buf[i].pfn << PAGE_SHIFT);
716 u32 offset = packet->page_buf[i].offset;
717 u32 len = packet->page_buf[i].len;
718
719 memcpy(dest, (src + offset), len);
720 msg_size += len;
721 dest += len;
722 }
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700723
724 if (padding) {
725 memset(dest, 0, padding);
726 msg_size += padding;
727 }
728
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700729 return msg_size;
730}
731
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700732static inline int netvsc_send_pkt(
733 struct hv_netvsc_packet *packet,
734 struct netvsc_device *net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700735{
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700736 struct nvsp_message nvmsg;
737 struct vmbus_channel *out_channel = packet->channel;
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700738 u16 q_idx = packet->q_idx;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700739 struct net_device *ndev = net_device->ndev;
740 u64 req_id;
741 int ret;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700742
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700743 nvmsg.hdr.msg_type = NVSP_MSG1_TYPE_SEND_RNDIS_PKT;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800744 if (packet->is_data_pkt) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700745 /* 0 is RMC_DATA; */
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700746 nvmsg.msg.v1_msg.send_rndis_pkt.channel_type = 0;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700747 } else {
748 /* 1 is RMC_CONTROL; */
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700749 nvmsg.msg.v1_msg.send_rndis_pkt.channel_type = 1;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700750 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700751
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700752 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_index =
753 packet->send_buf_index;
754 if (packet->send_buf_index == NETVSC_INVALID_INDEX)
755 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_size = 0;
756 else
757 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_size =
758 packet->total_data_buflen;
Hank Janssenfceaf242009-07-13 15:34:54 -0700759
Haiyang Zhang893f6622014-04-21 14:54:44 -0700760 if (packet->send_completion)
Haiyang Zhang00ca8f02013-04-26 08:25:55 +0000761 req_id = (ulong)packet;
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000762 else
763 req_id = 0;
764
Haiyang Zhangc3582a22014-12-01 13:28:39 -0800765 if (out_channel->rescind)
766 return -ENODEV;
767
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800768 if (packet->page_buf_cnt) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700769 ret = vmbus_sendpacket_pagebuffer(out_channel,
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800770 packet->page_buf,
771 packet->page_buf_cnt,
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700772 &nvmsg,
Greg Kroah-Hartmanff3f8ee2010-10-21 09:32:46 -0700773 sizeof(struct nvsp_message),
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000774 req_id);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700775 } else {
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700776 ret = vmbus_sendpacket(
777 out_channel, &nvmsg,
Haiyang Zhange4d59ac2011-06-17 07:58:04 -0700778 sizeof(struct nvsp_message),
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000779 req_id,
Haiyang Zhange4d59ac2011-06-17 07:58:04 -0700780 VM_PKT_DATA_INBAND,
781 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Hank Janssenfceaf242009-07-13 15:34:54 -0700782 }
783
Haiyang Zhang1d068252011-12-02 11:56:25 -0800784 if (ret == 0) {
785 atomic_inc(&net_device->num_outstanding_sends);
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700786 atomic_inc(&net_device->queue_sends[q_idx]);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700787
788 if (hv_ringbuf_avail_percent(&out_channel->outbound) <
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000789 RING_AVAIL_PERCENT_LOWATER) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700790 netif_tx_stop_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700791 ndev, q_idx));
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700792
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000793 if (atomic_read(&net_device->
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700794 queue_sends[q_idx]) < 1)
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700795 netif_tx_wake_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700796 ndev, q_idx));
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000797 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800798 } else if (ret == -EAGAIN) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700799 netif_tx_stop_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700800 ndev, q_idx));
801 if (atomic_read(&net_device->queue_sends[q_idx]) < 1) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700802 netif_tx_wake_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700803 ndev, q_idx));
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000804 ret = -ENOSPC;
805 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800806 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700807 netdev_err(ndev, "Unable to send packet %p ret %d\n",
Haiyang Zhang85799a32010-12-10 12:03:54 -0800808 packet, ret);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800809 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700810
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700811 return ret;
812}
813
814int netvsc_send(struct hv_device *device,
815 struct hv_netvsc_packet *packet)
816{
817 struct netvsc_device *net_device;
818 int ret = 0, m_ret = 0;
819 struct vmbus_channel *out_channel;
820 u16 q_idx = packet->q_idx;
821 u32 pktlen = packet->total_data_buflen, msd_len = 0;
822 unsigned int section_index = NETVSC_INVALID_INDEX;
823 struct sk_buff *skb = NULL;
824 unsigned long flag;
825 struct multi_send_data *msdp;
826 struct hv_netvsc_packet *msd_send = NULL, *cur_send = NULL;
827
828 net_device = get_outbound_net_device(device);
829 if (!net_device)
830 return -ENODEV;
831
832 out_channel = net_device->chn_table[q_idx];
833 if (!out_channel) {
834 out_channel = device->channel;
835 q_idx = 0;
836 packet->q_idx = 0;
837 }
838 packet->channel = out_channel;
839 packet->send_buf_index = NETVSC_INVALID_INDEX;
840
841 msdp = &net_device->msd[q_idx];
842
843 /* batch packets in send buffer if possible */
844 spin_lock_irqsave(&msdp->lock, flag);
845 if (msdp->pkt)
846 msd_len = msdp->pkt->total_data_buflen;
847
848 if (packet->is_data_pkt && msd_len > 0 &&
849 msdp->count < net_device->max_pkt &&
850 msd_len + pktlen + net_device->pkt_align <
851 net_device->send_section_size) {
852 section_index = msdp->pkt->send_buf_index;
853
854 } else if (packet->is_data_pkt && pktlen + net_device->pkt_align <
855 net_device->send_section_size) {
856 section_index = netvsc_get_next_send_section(net_device);
857 if (section_index != NETVSC_INVALID_INDEX) {
858 msd_send = msdp->pkt;
859 msdp->pkt = NULL;
860 msdp->count = 0;
861 msd_len = 0;
862 }
863 }
864
865 if (section_index != NETVSC_INVALID_INDEX) {
866 netvsc_copy_to_send_buf(net_device,
867 section_index, msd_len,
868 packet);
869 skb = (struct sk_buff *)
870 (unsigned long)packet->send_completion_tid;
871
872 packet->page_buf_cnt = 0;
873 packet->send_buf_index = section_index;
874 packet->total_data_buflen += msd_len;
875
876 kfree(msdp->pkt);
877 if (packet->xmit_more) {
878 msdp->pkt = packet;
879 msdp->count++;
880 } else {
881 cur_send = packet;
882 msdp->pkt = NULL;
883 msdp->count = 0;
884 }
885 } else {
886 msd_send = msdp->pkt;
887 msdp->pkt = NULL;
888 msdp->count = 0;
889 cur_send = packet;
890 }
891
892 spin_unlock_irqrestore(&msdp->lock, flag);
893
894 if (msd_send) {
895 m_ret = netvsc_send_pkt(msd_send, net_device);
896
897 if (m_ret != 0) {
898 netvsc_free_send_slot(net_device,
899 msd_send->send_buf_index);
900 kfree(msd_send);
901 }
902 }
903
904 if (cur_send)
905 ret = netvsc_send_pkt(cur_send, net_device);
906
Haiyang Zhangd953ca42015-01-29 12:34:49 -0800907 if (ret != 0) {
908 if (section_index != NETVSC_INVALID_INDEX)
909 netvsc_free_send_slot(net_device, section_index);
910 } else if (skb) {
911 dev_kfree_skb_any(skb);
912 }
913
Hank Janssenfceaf242009-07-13 15:34:54 -0700914 return ret;
915}
916
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700917static void netvsc_send_recv_completion(struct hv_device *device,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700918 struct vmbus_channel *channel,
KY Srinivasan97c17232014-02-16 16:38:44 -0800919 struct netvsc_device *net_device,
Haiyang Zhang63f69212012-10-02 05:30:23 +0000920 u64 transaction_id, u32 status)
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700921{
922 struct nvsp_message recvcompMessage;
923 int retries = 0;
924 int ret;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700925 struct net_device *ndev;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700926
927 ndev = net_device->ndev;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700928
929 recvcompMessage.hdr.msg_type =
930 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE;
931
Haiyang Zhang63f69212012-10-02 05:30:23 +0000932 recvcompMessage.msg.v1_msg.send_rndis_pkt_complete.status = status;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700933
934retry_send_cmplt:
935 /* Send the completion */
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700936 ret = vmbus_sendpacket(channel, &recvcompMessage,
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700937 sizeof(struct nvsp_message), transaction_id,
938 VM_PKT_COMP, 0);
939 if (ret == 0) {
940 /* success */
941 /* no-op */
K. Y. Srinivasand2598f02011-08-25 09:48:58 -0700942 } else if (ret == -EAGAIN) {
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700943 /* no more room...wait a bit and attempt to retry 3 times */
944 retries++;
Haiyang Zhangd9871152011-09-01 12:19:41 -0700945 netdev_err(ndev, "unable to send receive completion pkt"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700946 " (tid %llx)...retrying %d\n", transaction_id, retries);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700947
948 if (retries < 4) {
949 udelay(100);
950 goto retry_send_cmplt;
951 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700952 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700953 "completion pkt (tid %llx)...give up retrying\n",
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700954 transaction_id);
955 }
956 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700957 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700958 "completion pkt - %llx\n", transaction_id);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700959 }
960}
961
KY Srinivasan97c17232014-02-16 16:38:44 -0800962static void netvsc_receive(struct netvsc_device *net_device,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700963 struct vmbus_channel *channel,
KY Srinivasan97c17232014-02-16 16:38:44 -0800964 struct hv_device *device,
965 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700966{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800967 struct vmtransfer_page_packet_header *vmxferpage_packet;
968 struct nvsp_message *nvsp_packet;
Haiyang Zhang4baab262014-04-21 14:54:43 -0700969 struct hv_netvsc_packet nv_pkt;
970 struct hv_netvsc_packet *netvsc_packet = &nv_pkt;
971 u32 status = NVSP_STAT_SUCCESS;
Haiyang Zhang45326342011-12-15 13:45:15 -0800972 int i;
973 int count = 0;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700974 struct net_device *ndev;
K. Y. Srinivasan779b4d12011-04-26 09:20:22 -0700975
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700976 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700977
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700978 /*
979 * All inbound packets other than send completion should be xfer page
980 * packet
981 */
Haiyang Zhang415f2282011-01-26 12:12:13 -0800982 if (packet->type != VM_PKT_DATA_USING_XFER_PAGES) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700983 netdev_err(ndev, "Unknown packet type received - %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -0800984 packet->type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700985 return;
986 }
987
Haiyang Zhang85799a32010-12-10 12:03:54 -0800988 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -0800989 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -0700990
Bill Pemberton454f18a2009-07-27 16:47:24 -0400991 /* Make sure this is a valid nvsp packet */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800992 if (nvsp_packet->hdr.msg_type !=
993 NVSP_MSG1_TYPE_SEND_RNDIS_PKT) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700994 netdev_err(ndev, "Unknown nvsp packet type received-"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700995 " %d\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700996 return;
997 }
998
Haiyang Zhang85799a32010-12-10 12:03:54 -0800999 vmxferpage_packet = (struct vmtransfer_page_packet_header *)packet;
Hank Janssenfceaf242009-07-13 15:34:54 -07001000
Haiyang Zhang415f2282011-01-26 12:12:13 -08001001 if (vmxferpage_packet->xfer_pageset_id != NETVSC_RECEIVE_BUFFER_ID) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001002 netdev_err(ndev, "Invalid xfer page set id - "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001003 "expecting %x got %x\n", NETVSC_RECEIVE_BUFFER_ID,
Haiyang Zhang415f2282011-01-26 12:12:13 -08001004 vmxferpage_packet->xfer_pageset_id);
Hank Janssenfceaf242009-07-13 15:34:54 -07001005 return;
1006 }
1007
Haiyang Zhang4baab262014-04-21 14:54:43 -07001008 count = vmxferpage_packet->range_cnt;
1009 netvsc_packet->device = device;
1010 netvsc_packet->channel = channel;
Hank Janssenfceaf242009-07-13 15:34:54 -07001011
Bill Pemberton454f18a2009-07-27 16:47:24 -04001012 /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
Haiyang Zhang4baab262014-04-21 14:54:43 -07001013 for (i = 0; i < count; i++) {
Bill Pemberton454f18a2009-07-27 16:47:24 -04001014 /* Initialize the netvsc packet */
Haiyang Zhang63f69212012-10-02 05:30:23 +00001015 netvsc_packet->status = NVSP_STAT_SUCCESS;
Haiyang Zhang45326342011-12-15 13:45:15 -08001016 netvsc_packet->data = (void *)((unsigned long)net_device->
1017 recv_buf + vmxferpage_packet->ranges[i].byte_offset);
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -08001018 netvsc_packet->total_data_buflen =
Haiyang Zhang415f2282011-01-26 12:12:13 -08001019 vmxferpage_packet->ranges[i].byte_count;
Hank Janssenfceaf242009-07-13 15:34:54 -07001020
Bill Pemberton454f18a2009-07-27 16:47:24 -04001021 /* Pass it to the upper layer */
K. Y. Srinivasanac6f7852011-05-12 19:34:58 -07001022 rndis_filter_receive(device, netvsc_packet);
Hank Janssenfceaf242009-07-13 15:34:54 -07001023
Haiyang Zhang4baab262014-04-21 14:54:43 -07001024 if (netvsc_packet->status != NVSP_STAT_SUCCESS)
1025 status = NVSP_STAT_FAIL;
Hank Janssenfceaf242009-07-13 15:34:54 -07001026 }
1027
Haiyang Zhang4baab262014-04-21 14:54:43 -07001028 netvsc_send_recv_completion(device, channel, net_device,
1029 vmxferpage_packet->d.trans_id, status);
Hank Janssenfceaf242009-07-13 15:34:54 -07001030}
1031
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001032
1033static void netvsc_send_table(struct hv_device *hdev,
1034 struct vmpacket_descriptor *vmpkt)
1035{
1036 struct netvsc_device *nvscdev;
1037 struct net_device *ndev;
1038 struct nvsp_message *nvmsg;
1039 int i;
1040 u32 count, *tab;
1041
1042 nvscdev = get_outbound_net_device(hdev);
1043 if (!nvscdev)
1044 return;
1045 ndev = nvscdev->ndev;
1046
1047 nvmsg = (struct nvsp_message *)((unsigned long)vmpkt +
1048 (vmpkt->offset8 << 3));
1049
1050 if (nvmsg->hdr.msg_type != NVSP_MSG5_TYPE_SEND_INDIRECTION_TABLE)
1051 return;
1052
1053 count = nvmsg->msg.v5_msg.send_table.count;
1054 if (count != VRSS_SEND_TAB_SIZE) {
1055 netdev_err(ndev, "Received wrong send-table size:%u\n", count);
1056 return;
1057 }
1058
1059 tab = (u32 *)((unsigned long)&nvmsg->msg.v5_msg.send_table +
1060 nvmsg->msg.v5_msg.send_table.offset);
1061
1062 for (i = 0; i < count; i++)
1063 nvscdev->send_table[i] = tab[i];
1064}
1065
1066void netvsc_channel_cb(void *context)
Hank Janssenfceaf242009-07-13 15:34:54 -07001067{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001068 int ret;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001069 struct vmbus_channel *channel = (struct vmbus_channel *)context;
1070 struct hv_device *device;
Haiyang Zhang85799a32010-12-10 12:03:54 -08001071 struct netvsc_device *net_device;
1072 u32 bytes_recvd;
1073 u64 request_id;
Greg Kroah-Hartman8dc0a062009-08-27 16:02:36 -07001074 struct vmpacket_descriptor *desc;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -04001075 unsigned char *buffer;
1076 int bufferlen = NETVSC_PACKET_SIZE;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -07001077 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -07001078
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001079 if (channel->primary_channel != NULL)
1080 device = channel->primary_channel->device_obj;
1081 else
1082 device = channel->device_obj;
1083
Haiyang Zhang5a71ae32010-12-10 12:03:55 -08001084 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -07001085 if (!net_device)
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001086 return;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -07001087 ndev = net_device->ndev;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001088 buffer = get_per_channel_state(channel);
Hank Janssenfceaf242009-07-13 15:34:54 -07001089
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001090 do {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001091 ret = vmbus_recvpacket_raw(channel, buffer, bufferlen,
Haiyang Zhang85799a32010-12-10 12:03:54 -08001092 &bytes_recvd, &request_id);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001093 if (ret == 0) {
Haiyang Zhang85799a32010-12-10 12:03:54 -08001094 if (bytes_recvd > 0) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001095 desc = (struct vmpacket_descriptor *)buffer;
Haiyang Zhang415f2282011-01-26 12:12:13 -08001096 switch (desc->type) {
1097 case VM_PKT_COMP:
KY Srinivasan97c17232014-02-16 16:38:44 -08001098 netvsc_send_completion(net_device,
1099 device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001100 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001101
Haiyang Zhang415f2282011-01-26 12:12:13 -08001102 case VM_PKT_DATA_USING_XFER_PAGES:
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001103 netvsc_receive(net_device, channel,
1104 device, desc);
1105 break;
1106
1107 case VM_PKT_DATA_INBAND:
1108 netvsc_send_table(device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001109 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001110
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001111 default:
Haiyang Zhangd9871152011-09-01 12:19:41 -07001112 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001113 "unhandled packet type %d, "
1114 "tid %llx len %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -08001115 desc->type, request_id,
Haiyang Zhang85799a32010-12-10 12:03:54 -08001116 bytes_recvd);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001117 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001118 }
1119
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001120 } else {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001121 /*
1122 * We are done for this pass.
1123 */
Hank Janssenfceaf242009-07-13 15:34:54 -07001124 break;
1125 }
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001126
K. Y. Srinivasan3d5cad92011-08-25 09:48:59 -07001127 } else if (ret == -ENOBUFS) {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001128 if (bufferlen > NETVSC_PACKET_SIZE)
1129 kfree(buffer);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001130 /* Handle large packet */
Haiyang Zhang85799a32010-12-10 12:03:54 -08001131 buffer = kmalloc(bytes_recvd, GFP_ATOMIC);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001132 if (buffer == NULL) {
Bill Pemberton454f18a2009-07-27 16:47:24 -04001133 /* Try again next time around */
Haiyang Zhangd9871152011-09-01 12:19:41 -07001134 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001135 "unable to allocate buffer of size "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001136 "(%d)!!\n", bytes_recvd);
Hank Janssenfceaf242009-07-13 15:34:54 -07001137 break;
1138 }
1139
Haiyang Zhang85799a32010-12-10 12:03:54 -08001140 bufferlen = bytes_recvd;
Hank Janssenfceaf242009-07-13 15:34:54 -07001141 }
1142 } while (1);
1143
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001144 if (bufferlen > NETVSC_PACKET_SIZE)
1145 kfree(buffer);
Hank Janssenfceaf242009-07-13 15:34:54 -07001146 return;
1147}
Haiyang Zhangaf24ce42011-04-21 12:30:40 -07001148
1149/*
Haiyang Zhangb637e022011-04-21 12:30:45 -07001150 * netvsc_device_add - Callback when the device belonging to this
1151 * driver is added
1152 */
K. Y. Srinivasan7bd23a42011-05-10 07:54:53 -07001153int netvsc_device_add(struct hv_device *device, void *additional_info)
Haiyang Zhangb637e022011-04-21 12:30:45 -07001154{
1155 int ret = 0;
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001156 int ring_size =
1157 ((struct netvsc_device_info *)additional_info)->ring_size;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001158 struct netvsc_device *net_device;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -07001159 struct net_device *ndev;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001160
1161 net_device = alloc_net_device(device);
Dan Carpenterb1c84922014-09-04 14:11:23 +03001162 if (!net_device)
1163 return -ENOMEM;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001164
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001165 net_device->ring_size = ring_size;
1166
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -07001167 /*
1168 * Coming into this function, struct net_device * is
1169 * registered as the driver private data.
1170 * In alloc_net_device(), we register struct netvsc_device *
1171 * as the driver private data and stash away struct net_device *
1172 * in struct netvsc_device *.
1173 */
1174 ndev = net_device->ndev;
1175
Haiyang Zhangb637e022011-04-21 12:30:45 -07001176 /* Initialize the NetVSC channel extension */
K. Y. Srinivasan35abb212011-05-10 07:55:41 -07001177 init_completion(&net_device->channel_init_wait);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001178
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001179 set_per_channel_state(device->channel, net_device->cb_buffer);
1180
Haiyang Zhangb637e022011-04-21 12:30:45 -07001181 /* Open the channel */
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001182 ret = vmbus_open(device->channel, ring_size * PAGE_SIZE,
1183 ring_size * PAGE_SIZE, NULL, 0,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001184 netvsc_channel_cb, device->channel);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001185
1186 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001187 netdev_err(ndev, "unable to open channel: %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001188 goto cleanup;
1189 }
1190
1191 /* Channel is opened */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001192 pr_info("hv_netvsc channel opened successfully\n");
Haiyang Zhangb637e022011-04-21 12:30:45 -07001193
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001194 net_device->chn_table[0] = device->channel;
1195
Haiyang Zhangb637e022011-04-21 12:30:45 -07001196 /* Connect with the NetVsp */
1197 ret = netvsc_connect_vsp(device);
1198 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001199 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001200 "unable to connect to NetVSP - %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001201 goto close;
1202 }
1203
1204 return ret;
1205
1206close:
1207 /* Now, we can close the channel safely */
1208 vmbus_close(device->channel);
1209
1210cleanup:
Haiyang Zhangf90251c2014-08-15 19:18:19 +00001211 free_netvsc_device(net_device);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001212
1213 return ret;
1214}