blob: b6ac152a9bd00df1a548dace4f652b466956e7ff [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
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
16 *
17 * Authors:
Haiyang Zhangd0e94d12009-11-23 17:00:22 +000018 * Haiyang Zhang <haiyangz@microsoft.com>
Hank Janssenfceaf242009-07-13 15:34:54 -070019 * Hank Janssen <hjanssen@microsoft.com>
Hank Janssenfceaf242009-07-13 15:34:54 -070020 */
Hank Jansseneb335bc2011-03-29 13:58:48 -070021#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
Greg Kroah-Hartman5654e932009-07-14 15:08:20 -070023#include <linux/kernel.h>
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -080024#include <linux/sched.h>
25#include <linux/wait.h>
Greg Kroah-Hartman0ffa63b2009-07-15 11:06:01 -070026#include <linux/mm.h>
Greg Kroah-Hartmanb4362c92009-07-16 11:50:41 -070027#include <linux/delay.h>
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -070028#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Haiyang Zhangd9871152011-09-01 12:19:41 -070030#include <linux/netdevice.h>
K. Y. Srinivasan3f335ea2011-05-12 19:34:15 -070031
K. Y. Srinivasan5ca72522011-05-12 19:34:37 -070032#include "hyperv_net.h"
Hank Janssenfceaf242009-07-13 15:34:54 -070033
34
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080035static struct netvsc_device *alloc_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070036{
Haiyang Zhang85799a32010-12-10 12:03:54 -080037 struct netvsc_device *net_device;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070038 struct net_device *ndev = hv_get_drvdata(device);
Hank Janssenfceaf242009-07-13 15:34:54 -070039
Haiyang Zhang85799a32010-12-10 12:03:54 -080040 net_device = kzalloc(sizeof(struct netvsc_device), GFP_KERNEL);
41 if (!net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -070042 return NULL;
43
Hank Janssenfceaf242009-07-13 15:34:54 -070044
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -070045 net_device->destroy = false;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -080046 net_device->dev = device;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070047 net_device->ndev = ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -070048
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070049 hv_set_drvdata(device, net_device);
Haiyang Zhang85799a32010-12-10 12:03:54 -080050 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070051}
52
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080053static struct netvsc_device *get_outbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070054{
Haiyang Zhang85799a32010-12-10 12:03:54 -080055 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070056
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070057 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070058 if (net_device && net_device->destroy)
Haiyang Zhang85799a32010-12-10 12:03:54 -080059 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -070060
Haiyang Zhang85799a32010-12-10 12:03:54 -080061 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070062}
63
Haiyang Zhang5a71ae32010-12-10 12:03:55 -080064static struct netvsc_device *get_inbound_net_device(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -070065{
Haiyang Zhang85799a32010-12-10 12:03:54 -080066 struct netvsc_device *net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070067
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070068 net_device = hv_get_drvdata(device);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070069
70 if (!net_device)
71 goto get_in_err;
72
73 if (net_device->destroy &&
74 atomic_read(&net_device->num_outstanding_sends) == 0)
Haiyang Zhang85799a32010-12-10 12:03:54 -080075 net_device = NULL;
Hank Janssenfceaf242009-07-13 15:34:54 -070076
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -070077get_in_err:
Haiyang Zhang85799a32010-12-10 12:03:54 -080078 return net_device;
Hank Janssenfceaf242009-07-13 15:34:54 -070079}
80
Hank Janssenfceaf242009-07-13 15:34:54 -070081
Haiyang Zhangec91cd02011-04-21 12:30:43 -070082static int netvsc_destroy_recv_buf(struct netvsc_device *net_device)
83{
84 struct nvsp_message *revoke_packet;
85 int ret = 0;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -070086 struct net_device *ndev = net_device->ndev;
Haiyang Zhangec91cd02011-04-21 12:30:43 -070087
88 /*
89 * If we got a section count, it means we received a
90 * SendReceiveBufferComplete msg (ie sent
91 * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
92 * to send a revoke msg here
93 */
94 if (net_device->recv_section_cnt) {
95 /* Send the revoke receive buffer */
96 revoke_packet = &net_device->revoke_packet;
97 memset(revoke_packet, 0, sizeof(struct nvsp_message));
98
99 revoke_packet->hdr.msg_type =
100 NVSP_MSG1_TYPE_REVOKE_RECV_BUF;
101 revoke_packet->msg.v1_msg.
102 revoke_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
103
104 ret = vmbus_sendpacket(net_device->dev->channel,
105 revoke_packet,
106 sizeof(struct nvsp_message),
107 (unsigned long)revoke_packet,
108 VM_PKT_DATA_INBAND, 0);
109 /*
110 * If we failed here, we might as well return and
111 * have a leak rather than continue and a bugchk
112 */
113 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700114 netdev_err(ndev, "unable to send "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700115 "revoke receive buffer to netvsp\n");
K. Y. Srinivasana3e00532011-08-25 09:49:12 -0700116 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700117 }
118 }
119
120 /* Teardown the gpadl on the vsp end */
121 if (net_device->recv_buf_gpadl_handle) {
122 ret = vmbus_teardown_gpadl(net_device->dev->channel,
123 net_device->recv_buf_gpadl_handle);
124
125 /* If we failed here, we might as well return and have a leak
126 * rather than continue and a bugchk
127 */
128 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700129 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700130 "unable to teardown receive buffer's gpadl\n");
Dan Carpenter7f9615e2011-08-27 14:06:07 +0300131 return ret;
Haiyang Zhangec91cd02011-04-21 12:30:43 -0700132 }
133 net_device->recv_buf_gpadl_handle = 0;
134 }
135
136 if (net_device->recv_buf) {
137 /* Free up the receive buffer */
138 free_pages((unsigned long)net_device->recv_buf,
139 get_order(net_device->recv_buf_size));
140 net_device->recv_buf = NULL;
141 }
142
143 if (net_device->recv_section) {
144 net_device->recv_section_cnt = 0;
145 kfree(net_device->recv_section);
146 net_device->recv_section = NULL;
147 }
148
149 return ret;
150}
151
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800152static int netvsc_init_recv_buf(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700153{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700154 int ret = 0;
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700155 int t;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800156 struct netvsc_device *net_device;
157 struct nvsp_message *init_packet;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700158 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700159
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800160 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700161 if (!net_device)
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700162 return -ENODEV;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700163 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700164
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800165 net_device->recv_buf =
K. Y. Srinivasandf3493e2011-02-11 09:59:00 -0800166 (void *)__get_free_pages(GFP_KERNEL|__GFP_ZERO,
167 get_order(net_device->recv_buf_size));
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800168 if (!net_device->recv_buf) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700169 netdev_err(ndev, "unable to allocate receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700170 "buffer of size %d\n", net_device->recv_buf_size);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700171 ret = -ENOMEM;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800172 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700173 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700174
Bill Pemberton454f18a2009-07-27 16:47:24 -0400175 /*
176 * Establish the gpadl handle for this buffer on this
177 * channel. Note: This call uses the vmbus connection rather
178 * than the channel to establish the gpadl handle.
179 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800180 ret = vmbus_establish_gpadl(device->channel, net_device->recv_buf,
181 net_device->recv_buf_size,
182 &net_device->recv_buf_gpadl_handle);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700183 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700184 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700185 "unable to establish receive buffer's gpadl\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800186 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700187 }
188
Hank Janssenfceaf242009-07-13 15:34:54 -0700189
Bill Pemberton454f18a2009-07-27 16:47:24 -0400190 /* Notify the NetVsp of the gpadl handle */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800191 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700192
Haiyang Zhang85799a32010-12-10 12:03:54 -0800193 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700194
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800195 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_RECV_BUF;
196 init_packet->msg.v1_msg.send_recv_buf.
197 gpadl_handle = net_device->recv_buf_gpadl_handle;
198 init_packet->msg.v1_msg.
199 send_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID;
Hank Janssenfceaf242009-07-13 15:34:54 -0700200
Bill Pemberton454f18a2009-07-27 16:47:24 -0400201 /* Send the gpadl notification request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800202 ret = vmbus_sendpacket(device->channel, init_packet,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700203 sizeof(struct nvsp_message),
Haiyang Zhang85799a32010-12-10 12:03:54 -0800204 (unsigned long)init_packet,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800205 VM_PKT_DATA_INBAND,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700206 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700207 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700208 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700209 "unable to send receive buffer's gpadl to netvsp\n");
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800210 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700211 }
212
K. Y. Srinivasan5c5781b32011-06-16 13:16:35 -0700213 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700214 BUG_ON(t == 0);
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800215
Hank Janssenfceaf242009-07-13 15:34:54 -0700216
Bill Pemberton454f18a2009-07-27 16:47:24 -0400217 /* Check the response */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800218 if (init_packet->msg.v1_msg.
219 send_recv_buf_complete.status != NVSP_STAT_SUCCESS) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700220 netdev_err(ndev, "Unable to complete receive buffer "
Haiyang Zhang8bff33a2011-09-01 12:19:48 -0700221 "initialization with NetVsp - status %d\n",
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800222 init_packet->msg.v1_msg.
223 send_recv_buf_complete.status);
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700224 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800225 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700226 }
227
Bill Pemberton454f18a2009-07-27 16:47:24 -0400228 /* Parse the response */
Hank Janssenfceaf242009-07-13 15:34:54 -0700229
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800230 net_device->recv_section_cnt = init_packet->msg.
231 v1_msg.send_recv_buf_complete.num_sections;
Hank Janssenfceaf242009-07-13 15:34:54 -0700232
Haiyang Zhangc1813202011-11-30 07:19:07 -0800233 net_device->recv_section = kmemdup(
234 init_packet->msg.v1_msg.send_recv_buf_complete.sections,
235 net_device->recv_section_cnt *
236 sizeof(struct nvsp_1_receive_buffer_section),
237 GFP_KERNEL);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800238 if (net_device->recv_section == NULL) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700239 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800240 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700241 }
242
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700243 /*
244 * For 1st release, there should only be 1 section that represents the
245 * entire receive buffer
246 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800247 if (net_device->recv_section_cnt != 1 ||
248 net_device->recv_section->offset != 0) {
K. Y. Srinivasan927bc332011-08-25 09:49:13 -0700249 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800250 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700251 }
252
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800253 goto exit;
Hank Janssenfceaf242009-07-13 15:34:54 -0700254
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800255cleanup:
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800256 netvsc_destroy_recv_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700257
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800258exit:
Hank Janssenfceaf242009-07-13 15:34:54 -0700259 return ret;
260}
261
Hank Janssenfceaf242009-07-13 15:34:54 -0700262
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800263static int netvsc_connect_vsp(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700264{
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700265 int ret, t;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800266 struct netvsc_device *net_device;
267 struct nvsp_message *init_packet;
268 int ndis_version;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700269 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700270
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800271 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700272 if (!net_device)
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700273 return -ENODEV;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700274 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700275
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800276 init_packet = &net_device->channel_init_pkt;
Hank Janssenfceaf242009-07-13 15:34:54 -0700277
Haiyang Zhang85799a32010-12-10 12:03:54 -0800278 memset(init_packet, 0, sizeof(struct nvsp_message));
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800279 init_packet->hdr.msg_type = NVSP_MSG_TYPE_INIT;
280 init_packet->msg.init_msg.init.min_protocol_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800281 NVSP_MIN_PROTOCOL_VERSION;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800282 init_packet->msg.init_msg.init.max_protocol_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800283 NVSP_MAX_PROTOCOL_VERSION;
Hank Janssenfceaf242009-07-13 15:34:54 -0700284
Bill Pemberton454f18a2009-07-27 16:47:24 -0400285 /* Send the init request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800286 ret = vmbus_sendpacket(device->channel, init_packet,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700287 sizeof(struct nvsp_message),
Haiyang Zhang85799a32010-12-10 12:03:54 -0800288 (unsigned long)init_packet,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800289 VM_PKT_DATA_INBAND,
Greg Kroah-Hartman5a4df292010-10-21 09:43:24 -0700290 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Hank Janssenfceaf242009-07-13 15:34:54 -0700291
Hank Janssenb8a3d522011-03-29 13:58:45 -0700292 if (ret != 0)
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800293 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700294
K. Y. Srinivasan5c5781b32011-06-16 13:16:35 -0700295 t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ);
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700296
297 if (t == 0) {
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800298 ret = -ETIMEDOUT;
299 goto cleanup;
300 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700301
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800302 if (init_packet->msg.init_msg.init_complete.status !=
303 NVSP_STAT_SUCCESS) {
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700304 ret = -EINVAL;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800305 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700306 }
307
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800308 if (init_packet->msg.init_msg.init_complete.
309 negotiated_protocol_ver != NVSP_PROTOCOL_VERSION_1) {
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700310 ret = -EPROTO;
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800311 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700312 }
Bill Pemberton454f18a2009-07-27 16:47:24 -0400313 /* Send the ndis version */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800314 memset(init_packet, 0, sizeof(struct nvsp_message));
Hank Janssenfceaf242009-07-13 15:34:54 -0700315
Haiyang Zhang85799a32010-12-10 12:03:54 -0800316 ndis_version = 0x00050000;
Hank Janssenfceaf242009-07-13 15:34:54 -0700317
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800318 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_NDIS_VER;
319 init_packet->msg.v1_msg.
320 send_ndis_ver.ndis_major_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800321 (ndis_version & 0xFFFF0000) >> 16;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800322 init_packet->msg.v1_msg.
323 send_ndis_ver.ndis_minor_ver =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800324 ndis_version & 0xFFFF;
Hank Janssenfceaf242009-07-13 15:34:54 -0700325
Bill Pemberton454f18a2009-07-27 16:47:24 -0400326 /* Send the init request */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800327 ret = vmbus_sendpacket(device->channel, init_packet,
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800328 sizeof(struct nvsp_message),
329 (unsigned long)init_packet,
330 VM_PKT_DATA_INBAND, 0);
K. Y. Srinivasan0f48c722011-08-25 09:49:14 -0700331 if (ret != 0)
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800332 goto cleanup;
Hank Janssenfceaf242009-07-13 15:34:54 -0700333
Bill Pemberton454f18a2009-07-27 16:47:24 -0400334 /* Post the big receive buffer to NetVSP */
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800335 ret = netvsc_init_recv_buf(device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700336
K. Y. Srinivasan0c3b7b22011-02-11 09:59:43 -0800337cleanup:
Hank Janssenfceaf242009-07-13 15:34:54 -0700338 return ret;
339}
340
Haiyang Zhang648dc592011-04-21 12:30:47 -0700341static void netvsc_disconnect_vsp(struct netvsc_device *net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700342{
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800343 netvsc_destroy_recv_buf(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700344}
345
Hank Janssen3e189512010-03-04 22:11:00 +0000346/*
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800347 * netvsc_device_remove - Callback when the root bus device is removed
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700348 */
K. Y. Srinivasan905620d2011-05-10 07:54:54 -0700349int netvsc_device_remove(struct hv_device *device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700350{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800351 struct netvsc_device *net_device;
352 struct hv_netvsc_packet *netvsc_packet, *pos;
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -0700353 unsigned long flags;
Hank Janssenfceaf242009-07-13 15:34:54 -0700354
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700355 net_device = hv_get_drvdata(device);
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -0700356 spin_lock_irqsave(&device->channel->inbound_lock, flags);
357 net_device->destroy = true;
358 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
359
Bill Pemberton454f18a2009-07-27 16:47:24 -0400360 /* Wait for all send completions */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800361 while (atomic_read(&net_device->num_outstanding_sends)) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700362 dev_info(&device->device,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700363 "waiting for %d requests to complete...\n",
Hank Jansseneb335bc2011-03-29 13:58:48 -0700364 atomic_read(&net_device->num_outstanding_sends));
Greg Kroah-Hartmanb4362c92009-07-16 11:50:41 -0700365 udelay(100);
Hank Janssenfceaf242009-07-13 15:34:54 -0700366 }
367
Haiyang Zhang648dc592011-04-21 12:30:47 -0700368 netvsc_disconnect_vsp(net_device);
Hank Janssenfceaf242009-07-13 15:34:54 -0700369
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700370 /*
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700371 * Since we have already drained, we don't need to busy wait
372 * as was done in final_release_stor_device()
373 * Note that we cannot set the ext pointer to NULL until
374 * we have drained - to drain the outgoing packets, we need to
375 * allow incoming packets.
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700376 */
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700377
378 spin_lock_irqsave(&device->channel->inbound_lock, flags);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700379 hv_set_drvdata(device, NULL);
K. Y. Srinivasan9d88f332011-08-27 11:31:16 -0700380 spin_unlock_irqrestore(&device->channel->inbound_lock, flags);
K. Y. Srinivasan38524092011-08-27 11:31:14 -0700381
K. Y. Srinivasan86c921a2011-09-13 10:59:54 -0700382 /*
383 * At this point, no one should be accessing net_device
384 * except in here
385 */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700386 dev_notice(&device->device, "net device safe to remove\n");
Hank Janssenfceaf242009-07-13 15:34:54 -0700387
Bill Pemberton454f18a2009-07-27 16:47:24 -0400388 /* Now, we can close the channel safely */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800389 vmbus_close(device->channel);
Hank Janssenfceaf242009-07-13 15:34:54 -0700390
Bill Pemberton454f18a2009-07-27 16:47:24 -0400391 /* Release all resources */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800392 list_for_each_entry_safe(netvsc_packet, pos,
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800393 &net_device->recv_pkt_list, list_ent) {
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800394 list_del(&netvsc_packet->list_ent);
Haiyang Zhang85799a32010-12-10 12:03:54 -0800395 kfree(netvsc_packet);
Hank Janssenfceaf242009-07-13 15:34:54 -0700396 }
397
K. Y. Srinivasan356c4652011-08-27 11:31:10 -0700398 kfree(net_device);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700399 return 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700400}
401
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800402static void netvsc_send_completion(struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800403 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700404{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800405 struct netvsc_device *net_device;
406 struct nvsp_message *nvsp_packet;
407 struct hv_netvsc_packet *nvsc_packet;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700408 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700409
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800410 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700411 if (!net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700412 return;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700413 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700414
Haiyang Zhang85799a32010-12-10 12:03:54 -0800415 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -0800416 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -0700417
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800418 if ((nvsp_packet->hdr.msg_type == NVSP_MSG_TYPE_INIT_COMPLETE) ||
419 (nvsp_packet->hdr.msg_type ==
420 NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE) ||
421 (nvsp_packet->hdr.msg_type ==
422 NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE)) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400423 /* Copy the response back */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800424 memcpy(&net_device->channel_init_pkt, nvsp_packet,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700425 sizeof(struct nvsp_message));
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700426 complete(&net_device->channel_init_wait);
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800427 } else if (nvsp_packet->hdr.msg_type ==
428 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400429 /* Get the send context */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800430 nvsc_packet = (struct hv_netvsc_packet *)(unsigned long)
Haiyang Zhang415f2282011-01-26 12:12:13 -0800431 packet->trans_id;
Hank Janssenfceaf242009-07-13 15:34:54 -0700432
Bill Pemberton454f18a2009-07-27 16:47:24 -0400433 /* Notify the layer above us */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800434 nvsc_packet->completion.send.send_completion(
435 nvsc_packet->completion.send.send_completion_ctx);
Hank Janssenfceaf242009-07-13 15:34:54 -0700436
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800437 atomic_dec(&net_device->num_outstanding_sends);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800438
439 if (netif_queue_stopped(ndev))
440 netif_wake_queue(ndev);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700441 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700442 netdev_err(ndev, "Unknown send completion packet type- "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700443 "%d received!!\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700444 }
445
Hank Janssenfceaf242009-07-13 15:34:54 -0700446}
447
K. Y. Srinivasanf9819f02011-05-12 19:34:49 -0700448int netvsc_send(struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800449 struct hv_netvsc_packet *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700450{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800451 struct netvsc_device *net_device;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700452 int ret = 0;
Greg Kroah-Hartman223c1aa2009-08-28 16:20:53 -0700453 struct nvsp_message sendMessage;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700454 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700455
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800456 net_device = get_outbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700457 if (!net_device)
K. Y. Srinivasanff2bd692011-08-25 09:49:15 -0700458 return -ENODEV;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700459 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700460
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800461 sendMessage.hdr.msg_type = NVSP_MSG1_TYPE_SEND_RNDIS_PKT;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800462 if (packet->is_data_pkt) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700463 /* 0 is RMC_DATA; */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800464 sendMessage.msg.v1_msg.send_rndis_pkt.channel_type = 0;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700465 } else {
466 /* 1 is RMC_CONTROL; */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800467 sendMessage.msg.v1_msg.send_rndis_pkt.channel_type = 1;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700468 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700469
Bill Pemberton454f18a2009-07-27 16:47:24 -0400470 /* Not using send buffer section */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800471 sendMessage.msg.v1_msg.send_rndis_pkt.send_buf_section_index =
472 0xFFFFFFFF;
473 sendMessage.msg.v1_msg.send_rndis_pkt.send_buf_section_size = 0;
Hank Janssenfceaf242009-07-13 15:34:54 -0700474
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800475 if (packet->page_buf_cnt) {
Haiyang Zhang85799a32010-12-10 12:03:54 -0800476 ret = vmbus_sendpacket_pagebuffer(device->channel,
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800477 packet->page_buf,
478 packet->page_buf_cnt,
Greg Kroah-Hartmanff3f8ee2010-10-21 09:32:46 -0700479 &sendMessage,
480 sizeof(struct nvsp_message),
Haiyang Zhang85799a32010-12-10 12:03:54 -0800481 (unsigned long)packet);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700482 } else {
Haiyang Zhang85799a32010-12-10 12:03:54 -0800483 ret = vmbus_sendpacket(device->channel, &sendMessage,
Haiyang Zhange4d59ac2011-06-17 07:58:04 -0700484 sizeof(struct nvsp_message),
485 (unsigned long)packet,
486 VM_PKT_DATA_INBAND,
487 VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
Hank Janssenfceaf242009-07-13 15:34:54 -0700488
489 }
490
Haiyang Zhang1d068252011-12-02 11:56:25 -0800491 if (ret == 0) {
492 atomic_inc(&net_device->num_outstanding_sends);
493 } else if (ret == -EAGAIN) {
494 netif_stop_queue(ndev);
495 if (atomic_read(&net_device->num_outstanding_sends) < 1)
496 netif_wake_queue(ndev);
497 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700498 netdev_err(ndev, "Unable to send packet %p ret %d\n",
Haiyang Zhang85799a32010-12-10 12:03:54 -0800499 packet, ret);
Haiyang Zhang1d068252011-12-02 11:56:25 -0800500 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700501
Hank Janssenfceaf242009-07-13 15:34:54 -0700502 return ret;
503}
504
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700505static void netvsc_send_recv_completion(struct hv_device *device,
506 u64 transaction_id)
507{
508 struct nvsp_message recvcompMessage;
509 int retries = 0;
510 int ret;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700511 struct net_device *ndev;
512 struct netvsc_device *net_device = hv_get_drvdata(device);
513
514 ndev = net_device->ndev;
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700515
516 recvcompMessage.hdr.msg_type =
517 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE;
518
519 /* FIXME: Pass in the status */
520 recvcompMessage.msg.v1_msg.send_rndis_pkt_complete.status =
521 NVSP_STAT_SUCCESS;
522
523retry_send_cmplt:
524 /* Send the completion */
525 ret = vmbus_sendpacket(device->channel, &recvcompMessage,
526 sizeof(struct nvsp_message), transaction_id,
527 VM_PKT_COMP, 0);
528 if (ret == 0) {
529 /* success */
530 /* no-op */
K. Y. Srinivasand2598f02011-08-25 09:48:58 -0700531 } else if (ret == -EAGAIN) {
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700532 /* no more room...wait a bit and attempt to retry 3 times */
533 retries++;
Haiyang Zhangd9871152011-09-01 12:19:41 -0700534 netdev_err(ndev, "unable to send receive completion pkt"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700535 " (tid %llx)...retrying %d\n", transaction_id, retries);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700536
537 if (retries < 4) {
538 udelay(100);
539 goto retry_send_cmplt;
540 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700541 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700542 "completion pkt (tid %llx)...give up retrying\n",
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700543 transaction_id);
544 }
545 } else {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700546 netdev_err(ndev, "unable to send receive "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700547 "completion pkt - %llx\n", transaction_id);
Haiyang Zhang5fa9d3c2011-04-21 12:30:42 -0700548 }
549}
550
Haiyang Zhang57991152011-04-21 12:30:41 -0700551/* Send a receive completion packet to RNDIS device (ie NetVsp) */
552static void netvsc_receive_completion(void *context)
553{
554 struct hv_netvsc_packet *packet = context;
555 struct hv_device *device = (struct hv_device *)packet->device;
556 struct netvsc_device *net_device;
557 u64 transaction_id = 0;
558 bool fsend_receive_comp = false;
559 unsigned long flags;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700560 struct net_device *ndev;
Haiyang Zhang57991152011-04-21 12:30:41 -0700561
562 /*
563 * Even though it seems logical to do a GetOutboundNetDevice() here to
564 * send out receive completion, we are using GetInboundNetDevice()
565 * since we may have disable outbound traffic already.
566 */
567 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700568 if (!net_device)
Haiyang Zhang57991152011-04-21 12:30:41 -0700569 return;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700570 ndev = net_device->ndev;
Haiyang Zhang57991152011-04-21 12:30:41 -0700571
572 /* Overloading use of the lock. */
573 spin_lock_irqsave(&net_device->recv_pkt_list_lock, flags);
574
575 packet->xfer_page_pkt->count--;
576
577 /*
578 * Last one in the line that represent 1 xfer page packet.
579 * Return the xfer page packet itself to the freelist
580 */
581 if (packet->xfer_page_pkt->count == 0) {
582 fsend_receive_comp = true;
583 transaction_id = packet->completion.recv.recv_completion_tid;
584 list_add_tail(&packet->xfer_page_pkt->list_ent,
585 &net_device->recv_pkt_list);
586
587 }
588
589 /* Put the packet back */
590 list_add_tail(&packet->list_ent, &net_device->recv_pkt_list);
591 spin_unlock_irqrestore(&net_device->recv_pkt_list_lock, flags);
592
593 /* Send a receive completion for the xfer page packet */
594 if (fsend_receive_comp)
595 netvsc_send_recv_completion(device, transaction_id);
596
Haiyang Zhang57991152011-04-21 12:30:41 -0700597}
598
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800599static void netvsc_receive(struct hv_device *device,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800600 struct vmpacket_descriptor *packet)
Hank Janssenfceaf242009-07-13 15:34:54 -0700601{
Haiyang Zhang85799a32010-12-10 12:03:54 -0800602 struct netvsc_device *net_device;
603 struct vmtransfer_page_packet_header *vmxferpage_packet;
604 struct nvsp_message *nvsp_packet;
605 struct hv_netvsc_packet *netvsc_packet = NULL;
Greg Kroah-Hartmanc4b0bc92009-07-14 15:12:46 -0700606 unsigned long start;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800607 unsigned long end, end_virtual;
Greg Kroah-Hartman7e23a6e2009-08-27 15:58:15 -0700608 /* struct netvsc_driver *netvscDriver; */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800609 struct xferpage_packet *xferpage_packet = NULL;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700610 int i, j;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800611 int count = 0, bytes_remain = 0;
Greg Kroah-Hartman64368732009-07-15 14:56:15 -0700612 unsigned long flags;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700613 struct net_device *ndev;
K. Y. Srinivasan779b4d12011-04-26 09:20:22 -0700614
Bill Pembertond29274e2009-09-11 21:46:43 -0400615 LIST_HEAD(listHead);
Hank Janssenfceaf242009-07-13 15:34:54 -0700616
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800617 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700618 if (!net_device)
Hank Janssenfceaf242009-07-13 15:34:54 -0700619 return;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700620 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700621
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700622 /*
623 * All inbound packets other than send completion should be xfer page
624 * packet
625 */
Haiyang Zhang415f2282011-01-26 12:12:13 -0800626 if (packet->type != VM_PKT_DATA_USING_XFER_PAGES) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700627 netdev_err(ndev, "Unknown packet type received - %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -0800628 packet->type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700629 return;
630 }
631
Haiyang Zhang85799a32010-12-10 12:03:54 -0800632 nvsp_packet = (struct nvsp_message *)((unsigned long)packet +
Haiyang Zhang415f2282011-01-26 12:12:13 -0800633 (packet->offset8 << 3));
Hank Janssenfceaf242009-07-13 15:34:54 -0700634
Bill Pemberton454f18a2009-07-27 16:47:24 -0400635 /* Make sure this is a valid nvsp packet */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800636 if (nvsp_packet->hdr.msg_type !=
637 NVSP_MSG1_TYPE_SEND_RNDIS_PKT) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700638 netdev_err(ndev, "Unknown nvsp packet type received-"
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700639 " %d\n", nvsp_packet->hdr.msg_type);
Hank Janssenfceaf242009-07-13 15:34:54 -0700640 return;
641 }
642
Haiyang Zhang85799a32010-12-10 12:03:54 -0800643 vmxferpage_packet = (struct vmtransfer_page_packet_header *)packet;
Hank Janssenfceaf242009-07-13 15:34:54 -0700644
Haiyang Zhang415f2282011-01-26 12:12:13 -0800645 if (vmxferpage_packet->xfer_pageset_id != NETVSC_RECEIVE_BUFFER_ID) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700646 netdev_err(ndev, "Invalid xfer page set id - "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700647 "expecting %x got %x\n", NETVSC_RECEIVE_BUFFER_ID,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800648 vmxferpage_packet->xfer_pageset_id);
Hank Janssenfceaf242009-07-13 15:34:54 -0700649 return;
650 }
651
Bill Pemberton454f18a2009-07-27 16:47:24 -0400652 /*
653 * Grab free packets (range count + 1) to represent this xfer
654 * page packet. +1 to represent the xfer page packet itself.
655 * We grab it here so that we know exactly how many we can
656 * fulfil
657 */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800658 spin_lock_irqsave(&net_device->recv_pkt_list_lock, flags);
659 while (!list_empty(&net_device->recv_pkt_list)) {
660 list_move_tail(net_device->recv_pkt_list.next, &listHead);
Haiyang Zhang415f2282011-01-26 12:12:13 -0800661 if (++count == vmxferpage_packet->range_cnt + 1)
Hank Janssenfceaf242009-07-13 15:34:54 -0700662 break;
663 }
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800664 spin_unlock_irqrestore(&net_device->recv_pkt_list_lock, flags);
Hank Janssenfceaf242009-07-13 15:34:54 -0700665
Bill Pemberton454f18a2009-07-27 16:47:24 -0400666 /*
667 * We need at least 2 netvsc pkts (1 to represent the xfer
668 * page and at least 1 for the range) i.e. we can handled
669 * some of the xfer page packet ranges...
670 */
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700671 if (count < 2) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700672 netdev_err(ndev, "Got only %d netvsc pkt...needed "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700673 "%d pkts. Dropping this xfer page packet completely!\n",
Hank Jansseneb335bc2011-03-29 13:58:48 -0700674 count, vmxferpage_packet->range_cnt + 1);
Hank Janssenfceaf242009-07-13 15:34:54 -0700675
Bill Pemberton454f18a2009-07-27 16:47:24 -0400676 /* Return it to the freelist */
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800677 spin_lock_irqsave(&net_device->recv_pkt_list_lock, flags);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700678 for (i = count; i != 0; i--) {
Milan Dadok92ec0892009-10-28 23:23:37 +0100679 list_move_tail(listHead.next,
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800680 &net_device->recv_pkt_list);
Hank Janssenfceaf242009-07-13 15:34:54 -0700681 }
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800682 spin_unlock_irqrestore(&net_device->recv_pkt_list_lock,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700683 flags);
Hank Janssenfceaf242009-07-13 15:34:54 -0700684
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800685 netvsc_send_recv_completion(device,
Haiyang Zhang415f2282011-01-26 12:12:13 -0800686 vmxferpage_packet->d.trans_id);
Hank Janssenfceaf242009-07-13 15:34:54 -0700687
Hank Janssenfceaf242009-07-13 15:34:54 -0700688 return;
689 }
690
Bill Pemberton454f18a2009-07-27 16:47:24 -0400691 /* Remove the 1st packet to represent the xfer page packet itself */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800692 xferpage_packet = (struct xferpage_packet *)listHead.next;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800693 list_del(&xferpage_packet->list_ent);
Bill Pembertond29274e2009-09-11 21:46:43 -0400694
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700695 /* This is how much we can satisfy */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800696 xferpage_packet->count = count - 1;
Hank Janssenfceaf242009-07-13 15:34:54 -0700697
Haiyang Zhang415f2282011-01-26 12:12:13 -0800698 if (xferpage_packet->count != vmxferpage_packet->range_cnt) {
Haiyang Zhang8bff33a2011-09-01 12:19:48 -0700699 netdev_err(ndev, "Needed %d netvsc pkts to satisfy "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700700 "this xfer page...got %d\n",
Hank Jansseneb335bc2011-03-29 13:58:48 -0700701 vmxferpage_packet->range_cnt, xferpage_packet->count);
Hank Janssenfceaf242009-07-13 15:34:54 -0700702 }
703
Bill Pemberton454f18a2009-07-27 16:47:24 -0400704 /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700705 for (i = 0; i < (count - 1); i++) {
Haiyang Zhang85799a32010-12-10 12:03:54 -0800706 netvsc_packet = (struct hv_netvsc_packet *)listHead.next;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800707 list_del(&netvsc_packet->list_ent);
Hank Janssenfceaf242009-07-13 15:34:54 -0700708
Bill Pemberton454f18a2009-07-27 16:47:24 -0400709 /* Initialize the netvsc packet */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800710 netvsc_packet->xfer_page_pkt = xferpage_packet;
711 netvsc_packet->completion.recv.recv_completion =
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800712 netvsc_receive_completion;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800713 netvsc_packet->completion.recv.recv_completion_ctx =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800714 netvsc_packet;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800715 netvsc_packet->device = device;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700716 /* Save this so that we can send it back */
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800717 netvsc_packet->completion.recv.recv_completion_tid =
Haiyang Zhang415f2282011-01-26 12:12:13 -0800718 vmxferpage_packet->d.trans_id;
Hank Janssenfceaf242009-07-13 15:34:54 -0700719
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800720 netvsc_packet->total_data_buflen =
Haiyang Zhang415f2282011-01-26 12:12:13 -0800721 vmxferpage_packet->ranges[i].byte_count;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800722 netvsc_packet->page_buf_cnt = 1;
Hank Janssenfceaf242009-07-13 15:34:54 -0700723
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800724 netvsc_packet->page_buf[0].len =
Haiyang Zhang415f2282011-01-26 12:12:13 -0800725 vmxferpage_packet->ranges[i].byte_count;
Hank Janssenfceaf242009-07-13 15:34:54 -0700726
Haiyang Zhang85799a32010-12-10 12:03:54 -0800727 start = virt_to_phys((void *)((unsigned long)net_device->
Haiyang Zhang415f2282011-01-26 12:12:13 -0800728 recv_buf + vmxferpage_packet->ranges[i].byte_offset));
Hank Janssenfceaf242009-07-13 15:34:54 -0700729
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800730 netvsc_packet->page_buf[0].pfn = start >> PAGE_SHIFT;
Haiyang Zhang53d21fd2010-12-10 12:03:59 -0800731 end_virtual = (unsigned long)net_device->recv_buf
Haiyang Zhang415f2282011-01-26 12:12:13 -0800732 + vmxferpage_packet->ranges[i].byte_offset
733 + vmxferpage_packet->ranges[i].byte_count - 1;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800734 end = virt_to_phys((void *)end_virtual);
Hank Janssenfceaf242009-07-13 15:34:54 -0700735
Bill Pemberton454f18a2009-07-27 16:47:24 -0400736 /* Calculate the page relative offset */
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800737 netvsc_packet->page_buf[0].offset =
Haiyang Zhang415f2282011-01-26 12:12:13 -0800738 vmxferpage_packet->ranges[i].byte_offset &
Haiyang Zhang85799a32010-12-10 12:03:54 -0800739 (PAGE_SIZE - 1);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700740 if ((end >> PAGE_SHIFT) != (start >> PAGE_SHIFT)) {
741 /* Handle frame across multiple pages: */
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800742 netvsc_packet->page_buf[0].len =
743 (netvsc_packet->page_buf[0].pfn <<
Haiyang Zhang85799a32010-12-10 12:03:54 -0800744 PAGE_SHIFT)
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700745 + PAGE_SIZE - start;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800746 bytes_remain = netvsc_packet->total_data_buflen -
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800747 netvsc_packet->page_buf[0].len;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700748 for (j = 1; j < NETVSC_PACKET_MAXPAGE; j++) {
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800749 netvsc_packet->page_buf[j].offset = 0;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800750 if (bytes_remain <= PAGE_SIZE) {
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800751 netvsc_packet->page_buf[j].len =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800752 bytes_remain;
753 bytes_remain = 0;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700754 } else {
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800755 netvsc_packet->page_buf[j].len =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800756 PAGE_SIZE;
757 bytes_remain -= PAGE_SIZE;
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700758 }
Haiyang Zhangca623ad2011-01-26 12:12:11 -0800759 netvsc_packet->page_buf[j].pfn =
Haiyang Zhang85799a32010-12-10 12:03:54 -0800760 virt_to_phys((void *)(end_virtual -
761 bytes_remain)) >> PAGE_SHIFT;
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800762 netvsc_packet->page_buf_cnt++;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800763 if (bytes_remain == 0)
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700764 break;
Hank Janssenfceaf242009-07-13 15:34:54 -0700765 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700766 }
Hank Janssenfceaf242009-07-13 15:34:54 -0700767
Bill Pemberton454f18a2009-07-27 16:47:24 -0400768 /* Pass it to the upper layer */
K. Y. Srinivasanac6f7852011-05-12 19:34:58 -0700769 rndis_filter_receive(device, netvsc_packet);
Hank Janssenfceaf242009-07-13 15:34:54 -0700770
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800771 netvsc_receive_completion(netvsc_packet->
Haiyang Zhang72a2f5b2010-12-10 12:03:58 -0800772 completion.recv.recv_completion_ctx);
Hank Janssenfceaf242009-07-13 15:34:54 -0700773 }
774
Hank Janssenfceaf242009-07-13 15:34:54 -0700775}
776
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800777static void netvsc_channel_cb(void *context)
Hank Janssenfceaf242009-07-13 15:34:54 -0700778{
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700779 int ret;
Haiyang Zhang85799a32010-12-10 12:03:54 -0800780 struct hv_device *device = context;
781 struct netvsc_device *net_device;
782 u32 bytes_recvd;
783 u64 request_id;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400784 unsigned char *packet;
Greg Kroah-Hartman8dc0a062009-08-27 16:02:36 -0700785 struct vmpacket_descriptor *desc;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400786 unsigned char *buffer;
787 int bufferlen = NETVSC_PACKET_SIZE;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700788 struct net_device *ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700789
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400790 packet = kzalloc(NETVSC_PACKET_SIZE * sizeof(unsigned char),
Timo Teräsd70c6732010-12-17 11:40:24 +0200791 GFP_ATOMIC);
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400792 if (!packet)
793 return;
794 buffer = packet;
795
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800796 net_device = get_inbound_net_device(device);
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700797 if (!net_device)
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400798 goto out;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700799 ndev = net_device->ndev;
Hank Janssenfceaf242009-07-13 15:34:54 -0700800
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700801 do {
Greg Kroah-Hartman9f630062010-10-21 09:09:48 -0700802 ret = vmbus_recvpacket_raw(device->channel, buffer, bufferlen,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800803 &bytes_recvd, &request_id);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700804 if (ret == 0) {
Haiyang Zhang85799a32010-12-10 12:03:54 -0800805 if (bytes_recvd > 0) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700806 desc = (struct vmpacket_descriptor *)buffer;
Haiyang Zhang415f2282011-01-26 12:12:13 -0800807 switch (desc->type) {
808 case VM_PKT_COMP:
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800809 netvsc_send_completion(device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700810 break;
Hank Janssenfceaf242009-07-13 15:34:54 -0700811
Haiyang Zhang415f2282011-01-26 12:12:13 -0800812 case VM_PKT_DATA_USING_XFER_PAGES:
Haiyang Zhang5a71ae32010-12-10 12:03:55 -0800813 netvsc_receive(device, desc);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700814 break;
Hank Janssenfceaf242009-07-13 15:34:54 -0700815
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700816 default:
Haiyang Zhangd9871152011-09-01 12:19:41 -0700817 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700818 "unhandled packet type %d, "
819 "tid %llx len %d\n",
Haiyang Zhang415f2282011-01-26 12:12:13 -0800820 desc->type, request_id,
Haiyang Zhang85799a32010-12-10 12:03:54 -0800821 bytes_recvd);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700822 break;
Hank Janssenfceaf242009-07-13 15:34:54 -0700823 }
824
Bill Pemberton454f18a2009-07-27 16:47:24 -0400825 /* reset */
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400826 if (bufferlen > NETVSC_PACKET_SIZE) {
Greg Kroah-Hartman8c69f522009-07-15 12:48:29 -0700827 kfree(buffer);
Hank Janssenfceaf242009-07-13 15:34:54 -0700828 buffer = packet;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400829 bufferlen = NETVSC_PACKET_SIZE;
Hank Janssenfceaf242009-07-13 15:34:54 -0700830 }
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700831 } else {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400832 /* reset */
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400833 if (bufferlen > NETVSC_PACKET_SIZE) {
Greg Kroah-Hartman8c69f522009-07-15 12:48:29 -0700834 kfree(buffer);
Hank Janssenfceaf242009-07-13 15:34:54 -0700835 buffer = packet;
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400836 bufferlen = NETVSC_PACKET_SIZE;
Hank Janssenfceaf242009-07-13 15:34:54 -0700837 }
838
839 break;
840 }
K. Y. Srinivasan3d5cad92011-08-25 09:48:59 -0700841 } else if (ret == -ENOBUFS) {
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700842 /* Handle large packet */
Haiyang Zhang85799a32010-12-10 12:03:54 -0800843 buffer = kmalloc(bytes_recvd, GFP_ATOMIC);
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700844 if (buffer == NULL) {
Bill Pemberton454f18a2009-07-27 16:47:24 -0400845 /* Try again next time around */
Haiyang Zhangd9871152011-09-01 12:19:41 -0700846 netdev_err(ndev,
Greg Kroah-Hartman21a808202009-09-02 10:33:05 -0700847 "unable to allocate buffer of size "
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700848 "(%d)!!\n", bytes_recvd);
Hank Janssenfceaf242009-07-13 15:34:54 -0700849 break;
850 }
851
Haiyang Zhang85799a32010-12-10 12:03:54 -0800852 bufferlen = bytes_recvd;
Hank Janssenfceaf242009-07-13 15:34:54 -0700853 }
854 } while (1);
855
Bill Pembertonc6fcf0b2010-04-27 16:23:47 -0400856out:
857 kfree(buffer);
Hank Janssenfceaf242009-07-13 15:34:54 -0700858 return;
859}
Haiyang Zhangaf24ce42011-04-21 12:30:40 -0700860
861/*
Haiyang Zhangb637e022011-04-21 12:30:45 -0700862 * netvsc_device_add - Callback when the device belonging to this
863 * driver is added
864 */
K. Y. Srinivasan7bd23a42011-05-10 07:54:53 -0700865int netvsc_device_add(struct hv_device *device, void *additional_info)
Haiyang Zhangb637e022011-04-21 12:30:45 -0700866{
867 int ret = 0;
868 int i;
K. Y. Srinivasanaae23982011-05-12 19:35:05 -0700869 int ring_size =
870 ((struct netvsc_device_info *)additional_info)->ring_size;
Haiyang Zhangb637e022011-04-21 12:30:45 -0700871 struct netvsc_device *net_device;
872 struct hv_netvsc_packet *packet, *pos;
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700873 struct net_device *ndev;
Haiyang Zhangb637e022011-04-21 12:30:45 -0700874
875 net_device = alloc_net_device(device);
876 if (!net_device) {
K. Y. Srinivasanace163a2011-08-25 09:49:16 -0700877 ret = -ENOMEM;
Haiyang Zhangb637e022011-04-21 12:30:45 -0700878 goto cleanup;
879 }
880
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700881 /*
882 * Coming into this function, struct net_device * is
883 * registered as the driver private data.
884 * In alloc_net_device(), we register struct netvsc_device *
885 * as the driver private data and stash away struct net_device *
886 * in struct netvsc_device *.
887 */
888 ndev = net_device->ndev;
889
Haiyang Zhangb637e022011-04-21 12:30:45 -0700890 /* Initialize the NetVSC channel extension */
891 net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE;
892 spin_lock_init(&net_device->recv_pkt_list_lock);
893
Haiyang Zhangb637e022011-04-21 12:30:45 -0700894 INIT_LIST_HEAD(&net_device->recv_pkt_list);
895
896 for (i = 0; i < NETVSC_RECEIVE_PACKETLIST_COUNT; i++) {
897 packet = kzalloc(sizeof(struct hv_netvsc_packet) +
898 (NETVSC_RECEIVE_SG_COUNT *
899 sizeof(struct hv_page_buffer)), GFP_KERNEL);
900 if (!packet)
901 break;
902
903 list_add_tail(&packet->list_ent,
904 &net_device->recv_pkt_list);
905 }
K. Y. Srinivasan35abb212011-05-10 07:55:41 -0700906 init_completion(&net_device->channel_init_wait);
Haiyang Zhangb637e022011-04-21 12:30:45 -0700907
908 /* Open the channel */
K. Y. Srinivasanaae23982011-05-12 19:35:05 -0700909 ret = vmbus_open(device->channel, ring_size * PAGE_SIZE,
910 ring_size * PAGE_SIZE, NULL, 0,
Haiyang Zhangb637e022011-04-21 12:30:45 -0700911 netvsc_channel_cb, device);
912
913 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700914 netdev_err(ndev, "unable to open channel: %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -0700915 goto cleanup;
916 }
917
918 /* Channel is opened */
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700919 pr_info("hv_netvsc channel opened successfully\n");
Haiyang Zhangb637e022011-04-21 12:30:45 -0700920
921 /* Connect with the NetVsp */
922 ret = netvsc_connect_vsp(device);
923 if (ret != 0) {
Haiyang Zhangd9871152011-09-01 12:19:41 -0700924 netdev_err(ndev,
Haiyang Zhangc909ebb2011-09-01 12:19:40 -0700925 "unable to connect to NetVSP - %d\n", ret);
Haiyang Zhangb637e022011-04-21 12:30:45 -0700926 goto close;
927 }
928
929 return ret;
930
931close:
932 /* Now, we can close the channel safely */
933 vmbus_close(device->channel);
934
935cleanup:
936
937 if (net_device) {
938 list_for_each_entry_safe(packet, pos,
939 &net_device->recv_pkt_list,
940 list_ent) {
941 list_del(&packet->list_ent);
942 kfree(packet);
943 }
944
K. Y. Srinivasan356c4652011-08-27 11:31:10 -0700945 kfree(net_device);
Haiyang Zhangb637e022011-04-21 12:30:45 -0700946 }
947
948 return ret;
949}