blob: 1e09243d5449d4f85b9c6e1eb9b0812c04c241f8 [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>
Stephen Rothwelld6472302015-06-02 19:01:38 +100031#include <linux/vmalloc.h>
KY Srinivasanc25aaf82014-04-30 10:14:31 -070032#include <asm/sync_bitops.h>
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070033
K. Y. Srinivasan5ca72522011-05-12 19:34:37 -070034#include "hyperv_net.h"
Hank Janssenfceaf242009-07-13 15:34:54 -070035
36
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080037static struct netvsc_device *alloc_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070038{
Haiyang Zhang85799a32010-12-10 12:03:54 -080039 struct netvsc_device *net_device;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070040 struct net_device *ndev = hv_get_drvdata(device);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -070041 int i;
Hank Janssenfceaf242009-07-13 15:34:54 -070042
Haiyang Zhang85799a32010-12-10 12:03:54 -080043 net_device = kzalloc(sizeof(struct netvsc_device), GFP_KERNEL);
44 if (!net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -070045 return NULL;
46
Haiyang Zhangf90251c2014-08-15 19:18:19 +000047 net_device->cb_buffer = kzalloc(NETVSC_PACKET_SIZE, GFP_KERNEL);
48 if (!net_device->cb_buffer) {
49 kfree(net_device);
50 return NULL;
51 }
52
Haiyang Zhangdc5cd892012-06-04 06:42:38 +000053 init_waitqueue_head(&net_device->wait_drain);
Haiyang Zhang4d447c92011-12-15 13:45:17 -080054 net_device->start_remove = false;
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -070055 net_device->destroy = false;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -080056 net_device->dev = device;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070057 net_device->ndev = ndev;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -070058 net_device->max_pkt = RNDIS_MAX_PKT_DEFAULT;
59 net_device->pkt_align = RNDIS_PKT_ALIGN_DEFAULT;
60
61 for (i = 0; i < num_online_cpus(); i++)
62 spin_lock_init(&net_device->msd[i].lock);
Hank Janssenfceaf242009-07-13 15:34:54 -070063
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070064 hv_set_drvdata(device, net_device);
Haiyang Zhang85799a32010-12-10 12:03:54 -080065 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070066}
67
Haiyang Zhangf90251c2014-08-15 19:18:19 +000068static void free_netvsc_device(struct netvsc_device *nvdev)
69{
70 kfree(nvdev->cb_buffer);
71 kfree(nvdev);
72}
73
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080074static struct netvsc_device *get_outbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070075{
Haiyang Zhang85799a32010-12-10 12:03:54 -080076 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070077
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070078 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070079 if (net_device && net_device->destroy)
Haiyang Zhang85799a32010-12-10 12:03:54 -080080 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -070081
Haiyang Zhang85799a32010-12-10 12:03:54 -080082 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070083}
84
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080085static struct netvsc_device *get_inbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070086{
Haiyang Zhang85799a32010-12-10 12:03:54 -080087 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070088
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070089 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070090
91 if (!net_device)
92 goto get_in_err;
93
94 if (net_device->destroy &&
95 atomic_read(&net_device->num_outstanding_sends) == 0)
Haiyang Zhang85799a32010-12-10 12:03:54 -080096 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -070097
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070098get_in_err:
Haiyang Zhang85799a32010-12-10 12:03:54 -080099 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -0700100}
101
Hank Janssenfceaf242009-07-13 15:34:54 -0700102
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700103static int netvsc_destroy_buf(struct netvsc_device *net_device)
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700104{
105 struct nvsp_message *revoke_packet;
106 int ret = 0;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700107 struct net_device *ndev = net_device->ndev;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700108
109 /*
110 * If we got a section count, it means we received a
111 * SendReceiveBufferComplete msg (ie sent
112 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
113 * to send a revoke msg here
114 */
115 if (net_device->recv_section_cnt) {
116 /* Send the revoke receive buffer */
117 revoke_packet = &net_device->revoke_packet;
118 memset(revoke_packet, 0, sizeof(struct nvsp_message));
119
120 revoke_packet->hdr.msg_type =
121 NVSP_MSG1_TYPE_REVOKE_RECV_BUF;
122 revoke_packet->msg.v1_msg.
123 revoke_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
124
125 ret = vmbus_sendpacket(net_device->dev->channel,
126 revoke_packet,
127 sizeof(struct nvsp_message),
128 (unsigned long)revoke_packet,
129 VM_PKT_DATA_INBAND, 0);
130 /*
131 * If we failed here, we might as well return and
132 * have a leak rather than continue and a bugchk
133 */
134 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700135 netdev_err(ndev, "unable to send "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700136 "revoke receive buffer to netvsp\n");
K. Y. Srinivasana3e00532011-08-25 09:49:12 -0700137 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700138 }
139 }
140
141 /* Teardown the gpadl on the vsp end */
142 if (net_device->recv_buf_gpadl_handle) {
143 ret = vmbus_teardown_gpadl(net_device->dev->channel,
144 net_device->recv_buf_gpadl_handle);
145
146 /* If we failed here, we might as well return and have a leak
147 * rather than continue and a bugchk
148 */
149 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700150 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700151 "unable to teardown receive buffer's gpadl\n");
Dan Carpenter7f9615e2011-08-27 14:06:07 +0300152 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700153 }
154 net_device->recv_buf_gpadl_handle = 0;
155 }
156
157 if (net_device->recv_buf) {
158 /* Free up the receive buffer */
Haiyang Zhangb679ef72014-01-27 15:03:42 -0800159 vfree(net_device->recv_buf);
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700160 net_device->recv_buf = NULL;
161 }
162
163 if (net_device->recv_section) {
164 net_device->recv_section_cnt = 0;
165 kfree(net_device->recv_section);
166 net_device->recv_section = NULL;
167 }
168
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700169 /* Deal with the send buffer we may have setup.
170 * If we got a send section size, it means we received a
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800171 * NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE msg (ie sent
172 * NVSP_MSG1_TYPE_SEND_SEND_BUF msg) therefore, we need
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700173 * to send a revoke msg here
174 */
175 if (net_device->send_section_size) {
176 /* Send the revoke receive buffer */
177 revoke_packet = &net_device->revoke_packet;
178 memset(revoke_packet, 0, sizeof(struct nvsp_message));
179
180 revoke_packet->hdr.msg_type =
181 NVSP_MSG1_TYPE_REVOKE_SEND_BUF;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800182 revoke_packet->msg.v1_msg.revoke_send_buf.id =
183 NETVSC_SEND_BUFFER_ID;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700184
185 ret = vmbus_sendpacket(net_device->dev->channel,
186 revoke_packet,
187 sizeof(struct nvsp_message),
188 (unsigned long)revoke_packet,
189 VM_PKT_DATA_INBAND, 0);
190 /* If we failed here, we might as well return and
191 * have a leak rather than continue and a bugchk
192 */
193 if (ret != 0) {
194 netdev_err(ndev, "unable to send "
195 "revoke send buffer to netvsp\n");
196 return ret;
197 }
198 }
199 /* Teardown the gpadl on the vsp end */
200 if (net_device->send_buf_gpadl_handle) {
201 ret = vmbus_teardown_gpadl(net_device->dev->channel,
202 net_device->send_buf_gpadl_handle);
203
204 /* If we failed here, we might as well return and have a leak
205 * rather than continue and a bugchk
206 */
207 if (ret != 0) {
208 netdev_err(ndev,
209 "unable to teardown send buffer's gpadl\n");
210 return ret;
211 }
Dave Jones2f184232014-06-16 16:59:02 -0400212 net_device->send_buf_gpadl_handle = 0;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700213 }
214 if (net_device->send_buf) {
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800215 /* Free up the send buffer */
KY Srinivasan06b47aa2014-08-02 10:42:02 -0700216 vfree(net_device->send_buf);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700217 net_device->send_buf = NULL;
218 }
219 kfree(net_device->send_section_map);
220
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700221 return ret;
222}
223
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700224static int netvsc_init_buf(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700225{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700226 int ret = 0;
Nicholas Mc Guire7390fe92015-01-25 15:46:31 +0100227 unsigned long t;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800228 struct netvsc_device *net_device;
229 struct nvsp_message *init_packet;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700230 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700231
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800232 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700233 if (!net_device)
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700234 return -ENODEV;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700235 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700236
Haiyang Zhangb679ef72014-01-27 15:03:42 -0800237 net_device->recv_buf = vzalloc(net_device->recv_buf_size);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800238 if (!net_device->recv_buf) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700239 netdev_err(ndev, "unable to allocate receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700240 "buffer of size %d\n", net_device->recv_buf_size);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700241 ret = -ENOMEM;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800242 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700243 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700244
Bill Pemberton454f18a2009-07-27 16:47:24 -0400245 /*
246 * Establish the gpadl handle for this buffer on this
247 * channel. Note: This call uses the vmbus connection rather
248 * than the channel to establish the gpadl handle.
249 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800250 ret = vmbus_establish_gpadl(device->channel, net_device->recv_buf,
251 net_device->recv_buf_size,
252 &net_device->recv_buf_gpadl_handle);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700253 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700254 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700255 "unable to establish receive buffer's gpadl\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800256 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700257 }
258
Hank Janssenfceaf242009-07-13 15:34:54 -0700259
Bill Pemberton454f18a2009-07-27 16:47:24 -0400260 /* Notify the NetVsp of the gpadl handle */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800261 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700262
Haiyang Zhang85799a32010-12-10 12:03:54 -0800263 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700264
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800265 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_RECV_BUF;
266 init_packet->msg.v1_msg.send_recv_buf.
267 gpadl_handle = net_device->recv_buf_gpadl_handle;
268 init_packet->msg.v1_msg.
269 send_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
Hank Janssenfceaf242009-07-13 15:34:54 -0700270
Bill Pemberton454f18a2009-07-27 16:47:24 -0400271 /* Send the gpadl notification request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800272 ret = vmbus_sendpacket(device->channel, init_packet,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700273 sizeof(struct nvsp_message),
Haiyang Zhang85799a32010-12-10 12:03:54 -0800274 (unsigned long)init_packet,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800275 VM_PKT_DATA_INBAND,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700276 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700277 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700278 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700279 "unable to send receive buffer's gpadl to netvsp\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800280 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700281 }
282
K. Y. Srinivasan5c5781b32011-06-16 13:16:35 -0700283 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700284 BUG_ON(t == 0);
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800285
Hank Janssenfceaf242009-07-13 15:34:54 -0700286
Bill Pemberton454f18a2009-07-27 16:47:24 -0400287 /* Check the response */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800288 if (init_packet->msg.v1_msg.
289 send_recv_buf_complete.status != NVSP_STAT_SUCCESS) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700290 netdev_err(ndev, "Unable to complete receive buffer "
Haiyang Zhang8bff33a2011-09-01 12:19:48 -0700291 "initialization with NetVsp - status %d\n",
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800292 init_packet->msg.v1_msg.
293 send_recv_buf_complete.status);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700294 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800295 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700296 }
297
Bill Pemberton454f18a2009-07-27 16:47:24 -0400298 /* Parse the response */
Hank Janssenfceaf242009-07-13 15:34:54 -0700299
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800300 net_device->recv_section_cnt = init_packet->msg.
301 v1_msg.send_recv_buf_complete.num_sections;
Hank Janssenfceaf242009-07-13 15:34:54 -0700302
Haiyang Zhangc1813202011-11-30 07:19:07 -0800303 net_device->recv_section = kmemdup(
304 init_packet->msg.v1_msg.send_recv_buf_complete.sections,
305 net_device->recv_section_cnt *
306 sizeof(struct nvsp_1_receive_buffer_section),
307 GFP_KERNEL);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800308 if (net_device->recv_section == NULL) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700309 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800310 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700311 }
312
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700313 /*
314 * For 1st release, there should only be 1 section that represents the
315 * entire receive buffer
316 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800317 if (net_device->recv_section_cnt != 1 ||
318 net_device->recv_section->offset != 0) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700319 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800320 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700321 }
322
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700323 /* Now setup the send buffer.
324 */
KY Srinivasan06b47aa2014-08-02 10:42:02 -0700325 net_device->send_buf = vzalloc(net_device->send_buf_size);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700326 if (!net_device->send_buf) {
327 netdev_err(ndev, "unable to allocate send "
328 "buffer of size %d\n", net_device->send_buf_size);
329 ret = -ENOMEM;
330 goto cleanup;
331 }
332
333 /* Establish the gpadl handle for this buffer on this
334 * channel. Note: This call uses the vmbus connection rather
335 * than the channel to establish the gpadl handle.
336 */
337 ret = vmbus_establish_gpadl(device->channel, net_device->send_buf,
338 net_device->send_buf_size,
339 &net_device->send_buf_gpadl_handle);
340 if (ret != 0) {
341 netdev_err(ndev,
342 "unable to establish send buffer's gpadl\n");
343 goto cleanup;
344 }
345
346 /* Notify the NetVsp of the gpadl handle */
347 init_packet = &net_device->channel_init_pkt;
348 memset(init_packet, 0, sizeof(struct nvsp_message));
349 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_SEND_BUF;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800350 init_packet->msg.v1_msg.send_send_buf.gpadl_handle =
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700351 net_device->send_buf_gpadl_handle;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800352 init_packet->msg.v1_msg.send_send_buf.id = NETVSC_SEND_BUFFER_ID;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700353
354 /* Send the gpadl notification request */
355 ret = vmbus_sendpacket(device->channel, init_packet,
356 sizeof(struct nvsp_message),
357 (unsigned long)init_packet,
358 VM_PKT_DATA_INBAND,
359 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
360 if (ret != 0) {
361 netdev_err(ndev,
362 "unable to send send buffer's gpadl to netvsp\n");
363 goto cleanup;
364 }
365
366 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
367 BUG_ON(t == 0);
368
369 /* Check the response */
370 if (init_packet->msg.v1_msg.
371 send_send_buf_complete.status != NVSP_STAT_SUCCESS) {
372 netdev_err(ndev, "Unable to complete send buffer "
373 "initialization with NetVsp - status %d\n",
374 init_packet->msg.v1_msg.
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800375 send_send_buf_complete.status);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700376 ret = -EINVAL;
377 goto cleanup;
378 }
379
380 /* Parse the response */
381 net_device->send_section_size = init_packet->msg.
382 v1_msg.send_send_buf_complete.section_size;
383
384 /* Section count is simply the size divided by the section size.
385 */
386 net_device->send_section_cnt =
387 net_device->send_buf_size/net_device->send_section_size;
388
389 dev_info(&device->device, "Send section size: %d, Section count:%d\n",
390 net_device->send_section_size, net_device->send_section_cnt);
391
392 /* Setup state for managing the send buffer. */
393 net_device->map_words = DIV_ROUND_UP(net_device->send_section_cnt,
394 BITS_PER_LONG);
395
396 net_device->send_section_map =
397 kzalloc(net_device->map_words * sizeof(ulong), GFP_KERNEL);
Wei Yongjundd1d3f82014-07-23 09:00:35 +0800398 if (net_device->send_section_map == NULL) {
399 ret = -ENOMEM;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700400 goto cleanup;
Wei Yongjundd1d3f82014-07-23 09:00:35 +0800401 }
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700402
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800403 goto exit;
Hank Janssenfceaf242009-07-13 15:34:54 -0700404
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800405cleanup:
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700406 netvsc_destroy_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700407
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800408exit:
Hank Janssenfceaf242009-07-13 15:34:54 -0700409 return ret;
410}
411
Hank Janssenfceaf242009-07-13 15:34:54 -0700412
Haiyang Zhangf157e782011-12-15 13:45:16 -0800413/* Negotiate NVSP protocol version */
414static int negotiate_nvsp_ver(struct hv_device *device,
415 struct netvsc_device *net_device,
416 struct nvsp_message *init_packet,
417 u32 nvsp_ver)
Hank Janssenfceaf242009-07-13 15:34:54 -0700418{
Nicholas Mc Guire7390fe92015-01-25 15:46:31 +0100419 int ret;
420 unsigned long t;
Haiyang Zhangf157e782011-12-15 13:45:16 -0800421
422 memset(init_packet, 0, sizeof(struct nvsp_message));
423 init_packet->hdr.msg_type = NVSP_MSG_TYPE_INIT;
424 init_packet->msg.init_msg.init.min_protocol_ver = nvsp_ver;
425 init_packet->msg.init_msg.init.max_protocol_ver = nvsp_ver;
426
427 /* Send the init request */
428 ret = vmbus_sendpacket(device->channel, init_packet,
429 sizeof(struct nvsp_message),
430 (unsigned long)init_packet,
431 VM_PKT_DATA_INBAND,
432 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
433
434 if (ret != 0)
435 return ret;
436
437 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
438
439 if (t == 0)
440 return -ETIMEDOUT;
441
442 if (init_packet->msg.init_msg.init_complete.status !=
443 NVSP_STAT_SUCCESS)
444 return -EINVAL;
445
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800446 if (nvsp_ver == NVSP_PROTOCOL_VERSION_1)
Haiyang Zhangf157e782011-12-15 13:45:16 -0800447 return 0;
448
449 /* NVSPv2 only: Send NDIS config */
450 memset(init_packet, 0, sizeof(struct nvsp_message));
451 init_packet->hdr.msg_type = NVSP_MSG2_TYPE_SEND_NDIS_CONFIG;
Haiyang Zhang4d3c9d32014-11-12 14:07:44 -0800452 init_packet->msg.v2_msg.send_ndis_config.mtu = net_device->ndev->mtu +
453 ETH_HLEN;
Haiyang Zhang1f5f3a72012-03-12 10:20:50 +0000454 init_packet->msg.v2_msg.send_ndis_config.capability.ieee8021q = 1;
Haiyang Zhangf157e782011-12-15 13:45:16 -0800455
456 ret = vmbus_sendpacket(device->channel, init_packet,
457 sizeof(struct nvsp_message),
458 (unsigned long)init_packet,
459 VM_PKT_DATA_INBAND, 0);
460
461 return ret;
462}
463
464static int netvsc_connect_vsp(struct hv_device *device)
465{
466 int ret;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800467 struct netvsc_device *net_device;
468 struct nvsp_message *init_packet;
469 int ndis_version;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700470 struct net_device *ndev;
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800471 u32 ver_list[] = { NVSP_PROTOCOL_VERSION_1, NVSP_PROTOCOL_VERSION_2,
472 NVSP_PROTOCOL_VERSION_4, NVSP_PROTOCOL_VERSION_5 };
473 int i, num_ver = 4; /* number of different NVSP versions */
Hank Janssenfceaf242009-07-13 15:34:54 -0700474
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800475 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700476 if (!net_device)
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700477 return -ENODEV;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700478 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700479
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800480 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700481
Haiyang Zhangf157e782011-12-15 13:45:16 -0800482 /* Negotiate the latest NVSP protocol supported */
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800483 for (i = num_ver - 1; i >= 0; i--)
484 if (negotiate_nvsp_ver(device, net_device, init_packet,
485 ver_list[i]) == 0) {
486 net_device->nvsp_version = ver_list[i];
487 break;
488 }
489
490 if (i < 0) {
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700491 ret = -EPROTO;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800492 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700493 }
Haiyang Zhangf157e782011-12-15 13:45:16 -0800494
495 pr_debug("Negotiated NVSP version:%x\n", net_device->nvsp_version);
496
Bill Pemberton454f18a2009-07-27 16:47:24 -0400497 /* Send the ndis version */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800498 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700499
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800500 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_4)
KY Srinivasan1f73db42014-04-09 15:00:46 -0700501 ndis_version = 0x00060001;
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800502 else
503 ndis_version = 0x0006001e;
Hank Janssenfceaf242009-07-13 15:34:54 -0700504
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800505 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_NDIS_VER;
506 init_packet->msg.v1_msg.
507 send_ndis_ver.ndis_major_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800508 (ndis_version & 0xFFFF0000) >> 16;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800509 init_packet->msg.v1_msg.
510 send_ndis_ver.ndis_minor_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800511 ndis_version & 0xFFFF;
Hank Janssenfceaf242009-07-13 15:34:54 -0700512
Bill Pemberton454f18a2009-07-27 16:47:24 -0400513 /* Send the init request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800514 ret = vmbus_sendpacket(device->channel, init_packet,
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800515 sizeof(struct nvsp_message),
516 (unsigned long)init_packet,
517 VM_PKT_DATA_INBAND, 0);
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700518 if (ret != 0)
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800519 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700520
Bill Pemberton454f18a2009-07-27 16:47:24 -0400521 /* Post the big receive buffer to NetVSP */
Haiyang Zhang99d30162014-03-09 16:10:59 -0700522 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_2)
523 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE_LEGACY;
524 else
525 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700526 net_device->send_buf_size = NETVSC_SEND_BUFFER_SIZE;
Haiyang Zhang99d30162014-03-09 16:10:59 -0700527
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700528 ret = netvsc_init_buf(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700529
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800530cleanup:
Hank Janssenfceaf242009-07-13 15:34:54 -0700531 return ret;
532}
533
Haiyang Zhang648dc592011-04-21 12:30:47 -0700534static void netvsc_disconnect_vsp(struct netvsc_device *net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700535{
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700536 netvsc_destroy_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700537}
538
Hank Janssen3e189512010-03-04 22:11:00 +0000539/*
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800540 * netvsc_device_remove - Callback when the root bus device is removed
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700541 */
K. Y. Srinivasan905620d2011-05-10 07:54:54 -0700542int netvsc_device_remove(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700543{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800544 struct netvsc_device *net_device;
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -0700545 unsigned long flags;
Hank Janssenfceaf242009-07-13 15:34:54 -0700546
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700547 net_device = hv_get_drvdata(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700548
Haiyang Zhang648dc592011-04-21 12:30:47 -0700549 netvsc_disconnect_vsp(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700550
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700551 /*
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700552 * Since we have already drained, we don't need to busy wait
553 * as was done in final_release_stor_device()
554 * Note that we cannot set the ext pointer to NULL until
555 * we have drained - to drain the outgoing packets, we need to
556 * allow incoming packets.
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700557 */
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700558
559 spin_lock_irqsave(&device->channel->inbound_lock, flags);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700560 hv_set_drvdata(device, NULL);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700561 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700562
K. Y. Srinivasan86c921a2011-09-13 10:59:54 -0700563 /*
564 * At this point, no one should be accessing net_device
565 * except in here
566 */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700567 dev_notice(&device->device, "net device safe to remove\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700568
Bill Pemberton454f18a2009-07-27 16:47:24 -0400569 /* Now, we can close the channel safely */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800570 vmbus_close(device->channel);
Hank Janssenfceaf242009-07-13 15:34:54 -0700571
Bill Pemberton454f18a2009-07-27 16:47:24 -0400572 /* Release all resources */
Markus Elfringaa99c472014-11-25 22:33:45 +0100573 vfree(net_device->sub_cb_buf);
Haiyang Zhangf90251c2014-08-15 19:18:19 +0000574 free_netvsc_device(net_device);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700575 return 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700576}
577
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000578
579#define RING_AVAIL_PERCENT_HIWATER 20
580#define RING_AVAIL_PERCENT_LOWATER 10
581
582/*
583 * Get the percentage of available bytes to write in the ring.
584 * The return value is in range from 0 to 100.
585 */
586static inline u32 hv_ringbuf_avail_percent(
587 struct hv_ring_buffer_info *ring_info)
588{
589 u32 avail_read, avail_write;
590
591 hv_get_ringbuffer_availbytes(ring_info, &avail_read, &avail_write);
592
593 return avail_write * 100 / ring_info->ring_datasize;
594}
595
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700596static inline void netvsc_free_send_slot(struct netvsc_device *net_device,
597 u32 index)
598{
599 sync_change_bit(index, net_device->send_section_map);
600}
601
KY Srinivasan97c17232014-02-16 16:38:44 -0800602static void netvsc_send_completion(struct netvsc_device *net_device,
603 struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800604 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700605{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800606 struct nvsp_message *nvsp_packet;
607 struct hv_netvsc_packet *nvsc_packet;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700608 struct net_device *ndev;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700609 u32 send_index;
Hank Janssenfceaf242009-07-13 15:34:54 -0700610
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700611 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700612
Haiyang Zhang85799a32010-12-10 12:03:54 -0800613 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -0800614 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -0700615
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800616 if ((nvsp_packet->hdr.msg_type == NVSP_MSG_TYPE_INIT_COMPLETE) ||
617 (nvsp_packet->hdr.msg_type ==
618 NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE) ||
619 (nvsp_packet->hdr.msg_type ==
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700620 NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE) ||
621 (nvsp_packet->hdr.msg_type ==
622 NVSP_MSG5_TYPE_SUBCHANNEL)) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400623 /* Copy the response back */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800624 memcpy(&net_device->channel_init_pkt, nvsp_packet,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700625 sizeof(struct nvsp_message));
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700626 complete(&net_device->channel_init_wait);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800627 } else if (nvsp_packet->hdr.msg_type ==
628 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE) {
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000629 int num_outstanding_sends;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700630 u16 q_idx = 0;
631 struct vmbus_channel *channel = device->channel;
632 int queue_sends;
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000633
Bill Pemberton454f18a2009-07-27 16:47:24 -0400634 /* Get the send context */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800635 nvsc_packet = (struct hv_netvsc_packet *)(unsigned long)
Haiyang Zhang415f2282011-01-26 12:12:13 -0800636 packet->trans_id;
Hank Janssenfceaf242009-07-13 15:34:54 -0700637
Bill Pemberton454f18a2009-07-27 16:47:24 -0400638 /* Notify the layer above us */
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700639 if (nvsc_packet) {
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700640 send_index = nvsc_packet->send_buf_index;
641 if (send_index != NETVSC_INVALID_INDEX)
642 netvsc_free_send_slot(net_device, send_index);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700643 q_idx = nvsc_packet->q_idx;
644 channel = nvsc_packet->channel;
Haiyang Zhang893f6622014-04-21 14:54:44 -0700645 nvsc_packet->send_completion(nvsc_packet->
646 send_completion_ctx);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700647 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700648
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000649 num_outstanding_sends =
650 atomic_dec_return(&net_device->num_outstanding_sends);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700651 queue_sends = atomic_dec_return(&net_device->
652 queue_sends[q_idx]);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800653
Haiyang Zhangdc5cd892012-06-04 06:42:38 +0000654 if (net_device->destroy && num_outstanding_sends == 0)
655 wake_up(&net_device->wait_drain);
656
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700657 if (netif_tx_queue_stopped(netdev_get_tx_queue(ndev, q_idx)) &&
658 !net_device->start_remove &&
659 (hv_ringbuf_avail_percent(&channel->outbound) >
660 RING_AVAIL_PERCENT_HIWATER || queue_sends < 1))
661 netif_tx_wake_queue(netdev_get_tx_queue(
662 ndev, q_idx));
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700663 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700664 netdev_err(ndev, "Unknown send completion packet type- "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700665 "%d received!!\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700666 }
667
Hank Janssenfceaf242009-07-13 15:34:54 -0700668}
669
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700670static u32 netvsc_get_next_send_section(struct netvsc_device *net_device)
671{
672 unsigned long index;
673 u32 max_words = net_device->map_words;
674 unsigned long *map_addr = (unsigned long *)net_device->send_section_map;
675 u32 section_cnt = net_device->send_section_cnt;
676 int ret_val = NETVSC_INVALID_INDEX;
677 int i;
678 int prev_val;
679
680 for (i = 0; i < max_words; i++) {
681 if (!~(map_addr[i]))
682 continue;
683 index = ffz(map_addr[i]);
684 prev_val = sync_test_and_set_bit(index, &map_addr[i]);
685 if (prev_val)
686 continue;
687 if ((index + (i * BITS_PER_LONG)) >= section_cnt)
688 break;
689 ret_val = (index + (i * BITS_PER_LONG));
690 break;
691 }
692 return ret_val;
693}
694
Lad, Prabhakarda19fcd2015-02-05 15:06:33 +0000695static u32 netvsc_copy_to_send_buf(struct netvsc_device *net_device,
696 unsigned int section_index,
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700697 u32 pend_size,
Lad, Prabhakarda19fcd2015-02-05 15:06:33 +0000698 struct hv_netvsc_packet *packet)
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700699{
700 char *start = net_device->send_buf;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700701 char *dest = start + (section_index * net_device->send_section_size)
702 + pend_size;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700703 int i;
704 u32 msg_size = 0;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700705 u32 padding = 0;
706 u32 remain = packet->total_data_buflen % net_device->pkt_align;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700707 u32 page_count = packet->cp_partial ? packet->rmsg_pgcnt :
708 packet->page_buf_cnt;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700709
710 /* Add padding */
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700711 if (packet->is_data_pkt && packet->xmit_more && remain &&
712 !packet->cp_partial) {
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700713 padding = net_device->pkt_align - remain;
714 packet->rndis_msg->msg_len += padding;
715 packet->total_data_buflen += padding;
716 }
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700717
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700718 for (i = 0; i < page_count; i++) {
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700719 char *src = phys_to_virt(packet->page_buf[i].pfn << PAGE_SHIFT);
720 u32 offset = packet->page_buf[i].offset;
721 u32 len = packet->page_buf[i].len;
722
723 memcpy(dest, (src + offset), len);
724 msg_size += len;
725 dest += len;
726 }
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700727
728 if (padding) {
729 memset(dest, 0, padding);
730 msg_size += padding;
731 }
732
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700733 return msg_size;
734}
735
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700736static inline int netvsc_send_pkt(
737 struct hv_netvsc_packet *packet,
738 struct netvsc_device *net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700739{
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700740 struct nvsp_message nvmsg;
741 struct vmbus_channel *out_channel = packet->channel;
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700742 u16 q_idx = packet->q_idx;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700743 struct net_device *ndev = net_device->ndev;
744 u64 req_id;
745 int ret;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700746 struct hv_page_buffer *pgbuf;
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
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800773 if (packet->page_buf_cnt) {
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700774 pgbuf = packet->cp_partial ? packet->page_buf +
775 packet->rmsg_pgcnt : packet->page_buf;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700776 ret = vmbus_sendpacket_pagebuffer(out_channel,
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700777 pgbuf,
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800778 packet->page_buf_cnt,
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700779 &nvmsg,
Greg Kroah-Hartmanff3f8ee2010-10-21 09:32:46 -0700780 sizeof(struct nvsp_message),
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000781 req_id);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700782 } else {
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700783 ret = vmbus_sendpacket(
784 out_channel, &nvmsg,
Haiyang Zhange4d59ac2011-06-17 07:58:04 -0700785 sizeof(struct nvsp_message),
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000786 req_id,
Haiyang Zhange4d59ac2011-06-17 07:58:04 -0700787 VM_PKT_DATA_INBAND,
788 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Hank Janssenfceaf242009-07-13 15:34:54 -0700789 }
790
Haiyang Zhang1d068252011-12-02 11:56:25 -0800791 if (ret == 0) {
792 atomic_inc(&net_device->num_outstanding_sends);
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700793 atomic_inc(&net_device->queue_sends[q_idx]);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700794
795 if (hv_ringbuf_avail_percent(&out_channel->outbound) <
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000796 RING_AVAIL_PERCENT_LOWATER) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700797 netif_tx_stop_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700798 ndev, q_idx));
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700799
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000800 if (atomic_read(&net_device->
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700801 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 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800805 } else if (ret == -EAGAIN) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700806 netif_tx_stop_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700807 ndev, q_idx));
808 if (atomic_read(&net_device->queue_sends[q_idx]) < 1) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700809 netif_tx_wake_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700810 ndev, q_idx));
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000811 ret = -ENOSPC;
812 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800813 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700814 netdev_err(ndev, "Unable to send packet %p ret %d\n",
Haiyang Zhang85799a32010-12-10 12:03:54 -0800815 packet, ret);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800816 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700817
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700818 return ret;
819}
820
821int netvsc_send(struct hv_device *device,
822 struct hv_netvsc_packet *packet)
823{
824 struct netvsc_device *net_device;
825 int ret = 0, m_ret = 0;
826 struct vmbus_channel *out_channel;
827 u16 q_idx = packet->q_idx;
828 u32 pktlen = packet->total_data_buflen, msd_len = 0;
829 unsigned int section_index = NETVSC_INVALID_INDEX;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700830 unsigned long flag;
831 struct multi_send_data *msdp;
832 struct hv_netvsc_packet *msd_send = NULL, *cur_send = NULL;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700833 bool try_batch;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700834
835 net_device = get_outbound_net_device(device);
836 if (!net_device)
837 return -ENODEV;
838
839 out_channel = net_device->chn_table[q_idx];
840 if (!out_channel) {
841 out_channel = device->channel;
842 q_idx = 0;
843 packet->q_idx = 0;
844 }
845 packet->channel = out_channel;
846 packet->send_buf_index = NETVSC_INVALID_INDEX;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700847 packet->cp_partial = false;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700848
849 msdp = &net_device->msd[q_idx];
850
851 /* batch packets in send buffer if possible */
852 spin_lock_irqsave(&msdp->lock, flag);
853 if (msdp->pkt)
854 msd_len = msdp->pkt->total_data_buflen;
855
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700856 try_batch = packet->is_data_pkt && msd_len > 0 && msdp->count <
857 net_device->max_pkt;
858
859 if (try_batch && msd_len + pktlen + net_device->pkt_align <
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700860 net_device->send_section_size) {
861 section_index = msdp->pkt->send_buf_index;
862
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700863 } else if (try_batch && msd_len + packet->rmsg_size <
864 net_device->send_section_size) {
865 section_index = msdp->pkt->send_buf_index;
866 packet->cp_partial = true;
867
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700868 } else if (packet->is_data_pkt && pktlen + net_device->pkt_align <
869 net_device->send_section_size) {
870 section_index = netvsc_get_next_send_section(net_device);
871 if (section_index != NETVSC_INVALID_INDEX) {
872 msd_send = msdp->pkt;
873 msdp->pkt = NULL;
874 msdp->count = 0;
875 msd_len = 0;
876 }
877 }
878
879 if (section_index != NETVSC_INVALID_INDEX) {
880 netvsc_copy_to_send_buf(net_device,
881 section_index, msd_len,
882 packet);
KY Srinivasanb08cc792015-03-29 21:08:42 -0700883
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700884 packet->send_buf_index = section_index;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700885
886 if (packet->cp_partial) {
887 packet->page_buf_cnt -= packet->rmsg_pgcnt;
888 packet->total_data_buflen = msd_len + packet->rmsg_size;
889 } else {
890 packet->page_buf_cnt = 0;
891 packet->total_data_buflen += msd_len;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700892 }
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700893
Haiyang Zhangee90b812015-04-06 15:22:54 -0700894 if (msdp->pkt)
895 netvsc_xmit_completion(msdp->pkt);
896
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700897 if (packet->xmit_more && !packet->cp_partial) {
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700898 msdp->pkt = packet;
899 msdp->count++;
900 } else {
901 cur_send = packet;
902 msdp->pkt = NULL;
903 msdp->count = 0;
904 }
905 } else {
906 msd_send = msdp->pkt;
907 msdp->pkt = NULL;
908 msdp->count = 0;
909 cur_send = packet;
910 }
911
912 spin_unlock_irqrestore(&msdp->lock, flag);
913
914 if (msd_send) {
915 m_ret = netvsc_send_pkt(msd_send, net_device);
916
917 if (m_ret != 0) {
918 netvsc_free_send_slot(net_device,
919 msd_send->send_buf_index);
Haiyang Zhangee90b812015-04-06 15:22:54 -0700920 netvsc_xmit_completion(msd_send);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700921 }
922 }
923
924 if (cur_send)
925 ret = netvsc_send_pkt(cur_send, net_device);
926
Jerry Snitselaar7aab5152015-05-04 10:57:16 -0700927 if (ret != 0 && section_index != NETVSC_INVALID_INDEX)
928 netvsc_free_send_slot(net_device, section_index);
Haiyang Zhangd953ca42015-01-29 12:34:49 -0800929
Hank Janssenfceaf242009-07-13 15:34:54 -0700930 return ret;
931}
932
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700933static void netvsc_send_recv_completion(struct hv_device *device,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700934 struct vmbus_channel *channel,
KY Srinivasan97c17232014-02-16 16:38:44 -0800935 struct netvsc_device *net_device,
Haiyang Zhang63f69212012-10-02 05:30:23 +0000936 u64 transaction_id, u32 status)
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700937{
938 struct nvsp_message recvcompMessage;
939 int retries = 0;
940 int ret;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700941 struct net_device *ndev;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700942
943 ndev = net_device->ndev;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700944
945 recvcompMessage.hdr.msg_type =
946 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE;
947
Haiyang Zhang63f69212012-10-02 05:30:23 +0000948 recvcompMessage.msg.v1_msg.send_rndis_pkt_complete.status = status;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700949
950retry_send_cmplt:
951 /* Send the completion */
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700952 ret = vmbus_sendpacket(channel, &recvcompMessage,
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700953 sizeof(struct nvsp_message), transaction_id,
954 VM_PKT_COMP, 0);
955 if (ret == 0) {
956 /* success */
957 /* no-op */
K. Y. Srinivasand2598f02011-08-25 09:48:58 -0700958 } else if (ret == -EAGAIN) {
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700959 /* no more room...wait a bit and attempt to retry 3 times */
960 retries++;
Haiyang Zhangd9871152011-09-01 12:19:41 -0700961 netdev_err(ndev, "unable to send receive completion pkt"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700962 " (tid %llx)...retrying %d\n", transaction_id, retries);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700963
964 if (retries < 4) {
965 udelay(100);
966 goto retry_send_cmplt;
967 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700968 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700969 "completion pkt (tid %llx)...give up retrying\n",
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700970 transaction_id);
971 }
972 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700973 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700974 "completion pkt - %llx\n", transaction_id);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700975 }
976}
977
KY Srinivasan97c17232014-02-16 16:38:44 -0800978static void netvsc_receive(struct netvsc_device *net_device,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700979 struct vmbus_channel *channel,
KY Srinivasan97c17232014-02-16 16:38:44 -0800980 struct hv_device *device,
981 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700982{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800983 struct vmtransfer_page_packet_header *vmxferpage_packet;
984 struct nvsp_message *nvsp_packet;
Haiyang Zhang4baab262014-04-21 14:54:43 -0700985 struct hv_netvsc_packet nv_pkt;
986 struct hv_netvsc_packet *netvsc_packet = &nv_pkt;
987 u32 status = NVSP_STAT_SUCCESS;
Haiyang Zhang45326342011-12-15 13:45:15 -0800988 int i;
989 int count = 0;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700990 struct net_device *ndev;
K. Y. Srinivasan779b4d12011-04-26 09:20:22 -0700991
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700992 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700993
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700994 /*
995 * All inbound packets other than send completion should be xfer page
996 * packet
997 */
Haiyang Zhang415f2282011-01-26 12:12:13 -0800998 if (packet->type != VM_PKT_DATA_USING_XFER_PAGES) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700999 netdev_err(ndev, "Unknown packet type received - %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -08001000 packet->type);
Hank Janssenfceaf242009-07-13 15:34:54 -07001001 return;
1002 }
1003
Haiyang Zhang85799a32010-12-10 12:03:54 -08001004 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -08001005 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -07001006
Bill Pemberton454f18a2009-07-27 16:47:24 -04001007 /* Make sure this is a valid nvsp packet */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -08001008 if (nvsp_packet->hdr.msg_type !=
1009 NVSP_MSG1_TYPE_SEND_RNDIS_PKT) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001010 netdev_err(ndev, "Unknown nvsp packet type received-"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001011 " %d\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -07001012 return;
1013 }
1014
Haiyang Zhang85799a32010-12-10 12:03:54 -08001015 vmxferpage_packet = (struct vmtransfer_page_packet_header *)packet;
Hank Janssenfceaf242009-07-13 15:34:54 -07001016
Haiyang Zhang415f2282011-01-26 12:12:13 -08001017 if (vmxferpage_packet->xfer_pageset_id != NETVSC_RECEIVE_BUFFER_ID) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001018 netdev_err(ndev, "Invalid xfer page set id - "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001019 "expecting %x got %x\n", NETVSC_RECEIVE_BUFFER_ID,
Haiyang Zhang415f2282011-01-26 12:12:13 -08001020 vmxferpage_packet->xfer_pageset_id);
Hank Janssenfceaf242009-07-13 15:34:54 -07001021 return;
1022 }
1023
Haiyang Zhang4baab262014-04-21 14:54:43 -07001024 count = vmxferpage_packet->range_cnt;
Haiyang Zhang4baab262014-04-21 14:54:43 -07001025 netvsc_packet->channel = channel;
Hank Janssenfceaf242009-07-13 15:34:54 -07001026
Bill Pemberton454f18a2009-07-27 16:47:24 -04001027 /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
Haiyang Zhang4baab262014-04-21 14:54:43 -07001028 for (i = 0; i < count; i++) {
Bill Pemberton454f18a2009-07-27 16:47:24 -04001029 /* Initialize the netvsc packet */
Haiyang Zhang63f69212012-10-02 05:30:23 +00001030 netvsc_packet->status = NVSP_STAT_SUCCESS;
Haiyang Zhang45326342011-12-15 13:45:15 -08001031 netvsc_packet->data = (void *)((unsigned long)net_device->
1032 recv_buf + vmxferpage_packet->ranges[i].byte_offset);
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -08001033 netvsc_packet->total_data_buflen =
Haiyang Zhang415f2282011-01-26 12:12:13 -08001034 vmxferpage_packet->ranges[i].byte_count;
Hank Janssenfceaf242009-07-13 15:34:54 -07001035
Bill Pemberton454f18a2009-07-27 16:47:24 -04001036 /* Pass it to the upper layer */
K. Y. Srinivasanac6f7852011-05-12 19:34:58 -07001037 rndis_filter_receive(device, netvsc_packet);
Hank Janssenfceaf242009-07-13 15:34:54 -07001038
Haiyang Zhang4baab262014-04-21 14:54:43 -07001039 if (netvsc_packet->status != NVSP_STAT_SUCCESS)
1040 status = NVSP_STAT_FAIL;
Hank Janssenfceaf242009-07-13 15:34:54 -07001041 }
1042
Haiyang Zhang4baab262014-04-21 14:54:43 -07001043 netvsc_send_recv_completion(device, channel, net_device,
1044 vmxferpage_packet->d.trans_id, status);
Hank Janssenfceaf242009-07-13 15:34:54 -07001045}
1046
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001047
1048static void netvsc_send_table(struct hv_device *hdev,
1049 struct vmpacket_descriptor *vmpkt)
1050{
1051 struct netvsc_device *nvscdev;
1052 struct net_device *ndev;
1053 struct nvsp_message *nvmsg;
1054 int i;
1055 u32 count, *tab;
1056
1057 nvscdev = get_outbound_net_device(hdev);
1058 if (!nvscdev)
1059 return;
1060 ndev = nvscdev->ndev;
1061
1062 nvmsg = (struct nvsp_message *)((unsigned long)vmpkt +
1063 (vmpkt->offset8 << 3));
1064
1065 if (nvmsg->hdr.msg_type != NVSP_MSG5_TYPE_SEND_INDIRECTION_TABLE)
1066 return;
1067
1068 count = nvmsg->msg.v5_msg.send_table.count;
1069 if (count != VRSS_SEND_TAB_SIZE) {
1070 netdev_err(ndev, "Received wrong send-table size:%u\n", count);
1071 return;
1072 }
1073
1074 tab = (u32 *)((unsigned long)&nvmsg->msg.v5_msg.send_table +
1075 nvmsg->msg.v5_msg.send_table.offset);
1076
1077 for (i = 0; i < count; i++)
1078 nvscdev->send_table[i] = tab[i];
1079}
1080
1081void netvsc_channel_cb(void *context)
Hank Janssenfceaf242009-07-13 15:34:54 -07001082{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001083 int ret;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001084 struct vmbus_channel *channel = (struct vmbus_channel *)context;
1085 struct hv_device *device;
Haiyang Zhang85799a32010-12-10 12:03:54 -08001086 struct netvsc_device *net_device;
1087 u32 bytes_recvd;
1088 u64 request_id;
Greg Kroah-Hartman8dc0a062009-08-27 16:02:36 -07001089 struct vmpacket_descriptor *desc;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -04001090 unsigned char *buffer;
1091 int bufferlen = NETVSC_PACKET_SIZE;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001092 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -07001093
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001094 if (channel->primary_channel != NULL)
1095 device = channel->primary_channel->device_obj;
1096 else
1097 device = channel->device_obj;
1098
Haiyang Zhang5a71ae32010-12-10 12:03:55 -08001099 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001100 if (!net_device)
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001101 return;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001102 ndev = net_device->ndev;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001103 buffer = get_per_channel_state(channel);
Hank Janssenfceaf242009-07-13 15:34:54 -07001104
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001105 do {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001106 ret = vmbus_recvpacket_raw(channel, buffer, bufferlen,
Haiyang Zhang85799a32010-12-10 12:03:54 -08001107 &bytes_recvd, &request_id);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001108 if (ret == 0) {
Haiyang Zhang85799a32010-12-10 12:03:54 -08001109 if (bytes_recvd > 0) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001110 desc = (struct vmpacket_descriptor *)buffer;
Haiyang Zhang415f2282011-01-26 12:12:13 -08001111 switch (desc->type) {
1112 case VM_PKT_COMP:
KY Srinivasan97c17232014-02-16 16:38:44 -08001113 netvsc_send_completion(net_device,
1114 device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001115 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001116
Haiyang Zhang415f2282011-01-26 12:12:13 -08001117 case VM_PKT_DATA_USING_XFER_PAGES:
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001118 netvsc_receive(net_device, channel,
1119 device, desc);
1120 break;
1121
1122 case VM_PKT_DATA_INBAND:
1123 netvsc_send_table(device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001124 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001125
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001126 default:
Haiyang Zhangd9871152011-09-01 12:19:41 -07001127 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001128 "unhandled packet type %d, "
1129 "tid %llx len %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -08001130 desc->type, request_id,
Haiyang Zhang85799a32010-12-10 12:03:54 -08001131 bytes_recvd);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001132 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001133 }
1134
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001135 } else {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001136 /*
1137 * We are done for this pass.
1138 */
Hank Janssenfceaf242009-07-13 15:34:54 -07001139 break;
1140 }
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001141
K. Y. Srinivasan3d5cad92011-08-25 09:48:59 -07001142 } else if (ret == -ENOBUFS) {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001143 if (bufferlen > NETVSC_PACKET_SIZE)
1144 kfree(buffer);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001145 /* Handle large packet */
Haiyang Zhang85799a32010-12-10 12:03:54 -08001146 buffer = kmalloc(bytes_recvd, GFP_ATOMIC);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001147 if (buffer == NULL) {
Bill Pemberton454f18a2009-07-27 16:47:24 -04001148 /* Try again next time around */
Haiyang Zhangd9871152011-09-01 12:19:41 -07001149 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001150 "unable to allocate buffer of size "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001151 "(%d)!!\n", bytes_recvd);
Hank Janssenfceaf242009-07-13 15:34:54 -07001152 break;
1153 }
1154
Haiyang Zhang85799a32010-12-10 12:03:54 -08001155 bufferlen = bytes_recvd;
Hank Janssenfceaf242009-07-13 15:34:54 -07001156 }
1157 } while (1);
1158
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001159 if (bufferlen > NETVSC_PACKET_SIZE)
1160 kfree(buffer);
Hank Janssenfceaf242009-07-13 15:34:54 -07001161 return;
1162}
Haiyang Zhangaf24ce42011-04-21 12:30:40 -07001163
1164/*
Haiyang Zhangb637e022011-04-21 12:30:45 -07001165 * netvsc_device_add - Callback when the device belonging to this
1166 * driver is added
1167 */
K. Y. Srinivasan7bd23a42011-05-10 07:54:53 -07001168int netvsc_device_add(struct hv_device *device, void *additional_info)
Haiyang Zhangb637e022011-04-21 12:30:45 -07001169{
1170 int ret = 0;
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001171 int ring_size =
1172 ((struct netvsc_device_info *)additional_info)->ring_size;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001173 struct netvsc_device *net_device;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001174 struct net_device *ndev;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001175
1176 net_device = alloc_net_device(device);
Dan Carpenterb1c84922014-09-04 14:11:23 +03001177 if (!net_device)
1178 return -ENOMEM;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001179
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001180 net_device->ring_size = ring_size;
1181
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001182 /*
1183 * Coming into this function, struct net_device * is
1184 * registered as the driver private data.
1185 * In alloc_net_device(), we register struct netvsc_device *
1186 * as the driver private data and stash away struct net_device *
1187 * in struct netvsc_device *.
1188 */
1189 ndev = net_device->ndev;
1190
Simon Xiao3f300ff2015-04-28 01:05:17 -07001191 /* Add netvsc_device context to netvsc_device */
1192 net_device->nd_ctx = netdev_priv(ndev);
1193
Haiyang Zhangb637e022011-04-21 12:30:45 -07001194 /* Initialize the NetVSC channel extension */
K. Y. Srinivasan35abb212011-05-10 07:55:41 -07001195 init_completion(&net_device->channel_init_wait);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001196
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001197 set_per_channel_state(device->channel, net_device->cb_buffer);
1198
Haiyang Zhangb637e022011-04-21 12:30:45 -07001199 /* Open the channel */
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001200 ret = vmbus_open(device->channel, ring_size * PAGE_SIZE,
1201 ring_size * PAGE_SIZE, NULL, 0,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001202 netvsc_channel_cb, device->channel);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001203
1204 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001205 netdev_err(ndev, "unable to open channel: %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001206 goto cleanup;
1207 }
1208
1209 /* Channel is opened */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001210 pr_info("hv_netvsc channel opened successfully\n");
Haiyang Zhangb637e022011-04-21 12:30:45 -07001211
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001212 net_device->chn_table[0] = device->channel;
1213
Haiyang Zhangb637e022011-04-21 12:30:45 -07001214 /* Connect with the NetVsp */
1215 ret = netvsc_connect_vsp(device);
1216 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001217 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001218 "unable to connect to NetVSP - %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001219 goto close;
1220 }
1221
1222 return ret;
1223
1224close:
1225 /* Now, we can close the channel safely */
1226 vmbus_close(device->channel);
1227
1228cleanup:
Haiyang Zhangf90251c2014-08-15 19:18:19 +00001229 free_netvsc_device(net_device);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001230
1231 return ret;
1232}