blob: eddce3cdafa8b5cdc7f0421cad77b55dec762068 [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
KY Srinivasan84bf9ce2016-04-14 16:31:54 -070036/*
37 * Switch the data path from the synthetic interface to the VF
38 * interface.
39 */
40void netvsc_switch_datapath(struct netvsc_device *nv_dev, bool vf)
41{
42 struct nvsp_message *init_pkt = &nv_dev->channel_init_pkt;
43 struct hv_device *dev = nv_dev->dev;
44
45 memset(init_pkt, 0, sizeof(struct nvsp_message));
46 init_pkt->hdr.msg_type = NVSP_MSG4_TYPE_SWITCH_DATA_PATH;
47 if (vf)
48 init_pkt->msg.v4_msg.active_dp.active_datapath =
49 NVSP_DATAPATH_VF;
50 else
51 init_pkt->msg.v4_msg.active_dp.active_datapath =
52 NVSP_DATAPATH_SYNTHETIC;
53
54 vmbus_sendpacket(dev->channel, init_pkt,
55 sizeof(struct nvsp_message),
56 (unsigned long)init_pkt,
57 VM_PKT_DATA_INBAND, 0);
58}
59
Hank Janssenfceaf242009-07-13 15:34:54 -070060
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080061static struct netvsc_device *alloc_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070062{
Haiyang Zhang85799a32010-12-10 12:03:54 -080063 struct netvsc_device *net_device;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070064 struct net_device *ndev = hv_get_drvdata(device);
Hank Janssenfceaf242009-07-13 15:34:54 -070065
Haiyang Zhang85799a32010-12-10 12:03:54 -080066 net_device = kzalloc(sizeof(struct netvsc_device), GFP_KERNEL);
67 if (!net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -070068 return NULL;
69
Haiyang Zhangf90251c2014-08-15 19:18:19 +000070 net_device->cb_buffer = kzalloc(NETVSC_PACKET_SIZE, GFP_KERNEL);
71 if (!net_device->cb_buffer) {
72 kfree(net_device);
73 return NULL;
74 }
75
Haiyang Zhangdc5cd892012-06-04 06:42:38 +000076 init_waitqueue_head(&net_device->wait_drain);
Haiyang Zhang4d447c92011-12-15 13:45:17 -080077 net_device->start_remove = false;
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -070078 net_device->destroy = false;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -070079 atomic_set(&net_device->open_cnt, 0);
80 atomic_set(&net_device->vf_use_cnt, 0);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -080081 net_device->dev = device;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070082 net_device->ndev = ndev;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -070083 net_device->max_pkt = RNDIS_MAX_PKT_DEFAULT;
84 net_device->pkt_align = RNDIS_PKT_ALIGN_DEFAULT;
85
KY Srinivasan84bf9ce2016-04-14 16:31:54 -070086 net_device->vf_netdev = NULL;
87 net_device->vf_inject = false;
88
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070089 hv_set_drvdata(device, net_device);
Haiyang Zhang85799a32010-12-10 12:03:54 -080090 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070091}
92
Haiyang Zhangf90251c2014-08-15 19:18:19 +000093static void free_netvsc_device(struct netvsc_device *nvdev)
94{
95 kfree(nvdev->cb_buffer);
96 kfree(nvdev);
97}
98
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080099static struct netvsc_device *get_outbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700100{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800101 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -0700102
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700103 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700104 if (net_device && net_device->destroy)
Haiyang Zhang85799a32010-12-10 12:03:54 -0800105 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -0700106
Haiyang Zhang85799a32010-12-10 12:03:54 -0800107 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -0700108}
109
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800110static struct netvsc_device *get_inbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700111{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800112 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -0700113
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700114 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700115
116 if (!net_device)
117 goto get_in_err;
118
119 if (net_device->destroy &&
120 atomic_read(&net_device->num_outstanding_sends) == 0)
Haiyang Zhang85799a32010-12-10 12:03:54 -0800121 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -0700122
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700123get_in_err:
Haiyang Zhang85799a32010-12-10 12:03:54 -0800124 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -0700125}
126
Hank Janssenfceaf242009-07-13 15:34:54 -0700127
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700128static int netvsc_destroy_buf(struct netvsc_device *net_device)
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700129{
130 struct nvsp_message *revoke_packet;
131 int ret = 0;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700132 struct net_device *ndev = net_device->ndev;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700133
134 /*
135 * If we got a section count, it means we received a
136 * SendReceiveBufferComplete msg (ie sent
137 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
138 * to send a revoke msg here
139 */
140 if (net_device->recv_section_cnt) {
141 /* Send the revoke receive buffer */
142 revoke_packet = &net_device->revoke_packet;
143 memset(revoke_packet, 0, sizeof(struct nvsp_message));
144
145 revoke_packet->hdr.msg_type =
146 NVSP_MSG1_TYPE_REVOKE_RECV_BUF;
147 revoke_packet->msg.v1_msg.
148 revoke_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
149
150 ret = vmbus_sendpacket(net_device->dev->channel,
151 revoke_packet,
152 sizeof(struct nvsp_message),
153 (unsigned long)revoke_packet,
154 VM_PKT_DATA_INBAND, 0);
155 /*
156 * If we failed here, we might as well return and
157 * have a leak rather than continue and a bugchk
158 */
159 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700160 netdev_err(ndev, "unable to send "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700161 "revoke receive buffer to netvsp\n");
K. Y. Srinivasana3e00532011-08-25 09:49:12 -0700162 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700163 }
164 }
165
166 /* Teardown the gpadl on the vsp end */
167 if (net_device->recv_buf_gpadl_handle) {
168 ret = vmbus_teardown_gpadl(net_device->dev->channel,
169 net_device->recv_buf_gpadl_handle);
170
171 /* If we failed here, we might as well return and have a leak
172 * rather than continue and a bugchk
173 */
174 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700175 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700176 "unable to teardown receive buffer's gpadl\n");
Dan Carpenter7f9615e2011-08-27 14:06:07 +0300177 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700178 }
179 net_device->recv_buf_gpadl_handle = 0;
180 }
181
182 if (net_device->recv_buf) {
183 /* Free up the receive buffer */
Haiyang Zhangb679ef72014-01-27 15:03:42 -0800184 vfree(net_device->recv_buf);
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700185 net_device->recv_buf = NULL;
186 }
187
188 if (net_device->recv_section) {
189 net_device->recv_section_cnt = 0;
190 kfree(net_device->recv_section);
191 net_device->recv_section = NULL;
192 }
193
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700194 /* Deal with the send buffer we may have setup.
195 * If we got a send section size, it means we received a
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800196 * NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE msg (ie sent
197 * NVSP_MSG1_TYPE_SEND_SEND_BUF msg) therefore, we need
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700198 * to send a revoke msg here
199 */
200 if (net_device->send_section_size) {
201 /* Send the revoke receive buffer */
202 revoke_packet = &net_device->revoke_packet;
203 memset(revoke_packet, 0, sizeof(struct nvsp_message));
204
205 revoke_packet->hdr.msg_type =
206 NVSP_MSG1_TYPE_REVOKE_SEND_BUF;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800207 revoke_packet->msg.v1_msg.revoke_send_buf.id =
208 NETVSC_SEND_BUFFER_ID;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700209
210 ret = vmbus_sendpacket(net_device->dev->channel,
211 revoke_packet,
212 sizeof(struct nvsp_message),
213 (unsigned long)revoke_packet,
214 VM_PKT_DATA_INBAND, 0);
215 /* If we failed here, we might as well return and
216 * have a leak rather than continue and a bugchk
217 */
218 if (ret != 0) {
219 netdev_err(ndev, "unable to send "
220 "revoke send buffer to netvsp\n");
221 return ret;
222 }
223 }
224 /* Teardown the gpadl on the vsp end */
225 if (net_device->send_buf_gpadl_handle) {
226 ret = vmbus_teardown_gpadl(net_device->dev->channel,
227 net_device->send_buf_gpadl_handle);
228
229 /* If we failed here, we might as well return and have a leak
230 * rather than continue and a bugchk
231 */
232 if (ret != 0) {
233 netdev_err(ndev,
234 "unable to teardown send buffer's gpadl\n");
235 return ret;
236 }
Dave Jones2f184232014-06-16 16:59:02 -0400237 net_device->send_buf_gpadl_handle = 0;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700238 }
239 if (net_device->send_buf) {
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800240 /* Free up the send buffer */
KY Srinivasan06b47aa2014-08-02 10:42:02 -0700241 vfree(net_device->send_buf);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700242 net_device->send_buf = NULL;
243 }
244 kfree(net_device->send_section_map);
245
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700246 return ret;
247}
248
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700249static int netvsc_init_buf(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700250{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700251 int ret = 0;
Nicholas Mc Guire7390fe92015-01-25 15:46:31 +0100252 unsigned long t;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800253 struct netvsc_device *net_device;
254 struct nvsp_message *init_packet;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700255 struct net_device *ndev;
K. Y. Srinivasan0a726c22015-05-28 17:08:06 -0700256 int node;
Hank Janssenfceaf242009-07-13 15:34:54 -0700257
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800258 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700259 if (!net_device)
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700260 return -ENODEV;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700261 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700262
K. Y. Srinivasan0a726c22015-05-28 17:08:06 -0700263 node = cpu_to_node(device->channel->target_cpu);
264 net_device->recv_buf = vzalloc_node(net_device->recv_buf_size, node);
265 if (!net_device->recv_buf)
266 net_device->recv_buf = vzalloc(net_device->recv_buf_size);
267
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800268 if (!net_device->recv_buf) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700269 netdev_err(ndev, "unable to allocate receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700270 "buffer of size %d\n", net_device->recv_buf_size);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700271 ret = -ENOMEM;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800272 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700273 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700274
Bill Pemberton454f18a2009-07-27 16:47:24 -0400275 /*
276 * Establish the gpadl handle for this buffer on this
277 * channel. Note: This call uses the vmbus connection rather
278 * than the channel to establish the gpadl handle.
279 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800280 ret = vmbus_establish_gpadl(device->channel, net_device->recv_buf,
281 net_device->recv_buf_size,
282 &net_device->recv_buf_gpadl_handle);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700283 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700284 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700285 "unable to establish receive buffer's gpadl\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800286 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700287 }
288
Hank Janssenfceaf242009-07-13 15:34:54 -0700289
Bill Pemberton454f18a2009-07-27 16:47:24 -0400290 /* Notify the NetVsp of the gpadl handle */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800291 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700292
Haiyang Zhang85799a32010-12-10 12:03:54 -0800293 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700294
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800295 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_RECV_BUF;
296 init_packet->msg.v1_msg.send_recv_buf.
297 gpadl_handle = net_device->recv_buf_gpadl_handle;
298 init_packet->msg.v1_msg.
299 send_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
Hank Janssenfceaf242009-07-13 15:34:54 -0700300
Bill Pemberton454f18a2009-07-27 16:47:24 -0400301 /* Send the gpadl notification request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800302 ret = vmbus_sendpacket(device->channel, init_packet,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700303 sizeof(struct nvsp_message),
Haiyang Zhang85799a32010-12-10 12:03:54 -0800304 (unsigned long)init_packet,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800305 VM_PKT_DATA_INBAND,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700306 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700307 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700308 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700309 "unable to send receive buffer's gpadl to netvsp\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800310 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700311 }
312
K. Y. Srinivasan5c5781b32011-06-16 13:16:35 -0700313 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700314 BUG_ON(t == 0);
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800315
Hank Janssenfceaf242009-07-13 15:34:54 -0700316
Bill Pemberton454f18a2009-07-27 16:47:24 -0400317 /* Check the response */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800318 if (init_packet->msg.v1_msg.
319 send_recv_buf_complete.status != NVSP_STAT_SUCCESS) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700320 netdev_err(ndev, "Unable to complete receive buffer "
Haiyang Zhang8bff33a2011-09-01 12:19:48 -0700321 "initialization with NetVsp - status %d\n",
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800322 init_packet->msg.v1_msg.
323 send_recv_buf_complete.status);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700324 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800325 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700326 }
327
Bill Pemberton454f18a2009-07-27 16:47:24 -0400328 /* Parse the response */
Hank Janssenfceaf242009-07-13 15:34:54 -0700329
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800330 net_device->recv_section_cnt = init_packet->msg.
331 v1_msg.send_recv_buf_complete.num_sections;
Hank Janssenfceaf242009-07-13 15:34:54 -0700332
Haiyang Zhangc1813202011-11-30 07:19:07 -0800333 net_device->recv_section = kmemdup(
334 init_packet->msg.v1_msg.send_recv_buf_complete.sections,
335 net_device->recv_section_cnt *
336 sizeof(struct nvsp_1_receive_buffer_section),
337 GFP_KERNEL);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800338 if (net_device->recv_section == NULL) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700339 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800340 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700341 }
342
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700343 /*
344 * For 1st release, there should only be 1 section that represents the
345 * entire receive buffer
346 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800347 if (net_device->recv_section_cnt != 1 ||
348 net_device->recv_section->offset != 0) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700349 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800350 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700351 }
352
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700353 /* Now setup the send buffer.
354 */
K. Y. Srinivasan5defde52015-05-28 17:08:07 -0700355 net_device->send_buf = vzalloc_node(net_device->send_buf_size, node);
356 if (!net_device->send_buf)
357 net_device->send_buf = vzalloc(net_device->send_buf_size);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700358 if (!net_device->send_buf) {
359 netdev_err(ndev, "unable to allocate send "
360 "buffer of size %d\n", net_device->send_buf_size);
361 ret = -ENOMEM;
362 goto cleanup;
363 }
364
365 /* Establish the gpadl handle for this buffer on this
366 * channel. Note: This call uses the vmbus connection rather
367 * than the channel to establish the gpadl handle.
368 */
369 ret = vmbus_establish_gpadl(device->channel, net_device->send_buf,
370 net_device->send_buf_size,
371 &net_device->send_buf_gpadl_handle);
372 if (ret != 0) {
373 netdev_err(ndev,
374 "unable to establish send buffer's gpadl\n");
375 goto cleanup;
376 }
377
378 /* Notify the NetVsp of the gpadl handle */
379 init_packet = &net_device->channel_init_pkt;
380 memset(init_packet, 0, sizeof(struct nvsp_message));
381 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_SEND_BUF;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800382 init_packet->msg.v1_msg.send_send_buf.gpadl_handle =
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700383 net_device->send_buf_gpadl_handle;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800384 init_packet->msg.v1_msg.send_send_buf.id = NETVSC_SEND_BUFFER_ID;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700385
386 /* Send the gpadl notification request */
387 ret = vmbus_sendpacket(device->channel, init_packet,
388 sizeof(struct nvsp_message),
389 (unsigned long)init_packet,
390 VM_PKT_DATA_INBAND,
391 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
392 if (ret != 0) {
393 netdev_err(ndev,
394 "unable to send send buffer's gpadl to netvsp\n");
395 goto cleanup;
396 }
397
398 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
399 BUG_ON(t == 0);
400
401 /* Check the response */
402 if (init_packet->msg.v1_msg.
403 send_send_buf_complete.status != NVSP_STAT_SUCCESS) {
404 netdev_err(ndev, "Unable to complete send buffer "
405 "initialization with NetVsp - status %d\n",
406 init_packet->msg.v1_msg.
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800407 send_send_buf_complete.status);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700408 ret = -EINVAL;
409 goto cleanup;
410 }
411
412 /* Parse the response */
413 net_device->send_section_size = init_packet->msg.
414 v1_msg.send_send_buf_complete.section_size;
415
416 /* Section count is simply the size divided by the section size.
417 */
418 net_device->send_section_cnt =
419 net_device->send_buf_size/net_device->send_section_size;
420
421 dev_info(&device->device, "Send section size: %d, Section count:%d\n",
422 net_device->send_section_size, net_device->send_section_cnt);
423
424 /* Setup state for managing the send buffer. */
425 net_device->map_words = DIV_ROUND_UP(net_device->send_section_cnt,
426 BITS_PER_LONG);
427
428 net_device->send_section_map =
429 kzalloc(net_device->map_words * sizeof(ulong), GFP_KERNEL);
Wei Yongjundd1d3f82014-07-23 09:00:35 +0800430 if (net_device->send_section_map == NULL) {
431 ret = -ENOMEM;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700432 goto cleanup;
Wei Yongjundd1d3f82014-07-23 09:00:35 +0800433 }
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700434
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800435 goto exit;
Hank Janssenfceaf242009-07-13 15:34:54 -0700436
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800437cleanup:
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700438 netvsc_destroy_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700439
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800440exit:
Hank Janssenfceaf242009-07-13 15:34:54 -0700441 return ret;
442}
443
Hank Janssenfceaf242009-07-13 15:34:54 -0700444
Haiyang Zhangf157e782011-12-15 13:45:16 -0800445/* Negotiate NVSP protocol version */
446static int negotiate_nvsp_ver(struct hv_device *device,
447 struct netvsc_device *net_device,
448 struct nvsp_message *init_packet,
449 u32 nvsp_ver)
Hank Janssenfceaf242009-07-13 15:34:54 -0700450{
Nicholas Mc Guire7390fe92015-01-25 15:46:31 +0100451 int ret;
452 unsigned long t;
Haiyang Zhangf157e782011-12-15 13:45:16 -0800453
454 memset(init_packet, 0, sizeof(struct nvsp_message));
455 init_packet->hdr.msg_type = NVSP_MSG_TYPE_INIT;
456 init_packet->msg.init_msg.init.min_protocol_ver = nvsp_ver;
457 init_packet->msg.init_msg.init.max_protocol_ver = nvsp_ver;
458
459 /* Send the init request */
460 ret = vmbus_sendpacket(device->channel, init_packet,
461 sizeof(struct nvsp_message),
462 (unsigned long)init_packet,
463 VM_PKT_DATA_INBAND,
464 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
465
466 if (ret != 0)
467 return ret;
468
469 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
470
471 if (t == 0)
472 return -ETIMEDOUT;
473
474 if (init_packet->msg.init_msg.init_complete.status !=
475 NVSP_STAT_SUCCESS)
476 return -EINVAL;
477
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800478 if (nvsp_ver == NVSP_PROTOCOL_VERSION_1)
Haiyang Zhangf157e782011-12-15 13:45:16 -0800479 return 0;
480
Haiyang Zhang71790a22015-07-24 10:08:40 -0700481 /* NVSPv2 or later: Send NDIS config */
Haiyang Zhangf157e782011-12-15 13:45:16 -0800482 memset(init_packet, 0, sizeof(struct nvsp_message));
483 init_packet->hdr.msg_type = NVSP_MSG2_TYPE_SEND_NDIS_CONFIG;
Haiyang Zhang4d3c9d32014-11-12 14:07:44 -0800484 init_packet->msg.v2_msg.send_ndis_config.mtu = net_device->ndev->mtu +
485 ETH_HLEN;
Haiyang Zhang1f5f3a72012-03-12 10:20:50 +0000486 init_packet->msg.v2_msg.send_ndis_config.capability.ieee8021q = 1;
Haiyang Zhangf157e782011-12-15 13:45:16 -0800487
Haiyang Zhang71790a22015-07-24 10:08:40 -0700488 if (nvsp_ver >= NVSP_PROTOCOL_VERSION_5)
489 init_packet->msg.v2_msg.send_ndis_config.capability.sriov = 1;
490
Haiyang Zhangf157e782011-12-15 13:45:16 -0800491 ret = vmbus_sendpacket(device->channel, init_packet,
492 sizeof(struct nvsp_message),
493 (unsigned long)init_packet,
494 VM_PKT_DATA_INBAND, 0);
495
496 return ret;
497}
498
499static int netvsc_connect_vsp(struct hv_device *device)
500{
501 int ret;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800502 struct netvsc_device *net_device;
503 struct nvsp_message *init_packet;
504 int ndis_version;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700505 struct net_device *ndev;
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800506 u32 ver_list[] = { NVSP_PROTOCOL_VERSION_1, NVSP_PROTOCOL_VERSION_2,
507 NVSP_PROTOCOL_VERSION_4, NVSP_PROTOCOL_VERSION_5 };
508 int i, num_ver = 4; /* number of different NVSP versions */
Hank Janssenfceaf242009-07-13 15:34:54 -0700509
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800510 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700511 if (!net_device)
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700512 return -ENODEV;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700513 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700514
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800515 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700516
Haiyang Zhangf157e782011-12-15 13:45:16 -0800517 /* Negotiate the latest NVSP protocol supported */
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800518 for (i = num_ver - 1; i >= 0; i--)
519 if (negotiate_nvsp_ver(device, net_device, init_packet,
520 ver_list[i]) == 0) {
521 net_device->nvsp_version = ver_list[i];
522 break;
523 }
524
525 if (i < 0) {
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700526 ret = -EPROTO;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800527 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700528 }
Haiyang Zhangf157e782011-12-15 13:45:16 -0800529
530 pr_debug("Negotiated NVSP version:%x\n", net_device->nvsp_version);
531
Bill Pemberton454f18a2009-07-27 16:47:24 -0400532 /* Send the ndis version */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800533 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700534
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800535 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_4)
KY Srinivasan1f73db42014-04-09 15:00:46 -0700536 ndis_version = 0x00060001;
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800537 else
538 ndis_version = 0x0006001e;
Hank Janssenfceaf242009-07-13 15:34:54 -0700539
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800540 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_NDIS_VER;
541 init_packet->msg.v1_msg.
542 send_ndis_ver.ndis_major_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800543 (ndis_version & 0xFFFF0000) >> 16;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800544 init_packet->msg.v1_msg.
545 send_ndis_ver.ndis_minor_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800546 ndis_version & 0xFFFF;
Hank Janssenfceaf242009-07-13 15:34:54 -0700547
Bill Pemberton454f18a2009-07-27 16:47:24 -0400548 /* Send the init request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800549 ret = vmbus_sendpacket(device->channel, init_packet,
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800550 sizeof(struct nvsp_message),
551 (unsigned long)init_packet,
552 VM_PKT_DATA_INBAND, 0);
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700553 if (ret != 0)
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800554 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700555
Bill Pemberton454f18a2009-07-27 16:47:24 -0400556 /* Post the big receive buffer to NetVSP */
Haiyang Zhang99d30162014-03-09 16:10:59 -0700557 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_2)
558 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE_LEGACY;
559 else
560 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700561 net_device->send_buf_size = NETVSC_SEND_BUFFER_SIZE;
Haiyang Zhang99d30162014-03-09 16:10:59 -0700562
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700563 ret = netvsc_init_buf(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700564
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800565cleanup:
Hank Janssenfceaf242009-07-13 15:34:54 -0700566 return ret;
567}
568
Haiyang Zhang648dc592011-04-21 12:30:47 -0700569static void netvsc_disconnect_vsp(struct netvsc_device *net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700570{
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700571 netvsc_destroy_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700572}
573
Hank Janssen3e189512010-03-04 22:11:00 +0000574/*
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800575 * netvsc_device_remove - Callback when the root bus device is removed
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700576 */
K. Y. Srinivasan905620d2011-05-10 07:54:54 -0700577int netvsc_device_remove(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700578{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800579 struct netvsc_device *net_device;
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -0700580 unsigned long flags;
Hank Janssenfceaf242009-07-13 15:34:54 -0700581
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700582 net_device = hv_get_drvdata(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700583
Haiyang Zhang648dc592011-04-21 12:30:47 -0700584 netvsc_disconnect_vsp(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700585
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700586 /*
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700587 * Since we have already drained, we don't need to busy wait
588 * as was done in final_release_stor_device()
589 * Note that we cannot set the ext pointer to NULL until
590 * we have drained - to drain the outgoing packets, we need to
591 * allow incoming packets.
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700592 */
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700593
594 spin_lock_irqsave(&device->channel->inbound_lock, flags);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700595 hv_set_drvdata(device, NULL);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700596 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700597
K. Y. Srinivasan86c921a2011-09-13 10:59:54 -0700598 /*
599 * At this point, no one should be accessing net_device
600 * except in here
601 */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700602 dev_notice(&device->device, "net device safe to remove\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700603
Bill Pemberton454f18a2009-07-27 16:47:24 -0400604 /* Now, we can close the channel safely */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800605 vmbus_close(device->channel);
Hank Janssenfceaf242009-07-13 15:34:54 -0700606
Bill Pemberton454f18a2009-07-27 16:47:24 -0400607 /* Release all resources */
Markus Elfringaa99c472014-11-25 22:33:45 +0100608 vfree(net_device->sub_cb_buf);
Haiyang Zhangf90251c2014-08-15 19:18:19 +0000609 free_netvsc_device(net_device);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700610 return 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700611}
612
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000613
614#define RING_AVAIL_PERCENT_HIWATER 20
615#define RING_AVAIL_PERCENT_LOWATER 10
616
617/*
618 * Get the percentage of available bytes to write in the ring.
619 * The return value is in range from 0 to 100.
620 */
621static inline u32 hv_ringbuf_avail_percent(
622 struct hv_ring_buffer_info *ring_info)
623{
624 u32 avail_read, avail_write;
625
626 hv_get_ringbuffer_availbytes(ring_info, &avail_read, &avail_write);
627
628 return avail_write * 100 / ring_info->ring_datasize;
629}
630
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700631static inline void netvsc_free_send_slot(struct netvsc_device *net_device,
632 u32 index)
633{
634 sync_change_bit(index, net_device->send_section_map);
635}
636
KY Srinivasan97c17232014-02-16 16:38:44 -0800637static void netvsc_send_completion(struct netvsc_device *net_device,
KY Srinivasan25b85ee2015-12-01 16:43:05 -0800638 struct vmbus_channel *incoming_channel,
KY Srinivasan97c17232014-02-16 16:38:44 -0800639 struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800640 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700641{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800642 struct nvsp_message *nvsp_packet;
643 struct hv_netvsc_packet *nvsc_packet;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700644 struct net_device *ndev;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700645 u32 send_index;
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800646 struct sk_buff *skb;
Hank Janssenfceaf242009-07-13 15:34:54 -0700647
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700648 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700649
Haiyang Zhang85799a32010-12-10 12:03:54 -0800650 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -0800651 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -0700652
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800653 if ((nvsp_packet->hdr.msg_type == NVSP_MSG_TYPE_INIT_COMPLETE) ||
654 (nvsp_packet->hdr.msg_type ==
655 NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE) ||
656 (nvsp_packet->hdr.msg_type ==
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700657 NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE) ||
658 (nvsp_packet->hdr.msg_type ==
659 NVSP_MSG5_TYPE_SUBCHANNEL)) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400660 /* Copy the response back */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800661 memcpy(&net_device->channel_init_pkt, nvsp_packet,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700662 sizeof(struct nvsp_message));
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700663 complete(&net_device->channel_init_wait);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800664 } else if (nvsp_packet->hdr.msg_type ==
665 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE) {
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000666 int num_outstanding_sends;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700667 u16 q_idx = 0;
668 struct vmbus_channel *channel = device->channel;
669 int queue_sends;
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000670
Bill Pemberton454f18a2009-07-27 16:47:24 -0400671 /* Get the send context */
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800672 skb = (struct sk_buff *)(unsigned long)packet->trans_id;
Hank Janssenfceaf242009-07-13 15:34:54 -0700673
Bill Pemberton454f18a2009-07-27 16:47:24 -0400674 /* Notify the layer above us */
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800675 if (skb) {
676 nvsc_packet = (struct hv_netvsc_packet *) skb->cb;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700677 send_index = nvsc_packet->send_buf_index;
678 if (send_index != NETVSC_INVALID_INDEX)
679 netvsc_free_send_slot(net_device, send_index);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700680 q_idx = nvsc_packet->q_idx;
KY Srinivasan25b85ee2015-12-01 16:43:05 -0800681 channel = incoming_channel;
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800682 dev_kfree_skb_any(skb);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700683 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700684
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000685 num_outstanding_sends =
686 atomic_dec_return(&net_device->num_outstanding_sends);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700687 queue_sends = atomic_dec_return(&net_device->
688 queue_sends[q_idx]);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800689
Haiyang Zhangdc5cd892012-06-04 06:42:38 +0000690 if (net_device->destroy && num_outstanding_sends == 0)
691 wake_up(&net_device->wait_drain);
692
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700693 if (netif_tx_queue_stopped(netdev_get_tx_queue(ndev, q_idx)) &&
694 !net_device->start_remove &&
695 (hv_ringbuf_avail_percent(&channel->outbound) >
696 RING_AVAIL_PERCENT_HIWATER || queue_sends < 1))
697 netif_tx_wake_queue(netdev_get_tx_queue(
698 ndev, q_idx));
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700699 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700700 netdev_err(ndev, "Unknown send completion packet type- "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700701 "%d received!!\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700702 }
703
Hank Janssenfceaf242009-07-13 15:34:54 -0700704}
705
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700706static u32 netvsc_get_next_send_section(struct netvsc_device *net_device)
707{
708 unsigned long index;
709 u32 max_words = net_device->map_words;
710 unsigned long *map_addr = (unsigned long *)net_device->send_section_map;
711 u32 section_cnt = net_device->send_section_cnt;
712 int ret_val = NETVSC_INVALID_INDEX;
713 int i;
714 int prev_val;
715
716 for (i = 0; i < max_words; i++) {
717 if (!~(map_addr[i]))
718 continue;
719 index = ffz(map_addr[i]);
720 prev_val = sync_test_and_set_bit(index, &map_addr[i]);
721 if (prev_val)
722 continue;
723 if ((index + (i * BITS_PER_LONG)) >= section_cnt)
724 break;
725 ret_val = (index + (i * BITS_PER_LONG));
726 break;
727 }
728 return ret_val;
729}
730
Lad, Prabhakarda19fcd2015-02-05 15:06:33 +0000731static u32 netvsc_copy_to_send_buf(struct netvsc_device *net_device,
732 unsigned int section_index,
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700733 u32 pend_size,
KY Srinivasan24476762015-12-01 16:43:06 -0800734 struct hv_netvsc_packet *packet,
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800735 struct rndis_message *rndis_msg,
KY Srinivasan694a9fb2015-12-01 16:43:15 -0800736 struct hv_page_buffer **pb,
737 struct sk_buff *skb)
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700738{
739 char *start = net_device->send_buf;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700740 char *dest = start + (section_index * net_device->send_section_size)
741 + pend_size;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700742 int i;
KY Srinivasan694a9fb2015-12-01 16:43:15 -0800743 bool is_data_pkt = (skb != NULL) ? true : false;
KY Srinivasanbde79be2015-12-01 16:43:17 -0800744 bool xmit_more = (skb != NULL) ? skb->xmit_more : false;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700745 u32 msg_size = 0;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700746 u32 padding = 0;
747 u32 remain = packet->total_data_buflen % net_device->pkt_align;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700748 u32 page_count = packet->cp_partial ? packet->rmsg_pgcnt :
749 packet->page_buf_cnt;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700750
751 /* Add padding */
KY Srinivasanbde79be2015-12-01 16:43:17 -0800752 if (is_data_pkt && xmit_more && remain &&
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700753 !packet->cp_partial) {
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700754 padding = net_device->pkt_align - remain;
KY Srinivasan24476762015-12-01 16:43:06 -0800755 rndis_msg->msg_len += padding;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700756 packet->total_data_buflen += padding;
757 }
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700758
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700759 for (i = 0; i < page_count; i++) {
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800760 char *src = phys_to_virt((*pb)[i].pfn << PAGE_SHIFT);
761 u32 offset = (*pb)[i].offset;
762 u32 len = (*pb)[i].len;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700763
764 memcpy(dest, (src + offset), len);
765 msg_size += len;
766 dest += len;
767 }
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700768
769 if (padding) {
770 memset(dest, 0, padding);
771 msg_size += padding;
772 }
773
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700774 return msg_size;
775}
776
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700777static inline int netvsc_send_pkt(
778 struct hv_netvsc_packet *packet,
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800779 struct netvsc_device *net_device,
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800780 struct hv_page_buffer **pb,
781 struct sk_buff *skb)
Hank Janssenfceaf242009-07-13 15:34:54 -0700782{
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700783 struct nvsp_message nvmsg;
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700784 u16 q_idx = packet->q_idx;
Vitaly Kuznetsov8b9fbe12015-12-01 16:43:11 -0800785 struct vmbus_channel *out_channel = net_device->chn_table[q_idx];
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700786 struct net_device *ndev = net_device->ndev;
787 u64 req_id;
788 int ret;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700789 struct hv_page_buffer *pgbuf;
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700790 u32 ring_avail = hv_ringbuf_avail_percent(&out_channel->outbound);
KY Srinivasanbde79be2015-12-01 16:43:17 -0800791 bool xmit_more = (skb != NULL) ? skb->xmit_more : false;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700792
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700793 nvmsg.hdr.msg_type = NVSP_MSG1_TYPE_SEND_RNDIS_PKT;
KY Srinivasan694a9fb2015-12-01 16:43:15 -0800794 if (skb != NULL) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700795 /* 0 is RMC_DATA; */
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700796 nvmsg.msg.v1_msg.send_rndis_pkt.channel_type = 0;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700797 } else {
798 /* 1 is RMC_CONTROL; */
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700799 nvmsg.msg.v1_msg.send_rndis_pkt.channel_type = 1;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700800 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700801
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700802 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_index =
803 packet->send_buf_index;
804 if (packet->send_buf_index == NETVSC_INVALID_INDEX)
805 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_size = 0;
806 else
807 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_size =
808 packet->total_data_buflen;
Hank Janssenfceaf242009-07-13 15:34:54 -0700809
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800810 req_id = (ulong)skb;
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000811
Haiyang Zhangc3582a22014-12-01 13:28:39 -0800812 if (out_channel->rescind)
813 return -ENODEV;
814
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700815 /*
816 * It is possible that once we successfully place this packet
817 * on the ringbuffer, we may stop the queue. In that case, we want
818 * to notify the host independent of the xmit_more flag. We don't
819 * need to be precise here; in the worst case we may signal the host
820 * unnecessarily.
821 */
822 if (ring_avail < (RING_AVAIL_PERCENT_LOWATER + 1))
KY Srinivasanbde79be2015-12-01 16:43:17 -0800823 xmit_more = false;
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700824
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800825 if (packet->page_buf_cnt) {
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800826 pgbuf = packet->cp_partial ? (*pb) +
827 packet->rmsg_pgcnt : (*pb);
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700828 ret = vmbus_sendpacket_pagebuffer_ctl(out_channel,
829 pgbuf,
830 packet->page_buf_cnt,
831 &nvmsg,
832 sizeof(struct nvsp_message),
833 req_id,
834 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED,
KY Srinivasanbde79be2015-12-01 16:43:17 -0800835 !xmit_more);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700836 } else {
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700837 ret = vmbus_sendpacket_ctl(out_channel, &nvmsg,
838 sizeof(struct nvsp_message),
839 req_id,
840 VM_PKT_DATA_INBAND,
841 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED,
KY Srinivasanbde79be2015-12-01 16:43:17 -0800842 !xmit_more);
Hank Janssenfceaf242009-07-13 15:34:54 -0700843 }
844
Haiyang Zhang1d068252011-12-02 11:56:25 -0800845 if (ret == 0) {
846 atomic_inc(&net_device->num_outstanding_sends);
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700847 atomic_inc(&net_device->queue_sends[q_idx]);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700848
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700849 if (ring_avail < RING_AVAIL_PERCENT_LOWATER) {
850 netif_tx_stop_queue(netdev_get_tx_queue(ndev, q_idx));
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700851
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000852 if (atomic_read(&net_device->
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700853 queue_sends[q_idx]) < 1)
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700854 netif_tx_wake_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700855 ndev, q_idx));
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000856 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800857 } else if (ret == -EAGAIN) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700858 netif_tx_stop_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700859 ndev, q_idx));
860 if (atomic_read(&net_device->queue_sends[q_idx]) < 1) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700861 netif_tx_wake_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700862 ndev, q_idx));
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000863 ret = -ENOSPC;
864 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800865 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700866 netdev_err(ndev, "Unable to send packet %p ret %d\n",
Haiyang Zhang85799a32010-12-10 12:03:54 -0800867 packet, ret);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800868 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700869
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700870 return ret;
871}
872
Haiyang Zhangc85e4922016-01-25 09:49:31 -0800873/* Move packet out of multi send data (msd), and clear msd */
874static inline void move_pkt_msd(struct hv_netvsc_packet **msd_send,
875 struct sk_buff **msd_skb,
876 struct multi_send_data *msdp)
877{
878 *msd_skb = msdp->skb;
879 *msd_send = msdp->pkt;
880 msdp->skb = NULL;
881 msdp->pkt = NULL;
882 msdp->count = 0;
883}
884
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700885int netvsc_send(struct hv_device *device,
KY Srinivasan24476762015-12-01 16:43:06 -0800886 struct hv_netvsc_packet *packet,
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800887 struct rndis_message *rndis_msg,
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800888 struct hv_page_buffer **pb,
889 struct sk_buff *skb)
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700890{
891 struct netvsc_device *net_device;
892 int ret = 0, m_ret = 0;
893 struct vmbus_channel *out_channel;
894 u16 q_idx = packet->q_idx;
895 u32 pktlen = packet->total_data_buflen, msd_len = 0;
896 unsigned int section_index = NETVSC_INVALID_INDEX;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700897 struct multi_send_data *msdp;
898 struct hv_netvsc_packet *msd_send = NULL, *cur_send = NULL;
Haiyang Zhangc85e4922016-01-25 09:49:31 -0800899 struct sk_buff *msd_skb = NULL;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700900 bool try_batch;
KY Srinivasanbde79be2015-12-01 16:43:17 -0800901 bool xmit_more = (skb != NULL) ? skb->xmit_more : false;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700902
903 net_device = get_outbound_net_device(device);
904 if (!net_device)
905 return -ENODEV;
906
Vitaly Kuznetsov8b9fbe12015-12-01 16:43:11 -0800907 out_channel = net_device->chn_table[q_idx];
KY Srinivasan25b85ee2015-12-01 16:43:05 -0800908
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700909 packet->send_buf_index = NETVSC_INVALID_INDEX;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700910 packet->cp_partial = false;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700911
Haiyang Zhangcf8190e2015-12-10 12:19:35 -0800912 /* Send control message directly without accessing msd (Multi-Send
913 * Data) field which may be changed during data packet processing.
914 */
915 if (!skb) {
916 cur_send = packet;
917 goto send_now;
918 }
919
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700920 msdp = &net_device->msd[q_idx];
921
922 /* batch packets in send buffer if possible */
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700923 if (msdp->pkt)
924 msd_len = msdp->pkt->total_data_buflen;
925
KY Srinivasan694a9fb2015-12-01 16:43:15 -0800926 try_batch = (skb != NULL) && msd_len > 0 && msdp->count <
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700927 net_device->max_pkt;
928
929 if (try_batch && msd_len + pktlen + net_device->pkt_align <
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700930 net_device->send_section_size) {
931 section_index = msdp->pkt->send_buf_index;
932
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700933 } else if (try_batch && msd_len + packet->rmsg_size <
934 net_device->send_section_size) {
935 section_index = msdp->pkt->send_buf_index;
936 packet->cp_partial = true;
937
KY Srinivasan694a9fb2015-12-01 16:43:15 -0800938 } else if ((skb != NULL) && pktlen + net_device->pkt_align <
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700939 net_device->send_section_size) {
940 section_index = netvsc_get_next_send_section(net_device);
941 if (section_index != NETVSC_INVALID_INDEX) {
Haiyang Zhangc85e4922016-01-25 09:49:31 -0800942 move_pkt_msd(&msd_send, &msd_skb, msdp);
943 msd_len = 0;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700944 }
945 }
946
947 if (section_index != NETVSC_INVALID_INDEX) {
948 netvsc_copy_to_send_buf(net_device,
949 section_index, msd_len,
KY Srinivasan694a9fb2015-12-01 16:43:15 -0800950 packet, rndis_msg, pb, skb);
KY Srinivasanb08cc792015-03-29 21:08:42 -0700951
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700952 packet->send_buf_index = section_index;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700953
954 if (packet->cp_partial) {
955 packet->page_buf_cnt -= packet->rmsg_pgcnt;
956 packet->total_data_buflen = msd_len + packet->rmsg_size;
957 } else {
958 packet->page_buf_cnt = 0;
959 packet->total_data_buflen += msd_len;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700960 }
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700961
Haiyang Zhangc85e4922016-01-25 09:49:31 -0800962 if (msdp->skb)
963 dev_kfree_skb_any(msdp->skb);
Haiyang Zhangee90b812015-04-06 15:22:54 -0700964
KY Srinivasanbde79be2015-12-01 16:43:17 -0800965 if (xmit_more && !packet->cp_partial) {
Haiyang Zhangc85e4922016-01-25 09:49:31 -0800966 msdp->skb = skb;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700967 msdp->pkt = packet;
968 msdp->count++;
969 } else {
970 cur_send = packet;
Haiyang Zhangc85e4922016-01-25 09:49:31 -0800971 msdp->skb = NULL;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700972 msdp->pkt = NULL;
973 msdp->count = 0;
974 }
975 } else {
Haiyang Zhangc85e4922016-01-25 09:49:31 -0800976 move_pkt_msd(&msd_send, &msd_skb, msdp);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700977 cur_send = packet;
978 }
979
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700980 if (msd_send) {
Haiyang Zhangc85e4922016-01-25 09:49:31 -0800981 m_ret = netvsc_send_pkt(msd_send, net_device, NULL, msd_skb);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700982
983 if (m_ret != 0) {
984 netvsc_free_send_slot(net_device,
985 msd_send->send_buf_index);
Haiyang Zhangc85e4922016-01-25 09:49:31 -0800986 dev_kfree_skb_any(msd_skb);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700987 }
988 }
989
Haiyang Zhangcf8190e2015-12-10 12:19:35 -0800990send_now:
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700991 if (cur_send)
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800992 ret = netvsc_send_pkt(cur_send, net_device, pb, skb);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700993
Jerry Snitselaar7aab5152015-05-04 10:57:16 -0700994 if (ret != 0 && section_index != NETVSC_INVALID_INDEX)
995 netvsc_free_send_slot(net_device, section_index);
Haiyang Zhangd953ca42015-01-29 12:34:49 -0800996
Hank Janssenfceaf242009-07-13 15:34:54 -0700997 return ret;
998}
999
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -07001000static void netvsc_send_recv_completion(struct hv_device *device,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001001 struct vmbus_channel *channel,
KY Srinivasan97c17232014-02-16 16:38:44 -08001002 struct netvsc_device *net_device,
Haiyang Zhang63f69212012-10-02 05:30:23 +00001003 u64 transaction_id, u32 status)
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -07001004{
1005 struct nvsp_message recvcompMessage;
1006 int retries = 0;
1007 int ret;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001008 struct net_device *ndev;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001009
1010 ndev = net_device->ndev;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -07001011
1012 recvcompMessage.hdr.msg_type =
1013 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE;
1014
Haiyang Zhang63f69212012-10-02 05:30:23 +00001015 recvcompMessage.msg.v1_msg.send_rndis_pkt_complete.status = status;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -07001016
1017retry_send_cmplt:
1018 /* Send the completion */
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001019 ret = vmbus_sendpacket(channel, &recvcompMessage,
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -07001020 sizeof(struct nvsp_message), transaction_id,
1021 VM_PKT_COMP, 0);
1022 if (ret == 0) {
1023 /* success */
1024 /* no-op */
K. Y. Srinivasand2598f02011-08-25 09:48:58 -07001025 } else if (ret == -EAGAIN) {
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -07001026 /* no more room...wait a bit and attempt to retry 3 times */
1027 retries++;
Haiyang Zhangd9871152011-09-01 12:19:41 -07001028 netdev_err(ndev, "unable to send receive completion pkt"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001029 " (tid %llx)...retrying %d\n", transaction_id, retries);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -07001030
1031 if (retries < 4) {
1032 udelay(100);
1033 goto retry_send_cmplt;
1034 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001035 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001036 "completion pkt (tid %llx)...give up retrying\n",
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -07001037 transaction_id);
1038 }
1039 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001040 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001041 "completion pkt - %llx\n", transaction_id);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -07001042 }
1043}
1044
KY Srinivasan97c17232014-02-16 16:38:44 -08001045static void netvsc_receive(struct netvsc_device *net_device,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001046 struct vmbus_channel *channel,
KY Srinivasan97c17232014-02-16 16:38:44 -08001047 struct hv_device *device,
1048 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -07001049{
Haiyang Zhang85799a32010-12-10 12:03:54 -08001050 struct vmtransfer_page_packet_header *vmxferpage_packet;
1051 struct nvsp_message *nvsp_packet;
Haiyang Zhang4baab262014-04-21 14:54:43 -07001052 struct hv_netvsc_packet nv_pkt;
1053 struct hv_netvsc_packet *netvsc_packet = &nv_pkt;
1054 u32 status = NVSP_STAT_SUCCESS;
Haiyang Zhang45326342011-12-15 13:45:15 -08001055 int i;
1056 int count = 0;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001057 struct net_device *ndev;
KY Srinivasanc4b20c62015-12-01 16:43:07 -08001058 void *data;
K. Y. Srinivasan779b4d12011-04-26 09:20:22 -07001059
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001060 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -07001061
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001062 /*
1063 * All inbound packets other than send completion should be xfer page
1064 * packet
1065 */
Haiyang Zhang415f2282011-01-26 12:12:13 -08001066 if (packet->type != VM_PKT_DATA_USING_XFER_PAGES) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001067 netdev_err(ndev, "Unknown packet type received - %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -08001068 packet->type);
Hank Janssenfceaf242009-07-13 15:34:54 -07001069 return;
1070 }
1071
Haiyang Zhang85799a32010-12-10 12:03:54 -08001072 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -08001073 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -07001074
Bill Pemberton454f18a2009-07-27 16:47:24 -04001075 /* Make sure this is a valid nvsp packet */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -08001076 if (nvsp_packet->hdr.msg_type !=
1077 NVSP_MSG1_TYPE_SEND_RNDIS_PKT) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001078 netdev_err(ndev, "Unknown nvsp packet type received-"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001079 " %d\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -07001080 return;
1081 }
1082
Haiyang Zhang85799a32010-12-10 12:03:54 -08001083 vmxferpage_packet = (struct vmtransfer_page_packet_header *)packet;
Hank Janssenfceaf242009-07-13 15:34:54 -07001084
Haiyang Zhang415f2282011-01-26 12:12:13 -08001085 if (vmxferpage_packet->xfer_pageset_id != NETVSC_RECEIVE_BUFFER_ID) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001086 netdev_err(ndev, "Invalid xfer page set id - "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001087 "expecting %x got %x\n", NETVSC_RECEIVE_BUFFER_ID,
Haiyang Zhang415f2282011-01-26 12:12:13 -08001088 vmxferpage_packet->xfer_pageset_id);
Hank Janssenfceaf242009-07-13 15:34:54 -07001089 return;
1090 }
1091
Haiyang Zhang4baab262014-04-21 14:54:43 -07001092 count = vmxferpage_packet->range_cnt;
Hank Janssenfceaf242009-07-13 15:34:54 -07001093
Bill Pemberton454f18a2009-07-27 16:47:24 -04001094 /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
Haiyang Zhang4baab262014-04-21 14:54:43 -07001095 for (i = 0; i < count; i++) {
Bill Pemberton454f18a2009-07-27 16:47:24 -04001096 /* Initialize the netvsc packet */
KY Srinivasanc4b20c62015-12-01 16:43:07 -08001097 data = (void *)((unsigned long)net_device->
Haiyang Zhang45326342011-12-15 13:45:15 -08001098 recv_buf + vmxferpage_packet->ranges[i].byte_offset);
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -08001099 netvsc_packet->total_data_buflen =
Haiyang Zhang415f2282011-01-26 12:12:13 -08001100 vmxferpage_packet->ranges[i].byte_count;
Hank Janssenfceaf242009-07-13 15:34:54 -07001101
Bill Pemberton454f18a2009-07-27 16:47:24 -04001102 /* Pass it to the upper layer */
KY Srinivasan10082f92015-12-01 16:43:18 -08001103 status = rndis_filter_receive(device, netvsc_packet, &data,
1104 channel);
Hank Janssenfceaf242009-07-13 15:34:54 -07001105
Hank Janssenfceaf242009-07-13 15:34:54 -07001106 }
1107
Haiyang Zhang4baab262014-04-21 14:54:43 -07001108 netvsc_send_recv_completion(device, channel, net_device,
1109 vmxferpage_packet->d.trans_id, status);
Hank Janssenfceaf242009-07-13 15:34:54 -07001110}
1111
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001112
1113static void netvsc_send_table(struct hv_device *hdev,
Haiyang Zhang71790a22015-07-24 10:08:40 -07001114 struct nvsp_message *nvmsg)
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001115{
1116 struct netvsc_device *nvscdev;
1117 struct net_device *ndev;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001118 int i;
1119 u32 count, *tab;
1120
1121 nvscdev = get_outbound_net_device(hdev);
1122 if (!nvscdev)
1123 return;
1124 ndev = nvscdev->ndev;
1125
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001126 count = nvmsg->msg.v5_msg.send_table.count;
1127 if (count != VRSS_SEND_TAB_SIZE) {
1128 netdev_err(ndev, "Received wrong send-table size:%u\n", count);
1129 return;
1130 }
1131
1132 tab = (u32 *)((unsigned long)&nvmsg->msg.v5_msg.send_table +
1133 nvmsg->msg.v5_msg.send_table.offset);
1134
1135 for (i = 0; i < count; i++)
1136 nvscdev->send_table[i] = tab[i];
1137}
1138
Haiyang Zhang71790a22015-07-24 10:08:40 -07001139static void netvsc_send_vf(struct netvsc_device *nvdev,
1140 struct nvsp_message *nvmsg)
1141{
1142 nvdev->vf_alloc = nvmsg->msg.v4_msg.vf_assoc.allocated;
1143 nvdev->vf_serial = nvmsg->msg.v4_msg.vf_assoc.serial;
1144}
1145
1146static inline void netvsc_receive_inband(struct hv_device *hdev,
1147 struct netvsc_device *nvdev,
1148 struct nvsp_message *nvmsg)
1149{
1150 switch (nvmsg->hdr.msg_type) {
1151 case NVSP_MSG5_TYPE_SEND_INDIRECTION_TABLE:
1152 netvsc_send_table(hdev, nvmsg);
1153 break;
1154
1155 case NVSP_MSG4_TYPE_SEND_VF_ASSOCIATION:
1156 netvsc_send_vf(nvdev, nvmsg);
1157 break;
1158 }
1159}
1160
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001161void netvsc_channel_cb(void *context)
Hank Janssenfceaf242009-07-13 15:34:54 -07001162{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001163 int ret;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001164 struct vmbus_channel *channel = (struct vmbus_channel *)context;
1165 struct hv_device *device;
Haiyang Zhang85799a32010-12-10 12:03:54 -08001166 struct netvsc_device *net_device;
1167 u32 bytes_recvd;
1168 u64 request_id;
Greg Kroah-Hartman8dc0a062009-08-27 16:02:36 -07001169 struct vmpacket_descriptor *desc;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -04001170 unsigned char *buffer;
1171 int bufferlen = NETVSC_PACKET_SIZE;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001172 struct net_device *ndev;
Haiyang Zhang71790a22015-07-24 10:08:40 -07001173 struct nvsp_message *nvmsg;
Hank Janssenfceaf242009-07-13 15:34:54 -07001174
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001175 if (channel->primary_channel != NULL)
1176 device = channel->primary_channel->device_obj;
1177 else
1178 device = channel->device_obj;
1179
Haiyang Zhang5a71ae32010-12-10 12:03:55 -08001180 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001181 if (!net_device)
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001182 return;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001183 ndev = net_device->ndev;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001184 buffer = get_per_channel_state(channel);
Hank Janssenfceaf242009-07-13 15:34:54 -07001185
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001186 do {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001187 ret = vmbus_recvpacket_raw(channel, buffer, bufferlen,
Haiyang Zhang85799a32010-12-10 12:03:54 -08001188 &bytes_recvd, &request_id);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001189 if (ret == 0) {
Haiyang Zhang85799a32010-12-10 12:03:54 -08001190 if (bytes_recvd > 0) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001191 desc = (struct vmpacket_descriptor *)buffer;
Haiyang Zhang71790a22015-07-24 10:08:40 -07001192 nvmsg = (struct nvsp_message *)((unsigned long)
1193 desc + (desc->offset8 << 3));
Haiyang Zhang415f2282011-01-26 12:12:13 -08001194 switch (desc->type) {
1195 case VM_PKT_COMP:
KY Srinivasan97c17232014-02-16 16:38:44 -08001196 netvsc_send_completion(net_device,
KY Srinivasan25b85ee2015-12-01 16:43:05 -08001197 channel,
KY Srinivasan97c17232014-02-16 16:38:44 -08001198 device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001199 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001200
Haiyang Zhang415f2282011-01-26 12:12:13 -08001201 case VM_PKT_DATA_USING_XFER_PAGES:
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001202 netvsc_receive(net_device, channel,
1203 device, desc);
1204 break;
1205
1206 case VM_PKT_DATA_INBAND:
Haiyang Zhang71790a22015-07-24 10:08:40 -07001207 netvsc_receive_inband(device,
1208 net_device,
1209 nvmsg);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001210 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001211
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001212 default:
Haiyang Zhangd9871152011-09-01 12:19:41 -07001213 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001214 "unhandled packet type %d, "
1215 "tid %llx len %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -08001216 desc->type, request_id,
Haiyang Zhang85799a32010-12-10 12:03:54 -08001217 bytes_recvd);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001218 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001219 }
1220
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001221 } else {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001222 /*
1223 * We are done for this pass.
1224 */
Hank Janssenfceaf242009-07-13 15:34:54 -07001225 break;
1226 }
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001227
K. Y. Srinivasan3d5cad92011-08-25 09:48:59 -07001228 } else if (ret == -ENOBUFS) {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001229 if (bufferlen > NETVSC_PACKET_SIZE)
1230 kfree(buffer);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001231 /* Handle large packet */
Haiyang Zhang85799a32010-12-10 12:03:54 -08001232 buffer = kmalloc(bytes_recvd, GFP_ATOMIC);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001233 if (buffer == NULL) {
Bill Pemberton454f18a2009-07-27 16:47:24 -04001234 /* Try again next time around */
Haiyang Zhangd9871152011-09-01 12:19:41 -07001235 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001236 "unable to allocate buffer of size "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001237 "(%d)!!\n", bytes_recvd);
Hank Janssenfceaf242009-07-13 15:34:54 -07001238 break;
1239 }
1240
Haiyang Zhang85799a32010-12-10 12:03:54 -08001241 bufferlen = bytes_recvd;
Hank Janssenfceaf242009-07-13 15:34:54 -07001242 }
1243 } while (1);
1244
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001245 if (bufferlen > NETVSC_PACKET_SIZE)
1246 kfree(buffer);
Hank Janssenfceaf242009-07-13 15:34:54 -07001247 return;
1248}
Haiyang Zhangaf24ce42011-04-21 12:30:40 -07001249
1250/*
Haiyang Zhangb637e022011-04-21 12:30:45 -07001251 * netvsc_device_add - Callback when the device belonging to this
1252 * driver is added
1253 */
K. Y. Srinivasan7bd23a42011-05-10 07:54:53 -07001254int netvsc_device_add(struct hv_device *device, void *additional_info)
Haiyang Zhangb637e022011-04-21 12:30:45 -07001255{
1256 int ret = 0;
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001257 int ring_size =
1258 ((struct netvsc_device_info *)additional_info)->ring_size;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001259 struct netvsc_device *net_device;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001260 struct net_device *ndev;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001261
1262 net_device = alloc_net_device(device);
Dan Carpenterb1c84922014-09-04 14:11:23 +03001263 if (!net_device)
1264 return -ENOMEM;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001265
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001266 net_device->ring_size = ring_size;
1267
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001268 /*
1269 * Coming into this function, struct net_device * is
1270 * registered as the driver private data.
1271 * In alloc_net_device(), we register struct netvsc_device *
1272 * as the driver private data and stash away struct net_device *
1273 * in struct netvsc_device *.
1274 */
1275 ndev = net_device->ndev;
1276
Simon Xiao3f300ff2015-04-28 01:05:17 -07001277 /* Add netvsc_device context to netvsc_device */
1278 net_device->nd_ctx = netdev_priv(ndev);
1279
Haiyang Zhangb637e022011-04-21 12:30:45 -07001280 /* Initialize the NetVSC channel extension */
K. Y. Srinivasan35abb212011-05-10 07:55:41 -07001281 init_completion(&net_device->channel_init_wait);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001282
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001283 set_per_channel_state(device->channel, net_device->cb_buffer);
1284
Haiyang Zhangb637e022011-04-21 12:30:45 -07001285 /* Open the channel */
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001286 ret = vmbus_open(device->channel, ring_size * PAGE_SIZE,
1287 ring_size * PAGE_SIZE, NULL, 0,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001288 netvsc_channel_cb, device->channel);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001289
1290 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001291 netdev_err(ndev, "unable to open channel: %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001292 goto cleanup;
1293 }
1294
1295 /* Channel is opened */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001296 pr_info("hv_netvsc channel opened successfully\n");
Haiyang Zhangb637e022011-04-21 12:30:45 -07001297
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001298 net_device->chn_table[0] = device->channel;
1299
Haiyang Zhangb637e022011-04-21 12:30:45 -07001300 /* Connect with the NetVsp */
1301 ret = netvsc_connect_vsp(device);
1302 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001303 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001304 "unable to connect to NetVSP - %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001305 goto close;
1306 }
1307
1308 return ret;
1309
1310close:
1311 /* Now, we can close the channel safely */
1312 vmbus_close(device->channel);
1313
1314cleanup:
Haiyang Zhangf90251c2014-08-15 19:18:19 +00001315 free_netvsc_device(net_device);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001316
1317 return ret;
1318}