blob: 1c4f265f4e7cd74660f5123f973e161eaffe91aa [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. Srinivasan2ddd5e5f2011-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. Srinivasan2ddd5e5f2011-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. Srinivasan2ddd5e5f2011-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. Srinivasan2ddd5e5f2011-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. Srinivasan2ddd5e5f2011-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. Srinivasan2ddd5e5f2011-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 Zhangc51ed182014-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 Zhangc51ed182014-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 Zhangc51ed182014-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. Srinivasan2ddd5e5f2011-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. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700232 if (!net_device)
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700233 return -ENODEV;
K. Y. Srinivasan2ddd5e5f2011-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 Zhangc51ed182014-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 Zhangc51ed182014-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 Zhangc51ed182014-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. Srinivasan2ddd5e5f2011-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. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700475 if (!net_device)
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700476 return -ENODEV;
K. Y. Srinivasan2ddd5e5f2011-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. Srinivasan2ddd5e5f2011-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. Srinivasan2ddd5e5f2011-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. Srinivasan2ddd5e5f2011-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. Srinivasan2ddd5e5f2011-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;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700706 u32 page_count = packet->cp_partial ? packet->rmsg_pgcnt :
707 packet->page_buf_cnt;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700708
709 /* Add padding */
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700710 if (packet->is_data_pkt && packet->xmit_more && remain &&
711 !packet->cp_partial) {
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700712 padding = net_device->pkt_align - remain;
713 packet->rndis_msg->msg_len += padding;
714 packet->total_data_buflen += padding;
715 }
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700716
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700717 for (i = 0; i < page_count; i++) {
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700718 char *src = phys_to_virt(packet->page_buf[i].pfn << PAGE_SHIFT);
719 u32 offset = packet->page_buf[i].offset;
720 u32 len = packet->page_buf[i].len;
721
722 memcpy(dest, (src + offset), len);
723 msg_size += len;
724 dest += len;
725 }
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700726
727 if (padding) {
728 memset(dest, 0, padding);
729 msg_size += padding;
730 }
731
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700732 return msg_size;
733}
734
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700735static inline int netvsc_send_pkt(
736 struct hv_netvsc_packet *packet,
737 struct netvsc_device *net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700738{
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700739 struct nvsp_message nvmsg;
740 struct vmbus_channel *out_channel = packet->channel;
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700741 u16 q_idx = packet->q_idx;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700742 struct net_device *ndev = net_device->ndev;
743 u64 req_id;
744 int ret;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700745 struct hv_page_buffer *pgbuf;
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700746 u32 ring_avail = hv_ringbuf_avail_percent(&out_channel->outbound);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700747
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700748 nvmsg.hdr.msg_type = NVSP_MSG1_TYPE_SEND_RNDIS_PKT;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800749 if (packet->is_data_pkt) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700750 /* 0 is RMC_DATA; */
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700751 nvmsg.msg.v1_msg.send_rndis_pkt.channel_type = 0;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700752 } else {
753 /* 1 is RMC_CONTROL; */
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700754 nvmsg.msg.v1_msg.send_rndis_pkt.channel_type = 1;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700755 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700756
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700757 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_index =
758 packet->send_buf_index;
759 if (packet->send_buf_index == NETVSC_INVALID_INDEX)
760 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_size = 0;
761 else
762 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_size =
763 packet->total_data_buflen;
Hank Janssenfceaf242009-07-13 15:34:54 -0700764
Haiyang Zhang893f6622014-04-21 14:54:44 -0700765 if (packet->send_completion)
Haiyang Zhang00ca8f02013-04-26 08:25:55 +0000766 req_id = (ulong)packet;
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000767 else
768 req_id = 0;
769
Haiyang Zhangc3582a22014-12-01 13:28:39 -0800770 if (out_channel->rescind)
771 return -ENODEV;
772
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700773 /*
774 * It is possible that once we successfully place this packet
775 * on the ringbuffer, we may stop the queue. In that case, we want
776 * to notify the host independent of the xmit_more flag. We don't
777 * need to be precise here; in the worst case we may signal the host
778 * unnecessarily.
779 */
780 if (ring_avail < (RING_AVAIL_PERCENT_LOWATER + 1))
781 packet->xmit_more = false;
782
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800783 if (packet->page_buf_cnt) {
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700784 pgbuf = packet->cp_partial ? packet->page_buf +
785 packet->rmsg_pgcnt : packet->page_buf;
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700786 ret = vmbus_sendpacket_pagebuffer_ctl(out_channel,
787 pgbuf,
788 packet->page_buf_cnt,
789 &nvmsg,
790 sizeof(struct nvsp_message),
791 req_id,
792 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED,
793 !packet->xmit_more);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700794 } else {
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700795 ret = vmbus_sendpacket_ctl(out_channel, &nvmsg,
796 sizeof(struct nvsp_message),
797 req_id,
798 VM_PKT_DATA_INBAND,
799 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED,
800 !packet->xmit_more);
Hank Janssenfceaf242009-07-13 15:34:54 -0700801 }
802
Haiyang Zhang1d068252011-12-02 11:56:25 -0800803 if (ret == 0) {
804 atomic_inc(&net_device->num_outstanding_sends);
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700805 atomic_inc(&net_device->queue_sends[q_idx]);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700806
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700807 if (ring_avail < RING_AVAIL_PERCENT_LOWATER) {
808 netif_tx_stop_queue(netdev_get_tx_queue(ndev, q_idx));
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700809
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000810 if (atomic_read(&net_device->
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700811 queue_sends[q_idx]) < 1)
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700812 netif_tx_wake_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700813 ndev, q_idx));
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000814 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800815 } else if (ret == -EAGAIN) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700816 netif_tx_stop_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700817 ndev, q_idx));
818 if (atomic_read(&net_device->queue_sends[q_idx]) < 1) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700819 netif_tx_wake_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700820 ndev, q_idx));
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000821 ret = -ENOSPC;
822 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800823 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700824 netdev_err(ndev, "Unable to send packet %p ret %d\n",
Haiyang Zhang85799a32010-12-10 12:03:54 -0800825 packet, ret);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800826 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700827
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700828 return ret;
829}
830
831int netvsc_send(struct hv_device *device,
832 struct hv_netvsc_packet *packet)
833{
834 struct netvsc_device *net_device;
835 int ret = 0, m_ret = 0;
836 struct vmbus_channel *out_channel;
837 u16 q_idx = packet->q_idx;
838 u32 pktlen = packet->total_data_buflen, msd_len = 0;
839 unsigned int section_index = NETVSC_INVALID_INDEX;
840 struct sk_buff *skb = NULL;
841 unsigned long flag;
842 struct multi_send_data *msdp;
843 struct hv_netvsc_packet *msd_send = NULL, *cur_send = NULL;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700844 bool try_batch;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700845
846 net_device = get_outbound_net_device(device);
847 if (!net_device)
848 return -ENODEV;
849
850 out_channel = net_device->chn_table[q_idx];
851 if (!out_channel) {
852 out_channel = device->channel;
853 q_idx = 0;
854 packet->q_idx = 0;
855 }
856 packet->channel = out_channel;
857 packet->send_buf_index = NETVSC_INVALID_INDEX;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700858 packet->cp_partial = false;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700859
860 msdp = &net_device->msd[q_idx];
861
862 /* batch packets in send buffer if possible */
863 spin_lock_irqsave(&msdp->lock, flag);
864 if (msdp->pkt)
865 msd_len = msdp->pkt->total_data_buflen;
866
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700867 try_batch = packet->is_data_pkt && msd_len > 0 && msdp->count <
868 net_device->max_pkt;
869
870 if (try_batch && msd_len + pktlen + net_device->pkt_align <
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700871 net_device->send_section_size) {
872 section_index = msdp->pkt->send_buf_index;
873
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700874 } else if (try_batch && msd_len + packet->rmsg_size <
875 net_device->send_section_size) {
876 section_index = msdp->pkt->send_buf_index;
877 packet->cp_partial = true;
878
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700879 } else if (packet->is_data_pkt && pktlen + net_device->pkt_align <
880 net_device->send_section_size) {
881 section_index = netvsc_get_next_send_section(net_device);
882 if (section_index != NETVSC_INVALID_INDEX) {
883 msd_send = msdp->pkt;
884 msdp->pkt = NULL;
885 msdp->count = 0;
886 msd_len = 0;
887 }
888 }
889
890 if (section_index != NETVSC_INVALID_INDEX) {
891 netvsc_copy_to_send_buf(net_device,
892 section_index, msd_len,
893 packet);
KY Srinivasanb08cc792015-03-29 21:08:42 -0700894
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700895 packet->send_buf_index = section_index;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700896
897 if (packet->cp_partial) {
898 packet->page_buf_cnt -= packet->rmsg_pgcnt;
899 packet->total_data_buflen = msd_len + packet->rmsg_size;
900 } else {
901 packet->page_buf_cnt = 0;
902 packet->total_data_buflen += msd_len;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700903 }
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700904
Haiyang Zhangee90b812015-04-06 15:22:54 -0700905 if (msdp->pkt)
906 netvsc_xmit_completion(msdp->pkt);
907
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700908 if (packet->xmit_more && !packet->cp_partial) {
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700909 msdp->pkt = packet;
910 msdp->count++;
911 } else {
912 cur_send = packet;
913 msdp->pkt = NULL;
914 msdp->count = 0;
915 }
916 } else {
917 msd_send = msdp->pkt;
918 msdp->pkt = NULL;
919 msdp->count = 0;
920 cur_send = packet;
921 }
922
923 spin_unlock_irqrestore(&msdp->lock, flag);
924
925 if (msd_send) {
926 m_ret = netvsc_send_pkt(msd_send, net_device);
927
928 if (m_ret != 0) {
929 netvsc_free_send_slot(net_device,
930 msd_send->send_buf_index);
Haiyang Zhangee90b812015-04-06 15:22:54 -0700931 netvsc_xmit_completion(msd_send);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700932 }
933 }
934
935 if (cur_send)
936 ret = netvsc_send_pkt(cur_send, net_device);
937
Haiyang Zhangd953ca42015-01-29 12:34:49 -0800938 if (ret != 0) {
939 if (section_index != NETVSC_INVALID_INDEX)
940 netvsc_free_send_slot(net_device, section_index);
941 } else if (skb) {
942 dev_kfree_skb_any(skb);
943 }
944
Hank Janssenfceaf242009-07-13 15:34:54 -0700945 return ret;
946}
947
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700948static void netvsc_send_recv_completion(struct hv_device *device,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700949 struct vmbus_channel *channel,
KY Srinivasan97c17232014-02-16 16:38:44 -0800950 struct netvsc_device *net_device,
Haiyang Zhang63f69212012-10-02 05:30:23 +0000951 u64 transaction_id, u32 status)
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700952{
953 struct nvsp_message recvcompMessage;
954 int retries = 0;
955 int ret;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700956 struct net_device *ndev;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700957
958 ndev = net_device->ndev;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700959
960 recvcompMessage.hdr.msg_type =
961 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE;
962
Haiyang Zhang63f69212012-10-02 05:30:23 +0000963 recvcompMessage.msg.v1_msg.send_rndis_pkt_complete.status = status;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700964
965retry_send_cmplt:
966 /* Send the completion */
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700967 ret = vmbus_sendpacket(channel, &recvcompMessage,
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700968 sizeof(struct nvsp_message), transaction_id,
969 VM_PKT_COMP, 0);
970 if (ret == 0) {
971 /* success */
972 /* no-op */
K. Y. Srinivasand2598f02011-08-25 09:48:58 -0700973 } else if (ret == -EAGAIN) {
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700974 /* no more room...wait a bit and attempt to retry 3 times */
975 retries++;
Haiyang Zhangd9871152011-09-01 12:19:41 -0700976 netdev_err(ndev, "unable to send receive completion pkt"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700977 " (tid %llx)...retrying %d\n", transaction_id, retries);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700978
979 if (retries < 4) {
980 udelay(100);
981 goto retry_send_cmplt;
982 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700983 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700984 "completion pkt (tid %llx)...give up retrying\n",
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700985 transaction_id);
986 }
987 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700988 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700989 "completion pkt - %llx\n", transaction_id);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700990 }
991}
992
KY Srinivasan97c17232014-02-16 16:38:44 -0800993static void netvsc_receive(struct netvsc_device *net_device,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700994 struct vmbus_channel *channel,
KY Srinivasan97c17232014-02-16 16:38:44 -0800995 struct hv_device *device,
996 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700997{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800998 struct vmtransfer_page_packet_header *vmxferpage_packet;
999 struct nvsp_message *nvsp_packet;
Haiyang Zhang4baab262014-04-21 14:54:43 -07001000 struct hv_netvsc_packet nv_pkt;
1001 struct hv_netvsc_packet *netvsc_packet = &nv_pkt;
1002 u32 status = NVSP_STAT_SUCCESS;
Haiyang Zhang45326342011-12-15 13:45:15 -08001003 int i;
1004 int count = 0;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001005 struct net_device *ndev;
K. Y. Srinivasan779b4d12011-04-26 09:20:22 -07001006
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001007 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -07001008
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001009 /*
1010 * All inbound packets other than send completion should be xfer page
1011 * packet
1012 */
Haiyang Zhang415f2282011-01-26 12:12:13 -08001013 if (packet->type != VM_PKT_DATA_USING_XFER_PAGES) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001014 netdev_err(ndev, "Unknown packet type received - %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -08001015 packet->type);
Hank Janssenfceaf242009-07-13 15:34:54 -07001016 return;
1017 }
1018
Haiyang Zhang85799a32010-12-10 12:03:54 -08001019 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -08001020 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -07001021
Bill Pemberton454f18a2009-07-27 16:47:24 -04001022 /* Make sure this is a valid nvsp packet */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -08001023 if (nvsp_packet->hdr.msg_type !=
1024 NVSP_MSG1_TYPE_SEND_RNDIS_PKT) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001025 netdev_err(ndev, "Unknown nvsp packet type received-"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001026 " %d\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -07001027 return;
1028 }
1029
Haiyang Zhang85799a32010-12-10 12:03:54 -08001030 vmxferpage_packet = (struct vmtransfer_page_packet_header *)packet;
Hank Janssenfceaf242009-07-13 15:34:54 -07001031
Haiyang Zhang415f2282011-01-26 12:12:13 -08001032 if (vmxferpage_packet->xfer_pageset_id != NETVSC_RECEIVE_BUFFER_ID) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001033 netdev_err(ndev, "Invalid xfer page set id - "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001034 "expecting %x got %x\n", NETVSC_RECEIVE_BUFFER_ID,
Haiyang Zhang415f2282011-01-26 12:12:13 -08001035 vmxferpage_packet->xfer_pageset_id);
Hank Janssenfceaf242009-07-13 15:34:54 -07001036 return;
1037 }
1038
Haiyang Zhang4baab262014-04-21 14:54:43 -07001039 count = vmxferpage_packet->range_cnt;
Haiyang Zhang4baab262014-04-21 14:54:43 -07001040 netvsc_packet->channel = channel;
Hank Janssenfceaf242009-07-13 15:34:54 -07001041
Bill Pemberton454f18a2009-07-27 16:47:24 -04001042 /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
Haiyang Zhang4baab262014-04-21 14:54:43 -07001043 for (i = 0; i < count; i++) {
Bill Pemberton454f18a2009-07-27 16:47:24 -04001044 /* Initialize the netvsc packet */
Haiyang Zhang63f69212012-10-02 05:30:23 +00001045 netvsc_packet->status = NVSP_STAT_SUCCESS;
Haiyang Zhang45326342011-12-15 13:45:15 -08001046 netvsc_packet->data = (void *)((unsigned long)net_device->
1047 recv_buf + vmxferpage_packet->ranges[i].byte_offset);
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -08001048 netvsc_packet->total_data_buflen =
Haiyang Zhang415f2282011-01-26 12:12:13 -08001049 vmxferpage_packet->ranges[i].byte_count;
Hank Janssenfceaf242009-07-13 15:34:54 -07001050
Bill Pemberton454f18a2009-07-27 16:47:24 -04001051 /* Pass it to the upper layer */
K. Y. Srinivasanac6f7852011-05-12 19:34:58 -07001052 rndis_filter_receive(device, netvsc_packet);
Hank Janssenfceaf242009-07-13 15:34:54 -07001053
Haiyang Zhang4baab262014-04-21 14:54:43 -07001054 if (netvsc_packet->status != NVSP_STAT_SUCCESS)
1055 status = NVSP_STAT_FAIL;
Hank Janssenfceaf242009-07-13 15:34:54 -07001056 }
1057
Haiyang Zhang4baab262014-04-21 14:54:43 -07001058 netvsc_send_recv_completion(device, channel, net_device,
1059 vmxferpage_packet->d.trans_id, status);
Hank Janssenfceaf242009-07-13 15:34:54 -07001060}
1061
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001062
1063static void netvsc_send_table(struct hv_device *hdev,
1064 struct vmpacket_descriptor *vmpkt)
1065{
1066 struct netvsc_device *nvscdev;
1067 struct net_device *ndev;
1068 struct nvsp_message *nvmsg;
1069 int i;
1070 u32 count, *tab;
1071
1072 nvscdev = get_outbound_net_device(hdev);
1073 if (!nvscdev)
1074 return;
1075 ndev = nvscdev->ndev;
1076
1077 nvmsg = (struct nvsp_message *)((unsigned long)vmpkt +
1078 (vmpkt->offset8 << 3));
1079
1080 if (nvmsg->hdr.msg_type != NVSP_MSG5_TYPE_SEND_INDIRECTION_TABLE)
1081 return;
1082
1083 count = nvmsg->msg.v5_msg.send_table.count;
1084 if (count != VRSS_SEND_TAB_SIZE) {
1085 netdev_err(ndev, "Received wrong send-table size:%u\n", count);
1086 return;
1087 }
1088
1089 tab = (u32 *)((unsigned long)&nvmsg->msg.v5_msg.send_table +
1090 nvmsg->msg.v5_msg.send_table.offset);
1091
1092 for (i = 0; i < count; i++)
1093 nvscdev->send_table[i] = tab[i];
1094}
1095
1096void netvsc_channel_cb(void *context)
Hank Janssenfceaf242009-07-13 15:34:54 -07001097{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001098 int ret;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001099 struct vmbus_channel *channel = (struct vmbus_channel *)context;
1100 struct hv_device *device;
Haiyang Zhang85799a32010-12-10 12:03:54 -08001101 struct netvsc_device *net_device;
1102 u32 bytes_recvd;
1103 u64 request_id;
Greg Kroah-Hartman8dc0a062009-08-27 16:02:36 -07001104 struct vmpacket_descriptor *desc;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -04001105 unsigned char *buffer;
1106 int bufferlen = NETVSC_PACKET_SIZE;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001107 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -07001108
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001109 if (channel->primary_channel != NULL)
1110 device = channel->primary_channel->device_obj;
1111 else
1112 device = channel->device_obj;
1113
Haiyang Zhang5a71ae32010-12-10 12:03:55 -08001114 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001115 if (!net_device)
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001116 return;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001117 ndev = net_device->ndev;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001118 buffer = get_per_channel_state(channel);
Hank Janssenfceaf242009-07-13 15:34:54 -07001119
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001120 do {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001121 ret = vmbus_recvpacket_raw(channel, buffer, bufferlen,
Haiyang Zhang85799a32010-12-10 12:03:54 -08001122 &bytes_recvd, &request_id);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001123 if (ret == 0) {
Haiyang Zhang85799a32010-12-10 12:03:54 -08001124 if (bytes_recvd > 0) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001125 desc = (struct vmpacket_descriptor *)buffer;
Haiyang Zhang415f2282011-01-26 12:12:13 -08001126 switch (desc->type) {
1127 case VM_PKT_COMP:
KY Srinivasan97c17232014-02-16 16:38:44 -08001128 netvsc_send_completion(net_device,
1129 device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001130 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001131
Haiyang Zhang415f2282011-01-26 12:12:13 -08001132 case VM_PKT_DATA_USING_XFER_PAGES:
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001133 netvsc_receive(net_device, channel,
1134 device, desc);
1135 break;
1136
1137 case VM_PKT_DATA_INBAND:
1138 netvsc_send_table(device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001139 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001140
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001141 default:
Haiyang Zhangd9871152011-09-01 12:19:41 -07001142 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001143 "unhandled packet type %d, "
1144 "tid %llx len %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -08001145 desc->type, request_id,
Haiyang Zhang85799a32010-12-10 12:03:54 -08001146 bytes_recvd);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001147 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001148 }
1149
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001150 } else {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001151 /*
1152 * We are done for this pass.
1153 */
Hank Janssenfceaf242009-07-13 15:34:54 -07001154 break;
1155 }
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001156
K. Y. Srinivasan3d5cad92011-08-25 09:48:59 -07001157 } else if (ret == -ENOBUFS) {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001158 if (bufferlen > NETVSC_PACKET_SIZE)
1159 kfree(buffer);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001160 /* Handle large packet */
Haiyang Zhang85799a32010-12-10 12:03:54 -08001161 buffer = kmalloc(bytes_recvd, GFP_ATOMIC);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001162 if (buffer == NULL) {
Bill Pemberton454f18a2009-07-27 16:47:24 -04001163 /* Try again next time around */
Haiyang Zhangd9871152011-09-01 12:19:41 -07001164 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001165 "unable to allocate buffer of size "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001166 "(%d)!!\n", bytes_recvd);
Hank Janssenfceaf242009-07-13 15:34:54 -07001167 break;
1168 }
1169
Haiyang Zhang85799a32010-12-10 12:03:54 -08001170 bufferlen = bytes_recvd;
Hank Janssenfceaf242009-07-13 15:34:54 -07001171 }
1172 } while (1);
1173
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001174 if (bufferlen > NETVSC_PACKET_SIZE)
1175 kfree(buffer);
Hank Janssenfceaf242009-07-13 15:34:54 -07001176 return;
1177}
Haiyang Zhangaf24ce42011-04-21 12:30:40 -07001178
1179/*
Haiyang Zhangb637e022011-04-21 12:30:45 -07001180 * netvsc_device_add - Callback when the device belonging to this
1181 * driver is added
1182 */
K. Y. Srinivasan7bd23a42011-05-10 07:54:53 -07001183int netvsc_device_add(struct hv_device *device, void *additional_info)
Haiyang Zhangb637e022011-04-21 12:30:45 -07001184{
1185 int ret = 0;
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001186 int ring_size =
1187 ((struct netvsc_device_info *)additional_info)->ring_size;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001188 struct netvsc_device *net_device;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001189 struct net_device *ndev;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001190
1191 net_device = alloc_net_device(device);
Dan Carpenterb1c84922014-09-04 14:11:23 +03001192 if (!net_device)
1193 return -ENOMEM;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001194
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001195 net_device->ring_size = ring_size;
1196
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001197 /*
1198 * Coming into this function, struct net_device * is
1199 * registered as the driver private data.
1200 * In alloc_net_device(), we register struct netvsc_device *
1201 * as the driver private data and stash away struct net_device *
1202 * in struct netvsc_device *.
1203 */
1204 ndev = net_device->ndev;
1205
Simon Xiao3f300ff2015-04-28 01:05:17 -07001206 /* Add netvsc_device context to netvsc_device */
1207 net_device->nd_ctx = netdev_priv(ndev);
1208
Haiyang Zhangb637e022011-04-21 12:30:45 -07001209 /* Initialize the NetVSC channel extension */
K. Y. Srinivasan35abb212011-05-10 07:55:41 -07001210 init_completion(&net_device->channel_init_wait);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001211
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001212 set_per_channel_state(device->channel, net_device->cb_buffer);
1213
Haiyang Zhangb637e022011-04-21 12:30:45 -07001214 /* Open the channel */
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001215 ret = vmbus_open(device->channel, ring_size * PAGE_SIZE,
1216 ring_size * PAGE_SIZE, NULL, 0,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001217 netvsc_channel_cb, device->channel);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001218
1219 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001220 netdev_err(ndev, "unable to open channel: %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001221 goto cleanup;
1222 }
1223
1224 /* Channel is opened */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001225 pr_info("hv_netvsc channel opened successfully\n");
Haiyang Zhangb637e022011-04-21 12:30:45 -07001226
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001227 net_device->chn_table[0] = device->channel;
1228
Haiyang Zhangb637e022011-04-21 12:30:45 -07001229 /* Connect with the NetVsp */
1230 ret = netvsc_connect_vsp(device);
1231 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001232 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001233 "unable to connect to NetVSP - %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001234 goto close;
1235 }
1236
1237 return ret;
1238
1239close:
1240 /* Now, we can close the channel safely */
1241 vmbus_close(device->channel);
1242
1243cleanup:
Haiyang Zhangf90251c2014-08-15 19:18:19 +00001244 free_netvsc_device(net_device);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001245
1246 return ret;
1247}