blob: d18e10cceced1558d86e6d56fe86abc916f22b5a [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);
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
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070060 hv_set_drvdata(device, net_device);
Haiyang Zhang85799a32010-12-10 12:03:54 -080061 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070062}
63
Haiyang Zhangf90251c2014-08-15 19:18:19 +000064static void free_netvsc_device(struct netvsc_device *nvdev)
65{
66 kfree(nvdev->cb_buffer);
67 kfree(nvdev);
68}
69
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080070static struct netvsc_device *get_outbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070071{
Haiyang Zhang85799a32010-12-10 12:03:54 -080072 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070073
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070074 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070075 if (net_device && net_device->destroy)
Haiyang Zhang85799a32010-12-10 12:03:54 -080076 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -070077
Haiyang Zhang85799a32010-12-10 12:03:54 -080078 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070079}
80
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080081static struct netvsc_device *get_inbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070082{
Haiyang Zhang85799a32010-12-10 12:03:54 -080083 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070084
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070085 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070086
87 if (!net_device)
88 goto get_in_err;
89
90 if (net_device->destroy &&
91 atomic_read(&net_device->num_outstanding_sends) == 0)
Haiyang Zhang85799a32010-12-10 12:03:54 -080092 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -070093
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070094get_in_err:
Haiyang Zhang85799a32010-12-10 12:03:54 -080095 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070096}
97
Hank Janssenfceaf242009-07-13 15:34:54 -070098
KY Srinivasanc25aaf82014-04-30 10:14:31 -070099static int netvsc_destroy_buf(struct netvsc_device *net_device)
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700100{
101 struct nvsp_message *revoke_packet;
102 int ret = 0;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700103 struct net_device *ndev = net_device->ndev;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700104
105 /*
106 * If we got a section count, it means we received a
107 * SendReceiveBufferComplete msg (ie sent
108 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
109 * to send a revoke msg here
110 */
111 if (net_device->recv_section_cnt) {
112 /* Send the revoke receive buffer */
113 revoke_packet = &net_device->revoke_packet;
114 memset(revoke_packet, 0, sizeof(struct nvsp_message));
115
116 revoke_packet->hdr.msg_type =
117 NVSP_MSG1_TYPE_REVOKE_RECV_BUF;
118 revoke_packet->msg.v1_msg.
119 revoke_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
120
121 ret = vmbus_sendpacket(net_device->dev->channel,
122 revoke_packet,
123 sizeof(struct nvsp_message),
124 (unsigned long)revoke_packet,
125 VM_PKT_DATA_INBAND, 0);
126 /*
127 * If we failed here, we might as well return and
128 * have a leak rather than continue and a bugchk
129 */
130 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700131 netdev_err(ndev, "unable to send "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700132 "revoke receive buffer to netvsp\n");
K. Y. Srinivasana3e00532011-08-25 09:49:12 -0700133 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700134 }
135 }
136
137 /* Teardown the gpadl on the vsp end */
138 if (net_device->recv_buf_gpadl_handle) {
139 ret = vmbus_teardown_gpadl(net_device->dev->channel,
140 net_device->recv_buf_gpadl_handle);
141
142 /* If we failed here, we might as well return and have a leak
143 * rather than continue and a bugchk
144 */
145 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700146 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700147 "unable to teardown receive buffer's gpadl\n");
Dan Carpenter7f9615e2011-08-27 14:06:07 +0300148 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700149 }
150 net_device->recv_buf_gpadl_handle = 0;
151 }
152
153 if (net_device->recv_buf) {
154 /* Free up the receive buffer */
Haiyang Zhangb679ef72014-01-27 15:03:42 -0800155 vfree(net_device->recv_buf);
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700156 net_device->recv_buf = NULL;
157 }
158
159 if (net_device->recv_section) {
160 net_device->recv_section_cnt = 0;
161 kfree(net_device->recv_section);
162 net_device->recv_section = NULL;
163 }
164
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700165 /* Deal with the send buffer we may have setup.
166 * If we got a send section size, it means we received a
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800167 * NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE msg (ie sent
168 * NVSP_MSG1_TYPE_SEND_SEND_BUF msg) therefore, we need
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700169 * to send a revoke msg here
170 */
171 if (net_device->send_section_size) {
172 /* Send the revoke receive buffer */
173 revoke_packet = &net_device->revoke_packet;
174 memset(revoke_packet, 0, sizeof(struct nvsp_message));
175
176 revoke_packet->hdr.msg_type =
177 NVSP_MSG1_TYPE_REVOKE_SEND_BUF;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800178 revoke_packet->msg.v1_msg.revoke_send_buf.id =
179 NETVSC_SEND_BUFFER_ID;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700180
181 ret = vmbus_sendpacket(net_device->dev->channel,
182 revoke_packet,
183 sizeof(struct nvsp_message),
184 (unsigned long)revoke_packet,
185 VM_PKT_DATA_INBAND, 0);
186 /* If we failed here, we might as well return and
187 * have a leak rather than continue and a bugchk
188 */
189 if (ret != 0) {
190 netdev_err(ndev, "unable to send "
191 "revoke send buffer to netvsp\n");
192 return ret;
193 }
194 }
195 /* Teardown the gpadl on the vsp end */
196 if (net_device->send_buf_gpadl_handle) {
197 ret = vmbus_teardown_gpadl(net_device->dev->channel,
198 net_device->send_buf_gpadl_handle);
199
200 /* If we failed here, we might as well return and have a leak
201 * rather than continue and a bugchk
202 */
203 if (ret != 0) {
204 netdev_err(ndev,
205 "unable to teardown send buffer's gpadl\n");
206 return ret;
207 }
Dave Jones2f184232014-06-16 16:59:02 -0400208 net_device->send_buf_gpadl_handle = 0;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700209 }
210 if (net_device->send_buf) {
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800211 /* Free up the send buffer */
KY Srinivasan06b47aa2014-08-02 10:42:02 -0700212 vfree(net_device->send_buf);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700213 net_device->send_buf = NULL;
214 }
215 kfree(net_device->send_section_map);
216
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700217 return ret;
218}
219
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700220static int netvsc_init_buf(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700221{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700222 int ret = 0;
Nicholas Mc Guire7390fe92015-01-25 15:46:31 +0100223 unsigned long t;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800224 struct netvsc_device *net_device;
225 struct nvsp_message *init_packet;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700226 struct net_device *ndev;
K. Y. Srinivasan0a726c22015-05-28 17:08:06 -0700227 int node;
Hank Janssenfceaf242009-07-13 15:34:54 -0700228
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800229 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700230 if (!net_device)
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700231 return -ENODEV;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700232 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700233
K. Y. Srinivasan0a726c22015-05-28 17:08:06 -0700234 node = cpu_to_node(device->channel->target_cpu);
235 net_device->recv_buf = vzalloc_node(net_device->recv_buf_size, node);
236 if (!net_device->recv_buf)
237 net_device->recv_buf = vzalloc(net_device->recv_buf_size);
238
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800239 if (!net_device->recv_buf) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700240 netdev_err(ndev, "unable to allocate receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700241 "buffer of size %d\n", net_device->recv_buf_size);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700242 ret = -ENOMEM;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800243 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700244 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700245
Bill Pemberton454f18a2009-07-27 16:47:24 -0400246 /*
247 * Establish the gpadl handle for this buffer on this
248 * channel. Note: This call uses the vmbus connection rather
249 * than the channel to establish the gpadl handle.
250 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800251 ret = vmbus_establish_gpadl(device->channel, net_device->recv_buf,
252 net_device->recv_buf_size,
253 &net_device->recv_buf_gpadl_handle);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700254 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700255 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700256 "unable to establish receive buffer's gpadl\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800257 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700258 }
259
Hank Janssenfceaf242009-07-13 15:34:54 -0700260
Bill Pemberton454f18a2009-07-27 16:47:24 -0400261 /* Notify the NetVsp of the gpadl handle */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800262 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700263
Haiyang Zhang85799a32010-12-10 12:03:54 -0800264 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700265
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800266 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_RECV_BUF;
267 init_packet->msg.v1_msg.send_recv_buf.
268 gpadl_handle = net_device->recv_buf_gpadl_handle;
269 init_packet->msg.v1_msg.
270 send_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
Hank Janssenfceaf242009-07-13 15:34:54 -0700271
Bill Pemberton454f18a2009-07-27 16:47:24 -0400272 /* Send the gpadl notification request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800273 ret = vmbus_sendpacket(device->channel, init_packet,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700274 sizeof(struct nvsp_message),
Haiyang Zhang85799a32010-12-10 12:03:54 -0800275 (unsigned long)init_packet,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800276 VM_PKT_DATA_INBAND,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700277 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700278 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700279 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700280 "unable to send receive buffer's gpadl to netvsp\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800281 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700282 }
283
K. Y. Srinivasan5c5781b32011-06-16 13:16:35 -0700284 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700285 BUG_ON(t == 0);
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800286
Hank Janssenfceaf242009-07-13 15:34:54 -0700287
Bill Pemberton454f18a2009-07-27 16:47:24 -0400288 /* Check the response */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800289 if (init_packet->msg.v1_msg.
290 send_recv_buf_complete.status != NVSP_STAT_SUCCESS) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700291 netdev_err(ndev, "Unable to complete receive buffer "
Haiyang Zhang8bff33a2011-09-01 12:19:48 -0700292 "initialization with NetVsp - status %d\n",
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800293 init_packet->msg.v1_msg.
294 send_recv_buf_complete.status);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700295 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800296 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700297 }
298
Bill Pemberton454f18a2009-07-27 16:47:24 -0400299 /* Parse the response */
Hank Janssenfceaf242009-07-13 15:34:54 -0700300
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800301 net_device->recv_section_cnt = init_packet->msg.
302 v1_msg.send_recv_buf_complete.num_sections;
Hank Janssenfceaf242009-07-13 15:34:54 -0700303
Haiyang Zhangc1813202011-11-30 07:19:07 -0800304 net_device->recv_section = kmemdup(
305 init_packet->msg.v1_msg.send_recv_buf_complete.sections,
306 net_device->recv_section_cnt *
307 sizeof(struct nvsp_1_receive_buffer_section),
308 GFP_KERNEL);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800309 if (net_device->recv_section == NULL) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700310 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800311 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700312 }
313
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700314 /*
315 * For 1st release, there should only be 1 section that represents the
316 * entire receive buffer
317 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800318 if (net_device->recv_section_cnt != 1 ||
319 net_device->recv_section->offset != 0) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700320 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800321 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700322 }
323
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700324 /* Now setup the send buffer.
325 */
K. Y. Srinivasan5defde52015-05-28 17:08:07 -0700326 net_device->send_buf = vzalloc_node(net_device->send_buf_size, node);
327 if (!net_device->send_buf)
328 net_device->send_buf = vzalloc(net_device->send_buf_size);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700329 if (!net_device->send_buf) {
330 netdev_err(ndev, "unable to allocate send "
331 "buffer of size %d\n", net_device->send_buf_size);
332 ret = -ENOMEM;
333 goto cleanup;
334 }
335
336 /* Establish the gpadl handle for this buffer on this
337 * channel. Note: This call uses the vmbus connection rather
338 * than the channel to establish the gpadl handle.
339 */
340 ret = vmbus_establish_gpadl(device->channel, net_device->send_buf,
341 net_device->send_buf_size,
342 &net_device->send_buf_gpadl_handle);
343 if (ret != 0) {
344 netdev_err(ndev,
345 "unable to establish send buffer's gpadl\n");
346 goto cleanup;
347 }
348
349 /* Notify the NetVsp of the gpadl handle */
350 init_packet = &net_device->channel_init_pkt;
351 memset(init_packet, 0, sizeof(struct nvsp_message));
352 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_SEND_BUF;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800353 init_packet->msg.v1_msg.send_send_buf.gpadl_handle =
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700354 net_device->send_buf_gpadl_handle;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800355 init_packet->msg.v1_msg.send_send_buf.id = NETVSC_SEND_BUFFER_ID;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700356
357 /* Send the gpadl notification request */
358 ret = vmbus_sendpacket(device->channel, init_packet,
359 sizeof(struct nvsp_message),
360 (unsigned long)init_packet,
361 VM_PKT_DATA_INBAND,
362 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
363 if (ret != 0) {
364 netdev_err(ndev,
365 "unable to send send buffer's gpadl to netvsp\n");
366 goto cleanup;
367 }
368
369 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
370 BUG_ON(t == 0);
371
372 /* Check the response */
373 if (init_packet->msg.v1_msg.
374 send_send_buf_complete.status != NVSP_STAT_SUCCESS) {
375 netdev_err(ndev, "Unable to complete send buffer "
376 "initialization with NetVsp - status %d\n",
377 init_packet->msg.v1_msg.
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800378 send_send_buf_complete.status);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700379 ret = -EINVAL;
380 goto cleanup;
381 }
382
383 /* Parse the response */
384 net_device->send_section_size = init_packet->msg.
385 v1_msg.send_send_buf_complete.section_size;
386
387 /* Section count is simply the size divided by the section size.
388 */
389 net_device->send_section_cnt =
390 net_device->send_buf_size/net_device->send_section_size;
391
392 dev_info(&device->device, "Send section size: %d, Section count:%d\n",
393 net_device->send_section_size, net_device->send_section_cnt);
394
395 /* Setup state for managing the send buffer. */
396 net_device->map_words = DIV_ROUND_UP(net_device->send_section_cnt,
397 BITS_PER_LONG);
398
399 net_device->send_section_map =
400 kzalloc(net_device->map_words * sizeof(ulong), GFP_KERNEL);
Wei Yongjundd1d3f82014-07-23 09:00:35 +0800401 if (net_device->send_section_map == NULL) {
402 ret = -ENOMEM;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700403 goto cleanup;
Wei Yongjundd1d3f82014-07-23 09:00:35 +0800404 }
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700405
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800406 goto exit;
Hank Janssenfceaf242009-07-13 15:34:54 -0700407
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800408cleanup:
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700409 netvsc_destroy_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700410
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800411exit:
Hank Janssenfceaf242009-07-13 15:34:54 -0700412 return ret;
413}
414
Hank Janssenfceaf242009-07-13 15:34:54 -0700415
Haiyang Zhangf157e782011-12-15 13:45:16 -0800416/* Negotiate NVSP protocol version */
417static int negotiate_nvsp_ver(struct hv_device *device,
418 struct netvsc_device *net_device,
419 struct nvsp_message *init_packet,
420 u32 nvsp_ver)
Hank Janssenfceaf242009-07-13 15:34:54 -0700421{
Nicholas Mc Guire7390fe92015-01-25 15:46:31 +0100422 int ret;
423 unsigned long t;
Haiyang Zhangf157e782011-12-15 13:45:16 -0800424
425 memset(init_packet, 0, sizeof(struct nvsp_message));
426 init_packet->hdr.msg_type = NVSP_MSG_TYPE_INIT;
427 init_packet->msg.init_msg.init.min_protocol_ver = nvsp_ver;
428 init_packet->msg.init_msg.init.max_protocol_ver = nvsp_ver;
429
430 /* Send the init request */
431 ret = vmbus_sendpacket(device->channel, init_packet,
432 sizeof(struct nvsp_message),
433 (unsigned long)init_packet,
434 VM_PKT_DATA_INBAND,
435 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
436
437 if (ret != 0)
438 return ret;
439
440 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
441
442 if (t == 0)
443 return -ETIMEDOUT;
444
445 if (init_packet->msg.init_msg.init_complete.status !=
446 NVSP_STAT_SUCCESS)
447 return -EINVAL;
448
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800449 if (nvsp_ver == NVSP_PROTOCOL_VERSION_1)
Haiyang Zhangf157e782011-12-15 13:45:16 -0800450 return 0;
451
Haiyang Zhang71790a22015-07-24 10:08:40 -0700452 /* NVSPv2 or later: Send NDIS config */
Haiyang Zhangf157e782011-12-15 13:45:16 -0800453 memset(init_packet, 0, sizeof(struct nvsp_message));
454 init_packet->hdr.msg_type = NVSP_MSG2_TYPE_SEND_NDIS_CONFIG;
Haiyang Zhang4d3c9d32014-11-12 14:07:44 -0800455 init_packet->msg.v2_msg.send_ndis_config.mtu = net_device->ndev->mtu +
456 ETH_HLEN;
Haiyang Zhang1f5f3a72012-03-12 10:20:50 +0000457 init_packet->msg.v2_msg.send_ndis_config.capability.ieee8021q = 1;
Haiyang Zhangf157e782011-12-15 13:45:16 -0800458
Haiyang Zhang71790a22015-07-24 10:08:40 -0700459 if (nvsp_ver >= NVSP_PROTOCOL_VERSION_5)
460 init_packet->msg.v2_msg.send_ndis_config.capability.sriov = 1;
461
Haiyang Zhangf157e782011-12-15 13:45:16 -0800462 ret = vmbus_sendpacket(device->channel, init_packet,
463 sizeof(struct nvsp_message),
464 (unsigned long)init_packet,
465 VM_PKT_DATA_INBAND, 0);
466
467 return ret;
468}
469
470static int netvsc_connect_vsp(struct hv_device *device)
471{
472 int ret;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800473 struct netvsc_device *net_device;
474 struct nvsp_message *init_packet;
475 int ndis_version;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700476 struct net_device *ndev;
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800477 u32 ver_list[] = { NVSP_PROTOCOL_VERSION_1, NVSP_PROTOCOL_VERSION_2,
478 NVSP_PROTOCOL_VERSION_4, NVSP_PROTOCOL_VERSION_5 };
479 int i, num_ver = 4; /* number of different NVSP versions */
Hank Janssenfceaf242009-07-13 15:34:54 -0700480
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800481 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700482 if (!net_device)
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700483 return -ENODEV;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700484 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700485
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800486 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700487
Haiyang Zhangf157e782011-12-15 13:45:16 -0800488 /* Negotiate the latest NVSP protocol supported */
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800489 for (i = num_ver - 1; i >= 0; i--)
490 if (negotiate_nvsp_ver(device, net_device, init_packet,
491 ver_list[i]) == 0) {
492 net_device->nvsp_version = ver_list[i];
493 break;
494 }
495
496 if (i < 0) {
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700497 ret = -EPROTO;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800498 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700499 }
Haiyang Zhangf157e782011-12-15 13:45:16 -0800500
501 pr_debug("Negotiated NVSP version:%x\n", net_device->nvsp_version);
502
Bill Pemberton454f18a2009-07-27 16:47:24 -0400503 /* Send the ndis version */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800504 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700505
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800506 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_4)
KY Srinivasan1f73db42014-04-09 15:00:46 -0700507 ndis_version = 0x00060001;
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800508 else
509 ndis_version = 0x0006001e;
Hank Janssenfceaf242009-07-13 15:34:54 -0700510
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800511 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_NDIS_VER;
512 init_packet->msg.v1_msg.
513 send_ndis_ver.ndis_major_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800514 (ndis_version & 0xFFFF0000) >> 16;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800515 init_packet->msg.v1_msg.
516 send_ndis_ver.ndis_minor_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800517 ndis_version & 0xFFFF;
Hank Janssenfceaf242009-07-13 15:34:54 -0700518
Bill Pemberton454f18a2009-07-27 16:47:24 -0400519 /* Send the init request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800520 ret = vmbus_sendpacket(device->channel, init_packet,
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800521 sizeof(struct nvsp_message),
522 (unsigned long)init_packet,
523 VM_PKT_DATA_INBAND, 0);
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700524 if (ret != 0)
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800525 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700526
Bill Pemberton454f18a2009-07-27 16:47:24 -0400527 /* Post the big receive buffer to NetVSP */
Haiyang Zhang99d30162014-03-09 16:10:59 -0700528 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_2)
529 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE_LEGACY;
530 else
531 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700532 net_device->send_buf_size = NETVSC_SEND_BUFFER_SIZE;
Haiyang Zhang99d30162014-03-09 16:10:59 -0700533
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700534 ret = netvsc_init_buf(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700535
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800536cleanup:
Hank Janssenfceaf242009-07-13 15:34:54 -0700537 return ret;
538}
539
Haiyang Zhang648dc592011-04-21 12:30:47 -0700540static void netvsc_disconnect_vsp(struct netvsc_device *net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700541{
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700542 netvsc_destroy_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700543}
544
Hank Janssen3e189512010-03-04 22:11:00 +0000545/*
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800546 * netvsc_device_remove - Callback when the root bus device is removed
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700547 */
K. Y. Srinivasan905620d2011-05-10 07:54:54 -0700548int netvsc_device_remove(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700549{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800550 struct netvsc_device *net_device;
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -0700551 unsigned long flags;
Hank Janssenfceaf242009-07-13 15:34:54 -0700552
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700553 net_device = hv_get_drvdata(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700554
Haiyang Zhang648dc592011-04-21 12:30:47 -0700555 netvsc_disconnect_vsp(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700556
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700557 /*
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700558 * Since we have already drained, we don't need to busy wait
559 * as was done in final_release_stor_device()
560 * Note that we cannot set the ext pointer to NULL until
561 * we have drained - to drain the outgoing packets, we need to
562 * allow incoming packets.
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700563 */
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700564
565 spin_lock_irqsave(&device->channel->inbound_lock, flags);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700566 hv_set_drvdata(device, NULL);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700567 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700568
K. Y. Srinivasan86c921a2011-09-13 10:59:54 -0700569 /*
570 * At this point, no one should be accessing net_device
571 * except in here
572 */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700573 dev_notice(&device->device, "net device safe to remove\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700574
Bill Pemberton454f18a2009-07-27 16:47:24 -0400575 /* Now, we can close the channel safely */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800576 vmbus_close(device->channel);
Hank Janssenfceaf242009-07-13 15:34:54 -0700577
Bill Pemberton454f18a2009-07-27 16:47:24 -0400578 /* Release all resources */
Markus Elfringaa99c472014-11-25 22:33:45 +0100579 vfree(net_device->sub_cb_buf);
Haiyang Zhangf90251c2014-08-15 19:18:19 +0000580 free_netvsc_device(net_device);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700581 return 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700582}
583
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000584
585#define RING_AVAIL_PERCENT_HIWATER 20
586#define RING_AVAIL_PERCENT_LOWATER 10
587
588/*
589 * Get the percentage of available bytes to write in the ring.
590 * The return value is in range from 0 to 100.
591 */
592static inline u32 hv_ringbuf_avail_percent(
593 struct hv_ring_buffer_info *ring_info)
594{
595 u32 avail_read, avail_write;
596
597 hv_get_ringbuffer_availbytes(ring_info, &avail_read, &avail_write);
598
599 return avail_write * 100 / ring_info->ring_datasize;
600}
601
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700602static inline void netvsc_free_send_slot(struct netvsc_device *net_device,
603 u32 index)
604{
605 sync_change_bit(index, net_device->send_section_map);
606}
607
KY Srinivasan97c17232014-02-16 16:38:44 -0800608static void netvsc_send_completion(struct netvsc_device *net_device,
KY Srinivasan25b85ee2015-12-01 16:43:05 -0800609 struct vmbus_channel *incoming_channel,
KY Srinivasan97c17232014-02-16 16:38:44 -0800610 struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800611 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700612{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800613 struct nvsp_message *nvsp_packet;
614 struct hv_netvsc_packet *nvsc_packet;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700615 struct net_device *ndev;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700616 u32 send_index;
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800617 struct sk_buff *skb;
Hank Janssenfceaf242009-07-13 15:34:54 -0700618
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700619 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700620
Haiyang Zhang85799a32010-12-10 12:03:54 -0800621 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -0800622 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -0700623
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800624 if ((nvsp_packet->hdr.msg_type == NVSP_MSG_TYPE_INIT_COMPLETE) ||
625 (nvsp_packet->hdr.msg_type ==
626 NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE) ||
627 (nvsp_packet->hdr.msg_type ==
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700628 NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE) ||
629 (nvsp_packet->hdr.msg_type ==
630 NVSP_MSG5_TYPE_SUBCHANNEL)) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400631 /* Copy the response back */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800632 memcpy(&net_device->channel_init_pkt, nvsp_packet,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700633 sizeof(struct nvsp_message));
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700634 complete(&net_device->channel_init_wait);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800635 } else if (nvsp_packet->hdr.msg_type ==
636 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE) {
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000637 int num_outstanding_sends;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700638 u16 q_idx = 0;
639 struct vmbus_channel *channel = device->channel;
640 int queue_sends;
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000641
Bill Pemberton454f18a2009-07-27 16:47:24 -0400642 /* Get the send context */
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800643 skb = (struct sk_buff *)(unsigned long)packet->trans_id;
Hank Janssenfceaf242009-07-13 15:34:54 -0700644
Bill Pemberton454f18a2009-07-27 16:47:24 -0400645 /* Notify the layer above us */
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800646 if (skb) {
647 nvsc_packet = (struct hv_netvsc_packet *) skb->cb;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700648 send_index = nvsc_packet->send_buf_index;
649 if (send_index != NETVSC_INVALID_INDEX)
650 netvsc_free_send_slot(net_device, send_index);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700651 q_idx = nvsc_packet->q_idx;
KY Srinivasan25b85ee2015-12-01 16:43:05 -0800652 channel = incoming_channel;
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800653 dev_kfree_skb_any(skb);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700654 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700655
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000656 num_outstanding_sends =
657 atomic_dec_return(&net_device->num_outstanding_sends);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700658 queue_sends = atomic_dec_return(&net_device->
659 queue_sends[q_idx]);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800660
Haiyang Zhangdc5cd892012-06-04 06:42:38 +0000661 if (net_device->destroy && num_outstanding_sends == 0)
662 wake_up(&net_device->wait_drain);
663
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700664 if (netif_tx_queue_stopped(netdev_get_tx_queue(ndev, q_idx)) &&
665 !net_device->start_remove &&
666 (hv_ringbuf_avail_percent(&channel->outbound) >
667 RING_AVAIL_PERCENT_HIWATER || queue_sends < 1))
668 netif_tx_wake_queue(netdev_get_tx_queue(
669 ndev, q_idx));
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700670 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700671 netdev_err(ndev, "Unknown send completion packet type- "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700672 "%d received!!\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700673 }
674
Hank Janssenfceaf242009-07-13 15:34:54 -0700675}
676
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700677static u32 netvsc_get_next_send_section(struct netvsc_device *net_device)
678{
679 unsigned long index;
680 u32 max_words = net_device->map_words;
681 unsigned long *map_addr = (unsigned long *)net_device->send_section_map;
682 u32 section_cnt = net_device->send_section_cnt;
683 int ret_val = NETVSC_INVALID_INDEX;
684 int i;
685 int prev_val;
686
687 for (i = 0; i < max_words; i++) {
688 if (!~(map_addr[i]))
689 continue;
690 index = ffz(map_addr[i]);
691 prev_val = sync_test_and_set_bit(index, &map_addr[i]);
692 if (prev_val)
693 continue;
694 if ((index + (i * BITS_PER_LONG)) >= section_cnt)
695 break;
696 ret_val = (index + (i * BITS_PER_LONG));
697 break;
698 }
699 return ret_val;
700}
701
Lad, Prabhakarda19fcd2015-02-05 15:06:33 +0000702static u32 netvsc_copy_to_send_buf(struct netvsc_device *net_device,
703 unsigned int section_index,
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700704 u32 pend_size,
KY Srinivasan24476762015-12-01 16:43:06 -0800705 struct hv_netvsc_packet *packet,
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800706 struct rndis_message *rndis_msg,
707 struct hv_page_buffer **pb)
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700708{
709 char *start = net_device->send_buf;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700710 char *dest = start + (section_index * net_device->send_section_size)
711 + pend_size;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700712 int i;
713 u32 msg_size = 0;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700714 u32 padding = 0;
715 u32 remain = packet->total_data_buflen % net_device->pkt_align;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700716 u32 page_count = packet->cp_partial ? packet->rmsg_pgcnt :
717 packet->page_buf_cnt;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700718
719 /* Add padding */
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700720 if (packet->is_data_pkt && packet->xmit_more && remain &&
721 !packet->cp_partial) {
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700722 padding = net_device->pkt_align - remain;
KY Srinivasan24476762015-12-01 16:43:06 -0800723 rndis_msg->msg_len += padding;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700724 packet->total_data_buflen += padding;
725 }
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700726
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700727 for (i = 0; i < page_count; i++) {
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800728 char *src = phys_to_virt((*pb)[i].pfn << PAGE_SHIFT);
729 u32 offset = (*pb)[i].offset;
730 u32 len = (*pb)[i].len;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700731
732 memcpy(dest, (src + offset), len);
733 msg_size += len;
734 dest += len;
735 }
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700736
737 if (padding) {
738 memset(dest, 0, padding);
739 msg_size += padding;
740 }
741
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700742 return msg_size;
743}
744
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700745static inline int netvsc_send_pkt(
746 struct hv_netvsc_packet *packet,
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800747 struct netvsc_device *net_device,
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800748 struct hv_page_buffer **pb,
749 struct sk_buff *skb)
Hank Janssenfceaf242009-07-13 15:34:54 -0700750{
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700751 struct nvsp_message nvmsg;
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700752 u16 q_idx = packet->q_idx;
Vitaly Kuznetsov8b9fbe12015-12-01 16:43:11 -0800753 struct vmbus_channel *out_channel = net_device->chn_table[q_idx];
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700754 struct net_device *ndev = net_device->ndev;
755 u64 req_id;
756 int ret;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700757 struct hv_page_buffer *pgbuf;
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700758 u32 ring_avail = hv_ringbuf_avail_percent(&out_channel->outbound);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700759
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700760 nvmsg.hdr.msg_type = NVSP_MSG1_TYPE_SEND_RNDIS_PKT;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800761 if (packet->is_data_pkt) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700762 /* 0 is RMC_DATA; */
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700763 nvmsg.msg.v1_msg.send_rndis_pkt.channel_type = 0;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700764 } else {
765 /* 1 is RMC_CONTROL; */
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700766 nvmsg.msg.v1_msg.send_rndis_pkt.channel_type = 1;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700767 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700768
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700769 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_index =
770 packet->send_buf_index;
771 if (packet->send_buf_index == NETVSC_INVALID_INDEX)
772 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_size = 0;
773 else
774 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_size =
775 packet->total_data_buflen;
Hank Janssenfceaf242009-07-13 15:34:54 -0700776
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800777 req_id = (ulong)skb;
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000778
Haiyang Zhangc3582a22014-12-01 13:28:39 -0800779 if (out_channel->rescind)
780 return -ENODEV;
781
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700782 /*
783 * It is possible that once we successfully place this packet
784 * on the ringbuffer, we may stop the queue. In that case, we want
785 * to notify the host independent of the xmit_more flag. We don't
786 * need to be precise here; in the worst case we may signal the host
787 * unnecessarily.
788 */
789 if (ring_avail < (RING_AVAIL_PERCENT_LOWATER + 1))
790 packet->xmit_more = false;
791
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800792 if (packet->page_buf_cnt) {
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800793 pgbuf = packet->cp_partial ? (*pb) +
794 packet->rmsg_pgcnt : (*pb);
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700795 ret = vmbus_sendpacket_pagebuffer_ctl(out_channel,
796 pgbuf,
797 packet->page_buf_cnt,
798 &nvmsg,
799 sizeof(struct nvsp_message),
800 req_id,
801 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED,
802 !packet->xmit_more);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700803 } else {
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700804 ret = vmbus_sendpacket_ctl(out_channel, &nvmsg,
805 sizeof(struct nvsp_message),
806 req_id,
807 VM_PKT_DATA_INBAND,
808 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED,
809 !packet->xmit_more);
Hank Janssenfceaf242009-07-13 15:34:54 -0700810 }
811
Haiyang Zhang1d068252011-12-02 11:56:25 -0800812 if (ret == 0) {
813 atomic_inc(&net_device->num_outstanding_sends);
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700814 atomic_inc(&net_device->queue_sends[q_idx]);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700815
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700816 if (ring_avail < RING_AVAIL_PERCENT_LOWATER) {
817 netif_tx_stop_queue(netdev_get_tx_queue(ndev, q_idx));
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700818
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000819 if (atomic_read(&net_device->
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700820 queue_sends[q_idx]) < 1)
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700821 netif_tx_wake_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700822 ndev, q_idx));
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000823 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800824 } else if (ret == -EAGAIN) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700825 netif_tx_stop_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700826 ndev, q_idx));
827 if (atomic_read(&net_device->queue_sends[q_idx]) < 1) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700828 netif_tx_wake_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700829 ndev, q_idx));
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000830 ret = -ENOSPC;
831 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800832 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700833 netdev_err(ndev, "Unable to send packet %p ret %d\n",
Haiyang Zhang85799a32010-12-10 12:03:54 -0800834 packet, ret);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800835 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700836
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700837 return ret;
838}
839
840int netvsc_send(struct hv_device *device,
KY Srinivasan24476762015-12-01 16:43:06 -0800841 struct hv_netvsc_packet *packet,
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800842 struct rndis_message *rndis_msg,
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800843 struct hv_page_buffer **pb,
844 struct sk_buff *skb)
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700845{
846 struct netvsc_device *net_device;
847 int ret = 0, m_ret = 0;
848 struct vmbus_channel *out_channel;
849 u16 q_idx = packet->q_idx;
850 u32 pktlen = packet->total_data_buflen, msd_len = 0;
851 unsigned int section_index = NETVSC_INVALID_INDEX;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700852 struct multi_send_data *msdp;
853 struct hv_netvsc_packet *msd_send = NULL, *cur_send = NULL;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700854 bool try_batch;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700855
856 net_device = get_outbound_net_device(device);
857 if (!net_device)
858 return -ENODEV;
859
Vitaly Kuznetsov8b9fbe12015-12-01 16:43:11 -0800860 out_channel = net_device->chn_table[q_idx];
KY Srinivasan25b85ee2015-12-01 16:43:05 -0800861
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700862 packet->send_buf_index = NETVSC_INVALID_INDEX;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700863 packet->cp_partial = false;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700864
865 msdp = &net_device->msd[q_idx];
866
867 /* batch packets in send buffer if possible */
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700868 if (msdp->pkt)
869 msd_len = msdp->pkt->total_data_buflen;
870
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700871 try_batch = packet->is_data_pkt && msd_len > 0 && msdp->count <
872 net_device->max_pkt;
873
874 if (try_batch && msd_len + pktlen + net_device->pkt_align <
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700875 net_device->send_section_size) {
876 section_index = msdp->pkt->send_buf_index;
877
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700878 } else if (try_batch && msd_len + packet->rmsg_size <
879 net_device->send_section_size) {
880 section_index = msdp->pkt->send_buf_index;
881 packet->cp_partial = true;
882
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700883 } else if (packet->is_data_pkt && pktlen + net_device->pkt_align <
884 net_device->send_section_size) {
885 section_index = netvsc_get_next_send_section(net_device);
886 if (section_index != NETVSC_INVALID_INDEX) {
887 msd_send = msdp->pkt;
888 msdp->pkt = NULL;
889 msdp->count = 0;
890 msd_len = 0;
891 }
892 }
893
894 if (section_index != NETVSC_INVALID_INDEX) {
895 netvsc_copy_to_send_buf(net_device,
896 section_index, msd_len,
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800897 packet, rndis_msg, pb);
KY Srinivasanb08cc792015-03-29 21:08:42 -0700898
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700899 packet->send_buf_index = section_index;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700900
901 if (packet->cp_partial) {
902 packet->page_buf_cnt -= packet->rmsg_pgcnt;
903 packet->total_data_buflen = msd_len + packet->rmsg_size;
904 } else {
905 packet->page_buf_cnt = 0;
906 packet->total_data_buflen += msd_len;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700907 }
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700908
Haiyang Zhangee90b812015-04-06 15:22:54 -0700909 if (msdp->pkt)
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800910 dev_kfree_skb_any(skb);
Haiyang Zhangee90b812015-04-06 15:22:54 -0700911
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700912 if (packet->xmit_more && !packet->cp_partial) {
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700913 msdp->pkt = packet;
914 msdp->count++;
915 } else {
916 cur_send = packet;
917 msdp->pkt = NULL;
918 msdp->count = 0;
919 }
920 } else {
921 msd_send = msdp->pkt;
922 msdp->pkt = NULL;
923 msdp->count = 0;
924 cur_send = packet;
925 }
926
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700927 if (msd_send) {
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800928 m_ret = netvsc_send_pkt(msd_send, net_device, pb, skb);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700929
930 if (m_ret != 0) {
931 netvsc_free_send_slot(net_device,
932 msd_send->send_buf_index);
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800933 dev_kfree_skb_any(skb);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700934 }
935 }
936
937 if (cur_send)
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800938 ret = netvsc_send_pkt(cur_send, net_device, pb, skb);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700939
Jerry Snitselaar7aab5152015-05-04 10:57:16 -0700940 if (ret != 0 && section_index != NETVSC_INVALID_INDEX)
941 netvsc_free_send_slot(net_device, section_index);
Haiyang Zhangd953ca42015-01-29 12:34:49 -0800942
Hank Janssenfceaf242009-07-13 15:34:54 -0700943 return ret;
944}
945
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700946static void netvsc_send_recv_completion(struct hv_device *device,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700947 struct vmbus_channel *channel,
KY Srinivasan97c17232014-02-16 16:38:44 -0800948 struct netvsc_device *net_device,
Haiyang Zhang63f69212012-10-02 05:30:23 +0000949 u64 transaction_id, u32 status)
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700950{
951 struct nvsp_message recvcompMessage;
952 int retries = 0;
953 int ret;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700954 struct net_device *ndev;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700955
956 ndev = net_device->ndev;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700957
958 recvcompMessage.hdr.msg_type =
959 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE;
960
Haiyang Zhang63f69212012-10-02 05:30:23 +0000961 recvcompMessage.msg.v1_msg.send_rndis_pkt_complete.status = status;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700962
963retry_send_cmplt:
964 /* Send the completion */
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700965 ret = vmbus_sendpacket(channel, &recvcompMessage,
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700966 sizeof(struct nvsp_message), transaction_id,
967 VM_PKT_COMP, 0);
968 if (ret == 0) {
969 /* success */
970 /* no-op */
K. Y. Srinivasand2598f02011-08-25 09:48:58 -0700971 } else if (ret == -EAGAIN) {
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700972 /* no more room...wait a bit and attempt to retry 3 times */
973 retries++;
Haiyang Zhangd9871152011-09-01 12:19:41 -0700974 netdev_err(ndev, "unable to send receive completion pkt"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700975 " (tid %llx)...retrying %d\n", transaction_id, retries);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700976
977 if (retries < 4) {
978 udelay(100);
979 goto retry_send_cmplt;
980 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700981 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700982 "completion pkt (tid %llx)...give up retrying\n",
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700983 transaction_id);
984 }
985 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700986 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700987 "completion pkt - %llx\n", transaction_id);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700988 }
989}
990
KY Srinivasan97c17232014-02-16 16:38:44 -0800991static void netvsc_receive(struct netvsc_device *net_device,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700992 struct vmbus_channel *channel,
KY Srinivasan97c17232014-02-16 16:38:44 -0800993 struct hv_device *device,
994 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700995{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800996 struct vmtransfer_page_packet_header *vmxferpage_packet;
997 struct nvsp_message *nvsp_packet;
Haiyang Zhang4baab262014-04-21 14:54:43 -0700998 struct hv_netvsc_packet nv_pkt;
999 struct hv_netvsc_packet *netvsc_packet = &nv_pkt;
1000 u32 status = NVSP_STAT_SUCCESS;
Haiyang Zhang45326342011-12-15 13:45:15 -08001001 int i;
1002 int count = 0;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001003 struct net_device *ndev;
KY Srinivasanc4b20c62015-12-01 16:43:07 -08001004 void *data;
K. Y. Srinivasan779b4d12011-04-26 09:20:22 -07001005
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001006 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -07001007
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001008 /*
1009 * All inbound packets other than send completion should be xfer page
1010 * packet
1011 */
Haiyang Zhang415f2282011-01-26 12:12:13 -08001012 if (packet->type != VM_PKT_DATA_USING_XFER_PAGES) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001013 netdev_err(ndev, "Unknown packet type received - %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -08001014 packet->type);
Hank Janssenfceaf242009-07-13 15:34:54 -07001015 return;
1016 }
1017
Haiyang Zhang85799a32010-12-10 12:03:54 -08001018 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -08001019 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -07001020
Bill Pemberton454f18a2009-07-27 16:47:24 -04001021 /* Make sure this is a valid nvsp packet */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -08001022 if (nvsp_packet->hdr.msg_type !=
1023 NVSP_MSG1_TYPE_SEND_RNDIS_PKT) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001024 netdev_err(ndev, "Unknown nvsp packet type received-"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001025 " %d\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -07001026 return;
1027 }
1028
Haiyang Zhang85799a32010-12-10 12:03:54 -08001029 vmxferpage_packet = (struct vmtransfer_page_packet_header *)packet;
Hank Janssenfceaf242009-07-13 15:34:54 -07001030
Haiyang Zhang415f2282011-01-26 12:12:13 -08001031 if (vmxferpage_packet->xfer_pageset_id != NETVSC_RECEIVE_BUFFER_ID) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001032 netdev_err(ndev, "Invalid xfer page set id - "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001033 "expecting %x got %x\n", NETVSC_RECEIVE_BUFFER_ID,
Haiyang Zhang415f2282011-01-26 12:12:13 -08001034 vmxferpage_packet->xfer_pageset_id);
Hank Janssenfceaf242009-07-13 15:34:54 -07001035 return;
1036 }
1037
Haiyang Zhang4baab262014-04-21 14:54:43 -07001038 count = vmxferpage_packet->range_cnt;
Hank Janssenfceaf242009-07-13 15:34:54 -07001039
Bill Pemberton454f18a2009-07-27 16:47:24 -04001040 /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
Haiyang Zhang4baab262014-04-21 14:54:43 -07001041 for (i = 0; i < count; i++) {
Bill Pemberton454f18a2009-07-27 16:47:24 -04001042 /* Initialize the netvsc packet */
Haiyang Zhang63f69212012-10-02 05:30:23 +00001043 netvsc_packet->status = NVSP_STAT_SUCCESS;
KY Srinivasanc4b20c62015-12-01 16:43:07 -08001044 data = (void *)((unsigned long)net_device->
Haiyang Zhang45326342011-12-15 13:45:15 -08001045 recv_buf + vmxferpage_packet->ranges[i].byte_offset);
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -08001046 netvsc_packet->total_data_buflen =
Haiyang Zhang415f2282011-01-26 12:12:13 -08001047 vmxferpage_packet->ranges[i].byte_count;
Hank Janssenfceaf242009-07-13 15:34:54 -07001048
Bill Pemberton454f18a2009-07-27 16:47:24 -04001049 /* Pass it to the upper layer */
KY Srinivasanc4b20c62015-12-01 16:43:07 -08001050 rndis_filter_receive(device, netvsc_packet, &data, channel);
Hank Janssenfceaf242009-07-13 15:34:54 -07001051
Haiyang Zhang4baab262014-04-21 14:54:43 -07001052 if (netvsc_packet->status != NVSP_STAT_SUCCESS)
1053 status = NVSP_STAT_FAIL;
Hank Janssenfceaf242009-07-13 15:34:54 -07001054 }
1055
Haiyang Zhang4baab262014-04-21 14:54:43 -07001056 netvsc_send_recv_completion(device, channel, net_device,
1057 vmxferpage_packet->d.trans_id, status);
Hank Janssenfceaf242009-07-13 15:34:54 -07001058}
1059
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001060
1061static void netvsc_send_table(struct hv_device *hdev,
Haiyang Zhang71790a22015-07-24 10:08:40 -07001062 struct nvsp_message *nvmsg)
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001063{
1064 struct netvsc_device *nvscdev;
1065 struct net_device *ndev;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001066 int i;
1067 u32 count, *tab;
1068
1069 nvscdev = get_outbound_net_device(hdev);
1070 if (!nvscdev)
1071 return;
1072 ndev = nvscdev->ndev;
1073
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001074 count = nvmsg->msg.v5_msg.send_table.count;
1075 if (count != VRSS_SEND_TAB_SIZE) {
1076 netdev_err(ndev, "Received wrong send-table size:%u\n", count);
1077 return;
1078 }
1079
1080 tab = (u32 *)((unsigned long)&nvmsg->msg.v5_msg.send_table +
1081 nvmsg->msg.v5_msg.send_table.offset);
1082
1083 for (i = 0; i < count; i++)
1084 nvscdev->send_table[i] = tab[i];
1085}
1086
Haiyang Zhang71790a22015-07-24 10:08:40 -07001087static void netvsc_send_vf(struct netvsc_device *nvdev,
1088 struct nvsp_message *nvmsg)
1089{
1090 nvdev->vf_alloc = nvmsg->msg.v4_msg.vf_assoc.allocated;
1091 nvdev->vf_serial = nvmsg->msg.v4_msg.vf_assoc.serial;
1092}
1093
1094static inline void netvsc_receive_inband(struct hv_device *hdev,
1095 struct netvsc_device *nvdev,
1096 struct nvsp_message *nvmsg)
1097{
1098 switch (nvmsg->hdr.msg_type) {
1099 case NVSP_MSG5_TYPE_SEND_INDIRECTION_TABLE:
1100 netvsc_send_table(hdev, nvmsg);
1101 break;
1102
1103 case NVSP_MSG4_TYPE_SEND_VF_ASSOCIATION:
1104 netvsc_send_vf(nvdev, nvmsg);
1105 break;
1106 }
1107}
1108
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001109void netvsc_channel_cb(void *context)
Hank Janssenfceaf242009-07-13 15:34:54 -07001110{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001111 int ret;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001112 struct vmbus_channel *channel = (struct vmbus_channel *)context;
1113 struct hv_device *device;
Haiyang Zhang85799a32010-12-10 12:03:54 -08001114 struct netvsc_device *net_device;
1115 u32 bytes_recvd;
1116 u64 request_id;
Greg Kroah-Hartman8dc0a062009-08-27 16:02:36 -07001117 struct vmpacket_descriptor *desc;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -04001118 unsigned char *buffer;
1119 int bufferlen = NETVSC_PACKET_SIZE;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001120 struct net_device *ndev;
Haiyang Zhang71790a22015-07-24 10:08:40 -07001121 struct nvsp_message *nvmsg;
Hank Janssenfceaf242009-07-13 15:34:54 -07001122
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001123 if (channel->primary_channel != NULL)
1124 device = channel->primary_channel->device_obj;
1125 else
1126 device = channel->device_obj;
1127
Haiyang Zhang5a71ae32010-12-10 12:03:55 -08001128 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001129 if (!net_device)
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001130 return;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001131 ndev = net_device->ndev;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001132 buffer = get_per_channel_state(channel);
Hank Janssenfceaf242009-07-13 15:34:54 -07001133
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001134 do {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001135 ret = vmbus_recvpacket_raw(channel, buffer, bufferlen,
Haiyang Zhang85799a32010-12-10 12:03:54 -08001136 &bytes_recvd, &request_id);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001137 if (ret == 0) {
Haiyang Zhang85799a32010-12-10 12:03:54 -08001138 if (bytes_recvd > 0) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001139 desc = (struct vmpacket_descriptor *)buffer;
Haiyang Zhang71790a22015-07-24 10:08:40 -07001140 nvmsg = (struct nvsp_message *)((unsigned long)
1141 desc + (desc->offset8 << 3));
Haiyang Zhang415f2282011-01-26 12:12:13 -08001142 switch (desc->type) {
1143 case VM_PKT_COMP:
KY Srinivasan97c17232014-02-16 16:38:44 -08001144 netvsc_send_completion(net_device,
KY Srinivasan25b85ee2015-12-01 16:43:05 -08001145 channel,
KY Srinivasan97c17232014-02-16 16:38:44 -08001146 device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001147 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001148
Haiyang Zhang415f2282011-01-26 12:12:13 -08001149 case VM_PKT_DATA_USING_XFER_PAGES:
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001150 netvsc_receive(net_device, channel,
1151 device, desc);
1152 break;
1153
1154 case VM_PKT_DATA_INBAND:
Haiyang Zhang71790a22015-07-24 10:08:40 -07001155 netvsc_receive_inband(device,
1156 net_device,
1157 nvmsg);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001158 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001159
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001160 default:
Haiyang Zhangd9871152011-09-01 12:19:41 -07001161 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001162 "unhandled packet type %d, "
1163 "tid %llx len %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -08001164 desc->type, request_id,
Haiyang Zhang85799a32010-12-10 12:03:54 -08001165 bytes_recvd);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001166 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001167 }
1168
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001169 } else {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001170 /*
1171 * We are done for this pass.
1172 */
Hank Janssenfceaf242009-07-13 15:34:54 -07001173 break;
1174 }
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001175
K. Y. Srinivasan3d5cad92011-08-25 09:48:59 -07001176 } else if (ret == -ENOBUFS) {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001177 if (bufferlen > NETVSC_PACKET_SIZE)
1178 kfree(buffer);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001179 /* Handle large packet */
Haiyang Zhang85799a32010-12-10 12:03:54 -08001180 buffer = kmalloc(bytes_recvd, GFP_ATOMIC);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001181 if (buffer == NULL) {
Bill Pemberton454f18a2009-07-27 16:47:24 -04001182 /* Try again next time around */
Haiyang Zhangd9871152011-09-01 12:19:41 -07001183 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001184 "unable to allocate buffer of size "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001185 "(%d)!!\n", bytes_recvd);
Hank Janssenfceaf242009-07-13 15:34:54 -07001186 break;
1187 }
1188
Haiyang Zhang85799a32010-12-10 12:03:54 -08001189 bufferlen = bytes_recvd;
Hank Janssenfceaf242009-07-13 15:34:54 -07001190 }
1191 } while (1);
1192
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001193 if (bufferlen > NETVSC_PACKET_SIZE)
1194 kfree(buffer);
Hank Janssenfceaf242009-07-13 15:34:54 -07001195 return;
1196}
Haiyang Zhangaf24ce42011-04-21 12:30:40 -07001197
1198/*
Haiyang Zhangb637e022011-04-21 12:30:45 -07001199 * netvsc_device_add - Callback when the device belonging to this
1200 * driver is added
1201 */
K. Y. Srinivasan7bd23a42011-05-10 07:54:53 -07001202int netvsc_device_add(struct hv_device *device, void *additional_info)
Haiyang Zhangb637e022011-04-21 12:30:45 -07001203{
1204 int ret = 0;
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001205 int ring_size =
1206 ((struct netvsc_device_info *)additional_info)->ring_size;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001207 struct netvsc_device *net_device;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001208 struct net_device *ndev;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001209
1210 net_device = alloc_net_device(device);
Dan Carpenterb1c84922014-09-04 14:11:23 +03001211 if (!net_device)
1212 return -ENOMEM;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001213
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001214 net_device->ring_size = ring_size;
1215
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001216 /*
1217 * Coming into this function, struct net_device * is
1218 * registered as the driver private data.
1219 * In alloc_net_device(), we register struct netvsc_device *
1220 * as the driver private data and stash away struct net_device *
1221 * in struct netvsc_device *.
1222 */
1223 ndev = net_device->ndev;
1224
Simon Xiao3f300ff2015-04-28 01:05:17 -07001225 /* Add netvsc_device context to netvsc_device */
1226 net_device->nd_ctx = netdev_priv(ndev);
1227
Haiyang Zhangb637e022011-04-21 12:30:45 -07001228 /* Initialize the NetVSC channel extension */
K. Y. Srinivasan35abb212011-05-10 07:55:41 -07001229 init_completion(&net_device->channel_init_wait);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001230
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001231 set_per_channel_state(device->channel, net_device->cb_buffer);
1232
Haiyang Zhangb637e022011-04-21 12:30:45 -07001233 /* Open the channel */
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001234 ret = vmbus_open(device->channel, ring_size * PAGE_SIZE,
1235 ring_size * PAGE_SIZE, NULL, 0,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001236 netvsc_channel_cb, device->channel);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001237
1238 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001239 netdev_err(ndev, "unable to open channel: %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001240 goto cleanup;
1241 }
1242
1243 /* Channel is opened */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001244 pr_info("hv_netvsc channel opened successfully\n");
Haiyang Zhangb637e022011-04-21 12:30:45 -07001245
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001246 net_device->chn_table[0] = device->channel;
1247
Haiyang Zhangb637e022011-04-21 12:30:45 -07001248 /* Connect with the NetVsp */
1249 ret = netvsc_connect_vsp(device);
1250 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001251 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001252 "unable to connect to NetVSP - %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001253 goto close;
1254 }
1255
1256 return ret;
1257
1258close:
1259 /* Now, we can close the channel safely */
1260 vmbus_close(device->channel);
1261
1262cleanup:
Haiyang Zhangf90251c2014-08-15 19:18:19 +00001263 free_netvsc_device(net_device);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001264
1265 return ret;
1266}