blob: 208eb05446baa4a6980620773865e3746a13848f [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);
Hank Janssenfceaf242009-07-13 15:34:54 -070040
Haiyang Zhang85799a32010-12-10 12:03:54 -080041 net_device = kzalloc(sizeof(struct netvsc_device), GFP_KERNEL);
42 if (!net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -070043 return NULL;
44
Haiyang Zhangf90251c2014-08-15 19:18:19 +000045 net_device->cb_buffer = kzalloc(NETVSC_PACKET_SIZE, GFP_KERNEL);
46 if (!net_device->cb_buffer) {
47 kfree(net_device);
48 return NULL;
49 }
50
Haiyang Zhangdc5cd892012-06-04 06:42:38 +000051 init_waitqueue_head(&net_device->wait_drain);
Haiyang Zhang4d447c92011-12-15 13:45:17 -080052 net_device->start_remove = false;
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -070053 net_device->destroy = false;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -080054 net_device->dev = device;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -070055 net_device->ndev = ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -070056
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -070057 hv_set_drvdata(device, net_device);
Haiyang Zhang85799a32010-12-10 12:03:54 -080058 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070059}
60
Haiyang Zhangf90251c2014-08-15 19:18:19 +000061static void free_netvsc_device(struct netvsc_device *nvdev)
62{
63 kfree(nvdev->cb_buffer);
64 kfree(nvdev);
65}
66
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080067static struct netvsc_device *get_outbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070068{
Haiyang Zhang85799a32010-12-10 12:03:54 -080069 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070070
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -070071 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070072 if (net_device && net_device->destroy)
Haiyang Zhang85799a32010-12-10 12:03:54 -080073 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -070074
Haiyang Zhang85799a32010-12-10 12:03:54 -080075 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070076}
77
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080078static struct netvsc_device *get_inbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070079{
Haiyang Zhang85799a32010-12-10 12:03:54 -080080 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070081
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -070082 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070083
84 if (!net_device)
85 goto get_in_err;
86
87 if (net_device->destroy &&
88 atomic_read(&net_device->num_outstanding_sends) == 0)
Haiyang Zhang85799a32010-12-10 12:03:54 -080089 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -070090
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070091get_in_err:
Haiyang Zhang85799a32010-12-10 12:03:54 -080092 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070093}
94
Hank Janssenfceaf242009-07-13 15:34:54 -070095
KY Srinivasanc25aaf82014-04-30 10:14:31 -070096static int netvsc_destroy_buf(struct netvsc_device *net_device)
Haiyang Zhangec91cd02011-04-21 12:30:43 -070097{
98 struct nvsp_message *revoke_packet;
99 int ret = 0;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700100 struct net_device *ndev = net_device->ndev;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700101
102 /*
103 * If we got a section count, it means we received a
104 * SendReceiveBufferComplete msg (ie sent
105 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
106 * to send a revoke msg here
107 */
108 if (net_device->recv_section_cnt) {
109 /* Send the revoke receive buffer */
110 revoke_packet = &net_device->revoke_packet;
111 memset(revoke_packet, 0, sizeof(struct nvsp_message));
112
113 revoke_packet->hdr.msg_type =
114 NVSP_MSG1_TYPE_REVOKE_RECV_BUF;
115 revoke_packet->msg.v1_msg.
116 revoke_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
117
118 ret = vmbus_sendpacket(net_device->dev->channel,
119 revoke_packet,
120 sizeof(struct nvsp_message),
121 (unsigned long)revoke_packet,
122 VM_PKT_DATA_INBAND, 0);
123 /*
124 * If we failed here, we might as well return and
125 * have a leak rather than continue and a bugchk
126 */
127 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700128 netdev_err(ndev, "unable to send "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700129 "revoke receive buffer to netvsp\n");
K. Y. Srinivasana3e00532011-08-25 09:49:12 -0700130 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700131 }
132 }
133
134 /* Teardown the gpadl on the vsp end */
135 if (net_device->recv_buf_gpadl_handle) {
136 ret = vmbus_teardown_gpadl(net_device->dev->channel,
137 net_device->recv_buf_gpadl_handle);
138
139 /* If we failed here, we might as well return and have a leak
140 * rather than continue and a bugchk
141 */
142 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700143 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700144 "unable to teardown receive buffer's gpadl\n");
Dan Carpenter7f9615e2011-08-27 14:06:07 +0300145 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700146 }
147 net_device->recv_buf_gpadl_handle = 0;
148 }
149
150 if (net_device->recv_buf) {
151 /* Free up the receive buffer */
Haiyang Zhangb679ef72014-01-27 15:03:42 -0800152 vfree(net_device->recv_buf);
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700153 net_device->recv_buf = NULL;
154 }
155
156 if (net_device->recv_section) {
157 net_device->recv_section_cnt = 0;
158 kfree(net_device->recv_section);
159 net_device->recv_section = NULL;
160 }
161
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700162 /* Deal with the send buffer we may have setup.
163 * If we got a send section size, it means we received a
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800164 * NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE msg (ie sent
165 * NVSP_MSG1_TYPE_SEND_SEND_BUF msg) therefore, we need
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700166 * to send a revoke msg here
167 */
168 if (net_device->send_section_size) {
169 /* Send the revoke receive buffer */
170 revoke_packet = &net_device->revoke_packet;
171 memset(revoke_packet, 0, sizeof(struct nvsp_message));
172
173 revoke_packet->hdr.msg_type =
174 NVSP_MSG1_TYPE_REVOKE_SEND_BUF;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800175 revoke_packet->msg.v1_msg.revoke_send_buf.id =
176 NETVSC_SEND_BUFFER_ID;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700177
178 ret = vmbus_sendpacket(net_device->dev->channel,
179 revoke_packet,
180 sizeof(struct nvsp_message),
181 (unsigned long)revoke_packet,
182 VM_PKT_DATA_INBAND, 0);
183 /* If we failed here, we might as well return and
184 * have a leak rather than continue and a bugchk
185 */
186 if (ret != 0) {
187 netdev_err(ndev, "unable to send "
188 "revoke send buffer to netvsp\n");
189 return ret;
190 }
191 }
192 /* Teardown the gpadl on the vsp end */
193 if (net_device->send_buf_gpadl_handle) {
194 ret = vmbus_teardown_gpadl(net_device->dev->channel,
195 net_device->send_buf_gpadl_handle);
196
197 /* If we failed here, we might as well return and have a leak
198 * rather than continue and a bugchk
199 */
200 if (ret != 0) {
201 netdev_err(ndev,
202 "unable to teardown send buffer's gpadl\n");
203 return ret;
204 }
Dave Jones2f184232014-06-16 16:59:02 -0400205 net_device->send_buf_gpadl_handle = 0;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700206 }
207 if (net_device->send_buf) {
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800208 /* Free up the send buffer */
KY Srinivasan06b47aa2014-08-02 10:42:02 -0700209 vfree(net_device->send_buf);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700210 net_device->send_buf = NULL;
211 }
212 kfree(net_device->send_section_map);
213
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700214 return ret;
215}
216
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700217static int netvsc_init_buf(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700218{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700219 int ret = 0;
Nicholas Mc Guire7390fe92015-01-25 15:46:31 +0100220 unsigned long t;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800221 struct netvsc_device *net_device;
222 struct nvsp_message *init_packet;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700223 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700224
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800225 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700226 if (!net_device)
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700227 return -ENODEV;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700228 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700229
Haiyang Zhangb679ef72014-01-27 15:03:42 -0800230 net_device->recv_buf = vzalloc(net_device->recv_buf_size);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800231 if (!net_device->recv_buf) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700232 netdev_err(ndev, "unable to allocate receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700233 "buffer of size %d\n", net_device->recv_buf_size);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700234 ret = -ENOMEM;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800235 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700236 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700237
Bill Pemberton454f18a2009-07-27 16:47:24 -0400238 /*
239 * Establish the gpadl handle for this buffer on this
240 * channel. Note: This call uses the vmbus connection rather
241 * than the channel to establish the gpadl handle.
242 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800243 ret = vmbus_establish_gpadl(device->channel, net_device->recv_buf,
244 net_device->recv_buf_size,
245 &net_device->recv_buf_gpadl_handle);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700246 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700247 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700248 "unable to establish receive buffer's gpadl\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800249 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700250 }
251
Hank Janssenfceaf242009-07-13 15:34:54 -0700252
Bill Pemberton454f18a2009-07-27 16:47:24 -0400253 /* Notify the NetVsp of the gpadl handle */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800254 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700255
Haiyang Zhang85799a32010-12-10 12:03:54 -0800256 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700257
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800258 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_RECV_BUF;
259 init_packet->msg.v1_msg.send_recv_buf.
260 gpadl_handle = net_device->recv_buf_gpadl_handle;
261 init_packet->msg.v1_msg.
262 send_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
Hank Janssenfceaf242009-07-13 15:34:54 -0700263
Bill Pemberton454f18a2009-07-27 16:47:24 -0400264 /* Send the gpadl notification request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800265 ret = vmbus_sendpacket(device->channel, init_packet,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700266 sizeof(struct nvsp_message),
Haiyang Zhang85799a32010-12-10 12:03:54 -0800267 (unsigned long)init_packet,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800268 VM_PKT_DATA_INBAND,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700269 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700270 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700271 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700272 "unable to send receive buffer's gpadl to netvsp\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800273 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700274 }
275
K. Y. Srinivasan5c5781b32011-06-16 13:16:35 -0700276 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700277 BUG_ON(t == 0);
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800278
Hank Janssenfceaf242009-07-13 15:34:54 -0700279
Bill Pemberton454f18a2009-07-27 16:47:24 -0400280 /* Check the response */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800281 if (init_packet->msg.v1_msg.
282 send_recv_buf_complete.status != NVSP_STAT_SUCCESS) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700283 netdev_err(ndev, "Unable to complete receive buffer "
Haiyang Zhang8bff33a2011-09-01 12:19:48 -0700284 "initialization with NetVsp - status %d\n",
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800285 init_packet->msg.v1_msg.
286 send_recv_buf_complete.status);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700287 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800288 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700289 }
290
Bill Pemberton454f18a2009-07-27 16:47:24 -0400291 /* Parse the response */
Hank Janssenfceaf242009-07-13 15:34:54 -0700292
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800293 net_device->recv_section_cnt = init_packet->msg.
294 v1_msg.send_recv_buf_complete.num_sections;
Hank Janssenfceaf242009-07-13 15:34:54 -0700295
Haiyang Zhangc1813202011-11-30 07:19:07 -0800296 net_device->recv_section = kmemdup(
297 init_packet->msg.v1_msg.send_recv_buf_complete.sections,
298 net_device->recv_section_cnt *
299 sizeof(struct nvsp_1_receive_buffer_section),
300 GFP_KERNEL);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800301 if (net_device->recv_section == NULL) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700302 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800303 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700304 }
305
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700306 /*
307 * For 1st release, there should only be 1 section that represents the
308 * entire receive buffer
309 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800310 if (net_device->recv_section_cnt != 1 ||
311 net_device->recv_section->offset != 0) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700312 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800313 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700314 }
315
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700316 /* Now setup the send buffer.
317 */
KY Srinivasan06b47aa2014-08-02 10:42:02 -0700318 net_device->send_buf = vzalloc(net_device->send_buf_size);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700319 if (!net_device->send_buf) {
320 netdev_err(ndev, "unable to allocate send "
321 "buffer of size %d\n", net_device->send_buf_size);
322 ret = -ENOMEM;
323 goto cleanup;
324 }
325
326 /* Establish the gpadl handle for this buffer on this
327 * channel. Note: This call uses the vmbus connection rather
328 * than the channel to establish the gpadl handle.
329 */
330 ret = vmbus_establish_gpadl(device->channel, net_device->send_buf,
331 net_device->send_buf_size,
332 &net_device->send_buf_gpadl_handle);
333 if (ret != 0) {
334 netdev_err(ndev,
335 "unable to establish send buffer's gpadl\n");
336 goto cleanup;
337 }
338
339 /* Notify the NetVsp of the gpadl handle */
340 init_packet = &net_device->channel_init_pkt;
341 memset(init_packet, 0, sizeof(struct nvsp_message));
342 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_SEND_BUF;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800343 init_packet->msg.v1_msg.send_send_buf.gpadl_handle =
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700344 net_device->send_buf_gpadl_handle;
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800345 init_packet->msg.v1_msg.send_send_buf.id = NETVSC_SEND_BUFFER_ID;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700346
347 /* Send the gpadl notification request */
348 ret = vmbus_sendpacket(device->channel, init_packet,
349 sizeof(struct nvsp_message),
350 (unsigned long)init_packet,
351 VM_PKT_DATA_INBAND,
352 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
353 if (ret != 0) {
354 netdev_err(ndev,
355 "unable to send send buffer's gpadl to netvsp\n");
356 goto cleanup;
357 }
358
359 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
360 BUG_ON(t == 0);
361
362 /* Check the response */
363 if (init_packet->msg.v1_msg.
364 send_send_buf_complete.status != NVSP_STAT_SUCCESS) {
365 netdev_err(ndev, "Unable to complete send buffer "
366 "initialization with NetVsp - status %d\n",
367 init_packet->msg.v1_msg.
Haiyang Zhangc51ed182014-12-19 18:25:18 -0800368 send_send_buf_complete.status);
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700369 ret = -EINVAL;
370 goto cleanup;
371 }
372
373 /* Parse the response */
374 net_device->send_section_size = init_packet->msg.
375 v1_msg.send_send_buf_complete.section_size;
376
377 /* Section count is simply the size divided by the section size.
378 */
379 net_device->send_section_cnt =
380 net_device->send_buf_size/net_device->send_section_size;
381
382 dev_info(&device->device, "Send section size: %d, Section count:%d\n",
383 net_device->send_section_size, net_device->send_section_cnt);
384
385 /* Setup state for managing the send buffer. */
386 net_device->map_words = DIV_ROUND_UP(net_device->send_section_cnt,
387 BITS_PER_LONG);
388
389 net_device->send_section_map =
390 kzalloc(net_device->map_words * sizeof(ulong), GFP_KERNEL);
Wei Yongjundd1d3f82014-07-23 09:00:35 +0800391 if (net_device->send_section_map == NULL) {
392 ret = -ENOMEM;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700393 goto cleanup;
Wei Yongjundd1d3f82014-07-23 09:00:35 +0800394 }
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700395
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800396 goto exit;
Hank Janssenfceaf242009-07-13 15:34:54 -0700397
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800398cleanup:
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700399 netvsc_destroy_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700400
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800401exit:
Hank Janssenfceaf242009-07-13 15:34:54 -0700402 return ret;
403}
404
Hank Janssenfceaf242009-07-13 15:34:54 -0700405
Haiyang Zhangf157e782011-12-15 13:45:16 -0800406/* Negotiate NVSP protocol version */
407static int negotiate_nvsp_ver(struct hv_device *device,
408 struct netvsc_device *net_device,
409 struct nvsp_message *init_packet,
410 u32 nvsp_ver)
Hank Janssenfceaf242009-07-13 15:34:54 -0700411{
Nicholas Mc Guire7390fe92015-01-25 15:46:31 +0100412 int ret;
413 unsigned long t;
Haiyang Zhangf157e782011-12-15 13:45:16 -0800414
415 memset(init_packet, 0, sizeof(struct nvsp_message));
416 init_packet->hdr.msg_type = NVSP_MSG_TYPE_INIT;
417 init_packet->msg.init_msg.init.min_protocol_ver = nvsp_ver;
418 init_packet->msg.init_msg.init.max_protocol_ver = nvsp_ver;
419
420 /* Send the init request */
421 ret = vmbus_sendpacket(device->channel, init_packet,
422 sizeof(struct nvsp_message),
423 (unsigned long)init_packet,
424 VM_PKT_DATA_INBAND,
425 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
426
427 if (ret != 0)
428 return ret;
429
430 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
431
432 if (t == 0)
433 return -ETIMEDOUT;
434
435 if (init_packet->msg.init_msg.init_complete.status !=
436 NVSP_STAT_SUCCESS)
437 return -EINVAL;
438
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800439 if (nvsp_ver == NVSP_PROTOCOL_VERSION_1)
Haiyang Zhangf157e782011-12-15 13:45:16 -0800440 return 0;
441
442 /* NVSPv2 only: Send NDIS config */
443 memset(init_packet, 0, sizeof(struct nvsp_message));
444 init_packet->hdr.msg_type = NVSP_MSG2_TYPE_SEND_NDIS_CONFIG;
Haiyang Zhang4d3c9d32014-11-12 14:07:44 -0800445 init_packet->msg.v2_msg.send_ndis_config.mtu = net_device->ndev->mtu +
446 ETH_HLEN;
Haiyang Zhang1f5f3a72012-03-12 10:20:50 +0000447 init_packet->msg.v2_msg.send_ndis_config.capability.ieee8021q = 1;
Haiyang Zhangf157e782011-12-15 13:45:16 -0800448
449 ret = vmbus_sendpacket(device->channel, init_packet,
450 sizeof(struct nvsp_message),
451 (unsigned long)init_packet,
452 VM_PKT_DATA_INBAND, 0);
453
454 return ret;
455}
456
457static int netvsc_connect_vsp(struct hv_device *device)
458{
459 int ret;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800460 struct netvsc_device *net_device;
461 struct nvsp_message *init_packet;
462 int ndis_version;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700463 struct net_device *ndev;
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800464 u32 ver_list[] = { NVSP_PROTOCOL_VERSION_1, NVSP_PROTOCOL_VERSION_2,
465 NVSP_PROTOCOL_VERSION_4, NVSP_PROTOCOL_VERSION_5 };
466 int i, num_ver = 4; /* number of different NVSP versions */
Hank Janssenfceaf242009-07-13 15:34:54 -0700467
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800468 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700469 if (!net_device)
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700470 return -ENODEV;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700471 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700472
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800473 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700474
Haiyang Zhangf157e782011-12-15 13:45:16 -0800475 /* Negotiate the latest NVSP protocol supported */
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800476 for (i = num_ver - 1; i >= 0; i--)
477 if (negotiate_nvsp_ver(device, net_device, init_packet,
478 ver_list[i]) == 0) {
479 net_device->nvsp_version = ver_list[i];
480 break;
481 }
482
483 if (i < 0) {
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700484 ret = -EPROTO;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800485 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700486 }
Haiyang Zhangf157e782011-12-15 13:45:16 -0800487
488 pr_debug("Negotiated NVSP version:%x\n", net_device->nvsp_version);
489
Bill Pemberton454f18a2009-07-27 16:47:24 -0400490 /* Send the ndis version */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800491 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700492
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800493 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_4)
KY Srinivasan1f73db42014-04-09 15:00:46 -0700494 ndis_version = 0x00060001;
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800495 else
496 ndis_version = 0x0006001e;
Hank Janssenfceaf242009-07-13 15:34:54 -0700497
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800498 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_NDIS_VER;
499 init_packet->msg.v1_msg.
500 send_ndis_ver.ndis_major_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800501 (ndis_version & 0xFFFF0000) >> 16;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800502 init_packet->msg.v1_msg.
503 send_ndis_ver.ndis_minor_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800504 ndis_version & 0xFFFF;
Hank Janssenfceaf242009-07-13 15:34:54 -0700505
Bill Pemberton454f18a2009-07-27 16:47:24 -0400506 /* Send the init request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800507 ret = vmbus_sendpacket(device->channel, init_packet,
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800508 sizeof(struct nvsp_message),
509 (unsigned long)init_packet,
510 VM_PKT_DATA_INBAND, 0);
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700511 if (ret != 0)
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800512 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700513
Bill Pemberton454f18a2009-07-27 16:47:24 -0400514 /* Post the big receive buffer to NetVSP */
Haiyang Zhang99d30162014-03-09 16:10:59 -0700515 if (net_device->nvsp_version <= NVSP_PROTOCOL_VERSION_2)
516 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE_LEGACY;
517 else
518 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700519 net_device->send_buf_size = NETVSC_SEND_BUFFER_SIZE;
Haiyang Zhang99d30162014-03-09 16:10:59 -0700520
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700521 ret = netvsc_init_buf(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700522
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800523cleanup:
Hank Janssenfceaf242009-07-13 15:34:54 -0700524 return ret;
525}
526
Haiyang Zhang648dc592011-04-21 12:30:47 -0700527static void netvsc_disconnect_vsp(struct netvsc_device *net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700528{
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700529 netvsc_destroy_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700530}
531
Hank Janssen3e189512010-03-04 22:11:00 +0000532/*
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800533 * netvsc_device_remove - Callback when the root bus device is removed
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700534 */
K. Y. Srinivasan905620d2011-05-10 07:54:54 -0700535int netvsc_device_remove(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700536{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800537 struct netvsc_device *net_device;
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -0700538 unsigned long flags;
Hank Janssenfceaf242009-07-13 15:34:54 -0700539
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700540 net_device = hv_get_drvdata(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700541
Haiyang Zhang648dc592011-04-21 12:30:47 -0700542 netvsc_disconnect_vsp(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700543
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700544 /*
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700545 * Since we have already drained, we don't need to busy wait
546 * as was done in final_release_stor_device()
547 * Note that we cannot set the ext pointer to NULL until
548 * we have drained - to drain the outgoing packets, we need to
549 * allow incoming packets.
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700550 */
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700551
552 spin_lock_irqsave(&device->channel->inbound_lock, flags);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700553 hv_set_drvdata(device, NULL);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700554 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700555
K. Y. Srinivasan86c921a2011-09-13 10:59:54 -0700556 /*
557 * At this point, no one should be accessing net_device
558 * except in here
559 */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700560 dev_notice(&device->device, "net device safe to remove\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700561
Bill Pemberton454f18a2009-07-27 16:47:24 -0400562 /* Now, we can close the channel safely */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800563 vmbus_close(device->channel);
Hank Janssenfceaf242009-07-13 15:34:54 -0700564
Bill Pemberton454f18a2009-07-27 16:47:24 -0400565 /* Release all resources */
Markus Elfringaa99c472014-11-25 22:33:45 +0100566 vfree(net_device->sub_cb_buf);
Haiyang Zhangf90251c2014-08-15 19:18:19 +0000567 free_netvsc_device(net_device);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700568 return 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700569}
570
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000571
572#define RING_AVAIL_PERCENT_HIWATER 20
573#define RING_AVAIL_PERCENT_LOWATER 10
574
575/*
576 * Get the percentage of available bytes to write in the ring.
577 * The return value is in range from 0 to 100.
578 */
579static inline u32 hv_ringbuf_avail_percent(
580 struct hv_ring_buffer_info *ring_info)
581{
582 u32 avail_read, avail_write;
583
584 hv_get_ringbuffer_availbytes(ring_info, &avail_read, &avail_write);
585
586 return avail_write * 100 / ring_info->ring_datasize;
587}
588
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700589static inline void netvsc_free_send_slot(struct netvsc_device *net_device,
590 u32 index)
591{
592 sync_change_bit(index, net_device->send_section_map);
593}
594
KY Srinivasan97c17232014-02-16 16:38:44 -0800595static void netvsc_send_completion(struct netvsc_device *net_device,
596 struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800597 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700598{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800599 struct nvsp_message *nvsp_packet;
600 struct hv_netvsc_packet *nvsc_packet;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700601 struct net_device *ndev;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700602 u32 send_index;
Hank Janssenfceaf242009-07-13 15:34:54 -0700603
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700604 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700605
Haiyang Zhang85799a32010-12-10 12:03:54 -0800606 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -0800607 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -0700608
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800609 if ((nvsp_packet->hdr.msg_type == NVSP_MSG_TYPE_INIT_COMPLETE) ||
610 (nvsp_packet->hdr.msg_type ==
611 NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE) ||
612 (nvsp_packet->hdr.msg_type ==
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700613 NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE) ||
614 (nvsp_packet->hdr.msg_type ==
615 NVSP_MSG5_TYPE_SUBCHANNEL)) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400616 /* Copy the response back */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800617 memcpy(&net_device->channel_init_pkt, nvsp_packet,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700618 sizeof(struct nvsp_message));
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700619 complete(&net_device->channel_init_wait);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800620 } else if (nvsp_packet->hdr.msg_type ==
621 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE) {
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000622 int num_outstanding_sends;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700623 u16 q_idx = 0;
624 struct vmbus_channel *channel = device->channel;
625 int queue_sends;
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000626
Bill Pemberton454f18a2009-07-27 16:47:24 -0400627 /* Get the send context */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800628 nvsc_packet = (struct hv_netvsc_packet *)(unsigned long)
Haiyang Zhang415f2282011-01-26 12:12:13 -0800629 packet->trans_id;
Hank Janssenfceaf242009-07-13 15:34:54 -0700630
Bill Pemberton454f18a2009-07-27 16:47:24 -0400631 /* Notify the layer above us */
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700632 if (nvsc_packet) {
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700633 send_index = nvsc_packet->send_buf_index;
634 if (send_index != NETVSC_INVALID_INDEX)
635 netvsc_free_send_slot(net_device, send_index);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700636 q_idx = nvsc_packet->q_idx;
637 channel = nvsc_packet->channel;
Haiyang Zhang893f6622014-04-21 14:54:44 -0700638 nvsc_packet->send_completion(nvsc_packet->
639 send_completion_ctx);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700640 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700641
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000642 num_outstanding_sends =
643 atomic_dec_return(&net_device->num_outstanding_sends);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700644 queue_sends = atomic_dec_return(&net_device->
645 queue_sends[q_idx]);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800646
Haiyang Zhangdc5cd892012-06-04 06:42:38 +0000647 if (net_device->destroy && num_outstanding_sends == 0)
648 wake_up(&net_device->wait_drain);
649
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700650 if (netif_tx_queue_stopped(netdev_get_tx_queue(ndev, q_idx)) &&
651 !net_device->start_remove &&
652 (hv_ringbuf_avail_percent(&channel->outbound) >
653 RING_AVAIL_PERCENT_HIWATER || queue_sends < 1))
654 netif_tx_wake_queue(netdev_get_tx_queue(
655 ndev, q_idx));
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700656 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700657 netdev_err(ndev, "Unknown send completion packet type- "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700658 "%d received!!\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700659 }
660
Hank Janssenfceaf242009-07-13 15:34:54 -0700661}
662
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700663static u32 netvsc_get_next_send_section(struct netvsc_device *net_device)
664{
665 unsigned long index;
666 u32 max_words = net_device->map_words;
667 unsigned long *map_addr = (unsigned long *)net_device->send_section_map;
668 u32 section_cnt = net_device->send_section_cnt;
669 int ret_val = NETVSC_INVALID_INDEX;
670 int i;
671 int prev_val;
672
673 for (i = 0; i < max_words; i++) {
674 if (!~(map_addr[i]))
675 continue;
676 index = ffz(map_addr[i]);
677 prev_val = sync_test_and_set_bit(index, &map_addr[i]);
678 if (prev_val)
679 continue;
680 if ((index + (i * BITS_PER_LONG)) >= section_cnt)
681 break;
682 ret_val = (index + (i * BITS_PER_LONG));
683 break;
684 }
685 return ret_val;
686}
687
Lad, Prabhakarda19fcd2015-02-05 15:06:33 +0000688static u32 netvsc_copy_to_send_buf(struct netvsc_device *net_device,
689 unsigned int section_index,
690 struct hv_netvsc_packet *packet)
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700691{
692 char *start = net_device->send_buf;
693 char *dest = (start + (section_index * net_device->send_section_size));
694 int i;
695 u32 msg_size = 0;
696
697 for (i = 0; i < packet->page_buf_cnt; i++) {
698 char *src = phys_to_virt(packet->page_buf[i].pfn << PAGE_SHIFT);
699 u32 offset = packet->page_buf[i].offset;
700 u32 len = packet->page_buf[i].len;
701
702 memcpy(dest, (src + offset), len);
703 msg_size += len;
704 dest += len;
705 }
706 return msg_size;
707}
708
K. Y. Srinivasanf9819f02011-05-12 19:34:49 -0700709int netvsc_send(struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800710 struct hv_netvsc_packet *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700711{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800712 struct netvsc_device *net_device;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700713 int ret = 0;
Greg Kroah-Hartman223c1aa2009-08-28 16:20:53 -0700714 struct nvsp_message sendMessage;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700715 struct net_device *ndev;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700716 struct vmbus_channel *out_channel = NULL;
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000717 u64 req_id;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700718 unsigned int section_index = NETVSC_INVALID_INDEX;
719 u32 msg_size = 0;
Haiyang Zhangd953ca42015-01-29 12:34:49 -0800720 struct sk_buff *skb = NULL;
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700721 u16 q_idx = packet->q_idx;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700722
Hank Janssenfceaf242009-07-13 15:34:54 -0700723
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800724 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700725 if (!net_device)
K. Y. Srinivasanff2bd692011-08-25 09:49:15 -0700726 return -ENODEV;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700727 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700728
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800729 sendMessage.hdr.msg_type = NVSP_MSG1_TYPE_SEND_RNDIS_PKT;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800730 if (packet->is_data_pkt) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700731 /* 0 is RMC_DATA; */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800732 sendMessage.msg.v1_msg.send_rndis_pkt.channel_type = 0;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700733 } else {
734 /* 1 is RMC_CONTROL; */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800735 sendMessage.msg.v1_msg.send_rndis_pkt.channel_type = 1;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700736 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700737
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700738 /* Attempt to send via sendbuf */
739 if (packet->total_data_buflen < net_device->send_section_size) {
740 section_index = netvsc_get_next_send_section(net_device);
741 if (section_index != NETVSC_INVALID_INDEX) {
742 msg_size = netvsc_copy_to_send_buf(net_device,
743 section_index,
744 packet);
745 skb = (struct sk_buff *)
746 (unsigned long)packet->send_completion_tid;
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700747 packet->page_buf_cnt = 0;
748 }
749 }
750 packet->send_buf_index = section_index;
751
752
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800753 sendMessage.msg.v1_msg.send_rndis_pkt.send_buf_section_index =
KY Srinivasanc25aaf82014-04-30 10:14:31 -0700754 section_index;
755 sendMessage.msg.v1_msg.send_rndis_pkt.send_buf_section_size = msg_size;
Hank Janssenfceaf242009-07-13 15:34:54 -0700756
Haiyang Zhang893f6622014-04-21 14:54:44 -0700757 if (packet->send_completion)
Haiyang Zhang00ca8f02013-04-26 08:25:55 +0000758 req_id = (ulong)packet;
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000759 else
760 req_id = 0;
761
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700762 out_channel = net_device->chn_table[packet->q_idx];
763 if (out_channel == NULL)
764 out_channel = device->channel;
765 packet->channel = out_channel;
766
Haiyang Zhangc3582a22014-12-01 13:28:39 -0800767 if (out_channel->rescind)
768 return -ENODEV;
769
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800770 if (packet->page_buf_cnt) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700771 ret = vmbus_sendpacket_pagebuffer(out_channel,
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800772 packet->page_buf,
773 packet->page_buf_cnt,
Greg Kroah-Hartmanff3f8ee2010-10-21 09:32:46 -0700774 &sendMessage,
775 sizeof(struct nvsp_message),
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000776 req_id);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700777 } else {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700778 ret = vmbus_sendpacket(out_channel, &sendMessage,
Haiyang Zhange4d59ac2011-06-17 07:58:04 -0700779 sizeof(struct nvsp_message),
Haiyang Zhangf1ea3cd2013-04-05 11:44:40 +0000780 req_id,
Haiyang Zhange4d59ac2011-06-17 07:58:04 -0700781 VM_PKT_DATA_INBAND,
782 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Hank Janssenfceaf242009-07-13 15:34:54 -0700783 }
784
Haiyang Zhang1d068252011-12-02 11:56:25 -0800785 if (ret == 0) {
786 atomic_inc(&net_device->num_outstanding_sends);
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700787 atomic_inc(&net_device->queue_sends[q_idx]);
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700788
789 if (hv_ringbuf_avail_percent(&out_channel->outbound) <
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000790 RING_AVAIL_PERCENT_LOWATER) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700791 netif_tx_stop_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700792 ndev, q_idx));
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700793
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000794 if (atomic_read(&net_device->
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700795 queue_sends[q_idx]) < 1)
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700796 netif_tx_wake_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700797 ndev, q_idx));
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000798 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800799 } else if (ret == -EAGAIN) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700800 netif_tx_stop_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700801 ndev, q_idx));
802 if (atomic_read(&net_device->queue_sends[q_idx]) < 1) {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700803 netif_tx_wake_queue(netdev_get_tx_queue(
KY Srinivasan3a67c9c2014-10-05 10:42:51 -0700804 ndev, q_idx));
Haiyang Zhang33be96e2012-03-27 13:20:45 +0000805 ret = -ENOSPC;
806 }
Haiyang Zhang1d068252011-12-02 11:56:25 -0800807 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700808 netdev_err(ndev, "Unable to send packet %p ret %d\n",
Haiyang Zhang85799a32010-12-10 12:03:54 -0800809 packet, ret);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800810 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700811
Haiyang Zhangd953ca42015-01-29 12:34:49 -0800812 if (ret != 0) {
813 if (section_index != NETVSC_INVALID_INDEX)
814 netvsc_free_send_slot(net_device, section_index);
815 } else if (skb) {
816 dev_kfree_skb_any(skb);
817 }
818
Hank Janssenfceaf242009-07-13 15:34:54 -0700819 return ret;
820}
821
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700822static void netvsc_send_recv_completion(struct hv_device *device,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700823 struct vmbus_channel *channel,
KY Srinivasan97c17232014-02-16 16:38:44 -0800824 struct netvsc_device *net_device,
Haiyang Zhang63f69212012-10-02 05:30:23 +0000825 u64 transaction_id, u32 status)
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700826{
827 struct nvsp_message recvcompMessage;
828 int retries = 0;
829 int ret;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700830 struct net_device *ndev;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700831
832 ndev = net_device->ndev;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700833
834 recvcompMessage.hdr.msg_type =
835 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE;
836
Haiyang Zhang63f69212012-10-02 05:30:23 +0000837 recvcompMessage.msg.v1_msg.send_rndis_pkt_complete.status = status;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700838
839retry_send_cmplt:
840 /* Send the completion */
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700841 ret = vmbus_sendpacket(channel, &recvcompMessage,
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700842 sizeof(struct nvsp_message), transaction_id,
843 VM_PKT_COMP, 0);
844 if (ret == 0) {
845 /* success */
846 /* no-op */
K. Y. Srinivasand2598f02011-08-25 09:48:58 -0700847 } else if (ret == -EAGAIN) {
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700848 /* no more room...wait a bit and attempt to retry 3 times */
849 retries++;
Haiyang Zhangd9871152011-09-01 12:19:41 -0700850 netdev_err(ndev, "unable to send receive completion pkt"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700851 " (tid %llx)...retrying %d\n", transaction_id, retries);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700852
853 if (retries < 4) {
854 udelay(100);
855 goto retry_send_cmplt;
856 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700857 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700858 "completion pkt (tid %llx)...give up retrying\n",
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700859 transaction_id);
860 }
861 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700862 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700863 "completion pkt - %llx\n", transaction_id);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700864 }
865}
866
KY Srinivasan97c17232014-02-16 16:38:44 -0800867static void netvsc_receive(struct netvsc_device *net_device,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700868 struct vmbus_channel *channel,
KY Srinivasan97c17232014-02-16 16:38:44 -0800869 struct hv_device *device,
870 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700871{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800872 struct vmtransfer_page_packet_header *vmxferpage_packet;
873 struct nvsp_message *nvsp_packet;
Haiyang Zhang4baab262014-04-21 14:54:43 -0700874 struct hv_netvsc_packet nv_pkt;
875 struct hv_netvsc_packet *netvsc_packet = &nv_pkt;
876 u32 status = NVSP_STAT_SUCCESS;
Haiyang Zhang45326342011-12-15 13:45:15 -0800877 int i;
878 int count = 0;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700879 struct net_device *ndev;
K. Y. Srinivasan779b4d12011-04-26 09:20:22 -0700880
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700881 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700882
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700883 /*
884 * All inbound packets other than send completion should be xfer page
885 * packet
886 */
Haiyang Zhang415f2282011-01-26 12:12:13 -0800887 if (packet->type != VM_PKT_DATA_USING_XFER_PAGES) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700888 netdev_err(ndev, "Unknown packet type received - %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -0800889 packet->type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700890 return;
891 }
892
Haiyang Zhang85799a32010-12-10 12:03:54 -0800893 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -0800894 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -0700895
Bill Pemberton454f18a2009-07-27 16:47:24 -0400896 /* Make sure this is a valid nvsp packet */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800897 if (nvsp_packet->hdr.msg_type !=
898 NVSP_MSG1_TYPE_SEND_RNDIS_PKT) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700899 netdev_err(ndev, "Unknown nvsp packet type received-"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700900 " %d\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700901 return;
902 }
903
Haiyang Zhang85799a32010-12-10 12:03:54 -0800904 vmxferpage_packet = (struct vmtransfer_page_packet_header *)packet;
Hank Janssenfceaf242009-07-13 15:34:54 -0700905
Haiyang Zhang415f2282011-01-26 12:12:13 -0800906 if (vmxferpage_packet->xfer_pageset_id != NETVSC_RECEIVE_BUFFER_ID) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700907 netdev_err(ndev, "Invalid xfer page set id - "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700908 "expecting %x got %x\n", NETVSC_RECEIVE_BUFFER_ID,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800909 vmxferpage_packet->xfer_pageset_id);
Hank Janssenfceaf242009-07-13 15:34:54 -0700910 return;
911 }
912
Haiyang Zhang4baab262014-04-21 14:54:43 -0700913 count = vmxferpage_packet->range_cnt;
914 netvsc_packet->device = device;
915 netvsc_packet->channel = channel;
Hank Janssenfceaf242009-07-13 15:34:54 -0700916
Bill Pemberton454f18a2009-07-27 16:47:24 -0400917 /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
Haiyang Zhang4baab262014-04-21 14:54:43 -0700918 for (i = 0; i < count; i++) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400919 /* Initialize the netvsc packet */
Haiyang Zhang63f69212012-10-02 05:30:23 +0000920 netvsc_packet->status = NVSP_STAT_SUCCESS;
Haiyang Zhang45326342011-12-15 13:45:15 -0800921 netvsc_packet->data = (void *)((unsigned long)net_device->
922 recv_buf + vmxferpage_packet->ranges[i].byte_offset);
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800923 netvsc_packet->total_data_buflen =
Haiyang Zhang415f2282011-01-26 12:12:13 -0800924 vmxferpage_packet->ranges[i].byte_count;
Hank Janssenfceaf242009-07-13 15:34:54 -0700925
Bill Pemberton454f18a2009-07-27 16:47:24 -0400926 /* Pass it to the upper layer */
K. Y. Srinivasanac6f7852011-05-12 19:34:58 -0700927 rndis_filter_receive(device, netvsc_packet);
Hank Janssenfceaf242009-07-13 15:34:54 -0700928
Haiyang Zhang4baab262014-04-21 14:54:43 -0700929 if (netvsc_packet->status != NVSP_STAT_SUCCESS)
930 status = NVSP_STAT_FAIL;
Hank Janssenfceaf242009-07-13 15:34:54 -0700931 }
932
Haiyang Zhang4baab262014-04-21 14:54:43 -0700933 netvsc_send_recv_completion(device, channel, net_device,
934 vmxferpage_packet->d.trans_id, status);
Hank Janssenfceaf242009-07-13 15:34:54 -0700935}
936
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700937
938static void netvsc_send_table(struct hv_device *hdev,
939 struct vmpacket_descriptor *vmpkt)
940{
941 struct netvsc_device *nvscdev;
942 struct net_device *ndev;
943 struct nvsp_message *nvmsg;
944 int i;
945 u32 count, *tab;
946
947 nvscdev = get_outbound_net_device(hdev);
948 if (!nvscdev)
949 return;
950 ndev = nvscdev->ndev;
951
952 nvmsg = (struct nvsp_message *)((unsigned long)vmpkt +
953 (vmpkt->offset8 << 3));
954
955 if (nvmsg->hdr.msg_type != NVSP_MSG5_TYPE_SEND_INDIRECTION_TABLE)
956 return;
957
958 count = nvmsg->msg.v5_msg.send_table.count;
959 if (count != VRSS_SEND_TAB_SIZE) {
960 netdev_err(ndev, "Received wrong send-table size:%u\n", count);
961 return;
962 }
963
964 tab = (u32 *)((unsigned long)&nvmsg->msg.v5_msg.send_table +
965 nvmsg->msg.v5_msg.send_table.offset);
966
967 for (i = 0; i < count; i++)
968 nvscdev->send_table[i] = tab[i];
969}
970
971void netvsc_channel_cb(void *context)
Hank Janssenfceaf242009-07-13 15:34:54 -0700972{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700973 int ret;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700974 struct vmbus_channel *channel = (struct vmbus_channel *)context;
975 struct hv_device *device;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800976 struct netvsc_device *net_device;
977 u32 bytes_recvd;
978 u64 request_id;
Greg Kroah-Hartman8dc0a062009-08-27 16:02:36 -0700979 struct vmpacket_descriptor *desc;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400980 unsigned char *buffer;
981 int bufferlen = NETVSC_PACKET_SIZE;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700982 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700983
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700984 if (channel->primary_channel != NULL)
985 device = channel->primary_channel->device_obj;
986 else
987 device = channel->device_obj;
988
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800989 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700990 if (!net_device)
KY Srinivasanee0c4c32014-02-16 16:38:45 -0800991 return;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -0700992 ndev = net_device->ndev;
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700993 buffer = get_per_channel_state(channel);
Hank Janssenfceaf242009-07-13 15:34:54 -0700994
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700995 do {
Haiyang Zhang5b54dac2014-04-21 10:20:28 -0700996 ret = vmbus_recvpacket_raw(channel, buffer, bufferlen,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800997 &bytes_recvd, &request_id);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700998 if (ret == 0) {
Haiyang Zhang85799a32010-12-10 12:03:54 -0800999 if (bytes_recvd > 0) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001000 desc = (struct vmpacket_descriptor *)buffer;
Haiyang Zhang415f2282011-01-26 12:12:13 -08001001 switch (desc->type) {
1002 case VM_PKT_COMP:
KY Srinivasan97c17232014-02-16 16:38:44 -08001003 netvsc_send_completion(net_device,
1004 device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001005 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001006
Haiyang Zhang415f2282011-01-26 12:12:13 -08001007 case VM_PKT_DATA_USING_XFER_PAGES:
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001008 netvsc_receive(net_device, channel,
1009 device, desc);
1010 break;
1011
1012 case VM_PKT_DATA_INBAND:
1013 netvsc_send_table(device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001014 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001015
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001016 default:
Haiyang Zhangd9871152011-09-01 12:19:41 -07001017 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001018 "unhandled packet type %d, "
1019 "tid %llx len %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -08001020 desc->type, request_id,
Haiyang Zhang85799a32010-12-10 12:03:54 -08001021 bytes_recvd);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001022 break;
Hank Janssenfceaf242009-07-13 15:34:54 -07001023 }
1024
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001025 } else {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001026 /*
1027 * We are done for this pass.
1028 */
Hank Janssenfceaf242009-07-13 15:34:54 -07001029 break;
1030 }
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001031
K. Y. Srinivasan3d5cad92011-08-25 09:48:59 -07001032 } else if (ret == -ENOBUFS) {
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001033 if (bufferlen > NETVSC_PACKET_SIZE)
1034 kfree(buffer);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001035 /* Handle large packet */
Haiyang Zhang85799a32010-12-10 12:03:54 -08001036 buffer = kmalloc(bytes_recvd, GFP_ATOMIC);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001037 if (buffer == NULL) {
Bill Pemberton454f18a2009-07-27 16:47:24 -04001038 /* Try again next time around */
Haiyang Zhangd9871152011-09-01 12:19:41 -07001039 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -07001040 "unable to allocate buffer of size "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001041 "(%d)!!\n", bytes_recvd);
Hank Janssenfceaf242009-07-13 15:34:54 -07001042 break;
1043 }
1044
Haiyang Zhang85799a32010-12-10 12:03:54 -08001045 bufferlen = bytes_recvd;
Hank Janssenfceaf242009-07-13 15:34:54 -07001046 }
1047 } while (1);
1048
KY Srinivasanee0c4c32014-02-16 16:38:45 -08001049 if (bufferlen > NETVSC_PACKET_SIZE)
1050 kfree(buffer);
Hank Janssenfceaf242009-07-13 15:34:54 -07001051 return;
1052}
Haiyang Zhangaf24ce42011-04-21 12:30:40 -07001053
1054/*
Haiyang Zhangb637e022011-04-21 12:30:45 -07001055 * netvsc_device_add - Callback when the device belonging to this
1056 * driver is added
1057 */
K. Y. Srinivasan7bd23a42011-05-10 07:54:53 -07001058int netvsc_device_add(struct hv_device *device, void *additional_info)
Haiyang Zhangb637e022011-04-21 12:30:45 -07001059{
1060 int ret = 0;
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001061 int ring_size =
1062 ((struct netvsc_device_info *)additional_info)->ring_size;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001063 struct netvsc_device *net_device;
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -07001064 struct net_device *ndev;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001065
1066 net_device = alloc_net_device(device);
Dan Carpenterb1c84922014-09-04 14:11:23 +03001067 if (!net_device)
1068 return -ENOMEM;
Haiyang Zhangb637e022011-04-21 12:30:45 -07001069
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001070 net_device->ring_size = ring_size;
1071
K. Y. Srinivasan2ddd5e52011-09-13 10:59:49 -07001072 /*
1073 * Coming into this function, struct net_device * is
1074 * registered as the driver private data.
1075 * In alloc_net_device(), we register struct netvsc_device *
1076 * as the driver private data and stash away struct net_device *
1077 * in struct netvsc_device *.
1078 */
1079 ndev = net_device->ndev;
1080
Haiyang Zhangb637e022011-04-21 12:30:45 -07001081 /* Initialize the NetVSC channel extension */
K. Y. Srinivasan35abb212011-05-10 07:55:41 -07001082 init_completion(&net_device->channel_init_wait);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001083
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001084 set_per_channel_state(device->channel, net_device->cb_buffer);
1085
Haiyang Zhangb637e022011-04-21 12:30:45 -07001086 /* Open the channel */
K. Y. Srinivasanaae23982011-05-12 19:35:05 -07001087 ret = vmbus_open(device->channel, ring_size * PAGE_SIZE,
1088 ring_size * PAGE_SIZE, NULL, 0,
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001089 netvsc_channel_cb, device->channel);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001090
1091 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001092 netdev_err(ndev, "unable to open channel: %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001093 goto cleanup;
1094 }
1095
1096 /* Channel is opened */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001097 pr_info("hv_netvsc channel opened successfully\n");
Haiyang Zhangb637e022011-04-21 12:30:45 -07001098
Haiyang Zhang5b54dac2014-04-21 10:20:28 -07001099 net_device->chn_table[0] = device->channel;
1100
Haiyang Zhangb637e022011-04-21 12:30:45 -07001101 /* Connect with the NetVsp */
1102 ret = netvsc_connect_vsp(device);
1103 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -07001104 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -07001105 "unable to connect to NetVSP - %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001106 goto close;
1107 }
1108
1109 return ret;
1110
1111close:
1112 /* Now, we can close the channel safely */
1113 vmbus_close(device->channel);
1114
1115cleanup:
Haiyang Zhangf90251c2014-08-15 19:18:19 +00001116 free_netvsc_device(net_device);
Haiyang Zhangb637e022011-04-21 12:30:45 -07001117
1118 return ret;
1119}