blob: 2a9ccc4d9e3c6b464f919609752b1303e78ec5ca [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/*
Stephen Hemminger30d1de02016-08-23 12:17:48 -070037 * An API to support in-place processing of incoming VMBUS packets.
38 */
39#define VMBUS_PKT_TRAILER 8
40
41static struct vmpacket_descriptor *
42get_next_pkt_raw(struct vmbus_channel *channel)
43{
44 struct hv_ring_buffer_info *ring_info = &channel->inbound;
45 u32 read_loc = ring_info->priv_read_index;
46 void *ring_buffer = hv_get_ring_buffer(ring_info);
47 struct vmpacket_descriptor *cur_desc;
48 u32 packetlen;
49 u32 dsize = ring_info->ring_datasize;
50 u32 delta = read_loc - ring_info->ring_buffer->read_index;
51 u32 bytes_avail_toread = (hv_get_bytes_to_read(ring_info) - delta);
52
53 if (bytes_avail_toread < sizeof(struct vmpacket_descriptor))
54 return NULL;
55
56 if ((read_loc + sizeof(*cur_desc)) > dsize)
57 return NULL;
58
59 cur_desc = ring_buffer + read_loc;
60 packetlen = cur_desc->len8 << 3;
61
62 /*
63 * If the packet under consideration is wrapping around,
64 * return failure.
65 */
66 if ((read_loc + packetlen + VMBUS_PKT_TRAILER) > (dsize - 1))
67 return NULL;
68
69 return cur_desc;
70}
71
72/*
73 * A helper function to step through packets "in-place"
74 * This API is to be called after each successful call
75 * get_next_pkt_raw().
76 */
77static void put_pkt_raw(struct vmbus_channel *channel,
78 struct vmpacket_descriptor *desc)
79{
80 struct hv_ring_buffer_info *ring_info = &channel->inbound;
81 u32 read_loc = ring_info->priv_read_index;
82 u32 packetlen = desc->len8 << 3;
83 u32 dsize = ring_info->ring_datasize;
84
85 BUG_ON((read_loc + packetlen + VMBUS_PKT_TRAILER) > dsize);
86
87 /*
88 * Include the packet trailer.
89 */
90 ring_info->priv_read_index += packetlen + VMBUS_PKT_TRAILER;
91}
92
93/*
94 * This call commits the read index and potentially signals the host.
95 * Here is the pattern for using the "in-place" consumption APIs:
96 *
97 * while (get_next_pkt_raw() {
98 * process the packet "in-place";
99 * put_pkt_raw();
100 * }
101 * if (packets processed in place)
102 * commit_rd_index();
103 */
104static void commit_rd_index(struct vmbus_channel *channel)
105{
106 struct hv_ring_buffer_info *ring_info = &channel->inbound;
107 /*
108 * Make sure all reads are done before we update the read index since
109 * the writer may start writing to the read area once the read index
110 * is updated.
111 */
112 virt_rmb();
113 ring_info->ring_buffer->read_index = ring_info->priv_read_index;
114
115 if (hv_need_to_signal_on_read(ring_info))
116 vmbus_set_event(channel);
117}
118
119/*
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700120 * Switch the data path from the synthetic interface to the VF
121 * interface.
122 */
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +0200123void netvsc_switch_datapath(struct net_device *ndev, bool vf)
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700124{
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +0200125 struct net_device_context *net_device_ctx = netdev_priv(ndev);
126 struct hv_device *dev = net_device_ctx->device_ctx;
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +0200127 struct netvsc_device *nv_dev = net_device_ctx->nvdev;
128 struct nvsp_message *init_pkt = &nv_dev->channel_init_pkt;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700129
130 memset(init_pkt, 0, sizeof(struct nvsp_message));
131 init_pkt->hdr.msg_type = NVSP_MSG4_TYPE_SWITCH_DATA_PATH;
132 if (vf)
133 init_pkt->msg.v4_msg.active_dp.active_datapath =
134 NVSP_DATAPATH_VF;
135 else
136 init_pkt->msg.v4_msg.active_dp.active_datapath =
137 NVSP_DATAPATH_SYNTHETIC;
138
139 vmbus_sendpacket(dev->channel, init_pkt,
140 sizeof(struct nvsp_message),
141 (unsigned long)init_pkt,
142 VM_PKT_DATA_INBAND, 0);
143}
144
Vitaly Kuznetsov88098832016-05-13 13:55:25 +0200145static struct netvsc_device *alloc_net_device(void)
Hank Janssenfceaf242009-07-13 15:34:54 -0700146{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800147 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -0700148
Haiyang Zhang85799a32010-12-10 12:03:54 -0800149 net_device = kzalloc(sizeof(struct netvsc_device), GFP_KERNEL);
150 if (!net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700151 return NULL;
152
Haiyang Zhangf90251c2014-08-15 19:18:19 +0000153 net_device->cb_buffer = kzalloc(NETVSC_PACKET_SIZE, GFP_KERNEL);
154 if (!net_device->cb_buffer) {
155 kfree(net_device);
156 return NULL;
157 }
158
Haiyang Zhangc0b558e2016-08-19 14:47:09 -0700159 net_device->mrc[0].buf = vzalloc(NETVSC_RECVSLOT_MAX *
160 sizeof(struct recv_comp_data));
161
Haiyang Zhangdc5cd892012-06-04 06:42:38 +0000162 init_waitqueue_head(&net_device->wait_drain);
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -0700163 net_device->destroy = false;
KY Srinivasan84bf9ce2016-04-14 16:31:54 -0700164 atomic_set(&net_device->open_cnt, 0);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700165 net_device->max_pkt = RNDIS_MAX_PKT_DEFAULT;
166 net_device->pkt_align = RNDIS_PKT_ALIGN_DEFAULT;
Stephen Hemmingerfd612602016-08-23 12:17:51 -0700167 init_completion(&net_device->channel_init_wait);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700168
Haiyang Zhang85799a32010-12-10 12:03:54 -0800169 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -0700170}
171
Haiyang Zhangf90251c2014-08-15 19:18:19 +0000172static void free_netvsc_device(struct netvsc_device *nvdev)
173{
Haiyang Zhangc0b558e2016-08-19 14:47:09 -0700174 int i;
175
176 for (i = 0; i < VRSS_CHANNEL_MAX; i++)
177 vfree(nvdev->mrc[i].buf);
178
Haiyang Zhangf90251c2014-08-15 19:18:19 +0000179 kfree(nvdev->cb_buffer);
180 kfree(nvdev);
181}
182
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800183static struct netvsc_device *get_outbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700184{
Vitaly Kuznetsov26254662016-06-03 17:50:59 +0200185 struct netvsc_device *net_device = hv_device_to_netvsc_device(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700186
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700187 if (net_device && net_device->destroy)
Haiyang Zhang85799a32010-12-10 12:03:54 -0800188 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -0700189
Haiyang Zhang85799a32010-12-10 12:03:54 -0800190 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -0700191}
192
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800193static struct netvsc_device *get_inbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700194{
Vitaly Kuznetsov26254662016-06-03 17:50:59 +0200195 struct netvsc_device *net_device = hv_device_to_netvsc_device(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700196
197 if (!net_device)
198 goto get_in_err;
199
200 if (net_device->destroy &&
Haiyang Zhangc0b558e2016-08-19 14:47:09 -0700201 atomic_read(&net_device->num_outstanding_sends) == 0 &&
202 atomic_read(&net_device->num_outstanding_recvs) == 0)
Haiyang Zhang85799a32010-12-10 12:03:54 -0800203 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -0700204
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700205get_in_err:
Haiyang Zhang85799a32010-12-10 12:03:54 -0800206 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -0700207}
208
Stephen Hemminger7a2a0a82016-08-23 12:17:54 -0700209static void netvsc_destroy_buf(struct hv_device *device)
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700210{
211 struct nvsp_message *revoke_packet;
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +0200212 struct net_device *ndev = hv_get_drvdata(device);
Vitaly Kuznetsov26254662016-06-03 17:50:59 +0200213 struct netvsc_device *net_device = net_device_to_netvsc_device(ndev);
Stephen Hemminger7a2a0a82016-08-23 12:17:54 -0700214 int ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700215
216 /*
217 * If we got a section count, it means we received a
218 * SendReceiveBufferComplete msg (ie sent
219 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
220 * to send a revoke msg here
221 */
222 if (net_device->recv_section_cnt) {
223 /* Send the revoke receive buffer */
224 revoke_packet = &net_device->revoke_packet;
225 memset(revoke_packet, 0, sizeof(struct nvsp_message));
226
227 revoke_packet->hdr.msg_type =
228 NVSP_MSG1_TYPE_REVOKE_RECV_BUF;
229 revoke_packet->msg.v1_msg.
230 revoke_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
231
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +0200232 ret = vmbus_sendpacket(device->channel,
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700233 revoke_packet,
234 sizeof(struct nvsp_message),
235 (unsigned long)revoke_packet,
236 VM_PKT_DATA_INBAND, 0);
237 /*
238 * If we failed here, we might as well return and
239 * have a leak rather than continue and a bugchk
240 */
241 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700242 netdev_err(ndev, "unable to send "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700243 "revoke receive buffer to netvsp\n");
Stephen Hemminger7a2a0a82016-08-23 12:17:54 -0700244 return;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700245 }
246 }
247
248 /* Teardown the gpadl on the vsp end */
249 if (net_device->recv_buf_gpadl_handle) {
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +0200250 ret = vmbus_teardown_gpadl(device->channel,
251 net_device->recv_buf_gpadl_handle);
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700252
253 /* If we failed here, we might as well return and have a leak
254 * rather than continue and a bugchk
255 */
256 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700257 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700258 "unable to teardown receive buffer's gpadl\n");
Stephen Hemminger7a2a0a82016-08-23 12:17:54 -0700259 return;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700260 }
261 net_device->recv_buf_gpadl_handle = 0;
262 }
263
264 if (net_device->recv_buf) {
265 /* Free up the receive buffer */
Haiyang Zhangb679ef72014-01-27 15:03:42 -0800266 vfree(net_device->recv_buf);
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700267 net_device->recv_buf = NULL;
268 }
269
270 if (net_device->recv_section) {
271 net_device->recv_section_cnt = 0;
272 kfree(net_device->recv_section);
273 net_device->recv_section = NULL;
274 }
275
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700276 /* Deal with the send buffer we may have setup.
277 * If we got a send section size, it means we received a
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800278 * NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE msg (ie sent
279 * NVSP_MSG1_TYPE_SEND_SEND_BUF msg) therefore, we need
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700280 * to send a revoke msg here
281 */
282 if (net_device->send_section_size) {
283 /* Send the revoke receive buffer */
284 revoke_packet = &net_device->revoke_packet;
285 memset(revoke_packet, 0, sizeof(struct nvsp_message));
286
287 revoke_packet->hdr.msg_type =
288 NVSP_MSG1_TYPE_REVOKE_SEND_BUF;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800289 revoke_packet->msg.v1_msg.revoke_send_buf.id =
290 NETVSC_SEND_BUFFER_ID;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700291
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +0200292 ret = vmbus_sendpacket(device->channel,
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700293 revoke_packet,
294 sizeof(struct nvsp_message),
295 (unsigned long)revoke_packet,
296 VM_PKT_DATA_INBAND, 0);
297 /* If we failed here, we might as well return and
298 * have a leak rather than continue and a bugchk
299 */
300 if (ret != 0) {
301 netdev_err(ndev, "unable to send "
302 "revoke send buffer to netvsp\n");
Stephen Hemminger7a2a0a82016-08-23 12:17:54 -0700303 return;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700304 }
305 }
306 /* Teardown the gpadl on the vsp end */
307 if (net_device->send_buf_gpadl_handle) {
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +0200308 ret = vmbus_teardown_gpadl(device->channel,
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700309 net_device->send_buf_gpadl_handle);
310
311 /* If we failed here, we might as well return and have a leak
312 * rather than continue and a bugchk
313 */
314 if (ret != 0) {
315 netdev_err(ndev,
316 "unable to teardown send buffer's gpadl\n");
Stephen Hemminger7a2a0a82016-08-23 12:17:54 -0700317 return;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700318 }
Dave Jones2f184232014-06-16 16:59:02 -0400319 net_device->send_buf_gpadl_handle = 0;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700320 }
321 if (net_device->send_buf) {
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800322 /* Free up the send buffer */
KY Srinivasan06b47aa2014-08-02 10:42:02 -0700323 vfree(net_device->send_buf);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700324 net_device->send_buf = NULL;
325 }
326 kfree(net_device->send_section_map);
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700327}
328
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700329static int netvsc_init_buf(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700330{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700331 int ret = 0;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800332 struct netvsc_device *net_device;
333 struct nvsp_message *init_packet;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700334 struct net_device *ndev;
K. Y. Srinivasan0a726c22015-05-28 17:08:06 -0700335 int node;
Hank Janssenfceaf242009-07-13 15:34:54 -0700336
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800337 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700338 if (!net_device)
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700339 return -ENODEV;
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +0200340 ndev = hv_get_drvdata(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700341
K. Y. Srinivasan0a726c22015-05-28 17:08:06 -0700342 node = cpu_to_node(device->channel->target_cpu);
343 net_device->recv_buf = vzalloc_node(net_device->recv_buf_size, node);
344 if (!net_device->recv_buf)
345 net_device->recv_buf = vzalloc(net_device->recv_buf_size);
346
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800347 if (!net_device->recv_buf) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700348 netdev_err(ndev, "unable to allocate receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700349 "buffer of size %d\n", net_device->recv_buf_size);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700350 ret = -ENOMEM;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800351 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700352 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700353
Bill Pemberton454f18a2009-07-27 16:47:24 -0400354 /*
355 * Establish the gpadl handle for this buffer on this
356 * channel. Note: This call uses the vmbus connection rather
357 * than the channel to establish the gpadl handle.
358 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800359 ret = vmbus_establish_gpadl(device->channel, net_device->recv_buf,
360 net_device->recv_buf_size,
361 &net_device->recv_buf_gpadl_handle);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700362 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700363 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700364 "unable to establish receive buffer's gpadl\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800365 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700366 }
367
Bill Pemberton454f18a2009-07-27 16:47:24 -0400368 /* Notify the NetVsp of the gpadl handle */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800369 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700370
Haiyang Zhang85799a32010-12-10 12:03:54 -0800371 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700372
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800373 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_RECV_BUF;
374 init_packet->msg.v1_msg.send_recv_buf.
375 gpadl_handle = net_device->recv_buf_gpadl_handle;
376 init_packet->msg.v1_msg.
377 send_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
Hank Janssenfceaf242009-07-13 15:34:54 -0700378
Bill Pemberton454f18a2009-07-27 16:47:24 -0400379 /* Send the gpadl notification request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800380 ret = vmbus_sendpacket(device->channel, init_packet,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700381 sizeof(struct nvsp_message),
Haiyang Zhang85799a32010-12-10 12:03:54 -0800382 (unsigned long)init_packet,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800383 VM_PKT_DATA_INBAND,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700384 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700385 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700386 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700387 "unable to send receive buffer's gpadl to netvsp\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800388 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700389 }
390
Vitaly Kuznetsov53628552016-06-09 12:44:03 +0200391 wait_for_completion(&net_device->channel_init_wait);
Hank Janssenfceaf242009-07-13 15:34:54 -0700392
Bill Pemberton454f18a2009-07-27 16:47:24 -0400393 /* Check the response */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800394 if (init_packet->msg.v1_msg.
395 send_recv_buf_complete.status != NVSP_STAT_SUCCESS) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700396 netdev_err(ndev, "Unable to complete receive buffer "
Haiyang Zhang8bff33a2011-09-01 12:19:48 -0700397 "initialization with NetVsp - status %d\n",
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800398 init_packet->msg.v1_msg.
399 send_recv_buf_complete.status);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700400 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800401 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700402 }
403
Bill Pemberton454f18a2009-07-27 16:47:24 -0400404 /* Parse the response */
Hank Janssenfceaf242009-07-13 15:34:54 -0700405
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800406 net_device->recv_section_cnt = init_packet->msg.
407 v1_msg.send_recv_buf_complete.num_sections;
Hank Janssenfceaf242009-07-13 15:34:54 -0700408
Haiyang Zhangc1813202011-11-30 07:19:07 -0800409 net_device->recv_section = kmemdup(
410 init_packet->msg.v1_msg.send_recv_buf_complete.sections,
411 net_device->recv_section_cnt *
412 sizeof(struct nvsp_1_receive_buffer_section),
413 GFP_KERNEL);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800414 if (net_device->recv_section == NULL) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700415 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800416 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700417 }
418
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700419 /*
420 * For 1st release, there should only be 1 section that represents the
421 * entire receive buffer
422 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800423 if (net_device->recv_section_cnt != 1 ||
424 net_device->recv_section->offset != 0) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700425 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800426 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700427 }
428
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700429 /* Now setup the send buffer.
430 */
K. Y. Srinivasan5defde52015-05-28 17:08:07 -0700431 net_device->send_buf = vzalloc_node(net_device->send_buf_size, node);
432 if (!net_device->send_buf)
433 net_device->send_buf = vzalloc(net_device->send_buf_size);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700434 if (!net_device->send_buf) {
435 netdev_err(ndev, "unable to allocate send "
436 "buffer of size %d\n", net_device->send_buf_size);
437 ret = -ENOMEM;
438 goto cleanup;
439 }
440
441 /* Establish the gpadl handle for this buffer on this
442 * channel. Note: This call uses the vmbus connection rather
443 * than the channel to establish the gpadl handle.
444 */
445 ret = vmbus_establish_gpadl(device->channel, net_device->send_buf,
446 net_device->send_buf_size,
447 &net_device->send_buf_gpadl_handle);
448 if (ret != 0) {
449 netdev_err(ndev,
450 "unable to establish send buffer's gpadl\n");
451 goto cleanup;
452 }
453
454 /* Notify the NetVsp of the gpadl handle */
455 init_packet = &net_device->channel_init_pkt;
456 memset(init_packet, 0, sizeof(struct nvsp_message));
457 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_SEND_BUF;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800458 init_packet->msg.v1_msg.send_send_buf.gpadl_handle =
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700459 net_device->send_buf_gpadl_handle;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800460 init_packet->msg.v1_msg.send_send_buf.id = NETVSC_SEND_BUFFER_ID;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700461
462 /* Send the gpadl notification request */
463 ret = vmbus_sendpacket(device->channel, init_packet,
464 sizeof(struct nvsp_message),
465 (unsigned long)init_packet,
466 VM_PKT_DATA_INBAND,
467 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
468 if (ret != 0) {
469 netdev_err(ndev,
470 "unable to send send buffer's gpadl to netvsp\n");
471 goto cleanup;
472 }
473
Vitaly Kuznetsov53628552016-06-09 12:44:03 +0200474 wait_for_completion(&net_device->channel_init_wait);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700475
476 /* Check the response */
477 if (init_packet->msg.v1_msg.
478 send_send_buf_complete.status != NVSP_STAT_SUCCESS) {
479 netdev_err(ndev, "Unable to complete send buffer "
480 "initialization with NetVsp - status %d\n",
481 init_packet->msg.v1_msg.
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800482 send_send_buf_complete.status);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700483 ret = -EINVAL;
484 goto cleanup;
485 }
486
487 /* Parse the response */
488 net_device->send_section_size = init_packet->msg.
489 v1_msg.send_send_buf_complete.section_size;
490
491 /* Section count is simply the size divided by the section size.
492 */
493 net_device->send_section_cnt =
Stephen Hemminger796cc882016-08-23 12:17:47 -0700494 net_device->send_buf_size / net_device->send_section_size;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700495
496 dev_info(&device->device, "Send section size: %d, Section count:%d\n",
497 net_device->send_section_size, net_device->send_section_cnt);
498
499 /* Setup state for managing the send buffer. */
500 net_device->map_words = DIV_ROUND_UP(net_device->send_section_cnt,
501 BITS_PER_LONG);
502
Stephen Hemmingere53a9c22016-08-23 12:17:46 -0700503 net_device->send_section_map = kcalloc(net_device->map_words,
504 sizeof(ulong), GFP_KERNEL);
Wei Yongjundd1d3f82014-07-23 09:00:35 +0800505 if (net_device->send_section_map == NULL) {
506 ret = -ENOMEM;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700507 goto cleanup;
Wei Yongjundd1d3f82014-07-23 09:00:35 +0800508 }
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700509
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800510 goto exit;
Hank Janssenfceaf242009-07-13 15:34:54 -0700511
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800512cleanup:
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +0200513 netvsc_destroy_buf(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700514
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800515exit:
Hank Janssenfceaf242009-07-13 15:34:54 -0700516 return ret;
517}
518
Haiyang Zhangf157e782011-12-15 13:45:16 -0800519/* Negotiate NVSP protocol version */
520static int negotiate_nvsp_ver(struct hv_device *device,
521 struct netvsc_device *net_device,
522 struct nvsp_message *init_packet,
523 u32 nvsp_ver)
Hank Janssenfceaf242009-07-13 15:34:54 -0700524{
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +0200525 struct net_device *ndev = hv_get_drvdata(device);
Nicholas Mc Guire7390fe92015-01-25 15:46:31 +0100526 int ret;
Haiyang Zhangf157e782011-12-15 13:45:16 -0800527
528 memset(init_packet, 0, sizeof(struct nvsp_message));
529 init_packet->hdr.msg_type = NVSP_MSG_TYPE_INIT;
530 init_packet->msg.init_msg.init.min_protocol_ver = nvsp_ver;
531 init_packet->msg.init_msg.init.max_protocol_ver = nvsp_ver;
532
533 /* Send the init request */
534 ret = vmbus_sendpacket(device->channel, init_packet,
535 sizeof(struct nvsp_message),
536 (unsigned long)init_packet,
537 VM_PKT_DATA_INBAND,
538 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
539
540 if (ret != 0)
541 return ret;
542
Vitaly Kuznetsov53628552016-06-09 12:44:03 +0200543 wait_for_completion(&net_device->channel_init_wait);
Haiyang Zhangf157e782011-12-15 13:45:16 -0800544
545 if (init_packet->msg.init_msg.init_complete.status !=
546 NVSP_STAT_SUCCESS)
547 return -EINVAL;
548
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800549 if (nvsp_ver == NVSP_PROTOCOL_VERSION_1)
Haiyang Zhangf157e782011-12-15 13:45:16 -0800550 return 0;
551
Haiyang Zhang71790a22015-07-24 10:08:40 -0700552 /* NVSPv2 or later: Send NDIS config */
Haiyang Zhangf157e782011-12-15 13:45:16 -0800553 memset(init_packet, 0, sizeof(struct nvsp_message));
554 init_packet->hdr.msg_type = NVSP_MSG2_TYPE_SEND_NDIS_CONFIG;
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +0200555 init_packet->msg.v2_msg.send_ndis_config.mtu = ndev->mtu + ETH_HLEN;
Haiyang Zhang1f5f3a72012-03-12 10:20:50 +0000556 init_packet->msg.v2_msg.send_ndis_config.capability.ieee8021q = 1;
Haiyang Zhangf157e782011-12-15 13:45:16 -0800557
Haiyang Zhang7f5d5af2016-08-04 10:42:15 -0700558 if (nvsp_ver >= NVSP_PROTOCOL_VERSION_5) {
Haiyang Zhang71790a22015-07-24 10:08:40 -0700559 init_packet->msg.v2_msg.send_ndis_config.capability.sriov = 1;
560
Haiyang Zhang7f5d5af2016-08-04 10:42:15 -0700561 /* Teaming bit is needed to receive link speed updates */
562 init_packet->msg.v2_msg.send_ndis_config.capability.teaming = 1;
563 }
564
Haiyang Zhangf157e782011-12-15 13:45:16 -0800565 ret = vmbus_sendpacket(device->channel, init_packet,
566 sizeof(struct nvsp_message),
567 (unsigned long)init_packet,
568 VM_PKT_DATA_INBAND, 0);
569
570 return ret;
571}
572
573static int netvsc_connect_vsp(struct hv_device *device)
574{
575 int ret;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800576 struct netvsc_device *net_device;
577 struct nvsp_message *init_packet;
578 int ndis_version;
Stephen Hemmingere5a78fa2016-08-23 12:17:49 -0700579 const u32 ver_list[] = {
580 NVSP_PROTOCOL_VERSION_1, NVSP_PROTOCOL_VERSION_2,
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800581 NVSP_PROTOCOL_VERSION_4, NVSP_PROTOCOL_VERSION_5 };
Stephen Hemmingere5a78fa2016-08-23 12:17:49 -0700582 int i;
Hank Janssenfceaf242009-07-13 15:34:54 -0700583
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800584 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700585 if (!net_device)
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700586 return -ENODEV;
Hank Janssenfceaf242009-07-13 15:34:54 -0700587
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800588 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700589
Haiyang Zhangf157e782011-12-15 13:45:16 -0800590 /* Negotiate the latest NVSP protocol supported */
Stephen Hemmingere5a78fa2016-08-23 12:17:49 -0700591 for (i = ARRAY_SIZE(ver_list) - 1; i >= 0; i--)
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800592 if (negotiate_nvsp_ver(device, net_device, init_packet,
593 ver_list[i]) == 0) {
594 net_device->nvsp_version = ver_list[i];
595 break;
596 }
597
598 if (i < 0) {
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700599 ret = -EPROTO;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800600 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700601 }
Haiyang Zhangf157e782011-12-15 13:45:16 -0800602
603 pr_debug("Negotiated NVSP version:%x\n", net_device->nvsp_version);
604
Bill Pemberton454f18a2009-07-27 16:47:24 -0400605 /* Send the ndis version */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800606 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700607
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800608 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_4)
KY Srinivasan1f73db42014-04-09 15:00:46 -0700609 ndis_version = 0x00060001;
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800610 else
611 ndis_version = 0x0006001e;
Hank Janssenfceaf242009-07-13 15:34:54 -0700612
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800613 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_NDIS_VER;
614 init_packet->msg.v1_msg.
615 send_ndis_ver.ndis_major_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800616 (ndis_version & 0xFFFF0000) >> 16;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800617 init_packet->msg.v1_msg.
618 send_ndis_ver.ndis_minor_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800619 ndis_version & 0xFFFF;
Hank Janssenfceaf242009-07-13 15:34:54 -0700620
Bill Pemberton454f18a2009-07-27 16:47:24 -0400621 /* Send the init request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800622 ret = vmbus_sendpacket(device->channel, init_packet,
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800623 sizeof(struct nvsp_message),
624 (unsigned long)init_packet,
625 VM_PKT_DATA_INBAND, 0);
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700626 if (ret != 0)
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800627 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700628
Bill Pemberton454f18a2009-07-27 16:47:24 -0400629 /* Post the big receive buffer to NetVSP */
Haiyang Zhang99d30162014-03-09 16:10:59 -0700630 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_2)
631 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE_LEGACY;
632 else
633 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700634 net_device->send_buf_size = NETVSC_SEND_BUFFER_SIZE;
Haiyang Zhang99d30162014-03-09 16:10:59 -0700635
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700636 ret = netvsc_init_buf(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700637
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800638cleanup:
Hank Janssenfceaf242009-07-13 15:34:54 -0700639 return ret;
640}
641
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +0200642static void netvsc_disconnect_vsp(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700643{
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +0200644 netvsc_destroy_buf(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700645}
646
Hank Janssen3e189512010-03-04 22:11:00 +0000647/*
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800648 * netvsc_device_remove - Callback when the root bus device is removed
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700649 */
Stephen Hemmingere08f3ea2016-08-23 12:17:50 -0700650void netvsc_device_remove(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700651{
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +0200652 struct net_device *ndev = hv_get_drvdata(device);
653 struct net_device_context *net_device_ctx = netdev_priv(ndev);
654 struct netvsc_device *net_device = net_device_ctx->nvdev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700655
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +0200656 netvsc_disconnect_vsp(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700657
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +0200658 net_device_ctx->nvdev = NULL;
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700659
K. Y. Srinivasan86c921a2011-09-13 10:59:54 -0700660 /*
661 * At this point, no one should be accessing net_device
662 * except in here
663 */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700664 dev_notice(&device->device, "net device safe to remove\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700665
Bill Pemberton454f18a2009-07-27 16:47:24 -0400666 /* Now, we can close the channel safely */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800667 vmbus_close(device->channel);
Hank Janssenfceaf242009-07-13 15:34:54 -0700668
Bill Pemberton454f18a2009-07-27 16:47:24 -0400669 /* Release all resources */
Markus Elfringaa99c472014-11-25 22:33:45 +0100670 vfree(net_device->sub_cb_buf);
Haiyang Zhangf90251c2014-08-15 19:18:19 +0000671 free_netvsc_device(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700672}
673
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000674#define RING_AVAIL_PERCENT_HIWATER 20
675#define RING_AVAIL_PERCENT_LOWATER 10
676
677/*
678 * Get the percentage of available bytes to write in the ring.
679 * The return value is in range from 0 to 100.
680 */
681static inline u32 hv_ringbuf_avail_percent(
682 struct hv_ring_buffer_info *ring_info)
683{
684 u32 avail_read, avail_write;
685
686 hv_get_ringbuffer_availbytes(ring_info, &avail_read, &avail_write);
687
688 return avail_write * 100 / ring_info->ring_datasize;
689}
690
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700691static inline void netvsc_free_send_slot(struct netvsc_device *net_device,
692 u32 index)
693{
694 sync_change_bit(index, net_device->send_section_map);
695}
696
Stephen Hemmingerbc304dd2016-08-23 12:17:53 -0700697static void netvsc_send_tx_complete(struct netvsc_device *net_device,
698 struct vmbus_channel *incoming_channel,
699 struct hv_device *device,
700 struct vmpacket_descriptor *packet)
701{
702 struct sk_buff *skb = (struct sk_buff *)(unsigned long)packet->trans_id;
703 struct net_device *ndev = hv_get_drvdata(device);
704 struct net_device_context *net_device_ctx = netdev_priv(ndev);
705 struct vmbus_channel *channel = device->channel;
706 int num_outstanding_sends;
707 u16 q_idx = 0;
708 int queue_sends;
709
710 /* Notify the layer above us */
711 if (likely(skb)) {
712 struct hv_netvsc_packet *nvsc_packet
713 = (struct hv_netvsc_packet *)skb->cb;
714 u32 send_index = nvsc_packet->send_buf_index;
715
716 if (send_index != NETVSC_INVALID_INDEX)
717 netvsc_free_send_slot(net_device, send_index);
718 q_idx = nvsc_packet->q_idx;
719 channel = incoming_channel;
720
721 dev_kfree_skb_any(skb);
722 }
723
724 num_outstanding_sends =
725 atomic_dec_return(&net_device->num_outstanding_sends);
726 queue_sends = atomic_dec_return(&net_device->queue_sends[q_idx]);
727
728 if (net_device->destroy && num_outstanding_sends == 0)
729 wake_up(&net_device->wait_drain);
730
731 if (netif_tx_queue_stopped(netdev_get_tx_queue(ndev, q_idx)) &&
732 !net_device_ctx->start_remove &&
733 (hv_ringbuf_avail_percent(&channel->outbound) > RING_AVAIL_PERCENT_HIWATER ||
734 queue_sends < 1))
735 netif_tx_wake_queue(netdev_get_tx_queue(ndev, q_idx));
736}
737
KY Srinivasan97c17232014-02-16 16:38:44 -0800738static void netvsc_send_completion(struct netvsc_device *net_device,
KY Srinivasan25b85ee2015-12-01 16:43:05 -0800739 struct vmbus_channel *incoming_channel,
KY Srinivasan97c17232014-02-16 16:38:44 -0800740 struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800741 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700742{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800743 struct nvsp_message *nvsp_packet;
Vitaly Kuznetsov3d541ac2016-05-13 13:55:22 +0200744 struct net_device *ndev = hv_get_drvdata(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700745
Haiyang Zhang85799a32010-12-10 12:03:54 -0800746 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Stephen Hemmingerbc304dd2016-08-23 12:17:53 -0700747 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -0700748
Stephen Hemmingerbc304dd2016-08-23 12:17:53 -0700749 switch (nvsp_packet->hdr.msg_type) {
750 case NVSP_MSG_TYPE_INIT_COMPLETE:
751 case NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE:
752 case NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE:
753 case NVSP_MSG5_TYPE_SUBCHANNEL:
Bill Pemberton454f18a2009-07-27 16:47:24 -0400754 /* Copy the response back */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800755 memcpy(&net_device->channel_init_pkt, nvsp_packet,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700756 sizeof(struct nvsp_message));
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700757 complete(&net_device->channel_init_wait);
Stephen Hemmingerbc304dd2016-08-23 12:17:53 -0700758 break;
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000759
Stephen Hemmingerbc304dd2016-08-23 12:17:53 -0700760 case NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE:
761 netvsc_send_tx_complete(net_device, incoming_channel,
762 device, packet);
763 break;
Hank Janssenfceaf242009-07-13 15:34:54 -0700764
Stephen Hemmingerbc304dd2016-08-23 12:17:53 -0700765 default:
766 netdev_err(ndev,
767 "Unknown send completion type %d received!!\n",
768 nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700769 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700770}
771
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700772static u32 netvsc_get_next_send_section(struct netvsc_device *net_device)
773{
774 unsigned long index;
775 u32 max_words = net_device->map_words;
776 unsigned long *map_addr = (unsigned long *)net_device->send_section_map;
777 u32 section_cnt = net_device->send_section_cnt;
778 int ret_val = NETVSC_INVALID_INDEX;
779 int i;
780 int prev_val;
781
782 for (i = 0; i < max_words; i++) {
783 if (!~(map_addr[i]))
784 continue;
785 index = ffz(map_addr[i]);
786 prev_val = sync_test_and_set_bit(index, &map_addr[i]);
787 if (prev_val)
788 continue;
789 if ((index + (i * BITS_PER_LONG)) >= section_cnt)
790 break;
791 ret_val = (index + (i * BITS_PER_LONG));
792 break;
793 }
794 return ret_val;
795}
796
Lad, Prabhakarda19fcd2015-02-05 15:06:33 +0000797static u32 netvsc_copy_to_send_buf(struct netvsc_device *net_device,
798 unsigned int section_index,
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700799 u32 pend_size,
KY Srinivasan24476762015-12-01 16:43:06 -0800800 struct hv_netvsc_packet *packet,
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800801 struct rndis_message *rndis_msg,
KY Srinivasan694a9fb2015-12-01 16:43:15 -0800802 struct hv_page_buffer **pb,
803 struct sk_buff *skb)
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700804{
805 char *start = net_device->send_buf;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700806 char *dest = start + (section_index * net_device->send_section_size)
807 + pend_size;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700808 int i;
KY Srinivasan694a9fb2015-12-01 16:43:15 -0800809 bool is_data_pkt = (skb != NULL) ? true : false;
KY Srinivasanbde79be2015-12-01 16:43:17 -0800810 bool xmit_more = (skb != NULL) ? skb->xmit_more : false;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700811 u32 msg_size = 0;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700812 u32 padding = 0;
813 u32 remain = packet->total_data_buflen % net_device->pkt_align;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700814 u32 page_count = packet->cp_partial ? packet->rmsg_pgcnt :
815 packet->page_buf_cnt;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700816
817 /* Add padding */
KY Srinivasanbde79be2015-12-01 16:43:17 -0800818 if (is_data_pkt && xmit_more && remain &&
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700819 !packet->cp_partial) {
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700820 padding = net_device->pkt_align - remain;
KY Srinivasan24476762015-12-01 16:43:06 -0800821 rndis_msg->msg_len += padding;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700822 packet->total_data_buflen += padding;
823 }
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700824
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700825 for (i = 0; i < page_count; i++) {
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800826 char *src = phys_to_virt((*pb)[i].pfn << PAGE_SHIFT);
827 u32 offset = (*pb)[i].offset;
828 u32 len = (*pb)[i].len;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700829
830 memcpy(dest, (src + offset), len);
831 msg_size += len;
832 dest += len;
833 }
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700834
835 if (padding) {
836 memset(dest, 0, padding);
837 msg_size += padding;
838 }
839
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700840 return msg_size;
841}
842
Stephen Hemminger30d1de02016-08-23 12:17:48 -0700843static int netvsc_send_pkt(
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +0200844 struct hv_device *device,
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700845 struct hv_netvsc_packet *packet,
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800846 struct netvsc_device *net_device,
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800847 struct hv_page_buffer **pb,
848 struct sk_buff *skb)
Hank Janssenfceaf242009-07-13 15:34:54 -0700849{
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700850 struct nvsp_message nvmsg;
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700851 u16 q_idx = packet->q_idx;
Vitaly Kuznetsov8b9fbe12015-12-01 16:43:11 -0800852 struct vmbus_channel *out_channel = net_device->chn_table[q_idx];
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +0200853 struct net_device *ndev = hv_get_drvdata(device);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700854 u64 req_id;
855 int ret;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700856 struct hv_page_buffer *pgbuf;
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700857 u32 ring_avail = hv_ringbuf_avail_percent(&out_channel->outbound);
KY Srinivasanbde79be2015-12-01 16:43:17 -0800858 bool xmit_more = (skb != NULL) ? skb->xmit_more : false;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700859
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700860 nvmsg.hdr.msg_type = NVSP_MSG1_TYPE_SEND_RNDIS_PKT;
KY Srinivasan694a9fb2015-12-01 16:43:15 -0800861 if (skb != NULL) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700862 /* 0 is RMC_DATA; */
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700863 nvmsg.msg.v1_msg.send_rndis_pkt.channel_type = 0;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700864 } else {
865 /* 1 is RMC_CONTROL; */
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700866 nvmsg.msg.v1_msg.send_rndis_pkt.channel_type = 1;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700867 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700868
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700869 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_index =
870 packet->send_buf_index;
871 if (packet->send_buf_index == NETVSC_INVALID_INDEX)
872 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_size = 0;
873 else
874 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_size =
875 packet->total_data_buflen;
Hank Janssenfceaf242009-07-13 15:34:54 -0700876
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800877 req_id = (ulong)skb;
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000878
Haiyang Zhangc3582a22014-12-01 13:28:39 -0800879 if (out_channel->rescind)
880 return -ENODEV;
881
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700882 /*
883 * It is possible that once we successfully place this packet
884 * on the ringbuffer, we may stop the queue. In that case, we want
885 * to notify the host independent of the xmit_more flag. We don't
886 * need to be precise here; in the worst case we may signal the host
887 * unnecessarily.
888 */
889 if (ring_avail < (RING_AVAIL_PERCENT_LOWATER + 1))
KY Srinivasanbde79be2015-12-01 16:43:17 -0800890 xmit_more = false;
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700891
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800892 if (packet->page_buf_cnt) {
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800893 pgbuf = packet->cp_partial ? (*pb) +
894 packet->rmsg_pgcnt : (*pb);
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700895 ret = vmbus_sendpacket_pagebuffer_ctl(out_channel,
896 pgbuf,
897 packet->page_buf_cnt,
898 &nvmsg,
899 sizeof(struct nvsp_message),
900 req_id,
901 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED,
KY Srinivasanbde79be2015-12-01 16:43:17 -0800902 !xmit_more);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700903 } else {
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700904 ret = vmbus_sendpacket_ctl(out_channel, &nvmsg,
905 sizeof(struct nvsp_message),
906 req_id,
907 VM_PKT_DATA_INBAND,
908 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED,
KY Srinivasanbde79be2015-12-01 16:43:17 -0800909 !xmit_more);
Hank Janssenfceaf242009-07-13 15:34:54 -0700910 }
911
Haiyang Zhang1d068252011-12-02 11:56:25 -0800912 if (ret == 0) {
913 atomic_inc(&net_device->num_outstanding_sends);
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700914 atomic_inc(&net_device->queue_sends[q_idx]);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700915
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700916 if (ring_avail < RING_AVAIL_PERCENT_LOWATER) {
917 netif_tx_stop_queue(netdev_get_tx_queue(ndev, q_idx));
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700918
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000919 if (atomic_read(&net_device->
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700920 queue_sends[q_idx]) < 1)
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700921 netif_tx_wake_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700922 ndev, q_idx));
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000923 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800924 } else if (ret == -EAGAIN) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700925 netif_tx_stop_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700926 ndev, q_idx));
927 if (atomic_read(&net_device->queue_sends[q_idx]) < 1) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700928 netif_tx_wake_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700929 ndev, q_idx));
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000930 ret = -ENOSPC;
931 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800932 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700933 netdev_err(ndev, "Unable to send packet %p ret %d\n",
Haiyang Zhang85799a32010-12-10 12:03:54 -0800934 packet, ret);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800935 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700936
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700937 return ret;
938}
939
Haiyang Zhangc85e4922016-01-25 09:49:31 -0800940/* Move packet out of multi send data (msd), and clear msd */
941static inline void move_pkt_msd(struct hv_netvsc_packet **msd_send,
942 struct sk_buff **msd_skb,
943 struct multi_send_data *msdp)
944{
945 *msd_skb = msdp->skb;
946 *msd_send = msdp->pkt;
947 msdp->skb = NULL;
948 msdp->pkt = NULL;
949 msdp->count = 0;
950}
951
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700952int netvsc_send(struct hv_device *device,
KY Srinivasan24476762015-12-01 16:43:06 -0800953 struct hv_netvsc_packet *packet,
KY Srinivasana9f2e2d2015-12-01 16:43:13 -0800954 struct rndis_message *rndis_msg,
KY Srinivasan3a3d9a02015-12-01 16:43:14 -0800955 struct hv_page_buffer **pb,
956 struct sk_buff *skb)
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700957{
958 struct netvsc_device *net_device;
Stephen Hemminger6c4c1372016-08-23 12:17:55 -0700959 int ret = 0;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700960 struct vmbus_channel *out_channel;
961 u16 q_idx = packet->q_idx;
962 u32 pktlen = packet->total_data_buflen, msd_len = 0;
963 unsigned int section_index = NETVSC_INVALID_INDEX;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700964 struct multi_send_data *msdp;
965 struct hv_netvsc_packet *msd_send = NULL, *cur_send = NULL;
Haiyang Zhangc85e4922016-01-25 09:49:31 -0800966 struct sk_buff *msd_skb = NULL;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700967 bool try_batch;
KY Srinivasanbde79be2015-12-01 16:43:17 -0800968 bool xmit_more = (skb != NULL) ? skb->xmit_more : false;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700969
970 net_device = get_outbound_net_device(device);
971 if (!net_device)
972 return -ENODEV;
973
Vitaly Kuznetsov8b9fbe12015-12-01 16:43:11 -0800974 out_channel = net_device->chn_table[q_idx];
KY Srinivasan25b85ee2015-12-01 16:43:05 -0800975
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700976 packet->send_buf_index = NETVSC_INVALID_INDEX;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700977 packet->cp_partial = false;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700978
Haiyang Zhangcf8190e2015-12-10 12:19:35 -0800979 /* Send control message directly without accessing msd (Multi-Send
980 * Data) field which may be changed during data packet processing.
981 */
982 if (!skb) {
983 cur_send = packet;
984 goto send_now;
985 }
986
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700987 msdp = &net_device->msd[q_idx];
988
989 /* batch packets in send buffer if possible */
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700990 if (msdp->pkt)
991 msd_len = msdp->pkt->total_data_buflen;
992
KY Srinivasan694a9fb2015-12-01 16:43:15 -0800993 try_batch = (skb != NULL) && msd_len > 0 && msdp->count <
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700994 net_device->max_pkt;
995
996 if (try_batch && msd_len + pktlen + net_device->pkt_align <
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700997 net_device->send_section_size) {
998 section_index = msdp->pkt->send_buf_index;
999
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -07001000 } else if (try_batch && msd_len + packet->rmsg_size <
1001 net_device->send_section_size) {
1002 section_index = msdp->pkt->send_buf_index;
1003 packet->cp_partial = true;
1004
KY Srinivasan694a9fb2015-12-01 16:43:15 -08001005 } else if ((skb != NULL) && pktlen + net_device->pkt_align <
Haiyang Zhang7c3877f2015-03-26 09:03:37 -07001006 net_device->send_section_size) {
1007 section_index = netvsc_get_next_send_section(net_device);
1008 if (section_index != NETVSC_INVALID_INDEX) {
Haiyang Zhangc85e4922016-01-25 09:49:31 -08001009 move_pkt_msd(&msd_send, &msd_skb, msdp);
1010 msd_len = 0;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -07001011 }
1012 }
1013
1014 if (section_index != NETVSC_INVALID_INDEX) {
1015 netvsc_copy_to_send_buf(net_device,
1016 section_index, msd_len,
KY Srinivasan694a9fb2015-12-01 16:43:15 -08001017 packet, rndis_msg, pb, skb);
KY Srinivasanb08cc792015-03-29 21:08:42 -07001018
Haiyang Zhang7c3877f2015-03-26 09:03:37 -07001019 packet->send_buf_index = section_index;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -07001020
1021 if (packet->cp_partial) {
1022 packet->page_buf_cnt -= packet->rmsg_pgcnt;
1023 packet->total_data_buflen = msd_len + packet->rmsg_size;
1024 } else {
1025 packet->page_buf_cnt = 0;
1026 packet->total_data_buflen += msd_len;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -07001027 }
Haiyang Zhang7c3877f2015-03-26 09:03:37 -07001028
Haiyang Zhangc85e4922016-01-25 09:49:31 -08001029 if (msdp->skb)
1030 dev_kfree_skb_any(msdp->skb);
Haiyang Zhangee90b812015-04-06 15:22:54 -07001031
KY Srinivasanbde79be2015-12-01 16:43:17 -08001032 if (xmit_more && !packet->cp_partial) {
Haiyang Zhangc85e4922016-01-25 09:49:31 -08001033 msdp->skb = skb;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -07001034 msdp->pkt = packet;
1035 msdp->count++;
1036 } else {
1037 cur_send = packet;
Haiyang Zhangc85e4922016-01-25 09:49:31 -08001038 msdp->skb = NULL;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -07001039 msdp->pkt = NULL;
1040 msdp->count = 0;
1041 }
1042 } else {
Haiyang Zhangc85e4922016-01-25 09:49:31 -08001043 move_pkt_msd(&msd_send, &msd_skb, msdp);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -07001044 cur_send = packet;
1045 }
1046
Haiyang Zhang7c3877f2015-03-26 09:03:37 -07001047 if (msd_send) {
Stephen Hemminger6c4c1372016-08-23 12:17:55 -07001048 int m_ret = netvsc_send_pkt(device, msd_send, net_device,
1049 NULL, msd_skb);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -07001050
1051 if (m_ret != 0) {
1052 netvsc_free_send_slot(net_device,
1053 msd_send->send_buf_index);
Haiyang Zhangc85e4922016-01-25 09:49:31 -08001054 dev_kfree_skb_any(msd_skb);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -07001055 }
1056 }
1057
Haiyang Zhangcf8190e2015-12-10 12:19:35 -08001058send_now:
Haiyang Zhang7c3877f2015-03-26 09:03:37 -07001059 if (cur_send)
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02001060 ret = netvsc_send_pkt(device, cur_send, net_device, pb, skb);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -07001061
Jerry Snitselaar7aab5152015-05-04 10:57:16 -07001062 if (ret != 0 && section_index != NETVSC_INVALID_INDEX)
1063 netvsc_free_send_slot(net_device, section_index);
Haiyang Zhangd953ca42015-01-29 12:34:49 -08001064
Hank Janssenfceaf242009-07-13 15:34:54 -07001065 return ret;
1066}
1067
Haiyang Zhangc0b558e2016-08-19 14:47:09 -07001068static int netvsc_send_recv_completion(struct vmbus_channel *channel,
1069 u64 transaction_id, u32 status)
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -07001070{
1071 struct nvsp_message recvcompMessage;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -07001072 int ret;
1073
1074 recvcompMessage.hdr.msg_type =
1075 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE;
1076
Haiyang Zhang63f69212012-10-02 05:30:23 +00001077 recvcompMessage.msg.v1_msg.send_rndis_pkt_complete.status = status;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -07001078
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -07001079 /* Send the completion */
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001080 ret = vmbus_sendpacket(channel, &recvcompMessage,
Haiyang Zhangc0b558e2016-08-19 14:47:09 -07001081 sizeof(struct nvsp_message_header) + sizeof(u32),
1082 transaction_id, VM_PKT_COMP, 0);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -07001083
Haiyang Zhangc0b558e2016-08-19 14:47:09 -07001084 return ret;
1085}
1086
1087static inline void count_recv_comp_slot(struct netvsc_device *nvdev, u16 q_idx,
1088 u32 *filled, u32 *avail)
1089{
1090 u32 first = nvdev->mrc[q_idx].first;
1091 u32 next = nvdev->mrc[q_idx].next;
1092
1093 *filled = (first > next) ? NETVSC_RECVSLOT_MAX - first + next :
1094 next - first;
1095
1096 *avail = NETVSC_RECVSLOT_MAX - *filled - 1;
1097}
1098
1099/* Read the first filled slot, no change to index */
1100static inline struct recv_comp_data *read_recv_comp_slot(struct netvsc_device
1101 *nvdev, u16 q_idx)
1102{
1103 u32 filled, avail;
1104
1105 if (!nvdev->mrc[q_idx].buf)
1106 return NULL;
1107
1108 count_recv_comp_slot(nvdev, q_idx, &filled, &avail);
1109 if (!filled)
1110 return NULL;
1111
1112 return nvdev->mrc[q_idx].buf + nvdev->mrc[q_idx].first *
1113 sizeof(struct recv_comp_data);
1114}
1115
1116/* Put the first filled slot back to available pool */
1117static inline void put_recv_comp_slot(struct netvsc_device *nvdev, u16 q_idx)
1118{
1119 int num_recv;
1120
1121 nvdev->mrc[q_idx].first = (nvdev->mrc[q_idx].first + 1) %
1122 NETVSC_RECVSLOT_MAX;
1123
1124 num_recv = atomic_dec_return(&nvdev->num_outstanding_recvs);
1125
1126 if (nvdev->destroy && num_recv == 0)
1127 wake_up(&nvdev->wait_drain);
1128}
1129
1130/* Check and send pending recv completions */
1131static void netvsc_chk_recv_comp(struct netvsc_device *nvdev,
1132 struct vmbus_channel *channel, u16 q_idx)
1133{
1134 struct recv_comp_data *rcd;
1135 int ret;
1136
1137 while (true) {
1138 rcd = read_recv_comp_slot(nvdev, q_idx);
1139 if (!rcd)
1140 break;
1141
1142 ret = netvsc_send_recv_completion(channel, rcd->tid,
1143 rcd->status);
1144 if (ret)
1145 break;
1146
1147 put_recv_comp_slot(nvdev, q_idx);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -07001148 }
1149}
1150
Haiyang Zhangc0b558e2016-08-19 14:47:09 -07001151#define NETVSC_RCD_WATERMARK 80
1152
1153/* Get next available slot */
1154static inline struct recv_comp_data *get_recv_comp_slot(
1155 struct netvsc_device *nvdev, struct vmbus_channel *channel, u16 q_idx)
1156{
1157 u32 filled, avail, next;
1158 struct recv_comp_data *rcd;
1159
1160 if (!nvdev->recv_section)
1161 return NULL;
1162
1163 if (!nvdev->mrc[q_idx].buf)
1164 return NULL;
1165
1166 if (atomic_read(&nvdev->num_outstanding_recvs) >
1167 nvdev->recv_section->num_sub_allocs * NETVSC_RCD_WATERMARK / 100)
1168 netvsc_chk_recv_comp(nvdev, channel, q_idx);
1169
1170 count_recv_comp_slot(nvdev, q_idx, &filled, &avail);
1171 if (!avail)
1172 return NULL;
1173
1174 next = nvdev->mrc[q_idx].next;
1175 rcd = nvdev->mrc[q_idx].buf + next * sizeof(struct recv_comp_data);
1176 nvdev->mrc[q_idx].next = (next + 1) % NETVSC_RECVSLOT_MAX;
1177
1178 atomic_inc(&nvdev->num_outstanding_recvs);
1179
1180 return rcd;
1181}
1182
KY Srinivasan97c17232014-02-16 16:38:44 -08001183static void netvsc_receive(struct netvsc_device *net_device,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001184 struct vmbus_channel *channel,
KY Srinivasan97c17232014-02-16 16:38:44 -08001185 struct hv_device *device,
1186 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -07001187{
Haiyang Zhang85799a32010-12-10 12:03:54 -08001188 struct vmtransfer_page_packet_header *vmxferpage_packet;
1189 struct nvsp_message *nvsp_packet;
Haiyang Zhang4baab262014-04-21 14:54:43 -07001190 struct hv_netvsc_packet nv_pkt;
1191 struct hv_netvsc_packet *netvsc_packet = &nv_pkt;
1192 u32 status = NVSP_STAT_SUCCESS;
Haiyang Zhang45326342011-12-15 13:45:15 -08001193 int i;
1194 int count = 0;
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02001195 struct net_device *ndev = hv_get_drvdata(device);
KY Srinivasanc4b20c62015-12-01 16:43:07 -08001196 void *data;
Haiyang Zhangc0b558e2016-08-19 14:47:09 -07001197 int ret;
1198 struct recv_comp_data *rcd;
1199 u16 q_idx = channel->offermsg.offer.sub_channel_index;
K. Y. Srinivasan779b4d12011-04-26 09:20:22 -07001200
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001201 /*
1202 * All inbound packets other than send completion should be xfer page
1203 * packet
1204 */
Haiyang Zhang415f2282011-01-26 12:12:13 -08001205 if (packet->type != VM_PKT_DATA_USING_XFER_PAGES) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001206 netdev_err(ndev, "Unknown packet type received - %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -08001207 packet->type);
Hank Janssenfceaf242009-07-13 15:34:54 -07001208 return;
1209 }
1210
Haiyang Zhang85799a32010-12-10 12:03:54 -08001211 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -08001212 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -07001213
Bill Pemberton454f18a2009-07-27 16:47:24 -04001214 /* Make sure this is a valid nvsp packet */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -08001215 if (nvsp_packet->hdr.msg_type !=
1216 NVSP_MSG1_TYPE_SEND_RNDIS_PKT) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001217 netdev_err(ndev, "Unknown nvsp packet type received-"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001218 " %d\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -07001219 return;
1220 }
1221
Haiyang Zhang85799a32010-12-10 12:03:54 -08001222 vmxferpage_packet = (struct vmtransfer_page_packet_header *)packet;
Hank Janssenfceaf242009-07-13 15:34:54 -07001223
Haiyang Zhang415f2282011-01-26 12:12:13 -08001224 if (vmxferpage_packet->xfer_pageset_id != NETVSC_RECEIVE_BUFFER_ID) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001225 netdev_err(ndev, "Invalid xfer page set id - "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001226 "expecting %x got %x\n", NETVSC_RECEIVE_BUFFER_ID,
Haiyang Zhang415f2282011-01-26 12:12:13 -08001227 vmxferpage_packet->xfer_pageset_id);
Hank Janssenfceaf242009-07-13 15:34:54 -07001228 return;
1229 }
1230
Haiyang Zhang4baab262014-04-21 14:54:43 -07001231 count = vmxferpage_packet->range_cnt;
Hank Janssenfceaf242009-07-13 15:34:54 -07001232
Bill Pemberton454f18a2009-07-27 16:47:24 -04001233 /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
Haiyang Zhang4baab262014-04-21 14:54:43 -07001234 for (i = 0; i < count; i++) {
Bill Pemberton454f18a2009-07-27 16:47:24 -04001235 /* Initialize the netvsc packet */
KY Srinivasanc4b20c62015-12-01 16:43:07 -08001236 data = (void *)((unsigned long)net_device->
Haiyang Zhang45326342011-12-15 13:45:15 -08001237 recv_buf + vmxferpage_packet->ranges[i].byte_offset);
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -08001238 netvsc_packet->total_data_buflen =
Haiyang Zhang415f2282011-01-26 12:12:13 -08001239 vmxferpage_packet->ranges[i].byte_count;
Hank Janssenfceaf242009-07-13 15:34:54 -07001240
Bill Pemberton454f18a2009-07-27 16:47:24 -04001241 /* Pass it to the upper layer */
KY Srinivasan10082f92015-12-01 16:43:18 -08001242 status = rndis_filter_receive(device, netvsc_packet, &data,
1243 channel);
Hank Janssenfceaf242009-07-13 15:34:54 -07001244 }
1245
Haiyang Zhangc0b558e2016-08-19 14:47:09 -07001246 if (!net_device->mrc[q_idx].buf) {
1247 ret = netvsc_send_recv_completion(channel,
1248 vmxferpage_packet->d.trans_id,
1249 status);
1250 if (ret)
1251 netdev_err(ndev, "Recv_comp q:%hd, tid:%llx, err:%d\n",
1252 q_idx, vmxferpage_packet->d.trans_id, ret);
1253 return;
1254 }
1255
1256 rcd = get_recv_comp_slot(net_device, channel, q_idx);
1257
1258 if (!rcd) {
1259 netdev_err(ndev, "Recv_comp full buf q:%hd, tid:%llx\n",
1260 q_idx, vmxferpage_packet->d.trans_id);
1261 return;
1262 }
1263
1264 rcd->tid = vmxferpage_packet->d.trans_id;
1265 rcd->status = status;
Hank Janssenfceaf242009-07-13 15:34:54 -07001266}
1267
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001268static void netvsc_send_table(struct hv_device *hdev,
Haiyang Zhang71790a22015-07-24 10:08:40 -07001269 struct nvsp_message *nvmsg)
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001270{
1271 struct netvsc_device *nvscdev;
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02001272 struct net_device *ndev = hv_get_drvdata(hdev);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001273 int i;
1274 u32 count, *tab;
1275
1276 nvscdev = get_outbound_net_device(hdev);
1277 if (!nvscdev)
1278 return;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001279
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001280 count = nvmsg->msg.v5_msg.send_table.count;
1281 if (count != VRSS_SEND_TAB_SIZE) {
1282 netdev_err(ndev, "Received wrong send-table size:%u\n", count);
1283 return;
1284 }
1285
1286 tab = (u32 *)((unsigned long)&nvmsg->msg.v5_msg.send_table +
1287 nvmsg->msg.v5_msg.send_table.offset);
1288
1289 for (i = 0; i < count; i++)
1290 nvscdev->send_table[i] = tab[i];
1291}
1292
Vitaly Kuznetsovf9a7da92016-08-15 17:48:39 +02001293static void netvsc_send_vf(struct net_device_context *net_device_ctx,
Haiyang Zhang71790a22015-07-24 10:08:40 -07001294 struct nvsp_message *nvmsg)
1295{
Vitaly Kuznetsovf9a7da92016-08-15 17:48:39 +02001296 net_device_ctx->vf_alloc = nvmsg->msg.v4_msg.vf_assoc.allocated;
1297 net_device_ctx->vf_serial = nvmsg->msg.v4_msg.vf_assoc.serial;
Haiyang Zhang71790a22015-07-24 10:08:40 -07001298}
1299
1300static inline void netvsc_receive_inband(struct hv_device *hdev,
Vitaly Kuznetsovf9a7da92016-08-15 17:48:39 +02001301 struct net_device_context *net_device_ctx,
1302 struct nvsp_message *nvmsg)
Haiyang Zhang71790a22015-07-24 10:08:40 -07001303{
1304 switch (nvmsg->hdr.msg_type) {
1305 case NVSP_MSG5_TYPE_SEND_INDIRECTION_TABLE:
1306 netvsc_send_table(hdev, nvmsg);
1307 break;
1308
1309 case NVSP_MSG4_TYPE_SEND_VF_ASSOCIATION:
Vitaly Kuznetsovf9a7da92016-08-15 17:48:39 +02001310 netvsc_send_vf(net_device_ctx, nvmsg);
Haiyang Zhang71790a22015-07-24 10:08:40 -07001311 break;
1312 }
1313}
1314
K. Y. Srinivasan99a50bb2016-07-05 16:52:46 -07001315static void netvsc_process_raw_pkt(struct hv_device *device,
1316 struct vmbus_channel *channel,
1317 struct netvsc_device *net_device,
1318 struct net_device *ndev,
1319 u64 request_id,
1320 struct vmpacket_descriptor *desc)
1321{
1322 struct nvsp_message *nvmsg;
Vitaly Kuznetsovf9a7da92016-08-15 17:48:39 +02001323 struct net_device_context *net_device_ctx = netdev_priv(ndev);
K. Y. Srinivasan99a50bb2016-07-05 16:52:46 -07001324
1325 nvmsg = (struct nvsp_message *)((unsigned long)
1326 desc + (desc->offset8 << 3));
1327
1328 switch (desc->type) {
1329 case VM_PKT_COMP:
1330 netvsc_send_completion(net_device, channel, device, desc);
1331 break;
1332
1333 case VM_PKT_DATA_USING_XFER_PAGES:
1334 netvsc_receive(net_device, channel, device, desc);
1335 break;
1336
1337 case VM_PKT_DATA_INBAND:
Vitaly Kuznetsovf9a7da92016-08-15 17:48:39 +02001338 netvsc_receive_inband(device, net_device_ctx, nvmsg);
K. Y. Srinivasan99a50bb2016-07-05 16:52:46 -07001339 break;
1340
1341 default:
1342 netdev_err(ndev, "unhandled packet type %d, tid %llx\n",
1343 desc->type, request_id);
1344 break;
1345 }
1346}
1347
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001348void netvsc_channel_cb(void *context)
Hank Janssenfceaf242009-07-13 15:34:54 -07001349{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001350 int ret;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001351 struct vmbus_channel *channel = (struct vmbus_channel *)context;
Haiyang Zhangc0b558e2016-08-19 14:47:09 -07001352 u16 q_idx = channel->offermsg.offer.sub_channel_index;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001353 struct hv_device *device;
Haiyang Zhang85799a32010-12-10 12:03:54 -08001354 struct netvsc_device *net_device;
1355 u32 bytes_recvd;
1356 u64 request_id;
Greg Kroah-Hartman8dc0a062009-08-27 16:02:36 -07001357 struct vmpacket_descriptor *desc;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -04001358 unsigned char *buffer;
1359 int bufferlen = NETVSC_PACKET_SIZE;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001360 struct net_device *ndev;
K. Y. Srinivasan99a50bb2016-07-05 16:52:46 -07001361 bool need_to_commit = false;
Hank Janssenfceaf242009-07-13 15:34:54 -07001362
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001363 if (channel->primary_channel != NULL)
1364 device = channel->primary_channel->device_obj;
1365 else
1366 device = channel->device_obj;
1367
Haiyang Zhang5a71ae32010-12-10 12:03:55 -08001368 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -07001369 if (!net_device)
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001370 return;
Vitaly Kuznetsov0a1275c2016-05-13 13:55:23 +02001371 ndev = hv_get_drvdata(device);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001372 buffer = get_per_channel_state(channel);
Hank Janssenfceaf242009-07-13 15:34:54 -07001373
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001374 do {
K. Y. Srinivasan99a50bb2016-07-05 16:52:46 -07001375 desc = get_next_pkt_raw(channel);
1376 if (desc != NULL) {
1377 netvsc_process_raw_pkt(device,
1378 channel,
1379 net_device,
1380 ndev,
1381 desc->trans_id,
1382 desc);
1383
1384 put_pkt_raw(channel, desc);
1385 need_to_commit = true;
1386 continue;
1387 }
1388 if (need_to_commit) {
1389 need_to_commit = false;
1390 commit_rd_index(channel);
1391 }
1392
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001393 ret = vmbus_recvpacket_raw(channel, buffer, bufferlen,
Haiyang Zhang85799a32010-12-10 12:03:54 -08001394 &bytes_recvd, &request_id);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001395 if (ret == 0) {
Haiyang Zhang85799a32010-12-10 12:03:54 -08001396 if (bytes_recvd > 0) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001397 desc = (struct vmpacket_descriptor *)buffer;
K. Y. Srinivasan99a50bb2016-07-05 16:52:46 -07001398 netvsc_process_raw_pkt(device,
1399 channel,
1400 net_device,
1401 ndev,
1402 request_id,
1403 desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001404 } else {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001405 /*
1406 * We are done for this pass.
1407 */
Hank Janssenfceaf242009-07-13 15:34:54 -07001408 break;
1409 }
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001410
K. Y. Srinivasan3d5cad92011-08-25 09:48:59 -07001411 } else if (ret == -ENOBUFS) {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001412 if (bufferlen > NETVSC_PACKET_SIZE)
1413 kfree(buffer);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001414 /* Handle large packet */
Haiyang Zhang85799a32010-12-10 12:03:54 -08001415 buffer = kmalloc(bytes_recvd, GFP_ATOMIC);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001416 if (buffer == NULL) {
Bill Pemberton454f18a2009-07-27 16:47:24 -04001417 /* Try again next time around */
Haiyang Zhangd9871152011-09-01 12:19:41 -07001418 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001419 "unable to allocate buffer of size "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001420 "(%d)!!\n", bytes_recvd);
Hank Janssenfceaf242009-07-13 15:34:54 -07001421 break;
1422 }
1423
Haiyang Zhang85799a32010-12-10 12:03:54 -08001424 bufferlen = bytes_recvd;
Hank Janssenfceaf242009-07-13 15:34:54 -07001425 }
1426 } while (1);
1427
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001428 if (bufferlen > NETVSC_PACKET_SIZE)
1429 kfree(buffer);
Haiyang Zhangc0b558e2016-08-19 14:47:09 -07001430
1431 netvsc_chk_recv_comp(net_device, channel, q_idx);
Hank Janssenfceaf242009-07-13 15:34:54 -07001432}
Haiyang Zhangaf24ce42011-04-21 12:30:40 -07001433
1434/*
Haiyang Zhangb637e022011-04-21 12:30:45 -07001435 * netvsc_device_add - Callback when the device belonging to this
1436 * driver is added
1437 */
K. Y. Srinivasan7bd23a42011-05-10 07:54:53 -07001438int netvsc_device_add(struct hv_device *device, void *additional_info)
Haiyang Zhangb637e022011-04-21 12:30:45 -07001439{
Vitaly Kuznetsov88098832016-05-13 13:55:25 +02001440 int i, ret = 0;
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001441 int ring_size =
1442 ((struct netvsc_device_info *)additional_info)->ring_size;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001443 struct netvsc_device *net_device;
Vitaly Kuznetsov88098832016-05-13 13:55:25 +02001444 struct net_device *ndev = hv_get_drvdata(device);
1445 struct net_device_context *net_device_ctx = netdev_priv(ndev);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001446
Vitaly Kuznetsov88098832016-05-13 13:55:25 +02001447 net_device = alloc_net_device();
Dan Carpenterb1c84922014-09-04 14:11:23 +03001448 if (!net_device)
1449 return -ENOMEM;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001450
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001451 net_device->ring_size = ring_size;
1452
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001453 set_per_channel_state(device->channel, net_device->cb_buffer);
1454
Haiyang Zhangb637e022011-04-21 12:30:45 -07001455 /* Open the channel */
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001456 ret = vmbus_open(device->channel, ring_size * PAGE_SIZE,
1457 ring_size * PAGE_SIZE, NULL, 0,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001458 netvsc_channel_cb, device->channel);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001459
1460 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001461 netdev_err(ndev, "unable to open channel: %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001462 goto cleanup;
1463 }
1464
1465 /* Channel is opened */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001466 pr_info("hv_netvsc channel opened successfully\n");
Haiyang Zhangb637e022011-04-21 12:30:45 -07001467
Vitaly Kuznetsov88098832016-05-13 13:55:25 +02001468 /* If we're reopening the device we may have multiple queues, fill the
1469 * chn_table with the default channel to use it before subchannels are
1470 * opened.
1471 */
1472 for (i = 0; i < VRSS_CHANNEL_MAX; i++)
1473 net_device->chn_table[i] = device->channel;
1474
1475 /* Writing nvdev pointer unlocks netvsc_send(), make sure chn_table is
1476 * populated.
1477 */
1478 wmb();
1479
1480 net_device_ctx->nvdev = net_device;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001481
Haiyang Zhangb637e022011-04-21 12:30:45 -07001482 /* Connect with the NetVsp */
1483 ret = netvsc_connect_vsp(device);
1484 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001485 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001486 "unable to connect to NetVSP - %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001487 goto close;
1488 }
1489
1490 return ret;
1491
1492close:
1493 /* Now, we can close the channel safely */
1494 vmbus_close(device->channel);
1495
1496cleanup:
Haiyang Zhangf90251c2014-08-15 19:18:19 +00001497 free_netvsc_device(net_device);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001498
1499 return ret;
1500}