blob: 06de98a056228261a9df982421c4137827dfda01 [file] [log] [blame]
Hank Janssenfceaf242009-07-13 15:34:54 -07001/*
Hank Janssenfceaf242009-07-13 15:34:54 -07002 * Copyright (c) 2009, Microsoft Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
Jeff Kirsheradf8d3f2013-12-06 06:28:47 -080014 * this program; if not, see <http://www.gnu.org/licenses/>.
Hank Janssenfceaf242009-07-13 15:34:54 -070015 *
16 * Authors:
Haiyang Zhangd0e94d12009-11-23 17:00:22 +000017 * Haiyang Zhang <haiyangz@microsoft.com>
Hank Janssenfceaf242009-07-13 15:34:54 -070018 * Hank Janssen <hjanssen@microsoft.com>
Hank Janssenfceaf242009-07-13 15:34:54 -070019 */
Hank Jansseneb335bc2011-03-29 13:58:48 -070020#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
Greg Kroah-Hartman5654e932009-07-14 15:08:20 -070022#include <linux/kernel.h>
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -080023#include <linux/sched.h>
24#include <linux/wait.h>
Greg Kroah-Hartman0ffa63b2009-07-15 11:06:01 -070025#include <linux/mm.h>
Greg Kroah-Hartmanb4362c92009-07-16 11:50:41 -070026#include <linux/delay.h>
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -070027#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Haiyang Zhangd9871152011-09-01 12:19:41 -070029#include <linux/netdevice.h>
Haiyang Zhangf157e782011-12-15 13:45:16 -080030#include <linux/if_ether.h>
KY Srinivasanc25aaf82014-04-30 10:14:31 -070031#include <asm/sync_bitops.h>
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070032
K. Y. Srinivasan5ca72522011-05-12 19:34:37 -070033#include "hyperv_net.h"
Hank Janssenfceaf242009-07-13 15:34:54 -070034
35
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080036static struct netvsc_device *alloc_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070037{
Haiyang Zhang85799a32010-12-10 12:03:54 -080038 struct netvsc_device *net_device;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -070039 struct net_device *ndev = hv_get_drvdata(device);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -070040 int i;
Hank Janssenfceaf242009-07-13 15:34:54 -070041
Haiyang Zhang85799a32010-12-10 12:03:54 -080042 net_device = kzalloc(sizeof(struct netvsc_device), GFP_KERNEL);
43 if (!net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -070044 return NULL;
45
Haiyang Zhangf90251c2014-08-15 19:18:19 +000046 net_device->cb_buffer = kzalloc(NETVSC_PACKET_SIZE, GFP_KERNEL);
47 if (!net_device->cb_buffer) {
48 kfree(net_device);
49 return NULL;
50 }
51
Haiyang Zhangdc5cd892012-06-04 06:42:38 +000052 init_waitqueue_head(&net_device->wait_drain);
Haiyang Zhang4d447c92011-12-15 13:45:17 -080053 net_device->start_remove = false;
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -070054 net_device->destroy = false;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -080055 net_device->dev = device;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -070056 net_device->ndev = ndev;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -070057 net_device->max_pkt = RNDIS_MAX_PKT_DEFAULT;
58 net_device->pkt_align = RNDIS_PKT_ALIGN_DEFAULT;
59
60 for (i = 0; i < num_online_cpus(); i++)
61 spin_lock_init(&net_device->msd[i].lock);
Hank Janssenfceaf242009-07-13 15:34:54 -070062
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -070063 hv_set_drvdata(device, net_device);
Haiyang Zhang85799a32010-12-10 12:03:54 -080064 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070065}
66
Haiyang Zhangf90251c2014-08-15 19:18:19 +000067static void free_netvsc_device(struct netvsc_device *nvdev)
68{
69 kfree(nvdev->cb_buffer);
70 kfree(nvdev);
71}
72
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080073static struct netvsc_device *get_outbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070074{
Haiyang Zhang85799a32010-12-10 12:03:54 -080075 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070076
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -070077 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070078 if (net_device && net_device->destroy)
Haiyang Zhang85799a32010-12-10 12:03:54 -080079 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -070080
Haiyang Zhang85799a32010-12-10 12:03:54 -080081 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070082}
83
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080084static struct netvsc_device *get_inbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070085{
Haiyang Zhang85799a32010-12-10 12:03:54 -080086 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070087
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -070088 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070089
90 if (!net_device)
91 goto get_in_err;
92
93 if (net_device->destroy &&
94 atomic_read(&net_device->num_outstanding_sends) == 0)
Haiyang Zhang85799a32010-12-10 12:03:54 -080095 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -070096
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070097get_in_err:
Haiyang Zhang85799a32010-12-10 12:03:54 -080098 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070099}
100
Hank Janssenfceaf242009-07-13 15:34:54 -0700101
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700102static int netvsc_destroy_buf(struct netvsc_device *net_device)
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700103{
104 struct nvsp_message *revoke_packet;
105 int ret = 0;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700106 struct net_device *ndev = net_device->ndev;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700107
108 /*
109 * If we got a section count, it means we received a
110 * SendReceiveBufferComplete msg (ie sent
111 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
112 * to send a revoke msg here
113 */
114 if (net_device->recv_section_cnt) {
115 /* Send the revoke receive buffer */
116 revoke_packet = &net_device->revoke_packet;
117 memset(revoke_packet, 0, sizeof(struct nvsp_message));
118
119 revoke_packet->hdr.msg_type =
120 NVSP_MSG1_TYPE_REVOKE_RECV_BUF;
121 revoke_packet->msg.v1_msg.
122 revoke_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
123
124 ret = vmbus_sendpacket(net_device->dev->channel,
125 revoke_packet,
126 sizeof(struct nvsp_message),
127 (unsigned long)revoke_packet,
128 VM_PKT_DATA_INBAND, 0);
129 /*
130 * If we failed here, we might as well return and
131 * have a leak rather than continue and a bugchk
132 */
133 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700134 netdev_err(ndev, "unable to send "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700135 "revoke receive buffer to netvsp\n");
K. Y. Srinivasana3e00532011-08-25 09:49:12 -0700136 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700137 }
138 }
139
140 /* Teardown the gpadl on the vsp end */
141 if (net_device->recv_buf_gpadl_handle) {
142 ret = vmbus_teardown_gpadl(net_device->dev->channel,
143 net_device->recv_buf_gpadl_handle);
144
145 /* If we failed here, we might as well return and have a leak
146 * rather than continue and a bugchk
147 */
148 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700149 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700150 "unable to teardown receive buffer's gpadl\n");
Dan Carpenter7f9615e2011-08-27 14:06:07 +0300151 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700152 }
153 net_device->recv_buf_gpadl_handle = 0;
154 }
155
156 if (net_device->recv_buf) {
157 /* Free up the receive buffer */
Haiyang Zhangb679ef72014-01-27 15:03:42 -0800158 vfree(net_device->recv_buf);
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700159 net_device->recv_buf = NULL;
160 }
161
162 if (net_device->recv_section) {
163 net_device->recv_section_cnt = 0;
164 kfree(net_device->recv_section);
165 net_device->recv_section = NULL;
166 }
167
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700168 /* Deal with the send buffer we may have setup.
169 * If we got a send section size, it means we received a
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800170 * NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE msg (ie sent
171 * NVSP_MSG1_TYPE_SEND_SEND_BUF msg) therefore, we need
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700172 * to send a revoke msg here
173 */
174 if (net_device->send_section_size) {
175 /* Send the revoke receive buffer */
176 revoke_packet = &net_device->revoke_packet;
177 memset(revoke_packet, 0, sizeof(struct nvsp_message));
178
179 revoke_packet->hdr.msg_type =
180 NVSP_MSG1_TYPE_REVOKE_SEND_BUF;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800181 revoke_packet->msg.v1_msg.revoke_send_buf.id =
182 NETVSC_SEND_BUFFER_ID;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700183
184 ret = vmbus_sendpacket(net_device->dev->channel,
185 revoke_packet,
186 sizeof(struct nvsp_message),
187 (unsigned long)revoke_packet,
188 VM_PKT_DATA_INBAND, 0);
189 /* If we failed here, we might as well return and
190 * have a leak rather than continue and a bugchk
191 */
192 if (ret != 0) {
193 netdev_err(ndev, "unable to send "
194 "revoke send buffer to netvsp\n");
195 return ret;
196 }
197 }
198 /* Teardown the gpadl on the vsp end */
199 if (net_device->send_buf_gpadl_handle) {
200 ret = vmbus_teardown_gpadl(net_device->dev->channel,
201 net_device->send_buf_gpadl_handle);
202
203 /* If we failed here, we might as well return and have a leak
204 * rather than continue and a bugchk
205 */
206 if (ret != 0) {
207 netdev_err(ndev,
208 "unable to teardown send buffer's gpadl\n");
209 return ret;
210 }
Dave Jones2f184232014-06-16 16:59:02 -0400211 net_device->send_buf_gpadl_handle = 0;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700212 }
213 if (net_device->send_buf) {
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800214 /* Free up the send buffer */
KY Srinivasan06b47aa2014-08-02 10:42:02 -0700215 vfree(net_device->send_buf);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700216 net_device->send_buf = NULL;
217 }
218 kfree(net_device->send_section_map);
219
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700220 return ret;
221}
222
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700223static int netvsc_init_buf(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700224{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700225 int ret = 0;
Nicholas Mc Guire7390fe92015-01-25 15:46:31 +0100226 unsigned long t;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800227 struct netvsc_device *net_device;
228 struct nvsp_message *init_packet;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700229 struct net_device *ndev;
K. Y. Srinivasan0a726c22015-05-28 17:08:06 -0700230 int node;
Hank Janssenfceaf242009-07-13 15:34:54 -0700231
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800232 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700233 if (!net_device)
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700234 return -ENODEV;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700235 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700236
K. Y. Srinivasan0a726c22015-05-28 17:08:06 -0700237 node = cpu_to_node(device->channel->target_cpu);
238 net_device->recv_buf = vzalloc_node(net_device->recv_buf_size, node);
239 if (!net_device->recv_buf)
240 net_device->recv_buf = vzalloc(net_device->recv_buf_size);
241
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800242 if (!net_device->recv_buf) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700243 netdev_err(ndev, "unable to allocate receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700244 "buffer of size %d\n", net_device->recv_buf_size);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700245 ret = -ENOMEM;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800246 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700247 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700248
Bill Pemberton454f18a2009-07-27 16:47:24 -0400249 /*
250 * Establish the gpadl handle for this buffer on this
251 * channel. Note: This call uses the vmbus connection rather
252 * than the channel to establish the gpadl handle.
253 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800254 ret = vmbus_establish_gpadl(device->channel, net_device->recv_buf,
255 net_device->recv_buf_size,
256 &net_device->recv_buf_gpadl_handle);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700257 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700258 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700259 "unable to establish receive buffer's gpadl\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800260 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700261 }
262
Hank Janssenfceaf242009-07-13 15:34:54 -0700263
Bill Pemberton454f18a2009-07-27 16:47:24 -0400264 /* Notify the NetVsp of the gpadl handle */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800265 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700266
Haiyang Zhang85799a32010-12-10 12:03:54 -0800267 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700268
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800269 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_RECV_BUF;
270 init_packet->msg.v1_msg.send_recv_buf.
271 gpadl_handle = net_device->recv_buf_gpadl_handle;
272 init_packet->msg.v1_msg.
273 send_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
Hank Janssenfceaf242009-07-13 15:34:54 -0700274
Bill Pemberton454f18a2009-07-27 16:47:24 -0400275 /* Send the gpadl notification request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800276 ret = vmbus_sendpacket(device->channel, init_packet,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700277 sizeof(struct nvsp_message),
Haiyang Zhang85799a32010-12-10 12:03:54 -0800278 (unsigned long)init_packet,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800279 VM_PKT_DATA_INBAND,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700280 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700281 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700282 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700283 "unable to send receive buffer's gpadl to netvsp\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800284 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700285 }
286
K. Y. Srinivasan5c5781b32011-06-16 13:16:35 -0700287 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700288 BUG_ON(t == 0);
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800289
Hank Janssenfceaf242009-07-13 15:34:54 -0700290
Bill Pemberton454f18a2009-07-27 16:47:24 -0400291 /* Check the response */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800292 if (init_packet->msg.v1_msg.
293 send_recv_buf_complete.status != NVSP_STAT_SUCCESS) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700294 netdev_err(ndev, "Unable to complete receive buffer "
Haiyang Zhang8bff33a2011-09-01 12:19:48 -0700295 "initialization with NetVsp - status %d\n",
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800296 init_packet->msg.v1_msg.
297 send_recv_buf_complete.status);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700298 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800299 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700300 }
301
Bill Pemberton454f18a2009-07-27 16:47:24 -0400302 /* Parse the response */
Hank Janssenfceaf242009-07-13 15:34:54 -0700303
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800304 net_device->recv_section_cnt = init_packet->msg.
305 v1_msg.send_recv_buf_complete.num_sections;
Hank Janssenfceaf242009-07-13 15:34:54 -0700306
Haiyang Zhangc1813202011-11-30 07:19:07 -0800307 net_device->recv_section = kmemdup(
308 init_packet->msg.v1_msg.send_recv_buf_complete.sections,
309 net_device->recv_section_cnt *
310 sizeof(struct nvsp_1_receive_buffer_section),
311 GFP_KERNEL);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800312 if (net_device->recv_section == NULL) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700313 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800314 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700315 }
316
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700317 /*
318 * For 1st release, there should only be 1 section that represents the
319 * entire receive buffer
320 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800321 if (net_device->recv_section_cnt != 1 ||
322 net_device->recv_section->offset != 0) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700323 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800324 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700325 }
326
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700327 /* Now setup the send buffer.
328 */
K. Y. Srinivasan5defde52015-05-28 17:08:07 -0700329 net_device->send_buf = vzalloc_node(net_device->send_buf_size, node);
330 if (!net_device->send_buf)
331 net_device->send_buf = vzalloc(net_device->send_buf_size);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700332 if (!net_device->send_buf) {
333 netdev_err(ndev, "unable to allocate send "
334 "buffer of size %d\n", net_device->send_buf_size);
335 ret = -ENOMEM;
336 goto cleanup;
337 }
338
339 /* Establish the gpadl handle for this buffer on this
340 * channel. Note: This call uses the vmbus connection rather
341 * than the channel to establish the gpadl handle.
342 */
343 ret = vmbus_establish_gpadl(device->channel, net_device->send_buf,
344 net_device->send_buf_size,
345 &net_device->send_buf_gpadl_handle);
346 if (ret != 0) {
347 netdev_err(ndev,
348 "unable to establish send buffer's gpadl\n");
349 goto cleanup;
350 }
351
352 /* Notify the NetVsp of the gpadl handle */
353 init_packet = &net_device->channel_init_pkt;
354 memset(init_packet, 0, sizeof(struct nvsp_message));
355 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_SEND_BUF;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800356 init_packet->msg.v1_msg.send_send_buf.gpadl_handle =
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700357 net_device->send_buf_gpadl_handle;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800358 init_packet->msg.v1_msg.send_send_buf.id = NETVSC_SEND_BUFFER_ID;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700359
360 /* Send the gpadl notification request */
361 ret = vmbus_sendpacket(device->channel, init_packet,
362 sizeof(struct nvsp_message),
363 (unsigned long)init_packet,
364 VM_PKT_DATA_INBAND,
365 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
366 if (ret != 0) {
367 netdev_err(ndev,
368 "unable to send send buffer's gpadl to netvsp\n");
369 goto cleanup;
370 }
371
372 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
373 BUG_ON(t == 0);
374
375 /* Check the response */
376 if (init_packet->msg.v1_msg.
377 send_send_buf_complete.status != NVSP_STAT_SUCCESS) {
378 netdev_err(ndev, "Unable to complete send buffer "
379 "initialization with NetVsp - status %d\n",
380 init_packet->msg.v1_msg.
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800381 send_send_buf_complete.status);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700382 ret = -EINVAL;
383 goto cleanup;
384 }
385
386 /* Parse the response */
387 net_device->send_section_size = init_packet->msg.
388 v1_msg.send_send_buf_complete.section_size;
389
390 /* Section count is simply the size divided by the section size.
391 */
392 net_device->send_section_cnt =
393 net_device->send_buf_size/net_device->send_section_size;
394
395 dev_info(&device->device, "Send section size: %d, Section count:%d\n",
396 net_device->send_section_size, net_device->send_section_cnt);
397
398 /* Setup state for managing the send buffer. */
399 net_device->map_words = DIV_ROUND_UP(net_device->send_section_cnt,
400 BITS_PER_LONG);
401
402 net_device->send_section_map =
403 kzalloc(net_device->map_words * sizeof(ulong), GFP_KERNEL);
Wei Yongjundd1d3f82014-07-23 09:00:35 +0800404 if (net_device->send_section_map == NULL) {
405 ret = -ENOMEM;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700406 goto cleanup;
Wei Yongjundd1d3f82014-07-23 09:00:35 +0800407 }
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700408
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800409 goto exit;
Hank Janssenfceaf242009-07-13 15:34:54 -0700410
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800411cleanup:
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700412 netvsc_destroy_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700413
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800414exit:
Hank Janssenfceaf242009-07-13 15:34:54 -0700415 return ret;
416}
417
Hank Janssenfceaf242009-07-13 15:34:54 -0700418
Haiyang Zhangf157e782011-12-15 13:45:16 -0800419/* Negotiate NVSP protocol version */
420static int negotiate_nvsp_ver(struct hv_device *device,
421 struct netvsc_device *net_device,
422 struct nvsp_message *init_packet,
423 u32 nvsp_ver)
Hank Janssenfceaf242009-07-13 15:34:54 -0700424{
Nicholas Mc Guire7390fe92015-01-25 15:46:31 +0100425 int ret;
426 unsigned long t;
Haiyang Zhangf157e782011-12-15 13:45:16 -0800427
428 memset(init_packet, 0, sizeof(struct nvsp_message));
429 init_packet->hdr.msg_type = NVSP_MSG_TYPE_INIT;
430 init_packet->msg.init_msg.init.min_protocol_ver = nvsp_ver;
431 init_packet->msg.init_msg.init.max_protocol_ver = nvsp_ver;
432
433 /* Send the init request */
434 ret = vmbus_sendpacket(device->channel, init_packet,
435 sizeof(struct nvsp_message),
436 (unsigned long)init_packet,
437 VM_PKT_DATA_INBAND,
438 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
439
440 if (ret != 0)
441 return ret;
442
443 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
444
445 if (t == 0)
446 return -ETIMEDOUT;
447
448 if (init_packet->msg.init_msg.init_complete.status !=
449 NVSP_STAT_SUCCESS)
450 return -EINVAL;
451
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800452 if (nvsp_ver == NVSP_PROTOCOL_VERSION_1)
Haiyang Zhangf157e782011-12-15 13:45:16 -0800453 return 0;
454
455 /* NVSPv2 only: Send NDIS config */
456 memset(init_packet, 0, sizeof(struct nvsp_message));
457 init_packet->hdr.msg_type = NVSP_MSG2_TYPE_SEND_NDIS_CONFIG;
Haiyang Zhang4d3c9d32014-11-12 14:07:44 -0800458 init_packet->msg.v2_msg.send_ndis_config.mtu = net_device->ndev->mtu +
459 ETH_HLEN;
Haiyang Zhang1f5f3a72012-03-12 10:20:50 +0000460 init_packet->msg.v2_msg.send_ndis_config.capability.ieee8021q = 1;
Haiyang Zhangf157e782011-12-15 13:45:16 -0800461
462 ret = vmbus_sendpacket(device->channel, init_packet,
463 sizeof(struct nvsp_message),
464 (unsigned long)init_packet,
465 VM_PKT_DATA_INBAND, 0);
466
467 return ret;
468}
469
470static int netvsc_connect_vsp(struct hv_device *device)
471{
472 int ret;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800473 struct netvsc_device *net_device;
474 struct nvsp_message *init_packet;
475 int ndis_version;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700476 struct net_device *ndev;
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800477 u32 ver_list[] = { NVSP_PROTOCOL_VERSION_1, NVSP_PROTOCOL_VERSION_2,
478 NVSP_PROTOCOL_VERSION_4, NVSP_PROTOCOL_VERSION_5 };
479 int i, num_ver = 4; /* number of different NVSP versions */
Hank Janssenfceaf242009-07-13 15:34:54 -0700480
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800481 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700482 if (!net_device)
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700483 return -ENODEV;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700484 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700485
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800486 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700487
Haiyang Zhangf157e782011-12-15 13:45:16 -0800488 /* Negotiate the latest NVSP protocol supported */
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800489 for (i = num_ver - 1; i >= 0; i--)
490 if (negotiate_nvsp_ver(device, net_device, init_packet,
491 ver_list[i]) == 0) {
492 net_device->nvsp_version = ver_list[i];
493 break;
494 }
495
496 if (i < 0) {
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700497 ret = -EPROTO;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800498 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700499 }
Haiyang Zhangf157e782011-12-15 13:45:16 -0800500
501 pr_debug("Negotiated NVSP version:%x\n", net_device->nvsp_version);
502
Bill Pemberton454f18a2009-07-27 16:47:24 -0400503 /* Send the ndis version */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800504 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700505
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800506 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_4)
KY Srinivasan1f73db42014-04-09 15:00:46 -0700507 ndis_version = 0x00060001;
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800508 else
509 ndis_version = 0x0006001e;
Hank Janssenfceaf242009-07-13 15:34:54 -0700510
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800511 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_NDIS_VER;
512 init_packet->msg.v1_msg.
513 send_ndis_ver.ndis_major_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800514 (ndis_version & 0xFFFF0000) >> 16;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800515 init_packet->msg.v1_msg.
516 send_ndis_ver.ndis_minor_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800517 ndis_version & 0xFFFF;
Hank Janssenfceaf242009-07-13 15:34:54 -0700518
Bill Pemberton454f18a2009-07-27 16:47:24 -0400519 /* Send the init request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800520 ret = vmbus_sendpacket(device->channel, init_packet,
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800521 sizeof(struct nvsp_message),
522 (unsigned long)init_packet,
523 VM_PKT_DATA_INBAND, 0);
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700524 if (ret != 0)
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800525 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700526
Bill Pemberton454f18a2009-07-27 16:47:24 -0400527 /* Post the big receive buffer to NetVSP */
Haiyang Zhang99d30162014-03-09 16:10:59 -0700528 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_2)
529 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE_LEGACY;
530 else
531 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700532 net_device->send_buf_size = NETVSC_SEND_BUFFER_SIZE;
Haiyang Zhang99d30162014-03-09 16:10:59 -0700533
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700534 ret = netvsc_init_buf(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700535
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800536cleanup:
Hank Janssenfceaf242009-07-13 15:34:54 -0700537 return ret;
538}
539
Haiyang Zhang648dc592011-04-21 12:30:47 -0700540static void netvsc_disconnect_vsp(struct netvsc_device *net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700541{
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700542 netvsc_destroy_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700543}
544
Hank Janssen3e189512010-03-04 22:11:00 +0000545/*
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800546 * netvsc_device_remove - Callback when the root bus device is removed
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700547 */
K. Y. Srinivasan905620d2011-05-10 07:54:54 -0700548int netvsc_device_remove(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700549{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800550 struct netvsc_device *net_device;
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -0700551 unsigned long flags;
Hank Janssenfceaf242009-07-13 15:34:54 -0700552
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700553 net_device = hv_get_drvdata(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700554
Haiyang Zhang648dc592011-04-21 12:30:47 -0700555 netvsc_disconnect_vsp(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700556
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700557 /*
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700558 * Since we have already drained, we don't need to busy wait
559 * as was done in final_release_stor_device()
560 * Note that we cannot set the ext pointer to NULL until
561 * we have drained - to drain the outgoing packets, we need to
562 * allow incoming packets.
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700563 */
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700564
565 spin_lock_irqsave(&device->channel->inbound_lock, flags);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700566 hv_set_drvdata(device, NULL);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700567 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700568
K. Y. Srinivasan86c921a2011-09-13 10:59:54 -0700569 /*
570 * At this point, no one should be accessing net_device
571 * except in here
572 */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700573 dev_notice(&device->device, "net device safe to remove\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700574
Bill Pemberton454f18a2009-07-27 16:47:24 -0400575 /* Now, we can close the channel safely */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800576 vmbus_close(device->channel);
Hank Janssenfceaf242009-07-13 15:34:54 -0700577
Bill Pemberton454f18a2009-07-27 16:47:24 -0400578 /* Release all resources */
Markus Elfringaa99c472014-11-25 22:33:45 +0100579 vfree(net_device->sub_cb_buf);
Haiyang Zhangf90251c2014-08-15 19:18:19 +0000580 free_netvsc_device(net_device);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700581 return 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700582}
583
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000584
585#define RING_AVAIL_PERCENT_HIWATER 20
586#define RING_AVAIL_PERCENT_LOWATER 10
587
588/*
589 * Get the percentage of available bytes to write in the ring.
590 * The return value is in range from 0 to 100.
591 */
592static inline u32 hv_ringbuf_avail_percent(
593 struct hv_ring_buffer_info *ring_info)
594{
595 u32 avail_read, avail_write;
596
597 hv_get_ringbuffer_availbytes(ring_info, &avail_read, &avail_write);
598
599 return avail_write * 100 / ring_info->ring_datasize;
600}
601
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700602static inline void netvsc_free_send_slot(struct netvsc_device *net_device,
603 u32 index)
604{
605 sync_change_bit(index, net_device->send_section_map);
606}
607
KY Srinivasan97c17232014-02-16 16:38:44 -0800608static void netvsc_send_completion(struct netvsc_device *net_device,
609 struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800610 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700611{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800612 struct nvsp_message *nvsp_packet;
613 struct hv_netvsc_packet *nvsc_packet;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700614 struct net_device *ndev;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700615 u32 send_index;
Hank Janssenfceaf242009-07-13 15:34:54 -0700616
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700617 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700618
Haiyang Zhang85799a32010-12-10 12:03:54 -0800619 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -0800620 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -0700621
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800622 if ((nvsp_packet->hdr.msg_type == NVSP_MSG_TYPE_INIT_COMPLETE) ||
623 (nvsp_packet->hdr.msg_type ==
624 NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE) ||
625 (nvsp_packet->hdr.msg_type ==
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700626 NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE) ||
627 (nvsp_packet->hdr.msg_type ==
628 NVSP_MSG5_TYPE_SUBCHANNEL)) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400629 /* Copy the response back */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800630 memcpy(&net_device->channel_init_pkt, nvsp_packet,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700631 sizeof(struct nvsp_message));
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700632 complete(&net_device->channel_init_wait);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800633 } else if (nvsp_packet->hdr.msg_type ==
634 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE) {
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000635 int num_outstanding_sends;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700636 u16 q_idx = 0;
637 struct vmbus_channel *channel = device->channel;
638 int queue_sends;
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000639
Bill Pemberton454f18a2009-07-27 16:47:24 -0400640 /* Get the send context */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800641 nvsc_packet = (struct hv_netvsc_packet *)(unsigned long)
Haiyang Zhang415f2282011-01-26 12:12:13 -0800642 packet->trans_id;
Hank Janssenfceaf242009-07-13 15:34:54 -0700643
Bill Pemberton454f18a2009-07-27 16:47:24 -0400644 /* Notify the layer above us */
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700645 if (nvsc_packet) {
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700646 send_index = nvsc_packet->send_buf_index;
647 if (send_index != NETVSC_INVALID_INDEX)
648 netvsc_free_send_slot(net_device, send_index);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700649 q_idx = nvsc_packet->q_idx;
650 channel = nvsc_packet->channel;
Haiyang Zhang893f6622014-04-21 14:54:44 -0700651 nvsc_packet->send_completion(nvsc_packet->
652 send_completion_ctx);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700653 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700654
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000655 num_outstanding_sends =
656 atomic_dec_return(&net_device->num_outstanding_sends);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700657 queue_sends = atomic_dec_return(&net_device->
658 queue_sends[q_idx]);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800659
Haiyang Zhangdc5cd892012-06-04 06:42:38 +0000660 if (net_device->destroy && num_outstanding_sends == 0)
661 wake_up(&net_device->wait_drain);
662
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700663 if (netif_tx_queue_stopped(netdev_get_tx_queue(ndev, q_idx)) &&
664 !net_device->start_remove &&
665 (hv_ringbuf_avail_percent(&channel->outbound) >
666 RING_AVAIL_PERCENT_HIWATER || queue_sends < 1))
667 netif_tx_wake_queue(netdev_get_tx_queue(
668 ndev, q_idx));
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700669 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700670 netdev_err(ndev, "Unknown send completion packet type- "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700671 "%d received!!\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700672 }
673
Hank Janssenfceaf242009-07-13 15:34:54 -0700674}
675
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700676static u32 netvsc_get_next_send_section(struct netvsc_device *net_device)
677{
678 unsigned long index;
679 u32 max_words = net_device->map_words;
680 unsigned long *map_addr = (unsigned long *)net_device->send_section_map;
681 u32 section_cnt = net_device->send_section_cnt;
682 int ret_val = NETVSC_INVALID_INDEX;
683 int i;
684 int prev_val;
685
686 for (i = 0; i < max_words; i++) {
687 if (!~(map_addr[i]))
688 continue;
689 index = ffz(map_addr[i]);
690 prev_val = sync_test_and_set_bit(index, &map_addr[i]);
691 if (prev_val)
692 continue;
693 if ((index + (i * BITS_PER_LONG)) >= section_cnt)
694 break;
695 ret_val = (index + (i * BITS_PER_LONG));
696 break;
697 }
698 return ret_val;
699}
700
Lad, Prabhakarda19fcd2015-02-05 15:06:33 +0000701static u32 netvsc_copy_to_send_buf(struct netvsc_device *net_device,
702 unsigned int section_index,
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700703 u32 pend_size,
Lad, Prabhakarda19fcd2015-02-05 15:06:33 +0000704 struct hv_netvsc_packet *packet)
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700705{
706 char *start = net_device->send_buf;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700707 char *dest = start + (section_index * net_device->send_section_size)
708 + pend_size;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700709 int i;
710 u32 msg_size = 0;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700711 u32 padding = 0;
712 u32 remain = packet->total_data_buflen % net_device->pkt_align;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700713 u32 page_count = packet->cp_partial ? packet->rmsg_pgcnt :
714 packet->page_buf_cnt;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700715
716 /* Add padding */
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700717 if (packet->is_data_pkt && packet->xmit_more && remain &&
718 !packet->cp_partial) {
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700719 padding = net_device->pkt_align - remain;
720 packet->rndis_msg->msg_len += padding;
721 packet->total_data_buflen += padding;
722 }
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700723
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700724 for (i = 0; i < page_count; i++) {
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700725 char *src = phys_to_virt(packet->page_buf[i].pfn << PAGE_SHIFT);
726 u32 offset = packet->page_buf[i].offset;
727 u32 len = packet->page_buf[i].len;
728
729 memcpy(dest, (src + offset), len);
730 msg_size += len;
731 dest += len;
732 }
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700733
734 if (padding) {
735 memset(dest, 0, padding);
736 msg_size += padding;
737 }
738
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700739 return msg_size;
740}
741
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700742static inline int netvsc_send_pkt(
743 struct hv_netvsc_packet *packet,
744 struct netvsc_device *net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700745{
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700746 struct nvsp_message nvmsg;
747 struct vmbus_channel *out_channel = packet->channel;
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700748 u16 q_idx = packet->q_idx;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700749 struct net_device *ndev = net_device->ndev;
750 u64 req_id;
751 int ret;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700752 struct hv_page_buffer *pgbuf;
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700753 u32 ring_avail = hv_ringbuf_avail_percent(&out_channel->outbound);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700754
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700755 nvmsg.hdr.msg_type = NVSP_MSG1_TYPE_SEND_RNDIS_PKT;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800756 if (packet->is_data_pkt) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700757 /* 0 is RMC_DATA; */
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700758 nvmsg.msg.v1_msg.send_rndis_pkt.channel_type = 0;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700759 } else {
760 /* 1 is RMC_CONTROL; */
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700761 nvmsg.msg.v1_msg.send_rndis_pkt.channel_type = 1;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700762 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700763
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700764 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_index =
765 packet->send_buf_index;
766 if (packet->send_buf_index == NETVSC_INVALID_INDEX)
767 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_size = 0;
768 else
769 nvmsg.msg.v1_msg.send_rndis_pkt.send_buf_section_size =
770 packet->total_data_buflen;
Hank Janssenfceaf242009-07-13 15:34:54 -0700771
Haiyang Zhang893f6622014-04-21 14:54:44 -0700772 if (packet->send_completion)
Haiyang Zhang00ca8f02013-04-26 08:25:55 +0000773 req_id = (ulong)packet;
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000774 else
775 req_id = 0;
776
Haiyang Zhangc3582a22014-12-01 13:28:39 -0800777 if (out_channel->rescind)
778 return -ENODEV;
779
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700780 /*
781 * It is possible that once we successfully place this packet
782 * on the ringbuffer, we may stop the queue. In that case, we want
783 * to notify the host independent of the xmit_more flag. We don't
784 * need to be precise here; in the worst case we may signal the host
785 * unnecessarily.
786 */
787 if (ring_avail < (RING_AVAIL_PERCENT_LOWATER + 1))
788 packet->xmit_more = false;
789
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800790 if (packet->page_buf_cnt) {
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700791 pgbuf = packet->cp_partial ? packet->page_buf +
792 packet->rmsg_pgcnt : packet->page_buf;
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700793 ret = vmbus_sendpacket_pagebuffer_ctl(out_channel,
794 pgbuf,
795 packet->page_buf_cnt,
796 &nvmsg,
797 sizeof(struct nvsp_message),
798 req_id,
799 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED,
800 !packet->xmit_more);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700801 } else {
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700802 ret = vmbus_sendpacket_ctl(out_channel, &nvmsg,
803 sizeof(struct nvsp_message),
804 req_id,
805 VM_PKT_DATA_INBAND,
806 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED,
807 !packet->xmit_more);
Hank Janssenfceaf242009-07-13 15:34:54 -0700808 }
809
Haiyang Zhang1d068252011-12-02 11:56:25 -0800810 if (ret == 0) {
811 atomic_inc(&net_device->num_outstanding_sends);
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700812 atomic_inc(&net_device->queue_sends[q_idx]);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700813
KY Srinivasan82fa3c72015-05-11 15:39:46 -0700814 if (ring_avail < RING_AVAIL_PERCENT_LOWATER) {
815 netif_tx_stop_queue(netdev_get_tx_queue(ndev, q_idx));
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700816
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000817 if (atomic_read(&net_device->
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700818 queue_sends[q_idx]) < 1)
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700819 netif_tx_wake_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700820 ndev, q_idx));
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000821 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800822 } else if (ret == -EAGAIN) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700823 netif_tx_stop_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700824 ndev, q_idx));
825 if (atomic_read(&net_device->queue_sends[q_idx]) < 1) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700826 netif_tx_wake_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700827 ndev, q_idx));
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000828 ret = -ENOSPC;
829 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800830 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700831 netdev_err(ndev, "Unable to send packet %p ret %d\n",
Haiyang Zhang85799a32010-12-10 12:03:54 -0800832 packet, ret);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800833 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700834
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700835 return ret;
836}
837
838int netvsc_send(struct hv_device *device,
839 struct hv_netvsc_packet *packet)
840{
841 struct netvsc_device *net_device;
842 int ret = 0, m_ret = 0;
843 struct vmbus_channel *out_channel;
844 u16 q_idx = packet->q_idx;
845 u32 pktlen = packet->total_data_buflen, msd_len = 0;
846 unsigned int section_index = NETVSC_INVALID_INDEX;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700847 unsigned long flag;
848 struct multi_send_data *msdp;
849 struct hv_netvsc_packet *msd_send = NULL, *cur_send = NULL;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700850 bool try_batch;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700851
852 net_device = get_outbound_net_device(device);
853 if (!net_device)
854 return -ENODEV;
855
856 out_channel = net_device->chn_table[q_idx];
857 if (!out_channel) {
858 out_channel = device->channel;
859 q_idx = 0;
860 packet->q_idx = 0;
861 }
862 packet->channel = out_channel;
863 packet->send_buf_index = NETVSC_INVALID_INDEX;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700864 packet->cp_partial = false;
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700865
866 msdp = &net_device->msd[q_idx];
867
868 /* batch packets in send buffer if possible */
869 spin_lock_irqsave(&msdp->lock, flag);
870 if (msdp->pkt)
871 msd_len = msdp->pkt->total_data_buflen;
872
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700873 try_batch = packet->is_data_pkt && msd_len > 0 && msdp->count <
874 net_device->max_pkt;
875
876 if (try_batch && msd_len + pktlen + net_device->pkt_align <
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700877 net_device->send_section_size) {
878 section_index = msdp->pkt->send_buf_index;
879
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700880 } else if (try_batch && msd_len + packet->rmsg_size <
881 net_device->send_section_size) {
882 section_index = msdp->pkt->send_buf_index;
883 packet->cp_partial = true;
884
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700885 } else if (packet->is_data_pkt && pktlen + net_device->pkt_align <
886 net_device->send_section_size) {
887 section_index = netvsc_get_next_send_section(net_device);
888 if (section_index != NETVSC_INVALID_INDEX) {
889 msd_send = msdp->pkt;
890 msdp->pkt = NULL;
891 msdp->count = 0;
892 msd_len = 0;
893 }
894 }
895
896 if (section_index != NETVSC_INVALID_INDEX) {
897 netvsc_copy_to_send_buf(net_device,
898 section_index, msd_len,
899 packet);
KY Srinivasanb08cc792015-03-29 21:08:42 -0700900
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700901 packet->send_buf_index = section_index;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700902
903 if (packet->cp_partial) {
904 packet->page_buf_cnt -= packet->rmsg_pgcnt;
905 packet->total_data_buflen = msd_len + packet->rmsg_size;
906 } else {
907 packet->page_buf_cnt = 0;
908 packet->total_data_buflen += msd_len;
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700909 }
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700910
Haiyang Zhangee90b812015-04-06 15:22:54 -0700911 if (msdp->pkt)
912 netvsc_xmit_completion(msdp->pkt);
913
Haiyang Zhangaa0a34b2015-04-13 16:34:35 -0700914 if (packet->xmit_more && !packet->cp_partial) {
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700915 msdp->pkt = packet;
916 msdp->count++;
917 } else {
918 cur_send = packet;
919 msdp->pkt = NULL;
920 msdp->count = 0;
921 }
922 } else {
923 msd_send = msdp->pkt;
924 msdp->pkt = NULL;
925 msdp->count = 0;
926 cur_send = packet;
927 }
928
929 spin_unlock_irqrestore(&msdp->lock, flag);
930
931 if (msd_send) {
932 m_ret = netvsc_send_pkt(msd_send, net_device);
933
934 if (m_ret != 0) {
935 netvsc_free_send_slot(net_device,
936 msd_send->send_buf_index);
Haiyang Zhangee90b812015-04-06 15:22:54 -0700937 netvsc_xmit_completion(msd_send);
Haiyang Zhang7c3877f2015-03-26 09:03:37 -0700938 }
939 }
940
941 if (cur_send)
942 ret = netvsc_send_pkt(cur_send, net_device);
943
Jerry Snitselaar7aab5152015-05-04 10:57:16 -0700944 if (ret != 0 && section_index != NETVSC_INVALID_INDEX)
945 netvsc_free_send_slot(net_device, section_index);
Haiyang Zhangd953ca42015-01-29 12:34:49 -0800946
Hank Janssenfceaf242009-07-13 15:34:54 -0700947 return ret;
948}
949
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700950static void netvsc_send_recv_completion(struct hv_device *device,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700951 struct vmbus_channel *channel,
KY Srinivasan97c17232014-02-16 16:38:44 -0800952 struct netvsc_device *net_device,
Haiyang Zhang63f69212012-10-02 05:30:23 +0000953 u64 transaction_id, u32 status)
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700954{
955 struct nvsp_message recvcompMessage;
956 int retries = 0;
957 int ret;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700958 struct net_device *ndev;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700959
960 ndev = net_device->ndev;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700961
962 recvcompMessage.hdr.msg_type =
963 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE;
964
Haiyang Zhang63f69212012-10-02 05:30:23 +0000965 recvcompMessage.msg.v1_msg.send_rndis_pkt_complete.status = status;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700966
967retry_send_cmplt:
968 /* Send the completion */
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700969 ret = vmbus_sendpacket(channel, &recvcompMessage,
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700970 sizeof(struct nvsp_message), transaction_id,
971 VM_PKT_COMP, 0);
972 if (ret == 0) {
973 /* success */
974 /* no-op */
K. Y. Srinivasand2598f02011-08-25 09:48:58 -0700975 } else if (ret == -EAGAIN) {
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700976 /* no more room...wait a bit and attempt to retry 3 times */
977 retries++;
Haiyang Zhangd9871152011-09-01 12:19:41 -0700978 netdev_err(ndev, "unable to send receive completion pkt"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700979 " (tid %llx)...retrying %d\n", transaction_id, retries);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700980
981 if (retries < 4) {
982 udelay(100);
983 goto retry_send_cmplt;
984 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700985 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700986 "completion pkt (tid %llx)...give up retrying\n",
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700987 transaction_id);
988 }
989 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700990 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700991 "completion pkt - %llx\n", transaction_id);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700992 }
993}
994
KY Srinivasan97c17232014-02-16 16:38:44 -0800995static void netvsc_receive(struct netvsc_device *net_device,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700996 struct vmbus_channel *channel,
KY Srinivasan97c17232014-02-16 16:38:44 -0800997 struct hv_device *device,
998 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700999{
Haiyang Zhang85799a32010-12-10 12:03:54 -08001000 struct vmtransfer_page_packet_header *vmxferpage_packet;
1001 struct nvsp_message *nvsp_packet;
Haiyang Zhang4baab262014-04-21 14:54:43 -07001002 struct hv_netvsc_packet nv_pkt;
1003 struct hv_netvsc_packet *netvsc_packet = &nv_pkt;
1004 u32 status = NVSP_STAT_SUCCESS;
Haiyang Zhang45326342011-12-15 13:45:15 -08001005 int i;
1006 int count = 0;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -07001007 struct net_device *ndev;
K. Y. Srinivasan779b4d12011-04-26 09:20:22 -07001008
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -07001009 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -07001010
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001011 /*
1012 * All inbound packets other than send completion should be xfer page
1013 * packet
1014 */
Haiyang Zhang415f2282011-01-26 12:12:13 -08001015 if (packet->type != VM_PKT_DATA_USING_XFER_PAGES) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001016 netdev_err(ndev, "Unknown packet type received - %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -08001017 packet->type);
Hank Janssenfceaf242009-07-13 15:34:54 -07001018 return;
1019 }
1020
Haiyang Zhang85799a32010-12-10 12:03:54 -08001021 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -08001022 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -07001023
Bill Pemberton454f18a2009-07-27 16:47:24 -04001024 /* Make sure this is a valid nvsp packet */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -08001025 if (nvsp_packet->hdr.msg_type !=
1026 NVSP_MSG1_TYPE_SEND_RNDIS_PKT) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001027 netdev_err(ndev, "Unknown nvsp packet type received-"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001028 " %d\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -07001029 return;
1030 }
1031
Haiyang Zhang85799a32010-12-10 12:03:54 -08001032 vmxferpage_packet = (struct vmtransfer_page_packet_header *)packet;
Hank Janssenfceaf242009-07-13 15:34:54 -07001033
Haiyang Zhang415f2282011-01-26 12:12:13 -08001034 if (vmxferpage_packet->xfer_pageset_id != NETVSC_RECEIVE_BUFFER_ID) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001035 netdev_err(ndev, "Invalid xfer page set id - "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001036 "expecting %x got %x\n", NETVSC_RECEIVE_BUFFER_ID,
Haiyang Zhang415f2282011-01-26 12:12:13 -08001037 vmxferpage_packet->xfer_pageset_id);
Hank Janssenfceaf242009-07-13 15:34:54 -07001038 return;
1039 }
1040
Haiyang Zhang4baab262014-04-21 14:54:43 -07001041 count = vmxferpage_packet->range_cnt;
Haiyang Zhang4baab262014-04-21 14:54:43 -07001042 netvsc_packet->channel = channel;
Hank Janssenfceaf242009-07-13 15:34:54 -07001043
Bill Pemberton454f18a2009-07-27 16:47:24 -04001044 /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
Haiyang Zhang4baab262014-04-21 14:54:43 -07001045 for (i = 0; i < count; i++) {
Bill Pemberton454f18a2009-07-27 16:47:24 -04001046 /* Initialize the netvsc packet */
Haiyang Zhang63f69212012-10-02 05:30:23 +00001047 netvsc_packet->status = NVSP_STAT_SUCCESS;
Haiyang Zhang45326342011-12-15 13:45:15 -08001048 netvsc_packet->data = (void *)((unsigned long)net_device->
1049 recv_buf + vmxferpage_packet->ranges[i].byte_offset);
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -08001050 netvsc_packet->total_data_buflen =
Haiyang Zhang415f2282011-01-26 12:12:13 -08001051 vmxferpage_packet->ranges[i].byte_count;
Hank Janssenfceaf242009-07-13 15:34:54 -07001052
Bill Pemberton454f18a2009-07-27 16:47:24 -04001053 /* Pass it to the upper layer */
K. Y. Srinivasanac6f7852011-05-12 19:34:58 -07001054 rndis_filter_receive(device, netvsc_packet);
Hank Janssenfceaf242009-07-13 15:34:54 -07001055
Haiyang Zhang4baab262014-04-21 14:54:43 -07001056 if (netvsc_packet->status != NVSP_STAT_SUCCESS)
1057 status = NVSP_STAT_FAIL;
Hank Janssenfceaf242009-07-13 15:34:54 -07001058 }
1059
Haiyang Zhang4baab262014-04-21 14:54:43 -07001060 netvsc_send_recv_completion(device, channel, net_device,
1061 vmxferpage_packet->d.trans_id, status);
Hank Janssenfceaf242009-07-13 15:34:54 -07001062}
1063
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001064
1065static void netvsc_send_table(struct hv_device *hdev,
1066 struct vmpacket_descriptor *vmpkt)
1067{
1068 struct netvsc_device *nvscdev;
1069 struct net_device *ndev;
1070 struct nvsp_message *nvmsg;
1071 int i;
1072 u32 count, *tab;
1073
1074 nvscdev = get_outbound_net_device(hdev);
1075 if (!nvscdev)
1076 return;
1077 ndev = nvscdev->ndev;
1078
1079 nvmsg = (struct nvsp_message *)((unsigned long)vmpkt +
1080 (vmpkt->offset8 << 3));
1081
1082 if (nvmsg->hdr.msg_type != NVSP_MSG5_TYPE_SEND_INDIRECTION_TABLE)
1083 return;
1084
1085 count = nvmsg->msg.v5_msg.send_table.count;
1086 if (count != VRSS_SEND_TAB_SIZE) {
1087 netdev_err(ndev, "Received wrong send-table size:%u\n", count);
1088 return;
1089 }
1090
1091 tab = (u32 *)((unsigned long)&nvmsg->msg.v5_msg.send_table +
1092 nvmsg->msg.v5_msg.send_table.offset);
1093
1094 for (i = 0; i < count; i++)
1095 nvscdev->send_table[i] = tab[i];
1096}
1097
1098void netvsc_channel_cb(void *context)
Hank Janssenfceaf242009-07-13 15:34:54 -07001099{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001100 int ret;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001101 struct vmbus_channel *channel = (struct vmbus_channel *)context;
1102 struct hv_device *device;
Haiyang Zhang85799a32010-12-10 12:03:54 -08001103 struct netvsc_device *net_device;
1104 u32 bytes_recvd;
1105 u64 request_id;
Greg Kroah-Hartman8dc0a062009-08-27 16:02:36 -07001106 struct vmpacket_descriptor *desc;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -04001107 unsigned char *buffer;
1108 int bufferlen = NETVSC_PACKET_SIZE;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -07001109 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -07001110
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001111 if (channel->primary_channel != NULL)
1112 device = channel->primary_channel->device_obj;
1113 else
1114 device = channel->device_obj;
1115
Haiyang Zhang5a71ae32010-12-10 12:03:55 -08001116 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -07001117 if (!net_device)
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001118 return;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -07001119 ndev = net_device->ndev;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001120 buffer = get_per_channel_state(channel);
Hank Janssenfceaf242009-07-13 15:34:54 -07001121
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001122 do {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001123 ret = vmbus_recvpacket_raw(channel, buffer, bufferlen,
Haiyang Zhang85799a32010-12-10 12:03:54 -08001124 &bytes_recvd, &request_id);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001125 if (ret == 0) {
Haiyang Zhang85799a32010-12-10 12:03:54 -08001126 if (bytes_recvd > 0) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001127 desc = (struct vmpacket_descriptor *)buffer;
Haiyang Zhang415f2282011-01-26 12:12:13 -08001128 switch (desc->type) {
1129 case VM_PKT_COMP:
KY Srinivasan97c17232014-02-16 16:38:44 -08001130 netvsc_send_completion(net_device,
1131 device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001132 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001133
Haiyang Zhang415f2282011-01-26 12:12:13 -08001134 case VM_PKT_DATA_USING_XFER_PAGES:
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001135 netvsc_receive(net_device, channel,
1136 device, desc);
1137 break;
1138
1139 case VM_PKT_DATA_INBAND:
1140 netvsc_send_table(device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001141 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001142
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001143 default:
Haiyang Zhangd9871152011-09-01 12:19:41 -07001144 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001145 "unhandled packet type %d, "
1146 "tid %llx len %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -08001147 desc->type, request_id,
Haiyang Zhang85799a32010-12-10 12:03:54 -08001148 bytes_recvd);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001149 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001150 }
1151
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001152 } else {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001153 /*
1154 * We are done for this pass.
1155 */
Hank Janssenfceaf242009-07-13 15:34:54 -07001156 break;
1157 }
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001158
K. Y. Srinivasan3d5cad92011-08-25 09:48:59 -07001159 } else if (ret == -ENOBUFS) {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001160 if (bufferlen > NETVSC_PACKET_SIZE)
1161 kfree(buffer);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001162 /* Handle large packet */
Haiyang Zhang85799a32010-12-10 12:03:54 -08001163 buffer = kmalloc(bytes_recvd, GFP_ATOMIC);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001164 if (buffer == NULL) {
Bill Pemberton454f18a2009-07-27 16:47:24 -04001165 /* Try again next time around */
Haiyang Zhangd9871152011-09-01 12:19:41 -07001166 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001167 "unable to allocate buffer of size "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001168 "(%d)!!\n", bytes_recvd);
Hank Janssenfceaf242009-07-13 15:34:54 -07001169 break;
1170 }
1171
Haiyang Zhang85799a32010-12-10 12:03:54 -08001172 bufferlen = bytes_recvd;
Hank Janssenfceaf242009-07-13 15:34:54 -07001173 }
1174 } while (1);
1175
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001176 if (bufferlen > NETVSC_PACKET_SIZE)
1177 kfree(buffer);
Hank Janssenfceaf242009-07-13 15:34:54 -07001178 return;
1179}
Haiyang Zhangaf24ce42011-04-21 12:30:40 -07001180
1181/*
Haiyang Zhangb637e022011-04-21 12:30:45 -07001182 * netvsc_device_add - Callback when the device belonging to this
1183 * driver is added
1184 */
K. Y. Srinivasan7bd23a42011-05-10 07:54:53 -07001185int netvsc_device_add(struct hv_device *device, void *additional_info)
Haiyang Zhangb637e022011-04-21 12:30:45 -07001186{
1187 int ret = 0;
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001188 int ring_size =
1189 ((struct netvsc_device_info *)additional_info)->ring_size;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001190 struct netvsc_device *net_device;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -07001191 struct net_device *ndev;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001192
1193 net_device = alloc_net_device(device);
Dan Carpenterb1c84922014-09-04 14:11:23 +03001194 if (!net_device)
1195 return -ENOMEM;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001196
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001197 net_device->ring_size = ring_size;
1198
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -07001199 /*
1200 * Coming into this function, struct net_device * is
1201 * registered as the driver private data.
1202 * In alloc_net_device(), we register struct netvsc_device *
1203 * as the driver private data and stash away struct net_device *
1204 * in struct netvsc_device *.
1205 */
1206 ndev = net_device->ndev;
1207
Simon Xiao3f300ff2015-04-28 01:05:17 -07001208 /* Add netvsc_device context to netvsc_device */
1209 net_device->nd_ctx = netdev_priv(ndev);
1210
Haiyang Zhangb637e022011-04-21 12:30:45 -07001211 /* Initialize the NetVSC channel extension */
K. Y. Srinivasan35abb212011-05-10 07:55:41 -07001212 init_completion(&net_device->channel_init_wait);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001213
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001214 set_per_channel_state(device->channel, net_device->cb_buffer);
1215
Haiyang Zhangb637e022011-04-21 12:30:45 -07001216 /* Open the channel */
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001217 ret = vmbus_open(device->channel, ring_size * PAGE_SIZE,
1218 ring_size * PAGE_SIZE, NULL, 0,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001219 netvsc_channel_cb, device->channel);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001220
1221 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001222 netdev_err(ndev, "unable to open channel: %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001223 goto cleanup;
1224 }
1225
1226 /* Channel is opened */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001227 pr_info("hv_netvsc channel opened successfully\n");
Haiyang Zhangb637e022011-04-21 12:30:45 -07001228
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001229 net_device->chn_table[0] = device->channel;
1230
Haiyang Zhangb637e022011-04-21 12:30:45 -07001231 /* Connect with the NetVsp */
1232 ret = netvsc_connect_vsp(device);
1233 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001234 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001235 "unable to connect to NetVSP - %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001236 goto close;
1237 }
1238
1239 return ret;
1240
1241close:
1242 /* Now, we can close the channel safely */
1243 vmbus_close(device->channel);
1244
1245cleanup:
Haiyang Zhangf90251c2014-08-15 19:18:19 +00001246 free_netvsc_device(net_device);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001247
1248 return ret;
1249}